mirror of
https://github.com/postgres/postgres.git
synced 2026-03-11 10:45:17 -04:00
That code is never going to be used in the foreseeable future, and where it's more than a stub it's making the redo routines harder to read.
31 lines
610 B
C
31 lines
610 B
C
/*
|
|
* rmgr.h
|
|
*
|
|
* Resource managers definition
|
|
*
|
|
* $PostgreSQL: pgsql/src/include/access/rmgr.h,v 1.14 2005/06/06 17:01:24 tgl Exp $
|
|
*/
|
|
#ifndef RMGR_H
|
|
#define RMGR_H
|
|
|
|
typedef uint8 RmgrId;
|
|
|
|
/*
|
|
* Built-in resource managers
|
|
*/
|
|
#define RM_XLOG_ID 0
|
|
#define RM_XACT_ID 1
|
|
#define RM_SMGR_ID 2
|
|
#define RM_CLOG_ID 3
|
|
#define RM_DBASE_ID 4
|
|
#define RM_TBLSPC_ID 5
|
|
#define RM_MULTIXACT_ID 6
|
|
#define RM_HEAP_ID 10
|
|
#define RM_BTREE_ID 11
|
|
#define RM_HASH_ID 12
|
|
#define RM_RTREE_ID 13
|
|
#define RM_GIST_ID 14
|
|
#define RM_SEQ_ID 15
|
|
#define RM_MAX_ID RM_SEQ_ID
|
|
|
|
#endif /* RMGR_H */
|