diff options
| author | Simon Riggs <simon@2ndQuadrant.com> | 2012-01-25 18:02:04 +0000 |
|---|---|---|
| committer | Simon Riggs <simon@2ndQuadrant.com> | 2012-01-25 18:02:04 +0000 |
| commit | 8366c7803ec3d0591cf2d1226fea1fee947d56c3 (patch) | |
| tree | 6cdd97e2f9352127db470507f4e650fde0ad6f86 /src/backend/postmaster/postmaster.c | |
| parent | 74ab96a45ef6259aa6a86a781580edea8488511a (diff) | |
| download | postgresql-8366c7803ec3d0591cf2d1226fea1fee947d56c3.tar.gz | |
Allow pg_basebackup from standby node with safety checking.
Base backup follows recommended procedure, plus goes to great
lengths to ensure that partial page writes are avoided.
Jun Ishizuka and Fujii Masao, with minor modifications
Diffstat (limited to 'src/backend/postmaster/postmaster.c')
| -rw-r--r-- | src/backend/postmaster/postmaster.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/postmaster/postmaster.c b/src/backend/postmaster/postmaster.c index ad0c17ac7a..9d242cbfcb 100644 --- a/src/backend/postmaster/postmaster.c +++ b/src/backend/postmaster/postmaster.c @@ -3067,8 +3067,8 @@ PostmasterStateMachine(void) else { /* - * Terminate backup mode to avoid recovery after a clean fast - * shutdown. Since a backup can only be taken during normal + * Terminate exclusive backup mode to avoid recovery after a clean fast + * shutdown. Since an exclusive backup can only be taken during normal * running (and not, for example, while running under Hot Standby) * it only makes sense to do this if we reached normal running. If * we're still in recovery, the backup file is one we're |
