PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ _postgis_gserialized_joinsel()

Datum _postgis_gserialized_joinsel ( PG_FUNCTION_ARGS  )

Definition at line 2092 of file gserialized_estimate.c.

References estimate_join_selectivity(), FALSE, gserialized_gist_sel_2d(), PG_FUNCTION_INFO_V1(), pg_get_nd_stats_by_name(), and text2cstring().

Referenced by _postgis_gserialized_sel().

2093 {
2094  Oid table_oid1 = PG_GETARG_OID(0);
2095  text *att_text1 = PG_GETARG_TEXT_P(1);
2096  Oid table_oid2 = PG_GETARG_OID(2);
2097  text *att_text2 = PG_GETARG_TEXT_P(3);
2098  ND_STATS *nd_stats1, *nd_stats2;
2099  float8 selectivity = 0;
2100  int mode = 2; /* 2D mode by default */
2101 
2102 
2103  /* Retrieve the stats object */
2104  nd_stats1 = pg_get_nd_stats_by_name(table_oid1, att_text1, mode, FALSE);
2105  nd_stats2 = pg_get_nd_stats_by_name(table_oid2, att_text2, mode, FALSE);
2106 
2107  if ( ! nd_stats1 )
2108  elog(ERROR, "stats for \"%s.%s\" do not exist", get_rel_name(table_oid1), text2cstring(att_text1));
2109 
2110  if ( ! nd_stats2 )
2111  elog(ERROR, "stats for \"%s.%s\" do not exist", get_rel_name(table_oid2), text2cstring(att_text2));
2112 
2113  /* Check if we've been asked to not use 2d mode */
2114  if ( ! PG_ARGISNULL(4) )
2115  {
2116  text *modetxt = PG_GETARG_TEXT_P(4);
2117  char *modestr = text2cstring(modetxt);
2118  if ( modestr[0] == 'N' )
2119  mode = 0;
2120  }
2121 
2122  /* Do the estimation */
2123  selectivity = estimate_join_selectivity(nd_stats1, nd_stats2);
2124 
2125  pfree(nd_stats1);
2126  pfree(nd_stats2);
2127  PG_RETURN_FLOAT8(selectivity);
2128 }
static ND_STATS * pg_get_nd_stats_by_name(const Oid table_oid, const text *att_text, int mode, bool only_parent)
Pull the stats object from the PgSQL system catalogs.
char * text2cstring(const text *textptr)
static float8 estimate_join_selectivity(const ND_STATS *s1, const ND_STATS *s2)
Given two statistics histograms, what is the selectivity of a join driven by the && or &&& operator...
#define FALSE
Definition: dbfopen.c:168
N-dimensional statistics structure.
Here is the call graph for this function:
Here is the caller graph for this function: