Header And Logo

PostgreSQL
| The world's most advanced open source database.

rmgr.c

Go to the documentation of this file.
00001 /*
00002  * rmgr.c
00003  *
00004  * Resource managers definition
00005  *
00006  * src/backend/access/transam/rmgr.c
00007  */
00008 #include "postgres.h"
00009 
00010 #include "access/clog.h"
00011 #include "access/gin.h"
00012 #include "access/gist_private.h"
00013 #include "access/hash.h"
00014 #include "access/heapam_xlog.h"
00015 #include "access/multixact.h"
00016 #include "access/nbtree.h"
00017 #include "access/spgist.h"
00018 #include "access/xact.h"
00019 #include "access/xlog_internal.h"
00020 #include "catalog/storage_xlog.h"
00021 #include "commands/dbcommands.h"
00022 #include "commands/sequence.h"
00023 #include "commands/tablespace.h"
00024 #include "storage/standby.h"
00025 #include "utils/relmapper.h"
00026 
00027 /* must be kept in sync with RmgrData definition in xlog_internal.h */
00028 #define PG_RMGR(symname,name,redo,desc,startup,cleanup,restartpoint) \
00029     { name, redo, desc, startup, cleanup, restartpoint },
00030 
00031 const RmgrData RmgrTable[RM_MAX_ID + 1] = {
00032 #include "access/rmgrlist.h"
00033 };