OLD | NEW |
1 # 2011 September 16 | 1 # 2011 September 16 |
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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
143 | 143 |
144 SELECT data, id FROM ( | 144 SELECT data, id FROM ( |
145 SELECT id, data FROM ( | 145 SELECT id, data FROM ( |
146 SELECT * FROM t3 UNION ALL SELECT * FROM t4 | 146 SELECT * FROM t3 UNION ALL SELECT * FROM t4 |
147 ) ORDER BY data | 147 ) ORDER BY data |
148 ); | 148 ); |
149 } {a 4 b 3 c 2 d 1} | 149 } {a 4 b 3 c 2 d 1} |
150 | 150 |
151 | 151 |
152 finish_test | 152 finish_test |
OLD | NEW |