som2014 opened a new issue #10107:
URL: https://github.com/apache/incubator-superset/issues/10107
I have created a Line Chart using my Data Source Query looks like this :
```
SELECT date_trunc('minute', CAST("event_time" AS TIMESTAMP)) AS
"__timestamp",
COUNT(*) AS "count"
FROM "table"
WHERE "event_time" >= from_iso8601_timestamp('2020-06-12T00:00:00.000000')
AND "event_time" < from_iso8601_timestamp('2020-06-19T00:00:00.000000')
GROUP BY date_trunc('minute', CAST("event_time" AS TIMESTAMP))
ORDER BY "count" DESC
LIMIT 1000;
```
Here Order BY is appended in my query by default ideally it should be order
by `__timestamp`.
How to get rid of this ?
----------------------------------------------------------------
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]