alamb commented on issue #9929:
URL: 
https://github.com/apache/arrow-datafusion/issues/9929#issuecomment-2035598530

   Maybe we could have a version of the API like this (which translates into 
RowSelection) 🤔 
   
   ```rust
   let parquet_selection = ParquetSelection::new()
     // * rows 100-250 from row group 1
     .select_range(1, 100..250);
     // * rows 50-100 and 200-300 in row group 2
     .select_range(2, 50..100)
     .select_range(2, 200..300)
   ```
   


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