sl@0
|
1 |
# 2007 Oct 3
|
sl@0
|
2 |
#
|
sl@0
|
3 |
# The author disclaims copyright to this source code. In place of
|
sl@0
|
4 |
# a legal notice, here is a blessing:
|
sl@0
|
5 |
#
|
sl@0
|
6 |
# May you do good and not evil.
|
sl@0
|
7 |
# May you find forgiveness for yourself and forgive others.
|
sl@0
|
8 |
# May you share freely, never taking more than you give.
|
sl@0
|
9 |
#
|
sl@0
|
10 |
#***********************************************************************
|
sl@0
|
11 |
#
|
sl@0
|
12 |
# This file is to test that ticket #2767 has been fixed.
|
sl@0
|
13 |
# Ticket #2767 is for a VDBE stack overflow on BEFORE
|
sl@0
|
14 |
# triggers that run RAISE(IGNORE).
|
sl@0
|
15 |
#
|
sl@0
|
16 |
# $Id: tkt2767.test,v 1.2 2008/07/12 14:52:21 drh Exp $
|
sl@0
|
17 |
#
|
sl@0
|
18 |
|
sl@0
|
19 |
set testdir [file dirname $argv0]
|
sl@0
|
20 |
source $testdir/tester.tcl
|
sl@0
|
21 |
|
sl@0
|
22 |
do_test tkt2767-1.1 {
|
sl@0
|
23 |
execsql {
|
sl@0
|
24 |
-- Construct a table with many rows of data
|
sl@0
|
25 |
CREATE TABLE t1(x);
|
sl@0
|
26 |
INSERT INTO t1 VALUES(1);
|
sl@0
|
27 |
INSERT INTO t1 VALUES(2);
|
sl@0
|
28 |
INSERT INTO t1 SELECT x+2 FROM t1;
|
sl@0
|
29 |
INSERT INTO t1 SELECT x+4 FROM t1;
|
sl@0
|
30 |
INSERT INTO t1 SELECT x+8 FROM t1;
|
sl@0
|
31 |
INSERT INTO t1 SELECT x+16 FROM t1;
|
sl@0
|
32 |
|
sl@0
|
33 |
-- BEFORE triggers that invoke raise(ignore). The effect of
|
sl@0
|
34 |
-- these triggers should be to make INSERTs, UPDATEs, and DELETEs
|
sl@0
|
35 |
-- into no-ops.
|
sl@0
|
36 |
CREATE TRIGGER r1 BEFORE UPDATE ON t1 BEGIN
|
sl@0
|
37 |
SELECT raise(ignore);
|
sl@0
|
38 |
END;
|
sl@0
|
39 |
CREATE TRIGGER r2 BEFORE DELETE ON t1 BEGIN
|
sl@0
|
40 |
SELECT raise(ignore);
|
sl@0
|
41 |
END;
|
sl@0
|
42 |
CREATE TRIGGER r3 BEFORE INSERT ON t1 BEGIN
|
sl@0
|
43 |
SELECT raise(ignore);
|
sl@0
|
44 |
END;
|
sl@0
|
45 |
|
sl@0
|
46 |
-- Verify the table content
|
sl@0
|
47 |
SELECT count(*), sum(x) FROM t1;
|
sl@0
|
48 |
}
|
sl@0
|
49 |
} {32 528}
|
sl@0
|
50 |
|
sl@0
|
51 |
# Try to delete all elements of the table. This will invoke the
|
sl@0
|
52 |
# DELETE trigger 32 times, which should overflow the VDBE stack if
|
sl@0
|
53 |
# the problem of #2767 is not fixed. If the problem is fixed, all
|
sl@0
|
54 |
# the deletes should be no-ops so the table should remain unchanged.
|
sl@0
|
55 |
#
|
sl@0
|
56 |
do_test tkt2767-1.2 {
|
sl@0
|
57 |
execsql {
|
sl@0
|
58 |
DELETE FROM t1 WHERE x>0;
|
sl@0
|
59 |
SELECT count(*), sum(x) FROM t1;
|
sl@0
|
60 |
}
|
sl@0
|
61 |
} {32 528}
|
sl@0
|
62 |
|
sl@0
|
63 |
# Try to update all elements of the table. This will invoke the
|
sl@0
|
64 |
# UPDATE trigger 32 times, which should overflow the VDBE stack if
|
sl@0
|
65 |
# the problem of #2767 is not fixed. If the problem is fixed, all
|
sl@0
|
66 |
# the updates should be no-ops so the table should remain unchanged.
|
sl@0
|
67 |
#
|
sl@0
|
68 |
do_test tkt2767-1.3 {
|
sl@0
|
69 |
execsql {
|
sl@0
|
70 |
UPDATE t1 SET x=x+1;
|
sl@0
|
71 |
SELECT count(*), sum(x) FROM t1;
|
sl@0
|
72 |
}
|
sl@0
|
73 |
} {32 528}
|
sl@0
|
74 |
|
sl@0
|
75 |
# Invoke the insert trigger. The insert trigger was working
|
sl@0
|
76 |
# even prior to the fix of #2767. But it seems good to go ahead
|
sl@0
|
77 |
# and verify that it works.
|
sl@0
|
78 |
#
|
sl@0
|
79 |
do_test tkt2767-1.4 {
|
sl@0
|
80 |
execsql {
|
sl@0
|
81 |
INSERT INTO t1 SELECT x+32 FROM t1;
|
sl@0
|
82 |
SELECT count(*), sum(x) FROM t1;
|
sl@0
|
83 |
}
|
sl@0
|
84 |
} {32 528}
|
sl@0
|
85 |
|
sl@0
|
86 |
|
sl@0
|
87 |
|
sl@0
|
88 |
finish_test
|