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
When grouping by a date field and using time_zone: false the groups will show inconsistent results for any time zone that is not in UTC. We have observed this on a change to a new month when using group_by_month.
When grouping by a
date
field and usingtime_zone: false
the groups will show inconsistent results for any time zone that is not in UTC. We have observed this on a change to a new month when usinggroup_by_month
.Easiest to understand with an example.
Even though it is the 1st September in Melbourne because the equivalent UTC time is still the 31st August the grouping is incorrect by one month.
If the time zone was the other direction, eg US Pacific, then September would show up in the results while the actual date is still the 31st August.
Removing the
time_zone: false
option will display the correct grouping but it changes the where condition so that the sum may no longer be accurate.Eg:
The text was updated successfully, but these errors were encountered: