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/xlog_internal.h | |
parent | 1d3b258cbe4aedfb49c92c28b9cbd7c18d277e04 (diff) |
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/xlog_internal.h')
-rw-r--r-- | src/include/access/xlog_internal.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/include/access/xlog_internal.h b/src/include/access/xlog_internal.h index ec021fe29ae..708ce22a5d9 100644 --- a/src/include/access/xlog_internal.h +++ b/src/include/access/xlog_internal.h @@ -248,7 +248,6 @@ typedef struct RmgrData void (*rm_desc) (StringInfo buf, uint8 xl_info, char *rec); void (*rm_startup) (void); void (*rm_cleanup) (void); - bool (*rm_safe_restartpoint) (void); } RmgrData; extern const RmgrData RmgrTable[]; |