os/persistentdata/persistentstorage/sqlite3api/TEST/TclScript/fts3aj.test
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
# 2007 February 6
sl@0
     2
#
sl@0
     3
# The author disclaims copyright to this source code.
sl@0
     4
#
sl@0
     5
#*************************************************************************
sl@0
     6
# This file implements regression tests for SQLite library.  This
sl@0
     7
# tests creating fts3 tables in an attached database.
sl@0
     8
#
sl@0
     9
# $Id: fts3aj.test,v 1.1 2007/08/20 17:38:42 shess Exp $
sl@0
    10
#
sl@0
    11
sl@0
    12
set testdir [file dirname $argv0]
sl@0
    13
source $testdir/tester.tcl
sl@0
    14
sl@0
    15
# If SQLITE_ENABLE_FTS3 is defined, omit this file.
sl@0
    16
ifcapable !fts3 {
sl@0
    17
  finish_test
sl@0
    18
  return
sl@0
    19
}
sl@0
    20
sl@0
    21
# Clean up anything left over from a previous pass.
sl@0
    22
file delete -force test2.db
sl@0
    23
file delete -force test2.db-journal
sl@0
    24
sqlite3 db2 test2.db
sl@0
    25
sl@0
    26
db eval {
sl@0
    27
  CREATE VIRTUAL TABLE t3 USING fts3(content);
sl@0
    28
  INSERT INTO t3 (rowid, content) VALUES(1, "hello world");
sl@0
    29
}
sl@0
    30
sl@0
    31
db2 eval {
sl@0
    32
  CREATE VIRTUAL TABLE t1 USING fts3(content);
sl@0
    33
  INSERT INTO t1 (rowid, content) VALUES(1, "hello world");
sl@0
    34
  INSERT INTO t1 (rowid, content) VALUES(2, "hello there");
sl@0
    35
  INSERT INTO t1 (rowid, content) VALUES(3, "cruel world");
sl@0
    36
}
sl@0
    37
sl@0
    38
# This has always worked because the t1_* tables used by fts3 will be
sl@0
    39
# the defaults.
sl@0
    40
do_test fts3aj-1.1 {
sl@0
    41
  execsql {
sl@0
    42
    ATTACH DATABASE 'test2.db' AS two;
sl@0
    43
    SELECT rowid FROM t1 WHERE t1 MATCH 'hello';
sl@0
    44
    DETACH DATABASE two;
sl@0
    45
  }
sl@0
    46
} {1 2}
sl@0
    47
# Make certain we're detached if there was an error.
sl@0
    48
catch {db eval {DETACH DATABASE two}}
sl@0
    49
sl@0
    50
# In older code, this appears to work fine, but the t2_* tables used
sl@0
    51
# by fts3 will be created in database 'main' instead of database
sl@0
    52
# 'two'.  It appears to work fine because the tables end up being the
sl@0
    53
# defaults, but obviously is badly broken if you hope to use things
sl@0
    54
# other than in the exact same ATTACH setup.
sl@0
    55
do_test fts3aj-1.2 {
sl@0
    56
  execsql {
sl@0
    57
    ATTACH DATABASE 'test2.db' AS two;
sl@0
    58
    CREATE VIRTUAL TABLE two.t2 USING fts3(content);
sl@0
    59
    INSERT INTO t2 (rowid, content) VALUES(1, "hello world");
sl@0
    60
    INSERT INTO t2 (rowid, content) VALUES(2, "hello there");
sl@0
    61
    INSERT INTO t2 (rowid, content) VALUES(3, "cruel world");
sl@0
    62
    SELECT rowid FROM t2 WHERE t2 MATCH 'hello';
sl@0
    63
    DETACH DATABASE two;
sl@0
    64
  }
sl@0
    65
} {1 2}
sl@0
    66
catch {db eval {DETACH DATABASE two}}
sl@0
    67
sl@0
    68
# In older code, this broke because the fts3 code attempted to create
sl@0
    69
# t3_* tables in database 'main', but they already existed.  Normally
sl@0
    70
# this wouldn't happen without t3 itself existing, in which case the
sl@0
    71
# fts3 code would never be called in the first place.
sl@0
    72
do_test fts3aj-1.3 {
sl@0
    73
  execsql {
sl@0
    74
    ATTACH DATABASE 'test2.db' AS two;
sl@0
    75
sl@0
    76
    CREATE VIRTUAL TABLE two.t3 USING fts3(content);
sl@0
    77
    INSERT INTO two.t3 (rowid, content) VALUES(2, "hello there");
sl@0
    78
    INSERT INTO two.t3 (rowid, content) VALUES(3, "cruel world");
sl@0
    79
    SELECT rowid FROM two.t3 WHERE t3 MATCH 'hello';
sl@0
    80
sl@0
    81
    DETACH DATABASE two;
sl@0
    82
  } db2
sl@0
    83
} {2}
sl@0
    84
catch {db eval {DETACH DATABASE two}}
sl@0
    85
sl@0
    86
catch {db2 close}
sl@0
    87
file delete -force test2.db
sl@0
    88
sl@0
    89
finish_test