| OLD | NEW |
| 1 # 2009 May 25 | 1 # 2009 May 25 |
| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 do_test tkt3879.1.3 { | 43 do_test tkt3879.1.3 { |
| 44 execsql { | 44 execsql { |
| 45 SELECT 222, t1.b*123 | 45 SELECT 222, t1.b*123 |
| 46 FROM t3, t2 AS j0, t2 AS j1, t1 | 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 | 47 WHERE j0.m=t3.m AND t1.a=j0.a AND j1.n=j0.m |
| 48 ORDER BY t1.b; | 48 ORDER BY t1.b; |
| 49 } | 49 } |
| 50 } {222 123 222 123} | 50 } {222 123 222 123} |
| 51 | 51 |
| 52 finish_test | 52 finish_test |
| OLD | NEW |