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 #***********************************************************************
12 # This file is focused on testing the pcache module.
14 # $Id: pcache.test,v 1.2 2008/09/05 05:29:09 danielk1977 Exp $
16 set testdir [file dirname $argv0]
17 source $testdir/tester.tcl
20 # The pcache module limits the number of pages available to purgeable
21 # caches to the sum of the 'cache_size' values for the set of open
22 # caches. This block of tests, pcache-1.*, test that the library behaves
23 # corrctly when it is forced to exceed this limit.
28 } {current 0 max 0 min 0 recyclable 0}
37 } {current 1 max 10 min 10 recyclable 1}
42 CREATE TABLE t1(a, b, c);
43 CREATE TABLE t2(a, b, c);
44 CREATE TABLE t3(a, b, c);
45 CREATE TABLE t4(a, b, c);
46 CREATE TABLE t5(a, b, c);
49 } {current 6 max 10 min 10 recyclable 0}
53 CREATE TABLE t6(a, b, c);
54 CREATE TABLE t7(a, b, c);
55 CREATE TABLE t8(a, b, c);
56 CREATE TABLE t9(a, b, c);
59 } {current 10 max 10 min 10 recyclable 0}
63 execsql "PRAGMA cache_size=10" db2
65 } {current 11 max 20 min 20 recyclable 1}
70 SELECT * FROM sqlite_master;
73 } {current 11 max 20 min 20 recyclable 0}
75 # At this point connection db2 has a read lock on the database file and a
76 # single pinned page in its cache. Connection [db] is holding 10 dirty
77 # pages. It cannot recycle them because of the read lock held by db2.
81 CREATE INDEX i1 ON t1(a, b);
82 CREATE INDEX i2 ON t2(a, b);
83 CREATE INDEX i3 ON t3(a, b);
84 CREATE INDEX i4 ON t4(a, b);
85 CREATE INDEX i5 ON t5(a, b);
86 CREATE INDEX i6 ON t6(a, b);
87 CREATE INDEX i7 ON t7(a, b);
88 CREATE INDEX i8 ON t8(a, b);
89 CREATE INDEX i9 ON t9(a, b);
92 } {current 20 max 20 min 20 recyclable 0}
96 CREATE TABLE t10(a, b, c);
99 } {current 21 max 20 min 20 recyclable 0}
101 # Rolling back the transaction held by db2 at this point releases a pinned
102 # page. Because the number of allocated pages is greater than the
103 # configured maximum, this page should be freed immediately instead of
107 execsql {ROLLBACK} db2
109 } {current 20 max 20 min 20 recyclable 0}
114 } {current 20 max 20 min 20 recyclable 20}
116 do_test pcache-1.10 {
119 } {current 10 max 10 min 10 recyclable 10}
121 do_test pcache-1.11 {
122 execsql { PRAGMA cache_size = 20 }
124 } {current 10 max 20 min 10 recyclable 10}
126 do_test pcache-1.12 {
128 SELECT * FROM t1 ORDER BY a; SELECT * FROM t1;
129 SELECT * FROM t2 ORDER BY a; SELECT * FROM t2;
130 SELECT * FROM t3 ORDER BY a; SELECT * FROM t3;
131 SELECT * FROM t4 ORDER BY a; SELECT * FROM t4;
132 SELECT * FROM t5 ORDER BY a; SELECT * FROM t5;
133 SELECT * FROM t6 ORDER BY a; SELECT * FROM t6;
134 SELECT * FROM t7 ORDER BY a; SELECT * FROM t7;
135 SELECT * FROM t8 ORDER BY a; SELECT * FROM t8;
136 SELECT * FROM t9 ORDER BY a; SELECT * FROM t9;
139 } {current 19 max 20 min 10 recyclable 19}
141 do_test pcache-1.13 {
142 execsql { PRAGMA cache_size = 15 }
144 } {current 15 max 15 min 10 recyclable 15}