chloro-pn commented on code in PR #6178:
URL: https://github.com/apache/arrow-rs/pull/6178#discussion_r1709457033
##########
arrow-select/src/filter.rs:
##########
@@ -985,6 +1044,25 @@ mod tests {
_test_filter_byte_view::<BinaryViewType>()
}
+ #[test]
+ fn test_filter_fixed_binary() {
+ let v1 = [1_u8, 2];
+ let v2 = [3_u8, 4];
+ let v3 = [5_u8, 6];
+ let v = vec![&v1, &v2, &v3];
+ let a = FixedSizeBinaryArray::from(v);
+ let b = BooleanArray::from(vec![true, false, true]);
Review Comment:
fixed
--
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]