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

Unified Diff: third_party/sqlite/sqlite-src-3100200/ext/fts5/test/fts5rebuild.test

Issue 1610543003: [sql] Import reference version of 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
Index: third_party/sqlite/sqlite-src-3100200/ext/fts5/test/fts5rebuild.test
diff --git a/third_party/sqlite/sqlite-src-3100200/ext/fts5/test/fts5rebuild.test b/third_party/sqlite/sqlite-src-3100200/ext/fts5/test/fts5rebuild.test
new file mode 100644
index 0000000000000000000000000000000000000000..1044421d5e5835a58be2b47218d0e734bb723983
--- /dev/null
+++ b/third_party/sqlite/sqlite-src-3100200/ext/fts5/test/fts5rebuild.test
@@ -0,0 +1,67 @@
+# 2014 Dec 20
+#
+# The author disclaims copyright to this source code. In place of
+# a legal notice, here is a blessing:
+#
+# May you do good and not evil.
+# May you find forgiveness for yourself and forgive others.
+# May you share freely, never taking more than you give.
+#
+#***********************************************************************
+#
+#
+
+source [file join [file dirname [info script]] fts5_common.tcl]
+set testprefix fts5rebuild
+
+# If SQLITE_ENABLE_FTS5 is defined, omit this file.
+ifcapable !fts5 {
+ finish_test
+ return
+}
+
+do_execsql_test 1.1 {
+ CREATE VIRTUAL TABLE f1 USING fts5(a, b);
+ INSERT INTO f1(a, b) VALUES('one', 'o n e');
+ INSERT INTO f1(a, b) VALUES('two', 't w o');
+ INSERT INTO f1(a, b) VALUES('three', 't h r e e');
+}
+
+do_execsql_test 1.2 {
+ INSERT INTO f1(f1) VALUES('integrity-check');
+} {}
+
+do_execsql_test 1.3 {
+ INSERT INTO f1(f1) VALUES('rebuild');
+} {}
+
+do_execsql_test 1.4 {
+ INSERT INTO f1(f1) VALUES('integrity-check');
+} {}
+
+do_execsql_test 1.5 {
+ DELETE FROM f1_data;
+} {}
+
+do_catchsql_test 1.6 {
+ INSERT INTO f1(f1) VALUES('integrity-check');
+} {1 {database disk image is malformed}}
+
+do_execsql_test 1.7 {
+ INSERT INTO f1(f1) VALUES('rebuild');
+ INSERT INTO f1(f1) VALUES('integrity-check');
+} {}
+
+
+#-------------------------------------------------------------------------
+# Check that 'rebuild' may not be used with a contentless table.
+#
+do_execsql_test 2.1 {
+ CREATE VIRTUAL TABLE nc USING fts5(doc, content=);
+}
+
+do_catchsql_test 2.2 {
+ INSERT INTO nc(nc) VALUES('rebuild');
+} {1 {'rebuild' may not be used with a contentless fts5 table}}
+finish_test
+

Powered by Google App Engine
This is Rietveld 408576698