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. The
|
sl@0
|
12 |
# focus of this file is testing SELECT statements that are part of
|
sl@0
|
13 |
# expressions.
|
sl@0
|
14 |
#
|
sl@0
|
15 |
# $Id: subselect.test,v 1.16 2008/08/04 03:51:24 danielk1977 Exp $
|
sl@0
|
16 |
|
sl@0
|
17 |
set testdir [file dirname $argv0]
|
sl@0
|
18 |
source $testdir/tester.tcl
|
sl@0
|
19 |
|
sl@0
|
20 |
# Omit this whole file if the library is build without subquery support.
|
sl@0
|
21 |
ifcapable !subquery {
|
sl@0
|
22 |
finish_test
|
sl@0
|
23 |
return
|
sl@0
|
24 |
}
|
sl@0
|
25 |
|
sl@0
|
26 |
# Basic sanity checking. Try a simple subselect.
|
sl@0
|
27 |
#
|
sl@0
|
28 |
do_test subselect-1.1 {
|
sl@0
|
29 |
execsql {
|
sl@0
|
30 |
CREATE TABLE t1(a int, b int);
|
sl@0
|
31 |
INSERT INTO t1 VALUES(1,2);
|
sl@0
|
32 |
INSERT INTO t1 VALUES(3,4);
|
sl@0
|
33 |
INSERT INTO t1 VALUES(5,6);
|
sl@0
|
34 |
}
|
sl@0
|
35 |
execsql {SELECT * FROM t1 WHERE a = (SELECT count(*) FROM t1)}
|
sl@0
|
36 |
} {3 4}
|
sl@0
|
37 |
|
sl@0
|
38 |
# Try a select with more than one result column.
|
sl@0
|
39 |
#
|
sl@0
|
40 |
do_test subselect-1.2 {
|
sl@0
|
41 |
set v [catch {execsql {SELECT * FROM t1 WHERE a = (SELECT * FROM t1)}} msg]
|
sl@0
|
42 |
lappend v $msg
|
sl@0
|
43 |
} {1 {only a single result allowed for a SELECT that is part of an expression}}
|
sl@0
|
44 |
|
sl@0
|
45 |
# A subselect without an aggregate.
|
sl@0
|
46 |
#
|
sl@0
|
47 |
do_test subselect-1.3a {
|
sl@0
|
48 |
execsql {SELECT b from t1 where a = (SELECT a FROM t1 WHERE b=2)}
|
sl@0
|
49 |
} {2}
|
sl@0
|
50 |
do_test subselect-1.3b {
|
sl@0
|
51 |
execsql {SELECT b from t1 where a = (SELECT a FROM t1 WHERE b=4)}
|
sl@0
|
52 |
} {4}
|
sl@0
|
53 |
do_test subselect-1.3c {
|
sl@0
|
54 |
execsql {SELECT b from t1 where a = (SELECT a FROM t1 WHERE b=6)}
|
sl@0
|
55 |
} {6}
|
sl@0
|
56 |
do_test subselect-1.3d {
|
sl@0
|
57 |
execsql {SELECT b from t1 where a = (SELECT a FROM t1 WHERE b=8)}
|
sl@0
|
58 |
} {}
|
sl@0
|
59 |
ifcapable compound {
|
sl@0
|
60 |
do_test subselect-1.3e {
|
sl@0
|
61 |
execsql {
|
sl@0
|
62 |
SELECT b FROM t1
|
sl@0
|
63 |
WHERE a = (SELECT a FROM t1 UNION SELECT b FROM t1 ORDER BY 1);
|
sl@0
|
64 |
}
|
sl@0
|
65 |
} {2}
|
sl@0
|
66 |
}
|
sl@0
|
67 |
|
sl@0
|
68 |
# What if the subselect doesn't return any value. We should get
|
sl@0
|
69 |
# NULL as the result. Check it out.
|
sl@0
|
70 |
#
|
sl@0
|
71 |
do_test subselect-1.4 {
|
sl@0
|
72 |
execsql {SELECT b from t1 where a = coalesce((SELECT a FROM t1 WHERE b=5),1)}
|
sl@0
|
73 |
} {2}
|
sl@0
|
74 |
|
sl@0
|
75 |
# Try multiple subselects within a single expression.
|
sl@0
|
76 |
#
|
sl@0
|
77 |
do_test subselect-1.5 {
|
sl@0
|
78 |
execsql {
|
sl@0
|
79 |
CREATE TABLE t2(x int, y int);
|
sl@0
|
80 |
INSERT INTO t2 VALUES(1,2);
|
sl@0
|
81 |
INSERT INTO t2 VALUES(2,4);
|
sl@0
|
82 |
INSERT INTO t2 VALUES(3,8);
|
sl@0
|
83 |
INSERT INTO t2 VALUES(4,16);
|
sl@0
|
84 |
}
|
sl@0
|
85 |
execsql {
|
sl@0
|
86 |
SELECT y from t2
|
sl@0
|
87 |
WHERE x = (SELECT sum(b) FROM t1 where a notnull) - (SELECT sum(a) FROM t1)
|
sl@0
|
88 |
}
|
sl@0
|
89 |
} {8}
|
sl@0
|
90 |
|
sl@0
|
91 |
# Try something useful. Delete every entry from t2 where the
|
sl@0
|
92 |
# x value is less than half of the maximum.
|
sl@0
|
93 |
#
|
sl@0
|
94 |
do_test subselect-1.6 {
|
sl@0
|
95 |
execsql {DELETE FROM t2 WHERE x < 0.5*(SELECT max(x) FROM t2)}
|
sl@0
|
96 |
execsql {SELECT x FROM t2 ORDER BY x}
|
sl@0
|
97 |
} {2 3 4}
|
sl@0
|
98 |
|
sl@0
|
99 |
# Make sure sorting works for SELECTs there used as a scalar expression.
|
sl@0
|
100 |
#
|
sl@0
|
101 |
do_test subselect-2.1 {
|
sl@0
|
102 |
execsql {
|
sl@0
|
103 |
SELECT (SELECT a FROM t1 ORDER BY a), (SELECT a FROM t1 ORDER BY a DESC)
|
sl@0
|
104 |
}
|
sl@0
|
105 |
} {1 5}
|
sl@0
|
106 |
do_test subselect-2.2 {
|
sl@0
|
107 |
execsql {
|
sl@0
|
108 |
SELECT 1 IN (SELECT a FROM t1 ORDER BY a);
|
sl@0
|
109 |
}
|
sl@0
|
110 |
} {1}
|
sl@0
|
111 |
do_test subselect-2.3 {
|
sl@0
|
112 |
execsql {
|
sl@0
|
113 |
SELECT 2 IN (SELECT a FROM t1 ORDER BY a DESC);
|
sl@0
|
114 |
}
|
sl@0
|
115 |
} {0}
|
sl@0
|
116 |
|
sl@0
|
117 |
# Verify that the ORDER BY clause is honored in a subquery.
|
sl@0
|
118 |
#
|
sl@0
|
119 |
ifcapable compound {
|
sl@0
|
120 |
do_test subselect-3.1 {
|
sl@0
|
121 |
execsql {
|
sl@0
|
122 |
CREATE TABLE t3(x int);
|
sl@0
|
123 |
INSERT INTO t3 SELECT a FROM t1 UNION ALL SELECT b FROM t1;
|
sl@0
|
124 |
SELECT * FROM t3 ORDER BY x;
|
sl@0
|
125 |
}
|
sl@0
|
126 |
} {1 2 3 4 5 6}
|
sl@0
|
127 |
} ;# ifcapable compound
|
sl@0
|
128 |
ifcapable !compound {
|
sl@0
|
129 |
do_test subselect-3.1 {
|
sl@0
|
130 |
execsql {
|
sl@0
|
131 |
CREATE TABLE t3(x int);
|
sl@0
|
132 |
INSERT INTO t3 SELECT a FROM t1;
|
sl@0
|
133 |
INSERT INTO t3 SELECT b FROM t1;
|
sl@0
|
134 |
SELECT * FROM t3 ORDER BY x;
|
sl@0
|
135 |
}
|
sl@0
|
136 |
} {1 2 3 4 5 6}
|
sl@0
|
137 |
} ;# ifcapable !compound
|
sl@0
|
138 |
|
sl@0
|
139 |
do_test subselect-3.2 {
|
sl@0
|
140 |
execsql {
|
sl@0
|
141 |
SELECT sum(x) FROM (SELECT x FROM t3 ORDER BY x LIMIT 2);
|
sl@0
|
142 |
}
|
sl@0
|
143 |
} {3}
|
sl@0
|
144 |
do_test subselect-3.3 {
|
sl@0
|
145 |
execsql {
|
sl@0
|
146 |
SELECT sum(x) FROM (SELECT x FROM t3 ORDER BY x DESC LIMIT 2);
|
sl@0
|
147 |
}
|
sl@0
|
148 |
} {11}
|
sl@0
|
149 |
do_test subselect-3.4 {
|
sl@0
|
150 |
execsql {
|
sl@0
|
151 |
SELECT (SELECT x FROM t3 ORDER BY x);
|
sl@0
|
152 |
}
|
sl@0
|
153 |
} {1}
|
sl@0
|
154 |
do_test subselect-3.5 {
|
sl@0
|
155 |
execsql {
|
sl@0
|
156 |
SELECT (SELECT x FROM t3 ORDER BY x DESC);
|
sl@0
|
157 |
}
|
sl@0
|
158 |
} {6}
|
sl@0
|
159 |
do_test subselect-3.6 {
|
sl@0
|
160 |
execsql {
|
sl@0
|
161 |
SELECT (SELECT x FROM t3 ORDER BY x LIMIT 1);
|
sl@0
|
162 |
}
|
sl@0
|
163 |
} {1}
|
sl@0
|
164 |
do_test subselect-3.7 {
|
sl@0
|
165 |
execsql {
|
sl@0
|
166 |
SELECT (SELECT x FROM t3 ORDER BY x DESC LIMIT 1);
|
sl@0
|
167 |
}
|
sl@0
|
168 |
} {6}
|
sl@0
|
169 |
do_test subselect-3.8 {
|
sl@0
|
170 |
execsql {
|
sl@0
|
171 |
SELECT (SELECT x FROM t3 ORDER BY x LIMIT 1 OFFSET 2);
|
sl@0
|
172 |
}
|
sl@0
|
173 |
} {3}
|
sl@0
|
174 |
do_test subselect-3.9 {
|
sl@0
|
175 |
execsql {
|
sl@0
|
176 |
SELECT (SELECT x FROM t3 ORDER BY x DESC LIMIT 1 OFFSET 2);
|
sl@0
|
177 |
}
|
sl@0
|
178 |
} {4}
|
sl@0
|
179 |
do_test subselect-3.10 {
|
sl@0
|
180 |
execsql {
|
sl@0
|
181 |
SELECT x FROM t3 WHERE x IN
|
sl@0
|
182 |
(SELECT x FROM t3 ORDER BY x DESC LIMIT 1 OFFSET 2);
|
sl@0
|
183 |
}
|
sl@0
|
184 |
} {4}
|
sl@0
|
185 |
|
sl@0
|
186 |
# Ticket #2295.
|
sl@0
|
187 |
# Make sure type affinities work correctly on subqueries with
|
sl@0
|
188 |
# an ORDER BY clause.
|
sl@0
|
189 |
#
|
sl@0
|
190 |
do_test subselect-4.1 {
|
sl@0
|
191 |
execsql {
|
sl@0
|
192 |
CREATE TABLE t4(a TEXT, b TEXT);
|
sl@0
|
193 |
INSERT INTO t4 VALUES('a','1');
|
sl@0
|
194 |
INSERT INTO t4 VALUES('b','2');
|
sl@0
|
195 |
INSERT INTO t4 VALUES('c','3');
|
sl@0
|
196 |
SELECT a FROM t4 WHERE b IN (SELECT b FROM t4 ORDER BY b);
|
sl@0
|
197 |
}
|
sl@0
|
198 |
} {a b c}
|
sl@0
|
199 |
do_test subselect-4.2 {
|
sl@0
|
200 |
execsql {
|
sl@0
|
201 |
SELECT a FROM t4 WHERE b IN (SELECT b FROM t4 ORDER BY b LIMIT 1);
|
sl@0
|
202 |
}
|
sl@0
|
203 |
} {a}
|
sl@0
|
204 |
do_test subselect-4.3 {
|
sl@0
|
205 |
execsql {
|
sl@0
|
206 |
SELECT a FROM t4 WHERE b IN (SELECT b FROM t4 ORDER BY b DESC LIMIT 1);
|
sl@0
|
207 |
}
|
sl@0
|
208 |
} {c}
|
sl@0
|
209 |
|
sl@0
|
210 |
finish_test
|