\brief Ensures there is enough allocated capacity to append the indicated number of bytes to the value data buffer without additional allocations
| 831 | /// \brief Ensures there is enough allocated capacity to append the indicated |
| 832 | /// number of bytes to the value data buffer without additional allocations |
| 833 | Status ReserveData(int64_t elements) { |
| 834 | ARROW_RETURN_NOT_OK(ValidateOverflow(elements)); |
| 835 | return byte_builder_.Reserve(elements); |
| 836 | } |
| 837 | |
| 838 | void Reset() override; |
| 839 | Status Resize(int64_t capacity) override; |
no test coverage detected