Skip to content

Commit

Permalink
Merge
Browse files Browse the repository at this point in the history
  • Loading branch information
gatesn committed Mar 7, 2024
1 parent 5984425 commit e91eea4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bench-vortex/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ use vortex_alp::ALPEncoding;
use vortex_dict::DictEncoding;
use vortex_fastlanes::{BitPackedEncoding, FoREncoding};
use vortex_ree::REEEncoding;
use vortex_roaring::{RoaringBoolEncoding, RoaringIntEncoding};
use vortex_roaring::RoaringBoolEncoding;

pub fn enumerate_arrays() -> Vec<&'static dyn Encoding> {
vec![
Expand Down
2 changes: 1 addition & 1 deletion vortex-array/src/compress.rs
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ pub fn sampled_compression(array: &dyn Array, ctx: &CompressCtx) -> VortexResult

if array.len() < ctx.options.block_size as usize {
// We're either already within a sample, or we're operating over a sufficiently small array.
return Ok(find_best_compression(candidates, array, ctx)?);
find_best_compression(candidates, array, ctx)
} else {
let sample = compute::as_contiguous::as_contiguous(
stratified_slices(
Expand Down

0 comments on commit e91eea4

Please sign in to comment.