1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-05 07:21:24 +03:00

Fix another buildfarm issue from commit 5c279a6d35.

Discussion: https://postgr.es/m/3280724.1649340315@sss.pgh.pa.us
This commit is contained in:
Jeff Davis
2022-04-07 08:40:16 -07:00
parent 344d62fb9a
commit 957aa4d87a

View File

@ -326,6 +326,7 @@ extern void RmgrCleanup(void);
extern void RmgrNotFound(RmgrId rmid);
extern void RegisterCustomRmgr(RmgrId rmid, RmgrData *rmgr);
#ifndef FRONTEND
static inline bool
RmgrIdExists(RmgrId rmid)
{
@ -339,6 +340,7 @@ GetRmgr(RmgrId rmid)
RmgrNotFound(rmid);
return RmgrTable[rmid];
}
#endif
/*
* Exported to support xlog switching from checkpointer