This is an automated email from the ASF dual-hosted git repository.
alamb pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git
The following commit(s) were added to refs/heads/main by this push:
new 4678f0569f chore: re-export `MAX_INLINE_VIEW_LEN` from `arrow_data`
(#9665)
4678f0569f is described below
commit 4678f0569fb79b3a4f156a1ff65b5a20d3ddc585
Author: Raz Luvaton <[email protected]>
AuthorDate: Mon Apr 6 22:42:47 2026 +0300
chore: re-export `MAX_INLINE_VIEW_LEN` from `arrow_data` (#9665)
# Which issue does this PR close?
N/A
# Rationale for this change
So I can use it without including arrow-data manually
# What changes are included in this PR?
re-export
# Are these changes tested?
No
# Are there any user-facing changes?
Yes, new variable export
---
arrow/src/array/mod.rs | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/arrow/src/array/mod.rs b/arrow/src/array/mod.rs
index f95afc4928..e548c4c837 100644
--- a/arrow/src/array/mod.rs
+++ b/arrow/src/array/mod.rs
@@ -25,7 +25,8 @@ pub use arrow_array::cast::*;
pub use arrow_array::iterator::*;
pub use arrow_array::*;
pub use arrow_data::{
- ArrayData, ArrayDataBuilder, ArrayDataRef, BufferSpec, ByteView,
DataTypeLayout, layout,
+ ArrayData, ArrayDataBuilder, ArrayDataRef, BufferSpec, ByteView,
DataTypeLayout,
+ MAX_INLINE_VIEW_LEN, layout,
};
pub use arrow_data::transform::{Capacities, MutableArrayData};