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 file is testing the VACUUM statement.
14 # $Id: vacuum.test,v 1.41 2008/04/15 02:36:34 drh Exp $
16 set testdir [file dirname $argv0]
17 source $testdir/tester.tcl
19 # If the VACUUM statement is disabled in the current build, skip all
20 # the tests in this file.
23 omit_test vacuum.test {Compiled with SQLITE_OMIT_VACUUM}
28 omit_test vacuum.test {Auto-vacuum is enabled}
37 CREATE TABLE t1(a INTEGER PRIMARY KEY, b, c);
38 INSERT INTO t1 VALUES(NULL,randstr(10,100),randstr(5,50));
39 INSERT INTO t1 VALUES(123456,randstr(10,100),randstr(5,50));
40 INSERT INTO t1 SELECT NULL, b||'-'||rowid, c||'-'||rowid FROM t1;
41 INSERT INTO t1 SELECT NULL, b||'-'||rowid, c||'-'||rowid FROM t1;
42 INSERT INTO t1 SELECT NULL, b||'-'||rowid, c||'-'||rowid FROM t1;
43 INSERT INTO t1 SELECT NULL, b||'-'||rowid, c||'-'||rowid FROM t1;
44 INSERT INTO t1 SELECT NULL, b||'-'||rowid, c||'-'||rowid FROM t1;
45 INSERT INTO t1 SELECT NULL, b||'-'||rowid, c||'-'||rowid FROM t1;
46 INSERT INTO t1 SELECT NULL, b||'-'||rowid, c||'-'||rowid FROM t1;
47 CREATE INDEX i1 ON t1(b,c);
48 CREATE UNIQUE INDEX i2 ON t1(c,a);
49 CREATE TABLE t2 AS SELECT * FROM t1;
53 set ::size1 [file size test.db]
65 expr {[file size test.db]<$::size1}
71 CREATE TABLE t2 AS SELECT * FROM t1;
72 CREATE TABLE t3 AS SELECT * FROM t1;
73 CREATE VIEW v1 AS SELECT b, c FROM t3;
74 CREATE TRIGGER r1 AFTER DELETE ON t2 BEGIN SELECT 1; END;
78 # If the library was compiled to omit view support, comment out the
79 # create view in the script $sql_script before executing it. Similarly,
80 # if triggers are not supported, comment out the trigger definition.
82 regsub {CREATE VIEW} $sql_script {-- CREATE VIEW} sql_script
85 regsub {CREATE TRIGGER} $sql_script {-- CREATE TRIGGER} sql_script
88 set ::size1 [file size test.db]
101 expr {[file size test.db]<$::size1}
111 } {1 {cannot VACUUM from within a transaction}}
112 catch {db eval COMMIT}
118 CREATE TABLE t4 AS SELECT * FROM t1;
119 CREATE TABLE t5 AS SELECT * FROM t1;
124 set ::cksum [cksum db2]
133 catch {db2 eval {SELECT count(*) FROM sqlite_master}}
137 # Make sure the schema cookie is incremented by vacuum.
142 CREATE TABLE t6 AS SELECT * FROM t1;
143 CREATE TABLE t7 AS SELECT * FROM t1;
148 -- The "SELECT * FROM sqlite_master" statement ensures that this test
149 -- works when shared-cache is enabled. If shared-cache is enabled, then
150 -- db3 shares a cache with db2 (but not db - it was opened as
152 SELECT * FROM sqlite_master;
153 SELECT * FROM t7 LIMIT 1
159 INSERT INTO t7 VALUES(1234567890,'hello','world');
162 SELECT * FROM t7 WHERE a=1234567890
164 } {1234567890 hello world}
165 integrity_check vacuum-2.6
168 SELECT * FROM t7 WHERE a=1234567890
170 } {1234567890 hello world}
173 INSERT INTO t7 SELECT * FROM t6;
174 SELECT count(*) FROM t7;
177 integrity_check vacuum-2.9
178 do_test vacuum-2.10 {
181 SELECT count(*) FROM t7;
184 integrity_check vacuum-2.11
188 # Ticket #427. Make sure VACUUM works when the EMPTY_RESULT_CALLBACKS
189 # pragma is turned on.
197 PRAGMA empty_result_callbacks=on;
202 # Ticket #464. Make sure VACUUM works with the sqlite3_prepare() API.
206 sqlite3 db test.db; set DB [sqlite3_connection_pointer db]
207 set VM [sqlite3_prepare $DB {VACUUM} -1 TAIL]
214 # Ticket #515. VACUUM after deleting and recreating the table that
215 # a view refers to. Omit this test if the library is not view-enabled.
220 file delete -force test.db
223 CREATE TABLE Test (TestID int primary key);
224 INSERT INTO Test VALUES (NULL);
225 CREATE VIEW viewTest AS SELECT * FROM Test;
228 CREATE TABLE tempTest (TestID int primary key, Test2 int NULL);
229 INSERT INTO tempTest SELECT TestID, 1 FROM Test;
231 CREATE TABLE Test(TestID int primary key, Test2 int NULL);
232 INSERT INTO Test SELECT * FROM tempTest;
245 # Ensure vacuum works with complicated tables names.
248 CREATE TABLE "abc abc"(a, b, c);
249 INSERT INTO "abc abc" VALUES(1, 2, 3);
255 select * from "abc abc";
259 # Also ensure that blobs survive a vacuum.
260 ifcapable {bloblit} {
263 DELETE FROM "abc abc";
264 INSERT INTO "abc abc" VALUES(X'00112233', NULL, NULL);
270 select count(*) from "abc abc" WHERE a = X'00112233';
275 # Check what happens when an in-memory database is vacuumed. The
276 # [file delete] command covers us in case the library was compiled
277 # without in-memory database support.
279 file delete -force :memory:
289 # Ticket #873. VACUUM a database that has ' in its name.
292 file delete -force a'z.db
293 file delete -force a'z.db-journal
302 # Ticket #1095: Vacuum a table that uses AUTOINCREMENT
304 ifcapable {autoinc} {
307 DROP TABLE 'abc abc';
308 CREATE TABLE autoinc(a INTEGER PRIMARY KEY AUTOINCREMENT, b);
309 INSERT INTO autoinc(b) VALUES('hi');
310 INSERT INTO autoinc(b) VALUES('there');
324 INSERT INTO autoinc(b) VALUES('one');
325 INSERT INTO autoinc(b) VALUES('two');
338 file delete -force {a'z.db}