Class AggregateStatisticsRequest.Stats

    • Field Detail

      • ESTIMATED_CARDINALITY

        public static final String ESTIMATED_CARDINALITY
        Estimate (via hyperloglog technique) of the number of unique values in the column(s).
        See Also:
        Constant Field Values
      • PERCENTILE

        public static final String PERCENTILE
        Estimate (via t-digest) of the given percentile of the column(s) (percentile(50.0) will be an approximation of the median). Add a second, comma-separated value to calculate percentile resolution, e.g., 'percentile(75,150)'
        See Also:
        Constant Field Values
      • PERCENTILE_RANK

        public static final String PERCENTILE_RANK
        Estimate (via t-digest) of the percentile rank of the given value in the column(s) (if the given value is the median of the column(s), percentile_rank(<median>) will return approximately 50.0).
        See Also:
        Constant Field Values