File tree Expand file tree Collapse file tree 4 files changed +10
-3
lines changed Expand file tree Collapse file tree 4 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 8080 - name : Check datafusion-common without default features
8181 run : cargo check --all-targets --no-default-features -p datafusion-common
8282
83- - name : Check datafusion-functions
83+ - name : Check datafusion-functions without default features
8484 run : cargo check --all-targets --no-default-features -p datafusion-functions
8585
86+ - name : Check datafusion-substrait without default features
87+ run : cargo check --all-targets --no-default-features -p datafusion-substrait
88+
8689 - name : Check workspace in debug mode
8790 run : cargo check --all-targets --workspace
8891
@@ -603,4 +606,4 @@ jobs:
603606 run : cargo msrv --output-format json --log-target stdout verify
604607 - name : Check datafusion-cli
605608 working-directory : datafusion-cli
606- run : cargo msrv --output-format json --log-target stdout verify
609+ run : cargo msrv --output-format json --log-target stdout verify
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ arrow-buffer = { workspace = true }
3636async-recursion = " 1.0"
3737async-trait = { workspace = true }
3838chrono = { workspace = true }
39- datafusion = { workspace = true , default-features = true }
39+ datafusion = { workspace = true }
4040itertools = { workspace = true }
4141object_store = { workspace = true }
4242pbjson-types = " 0.7"
@@ -51,4 +51,6 @@ serde_json = "1.0"
5151tokio = { workspace = true }
5252
5353[features ]
54+ default = [" physical" ]
55+ physical = [" datafusion/parquet" ]
5456protoc = [" substrait/protoc" ]
Original file line number Diff line number Diff line change 7575//! ```
7676pub mod extensions;
7777pub mod logical_plan;
78+ #[ cfg( feature = "physical" ) ]
7879pub mod physical_plan;
7980pub mod serializer;
8081pub mod variation_const;
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ mod emit_kind_tests;
2020mod function_test;
2121mod logical_plans;
2222mod roundtrip_logical_plan;
23+ #[ cfg( feature = "physical" ) ]
2324mod roundtrip_physical_plan;
2425mod serialize;
2526mod substrait_validations;
You can’t perform that action at this time.
0 commit comments