summaryrefslogtreecommitdiff
path: root/mysql-test/suite/rpl/r/rpl_row_delayed_ins.result
blob: 4575588b1ef9108518ad21fa4da9a54829844bb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
include/master-slave.inc
[connection master]
create table t1(a int not null primary key) engine=myisam;
insert delayed into t1 values (1);
insert delayed into t1 values (2);
insert delayed into t1 values (3);
flush tables;
SELECT * FROM t1 ORDER BY a;
a
1
2
3
SELECT * FROM t1 ORDER BY a;
a
1
2
3
drop table t1;
include/rpl_end.inc