Package parquet.column.values.deltalengthbytearray

Examples of parquet.column.values.deltalengthbytearray.DeltaLengthByteArrayValuesWriter


  private ValuesWriter suffixWriter;
  private byte[] previous;

  public DeltaByteArrayWriter(int initialCapacity) {
    this.prefixLengthWriter = new DeltaBinaryPackingValuesWriter(128, 4, initialCapacity);
    this.suffixWriter = new DeltaLengthByteArrayValuesWriter(initialCapacity);
    this.previous = new byte[0];
  }
View Full Code Here

TOP

Related Classes of parquet.column.values.deltalengthbytearray.DeltaLengthByteArrayValuesWriter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.