You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@superset.apache.org by GitBox <gi...@apache.org> on 2021/07/28 14:25:36 UTC

[GitHub] [superset] rahull95 opened a new issue #15926: Not able to aggregate group by column

rahull95 opened a new issue #15926:
URL: https://github.com/apache/superset/issues/15926


   I recently migrated to Superset 1.1.0 from an older version. I have a column that I like to get distinct values of:
   
   ![image](https://user-images.githubusercontent.com/63130522/127338884-30d94dc3-7b92-41cd-8fc9-655287b6a680.png)
   
   What I'd like to see as the query is this (this was what happened in the previous version):
   
   ```
   SELECT lj_link
   FROM table1
   GROUP BY lj_link
   LIMIT 5000;
   ```
   
   Instead what I see is:
   
   ```
   SELECT lj_link
   FROM table1
   LIMIT 5000;
   
   ```
   I know we could create a work around by creating an aggregate field but I don't understand why aggregate would return just the raw records instead
   
   Superset version: `1.1.0`


-- 
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: notifications-unsubscribe@superset.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@superset.apache.org
For additional commands, e-mail: notifications-help@superset.apache.org