\brief Get builder to add Map entries as struct values. This is used instead of key_builder()/item_builder() and allows the Map to be built as a list of struct values.
| 605 | /// This is used instead of key_builder()/item_builder() and allows |
| 606 | /// the Map to be built as a list of struct values. |
| 607 | ArrayBuilder* value_builder() const { return list_builder_->value_builder(); } |
| 608 | |
| 609 | std::shared_ptr<DataType> type() const override { |
| 610 | // Key and Item builder may update types, but they don't contain the field names, |
nothing calls this directly
no test coverage detected