2003-01-06 01:48:59 +02:00
|
|
|
# This tests the offset off by 22 mystery bug
|
|
|
|
# Must run slave with --disconnect-slave-event-count=1 --master-connect-retry=1
|
|
|
|
|
2000-12-07 07:54:59 -07:00
|
|
|
source include/master-slave.inc;
|
2003-01-06 01:48:59 +02:00
|
|
|
|
2001-01-03 02:15:48 +02:00
|
|
|
create table t1 (n int not null auto_increment primary key);
|
|
|
|
insert into t1 values(NULL);
|
|
|
|
insert into t1 values(2);
|
2001-01-17 05:47:33 -07:00
|
|
|
save_master_pos;
|
2000-11-22 00:23:31 -07:00
|
|
|
connection slave;
|
2001-01-17 05:47:33 -07:00
|
|
|
sync_with_master;
|
2001-03-25 01:02:26 +02:00
|
|
|
select n from t1;
|
2001-01-03 02:15:48 +02:00
|
|
|
connection master;
|
|
|
|
drop table t1;
|
2001-01-17 05:47:33 -07:00
|
|
|
save_master_pos;
|
|
|
|
connection slave;
|
|
|
|
sync_with_master;
|
2001-01-22 12:35:16 -07:00
|
|
|
|