diff options
author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2019-05-28 17:34:38 -0400 |
---|---|---|
committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2019-05-28 17:36:14 -0400 |
commit | a100974751baec7e13a527bf0c378ce8ef2787b6 (patch) | |
tree | 7da1c9f6a1ed1b12dfa0f0f0a8a54636b36a3dba /src/backend/commands/subscriptioncmds.c | |
parent | 40b132c1afbb4b1494aa8e48cc35ec98d2b90777 (diff) | |
download | postgresql-a100974751baec7e13a527bf0c378ce8ef2787b6.tar.gz postgresql-a100974751baec7e13a527bf0c378ce8ef2787b6.zip |
Fix typo in message
I introduced the typo in source code in the course of 75445c1515ff.
Repair.
Diffstat (limited to 'src/backend/commands/subscriptioncmds.c')
-rw-r--r-- | src/backend/commands/subscriptioncmds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/commands/subscriptioncmds.c b/src/backend/commands/subscriptioncmds.c index 26c06e10e7c..f13dce90a11 100644 --- a/src/backend/commands/subscriptioncmds.c +++ b/src/backend/commands/subscriptioncmds.c @@ -231,7 +231,7 @@ parse_subscription_options(List *options, bool *connect, bool *enabled_given, (errcode(ERRCODE_SYNTAX_ERROR), /*- translator: both %s are strings of the form "option = value" */ errmsg("%s and %s are mutually exclusive options", - "slot_name = NONE", "enable = true"))); + "slot_name = NONE", "enabled = true"))); if (create_slot && create_slot_given && *create_slot) ereport(ERROR, |