aboutsummaryrefslogtreecommitdiff
path: root/src/backend/commands/dbcommands.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter@eisentraut.org>2022-09-24 18:38:35 -0400
committerPeter Eisentraut <peter@eisentraut.org>2022-09-24 18:38:35 -0400
commit517484b5820e9e20057ff066b5df7d09cbb5f464 (patch)
tree15a9d9f1fe55768e0d37c133eda70152ecee258e /src/backend/commands/dbcommands.c
parent8d985560fc1de6197323d4397d2a2bf762657463 (diff)
downloadpostgresql-517484b5820e9e20057ff066b5df7d09cbb5f464.tar.gz
postgresql-517484b5820e9e20057ff066b5df7d09cbb5f464.zip
Message style improvements
Diffstat (limited to 'src/backend/commands/dbcommands.c')
-rw-r--r--src/backend/commands/dbcommands.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/commands/dbcommands.c b/src/backend/commands/dbcommands.c
index 5dfec5c6b05..034d14f39da 100644
--- a/src/backend/commands/dbcommands.c
+++ b/src/backend/commands/dbcommands.c
@@ -991,7 +991,7 @@ createdb(ParseState *pstate, const CreatedbStmt *stmt)
else
ereport(ERROR,
(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
- errmsg("invalid create database strategy %s", strategy),
+ errmsg("invalid create database strategy \"%s\"", strategy),
errhint("Valid strategies are \"wal_log\", and \"file_copy\".")));
}