First public contribution.
3 # The author disclaims copyright to this source code. In place of
4 # a legal notice, here is a blessing:
6 # May you do good and not evil.
7 # May you find forgiveness for yourself and forgive others.
8 # May you share freely, never taking more than you give.
10 #***********************************************************************
11 # This file implements regression tests for SQLite library. The
12 # focus of this file is testing UNION, INTERSECT and EXCEPT operators
13 # in SELECT statements.
15 # $Id: select4.test,v 1.29 2008/08/04 03:51:24 danielk1977 Exp $
17 set testdir [file dirname $argv0]
18 source $testdir/tester.tcl
20 # Most tests in this file depend on compound-select. But there are a couple
21 # right at the end that test DISTINCT, so we cannot omit the entire file.
25 # Build some test data
28 CREATE TABLE t1(n int, log int);
31 for {set i 1} {$i<32} {incr i} {
32 for {set j 0} {(1<<$j)<$i} {incr j} {}
33 execsql "INSERT INTO t1 VALUES($i,$j)"
40 execsql {SELECT DISTINCT log FROM t1 ORDER BY log}
45 do_test select4-1.1a {
46 lsort [execsql {SELECT DISTINCT log FROM t1}]
48 do_test select4-1.1b {
49 lsort [execsql {SELECT n FROM t1 WHERE log=3}]
51 do_test select4-1.1c {
53 SELECT DISTINCT log FROM t1
55 SELECT n FROM t1 WHERE log=3
58 } {0 1 2 3 4 5 5 6 7 8}
59 do_test select4-1.1d {
62 SELECT DISTINCT log FROM t1
64 SELECT n FROM t1 WHERE log=3
68 } {0 1 2 3 4 5 5 6 7 8}
69 execsql {DROP TABLE t2}
70 do_test select4-1.1e {
73 SELECT DISTINCT log FROM t1
75 SELECT n FROM t1 WHERE log=3
79 } {8 7 6 5 5 4 3 2 1 0}
80 execsql {DROP TABLE t2}
81 do_test select4-1.1f {
83 SELECT DISTINCT log FROM t1
85 SELECT n FROM t1 WHERE log=2
88 do_test select4-1.1g {
91 SELECT DISTINCT log FROM t1
93 SELECT n FROM t1 WHERE log=2;
97 execsql {DROP TABLE t2}
101 SELECT log FROM t1 WHERE n IN
102 (SELECT DISTINCT log FROM t1 UNION ALL
103 SELECT n FROM t1 WHERE log=3)
108 do_test select4-1.3 {
109 set v [catch {execsql {
110 SELECT DISTINCT log FROM t1 ORDER BY log
112 SELECT n FROM t1 WHERE log=3
116 } {1 {ORDER BY clause should come after UNION ALL not before}}
120 do_test select4-2.1 {
122 SELECT DISTINCT log FROM t1
124 SELECT n FROM t1 WHERE log=3
127 } {0 1 2 3 4 5 6 7 8}
129 do_test select4-2.2 {
131 SELECT log FROM t1 WHERE n IN
132 (SELECT DISTINCT log FROM t1 UNION
133 SELECT n FROM t1 WHERE log=3)
138 do_test select4-2.3 {
139 set v [catch {execsql {
140 SELECT DISTINCT log FROM t1 ORDER BY log
142 SELECT n FROM t1 WHERE log=3
146 } {1 {ORDER BY clause should come after UNION not before}}
150 do_test select4-3.1.1 {
152 SELECT DISTINCT log FROM t1
154 SELECT n FROM t1 WHERE log=3
158 do_test select4-3.1.2 {
161 SELECT DISTINCT log FROM t1
163 SELECT n FROM t1 WHERE log=3
168 execsql {DROP TABLE t2}
169 do_test select4-3.1.3 {
172 SELECT DISTINCT log FROM t1
174 SELECT n FROM t1 WHERE log=3
179 execsql {DROP TABLE t2}
181 do_test select4-3.2 {
183 SELECT log FROM t1 WHERE n IN
184 (SELECT DISTINCT log FROM t1 EXCEPT
185 SELECT n FROM t1 WHERE log=3)
190 do_test select4-3.3 {
191 set v [catch {execsql {
192 SELECT DISTINCT log FROM t1 ORDER BY log
194 SELECT n FROM t1 WHERE log=3
198 } {1 {ORDER BY clause should come after EXCEPT not before}}
202 do_test select4-4.1.1 {
204 SELECT DISTINCT log FROM t1
206 SELECT n FROM t1 WHERE log=3
211 do_test select4-4.1.2 {
213 SELECT DISTINCT log FROM t1
217 SELECT n FROM t1 WHERE log=3
222 do_test select4-4.1.3 {
225 SELECT DISTINCT log FROM t1 UNION ALL SELECT 6
227 SELECT n FROM t1 WHERE log=3
232 execsql {DROP TABLE t2}
233 do_test select4-4.1.4 {
236 SELECT DISTINCT log FROM t1 UNION ALL SELECT 6
238 SELECT n FROM t1 WHERE log=3
243 execsql {DROP TABLE t2}
245 do_test select4-4.2 {
247 SELECT log FROM t1 WHERE n IN
248 (SELECT DISTINCT log FROM t1 INTERSECT
249 SELECT n FROM t1 WHERE log=3)
254 do_test select4-4.3 {
255 set v [catch {execsql {
256 SELECT DISTINCT log FROM t1 ORDER BY log
258 SELECT n FROM t1 WHERE log=3
262 } {1 {ORDER BY clause should come after INTERSECT not before}}
264 # Various error messages while processing UNION or INTERSECT
266 do_test select4-5.1 {
267 set v [catch {execsql {
268 SELECT DISTINCT log FROM t2
270 SELECT n FROM t1 WHERE log=3
274 } {1 {no such table: t2}}
275 do_test select4-5.2 {
276 set v [catch {execsql {
277 SELECT DISTINCT log AS "xyzzy" FROM t1
279 SELECT n FROM t1 WHERE log=3
283 } {0 {0 1 2 3 4 5 5 6 7 8}}
284 do_test select4-5.2b {
285 set v [catch {execsql {
286 SELECT DISTINCT log AS xyzzy FROM t1
288 SELECT n FROM t1 WHERE log=3
292 } {0 {0 1 2 3 4 5 5 6 7 8}}
293 do_test select4-5.2c {
294 set v [catch {execsql {
295 SELECT DISTINCT log FROM t1
297 SELECT n FROM t1 WHERE log=3
301 } {1 {1st ORDER BY term does not match any column in the result set}}
302 do_test select4-5.2d {
303 set v [catch {execsql {
304 SELECT DISTINCT log FROM t1
306 SELECT n FROM t1 WHERE log=3
310 } {1 {1st ORDER BY term does not match any column in the result set}}
311 do_test select4-5.2e {
312 set v [catch {execsql {
313 SELECT DISTINCT log FROM t1
315 SELECT n FROM t1 WHERE log=3
319 } {0 {0 1 2 3 4 5 5 6 7 8}}
320 do_test select4-5.2f {
322 SELECT DISTINCT log FROM t1
324 SELECT n FROM t1 WHERE log=3
327 } {0 {0 1 2 3 4 5 5 6 7 8}}
328 do_test select4-5.2g {
330 SELECT DISTINCT log FROM t1
332 SELECT n FROM t1 WHERE log=3
335 } {0 {0 1 2 3 4 5 5 6 7 8}}
336 do_test select4-5.2h {
338 SELECT DISTINCT log FROM t1
340 SELECT n FROM t1 WHERE log=3
343 } {1 {1st ORDER BY term out of range - should be between 1 and 1}}
344 do_test select4-5.2i {
346 SELECT DISTINCT 1, log FROM t1
348 SELECT 2, n FROM t1 WHERE log=3
351 } {0 {1 0 1 1 1 2 1 3 1 4 1 5 2 5 2 6 2 7 2 8}}
352 do_test select4-5.2j {
354 SELECT DISTINCT 1, log FROM t1
356 SELECT 2, n FROM t1 WHERE log=3
359 } {0 {1 5 1 4 1 3 1 2 1 1 1 0 2 8 2 7 2 6 2 5}}
360 do_test select4-5.2k {
362 SELECT DISTINCT 1, log FROM t1
364 SELECT 2, n FROM t1 WHERE log=3
367 } {0 {1 0 1 1 1 2 1 3 1 4 1 5 2 5 2 6 2 7 2 8}}
368 do_test select4-5.3 {
369 set v [catch {execsql {
370 SELECT DISTINCT log, n FROM t1
372 SELECT n FROM t1 WHERE log=3
376 } {1 {SELECTs to the left and right of UNION ALL do not have the same number of result columns}}
377 do_test select4-5.4 {
378 set v [catch {execsql {
379 SELECT log FROM t1 WHERE n=2
381 SELECT log FROM t1 WHERE n=3
383 SELECT log FROM t1 WHERE n=4
385 SELECT log FROM t1 WHERE n=5
391 do_test select4-6.1 {
393 SELECT log, count(*) as cnt FROM t1 GROUP BY log
395 SELECT log, n FROM t1 WHERE n=7
398 } {0 1 1 1 2 2 3 4 3 7 4 8 5 15}
399 do_test select4-6.2 {
401 SELECT log, count(*) FROM t1 GROUP BY log
403 SELECT log, n FROM t1 WHERE n=7
404 ORDER BY count(*), log;
406 } {0 1 1 1 2 2 3 4 3 7 4 8 5 15}
408 # NULLs are indistinct for the UNION operator.
409 # Make sure the UNION operator recognizes this
411 do_test select4-6.3 {
413 SELECT NULL UNION SELECT NULL UNION
414 SELECT 1 UNION SELECT 2 AS 'x'
418 do_test select4-6.3.1 {
420 SELECT NULL UNION ALL SELECT NULL UNION ALL
421 SELECT 1 UNION ALL SELECT 2 AS 'x'
426 # Make sure the DISTINCT keyword treats NULLs as indistinct.
429 do_test select4-6.4 {
432 SELECT NULL, 1 UNION ALL SELECT NULL, 1
436 do_test select4-6.5 {
438 SELECT DISTINCT * FROM (
439 SELECT NULL, 1 UNION ALL SELECT NULL, 1
443 do_test select4-6.6 {
445 SELECT DISTINCT * FROM (
446 SELECT 1,2 UNION ALL SELECT 1,2
452 # Test distinctness of NULL in other ways.
454 do_test select4-6.7 {
456 SELECT NULL EXCEPT SELECT NULL
461 # Make sure column names are correct when a compound select appears as
462 # an expression in the WHERE clause.
464 do_test select4-7.1 {
466 CREATE TABLE t2 AS SELECT log AS 'x', count(*) AS 'y' FROM t1 GROUP BY log;
467 SELECT * FROM t2 ORDER BY x;
469 } {0 1 1 1 2 2 3 4 4 8 5 15}
471 do_test select4-7.2 {
473 SELECT * FROM t1 WHERE n IN (SELECT n FROM t1 INTERSECT SELECT x FROM t2)
476 } {n 1 log 0 n 2 log 1 n 3 log 2 n 4 log 2 n 5 log 3}
477 do_test select4-7.3 {
479 SELECT * FROM t1 WHERE n IN (SELECT n FROM t1 EXCEPT SELECT x FROM t2)
482 } {n 6 log 3 n 7 log 3}
483 do_test select4-7.4 {
485 SELECT * FROM t1 WHERE n IN (SELECT n FROM t1 UNION SELECT x FROM t2)
488 } {n 1 log 0 n 2 log 1}
489 } ;# ifcapable subquery
491 } ;# ifcapable compound
493 # Make sure DISTINCT works appropriately on TEXT and NUMERIC columns.
494 do_test select4-8.1 {
497 CREATE TABLE t3(a text, b float, c text);
498 INSERT INTO t3 VALUES(1, 1.1, '1.1');
499 INSERT INTO t3 VALUES(2, 1.10, '1.10');
500 INSERT INTO t3 VALUES(3, 1.10, '1.1');
501 INSERT INTO t3 VALUES(4, 1.1, '1.10');
502 INSERT INTO t3 VALUES(5, 1.2, '1.2');
503 INSERT INTO t3 VALUES(6, 1.3, '1.3');
507 SELECT DISTINCT b FROM t3 ORDER BY c;
510 do_test select4-8.2 {
512 SELECT DISTINCT c FROM t3 ORDER BY c;
516 # Make sure the names of columns are taken from the right-most subquery
517 # right in a compound query. Ticket #1721
521 do_test select4-9.1 {
523 SELECT x, y FROM t2 UNION SELECT a, b FROM t3 ORDER BY x LIMIT 1
526 do_test select4-9.2 {
528 SELECT x, y FROM t2 UNION ALL SELECT a, b FROM t3 ORDER BY x LIMIT 1
531 do_test select4-9.3 {
533 SELECT x, y FROM t2 EXCEPT SELECT a, b FROM t3 ORDER BY x LIMIT 1
536 do_test select4-9.4 {
538 SELECT x, y FROM t2 INTERSECT SELECT 0 AS a, 1 AS b;
541 do_test select4-9.5 {
543 SELECT 0 AS x, 1 AS y
545 SELECT 2 AS p, 3 AS q
547 SELECT 4 AS a, 5 AS b
553 do_test select4-9.6 {
556 SELECT 0 AS x, 1 AS y
558 SELECT 2 AS p, 3 AS q
560 SELECT 4 AS a, 5 AS b
561 ) ORDER BY 1 LIMIT 1;
564 do_test select4-9.7 {
567 SELECT 0 AS x, 1 AS y
569 SELECT 2 AS p, 3 AS q
571 SELECT 4 AS a, 5 AS b
572 ) ORDER BY x LIMIT 1;
575 } ;# ifcapable subquery
577 do_test select4-9.8 {
579 SELECT 0 AS x, 1 AS y
581 SELECT 2 AS y, -3 AS x
586 do_test select4-9.9.1 {
588 SELECT 1 AS a, 2 AS b UNION ALL SELECT 3 AS b, 4 AS a
593 do_test select4-9.9.2 {
595 SELECT * FROM (SELECT 1 AS a, 2 AS b UNION ALL SELECT 3 AS b, 4 AS a)
599 do_test select4-9.10 {
601 SELECT * FROM (SELECT 1 AS a, 2 AS b UNION ALL SELECT 3 AS b, 4 AS a)
605 do_test select4-9.11 {
607 SELECT * FROM (SELECT 1 AS a, 2 AS b UNION ALL SELECT 3 AS e, 4 AS b)
611 do_test select4-9.12 {
613 SELECT * FROM (SELECT 1 AS a, 2 AS b UNION ALL SELECT 3 AS e, 4 AS b)
617 } ;# ifcapable subquery
619 # Try combining DISTINCT, LIMIT, and OFFSET. Make sure they all work
622 do_test select4-10.1 {
624 SELECT DISTINCT log FROM t1 ORDER BY log
627 do_test select4-10.2 {
629 SELECT DISTINCT log FROM t1 ORDER BY log LIMIT 4
632 do_test select4-10.3 {
634 SELECT DISTINCT log FROM t1 ORDER BY log LIMIT 0
637 do_test select4-10.4 {
639 SELECT DISTINCT log FROM t1 ORDER BY log LIMIT -1
642 do_test select4-10.5 {
644 SELECT DISTINCT log FROM t1 ORDER BY log LIMIT -1 OFFSET 2
647 do_test select4-10.6 {
649 SELECT DISTINCT log FROM t1 ORDER BY log LIMIT 3 OFFSET 2
652 do_test select4-10.7 {
654 SELECT DISTINCT log FROM t1 ORDER BY +log LIMIT 3 OFFSET 20
657 do_test select4-10.8 {
659 SELECT DISTINCT log FROM t1 ORDER BY log LIMIT 0 OFFSET 3
662 do_test select4-10.9 {
664 SELECT DISTINCT max(n), log FROM t1 ORDER BY +log; -- LIMIT 2 OFFSET 1
668 # Make sure compound SELECTs with wildly different numbers of columns
669 # do not cause assertion faults due to register allocation issues.
671 do_test select4-11.1 {
673 SELECT x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x FROM t2
677 } {1 {SELECTs to the left and right of UNION do not have the same number of result columns}}
678 do_test select4-11.2 {
682 SELECT x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x FROM t2
684 } {1 {SELECTs to the left and right of UNION do not have the same number of result columns}}
685 do_test select4-11.3 {
687 SELECT x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x FROM t2
691 } {1 {SELECTs to the left and right of UNION ALL do not have the same number of result columns}}
692 do_test select4-11.4 {
696 SELECT x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x FROM t2
698 } {1 {SELECTs to the left and right of UNION ALL do not have the same number of result columns}}
699 do_test select4-11.5 {
701 SELECT x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x FROM t2
705 } {1 {SELECTs to the left and right of EXCEPT do not have the same number of result columns}}
706 do_test select4-11.6 {
710 SELECT x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x FROM t2
712 } {1 {SELECTs to the left and right of EXCEPT do not have the same number of result columns}}
713 do_test select4-11.7 {
715 SELECT x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x FROM t2
719 } {1 {SELECTs to the left and right of INTERSECT do not have the same number of result columns}}
720 do_test select4-11.8 {
724 SELECT x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x FROM t2
726 } {1 {SELECTs to the left and right of INTERSECT do not have the same number of result columns}}
728 do_test select4-11.11 {
738 SELECT x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x FROM t2
740 } {1 {SELECTs to the left and right of INTERSECT do not have the same number of result columns}}
741 do_test select4-11.12 {
749 SELECT x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x FROM t2
753 } {1 {SELECTs to the left and right of EXCEPT do not have the same number of result columns}}
754 do_test select4-11.13 {
760 SELECT x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x FROM t2
766 } {1 {SELECTs to the left and right of UNION ALL do not have the same number of result columns}}
767 do_test select4-11.14 {
771 SELECT x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x FROM t2
779 } {1 {SELECTs to the left and right of UNION do not have the same number of result columns}}
780 do_test select4-11.15 {
782 SELECT x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x FROM t2
792 } {1 {SELECTs to the left and right of UNION do not have the same number of result columns}}
794 } ;# ifcapable compound