You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by tu...@apache.org on 2022/07/22 18:19:10 UTC

[arrow-rs] branch master updated: Make MapFieldNames public (#2118) (#2134)

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 add264979 Make MapFieldNames public (#2118) (#2134)
add264979 is described below

commit add264979720a3500440da7b38b6f5ae6ac9eadb
Author: Raphael Taylor-Davies <17...@users.noreply.github.com>
AuthorDate: Fri Jul 22 14:19:05 2022 -0400

    Make MapFieldNames public (#2118) (#2134)
---
 arrow/src/array/builder/mod.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arrow/src/array/builder/mod.rs b/arrow/src/array/builder/mod.rs
index a5b7f1ed0..f97ff4cac 100644
--- a/arrow/src/array/builder/mod.rs
+++ b/arrow/src/array/builder/mod.rs
@@ -52,7 +52,7 @@ pub use fixed_size_list_builder::FixedSizeListBuilder;
 pub use generic_binary_builder::GenericBinaryBuilder;
 pub use generic_list_builder::GenericListBuilder;
 pub use generic_string_builder::GenericStringBuilder;
-pub use map_builder::MapBuilder;
+pub use map_builder::{MapBuilder, MapFieldNames};
 pub use primitive_builder::PrimitiveBuilder;
 pub use primitive_dictionary_builder::PrimitiveDictionaryBuilder;
 pub use string_dictionary_builder::StringDictionaryBuilder;