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

Unified Diff: third_party/sqlite/sqlite-src-3080704/test/tkt1537.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/tkt1537.test
diff --git a/third_party/sqlite/sqlite-src-3080704/test/tkt1537.test b/third_party/sqlite/sqlite-src-3080704/test/tkt1537.test
deleted file mode 100644
index 633f91fceef2eee16bc31cab4eff6a839124f807..0000000000000000000000000000000000000000
--- a/third_party/sqlite/sqlite-src-3080704/test/tkt1537.test
+++ /dev/null
@@ -1,122 +0,0 @@
-# 2005 November 26
-#
-# 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.
-#
-# This file implements tests to verify that ticket #1537 is
-# fixed.
-#
-
-set testdir [file dirname $argv0]
-source $testdir/tester.tcl
-
-do_test tkt1537-1.1 {
- execsql {
- CREATE TABLE t1(id, a1, a2);
- INSERT INTO t1 VALUES(1, NULL, NULL);
- INSERT INTO t1 VALUES(2, 1, 3);
- CREATE TABLE t2(id, b);
- INSERT INTO t2 VALUES(3, 1);
- INSERT INTO t2 VALUES(4, NULL);
- SELECT * FROM t1 LEFT JOIN t2 ON a1=b OR a2=+b;
- }
-} {1 {} {} {} {} 2 1 3 3 1}
-do_test tkt1537-1.2 {
- execsql {
- SELECT * FROM t1 LEFT JOIN t2 ON a1=b OR a2=b;
- }
-} {1 {} {} {} {} 2 1 3 3 1}
-do_test tkt1537-1.3 {
- execsql {
- SELECT * FROM t2 LEFT JOIN t1 ON a1=b OR a2=b;
- }
-} {3 1 2 1 3 4 {} {} {} {}}
-ifcapable subquery {
- do_test tkt1537-1.4 {
- execsql {
- SELECT * FROM t1 LEFT JOIN t2 ON b IN (a1,a2);
- }
- } {1 {} {} {} {} 2 1 3 3 1}
- do_test tkt1537-1.5 {
- execsql {
- SELECT * FROM t2 LEFT JOIN t1 ON b IN (a2,a1);
- }
- } {3 1 2 1 3 4 {} {} {} {}}
-}
-do_test tkt1537-1.6 {
- execsql {
- CREATE INDEX t1a1 ON t1(a1);
- CREATE INDEX t1a2 ON t1(a2);
- CREATE INDEX t2b ON t2(b);
- SELECT * FROM t1 LEFT JOIN t2 ON a1=b OR a2=b;
- }
-} {1 {} {} {} {} 2 1 3 3 1}
-do_test tkt1537-1.7 {
- execsql {
- SELECT * FROM t2 LEFT JOIN t1 ON a1=b OR a2=b;
- }
-} {3 1 2 1 3 4 {} {} {} {}}
-
-ifcapable subquery {
- do_test tkt1537-1.8 {
- execsql {
- SELECT * FROM t1 LEFT JOIN t2 ON b IN (a1,a2);
- }
- } {1 {} {} {} {} 2 1 3 3 1}
- do_test tkt1537-1.9 {
- execsql {
- SELECT * FROM t2 LEFT JOIN t1 ON b IN (a2,a1);
- }
- } {3 1 2 1 3 4 {} {} {} {}}
-}
-
-execsql {
- DROP INDEX t1a1;
- DROP INDEX t1a2;
- DROP INDEX t2b;
-}
-
-do_test tkt1537-2.1 {
- execsql {
- SELECT * FROM t1 LEFT JOIN t2 ON b BETWEEN a1 AND a2;
- }
-} {1 {} {} {} {} 2 1 3 3 1}
-do_test tkt1537-2.2 {
- execsql {
- CREATE INDEX t2b ON t2(b);
- SELECT * FROM t1 LEFT JOIN t2 ON b BETWEEN a1 AND a2;
- }
-} {1 {} {} {} {} 2 1 3 3 1}
-do_test tkt1537-2.3 {
- execsql {
- SELECT * FROM t2 LEFT JOIN t1 ON b BETWEEN a1 AND a2;
- }
-} {3 1 2 1 3 4 {} {} {} {}}
-do_test tkt1537-2.4 {
- execsql {
- CREATE INDEX t1a1 ON t1(a1);
- CREATE INDEX t1a2 ON t1(a2);
- SELECT * FROM t2 LEFT JOIN t1 ON b BETWEEN a1 AND a2;
- }
-} {3 1 2 1 3 4 {} {} {} {}}
-
-do_test tkt1537-3.1 {
- execsql {
- SELECT * FROM t1 LEFT JOIN t2 ON b GLOB 'abc*' WHERE t1.id=1;
- }
-} {1 {} {} {} {}}
-do_test tkt1537-3.2 {
- execsql {
- SELECT * FROM t2 LEFT JOIN t1 ON a1 GLOB 'abc*' WHERE t2.id=3;
- }
-} {3 1 {} {} {}}
-
-
-finish_test
« no previous file with comments | « third_party/sqlite/sqlite-src-3080704/test/tkt1536.test ('k') | third_party/sqlite/sqlite-src-3080704/test/tkt1567.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698