Xuanwo opened a new pull request, #6907: URL: https://github.com/apache/arrow-rs/pull/6907
# Which issue does this PR close? Related to https://github.com/apache/arrow-rs/issues/5522 And maybe can replace https://github.com/apache/arrow-rs/pull/6676 # Rationale for this change Add `async fn next_row_group()` for ParquetRecordBatchStream so that users can fecth row groups based on their needs and decode the data seperately. # What changes are included in this PR? Add new API: ```rust pub async fn next_row_group(&mut self) -> Result<Option<ParquetRecordBatchReader>> { ... } ``` # Are there any user-facing changes? Yes. <!-- If there are user-facing changes then we may require documentation to be updated before approving the PR. --> <!--- If there are any breaking changes to public APIs, please call them out. --> -- 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]
