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 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479
|
#!/usr/bin/env tarantool
test = require("sqltester")
test:plan(36)
--!./tcltestrunner.lua
-- 2012 August 24
--
-- 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 that an index may be used as a covering
-- index when there are OR expressions in the WHERE clause.
--
-- ["set","testdir",[["file","dirname",["argv0"]]]]
-- ["source",[["testdir"],"\/tester.tcl"]]
testprefix = "whereD"
test:do_execsql_test(
1.1,
[[
CREATE TABLE t(i int PRIMARY key,j int,k TEXT, m INT, n TEXT);
CREATE INDEX ijk ON t(i,j,k);
CREATE INDEX jmn ON t(j,m,n);
INSERT INTO t VALUES(3, 3, 'three', 3, 'tres');
INSERT INTO t VALUES(2, 2, 'two', 2, 'dos');
INSERT INTO t VALUES(1, 1, 'one', 1, 'uno');
INSERT INTO t VALUES(4, 4, 'four', 4, 'cuatro');
]])
test:do_execsql_test(
1.2,
[[
SELECT k FROM t WHERE (i=1 AND j=1) OR (i=2 AND j=2);
]], {
-- <1.2>
"one", "two"
-- </1.2>
})
test:do_execsql_test(
1.3,
[[
SELECT k FROM t WHERE (i=1 AND j=1) OR (+i=2 AND j=2);
]], {
-- <1.3>
"one", "two"
-- </1.3>
})
test:do_execsql_test(
1.4,
[[
SELECT n FROM t WHERE (i=1 AND j=1) OR (i=2 AND j=2);
]], {
-- <1.4>
"uno", "dos"
-- </1.4>
})
test:do_execsql_test(
1.5,
[[
SELECT k, n FROM t WHERE (i=1 AND j=1) OR (i=2 AND j=2);
]], {
-- <1.5>
"one", "uno", "two", "dos"
-- </1.5>
})
test:do_execsql_test(
1.6,
[[
SELECT k FROM t WHERE (i=1 AND j=1) OR (i=2 AND j=2) OR (i=3 AND j=3);
]], {
-- <1.6>
"one", "two", "three"
-- </1.6>
})
test:do_execsql_test(
1.7,
[[
SELECT n FROM t WHERE (i=1 AND j=1) OR (i=2 AND j=2) OR (i=3 AND j=3);
]], {
-- <1.7>
"uno", "dos", "tres"
-- </1.7>
})
test:do_execsql_test(
1.8,
[[
SELECT k FROM t WHERE (i=1 AND j=1) OR (j=2 AND m=2);
]], {
-- <1.8>
"one", "two"
-- </1.8>
})
test:do_execsql_test(
1.9,
[[
SELECT k FROM t WHERE (i=1 AND j=1) OR (i=2 AND j=2) OR (j=3 AND m=3);
]], {
-- <1.9>
"one", "two", "three"
-- </1.9>
})
test:do_execsql_test(
1.10,
[[
SELECT n FROM t WHERE (i=1 AND j=1) OR (i=2 AND j=2) OR (j=3 AND m=3);
]], {
-- <1.10>
"uno", "dos", "tres"
-- </1.10>
})
test:do_execsql_test(
1.11,
[[
SELECT k FROM t WHERE (i=1 AND j=1) OR (j=2 AND m=2) OR (i=3 AND j=3);
]], {
-- <1.11>
"one", "two", "three"
-- </1.11>
})
test:do_execsql_test(
1.12,
[[
SELECT n FROM t WHERE (i=1 AND j=1) OR (j=2 AND m=2) OR (i=3 AND j=3);
]], {
-- <1.12>
"uno", "dos", "tres"
-- </1.12>
})
test:do_execsql_test(
1.13,
[[
SELECT k FROM t WHERE (j=1 AND m=1) OR (i=2 AND j=2) OR (i=3 AND j=3);
]], {
-- <1.13>
"one", "two", "three"
-- </1.13>
})
test:do_execsql_test(
1.14,
[[
SELECT k FROM t WHERE (i=1 AND j=1) OR (j=2 AND i=2) OR (i=3 AND j=3);
]], {
-- <1.14>
"one", "two", "three"
-- </1.14>
})
test:do_execsql_test(
1.15,
[[
SELECT k FROM t WHERE (i=1 AND j=2) OR (i=2 AND j=1) OR (i=3 AND j=4);
]], {
-- <1.15>
-- </1.15>
})
test:do_execsql_test(
1.16,
[[
SELECT k FROM t WHERE (i=1 AND (j=1 or j=2)) OR (i=3 AND j=3);
]], {
-- <1.16>
"one", "three"
-- </1.16>
})
test:do_execsql_test(
2.0,
[[
CREATE TABLE t1(a INT PRIMARY KEY,b INT ,c INT ,d INT );
CREATE INDEX t1b ON t1(b);
CREATE INDEX t1c ON t1(c);
CREATE INDEX t1d ON t1(d);
CREATE TABLE t2(x INT PRIMARY KEY,y INT );
CREATE INDEX t2y ON t2(y);
INSERT INTO t1 VALUES(1,2,3,4);
INSERT INTO t1 VALUES(5,6,7,8);
INSERT INTO t2 VALUES(1,2);
INSERT INTO t2 VALUES(2,7);
INSERT INTO t2 VALUES(3,4);
]], {
-- <2.0>
-- </2.0>
})
test:do_execsql_test(
2.1,
[[
SELECT a, x FROM t1 JOIN t2 ON +y=d OR x=7 ORDER BY a, x;
]], {
-- <2.1>
1, 3
-- </2.1>
})
test:do_execsql_test(
2.2,
[[
SELECT a, x FROM t1 JOIN t2 ON y=d OR x=7 ORDER BY a, x;
]], {
-- <2.2>
1, 3
-- </2.2>
})
-- Similar to [do_execsql_test], except that two elements are appended
-- to the result - the string "search" and the number of times test variable
-- sql_search_count is incremented by running the supplied SQL. e.g.
--
-- do_searchcount_test 1.0 { SELECT * FROM t1 } {x y search 2}
--
local function do_searchcount_test(tn, sql, res)
test:do_test(
tn,
function()
local sql_search_count = box.stat.sql().sql_search_count
local r = test:execsql(sql)
table.insert(r, "search")
table.insert(r, box.stat.sql().sql_search_count - sql_search_count)
return r
end,
res)
end
test:do_execsql_test(
3.0,
[[
CREATE TABLE t3(a INT PRIMARY KEY, b TEXT, c TEXT);
CREATE UNIQUE INDEX i3 ON t3(a, b);
INSERT INTO t3 VALUES(1, 'one', 'i');
INSERT INTO t3 VALUES(3, 'three', 'iii');
INSERT INTO t3 VALUES(6, 'six', 'vi');
INSERT INTO t3 VALUES(2, 'two', 'ii');
INSERT INTO t3 VALUES(4, 'four', 'iv');
INSERT INTO t3 VALUES(5, 'five', 'v');
CREATE TABLE t4(x TEXT PRIMARY KEY, y TEXT);
INSERT INTO t4 VALUES('a', 'one');
INSERT INTO t4 VALUES('b', 'two');
]])
-- since extra columns deleted from pk (#2289), the searchcount decreased because
-- query plan changed a lot
do_searchcount_test("3.1", [[
SELECT a, b FROM t3 WHERE (a=1 AND b='one') OR (a=2 AND b='two')
]],
{1, "one", 2, "two", "search", 2})
do_searchcount_test("3.2", [[
SELECT a, c FROM t3 WHERE (a=1 AND b='one') OR (a=2 AND b='two')
]],
{1, "i", 2, "ii", "search", 2})
do_searchcount_test("3.4.1", [[
SELECT y FROM t4 WHERE x='a'
]],
{"one", "search", 1})
do_searchcount_test("3.4.2", [[
SELECT a, b FROM t3 WHERE
(a=1 AND b=(SELECT y FROM t4 WHERE x='a'))
OR (a=2 AND b='two')
]],
{1, "one", 2, "two", "search", 3})
do_searchcount_test("3.4.3", [[
SELECT a, b FROM t3 WHERE
(a=2 AND b='two')
OR (a=1 AND b=(SELECT y FROM t4 WHERE x='a'))
]],
{2, "two", 1, "one", "search", 3})
do_searchcount_test("3.4.4", [[
SELECT a, b FROM t3 WHERE
(a=2 AND b=(SELECT y FROM t4 WHERE x='b'))
OR (a=1 AND b=(SELECT y FROM t4 WHERE x='a'))
]],
{2, "two", 1, "one", "search", 4})
-- do_searchcount_test 3.5.1 {
-- SELECT a, b FROM t3 WHERE (a=1 AND b='one') OR rowid=4
-- } {1 one 2 two search 3}
-- do_searchcount_test 3.5.2 {
-- SELECT a, c FROM t3 WHERE (a=1 AND b='one') OR rowid=4
-- } {1 i 2 ii search 3}
-- Ticket [d02e1406a58ea02d] (2012-10-04)
-- LEFT JOIN with an OR in the ON clause causes segfault
--
test:do_test(
4.1,
function()
return test:execsql [[
CREATE TABLE t41(a INT PRIMARY KEY,b INT ,c INT );
INSERT INTO t41 VALUES(1,2,3), (4,5,6);
CREATE TABLE t42(d INT PRIMARY KEY,e INT ,f INT );
INSERT INTO t42 VALUES(3,6,9), (4,8,12);
SELECT * FROM t41 AS x LEFT JOIN t42 AS y ON (y.d=x.c) OR (y.e=x.b);
]]
end, {
-- <4.1>
1, 2, 3, 3, 6, 9, 4, 5, 6, "", "", ""
-- </4.1>
})
test:do_test(
4.2,
function()
return test:execsql [[
CREATE INDEX t42e ON t42(e);
SELECT * FROM t41 AS x LEFT JOIN t42 AS y ON (y.d=x.c) OR (y.e=x.b);
]]
end, {
-- <4.2>
1, 2, 3, 3, 6, 9, 4, 5, 6, "", "", ""
-- </4.2>
})
test:do_test(
4.3,
function()
return test:execsql [[
SELECT * FROM t41 AS x LEFT JOIN t42 AS y ON (y.d=x.c) OR (y.d=x.b);
]]
end, {
-- <4.3>
1, 2, 3, 3, 6, 9, 4, 5, 6, "", "", ""
-- </4.3>
})
-- Ticket [bc1aea7b725f276177]
-- Incorrect result on LEFT JOIN with OR constraints and an ORDER BY clause.
--
test:do_execsql_test(
4.4,
[[
CREATE TABLE t44(a INTEGER PRIMARY KEY, b INTEGER);
INSERT INTO t44 VALUES(1,2);
INSERT INTO t44 VALUES(3,4);
SELECT *
FROM t44 AS x
LEFT JOIN (SELECT a AS c, b AS d FROM t44) AS y ON a=c
WHERE d=4 OR d IS NULL;
]], {
-- <4.4>
3, 4, 3, 4
-- </4.4>
})
test:do_execsql_test(
4.5,
[[
SELECT *
FROM t44 AS x
LEFT JOIN (SELECT a AS c, b AS d FROM t44) AS y ON a=c
WHERE d=4 OR d IS NULL
ORDER BY a;
]], {
-- <4.5>
3, 4, 3, 4
-- </4.5>
})
test:do_execsql_test(
4.6,
[[
CREATE TABLE t46(c INTEGER PRIMARY KEY, d INTEGER);
INSERT INTO t46 SELECT a, b FROM t44;
SELECT * FROM t44 LEFT JOIN t46 ON a=c
WHERE d=4 OR d IS NULL;
]], {
-- <4.6>
3, 4, 3, 4
-- </4.6>
})
test:do_execsql_test(
4.7,
[[
SELECT * FROM t44 LEFT JOIN t46 ON a=c
WHERE d=4 OR d IS NULL
ORDER BY a;
]], {
-- <4.7>
3, 4, 3, 4
-- </4.7>
})
-- Verify fix of a bug reported on the mailing list by Peter Reid
--
test:do_execsql_test(
5.1,
[[
DROP TABLE IF EXISTS t;
CREATE TABLE t(c0 INT PRIMARY key,c1 INT ,c2 INT ,c3 INT ,c4 INT ,c5 INT ,c6 INT ,c7 INT ,c8 INT ,c9 INT ,c10 INT ,c11 INT ,c12 INT ,c13 INT ,c14 INT ,c15 INT ,c16 INT ,c17 INT );
CREATE INDEX tc1 ON t(c1);
CREATE INDEX tc2 ON t(c2);
CREATE INDEX tc3 ON t(c3);
CREATE INDEX tc4 ON t(c4);
CREATE INDEX tc5 ON t(c5);
CREATE INDEX tc6 ON t(c6);
CREATE INDEX tc7 ON t(c7);
CREATE INDEX tc8 ON t(c8);
CREATE INDEX tc9 ON t(c9);
CREATE INDEX tc10 ON t(c10);
CREATE INDEX tc11 ON t(c11);
CREATE INDEX tc12 ON t(c12);
CREATE INDEX tc13 ON t(c13);
CREATE INDEX tc14 ON t(c14);
CREATE INDEX tc15 ON t(c15);
CREATE INDEX tc16 ON t(c16);
CREATE INDEX tc17 ON t(c17);
INSERT INTO t(c0, c16) VALUES (1,1);
SELECT * FROM t WHERE
c0=1 or c1=1 or c2=1 or c3=1 or
c4=1 or c5=1 or c6=1 or c7=1 or
c8=1 or c9=1 or c10=1 or c11=1 or
c12=1 or c13=1 or c14=1 or c15=1 or
c16=1 or c17=1;
]], {
-- <5.1>
1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", 1, ""
-- </5.1>
})
test:do_execsql_test(
5.2,
[[
DELETE FROM t;
INSERT INTO t(c0,c17) VALUES(1,1);
SELECT * FROM t WHERE
c0=1 or c1=1 or c2=1 or c3=1 or
c4=1 or c5=1 or c6=1 or c7=1 or
c8=1 or c9=1 or c10=1 or c11=1 or
c12=1 or c13=1 or c14=1 or c15=1 or
c16=1 or c17=1;
]], {
-- <5.2>
1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", 1
-- </5.2>
})
test:do_execsql_test(
5.3,
[[
DELETE FROM t;
INSERT INTO t(c0,c15) VALUES(1,1);
SELECT * FROM t WHERE
c0=1 or c1=1 or c2=1 or c3=1 or
c4=1 or c5=1 or c6=1 or c7=1 or
c8=1 or c9=1 or c10=1 or c11=1 or
c12=1 or c13=1 or c14=1 or c15=1 or
c16=1 or c17=1;
]], {
-- <5.3>
1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", 1, "", ""
-- </5.3>
})
test:finish_test()
|