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 implements regression tests for SQLite library. The
12 # focus of this script is testing the FTS3 module. More specifically,
13 # that DROP TABLE commands can co-exist with savepoints inside transactions.
14 # See ticket [48f299634a] for details.
18 set testdir [file dirname $argv0]
19 source $testdir/tester.tcl
20 set testprefix fts3drop
22 # If SQLITE_ENABLE_FTS3 is defined, omit this file.
29 CREATE VIRTUAL TABLE f1 USING fts3;
30 INSERT INTO f1 VALUES('a b c');
35 INSERT INTO f1 VALUES('d e f');
37 INSERT INTO f1 VALUES('g h i');
49 INSERT INTO f1 VALUES('g h i');
51 INSERT INTO f1 VALUES('j k l');