Re: Doc bug (?) in rules vs triggers

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Doc bug (?) in rules vs triggers
Дата
Msg-id 10821.1076881384@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Doc bug (?) in rules vs triggers  (andrew@pillette.com)
Список pgsql-docs
andrew@pillette.com writes:
> Chapter 13 of the documentation on Rules versus Triggers says in part
> "On the other hand a trigger that is fired on INSERT on a view can do
> the same as a rule, put the data somewhere else and suppress the
> insert in the view."

> However, it does not appear to be possible to set a trigger on a view,
> so this means something else.

I think it means "this documentation is out of date" :-(.

Once long ago a view was a regular table with an ON SELECT rule, and so
you could in fact put triggers to catch attempted inserts rather than
relying on an ON INSERT rule.  This was removed because it was too
failure-prone --- people who had misdefined their triggers kept
wondering where their data went, when it in fact went into the view
table and could never be seen again because of the ON SELECT rule.
By requiring an ON INSERT rule, we can mechanically check for failure
to redirect the insert.  I think there were some implementation
considerations motivating that change, as well.

            regards, tom lane

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

Предыдущее
От: andrew@pillette.com
Дата:
Сообщение: Doc bug (?) in rules vs triggers
Следующее
От: ljb
Дата:
Сообщение: Request temporary freeze of libpgtcl chapter in manual