Skip to content

Commit

Permalink
roar bitmap fix
Browse files Browse the repository at this point in the history
  • Loading branch information
HammadB committed Mar 12, 2024
1 parent 69612f0 commit d17f7ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rust/worker/src/blockstore/arrow_blockfile/block/delta.rs
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ impl BlockDeltaInner {

fn offset_size_for_value_type(&self, item_count: usize, value_type: ValueType) -> usize {
match value_type {
ValueType::Int32Array | ValueType::String => {
ValueType::Int32Array | ValueType::String | ValueType::RoaringBitmap => {
bit_util::round_upto_multiple_of_64((item_count + 1) * 4)
}
_ => unimplemented!("Value type not implemented"),
Expand Down

0 comments on commit d17f7ff

Please sign in to comment.