| 122 | } |
| 123 | |
| 124 | Status AppendEmptyValue() final { |
| 125 | ARROW_RETURN_NOT_OK(Reserve(1)); |
| 126 | UnsafeAppendNextOffset(); |
| 127 | UnsafeAppendToBitmap(true); |
| 128 | return Status::OK(); |
| 129 | } |
| 130 | |
| 131 | Status AppendEmptyValues(int64_t length) final { |
| 132 | const int64_t num_bytes = value_data_builder_.length(); |
nothing calls this directly
no test coverage detected