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
System info: [Include InfluxDB version, operating system name, and other relevant details]
InfluxDB 0.13+
Steps to reproduce: Actual behavior: [What actually happened]
If a CQ is set up with an offset in the GROUP BY clause, the CQ will execute the query with the proper offset, but the query will be scheduled without respect to the offset. For example, a CQ with the clause GROUP BY time(1d, 3h) will run at 00:00 UTC but the WHERE time clause will start at 03:00 UTC and end at 02:59 UTC the following day.
Expected behavior: [What you expected to happen]
As a user, I would expect the CQ to execute at 03:00 if I have an offset in the GROUP BY.
The text was updated successfully, but these errors were encountered:
Is the offset positive or negative? So if it runs at 00:00 on 01/01/2000, will it start at 03:00 on 01/01/2000 or 12/31/1999? It seems like it shouldn't be going into the future...
Bug report
System info: [Include InfluxDB version, operating system name, and other relevant details]
InfluxDB 0.13+
Steps to reproduce:
Actual behavior: [What actually happened]
If a CQ is set up with an offset in the
GROUP BY
clause, the CQ will execute the query with the proper offset, but the query will be scheduled without respect to the offset. For example, a CQ with the clauseGROUP BY time(1d, 3h)
will run at00:00 UTC
but theWHERE time
clause will start at03:00 UTC
and end at02:59 UTC
the following day.Expected behavior: [What you expected to happen]
As a user, I would expect the CQ to execute at
03:00
if I have an offset in theGROUP BY
.The text was updated successfully, but these errors were encountered: