OLD | NEW |
1 # 2008 Jan 22 | 1 # 2008 Jan 22 |
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 25 matching lines...) Expand all Loading... |
36 UPDATE sqlite_master SET name=NULL, sql=NULL WHERE name='i1'; | 36 UPDATE sqlite_master SET name=NULL, sql=NULL WHERE name='i1'; |
37 } | 37 } |
38 db close | 38 db close |
39 sqlite3 db test.db | 39 sqlite3 db test.db |
40 catchsql { | 40 catchsql { |
41 SELECT * FROM t1 | 41 SELECT * FROM t1 |
42 } | 42 } |
43 } {1 {malformed database schema (?)}} | 43 } {1 {malformed database schema (?)}} |
44 | 44 |
45 finish_test | 45 finish_test |
OLD | NEW |