You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The buffer builder is sized as BooleanBufferBuilder::new(bit_util::ceil(predicate.count, 8)), but the new function takes length in bits already, no need for bit_util::ceil:
Describe the bug
The buffer builder is sized as
BooleanBufferBuilder::new(bit_util::ceil(predicate.count, 8))
, but thenew
function takes length in bits already, no need forbit_util::ceil
:arrow-rs/arrow-buffer/src/builder/boolean.rs
Line 32 in b1f5c25
arrow-rs/arrow-select/src/filter.rs
Line 520 in b1f5c25
Expected behavior
Remove bit_util::cel to avoid under-allocating capacity by 8x
The text was updated successfully, but these errors were encountered: