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

Unified Diff: third_party/sqlite/sqlite-src-3100200/ext/fts5/test/fts5ai.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/fts5ai.test
diff --git a/third_party/sqlite/sqlite-src-3100200/ext/fts5/test/fts5ai.test b/third_party/sqlite/sqlite-src-3100200/ext/fts5/test/fts5ai.test
new file mode 100644
index 0000000000000000000000000000000000000000..63c46fd04246bb377f5c83a210165f32093f9ef2
--- /dev/null
+++ b/third_party/sqlite/sqlite-src-3100200/ext/fts5/test/fts5ai.test
@@ -0,0 +1,55 @@
+# 2014 June 17
+#
+# 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.
+#
+#*************************************************************************
+# This file implements regression tests for SQLite library. The
+# focus of this script is testing the FTS5 module.
+#
+# Specifically, it tests transactions and savepoints
+#
+
+source [file join [file dirname [info script]] fts5_common.tcl]
+set testprefix fts5ai
+
+# If SQLITE_ENABLE_FTS5 is defined, omit this file.
+ifcapable !fts5 {
+ finish_test
+ return
+}
+
+do_execsql_test 1.0 {
+ CREATE VIRTUAL TABLE t1 USING fts5(a);
+} {}
+
+do_execsql_test 1.1 {
+ BEGIN;
+ INSERT INTO t1 VALUES('a b c');
+ INSERT INTO t1 VALUES('d e f');
+ SAVEPOINT one;
+ INSERT INTO t1 VALUES('g h i');
+ SAVEPOINT two;
+ INSERT INTO t1 VALUES('j k l');
+ ROLLBACK TO one;
+ INSERT INTO t1 VALUES('m n o');
+ SAVEPOINT two;
+ INSERT INTO t1 VALUES('p q r');
+ RELEASE one;
+ SAVEPOINT one;
+ INSERT INTO t1 VALUES('s t u');
+ ROLLBACK TO one;
+ COMMIT;
+}
+
+do_execsql_test 1.2 {
+ INSERT INTO t1(t1) VALUES('integrity-check');
+}
+
+
+finish_test
+

Powered by Google App Engine
This is Rietveld 408576698