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

MySQL数据库

开发平台:

Visual C++

  1. # Initialise
  2. --disable_warnings
  3. drop table if exists t1;
  4. --enable_warnings
  5. #
  6. # Testing of NULL in a lot of different places
  7. #
  8. select null,N,isnull(null),isnull(1/0),isnull(1/0 = null),ifnull(null,1),ifnull(null,"TRUE"),ifnull("TRUE","ERROR"),1/0 is null,1 is not null;
  9. explain extended select null,N,isnull(null),isnull(1/0),isnull(1/0 = null),ifnull(null,1),ifnull(null,"TRUE"),ifnull("TRUE","ERROR"),1/0 is null,1 is not null;
  10. select 1 | NULL,1 & NULL,1+NULL,1-NULL;
  11. select NULL=NULL,NULL<>NULL,IFNULL(NULL,1.1)+0,IFNULL(NULL,1) | 0;
  12. select strcmp("a",NULL),(1<NULL)+0.0,NULL regexp "a",null like "a%","a%" like null;
  13. select concat("a",NULL),replace(NULL,"a","b"),replace("string","i",NULL),replace("string",NULL,"i"),insert("abc",1,1,NULL),left(NULL,1);
  14. select repeat("a",0),repeat("ab",5+5),repeat("ab",-1),reverse(NULL);
  15. select field(NULL,"a","b","c");
  16. select 2 between null and 1,2 between 3 AND NULL,NULL between 1 and 2,2 between NULL and 3, 2 between 1 AND null;
  17. explain extended select 2 between null and 1,2 between 3 AND NULL,NULL between 1 and 2,2 between NULL and 3, 2 between 1 AND null;
  18. SELECT NULL AND NULL, 1 AND NULL, NULL AND 1, NULL OR NULL, 0 OR NULL, NULL OR 0;
  19. SELECT (NULL OR NULL) IS NULL;
  20. select NULL AND 0, 0 and NULL;
  21. select inet_ntoa(null),inet_aton(null),inet_aton("122.256"),inet_aton("122.226."),inet_aton("");
  22. explain extended select inet_ntoa(null),inet_aton(null),inet_aton("122.256"),inet_aton("122.226."),inet_aton("");
  23. create table t1 (x int);
  24. insert into t1 values (null);
  25. select * from t1 where x != 0;
  26. drop table t1;
  27. #
  28. # Test problem med index on NULL columns and testing with =NULL;
  29. #
  30. CREATE TABLE t1 (
  31.   indexed_field int default NULL,
  32.   KEY indexed_field (indexed_field)
  33. );
  34. INSERT INTO t1 VALUES (NULL),(NULL);
  35. SELECT * FROM t1 WHERE indexed_field=NULL;
  36. SELECT * FROM t1 WHERE indexed_field IS NULL;
  37. SELECT * FROM t1 WHERE indexed_field<=>NULL;
  38. DROP TABLE t1;
  39. #
  40. # Testing of IFNULL
  41. #
  42. create table t1 (a int, b int) engine=myisam;
  43. insert into t1 values(20,null);
  44. select t2.b, ifnull(t2.b,"this is null") from t1 as t2 left join t1 as t3 on
  45. t2.b=t3.a;
  46. select t2.b, ifnull(t2.b,"this is null") from t1 as t2 left join t1 as t3 on
  47. t2.b=t3.a order by 1;
  48. insert into t1 values(10,null);
  49. select t2.b, ifnull(t2.b,"this is null") from t1 as t2 left join t1 as t3 on
  50. t2.b=t3.a order by 1;
  51. drop table t1;
  52. #
  53. # Test inserting and updating with NULL
  54. #
  55. CREATE TABLE t1 (a varchar(16) NOT NULL, b smallint(6) NOT NULL, c datetime NOT NULL, d smallint(6) NOT NULL);
  56. INSERT INTO t1 SET a = "", d= "2003-01-14 03:54:55";
  57. UPDATE t1 SET d=1/NULL;
  58. UPDATE t1 SET d=NULL;
  59. --error 1048
  60. INSERT INTO t1 (a) values (null);
  61. --error 1048
  62. INSERT INTO t1 (a) values (1/null);
  63. INSERT INTO t1 (a) values (null),(null);
  64. --error 1048
  65. INSERT INTO t1 (b) values (null);
  66. --error 1048
  67. INSERT INTO t1 (b) values (1/null);
  68. INSERT INTO t1 (b) values (null),(null);
  69. --error 1048
  70. INSERT INTO t1 (c) values (null);
  71. --error 1048
  72. INSERT INTO t1 (c) values (1/null);
  73. INSERT INTO t1 (c) values (null),(null);
  74. --error 1048
  75. INSERT INTO t1 (d) values (null);
  76. --error 1048
  77. INSERT INTO t1 (d) values (1/null);
  78. INSERT INTO t1 (d) values (null),(null);
  79. select * from t1;
  80. drop table t1;
  81. #
  82. # Test to check elimination of IS NULL predicate for a non-nullable attribute
  83. # (bug #1990)  
  84. #
  85. create table t1 (a int not null, b int not null, index idx(a));
  86. insert into t1 values
  87.   (1,1), (2,2), (3,3), (4,4), (5,5), (6,6),
  88.   (7,7), (8,8), (9,9), (10,10), (11,11), (12,12);
  89. explain select * from t1 where a between 2 and 3;
  90. explain select * from t1 where a between 2 and 3 or b is null;
  91. drop table t1;
  92. select cast(NULL as signed);
  93. #
  94. # Test case for bug #4256
  95. #
  96. create table t1(i int, key(i));
  97. insert into t1 values(1);
  98. insert into t1 select i*2 from t1;
  99. insert into t1 select i*2 from t1;
  100. insert into t1 select i*2 from t1;
  101. insert into t1 select i*2 from t1;
  102. insert into t1 select i*2 from t1;
  103. insert into t1 select i*2 from t1;
  104. insert into t1 select i*2 from t1;
  105. insert into t1 select i*2 from t1;
  106. insert into t1 select i*2 from t1;
  107. explain select * from t1 where i=2 or i is null;
  108. alter table t1 change i i int not null;
  109. explain select * from t1 where i=2 or i is null;
  110. drop table t1;
  111. #
  112. # NULL has its own type BINARY(0) by default.
  113. # But NULL should be weaker than a constant
  114. # when mixing charsets/collations
  115. #
  116. set names latin2;
  117. # Check that result type is taken from a non-null string
  118. create table t1 select
  119.   null as c00,
  120.   if(1, null, 'string') as c01,
  121.   if(0, null, 'string') as c02,
  122.   ifnull(null, 'string') as c03,
  123.   ifnull('string', null) as c04,
  124.   case when 0 then null else 'string' end as c05,
  125.   case when 1 then null else 'string' end as c06,
  126.   coalesce(null, 'string') as c07,
  127.   coalesce('string', null) as c08,
  128.   least('string',null) as c09,
  129.   least(null, 'string') as c10,
  130.   greatest('string',null) as c11,
  131.   greatest(null, 'string') as c12,
  132.   nullif('string', null) as c13,
  133.   nullif(null, 'string') as c14,
  134.   trim('string' from null) as c15,
  135.   trim(null from 'string') as c16,
  136.   substring_index('string', null, 1) as c17,
  137.   substring_index(null, 'string', 1) as c18,
  138.   elt(1, null, 'string') as c19,
  139.   elt(1, 'string', null) as c20,
  140.   concat('string', null) as c21,
  141.   concat(null, 'string') as c22,
  142.   concat_ws('sep', 'string', null) as c23,
  143.   concat_ws('sep', null, 'string') as c24,
  144.   concat_ws(null, 'string', 'string') as c25,
  145.   make_set(3, 'string', null) as c26,
  146.   make_set(3, null, 'string') as c27,
  147.   export_set(3, null, 'off', 'sep') as c29,
  148.   export_set(3, 'on', null, 'sep') as c30,
  149.   export_set(3, 'on', 'off', null) as c31,
  150.   replace(null, 'from', 'to') as c32,
  151.   replace('str', null, 'to') as c33,
  152.   replace('str', 'from', null) as c34,
  153.   insert('str', 1, 2, null) as c35,
  154.   insert(null, 1, 2, 'str') as c36,
  155.   lpad('str', 10, null) as c37,
  156.   rpad(null, 10, 'str') as c38;
  157.   
  158. show create table t1;
  159. drop table t1;
  160. #
  161. # Check that comparison is done according to
  162. # non-null string collation, i.e. case insensitively,
  163. # rather than according to NULL's collation, i.e. case sensitively
  164. #
  165. -- in field
  166. select 
  167.   case 'str' when 'STR' then 'str' when null then 'null' end as c01,
  168.   case 'str' when null then 'null' when 'STR' then 'str' end as c02,
  169.   field(null, 'str1', 'str2') as c03,
  170.   field('str1','STR1', null) as c04,
  171.   field('str1', null, 'STR1') as c05,
  172.   'string' in ('STRING', null) as c08,
  173.   'string' in (null, 'STRING') as c09;
  174. # Restore charset to the default value.
  175. set names latin1;
  176. # End of 4.1 tests