Skip to content

Commit ba868fa

Browse files
authored
feat: add datafusion-pruning crate
1 parent f29214f commit ba868fa

File tree

6 files changed

+5170
-5131
lines changed

6 files changed

+5170
-5131
lines changed

Cargo.lock

Lines changed: 14 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ members = [
4242
"datafusion/physical-expr",
4343
"datafusion/physical-expr-common",
4444
"datafusion/physical-optimizer",
45+
"datafusion/pruning",
4546
"datafusion/physical-plan",
4647
"datafusion/proto",
4748
"datafusion/proto/gen",
@@ -136,6 +137,7 @@ datafusion-optimizer = { path = "datafusion/optimizer", version = "48.0.0", defa
136137
datafusion-physical-expr = { path = "datafusion/physical-expr", version = "48.0.0", default-features = false }
137138
datafusion-physical-expr-common = { path = "datafusion/physical-expr-common", version = "48.0.0", default-features = false }
138139
datafusion-physical-optimizer = { path = "datafusion/physical-optimizer", version = "48.0.0" }
140+
datafusion-pruning = { path = "datafusion/pruning", version = "48.0.0" }
139141
datafusion-physical-plan = { path = "datafusion/physical-plan", version = "48.0.0" }
140142
datafusion-proto = { path = "datafusion/proto", version = "48.0.0" }
141143
datafusion-proto-common = { path = "datafusion/proto-common", version = "48.0.0" }

datafusion/physical-optimizer/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ pub mod limited_distinct_aggregation;
3737
pub mod optimizer;
3838
pub mod output_requirements;
3939
pub mod projection_pushdown;
40-
pub mod pruning;
40+
pub use datafusion_pruning as pruning;
4141
pub mod sanity_checker;
4242
pub mod topk_aggregation;
4343
pub mod update_aggr_exprs;

0 commit comments

Comments
 (0)