blob: 5f64a743bc1cd30f8e58ff4b604e37782f3a478b (
plain)
1
2
3
4
5
6
7
8
9
|
source t/include/master-slave.inc;
connection master;
drop table if exists x;
create table x(n int primary key);
!insert into x values (1),(2),(2);
insert into x values (3);
connection slave;
sleep 1;
@r/3.23/rpl000003.result select * from x;
|