From 251a5fa97598c8f0e7e0759880503d0932ca2918 Mon Sep 17 00:00:00 2001 From: Michael Widenius Date: Tue, 8 Mar 2011 14:55:36 +0200 Subject: [PATCH] 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 --- mysql-test/include/mtr_check.sql | 1 + 1 file changed, 1 insertion(+) 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;