1include/master-slave.inc
2[connection master]
3connection slave;
4SET @old_innodb_thread_concurrency := @@innodb_thread_concurrency;
5SET @old_innodb_thread_sleep_delay := @@innodb_thread_sleep_delay;
6SET GLOBAL innodb_thread_concurrency = 100;
7connection master;
8CREATE TABLE t(f INT) ENGINE=INNODB;
9INSERT INTO t VALUES (10);
10connection slave;
11include/diff_tables.inc [master:t, slave:t]
12"===== Clean up======="
13connection master;
14DROP TABLE t;
15connection slave;
16SET GLOBAL innodb_thread_concurrency = @old_innodb_thread_concurrency;
17SET GLOBAL innodb_thread_sleep_delay = @old_innodb_thread_sleep_delay;
18include/rpl_end.inc
19