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
It looks like there's an off by one in the month visualization. If i do this kind of query:
select foo, COUNT(distinct bar) from baz and EXTRACT(month FROM "date") =2 and EXTRACT(year FROM "date") = 2015 group by foobar;
I see the count numbers to match the "2015-01" column while i expect it to be "2015-02" instead. If i export the csv i see data correctly with a "2015-02-01" timestamp.
Reproduced both in 0.9.1 and 0.10.0.
The text was updated successfully, but these errors were encountered:
If the timezone for the command line client and caravel installation are different it could change the counts (this is a common issue). To ensure that isn't the problem, try adding "at time zone" to the query :
select foo, COUNT(distinct bar) from baz and EXTRACT(month FROM "date") at time zone 'America/New_York' and EXTRACT(year FROM "date") at time zone 'America/New_York' = 2015 group by foobar;
It looks like there's an off by one in the month visualization. If i do this kind of query:
I see the count numbers to match the "2015-01" column while i expect it to be "2015-02" instead. If i export the csv i see data correctly with a "2015-02-01" timestamp.
Reproduced both in 0.9.1 and 0.10.0.
The text was updated successfully, but these errors were encountered: