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

MySQL数据库

开发平台:

Visual C++

  1. stop slave;
  2. drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
  3. reset master;
  4. reset slave;
  5. drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
  6. start slave;
  7. create table t2 (n int);
  8. create temporary table t1 (n int);
  9. insert into t1 values(1),(2),(3);
  10. insert into t2 select * from t1;
  11. create temporary table t3 (n int not null);
  12. alter table t3 add primary key(n);
  13. flush logs;
  14. insert into t3 values (100);
  15. insert into t2 select * from t3;
  16. drop table if exists t3;
  17. insert into t2 values (101);
  18. create temporary table t1 (n int);
  19. insert into t1 values (4),(5);
  20. insert into t2 select * from t1;
  21. insert into t2 values(6);
  22. select * from t2;
  23. n
  24. 1
  25. 2
  26. 3
  27. 100
  28. 101
  29. 4
  30. 5
  31. 6
  32. show status like 'Slave_open_temp_tables';
  33. Variable_name Value
  34. Slave_open_temp_tables 0
  35. drop table if exists t1,t2;
  36. Warnings:
  37. Note 1051 Unknown table 't1'