sl@0
|
1 |
# The author disclaims copyright to this source code. In place of
|
sl@0
|
2 |
# a legal notice, here is a blessing:
|
sl@0
|
3 |
#
|
sl@0
|
4 |
# May you do good and not evil.
|
sl@0
|
5 |
# May you find forgiveness for yourself and forgive others.
|
sl@0
|
6 |
# May you share freely, never taking more than you give.
|
sl@0
|
7 |
#
|
sl@0
|
8 |
#***********************************************************************
|
sl@0
|
9 |
#
|
sl@0
|
10 |
# This file tests the triggers of views.
|
sl@0
|
11 |
#
|
sl@0
|
12 |
|
sl@0
|
13 |
set testdir [file dirname $argv0]
|
sl@0
|
14 |
source $testdir/tester.tcl
|
sl@0
|
15 |
ifcapable {!trigger} {
|
sl@0
|
16 |
finish_test
|
sl@0
|
17 |
return
|
sl@0
|
18 |
}
|
sl@0
|
19 |
|
sl@0
|
20 |
# Ticket #844
|
sl@0
|
21 |
#
|
sl@0
|
22 |
do_test trigger5-1.1 {
|
sl@0
|
23 |
execsql {
|
sl@0
|
24 |
CREATE TABLE Item(
|
sl@0
|
25 |
a integer PRIMARY KEY NOT NULL ,
|
sl@0
|
26 |
b double NULL ,
|
sl@0
|
27 |
c int NOT NULL DEFAULT 0
|
sl@0
|
28 |
);
|
sl@0
|
29 |
CREATE TABLE Undo(UndoAction TEXT);
|
sl@0
|
30 |
INSERT INTO Item VALUES (1,38205.60865,340);
|
sl@0
|
31 |
CREATE TRIGGER trigItem_UNDO_AD AFTER DELETE ON Item FOR EACH ROW
|
sl@0
|
32 |
BEGIN
|
sl@0
|
33 |
INSERT INTO Undo SELECT 'INSERT INTO Item (a,b,c) VALUES ('
|
sl@0
|
34 |
|| coalesce(old.a,'NULL') || ',' || quote(old.b) || ',' || old.c || ');';
|
sl@0
|
35 |
END;
|
sl@0
|
36 |
DELETE FROM Item WHERE a = 1;
|
sl@0
|
37 |
SELECT * FROM Undo;
|
sl@0
|
38 |
}
|
sl@0
|
39 |
} {{INSERT INTO Item (a,b,c) VALUES (1,38205.60865,340);}}
|
sl@0
|
40 |
|
sl@0
|
41 |
integrity_check trigger5-99.9
|
sl@0
|
42 |
|
sl@0
|
43 |
finish_test
|