houqp commented on a change in pull request #9412: URL: https://github.com/apache/arrow/pull/9412#discussion_r575729282
########## File path: rust/arrow/src/json/reader.rs ########## @@ -1874,9 +1997,7 @@ mod tests { .downcast_ref::<ListArray>() .unwrap(); let bb = bb.values(); - let bb = bb.as_any().downcast_ref::<Float64Array>().unwrap(); - assert_eq!(10, bb.len()); - assert!(4.0 - bb.value(9) < f64::EPSILON); Review comment: b column is of list type, but the last row has a value of `"b":4`, so i replaced it with `"b": []` in the test data. I am going to revert my test data change to maintain the old behavior based on our previous discussions. ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org