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

Unified Diff: third_party/sqlite/src/test/attach3.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/attach.test ('k') | third_party/sqlite/src/test/auth.test » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/sqlite/src/test/attach3.test
diff --git a/third_party/sqlite/src/test/attach3.test b/third_party/sqlite/src/test/attach3.test
index 1ac10d97a49a691bb8572ae6f51b3ad052accef4..1c8601c7b35472b8139a5a1d0b1d8d7848f94ebe 100644
--- a/third_party/sqlite/src/test/attach3.test
+++ b/third_party/sqlite/src/test/attach3.test
@@ -207,7 +207,7 @@ ifcapable tempdb {
CREATE TEMP TRIGGER tst_trigger BEFORE INSERT ON aux.t4 BEGIN
SELECT 'hello world';
END;
- SELECT count(*) FROM sqlite_temp_master;
+ SELECT count(*) FROM temp.sqlite_master;
}
} {1}
do_test attach3-9.1 {
@@ -219,7 +219,7 @@ ifcapable tempdb {
do_test attach3-9.2 {
execsql {
DROP TABLE aux.t4;
- SELECT count(*) FROM sqlite_temp_master;
+ SELECT count(*) FROM temp.sqlite_master;
}
} {0}
}
« no previous file with comments | « third_party/sqlite/src/test/attach.test ('k') | third_party/sqlite/src/test/auth.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698