sowo commented on issue #21755: URL: https://github.com/apache/superset/issues/21755#issuecomment-1412441498
Sorry, can't screen record. So here's what you get when using a dataset derived from Elasticsearch:  And here's the underlying query that produces the issue: ``` SELECT HISTOGRAM("DATE", INTERVAL 1 DAY) AS "DATE", count(*) AS count FROM (select "DATE", "ITEM" from "table") AS virtual_table GROUP BY "DATE" ORDER BY count DESC LIMIT 10000; ``` I think that Elastic gets confused by the column name "DATE" being used in the inner and outer queries. -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
