We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a951a3 commit 9ec9c34Copy full SHA for 9ec9c34
arrow-buffer/src/util/bit_util.rs
@@ -226,7 +226,7 @@ pub fn apply_bitwise_binary_op<F>(
226
let right_byte_offset = right_offset_in_bits / 8;
227
228
// Read the same amount of bits from the right buffer
229
- let right_first_byte: u8 = crate::util::bit_util::read_up_to_byte_from_offset(
+ let right_first_byte: u8 = read_up_to_byte_from_offset(
230
&right.as_ref()[right_byte_offset..],
231
bits_to_next_byte,
232
// Right bit offset
0 commit comments