]> granicus.if.org Git - postgresql/commit
Apply a simple solution to the problem of making INSERT/UPDATE/DELETE
authorTom Lane <tgl@sss.pgh.pa.us>
Sat, 2 Sep 2006 17:06:52 +0000 (17:06 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Sat, 2 Sep 2006 17:06:52 +0000 (17:06 +0000)
commit917bbebf7ffd4466e1eeaba70b71fb60423e3ece
tree3d1b4f8647008847ea4bc25d757ff09b3fd33e9e
parent74924d29fa512564adaa67172c88ecb53a592f2e
Apply a simple solution to the problem of making INSERT/UPDATE/DELETE
RETURNING play nice with views/rules.  To wit, have the rule rewriter
rewrite any RETURNING clause found in a rule to produce what the rule's
triggering query asked for in its RETURNING clause, in particular drop
the RETURNING clause if no RETURNING in the triggering query.  This
leaves the responsibility for knowing how to produce the view's output
columns on the rule author, without requiring any fundamental changes
in rule semantics such as adding new rule event types would do.  The
initial implementation constrains things to ensure that there is
exactly one, unconditionally invoked RETURNING clause among the rules
for an event --- later we might be able to relax that, but for a post
feature freeze fix it seems better to minimize how much invention we do.
Per gripe from Jaime Casanova.
doc/src/sgml/ref/create_rule.sgml
doc/src/sgml/rules.sgml
src/backend/rewrite/rewriteDefine.c
src/backend/rewrite/rewriteHandler.c
src/test/regress/expected/returning.out
src/test/regress/sql/returning.sql