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

MySQL数据库

开发平台:

Visual C++

  1. drop table if exists t1,t2;
  2. create table t1 (a int not null auto_increment primary key);
  3. insert into t1 values(0);
  4. lock table t1 read;
  5. flush table t1;
  6. check table t1;
  7. Table Op Msg_type Msg_text
  8. test.t1 check status OK
  9. drop table t1;
  10. create table t1(table_id char(20) primary key);
  11. create table t2(table_id char(20) primary key);
  12. insert into t1 values ('test.t1');
  13. insert into t1 values ('');
  14. insert into t2 values ('test.t2');
  15. insert into t2 values ('');
  16. handler t1 open as a1;
  17. handler t1 open as a2;
  18. handler t2 open;
  19. handler a1 read first limit 9;
  20. table_id
  21. test.t1
  22. handler a2 read first limit 9;
  23. table_id
  24. test.t1
  25. handler t2 read first limit 9;
  26. table_id
  27. test.t2
  28. flush tables;
  29. handler a1 read first limit 9;
  30. table_id
  31. test.t1
  32. handler a2 read first limit 9;
  33. table_id
  34. test.t1
  35. handler t2 read first limit 9;
  36. table_id
  37. test.t2
  38. handler t1 open as a1;
  39. ERROR 42000: Not unique table/alias: 'a1'
  40. handler t1 open as a2;
  41. ERROR 42000: Not unique table/alias: 'a2'
  42. handler t2 open;
  43. ERROR 42000: Not unique table/alias: 't2'
  44. handler a1 read first limit 9;
  45. table_id
  46. test.t1
  47. handler a2 read first limit 9;
  48. table_id
  49. test.t1
  50. handler t2 read first limit 9;
  51. table_id
  52. test.t2
  53. flush table t1;
  54. handler a1 read first limit 9;
  55. table_id
  56. test.t1
  57. handler a2 read first limit 9;
  58. table_id
  59. test.t1
  60. handler t2 read first limit 9;
  61. table_id
  62. test.t2
  63. flush table t2;
  64. handler t2 close;
  65. drop table t1;
  66. drop table t2;
  67. create table t1(table_id char(20) primary key);
  68. insert into t1 values ('Record-01');
  69. insert into t1 values ('Record-02');
  70. insert into t1 values ('Record-03');
  71. insert into t1 values ('Record-04');
  72. insert into t1 values ('Record-05');
  73. handler t1 open;
  74. handler t1 read first limit 1;
  75. table_id
  76. Record-01
  77. handler t1 read next limit 1;
  78. table_id
  79. Record-02
  80. handler t1 read next limit 1;
  81. table_id
  82. Record-03
  83. flush table t1;
  84. handler t1 read next limit 1;
  85. table_id
  86. Record-01
  87. handler t1 read next limit 1;
  88. table_id
  89. Record-02
  90. handler t1 close;
  91. drop table t1;