[EMAIL PROTECTED] (Tom Lane) wrote in message news:<[EMAIL PROTECTED]>...
> I think you need "return old", not "return new", in the body of the
> trigger if you want the delete to take place.  new would be NULL in
> a delete situation ...
> 
>                       regards, tom lane
> 
> ---------------------------(end of broadcast)---------------------------
> TIP 5: Have you checked our extensive FAQ?
> 
> http://www.postgresql.org/users-lounge/docs/faq.html

Ok I saw that in the documentation so I tryied a variant of it:

if TG_OP = 'DELETE' then
 return old;
else
 return new;
end if;

But the TG_OP comes empty and it allawys try return new preventing the
delete to happen.

And that was supposed to work isn't it ?

---------------------------(end of broadcast)---------------------------
TIP 5: Have you checked our extensive FAQ?

http://www.postgresql.org/users-lounge/docs/faq.html

Reply via email to