Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions credcheck.c
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,11 @@ static const uint32 PGPH_VERSION = 100;
* Custom WAL resource manager used to keep the password history file in
* sync between the primary and its standbys.
*
* RM_EXPERIMENTAL_ID is used until a stable id is reserved for credcheck;
* see access/rmgrlist.h.
* RM_CREDCHECK_ID (150) is a stable custom WAL resource manager ID
* allocated to credcheck; see the PostgreSQL custom WAL Rmgr registry at
* https://wiki.postgresql.org/wiki/CustomWALResourceManagers.
*/
#define RM_CREDCHECK_ID RM_EXPERIMENTAL_ID
#define RM_CREDCHECK_ID 150
#define CREDCHECK_RMGR_NAME "credcheck"

#define XLOG_CREDCHECK_PWD_ADD 0x10
Expand Down
Loading