summaryrefslogtreecommitdiff
path: root/mysql-test/suite/rpl/r/rpl_commit_after_flush.result
blob: 1d5a657175ed923147c84d537d7cc14372744ada (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
include/master-slave.inc
[connection master]
CREATE TABLE t1 (a INT) ENGINE=innodb;
begin;
insert into t1 values(1);
flush tables with read lock;
commit;
connection slave;
connection master;
unlock tables;
drop table t1;
connection slave;
include/rpl_end.inc