You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@pinot.apache.org by GitBox <gi...@apache.org> on 2018/11/13 17:57:03 UTC

[GitHub] mayankshriv opened a new issue #3471: Request to support aliases in PQL.

mayankshriv opened a new issue #3471: Request to support aliases in PQL.
URL: https://github.com/apache/incubator-pinot/issues/3471
 
 
   Currently PQL does not support aliasing for selection/aggregation column names. For example in the query below:
   ```sql
   select sum(metric) from table where ... group by ...
   ```
   The returned aggregated column is named as `sum_metric`.
   It would be great if PQL can support aliasing, so that the above query can be written as follows, so that the aggregation column can now be referred as `aggregate` or any other user specified choice.
   
   ```sql
   select sum(metric) as aggregate from table where... group by ...
   ```

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on 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


With regards,
Apache Git Services

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