\brief Ensures there is enough allocated capacity to append the indicated number of bytes to the value data buffer without additional allocations
| 329 | /// \brief Ensures there is enough allocated capacity to append the indicated |
| 330 | /// number of bytes to the value data buffer without additional allocations |
| 331 | Status ReserveData(int64_t elements) { |
| 332 | ARROW_RETURN_NOT_OK(ValidateOverflow(elements)); |
| 333 | return value_data_builder_.Reserve(elements); |
| 334 | } |
| 335 | |
| 336 | Status FinishInternal(std::shared_ptr<ArrayData>* out) override { |
| 337 | // Write final offset (values length) |
nothing calls this directly
no test coverage detected