1
0
mirror of https://github.com/postgres/postgres.git synced 2026-01-26 09:41:40 +03:00

Fix error message typo.

Reported-by: Chao Li <li.evan.chao@gmail.com>
Discussion: https://postgr.es/m/CAEoWx2mMmm9fTZYgE-r_T-KPTFR1rKO029QV-S-6n=7US_9EMA@mail.gmail.com
This commit is contained in:
Jeff Davis
2026-01-12 19:05:29 -08:00
parent 0b96e734c5
commit a00a25b6ce

View File

@@ -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.")));
}