diff options
author | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2014-03-18 22:06:59 +0200 |
---|---|---|
committer | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2014-03-18 22:10:35 +0200 |
commit | 59a5ab3f426e74e3f901dc2cf533726bcea08ed2 (patch) | |
tree | 4835577649e139a2a2b12b486919261e92996729 /src/include/access/rmgr.h | |
parent | 1d3b258cbe4aedfb49c92c28b9cbd7c18d277e04 (diff) | |
download | postgresql-59a5ab3f426e74e3f901dc2cf533726bcea08ed2.tar.gz postgresql-59a5ab3f426e74e3f901dc2cf533726bcea08ed2.zip |
Remove rm_safe_restartpoint machinery.
It is no longer used, none of the resource managers have multi-record
actions that would make it unsafe to perform a restartpoint.
Also don't allow rm_cleanup to write WAL records, it's also no longer
required. Move the call to rm_cleanup routines to make it more symmetric
with rm_startup.
Diffstat (limited to 'src/include/access/rmgr.h')
-rw-r--r-- | src/include/access/rmgr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/access/rmgr.h b/src/include/access/rmgr.h index 23650c3301e..51110b9cfc6 100644 --- a/src/include/access/rmgr.h +++ b/src/include/access/rmgr.h @@ -19,7 +19,7 @@ typedef uint8 RmgrId; * Note: RM_MAX_ID must fit in RmgrId; widening that type will affect the XLOG * file format. */ -#define PG_RMGR(symname,name,redo,desc,startup,cleanup,restartpoint) \ +#define PG_RMGR(symname,name,redo,desc,startup,cleanup) \ symname, typedef enum RmgrIds |