]> granicus.if.org Git - postgresql/commit
Offer triggers on foreign tables.
authorNoah Misch <noah@leadboat.com>
Sun, 23 Mar 2014 06:16:34 +0000 (02:16 -0400)
committerNoah Misch <noah@leadboat.com>
Sun, 23 Mar 2014 06:16:34 +0000 (02:16 -0400)
commit7cbe57c34dec4860243e6d0f81738cfbb6e5d069
tree1b2e725b85caef56f986db8ae7c43732819c1f5c
parent6115480c543c0141011a99db78987ad13540be59
Offer triggers on foreign tables.

This covers all the SQL-standard trigger types supported for regular
tables; it does not cover constraint triggers.  The approach for
acquiring the old row mirrors that for view INSTEAD OF triggers.  For
AFTER ROW triggers, we spool the foreign tuples to a tuplestore.

This changes the FDW API contract; when deciding which columns to
populate in the slot returned from data modification callbacks, writable
FDWs will need to check for AFTER ROW triggers in addition to checking
for a RETURNING clause.

In support of the feature addition, refactor the TriggerFlags bits and
the assembly of old tuples in ModifyTable.

Ronan Dunklau, reviewed by KaiGai Kohei; some additional hacking by me.
14 files changed:
contrib/postgres_fdw/deparse.c
contrib/postgres_fdw/expected/postgres_fdw.out
contrib/postgres_fdw/postgres_fdw.c
contrib/postgres_fdw/sql/postgres_fdw.sql
doc/src/sgml/fdwhandler.sgml
doc/src/sgml/ref/create_trigger.sgml
doc/src/sgml/trigger.sgml
src/backend/commands/tablecmds.c
src/backend/commands/trigger.c
src/backend/executor/nodeModifyTable.c
src/backend/rewrite/rewriteHandler.c
src/include/commands/trigger.h
src/test/regress/expected/foreign_data.out
src/test/regress/sql/foreign_data.sql