diff options
| author | Alexander Barkov <bar@mariadb.org> | 2017-11-03 09:27:53 +0400 |
|---|---|---|
| committer | Alexander Barkov <bar@mariadb.org> | 2017-11-03 09:27:53 +0400 |
| commit | 7a63a7dc6d0c959c48b88dbea8e848c7bf4a0b88 (patch) | |
| tree | a25ced410042595d43eb51c3c8954fef98a35105 /mysql-test/t/errors.test | |
| parent | 3ab112eb39dad0ac4bd9d68306cf6040161e9dc2 (diff) | |
| download | mariadb-git-7a63a7dc6d0c959c48b88dbea8e848c7bf4a0b88.tar.gz | |
MDEV-14269 errors.test fails with valgrind (Conditional jump or move depends on uninitialised value)
Diffstat (limited to 'mysql-test/t/errors.test')
| -rw-r--r-- | mysql-test/t/errors.test | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/mysql-test/t/errors.test b/mysql-test/t/errors.test index 55461002fd4..e8d3bf85c09 100644 --- a/mysql-test/t/errors.test +++ b/mysql-test/t/errors.test @@ -213,3 +213,14 @@ select * from seq_1_to_1000; --enable_result_log # We may not be able to execute any more queries with this connection # because of too little memory# + + +--echo # +--echo # MDEV-14269 errors.test fails with valgrind (Conditional jump or move depends on uninitialised value) +--echo # + +SET NAMES utf8; +--error ER_DATA_OUT_OF_RANGE +SELECT UPDATEXML(-73 * -2465717823867977728,@@global.auto_increment_increment,null); +--error ER_DATA_OUT_OF_RANGE +SELECT UPDATEXML(-73 * -2465717823867977728,@@global.long_query_time,null); |
