diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2006-08-07 16:57:57 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2006-08-07 16:57:57 +0000 |
commit | e002836913ce69ca3e501a6d2c42296f1d103998 (patch) | |
tree | c678bfba6916c7daa85c38f659cccae629867aac /src/include/access/xlog_internal.h | |
parent | 977ac90001c0188289f3b20eac3720fc6b26f180 (diff) | |
download | postgresql-e002836913ce69ca3e501a6d2c42296f1d103998.tar.gz postgresql-e002836913ce69ca3e501a6d2c42296f1d103998.zip |
Make recovery from WAL be restartable, by executing a checkpoint-like
operation every so often. This improves the usefulness of PITR log
shipping for hot standby: formerly, if the standby server crashed, it
was necessary to restart it from the last base backup and replay all
the WAL since then. Now it will only need to reread about the same
amount of WAL as the master server would. The behavior might also
come in handy during a long PITR replay sequence. Simon Riggs,
with some editorialization by Tom Lane.
Diffstat (limited to 'src/include/access/xlog_internal.h')
-rw-r--r-- | src/include/access/xlog_internal.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/access/xlog_internal.h b/src/include/access/xlog_internal.h index 6aeda55429d..03bf0e86231 100644 --- a/src/include/access/xlog_internal.h +++ b/src/include/access/xlog_internal.h @@ -11,7 +11,7 @@ * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/access/xlog_internal.h,v 1.14 2006/08/06 03:53:44 tgl Exp $ + * $PostgreSQL: pgsql/src/include/access/xlog_internal.h,v 1.15 2006/08/07 16:57:57 tgl Exp $ */ #ifndef XLOG_INTERNAL_H #define XLOG_INTERNAL_H @@ -232,6 +232,7 @@ 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[]; |