You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by GitBox <gi...@apache.org> on 2021/04/27 05:15:34 UTC

[GitHub] [arrow-datafusion] Dandandan edited a comment on issue #78: Address performance/execution plan of TPCH query 19

Dandandan edited a comment on issue #78:
URL: https://github.com/apache/arrow-datafusion/issues/78#issuecomment-827318099


   @alamb I am wondering if you think it would be the solution to introduce this boolean optimization (Distributivity of and over or):
    (p and q1) OR (p and q2) should be replaced by p AND (q1  or q2)
   p in this example could be our join predicate.
   
   After this optimization, the physical planner should be able to see the predicate in the filter.


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

For queries about this service, please contact Infrastructure at:
users@infra.apache.org