blob: 9160d1952c2aecfa8e435e3b0894fc30c4ca95ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
include/master-slave.inc
[connection master]
create table t1 (n int);
insert into t1 values(1);
stop slave;
start slave;
insert into t1 values(2);
select * from t1;
n
1
2
drop table t1;
include/rpl_end.inc
|