diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2012-12-20 23:36:13 -0500 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2012-12-20 23:36:13 -0500 |
commit | a0bfb7b36e0795a1c69c86b4184ee952dbb650d1 (patch) | |
tree | b1964c933b9877649ee10b4b431460b40ad0d142 /src | |
parent | 343c2a865bc6c0a03358709df854ce1eac52ca45 (diff) | |
download | postgresql-a0bfb7b36e0795a1c69c86b4184ee952dbb650d1.tar.gz postgresql-a0bfb7b36e0795a1c69c86b4184ee952dbb650d1.zip |
Fix grammatical mistake in error message
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/access/transam/xlog.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c index 0b2f0c915b6..54df3e6df94 100644 --- a/src/backend/access/transam/xlog.c +++ b/src/backend/access/transam/xlog.c @@ -8589,7 +8589,7 @@ do_pg_start_backup(const char *backupidstr, bool fast, char **labelfile) (errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE), errmsg("WAL generated with full_page_writes=off was replayed " "since last restartpoint"), - errhint("This means that the backup being taken on standby " + errhint("This means that the backup being taken on the standby " "is corrupt and should not be used. " "Enable full_page_writes and run CHECKPOINT on the master, " "and then try an online backup again."))); @@ -8938,7 +8938,7 @@ do_pg_stop_backup(char *labelfile, bool waitforarchive) (errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE), errmsg("WAL generated with full_page_writes=off was replayed " "during online backup"), - errhint("This means that the backup being taken on standby " + errhint("This means that the backup being taken on the standby " "is corrupt and should not be used. " "Enable full_page_writes and run CHECKPOINT on the master, " "and then try an online backup again."))); |