Skip to content

Commit

Permalink
c
Browse files Browse the repository at this point in the history
  • Loading branch information
nameexhaustion committed Oct 17, 2023
1 parent 32b0a56 commit 5050b09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/polars-io/src/parquet/read_impl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ fn rg_to_dfs_par_over_rg(
let num_rows = rg_md.num_rows();
*previous_row_count += num_rows as IdxSize;
let projection_height = (*remaining_rows).min(num_rows);
*remaining_rows = *remaining_rows - projection_height;
*remaining_rows -= projection_height;

(rg_idx, rg_md, projection_height, row_count_start)
})
Expand Down

0 comments on commit 5050b09

Please sign in to comment.