From: | Matthew Peter <survivedsushi(at)yahoo(dot)com> |
---|---|
To: | Richard Huxton <dev(at)archonet(dot)com> |
Cc: | pgsql-general(at)postgresql(dot)org |
Subject: | Re: RULE - special variables? |
Date: | 2006-11-10 02:06:00 |
Message-ID: | 20061110020600.36981.qmail@web35208.mail.mud.yahoo.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
--- Richard Huxton <dev(at)archonet(dot)com> wrote:
> Matthew Peter wrote:
> > Do rules get special variables like triggers? Can I set variables in them like
> > triggers?
>
> You get NEW/OLD but they mean something subtly different. Rules act on a
> query-tree so they are more like placeholders.
>
> You can't set variables in triggers. You do so in a function. If your
> rule calls a function, that could have variables.
You can set variables in triggers in the DECLARE block when plpgsql is used.
Reading the docs they only show single-statement rules so it never said assigning
could be done so here I am. Sometimes it's easier to write a quick rule than a
trigger function and separate firing condition, especially when they function so
similiarily in theory. Thanks.
____________________________________________________________________________________
Cheap talk?
Check out Yahoo! Messenger's low PC-to-Phone call rates.
http://voice.yahoo.com
From | Date | Subject | |
---|---|---|---|
Next Message | Thomas H. | 2006-11-10 02:09:03 | Re: planer picks a bad plan (seq-scan instead of index) when adding an additional join |
Previous Message | Glen Parker | 2006-11-10 02:04:46 | Re: AutoVacuum on demand? |