mariadb/mysql-test/t/rpl000011.test
unknown 458ced9f34 altered syntax from SLAVE START|STOP to START|STOP SLAVE
mysql-test/mysql-test-run.sh:
  Added --rpl option which tests all t/rpl*.test tests.
2002-10-24 17:46:14 -06:00

15 lines
324 B
Text

source include/master-slave.inc;
drop table if exists t1;
create table t1 (n int);
insert into t1 values(1);
sync_slave_with_master;
stop slave;
start slave;
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;