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

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

Issue 2363173002: [sqlite] Remove obsolete reference version 3.8.7.4. (Closed)
Patch Set: Created 4 years, 3 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/whereI.test
diff --git a/third_party/sqlite/sqlite-src-3080704/test/whereI.test b/third_party/sqlite/sqlite-src-3080704/test/whereI.test
deleted file mode 100644
index 452e7f8f19f0f4310e0443cee7fa70d45b77c186..0000000000000000000000000000000000000000
--- a/third_party/sqlite/sqlite-src-3080704/test/whereI.test
+++ /dev/null
@@ -1,92 +0,0 @@
-# 2014-03-31
-#
-# 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.
-#
-#***********************************************************************
-# The focus of this file is testing the OR optimization on WITHOUT ROWID
-# tables.
-#
-
-set testdir [file dirname $argv0]
-source $testdir/tester.tcl
-set ::testprefix whereI
-
-do_execsql_test 1.0 {
- CREATE TABLE t1(a, b, c, PRIMARY KEY(a)) WITHOUT ROWID;
- INSERT INTO t1 VALUES(1, 'a', 'z');
- INSERT INTO t1 VALUES(2, 'b', 'y');
- INSERT INTO t1 VALUES(3, 'c', 'x');
- INSERT INTO t1 VALUES(4, 'd', 'w');
- CREATE INDEX i1 ON t1(b);
- CREATE INDEX i2 ON t1(c);
-}
-
-do_eqp_test 1.1 {
- SELECT a FROM t1 WHERE b='b' OR c='x'
-} {
- 0 0 0 {SEARCH TABLE t1 USING INDEX i1 (b=?)}
- 0 0 0 {SEARCH TABLE t1 USING INDEX i2 (c=?)}
-}
-
-do_execsql_test 1.2 {
- SELECT a FROM t1 WHERE b='b' OR c='x'
-} {2 3}
-
-do_execsql_test 1.3 {
- SELECT a FROM t1 WHERE b='a' OR c='z'
-} {1}
-
-#----------------------------------------------------------------------
-# Try that again, this time with non integer PRIMARY KEY values.
-#
-do_execsql_test 2.0 {
- CREATE TABLE t2(a, b, c, PRIMARY KEY(a)) WITHOUT ROWID;
- INSERT INTO t2 VALUES('i', 'a', 'z');
- INSERT INTO t2 VALUES('ii', 'b', 'y');
- INSERT INTO t2 VALUES('iii', 'c', 'x');
- INSERT INTO t2 VALUES('iv', 'd', 'w');
- CREATE INDEX i3 ON t2(b);
- CREATE INDEX i4 ON t2(c);
-}
-
-do_eqp_test 2.1 {
- SELECT a FROM t2 WHERE b='b' OR c='x'
-} {
- 0 0 0 {SEARCH TABLE t2 USING INDEX i3 (b=?)}
- 0 0 0 {SEARCH TABLE t2 USING INDEX i4 (c=?)}
-}
-
-do_execsql_test 2.2 {
- SELECT a FROM t2 WHERE b='b' OR c='x'
-} {ii iii}
-
-do_execsql_test 2.3 {
- SELECT a FROM t2 WHERE b='a' OR c='z'
-} {i}
-
-#----------------------------------------------------------------------
-# On a table with a multi-column PK.
-#
-do_execsql_test 3.0 {
- CREATE TABLE t3(a, b, c, d, PRIMARY KEY(c, b)) WITHOUT ROWID;
-
- INSERT INTO t3 VALUES('f', 1, 1, 'o');
- INSERT INTO t3 VALUES('o', 2, 1, 't');
- INSERT INTO t3 VALUES('t', 1, 2, 't');
- INSERT INTO t3 VALUES('t', 2, 2, 'f');
-
- CREATE INDEX t3i1 ON t3(d);
- CREATE INDEX t3i2 ON t3(a);
-
- SELECT c||'.'||b FROM t3 WHERE a='t' OR d='t'
-} {
- 2.1 2.2 1.2
-}
-
-finish_test
-
« no previous file with comments | « third_party/sqlite/sqlite-src-3080704/test/whereH.test ('k') | third_party/sqlite/sqlite-src-3080704/test/whereJ.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698