rpl000010.test
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:1k
源码类别:

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. connection slave;
  5. drop table if exists t1;
  6. connection master;
  7. drop table if exists t1;
  8. create table t1 (n int not null auto_increment primary key);
  9. insert into t1 values(NULL);
  10. insert into t1 values(2);
  11. save_master_pos;
  12. connection slave;
  13. sync_with_master;
  14. @r/rpl000010.result select n from t1;
  15. connection master;
  16. drop table t1;
  17. save_master_pos;
  18. connection slave;
  19. sync_with_master;