parquet-dotnet
parquet-dotnet copied to clipboard
[BUG]: DataFrame loading doesn't support short (int16) columns.
Library Version
4.23.3
OS
Windows/Debian
OS Architecture
64 bit
How to reproduce?
Load any parquet file with a Int16 column into a dataframe.
GetTypedDataFast() would need:
if(col.DataType == typeof(short)) {
return ((PrimitiveDataFrameColumn<short>)col).ToArray();
}
if(col.DataType == typeof(ushort)) {
return ((PrimitiveDataFrameColumn<ushort>)col).ToArray();
}
Failing test
No response
Also the new DateOnly datatype is missing in bot serialization and deserialization.