Re: pgsql: Add functions pg_set_attribute_stats() and pg_clear_attribute_st - Mailing list pgsql-committers

From Tom Lane
Subject Re: pgsql: Add functions pg_set_attribute_stats() and pg_clear_attribute_st
Date
Msg-id 2144895.1729653514@sss.pgh.pa.us
Whole thread Raw
In response to pgsql: Add functions pg_set_attribute_stats() and pg_clear_attribute_st  (Jeff Davis <jdavis@postgresql.org>)
List pgsql-committers
Jeff Davis <jdavis@postgresql.org> writes:
> Add functions pg_set_attribute_stats() and pg_clear_attribute_stats().

A couple of buildfarm animals, eg [1], are mildly unhappy:

In file included from ../../../src/include/nodes/execnodes.h:37:0,
                 from ../../../src/include/catalog/indexing.h:19,
                 from attribute_stats.c:21:
attribute_stats.c: In function \342\200\230text_to_stavalues\342\200\231:
../../../src/include/nodes/miscnodes.h:54:15: warning: the comparison will always evaluate as
\342\200\230true\342\200\231for the address of \342\200\230escontext\342\200\231 will never be NULL [-Waddress] 
  ((escontext) != NULL && IsA(escontext, ErrorSaveContext) && \\
               ^
attribute_stats.c:636:6: note: in expansion of macro \342\200\230SOFT_ERROR_OCCURRED\342\200\231
  if (SOFT_ERROR_OCCURRED(&escontext))
      ^

I think what we've done in other places is just to test
escontext.error_occurred directly, since the rest of the
macro is useless in this situation.

            regards, tom lane

[1] https://buildfarm.postgresql.org/cgi-bin/show_stage_log.pl?nm=rhinoceros&dt=2024-10-23%2000%3A47%3A26&stg=make



pgsql-committers by date:

Previous
From: Michael Paquier
Date:
Subject: pgsql: ecpg: Fix out-of-bound read in DecodeDateTime()
Next
From: Pavel Borisov
Date:
Subject: Re: pgsql: Implement pg_wal_replay_wait() stored procedure