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 #2832 has been fixed.
14 # $Id: tkt2832.test,v 1.4 2008/07/12 14:52:21 drh Exp $
17 set testdir [file dirname $argv0]
18 source $testdir/tester.tcl
22 CREATE TABLE t1(a PRIMARY KEY);
23 INSERT INTO t1 VALUES(2);
24 INSERT INTO t1 VALUES(1);
25 INSERT INTO t1 VALUES(3);
30 UPDATE OR REPLACE t1 SET a = 1;
37 CREATE TABLE t2(a, b);
38 CREATE TRIGGER t2_t AFTER UPDATE ON t2 BEGIN
39 DELETE FROM t2 WHERE a = new.a + 1;
41 INSERT INTO t2 VALUES(1, 2);
42 INSERT INTO t2 VALUES(2, 3);
53 CREATE TABLE t3(a, b);
54 CREATE TRIGGER t3_t AFTER DELETE ON t3 BEGIN
55 DELETE FROM t3 WHERE a = old.a + 1;
57 INSERT INTO t3 VALUES(1, 2);
58 INSERT INTO t3 VALUES(2, 3);
62 execsql { DELETE FROM t3 WHERE 1 }