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 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387
|
#!/usr/bin/env tarantool
test = require("sqltester")
test:plan(30)
--!./tcltestrunner.lua
-- 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 sql library. The
-- focus of this file is testing SELECT statements that are part of
-- expressions.
--
-- $Id: subselect.test,v 1.16 2008/08/04 03:51:24 danielk1977 Exp $
-- ["set","testdir",[["file","dirname",["argv0"]]]]
-- ["source",[["testdir"],"\/tester.tcl"]]
-- Omit this whole file if the library is build without subquery support.
-- Basic sanity checking. Try a simple subselect.
--
test:do_test(
"subselect-1.1",
function()
test:execsql [[
CREATE TABLE t1(a int primary key, b int);
INSERT INTO t1 VALUES(1,2);
INSERT INTO t1 VALUES(3,4);
INSERT INTO t1 VALUES(5,6);
]]
return test:execsql "SELECT * FROM t1 WHERE a = (SELECT count(*) FROM t1)"
end, {
-- <subselect-1.1>
3, 4
-- </subselect-1.1>
})
-- Try a select with more than one result column.
--
test:do_catchsql_test(
"subselect-1.2",
[[
SELECT * FROM t1 WHERE a = (SELECT * FROM t1)
]], {
-- <subselect-1.2>
1, "Unequal number of entries in row expression: left side has 1, but right side - 2"
-- </subselect-1.2>
})
-- A subselect without an aggregate.
--
test:do_execsql_test(
"subselect-1.3a",
[[
SELECT b from t1 where a = (SELECT a FROM t1 WHERE b=2)
]], {
-- <subselect-1.3a>
2
-- </subselect-1.3a>
})
test:do_execsql_test(
"subselect-1.3b",
[[
SELECT b from t1 where a = (SELECT a FROM t1 WHERE b=4)
]], {
-- <subselect-1.3b>
4
-- </subselect-1.3b>
})
test:do_execsql_test(
"subselect-1.3c",
[[
SELECT b from t1 where a = (SELECT a FROM t1 WHERE b=6)
]], {
-- <subselect-1.3c>
6
-- </subselect-1.3c>
})
test:do_execsql_test(
"subselect-1.3d",
[[
SELECT b from t1 where a = (SELECT a FROM t1 WHERE b=8)
]], {
-- <subselect-1.3d>
-- </subselect-1.3d>
})
test:do_execsql_test(
"subselect-1.3e",
[[
SELECT b FROM t1
WHERE a = (SELECT a FROM t1 UNION SELECT b FROM t1 ORDER BY 1 LIMIT 1);
]], {
-- <subselect-1.3e>
2
-- </subselect-1.3e>
})
-- What if the subselect doesn't return any value. We should get
-- NULL as the result. Check it out.
--
test:do_execsql_test(
"subselect-1.4",
[[
SELECT b from t1 where a = coalesce((SELECT a FROM t1 WHERE b=5),1)
]], {
-- <subselect-1.4>
2
-- </subselect-1.4>
})
-- Try multiple subselects within a single expression.
--
test:do_test(
"subselect-1.5",
function()
test:execsql [[
CREATE TABLE t2(x int primary key, y int);
INSERT INTO t2 VALUES(1,2);
INSERT INTO t2 VALUES(2,4);
INSERT INTO t2 VALUES(3,8);
INSERT INTO t2 VALUES(4,16);
]]
return test:execsql [[
SELECT y from t2
WHERE x = (SELECT sum(b) FROM t1 where a is not null) - (SELECT sum(a) FROM t1)
]]
end, {
-- <subselect-1.5>
8
-- </subselect-1.5>
})
-- Try something useful. Delete every entry from t2 where the
-- x value is less than half of the maximum.
--
test:do_test(
"subselect-1.6",
function()
test:execsql "DELETE FROM t2 WHERE x < 0.5*(SELECT max(x) FROM t2)"
return test:execsql "SELECT x FROM t2 ORDER BY x"
end, {
-- <subselect-1.6>
2, 3, 4
-- </subselect-1.6>
})
-- Make sure sorting works for SELECTs there used as a scalar expression.
--
test:do_execsql_test(
"subselect-2.1",
[[
SELECT (SELECT a FROM t1 ORDER BY a LIMIT 1), (SELECT a FROM t1 ORDER BY a DESC LIMIT 1)
]], {
-- <subselect-2.1>
1, 5
-- </subselect-2.1>
})
test:do_execsql_test(
"subselect-2.2",
[[
SELECT 1 IN (SELECT a FROM t1 ORDER BY a);
]], {
-- <subselect-2.2>
true
-- </subselect-2.2>
})
test:do_execsql_test(
"subselect-2.3",
[[
SELECT 2 IN (SELECT a FROM t1 ORDER BY a DESC);
]], {
-- <subselect-2.3>
false
-- </subselect-2.3>
})
-- Verify that the ORDER BY clause is honored in a subquery.
--
test:do_execsql_test(
"subselect-3.1",
[[
CREATE TABLE t3(x int primary key);
INSERT INTO t3 SELECT a FROM t1 UNION ALL SELECT b FROM t1;
SELECT * FROM t3 ORDER BY x;
]], {
-- <subselect-3.1>
1, 2, 3, 4, 5, 6
-- </subselect-3.1>
})
-- ifcapable compound
-- ifcapable !compound
test:do_execsql_test(
"subselect-3.2",
[[
SELECT sum(x) FROM (SELECT x FROM t3 ORDER BY x LIMIT 2);
]], {
-- <subselect-3.2>
3
-- </subselect-3.2>
})
test:do_execsql_test(
"subselect-3.3",
[[
SELECT sum(x) FROM (SELECT x FROM t3 ORDER BY x DESC LIMIT 2);
]], {
-- <subselect-3.3>
11
-- </subselect-3.3>
})
test:do_execsql_test(
"subselect-3.4",
[[
SELECT (SELECT x FROM t3 ORDER BY x LIMIT 1);
]], {
-- <subselect-3.4>
1
-- </subselect-3.4>
})
test:do_execsql_test(
"subselect-3.5",
[[
SELECT (SELECT x FROM t3 ORDER BY x DESC LIMIT 1);
]], {
-- <subselect-3.5>
6
-- </subselect-3.5>
})
test:do_execsql_test(
"subselect-3.6",
[[
SELECT (SELECT x FROM t3 ORDER BY x LIMIT 1);
]], {
-- <subselect-3.6>
1
-- </subselect-3.6>
})
test:do_execsql_test(
"subselect-3.7",
[[
SELECT (SELECT x FROM t3 ORDER BY x DESC LIMIT 1);
]], {
-- <subselect-3.7>
6
-- </subselect-3.7>
})
test:do_execsql_test(
"subselect-3.8",
[[
SELECT (SELECT x FROM t3 ORDER BY x LIMIT 1 OFFSET 2);
]], {
-- <subselect-3.8>
3
-- </subselect-3.8>
})
test:do_execsql_test(
"subselect-3.9",
[[
SELECT (SELECT x FROM t3 ORDER BY x DESC LIMIT 1 OFFSET 2);
]], {
-- <subselect-3.9>
4
-- </subselect-3.9>
})
test:do_execsql_test(
"subselect-3.10",
[[
SELECT x FROM t3 WHERE x IN
(SELECT x FROM t3 ORDER BY x DESC LIMIT 1 OFFSET 2);
]], {
-- <subselect-3.10>
4
-- </subselect-3.10>
})
-- Ticket #2295.
-- Make sure type affinities work correctly on subqueries with
-- an ORDER BY clause.
--
test:do_execsql_test(
"subselect-4.1",
[[
CREATE TABLE t4(a TEXT primary key, b TEXT);
INSERT INTO t4 VALUES('a','1');
INSERT INTO t4 VALUES('b','2');
INSERT INTO t4 VALUES('c','3');
SELECT a FROM t4 WHERE b IN (SELECT b FROM t4 ORDER BY b);
]], {
-- <subselect-4.1>
"a", "b", "c"
-- </subselect-4.1>
})
test:do_execsql_test(
"subselect-4.2",
[[
SELECT a FROM t4 WHERE b IN (SELECT b FROM t4 ORDER BY b LIMIT 1);
]], {
-- <subselect-4.2>
"a"
-- </subselect-4.2>
})
test:do_execsql_test(
"subselect-4.3",
[[
SELECT a FROM t4 WHERE b IN (SELECT b FROM t4 ORDER BY b DESC LIMIT 1);
]], {
-- <subselect-4.3>
"c"
-- </subselect-4.3>
})
-- gh-2366 dissallow subselects returning multiple values
test:do_catchsql_test(
"subselect-5.1",
[[
CREATE TABLE t5(a INT PRIMARY KEY, b INT);
INSERT INTO t5 VALUES(1,2);
INSERT INTO t5 VALUES(3,4);
INSERT INTO t5 VALUES(5,6);
INSERT INTO t5 VALUES(6,6);
SELECT (SELECT a FROM t5);
]], {
-- <subselect-5.1>
1, "Failed to execute SQL statement: Expression subquery returned more than 1 row"
-- </subselect-5.1>
})
test:do_catchsql_test(
"subselect-5.2",
[[
SELECT b FROM t5 WHERE a = (SELECT a FROM t5 WHERE b=6);
]], {
-- <subselect-5.2>
1, "Failed to execute SQL statement: Expression subquery returned more than 1 row"
-- </subselect-5.2>
})
test:do_execsql_test(
"subselect-5.3",
[[
SELECT b FROM t1 WHERE a = (SELECT a FROM t1 WHERE b=6 LIMIT (SELECT b-1 FROM t1 WHERE a =1));
]], {
-- <subselect-5.2>
6
-- </subselect-5.2>
})
test:do_catchsql_test(
"subselect-5.3",
[[
SELECT b FROM t1 WHERE a = (SELECT a FROM t1 WHERE b=6 LIMIT (SELECT b FROM t1 WHERE a =1));
]], {
-- <subselect-5.2>
1, "Failed to execute SQL statement: Expression subquery could be limited only with 1"
-- </subselect-5.2>
})
test:finish_test()
|