| 373 | } |
| 374 | |
| 375 | Status AppendScalars(const ScalarVector& scalars) override { |
| 376 | for (const auto& scalar : scalars) { |
| 377 | ARROW_RETURN_NOT_OK(AppendScalar(*scalar, /*n_repeats=*/1)); |
| 378 | } |
| 379 | return Status::OK(); |
| 380 | } |
| 381 | |
| 382 | Status AppendArraySlice(const ArraySpan& array, int64_t offset, int64_t length) final { |
| 383 | // Visit the indices and insert the unpacked values. |
nothing calls this directly
no test coverage detected