Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(122)

Unified Diff: third_party/sqlite/src/test/fts3tok1.test

Issue 1610963002: Import SQLite 3.10.2. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/sqlite/src/test/fts3snippet.test ('k') | third_party/sqlite/src/test/fts4check.test » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/sqlite/src/test/fts3tok1.test
diff --git a/third_party/sqlite/src/test/fts3tok1.test b/third_party/sqlite/src/test/fts3tok1.test
index e6fbbe10a23b54cf5e5f24e7507865614ea358f9..09b07e9db19708ba3b42bc9c5e056dae77850754 100644
--- a/third_party/sqlite/src/test/fts3tok1.test
+++ b/third_party/sqlite/src/test/fts3tok1.test
@@ -110,5 +110,15 @@ do_catchsql_test 2.1 {
SELECT * FROM t4;
} {1 {SQL logic error or missing database}}
+do_catchsql_test 2.2 {
+ CREATE VIRTUAL TABLE t USING fts4(tokenize=simple"");
+} {0 {}}
+
+ifcapable fts3_unicode {
+ do_catchsql_test 2.3 {
+ CREATE VIRTUAL TABLE u USING fts4(tokenize=unicode61"");
+ } {1 {unknown tokenizer}}
+}
+
finish_test
« no previous file with comments | « third_party/sqlite/src/test/fts3snippet.test ('k') | third_party/sqlite/src/test/fts4check.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698