PostGIS  3.4.0dev-r@@SVN_REVISION@@

◆ nd_stats_value_index()

static int nd_stats_value_index ( const ND_STATS stats,
int *  indexes 
)
static

Given a position in the n-d histogram (i,j,k) return the position in the 1-d values array.

Definition at line 436 of file gserialized_estimate.c.

437 {
438  int d;
439  int accum = 1, vdx = 0;
440 
441  /* Calculate the index into the 1-d values array that the (i,j,k,l) */
442  /* n-d histogram coordinate implies. */
443  /* index = x + y * sizex + z * sizex * sizey + m * sizex * sizey * sizez */
444  for ( d = 0; d < (int)(stats->ndims); d++ )
445  {
446  int size = (int)(stats->size[d]);
447  if ( indexes[d] < 0 || indexes[d] >= size )
448  {
449  POSTGIS_DEBUGF(3, " bad index at (%d, %d)", indexes[0], indexes[1]);
450  return -1;
451  }
452  vdx += indexes[d] * accum;
453  accum *= size;
454  }
455  return vdx;
456 }
float4 size[ND_DIMS]

References ND_STATS_T::ndims, and ND_STATS_T::size.

Referenced by compute_gserialized_stats_mode(), estimate_join_selectivity(), and estimate_selectivity().

Here is the caller graph for this function: