| 119 | } |
| 120 | |
| 121 | Status RunCompressorBuilder::AppendScalars(const ScalarVector& scalars) { |
| 122 | if (scalars.empty()) { |
| 123 | return Status::OK(); |
| 124 | } |
| 125 | RETURN_NOT_OK(ArrayBuilder::AppendScalars(scalars)); |
| 126 | UpdateDimensions(); |
| 127 | return Status::OK(); |
| 128 | } |
| 129 | |
| 130 | Status RunCompressorBuilder::AppendRunCompressedArraySlice( |
| 131 | const ArraySpan& run_compressed_array, int64_t offset, int64_t length) { |
nothing calls this directly
no test coverage detected