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

   ## Proposed changes
   if table is unique model, and create sync materialized view on it
   such as mv def is as following:
   ```sql
           select l_orderkey, l_linenumber, l_partkey, l_suppkey, l_shipdate,
           substring(concat(l_returnflag, l_linestatus), 1)
           from lineitem_2_uniq;
   ```
   if query is as following:
   ```sql
           select l_linenumber, l_suppkey,
           substring(concat(l_returnflag, l_linestatus), 1)
           from lineitem_2_uniq;
   ```
   the result is wrong, the pr fix this
   
   


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