Skip to content
Draft
Show file tree
Hide file tree
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
clieanup
  • Loading branch information
alamb committed Nov 21, 2025
commit 01d01fb57f9fe60b3e70e0aa632717b4ab74ffb0
2 changes: 1 addition & 1 deletion datafusion/datasource-parquet/src/opener.rs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ pub(super) struct ParquetOpener {
/// Maximum size of the predicate cache, in bytes. If none, uses
/// the arrow-rs default.
pub max_predicate_cache_size: Option<usize>,
/// Number of row groups to prefetch while scanning parquet files
/// Number of row groups to prefetch
pub prefetch_row_groups: usize,
}

Expand Down
2 changes: 1 addition & 1 deletion datafusion/datasource-parquet/src/source.rs
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ impl ParquetSource {
self.table_parquet_options.global.max_predicate_cache_size
}

/// Number of row groups to prefetch while scanning parquet files
/// Number of row groups to prefetch
pub fn prefetch_row_groups(&self) -> usize {
self.table_parquet_options.global.prefetch_row_groups
}
Expand Down
Loading