morningman opened a new pull request #1421: Forbid adding rollup with REPLACE 
value but without all key columns.
URL: https://github.com/apache/incubator-doris/pull/1421
 
 
   When a rollup table contains value columns of REPLACE aggregation type,
   all key columns of base table should be included in this rollup.
   Without all key columns, the order of rows is undefined.
   
   For example, table schema k1,k2,k3,v1(REPLACE)
   
   1,2,3,A
   1,2,4,B
   1,2,5,C
   
   A rollup with column(k1,k2,v1):
   
   1,2,A
   1,2,B
   1,2,C
   
   No matter A or B or C be the last winner, it is meanless to user.
   
   Also fix a bug that set password for current user on non-master FE
   will throw NullPointerException.

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