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

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

Issue 1610963002: Import SQLite 3.10.2. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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-f777251dc7a.test ('k') | third_party/sqlite/src/test/trace.test » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/sqlite/src/test/tkt3871.test
diff --git a/third_party/sqlite/src/test/tkt3871.test b/third_party/sqlite/src/test/tkt3871.test
index e7dbfde714d9286f3b3d602af32219835f27ee60..d587910d393a69138c016a73139c306972d9ab37 100644
--- a/third_party/sqlite/src/test/tkt3871.test
+++ b/third_party/sqlite/src/test/tkt3871.test
@@ -32,8 +32,8 @@ do_test tkt3871-1.3 {
execsql { SELECT * FROM e WHERE a = 1 OR a = 2 }
set echo_module
} [list \
- xFilter {SELECT rowid, * FROM 't1' WHERE a = ?} 1 \
- xFilter {SELECT rowid, * FROM 't1' WHERE a = ?} 2 \
+ xFilter {SELECT rowid, a, b FROM 't1' WHERE a = ?} 1 \
+ xFilter {SELECT rowid, a, b FROM 't1' WHERE a = ?} 2 \
]
do_test tkt3871-1.4 {
@@ -44,9 +44,9 @@ do_test tkt3871-1.5 {
execsql { SELECT * FROM e WHERE a = 1 OR a = 2 OR b = 9 }
set echo_module
} [list \
- xFilter {SELECT rowid, * FROM 't1' WHERE a = ?} 1 \
- xFilter {SELECT rowid, * FROM 't1' WHERE a = ?} 2 \
- xFilter {SELECT rowid, * FROM 't1' WHERE b = ?} 9
+ xFilter {SELECT rowid, a, b FROM 't1' WHERE a = ?} 1 \
+ xFilter {SELECT rowid, a, b FROM 't1' WHERE a = ?} 2 \
+ xFilter {SELECT rowid, a, b FROM 't1' WHERE b = ?} 9
]
« no previous file with comments | « third_party/sqlite/src/test/tkt-f777251dc7a.test ('k') | third_party/sqlite/src/test/trace.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698