raulcd opened a new issue, #49156: URL: https://github.com/apache/arrow/issues/49156
### Describe the bug, including details regarding any error messages, version, and platform. As per discussion [here](https://github.com/apache/arrow/issues/49138#issuecomment-3851000076) string comparison should require the GIL: We should modify this: ``` with nogil: options.unify_schemas = promote_options != "none" ... ``` to ``` options.unify_schemas = promote_options != "none" with nogil: ... ``` ### 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]
