1 | /* |
2 | * rmgrdesc.c |
3 | * |
4 | * pg_waldump resource managers definition |
5 | * |
6 | * src/bin/pg_waldump/rmgrdesc.c |
7 | */ |
8 | #define FRONTEND 1 |
9 | #include "postgres.h" |
10 | |
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" |
34 | |
35 | #define PG_RMGR(symname,name,redo,desc,identify,startup,cleanup,mask) \ |
36 | { name, desc, identify}, |
37 | |
38 | const RmgrDescData RmgrDescTable[RM_MAX_ID + 1] = { |
39 | #include "access/rmgrlist.h" |
40 | }; |
41 | |