Small code simplification

FLOAT8PASSBYVAL can be used instead of USE_FLOAT8_BYVAL here.
pull/44/head
Peter Eisentraut 6 years ago
parent 7fc380f83d
commit e6c2d17c53
  1. 6
      src/backend/utils/adt/rangetypes_typanalyze.c

@ -325,11 +325,7 @@ compute_range_stats(VacAttrStats *stats, AnalyzeAttrFetchFunc fetchfunc,
stats->numvalues[slot_idx] = num_hist;
stats->statypid[slot_idx] = FLOAT8OID;
stats->statyplen[slot_idx] = sizeof(float8);
#ifdef USE_FLOAT8_BYVAL
stats->statypbyval[slot_idx] = true;
#else
stats->statypbyval[slot_idx] = false;
#endif
stats->statypbyval[slot_idx] = FLOAT8PASSBYVAL;
stats->statypalign[slot_idx] = 'd';
/* Store the fraction of empty ranges */

Loading…
Cancel
Save