Skip to content

Commit

Permalink
fix projection pushdown in IPC scanning
Browse files Browse the repository at this point in the history
  • Loading branch information
ritchie46 committed Nov 14, 2021
1 parent cd3eef0 commit 4e6dea0
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ impl ProjectionPushDown {
schema,
predicate,
aggregate,
options,
mut options,
..
} => {
let with_columns = get_scan_columns(&mut acc_projections, expr_arena);
Expand All @@ -329,6 +329,7 @@ impl ProjectionPushDown {
&*schema,
)?))
};
options.with_columns = with_columns;

let lp = IpcScan {
path,
Expand Down

0 comments on commit 4e6dea0

Please sign in to comment.