leesonwei opened a new issue #8753: data can't diaplay by nested group
URL: https://github.com/apache/incubator-superset/issues/8753
 
 
   when I query like
   `select ACCOUNT_COUNTRY,
             count(DISTINCT ACCOUNT_ID) num
      from KYLIN_ACCOUNT
      group by ACCOUNT_COUNTRY`,use pie chart to display, superset worked.
   when i query like
   `SELECT "ACCOUNT_COUNTRY" AS "ACCOUNT_COUNTRY",
          sum(num) AS "count"
   FROM
     (select ACCOUNT_COUNTRY,
             count(DISTINCT ACCOUNT_ID) num
      from KYLIN_ACCOUNT
      group by ACCOUNT_COUNTRY) AS expr_qry
   GROUP BY "ACCOUNT_COUNTRY"`
   the data results was same but pie chart did'nt anything.

----------------------------------------------------------------
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:
[email protected]


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to