OLD | NEW |
1 # 2008 October 06 | 1 # 2008 October 06 |
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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 select * FROM c, a, b WHERE a.id=2 AND b.a_id = a.id AND b.id=c.b_id; | 64 select * FROM c, a, b WHERE a.id=2 AND b.a_id = a.id AND b.id=c.b_id; |
65 } | 65 } |
66 } {8 9 2 9 2} | 66 } {8 9 2 9 2} |
67 do_test tkt3419-1.6 { | 67 do_test tkt3419-1.6 { |
68 execsql { | 68 execsql { |
69 select * FROM c, b, a WHERE a.id=2 AND b.a_id = a.id AND b.id=c.b_id; | 69 select * FROM c, b, a WHERE a.id=2 AND b.a_id = a.id AND b.id=c.b_id; |
70 } | 70 } |
71 } {8 9 9 2 2} | 71 } {8 9 9 2 2} |
72 | 72 |
73 finish_test | 73 finish_test |
OLD | NEW |