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

Unified Diff: third_party/sqlite/src/test/tkt3630.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/tkt-ba7cbfaedc.test ('k') | third_party/sqlite/src/test/tkt3810.test » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/sqlite/src/test/tkt3630.test
diff --git a/third_party/sqlite/src/test/tkt3630.test b/third_party/sqlite/src/test/tkt3630.test
index b329c48dcfafad56fba3e28484fb7893a8999022..1fe7ce70fa5f75b43198194807655741d5302b03 100644
--- a/third_party/sqlite/src/test/tkt3630.test
+++ b/third_party/sqlite/src/test/tkt3630.test
@@ -23,7 +23,7 @@ source $testdir/tester.tcl
do_test tkt3630-1 {
db eval {
CREATE TEMP TABLE temp1(a,b,c);
- SELECT * FROM sqlite_temp_master WHERE sql GLOB '*TEMP*';
+ SELECT * FROM temp.sqlite_master WHERE sql GLOB '*TEMP*';
}
} {}
do_test tkt3630-2 {
@@ -39,7 +39,7 @@ ifcapable altertable {
db eval {
ALTER TABLE temp2 ADD COLUMN d;
ALTER TABLE temp2 RENAME TO temp2rn;
- SELECT name FROM sqlite_temp_master WHERE name LIKE 'temp2%';
+ SELECT name FROM temp.sqlite_master WHERE name LIKE 'temp2%';
}
} {temp2rn}
}
« no previous file with comments | « third_party/sqlite/src/test/tkt-ba7cbfaedc.test ('k') | third_party/sqlite/src/test/tkt3810.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698