summaryrefslogtreecommitdiff
path: root/repl-tests/test-bad-query/run.test
blob: a86aaf840969bb07c19ccc1b5b5d6b862e5571b0 (plain)
1
2
3
4
5
6
7
8
9
10
source ../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 3;
@x.master select * from x;