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 #***********************************************************************
11 # This file tests interactions between the virtual table and
12 # shared-schema functionality.
14 # $Id: vtab_shared.test,v 1.2 2008/03/19 13:03:34 drh Exp $
16 set testdir [file dirname $argv0]
17 source $testdir/tester.tcl
19 ifcapable !vtab||!shared_cache {
25 sqlite3_enable_shared_cache 1
28 do_test vtab_shared-1.0 {
29 register_echo_module [sqlite3_connection_pointer db]
31 CREATE TABLE t0(a, b, c);
32 CREATE VIRTUAL TABLE t1 USING echo(t0);
34 } {1 {Cannot use virtual tables in shared-cache mode}}
37 sqlite3_enable_shared_cache 0
40 do_test vtab_shared-1.1 {
41 register_echo_module [sqlite3_connection_pointer db]
43 CREATE VIRTUAL TABLE t1 USING echo(t0);
48 sqlite3_enable_shared_cache 1
51 do_test vtab_shared-1.2 {
52 register_echo_module [sqlite3_connection_pointer db]
57 {malformed database schema (t1) - Cannot use virtual tables in shared-cache mode}]
60 sqlite3_enable_shared_cache 0