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

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

Issue 2751253002: [sql] Import SQLite 3.17.0. (Closed)
Patch Set: also clang on Linux i386 Created 3 years, 9 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/stat.test ('k') | third_party/sqlite/src/test/subselect.test » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/sqlite/src/test/stmt.test
diff --git a/third_party/sqlite/src/test/stmt.test b/third_party/sqlite/src/test/stmt.test
index 49a41414b779dc1f9cd113a5aaf9a4337d431bf2..df501f76547024eeffe778644242f2e06cc4669c 100644
--- a/third_party/sqlite/src/test/stmt.test
+++ b/third_party/sqlite/src/test/stmt.test
@@ -46,7 +46,8 @@ do_test stmt-1.4 {
INSERT INTO t1 SELECT a+1, b+1 FROM t1;
}
set sqlite_open_file_count
-} {3}
+ # 2016-03-04: statement-journal open deferred
+} {2}
do_test stmt-1.5 {
execsql COMMIT
set sqlite_open_file_count
@@ -61,7 +62,8 @@ do_test stmt-1.6.1 {
do_test stmt-1.6.2 {
execsql { INSERT INTO t1 SELECT a+4, b+4 FROM t1 }
set sqlite_open_file_count
-} {3}
+ # 2016-03-04: statement-journal open deferred
+} {2}
do_test stmt-1.7 {
execsql COMMIT
set sqlite_open_file_count
@@ -84,7 +86,7 @@ filecount stmt-2.3 { INSERT INTO t1 SELECT 9, 9 } 2
filecount stmt-2.4 {
INSERT INTO t1 SELECT 9, 9;
INSERT INTO t1 SELECT 10, 10;
-} 3
+} 2
do_test stmt-2.5 {
execsql { CREATE INDEX i1 ON t1(b) }
@@ -92,6 +94,6 @@ do_test stmt-2.5 {
filecount stmt-2.6 {
REPLACE INTO t1 VALUES(5, 5);
REPLACE INTO t1 VALUES(5, 5);
-} 3
+} 2
finish_test
« no previous file with comments | « third_party/sqlite/src/test/stat.test ('k') | third_party/sqlite/src/test/subselect.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698