-
Notifications
You must be signed in to change notification settings - Fork 3.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FIRST/ LAST return "interface is nil, not engine.FirstOrLastAggregatorState" #876
Comments
After looking at the go source I think this use case should already have a test in I've added a test case to the data_test with my specific query and it works without any problems. Guess it must be a initialization problem someplace else. |
see also #780 where i found various issues with different aggregation methods |
Just a heads up: the error still persists in v0.8.1 and current master branch. |
@jvshahid any update on this? the error persists since v0.8.0 through v0.8.2 as well as on master. |
this error persist as of today for select FIRST(PRICE), MIN(PRICE), MAX(PRICE), LAST(PRICE) from "SPX-INDEX-TRADED" group BY time(1h) fill(0) where time > '2015-07-01 00:00:00' AND time < '2015-07-08 23:59:59' |
@pablo-tech that server is running version 0.8.2, for which there is no longer ongoing support. As I recommended, try putting the |
I've a query which looks like this:
In influxdb 0.7.3 this worked just fine, 0.8.0 returns
I'm not quite sure why this stopped working - according to the 0.8 docs the functions should work the same still.
Removing
FIRST
makes the query execute again, but it returns different results.The text was updated successfully, but these errors were encountered: