From d38228fe4029cce3af396bf5b1728d8000ab32c8 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Tue, 15 Jul 2014 08:25:27 -0400 Subject: Add missing serial commas Also update one place where the wal_level "logical" was not added to an error message. --- src/backend/access/transam/xlog.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/backend/access/transam/xlog.c') 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 -- cgit v1.2.3