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

   What about consolidating Limit and Offset into `LimitWithOffset` (both 
logical and physical plans), with optional limit or offset:
   
   ```rust
     limit: Option<usize>,
     offset: Option<usize>
   ```
   
   Then when a limit / offset is pushed down, it can be transformed from 
`Limit(limit, offset)` to `Limit(limit+offset, 0)` ?


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