1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-04 01:23:45 +03:00
Files
mariadb/mysql-test/suite/rpl/t/rpl_000011.test
2010-12-19 18:15:12 +01:00

21 lines
438 B
Plaintext

source include/master-slave.inc;
create table t1 (n int);
insert into t1 values(1);
sync_slave_with_master;
stop slave;
--source include/wait_for_slave_to_stop.inc
start slave;
--source include/wait_for_slave_to_start.inc
connection master;
insert into t1 values(2);
#let slave catch up
sync_slave_with_master;
select * from t1;
connection master;
drop table t1;
sync_slave_with_master;
# End of 4.1 tests
--source include/rpl_end.inc