Make invalid primary_slot_name follow standard GUC error reporting.
authorFujii Masao <[email protected]>
Wed, 22 Oct 2025 11:13:15 +0000 (20:13 +0900)
committerFujii Masao <[email protected]>
Wed, 22 Oct 2025 11:14:02 +0000 (20:14 +0900)
commitf106f53df6f58cb3559b3e8b825a048f04863c52
tree3a5510a09a06f2357a30c32eec51c9d98f51273f
parenta7ab6ce6a0fccf016e74794a896508ba2546cce8
Make invalid primary_slot_name follow standard GUC error reporting.

Previously, if primary_slot_name was set to an invalid slot name and
the configuration file was reloaded, both the postmaster and all other
backend processes reported a WARNING. With many processes running,
this could produce a flood of duplicate messages. The problem was that
the GUC check hook for primary_slot_name reported errors at WARNING
level via ereport().

This commit changes the check hook to use GUC_check_errdetail() and
GUC_check_errhint() for error reporting. As with other GUC parameters,
this causes non-postmaster processes to log the message at DEBUG3,
so by default, only the postmaster's message appears in the log file.

Backpatch to all supported versions.

Author: Fujii Masao <[email protected]>
Reviewed-by: Chao Li <[email protected]>
Reviewed-by: Amit Kapila <[email protected]>
Reviewed-by: Álvaro Herrera <[email protected]>
Reviewed-by: Hayato Kuroda <[email protected]>
Discussion: https://postgr.es/m/CAHGQGwFud-cvthCTfusBfKHBS6Jj6kdAPTdLWKvP2qjUX6L_wA@mail.gmail.com
Backpatch-through: 13
src/backend/replication/slot.c
src/backend/utils/misc/guc.c
src/include/replication/slot.h