-
Notifications
You must be signed in to change notification settings - Fork 4k
Closed
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 #27069
Reporter: Qingyou Meng / @mqy
Assignee: Jorge Leitão / @jorgecarleitao
Related issues:
- [Rust]: Comparison of list arrays with differing offsets fails (relates to)
- [Rust] pitfall in xxx_equal functions (is related to)
PRs and other links:
Note: This issue was originally created as ARROW-11239. Please see the migration documentation for further details.