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

MySQL数据库

开发平台:

Visual C++

  1. connect (master,127.0.0.1,root,,test,$MASTER_MYPORT,);
  2. connect (master1,127.0.0.1,root,,test,$MASTER_MYPORT,);
  3. connect (slave,127.0.0.1,root,,test,$SLAVE_MYPORT,);
  4. connect (slave1,127.0.0.1,root,,test,$SLAVE_MYPORT,);
  5. connection slave;
  6. #we expect STOP SLAVE to produce a warning as the slave is stopped
  7. #(the server was started with skip-slave-start)
  8. --disable_warnings
  9. stop slave;
  10. --enable_warnings
  11. @r/slave-stopped.result show status like 'Slave_running';
  12. connection master;
  13. --disable_warnings
  14. drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
  15. --enable_warnings
  16. reset master;
  17. connection slave;
  18. reset slave;
  19. # Clean up old test tables
  20. --disable_warnings
  21. drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
  22. --enable_warnings
  23. start slave;
  24. @r/slave-running.result show status like 'Slave_running';
  25. # Set the default connection to 'master'
  26. connection master;