Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Fix docs
  • Loading branch information
alamb committed Aug 15, 2025
commit 3c292b286e6b9ce3a0c3be328aafdd3d57fd7768
4 changes: 2 additions & 2 deletions parquet/src/file/metadata/push_decoder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ use crate::DecodeResult;
/// requires at least two IO operations to read the metadata - one to read the
/// footer and then one to read the metadata.
///
/// If the file has a "Page Index" (see [Self::with_page_indexes]), three
/// If the file has a "Page Index" (see [Self::with_page_index_policy]), three
/// IO operations are required to read the metadata, as the page index is
/// not part of the normal metadata footer.
///
Expand Down Expand Up @@ -201,7 +201,7 @@ impl ParquetMetaDataPushDecoder {
/// Create a new `ParquetMetaDataPushDecoder` with the given file length.
///
/// By default, this will read page indexes and column indexes. See
/// [`ParquetMetaDataPushDecoder::with_page_indexes`] for more detail.
/// [`ParquetMetaDataPushDecoder::with_page_index_policy`] for more detail.
///
/// See examples on [`ParquetMetaDataPushDecoder`].
pub fn try_new(file_len: u64) -> Result<Self, ParquetError> {
Expand Down
Loading