This is an automated email from the ASF dual-hosted git repository.
timsaucer pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/datafusion-python.git
The following commit(s) were added to refs/heads/main by this push:
new 0c1499cd fix: satisfy rustfmt check in lib.rs re-exports (#1406)
0c1499cd is described below
commit 0c1499cddea5fa20c13728b0c2726aea4fbd1b08
Author: Kevin Liu <[email protected]>
AuthorDate: Mon Mar 2 08:21:37 2026 -0500
fix: satisfy rustfmt check in lib.rs re-exports (#1406)
---
src/lib.rs | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/lib.rs b/src/lib.rs
index 081366b2..468243a3 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -16,9 +16,9 @@
// under the License.
// Re-export Apache Arrow DataFusion dependencies
-pub use datafusion;
pub use datafusion::{
- common as datafusion_common, logical_expr as datafusion_expr, optimizer,
sql as datafusion_sql,
+ self, common as datafusion_common, logical_expr as datafusion_expr,
optimizer,
+ sql as datafusion_sql,
};
#[cfg(feature = "substrait")]
pub use datafusion_substrait;
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]