Compound triggers v15
EDB Postgres Advanced Server has compatible syntax to support compound triggers. A compound trigger combines all the triggering timings under one trigger body that you can invoke at one or more timing points. A timing point is a point in time related to a triggering statement, which is an INSERT
, UPDATE
, DELETE
, or TRUNCATE
statement that modifies data. The supported timing points are:
BEFORE STATEMENT
— Before the triggering statement executes.BEFORE EACH ROW
— Before each row that the triggering statement affects.AFTER EACH ROW
— After each row that the triggering statement affects.AFTER STATEMENT
— After the triggering statement executes.INSTEAD OF EACH ROW
— Trigger fires once for every row affected by the triggering statement.
A compound trigger can include any combination of timing points defined in a single trigger.
The optional declaration section in a compound trigger allows you to declare trigger-level variables and subprograms. The content of the declaration is accessible to all timing points referenced by the trigger definition. The variables and subprograms created by the declaration persist only for the duration of the triggering statement.
A compound trigger contains a declaration followed by a PL block for each timing point:
Note
You don't have to have all the four timing blocks. You can create a compound trigger for any of the required timing points.
A compound trigger has the following restrictions:
- A compound trigger body is made up of a compound trigger block.
- You can define a compound trigger on a table or a view.
- You can't transfer exceptions to another timing-point section. They must be handled separately in that section only by each compound trigger block.
- If a
GOTO
statement is specified in a timing-point section, then the target of theGOTO
statement must also be specified in the same timing-point section. :OLD
and:NEW
variable identifiers can't exist in the declarative section, theBEFORE STATEMENT
section, or theAFTER STATEMENT
section.:NEW
values are modified only by theBEFORE EACH ROW
block.- The sequence of compound trigger timing-point execution is specific. However, if a simple trigger is in the same timing point, then the simple trigger is fired first, followed by the compound triggers.