You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 12, 2019. It is now read-only.
if i select data for the last half year the datasource generate this query:
"SELECT floor(timestamp/86400000)*86400000 as time, count(*) FROM \"dashboard\".\"udc\" WHERE timestamp >= ? AND timestamp <= ? GROUP BY time ORDER BY time ASC LIMIT 5180400000"
it should use:
"SELECT date_trunc('day') as time, count(*) FROM \"dashboard\".\"udc\" WHERE timestamp >= ? AND timestamp <= ? GROUP BY time ORDER BY time ASC LIMIT 182"
(or more than 182 - but half a year has only 182 days).
The text was updated successfully, but these errors were encountered:
if i select data for the last half year the datasource generate this query:
it should use:
(or more than 182 - but half a year has only 182 days).
The text was updated successfully, but these errors were encountered: