PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ pg_get_nd_stats()

static ND_STATS* pg_get_nd_stats ( const Oid  table_oid,
AttrNumber  att_num,
int  mode,
bool  only_parent 
)
static

Pull the stats object from the PgSQL system catalogs.

Used by the selectivity functions and the debugging functions.

Definition at line 911 of file gserialized_estimate.c.

References pg_nd_stats_from_tuple().

Referenced by gserialized_gist_joinsel(), and pg_get_nd_stats_by_name().

912 {
913  HeapTuple stats_tuple = NULL;
914  ND_STATS *nd_stats;
915 
916  /* First pull the stats tuple for the whole tree */
917  if ( ! only_parent )
918  {
919  POSTGIS_DEBUGF(2, "searching whole tree stats for \"%s\"", get_rel_name(table_oid)? get_rel_name(table_oid) : "NULL");
920  stats_tuple = SearchSysCache3(STATRELATTINH, ObjectIdGetDatum(table_oid), Int16GetDatum(att_num), BoolGetDatum(true));
921  if ( stats_tuple )
922  POSTGIS_DEBUGF(2, "found whole tree stats for \"%s\"", get_rel_name(table_oid)? get_rel_name(table_oid) : "NULL");
923  }
924  /* Fall-back to main table stats only, if not found for whole tree or explicitly ignored */
925  if ( only_parent || ! stats_tuple )
926  {
927  POSTGIS_DEBUGF(2, "searching parent table stats for \"%s\"", get_rel_name(table_oid)? get_rel_name(table_oid) : "NULL");
928  stats_tuple = SearchSysCache3(STATRELATTINH, ObjectIdGetDatum(table_oid), Int16GetDatum(att_num), BoolGetDatum(false));
929  if ( stats_tuple )
930  POSTGIS_DEBUGF(2, "found parent table stats for \"%s\"", get_rel_name(table_oid)? get_rel_name(table_oid) : "NULL");
931  }
932  if ( ! stats_tuple )
933  {
934  POSTGIS_DEBUGF(2, "stats for \"%s\" do not exist", get_rel_name(table_oid)? get_rel_name(table_oid) : "NULL");
935  return NULL;
936  }
937 
938  nd_stats = pg_nd_stats_from_tuple(stats_tuple, mode);
939  ReleaseSysCache(stats_tuple);
940  if ( ! nd_stats )
941  {
942  POSTGIS_DEBUGF(2,
943  "histogram for attribute %d of table \"%s\" does not exist?",
944  att_num, get_rel_name(table_oid));
945  }
946 
947  return nd_stats;
948 }
static ND_STATS * pg_nd_stats_from_tuple(HeapTuple stats_tuple, int mode)
N-dimensional statistics structure.
Here is the call graph for this function:
Here is the caller graph for this function: