amol- commented on code in PR #14369:
URL: https://github.com/apache/arrow/pull/14369#discussion_r1037044113


##########
python/pyarrow/table.pxi:
##########
@@ -433,6 +433,22 @@ cdef class ChunkedArray(_PandasConvertible):
 
         return result
 
+    def sort(self, order="ascending"):
+        """
+        Sort the ChunkedArray

Review Comment:
   The `ChunkedArray` doesn't provide support for accessing fields directly 
(IE: no `ChunkedArray.field(X)` method) so we would probably have to implement 
that too if we want to add support for sorting an individual field. Which seems 
to expand the scope of this change. I propose we make a separate ticket for 
improving support for Struct data in ChunkedArray 



-- 
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]

Reply via email to