FKey not enforced resulting in broken Dump/Reload

Поиск
Список
Период
Сортировка
От Rod Taylor
Тема FKey not enforced resulting in broken Dump/Reload
Дата
Msg-id CAKddOFANAYN358LMdt0yh2Cm1zFrA942WmDU3C0d-aGHR3RZcQ@mail.gmail.com
обсуждение исходный текст
Ответы Re: FKey not enforced resulting in broken Dump/Reload  (Robert Haas <robertmhaas@gmail.com>)
Список pgsql-hackers
A poorly coded trigger on the referencing table has the ability to break foreign keys, and as a result create a database which cannot be dumped and reloaded.

The BEFORE DELETE trigger accidentally does RETURN NEW, which suppresses the DELETE action by the foreign key trigger. This allows the record from the referenced table to be deleted and the record in the referencing table to remain in place.

While I don't expect Pg to do what the coder meant, but it should throw an error and not leave foreign key'd data in an invalid state.

This applies to both 9.1 and 9.2.


Please see attached bug.sql.
Вложения

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

Предыдущее
От: Alvaro Herrera
Дата:
Сообщение: Re: getting rid of SnapshotNow
Следующее
От: Robert Haas
Дата:
Сообщение: Re: getting rid of SnapshotNow