% This is generated by ESQL's AbstractFunctionTestCase. Do not edit it. See ../README.md for how to regenerate it. ```esql ROW price = 10, color = ["blue", "pink", "yellow"] | STATS SUM(price) BY color ``` | SUM(price):long | color:keyword | | --- | --- | | 10 | blue | | 10 | pink | | 10 | yellow |