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

MySQL数据库

开发平台:

Visual C++

  1. #
  2. # Check null keys
  3. --disable_warnings
  4. drop table if exists t1,t2;
  5. --enable_warnings
  6. create table t1 (a int, b int not null,unique key (a,b),index(b)) engine=myisam;
  7. insert ignore into t1 values (1,1),(2,2),(3,3),(4,4),(5,5),(6,6),(null,7),(9,9),(8,8),(7,7),(null,9),(null,9),(6,6);
  8. explain select * from t1 where a is null;
  9. explain select * from t1 where a is null and b = 2;
  10. explain select * from t1 where a is null and b = 7;
  11. explain select * from t1 where a=2 and b = 2;
  12. explain select * from t1 where a<=>b limit 2;
  13. explain select * from t1 where (a is null or a > 0 and a < 3) and b < 5 limit 3;
  14. explain select * from t1 where (a is null or a = 7) and b=7;
  15. explain select * from t1 where (a is null or a = 7) and b=7 order by a;
  16. explain select * from t1 where (a is null and b>a) or a is null and b=7 limit 2;
  17. explain select * from t1 where a is null and b=9 or a is null and b=7 limit 3;
  18. explain select * from t1 where a > 1 and a < 3 limit 1;
  19. explain select * from t1 where a > 8 and a < 9;
  20. select * from t1 where a is null;
  21. select * from t1 where a is null and b = 7;
  22. select * from t1 where a<=>b limit 2;
  23. select * from t1 where (a is null or a > 0 and a < 3) and b < 5 limit 3;
  24. select * from t1 where (a is null or a > 0 and a < 3) and b > 7 limit 3;
  25. select * from t1 where (a is null or a = 7) and b=7;
  26. select * from t1 where a is null and b=9 or a is null and b=7 limit 3;
  27. create table t2 like t1;
  28. insert into t2 select * from t1;
  29. alter table t1 modify b blob not null, add c int not null, drop key a, add unique key (a,b(20),c), drop key b, add key (b(10));
  30. explain select * from t1 where a is null and b = 2;
  31. explain select * from t1 where a is null and b = 2 and c=0;
  32. explain select * from t1 where a is null and b = 7 and c=0;
  33. explain select * from t1 where a=2 and b = 2;
  34. explain select * from t1 where a<=>b limit 2;
  35. explain select * from t1 where (a is null or a > 0 and a < 3) and b < 5 and c=0 limit 3;
  36. explain select * from t1 where (a is null or a = 7) and b=7 and c=0;
  37. explain select * from t1 where (a is null and b>a) or a is null and b=7 limit 2;
  38. explain select * from t1 where a is null and b=9 or a is null and b=7 limit 3;
  39. explain select * from t1 where a > 1 and a < 3 limit 1;
  40. explain select * from t1 where a is null and b=7 or a > 1 and a < 3 limit 1;
  41. explain select * from t1 where a > 8 and a < 9;
  42. explain select * from t1 where b like "6%";
  43. select * from t1 where a is null;
  44. select * from t1 where a is null and b = 7 and c=0;
  45. select * from t1 where a<=>b limit 2;
  46. select * from t1 where (a is null or a > 0 and a < 3) and b < 5 limit 3;
  47. select * from t1 where (a is null or a > 0 and a < 3) and b > 7 limit 3;
  48. select * from t1 where (a is null or a = 7) and b=7 and c=0;
  49. select * from t1 where a is null and b=9 or a is null and b=7 limit 3;
  50. select * from t1 where b like "6%";
  51. #
  52. # Test ref_or_null optimization
  53. #
  54. drop table t1;
  55. rename table t2 to t1;
  56. alter table t1 modify b int null;
  57. insert into t1 values (7,null), (8,null), (8,7);
  58. explain select * from t1 where a = 7 and (b=7 or b is null);
  59. select * from t1 where a = 7 and (b=7 or b is null);
  60. explain select * from t1 where (a = 7 or a is null) and (b=7 or b is null);
  61. select * from t1 where (a = 7 or a is null) and (b=7 or b is null);
  62. explain select * from t1 where (a = 7 or a is null) and (a = 7 or a is null);
  63. select * from t1 where (a = 7 or a is null) and (a = 7 or a is null);
  64. create table t2 (a int);
  65. insert into t2 values (7),(8);
  66. explain select * from t2 straight_join t1 where t1.a=t2.a and b is null;
  67. drop index b on t1;
  68. explain select * from t2,t1 where t1.a=t2.a and b is null;
  69. select * from t2,t1 where t1.a=t2.a and b is null;
  70. explain select * from t2,t1 where t1.a=t2.a and (b= 7 or b is null);
  71. select * from t2,t1 where t1.a=t2.a and (b= 7 or b is null);
  72. explain select * from t2,t1 where (t1.a=t2.a or t1.a is null) and b= 7;
  73. select * from t2,t1 where (t1.a=t2.a or t1.a is null) and b= 7;
  74. explain select * from t2,t1 where (t1.a=t2.a or t1.a is null) and (b= 7 or b is null);
  75. select * from t2,t1 where (t1.a=t2.a or t1.a is null) and (b= 7 or b is null);
  76. insert into t2 values (null),(6);
  77. delete from t1 where a=8;
  78. explain select * from t2,t1 where t1.a=t2.a or t1.a is null;
  79. explain select * from t2,t1 where t1.a<=>t2.a or (t1.a is null and t1.b <> 9);
  80. select * from t2,t1 where t1.a<=>t2.a or (t1.a is null and t1.b <> 9);
  81. drop table t1,t2;
  82. #
  83. # The following failed for Matt Loschert
  84. #
  85. CREATE TABLE t1 (
  86.   id int(10) unsigned NOT NULL auto_increment,
  87.   uniq_id int(10) unsigned default NULL,
  88.   PRIMARY KEY  (id),
  89.   UNIQUE KEY idx1 (uniq_id)
  90. ) ENGINE=MyISAM;
  91. CREATE TABLE t2 (
  92.   id int(10) unsigned NOT NULL auto_increment,
  93.   uniq_id int(10) unsigned default NULL,
  94.   PRIMARY KEY  (id)
  95. ) ENGINE=MyISAM;
  96. INSERT INTO t1 VALUES (1,NULL),(2,NULL),(3,1),(4,2),(5,NULL),(6,NULL),(7,3),(8,4),(9,NULL),(10,NULL);
  97. INSERT INTO t2 VALUES (1,NULL),(2,NULL),(3,1),(4,2),(5,NULL),(6,NULL),(7,3),(8,4),(9,NULL),(10,NULL);
  98. #
  99. # Check IS NULL optimization
  100. #
  101. explain select id from t1 where uniq_id is null;
  102. explain select id from t1 where uniq_id =1;
  103. #
  104. # Check updates
  105. #
  106. UPDATE t1 SET id=id+100 where uniq_id is null;
  107. UPDATE t2 SET id=id+100 where uniq_id is null;
  108. select id from t1 where uniq_id is null;
  109. select id from t2 where uniq_id is null;
  110. #
  111. # Delete all records from each table where the uniq_id field is null
  112. #
  113. DELETE FROM t1 WHERE uniq_id IS NULL;
  114. DELETE FROM t2 WHERE uniq_id IS NULL;
  115. #
  116. # Select what is left -- notice the difference
  117. #
  118. SELECT * FROM t1 ORDER BY uniq_id, id;
  119. SELECT * FROM t2 ORDER BY uniq_id, id;
  120. DROP table t1,t2;
  121. #
  122. # This crashed MySQL 3.23.47
  123. #
  124. CREATE TABLE `t1` (
  125.   `order_id` char(32) NOT NULL default '',
  126.   `product_id` char(32) NOT NULL default '',
  127.   `product_type` int(11) NOT NULL default '0',
  128.   PRIMARY KEY  (`order_id`,`product_id`,`product_type`)
  129. ) ENGINE=MyISAM;
  130. CREATE TABLE `t2` (
  131.   `order_id` char(32) NOT NULL default '',
  132.   `product_id` char(32) NOT NULL default '',
  133.   `product_type` int(11) NOT NULL default '0',
  134.   PRIMARY KEY  (`order_id`,`product_id`,`product_type`)
  135. ) ENGINE=MyISAM;
  136. INSERT INTO t1 (order_id, product_id, product_type) VALUES
  137. ('3d7ce39b5d4b3e3d22aaafe9b633de51',1206029, 3),
  138. ('3d7ce39b5d4b3e3d22aaafe9b633de51',5880836, 3),
  139. ('9d9aad7764b5b2c53004348ef8d34500',2315652, 3);
  140. INSERT INTO t2 (order_id, product_id, product_type) VALUES
  141. ('9d9aad7764b5b2c53004348ef8d34500',2315652, 3);
  142. select t1.* from t1
  143. left join t2 using(order_id, product_id, product_type)
  144. where t2.order_id=NULL;
  145. select t1.* from t1
  146. left join t2 using(order_id, product_id, product_type)
  147. where t2.order_id is NULL;
  148. drop table t1,t2;
  149. #
  150. # The last select returned wrong results in 3.23.52
  151. #
  152. create table t1 (id int);
  153. insert into t1 values (null), (0);
  154. create table t2 (id int);
  155. insert into t2 values (null);
  156. select * from t1, t2 where t1.id = t2.id;
  157. alter table t1 add key id (id);
  158. select * from t1, t2 where t1.id = t2.id;
  159. drop table t1,t2;
  160. #
  161. # Check bug when doing <=> NULL on an indexed null field
  162. #
  163. create table t1 (
  164.   id  integer,
  165.   id2 integer not null,
  166.   index (id),
  167.   index (id2)
  168. );
  169. insert into t1 values(null,null),(1,1);
  170. select * from t1;
  171. select * from t1 where id <=> null;
  172. select * from t1 where id <=> null or id > 0;
  173. select * from t1 where id is null or id > 0;
  174. select * from t1 where id2 <=> null or id2 > 0;
  175. select * from t1 where id2 is null or id2 > 0;
  176. delete from t1 where id <=> NULL;
  177. select * from t1;
  178. drop table t1;
  179. #
  180. # Test for bug #12144: optimizations for key access with null keys 
  181. #                      used for outer joins
  182. #
  183. CREATE TABLE t1 (a int);
  184. CREATE TABLE t2 (a int, b int, INDEX idx(a));
  185. CREATE TABLE t3 (b int, INDEX idx(b));
  186. CREATE TABLE t4 (b int, INDEX idx(b));
  187. INSERT INTO t1 VALUES (1), (2), (3), (4);
  188. INSERT INTO t2 VALUES (1, 1), (3, 1);
  189. INSERT INTO t3 VALUES 
  190.   (NULL), (NULL), (NULL), (NULL), (NULL),
  191.   (NULL), (NULL), (NULL), (NULL), (NULL);
  192. INSERT INTO t4 SELECT * FROM t3;
  193. INSERT INTO t3 SELECT * FROM t4;
  194. INSERT INTO t4 SELECT * FROM t3;
  195. INSERT INTO t3 SELECT * FROM t4;
  196. INSERT INTO t4 SELECT * FROM t3;
  197. INSERT INTO t3 SELECT * FROM t4;
  198. INSERT INTO t4 SELECT * FROM t3;
  199. INSERT INTO t3 SELECT * FROM t4;
  200. INSERT INTO t4 SELECT * FROM t3;
  201. INSERT INTO t3 SELECT * FROM t4;
  202. INSERT INTO t4 SELECT * FROM t3;
  203. INSERT INTO t3 SELECT * FROM t4;
  204. INSERT INTO t4 SELECT * FROM t3;
  205. INSERT INTO t3 SELECT * FROM t4;
  206. INSERT INTO t4 SELECT * FROM t3;
  207. INSERT INTO t3 SELECT * FROM t4;
  208. INSERT INTO t3 VALUES (2), (3);
  209. ANALYZE table t1, t2, t3;
  210. SELECT COUNT(*) FROM t3;
  211. EXPLAIN SELECT SQL_CALC_FOUND_ROWS * FROM t1 LEFT JOIN t2 ON t1.a=t2.a
  212.                                              LEFT JOIN t3 ON t2.b=t3.b;
  213. FLUSH STATUS ;
  214. SELECT SQL_CALC_FOUND_ROWS * FROM t1 LEFT JOIN t2 ON t1.a=t2.a
  215.                                      LEFT JOIN t3 ON t2.b=t3.b;
  216. SELECT FOUND_ROWS();
  217. SHOW STATUS LIKE "handler_read%";
  218. DROP TABLE t1,t2,t3,t4;
  219. # End of 4.1 tests