sl@0
|
1 |
# 2006 January 31
|
sl@0
|
2 |
#
|
sl@0
|
3 |
# The author disclaims copyright to this source code. In place of
|
sl@0
|
4 |
# a legal notice, here is a blessing:
|
sl@0
|
5 |
#
|
sl@0
|
6 |
# May you do good and not evil.
|
sl@0
|
7 |
# May you find forgiveness for yourself and forgive others.
|
sl@0
|
8 |
# May you share freely, never taking more than you give.
|
sl@0
|
9 |
#
|
sl@0
|
10 |
#***********************************************************************
|
sl@0
|
11 |
# This file implements regression tests for SQLite library. The
|
sl@0
|
12 |
# focus of this file is testing the join reordering optimization
|
sl@0
|
13 |
# in cases that include a LEFT JOIN.
|
sl@0
|
14 |
#
|
sl@0
|
15 |
# $Id: where3.test,v 1.4 2008/04/17 19:14:02 drh Exp $
|
sl@0
|
16 |
|
sl@0
|
17 |
set testdir [file dirname $argv0]
|
sl@0
|
18 |
source $testdir/tester.tcl
|
sl@0
|
19 |
|
sl@0
|
20 |
# The following is from ticket #1652.
|
sl@0
|
21 |
#
|
sl@0
|
22 |
# A comma join then a left outer join: A,B left join C.
|
sl@0
|
23 |
# Arrange indices so that the B table is chosen to go first.
|
sl@0
|
24 |
# Also put an index on C, but make sure that A is chosen before C.
|
sl@0
|
25 |
#
|
sl@0
|
26 |
do_test where3-1.1 {
|
sl@0
|
27 |
execsql {
|
sl@0
|
28 |
CREATE TABLE t1(a, b);
|
sl@0
|
29 |
CREATE TABLE t2(p, q);
|
sl@0
|
30 |
CREATE TABLE t3(x, y);
|
sl@0
|
31 |
|
sl@0
|
32 |
INSERT INTO t1 VALUES(111,'one');
|
sl@0
|
33 |
INSERT INTO t1 VALUES(222,'two');
|
sl@0
|
34 |
INSERT INTO t1 VALUES(333,'three');
|
sl@0
|
35 |
|
sl@0
|
36 |
INSERT INTO t2 VALUES(1,111);
|
sl@0
|
37 |
INSERT INTO t2 VALUES(2,222);
|
sl@0
|
38 |
INSERT INTO t2 VALUES(4,444);
|
sl@0
|
39 |
CREATE INDEX t2i1 ON t2(p);
|
sl@0
|
40 |
|
sl@0
|
41 |
INSERT INTO t3 VALUES(999,'nine');
|
sl@0
|
42 |
CREATE INDEX t3i1 ON t3(x);
|
sl@0
|
43 |
|
sl@0
|
44 |
SELECT * FROM t1, t2 LEFT JOIN t3 ON q=x WHERE p=2 AND a=q;
|
sl@0
|
45 |
}
|
sl@0
|
46 |
} {222 two 2 222 {} {}}
|
sl@0
|
47 |
|
sl@0
|
48 |
ifcapable explain {
|
sl@0
|
49 |
do_test where3-1.1.1 {
|
sl@0
|
50 |
explain_no_trace {SELECT * FROM t1, t2 LEFT JOIN t3 ON q=x
|
sl@0
|
51 |
WHERE p=2 AND a=q}
|
sl@0
|
52 |
} [explain_no_trace {SELECT * FROM t1, t2 LEFT JOIN t3 ON x=q
|
sl@0
|
53 |
WHERE p=2 AND a=q}]
|
sl@0
|
54 |
}
|
sl@0
|
55 |
|
sl@0
|
56 |
# Ticket #1830
|
sl@0
|
57 |
#
|
sl@0
|
58 |
# This is similar to the above but with the LEFT JOIN on the
|
sl@0
|
59 |
# other side.
|
sl@0
|
60 |
#
|
sl@0
|
61 |
do_test where3-1.2 {
|
sl@0
|
62 |
execsql {
|
sl@0
|
63 |
CREATE TABLE parent1(parent1key, child1key, Child2key, child3key);
|
sl@0
|
64 |
CREATE TABLE child1 ( child1key NVARCHAR, value NVARCHAR );
|
sl@0
|
65 |
CREATE UNIQUE INDEX PKIDXChild1 ON child1 ( child1key );
|
sl@0
|
66 |
CREATE TABLE child2 ( child2key NVARCHAR, value NVARCHAR );
|
sl@0
|
67 |
|
sl@0
|
68 |
INSERT INTO parent1(parent1key,child1key,child2key)
|
sl@0
|
69 |
VALUES ( 1, 'C1.1', 'C2.1' );
|
sl@0
|
70 |
INSERT INTO child1 ( child1key, value ) VALUES ( 'C1.1', 'Value for C1.1' );
|
sl@0
|
71 |
INSERT INTO child2 ( child2key, value ) VALUES ( 'C2.1', 'Value for C2.1' );
|
sl@0
|
72 |
|
sl@0
|
73 |
INSERT INTO parent1 ( parent1key, child1key, child2key )
|
sl@0
|
74 |
VALUES ( 2, 'C1.2', 'C2.2' );
|
sl@0
|
75 |
INSERT INTO child2 ( child2key, value ) VALUES ( 'C2.2', 'Value for C2.2' );
|
sl@0
|
76 |
|
sl@0
|
77 |
INSERT INTO parent1 ( parent1key, child1key, child2key )
|
sl@0
|
78 |
VALUES ( 3, 'C1.3', 'C2.3' );
|
sl@0
|
79 |
INSERT INTO child1 ( child1key, value ) VALUES ( 'C1.3', 'Value for C1.3' );
|
sl@0
|
80 |
INSERT INTO child2 ( child2key, value ) VALUES ( 'C2.3', 'Value for C2.3' );
|
sl@0
|
81 |
|
sl@0
|
82 |
SELECT parent1.parent1key, child1.value, child2.value
|
sl@0
|
83 |
FROM parent1
|
sl@0
|
84 |
LEFT OUTER JOIN child1 ON child1.child1key = parent1.child1key
|
sl@0
|
85 |
INNER JOIN child2 ON child2.child2key = parent1.child2key;
|
sl@0
|
86 |
}
|
sl@0
|
87 |
} {1 {Value for C1.1} {Value for C2.1} 2 {} {Value for C2.2} 3 {Value for C1.3} {Value for C2.3}}
|
sl@0
|
88 |
|
sl@0
|
89 |
ifcapable explain {
|
sl@0
|
90 |
do_test where3-1.2.1 {
|
sl@0
|
91 |
explain_no_trace {
|
sl@0
|
92 |
SELECT parent1.parent1key, child1.value, child2.value
|
sl@0
|
93 |
FROM parent1
|
sl@0
|
94 |
LEFT OUTER JOIN child1 ON child1.child1key = parent1.child1key
|
sl@0
|
95 |
INNER JOIN child2 ON child2.child2key = parent1.child2key;
|
sl@0
|
96 |
}
|
sl@0
|
97 |
} [explain_no_trace {
|
sl@0
|
98 |
SELECT parent1.parent1key, child1.value, child2.value
|
sl@0
|
99 |
FROM parent1
|
sl@0
|
100 |
LEFT OUTER JOIN child1 ON parent1.child1key = child1.child1key
|
sl@0
|
101 |
INNER JOIN child2 ON child2.child2key = parent1.child2key;
|
sl@0
|
102 |
}]
|
sl@0
|
103 |
}
|
sl@0
|
104 |
|
sl@0
|
105 |
# This procedure executes the SQL. Then it appends
|
sl@0
|
106 |
# the ::sqlite_query_plan variable.
|
sl@0
|
107 |
#
|
sl@0
|
108 |
proc queryplan {sql} {
|
sl@0
|
109 |
set ::sqlite_sort_count 0
|
sl@0
|
110 |
set data [execsql $sql]
|
sl@0
|
111 |
return [concat $data $::sqlite_query_plan]
|
sl@0
|
112 |
}
|
sl@0
|
113 |
|
sl@0
|
114 |
|
sl@0
|
115 |
# If you have a from clause of the form: A B C left join D
|
sl@0
|
116 |
# then make sure the query optimizer is able to reorder the
|
sl@0
|
117 |
# A B C part anyway it wants.
|
sl@0
|
118 |
#
|
sl@0
|
119 |
# Following the fix to ticket #1652, there was a time when
|
sl@0
|
120 |
# the C table would not reorder. So the following reorderings
|
sl@0
|
121 |
# were possible:
|
sl@0
|
122 |
#
|
sl@0
|
123 |
# A B C left join D
|
sl@0
|
124 |
# B A C left join D
|
sl@0
|
125 |
#
|
sl@0
|
126 |
# But these reorders were not allowed
|
sl@0
|
127 |
#
|
sl@0
|
128 |
# C A B left join D
|
sl@0
|
129 |
# A C B left join D
|
sl@0
|
130 |
# C B A left join D
|
sl@0
|
131 |
# B C A left join D
|
sl@0
|
132 |
#
|
sl@0
|
133 |
# The following tests are here to verify that the latter four
|
sl@0
|
134 |
# reorderings are allowed again.
|
sl@0
|
135 |
#
|
sl@0
|
136 |
do_test where3-2.1 {
|
sl@0
|
137 |
execsql {
|
sl@0
|
138 |
CREATE TABLE tA(apk integer primary key, ax);
|
sl@0
|
139 |
CREATE TABLE tB(bpk integer primary key, bx);
|
sl@0
|
140 |
CREATE TABLE tC(cpk integer primary key, cx);
|
sl@0
|
141 |
CREATE TABLE tD(dpk integer primary key, dx);
|
sl@0
|
142 |
}
|
sl@0
|
143 |
queryplan {
|
sl@0
|
144 |
SELECT * FROM tA, tB, tC LEFT JOIN tD ON dpk=cx
|
sl@0
|
145 |
WHERE cpk=bx AND bpk=ax
|
sl@0
|
146 |
}
|
sl@0
|
147 |
} {tA {} tB * tC * tD *}
|
sl@0
|
148 |
do_test where3-2.1.1 {
|
sl@0
|
149 |
queryplan {
|
sl@0
|
150 |
SELECT * FROM tA, tB, tC LEFT JOIN tD ON cx=dpk
|
sl@0
|
151 |
WHERE cpk=bx AND bpk=ax
|
sl@0
|
152 |
}
|
sl@0
|
153 |
} {tA {} tB * tC * tD *}
|
sl@0
|
154 |
do_test where3-2.1.2 {
|
sl@0
|
155 |
queryplan {
|
sl@0
|
156 |
SELECT * FROM tA, tB, tC LEFT JOIN tD ON cx=dpk
|
sl@0
|
157 |
WHERE bx=cpk AND bpk=ax
|
sl@0
|
158 |
}
|
sl@0
|
159 |
} {tA {} tB * tC * tD *}
|
sl@0
|
160 |
do_test where3-2.1.3 {
|
sl@0
|
161 |
queryplan {
|
sl@0
|
162 |
SELECT * FROM tA, tB, tC LEFT JOIN tD ON cx=dpk
|
sl@0
|
163 |
WHERE bx=cpk AND ax=bpk
|
sl@0
|
164 |
}
|
sl@0
|
165 |
} {tA {} tB * tC * tD *}
|
sl@0
|
166 |
do_test where3-2.1.4 {
|
sl@0
|
167 |
queryplan {
|
sl@0
|
168 |
SELECT * FROM tA, tB, tC LEFT JOIN tD ON dpk=cx
|
sl@0
|
169 |
WHERE bx=cpk AND ax=bpk
|
sl@0
|
170 |
}
|
sl@0
|
171 |
} {tA {} tB * tC * tD *}
|
sl@0
|
172 |
do_test where3-2.1.5 {
|
sl@0
|
173 |
queryplan {
|
sl@0
|
174 |
SELECT * FROM tA, tB, tC LEFT JOIN tD ON dpk=cx
|
sl@0
|
175 |
WHERE cpk=bx AND ax=bpk
|
sl@0
|
176 |
}
|
sl@0
|
177 |
} {tA {} tB * tC * tD *}
|
sl@0
|
178 |
do_test where3-2.2 {
|
sl@0
|
179 |
queryplan {
|
sl@0
|
180 |
SELECT * FROM tA, tB, tC LEFT JOIN tD ON dpk=cx
|
sl@0
|
181 |
WHERE cpk=bx AND apk=bx
|
sl@0
|
182 |
}
|
sl@0
|
183 |
} {tB {} tA * tC * tD *}
|
sl@0
|
184 |
do_test where3-2.3 {
|
sl@0
|
185 |
queryplan {
|
sl@0
|
186 |
SELECT * FROM tA, tB, tC LEFT JOIN tD ON dpk=cx
|
sl@0
|
187 |
WHERE cpk=bx AND apk=bx
|
sl@0
|
188 |
}
|
sl@0
|
189 |
} {tB {} tA * tC * tD *}
|
sl@0
|
190 |
do_test where3-2.4 {
|
sl@0
|
191 |
queryplan {
|
sl@0
|
192 |
SELECT * FROM tA, tB, tC LEFT JOIN tD ON dpk=cx
|
sl@0
|
193 |
WHERE apk=cx AND bpk=ax
|
sl@0
|
194 |
}
|
sl@0
|
195 |
} {tC {} tA * tB * tD *}
|
sl@0
|
196 |
do_test where3-2.5 {
|
sl@0
|
197 |
queryplan {
|
sl@0
|
198 |
SELECT * FROM tA, tB, tC LEFT JOIN tD ON dpk=cx
|
sl@0
|
199 |
WHERE cpk=ax AND bpk=cx
|
sl@0
|
200 |
}
|
sl@0
|
201 |
} {tA {} tC * tB * tD *}
|
sl@0
|
202 |
do_test where3-2.5 {
|
sl@0
|
203 |
queryplan {
|
sl@0
|
204 |
SELECT * FROM tA, tB, tC LEFT JOIN tD ON dpk=cx
|
sl@0
|
205 |
WHERE bpk=cx AND apk=bx
|
sl@0
|
206 |
}
|
sl@0
|
207 |
} {tC {} tB * tA * tD *}
|
sl@0
|
208 |
do_test where3-2.6 {
|
sl@0
|
209 |
queryplan {
|
sl@0
|
210 |
SELECT * FROM tA, tB, tC LEFT JOIN tD ON dpk=cx
|
sl@0
|
211 |
WHERE cpk=bx AND apk=cx
|
sl@0
|
212 |
}
|
sl@0
|
213 |
} {tB {} tC * tA * tD *}
|
sl@0
|
214 |
|
sl@0
|
215 |
|
sl@0
|
216 |
finish_test
|