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

MySQL数据库

开发平台:

Visual C++

  1. require_manager;
  2. source include/master-slave.inc;
  3. connect (slave_sec,localhost,root,,test,0,slave.sock-1); 
  4. connect (slave_ter,localhost,root,,test,0,slave.sock-2); 
  5. connection master;
  6. show variables like 'rpl_recovery_rank';
  7. show status like 'Rpl_status';
  8. create table t1(n int);
  9. drop table t1;
  10. sync_slave_with_master;
  11. show variables like 'rpl_recovery_rank';
  12. show status like 'Rpl_status';
  13. connection slave_sec;
  14. start slave;
  15. sync_with_master;
  16. show variables like 'rpl_recovery_rank';
  17. show status like 'Rpl_status';
  18. connection slave_ter;
  19. start slave;
  20. sync_with_master;
  21. show variables like 'rpl_recovery_rank';
  22. show status like 'Rpl_status';
  23. # End of 4.1 tests