blob: 6de39041bb1201c0dd8eefa25c9427ffea9aea99 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
--source include/master-slave.inc
CREATE TEMPORARY TABLE t (i INT);
CREATE TABLE t AS SELECT * FROM t;
--sync_slave_with_master
# Cleanup
--connection master
DROP TEMPORARY TABLE t;
DROP TABLE t;
--source include/rpl_end.inc
|