diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2014-07-15 08:25:27 -0400 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2014-07-15 08:31:50 -0400 |
commit | d38228fe4029cce3af396bf5b1728d8000ab32c8 (patch) | |
tree | 92124e3c246ba17e838ba43179945cbcf0aac5ec /src/backend/access/transam/xlog.c | |
parent | a16bac36eca8158cbf78987e95376f610095f792 (diff) | |
download | postgresql-d38228fe4029cce3af396bf5b1728d8000ab32c8.tar.gz postgresql-d38228fe4029cce3af396bf5b1728d8000ab32c8.zip |
Add missing serial commas
Also update one place where the wal_level "logical" was not added to an
error message.
Diffstat (limited to 'src/backend/access/transam/xlog.c')
-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 9f417dee298..e4f9595ee5f 100644 --- a/src/backend/access/transam/xlog.c +++ b/src/backend/access/transam/xlog.c @@ -9663,7 +9663,7 @@ do_pg_start_backup(const char *backupidstr, bool fast, TimeLineID *starttli_p, ereport(ERROR, (errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE), errmsg("WAL level not sufficient for making an online backup"), - errhint("wal_level must be set to \"archive\", \"hot_standby\" or \"logical\" at server start."))); + errhint("wal_level must be set to \"archive\", \"hot_standby\", or \"logical\" at server start."))); if (strlen(backupidstr) > MAXPGPATH) ereport(ERROR, @@ -9999,7 +9999,7 @@ do_pg_stop_backup(char *labelfile, bool waitforarchive, TimeLineID *stoptli_p) ereport(ERROR, (errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE), errmsg("WAL level not sufficient for making an online backup"), - errhint("wal_level must be set to \"archive\", \"hot_standby\" or \"logical\" at server start."))); + errhint("wal_level must be set to \"archive\", \"hot_standby\", or \"logical\" at server start."))); /* * OK to update backup counters and forcePageWrites |