mariadb/mysql-test/t/rpl000002.test

11 lines
277 B
Text

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;