You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by GitBox <gi...@apache.org> on 2021/12/29 13:14:32 UTC

[GitHub] [incubator-doris] EmmyMiao87 commented on issue #7516: [Bug] forbidden create materialized view with distinct

EmmyMiao87 commented on issue #7516:
URL: https://github.com/apache/incubator-doris/issues/7516#issuecomment-1002589016


   This pr #7494 prohibits the distinct semantics that may appear in aggregate functions. 
   For example, ```select count(distinct c1) from table1```
   
   But there is another situation that is distinct in the select item. 
   For example, ```select distinct c1, c2 from table```
   And this situation can actually be supported. It is equivalent to select c1, c2 from table group by c1, c2.
   Can you help us add this part of the changes in the follow-up pr?


-- 
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-unsubscribe@doris.apache.org

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



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