aboutsummaryrefslogtreecommitdiff
path: root/src/backend/replication/pgoutput/pgoutput.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter@eisentraut.org>2024-08-29 14:33:18 +0200
committerPeter Eisentraut <peter@eisentraut.org>2024-08-29 14:33:18 +0200
commitf2353dd71724c0d18d5912e105f034b50494bfe9 (patch)
treec80e8aaac2b380839de8d8b8c9050b00058a5366 /src/backend/replication/pgoutput/pgoutput.c
parentfdbf7e46a46d2ce8a215b37870b14ee2d7cf0fda (diff)
downloadpostgresql-f2353dd71724c0d18d5912e105f034b50494bfe9.tar.gz
postgresql-f2353dd71724c0d18d5912e105f034b50494bfe9.zip
Message style improvements
Diffstat (limited to 'src/backend/replication/pgoutput/pgoutput.c')
-rw-r--r--src/backend/replication/pgoutput/pgoutput.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/replication/pgoutput/pgoutput.c b/src/backend/replication/pgoutput/pgoutput.c
index abef4eaf68b..00e7024563e 100644
--- a/src/backend/replication/pgoutput/pgoutput.c
+++ b/src/backend/replication/pgoutput/pgoutput.c
@@ -404,11 +404,11 @@ parse_output_parameters(List *options, PGOutputData *data)
if (!protocol_version_given)
ereport(ERROR,
errcode(ERRCODE_INVALID_PARAMETER_VALUE),
- errmsg("proto_version option missing"));
+ errmsg("option \"%s\" missing", "proto_version"));
if (!publication_names_given)
ereport(ERROR,
errcode(ERRCODE_INVALID_PARAMETER_VALUE),
- errmsg("publication_names option missing"));
+ errmsg("option \"%s\" missing", "publication_names"));
}
/*