aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2017-05-19 16:30:02 -0400
committerPeter Eisentraut <peter_e@gmx.net>2017-05-19 16:30:02 -0400
commite807d8b16338c97e60e41344d0fc13bd9cf540be (patch)
tree06fbeda690882a47c160f063a009884150cd676e /src
parent5f374fe7a83304fd339789da22599bd102dac9e5 (diff)
downloadpostgresql-e807d8b16338c97e60e41344d0fc13bd9cf540be.tar.gz
postgresql-e807d8b16338c97e60e41344d0fc13bd9cf540be.zip
Fix mistake in error message
Reported-by: tushar <tushar.ahuja@enterprisedb.com> Author: Dilip Kumar <dilipbalaut@gmail.com>
Diffstat (limited to 'src')
-rw-r--r--src/backend/commands/subscriptioncmds.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/commands/subscriptioncmds.c b/src/backend/commands/subscriptioncmds.c
index 9afdd690789..86eb31df936 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();