| 128 | } |
| 129 | |
| 130 | Status RunCompressorBuilder::AppendRunCompressedArraySlice( |
| 131 | const ArraySpan& run_compressed_array, int64_t offset, int64_t length) { |
| 132 | DCHECK(!has_open_run()); |
| 133 | RETURN_NOT_OK(inner_builder_->AppendArraySlice(run_compressed_array, offset, length)); |
| 134 | UpdateDimensions(); |
| 135 | return Status::OK(); |
| 136 | } |
| 137 | |
| 138 | Status RunCompressorBuilder::FinishCurrentRun() { |
| 139 | if (current_run_length_ > 0) { |
no test coverage detected