Fix mistake in error message

Reported-by: tushar <tushar.ahuja@enterprisedb.com>
Author: Dilip Kumar <dilipbalaut@gmail.com>
pull/18/merge
Peter Eisentraut 8 years ago
parent 5f374fe7a8
commit e807d8b163
  1. 2
      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();

Loading…
Cancel
Save