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/where.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/walslow.test ('k') | third_party/sqlite/src/test/where2.test » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/sqlite/src/test/where.test
diff --git a/third_party/sqlite/src/test/where.test b/third_party/sqlite/src/test/where.test
index 0b5bb934d06b9c5c39c5ab453677d314ab3dae17..d4f04e806374b589df333034ea771728dd3546fb 100644
--- a/third_party/sqlite/src/test/where.test
+++ b/third_party/sqlite/src/test/where.test
@@ -573,11 +573,16 @@ do_test where-6.6 {
SELECT * FROM t3 WHERE a>0 ORDER BY a LIMIT 3
}
} {1 100 4 2 99 9 3 98 16 nosort}
-do_test where-6.7 {
+do_test where-6.7.1 {
cksort {
- SELECT * FROM t3 WHERE b>0 ORDER BY a LIMIT 3
+ SELECT * FROM t3 WHERE b>0 ORDER BY a LIMIT 10
}
-} {1 100 4 2 99 9 3 98 16 nosort}
+} {/1 100 4 2 99 9 3 98 16 .* nosort/}
+do_test where-6.7.2 {
+ cksort {
+ SELECT * FROM t3 WHERE b>0 ORDER BY a LIMIT 1
+ }
+} {1 100 4 sort}
ifcapable subquery {
do_test where-6.8a {
cksort {
« no previous file with comments | « third_party/sqlite/src/test/walslow.test ('k') | third_party/sqlite/src/test/where2.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698