Skip to content

Commit

Permalink
Update cpp/src/parquet/size_statistics_test.cc
Browse files Browse the repository at this point in the history
Co-authored-by: Antoine Pitrou <[email protected]>
  • Loading branch information
wgtmac and pitrou authored Jan 20, 2025
1 parent f16e450 commit cf08cc8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/src/parquet/size_statistics_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ class SizeStatisticsRoundTripTest : public ::testing::Test {
auto row_group_reader = reader->RowGroup(i);
for (int j = 0; j < metadata->num_columns(); ++j) {
auto column_reader = row_group_reader->RecordReader(j);
ASSERT_EQ(column_reader->ReadRecords(num_rows), num_rows);
ASSERT_EQ(column_reader->ReadRecords(num_rows + 1), num_rows);
}
}
}
Expand Down

0 comments on commit cf08cc8

Please sign in to comment.