mirror of
https://github.com/postgres/postgres.git
synced 2025-06-06 00:02:36 -04:00
performance front, but with feature freeze upon us I think it's time to drive a stake in the ground and say that this will be in 7.5. Alvaro Herrera, with some help from Tom Lane.
41 lines
1.3 KiB
C
41 lines
1.3 KiB
C
/*
|
|
* rmgr.c
|
|
*
|
|
* Resource managers definition
|
|
*
|
|
* $PostgreSQL: pgsql/src/backend/access/transam/rmgr.c,v 1.13 2004/07/01 00:49:42 tgl Exp $
|
|
*/
|
|
#include "postgres.h"
|
|
|
|
#include "access/gist.h"
|
|
#include "access/hash.h"
|
|
#include "access/heapam.h"
|
|
#include "access/nbtree.h"
|
|
#include "access/rtree.h"
|
|
#include "access/slru.h"
|
|
#include "access/xact.h"
|
|
#include "access/xlog.h"
|
|
#include "storage/smgr.h"
|
|
#include "commands/sequence.h"
|
|
|
|
|
|
RmgrData RmgrTable[RM_MAX_ID + 1] = {
|
|
{"XLOG", xlog_redo, xlog_undo, xlog_desc, NULL, NULL},
|
|
{"Transaction", xact_redo, xact_undo, xact_desc, NULL, NULL},
|
|
{"Storage", smgr_redo, smgr_undo, smgr_desc, NULL, NULL},
|
|
{"SLRU", slru_redo, slru_undo, slru_desc, NULL, NULL},
|
|
{"Reserved 4", NULL, NULL, NULL, NULL, NULL},
|
|
{"Reserved 5", NULL, NULL, NULL, NULL, NULL},
|
|
{"Reserved 6", NULL, NULL, NULL, NULL, NULL},
|
|
{"Reserved 7", NULL, NULL, NULL, NULL, NULL},
|
|
{"Reserved 8", NULL, NULL, NULL, NULL, NULL},
|
|
{"Reserved 9", NULL, NULL, NULL, NULL, NULL},
|
|
{"Heap", heap_redo, heap_undo, heap_desc, NULL, NULL},
|
|
{"Btree", btree_redo, btree_undo, btree_desc,
|
|
btree_xlog_startup, btree_xlog_cleanup},
|
|
{"Hash", hash_redo, hash_undo, hash_desc, NULL, NULL},
|
|
{"Rtree", rtree_redo, rtree_undo, rtree_desc, NULL, NULL},
|
|
{"Gist", gist_redo, gist_undo, gist_desc, NULL, NULL},
|
|
{"Sequence", seq_redo, seq_undo, seq_desc, NULL, NULL}
|
|
};
|