| 610 | } |
| 611 | |
| 612 | Status Visit(const NullType& type) { |
| 613 | DCHECK(false); // already forwarded to MakeArrayOfNull |
| 614 | return Status::OK(); |
| 615 | } |
| 616 | |
| 617 | Status Visit(const BooleanType&) { |
| 618 | ARROW_ASSIGN_OR_RAISE(auto buffer, AllocateBitmap(length_, pool_)); |
nothing calls this directly
no test coverage detected