Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Antoine Pitrou <pitrou@free.fr>
  • Loading branch information
mapleFU and pitrou authored Dec 21, 2023
1 parent ac0c569 commit b15990d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cpp/src/parquet/metadata.h
Original file line number Diff line number Diff line change
Expand Up @@ -307,14 +307,14 @@ class PARQUET_EXPORT FileMetaData {

/// \brief The total number of rows.
///
/// If the FileMetaData is generate from a `SubSet()`, the number of rows
/// will be the sum of the number of rows of remaining RowGroup.
/// If the FileMetaData was obtained by calling `SubSet()`, this is the total
/// number of rows in the selected row groups.
int64_t num_rows() const;

/// \brief The number of row groups in the file.
///
/// If the FileMetaData is generate from a `SubSet()`, the number of
/// row groups will be the number of remaining RowGroup.
/// If the FileMetaData was obtained by calling `SubSet()`, this is the number
/// of selected row groups.
int num_row_groups() const;

/// \brief Return the RowGroupMetaData of the corresponding row group ordinal.
Expand Down

0 comments on commit b15990d

Please sign in to comment.