mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-27 08:39:28 +08:00
f1fd515b39
This makes it easier to write frontend programs that needs to understand the WAL record format of CREATE/DROP DATABASE. dbcommands.h cannot easily be #included in a frontend program, because it pulls in other header files that need backend stuff, but the new dbcommands_xlog.h header file has fewer dependencies.
38 lines
909 B
C
38 lines
909 B
C
/*
|
|
* rmgrdesc.c
|
|
*
|
|
* pg_xlogdump resource managers definition
|
|
*
|
|
* contrib/pg_xlogdump/rmgrdesc.c
|
|
*/
|
|
#define FRONTEND 1
|
|
#include "postgres.h"
|
|
|
|
#include "access/brin_xlog.h"
|
|
#include "access/clog.h"
|
|
#include "access/commit_ts.h"
|
|
#include "access/gin.h"
|
|
#include "access/gist_private.h"
|
|
#include "access/hash.h"
|
|
#include "access/heapam_xlog.h"
|
|
#include "access/multixact.h"
|
|
#include "access/nbtree.h"
|
|
#include "access/rmgr.h"
|
|
#include "access/spgist.h"
|
|
#include "access/xact.h"
|
|
#include "access/xlog_internal.h"
|
|
#include "catalog/storage_xlog.h"
|
|
#include "commands/dbcommands_xlog.h"
|
|
#include "commands/sequence.h"
|
|
#include "commands/tablespace.h"
|
|
#include "rmgrdesc.h"
|
|
#include "storage/standby.h"
|
|
#include "utils/relmapper.h"
|
|
|
|
#define PG_RMGR(symname,name,redo,desc,identify,startup,cleanup) \
|
|
{ name, desc, identify},
|
|
|
|
const RmgrDescData RmgrDescTable[RM_MAX_ID + 1] = {
|
|
#include "access/rmgrlist.h"
|
|
};
|