| 432 | } |
| 433 | |
| 434 | Status Visit(const BooleanArray& array) { |
| 435 | std::shared_ptr<Buffer> data; |
| 436 | RETURN_NOT_OK(GetTruncatedBitmap(array.offset(), array.length(), array.values(), |
| 437 | options_.memory_pool, &data)); |
| 438 | out_->body_buffers.emplace_back(std::move(data)); |
| 439 | return Status::OK(); |
| 440 | } |
| 441 | |
| 442 | Status Visit(const NullArray& array) { return Status::OK(); } |
| 443 |
nothing calls this directly
no test coverage detected