Package parquet.column.values.dictionary.DictionaryValuesWriter

Examples of parquet.column.values.dictionary.DictionaryValuesWriter.PlainIntegerDictionaryValuesWriter


        }
      }
      break;
    case INT32:
      if(enableDictionary) {
        return new PlainIntegerDictionaryValuesWriter(dictionaryPageSizeThreshold, initialSizePerCol);
      } else {
        if(writerVersion == WriterVersion.PARQUET_1_0) {
          return new PlainValuesWriter(initialSizePerCol);
        } else if(writerVersion == WriterVersion.PARQUET_2_0) {
          return new DeltaBinaryPackingValuesWriter(initialSizePerCol);
View Full Code Here

TOP

Related Classes of parquet.column.values.dictionary.DictionaryValuesWriter.PlainIntegerDictionaryValuesWriter

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.