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

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

Issue 6990047: Import SQLite 3.7.6.3. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 7 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/securedel.test ('k') | third_party/sqlite/src/test/select6.test » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 {
« no previous file with comments | « third_party/sqlite/src/test/securedel.test ('k') | third_party/sqlite/src/test/select6.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698