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 29 matching lines...) Expand all Loading... |
40 UPDATE sqlite_master SET name=NULL, sql=NULL WHERE name='i1'; | 40 UPDATE sqlite_master SET name=NULL, sql=NULL WHERE name='i1'; |
41 } | 41 } |
42 db close | 42 db close |
43 sqlite3 db test.db | 43 sqlite3 db test.db |
44 catchsql { | 44 catchsql { |
45 SELECT * FROM t1 | 45 SELECT * FROM t1 |
46 } | 46 } |
47 } {1 {malformed database schema (?)}} | 47 } {1 {malformed database schema (?)}} |
48 | 48 |
49 finish_test | 49 finish_test |
OLD | NEW |