Replies: 1 comment
-
Hello, we fixed the issue by storing and retrieving data from spaces. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
We are trying to get data between specific start and end timestamp which is grouped over 1 minute.
The start and end timestamp range is given as 26th Aug 00:01 to 26th Aug 23:59
E.g below is the sample query and expected output
select last{} (value) from test over TIME (1m) where timestamp BETWEEN '2022-08-26 00:01:00'd AND '2022-08-26 23:59:00'd AND SYMBOL=='ABC'
Expected Output:
`
`
However, I am getting 1 extra record in the output for 28th August. The date falls outside of the timerange which I have given in the BETWEEN clause.
Actual Output:
`
`
Can you please help us out on the issue.
Beta Was this translation helpful? Give feedback.
All reactions