raulcd opened a new issue, #15275: URL: https://github.com/apache/arrow/issues/15275
### Describe the bug, including details regarding any error messages, version, and platform. The following jobs have been failing for the last 18 days (http://crossbow.voltrondata.com/): [example-python-minimal-build-fedora-conda](https://github.com/ursacomputing/crossbow/actions/runs/3869675599/jobs/6595957029) [example-python-minimal-build-ubuntu-venv](https://github.com/ursacomputing/crossbow/actions/runs/3869679112/jobs/6595963045) With the following error: ``` ______________________________ 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' ``` This seems to be related to this PR: https://github.com/apache/arrow/commit/387e95ad575fd158bb2758e97800716d3976fce2 which was merged before this started failing. ### Component(s) Python -- 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]
