diff options
author | Michael Widenius <monty@askmonty.org> | 2011-03-08 14:55:36 +0200 |
---|---|---|
committer | Michael Widenius <monty@askmonty.org> | 2011-03-08 14:55:36 +0200 |
commit | 251a5fa97598c8f0e7e0759880503d0932ca2918 (patch) | |
tree | 08ba7f6c8c8205a9ca94b9773c2a27c3c37a26ad /mysql-test/include/mtr_check.sql | |
parent | fa4eb9931bf12230a4fb365585ac51c34425980d (diff) | |
download | mariadb-git-251a5fa97598c8f0e7e0759880503d0932ca2918.tar.gz |
Don't check if LAST_IO_Error has changed as this is not a user variable and it may change depending on timing issues between master and slave
Diffstat (limited to 'mysql-test/include/mtr_check.sql')
-rw-r--r-- | mysql-test/include/mtr_check.sql | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mysql-test/include/mtr_check.sql b/mysql-test/include/mtr_check.sql index 36f857d5f58..fcd5eebc269 100644 --- a/mysql-test/include/mtr_check.sql +++ b/mysql-test/include/mtr_check.sql @@ -13,6 +13,7 @@ BEGIN -- that are supposed to change SELECT * FROM INFORMATION_SCHEMA.GLOBAL_VARIABLES WHERE variable_name != 'timestamp' + AND variable_name not like "Last_IO_Err*" AND variable_name != 'INNODB_IBUF_MAX_SIZE' AND variable_name != 'INNODB_FILE_FORMAT_CHECK' ORDER BY variable_name; |