| 146 | } |
| 147 | |
| 148 | Status MapBuilder::AppendEmptyValue() { |
| 149 | DCHECK_EQ(item_builder_->length(), key_builder_->length()); |
| 150 | RETURN_NOT_OK(AdjustStructBuilderLength()); |
| 151 | RETURN_NOT_OK(list_builder_->AppendEmptyValue()); |
| 152 | length_ = list_builder_->length(); |
| 153 | null_count_ = list_builder_->null_count(); |
| 154 | return Status::OK(); |
| 155 | } |
| 156 | |
| 157 | Status MapBuilder::AppendEmptyValues(int64_t length) { |
| 158 | DCHECK_EQ(item_builder_->length(), key_builder_->length()); |