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

MySQL数据库

开发平台:

Visual C++

  1. # This test checks that a slave DOES execute queries originating
  2. # from itself, if running with --replicate-same-server-id.
  3. source include/master-slave.inc;
  4. connection slave;
  5. create table t1 (n int);
  6. reset master;
  7. # replicate ourselves
  8. stop slave;
  9. --replace_result $SLAVE_MYPORT SLAVE_PORT
  10. eval change master to master_port=$SLAVE_MYPORT;
  11. --replace_result $SLAVE_MYPORT SLAVE_PORT
  12. --replace_column 18 #
  13. show slave status;
  14. start slave;
  15. insert into t1 values (1);
  16. save_master_pos;
  17. sync_with_master;
  18. select * from t1; # check that indeed 2 were inserted
  19. # We stop the slave before cleaning up otherwise we'll get
  20. # 'drop table t1' executed twice, so an error in the slave.err
  21. # (not critical).
  22. stop slave;
  23. drop table t1;
  24. # End of 4.1 tests