mirror of
https://github.com/MariaDB/server.git
synced 2025-08-07 00:04:31 +03:00
Renamed suite/rpl/include/rpl_sync.inc to rpl_sync_test.inc to remove clash with include/rpl_sync.inc
15 lines
248 B
Plaintext
15 lines
248 B
Plaintext
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
|