This is an automated email from the ASF dual-hosted git repository.
tustvold pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git
The following commit(s) were added to refs/heads/master by this push:
new 15dde87d4e Re-export array crate root (#4780) (#4779) (#4791)
15dde87d4e is described below
commit 15dde87d4ecefadedb22a1df1aeebc0a09cfab0e
Author: Raphael Taylor-Davies <[email protected]>
AuthorDate: Thu Sep 7 17:00:39 2023 +0100
Re-export array crate root (#4780) (#4779) (#4791)
* Re-export array crate root (#4780) (#4779)
* Clippy
---
arrow/examples/dynamic_types.rs | 1 -
arrow/src/array/mod.rs | 2 +-
2 files changed, 1 insertion(+), 2 deletions(-)
diff --git a/arrow/examples/dynamic_types.rs b/arrow/examples/dynamic_types.rs
index 8ec473c76d..21edb235aa 100644
--- a/arrow/examples/dynamic_types.rs
+++ b/arrow/examples/dynamic_types.rs
@@ -23,7 +23,6 @@ extern crate arrow;
use arrow::array::*;
use arrow::datatypes::*;
use arrow::error::Result;
-use arrow::record_batch::*;
#[cfg(feature = "prettyprint")]
use arrow::util::pretty::print_batches;
diff --git a/arrow/src/array/mod.rs b/arrow/src/array/mod.rs
index ff3a170c69..fa01f4c4c1 100644
--- a/arrow/src/array/mod.rs
+++ b/arrow/src/array/mod.rs
@@ -23,10 +23,10 @@
mod ffi;
// --------------------- Array & ArrayData ---------------------
-pub use arrow_array::array::*;
pub use arrow_array::builder::*;
pub use arrow_array::cast::*;
pub use arrow_array::iterator::*;
+pub use arrow_array::*;
pub use arrow_data::{
layout, ArrayData, ArrayDataBuilder, ArrayDataRef, BufferSpec,
DataTypeLayout,
};