1
0
mirror of https://github.com/postgres/postgres.git synced 2025-04-21 12:05:57 +03:00

Fix compiler warning.

Some buildfarm members complained about an always-true test in the
SOFT_ERROR_OCCURRED macro. Fix by reading the field directly rather
than using the macro.

Reported-by: Tom Lane
Discussion: https://postgr.es/m/2144895.1729653514@sss.pgh.pa.us
This commit is contained in:
Jeff Davis 2024-10-23 10:24:17 -07:00
parent 07d00692c8
commit 56b1e88c80

View File

@ -633,7 +633,7 @@ text_to_stavalues(const char *staname, FmgrInfo *array_in, Datum d, Oid typid,
pfree(s);
if (SOFT_ERROR_OCCURRED(&escontext))
if (escontext.error_occurred)
{
if (elevel != ERROR)
escontext.error_data->elevel = elevel;