| 129 | } |
| 130 | |
| 131 | Status AppendEmptyValues(int64_t length) final { |
| 132 | const int64_t num_bytes = value_data_builder_.length(); |
| 133 | ARROW_RETURN_NOT_OK(Reserve(length)); |
| 134 | for (int64_t i = 0; i < length; ++i) { |
| 135 | offsets_builder_.UnsafeAppend(static_cast<offset_type>(num_bytes)); |
| 136 | } |
| 137 | UnsafeAppendToBitmap(length, true); |
| 138 | return Status::OK(); |
| 139 | } |
| 140 | |
| 141 | /// \brief Append without checking capacity |
| 142 | /// |
nothing calls this directly
no test coverage detected