Java Code Examples for org.apache.parquet.schema.PrimitiveType#stringifier()

The following examples show how to use org.apache.parquet.schema.PrimitiveType#stringifier() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: Statistics.java    From parquet-mr with Apache License 2.0 5 votes vote down vote up
Statistics(PrimitiveType type) {
  this.type = type;
  this.comparator = type.comparator();
  this.stringifier = type.stringifier();
  hasNonNullValue = false;
  num_nulls = 0;
}
 
Example 2
Source File: ColumnIndexBuilder.java    From parquet-mr with Apache License 2.0 4 votes vote down vote up
ColumnIndexBase(PrimitiveType type) {
  comparator = type.comparator();
  stringifier = type.stringifier();
}
 
Example 3
Source File: ColumnIndexValidator.java    From parquet-mr with Apache License 2.0 4 votes vote down vote up
Builder(PrimitiveType type) {
  comparator = type.comparator();
  stringifier = type.stringifier();
}
 
Example 4
Source File: AvroConverters.java    From parquet-mr with Apache License 2.0 4 votes vote down vote up
public FieldUUIDConverter(ParentValueContainer parent, PrimitiveType type) {
  super(parent);
  stringifier = type.stringifier();
}