Package parquet.column.values.rle

Examples of parquet.column.values.rle.RunLengthBitPackingHybridDecoder


      throws IOException {
    if (DEBUG) LOG.debug("init from page at offset "+ offset + " for length " + (page.length - offset));
    this.in = new ByteArrayInputStream(page, offset, page.length - offset);
    int bitWidth = BytesUtils.readIntLittleEndianOnOneByte(in);
    if (DEBUG) LOG.debug("bit width " + bitWidth);
    decoder = new RunLengthBitPackingHybridDecoder(bitWidth, in);
  }
View Full Code Here

TOP

Related Classes of parquet.column.values.rle.RunLengthBitPackingHybridDecoder

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.