jorisvandenbossche commented on PR #36745:
URL: https://github.com/apache/arrow/pull/36745#issuecomment-1645113072

   Not directly an idea. We use the same pattern in many other places. Can you 
try this patch:
   
   ```diff
   --- a/python/pyarrow/_dataset_parquet.pyx
   +++ b/python/pyarrow/_dataset_parquet.pyx
   @@ -741,7 +741,7 @@ cdef class 
ParquetFragmentScanOptions(FragmentScanOptions):
                thrift_string_size_limit=self.thrift_string_size_limit,
                thrift_container_size_limit=self.thrift_container_size_limit,
            )
   -        return type(self)._reconstruct, (kwargs,)
   +        return ParquetFragmentScanOptions._reconstruct, (kwargs,)
   ```
   
   (in theory it shouldn't matter for python, but maybe cython 3 has a bug that 
treats this different)
   


-- 
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]

Reply via email to