Consistently use "superuser" instead of "super user"
[pgsql.git] / src / bin / pg_waldump / rmgrdesc.c
blob852d8ca4b1c6cbdeee4601b84fda27dfed396796
1 /*
2 * rmgrdesc.c
4 * pg_waldump resource managers definition
6 * src/bin/pg_waldump/rmgrdesc.c
7 */
8 #define FRONTEND 1
9 #include "postgres.h"
11 #include "access/brin_xlog.h"
12 #include "access/clog.h"
13 #include "access/commit_ts.h"
14 #include "access/generic_xlog.h"
15 #include "access/ginxlog.h"
16 #include "access/gistxlog.h"
17 #include "access/hash_xlog.h"
18 #include "access/heapam_xlog.h"
19 #include "access/multixact.h"
20 #include "access/nbtxlog.h"
21 #include "access/rmgr.h"
22 #include "access/spgxlog.h"
23 #include "access/xact.h"
24 #include "access/xlog_internal.h"
25 #include "catalog/storage_xlog.h"
26 #include "commands/dbcommands_xlog.h"
27 #include "commands/sequence.h"
28 #include "commands/tablespace.h"
29 #include "replication/message.h"
30 #include "replication/origin.h"
31 #include "rmgrdesc.h"
32 #include "storage/standbydefs.h"
33 #include "utils/relmapper.h"
35 #define PG_RMGR(symname,name,redo,desc,identify,startup,cleanup,mask) \
36 { name, desc, identify},
38 const RmgrDescData RmgrDescTable[RM_MAX_ID + 1] = {
39 #include "access/rmgrlist.h"