iercan opened a new issue #13693: URL: https://github.com/apache/superset/issues/13693
I'm trying to create line chart (same thing happen for all charts). Looks like superset can not create query properly and puts NULL for all values. Here is how I configure chart  Here is how superset generate query ``` SELECT "duration" AS "duration", COUNT(*) AS "count" FROM "druid"."mydatasource" WHERE "__time" >= '2021-03-11 14:24:38.000000' AND "__time" < '2021-03-18 14:24:38.000000' GROUP BY "duration" ORDER BY "count" DESC LIMIT 5; SELECT "duration" AS "duration", TIME_FLOOR("__time", 'PT5M') AS "__timestamp", COUNT(*) AS "count" FROM "druid"."mydatasource" WHERE "__time" >= '2021-03-11 14:24:38.000000' AND "__time" < '2021-03-18 14:24:38.000000' AND ("duration" = NULL OR "duration" = NULL OR "duration" = NULL OR "duration" = NULL OR "duration" = NULL) GROUP BY "duration", TIME_FLOOR("__time", 'PT5M') LIMIT 10000; ``` And this is actual result of first select query on druid  ### Expected results Chart should be generated for selected series ### Actual results No data return ### Environment - superset version: 1.0.1 - python version: 3.7 - druid: 0.20.1 ### Checklist Make sure to follow these steps before submitting your issue - thank you! - [x] I have checked the superset logs for python stacktraces and included it here as text if there are any. - [x] I have reproduced the issue with at least the latest released version of superset. - [x] I have checked the issue tracker for the same issue and I haven't found one similar. ---------------------------------------------------------------- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
