Re: perlu: did I find a bug, or did I make one? - Mailing list pgsql-sql

From Bart Degryse
Subject Re: perlu: did I find a bug, or did I make one?
Date
Msg-id 466444C2.A3DD.0030.0@indicator.be
Whole thread Raw
In response to Re: perlu: did I find a bug, or did I make one?  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-sql
Well, actually I do. If there's any error, I want nothing done.
But my real point was that although there are 2 records in my source table with dataareaid = 'lil' and two with dataareaid = 'bol' I still get 4 times the 'lil' error message, while I was expecting 2 times the 'lil' error message and two times the 'bol' error message.

>>> Tom Lane <tgl@sss.pgh.pa.us> 2007-06-04 16:52 >>>
"Bart Degryse" <Bart.Degryse@indicator.be> writes:
> CREATE TRIGGER "afh_test_tr" BEFORE INSERT
> ON "public"."afh_test" FOR EACH ROW
> EXECUTE PROCEDURE "public"."temp_func1"();

> CREATE OR REPLACE FUNCTION "public"."temp_func1" () RETURNS trigger AS
> $body$
> BEGIN
>   IF NEW.dataareaid =3D 'lil' THEN
>     RAISE EXCEPTION '% foutje %', NEW.dataareaid, NEW.name;
>   elsIF NEW.dataareaid =3D 'bol' THEN
>     RAISE EXCEPTION '% nog een foutje %', NEW.dataareaid, NEW.name;
>   END IF;
>   RETURN NULL;
> END;
> $body$
> LANGUAGE 'plpgsql' VOLATILE CALLED ON NULL INPUT SECURITY INVOKER;

You probably don't want this trigger doing RETURN NULL; that's
turning all your inserts into no-ops.

regards, tom lane

pgsql-sql by date:

Previous
From: Tom Lane
Date:
Subject: Re: perlu: did I find a bug, or did I make one?
Next
From: Joshua
Date:
Subject: current_date / datetime stuff