Skip to content
Snippets Groups Projects
Select Git revision
  • benchmark-tools
  • postgres-lambda
  • master default
  • REL9_4_25
  • REL9_5_20
  • REL9_6_16
  • REL_10_11
  • REL_11_6
  • REL_12_1
  • REL_12_0
  • REL_12_RC1
  • REL_12_BETA4
  • REL9_4_24
  • REL9_5_19
  • REL9_6_15
  • REL_10_10
  • REL_11_5
  • REL_12_BETA3
  • REL9_4_23
  • REL9_5_18
  • REL9_6_14
  • REL_10_9
  • REL_11_4
23 results

trigger.c

  • Noah Misch's avatar
    7cbe57c3
    Offer triggers on foreign tables. · 7cbe57c3
    Noah Misch authored
    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.
    7cbe57c3
    History
    Offer triggers on foreign tables.
    Noah Misch authored
    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.