| 104 | } |
| 105 | |
| 106 | Status RecordBatchBuilder::InitBuilders() { |
| 107 | for (int i = 0; i < this->num_fields(); ++i) { |
| 108 | RETURN_NOT_OK(raw_field_builders_[i]->Reserve(initial_capacity_)); |
| 109 | } |
| 110 | return Status::OK(); |
| 111 | } |
| 112 | |
| 113 | } // namespace arrow |
no test coverage detected