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
|
#!/usr/bin/env tarantool
test = require("sqltester")
test:plan(17)
--!./tcltestrunner.lua
-- 2009 February 23
--
-- 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 the reverse_select_order pragma.
--
-- $Id: whereA.test,v 1.3 2009/06/10 19:33:29 drh Exp $
-- ["set","testdir",[["file","dirname",["argv0"]]]]
-- ["source",[["testdir"],"\/tester.tcl"]]
test:do_test(
"whereA-1.1",
function()
return test:execsql [[
CREATE TABLE t1(a INTEGER PRIMARY KEY, b NUMBER UNIQUE, c TEXT);
INSERT INTO t1 VALUES(1,2,'3');
INSERT INTO t1 values(2,55,'world');
INSERT INTO t1 VALUES(3,4.53,NULL);
SELECT * FROM t1
]]
end, {
-- <whereA-1.1>
1, 2, '3', 2, 55, "world", 3, 4.53, ""
-- </whereA-1.1>
})
test:do_test(
"whereA-1.2",
function()
return test:execsql [[
UPDATE "_session_settings" SET "value" = true WHERE "name" = 'sql_reverse_unordered_selects';
SELECT * FROM t1;
]]
end, {
-- <whereA-1.2>
3, 4.53, "", 2, 55, "world", 1, 2, '3'
-- </whereA-1.2>
})
-- MUST_WORK_TEST
test:do_test(
"whereA-1.3",
function()
--db close
--sql db test.db
return test:execsql [[
UPDATE "_session_settings" SET "value" = true WHERE "name" = 'sql_reverse_unordered_selects';
SELECT * FROM t1;
]]
end, {
-- <whereA-1.3>
3, 4.53, "", 2, 55, "world", 1, 2, '3'
-- </whereA-1.3>
})
-- do_test whereA-1.4 {
-- db close
-- sql db test.db
-- db eval {
-- PRAGMA reverse_unordered_selects=1;
-- SELECT * FROM t1 ORDER BY rowid;
-- }
-- } {1 2 3 2 hello world 3 4.53 {}}
test:do_test(
"whereA-1.6",
function()
return box.space._session_settings:get('sql_reverse_unordered_selects').value
end,
-- <whereA-1.6>
true
-- </whereA-1.6>
)
test:do_execsql_test(
"whereA-1.8",
[[
SELECT * FROM t1 WHERE b=2 AND a IS NULL;
]], {
-- <whereA-1.8>
-- </whereA-1.8>
})
test:do_execsql_test(
"whereA-1.9",
[[
SELECT * FROM t1 WHERE b=2 AND a IS NOT NULL;
]], {
-- <whereA-1.9>
1, 2, '3'
-- </whereA-1.9>
})
test:do_test(
"whereA-2.1",
function()
return test:execsql [[
UPDATE "_session_settings" SET "value" = false WHERE "name" = 'sql_reverse_unordered_selects';
SELECT * FROM t1 WHERE a>0;
]]
end, {
-- <whereA-2.1>
1, 2, '3', 2, 55, "world", 3, 4.53, ""
-- </whereA-2.1>
})
test:do_test(
"whereA-2.2",
function()
return test:execsql [[
UPDATE "_session_settings" SET "value" = true WHERE "name" = 'sql_reverse_unordered_selects';
SELECT * FROM t1 WHERE a>0;
]]
end, {
-- <whereA-2.2>
3, 4.53, "", 2, 55, "world", 1, 2, '3'
-- </whereA-2.2>
})
-- do_test whereA-2.3 {
-- db eval {
-- PRAGMA reverse_unordered_selects=1;
-- SELECT * FROM t1 WHERE a>0 ORDER BY rowid;
-- }
-- } {1 2 3 2 hello world 3 4.53 {}}
test:do_test(
"whe:reA-3.1",
function()
return test:execsql [[
UPDATE "_session_settings" SET "value" = false WHERE "name" = 'sql_reverse_unordered_selects';
SELECT * FROM t1 WHERE b>0;
]]
end, {
-- <whereA-3.1>
1, 2, '3', 3, 4.53, "", 2, 55, "world"
-- </whereA-3.1>
})
test:do_test(
"whereA-3.2",
function()
return test:execsql [[
UPDATE "_session_settings" SET "value" = true WHERE "name" = 'sql_reverse_unordered_selects';
SELECT * FROM t1 WHERE b>0;
]]
end, {
-- <whereA-3.2>
2, 55, "world", 3, 4.53, "", 1, 2, '3'
-- </whereA-3.2>
})
test:do_test(
"whereA-3.3",
function()
return test:execsql [[
UPDATE "_session_settings" SET "value" = true WHERE "name" = 'sql_reverse_unordered_selects';
SELECT * FROM t1 WHERE b>0 ORDER BY b;
]]
end, {
-- <whereA-3.3>
1, 2, '3', 3, 4.53, "", 2, 55, "world"
-- </whereA-3.3>
})
test:do_test(
"whereA-4.1",
function()
return test:execsql [[
CREATE TABLE t2(id int primary key, x INT);
INSERT INTO t2 VALUES(1, 1);
INSERT INTO t2 VALUES(2, 2);
SELECT x FROM t2;
]]
end, {
-- <whereA-4.1>
2, 1
-- </whereA-4.1>
})
-- Do an SQL statement. Append the search count to the end of the result.
--
local function count(sql)
local sql_sort_count = box.stat.sql().sql_sort_count
local r = test:execsql(sql)
table.insert(r, box.stat.sql().sql_sort_count - sql_sort_count)
return r
end
test:do_test(
"whereA-4.2",
function()
-- Ticket #3904
test:execsql([[
CREATE INDEX t2x ON t2(x);
]])
return count([[
SELECT x FROM t2;
]])
end, {
-- <whereA-4.2>
2, 1, 0
-- </whereA-4.2>
})
test:do_test(
"whereA-4.3",
function()
return count([[
SELECT x FROM t2 ORDER BY x;
]])
end, {
-- <whereA-4.3>
1, 2, 0
-- </whereA-4.3>
})
test:do_test(
"whereA-4.4",
function()
return count([[
SELECT x FROM t2 ORDER BY x DESC;
]])
end, {
-- <whereA-4.4>
2, 1, 0
-- </whereA-4.4>
})
test:do_test(
"whereA-4.5",
function()
test:execsql("DROP INDEX t2x ON t2;")
return count([[
SELECT x FROM t2 ORDER BY x;
]])
end, {
-- <whereA-4.5>
1, 2, 1
-- </whereA-4.5>
})
test:do_test(
"whereA-4.6",
function()
return count([[
SELECT x FROM t2 ORDER BY x DESC;
]])
end, {
-- <whereA-4.6>
2, 1, 1
-- </whereA-4.6>
})
test:finish_test()
|