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

meng qingyou updated ARROW-11160:
---------------------------------
    Description: 
Functions `pub(super) fn xxxx_equal` in rust/src/array/equal/ MUST fail if 
called directly instead of from `equal`.  boolean.rs as  example:
{code:java}
lhs_is_null || (lhs_is_null == rhs_is_null)
 && equal_bits(...){code}
 
 
The bug is not seen in tests at present because `equal` shortcuts the 
condition: zero null s v.s. nulls
  
 To verify this problem , adds a new test in `mod.rs`
 
{code:java}
#[test]
fn test_direct_call_boolean_equal() {
    let a = BooleanArray::from(vec![Some(true)]).data();
    let b = BooleanArray::from(vec![Some(false)]).data();
    let lhs = a.as_ref();
    let rhs = b.as_ref();
    let lhs_nulls = lhs.null_buffer();
    let rhs_nulls = rhs.null_buffer();
    assert_eq!(boolean::boolean_equal(lhs, rhs, lhs_nulls, rhs_nulls, 0, 0, 
lhs.len()), false);
}
{code}

  was:
Functions `pub(super) fn xxxx_equal` in rust/src/array/equal/ MUST fail if 
called directly instead of from `equal`.  boolean.rs as  example:

```
lhs_is_null
|| (lhs_is_null == rhs_is_null)
&& equal_bits(...)
```
The bug is not seen in tests at present because `equal` shortcuts the 
condition: zero null s v.s. nulls
 
To verify this problem , adds a new test in `mod.rs`:
```
#[test]
fntest_boolean_equal_bug() {
leta=BooleanArray::from(vec![None]).data();
letb=BooleanArray::from(vec![Some(false)]).data();

letlhs=a.as_ref();
letrhs=b.as_ref();
letlhs_nulls=lhs.null_buffer();
letrhs_nulls=rhs.null_buffer();

assert_eq!(boolean::boolean_equal(lhs, rhs, lhs_nulls, rhs_nulls, 0, 0, 
lhs.len()), false);
}
```


> [Rust] pitfall in xxx_equal functions
> -------------------------------------
>
>                 Key: ARROW-11160
>                 URL: https://issues.apache.org/jira/browse/ARROW-11160
>             Project: Apache Arrow
>          Issue Type: Improvement
>            Reporter: meng qingyou
>            Priority: Major
>
> Functions `pub(super) fn xxxx_equal` in rust/src/array/equal/ MUST fail if 
> called directly instead of from `equal`.  boolean.rs as  example:
> {code:java}
> lhs_is_null || (lhs_is_null == rhs_is_null)
>  && equal_bits(...){code}
>  
>  
> The bug is not seen in tests at present because `equal` shortcuts the 
> condition: zero null s v.s. nulls
>   
>  To verify this problem , adds a new test in `mod.rs`
>  
> {code:java}
> #[test]
> fn test_direct_call_boolean_equal() {
>     let a = BooleanArray::from(vec![Some(true)]).data();
>     let b = BooleanArray::from(vec![Some(false)]).data();
>     let lhs = a.as_ref();
>     let rhs = b.as_ref();
>     let lhs_nulls = lhs.null_buffer();
>     let rhs_nulls = rhs.null_buffer();
>     assert_eq!(boolean::boolean_equal(lhs, rhs, lhs_nulls, rhs_nulls, 0, 0, 
> lhs.len()), false);
> }
> {code}



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

Reply via email to