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

   ## Proposed changes
   It supports predicate composite as following:
   materialized view define
   >        select l_shipdate, o_orderdate, l_partkey, l_suppkey
   >        from lineitem_1
   >        left join orders_1
   >        on lineitem_1.l_orderkey = orders_1.o_orderkey
   >        where l_shipdate > '2023-10-19'
   
   
   the query as following can be rewritten by the materialized view above
   >        select l_shipdate, o_orderdate, l_partkey, l_suppkey
   >        from lineitem_1
   >        left join orders_1
   >        on lineitem_1.l_orderkey = orders_1.o_orderkey
   >        where l_shipdate > '2023-10-25'
   
   ## Further comments
   
   If this is a relatively large or complex change, kick off the discussion at 
[[email protected]](mailto:[email protected]) by explaining why you 
chose the solution you did and what alternatives you considered, etc...
   
   


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