From: Peter Eisentraut Date: Fri, 19 May 2017 20:30:02 +0000 (-0400) Subject: Fix mistake in error message X-Git-Tag: REL_10_BETA2~301 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e807d8b16338c97e60e41344d0fc13bd9cf540be;p=postgresql Fix mistake in error message Reported-by: tushar Author: Dilip Kumar --- diff --git a/src/backend/commands/subscriptioncmds.c b/src/backend/commands/subscriptioncmds.c index 9afdd69078..86eb31df93 100644 --- a/src/backend/commands/subscriptioncmds.c +++ b/src/backend/commands/subscriptioncmds.c @@ -931,7 +931,7 @@ DropSubscription(DropSubscriptionStmt *stmt, bool isTopLevel) (errmsg("could not connect to publisher when attempting to " "drop the replication slot \"%s\"", slotname), errdetail("The error was: %s", err), - errhint("Use ALTER SUBSCRIPTION ... WITH (slot_name = NONE) " + errhint("Use ALTER SUBSCRIPTION ... SET (slot_name = NONE) " "to disassociate the subscription from the slot."))); PG_TRY();