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 incremental vacuum feature.
14 # $Id: incrvacuum2.test,v 1.5 2008/05/07 07:13:16 danielk1977 Exp $
16 set testdir [file dirname $argv0]
17 source $testdir/tester.tcl
19 # If this build of the library does not support auto-vacuum, omit this
21 ifcapable {!autovacuum || !pragma} {
26 # If the OMIT_INCRBLOB symbol was defined at compile time, there
27 # is no zeroblob() function available. So create a similar
28 # function here using Tcl. It doesn't return a blob, but it returns
29 # data of the required length, which is good enough for this
32 proc zeroblob {n} { string repeat 0 $n }
33 db function zeroblob zeroblob
37 # Create a database in incremental vacuum mode that has many
38 # pages on the freelist.
40 do_test incrvacuum2-1.1 {
42 PRAGMA page_size=1024;
43 PRAGMA auto_vacuum=incremental;
45 INSERT INTO t1 VALUES(zeroblob(30000));
51 # Vacuum off a single page.
53 do_test incrvacuum2-1.2 {
55 PRAGMA incremental_vacuum(1);
60 # Vacuum off five pages
62 do_test incrvacuum2-1.3 {
64 PRAGMA incremental_vacuum(5);
69 # Vacuum off all the rest
71 do_test incrvacuum2-1.4 {
73 PRAGMA incremental_vacuum(1000);
78 # Make sure incremental vacuum works on attached databases.
81 do_test incrvacuum2-2.1 {
82 file delete -force test2.db test2.db-journal
84 ATTACH DATABASE 'test2.db' AS aux;
85 PRAGMA aux.auto_vacuum=incremental;
86 CREATE TABLE aux.t2(x);
87 INSERT INTO t2 VALUES(zeroblob(30000));
88 INSERT INTO t1 SELECT * FROM t2;
92 list [file size test.db] [file size test2.db]
94 do_test incrvacuum2-2.2 {
96 PRAGMA aux.incremental_vacuum(1)
98 list [file size test.db] [file size test2.db]
100 do_test incrvacuum2-2.3 {
102 PRAGMA aux.incremental_vacuum(5)
104 list [file size test.db] [file size test2.db]
106 do_test incrvacuum2-2.4 {
108 PRAGMA main.incremental_vacuum(5)
110 list [file size test.db] [file size test2.db]
112 do_test incrvacuum2-2.5 {
114 PRAGMA aux.incremental_vacuum
116 list [file size test.db] [file size test2.db]
118 do_test incrvacuum2-2.6 {
120 PRAGMA incremental_vacuum(1)
122 list [file size test.db] [file size test2.db]
126 do_test incrvacuum2-3.1 {
128 PRAGMA auto_vacuum = 'full';
131 INSERT INTO abc VALUES(randstr(1500,1500));
135 do_test incrvacuum2-3.2 {
139 PRAGMA incremental_vacuum;
144 integrity_check incremental2-3.3