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

   MergePercentileToArray is to perform a transformation in this case:
   select ss_item_sk, percentile(ss_quantity,0.9), percentile(ss_quantity,0.6), 
percentile(ss_quantity,0.3) from store_sales group by ss_item_sk;
   =》
   select ss_item_sk, percentile_array(ss_quantity,[0.3,0.6,0.9]) from 
store_sales group by ss_item_sk; 


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