sl@0
|
1 |
# 2005 December 29
|
sl@0
|
2 |
#
|
sl@0
|
3 |
# The author disclaims copyright to this source code. In place of
|
sl@0
|
4 |
# a legal notice, here is a blessing:
|
sl@0
|
5 |
#
|
sl@0
|
6 |
# May you do good and not evil.
|
sl@0
|
7 |
# May you find forgiveness for yourself and forgive others.
|
sl@0
|
8 |
# May you share freely, never taking more than you give.
|
sl@0
|
9 |
#
|
sl@0
|
10 |
#***********************************************************************
|
sl@0
|
11 |
# This file implements regression tests for SQLite library.
|
sl@0
|
12 |
#
|
sl@0
|
13 |
# This file implements tests to verify that the new serial_type
|
sl@0
|
14 |
# values of 8 (integer 0) and 9 (integer 1) work correctly.
|
sl@0
|
15 |
#
|
sl@0
|
16 |
|
sl@0
|
17 |
set testdir [file dirname $argv0]
|
sl@0
|
18 |
source $testdir/tester.tcl
|
sl@0
|
19 |
|
sl@0
|
20 |
db eval {PRAGMA legacy_file_format=OFF}
|
sl@0
|
21 |
|
sl@0
|
22 |
# The size of the database depends on whether or not autovacuum
|
sl@0
|
23 |
# is enabled.
|
sl@0
|
24 |
#
|
sl@0
|
25 |
ifcapable autovacuum {
|
sl@0
|
26 |
if {[db one {PRAGMA auto_vacuum}]} {
|
sl@0
|
27 |
set small 3072
|
sl@0
|
28 |
set large 5120
|
sl@0
|
29 |
} else {
|
sl@0
|
30 |
set small 2048
|
sl@0
|
31 |
set large 4096
|
sl@0
|
32 |
}
|
sl@0
|
33 |
} else {
|
sl@0
|
34 |
set small 2048
|
sl@0
|
35 |
set large 4096
|
sl@0
|
36 |
}
|
sl@0
|
37 |
|
sl@0
|
38 |
do_test format4-1.1 {
|
sl@0
|
39 |
execsql {
|
sl@0
|
40 |
CREATE TABLE t1(x0,x1,x2,x3,x4,x5,x6,x7,x8,x9);
|
sl@0
|
41 |
INSERT INTO t1 VALUES(0,0,0,0,0,0,0,0,0,0);
|
sl@0
|
42 |
INSERT INTO t1 SELECT * FROM t1;
|
sl@0
|
43 |
INSERT INTO t1 SELECT * FROM t1;
|
sl@0
|
44 |
INSERT INTO t1 SELECT * FROM t1;
|
sl@0
|
45 |
INSERT INTO t1 SELECT * FROM t1;
|
sl@0
|
46 |
INSERT INTO t1 SELECT * FROM t1;
|
sl@0
|
47 |
INSERT INTO t1 SELECT * FROM t1;
|
sl@0
|
48 |
}
|
sl@0
|
49 |
file size test.db
|
sl@0
|
50 |
} $small
|
sl@0
|
51 |
do_test format4-1.2 {
|
sl@0
|
52 |
execsql {
|
sl@0
|
53 |
UPDATE t1 SET x0=1, x1=1, x2=1, x3=1, x4=1, x5=1, x6=1, x7=1, x8=1, x9=1
|
sl@0
|
54 |
}
|
sl@0
|
55 |
file size test.db
|
sl@0
|
56 |
} $small
|
sl@0
|
57 |
do_test format4-1.3 {
|
sl@0
|
58 |
execsql {
|
sl@0
|
59 |
UPDATE t1 SET x0=2, x1=2, x2=2, x3=2, x4=2, x5=2, x6=2, x7=2, x8=2, x9=2
|
sl@0
|
60 |
}
|
sl@0
|
61 |
file size test.db
|
sl@0
|
62 |
} $large
|
sl@0
|
63 |
|
sl@0
|
64 |
|
sl@0
|
65 |
finish_test
|