import less(1)
[unleashed/tickless.git] / usr / src / lib / libsqlite / test / join4_28.test
blob189a44af322dacc3f182ad6c2813fe3b8af441b4
2 #pragma ident   "%Z%%M% %I%     %E% SMI"
4 # 2002 May 24
6 # The author disclaims copyright to this source code.  In place of
7 # a legal notice, here is a blessing:
9 #    May you do good and not evil.
10 #    May you find forgiveness for yourself and forgive others.
11 #    May you share freely, never taking more than you give.
13 #***********************************************************************
14 # This file implements regression tests for SQLite library.
16 # This file implements tests for left outer joins containing WHERE
17 # clauses that restrict the scope of the left term of the join.
19 # $Id: join4_28.test,v 1.1.2.1 2004/07/22 16:08:39 drh Exp $
21 set testdir [file dirname $argv0]
22 source $testdir/tester.tcl
24 do_test join4-1.1 {
25   execsql {
26     create temp table t1(a integer, b varchar(10));
27     insert into t1 values(1,'one');
28     insert into t1 values(2,'two');
29     insert into t1 values(3,'three');
30     insert into t1 values(4,'four');
32     create temp table t2(x integer, y varchar(10), z varchar(10));
33     insert into t2 values(2,'niban','ok');
34     insert into t2 values(4,'yonban','err');
35   }
36   execsql {
37     select * from t1 left outer join t2 on t1.a=t2.x where t2.z='ok'
38   }
39 } {2 two 2 niban ok}
40 do_test join4-1.2 {
41   execsql {
42     select * from t1 left outer join t2 on t1.a=t2.x and t2.z='ok'
43   }
44 } {1 one {} {} {} 2 two 2 niban ok 3 three {} {} {} 4 four {} {} {}}
45 do_test join4-1.3 {
46   execsql {
47     create index i2 on t2(z);
48   }
49   execsql {
50     select * from t1 left outer join t2 on t1.a=t2.x where t2.z='ok'
51   }
52 } {2 two 2 niban ok}
53 do_test join4-1.4 {
54   execsql {
55     select * from t1 left outer join t2 on t1.a=t2.x and t2.z='ok'
56   }
57 } {1 one {} {} {} 2 two 2 niban ok 3 three {} {} {} 4 four {} {} {}}
58 do_test join4-1.5 {
59   execsql {
60     select * from t1 left outer join t2 on t1.a=t2.x where t2.z>='ok'
61   }
62 } {2 two 2 niban ok}
63 do_test join4-1.4 {
64   execsql {
65     select * from t1 left outer join t2 on t1.a=t2.x and t2.z>='ok'
66   }
67 } {1 one {} {} {} 2 two 2 niban ok 3 three {} {} {} 4 four {} {} {}}
68 do_test join4-1.6 {
69   execsql {
70     select * from t1 left outer join t2 on t1.a=t2.x where t2.z IN ('ok')
71   }
72 } {2 two 2 niban ok}
73 do_test join4-1.7 {
74   execsql {
75     select * from t1 left outer join t2 on t1.a=t2.x and t2.z IN ('ok')
76   }
77 } {1 one {} {} {} 2 two 2 niban ok 3 three {} {} {} 4 four {} {} {}}
80 finish_test