| 597 | } |
| 598 | |
| 599 | Status NumPyConverter::Visit(const BinaryType& type) { |
| 600 | ::arrow::internal::ChunkedBinaryBuilder builder(kBinaryChunksize, pool_); |
| 601 | |
| 602 | RETURN_NOT_OK(VisitBinary(&builder)); |
| 603 | |
| 604 | ArrayVector result; |
| 605 | RETURN_NOT_OK(builder.Finish(&result)); |
| 606 | for (auto arr : result) { |
| 607 | RETURN_NOT_OK(PushArray(arr->data())); |
| 608 | } |
| 609 | return Status::OK(); |
| 610 | } |
| 611 | |
| 612 | Status NumPyConverter::Visit(const LargeBinaryType& type) { |
| 613 | ::arrow::LargeBinaryBuilder builder(pool_); |
nothing calls this directly
no test coverage detected