diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2017-04-05 14:06:15 -0400 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2017-04-05 14:06:15 -0400 |
commit | 6785fbd60ffd82ef825baf6db34bd944f3c7b121 (patch) | |
tree | b5951481fbcf20d0fea73eb457abeddb2ecaa7d9 /src/backend/replication/pgoutput/pgoutput.c | |
parent | 63e5d02af33414ab31d0d59e02333083ac696d37 (diff) | |
download | postgresql-6785fbd60ffd82ef825baf6db34bd944f3c7b121.tar.gz postgresql-6785fbd60ffd82ef825baf6db34bd944f3c7b121.zip |
Use American English in error message
All error messages use the American English spelling of recognize,
apply to the single one not doing so to be consistent.
Author: Daniel Gustafsson <daniel@yesql.se>
Diffstat (limited to 'src/backend/replication/pgoutput/pgoutput.c')
-rw-r--r-- | src/backend/replication/pgoutput/pgoutput.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/replication/pgoutput/pgoutput.c b/src/backend/replication/pgoutput/pgoutput.c index 0ceb4be375e..19ef527ca7f 100644 --- a/src/backend/replication/pgoutput/pgoutput.c +++ b/src/backend/replication/pgoutput/pgoutput.c @@ -96,7 +96,7 @@ parse_output_parameters(List *options, uint32 *protocol_version, Assert(defel->arg == NULL || IsA(defel->arg, String)); - /* Check each param, whether or not we recognise it */ + /* Check each param, whether or not we recognize it */ if (strcmp(defel->defname, "proto_version") == 0) { int64 parsed; @@ -167,7 +167,7 @@ pgoutput_startup(LogicalDecodingContext * ctx, OutputPluginOptions *opt, */ if (!is_init) { - /* Parse the params and ERROR if we see any we don't recognise */ + /* Parse the params and ERROR if we see any we don't recognize */ parse_output_parameters(ctx->output_plugin_options, &data->protocol_version, &data->publication_names); |