We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bdc2cf8 commit 2d08b6bCopy full SHA for 2d08b6b
cpp/src/io/parquet/experimental/deletion_vectors.cu
@@ -204,6 +204,7 @@ std::unique_ptr<cudf::column> compute_partial_row_index_column(
204
not(row_group_offsets.empty() or row_group_num_rows.empty()),
205
"Unable to compute the row index column from the specified row group offsets and counts");
206
207
+ // Compute how many rows can be extracted from the current row group
208
auto const row_count = std::min<size_type>(num_rows - rows_filled, row_group_num_rows.front());
209
row_counts.emplace_back(row_count);
210
row_offsets.emplace_back(row_group_offsets.front());
0 commit comments