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

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. reset master;
  8. SET @save_select_limit=@@session.sql_select_limit;
  9. SET @@session.sql_select_limit=10, @@session.pseudo_thread_id=100;
  10. ERROR HY000: Access denied; you need the SUPER privilege for this operation
  11. SELECT @@session.sql_select_limit = @save_select_limit;
  12. @@session.sql_select_limit = @save_select_limit
  13. 1
  14. SET @@session.sql_select_limit=10, @@session.sql_log_bin=0;
  15. ERROR HY000: Access denied; you need the SUPER privilege for this operation
  16. SELECT @@session.sql_select_limit = @save_select_limit;
  17. @@session.sql_select_limit = @save_select_limit
  18. 1
  19. SET @@session.pseudo_thread_id=100;
  20. SET @@session.pseudo_thread_id=connection_id();
  21. SET @@session.sql_log_bin=0;
  22. SET @@session.sql_log_bin=1;
  23. drop table if exists t1,t2;
  24. create table t1(f int);
  25. create table t2(f int);
  26. insert into t1 values (1),(2),(3),(4),(5),(6),(7),(8),(9),(10);
  27. create temporary table t3(f int);
  28. insert into t3 select * from t1 where f<6;
  29. create temporary table t3(f int);
  30. insert into t2 select count(*) from t3;
  31. insert into t3 select * from t1 where f>=4;
  32. drop temporary table t3;
  33. insert into t2 select count(*) from t3;
  34. drop temporary table t3;
  35. select * from t2;
  36. f
  37. 5
  38. 7
  39. show binlog events;
  40. Log_name Pos Event_type Server_id Orig_log_pos Info
  41. master-bin.000001 4 Start 1 4 Server ver: VERSION, Binlog ver: 3
  42. master-bin.000001 79 Query 1 79 use `test`; drop table if exists t1,t2
  43. master-bin.000001 140 Query 1 140 use `test`; create table t1(f int)
  44. master-bin.000001 197 Query 1 197 use `test`; create table t2(f int)
  45. master-bin.000001 254 Query 1 254 use `test`; insert into t1 values (1),(2),(3),(4),(5),(6),(7),(8),(9),(10)
  46. master-bin.000001 351 Query 1 351 use `test`; create temporary table t3(f int)
  47. master-bin.000001 418 Query 1 418 use `test`; insert into t3 select * from t1 where f<6
  48. master-bin.000001 494 Query 1 494 use `test`; create temporary table t3(f int)
  49. master-bin.000001 561 Query 1 561 use `test`; insert into t2 select count(*) from t3
  50. master-bin.000001 634 Query 1 634 use `test`; insert into t3 select * from t1 where f>=4
  51. master-bin.000001 711 Query 1 711 use `test`; drop temporary table t3
  52. master-bin.000001 769 Query 1 769 use `test`; insert into t2 select count(*) from t3
  53. master-bin.000001 842 Query 1 842 use `test`; drop temporary table t3
  54. drop table t1, t2;
  55. use test;
  56. SET TIMESTAMP=1040323920;
  57. create table t1(f int);
  58. SET TIMESTAMP=1040323931;
  59. create table t2(f int);
  60. SET TIMESTAMP=1040323938;
  61. insert into t1 values (1),(2),(3),(4),(5),(6),(7),(8),(9),(10);
  62. SET TIMESTAMP=1040323945;
  63. SET @@session.pseudo_thread_id=1;
  64. create temporary table t3(f int);
  65. SET TIMESTAMP=1040323952;
  66. SET @@session.pseudo_thread_id=1;
  67. insert into t3 select * from t1 where f<6;
  68. SET TIMESTAMP=1040324145;
  69. SET @@session.pseudo_thread_id=2;
  70. create temporary table t3(f int);
  71. SET TIMESTAMP=1040324186;
  72. SET @@session.pseudo_thread_id=1;
  73. insert into t2 select count(*) from t3;
  74. SET TIMESTAMP=1040324200;
  75. SET @@session.pseudo_thread_id=2;
  76. insert into t3 select * from t1 where f>=4;
  77. SET TIMESTAMP=1040324211;
  78. SET @@session.pseudo_thread_id=1;
  79. drop temporary table t3;
  80. SET TIMESTAMP=1040324219;
  81. SET @@session.pseudo_thread_id=2;
  82. insert into t2 select count(*) from t3;
  83. SET TIMESTAMP=1040324224;
  84. SET @@session.pseudo_thread_id=2;
  85. drop temporary table t3;
  86. select * from t2;
  87. f
  88. 5
  89. 7
  90. drop table t1,t2;
  91. create temporary table t3 (f int);