Tom-Newton commented on code in PR #36627: URL: https://github.com/apache/arrow/pull/36627#discussion_r1412636547
########## python/pyarrow/_dataset_parquet.pyx: ########## @@ -769,6 +777,14 @@ cdef class ParquetFragmentScanOptions(FragmentScanOptions): def pre_buffer(self, bint pre_buffer): self.arrow_reader_properties().set_pre_buffer(pre_buffer) + @property + def cache_options(self): + return CacheOptions.wrap(self.arrow_reader_properties().cache_options()) + + @cache_options.setter + def cache_options(self, CacheOptions options): + self.arrow_reader_properties().set_cache_options(options.unwrap()) Review Comment: Yes, should be fixed now. I'm trying to remember if I missed that originally or if I lost it in my rebase :sweat_smile: -- 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: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org