| OLD | NEW |
| 1 # 2007 February 6 | 1 # 2007 February 6 |
| 2 # | 2 # |
| 3 # The author disclaims copyright to this source code. | 3 # The author disclaims copyright to this source code. |
| 4 # | 4 # |
| 5 #************************************************************************* | 5 #************************************************************************* |
| 6 # This file implements regression tests for SQLite library. This | 6 # This file implements regression tests for SQLite library. This |
| 7 # tests creating fts2 tables in an attached database. | 7 # tests creating fts2 tables in an attached database. |
| 8 # | 8 # |
| 9 # $Id: fts2j.test,v 1.1 2007/02/07 01:01:18 shess Exp $ | 9 # $Id: fts2j.test,v 1.1 2007/02/07 01:01:18 shess Exp $ |
| 10 # | 10 # |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 | 80 |
| 81 DETACH DATABASE two; | 81 DETACH DATABASE two; |
| 82 } db2 | 82 } db2 |
| 83 } {2} | 83 } {2} |
| 84 catch {db eval {DETACH DATABASE two}} | 84 catch {db eval {DETACH DATABASE two}} |
| 85 | 85 |
| 86 catch {db2 close} | 86 catch {db2 close} |
| 87 forcedelete test2.db | 87 forcedelete test2.db |
| 88 | 88 |
| 89 finish_test | 89 finish_test |
| OLD | NEW |