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

Unified Diff: third_party/sqlite/sqlite-src-3100200/test/whereK.test

Issue 2846743003: [sql] Remove SQLite 3.10.2 reference directory. (Closed)
Patch Set: Created 3 years, 8 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-3100200/test/whereK.test
diff --git a/third_party/sqlite/sqlite-src-3100200/test/whereK.test b/third_party/sqlite/sqlite-src-3100200/test/whereK.test
deleted file mode 100644
index 13c86508f906ed902d839469aeaf94d4f49a23ae..0000000000000000000000000000000000000000
--- a/third_party/sqlite/sqlite-src-3100200/test/whereK.test
+++ /dev/null
@@ -1,72 +0,0 @@
-# 2015-03-16
-#
-# The author disclaims copyright to this source code. In place of
-# a legal notice, here is a blessing:
-#
-# May you do good and not evil.
-# May you find forgiveness for yourself and forgive others.
-# May you share freely, never taking more than you give.
-#
-#***********************************************************************
-# This file implements regression tests for SQLite library. The
-# focus of this file is testing OR expressions where terms can be
-# factored from either side of the OR and combined into a single new
-# AND term that is beneficial to the search. Examples:
-#
-# (x>A OR x=A) --> ... AND (x>=A)
-# (x>A OR (x=A AND y>=B) --> ... AND (x>=A)
-#
-
-
-
-set testdir [file dirname $argv0]
-source $testdir/tester.tcl
-set ::testprefix whereK
-
-do_execsql_test 1.1 {
- CREATE TABLE t1(a,b,c);
- WITH RECURSIVE c(x) AS (VALUES(0) UNION ALL SELECT x+1 FROM c WHERE x<99)
- INSERT INTO t1(a,b,c) SELECT x, x/10, x%10 FROM c;
- CREATE INDEX t1bc ON t1(b,c);
- SELECT a FROM t1 WHERE b>9 OR b=9 ORDER BY +a;
-} {90 91 92 93 94 95 96 97 98 99}
-do_execsql_test 1.1eqp {
- EXPLAIN QUERY PLAN
- SELECT a FROM t1 WHERE b>9 OR b=9 ORDER BY +a;
-} {/SEARCH TABLE t1 USING INDEX t1bc/}
-
-do_execsql_test 1.2 {
- SELECT a FROM t1 WHERE b>8 OR (b=8 AND c>7) ORDER BY +a;
-} {88 89 90 91 92 93 94 95 96 97 98 99}
-do_execsql_test 1.2eqp {
- EXPLAIN QUERY PLAN
- SELECT a FROM t1 WHERE b>8 OR (b=8 AND c>7) ORDER BY +a;
-} {/SEARCH TABLE t1 USING INDEX t1bc/}
-
-do_execsql_test 1.3 {
- SELECT a FROM t1 WHERE (b=8 AND c>7) OR b>8 ORDER BY +a;
-} {88 89 90 91 92 93 94 95 96 97 98 99}
-do_execsql_test 1.3eqp {
- EXPLAIN QUERY PLAN
- SELECT a FROM t1 WHERE (b=8 AND c>7) OR b>8 ORDER BY +a;
-} {/SEARCH TABLE t1 USING INDEX t1bc/}
-
-do_execsql_test 1.4 {
- SELECT a FROM t1 WHERE (b=8 AND c>7) OR 8<b ORDER BY +a;
-} {88 89 90 91 92 93 94 95 96 97 98 99}
-do_execsql_test 1.4eqp {
- EXPLAIN QUERY PLAN
- SELECT a FROM t1 WHERE (b=8 AND c>7) OR 8<b ORDER BY +a;
-} {/SEARCH TABLE t1 USING INDEX t1bc/}
-
-do_execsql_test 1.5 {
- SELECT a FROM t1 WHERE (b=8 AND c>7) OR (b>8 AND c NOT IN (4,5,6))
- ORDER BY +a;
-} {88 89 90 91 92 93 97 98 99}
-do_execsql_test 1.5eqp {
- EXPLAIN QUERY PLAN
- SELECT a FROM t1 WHERE (b=8 AND c>7) OR (b>8 AND c NOT IN (4,5,6))
- ORDER BY +a;
-} {/SEARCH TABLE t1 USING INDEX t1bc/}
-
-finish_test
« no previous file with comments | « third_party/sqlite/sqlite-src-3100200/test/whereJ.test ('k') | third_party/sqlite/sqlite-src-3100200/test/wherelimit.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698