kou opened a new issue, #36008:
URL: https://github.com/apache/arrow/issues/36008

   ### Describe the enhancement requested
   
   It's a convenient method:
   
   ```ruby
   class Parquet::ArrowFileReader
     def each_row_group
       return to_enum(__method__) {n_row_groups} unless block_given?
       
       n_row_groups.times do |i|
         yield(read_row_group(i))
       end
     end
   end
   ```
   
   ### Component(s)
   
   Parquet, Ruby


-- 
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