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

MySQL数据库

开发平台:

Visual C++

  1. drop table if exists t1, t2, t3, t4;
  2. flush status;
  3. create table t1 (a int) engine=ndbcluster;
  4. create table t2 (a int) engine=ndbcluster;
  5. insert into t1 value (2);
  6. insert into t2 value (3);
  7. select * from t1;
  8. a
  9. 2
  10. select * from t2;
  11. a
  12. 3
  13. show status like 'handler_discover%';
  14. Variable_name Value
  15. Handler_discover 0
  16. select * from t1;
  17. a
  18. 2
  19. drop table t1;
  20. create table t1 (a int) engine=ndbcluster;
  21. insert into t1 value (2);
  22. select * from t1;
  23. a
  24. 2
  25. show status like 'handler_discover%';
  26. Variable_name Value
  27. Handler_discover 0
  28. drop table t1;
  29. create table t1 (a int) engine=ndbcluster;
  30. insert into t1 value (2);
  31. select * from t1;
  32. ERROR HY000: Got error 241 'Invalid schema object version' from ndbcluster
  33. select * from t1;
  34. a
  35. 2
  36. flush status;
  37. select * from t1;
  38. a
  39. 2
  40. update t1 set a=3 where a=2;
  41. show status like 'handler_discover%';
  42. Variable_name Value
  43. Handler_discover 0
  44. create table t3 (a int not null primary key, b varchar(22),
  45. c int, last_col text) engine=ndb;
  46. insert into t3 values(1, 'Hi!', 89, 'Longtext column');
  47. create table t4 (pk int primary key, b int) engine=ndb;
  48. select * from t1;
  49. a
  50. 3
  51. select * from t3;
  52. a b c last_col
  53. 1 Hi! 89 Longtext column
  54. show status like 'handler_discover%';
  55. Variable_name Value
  56. Handler_discover 1
  57. show tables like 't4';
  58. Tables_in_test (t4)
  59. t4
  60. show status like 'handler_discover%';
  61. Variable_name Value
  62. Handler_discover 2
  63. show tables;
  64. Tables_in_test
  65. t1
  66. t2
  67. t3
  68. t4
  69. drop table t1, t2, t3, t4;
  70. drop table t1, t3, t4;