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

MySQL数据库

开发平台:

Visual C++

  1. # test to see if replication can continue when master sporadically fails on
  2. # COM_BINLOG_DUMP and additionally limits the number of events per dump
  3. source include/master-slave.inc;
  4. create table t2(n int);
  5. create table t1(n int not null auto_increment primary key);
  6. insert into t1 values (NULL),(NULL);
  7. truncate table t1;
  8. # We have to use 4 in the following to make this test work with all table types
  9. insert into t1 values (4),(NULL);
  10. sync_slave_with_master;
  11. stop slave;
  12. start slave;
  13. connection master;
  14. insert into t1 values (NULL),(NULL);
  15. flush logs;
  16. truncate table t1;
  17. insert into t1 values (10),(NULL),(NULL),(NULL),(NULL),(NULL);
  18. sync_slave_with_master;
  19. select * from t1;
  20. connection master;
  21. drop table t1,t2;
  22. sync_slave_with_master;
  23. # End of 4.1 tests