| From: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
|---|---|
| To: | "Bart Degryse" <Bart(dot)Degryse(at)indicator(dot)be> |
| Cc: | pgsql-sql(at)postgresql(dot)org |
| Subject: | Re: perlu: did I find a bug, or did I make one? |
| Date: | 2007-06-04 14:52:48 |
| Message-ID: | 19467.1180968768@sss.pgh.pa.us |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-sql |
"Bart Degryse" <Bart(dot)Degryse(at)indicator(dot)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
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Bart Degryse | 2007-06-04 14:58:43 | Re: perlu: did I find a bug, or did I make one? |
| Previous Message | Andrew Sullivan | 2007-06-04 13:12:30 | Re: Versionning (was: Whole-row comparison) |