mapleFU commented on issue #37650: URL: https://github.com/apache/arrow/issues/37650#issuecomment-1713862814
So seems that it's arrow-12.0? In 13.0 the code below will also core dump. Don't know if thats a bug or expected. ``` >>> tbl.filter(tbl) ``` Firstly, seems that the filter should be used as below: ``` >>> filter = pa.array([True, False, True, False]) >>> tbl.filter(filter) ``` -- 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]
