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.
14 # $Id: fts3aa.test,v 1.1 2007/08/20 17:38:42 shess Exp $
17 set testdir [file dirname $argv0]
18 source $testdir/tester.tcl
21 # If SQLITE_ENABLE_FTS3 is defined, omit this file.
28 CREATE VIRTUAL TABLE ft USING fts3(x);
30 INSERT INTO ft VALUES('a one'), ('b one'), ('c one');
35 db eval { SELECT docid FROM ft WHERE ft MATCH 'one' } {
46 INSERT INTO ft VALUES('a one'), ('b one'), ('c one');
50 SELECT docid, optimize(ft) FROM ft WHERE ft MATCH 'one'
52 1 {Index optimized} 2 {Index already optimal} 3 {Index already optimal}
53 4 {Index already optimal}
54 5 {Index already optimal} 6 {Index already optimal}