pitrou commented on code in PR #39337:
URL: https://github.com/apache/arrow/pull/39337#discussion_r1434113488


##########
cpp/src/parquet/metadata.h:
##########
@@ -306,9 +306,15 @@ class PARQUET_EXPORT FileMetaData {
   int num_schema_elements() const;
 
   /// \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.
   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.

Review Comment:
   Similarly:
   ```suggestion
       /// If the FileMetaData was obtained by calling `SubSet()`, this is the 
number
       /// of selected row groups.
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to