Skip to content

Commit fefcf5b

Browse files
authored
re-export (apache#14696)
1 parent 2238680 commit fefcf5b

File tree

3 files changed

+7
-0
lines changed

3 files changed

+7
-0
lines changed

Cargo.lock

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

datafusion/core/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ datafusion-common-runtime = { workspace = true }
9898
datafusion-datasource = { workspace = true }
9999
datafusion-execution = { workspace = true }
100100
datafusion-expr = { workspace = true }
101+
datafusion-expr-common = { workspace = true }
101102
datafusion-functions = { workspace = true }
102103
datafusion-functions-aggregate = { workspace = true }
103104
datafusion-functions-nested = { workspace = true, optional = true }

datafusion/core/src/lib.rs

+5
Original file line numberDiff line numberDiff line change
@@ -737,6 +737,11 @@ pub mod logical_expr {
737737
pub use datafusion_expr::*;
738738
}
739739

740+
/// re-export of [`datafusion_expr_common`] crate
741+
pub mod logical_expr_common {
742+
pub use datafusion_expr_common::*;
743+
}
744+
740745
/// re-export of [`datafusion_optimizer`] crate
741746
pub mod optimizer {
742747
pub use datafusion_optimizer::*;

0 commit comments

Comments
 (0)