Re: Foreign key reference counting strategy?

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Foreign key reference counting strategy?
Дата
Msg-id 14374.1160878213@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: Foreign key reference counting strategy?  (Michael Fuhr <mike@fuhr.org>)
Список pgsql-sql
Michael Fuhr <mike@fuhr.org> writes:
> My intent wasn't to assert that IF EXISTS adds a new way for the
> DELETE to fail.  I was just pointing out that the test "if no
> referencing rows exist then delete the referenced row" isn't
> foolproof, viz., the DELETE can fail even though IF EXISTS said
> there were no referencing rows.

Actually, it's me that was confused --- I was thinking in terms of
the original DELETE being done on the PK row, but of course that's
not the case here --- the original DELETE would be on some FK row.

It might be possible to make it work by adding a SELECT FOR UPDATE
that locks the PK row in the trigger before doing the IF EXISTS test,
but I think that that could create deadlock failures.  You'd basically
be making the transaction upgrade a share row lock to an exclusive
lock, and that's generally unsafe.  If you could ensure that your
trigger runs before the RI integrity trigger, maybe it would work...
        regards, tom lane


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

Предыдущее
От: Michael Fuhr
Дата:
Сообщение: Re: Foreign key reference counting strategy?
Следующее
От: Kenneth Gonsalves
Дата:
Сообщение: migrating numeric to serial from MSSQL to postgres