First public contribution.
3 # The author disclaims copyright to this source code. In place of
4 # a legal notice, here is a blessing:
6 # May you do good and not evil.
7 # May you find forgiveness for yourself and forgive others.
8 # May you share freely, never taking more than you give.
10 #***********************************************************************
11 # This file implements regression tests for SQLite library.
13 # This file implements tests for miscellanous features that were
14 # left out of other test files.
16 # $Id: misc2.test,v 1.28 2007/09/12 17:01:45 danielk1977 Exp $
18 set testdir [file dirname $argv0]
19 source $testdir/tester.tcl
22 # Test for ticket #360
26 CREATE TABLE FOO(bar integer);
27 CREATE TRIGGER foo_insert BEFORE INSERT ON foo BEGIN
28 SELECT CASE WHEN (NOT new.bar BETWEEN 0 AND 20)
29 THEN raise(rollback, 'aiieee') END;
31 INSERT INTO foo(bar) VALUES (1);
36 INSERT INTO foo(bar) VALUES (111);
41 # Make sure ROWID works on a view and a subquery. Ticket #364
45 CREATE TABLE t1(a,b,c);
46 INSERT INTO t1 VALUES(1,2,3);
47 CREATE TABLE t2(a,b,c);
48 INSERT INTO t2 VALUES(7,8,9);
54 SELECT rowid, * FROM (SELECT * FROM t1, t2);
61 CREATE VIEW v1 AS SELECT * FROM t1, t2;
62 SELECT rowid, * FROM v1;
67 # Ticket #2002 and #1952.
71 SELECT * FROM (SELECT a, b AS 'a', c AS 'a', 4 AS 'a' FROM t1)
73 } {a 1 a:1 2 a:2 3 a:3 4}
76 # Check name binding precedence. Ticket #387
80 SELECT t1.b+t2.b AS a, t1.a, t2.a FROM t1, t2 WHERE a==10
82 } {1 {ambiguous column name: a}}
84 # Make sure 32-bit integer overflow is handled properly in queries.
89 INSERT INTO t1 VALUES(4000000000,'a','b');
90 SELECT a FROM t1 WHERE a>1;
95 INSERT INTO t1 VALUES(2147483648,'b2','c2');
96 INSERT INTO t1 VALUES(2147483647,'b3','c3');
97 SELECT a FROM t1 WHERE a>2147483647;
99 } {4000000000 2147483648}
102 SELECT a FROM t1 WHERE a<2147483648;
107 SELECT a FROM t1 WHERE a<=2147483648;
109 } {1 2147483648 2147483647}
112 SELECT a FROM t1 WHERE a<10000000000;
114 } {1 4000000000 2147483648 2147483647}
117 SELECT a FROM t1 WHERE a<1000000000000 ORDER BY 1;
119 } {1 2147483647 2147483648 4000000000}
121 # There were some issues with expanding a SrcList object using a call
122 # to sqliteSrcListAppend() if the SrcList had previously been duplicated
123 # using a call to sqliteSrcListDup(). Ticket #416. The following test
124 # makes sure the problem has been fixed.
131 SELECT x1.b AS p, x2.b AS q FROM x AS x1, x AS x2 WHERE x1.a=x2.a;
133 SELECT y1.p, y2.p FROM y AS y1, y AS y2 WHERE y1.q=y2.q;
139 # Make sure we can open a database with an empty filename. What this
140 # does is store the database in a temporary file that is deleted when
141 # the database is closed. Ticket #432.
147 CREATE TABLE t1(a,b);
148 INSERT INTO t1 VALUES(1,2);
153 # Make sure we get an error message (not a segfault) on an attempt to
154 # update a table from within the callback of a select on that same
157 # 2006-08-16: This has changed. It is now permitted to update
158 # the table being SELECTed from within the callback of the query.
163 file delete -force test.db
167 INSERT INTO t1 VALUES(1);
168 INSERT INTO t1 VALUES(2);
169 INSERT INTO t1 VALUES(3);
175 db eval {SELECT rowid FROM t1} {} {
176 db eval "DELETE FROM t1 WHERE rowid=$rowid"
182 execsql {SELECT * FROM t1}
187 INSERT INTO t1 VALUES(1);
188 INSERT INTO t1 VALUES(2);
189 INSERT INTO t1 VALUES(3);
190 INSERT INTO t1 VALUES(4);
192 db eval {SELECT rowid, x FROM t1} {
194 db eval {DELETE FROM t1 WHERE rowid=$rowid}
197 execsql {SELECT * FROM t1}
202 INSERT INTO t1 VALUES(1);
203 INSERT INTO t1 VALUES(2);
204 INSERT INTO t1 VALUES(3);
205 INSERT INTO t1 VALUES(4);
207 db eval {SELECT rowid, x FROM t1} {
209 db eval {DELETE FROM t1 WHERE rowid=$rowid+1}
212 execsql {SELECT * FROM t1}
217 INSERT INTO t1 VALUES(1);
218 INSERT INTO t1 VALUES(2);
219 INSERT INTO t1 VALUES(3);
220 INSERT INTO t1 VALUES(4);
222 db eval {SELECT rowid, x FROM t1} {
224 db eval {DELETE FROM t1}
227 execsql {SELECT * FROM t1}
232 INSERT INTO t1 VALUES(1);
233 INSERT INTO t1 VALUES(2);
234 INSERT INTO t1 VALUES(3);
235 INSERT INTO t1 VALUES(4);
237 db eval {SELECT rowid, x FROM t1} {
239 db eval {UPDATE t1 SET x=x+100 WHERE rowid=$rowid}
242 execsql {SELECT * FROM t1}
247 INSERT INTO t1 VALUES(1);
249 db eval {SELECT rowid, x FROM t1} {
251 db eval {INSERT INTO t1 VALUES($x+1)}
254 execsql {SELECT * FROM t1}
255 } {1 2 3 4 5 6 7 8 9 10}
257 # Repeat the tests 7.1 through 7.8 about but this time do the SELECTs
258 # in reverse order so that we exercise the sqlite3BtreePrev() routine
259 # instead of sqlite3BtreeNext()
263 file delete -force test.db
267 INSERT INTO t1 VALUES(1);
268 INSERT INTO t1 VALUES(2);
269 INSERT INTO t1 VALUES(3);
275 db eval {SELECT rowid FROM t1 ORDER BY rowid DESC} {} {
276 db eval "DELETE FROM t1 WHERE rowid=$rowid"
282 execsql {SELECT * FROM t1}
287 INSERT INTO t1 VALUES(1);
288 INSERT INTO t1 VALUES(2);
289 INSERT INTO t1 VALUES(3);
290 INSERT INTO t1 VALUES(4);
292 db eval {SELECT rowid, x FROM t1 ORDER BY rowid DESC} {
294 db eval {DELETE FROM t1 WHERE rowid=$rowid}
297 execsql {SELECT * FROM t1}
302 INSERT INTO t1 VALUES(1);
303 INSERT INTO t1 VALUES(2);
304 INSERT INTO t1 VALUES(3);
305 INSERT INTO t1 VALUES(4);
307 db eval {SELECT rowid, x FROM t1} {
309 db eval {DELETE FROM t1 WHERE rowid=$rowid+1}
312 execsql {SELECT * FROM t1}
317 INSERT INTO t1 VALUES(1);
318 INSERT INTO t1 VALUES(2);
319 INSERT INTO t1 VALUES(3);
320 INSERT INTO t1 VALUES(4);
322 db eval {SELECT rowid, x FROM t1 ORDER BY rowid DESC} {
324 db eval {DELETE FROM t1}
327 execsql {SELECT * FROM t1}
332 INSERT INTO t1 VALUES(1);
333 INSERT INTO t1 VALUES(2);
334 INSERT INTO t1 VALUES(3);
335 INSERT INTO t1 VALUES(4);
337 db eval {SELECT rowid, x FROM t1 ORDER BY rowid DESC} {
339 db eval {UPDATE t1 SET x=x+100 WHERE rowid=$rowid}
342 execsql {SELECT * FROM t1}
347 INSERT INTO t1(rowid,x) VALUES(10,10);
349 db eval {SELECT rowid, x FROM t1 ORDER BY rowid DESC} {
351 db eval {INSERT INTO t1(rowid,x) VALUES($x-1,$x-1)}
354 execsql {SELECT * FROM t1}
355 } {1 2 3 4 5 6 7 8 9 10}
359 file delete -force test.db
362 # Ticket #453. If the SQL ended with "-", the tokenizer was calling that
363 # an incomplete token, which caused problem. The solution was to just call
368 } {1 {near "-": syntax error}}
370 # Ticket #513. Make sure the VDBE stack does not grow on a 3-way join.
376 CREATE TABLE counts(n INTEGER PRIMARY KEY);
377 INSERT INTO counts VALUES(0);
378 INSERT INTO counts VALUES(1);
379 INSERT INTO counts SELECT n+2 FROM counts;
380 INSERT INTO counts SELECT n+4 FROM counts;
381 INSERT INTO counts SELECT n+8 FROM counts;
384 CREATE TEMP TABLE x AS
385 SELECT dim1.n, dim2.n, dim3.n
386 FROM counts AS dim1, counts AS dim2, counts AS dim3
387 WHERE dim1.n<10 AND dim2.n<10 AND dim3.n<10;
389 SELECT count(*) FROM x;
395 CREATE TEMP TABLE x AS
396 SELECT dim1.n, dim2.n, dim3.n
397 FROM counts AS dim1, counts AS dim2, counts AS dim3
398 WHERE dim1.n>=6 AND dim2.n>=6 AND dim3.n>=6;
400 SELECT count(*) FROM x;
406 CREATE TEMP TABLE x AS
407 SELECT dim1.n, dim2.n, dim3.n, dim4.n
408 FROM counts AS dim1, counts AS dim2, counts AS dim3, counts AS dim4
409 WHERE dim1.n<5 AND dim2.n<5 AND dim3.n<5 AND dim4.n<5;
411 SELECT count(*) FROM x;
416 # Ticket #1229. Sometimes when a "NEW.X" appears in a SELECT without
417 # a FROM clause deep within a trigger, the code generator is unable to
418 # trace the NEW.X back to an original table and thus figure out its
421 # The SQL code below was causing a segfault.
423 ifcapable subquery&&trigger {
426 CREATE TABLE t1229(x);
427 CREATE TRIGGER r1229 BEFORE INSERT ON t1229 BEGIN
428 INSERT INTO t1229 SELECT y FROM (SELECT new.x y);
430 INSERT INTO t1229 VALUES(1);