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