OLD | NEW |
1 # 2010 October 27 | 1 # 2010 October 27 |
2 # | 2 # |
3 # May you do good and not evil. | 3 # May you do good and not evil. |
4 # May you find forgiveness for yourself and forgive others. | 4 # May you find forgiveness for yourself and forgive others. |
5 # May you share freely, never taking more than you give. | 5 # May you share freely, never taking more than you give. |
6 # | 6 # |
7 #*********************************************************************** | 7 #*********************************************************************** |
8 # Test that the FTS3 extension does not crash when it encounters a | 8 # Test that the FTS3 extension does not crash when it encounters a |
9 # corrupt data structure on disk. | 9 # corrupt data structure on disk. |
10 # | 10 # |
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
153 SELECT matchinfo(t1, 'nxa') FROM t1 WHERE t1 MATCH 't*'; | 153 SELECT matchinfo(t1, 'nxa') FROM t1 WHERE t1 MATCH 't*'; |
154 } {1 {database disk image is malformed}} | 154 } {1 {database disk image is malformed}} |
155 do_catchsql_test 5.3 { | 155 do_catchsql_test 5.3 { |
156 UPDATE t1_stat SET value = NULL; | 156 UPDATE t1_stat SET value = NULL; |
157 SELECT matchinfo(t1, 'nxa') FROM t1 WHERE t1 MATCH 't*'; | 157 SELECT matchinfo(t1, 'nxa') FROM t1 WHERE t1 MATCH 't*'; |
158 } {1 {database disk image is malformed}} | 158 } {1 {database disk image is malformed}} |
159 | 159 |
160 | 160 |
161 finish_test | 161 finish_test |
162 | 162 |
OLD | NEW |