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

Unified Diff: third_party/sqlite/sqlite-src-3080704/test/vtabD.test

Issue 883353008: [sql] Import reference version of SQLite 3.8.7.4. (Closed) Base URL: http://chromium.googlesource.com/chromium/src.git@master
Patch Set: Hold back encoding change which is messing up patch. Created 5 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
Index: third_party/sqlite/sqlite-src-3080704/test/vtabD.test
diff --git a/third_party/sqlite/src/test/vtabD.test b/third_party/sqlite/sqlite-src-3080704/test/vtabD.test
similarity index 89%
copy from third_party/sqlite/src/test/vtabD.test
copy to third_party/sqlite/sqlite-src-3080704/test/vtabD.test
index 509ba457458ef8b2d039335d3171c8e6595dd21e..589f518983d0b0abdf945175fb1067eecf486b3a 100644
--- a/third_party/sqlite/src/test/vtabD.test
+++ b/third_party/sqlite/sqlite-src-3080704/test/vtabD.test
@@ -49,17 +49,15 @@ do_test vtabD-1.5 {
do_test vtabD-1.6 {
execsql { SELECT * FROM tv1 WHERE a < 500 OR b = 810000 }
} [execsql {
- SELECT * FROM t1 WHERE a < 500
- UNION ALL
- SELECT * FROM t1 WHERE b = 810000 AND NOT (a < 500)
+ SELECT * FROM t1 WHERE a < 500;
+ SELECT * FROM t1 WHERE b = 810000 AND NOT (a < 500);
}]
do_test vtabD-1.7 {
execsql { SELECT * FROM tv1 WHERE a < 90000 OR b = 8100000000 }
} [execsql {
- SELECT * FROM t1 WHERE a < 90000
- UNION ALL
- SELECT * FROM t1 WHERE b = 8100000000 AND NOT (a < 90000)
+ SELECT * FROM t1 WHERE a < 90000;
+ SELECT * FROM t1 WHERE b = 8100000000 AND NOT (a < 90000);
}]
if {[working_64bit_int]} {
« no previous file with comments | « third_party/sqlite/sqlite-src-3080704/test/vtabC.test ('k') | third_party/sqlite/sqlite-src-3080704/test/vtabE.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698