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:25:27 -0400 |
commit | 350651905decd60637e583837d3bb3aa5d9164b6 (patch) | |
tree | 6e07e3587bb63aa8fa34476b82980ab5e6229643 /src/backend/access/transam/xlog.c | |
parent | a53878fd5a639802237fcd883421d4ea7cced5c5 (diff) |
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 b0a2d9ec5d4..c804a04cb66 100644 --- a/src/backend/access/transam/xlog.c +++ b/src/backend/access/transam/xlog.c @@ -9639,7 +9639,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, @@ -9975,7 +9975,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 |