elonazoulay opened a new issue #5069: Aggregation on array types explodes the 
array
URL: https://github.com/apache/incubator-pinot/issues/5069
 
 
   The following query will explode the array values, is that the intended 
behavior?
   
   Table:
   foo|array_col
   ---|---------
   3 | [1,2]
   ```
   select count(foo) from table group by array_col;
   ```
   
   Result:
   array_col|count_foo
   ---------|----------
   [1] | 3
   [2] | 3
   
   related to #582

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