Re: Bug: table inheritance. Trigger before DELETE for each statement is ignored - Mailing list pgsql-bugs

From Konstantin Nikiforov
Subject Re: Bug: table inheritance. Trigger before DELETE for each statement is ignored
Date
Msg-id 20101203111612.3304674e@avers
Whole thread Raw
In response to Re: Bug: table inheritance. Trigger before DELETE for each statement is ignored  (Tom Lane <tgl@sss.pgh.pa.us>)
Responses Re: Bug: table inheritance. Trigger before DELETE for each statement is ignored
List pgsql-bugs
Also another bug and usecase connected with subj.
It creates parent table "xtest", inherited table "xtest_inh" with
some data, and a trigger BEFORE INSERT/UPDATE/DELETE on table "xtest".
After, it deletes one row.

**********************************
CREATE TABLE xtest (id serial, data varchar, primary key(id));
CREATE TABLE xtest_inh (check (id > 0), primary key(id))
 INHERITS (xtest);

-- insert some data to inherited table "xtest_inh"
INSERT INTO xtest_inh(data) values ('ddd'), ('lol'), ('olo');

-- this function just raises an exception every time
CREATE FUNCTION just_raise_exception_tg() returns trigger as $$
BEGIN
       raise exception 'aaaaaaaaaaaaaaaaaaaaa!';
END; $$ language plpgsql;

-- adding STATEMENT-level trigger to inherited table "xtest_inh"
CREATE TRIGGER just_raise_exception_tg
 BEFORE INSERT OR UPDATE OF data OR DELETE ON xtest
 FOR EACH ROW execute procedure just_raise_exception_tg(2);

-- do some operations, that should cause to trigger the table
--INSERT into xtest(data) values ('omg');
DELETE from xtest where id =3D 2;

drop table xtest cascade;
drop function just_raise_exception_tg() cascade;
****************************************

Expected result:
Trigger should fire the exception before delete.

Real result:
Row successfully deleted. The trigger is ignored.


Comments:

1. Trigger fires ok when INSERT to table "xtest", but not fires for
DELETE. You can uncomment the line with INSERT (see above) and check.

2. Trigger fires ok when created with "FOR EACH STATEMENT" clause.
Trigger not fires when created with "FOR EACH ROW" clause.

pgsql-bugs by date:

Previous
From: Tom Lane
Date:
Subject: Re: BUG #5781: unaccent() function should be marked IMMUTABLE
Next
From: Konstantin Nikiforov
Date:
Subject: Re: Bug: table inheritance. Trigger before DELETE for each statement is ignored