dadepo commented on code in PR #4361:
URL: https://github.com/apache/arrow-rs/pull/4361#discussion_r1216846751
##########
arrow-json/src/writer.rs:
##########
@@ -190,6 +190,15 @@ pub fn array_to_json_array(array: &ArrayRef) ->
Result<Vec<Value>, ArrowError> {
None => Ok(Value::Null),
})
.collect(),
+ DataType::FixedSizeList(_, _) => {
+ ListArray::from(as_fixed_size_list_array(array).to_owned())
Review Comment:
Updated as suggested. Including adding iter() to FixedSizeListArray
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]