| 365 | } |
| 366 | |
| 367 | Status AppendScalars(const ScalarVector& scalars) override { |
| 368 | for (const auto& scalar : scalars) { |
| 369 | ARROW_RETURN_NOT_OK(AppendScalar(*scalar, /*n_repeats=*/1)); |
| 370 | } |
| 371 | return Status::OK(); |
| 372 | } |
| 373 | |
| 374 | Status AppendArraySlice(const ArraySpan& array, int64_t offset, int64_t length) final { |
| 375 | // Visit the indices and insert the unpacked values. |
nothing calls this directly
no test coverage detected