EmmyMiao87 edited a comment on issue #6066: URL: https://github.com/apache/incubator-doris/issues/6066#issuecomment-866755995
> 1. 无分区:Group by字段包含分桶列 > 3. 有分区但数据只命中一个分区的时候和无分区的条件一致 是这样的,之前1,3 这两种情况确实没覆盖到。后面我加了一个 PR #6029。这个PR 已经覆盖了 1,3 两种情况。你可以用 Master 代码验证一下。 > 2. 有分区:Group by字段包含分桶列;Group by字段包含分区列(扩宽了条件,显然满足这个的时候,同一组不会在不同分区) 2. 的问题在于,其实这种并不能够进行 colocate agg。原因是: 当查询命中多分区时,尽管查询的分组列可能包含分桶列。但是不同分区的不同分桶可能是在不同be的。这就意味着,下层的agg 节点并没有完全合并数据。 -- 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: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
