Class ColumnStatisticsKind<T>

java.lang.Object
org.apache.drill.metastore.statistics.BaseStatisticsKind<T>
org.apache.drill.metastore.statistics.ColumnStatisticsKind<T>
All Implemented Interfaces:
CollectableColumnStatisticsKind<T>, StatisticsKind<T>

public class ColumnStatisticsKind<T> extends BaseStatisticsKind<T> implements CollectableColumnStatisticsKind<T>
Implementation of CollectableColumnStatisticsKind which contain base column statistics kinds with implemented mergeStatistics() method.
  • Field Details

    • NULLS_COUNT

      public static final ColumnStatisticsKind<Long> NULLS_COUNT
      Column statistics kind which represents nulls count for the specific column.
    • MIN_VALUE

      public static final ColumnStatisticsKind<Object> MIN_VALUE
      Column statistics kind which represents min value of the specific column.
    • MAX_VALUE

      public static final ColumnStatisticsKind<Object> MAX_VALUE
      Column statistics kind which represents max value of the specific column.
    • NON_NULL_VALUES_COUNT

      public static final ColumnStatisticsKind<Long> NON_NULL_VALUES_COUNT
      Column statistics kind which represents exact number of non-null values for the specific column.
    • NON_NULL_COUNT

      public static final ColumnStatisticsKind<Double> NON_NULL_COUNT
      Column statistics kind which represents estimated number of non-null values for the specific column.
    • ROWCOUNT

      public static final ColumnStatisticsKind<Double> ROWCOUNT
      Column statistics kind which represents total row count for the specific column.
    • NDV

      public static final ColumnStatisticsKind<Double> NDV
      Column statistics kind which represents number of distinct values for the specific column.
    • AVG_WIDTH

      public static final ColumnStatisticsKind<?> AVG_WIDTH
      Column statistics kind which is the width of the specific column.
    • HISTOGRAM

      public static final ColumnStatisticsKind<Histogram> HISTOGRAM
      Column statistics kind which is the histogram of the specific column.
  • Method Details