2003-01-06 00:48:59 +01: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 15:54:59 +01:00
|
|
|
source include/master-slave.inc;
|
2003-01-06 00:48:59 +01:00
|
|
|
|
2001-01-03 01:15:48 +01: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 13:47:33 +01:00
|
|
|
save_master_pos;
|
2000-11-22 08:23:31 +01:00
|
|
|
connection slave;
|
2001-01-17 13:47:33 +01:00
|
|
|
sync_with_master;
|
2001-03-25 00:02:26 +01:00
|
|
|
select n from t1;
|
2001-01-03 01:15:48 +01:00
|
|
|
connection master;
|
|
|
|
drop table t1;
|
2001-01-17 13:47:33 +01:00
|
|
|
save_master_pos;
|
|
|
|
connection slave;
|
|
|
|
sync_with_master;
|
2001-01-22 20:35:16 +01:00
|
|
|
|
2005-07-28 02:22:47 +02:00
|
|
|
# End of 4.1 tests
|