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

15 lines
459 B
Text

#this tests the offset off by 22 mystery bug
#must run slave with --disconnect-slave-event-count=1 --master-connect-retry=1
source include/master-slave.inc;
connection slave;
drop table if exists t1;
connection master;
drop table if exists t1;
create table t1 (n int not null auto_increment primary key);
insert into t1 values(NULL);
insert into t1 values(2);
connection slave;
sleep 5;
@r/rpl000010.result select n from t1;
connection master;
drop table t1;