From 87f76f1324b21f3871e24028c609045945fcde91 Mon Sep 17 00:00:00 2001 From: Andres Freund Date: Thu, 1 Nov 2018 10:44:29 -0700 Subject: [PATCH] Fix error message typo introduced 691d79a07933. Reported-By: Michael Paquier Discussion: https://postgr.es/m/20181101003405.GB1727@paquier.xyz Backpatch: 9.4-, like the previous commit --- src/backend/replication/slot.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/replication/slot.c b/src/backend/replication/slot.c index f914153f1b..90448a3ed6 100644 --- a/src/backend/replication/slot.c +++ b/src/backend/replication/slot.c @@ -1306,13 +1306,13 @@ RestoreSlotFromDisk(const char *name) if (cp.slotdata.database != InvalidOid && wal_level < WAL_LEVEL_LOGICAL) ereport(FATAL, (errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE), - errmsg("logical replication slots \"%s\" exists, but wal_level < logical", + errmsg("logical replication slot \"%s\" exists, but wal_level < logical", NameStr(cp.slotdata.name)), errhint("Change wal_level to be replica or higher."))); else if (wal_level < WAL_LEVEL_REPLICA) ereport(FATAL, (errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE), - errmsg("physical replication slots \"%s\" exists, but wal_level < replica", + errmsg("physical replication slot \"%s\" exists, but wal_level < replica", NameStr(cp.slotdata.name)), errhint("Change wal_level to be replica or higher.")));