summaryrefslogtreecommitdiff
path: root/mysql-test/suite/rpl/r/rpl_000011.result
blob: 8a59eb746ad1b2d6b4c435c6e1b4065c48e0f1bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
include/master-slave.inc
[connection master]
create table t1 (n int);
insert into t1 values(1);
stop slave;
include/wait_for_slave_to_stop.inc
start slave;
include/wait_for_slave_to_start.inc
insert into t1 values(2);
select * from t1;
n
1
2
drop table t1;
include/rpl_end.inc