danepitkin commented on code in PR #40482:
URL: https://github.com/apache/arrow/pull/40482#discussion_r1521544224
##########
python/pyarrow/src/arrow/python/arrow_to_pandas.cc:
##########
@@ -826,6 +796,145 @@ Status ConvertListsLike(PandasOptions options, const
ChunkedArray& data,
return Status::OK();
}
+template <typename T>
+enable_if_list_view<T, Status> ConvertListsLikeChunks(PyObject* numpy_array,
+ const ChunkedArray& data,
+ PyObject** out_values) {
+ using ListArrayT = typename TypeTraits<T>::ArrayType;
+ const auto& arr = static_cast<const ListArrayT&>(*data.chunk(0));
Review Comment:
I need to loop through all chunks
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]