Skip to content

Commit 33aed33

Browse files
authored
Make with_file_decryption_properties pub instead of pub(crate) (#9532)
# Which issue does this PR close? - Closes #NNN. # Rationale for this change I would like to use `ParquetMetaDataPushDecoder` in arrow-datafusion, but the `with_file_decryption_properties` function is pub(crate), so I can't fully implement the encryption feature., # What changes are included in this PR? Make it pub # Are these changes tested? Not needed # Are there any user-facing changes? Now pub
1 parent d2e2cda commit 33aed33

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

parquet/src/file/metadata/push_decoder.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ impl ParquetMetaDataPushDecoder {
308308

309309
#[cfg(feature = "encryption")]
310310
/// Provide decryption properties for decoding encrypted Parquet files
311-
pub(crate) fn with_file_decryption_properties(
311+
pub fn with_file_decryption_properties(
312312
mut self,
313313
file_decryption_properties: Option<std::sync::Arc<FileDecryptionProperties>>,
314314
) -> Self {

0 commit comments

Comments
 (0)