\brief Append several empty elements
| 134 | |
| 135 | /// \brief Append several empty elements |
| 136 | Status AppendEmptyValues(int64_t length) final { |
| 137 | ARROW_RETURN_NOT_OK(Reserve(length)); |
| 138 | data_builder_.UnsafeAppend(length, value_type{}); // zero |
| 139 | UnsafeSetNotNull(length); |
| 140 | return Status::OK(); |
| 141 | } |
| 142 | |
| 143 | value_type GetValue(int64_t index) const { return data_builder_.data()[index]; } |
| 144 |
nothing calls this directly
no test coverage detected