1 | /* |
2 | * rmgr.c |
3 | * |
4 | * Resource managers definition |
5 | * |
6 | * src/backend/access/transam/rmgr.c |
7 | */ |
8 | #include "postgres.h" |
9 | |
10 | #include "access/clog.h" |
11 | #include "access/commit_ts.h" |
12 | #include "access/ginxlog.h" |
13 | #include "access/gistxlog.h" |
14 | #include "access/generic_xlog.h" |
15 | #include "access/hash_xlog.h" |
16 | #include "access/heapam_xlog.h" |
17 | #include "access/brin_xlog.h" |
18 | #include "access/multixact.h" |
19 | #include "access/nbtxlog.h" |
20 | #include "access/spgxlog.h" |
21 | #include "access/xact.h" |
22 | #include "access/xlog_internal.h" |
23 | #include "catalog/storage_xlog.h" |
24 | #include "commands/dbcommands_xlog.h" |
25 | #include "commands/sequence.h" |
26 | #include "commands/tablespace.h" |
27 | #include "replication/message.h" |
28 | #include "replication/origin.h" |
29 | #include "storage/standby.h" |
30 | #include "utils/relmapper.h" |
31 | |
32 | /* must be kept in sync with RmgrData definition in xlog_internal.h */ |
33 | #define PG_RMGR(symname,name,redo,desc,identify,startup,cleanup,mask) \ |
34 | { name, redo, desc, identify, startup, cleanup, mask }, |
35 | |
36 | const RmgrData RmgrTable[RM_MAX_ID + 1] = { |
37 | #include "access/rmgrlist.h" |
38 | }; |
39 | |