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/select2.test

Issue 5626002: Update sqlite to 3.7.3. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/third_party/sqlite/src
Patch Set: Update version in doc. Created 10 years 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/src/test/select2.test
diff --git a/third_party/sqlite/src/test/select2.test b/third_party/sqlite/src/test/select2.test
index 25a552de18ee0cf238b366785ba3b4f5e06183ff..35f8dd587905eafd358b23f51b78e009867cdf6a 100644
--- a/third_party/sqlite/src/test/select2.test
+++ b/third_party/sqlite/src/test/select2.test
@@ -153,12 +153,12 @@ do_test select2-4.1 {
do_test select2-4.2 {
execsql {
INSERT INTO bb VALUES(0);
- SELECT * FROM aa, bb WHERE b;
+ SELECT * FROM aa CROSS JOIN bb WHERE b;
}
} {1 2 1 4 3 2 3 4}
do_test select2-4.3 {
execsql {
- SELECT * FROM aa, bb WHERE NOT b;
+ SELECT * FROM aa CROSS JOIN bb WHERE NOT b;
}
} {1 0 3 0}
do_test select2-4.4 {

Powered by Google App Engine
This is Rietveld 408576698