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 that SQLite can handle a subtle
13 # file format change that may be used in the future to implement
14 # "ALTER TABLE ... ADD COLUMN".
16 # $Id: alter3.test,v 1.11 2008/03/19 00:21:31 drh Exp $
19 set testdir [file dirname $argv0]
21 source $testdir/tester.tcl
23 # If SQLITE_OMIT_ALTERTABLE is defined, omit this file.
24 ifcapable !altertable {
29 # Determine if there is a codec available on this test.
31 if {[catch {sqlite3 -has_codec} r] || $r} {
41 # alter3-1.*: Test that ALTER TABLE correctly modifies the CREATE TABLE sql.
42 # alter3-2.*: Test error messages.
43 # alter3-3.*: Test adding columns with default value NULL.
44 # alter3-4.*: Test adding columns with default values other than NULL.
45 # alter3-5.*: Test adding columns to tables in ATTACHed databases.
46 # alter3-6.*: Test that temp triggers are not accidentally dropped.
47 # alter3-7.*: Test that VACUUM resets the file-format.
50 # This procedure returns the value of the file-format in file 'test.db'.
52 proc get_file_format {{fname test.db}} {
53 return [hexio_get_int [hexio_read $fname 44 4]]
58 CREATE TABLE abc(a, b, c);
59 SELECT sql FROM sqlite_master;
61 } {{CREATE TABLE abc(a, b, c)}}
63 execsql {ALTER TABLE abc ADD d INTEGER;}
65 SELECT sql FROM sqlite_master;
67 } {{CREATE TABLE abc(a, b, c, d INTEGER)}}
69 execsql {ALTER TABLE abc ADD e}
71 SELECT sql FROM sqlite_master;
73 } {{CREATE TABLE abc(a, b, c, d INTEGER, e)}}
76 CREATE TABLE main.t1(a, b);
78 SELECT sql FROM sqlite_master WHERE tbl_name = 't1';
80 } {{CREATE TABLE t1(a, b, c)}}
83 ALTER TABLE t1 ADD d CHECK (a>d);
84 SELECT sql FROM sqlite_master WHERE tbl_name = 't1';
86 } {{CREATE TABLE t1(a, b, c, d CHECK (a>d))}}
87 ifcapable foreignkey {
90 CREATE TABLE t2(a, b, UNIQUE(a, b));
91 ALTER TABLE t2 ADD c REFERENCES t1(c) ;
92 SELECT sql FROM sqlite_master WHERE tbl_name = 't2' AND type = 'table';
94 } {{CREATE TABLE t2(a, b, c REFERENCES t1(c), UNIQUE(a, b))}}
98 CREATE TABLE t3(a, b, UNIQUE(a, b));
99 ALTER TABLE t3 ADD COLUMN c VARCHAR(10, 20);
100 SELECT sql FROM sqlite_master WHERE tbl_name = 't3' AND type = 'table';
102 } {{CREATE TABLE t3(a, b, c VARCHAR(10, 20), UNIQUE(a, b))}}
103 do_test alter3-1.99 {
105 # May not exist if foriegn-keys are omitted at compile time.
117 CREATE TABLE t1(a, b);
120 ALTER TABLE t1 ADD c PRIMARY KEY;
122 } {1 {Cannot add a PRIMARY KEY column}}
125 ALTER TABLE t1 ADD c UNIQUE
127 } {1 {Cannot add a UNIQUE column}}
130 ALTER TABLE t1 ADD b VARCHAR(10)
132 } {1 {duplicate column name: b}}
135 ALTER TABLE t1 ADD c NOT NULL;
137 } {1 {Cannot add a NOT NULL column with default value NULL}}
140 ALTER TABLE t1 ADD c NOT NULL DEFAULT 10;
146 CREATE VIEW v1 AS SELECT * FROM t1;
149 alter table v1 add column d;
151 } {1 {Cannot add a column to a view}}
155 alter table t1 add column d DEFAULT CURRENT_TIME;
157 } {1 {Cannot add a column with non-constant default}}
158 do_test alter3-2.99 {
166 CREATE TABLE t1(a, b);
167 INSERT INTO t1 VALUES(1, 100);
168 INSERT INTO t1 VALUES(2, 300);
174 PRAGMA schema_version = 10;
179 ALTER TABLE t1 ADD c;
182 } {1 100 {} 2 300 {}}
188 ifcapable schema_version {
191 PRAGMA schema_version;
198 file delete -force test.db
199 set ::DB [sqlite3 db test.db]
201 CREATE TABLE t1(a, b);
202 INSERT INTO t1 VALUES(1, 100);
203 INSERT INTO t1 VALUES(2, 300);
209 PRAGMA schema_version = 20;
214 ALTER TABLE t1 ADD c DEFAULT 'hello world';
217 } {1 100 {hello world} 2 300 {hello world}}
223 ifcapable schema_version {
226 PRAGMA schema_version;
230 do_test alter3-4.99 {
238 file delete -force test2.db
239 file delete -force test2.db-journal
241 CREATE TABLE t1(a, b);
242 INSERT INTO t1 VALUES(1, 'one');
243 INSERT INTO t1 VALUES(2, 'two');
244 ATTACH 'test2.db' AS aux;
245 CREATE TABLE aux.t1 AS SELECT * FROM t1;
246 PRAGMA aux.schema_version = 30;
247 SELECT sql FROM aux.sqlite_master;
249 } {{CREATE TABLE t1(a,b)}}
252 ALTER TABLE aux.t1 ADD COLUMN c VARCHAR(128);
253 SELECT sql FROM aux.sqlite_master;
255 } {{CREATE TABLE t1(a,b, c VARCHAR(128))}}
258 SELECT * FROM aux.t1;
260 } {1 one {} 2 two {}}
261 ifcapable schema_version {
264 PRAGMA aux.schema_version;
270 list [get_file_format test2.db] [get_file_format]
275 ALTER TABLE aux.t1 ADD COLUMN d DEFAULT 1000;
276 SELECT sql FROM aux.sqlite_master;
278 } {{CREATE TABLE t1(a,b, c VARCHAR(128), d DEFAULT 1000)}}
281 SELECT * FROM aux.t1;
283 } {1 one {} 1000 2 two {} 1000}
284 ifcapable schema_version {
287 PRAGMA aux.schema_version;
296 do_test alter3-5.99 {
304 #----------------------------------------------------------------
305 # Test that the table schema is correctly reloaded when a column
306 # is added to a table.
308 ifcapable trigger&&tempdb {
311 CREATE TABLE t1(a, b);
312 CREATE TABLE log(trig, a, b);
314 CREATE TRIGGER t1_a AFTER INSERT ON t1 BEGIN
315 INSERT INTO log VALUES('a', new.a, new.b);
317 CREATE TEMP TRIGGER t1_b AFTER INSERT ON t1 BEGIN
318 INSERT INTO log VALUES('b', new.a, new.b);
321 INSERT INTO t1 VALUES(1, 2);
327 ALTER TABLE t1 ADD COLUMN c DEFAULT 'c';
328 INSERT INTO t1(a, b) VALUES(3, 4);
331 } {b 1 2 a 1 2 b 3 4 a 3 4}
344 CREATE TABLE abc(a, b, c);
345 ALTER TABLE abc ADD d DEFAULT NULL;
351 ALTER TABLE abc ADD e DEFAULT 10;
357 ALTER TABLE abc ADD f DEFAULT NULL;
370 # Ticket #1183 - Make sure adding columns to large tables does not cause
371 # memory corruption (as was the case before this bug was fixed).
380 for {set i 2} {$i < 100} {incr i} {
382 ALTER TABLE t4 ADD c$i
386 set ::sql "CREATE TABLE t4([join $cols {, }])"
391 SELECT sql FROM sqlite_master WHERE name = 't4';