EmmyMiao87 opened a new pull request #3018: Fix the pre aggregation is 
difference between old and new selector
URL: https://github.com/apache/incubator-doris/pull/3018
 
 
   The issue is #3016.
   If there is no aggregated column in aggregate index, the index will be 
deduplicate table.
   For example:
       aggregate table (k1, k2, v1 sum)
       mv index (k1, k2)
   This kind of index is SPJG which same as select k1, k2 from aggregate_table 
group by k1, k2.
   It also need to check the grouping column using following steps.
   
   If there is no aggregated column in duplicate index, the index will be SPJ 
which passes the grouping verification directly.
   
   Also after the supplement of index, the new candidate index should be 
checked the output columns also.

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


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to