mirror of
https://github.com/postgres/postgres.git
synced 2025-11-12 05:01:15 +03:00
buffer manager with 'pg_clog', a specialized access method modeled on pg_xlog. This simplifies startup (don't need to play games to open pg_log; among other things, OverrideTransactionSystem goes away), should improve performance a little, and opens the door to recycling commit log space by removing no-longer-needed segments of the commit log. Actual recycling is not there yet, but I felt I should commit this part separately since it'd still be useful if we chose not to do transaction ID wraparound.
40 lines
1.1 KiB
C
40 lines
1.1 KiB
C
/*
|
|
* rmgr.c
|
|
*
|
|
* Resource managers definition
|
|
*
|
|
* $Header: /cvsroot/pgsql/src/backend/access/transam/rmgr.c,v 1.9 2001/08/25 18:52:41 tgl Exp $
|
|
*/
|
|
#include "postgres.h"
|
|
|
|
#include "access/clog.h"
|
|
#include "access/gist.h"
|
|
#include "access/hash.h"
|
|
#include "access/heapam.h"
|
|
#include "access/nbtree.h"
|
|
#include "access/rtree.h"
|
|
#include "access/xact.h"
|
|
#include "access/xlog.h"
|
|
#include "storage/smgr.h"
|
|
#include "commands/sequence.h"
|
|
|
|
|
|
RmgrData RmgrTable[] = {
|
|
{"XLOG", xlog_redo, xlog_undo, xlog_desc},
|
|
{"Transaction", xact_redo, xact_undo, xact_desc},
|
|
{"Storage", smgr_redo, smgr_undo, smgr_desc},
|
|
{"CLOG", clog_redo, clog_undo, clog_desc},
|
|
{"Reserved 4", NULL, NULL, NULL},
|
|
{"Reserved 5", NULL, NULL, NULL},
|
|
{"Reserved 6", NULL, NULL, NULL},
|
|
{"Reserved 7", NULL, NULL, NULL},
|
|
{"Reserved 8", NULL, NULL, NULL},
|
|
{"Reserved 9", NULL, NULL, NULL},
|
|
{"Heap", heap_redo, heap_undo, heap_desc},
|
|
{"Btree", btree_redo, btree_undo, btree_desc},
|
|
{"Hash", hash_redo, hash_undo, hash_desc},
|
|
{"Rtree", rtree_redo, rtree_undo, rtree_desc},
|
|
{"Gist", gist_redo, gist_undo, gist_desc},
|
|
{"Sequence", seq_redo, seq_undo, seq_desc}
|
|
};
|