kazuyukitanimura commented on code in PR #6288: URL: https://github.com/apache/arrow-rs/pull/6288#discussion_r1759566843
########## arrow-buffer/src/util/bit_mask.rs: ########## @@ -185,4 +277,40 @@ mod tests { assert_eq!(destination, expected_data); assert_eq!(result, expected_null_count); } + + #[test] + fn test_set_upto_64bits() { + // len >= 64 + let write_data: &mut [u8] = &mut [0; 9]; + let data: &[u8] = &[ Review Comment: Sure, I will add it. BTW there is an existing test https://github.com/apache/arrow-rs/blob/master/arrow-buffer/src/util/bit_mask.rs#L170 -- 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: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org