Skip to content

Commit

Permalink
Fix impl
Browse files Browse the repository at this point in the history
  • Loading branch information
codetheweb committed Jan 21, 2025
1 parent e7c8967 commit 82ebeae
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions rust/blockstore/src/arrow/block/delta/storage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -253,6 +253,10 @@ impl BlockStorage {
let (split_key, storage) = builder.split_after_size::<K>(split_size);
(split_key, BlockStorage::RoaringBitmap(storage))
}
BlockStorage::SpannPostingListDelta(builder) => {
let (split_key, storage) = builder.split::<K>(split_size);
(split_key, BlockStorage::SpannPostingListDelta(storage))
}
}
}

Expand Down Expand Up @@ -280,6 +284,9 @@ impl BlockStorage {
let (key, storage) = builder.split_off_last_key()?;
Some((key, BlockStorage::RoaringBitmap(storage)))
}
BlockStorage::SpannPostingListDelta(_) => {
unimplemented!()
}
}
}

Expand Down

0 comments on commit 82ebeae

Please sign in to comment.