This is an automated email from the ASF dual-hosted git repository. kszucs pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/arrow.git
commit a8e2057bd23bb2dff892e457248855a9afa3accf Author: Kyle McCarthy <k...@creativeanvil.com> AuthorDate: Thu Oct 3 15:45:14 2019 -0400 ARROW-6744: [Rust] Publicly expose JsonEqual Jira Issue: https://issues.apache.org/jira/browse/ARROW-6744 As of right now, devs using arrow in their own project cannot implement the Array trait since it is bound by JsonEqual, which isn't exported publicly. I am not sure if this was done intentionally, but if not this PR will resolve the problem. Closes #5549 from kyle-mccarthy/master and squashes the following commits: fc2175008 <Kyle McCarthy> ARROW-6744: Publicly expose JsonEqual Authored-by: Kyle McCarthy <k...@creativeanvil.com> Signed-off-by: Paddy Horan <paddyho...@hotmail.com> --- rust/arrow/src/array/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/rust/arrow/src/array/mod.rs b/rust/arrow/src/array/mod.rs index 47e4219..d7f1293 100644 --- a/rust/arrow/src/array/mod.rs +++ b/rust/arrow/src/array/mod.rs @@ -163,3 +163,4 @@ pub type Time64NanosecondBuilder = PrimitiveBuilder<Time64NanosecondType>; // --------------------- Array Equality --------------------- pub use self::equal::ArrayEqual; +pub use self::equal::JsonEqual;