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

Unified Diff: third_party/sqlite/src/test/e_dropview.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/e_blobwrite.test ('k') | third_party/sqlite/src/test/e_expr.test » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/sqlite/src/test/e_dropview.test
diff --git a/third_party/sqlite/src/test/e_dropview.test b/third_party/sqlite/src/test/e_dropview.test
index 143dce2907d1ffc1338f65b9cfbc5205653d4fe2..04c4ad8c4b678eb9c54b4f682fb22b2c4108d65a 100644
--- a/third_party/sqlite/src/test/e_dropview.test
+++ b/third_party/sqlite/src/test/e_dropview.test
@@ -45,7 +45,7 @@ proc list_all_views {{db db}} {
set res [list]
$db eval { PRAGMA database_list } {
set tbl "$name.sqlite_master"
- if {$name == "temp"} { set tbl sqlite_temp_master }
+ if {$name == "temp"} { set tbl temp.sqlite_master }
set sql "SELECT '$name.' || name FROM $tbl WHERE type = 'view'"
lappend res {*}[$db eval $sql]
« no previous file with comments | « third_party/sqlite/src/test/e_blobwrite.test ('k') | third_party/sqlite/src/test/e_expr.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698