diff options
author | Michael Paquier <michael@paquier.xyz> | 2023-12-04 09:53:49 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2023-12-04 09:53:49 +0900 |
commit | f21848de20130146bc8039504af40bd24add54cd (patch) | |
tree | b2c95265c2ee21f151e0d5a38778adef649d451b /src/backend/commands/tablecmds.c | |
parent | d78b6cbb602f5c36db3e267e2713b3aa22c815a5 (diff) | |
download | postgresql-f21848de20130146bc8039504af40bd24add54cd.tar.gz postgresql-f21848de20130146bc8039504af40bd24add54cd.zip |
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
Diffstat (limited to 'src/backend/commands/tablecmds.c')
-rw-r--r-- | src/backend/commands/tablecmds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/commands/tablecmds.c b/src/backend/commands/tablecmds.c index 7206da7c53c..6b0a20010e2 100644 --- a/src/backend/commands/tablecmds.c +++ b/src/backend/commands/tablecmds.c @@ -2169,7 +2169,7 @@ ExecuteTruncateGuts(List *explicit_rels, /* * Reconstruct the indexes to match, and we're done. */ - reindex_relation(heap_relid, REINDEX_REL_PROCESS_TOAST, + reindex_relation(NULL, heap_relid, REINDEX_REL_PROCESS_TOAST, &reindex_params); } |