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 2018/06/20 20:36:00 UTC

[GitHub] mmuru opened a new issue #5255: SQLlab - Visualize the query results

mmuru opened a new issue #5255: SQLlab - Visualize the query results 
URL: https://github.com/apache/incubator-superset/issues/5255
 
 
   Make sure these boxes are checked before submitting your issue - thank you!
   
   - [ ] I have checked the superset logs for python stacktraces and included it here as text if any
   - [ ] I have reproduced the issue with at least the latest released version of superset
   - [ ] I have checked the issue tracker for the same issue and I haven't found one similar
   
   
   ### Superset version
   0.24.0
   
   ### Expected results
   Able to see the report
   
   ### Actual results
   Incorrect report
   
   ### Steps to reproduce
   Execute query in SQL lab and Click on Visualize.
   
   ===== 
   SELECT year AS year,
                  count(*) AS count
   FROM
     (SELECT date_part('year',created_date) as year,
             count(*) as total_apps
      from application
      GROUP by 1
      order by 1) AS expr_qry
   GROUP BY year
   ORDER BY count DESC
   LIMIT 10000;
   =====
   
   How do I get rid of outer grouping?  Otherwise, how do I visualize the query results?
   
   

----------------------------------------------------------------
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: notifications-unsubscribe@superset.apache.org
For additional commands, e-mail: notifications-help@superset.apache.org