Skip to content

Commit

Permalink
Add a minor comment
Browse files Browse the repository at this point in the history
  • Loading branch information
mhaseeb123 committed Nov 14, 2024
1 parent 9d0be1e commit f5b16ed
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cpp/src/io/parquet/reader_impl_preprocess.cu
Original file line number Diff line number Diff line change
Expand Up @@ -730,7 +730,8 @@ struct set_final_row_count {
size_t const page_start_row = chunk.start_row + page.chunk_row;
size_t const chunk_last_row = chunk.start_row + chunk.num_rows;
page.num_rows = chunk_last_row - page_start_row;
page.is_num_rows_adjusted = true;
// Mark `is_num_rows_adjusted` to signal string decoders to treat this page as a bounds page.
page.is_num_rows_adjusted = true;
}
};

Expand Down

0 comments on commit f5b16ed

Please sign in to comment.