| OLD | NEW |
| 1 # 2008 December 16 | 1 # 2008 December 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 15 matching lines...) Expand all Loading... |
| 26 } | 26 } |
| 27 } {123} | 27 } {123} |
| 28 do_test tkt3541-1.2 { | 28 do_test tkt3541-1.2 { |
| 29 db eval { | 29 db eval { |
| 30 SELECT CASE NOT max(x) WHEN min(x) THEN 1 ELSE max(x) END FROM t1; | 30 SELECT CASE NOT max(x) WHEN min(x) THEN 1 ELSE max(x) END FROM t1; |
| 31 } | 31 } |
| 32 } {123} | 32 } {123} |
| 33 | 33 |
| 34 | 34 |
| 35 finish_test | 35 finish_test |
| OLD | NEW |