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

Unified Diff: third_party/sqlite/src/test/alter.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/affinity3.test ('k') | third_party/sqlite/src/test/alter3.test » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/sqlite/src/test/alter.test
diff --git a/third_party/sqlite/src/test/alter.test b/third_party/sqlite/src/test/alter.test
index ebfe97a764ac11b776c2d9a46a98ef990e63c6b2..76c18cedc9df216bdd4bf773ee431f59a9355c46 100644
--- a/third_party/sqlite/src/test/alter.test
+++ b/third_party/sqlite/src/test/alter.test
@@ -77,7 +77,7 @@ do_test alter-1.2 {
ifcapable tempdb {
execsql {
INSERT INTO objlist SELECT type, name, tbl_name
- FROM sqlite_temp_master WHERE NAME!='objlist';
+ FROM temp.sqlite_master WHERE NAME!='objlist';
}
}
@@ -153,7 +153,7 @@ ifcapable tempdb {
CREATE TEMP TABLE objlist(type, name, tbl_name);
INSERT INTO objlist SELECT type, name, tbl_name FROM sqlite_master;
INSERT INTO objlist
- SELECT type, name, tbl_name FROM sqlite_temp_master
+ SELECT type, name, tbl_name FROM temp.sqlite_master
WHERE NAME!='objlist';
SELECT type, name, tbl_name FROM objlist
ORDER BY tbl_name, type desc, name;
@@ -524,7 +524,7 @@ do_test alter-3.3.7 {
ifcapable tempdb {
do_test alter-3.3.8 {
execsql {
- SELECT * FROM sqlite_temp_master WHERE type = 'trigger';
+ SELECT * FROM temp.sqlite_master WHERE type = 'trigger';
}
} {}
}
« no previous file with comments | « third_party/sqlite/src/test/affinity3.test ('k') | third_party/sqlite/src/test/alter3.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698