Enum ParquetReaderUtility.DateCorruptionStatus
java.lang.Object
java.lang.Enum<ParquetReaderUtility.DateCorruptionStatus>
org.apache.drill.exec.store.parquet.ParquetReaderUtility.DateCorruptionStatus
- All Implemented Interfaces:
Serializable
,Comparable<ParquetReaderUtility.DateCorruptionStatus>
- Enclosing class:
- ParquetReaderUtility
public static enum ParquetReaderUtility.DateCorruptionStatus
extends Enum<ParquetReaderUtility.DateCorruptionStatus>
For most recently created parquet files, we can determine if we have corrupted dates (see DRILL-4203)
based on the file metadata. For older files that lack statistics we must actually test the values
in the data pages themselves to see if they are likely corrupt.
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this type with the specified name.values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
META_SHOWS_CORRUPTION
-
META_SHOWS_NO_CORRUPTION
-
META_UNCLEAR_TEST_VALUES
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-