| OLD | NEW |
| 1 # 2002 May 24 | 1 # 2002 May 24 |
| 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 624 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 635 } | 635 } |
| 636 } {} | 636 } {} |
| 637 do_test join-11.9 { | 637 do_test join-11.9 { |
| 638 execsql { SELECT * FROM t1 NATURAL JOIN t2 } | 638 execsql { SELECT * FROM t1 NATURAL JOIN t2 } |
| 639 } {one 1.0 two 2} | 639 } {one 1.0 two 2} |
| 640 do_test join-11.10 { | 640 do_test join-11.10 { |
| 641 execsql { SELECT * FROM t2 NATURAL JOIN t1 } | 641 execsql { SELECT * FROM t2 NATURAL JOIN t1 } |
| 642 } {1 one 2 two} | 642 } {1 one 2 two} |
| 643 | 643 |
| 644 finish_test | 644 finish_test |
| OLD | NEW |