| 123 | return builder_->AppendScalars(scalars); |
| 124 | } |
| 125 | Status AppendArraySlice(const ArraySpan& array, int64_t offset, |
| 126 | int64_t length) override { |
| 127 | return builder_->AppendArraySlice(array, offset, length); |
| 128 | } |
| 129 | |
| 130 | Status FinishInternal(std::shared_ptr<ArrayData>* out) override { |
| 131 | return builder_->FinishInternal(out); |
nothing calls this directly
no test coverage detected