Is your feature request related to a problem or challenge? Please describe what you are trying to do.
We support FixedSizeList in json writer but not reader
|
DataType::List(_) => Ok(Box::new(ListArrayDecoder::<i32>::new(ctx, data_type, is_nullable)?)), |
|
DataType::LargeList(_) => Ok(Box::new(ListArrayDecoder::<i64>::new(ctx, data_type, is_nullable)?)), |
|
DataType::ListView(_) => Ok(Box::new(ListViewArrayDecoder::<i32>::new(ctx, data_type, is_nullable)?)), |
|
DataType::LargeListView(_) => Ok(Box::new(ListViewArrayDecoder::<i64>::new(ctx, data_type, is_nullable)?)), |
Describe the solution you'd like
Consider adding support for decoding FixedSizeList
Describe alternatives you've considered
Additional context
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
We support FixedSizeList in json writer but not reader
arrow-rs/arrow-json/src/reader/mod.rs
Lines 834 to 837 in 711fac8
Describe the solution you'd like
Consider adding support for decoding FixedSizeList
Describe alternatives you've considered
Additional context