Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
3.0.0
Description
Test array::transform::tests::test_struct in arrow/src/array/transform/mod.rs failed when swap the first two elements:
change from
// code placeholder let strings: ArrayRef = Arc::new(StringArray::from(vec![ Some("joe"), None,
to
// code placeholder let strings: ArrayRef = Arc::new(StringArray::from(vec![ None, Some("joe"),
The failure was first found when I report https://issues.apache.org/jira/browse/ARROW-11160
Attachments
Issue Links
- is related to
-
ARROW-11160 [Rust] pitfall in xxx_equal functions
- Closed
- relates to
-
ARROW-11267 [Rust]: Comparison of list arrays with differing offsets fails
- Closed
- links to