summaryrefslogtreecommitdiffstats
path: root/mysql-test/suite/rpl/include/rpl_commit_after_flush.test
blob: 7de4f421c35436e541c2a9cc255831eefc7845f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
eval CREATE TABLE t1 (a INT) ENGINE=$engine_type;

begin;
insert into t1 values(1);
flush tables with read lock;
commit;
sync_slave_with_master;
# cleanup
connection master;
unlock tables;
drop table t1;
sync_slave_with_master;

# End of 4.1 tests