diff options
Diffstat (limited to 'src/backend/commands/subscriptioncmds.c')
-rw-r--r-- | src/backend/commands/subscriptioncmds.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/backend/commands/subscriptioncmds.c b/src/backend/commands/subscriptioncmds.c index 97594cd9b18..8fb89a9392c 100644 --- a/src/backend/commands/subscriptioncmds.c +++ b/src/backend/commands/subscriptioncmds.c @@ -760,9 +760,8 @@ CreateSubscription(ParseState *pstate, CreateSubscriptionStmt *stmt, } else ereport(WARNING, - /* translator: %s is an SQL ALTER statement */ - (errmsg("tables were not subscribed, you will have to run %s to subscribe the tables", - "ALTER SUBSCRIPTION ... REFRESH PUBLICATION"))); + (errmsg("subscription was created, but is not connected"), + errhint("To initiate replication, you must manually create the replication slot, enable the subscription, and refresh the subscription."))); table_close(rel, RowExclusiveLock); |