Dandandan commented on issue #7871:
URL: 
https://github.com/apache/arrow-datafusion/issues/7871#issuecomment-1833468983

   We have a similar use-case for pushing down TopK down to a column. 
   The idea is to push down TopK to a column, so we can reduce the scan by only 
fetching/decoding rows matching the TopK rows.
   
   ```
      TopK
         Scan
   ```
   -> 
   ```
      Scan (RowFilter column in (TopK column))
   ```


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