OLD | NEW |
1 # 2008 September 1 | 1 # 2008 September 1 |
2 # | 2 # |
3 # The author disclaims copyright to this source code. In place of | 3 # The author disclaims copyright to this source code. In place of |
4 # a legal notice, here is a blessing: | 4 # a legal notice, here is a blessing: |
5 # | 5 # |
6 # May you do good and not evil. | 6 # May you do good and not evil. |
7 # May you find forgiveness for yourself and forgive others. | 7 # May you find forgiveness for yourself and forgive others. |
8 # May you share freely, never taking more than you give. | 8 # May you share freely, never taking more than you give. |
9 # | 9 # |
10 #*********************************************************************** | 10 #*********************************************************************** |
(...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
330 do_execsql_test in4-6.2 { | 330 do_execsql_test in4-6.2 { |
331 SELECT * FROM t6a, t6b WHERE a=3 AND c IN (b); | 331 SELECT * FROM t6a, t6b WHERE a=3 AND c IN (b); |
332 } {3 4 4 44} | 332 } {3 4 4 44} |
333 do_execsql_test in4-6.2-eqp { | 333 do_execsql_test in4-6.2-eqp { |
334 EXPLAIN QUERY PLAN | 334 EXPLAIN QUERY PLAN |
335 SELECT * FROM t6a, t6b WHERE a=3 AND c IN (b); | 335 SELECT * FROM t6a, t6b WHERE a=3 AND c IN (b); |
336 } {~/SCAN/} | 336 } {~/SCAN/} |
337 | 337 |
338 | 338 |
339 finish_test | 339 finish_test |
OLD | NEW |