| OLD | NEW |
| 1 # 2011 April 9 | 1 # 2011 April 9 |
| 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 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 sql1 { DROP TRIGGER IF EXISTS tr1 } | 189 sql1 { DROP TRIGGER IF EXISTS tr1 } |
| 190 sql2 { CREATE TRIGGER aux.tr1 AFTER INSERT ON t2 BEGIN SELECT 1; END } | 190 sql2 { CREATE TRIGGER aux.tr1 AFTER INSERT ON t2 BEGIN SELECT 1; END } |
| 191 sql1 { DROP TRIGGER IF EXISTS tr1 } | 191 sql1 { DROP TRIGGER IF EXISTS tr1 } |
| 192 sql2 { SELECT name FROM aux.sqlite_master WHERE type = 'trigger' } | 192 sql2 { SELECT name FROM aux.sqlite_master WHERE type = 'trigger' } |
| 193 } {} | 193 } {} |
| 194 } | 194 } |
| 195 } | 195 } |
| 196 | 196 |
| 197 | 197 |
| 198 finish_test | 198 finish_test |
| OLD | NEW |