OLD | NEW |
1 # 2009 June 23 | 1 # 2009 June 23 |
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 #*********************************************************************** |
11 # | 11 # |
12 # Tests to verify ticket #3929 is fixed. | 12 # Tests to verify ticket #3929 is fixed. |
13 # | 13 # |
14 # $Id: tkt3929.test,v 1.1 2009/06/23 11:53:09 danielk1977 Exp $ | 14 # $Id: tkt3929.test,v 1.1 2009/06/23 11:53:09 danielk1977 Exp $ |
15 | 15 |
16 set testdir [file dirname $argv0] | 16 set testdir [file dirname $argv0] |
17 source $testdir/tester.tcl | 17 source $testdir/tester.tcl |
| 18 ifcapable {!trigger} { |
| 19 finish_test |
| 20 return |
| 21 } |
18 | 22 |
19 do_test tkt3929-1.0 { | 23 do_test tkt3929-1.0 { |
20 execsql { | 24 execsql { |
21 PRAGMA page_size = 1024; | 25 PRAGMA page_size = 1024; |
22 CREATE TABLE t1(a, b); | 26 CREATE TABLE t1(a, b); |
23 CREATE INDEX i1 ON t1(a, b); | 27 CREATE INDEX i1 ON t1(a, b); |
24 CREATE TRIGGER t1_t1 AFTER INSERT ON t1 BEGIN | 28 CREATE TRIGGER t1_t1 AFTER INSERT ON t1 BEGIN |
25 UPDATE t1 SET b = 'value: ' || a WHERE t1.rowid = new.rowid; | 29 UPDATE t1 SET b = 'value: ' || a WHERE t1.rowid = new.rowid; |
26 END; | 30 END; |
27 } | 31 } |
(...skipping 12 matching lines...) Expand all Loading... |
40 # | 44 # |
41 do_test tkt3930-1.2 { | 45 do_test tkt3930-1.2 { |
42 for {set i 3} {$i < 100} {incr i} { | 46 for {set i 3} {$i < 100} {incr i} { |
43 execsql { INSERT INTO t1(a) VALUES($i) } | 47 execsql { INSERT INTO t1(a) VALUES($i) } |
44 } | 48 } |
45 } {} | 49 } {} |
46 | 50 |
47 integrity_check tkt3930-1.3 | 51 integrity_check tkt3930-1.3 |
48 finish_test | 52 finish_test |
49 | 53 |
OLD | NEW |