OLD | NEW |
1 # 2010 November 29 | 1 # 2010 November 29 |
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 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
209 execsql "DROP TABLE t1" | 209 execsql "DROP TABLE t1" |
210 list_all_triggers | 210 list_all_triggers |
211 } {main.tr1 main.tr2 aux.tr1 aux.tr2 aux.tr3} | 211 } {main.tr1 main.tr2 aux.tr1 aux.tr2 aux.tr3} |
212 do_test 4.4 { | 212 do_test 4.4 { |
213 droptrigger_reopen_db | 213 droptrigger_reopen_db |
214 execsql "DROP TABLE t1" | 214 execsql "DROP TABLE t1" |
215 list_all_triggers | 215 list_all_triggers |
216 } {main.tr1 main.tr2 aux.tr1 aux.tr2 aux.tr3} | 216 } {main.tr1 main.tr2 aux.tr1 aux.tr2 aux.tr3} |
217 | 217 |
218 finish_test | 218 finish_test |
OLD | NEW |