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. The
12 # focus of this script is testing the AUTOINCREMENT features.
14 # $Id: autoinc.test,v 1.13 2008/08/11 18:44:58 drh Exp $
17 set testdir [file dirname $argv0]
18 source $testdir/tester.tcl
20 # If the library is not compiled with autoincrement support then
21 # skip all tests in this file.
23 ifcapable {!autoinc} {
28 # The database is initially empty.
32 SELECT name FROM sqlite_master WHERE type='table';
36 # Add a table with the AUTOINCREMENT feature. Verify that the
37 # SQLITE_SEQUENCE table gets created.
41 CREATE TABLE t1(x INTEGER PRIMARY KEY AUTOINCREMENT, y);
42 SELECT name FROM sqlite_master WHERE type='table';
44 } {t1 sqlite_sequence}
46 # The SQLITE_SEQUENCE table is initially empty
50 SELECT * FROM sqlite_sequence;
53 do_test autoinc-1.3.1 {
55 CREATE INDEX seqidx ON sqlite_sequence(name)
57 } {1 {table sqlite_sequence may not be indexed}}
59 # Close and reopen the database. Verify that everything is still there.
65 SELECT * FROM sqlite_sequence;
69 # We are not allowed to drop the sqlite_sequence table.
72 catchsql {DROP TABLE sqlite_sequence}
73 } {1 {table sqlite_sequence may not be dropped}}
75 execsql {SELECT name FROM sqlite_master WHERE type='table'}
76 } {t1 sqlite_sequence}
78 # Insert an entries into the t1 table and make sure the largest key
79 # is always recorded in the sqlite_sequence table.
83 SELECT * FROM sqlite_sequence
88 INSERT INTO t1 VALUES(12,34);
89 SELECT * FROM sqlite_sequence;
94 INSERT INTO t1 VALUES(1,23);
95 SELECT * FROM sqlite_sequence;
100 INSERT INTO t1 VALUES(123,456);
101 SELECT * FROM sqlite_sequence;
104 do_test autoinc-2.5 {
106 INSERT INTO t1 VALUES(NULL,567);
107 SELECT * FROM sqlite_sequence;
110 do_test autoinc-2.6 {
112 DELETE FROM t1 WHERE y=567;
113 SELECT * FROM sqlite_sequence;
116 do_test autoinc-2.7 {
118 INSERT INTO t1 VALUES(NULL,567);
119 SELECT * FROM sqlite_sequence;
122 do_test autoinc-2.8 {
125 SELECT * FROM sqlite_sequence;
128 do_test autoinc-2.9 {
130 INSERT INTO t1 VALUES(12,34);
131 SELECT * FROM sqlite_sequence;
134 do_test autoinc-2.10 {
136 INSERT INTO t1 VALUES(125,456);
137 SELECT * FROM sqlite_sequence;
140 do_test autoinc-2.11 {
142 INSERT INTO t1 VALUES(-1234567,-1);
143 SELECT * FROM sqlite_sequence;
146 do_test autoinc-2.12 {
148 INSERT INTO t1 VALUES(234,5678);
149 SELECT * FROM sqlite_sequence;
152 do_test autoinc-2.13 {
155 INSERT INTO t1 VALUES(NULL,1);
156 SELECT * FROM sqlite_sequence;
159 do_test autoinc-2.14 {
165 # Manually change the autoincrement values in sqlite_sequence.
167 do_test autoinc-2.20 {
169 UPDATE sqlite_sequence SET seq=1234 WHERE name='t1';
170 INSERT INTO t1 VALUES(NULL,2);
174 do_test autoinc-2.21 {
176 SELECT * FROM sqlite_sequence;
179 do_test autoinc-2.22 {
181 UPDATE sqlite_sequence SET seq=NULL WHERE name='t1';
182 INSERT INTO t1 VALUES(NULL,3);
185 } {235 1 1235 2 1236 3}
186 do_test autoinc-2.23 {
188 SELECT * FROM sqlite_sequence;
191 do_test autoinc-2.24 {
193 UPDATE sqlite_sequence SET seq='a-string' WHERE name='t1';
194 INSERT INTO t1 VALUES(NULL,4);
197 } {235 1 1235 2 1236 3 1237 4}
198 do_test autoinc-2.25 {
200 SELECT * FROM sqlite_sequence;
203 do_test autoinc-2.26 {
205 DELETE FROM sqlite_sequence WHERE name='t1';
206 INSERT INTO t1 VALUES(NULL,5);
209 } {235 1 1235 2 1236 3 1237 4 1238 5}
210 do_test autoinc-2.27 {
212 SELECT * FROM sqlite_sequence;
215 do_test autoinc-2.28 {
217 UPDATE sqlite_sequence SET seq='12345678901234567890'
219 INSERT INTO t1 VALUES(NULL,6);
222 } {235 1 1235 2 1236 3 1237 4 1238 5 1239 6}
223 do_test autoinc-2.29 {
225 SELECT * FROM sqlite_sequence;
229 # Test multi-row inserts
231 do_test autoinc-2.50 {
233 DELETE FROM t1 WHERE y>=3;
234 INSERT INTO t1 SELECT NULL, y+2 FROM t1;
237 } {235 1 1235 2 1240 3 1241 4}
238 do_test autoinc-2.51 {
240 SELECT * FROM sqlite_sequence
245 do_test autoinc-2.52 {
247 CREATE TEMP TABLE t2 AS SELECT y FROM t1;
250 INSERT INTO t1 SELECT NULL, y+4 FROM t2;
253 } {235 1 1235 2 1240 3 1241 4 1242 5 1243 6 1244 7 1245 8}
254 do_test autoinc-2.53 {
256 SELECT * FROM sqlite_sequence
259 do_test autoinc-2.54 {
262 INSERT INTO t1 SELECT NULL, y FROM t2;
265 } {1246 1 1247 2 1248 3 1249 4}
266 do_test autoinc-2.55 {
268 SELECT * FROM sqlite_sequence
273 # Create multiple AUTOINCREMENT tables. Make sure all sequences are
274 # tracked separately and do not interfere with one another.
276 do_test autoinc-2.70 {
281 CREATE TABLE t2(d, e INTEGER PRIMARY KEY AUTOINCREMENT, f);
282 INSERT INTO t2(d) VALUES(1);
283 SELECT * FROM sqlite_sequence;
285 } [ifcapable tempdb {list t1 1249 t2 1} else {list t1 1241 t2 1}]
286 do_test autoinc-2.71 {
288 INSERT INTO t2(d) VALUES(2);
289 SELECT * FROM sqlite_sequence;
291 } [ifcapable tempdb {list t1 1249 t2 2} else {list t1 1241 t2 2}]
292 do_test autoinc-2.72 {
294 INSERT INTO t1(x) VALUES(10000);
295 SELECT * FROM sqlite_sequence;
298 do_test autoinc-2.73 {
300 CREATE TABLE t3(g INTEGER PRIMARY KEY AUTOINCREMENT, h);
301 INSERT INTO t3(h) VALUES(1);
302 SELECT * FROM sqlite_sequence;
304 } {t1 10000 t2 2 t3 1}
305 do_test autoinc-2.74 {
307 INSERT INTO t2(d,e) VALUES(3,100);
308 SELECT * FROM sqlite_sequence;
310 } {t1 10000 t2 100 t3 1}
313 # When a table with an AUTOINCREMENT is deleted, the corresponding entry
314 # in the SQLITE_SEQUENCE table should also be deleted. But the SQLITE_SEQUENCE
315 # table itself should remain behind.
317 do_test autoinc-3.1 {
318 execsql {SELECT name FROM sqlite_sequence}
320 do_test autoinc-3.2 {
323 SELECT name FROM sqlite_sequence;
326 do_test autoinc-3.3 {
329 SELECT name FROM sqlite_sequence;
332 do_test autoinc-3.4 {
335 SELECT name FROM sqlite_sequence;
339 # AUTOINCREMENT on TEMP tables.
342 do_test autoinc-4.1 {
344 SELECT 1, name FROM sqlite_master WHERE type='table';
345 SELECT 2, name FROM sqlite_temp_master WHERE type='table';
347 } {1 sqlite_sequence}
348 do_test autoinc-4.2 {
350 CREATE TABLE t1(x INTEGER PRIMARY KEY AUTOINCREMENT, y);
351 CREATE TEMP TABLE t3(a INTEGER PRIMARY KEY AUTOINCREMENT, b);
352 SELECT 1, name FROM sqlite_master WHERE type='table';
353 SELECT 2, name FROM sqlite_temp_master WHERE type='table';
355 } {1 sqlite_sequence 1 t1 2 t3 2 sqlite_sequence}
356 do_test autoinc-4.3 {
358 SELECT 1, * FROM main.sqlite_sequence;
359 SELECT 2, * FROM temp.sqlite_sequence;
362 do_test autoinc-4.4 {
364 INSERT INTO t1 VALUES(10,1);
365 INSERT INTO t3 VALUES(20,2);
366 INSERT INTO t1 VALUES(NULL,3);
367 INSERT INTO t3 VALUES(NULL,4);
372 do_test autoinc-4.4.1 {
374 SELECT * FROM t1 UNION ALL SELECT * FROM t3;
376 } {10 1 11 3 20 2 21 4}
377 } ;# ifcapable compound
379 do_test autoinc-4.5 {
381 SELECT 1, * FROM main.sqlite_sequence;
382 SELECT 2, * FROM temp.sqlite_sequence;
385 do_test autoinc-4.6 {
387 INSERT INTO t1 SELECT * FROM t3;
388 SELECT 1, * FROM main.sqlite_sequence;
389 SELECT 2, * FROM temp.sqlite_sequence;
392 do_test autoinc-4.7 {
394 INSERT INTO t3 SELECT x+100, y FROM t1;
395 SELECT 1, * FROM main.sqlite_sequence;
396 SELECT 2, * FROM temp.sqlite_sequence;
399 do_test autoinc-4.8 {
402 SELECT 1, * FROM main.sqlite_sequence;
403 SELECT 2, * FROM temp.sqlite_sequence;
406 do_test autoinc-4.9 {
408 CREATE TEMP TABLE t2(p INTEGER PRIMARY KEY AUTOINCREMENT, q);
409 INSERT INTO t2 SELECT * FROM t1;
411 SELECT 1, * FROM main.sqlite_sequence;
412 SELECT 2, * FROM temp.sqlite_sequence;
415 do_test autoinc-4.10 {
418 SELECT 1, * FROM main.sqlite_sequence;
419 SELECT 2, * FROM temp.sqlite_sequence;
424 # Make sure AUTOINCREMENT works on ATTACH-ed tables.
426 ifcapable tempdb&&attach {
427 do_test autoinc-5.1 {
428 file delete -force test2.db
429 file delete -force test2.db-journal
432 CREATE TABLE t4(m INTEGER PRIMARY KEY AUTOINCREMENT, n);
433 CREATE TABLE t5(o, p INTEGER PRIMARY KEY AUTOINCREMENT);
436 ATTACH 'test2.db' as aux;
437 SELECT 1, * FROM main.sqlite_sequence;
438 SELECT 2, * FROM temp.sqlite_sequence;
439 SELECT 3, * FROM aux.sqlite_sequence;
442 do_test autoinc-5.2 {
444 INSERT INTO t4 VALUES(NULL,1);
445 SELECT 1, * FROM main.sqlite_sequence;
446 SELECT 2, * FROM temp.sqlite_sequence;
447 SELECT 3, * FROM aux.sqlite_sequence;
450 do_test autoinc-5.3 {
452 INSERT INTO t5 VALUES(100,200);
453 SELECT * FROM sqlite_sequence
456 do_test autoinc-5.4 {
458 SELECT 1, * FROM main.sqlite_sequence;
459 SELECT 2, * FROM temp.sqlite_sequence;
460 SELECT 3, * FROM aux.sqlite_sequence;
465 # Requirement REQ00310: Make sure an insert fails if the sequence is
466 # already at its maximum value.
468 ifcapable {rowid32} {
469 do_test autoinc-6.1 {
471 CREATE TABLE t6(v INTEGER PRIMARY KEY AUTOINCREMENT, w);
472 INSERT INTO t6 VALUES(2147483647,1);
473 SELECT seq FROM main.sqlite_sequence WHERE name='t6';
477 ifcapable {!rowid32} {
478 do_test autoinc-6.1 {
480 CREATE TABLE t6(v INTEGER PRIMARY KEY AUTOINCREMENT, w);
481 INSERT INTO t6 VALUES(9223372036854775807,1);
482 SELECT seq FROM main.sqlite_sequence WHERE name='t6';
484 } 9223372036854775807
486 do_test autoinc-6.2 {
488 INSERT INTO t6 VALUES(NULL,1);
490 } {1 {database or disk is full}}
492 # Allow the AUTOINCREMENT keyword inside the parentheses
493 # on a separate PRIMARY KEY designation.
495 do_test autoinc-7.1 {
497 CREATE TABLE t7(x INTEGER, y REAL, PRIMARY KEY(x AUTOINCREMENT));
498 INSERT INTO t7(y) VALUES(123);
499 INSERT INTO t7(y) VALUES(234);
501 INSERT INTO t7(y) VALUES(345);
506 # Test that if the AUTOINCREMENT is applied to a non integer primary key
507 # the error message is sensible.
508 do_test autoinc-7.2 {
510 CREATE TABLE t8(x TEXT PRIMARY KEY AUTOINCREMENT);
512 } {1 {AUTOINCREMENT is only allowed on an INTEGER PRIMARY KEY}}
515 # Ticket #1283. Make sure that preparing but never running a statement
516 # that creates the sqlite_sequence table does not mess up the database.
518 do_test autoinc-8.1 {
521 file delete -force test.db
523 set DB [sqlite3_connection_pointer db]
524 set STMT [sqlite3_prepare $DB {
526 x INTEGER PRIMARY KEY AUTOINCREMENT
529 sqlite3_finalize $STMT
530 set STMT [sqlite3_prepare $DB {
532 x INTEGER PRIMARY KEY AUTOINCREMENT
536 sqlite3_finalize $STMT
538 INSERT INTO t1 VALUES(NULL);
544 # Make sure the sqlite_sequence table is not damaged when doing
545 # an empty insert - an INSERT INTO ... SELECT ... where the SELECT
546 # clause returns an empty set.
548 do_test autoinc-9.1 {
550 CREATE TABLE t2(x INTEGER PRIMARY KEY AUTOINCREMENT, y);
551 INSERT INTO t2 VALUES(NULL, 1);
552 CREATE TABLE t3(a INTEGER PRIMARY KEY AUTOINCREMENT, b);
553 INSERT INTO t3 SELECT * FROM t2 WHERE y>1;
555 SELECT * FROM sqlite_sequence WHERE name='t3';