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 #***********************************************************************
13 set testdir [file dirname $argv0]
14 source $testdir/tester.tcl
16 do_execsql_test tkt-5e10420e8d.1 {
17 PRAGMA page_size = 1024;
18 PRAGMA auto_vacuum = incremental;
25 do_execsql_test tkt-5e10420e8d.2 {
26 INSERT INTO t3 VALUES(randomblob(500 + 1024*248));
27 INSERT INTO t1 VALUES(randomblob(1500));
28 INSERT INTO t2 VALUES(randomblob(500 + 1024*248));
35 do_execsql_test tkt-5e10420e8d.3 {
36 PRAGMA incremental_vacuum(248)
39 do_execsql_test tkt-5e10420e8d.4 {
40 PRAGMA incremental_vacuum(1)
46 do_execsql_test tkt-5e10420e8d.5 {
47 PRAGMA integrity_check;