liutang123 opened a new pull request, #38916:
URL: https://github.com/apache/doris/pull/38916

   Now, Agg's child predicates will  not spread to agg. For example:
   select a, sum(b)
   from (
    select a,b from t where a = 1 and b = 2
   ) t
   group by a
   `a = 1` in scan can be propagated to `a` of agg.
   But `b = 2` in scan can not be propagated to `sum(b)` of agg.
   
   ## Proposed changes
   
   Issue Number: #38905
   
   <!--Describe your changes.-->
   
   


-- 
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: commits-unsubscr...@doris.apache.org

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


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to