src/main/java/org/apache/datasketches/hive/kll/DataToSketchUDAF.java [59:67]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @Override
    public void iterate(final AggregationBuffer buf, final Object[] data) throws HiveException {
      if (data[0] == null) { return; }
      final SketchState state = (SketchState) buf;
      if (!state.isInitialized()) {
        if (this.kInspector_ != null) {
          state.init(PrimitiveObjectInspectorUtils.getInt(data[1], this.kInspector_));
        } else {
          state.init();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/datasketches/hive/kll/UnionSketchUDAF.java [54:62]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @Override
    public void iterate(final AggregationBuffer buf, final Object[] data) throws HiveException {
      if (data[0] == null) { return; }
      final SketchState state = (SketchState) buf;
      if (!state.isInitialized()) {
        if (this.kInspector_ != null) {
          state.init(PrimitiveObjectInspectorUtils.getInt(data[1], this.kInspector_));
        } else {
          state.init();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



