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:
PRs and other links:
Note: This issue was originally created as ARROW-11239. Please see the migration documentation for further details.