| 2556 | } // namespace |
| 2557 | |
| 2558 | Status ConvertArrayToPandas(const PandasOptions& options, std::shared_ptr<Array> arr, |
| 2559 | PyObject* py_ref, PyObject** out) { |
| 2560 | return ConvertChunkedArrayToPandas( |
| 2561 | options, std::make_shared<ChunkedArray>(std::move(arr)), py_ref, out); |
| 2562 | } |
| 2563 | |
| 2564 | Status ConvertChunkedArrayToPandas(const PandasOptions& options, |
| 2565 | std::shared_ptr<ChunkedArray> arr, PyObject* py_ref, |
no test coverage detected