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

MySQL数据库

开发平台:

Visual C++

  1. #
  2. # Check for problems with delete
  3. #
  4. --disable_warnings
  5. drop table if exists t1,t11,t12,t2;
  6. --enable_warnings
  7. CREATE TABLE t1 (a tinyint(3), b tinyint(5));
  8. INSERT INTO t1 VALUES (1,1);
  9. INSERT LOW_PRIORITY INTO t1 VALUES (1,2);
  10. INSERT INTO t1 VALUES (1,3);
  11. DELETE from t1 where a=1 limit 1;
  12. DELETE LOW_PRIORITY from t1 where a=1;
  13. INSERT INTO t1 VALUES (1,1);
  14. DELETE from t1;
  15. LOCK TABLE t1 write;
  16. INSERT INTO t1 VALUES (1,2);
  17. DELETE from t1;
  18. UNLOCK TABLES;
  19. INSERT INTO t1 VALUES (1,2);
  20. SET AUTOCOMMIT=0;
  21. DELETE from t1;
  22. SET AUTOCOMMIT=1;
  23. drop table t1;
  24. #
  25. # Test of delete when the delete will cause a node to disappear and reappear
  26. # (This assumes a block size of 1024)
  27. #
  28. create table t1 (
  29. a bigint not null,
  30. b bigint not null default 0,
  31. c bigint not null default 0,
  32. d bigint not null default 0,
  33. e bigint not null default 0,
  34. f bigint not null default 0,
  35. g bigint not null default 0,
  36. h bigint not null default 0,
  37. i bigint not null default 0,
  38. j bigint not null default 0,
  39. primary key (a,b,c,d,e,f,g,h,i,j));
  40. insert into t1 (a) values (2),(4),(6),(8),(10),(12),(14),(16),(18),(20),(22),(24),(26),(23);
  41. delete from t1 where a=26;
  42. drop table t1;
  43. create table t1 (
  44. a bigint not null,
  45. b bigint not null default 0,
  46. c bigint not null default 0,
  47. d bigint not null default 0,
  48. e bigint not null default 0,
  49. f bigint not null default 0,
  50. g bigint not null default 0,
  51. h bigint not null default 0,
  52. i bigint not null default 0,
  53. j bigint not null default 0,
  54. primary key (a,b,c,d,e,f,g,h,i,j));
  55. insert into t1 (a) values (2),(4),(6),(8),(10),(12),(14),(16),(18),(20),(22),(24),(26),(23),(27);
  56. delete from t1 where a=27;
  57. drop table t1;
  58. CREATE TABLE `t1` (
  59.   `i` int(10) NOT NULL default '0',
  60.   `i2` int(10) NOT NULL default '0',
  61.   PRIMARY KEY  (`i`)
  62. );
  63. -- error 1054
  64. DELETE FROM t1 USING t1 WHERE post='1';
  65. drop table t1;
  66. #
  67. # CHAR(0) bug - not actually DELETE bug, but anyway...
  68. #
  69. CREATE TABLE t1 (
  70.   bool     char(0) default NULL,
  71.   not_null varchar(20) binary NOT NULL default '',
  72.   misc     integer not null,
  73.   PRIMARY KEY  (not_null)
  74. ) ENGINE=MyISAM;
  75. INSERT INTO t1 VALUES (NULL,'a',4), (NULL,'b',5), (NULL,'c',6), (NULL,'d',7);
  76. select * from t1 where misc > 5 and bool is null;
  77. delete   from t1 where misc > 5 and bool is null;
  78. select * from t1 where misc > 5 and bool is null;
  79. select count(*) from t1;
  80. delete from t1 where 1 > 2;
  81. select count(*) from t1;
  82. delete from t1 where 3 > 2;
  83. select count(*) from t1;
  84. drop table t1;
  85. #
  86. # Bug #5733: Table handler error with self-join multi-table DELETE
  87. #
  88. create table t1 (a int not null auto_increment primary key, b char(32));
  89. insert into t1 (b) values ('apple'), ('apple');
  90. select * from t1;
  91. delete t1 from t1, t1 as t2 where t1.b = t2.b and t1.a > t2.a;
  92. select * from t1;
  93. drop table t1;
  94. #
  95. # IGNORE option
  96. #
  97. create table t11 (a int NOT NULL, b int, primary key (a));
  98. create table t12 (a int NOT NULL, b int, primary key (a));
  99. create table t2 (a int NOT NULL, b int, primary key (a));
  100. insert into t11 values (0, 10),(1, 11),(2, 12);
  101. insert into t12 values (33, 10),(0, 11),(2, 12);
  102. insert into t2 values (1, 21),(2, 12),(3, 23);
  103. select * from t11;
  104. select * from t12;
  105. select * from t2;
  106. -- error 1242
  107. delete t11.*, t12.* from t11,t12 where t11.a = t12.a and t11.b <> (select b from t2 where t11.a < t2.a);
  108. select * from t11;
  109. select * from t12;
  110. delete ignore t11.*, t12.* from t11,t12 where t11.a = t12.a and t11.b <> (select b from t2 where t11.a < t2.a);
  111. select * from t11;
  112. select * from t12;
  113. insert into t11 values (2, 12);
  114. -- error 1242
  115. delete from t11 where t11.b <> (select b from t2 where t11.a < t2.a);
  116. select * from t11;
  117. delete ignore from t11 where t11.b <> (select b from t2 where t11.a < t2.a);
  118. select * from t11;
  119. drop table t11, t12, t2;
  120. #
  121. # Bug #4198: deletion and KEYREAD
  122. #
  123. create table t1 (a int, b int, unique key (a), key (b));
  124. insert into t1 values (3, 3), (7, 7);
  125. delete t1 from t1 where a = 3;
  126. check table t1;
  127. select * from t1;
  128. drop table t1;
  129. #
  130. # Bug #8392: delete with ORDER BY containing a direct reference to the table 
  131. #
  132.  
  133. CREATE TABLE t1 ( a int PRIMARY KEY );
  134. DELETE FROM t1 WHERE t1.a > 0 ORDER BY t1.a;
  135. INSERT INTO t1 VALUES (0),(1),(2);
  136. DELETE FROM t1 WHERE t1.a > 0 ORDER BY t1.a LIMIT 1;
  137. SELECT * FROM t1;
  138. DROP TABLE t1;
  139. # End of 4.1 tests