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
pull/182/head
Jeff Davis 11 months ago
parent 07d00692c8
commit 56b1e88c80
  1. 2
      src/backend/statistics/attribute_stats.c

@ -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;

Loading…
Cancel
Save