Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions parquet/src/file/metadata/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
//! metadata into parquet files. To work with metadata directly,
//! the following APIs are available:
//!
//! * [`ParquetMetaDataReader`] for reading from a reader for I/O
//! * [`ParquetMetaDataReader`] for reading metadata from an I/O source (sync and async)
//! * [`ParquetMetaDataPushDecoder`] for decoding from bytes without I/O
//! * [`ParquetMetaDataWriter`] for writing.
//!
Expand Down Expand Up @@ -91,6 +91,7 @@
//! * Same name, different struct
//! ```
mod memory;
mod parser;
mod push_decoder;
pub(crate) mod reader;
mod writer;
Expand Down Expand Up @@ -195,10 +196,10 @@ impl ParquetMetaData {
ParquetMetaData {
file_metadata,
row_groups,
#[cfg(feature = "encryption")]
file_decryptor: None,
column_index: None,
offset_index: None,
#[cfg(feature = "encryption")]
file_decryptor: None,
}
}

Expand Down
Loading
Loading