marinelay commented on issue #51042: URL: https://github.com/apache/arrow/issues/51042#issuecomment-5579629370
I found another case of the same issue: ```console python -c 'from pyarrow import acero; acero.Declaration.from_sequence([None])' python -c 'from pyarrow import acero; acero.Declaration.from_sequence([0.0])' ``` Both terminate with SIGSEGV on PyArrow 25.0.0. Declaration.from_sequence() appears to cast each sequence element without validating that it is a Declaration, so an additional element type check may be needed. -- 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]
