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 # TESTRUNNER: superslow
15 source [file join [file dirname [info script]] fts5_common.tcl]
16 set testprefix fts5optimize2
18 # If SQLITE_ENABLE_FTS5 is defined, omit this file.
27 CREATE VIRTUAL TABLE t2 USING fts5(x);
28 INSERT INTO t2(t2, rank) VALUES('pgsz', 32);
32 for {set ii 0} {$ii < $nLoop} {incr ii} {
34 INSERT INTO t2 VALUES('abc def ghi');
35 INSERT INTO t2 VALUES('jkl mno pqr');
36 INSERT INTO t2(t2, rank) VALUES('merge', -1);
42 SELECT count(*) FROM t2('mno')