zinking commented on issue #4733:
URL: https://github.com/apache/arrow-rs/issues/4733#issuecomment-1693243069
@tustvold
does this test still apply
```
#[test]
fn test_boolean_array_eq() {
let a: BooleanArray =
vec![Some(true), Some(false), Some(false), Some(true),
Some(true), None]
.into();
let b: BooleanArray =
vec![Some(true), Some(true), Some(false), Some(false), None,
Some(false)]
.into();
let res: Vec<Option<bool>> = eq_bool(&a,
&b).unwrap().iter().collect();
assert_eq!(
res,
vec![Some(true), Some(false), Some(true), Some(false), None,
None]
)
}
```
in my understanding all cmp now generates boolean arrays now
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]