Re: Doc bug (?) in rules vs triggers - Mailing list pgsql-docs

From Tom Lane
Subject Re: Doc bug (?) in rules vs triggers
Date
Msg-id 10821.1076881384@sss.pgh.pa.us
Whole thread Raw
In response to Doc bug (?) in rules vs triggers  (andrew@pillette.com)
List 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 by date:

Previous
From: andrew@pillette.com
Date:
Subject: Doc bug (?) in rules vs triggers
Next
From: ljb
Date:
Subject: Request temporary freeze of libpgtcl chapter in manual