rok commented on code in PR #6637: URL: https://github.com/apache/arrow-rs/pull/6637#discussion_r1956409387
########## parquet/src/arrow/arrow_reader/mod.rs: ########## @@ -532,6 +554,13 @@ impl<T: ChunkReader + 'static> ParquetRecordBatchReaderBuilder<T> { Ok(Self::new_with_metadata(reader, metadata)) } + /// Create a new [`ParquetRecordBatchReaderBuilder`] with [`ArrowReaderOptions`] and [`FileDecryptionProperties`] + #[cfg(feature = "encryption")] + pub fn try_new_with_decryption(reader: T, options: ArrowReaderOptions) -> Result<Self> { Review Comment: These were from before when `FileDecryptionProperties` were part of the `ArrowReaderOptions`. Now they are not really needed. Removing. -- 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