From: Peter Eisentraut Date: Wed, 25 Mar 2026 06:09:44 +0000 (+0100) Subject: Fix typo X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c79e4141273caa1b4fb88c479bb90dc40f2fbbf2;p=thirdparty%2Fpostgresql.git Fix typo Mistake in commit e2f289e5b9b: SOFT_ERROR_OCCURRED was called with the wrong fcinfo field. Reported-by: Jianghua Yang Reviewed-by: Nathan Bossart Discussion: https://www.postgresql.org/message-id/flat/CAAZLFmSGti716gWeY%3DDCZ9TTVOixnHZ4_4V4tDzoeE86D64vOA%40mail.gmail.com --- diff --git a/src/backend/utils/adt/date.c b/src/backend/utils/adt/date.c index 71ea048d251..c3327440380 100644 --- a/src/backend/utils/adt/date.c +++ b/src/backend/utils/adt/date.c @@ -1402,7 +1402,7 @@ timestamptz_date(PG_FUNCTION_ARGS) DateADT result; result = timestamptz2date_safe(timestamp, fcinfo->context); - if (SOFT_ERROR_OCCURRED(fcinfo->args)) + if (SOFT_ERROR_OCCURRED(fcinfo->context)) PG_RETURN_NULL(); PG_RETURN_DATEADT(result);