From: Jeff Davis Date: Tue, 13 Jan 2026 03:05:29 +0000 (-0800) Subject: Fix error message typo. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a00a25b6ce4e75314e8ba399c69dd9c86e96a99d;p=thirdparty%2Fpostgresql.git Fix error message typo. Reported-by: Chao Li Discussion: https://postgr.es/m/CAEoWx2mMmm9fTZYgE-r_T-KPTFR1rKO029QV-S-6n=7US_9EMA@mail.gmail.com --- diff --git a/src/backend/utils/adt/formatting.c b/src/backend/utils/adt/formatting.c index 6affdd86624..cf580c63c78 100644 --- a/src/backend/utils/adt/formatting.c +++ b/src/backend/utils/adt/formatting.c @@ -1825,7 +1825,7 @@ str_casefold(const char *buff, size_t nbytes, Oid collid) ereport(ERROR, (errcode(ERRCODE_INDETERMINATE_COLLATION), errmsg("could not determine which collation to use for %s function", - "lower()"), + "casefold()"), errhint("Use the COLLATE clause to set the collation explicitly."))); }