| From: | Michael Paquier <michael(at)paquier(dot)xyz> |
|---|---|
| To: | pgsql-committers(at)lists(dot)postgresql(dot)org |
| Subject: | pgsql: Add support for REINDEX in event triggers |
| Date: | 2023-12-04 00:55:33 |
| Message-ID: | E1r9xFF-008TbG-2I@gemulon.postgresql.org |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-committers |
Add support for REINDEX in event triggers
This commit adds support for REINDEX in event triggers, making this
command react for the events ddl_command_start and ddl_command_end. The
indexes rebuilt are collected with the ReindexStmt emitted by the
caller, for the concurrent and non-concurrent paths.
Thanks to that, it is possible to know a full list of the indexes that a
single REINDEX command has worked on.
Author: Garrett Thornburg, Jian He
Reviewed-by: Jim Jones, Michael Paquier
Discussion: https://postgr.es/m/CAEEqfk5bm32G7sbhzHbES9WejD8O8DCEOaLkxoBP7HNWxjPpvg@mail.gmail.com
Branch
------
master
Details
-------
https://git.postgresql.org/pg/commitdiff/f21848de20130146bc8039504af40bd24add54cd
Modified Files
--------------
doc/src/sgml/event-trigger.sgml | 8 +++
src/backend/catalog/index.c | 24 +++++++--
src/backend/commands/cluster.c | 2 +-
src/backend/commands/indexcmds.c | 77 ++++++++++++++++++-----------
src/backend/commands/tablecmds.c | 2 +-
src/backend/tcop/utility.c | 11 +++--
src/include/catalog/index.h | 8 +--
src/include/tcop/cmdtaglist.h | 2 +-
src/test/regress/expected/event_trigger.out | 52 +++++++++++++++++++
src/test/regress/sql/event_trigger.sql | 45 +++++++++++++++++
10 files changed, 188 insertions(+), 43 deletions(-)
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Peter Eisentraut | 2023-12-04 05:41:59 | pgsql: Remove unnecessary includes of <signal.h> |
| Previous Message | Michael Paquier | 2023-12-03 23:11:00 | pgsql: doc: Remove reference to trigger file regarding promotion |