Skip to content

Commit

Permalink
renable DictEncoding for bench
Browse files Browse the repository at this point in the history
  • Loading branch information
a10y committed Jun 26, 2024
1 parent 0ad3007 commit f17cb70
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bench-vortex/benches/datafusion_benchmark.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,13 @@ use vortex::compress::Compressor;
use vortex::encoding::EncodingRef;
use vortex::{Array, Context, IntoArray, ToArrayData};
use vortex_datafusion::{VortexMemTable, VortexMemTableOptions};
use vortex_dict::DictEncoding;
use vortex_fastlanes::{BitPackedEncoding, DeltaEncoding, FoREncoding};

lazy_static! {
pub static ref CTX: Context = Context::default().with_encodings([
&BitPackedEncoding as EncodingRef,
// &DictEncoding,
&DictEncoding,
&FoREncoding,
&DeltaEncoding,
]);
Expand Down

0 comments on commit f17cb70

Please sign in to comment.