1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-18 23:03:28 +03:00
Files
mariadb/mysql-test/suite/rpl/r/rpl_commit_after_flush.result
2016-03-31 10:11:16 +04:00

14 lines
259 B
Plaintext

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