sl@0
|
1 |
# 2001 September 15
|
sl@0
|
2 |
#
|
sl@0
|
3 |
# The author disclaims copyright to this source code. In place of
|
sl@0
|
4 |
# a legal notice, here is a blessing:
|
sl@0
|
5 |
#
|
sl@0
|
6 |
# May you do good and not evil.
|
sl@0
|
7 |
# May you find forgiveness for yourself and forgive others.
|
sl@0
|
8 |
# May you share freely, never taking more than you give.
|
sl@0
|
9 |
#
|
sl@0
|
10 |
#***********************************************************************
|
sl@0
|
11 |
# This file implements regression tests for SQLite library.
|
sl@0
|
12 |
#
|
sl@0
|
13 |
# This file implements tests for proper treatment of the special
|
sl@0
|
14 |
# value NULL.
|
sl@0
|
15 |
#
|
sl@0
|
16 |
|
sl@0
|
17 |
set testdir [file dirname $argv0]
|
sl@0
|
18 |
source $testdir/tester.tcl
|
sl@0
|
19 |
|
sl@0
|
20 |
# Create a table and some data to work with.
|
sl@0
|
21 |
#
|
sl@0
|
22 |
do_test null-1.0 {
|
sl@0
|
23 |
execsql {
|
sl@0
|
24 |
begin;
|
sl@0
|
25 |
create table t1(a,b,c);
|
sl@0
|
26 |
insert into t1 values(1,0,0);
|
sl@0
|
27 |
insert into t1 values(2,0,1);
|
sl@0
|
28 |
insert into t1 values(3,1,0);
|
sl@0
|
29 |
insert into t1 values(4,1,1);
|
sl@0
|
30 |
insert into t1 values(5,null,0);
|
sl@0
|
31 |
insert into t1 values(6,null,1);
|
sl@0
|
32 |
insert into t1 values(7,null,null);
|
sl@0
|
33 |
commit;
|
sl@0
|
34 |
select * from t1;
|
sl@0
|
35 |
}
|
sl@0
|
36 |
} {1 0 0 2 0 1 3 1 0 4 1 1 5 {} 0 6 {} 1 7 {} {}}
|
sl@0
|
37 |
|
sl@0
|
38 |
# Check for how arithmetic expressions handle NULL
|
sl@0
|
39 |
#
|
sl@0
|
40 |
do_test null-1.1 {
|
sl@0
|
41 |
execsql {
|
sl@0
|
42 |
select ifnull(a+b,99) from t1;
|
sl@0
|
43 |
}
|
sl@0
|
44 |
} {1 2 4 5 99 99 99}
|
sl@0
|
45 |
do_test null-1.2 {
|
sl@0
|
46 |
execsql {
|
sl@0
|
47 |
select ifnull(b*c,99) from t1;
|
sl@0
|
48 |
}
|
sl@0
|
49 |
} {0 0 0 1 99 99 99}
|
sl@0
|
50 |
|
sl@0
|
51 |
# Check to see how the CASE expression handles NULL values. The
|
sl@0
|
52 |
# first WHEN for which the test expression is TRUE is selected.
|
sl@0
|
53 |
# FALSE and UNKNOWN test expressions are skipped.
|
sl@0
|
54 |
#
|
sl@0
|
55 |
do_test null-2.1 {
|
sl@0
|
56 |
execsql {
|
sl@0
|
57 |
select ifnull(case when b<>0 then 1 else 0 end, 99) from t1;
|
sl@0
|
58 |
}
|
sl@0
|
59 |
} {0 0 1 1 0 0 0}
|
sl@0
|
60 |
do_test null-2.2 {
|
sl@0
|
61 |
execsql {
|
sl@0
|
62 |
select ifnull(case when not b<>0 then 1 else 0 end, 99) from t1;
|
sl@0
|
63 |
}
|
sl@0
|
64 |
} {1 1 0 0 0 0 0}
|
sl@0
|
65 |
do_test null-2.3 {
|
sl@0
|
66 |
execsql {
|
sl@0
|
67 |
select ifnull(case when b<>0 and c<>0 then 1 else 0 end, 99) from t1;
|
sl@0
|
68 |
}
|
sl@0
|
69 |
} {0 0 0 1 0 0 0}
|
sl@0
|
70 |
do_test null-2.4 {
|
sl@0
|
71 |
execsql {
|
sl@0
|
72 |
select ifnull(case when not (b<>0 and c<>0) then 1 else 0 end, 99) from t1;
|
sl@0
|
73 |
}
|
sl@0
|
74 |
} {1 1 1 0 1 0 0}
|
sl@0
|
75 |
do_test null-2.5 {
|
sl@0
|
76 |
execsql {
|
sl@0
|
77 |
select ifnull(case when b<>0 or c<>0 then 1 else 0 end, 99) from t1;
|
sl@0
|
78 |
}
|
sl@0
|
79 |
} {0 1 1 1 0 1 0}
|
sl@0
|
80 |
do_test null-2.6 {
|
sl@0
|
81 |
execsql {
|
sl@0
|
82 |
select ifnull(case when not (b<>0 or c<>0) then 1 else 0 end, 99) from t1;
|
sl@0
|
83 |
}
|
sl@0
|
84 |
} {1 0 0 0 0 0 0}
|
sl@0
|
85 |
do_test null-2.7 {
|
sl@0
|
86 |
execsql {
|
sl@0
|
87 |
select ifnull(case b when c then 1 else 0 end, 99) from t1;
|
sl@0
|
88 |
}
|
sl@0
|
89 |
} {1 0 0 1 0 0 0}
|
sl@0
|
90 |
do_test null-2.8 {
|
sl@0
|
91 |
execsql {
|
sl@0
|
92 |
select ifnull(case c when b then 1 else 0 end, 99) from t1;
|
sl@0
|
93 |
}
|
sl@0
|
94 |
} {1 0 0 1 0 0 0}
|
sl@0
|
95 |
|
sl@0
|
96 |
# Check to see that NULL values are ignored in aggregate functions.
|
sl@0
|
97 |
#
|
sl@0
|
98 |
do_test null-3.1 {
|
sl@0
|
99 |
execsql {
|
sl@0
|
100 |
select count(*), count(b), count(c), sum(b), sum(c),
|
sl@0
|
101 |
avg(b), avg(c), min(b), max(b) from t1;
|
sl@0
|
102 |
}
|
sl@0
|
103 |
} {7 4 6 2 3 0.5 0.5 0 1}
|
sl@0
|
104 |
|
sl@0
|
105 |
# The sum of zero entries is a NULL, but the total of zero entries is 0.
|
sl@0
|
106 |
#
|
sl@0
|
107 |
do_test null-3.2 {
|
sl@0
|
108 |
execsql {
|
sl@0
|
109 |
SELECT sum(b), total(b) FROM t1 WHERE b<0
|
sl@0
|
110 |
}
|
sl@0
|
111 |
} {{} 0.0}
|
sl@0
|
112 |
|
sl@0
|
113 |
# Check to see how WHERE clauses handle NULL values. A NULL value
|
sl@0
|
114 |
# is the same as UNKNOWN. The WHERE clause should only select those
|
sl@0
|
115 |
# rows that are TRUE. FALSE and UNKNOWN rows are rejected.
|
sl@0
|
116 |
#
|
sl@0
|
117 |
do_test null-4.1 {
|
sl@0
|
118 |
execsql {
|
sl@0
|
119 |
select a from t1 where b<10
|
sl@0
|
120 |
}
|
sl@0
|
121 |
} {1 2 3 4}
|
sl@0
|
122 |
do_test null-4.2 {
|
sl@0
|
123 |
execsql {
|
sl@0
|
124 |
select a from t1 where not b>10
|
sl@0
|
125 |
}
|
sl@0
|
126 |
} {1 2 3 4}
|
sl@0
|
127 |
do_test null-4.3 {
|
sl@0
|
128 |
execsql {
|
sl@0
|
129 |
select a from t1 where b<10 or c=1;
|
sl@0
|
130 |
}
|
sl@0
|
131 |
} {1 2 3 4 6}
|
sl@0
|
132 |
do_test null-4.4 {
|
sl@0
|
133 |
execsql {
|
sl@0
|
134 |
select a from t1 where b<10 and c=1;
|
sl@0
|
135 |
}
|
sl@0
|
136 |
} {2 4}
|
sl@0
|
137 |
do_test null-4.5 {
|
sl@0
|
138 |
execsql {
|
sl@0
|
139 |
select a from t1 where not (b<10 and c=1);
|
sl@0
|
140 |
}
|
sl@0
|
141 |
} {1 3 5}
|
sl@0
|
142 |
|
sl@0
|
143 |
# The DISTINCT keyword on a SELECT statement should treat NULL values
|
sl@0
|
144 |
# as distinct
|
sl@0
|
145 |
#
|
sl@0
|
146 |
do_test null-5.1 {
|
sl@0
|
147 |
execsql {
|
sl@0
|
148 |
select distinct b from t1 order by b;
|
sl@0
|
149 |
}
|
sl@0
|
150 |
} {{} 0 1}
|
sl@0
|
151 |
|
sl@0
|
152 |
# A UNION to two queries should treat NULL values
|
sl@0
|
153 |
# as distinct.
|
sl@0
|
154 |
#
|
sl@0
|
155 |
# (Later:) We also take this opportunity to test the ability
|
sl@0
|
156 |
# of an ORDER BY clause to bind to either SELECT of a UNION.
|
sl@0
|
157 |
# The left-most SELECT is preferred. In standard SQL, only
|
sl@0
|
158 |
# the left SELECT can be used. The ability to match an ORDER
|
sl@0
|
159 |
# BY term to the right SELECT is an SQLite extension.
|
sl@0
|
160 |
#
|
sl@0
|
161 |
ifcapable compound {
|
sl@0
|
162 |
do_test null-6.1 {
|
sl@0
|
163 |
execsql {
|
sl@0
|
164 |
select b from t1 union select c from t1 order by b;
|
sl@0
|
165 |
}
|
sl@0
|
166 |
} {{} 0 1}
|
sl@0
|
167 |
do_test null-6.2 {
|
sl@0
|
168 |
execsql {
|
sl@0
|
169 |
select b from t1 union select c from t1 order by 1;
|
sl@0
|
170 |
}
|
sl@0
|
171 |
} {{} 0 1}
|
sl@0
|
172 |
do_test null-6.3 {
|
sl@0
|
173 |
execsql {
|
sl@0
|
174 |
select b from t1 union select c from t1 order by t1.b;
|
sl@0
|
175 |
}
|
sl@0
|
176 |
} {{} 0 1}
|
sl@0
|
177 |
do_test null-6.4 {
|
sl@0
|
178 |
execsql {
|
sl@0
|
179 |
select b from t1 union select c from t1 order by main.t1.b;
|
sl@0
|
180 |
}
|
sl@0
|
181 |
} {{} 0 1}
|
sl@0
|
182 |
do_test null-6.5 {
|
sl@0
|
183 |
catchsql {
|
sl@0
|
184 |
select b from t1 union select c from t1 order by t1.a;
|
sl@0
|
185 |
}
|
sl@0
|
186 |
} {1 {1st ORDER BY term does not match any column in the result set}}
|
sl@0
|
187 |
do_test null-6.6 {
|
sl@0
|
188 |
catchsql {
|
sl@0
|
189 |
select b from t1 union select c from t1 order by main.t1.a;
|
sl@0
|
190 |
}
|
sl@0
|
191 |
} {1 {1st ORDER BY term does not match any column in the result set}}
|
sl@0
|
192 |
} ;# ifcapable compound
|
sl@0
|
193 |
|
sl@0
|
194 |
# The UNIQUE constraint only applies to non-null values
|
sl@0
|
195 |
#
|
sl@0
|
196 |
ifcapable conflict {
|
sl@0
|
197 |
do_test null-7.1 {
|
sl@0
|
198 |
execsql {
|
sl@0
|
199 |
create table t2(a, b unique on conflict ignore);
|
sl@0
|
200 |
insert into t2 values(1,1);
|
sl@0
|
201 |
insert into t2 values(2,null);
|
sl@0
|
202 |
insert into t2 values(3,null);
|
sl@0
|
203 |
insert into t2 values(4,1);
|
sl@0
|
204 |
select a from t2;
|
sl@0
|
205 |
}
|
sl@0
|
206 |
} {1 2 3}
|
sl@0
|
207 |
do_test null-7.2 {
|
sl@0
|
208 |
execsql {
|
sl@0
|
209 |
create table t3(a, b, c, unique(b,c) on conflict ignore);
|
sl@0
|
210 |
insert into t3 values(1,1,1);
|
sl@0
|
211 |
insert into t3 values(2,null,1);
|
sl@0
|
212 |
insert into t3 values(3,null,1);
|
sl@0
|
213 |
insert into t3 values(4,1,1);
|
sl@0
|
214 |
select a from t3;
|
sl@0
|
215 |
}
|
sl@0
|
216 |
} {1 2 3}
|
sl@0
|
217 |
}
|
sl@0
|
218 |
|
sl@0
|
219 |
# Ticket #461 - Make sure nulls are handled correctly when doing a
|
sl@0
|
220 |
# lookup using an index.
|
sl@0
|
221 |
#
|
sl@0
|
222 |
do_test null-8.1 {
|
sl@0
|
223 |
execsql {
|
sl@0
|
224 |
CREATE TABLE t4(x,y);
|
sl@0
|
225 |
INSERT INTO t4 VALUES(1,11);
|
sl@0
|
226 |
INSERT INTO t4 VALUES(2,NULL);
|
sl@0
|
227 |
SELECT x FROM t4 WHERE y=NULL;
|
sl@0
|
228 |
}
|
sl@0
|
229 |
} {}
|
sl@0
|
230 |
ifcapable subquery {
|
sl@0
|
231 |
do_test null-8.2 {
|
sl@0
|
232 |
execsql {
|
sl@0
|
233 |
SELECT x FROM t4 WHERE y IN (33,NULL);
|
sl@0
|
234 |
}
|
sl@0
|
235 |
} {}
|
sl@0
|
236 |
}
|
sl@0
|
237 |
do_test null-8.3 {
|
sl@0
|
238 |
execsql {
|
sl@0
|
239 |
SELECT x FROM t4 WHERE y<33 ORDER BY x;
|
sl@0
|
240 |
}
|
sl@0
|
241 |
} {1}
|
sl@0
|
242 |
do_test null-8.4 {
|
sl@0
|
243 |
execsql {
|
sl@0
|
244 |
SELECT x FROM t4 WHERE y>6 ORDER BY x;
|
sl@0
|
245 |
}
|
sl@0
|
246 |
} {1}
|
sl@0
|
247 |
do_test null-8.5 {
|
sl@0
|
248 |
execsql {
|
sl@0
|
249 |
SELECT x FROM t4 WHERE y!=33 ORDER BY x;
|
sl@0
|
250 |
}
|
sl@0
|
251 |
} {1}
|
sl@0
|
252 |
do_test null-8.11 {
|
sl@0
|
253 |
execsql {
|
sl@0
|
254 |
CREATE INDEX t4i1 ON t4(y);
|
sl@0
|
255 |
SELECT x FROM t4 WHERE y=NULL;
|
sl@0
|
256 |
}
|
sl@0
|
257 |
} {}
|
sl@0
|
258 |
ifcapable subquery {
|
sl@0
|
259 |
do_test null-8.12 {
|
sl@0
|
260 |
execsql {
|
sl@0
|
261 |
SELECT x FROM t4 WHERE y IN (33,NULL);
|
sl@0
|
262 |
}
|
sl@0
|
263 |
} {}
|
sl@0
|
264 |
}
|
sl@0
|
265 |
do_test null-8.13 {
|
sl@0
|
266 |
execsql {
|
sl@0
|
267 |
SELECT x FROM t4 WHERE y<33 ORDER BY x;
|
sl@0
|
268 |
}
|
sl@0
|
269 |
} {1}
|
sl@0
|
270 |
do_test null-8.14 {
|
sl@0
|
271 |
execsql {
|
sl@0
|
272 |
SELECT x FROM t4 WHERE y>6 ORDER BY x;
|
sl@0
|
273 |
}
|
sl@0
|
274 |
} {1}
|
sl@0
|
275 |
do_test null-8.15 {
|
sl@0
|
276 |
execsql {
|
sl@0
|
277 |
SELECT x FROM t4 WHERE y!=33 ORDER BY x;
|
sl@0
|
278 |
}
|
sl@0
|
279 |
} {1}
|
sl@0
|
280 |
|
sl@0
|
281 |
|
sl@0
|
282 |
|
sl@0
|
283 |
finish_test
|