diff options
| author | Tom Lane | 2005-06-06 17:01:25 +0000 |
|---|---|---|
| committer | Tom Lane | 2005-06-06 17:01:25 +0000 |
| commit | 4c8495a1f2ae7a027a4b3e8fdb2aa5b21a5be1fc (patch) | |
| tree | dc2572925875d8623ad32d3d376e41b45968b90d /src/include/access/rmgr.h | |
| parent | 928b06a6cc7ea2554f948fbe785adb4b0df51ed0 (diff) | |
Remove the mostly-stubbed-out-anyway support routines for WAL UNDO.
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.
Diffstat (limited to 'src/include/access/rmgr.h')
| -rw-r--r-- | src/include/access/rmgr.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/access/rmgr.h b/src/include/access/rmgr.h index b01f8058873..17ef0d7866d 100644 --- a/src/include/access/rmgr.h +++ b/src/include/access/rmgr.h @@ -3,7 +3,7 @@ * * Resource managers definition * - * $PostgreSQL: pgsql/src/include/access/rmgr.h,v 1.13 2004/08/29 21:08:47 tgl Exp $ + * $PostgreSQL: pgsql/src/include/access/rmgr.h,v 1.14 2005/06/06 17:01:24 tgl Exp $ */ #ifndef RMGR_H #define RMGR_H @@ -19,6 +19,7 @@ typedef uint8 RmgrId; #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 |
