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 #***********************************************************************
12 # Tests to verify ticket #3879 is fixed.
14 # $Id: tkt3879.test,v 1.2 2009/06/05 17:09:12 drh Exp $
16 set testdir [file dirname $argv0]
17 source $testdir/tester.tcl
21 CREATE TABLE t1 (a PRIMARY KEY, b);
22 INSERT INTO t1 VALUES ('w', 1);
23 INSERT INTO t1 VALUES ('z', -1);
25 CREATE TABLE t2 (m INTEGER PRIMARY KEY, n, a, p);
26 INSERT INTO t2 VALUES (25, 13, 'w', 1);
27 INSERT INTO t2 VALUES (26, 25, 'z', 153);
28 INSERT INTO t2 VALUES (27, 25, 'z', 68);
31 INSERT INTO t3 VALUES (25);
38 FROM t3, t2 AS j0, t2 AS j1, t1
39 WHERE j0.m=t3.m AND t1.a=j0.a AND j1.n=j0.m;
46 FROM t3, t2 AS j0, t2 AS j1, t1
47 WHERE j0.m=t3.m AND t1.a=j0.a AND j1.n=j0.m