summaryrefslogtreecommitdiff
path: root/mysql-test/t/rpl000002.test
blob: 29741b5b6cbaadfb175c7fb13f3a1b88b093043f (plain)
1
2
3
4
5
6
7
8
9
10
11
source include/master-slave.inc;
connection master;
use test;
drop table if exists x;
create table x(n int auto_increment primary key);
set insert_id = 2000;
insert into x values (NULL),(NULL),(NULL);
connection slave;
use test;
sleep 0.5;
@r/rpl000002.result select * from x;