unj1m opened a new issue, #41016: URL: https://github.com/apache/arrow/issues/41016
### Describe the bug, including details regarding any error messages, version, and platform. ``` $ python Python 3.10.12 (main, Apr 4 2024, 12:45:28) [GCC 11.4.0] on linux Type "help", "copyright", "credits" or "license" for more information. >>> import pyarrow.compute >>> a1 = pyarrow.array([True]*48 + [False]*48) >>> a2 = pyarrow.array([True, False] * 48) >>> pyarrow.compute.and_(a1, a2).true_count Segmentation fault (core dumped) ``` There segfault started in pyarrow==9.0.0. It doesn't happen in 7 or 8. ### 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]
