Re: Transaction Triggers!

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Transaction Triggers!
Дата
Msg-id 2996.1053833488@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Transaction Triggers!  ("Omkar Rath" <orath@cisco.com>)
Список pgsql-general
"Omkar Rath" <orath@cisco.com> writes:
> Does Postgres triggers have an "after commit" clause or plans to do so

Such a thing sounds like a complete contradiction in terms to me.  What
happens if you get an error in the "after commit" operation?  You can't
roll back the transaction, it's already committed.  Also, my
understanding of "transaction commit" is that it means all the actions
of the transaction are done and guaranteed not to be lost; which is
hardly possible to guarantee if some are not done yet.

> If NOT, then is there any way for developer's to have
> an "after-commit-do" mechanism?

Your application can do whatever it likes ... recognizing that it has no
guarantees about completion.

            regards, tom lane

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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: plpgsql vs. SQL performance
Следующее
От: Tom Lane
Дата:
Сообщение: Re: Trigger in transaction