Skip to content

Commit

Permalink
Revert "turn on delta"
Browse files Browse the repository at this point in the history
This reverts commit 73f6166.
  • Loading branch information
lwwmanning committed Oct 9, 2024
1 parent 73f6166 commit 507e658
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions vortex-sampling-compressor/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ use std::collections::HashSet;
use std::fmt::{Debug, Display, Formatter};

use compressors::bitpacked::BITPACK_WITH_PATCHES;
use compressors::delta::DeltaCompressor;
use compressors::fsst::FSSTCompressor;
use lazy_static::lazy_static;
use log::{debug, info, warn};
Expand Down Expand Up @@ -37,12 +36,12 @@ mod constants;
mod sampling;

lazy_static! {
pub static ref DEFAULT_COMPRESSORS: [CompressorRef<'static>; 12] = [
pub static ref DEFAULT_COMPRESSORS: [CompressorRef<'static>; 11] = [
&ALPCompressor as CompressorRef,
&BITPACK_WITH_PATCHES,
&DateTimePartsCompressor,
&DEFAULT_RUN_END_COMPRESSOR,
&DeltaCompressor,
// &DeltaCompressor,
&DictCompressor,
&FoRCompressor,
&FSSTCompressor,
Expand Down

0 comments on commit 507e658

Please sign in to comment.