| 262 | } |
| 263 | |
| 264 | virtual Result<std::shared_ptr<ChunkedArray>> ToChunkedArray() { |
| 265 | ARROW_ASSIGN_OR_RAISE(auto array, this->ToArray()) |
| 266 | return std::make_shared<ChunkedArray>(array); |
| 267 | } |
| 268 | }; |
| 269 | |
| 270 | // A Converter that calls as_arrow_array(x, type = options.type) |
no outgoing calls
no test coverage detected