diff --git a/bench-vortex/benches/datafusion_benchmark.rs b/bench-vortex/benches/datafusion_benchmark.rs index f8dbc9db00..4ea5740e4e 100644 --- a/bench-vortex/benches/datafusion_benchmark.rs +++ b/bench-vortex/benches/datafusion_benchmark.rs @@ -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, ]);