You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pinot.apache.org by "Jackie-Jiang (via GitHub)" <gi...@apache.org> on 2023/11/01 17:19:06 UTC

[I] Support group-by without aggregation [pinot]

Jackie-Jiang opened a new issue, #11923:
URL: https://github.com/apache/pinot/issues/11923

   Currently queries such as `SELECT a, b FROM table GROUP BY a, b` is rewritten to `SELECT DISTINCT a, b FROM table` and we solve it as distinct query.
   But queries such as `SELECT a + b FROM table GROUP BY a, b` should not be solved as distinct because query semantic is different. We stopped rewriting such queries in #9605, and they are no longer supported.
   We should support this query natively without query rewrite


-- 
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-unsubscribe@pinot.apache.org.apache.org

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