Question on trigger data visibility

From: Maurice Gittens <mainmanmauricio(at)gmail(dot)com>
To: pgsql-general(at)postgresql(dot)org
Subject: Question on trigger data visibility
Date: 2010-08-30 11:20:14
Message-ID: AANLkTin7T5c3hzBXP8Bdo_yS30iUq6hnkv48fmgwi0z4@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Hi,

Assume tablex, tabley and tablez are correctly populated in my database.

My purpose is to enforce referential integrity between a column in the
tablex (the child)
and a column in tablez (the parent).

Since normal foreign keys do not give me this functionality, I decide
to write a trigger.
My trigger function looks something like:

CREATE OR REPLACE FUNCTION trigger_on_tablex() RETURNS trigger AS $$
BEGIN
PERFORM 1 FROM
tablex AS tab_x
INNER JOIN tabley AS tab_y ON tab_x.gp = tab_y.id
INNER JOIN tablez AS tab_z ON tab_y.ml = tab_z.id
WHERE
tab_x.name = tab_z.name;

IF NOT FOUND THEN
RAISE EXCEPTION 'constraint violated ';
END IF;
END;$$ LANGUAGE plpgsql;

CREATE TRIGGER mytrigger
AFTER INSERT ON tablex FOR EACH STATEMENT EXECUTE PROCEDURE
trigger_on_tablex();

My problem is that no matter what I insert into tablex, the exception
is always raised.

So, it seems that even though my trigger is defined as AFTER INSERT
FOR EACH STATEMENT, the inserted row
does not appear to be included in the join.

So, now to my question: Should, as a matter of principle, statement
level triggers not "see" rows recently inserted into the tablex?

Thanks,
Maurice

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Whit Armstrong 2010-08-30 11:56:54 Re: Jira and PostgreSQL
Previous Message Thomas Kellerer 2010-08-30 11:12:00 Re: Jira and PostgreSQL