polardbxengine/mysql-test/extra/rpl_tests/rpl_commit_after_flush.test

15 lines
272 B
Plaintext

eval CREATE TABLE t1 (a INT PRIMARY KEY) ENGINE=$engine_type;
begin;
insert into t1 values(1);
flush tables with read lock;
commit;
--source include/rpl_sync.inc
# cleanup
connection master;
unlock tables;
drop table t1;
--source include/rpl_sync.inc
# End of 4.1 tests