sl@0
|
1 |
# 2007 April 12
|
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 |
# The focus of the tests in this file are to verify that the
|
sl@0
|
13 |
# pager optimizations implemented in version 3.3.14 work.
|
sl@0
|
14 |
#
|
sl@0
|
15 |
# $Id: pageropt.test,v 1.5 2008/08/20 14:49:25 danielk1977 Exp $
|
sl@0
|
16 |
|
sl@0
|
17 |
set testdir [file dirname $argv0]
|
sl@0
|
18 |
source $testdir/tester.tcl
|
sl@0
|
19 |
|
sl@0
|
20 |
ifcapable {!pager_pragmas||secure_delete} {
|
sl@0
|
21 |
finish_test
|
sl@0
|
22 |
return
|
sl@0
|
23 |
}
|
sl@0
|
24 |
|
sl@0
|
25 |
# Run the SQL statement supplied by the argument and return
|
sl@0
|
26 |
# the results. Prepend four integers to the beginning of the
|
sl@0
|
27 |
# result which are
|
sl@0
|
28 |
#
|
sl@0
|
29 |
# (1) The number of page reads from the database
|
sl@0
|
30 |
# (2) The number of page writes to the database
|
sl@0
|
31 |
# (3) The number of page writes to the journal
|
sl@0
|
32 |
# (4) The number of cache pages freed
|
sl@0
|
33 |
#
|
sl@0
|
34 |
proc pagercount_sql {sql {db db}} {
|
sl@0
|
35 |
global sqlite3_pager_readdb_count
|
sl@0
|
36 |
global sqlite3_pager_writedb_count
|
sl@0
|
37 |
global sqlite3_pager_writej_count
|
sl@0
|
38 |
global sqlite3_pager_pgfree_count
|
sl@0
|
39 |
set sqlite3_pager_readdb_count 0
|
sl@0
|
40 |
set sqlite3_pager_writedb_count 0
|
sl@0
|
41 |
set sqlite3_pager_writej_count 0
|
sl@0
|
42 |
set r [$db eval $sql]
|
sl@0
|
43 |
set cnt [list $sqlite3_pager_readdb_count \
|
sl@0
|
44 |
$sqlite3_pager_writedb_count \
|
sl@0
|
45 |
$sqlite3_pager_writej_count ]
|
sl@0
|
46 |
return [concat $cnt $r]
|
sl@0
|
47 |
}
|
sl@0
|
48 |
|
sl@0
|
49 |
# Setup the test database
|
sl@0
|
50 |
#
|
sl@0
|
51 |
do_test pageropt-1.1 {
|
sl@0
|
52 |
sqlite3_soft_heap_limit 0
|
sl@0
|
53 |
execsql {
|
sl@0
|
54 |
PRAGMA auto_vacuum = OFF;
|
sl@0
|
55 |
PRAGMA page_size = 1024;
|
sl@0
|
56 |
}
|
sl@0
|
57 |
pagercount_sql {
|
sl@0
|
58 |
CREATE TABLE t1(x);
|
sl@0
|
59 |
}
|
sl@0
|
60 |
} {0 2 0}
|
sl@0
|
61 |
do_test pageropt-1.2 {
|
sl@0
|
62 |
pagercount_sql {
|
sl@0
|
63 |
INSERT INTO t1 VALUES(randomblob(5000));
|
sl@0
|
64 |
}
|
sl@0
|
65 |
} {0 6 2}
|
sl@0
|
66 |
|
sl@0
|
67 |
# Verify that values remain in cache on for subsequent reads.
|
sl@0
|
68 |
# We should not have to go back to disk.
|
sl@0
|
69 |
#
|
sl@0
|
70 |
do_test pageropt-1.3 {
|
sl@0
|
71 |
pagercount_sql {
|
sl@0
|
72 |
SELECT length(x) FROM t1
|
sl@0
|
73 |
}
|
sl@0
|
74 |
} {0 0 0 5000}
|
sl@0
|
75 |
|
sl@0
|
76 |
# If another thread reads the database, the original cache
|
sl@0
|
77 |
# remains valid.
|
sl@0
|
78 |
#
|
sl@0
|
79 |
sqlite3 db2 test.db
|
sl@0
|
80 |
set blobcontent [db2 one {SELECT hex(x) FROM t1}]
|
sl@0
|
81 |
do_test pageropt-1.4 {
|
sl@0
|
82 |
pagercount_sql {
|
sl@0
|
83 |
SELECT hex(x) FROM t1
|
sl@0
|
84 |
}
|
sl@0
|
85 |
} [list 0 0 0 $blobcontent]
|
sl@0
|
86 |
|
sl@0
|
87 |
# But if the other thread modifies the database, then the cache
|
sl@0
|
88 |
# must refill.
|
sl@0
|
89 |
#
|
sl@0
|
90 |
do_test pageropt-1.5 {
|
sl@0
|
91 |
db2 eval {CREATE TABLE t2(y)}
|
sl@0
|
92 |
pagercount_sql {
|
sl@0
|
93 |
SELECT hex(x) FROM t1
|
sl@0
|
94 |
}
|
sl@0
|
95 |
} [list 6 0 0 $blobcontent]
|
sl@0
|
96 |
do_test pageropt-1.6 {
|
sl@0
|
97 |
pagercount_sql {
|
sl@0
|
98 |
SELECT hex(x) FROM t1
|
sl@0
|
99 |
}
|
sl@0
|
100 |
} [list 0 0 0 $blobcontent]
|
sl@0
|
101 |
|
sl@0
|
102 |
# Verify that the last page of an overflow chain is not read from
|
sl@0
|
103 |
# disk when deleting a row. The one row of t1(x) has four pages
|
sl@0
|
104 |
# of overflow. So deleting that row from t1 should involve reading
|
sl@0
|
105 |
# the sqlite_master table (1 page) the main page of t1 (1 page) and
|
sl@0
|
106 |
# the three overflow pages of t1 for a total of 5 pages.
|
sl@0
|
107 |
#
|
sl@0
|
108 |
# Pages written are page 1 (for the freelist pointer), the root page
|
sl@0
|
109 |
# of the table, and one of the overflow chain pointers because it
|
sl@0
|
110 |
# becomes the trunk of the freelist. Total 3.
|
sl@0
|
111 |
#
|
sl@0
|
112 |
do_test pageropt-2.1 {
|
sl@0
|
113 |
db close
|
sl@0
|
114 |
sqlite3 db test.db
|
sl@0
|
115 |
pagercount_sql {
|
sl@0
|
116 |
DELETE FROM t1 WHERE rowid=1
|
sl@0
|
117 |
}
|
sl@0
|
118 |
} {5 3 3}
|
sl@0
|
119 |
|
sl@0
|
120 |
# When pulling pages off of the freelist, there is no reason
|
sl@0
|
121 |
# to actually bring in the old content.
|
sl@0
|
122 |
#
|
sl@0
|
123 |
do_test pageropt-2.2 {
|
sl@0
|
124 |
db close
|
sl@0
|
125 |
sqlite3 db test.db
|
sl@0
|
126 |
pagercount_sql {
|
sl@0
|
127 |
INSERT INTO t1 VALUES(randomblob(1500));
|
sl@0
|
128 |
}
|
sl@0
|
129 |
} {3 4 3}
|
sl@0
|
130 |
do_test pageropt-2.3 {
|
sl@0
|
131 |
pagercount_sql {
|
sl@0
|
132 |
INSERT INTO t1 VALUES(randomblob(1500));
|
sl@0
|
133 |
}
|
sl@0
|
134 |
} {0 4 3}
|
sl@0
|
135 |
|
sl@0
|
136 |
# Note the new optimization that when pulling the very last page off of the
|
sl@0
|
137 |
# freelist we do not read the content of that page.
|
sl@0
|
138 |
#
|
sl@0
|
139 |
do_test pageropt-2.4 {
|
sl@0
|
140 |
pagercount_sql {
|
sl@0
|
141 |
INSERT INTO t1 VALUES(randomblob(1500));
|
sl@0
|
142 |
}
|
sl@0
|
143 |
} {0 5 3}
|
sl@0
|
144 |
|
sl@0
|
145 |
# Appending a large quantity of data does not involve writing much
|
sl@0
|
146 |
# to the journal file.
|
sl@0
|
147 |
#
|
sl@0
|
148 |
do_test pageropt-3.1 {
|
sl@0
|
149 |
pagercount_sql {
|
sl@0
|
150 |
INSERT INTO t2 SELECT * FROM t1;
|
sl@0
|
151 |
}
|
sl@0
|
152 |
} {1 7 2}
|
sl@0
|
153 |
|
sl@0
|
154 |
# Once again, we do not need to read the last page of an overflow chain
|
sl@0
|
155 |
# while deleting.
|
sl@0
|
156 |
#
|
sl@0
|
157 |
do_test pageropt-3.2 {
|
sl@0
|
158 |
pagercount_sql {
|
sl@0
|
159 |
DROP TABLE t2;
|
sl@0
|
160 |
}
|
sl@0
|
161 |
} {0 2 3}
|
sl@0
|
162 |
do_test pageropt-3.3 {
|
sl@0
|
163 |
pagercount_sql {
|
sl@0
|
164 |
DELETE FROM t1;
|
sl@0
|
165 |
}
|
sl@0
|
166 |
} {0 3 3}
|
sl@0
|
167 |
|
sl@0
|
168 |
# There are now 11 pages on the freelist. Move them all into an
|
sl@0
|
169 |
# overflow chain by inserting a single large record. Starting from
|
sl@0
|
170 |
# a cold cache, only page 1, the root page of table t1, and the trunk
|
sl@0
|
171 |
# of the freelist need to be read (3 pages). And only those three
|
sl@0
|
172 |
# pages need to be journalled. But 13 pages need to be written:
|
sl@0
|
173 |
# page1, the root page of table t1, and an 11 page overflow chain.
|
sl@0
|
174 |
#
|
sl@0
|
175 |
do_test pageropt-4.1 {
|
sl@0
|
176 |
db close
|
sl@0
|
177 |
sqlite3 db test.db
|
sl@0
|
178 |
pagercount_sql {
|
sl@0
|
179 |
INSERT INTO t1 VALUES(randomblob(11300))
|
sl@0
|
180 |
}
|
sl@0
|
181 |
} {3 13 3}
|
sl@0
|
182 |
|
sl@0
|
183 |
# Now we delete that big entries starting from a cold cache and an
|
sl@0
|
184 |
# empty freelist. The first 10 of the 11 pages overflow chain have
|
sl@0
|
185 |
# to be read, together with page1 and the root of the t1 table. 12
|
sl@0
|
186 |
# reads total. But only page1, the t1 root, and the trunk of the
|
sl@0
|
187 |
# freelist need to be journalled and written back.
|
sl@0
|
188 |
#
|
sl@0
|
189 |
do_test pageropt-4.2 {
|
sl@0
|
190 |
db close
|
sl@0
|
191 |
sqlite3 db test.db
|
sl@0
|
192 |
pagercount_sql {
|
sl@0
|
193 |
DELETE FROM t1
|
sl@0
|
194 |
}
|
sl@0
|
195 |
} {12 3 3}
|
sl@0
|
196 |
|
sl@0
|
197 |
sqlite3_soft_heap_limit $soft_limit
|
sl@0
|
198 |
catch {db2 close}
|
sl@0
|
199 |
finish_test
|