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

MySQL数据库

开发平台:

Visual C++

  1. # Testing if "flush logs" command bouncing resulting in logs created in a loop 
  2. # in case of bi-directional replication
  3. source include/master-slave.inc;
  4. connection slave;
  5. stop slave;
  6. --replace_result $MASTER_MYPORT MASTER_PORT
  7. eval change master to master_host='127.0.0.1',master_user='root',
  8.  master_password='',master_port=$MASTER_MYPORT;
  9. start slave;
  10. connection master;
  11. --replace_result $SLAVE_MYPORT SLAVE_PORT
  12. eval change master to master_host='127.0.0.1',master_user='root',
  13.  master_password='',master_port=$SLAVE_MYPORT;
  14. start slave;
  15. sleep 5;
  16. flush logs;
  17. sleep 5;
  18. --replace_result $SLAVE_MYPORT SLAVE_PORT
  19. --replace_column 1 # 33 #
  20. show slave status;
  21. # End of 4.1 tests