Skip to content

Commit 66957b7

Browse files
mprammerclaude
andcommitted
Fix DF benchmark pushdown options
`predicate_pushdown` is assigned twice; the second should be `projection_pushdown`. Co-Authored-By: Claude <noreply@anthropic.com> Signed-off-by: mprammer <martin@spiraldb.com>
1 parent f9d2abb commit 66957b7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • benchmarks/datafusion-bench/src

benchmarks/datafusion-bench/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ fn vortex_table_options() -> VortexTableOptions {
122122
let mut opts = VortexTableOptions::default();
123123

124124
opts.predicate_pushdown = true;
125-
opts.predicate_pushdown = true;
125+
opts.projection_pushdown = true;
126126

127127
opts
128128
}

0 commit comments

Comments
 (0)