Details
-
Wish
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
1.11.0
Description
Currently when converting Thrift to Parquet, the ThriftSchemaConverter will convert a i16 thrift data type as a INT32 Parquet data type even if the logical type INT(16, false) would be more representative, especially for downstream consumers of the parquet files.
Using the logical data type requires a change in this method:
@Override public ConvertedField visit(I16Type i16Type, State state) { return visitPrimitiveType(INT32, state); }
from the ThriftSchemaConvertVisitor
Attachments
Issue Links
- links to