aboutsummaryrefslogtreecommitdiff
path: root/src/backend/commands/dbcommands.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2018-02-18 17:16:11 -0500
committerPeter Eisentraut <peter_e@gmx.net>2018-02-18 17:16:11 -0500
commit97a804cb2bba49d5ff04795cf500722977e5af9a (patch)
treebfb9f45926b13a1ebb1507ec02a491b0c90c9c79 /src/backend/commands/dbcommands.c
parent1a1adb215c69bbf64fd8e01cc1706812dc8ba15b (diff)
downloadpostgresql-97a804cb2bba49d5ff04795cf500722977e5af9a.tar.gz
postgresql-97a804cb2bba49d5ff04795cf500722977e5af9a.zip
Message style fix
Diffstat (limited to 'src/backend/commands/dbcommands.c')
-rw-r--r--src/backend/commands/dbcommands.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/commands/dbcommands.c b/src/backend/commands/dbcommands.c
index d2020d07cf4..d1718f04eec 100644
--- a/src/backend/commands/dbcommands.c
+++ b/src/backend/commands/dbcommands.c
@@ -857,8 +857,8 @@ dropdb(const char *dbname, bool missing_ok)
(errcode(ERRCODE_OBJECT_IN_USE),
errmsg("database \"%s\" is used by an active logical replication slot",
dbname),
- errdetail_plural("There is %d active slot",
- "There are %d active slots",
+ errdetail_plural("There is %d active slot.",
+ "There are %d active slots.",
nslots_active, nslots_active)));
}