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 #***********************************************************************
12 set testdir [file dirname $argv0]
13 source $testdir/tester.tcl
14 set testprefix temptable3
19 PRAGMA cache_size = 1;
20 PRAGMA page_size = 1024;
21 PRAGMA auto_vacuum = 2;
23 INSERT INTO t1 VALUES( randomblob(800) );
24 INSERT INTO t1 VALUES( randomblob(800) );
26 PRAGMA integrity_check;
32 PRAGMA cache_size = 1;
33 PRAGMA auto_vacuum = 2;
35 CREATE TABLE t2(x UNIQUE);
36 INSERT INTO t2 VALUES(1), (2), (3);
38 PRAGMA integrity_check;