You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pinot.apache.org by GitBox <gi...@apache.org> on 2020/08/12 02:38:55 UTC

[GitHub] [incubator-pinot] fx19880617 commented on issue #5820: Query execution error when grouping by multi-value dimension and non-dictionary encoded dimension

fx19880617 commented on issue #5820:
URL: https://github.com/apache/incubator-pinot/issues/5820#issuecomment-672493742


   Currently we are not supporting No-Dictionary multi-value column in groupby right now.
   
   The relative code path is in `org.apache.pinot.core.query.aggregation.groupby.NoDictionaryMultiColumnGroupKeyGenerator`:
   ```
   @Override
     public void generateKeysForBlock(TransformBlock transformBlock, int[][] groupKeys) {
       // TODO: Support generating keys for multi-valued columns.
       throw new UnsupportedOperationException("Operation not supported");
     }
   ```
   
   I'm looking into the support for this.
   
   cc: @kishoreg @Jackie-Jiang 
   


----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pinot.apache.org
For additional commands, e-mail: commits-help@pinot.apache.org