From fefcf5b1f18e31004f49d31c7e9711e8af61329c Mon Sep 17 00:00:00 2001 From: Jay Zhan Date: Sun, 16 Feb 2025 17:20:08 +0800 Subject: [PATCH] re-export (#14696) --- Cargo.lock | 1 + datafusion/core/Cargo.toml | 1 + datafusion/core/src/lib.rs | 5 +++++ 3 files changed, 7 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index a03b295dabfc..2db53ec583d2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1737,6 +1737,7 @@ dependencies = [ "datafusion-doc", "datafusion-execution", "datafusion-expr", + "datafusion-expr-common", "datafusion-functions", "datafusion-functions-aggregate", "datafusion-functions-nested", diff --git a/datafusion/core/Cargo.toml b/datafusion/core/Cargo.toml index ead9c90b7efb..784b2a89aae9 100644 --- a/datafusion/core/Cargo.toml +++ b/datafusion/core/Cargo.toml @@ -98,6 +98,7 @@ datafusion-common-runtime = { workspace = true } datafusion-datasource = { workspace = true } datafusion-execution = { workspace = true } datafusion-expr = { workspace = true } +datafusion-expr-common = { workspace = true } datafusion-functions = { workspace = true } datafusion-functions-aggregate = { workspace = true } datafusion-functions-nested = { workspace = true, optional = true } diff --git a/datafusion/core/src/lib.rs b/datafusion/core/src/lib.rs index 3ea9e67be299..d6e092cd2ee7 100644 --- a/datafusion/core/src/lib.rs +++ b/datafusion/core/src/lib.rs @@ -737,6 +737,11 @@ pub mod logical_expr { pub use datafusion_expr::*; } +/// re-export of [`datafusion_expr_common`] crate +pub mod logical_expr_common { + pub use datafusion_expr_common::*; +} + /// re-export of [`datafusion_optimizer`] crate pub mod optimizer { pub use datafusion_optimizer::*;