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 # Test some specific circumstances to do with shared cache mode.
16 set testdir [file dirname $argv0]
17 source $testdir/tester.tcl
18 if {[run_thread_tests]==0} { finish_test ; return }
20 set ::testprefix sharedA
22 ifcapable !shared_cache {
27 if {[atomic_batch_write test.db]} {
32 set ::enable_shared_cache [sqlite3_enable_shared_cache 1]
34 #-------------------------------------------------------------------------
42 INSERT INTO t1 VALUES(randomblob(100));
43 INSERT INTO t1 SELECT randomblob(100) FROM t1;
44 INSERT INTO t1 SELECT randomblob(100) FROM t1;
45 INSERT INTO t1 SELECT randomblob(100) FROM t1;
46 INSERT INTO t1 SELECT randomblob(100) FROM t1;
47 INSERT INTO t1 SELECT randomblob(100) FROM t1;
48 INSERT INTO t1 SELECT randomblob(100) FROM t1;
49 CREATE INDEX i1 ON t1(x);
60 INSERT INTO t1 SELECT randomblob(100) FROM t1;
62 PRAGMA integrity_check;
70 #-------------------------------------------------------------------------
77 INSERT INTO t1 VALUES(123);
81 CREATE INDEX i1 ON t1(x);
86 db2 eval { SELECT * FROM t1 ORDER BY x; }
93 db2 eval { SELECT * FROM t1 ORDER BY x; }
100 #-------------------------------------------------------------------------
102 # sqlite3RollbackAll() loops through all attached b-trees and rolls
103 # back each one separately. Then if the SQLITE_InternChanges flag is
104 # set, it resets the schema. Both of the above steps must be done
105 # while holding a mutex, otherwise another thread might slip in and
106 # try to use the new schema with the old data.
108 # The following sequence of tests attempt to verify that the actions
109 # taken by sqlite3RollbackAll() are thread-atomic (that they cannot be
110 # interrupted by a separate thread.)
112 # Note that a TCL interpreter can only be used within the thread in which
113 # it was originally created (because it uses thread-local-storage).
114 # The tvfs callbacks must therefore only run on the main thread.
115 # There is some trickery in the read_callback procedure to ensure that
120 # Set up two databases and two database connections.
122 # db1: main(test.db), two(test2.db)
125 # The cache for test.db is shared between db1 and db2.
128 forcedelete test.db test.db2
129 sqlite3 db1 test.db -vfs tvfs
130 db1 eval { ATTACH 'test.db2' AS two }
134 INSERT INTO t1 VALUES(1);
135 INSERT INTO t1 VALUES(2);
136 INSERT INTO t1 VALUES(3);
137 CREATE TABLE two.t2(x);
138 INSERT INTO t2 SELECT * FROM t1;
141 sqlite3 db2 test.db -vfs tvfs
142 db2 eval { SELECT * FROM t1 }
145 # Create a prepared statement on db2 that will attempt a schema change
146 # in test.db. Meanwhile, start a transaction on db1 that changes
147 # the schema of test.db and that creates a rollback journal on test2.db
150 set ::STMT [sqlite3_prepare db2 "CREATE INDEX i1 ON t1(x)" -1 tail]
153 CREATE INDEX i1 ON t1(x);
154 INSERT INTO t2 VALUES('value!');
158 # Set up a callback that will cause db2 to try to execute its
159 # schema change when db1 accesses the journal file of test2.db.
161 # This callback will be invoked after the content of test.db has
162 # be rolled back but before the schema has been reset. If the
163 # sqlite3RollbackAll() operation is not thread-atomic, then the
164 # db2 statement in the callback will see old content with the newer
165 # schema, which is wrong.
168 tvfs script read_callback
169 unset -nocomplain ::some_time_laster
170 unset -nocomplain ::thread_result
171 proc read_callback {call file args} {
172 if {[string match *test.db2-journal $file]} {
173 tvfs filter {} ;# Ensure that tvfs callbacks to do run on the
175 sqlthread spawn ::thread_result [subst -nocommands {
177 set rc [sqlite3_finalize $::STMT]
179 after 1000 { set ::some_time_later 1 }
180 vwait ::some_time_later
183 do_test 2.3 { db1 eval ROLLBACK } {}
185 # Verify that the db2 statement invoked by the callback detected the
188 if {[info exists ::thread_result]==0} { vwait ::thread_result }
190 list $::thread_result [sqlite3_errmsg db2]
191 } {SQLITE_SCHEMA {database schema has changed}}
197 sqlite3_enable_shared_cache $::enable_shared_cache