no cascade triggers?

Поиск
Список
Период
Сортировка
От Chris Mair
Тема no cascade triggers?
Дата
Msg-id 46811CEC.7040704@1006.org
обсуждение исходный текст
Ответы Re: no cascade triggers?  ("A.M." <agentm@themactionfaction.com>)
Re: no cascade triggers?  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-hackers
Hello,

triggers in PostgreSQL are cascading by default. From section 34.1.
of the 8.2 manual:
  "If a trigger function executes SQL commands then these commands   may fire triggers again. This is known as
cascadingtriggers.   There is no direct limitation on the number of cascade levels.   It is possible for cascades to
causea recursive invocation of   the same trigger; for example, an INSERT trigger might execute   a command that
insertsan additional row into the same table,   causing the INSERT trigger to be fired again. It is the trigger
programmer'sresponsibility to avoid infinite recursion in such   scenarios."
 

On the italian list we're discussing a case were a user reportedly
worked around this (i.e. got rid of unwanted cascading calls) by
writing an on insert trigger procedure something on the lines of:

ALTER TABLE tab DISABLE TRIGGER USER; -- do more inserts into the same table
ALTER TABLE tab ENABLE TRIGGER USER;

While this reporetedly worked well in 8.2.1 it does not in 8.2.4
resulting in an error:
  ERROR: relation "distinta_base1" is being used by active queries  in this session Stato SQL: 55006

Now -- while we agree that disabling a trigger from inside itself
is a somewhat strange thing to do, we cannot see a good and easy
solution to the problem (of avoiding cascading trigger calls).

General question: would a "no cascade" clause for triggers be a
todo item?

Special question: any recomendations for our user? He has a somewhat
large number of triggers that do the alter table trick - working
around it by means of some context-based logic would be a lot of
work...


Bye :)
Chris.



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

Предыдущее
От: Gregory Stark
Дата:
Сообщение: Re: [COMMITTERS] pgsql: Arrange for quote_identifier() and pg_dump to not quote keywords
Следующее
От: Tom Lane
Дата:
Сообщение: Re: Frustrating issue with PGXS