Re: Returning NEW in an on-delete trigger

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Returning NEW in an on-delete trigger
Дата
Msg-id 25194.1221764683@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Returning NEW in an on-delete trigger  ("Michael Nolan" <htfoot@gmail.com>)
Ответы Re: Returning NEW in an on-delete trigger  (Jeff Davis <pgsql@j-davis.com>)
Список pgsql-general
"Michael Nolan" <htfoot@gmail.com> writes:
> Recently I discovered a coding error of mine in a trigger that is called
> only for deletes.
> I was returning NEW instead of OLD.
> Since NEW is undefined when deleting a row, it was failing and the row
> wasn't being deleted.
> However, it was failing silently.  Shouldn't this have recorded an error or
> warning somewhere?

The NEW variable is just set up as being NULL in an ON DELETE trigger,
likewise for OLD in an ON INSERT trigger.

This does seem like a bit of a gotcha for someone who writes RETURN NEW
instead of RETURN OLD or vice versa, but I'm not sure how much we can do
about that.  Lots of people like to write triggers that fire on multiple
event types, so we couldn't throw a syntax error for such a reference.
A runtime error for a use of the variable might be possible, but a quick
look at the code doesn't make it look easy.

            regards, tom lane

В списке pgsql-general по дате отправления:

Предыдущее
От: Jeff Davis
Дата:
Сообщение: Re: Returning NEW in an on-delete trigger
Следующее
От: Magnus Hagander
Дата:
Сообщение: Re: Running initdb while logged in as Administrator user (Windows)