alamb commented on code in PR #6288: URL: https://github.com/apache/arrow-rs/pull/6288#discussion_r1759540314
########## 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: Could you please also add a test that is greater than 64 bits (not just = 64 bits)? -- 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