tustvold commented on code in PR #5209:
URL: https://github.com/apache/arrow-rs/pull/5209#discussion_r1426922562
##########
arrow-array/src/array/mod.rs:
##########
@@ -17,55 +17,45 @@
//! The concrete array definitions
-mod binary_array;
+use std::any::Any;
+use std::borrow::Cow;
+use std::sync::Arc;
-use crate::types::*;
use arrow_buffer::{ArrowNativeType, NullBuffer, OffsetBuffer, ScalarBuffer};
use arrow_data::ArrayData;
use arrow_schema::{DataType, IntervalUnit, TimeUnit};
-use std::any::Any;
-use std::sync::Arc;
-
pub use binary_array::*;
-
-mod boolean_array;
Review Comment:
I'm not a fan of this re-organisation, it makes it harder to notice if
you've missed a re-export
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]