blob: af23aa23e76bedd55e175556c3e9e1bee7146538 [file] [log] [blame]
danielk1977aef0bf62005-12-30 16:28:01 +00001# 2005 December 30
2#
3# The author disclaims copyright to this source code. In place of
4# a legal notice, here is a blessing:
5#
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.
9#
10#***********************************************************************
danielk1977aef0bf62005-12-30 16:28:01 +000011#
danielk1977b82e7ed2006-01-11 14:09:31 +000012# $Id: shared.test,v 1.11 2006/01/11 14:09:32 danielk1977 Exp $
danielk1977aef0bf62005-12-30 16:28:01 +000013
14set testdir [file dirname $argv0]
15source $testdir/tester.tcl
16db close
17
18ifcapable !shared_cache {
19 finish_test
20 return
21}
danielk1977da184232006-01-05 11:34:32 +000022set ::enable_shared_cache [sqlite3_enable_shared_cache 1]
danielk1977aef0bf62005-12-30 16:28:01 +000023
24# Test organization:
25#
26# shared-1.*: Simple test to verify basic sanity of table level locking when
27# two connections share a pager cache.
28# shared-2.*: Test that a read transaction can co-exist with a
29# write-transaction, including a simple test to ensure the
30# external locking protocol is still working.
danielk1977da184232006-01-05 11:34:32 +000031# shared-3.*: Simple test of read-uncommitted mode.
danielk1977de0fe3e2006-01-06 06:33:12 +000032# shared-4.*: Check that the schema is locked and unlocked correctly.
danielk1977aaf22682006-01-06 15:03:48 +000033# shared-5.*: Test that creating/dropping schema items works when databases
34# are attached in different orders to different handles.
danielk1977c00da102006-01-07 13:21:04 +000035# shared-6.*: Locking, UNION ALL queries and sub-queries.
danielk197714db2662006-01-09 16:12:04 +000036# shared-7.*: Autovacuum and shared-cache.
danielk1977de0fe3e2006-01-06 06:33:12 +000037#
danielk1977aef0bf62005-12-30 16:28:01 +000038
39do_test shared-1.1 {
40 # Open a second database on the file test.db. It should use the same pager
41 # cache and schema as the original connection. Verify that only 1 file is
42 # opened.
43 sqlite3 db2 test.db
44 sqlite3 db test.db
45 set ::sqlite_open_file_count
46} {1}
47do_test shared-1.2 {
48 # Add a table and a single row of data via the first connection.
49 # Ensure that the second connection can see them.
50 execsql {
51 CREATE TABLE abc(a, b, c);
52 INSERT INTO abc VALUES(1, 2, 3);
53 } db
54 execsql {
55 SELECT * FROM abc;
56 } db2
57} {1 2 3}
58do_test shared-1.3 {
59 # Have the first connection begin a transaction and obtain a read-lock
60 # on table abc. This should not prevent the second connection from
61 # querying abc.
62 execsql {
63 BEGIN;
64 SELECT * FROM abc;
65 }
66 execsql {
67 SELECT * FROM abc;
68 } db2
69} {1 2 3}
70do_test shared-1.4 {
71 # Try to insert a row into abc via connection 2. This should fail because
72 # of the read-lock connection 1 is holding on table abc (obtained in the
73 # previous test case).
74 catchsql {
75 INSERT INTO abc VALUES(4, 5, 6);
76 } db2
danielk1977c00da102006-01-07 13:21:04 +000077} {1 {database table is locked: abc}}
danielk1977aef0bf62005-12-30 16:28:01 +000078do_test shared-1.5 {
danielk1977da184232006-01-05 11:34:32 +000079 # Using connection 2 (the one without the open transaction), try to create
80 # a new table. This should fail because of the open read transaction
81 # held by connection 1.
82 catchsql {
83 CREATE TABLE def(d, e, f);
84 } db2
danielk1977c00da102006-01-07 13:21:04 +000085} {1 {database table is locked: sqlite_master}}
danielk1977da184232006-01-05 11:34:32 +000086do_test shared-1.6 {
87 # Upgrade connection 1's transaction to a write transaction. Create
88 # a new table - def - and insert a row into it. Because the connection 1
89 # transaction modifies the schema, it should not be possible for
90 # connection 2 to access the database at all until the connection 1
91 # has finished the transaction.
danielk1977aef0bf62005-12-30 16:28:01 +000092 execsql {
93 CREATE TABLE def(d, e, f);
danielk1977aef0bf62005-12-30 16:28:01 +000094 INSERT INTO def VALUES('IV', 'V', 'VI');
95 }
96} {}
97do_test shared-1.7 {
98 # Read from the sqlite_master table with connection 1 (inside the
danielk1977da184232006-01-05 11:34:32 +000099 # transaction). Then test that we can not do this with connection 2. This
100 # is because of the schema-modified lock established by connection 1
101 # in the previous test case.
danielk1977aef0bf62005-12-30 16:28:01 +0000102 execsql {
103 SELECT * FROM sqlite_master;
104 }
105 catchsql {
danielk1977da184232006-01-05 11:34:32 +0000106 SELECT * FROM sqlite_master;
danielk1977aef0bf62005-12-30 16:28:01 +0000107 } db2
danielk1977c87d34d2006-01-06 13:00:28 +0000108} {1 {database schema is locked: main}}
danielk1977aef0bf62005-12-30 16:28:01 +0000109do_test shared-1.8 {
danielk1977aef0bf62005-12-30 16:28:01 +0000110 # Commit the connection 1 transaction.
111 execsql {
112 COMMIT;
113 }
114} {}
115
116do_test shared-2.1 {
117 # Open connection db3 to the database. Use a different path to the same
118 # file so that db3 does *not* share the same pager cache as db and db2
119 # (there should be two open file handles).
120 sqlite3 db3 ./test.db
121 set ::sqlite_open_file_count
122} {2}
123do_test shared-2.2 {
124 # Start read transactions on db and db2 (the shared pager cache). Ensure
125 # db3 cannot write to the database.
126 execsql {
127 BEGIN;
128 SELECT * FROM abc;
129 }
130 execsql {
131 BEGIN;
132 SELECT * FROM abc;
133 } db2
134 catchsql {
135 INSERT INTO abc VALUES(1, 2, 3);
136 } db2
danielk1977c00da102006-01-07 13:21:04 +0000137} {1 {database table is locked: abc}}
danielk1977aef0bf62005-12-30 16:28:01 +0000138do_test shared-2.3 {
139 # Turn db's transaction into a write-transaction. db3 should still be
140 # able to read from table def (but will not see the new row). Connection
141 # db2 should not be able to read def (because of the write-lock).
142
143# Todo: The failed "INSERT INTO abc ..." statement in the above test
144# has started a write-transaction on db2 (should this be so?). This
145# would prevent connection db from starting a write-transaction. So roll the
146# db2 transaction back and replace it with a new read transaction.
147 execsql {
148 ROLLBACK;
149 BEGIN;
150 SELECT * FROM abc;
151 } db2
152
153 execsql {
154 INSERT INTO def VALUES('VII', 'VIII', 'IX');
155 }
156 concat [
157 catchsql { SELECT * FROM def; } db3
158 ] [
159 catchsql { SELECT * FROM def; } db2
160 ]
danielk1977c00da102006-01-07 13:21:04 +0000161} {0 {IV V VI} 1 {database table is locked: def}}
danielk1977aef0bf62005-12-30 16:28:01 +0000162do_test shared-2.4 {
163 # Commit the open transaction on db. db2 still holds a read-transaction.
164 # This should prevent db3 from writing to the database, but not from
165 # reading.
166 execsql {
167 COMMIT;
168 }
169 concat [
170 catchsql { SELECT * FROM def; } db3
171 ] [
172 catchsql { INSERT INTO def VALUES('X', 'XI', 'XII'); } db3
173 ]
danielk1977da184232006-01-05 11:34:32 +0000174} {0 {IV V VI VII VIII IX} 1 {database is locked}}
danielk1977aef0bf62005-12-30 16:28:01 +0000175
danielk1977da184232006-01-05 11:34:32 +0000176catchsql COMMIT db2
177
178do_test shared-3.1.1 {
179 # This test case starts a linear scan of table 'seq' using a
180 # read-uncommitted connection. In the middle of the scan, rows are added
181 # to the end of the seq table (ahead of the current cursor position).
182 # The uncommitted rows should be included in the results of the scan.
183 execsql "
184 CREATE TABLE seq(i, x);
185 INSERT INTO seq VALUES(1, '[string repeat X 500]');
186 INSERT INTO seq VALUES(2, '[string repeat X 500]');
187 "
188 execsql {SELECT * FROM sqlite_master} db2
189 execsql {PRAGMA read_uncommitted = 1} db2
190
191 set ret [list]
192 db2 eval {SELECT i FROM seq} {
193 if {$i < 4} {
194 execsql {
195 INSERT INTO seq SELECT i + (SELECT max(i) FROM seq), x FROM seq;
196 }
197 }
198 lappend ret $i
199 }
200 set ret
201} {1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16}
202do_test shared-3.1.2 {
203 # Another linear scan through table seq using a read-uncommitted connection.
204 # This time, delete each row as it is read. Should not affect the results of
205 # the scan, but the table should be empty after the scan is concluded
206 # (test 3.1.3 verifies this).
207 set ret [list]
208 db2 eval {SELECT i FROM seq} {
209 db eval {DELETE FROM seq WHERE i = $i}
210 lappend ret $i
211 }
212 set ret
213} {1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16}
214do_test shared-3.1.3 {
215 execsql {
216 SELECT * FROM seq;
217 }
218} {}
danielk1977aef0bf62005-12-30 16:28:01 +0000219
220catch {db close}
221catch {db2 close}
222catch {db3 close}
223
danielk1977de0fe3e2006-01-06 06:33:12 +0000224#--------------------------------------------------------------------------
225# Tests shared-4.* test that the schema locking rules are applied
226# correctly. i.e.:
227#
228# 1. All transactions require a read-lock on the schemas of databases they
229# access.
230# 2. Transactions that modify a database schema require a write-lock on that
231# schema.
232# 3. It is not possible to compile a statement while another handle has a
233# write-lock on the schema.
234#
235
236# Open two database handles db and db2. Each has a single attach database
237# (as well as main):
238#
239# db.main -> ./test.db
240# db.test2 -> ./test2.db
241# db2.main -> ./test2.db
242# db2.test -> ./test.db
243#
244file delete -force test.db
245file delete -force test2.db
246file delete -force test2.db-journal
247sqlite3 db test.db
248sqlite3 db2 test2.db
249do_test shared-4.1.1 {
250 set sqlite_open_file_count
251} {2}
252do_test shared-4.1.2 {
253 execsql {ATTACH 'test2.db' AS test2}
254 set sqlite_open_file_count
255} {2}
256do_test shared-4.1.3 {
257 execsql {ATTACH 'test.db' AS test} db2
258 set sqlite_open_file_count
259} {2}
260
danielk1977c87d34d2006-01-06 13:00:28 +0000261# Sanity check: Create a table in ./test.db via handle db, and test that handle
262# db2 can "see" the new table immediately. A handle using a seperate pager
263# cache would have to reload the database schema before this were possible.
264#
danielk1977de0fe3e2006-01-06 06:33:12 +0000265do_test shared-4.2.1 {
266 execsql {
267 CREATE TABLE abc(a, b, c);
danielk1977c87d34d2006-01-06 13:00:28 +0000268 CREATE TABLE def(d, e, f);
danielk1977de0fe3e2006-01-06 06:33:12 +0000269 INSERT INTO abc VALUES('i', 'ii', 'iii');
danielk1977c87d34d2006-01-06 13:00:28 +0000270 INSERT INTO def VALUES('I', 'II', 'III');
danielk1977de0fe3e2006-01-06 06:33:12 +0000271 }
272} {}
273do_test shared-4.2.2 {
274 execsql {
275 SELECT * FROM test.abc;
276 } db2
277} {i ii iii}
278
danielk1977c87d34d2006-01-06 13:00:28 +0000279# Open a read-transaction and read from table abc via handle 2. Check that
280# handle 1 can read table abc. Check that handle 1 cannot modify table abc
281# or the database schema. Then check that handle 1 can modify table def.
282#
283do_test shared-4.3.1 {
284 execsql {
285 BEGIN;
286 SELECT * FROM test.abc;
287 } db2
288} {i ii iii}
289do_test shared-4.3.2 {
290 catchsql {
291 INSERT INTO abc VALUES('iv', 'v', 'vi');
292 }
danielk1977c00da102006-01-07 13:21:04 +0000293} {1 {database table is locked: abc}}
danielk1977c87d34d2006-01-06 13:00:28 +0000294do_test shared-4.3.3 {
295 catchsql {
296 CREATE TABLE ghi(g, h, i);
297 }
danielk1977c00da102006-01-07 13:21:04 +0000298} {1 {database table is locked: sqlite_master}}
danielk1977c87d34d2006-01-06 13:00:28 +0000299do_test shared-4.3.3 {
300 catchsql {
301 INSERT INTO def VALUES('IV', 'V', 'VI');
302 }
303} {0 {}}
304do_test shared-4.3.4 {
305 # Cleanup: commit the transaction opened by db2.
306 execsql {
307 COMMIT
308 } db2
309} {}
310
311# Open a write-transaction using handle 1 and modify the database schema.
312# Then try to execute a compiled statement to read from the same
313# database via handle 2 (fails to get the lock on sqlite_master). Also
314# try to compile a read of the same database using handle 2 (also fails).
315# Finally, compile a read of the other database using handle 2. This
316# should also fail.
317#
318do_test shared-4.4.1.2 {
319 # Sanity check 1: Check that the schema is what we think it is when viewed
320 # via handle 1.
321 execsql {
322 CREATE TABLE test2.ghi(g, h, i);
323 SELECT 'test.db:'||name FROM sqlite_master
324 UNION ALL
325 SELECT 'test2.db:'||name FROM test2.sqlite_master;
326 }
327} {test.db:abc test.db:def test2.db:ghi}
328do_test shared-4.4.1.2 {
329 # Sanity check 2: Check that the schema is what we think it is when viewed
330 # via handle 2.
331 execsql {
332 SELECT 'test2.db:'||name FROM sqlite_master
333 UNION ALL
334 SELECT 'test.db:'||name FROM test.sqlite_master;
335 } db2
336} {test2.db:ghi test.db:abc test.db:def}
337
338do_test shared-4.4.2 {
339 set ::DB2 [sqlite3_connection_pointer db2]
340 set sql {SELECT * FROM abc}
341 set ::STMT1 [sqlite3_prepare $::DB2 $sql -1 DUMMY]
342 execsql {
343 BEGIN;
344 CREATE TABLE jkl(j, k, l);
345 }
346 sqlite3_step $::STMT1
347} {SQLITE_ERROR}
348do_test shared-4.4.3 {
349 sqlite3_finalize $::STMT1
350} {SQLITE_LOCKED}
351do_test shared-4.4.4 {
352 set rc [catch {
353 set ::STMT1 [sqlite3_prepare $::DB2 $sql -1 DUMMY]
354 } msg]
355 list $rc $msg
356} {1 {(6) database schema is locked: test}}
357do_test shared-4.4.5 {
358 set rc [catch {
359 set ::STMT1 [sqlite3_prepare $::DB2 "SELECT * FROM ghi" -1 DUMMY]
360 } msg]
361 list $rc $msg
362} {1 {(6) database schema is locked: test}}
363
danielk1977aaf22682006-01-06 15:03:48 +0000364
danielk1977de0fe3e2006-01-06 06:33:12 +0000365catch {db2 close}
366catch {db close}
367
danielk1977aaf22682006-01-06 15:03:48 +0000368#--------------------------------------------------------------------------
369# Tests shared-5.*
370#
371foreach db [list test.db test1.db test2.db test3.db] {
372 file delete -force $db ${db}-journal
373}
374do_test shared-5.1.1 {
375 sqlite3 db1 test.db
376 sqlite3 db2 test.db
377 execsql {
378 ATTACH 'test1.db' AS test1;
379 ATTACH 'test2.db' AS test2;
380 ATTACH 'test3.db' AS test3;
381 } db1
382 execsql {
383 ATTACH 'test3.db' AS test3;
384 ATTACH 'test2.db' AS test2;
385 ATTACH 'test1.db' AS test1;
386 } db2
387} {}
388do_test shared-5.1.2 {
389 execsql {
390 CREATE TABLE test1.t1(a, b);
391 CREATE INDEX test1.i1 ON t1(a, b);
392 CREATE VIEW test1.v1 AS SELECT * FROM t1;
393 CREATE TRIGGER test1.trig1 AFTER INSERT ON t1 BEGIN
394 INSERT INTO t1 VALUES(new.a, new.b);
395 END;
396 } db1
397 execsql {
398 DROP INDEX i1;
399 DROP VIEW v1;
400 DROP TRIGGER trig1;
401 DROP TABLE t1;
402 } db2
403} {}
404do_test shared-5.1.2 {
405 execsql {
406 SELECT * FROM sqlite_master UNION ALL SELECT * FROM test1.sqlite_master
407 } db1
408} {}
409
danielk1977c00da102006-01-07 13:21:04 +0000410#--------------------------------------------------------------------------
411# Tests shared-6.* test that a query obtains all the read-locks it needs
412# before starting execution of the query. This means that there is no chance
413# some rows of data will be returned before a lock fails and SQLITE_LOCK
414# is returned.
415#
416do_test shared-6.1.1 {
417 execsql {
418 CREATE TABLE t1(a, b);
419 CREATE TABLE t2(a, b);
420 INSERT INTO t1 VALUES(1, 2);
421 INSERT INTO t2 VALUES(3, 4);
422 } db1
423 execsql {
424 SELECT * FROM t1 UNION ALL SELECT * FROM t2;
425 } db2
426} {1 2 3 4}
427do_test shared-6.1.2 {
428 # Establish a write lock on table t2 via connection db2. Then make a
429 # UNION all query using connection db1 that first accesses t1, followed
430 # by t2. If the locks are grabbed at the start of the statement (as
431 # they should be), no rows are returned. If (as was previously the case)
432 # they are grabbed as the tables are accessed, the t1 rows will be
433 # returned before the query fails.
434 #
435 execsql {
436 BEGIN;
437 INSERT INTO t2 VALUES(5, 6);
438 } db2
439 set ret [list]
440 catch {
441 db1 eval {SELECT * FROM t1 UNION ALL SELECT * FROM t2} {
442 lappend ret $a $b
443 }
444 }
445 set ret
446} {}
447do_test shared-6.1.3 {
448 execsql {
449 COMMIT;
450 BEGIN;
451 INSERT INTO t1 VALUES(7, 8);
452 } db2
453 set ret [list]
454 catch {
455 db1 eval {
456 SELECT (CASE WHEN a>4 THEN (SELECT a FROM t1) ELSE 0 END) AS d FROM t2;
457 } {
458 lappend ret $d
459 }
460 }
461 set ret
462} {}
463
danielk1977aaf22682006-01-06 15:03:48 +0000464catch {db1 close}
465catch {db2 close}
danielk1977e501b892006-01-09 06:29:47 +0000466foreach f [list test.db test2.db] {
467 file delete -force $f ${f}-journal
468}
469
470#--------------------------------------------------------------------------
471# Tests shared-7.* test auto-vacuum does not invalidate cursors from
472# other shared-cache users when it reorganizes the database on
473# COMMIT.
474#
475do_test shared-7.1 {
danielk197714db2662006-01-09 16:12:04 +0000476 # This test case sets up a test database in auto-vacuum mode consisting
477 # of two tables, t1 and t2. Both have a single index. Table t1 is
478 # populated first (so consists of pages toward the start of the db file),
479 # t2 second (pages toward the end of the file).
danielk1977e501b892006-01-09 06:29:47 +0000480 sqlite3 db test.db
481 sqlite3 db2 test.db
482 execsql {
483 PRAGMA auto_vacuum = 1;
484 BEGIN;
485 CREATE TABLE t1(a PRIMARY KEY, b);
486 CREATE TABLE t2(a PRIMARY KEY, b);
487 }
drh7a91dd82006-01-11 01:08:34 +0000488 set ::contents {}
danielk1977e501b892006-01-09 06:29:47 +0000489 for {set i 0} {$i < 100} {incr i} {
490 set a [string repeat "$i " 20]
491 set b [string repeat "$i " 20]
492 db eval {
493 INSERT INTO t1 VALUES($a, $b);
494 }
495 lappend ::contents [list [expr $i+1] $a $b]
496 }
497 execsql {
498 INSERT INTO t2 SELECT * FROM t1;
499 COMMIT;
500 }
501 execsql {
502 PRAGMA auto_vacuum;
503 }
504} {1}
505do_test shared-7.2 {
danielk197714db2662006-01-09 16:12:04 +0000506 # This test case deletes the contents of table t1 (the one at the start of
507 # the file) while many cursors are open on table t2 and it's index. All of
508 # the non-root pages will be moved from the end to the start of the file
509 # when the DELETE is committed - this test verifies that moving the pages
510 # does not disturb the open cursors.
511 #
512
danielk1977e501b892006-01-09 06:29:47 +0000513 proc lockrow {db tbl oids body} {
514 set ret [list]
515 db eval "SELECT oid AS i, a, b FROM $tbl ORDER BY a" {
516 if {$i==[lindex $oids 0]} {
517 set noids [lrange $oids 1 end]
518 if {[llength $noids]==0} {
519 set subret [eval $body]
520 } else {
521 set subret [lockrow $db $tbl $noids $body]
522 }
523 }
524 lappend ret [list $i $a $b]
525 }
526 return [linsert $subret 0 $ret]
527 }
528 proc locktblrows {db tbl body} {
529 set oids [db eval "SELECT oid FROM $tbl"]
530 lockrow $db $tbl $oids $body
531 }
532
533 set scans [locktblrows db t2 {
534 execsql {
535 DELETE FROM t1;
536 } db2
537 }]
538 set error 0
danielk197714db2662006-01-09 16:12:04 +0000539
540 # Test that each SELECT query returned the expected contents of t2.
danielk1977e501b892006-01-09 06:29:47 +0000541 foreach s $scans {
542 if {[lsort -integer -index 0 $s]!=$::contents} {
543 set error 1
544 }
545 }
546 set error
547} {0}
548
549catch {db close}
550catch {db2 close}
drh7a91dd82006-01-11 01:08:34 +0000551unset -nocomplain contents
danielk1977aaf22682006-01-06 15:03:48 +0000552
danielk197714db2662006-01-09 16:12:04 +0000553#--------------------------------------------------------------------------
554# The following tests try to trick the shared-cache code into assuming
555# the wrong encoding for a database.
556#
557file delete -force test.db test.db-journal
558do_test shared-8.1.1 {
559 sqlite3 db test.db
560 execsql {
561 PRAGMA encoding = 'UTF-16';
562 SELECT * FROM sqlite_master;
563 }
564} {}
565do_test shared-8.1.2 {
566 string range [execsql {PRAGMA encoding;}] 0 end-2
567} {UTF-16}
568do_test shared-8.1.3 {
569 sqlite3 db2 test.db
570 execsql {
571 PRAGMA encoding = 'UTF-8';
572 CREATE TABLE abc(a, b, c);
573 } db2
574} {}
575do_test shared-8.1.4 {
576 execsql {
577 SELECT * FROM sqlite_master;
578 }
579} "table abc abc [expr $AUTOVACUUM?3:2] {CREATE TABLE abc(a, b, c)}"
580do_test shared-8.1.5 {
581 db2 close
582 execsql {
583 PRAGMA encoding;
584 }
585} {UTF-8}
586file delete -force test2.db test2.db-journal
587do_test shared-8.2.1 {
588 execsql {
589 ATTACH 'test2.db' AS aux;
590 SELECT * FROM aux.sqlite_master;
591 }
592} {}
593do_test shared-8.2.2 {
594 sqlite3 db2 test2.db
595 execsql {
596 PRAGMA encoding = 'UTF-16';
597 CREATE TABLE def(d, e, f);
598 } db2
599 string range [execsql {PRAGMA encoding;} db2] 0 end-2
600} {UTF-16}
601do_test shared-8.2.3 {
602 catchsql {
603 SELECT * FROM aux.sqlite_master;
604 }
605} {1 {attached databases must use the same text encoding as main database}}
606
607catch {db close}
608catch {db2 close}
danielk1977eecfb3e2006-01-10 12:31:39 +0000609file delete -force test.db test2.db
610
danielk1977eecfb3e2006-01-10 12:31:39 +0000611#---------------------------------------------------------------------------
612# The following tests - shared-9.* - test interactions between TEMP triggers
613# and shared-schemas.
614#
615ifcapable trigger&&tempdb {
616
617do_test shared-9.1 {
618 sqlite3 db test.db
619 sqlite3 db2 test.db
620 execsql {
621 CREATE TABLE abc(a, b, c);
622 CREATE TABLE abc_mirror(a, b, c);
623 CREATE TEMP TRIGGER BEFORE INSERT ON abc BEGIN
624 INSERT INTO abc_mirror(a, b, c) VALUES(new.a, new.b, new.c);
625 END;
626 INSERT INTO abc VALUES(1, 2, 3);
627 SELECT * FROM abc_mirror;
628 }
629} {1 2 3}
630do_test shared-9.2 {
631 execsql {
632 INSERT INTO abc VALUES(4, 5, 6);
633 SELECT * FROM abc_mirror;
634 } db2
635} {1 2 3}
636do_test shared-9.3 {
637 db close
638 db2 close
639} {}
640
641} ; # End shared-9.*
danielk197714db2662006-01-09 16:12:04 +0000642
danielk1977aef0bf62005-12-30 16:28:01 +0000643finish_test
644sqlite3_enable_shared_cache $::enable_shared_cache