Re: unexpected effect of FOREIGN KEY ON CASCADE DELETE

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: unexpected effect of FOREIGN KEY ON CASCADE DELETE
Дата
Msg-id 25742.1277317862@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: unexpected effect of FOREIGN KEY ON CASCADE DELETE  (Thom Brown <thombrown@gmail.com>)
Ответы Re: unexpected effect of FOREIGN KEY ON CASCADE DELETE  (Grzegorz Jaśkiewicz <gryzman@gmail.com>)
Список pgsql-general
Thom Brown <thombrown@gmail.com> writes:
> Yes, I'm still not exactly sure why it's seeing uncommitted changes. :/

Because it's all one transaction.  A transaction that couldn't see its
own changes wouldn't be very useful.

I think what the OP is unhappy about is that he imagines that the ON
CASCADE DELETE action is part of the original DELETE on the primary-key
table.  But it is not: per SQL spec, it is a separate operation
happening after the original DELETE.  (In fact, it might be quite a lot
after the original delete, if you have the FK constraint set as
deferred.)  The trigger on the referencing table fires before the actual
delete of the referencing row, but it's going to see the original DELETE
statement as already completed, because it was a previous operation
within the current transaction.

            regards, tom lane

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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: what is the meaning of Datum?
Следующее
От: Adrian Klaver
Дата:
Сообщение: Re: unexpected effect of FOREIGN KEY ON CASCADE DELETE