rpl000010.test
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:0k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. # This tests the offset off by 22 mystery bug
  2. # Must run slave with --disconnect-slave-event-count=1 --master-connect-retry=1
  3. source include/master-slave.inc;
  4. create table t1 (n int not null auto_increment primary key);
  5. insert into t1 values(NULL);
  6. insert into t1 values(2);
  7. save_master_pos;
  8. connection slave;
  9. sync_with_master;
  10. select n from t1;
  11. connection master;
  12. drop table t1;
  13. save_master_pos;
  14. connection slave;
  15. sync_with_master;
  16. # End of 4.1 tests