OLD | NEW |
1 # 2001 September 15 | 1 # 2001 September 15 |
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 788 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
799 do_test select4-12.1 { | 799 do_test select4-12.1 { |
800 sqlite3 db2 :memory: | 800 sqlite3 db2 :memory: |
801 catchsql { | 801 catchsql { |
802 SELECT 1 UNION SELECT 2,3 UNION SELECT 4,5 ORDER BY 1; | 802 SELECT 1 UNION SELECT 2,3 UNION SELECT 4,5 ORDER BY 1; |
803 } db2 | 803 } db2 |
804 } {1 {SELECTs to the left and right of UNION do not have the same number of resu
lt columns}} | 804 } {1 {SELECTs to the left and right of UNION do not have the same number of resu
lt columns}} |
805 | 805 |
806 } ;# ifcapable compound | 806 } ;# ifcapable compound |
807 | 807 |
808 finish_test | 808 finish_test |
OLD | NEW |