summaryrefslogtreecommitdiffstats
path: root/third_party/sqlite/src/test/fts3ad.test
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/sqlite/src/test/fts3ad.test')
-rw-r--r--third_party/sqlite/src/test/fts3ad.test41
1 files changed, 0 insertions, 41 deletions
diff --git a/third_party/sqlite/src/test/fts3ad.test b/third_party/sqlite/src/test/fts3ad.test
index e373339..420b5b2 100644
--- a/third_party/sqlite/src/test/fts3ad.test
+++ b/third_party/sqlite/src/test/fts3ad.test
@@ -61,46 +61,5 @@ do_test fts3ad-1.6 {
}
} {3 {The value is <b>123456789</b>}}
-do_test fts3ad-2.1 {
- execsql {
- DROP TABLE t1;
- CREATE VIRTUAL TABLE t1 USING fts3(content, tokenize porter);
- INSERT INTO t1(rowid, content) VALUES(1, 'running and jumping');
- SELECT rowid FROM t1 WHERE content MATCH 'run jump';
- }
-} {1}
-do_test fts3ad-2.2 {
- execsql {
- DROP TABLE t1;
- CREATE VIRTUAL TABLE t1 USING fts3(content, tokenize= porter);
- INSERT INTO t1(rowid, content) VALUES(1, 'running and jumping');
- SELECT rowid FROM t1 WHERE content MATCH 'run jump';
- }
-} {1}
-do_test fts3ad-2.3 {
- execsql {
- DROP TABLE t1;
- CREATE VIRTUAL TABLE t1 USING fts3(content, tokenize= simple);
- INSERT INTO t1(rowid, content) VALUES(1, 'running and jumping');
- SELECT rowid FROM t1 WHERE content MATCH 'run jump';
- }
-} {}
-do_test fts3ad-2.4 {
- execsql {
- DROP TABLE t1;
- CREATE VIRTUAL TABLE t1 USING fts3(content, tokenize= porter);
- INSERT INTO t1(rowid, content) VALUES(1, 'running and jumping');
- SELECT rowid FROM t1 WHERE content MATCH 'run jump';
- }
-} {1}
-do_test fts3ad-2.5 {
- execsql {
- DROP TABLE t1;
- CREATE VIRTUAL TABLE t1 USING fts3(content, tokenize = porter);
- INSERT INTO t1(rowid, content) VALUES(1, 'running and jumping');
- SELECT rowid FROM t1 WHERE content MATCH 'run jump';
- }
-} {1}
-
finish_test