We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This may be expected, but when I query with multiple time ranges, it gets no results.
System info:
Steps to reproduce:
Index some data
Query for one time range:
SELECT count(field) FROM trend WHERE (time > now() - 10m AND time < now() - 9m)
This gives me 60 samples.
Query for another time range:
SELECT count(field) FROM trend WHERE (time > now() - 5m AND time < now() - 4m)
This also gives me 60 samples
Query for both time ranges
SELECT count(field) FROM trend WHERE (time > now() - 10m AND time < now() - 9m) OR (time > now() - 5m AND time < now() - 4m)
Expected behavior:
I would expect 120 samples -- since we selected over two ranges. Or an error if selecting multiple ranges is not allowed
Actual behavior:
response is OK, but no results
The text was updated successfully, but these errors were encountered:
This is a duplicate of #3290.
Sorry, something went wrong.
No branches or pull requests
This may be expected, but when I query with multiple time ranges, it gets no results.
Bug report
System info:
Steps to reproduce:
Index some data
Query for one time range:
SELECT count(field) FROM trend WHERE (time > now() - 10m AND time < now() - 9m)
This gives me 60 samples.
Query for another time range:
SELECT count(field) FROM trend WHERE (time > now() - 5m AND time < now() - 4m)
This also gives me 60 samples
Query for both time ranges
SELECT count(field) FROM trend WHERE (time > now() - 10m AND time < now() - 9m) OR (time > now() - 5m AND time < now() - 4m)
Expected behavior:
I would expect 120 samples -- since we selected over two ranges. Or an error if selecting multiple ranges is not allowed
Actual behavior:
response is OK, but no results
The text was updated successfully, but these errors were encountered: