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
|
#!/usr/bin/env tarantool
test = require("sqltester")
test:plan(21)
-----------------------------------------------------------------
-- Previously "BEGIN" / "BEGIN TRANSACTION", "COMMIT TRANSACTION"
-- / "END" / "END TRANSACTION", "ROLLBACK TRANSACTION" could be
-- used to handle transactions. By changing these commands syntax
-- in parser we're aiming on getting closer to ANSI SQL.
-----------------------------------------------------------------
-- Tarantool issue: #2164.
test:do_catchsql_test(
"start-transaction-1.0",
[[
CREATE TABLE IF NOT EXISTS t(id int PRIMARY KEY);
DELETE FROM t;
BEGIN;
INSERT INTO t VALUES (1);
INSERT INTO t VALUES (2);
COMMIT;
]], {
-- <start-transaction-1.0>
1, "Syntax error at line 2 near 'BEGIN'"
-- <start-transaction-1.0>
})
test:do_execsql_test(
"start-transaction-1.1",
[[
SELECT * FROM t;
]], {
-- <start-transaction-1.1>
-- <start-transaction-1.1>
})
test:do_catchsql_test(
"start-transaction-1.2",
[[
CREATE TABLE IF NOT EXISTS t(id INT PRIMARY KEY);
DELETE FROM t;
BEGIN TRANSACTION;
INSERT INTO t VALUES (1);
INSERT INTO t VALUES (2);
COMMIT;
]], {
-- <start-transaction-1.1>
1, "Syntax error at line 2 near 'BEGIN'"
-- <start-transaction-1.1>
})
test:do_execsql_test(
"start-transaction-1.3",
[[
SELECT * FROM t;
]], {
-- <start-transaction-1.3>
-- <start-transaction-1.3>
})
test:do_catchsql_test(
"start-transaction-1.4",
[[
DELETE FROM t;
START TRANSACTION;
INSERT INTO t VALUES (1);
INSERT INTO t VALUES (2);
COMMIT;
]], {
-- <start-transaction-1.4>
0
-- <start-transaction-1.4>
})
test:do_execsql_test(
"start-transaction-1.5",
[[
SELECT * FROM t;
]], {
-- <start-transaction-1.5>
1, 2
-- <start-transaction-1.5>
})
test:do_catchsql_test(
"start-transaction-1.6",
[[
DELETE FROM t;
START TRANSACTION;
INSERT INTO t VALUES (1);
INSERT INTO t VALUES (2);
COMMIT TRANSACTION;
]], {
-- <start-transaction-1.6>
1, "At line 2 at or near position 10: keyword 'TRANSACTION' is reserved. Please use double quotes if 'TRANSACTION' is an identifier."
-- <start-transaction-1.6>
})
test:do_execsql_test(
"start-transaction-1.7",
[[
COMMIT;
SELECT * FROM t;
]], {
-- <start-transaction-1.7>
1, 2
-- <start-transaction-1.7>
})
test:do_catchsql_test(
"start-transaction-1.8",
[[
DELETE FROM t;
START TRANSACTION;
INSERT INTO t VALUES (1);
INSERT INTO t VALUES (2);
END;
]], {
-- <start-transaction-1.8>
1, "At line 2 at or near position 3: keyword 'END' is reserved. Please use double quotes if 'END' is an identifier."
-- <start-transaction-1.8>
})
test:do_execsql_test(
"start-transaction-1.9",
[[
COMMIT;
SELECT * FROM t;
]], {
-- <start-transaction-1.9>
1, 2
-- <start-transaction-1.9>
})
test:do_catchsql_test(
"start-transaction-1.10",
[[
DELETE FROM t;
START TRANSACTION;
INSERT INTO t VALUES (1);
INSERT INTO t VALUES (2);
END TRANSACTION;
]], {
-- <start-transaction-1.10>
1, "At line 2 at or near position 3: keyword 'END' is reserved. Please use double quotes if 'END' is an identifier."
-- <start-transaction-1.10>
})
test:do_execsql_test(
"start-transaction-1.11",
[[
COMMIT;
SELECT * FROM t;
]], {
-- <start-transaction-1.11>
1, 2
-- <start-transaction-1.11>
})
test:do_catchsql_test(
"start-transaction-1.12",
[[
DELETE FROM t;
START TRANSACTION;
INSERT INTO t VALUES (1);
INSERT INTO t VALUES (2);
ROLLBACK;
]], {
-- <start-transaction-1.12>
0
-- <start-transaction-1.12>
})
test:do_execsql_test(
"start-transaction-1.13",
[[
SELECT * FROM t;
]], {
-- <start-transaction-1.13>
-- <start-transaction-1.13>
})
test:do_catchsql_test(
"start-transaction-1.14",
[[
START TRANSACTION;
INSERT INTO t VALUES (1);
INSERT INTO t VALUES (2);
ROLLBACK TRANSACTION;
COMMIT;
]], {
-- <start-transaction-1.14>
1, "At line 2 at or near position 13: keyword 'TRANSACTION' is reserved. Please use double quotes if 'TRANSACTION' is an identifier."
-- <start-transaction-1.14>
})
test:do_execsql_test(
"start-transaction-1.15",
[[
COMMIT;
SELECT * FROM t;
]], {
-- <start-transaction-1.15>
1, 2
-- <start-transaction-1.15>
})
test:do_catchsql_test(
"start-transaction-1.16",
[[
DELETE FROM t;
START TRANSACTION;
INSERT INTO t VALUES (1);
SAVEPOINT s1;
INSERT INTO t VALUES (2);
ROLLBACK TO s1;
COMMIT;
]], {
-- <start-transaction-1.16>
0
-- <start-transaction-1.16>
})
test:do_execsql_test(
"start-transaction-1.17",
[[
SELECT * FROM t;
]], {
-- <start-transaction-1.17>
1
-- <start-transaction-1.17>
})
test:do_catchsql_test(
"start-transaction-1.18",
[[
DELETE FROM t;
START TRANSACTION;
INSERT INTO t VALUES (1);
SAVEPOINT s1;
INSERT INTO t VALUES (2);
ROLLBACK TRANSACTION TO s1;
COMMIT;
]], {
-- <start-transaction-1.18>
1, "At line 2 at or near position 13: keyword 'TRANSACTION' is reserved. Please use double quotes if 'TRANSACTION' is an identifier."
-- <start-transaction-1.18>
})
test:do_execsql_test(
"start-transaction-1.19",
[[
COMMIT;
SELECT * FROM t;
]], {
-- <start-transaction-1.19>
1, 2
-- <start-transaction-1.19>
})
test:do_execsql_test(
"start-transaction-1.20",
[[
DROP TABLE t;
]], {
-- <start0transaction-1.20>
-- <start-transaction-1.20>
})
test:finish_test()
|