From f17cb70188997eeaf624e61d53cb3bcba3a50c3c Mon Sep 17 00:00:00 2001 From: Andrew Duffy Date: Wed, 26 Jun 2024 10:47:46 -0400 Subject: [PATCH] renable DictEncoding for bench --- bench-vortex/benches/datafusion_benchmark.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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, ]);