Re: Triggers do not fire

From: "Aasmund Midttun Godal" <postgresql(at)envisity(dot)com>
To: dassing(at)wettzell(dot)ifag(dot)de
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: Triggers do not fire
Date: 2001-10-16 19:43:27
Message-ID: 20011016194327.8782.qmail@ns.krot.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Your update trigger is fired FOR EACH ROW and no rows are updated i.e. no trigger fired!
On Tue, 16 Oct 2001 14:48:59 +0200, Reiner Dassing <dassing(at)wettzell(dot)ifag(dot)de> wrote:
> Hallo!
>
> I have written a very small test procedure to show a possible error
> on PostgreSQL V7.1.1.
> A trigger does not fire the function on update but on inserts.
> Does someone have made the same experiences?
>
>
> Here is the short example which is doing nothing important, just showing
> the
> situation:
>
> DROP TABLE test;
> CREATE TABLE test (
> "sensor_id" int4 NOT NULL,
> "epoch" datetime NOT NULL,
> "value" float4 NOT NULL,
> PRIMARY KEY (sensor_id,epoch));
>
> DROP FUNCTION f_test();
> CREATE FUNCTION f_test() RETURNS OPAQUE AS '
> BEGIN
> RAISE NOTICE ''Fired %'',TG_OP;
> RETURN NULL;
> END;
> ' LANGUAGE 'plpgsql';
>
>
> DROP TRIGGER t_test;
> CREATE TRIGGER t_test BEFORE INSERT OR UPDATE ON test FOR EACH ROW
> EXECUTE PROCEDURE f_test();
>
> INSERT INTO test VALUES(1,'2000-10-11 12:00:00',-20.2);
> UPDATE test SET value = 1000.0 WHERE epoch = '2000-10-11 12:10:00' AND
> sensor_id = 1;
>
> The result is as follows:
> INSERT INTO test VALUES(1,'2000-10-11 12:00:00',-20.2);
> NOTICE: Fired INSERT
> INSERT 0 0
> UPDATE test SET value = 1000.0 WHERE epoch = '2000-10-11 12:10:00' AND
> sensor_id = 1;
> UPDATE 0
>
> The insert notice can be shown!
> The update notice is not there!
>
> Why?
>
>
> --
> Mit freundlichen Gruessen / With best regards
> Reiner Dassing
>
> ---------------------------(end of broadcast)---------------------------
> TIP 2: you can get off all lists at once with the unregister command
> (send "unregister YourEmailAddressHere" to majordomo(at)postgresql(dot)org)

Aasmund Midttun Godal

aasmund(at)godal(dot)com - http://www.godal.com/
+47 40 45 20 46

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Stephan Szabo 2001-10-16 20:02:30 Re: Triggers do not fire
Previous Message Anthony Bouvier 2001-10-16 18:23:43 Multiple Parameters to an Aggregate Function