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
|
#!/usr/bin/env tarantool
test = require("sqltester")
test:plan(15)
--!./tcltestrunner.lua
-- 2005 August 18
--
-- 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 corner cases of the DEFAULT syntax
-- on table definitions.
--
-- $Id: default.test,v 1.3 2009/02/19 14:39:25 danielk1977 Exp $
--
-- ["set","testdir",[["file","dirname",["argv0"]]]]
-- ["source",[["testdir"],"\/tester.tcl"]]
-- MUST_WORK_TEST
test:do_execsql_test(
"default-1.1",
[[
CREATE TABLE t1(
rowid INTEGER PRIMARY KEY AUTOINCREMENT,
a INTEGER,
b SCALAR DEFAULT x'6869'
);
INSERT INTO t1(a) VALUES(1);
SELECT a, b from t1;
]], {
-- <default-1.1>
1, "hi"
-- </default-1.1>
})
test:do_execsql_test(
"default-1.2",
[[
CREATE TABLE t2(
rowid INTEGER PRIMARY KEY AUTOINCREMENT,
x INTEGER,
y INTEGER DEFAULT NULL
);
INSERT INTO t2(x) VALUES(1);
SELECT x,y FROM t2;
]], {
-- <default-1.2>
1, ""
-- </default-1.2>
})
test:do_catchsql_test(
"default-1.3",
[[
CREATE TABLE t3(
rowid INTEGER PRIMARY KEY AUTOINCREMENT,
x INTEGER,
y INTEGER DEFAULT (max(x,5))
);
]], {
-- <default-1.3>
1, "Failed to create space 'T3': default value of column 'Y' is not constant"
-- </default-1.3>
})
test:do_execsql_test(
"default-2.1",
[[
CREATE TABLE t4(
rowid INTEGER PRIMARY KEY AUTOINCREMENT,
c TEXT DEFAULT 'abc'
);
PRAGMA table_info(t4);
]], {
-- <default-2.1>
0,"ROWID","integer",1,"",1,1,"C","string",0,"'abc'",0
-- </default-2.1>
})
test:do_execsql_test(
"default-2.2",
[[
INSERT INTO t4 DEFAULT VALUES;
PRAGMA table_info(t4);
]], {
-- <default-2.2>
0,"ROWID","integer",1,"",1,1,"C","string",0,"'abc'",0
-- </default-2.2>
})
test:do_execsql_test(
"default-3.1",
[[
CREATE TABLE t3(
a INTEGER PRIMARY KEY AUTOINCREMENT,
b INT DEFAULT 12345 UNIQUE NOT NULL CHECK( b>=0 AND b<99999 ),
c VARCHAR(123) DEFAULT 'hello' NOT NULL,
d NUMBER,
e NUMBER DEFAULT 4.36,
f VARCHAR(15), --COLLATE RTRIM,
g INTEGER DEFAULT( 3600*12 )
);
INSERT INTO t3 VALUES(null, 5, 'row1', 5.25, 8.67, '321', 432);
SELECT a, typeof(a), b, typeof(b), c, typeof(c),
d, typeof(d), e, typeof(e), f, typeof(f),
g, typeof(g) FROM t3;
]], {
-- <default-3.1>
1, "integer", 5, "integer", "row1", "string", 5.25, "number", 8.67, "number", "321", "string", 432, "integer"
-- </default-3.1>
})
test:do_execsql_test(
"default-3.2",
[[
DELETE FROM t3;
INSERT INTO t3 DEFAULT VALUES;
SELECT * FROM t3;
]], {
-- <default-3.2>
2, 12345, "hello", "", 4.36, "", 43200
-- </default-3.2>
})
test:do_execsql_test(
"default-3.3",
[[
CREATE TABLE t300(
pk INTEGER PRIMARY KEY AUTOINCREMENT,
a INT DEFAULT 2147483647,
b INT DEFAULT 2147483648,
c INT DEFAULT +9223372036854775807,
d INT DEFAULT -2147483647,
e INT DEFAULT -2147483648,
f INT DEFAULT (-9223372036854775808),
h INT DEFAULT (-(-9223372036854775807))
);
INSERT INTO t300 DEFAULT VALUES;
SELECT a, b, c, d, e, f, h FROM t300;
]], {
-- <default-3.3>
2147483647, 2147483648, 9223372036854775807LL, -2147483647, -2147483648, -9223372036854775808LL, 9223372036854775807LL
-- </default-3.3>
})
-- Do now allow bound parameters in new DEFAULT values.
-- Silently convert bound parameters to NULL in DEFAULT causes
-- in the sql_master table, for backwards compatibility.
--
test:execsql("DROP TABLE IF EXISTS t1")
test:execsql("DROP TABLE IF EXISTS t2")
test:do_catchsql_test(
"default-4.1",
[[
CREATE TABLE t2(
rowid INTEGER PRIMARY KEY AUTOINCREMENT,
a TEXT,
b TEXT DEFAULT(:xyz)
);
]], {
-- <default-4.2>
1, "Failed to create space 'T2': default value of column 'B' is not constant"
-- </default-4.2>
})
test:do_catchsql_test(
"default-4.2",
[[
CREATE TABLE t2(
rowid INTEGER PRIMARY KEY AUTOINCREMENT,
a TEXT,
b TEXT DEFAULT(abs(:xyz))
);
]], {
-- <default-4.3>
1, "Failed to create space 'T2': default value of column 'B' is not constant"
-- </default-4.3>
})
test:do_catchsql_test(
"default-4.3",
[[
CREATE TABLE t2(
rowid INTEGER PRIMARY KEY AUTOINCREMENT,
a TEXT,
b TEXT DEFAULT(98+coalesce(5,:xyz))
);
]], {
-- <default-4.4>
1, "Failed to create space 'T2': default value of column 'B' is not constant"
-- </default-4.4>
})
-- gh-3695: IDs (i.e. columns' names) are not allowed as
-- default values.
--
test:do_catchsql_test(
"default-5.1",
[[
CREATE TABLE t6(id INTEGER PRIMARY KEY, b TEXT DEFAULT(id));
]], {
-- <default-5.1>
1, "Failed to create space 'T6': default value of column 'B' is not constant"
-- </default-5.1>
})
test:do_catchsql_test(
"default-5.2",
[[
CREATE TABLE t6(id INTEGER PRIMARY KEY, b TEXT DEFAULT id);
]], {
-- <default-5.2>
1, "Syntax error at line 1 near 'id'"
-- </default-5.2>
})
test:do_catchsql_test(
"default-5.3",
[[
CREATE TABLE t6(id INTEGER PRIMARY KEY, b TEXT DEFAULT "id");
]], {
-- <default-5.3>
1, "Syntax error at line 1 near '\"id\"'"
-- </default-5.3>
})
test:do_execsql_test(
"default-5.4",
[[
CREATE TABLE t6(id INTEGER PRIMARY KEY, b TEXT DEFAULT('id'));
INSERT INTO t6(id) VALUES(1);
SELECT * FROM t6;
]], {
-- <default-5.4>
1, 'id'
-- </default-5.4>
})
test:finish_test()
|