First public contribution.
3 # The author disclaims copyright to this source code. In place of
4 # a legal notice, here is a blessing:
6 # May you do good and not evil.
7 # May you find forgiveness for yourself and forgive others.
8 # May you share freely, never taking more than you give.
10 #***********************************************************************
12 # This file is to test that ticket #2767 has been fixed.
13 # Ticket #2767 is for a VDBE stack overflow on BEFORE
14 # triggers that run RAISE(IGNORE).
16 # $Id: tkt2767.test,v 1.2 2008/07/12 14:52:21 drh Exp $
19 set testdir [file dirname $argv0]
20 source $testdir/tester.tcl
24 -- Construct a table with many rows of data
26 INSERT INTO t1 VALUES(1);
27 INSERT INTO t1 VALUES(2);
28 INSERT INTO t1 SELECT x+2 FROM t1;
29 INSERT INTO t1 SELECT x+4 FROM t1;
30 INSERT INTO t1 SELECT x+8 FROM t1;
31 INSERT INTO t1 SELECT x+16 FROM t1;
33 -- BEFORE triggers that invoke raise(ignore). The effect of
34 -- these triggers should be to make INSERTs, UPDATEs, and DELETEs
36 CREATE TRIGGER r1 BEFORE UPDATE ON t1 BEGIN
39 CREATE TRIGGER r2 BEFORE DELETE ON t1 BEGIN
42 CREATE TRIGGER r3 BEFORE INSERT ON t1 BEGIN
46 -- Verify the table content
47 SELECT count(*), sum(x) FROM t1;
51 # Try to delete all elements of the table. This will invoke the
52 # DELETE trigger 32 times, which should overflow the VDBE stack if
53 # the problem of #2767 is not fixed. If the problem is fixed, all
54 # the deletes should be no-ops so the table should remain unchanged.
58 DELETE FROM t1 WHERE x>0;
59 SELECT count(*), sum(x) FROM t1;
63 # Try to update all elements of the table. This will invoke the
64 # UPDATE trigger 32 times, which should overflow the VDBE stack if
65 # the problem of #2767 is not fixed. If the problem is fixed, all
66 # the updates should be no-ops so the table should remain unchanged.
71 SELECT count(*), sum(x) FROM t1;
75 # Invoke the insert trigger. The insert trigger was working
76 # even prior to the fix of #2767. But it seems good to go ahead
77 # and verify that it works.
81 INSERT INTO t1 SELECT x+32 FROM t1;
82 SELECT count(*), sum(x) FROM t1;