mariadb/mysql-test/t/rpl000002.test
monty@donna.mysql.com 9ff59511a5 Cleanup of tests to make them less dependent of eachother
Added new big select test
2001-01-03 02:15:48 +02:00

12 lines
295 B
Text

source include/master-slave.inc;
connection master;
use test;
drop table if exists t1;
create table t1 (n int auto_increment primary key);
set insert_id = 2000;
insert into t1 values (NULL),(NULL),(NULL);
connection slave;
use test;
sleep 2;
@r/rpl000002.result select * from t1;
drop table t1;