OLD | NEW |
1 # 2010 June 26 | 1 # 2010 June 26 |
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 41 matching lines...) Loading... |
52 UPDATE t1 set x = x+10000; | 52 UPDATE t1 set x = x+10000; |
53 ROLLBACK TO tr; | 53 ROLLBACK TO tr; |
54 RELEASE tr; | 54 RELEASE tr; |
55 } | 55 } |
56 } {} | 56 } {} |
57 do_test tkt-d11f09d36e.5 { | 57 do_test tkt-d11f09d36e.5 { |
58 execsql { PRAGMA integrity_check } | 58 execsql { PRAGMA integrity_check } |
59 } {ok} | 59 } {ok} |
60 | 60 |
61 finish_test | 61 finish_test |
62 | |
OLD | NEW |