Re: trigger update delete - found it

From: "Sim Zacks" <sim(at)compulab(dot)co(dot)il>
To: pgsql-general(at)postgresql(dot)org
Subject: Re: trigger update delete - found it
Date: 2005-07-03 08:38:02
Message-ID: da84pf$1lkl$1@news.hub.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

I found the TG_OP variable which tels me which operation is currently being
done.

"Sim Zacks" <sim(at)compulab(dot)co(dot)il> wrote in message
news:da83sd$1i7g$1(at)news(dot)hub(dot)org(dot)(dot)(dot)
> I am trying to write a trigger function that will do something when either
a
> row had been deleted or a field has been updated to null.
>
> The problem I am having is determining in the function if this is a delete
> or not. I would like to say:
> if this is delete trigger or new.field1 is null then
> ...
> end if
>
> new.field1 dies when it is a delete trigger, as it is supposed to. But I
> need the function to know the difference.
>
> Any thoughts?
>
>

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Ben-Nes Yonatan 2005-07-03 11:17:42 Re: Populating huge tables each day
Previous Message Sim Zacks 2005-07-03 08:22:31 trigger update delete