1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-16 06:01:02 +03:00

Add missing serial commas

Also update one place where the wal_level "logical" was not added to an
error message.
This commit is contained in:
Peter Eisentraut
2014-07-15 08:25:27 -04:00
parent a16bac36ec
commit d38228fe40
6 changed files with 12 additions and 12 deletions

View File

@ -144,7 +144,7 @@ pg_create_restore_point(PG_FUNCTION_ARGS)
ereport(ERROR,
(errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE),
errmsg("WAL level not sufficient for creating a restore point"),
errhint("wal_level must be set to \"archive\" or \"hot_standby\" at server start.")));
errhint("wal_level must be set to \"archive\", \"hot_standby\", or \"logical\" at server start.")));
restore_name_str = text_to_cstring(restore_name);