Revert "Don't truncate database and user names in startup packets."
[pgsql.git] / src / include / access / rmgr.h
blob3b6a497e1b40558eac70d6578e4898da92afe8a2
1 /*
2 * rmgr.h
4 * Resource managers definition
6 * src/include/access/rmgr.h
7 */
8 #ifndef RMGR_H
9 #define RMGR_H
11 typedef uint8 RmgrId;
14 * Built-in resource managers
16 * The actual numerical values for each rmgr ID are defined by the order
17 * of entries in rmgrlist.h.
19 * Note: RM_MAX_ID must fit in RmgrId; widening that type will affect the XLOG
20 * file format.
22 #define PG_RMGR(symname,name,redo,desc,identify,startup,cleanup,mask,decode) \
23 symname,
25 typedef enum RmgrIds
27 #include "access/rmgrlist.h"
28 RM_NEXT_ID
29 } RmgrIds;
31 #undef PG_RMGR
33 #define RM_MAX_ID UINT8_MAX
34 #define RM_MAX_BUILTIN_ID (RM_NEXT_ID - 1)
35 #define RM_MIN_CUSTOM_ID 128
36 #define RM_MAX_CUSTOM_ID UINT8_MAX
37 #define RM_N_IDS (UINT8_MAX + 1)
38 #define RM_N_BUILTIN_IDS (RM_MAX_BUILTIN_ID + 1)
39 #define RM_N_CUSTOM_IDS (RM_MAX_CUSTOM_ID - RM_MIN_CUSTOM_ID + 1)
41 static inline bool
42 RmgrIdIsBuiltin(int rmid)
44 return rmid <= RM_MAX_BUILTIN_ID;
47 static inline bool
48 RmgrIdIsCustom(int rmid)
50 return rmid >= RM_MIN_CUSTOM_ID && rmid <= RM_MAX_CUSTOM_ID;
53 #define RmgrIdIsValid(rmid) (RmgrIdIsBuiltin((rmid)) || RmgrIdIsCustom((rmid)))
56 * RmgrId to use for extensions that require an RmgrId, but are still in
57 * development and have not reserved their own unique RmgrId yet. See:
58 * https://wiki.postgresql.org/wiki/CustomWALResourceManagers
60 #define RM_EXPERIMENTAL_ID 128
62 #endif /* RMGR_H */