kou commented on PR #14976:
URL: https://github.com/apache/arrow/pull/14976#issuecomment-1364581238

   @amol- It seems that this breaks `example-python-minimal-build-*` nightly CI 
jobs:
   
   
https://github.com/ursacomputing/crossbow/actions/runs/3772771994/jobs/6413886549#step:3:7216
   
   ```text
   =================================== FAILURES 
===================================
   ______________________________ test_table_sort_by 
______________________________
   
       def test_table_sort_by():
           table = pa.table([
               pa.array([3, 1, 4, 2, 5]),
               pa.array(["b", "a", "b", "a", "c"]),
           ], names=["values", "keys"])
       
   >       assert table.sort_by("values").to_pydict() == {
               "keys": ["a", "a", "b", "b", "c"],
               "values": [1, 2, 3, 4, 5]
           }
   
   pyarrow/tests/test_table.py:2198: 
   _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
_ _ 
   
   >   res = _pc()._exec_plan._sort_source(self, output_type=Table,
   E   AttributeError: module 'pyarrow.compute' has no attribute '_exec_plan'
   
   pyarrow/table.pxi:4761: AttributeError
   ```
   
   Could you fix this?


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