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
Run a query where the subquery's GROUP BY clause includes a time interval and tag
> SELECT * FROM (SELECT MEAN("leaves_consumed") FROM "giraffes" WHERE time >= '2017-01-24T22:54:00Z' AND time <= '2017-01-24T22:54:15Z' GROUP BY time(10m),"name")
ERR:
Expected behavior:
I'd expect to get either this:
name: giraffes
tags: name=chrono
time mean
---- ----
2017-01-24T22:50:00Z 13.25
name: giraffes
tags: name=graf
time mean
---- ----
2017-01-24T22:50:00Z 4.75
Or this:
name: giraffes
time mean name
---- ---- ----
2017-01-24T22:50:00Z 13.25 chrono
2017-01-24T22:50:00Z 4.75 graf
Steps to reproduce:
GROUP BY
clause includes a time interval and tagExpected behavior:
I'd expect to get either this:
Or this:
Actual behavior:
I get
ERR:
.Pulled from #7875.
The text was updated successfully, but these errors were encountered: