3 # The author disclaims copyright to this source code. In place of
4 # a legal notice, here is a blessing:
6 # May you do good and not evil.
7 # May you find forgiveness for yourself and forgive others.
8 # May you share freely, never taking more than you give.
10 #***********************************************************************
11 # This file implements regression tests for SQLite library.
13 # This file implements tests to verify that ticket #3581 has been
16 # $Id: tkt3581.test,v 1.1 2009/01/14 01:10:40 drh Exp $
18 set testdir [file dirname $argv0]
19 source $testdir/tester.tcl
23 CREATE TABLE t1(a INTEGER PRIMARY KEY, b, c);
24 INSERT INTO t1 VALUES(0,544,846);
25 INSERT INTO t1 VALUES(1,345,51);
26 CREATE TABLE t2(a INTEGER PRIMARY KEY, b, c);
27 INSERT INTO t2 SELECT * FROM t1;
28 CREATE INDEX i2 on t2(c);
35 WHERE (b > 45 AND c < 356)
38 OR (b >= 614 AND c < 251)
46 WHERE (b > 45 AND c < 356)
49 OR (b >= 614 AND c < 251)