Skip to content

Commit

Permalink
Fix a typo in ParquetErrorCode enum
Browse files Browse the repository at this point in the history
  • Loading branch information
shangxinli authored and rschlussel committed Sep 12, 2022
1 parent 0a11d83 commit 4210c3d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public enum ParquetErrorCode
{
PARQUET_UNSUPPORTED_COLUMN_TYPE(0, INTERNAL_ERROR),
PARQUET_UNSUPPORTED_ENCODING(1, INTERNAL_ERROR),
PARQUET_IO_READ_ERROR(1, EXTERNAL),
PARQUET_IO_READ_ERROR(2, EXTERNAL),
PARQUET_INCORRECT_DECODING(3, INTERNAL_ERROR);

private final ErrorCode errorCode;
Expand Down

0 comments on commit 4210c3d

Please sign in to comment.