From: Alexander Korotkov Date: Wed, 17 Jan 2024 20:59:09 +0000 (+0200) Subject: Fix spelling in notice X-Git-Tag: REL_17_BETA1~1088 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=58fbbc9d683cc7a79a790fe9f17dd374c56445cc;p=thirdparty%2Fpostgresql.git Fix spelling in notice Reported-by: Atsushi Torikoshi Discussion: https://postgr.es/m/762d7dd4d5aa9e5ecffec2ae6a255a28%40oss.nttdata.com --- diff --git a/src/backend/commands/copyfrom.c b/src/backend/commands/copyfrom.c index 4058b08134d..50e245d555c 100644 --- a/src/backend/commands/copyfrom.c +++ b/src/backend/commands/copyfrom.c @@ -1310,7 +1310,7 @@ CopyFrom(CopyFromState cstate) if (cstate->opts.save_error_to != COPY_SAVE_ERROR_TO_ERROR && cstate->num_errors > 0) ereport(NOTICE, - errmsg_plural("%llu row were skipped due to data type incompatibility", + errmsg_plural("%llu row was skipped due to data type incompatibility", "%llu rows were skipped due to data type incompatibility", (unsigned long long) cstate->num_errors, (unsigned long long) cstate->num_errors));