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

MySQL数据库

开发平台:

Visual C++

  1. source include/master-slave.inc;
  2. save_master_pos;
  3. connection slave;
  4. sync_with_master;
  5. connection master;
  6. create table t2(n int);
  7. create temporary table t1 (n int);
  8. insert into t1 values(1),(2),(3);
  9. insert into t2 select * from t1;
  10. connection master1;
  11. create temporary table t1 (n int);
  12. insert into t1 values (4),(5);
  13. insert into t2 select * from t1 as t10;
  14. save_master_pos;
  15. disconnect master;
  16. connection slave;
  17. #add 1 to catch drop table
  18. sync_with_master 1;
  19. connection master1;
  20. insert into t2 values(6);
  21. save_master_pos;
  22. disconnect master1;
  23. connection slave;
  24. # same trick to go one more event
  25. sync_with_master 1;
  26. select * from t2;
  27. show status like 'Slave_open_temp_tables';
  28. #
  29. # Clean up
  30. #
  31. connect (master2,localhost,root,,);
  32. connection master2;
  33. # We will get a warning for t1 as this is a temporary table that doesn't
  34. # exist in this connection.
  35. drop table if exists t1,t2;
  36. save_master_pos;
  37. connection slave;
  38. sync_with_master;
  39. # End of 4.1 tests