Commit f3a6f86e authored by unknown's avatar unknown

Fix check_testcase complaints due to missing SET debug_sync=RESET in a few tests.

parent fefdb576
......@@ -113,5 +113,6 @@ master-bin.000004 #
master-bin.000005 #
master-bin.000006 #
DROP TABLE t1, t2;
SET debug_sync = "RESET";
SET GLOBAL max_binlog_size= @old_max_binlog_size;
SET GLOBAL innodb_flush_log_at_trx_commit= @old_innodb_flush_log_at_trx_commit;
......@@ -141,5 +141,6 @@ INSERT INTO t1 VALUES (31, REPEAT("x", 4100));
DROP TABLE t1, t2;
SET debug_sync = "RESET";
SET GLOBAL max_binlog_size= @old_max_binlog_size;
SET GLOBAL innodb_flush_log_at_trx_commit= @old_innodb_flush_log_at_trx_commit;
......@@ -66,5 +66,6 @@ a
9
DROP TABLE t1;
SET GLOBAL gtid_strict_mode= @old_gtid_strict_mode;
SET debug_sync = "RESET";
SET GLOBAL gtid_strict_mode= @old_gtid_strict_mode;
include/rpl_end.inc
......@@ -671,8 +671,10 @@ SET GLOBAL slave_parallel_threads=0;
SET GLOBAL slave_parallel_threads=10;
include/start_slave.inc
include/stop_slave.inc
SET debug_sync = "RESET";
SET GLOBAL slave_parallel_threads=@old_parallel_threads;
include/start_slave.inc
SET debug_sync = "RESET";
DROP function foo;
DROP TABLE t1,t2,t3;
include/rpl_end.inc
......@@ -115,8 +115,10 @@ SET GLOBAL slave_parallel_threads=0;
SET GLOBAL slave_parallel_threads=10;
include/start_slave.inc
include/stop_slave.inc
SET debug_sync = "RESET";
SET GLOBAL slave_parallel_threads=@old_parallel_threads;
include/start_slave.inc
SET debug_sync = "RESET";
DROP function foo;
DROP TABLE t3;
include/rpl_end.inc
......@@ -131,6 +131,7 @@ SELECT * FROM t1 ORDER BY a;
DROP TABLE t1;
SET GLOBAL gtid_strict_mode= @old_gtid_strict_mode;
--connection server_2
SET debug_sync = "RESET";
SET GLOBAL gtid_strict_mode= @old_gtid_strict_mode;
--source include/rpl_end.inc
......@@ -1020,10 +1020,12 @@ SET GLOBAL slave_parallel_threads=10;
--connection server_2
--source include/stop_slave.inc
SET debug_sync = "RESET";
SET GLOBAL slave_parallel_threads=@old_parallel_threads;
--source include/start_slave.inc
--connection server_1
SET debug_sync = "RESET";
DROP function foo;
DROP TABLE t1,t2,t3;
......
......@@ -189,10 +189,12 @@ SET GLOBAL slave_parallel_threads=10;
--connection server_2
--source include/stop_slave.inc
SET debug_sync = "RESET";
SET GLOBAL slave_parallel_threads=@old_parallel_threads;
--source include/start_slave.inc
--connection server_1
SET debug_sync = "RESET";
DROP function foo;
DROP TABLE t3;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment