OLD | NEW |
1 # 2012 December 18 | 1 # 2012 December 18 |
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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 CREATE TABLE t2(x); | 82 CREATE TABLE t2(x); |
83 } | 83 } |
84 } -test { | 84 } -test { |
85 db eval { CREATE TABLE t3(x) } | 85 db eval { CREATE TABLE t3(x) } |
86 if {[db one { PRAGMA integrity_check }] != "ok"} { | 86 if {[db one { PRAGMA integrity_check }] != "ok"} { |
87 error "integrity check failed" | 87 error "integrity check failed" |
88 } | 88 } |
89 } | 89 } |
90 | 90 |
91 finish_test | 91 finish_test |
OLD | NEW |