blob: 4370b92dcaef85ac84901f621e5ae0688bbbd4b4 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.drill.exec.store.parquet;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Objects;
import org.apache.drill.common.PlanStringBuilder;
import org.apache.drill.common.logical.FormatPluginConfig;
import com.fasterxml.jackson.annotation.JsonTypeName;
@JsonTypeName("parquet") @JsonInclude(JsonInclude.Include.NON_DEFAULT)
public class ParquetFormatConfig implements FormatPluginConfig {
private final boolean autoCorrectCorruptDates;
private final boolean enableStringsSignedMinMax;
public ParquetFormatConfig() {
this(true, false);
}
@JsonCreator
public ParquetFormatConfig(@JsonProperty("autoCorrectCorruptDates") Boolean autoCorrectCorruptDates,
@JsonProperty("enableStringsSignedMinMax") boolean enableStringsSignedMinMax) {
this.autoCorrectCorruptDates = autoCorrectCorruptDates == null ? true : autoCorrectCorruptDates;
this.enableStringsSignedMinMax = enableStringsSignedMinMax;
}
/**
* @return true if auto correction of corrupt dates is enabled, false otherwise
*/
@JsonIgnore
public boolean areCorruptDatesAutoCorrected() {
return autoCorrectCorruptDates;
}
/**
* Parquet statistics for UTF-8 data for files created prior to 1.9.1 parquet library version was stored incorrectly.
* If user exactly knows that data in binary columns is in ASCII (not UTF-8), turning this property to 'true'
* enables statistics usage for varchar and decimal columns.
*
* Can be overridden for individual tables using
* @link org.apache.drill.exec.ExecConstants#PARQUET_READER_STRINGS_SIGNED_MIN_MAX} session option.
*
* @return true if string signed min max enabled, false otherwise
*/
@JsonIgnore
public boolean isStringsSignedMinMaxEnabled() {
return enableStringsSignedMinMax;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ParquetFormatConfig that = (ParquetFormatConfig) o;
return Objects.equals(autoCorrectCorruptDates, that.autoCorrectCorruptDates) &&
Objects.equals(enableStringsSignedMinMax, that.enableStringsSignedMinMax);
}
@Override
public int hashCode() {
return Objects.hash(autoCorrectCorruptDates, enableStringsSignedMinMax);
}
@Override
public String toString() {
return new PlanStringBuilder(this)
.field("autoCorrectCorruptDates", autoCorrectCorruptDates)
.field("enableStringsSignedMinMax", enableStringsSignedMinMax)
.toString();
}
}