diff options
| author | Peter Eisentraut | 2024-11-06 12:42:27 +0000 |
|---|---|---|
| committer | Peter Eisentraut | 2024-11-06 12:43:17 +0000 |
| commit | a0be94067e76c81a2bbba6a98b584b870024e363 (patch) | |
| tree | 828a7c923fd7f1b2c367edd963af6e59763852e1 /src/backend/tcop | |
| parent | 9044fc1d45a0212fd123bd8f364eac058f60fed7 (diff) | |
doc: Remove event trigger firing matrix
This is difficult to maintain accurately, and it was probably already
somewhat incorrect, especially in the sql_drop and table_rewrite
categories.
The prior section already documented which DDL commands are *not*
supported (which was also slightly outdated), so let's expand that a
bit and just rely on that instead of listing out each command in full
detail.
Reviewed-by: Daniel Gustafsson <[email protected]>
Reviewed-by: Michael Paquier <[email protected]>
Reviewed-by: Jian He <[email protected]>
Discussion: https://www.postgresql.org/message-id/flat/CACJufxE_UAuxcM08BW5oVsg34v0cFWoEt8yBa5xSAoKLmL6LTQ%40mail.gmail.com
Diffstat (limited to 'src/backend/tcop')
| -rw-r--r-- | src/backend/tcop/utility.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/backend/tcop/utility.c b/src/backend/tcop/utility.c index b2ea8125c92..f28bf371059 100644 --- a/src/backend/tcop/utility.c +++ b/src/backend/tcop/utility.c @@ -535,6 +535,9 @@ ProcessUtility(PlannedStmt *pstmt, * event trigger code not be invoked when doing START TRANSACTION for * example, because we might need to refresh the event trigger cache, * which requires being in a valid transaction. + * + * When adding or moving utility commands, check that the documentation in + * event-trigger.sgml is kept up to date. */ void standard_ProcessUtility(PlannedStmt *pstmt, |
