Index: third_party/sqlite/src/test/fts3malloc.test |
diff --git a/third_party/sqlite/src/test/fts3malloc.test b/third_party/sqlite/src/test/fts3malloc.test |
index 932ea098d0b2fd38f364b0f46dd47c918db73c52..ed30fe24c8ab0928bae84471e7b8c9e2ad302d2b 100644 |
--- a/third_party/sqlite/src/test/fts3malloc.test |
+++ b/third_party/sqlite/src/test/fts3malloc.test |
@@ -62,6 +62,9 @@ do_error_test fts3_malloc-1.5 { |
do_write_test fts3_malloc-1.6 sqlite_master { |
CREATE VIRTUAL TABLE ft6 USING fts3(a, b, tokenize porter) |
} |
+do_write_test fts3_malloc-1.7 sqlite_master { |
+ CREATE VIRTUAL TABLE ft7 USING fts4(a, b, notindexed=b) |
+} |
# Test the xConnect/xDisconnect methods: |
#db eval { ATTACH 'test2.db' AS aux } |
@@ -81,6 +84,7 @@ do_test fts3_malloc-2.0 { |
DROP TABLE ft3; |
DROP TABLE ft4; |
DROP TABLE ft6; |
+ DROP TABLE ft7; |
} |
execsql { CREATE VIRTUAL TABLE ft USING fts3(a, b) } |
for {set ii 1} {$ii < 32} {incr ii} { |
@@ -294,10 +298,10 @@ do_write_test fts3_malloc-5.1 ft_content { |
do_test fts3_malloc-5.2 { |
execsql { CREATE VIRTUAL TABLE ft8 USING fts3(x, tokenize porter) } |
} {} |
+ |
do_write_test fts3_malloc-5.3 ft_content { |
INSERT INTO ft8 VALUES('short alongertoken reallyquitealotlongerimeanit andthistokenisjustsolongthatonemightbeforgivenforimaginingthatitwasmerelyacontrivedexampleandnotarealtoken') |
} |
finish_test |
- |