Skip to content
Snippets Groups Projects
Commit e807d8b1 authored by Peter Eisentraut's avatar Peter Eisentraut
Browse files

Fix mistake in error message


Reported-by: default avatartushar <tushar.ahuja@enterprisedb.com>
Author: Dilip Kumar <dilipbalaut@gmail.com>
parent 5f374fe7
Branches
Tags
No related merge requests found
...@@ -931,7 +931,7 @@ DropSubscription(DropSubscriptionStmt *stmt, bool isTopLevel) ...@@ -931,7 +931,7 @@ DropSubscription(DropSubscriptionStmt *stmt, bool isTopLevel)
(errmsg("could not connect to publisher when attempting to " (errmsg("could not connect to publisher when attempting to "
"drop the replication slot \"%s\"", slotname), "drop the replication slot \"%s\"", slotname),
errdetail("The error was: %s", err), 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."))); "to disassociate the subscription from the slot.")));
PG_TRY(); PG_TRY();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment