mariadb/mysql-test/t/rpl000003.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

10 lines
293 B
Text

source include/master-slave.inc;
connection master;
drop table if exists t1;
create table t1(n int primary key);
!insert into t1 values (1),(2),(2);
insert into t1 values (3);
connection slave;
sleep 2;
@r/rpl000003.result select * from t1;
drop table t1;