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
Update datafusion-examples/examples/advanced_parquet_index.rs
Co-authored-by: Alex Huang <[email protected]>
  • Loading branch information
alamb and Weijun-H authored Jun 14, 2024
commit 9030e7b19ad3051b4b813023d48104668d345443
2 changes: 1 addition & 1 deletion datafusion-examples/examples/advanced_parquet_index.rs
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ impl IndexTableProvider {

// If we want to use row selections, which the parquet reader can
// use to skip data pages when the parquet file has a "page index"
// and the reader is configured to read it, add a row seelction
// and the reader is configured to read it, add a row selection
if self.use_row_selections() {
let offset_in_row_group = val - row_group_index * num_rows_in_row_group;
let selection = RowSelection::from(vec![
Expand Down