-
Notifications
You must be signed in to change notification settings - Fork 1k
Closed
Labels
arrowChanges to the arrow crateChanges to the arrow cratebugquestionFurther information is requestedFurther information is requested
Description
Describe your question
arrow::array::MapBuilder is public (#1355), but MapFieldNames is not, making it impossible to call new() and with_capacity() with a proper value.
arrow-rs/arrow/src/array/builder/map_builder.rs
Lines 61 to 68 in 3096591
| pub fn new( | |
| field_names: Option<MapFieldNames>, | |
| key_builder: K, | |
| value_builder: V, | |
| ) -> Self { | |
| let capacity = key_builder.len(); | |
| Self::with_capacity(field_names, key_builder, value_builder, capacity) | |
| } |
I guess MapFieldNames should be exported too, should it?
Metadata
Metadata
Assignees
Labels
arrowChanges to the arrow crateChanges to the arrow cratebugquestionFurther information is requestedFurther information is requested