Skip to content

Commit 2d08b6b

Browse files
authored
Apply suggestion from @mhaseeb123
1 parent bdc2cf8 commit 2d08b6b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

cpp/src/io/parquet/experimental/deletion_vectors.cu

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,7 @@ std::unique_ptr<cudf::column> compute_partial_row_index_column(
204204
not(row_group_offsets.empty() or row_group_num_rows.empty()),
205205
"Unable to compute the row index column from the specified row group offsets and counts");
206206

207+
// Compute how many rows can be extracted from the current row group
207208
auto const row_count = std::min<size_type>(num_rows - rows_filled, row_group_num_rows.front());
208209
row_counts.emplace_back(row_count);
209210
row_offsets.emplace_back(row_group_offsets.front());

0 commit comments

Comments
 (0)