This is an automated email from the ASF dual-hosted git repository.
alamb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git
The following commit(s) were added to refs/heads/master by this push:
new 4c31f7895 Re-export DataFusion crates (#2264)
4c31f7895 is described below
commit 4c31f789564088fea0b96959d75805a0973ba14a
Author: Andy Grove <[email protected]>
AuthorDate: Tue Apr 19 04:29:27 2022 -0600
Re-export DataFusion crates (#2264)
* Re-export all DataFusion crates
* Re-export jit
---
datafusion/core/src/lib.rs | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/datafusion/core/src/lib.rs b/datafusion/core/src/lib.rs
index 94835c3d5..e61ab74d8 100644
--- a/datafusion/core/src/lib.rs
+++ b/datafusion/core/src/lib.rs
@@ -226,8 +226,13 @@ pub use arrow;
pub use parquet;
// re-export DataFusion crates
+pub use datafusion_common as common;
pub use datafusion_data_access;
pub use datafusion_expr as logical_expr;
+pub use datafusion_physical_expr as physical_expr;
+
+#[cfg(feature = "jit")]
+pub use datafusion_jit as jit;
#[cfg(feature = "row")]
pub mod row;