include/master-slave.inc
[connection master]
SET @old_innodb_thread_concurrency := @@innodb_thread_concurrency;
SET @old_innodb_thread_sleep_delay := @@innodb_thread_sleep_delay;
SET GLOBAL innodb_thread_concurrency = 100;
CREATE TABLE t(f INT) ENGINE=INNODB;
INSERT INTO t VALUES (10);
include/diff_tables.inc [master:t, slave:t]
"===== Clean up======="
DROP TABLE t;
SET GLOBAL innodb_thread_concurrency = @old_innodb_thread_concurrency;
SET GLOBAL innodb_thread_sleep_delay = @old_innodb_thread_sleep_delay;
include/rpl_end.inc
|