UBarney commented on PR #19602:
URL: https://github.com/apache/datafusion/pull/19602#issuecomment-3709172542

   > It might be interesting to re-run 
https://datafusion.apache.org/blog/2025/09/10/dynamic-filters/#hash-join-dynamic-filters
 and see if the numbers are even better now!
   
   
   I re-ran the benchmark(`SELECT * 
   FROM small_table JOIN large_table ON small_table.k = large_table.k 
   WHERE small_table.v >= 50;`), but the execution time remains almost 
unchanged at around 7ms. It seems the min-max filter (`k@0 >= 50 AND k@0 <= 
1000`) is already filtering out the majority of the data, which is likely why 
we don't see a significant difference.
   @adriangb 
   


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


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to