OLD | NEW |
1 # 2009 October 23 | 1 # 2009 October 23 |
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 40 matching lines...) Loading... |
51 do_test tkt-3fe89-1.4 { | 51 do_test tkt-3fe89-1.4 { |
52 db eval { | 52 db eval { |
53 DELETE FROM t1; | 53 DELETE FROM t1; |
54 INSERT INTO t1 VALUES(hex_to_utf16le('FFDF')); | 54 INSERT INTO t1 VALUES(hex_to_utf16le('FFDF')); |
55 SELECT hex(x) FROM t1; | 55 SELECT hex(x) FROM t1; |
56 } | 56 } |
57 } {EDBFBF} | 57 } {EDBFBF} |
58 | 58 |
59 | 59 |
60 finish_test | 60 finish_test |
OLD | NEW |