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 ALTER TABLE statement.
14 # $Id: alter.test,v 1.30 2008/05/09 14:17:52 drh Exp $
17 set testdir [file dirname $argv0]
18 source $testdir/tester.tcl
20 # If SQLITE_OMIT_ALTERTABLE is defined, omit this file.
21 ifcapable !altertable {
26 #----------------------------------------------------------------------
29 # alter-1.1.* - alter-1.7.*: Basic tests of ALTER TABLE, including tables
30 # with implicit and explicit indices. These tests came from an earlier
31 # fork of SQLite that also supported ALTER TABLE.
32 # alter-1.8.*: Tests for ALTER TABLE when the table resides in an
34 # alter-1.9.*: Tests for ALTER TABLE when their is whitespace between the
35 # table name and left parenthesis token. i.e:
36 # "CREATE TABLE abc (a, b, c);"
37 # alter-2.*: Test error conditions and messages.
38 # alter-3.*: Test ALTER TABLE on tables that have TRIGGERs attached to them.
39 # alter-4.*: Test ALTER TABLE on tables that have AUTOINCREMENT fields.
41 # alter-12.*: Test ALTER TABLE on views.
44 # Create some tables to rename. Be sure to include some TEMP tables
45 # and some tables with odd names.
53 execsql [subst -nocommands {
55 INSERT INTO t1 VALUES(1,2);
56 CREATE TABLE [t1'x1](c UNIQUE, b PRIMARY KEY);
57 INSERT INTO [t1'x1] VALUES(3,4);
58 CREATE INDEX t1i1 ON T1(B);
59 CREATE INDEX t1i2 ON t1(a,b);
60 CREATE INDEX i3 ON [t1'x1](b,c);
61 CREATE $::temp TABLE "temp table"(e,f,g UNIQUE);
62 CREATE INDEX i2 ON [temp table](f);
63 INSERT INTO [temp table] VALUES(5,6,7);
66 SELECT 't1', * FROM t1;
67 SELECT 't1''x1', * FROM "t1'x1";
68 SELECT * FROM [temp table];
70 } {t1 1 2 t1'x1 3 4 5 6 7}
73 CREATE $::temp TABLE objlist(type, name, tbl_name);
74 INSERT INTO objlist SELECT type, name, tbl_name
75 FROM sqlite_master WHERE NAME!='objlist';
79 INSERT INTO objlist SELECT type, name, tbl_name
80 FROM sqlite_temp_master WHERE NAME!='objlist';
85 SELECT type, name, tbl_name FROM objlist ORDER BY tbl_name, type desc, name;
93 index {sqlite_autoindex_t1'x1_1} t1'x1 \
94 index {sqlite_autoindex_t1'x1_2} t1'x1 \
95 table {temp table} {temp table} \
96 index i2 {temp table} \
97 index {sqlite_autoindex_temp table_1} {temp table} \
102 integrity_check alter-1.3.0
105 ALTER TABLE [T1] RENAME to [-t1-];
106 ALTER TABLE "t1'x1" RENAME TO T2;
107 ALTER TABLE [temp table] RENAME to TempTab;
110 integrity_check alter-1.3.1
113 SELECT 't1', * FROM [-t1-];
114 SELECT 't2', * FROM t2;
115 SELECT * FROM temptab;
117 } {t1 1 2 t2 3 4 5 6 7}
121 INSERT INTO objlist SELECT type, name, tbl_name
122 FROM sqlite_master WHERE NAME!='objlist';
125 INSERT INTO objlist SELECT type, name, tbl_name
126 FROM sqlite_temp_master WHERE NAME!='objlist';
129 SELECT type, name, tbl_name FROM objlist ORDER BY tbl_name, type desc, name;
137 index {sqlite_autoindex_T2_1} T2 \
138 index {sqlite_autoindex_T2_2} T2 \
139 table {TempTab} {TempTab} \
141 index {sqlite_autoindex_TempTab_1} {TempTab} \
144 # Make sure the changes persist after restarting the database.
145 # (The TEMP table will not persist, of course.)
151 set DB [sqlite3_connection_pointer db]
153 CREATE TEMP TABLE objlist(type, name, tbl_name);
154 INSERT INTO objlist SELECT type, name, tbl_name FROM sqlite_master;
156 SELECT type, name, tbl_name FROM sqlite_temp_master
157 WHERE NAME!='objlist';
158 SELECT type, name, tbl_name FROM objlist
159 ORDER BY tbl_name, type desc, name;
167 index {sqlite_autoindex_T2_1} T2 \
168 index {sqlite_autoindex_T2_2} T2 \
176 # Make sure the ALTER TABLE statements work with the
181 ALTER TABLE [-t1-] RENAME to [*t1*];
182 ALTER TABLE T2 RENAME TO [<t2>];
186 INSERT INTO objlist SELECT type, name, tbl_name
187 FROM sqlite_master WHERE NAME!='objlist';
190 INSERT INTO objlist SELECT type, name, tbl_name
191 FROM sqlite_temp_master WHERE NAME!='objlist';
194 SELECT type, name, tbl_name FROM objlist ORDER BY tbl_name, type desc, name;
202 index {sqlite_autoindex_<t2>_1} <t2> \
203 index {sqlite_autoindex_<t2>_2} <t2> \
206 # Check that ALTER TABLE works on attached databases.
209 do_test alter-1.8.1 {
210 file delete -force test2.db
211 file delete -force test2.db-journal
213 ATTACH 'test2.db' AS aux;
216 do_test alter-1.8.2 {
218 CREATE TABLE t4(a PRIMARY KEY, b, c);
219 CREATE TABLE aux.t4(a PRIMARY KEY, b, c);
220 CREATE INDEX i4 ON t4(b);
221 CREATE INDEX aux.i4 ON t4(b);
224 do_test alter-1.8.3 {
226 INSERT INTO t4 VALUES('main', 'main', 'main');
227 INSERT INTO aux.t4 VALUES('aux', 'aux', 'aux');
228 SELECT * FROM t4 WHERE a = 'main';
231 do_test alter-1.8.4 {
233 ALTER TABLE t4 RENAME TO t5;
234 SELECT * FROM t4 WHERE a = 'aux';
237 do_test alter-1.8.5 {
242 do_test alter-1.8.6 {
244 SELECT * FROM t5 WHERE b = 'main';
247 do_test alter-1.8.7 {
249 ALTER TABLE aux.t4 RENAME TO t5;
250 SELECT * FROM aux.t5 WHERE b = 'aux';
255 do_test alter-1.9.1 {
257 CREATE TABLE tbl1 (a, b, c);
258 INSERT INTO tbl1 VALUES(1, 2, 3);
261 do_test alter-1.9.2 {
266 do_test alter-1.9.3 {
268 ALTER TABLE tbl1 RENAME TO tbl2;
272 do_test alter-1.9.4 {
278 # Test error messages
282 ALTER TABLE none RENAME TO hi;
284 } {1 {no such table: none}}
287 CREATE TABLE t3(p,q,r);
290 ALTER TABLE [<t2>] RENAME TO t3;
292 } {1 {there is already another table or index with this name: t3}}
295 ALTER TABLE [<t2>] RENAME TO i3;
297 } {1 {there is already another table or index with this name: i3}}
300 ALTER TABLE SqLiTe_master RENAME TO master;
302 } {1 {table sqlite_master may not be altered}}
305 ALTER TABLE t3 RENAME TO sqlite_t3;
307 } {1 {object name reserved for internal use: sqlite_t3}}
310 ALTER TABLE t3 ADD COLUMN (ALTER TABLE t3 ADD COLUMN);
312 } {1 {near "(": syntax error}}
314 # If this compilation does not include triggers, omit the alter-3.* tests.
317 #-----------------------------------------------------------------------
318 # Tests alter-3.* test ALTER TABLE on tables that have triggers.
320 # alter-3.1.*: ALTER TABLE with triggers.
321 # alter-3.2.*: Test that the ON keyword cannot be used as a database,
322 # table or column name unquoted. This is done because part of the
323 # ALTER TABLE code (specifically the implementation of SQL function
324 # "sqlite_alter_trigger") will break in this case.
325 # alter-3.3.*: ALTER TABLE with TEMP triggers (todo).
328 # An SQL user-function for triggers to fire, so that we know they
330 proc trigfunc {args} {
333 db func trigfunc trigfunc
335 do_test alter-3.1.0 {
337 CREATE TABLE t6(a, b, c);
338 CREATE TRIGGER trig1 AFTER INSERT ON t6 BEGIN
339 SELECT trigfunc('trig1', new.a, new.b, new.c);
343 do_test alter-3.1.1 {
345 INSERT INTO t6 VALUES(1, 2, 3);
349 do_test alter-3.1.2 {
351 ALTER TABLE t6 RENAME TO t7;
352 INSERT INTO t7 VALUES(4, 5, 6);
356 do_test alter-3.1.3 {
361 do_test alter-3.1.4 {
363 CREATE TRIGGER trig2 AFTER INSERT ON main.t7 BEGIN
364 SELECT trigfunc('trig2', new.a, new.b, new.c);
366 INSERT INTO t7 VALUES(1, 2, 3);
370 do_test alter-3.1.5 {
372 ALTER TABLE t7 RENAME TO t8;
373 INSERT INTO t8 VALUES(4, 5, 6);
377 do_test alter-3.1.6 {
382 do_test alter-3.1.7 {
384 CREATE TRIGGER trig3 AFTER INSERT ON main.'t8'BEGIN
385 SELECT trigfunc('trig3', new.a, new.b, new.c);
387 INSERT INTO t8 VALUES(1, 2, 3);
391 do_test alter-3.1.8 {
393 ALTER TABLE t8 RENAME TO t9;
394 INSERT INTO t9 VALUES(4, 5, 6);
399 # Make sure "ON" cannot be used as a database, table or column name without
400 # quoting. Otherwise the sqlite_alter_trigger() function might not work.
401 file delete -force test3.db
402 file delete -force test3.db-journal
404 do_test alter-3.2.1 {
406 ATTACH 'test3.db' AS ON;
408 } {1 {near "ON": syntax error}}
409 do_test alter-3.2.2 {
411 ATTACH 'test3.db' AS 'ON';
414 do_test alter-3.2.3 {
416 CREATE TABLE ON.t1(a, b, c);
418 } {1 {near "ON": syntax error}}
419 do_test alter-3.2.4 {
421 CREATE TABLE 'ON'.t1(a, b, c);
424 do_test alter-3.2.4 {
426 CREATE TABLE 'ON'.ON(a, b, c);
428 } {1 {near "ON": syntax error}}
429 do_test alter-3.2.5 {
431 CREATE TABLE 'ON'.'ON'(a, b, c);
435 do_test alter-3.2.6 {
437 CREATE TABLE t10(a, ON, c);
439 } {1 {near "ON": syntax error}}
440 do_test alter-3.2.7 {
442 CREATE TABLE t10(a, 'ON', c);
445 do_test alter-3.2.8 {
447 CREATE TRIGGER trig4 AFTER INSERT ON ON BEGIN SELECT 1; END;
449 } {1 {near "ON": syntax error}}
451 do_test alter-3.2.9 {
453 CREATE TRIGGER 'on'.trig4 AFTER INSERT ON 'ON' BEGIN SELECT 1; END;
457 do_test alter-3.2.10 {
463 do_test alter-3.3.1 {
465 CREATE TABLE tbl1(a, b, c);
466 CREATE $::temp TRIGGER trig1 AFTER INSERT ON tbl1 BEGIN
467 SELECT trigfunc('trig1', new.a, new.b, new.c);
471 do_test alter-3.3.2 {
473 INSERT INTO tbl1 VALUES('a', 'b', 'c');
477 do_test alter-3.3.3 {
479 ALTER TABLE tbl1 RENAME TO tbl2;
480 INSERT INTO tbl2 VALUES('d', 'e', 'f');
484 do_test alter-3.3.4 {
486 CREATE $::temp TRIGGER trig2 AFTER UPDATE ON tbl2 BEGIN
487 SELECT trigfunc('trig2', new.a, new.b, new.c);
491 do_test alter-3.3.5 {
493 ALTER TABLE tbl2 RENAME TO tbl3;
494 INSERT INTO tbl3 VALUES('g', 'h', 'i');
498 do_test alter-3.3.6 {
500 UPDATE tbl3 SET a = 'G' where a = 'g';
504 do_test alter-3.3.7 {
510 do_test alter-3.3.8 {
512 SELECT * FROM sqlite_temp_master WHERE type = 'trigger';
517 } ;# ifcapable trigger
519 # If the build does not include AUTOINCREMENT fields, omit alter-4.*.
524 CREATE TABLE tbl1(a INTEGER PRIMARY KEY AUTOINCREMENT);
525 INSERT INTO tbl1 VALUES(10);
530 INSERT INTO tbl1 VALUES(NULL);
536 ALTER TABLE tbl1 RENAME TO tbl2;
538 INSERT INTO tbl2 VALUES(NULL);
548 } ;# ifcapable autoinc
550 # Test that it is Ok to execute an ALTER TABLE immediately after
551 # opening a database.
554 CREATE TABLE tbl1(a, b, c);
555 INSERT INTO tbl1 VALUES('x', 'y', 'z');
561 ALTER TABLE tbl1 RENAME TO tbl2;
569 foreach tblname [execsql {
570 SELECT name FROM sqlite_master WHERE type='table' AND name NOT LIKE 'sqlite%'
572 execsql "DROP TABLE \"$tblname\""
575 set ::tbl_name "abc\uABCDdef"
577 string length $::tbl_name
581 CREATE TABLE ${tbl_name}(a, b, c);
583 set ::oid [execsql {SELECT max(oid) FROM sqlite_master}]
585 SELECT sql FROM sqlite_master WHERE oid = $::oid;
587 } "{CREATE TABLE ${::tbl_name}(a, b, c)}"
589 SELECT * FROM ${::tbl_name}
591 set ::tbl_name2 "abcXdef"
594 ALTER TABLE $::tbl_name RENAME TO $::tbl_name2
597 SELECT sql FROM sqlite_master WHERE oid = $::oid
599 } "{CREATE TABLE \"${::tbl_name2}\"(a, b, c)}"
602 ALTER TABLE $::tbl_name2 RENAME TO $::tbl_name
605 SELECT sql FROM sqlite_master WHERE oid = $::oid
607 } "{CREATE TABLE \"${::tbl_name}\"(a, b, c)}"
608 set ::col_name ghi\1234\jkl
611 ALTER TABLE $::tbl_name ADD COLUMN $::col_name VARCHAR
614 SELECT sql FROM sqlite_master WHERE oid = $::oid
616 } "{CREATE TABLE \"${::tbl_name}\"(a, b, c, $::col_name VARCHAR)}"
617 set ::col_name2 B\3421\A
622 ALTER TABLE $::tbl_name ADD COLUMN $::col_name2
625 SELECT sql FROM sqlite_master WHERE oid = $::oid
627 } "{CREATE TABLE \"${::tbl_name}\"(a, b, c, $::col_name VARCHAR, $::col_name2)}"
630 INSERT INTO ${::tbl_name} VALUES(1, 2, 3, 4, 5);
631 SELECT $::col_name, $::col_name2 FROM $::tbl_name;
635 # Ticket #1665: Make sure ALTER TABLE ADD COLUMN works on a table
636 # that includes a COLLATE clause.
640 CREATE TABLE t1(a TEXT COLLATE BINARY);
641 ALTER TABLE t1 ADD COLUMN b INTEGER COLLATE NOCASE;
642 INSERT INTO t1 VALUES(1,'-2');
643 INSERT INTO t1 VALUES(5.4e-08,'5.4e-08');
644 SELECT typeof(a), a, typeof(b), b FROM t1;
646 } {text 1 integer -2 text 5.4e-08 real 5.4e-08}
648 # Make sure that when a column is added by ALTER TABLE ADD COLUMN and has
649 # a default value that the default value is used by aggregate functions.
653 CREATE TABLE t2(a INTEGER);
654 INSERT INTO t2 VALUES(1);
655 INSERT INTO t2 VALUES(1);
656 INSERT INTO t2 VALUES(2);
657 ALTER TABLE t2 ADD COLUMN b INTEGER DEFAULT 9;
658 SELECT sum(b) FROM t2;
663 SELECT a, sum(b) FROM t2 GROUP BY a;
667 #--------------------------------------------------------------------------
668 # alter-9.X - Special test: Make sure the sqlite_rename_trigger() and
669 # rename_table() functions do not crash when handed bad input.
673 execsql {SELECT SQLITE_RENAME_TRIGGER(0,0)}
678 SELECT SQLITE_RENAME_TABLE(0,0);
679 SELECT SQLITE_RENAME_TABLE(10,20);
680 SELECT SQLITE_RENAME_TABLE("foo", "foo");
684 #------------------------------------------------------------------------
685 # alter-10.X - Make sure ALTER TABLE works with multi-byte UTF-8 characters
689 execsql "CREATE TABLE xyz(x UNIQUE)"
690 execsql "ALTER TABLE xyz RENAME TO xyz\u1234abc"
691 execsql {SELECT name FROM sqlite_master WHERE name LIKE 'xyz%'}
692 } [list xyz\u1234abc]
694 execsql {SELECT name FROM sqlite_master WHERE name LIKE 'sqlite_autoindex%'}
695 } [list sqlite_autoindex_xyz\u1234abc_1]
697 execsql "ALTER TABLE xyz\u1234abc RENAME TO xyzabc"
698 execsql {SELECT name FROM sqlite_master WHERE name LIKE 'xyz%'}
701 execsql {SELECT name FROM sqlite_master WHERE name LIKE 'sqlite_autoindex%'}
702 } [list sqlite_autoindex_xyzabc_1]
705 sqlite3_exec db {CREATE TABLE t11(%c6%c6)}
707 ALTER TABLE t11 ADD COLUMN abc;
710 ALTER TABLE t11 ADD COLUMN abc;
712 } {1 {duplicate column name: abc}}
713 set isutf16 [regexp 16 [db one {PRAGMA encoding}]]
716 execsql {INSERT INTO t11 VALUES(1,2)}
717 sqlite3_exec db {SELECT %c6%c6 AS xyz, abc FROM t11}
721 sqlite3_exec db {CREATE TABLE t11b("%81%82%83" text)}
723 ALTER TABLE t11b ADD COLUMN abc;
726 ALTER TABLE t11b ADD COLUMN abc;
728 } {1 {duplicate column name: abc}}
731 execsql {INSERT INTO t11b VALUES(3,4)}
732 sqlite3_exec db {SELECT %81%82%83 AS xyz, abc FROM t11b}
735 sqlite3_exec db {SELECT [%81%82%83] AS xyz, abc FROM t11b}
738 sqlite3_exec db {SELECT "%81%82%83" AS xyz, abc FROM t11b}
742 sqlite3_exec db {CREATE TABLE t11c(%81%82%83 text)}
744 ALTER TABLE t11c ADD COLUMN abc;
747 ALTER TABLE t11c ADD COLUMN abc;
749 } {1 {duplicate column name: abc}}
752 execsql {INSERT INTO t11c VALUES(5,6)}
753 sqlite3_exec db {SELECT %81%82%83 AS xyz, abc FROM t11c}
756 sqlite3_exec db {SELECT [%81%82%83] AS xyz, abc FROM t11c}
758 do_test alter-11.10 {
759 sqlite3_exec db {SELECT "%81%82%83" AS xyz, abc FROM t11c}
765 CREATE TABLE t12(a, b, c);
766 CREATE VIEW v1 AS SELECT * FROM t12;
771 ALTER TABLE v1 RENAME TO v2;
773 } {1 {view v1 may not be altered}}
775 execsql { SELECT * FROM v1; }
780 execsql { SELECT * FROM v1; }
784 ALTER TABLE v1 ADD COLUMN new_column;
786 } {1 {Cannot add a column to a view}}
789 # Verify that comments do not interfere with the table rename
794 CREATE TABLE /* hi */ t3102a(x);
795 CREATE TABLE t3102b -- comment
797 CREATE INDEX t3102c ON t3102a(x);
798 SELECT name FROM sqlite_master WHERE name LIKE 't3102%' ORDER BY 1;
800 } {t3102a t3102b t3102c}
803 ALTER TABLE t3102a RENAME TO t3102a_rename;
804 SELECT name FROM sqlite_master WHERE name LIKE 't3102%' ORDER BY 1;
806 } {t3102a_rename t3102b t3102c}
809 ALTER TABLE t3102b RENAME TO t3102b_rename;
810 SELECT name FROM sqlite_master WHERE name LIKE 't3102%' ORDER BY 1;
812 } {t3102a_rename t3102b_rename t3102c}