You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jira@arrow.apache.org by "Qingyou Meng (Jira)" <ji...@apache.org> on 2021/01/13 14:43:00 UTC

[jira] [Updated] (ARROW-11239) [Rust] possible bug in MutableArrayData extend null bits

     [ https://issues.apache.org/jira/browse/ARROW-11239?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Qingyou Meng updated ARROW-11239:
---------------------------------
    Description: 
Test `array::transform::tests::test_struct` in `arrow/src/array/equal/mod.rs` failed when swap first two elements:

change

 
{code:java}
// code placeholder
let strings: ArrayRef = Arc::new(StringArray::from(vec![
    Some("joe"),
    None,{code}
to

 
{code:java}
// code placeholder
let strings: ArrayRef = Arc::new(StringArray::from(vec![
    None,
    Some("joe"),{code}
The failure was first found when I report https://issues.apache.org/jira/browse/ARROW-11160

 

 

  was:
Test `array::transform::tests::test_struct` in `arrow/src/array/equal/mod.rs` failed when swap first two elements:

change

 
{code:java}
// code placeholder
let strings: ArrayRef = Arc::new(StringArray::from(vec![
    Some("joe"),
    None,{code}
to

 
{code:java}
// code placeholder
let strings: ArrayRef = Arc::new(StringArray::from(vec![
    Some("joe"),
    None,{code}
The failure was first found when I report https://issues.apache.org/jira/browse/ARROW-11160

 

 


> [Rust] possible bug in MutableArrayData extend null bits
> --------------------------------------------------------
>
>                 Key: ARROW-11239
>                 URL: https://issues.apache.org/jira/browse/ARROW-11239
>             Project: Apache Arrow
>          Issue Type: Improvement
>            Reporter: Qingyou Meng
>            Priority: Major
>
> Test `array::transform::tests::test_struct` in `arrow/src/array/equal/mod.rs` failed when swap first two elements:
> change
>  
> {code:java}
> // code placeholder
> let strings: ArrayRef = Arc::new(StringArray::from(vec![
>     Some("joe"),
>     None,{code}
> to
>  
> {code:java}
> // code placeholder
> let strings: ArrayRef = Arc::new(StringArray::from(vec![
>     None,
>     Some("joe"),{code}
> The failure was first found when I report https://issues.apache.org/jira/browse/ARROW-11160
>  
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)