]> granicus.if.org Git - postgresql/blob - contrib/pg_xlogdump/rmgrdesc.c
Fix compilation of pg_xlogdump, now that rm_safe_restartpoint is no more.
[postgresql] / contrib / pg_xlogdump / rmgrdesc.c
1 /*
2  * rmgrdesc.c
3  *
4  * pg_xlogdump resource managers definition
5  *
6  * contrib/pg_xlogdump/rmgrdesc.c
7  */
8 #define FRONTEND 1
9 #include "postgres.h"
10
11 #include "access/clog.h"
12 #include "access/gin.h"
13 #include "access/gist_private.h"
14 #include "access/hash.h"
15 #include "access/heapam_xlog.h"
16 #include "access/multixact.h"
17 #include "access/nbtree.h"
18 #include "access/rmgr.h"
19 #include "access/spgist.h"
20 #include "access/xact.h"
21 #include "access/xlog_internal.h"
22 #include "catalog/storage_xlog.h"
23 #include "commands/dbcommands.h"
24 #include "commands/sequence.h"
25 #include "commands/tablespace.h"
26 #include "rmgrdesc.h"
27 #include "storage/standby.h"
28 #include "utils/relmapper.h"
29
30 #define PG_RMGR(symname,name,redo,desc,startup,cleanup) \
31         { name, desc, },
32
33 const RmgrDescData RmgrDescTable[RM_MAX_ID + 1] = {
34 #include "access/rmgrlist.h"
35 };