-
Notifications
You must be signed in to change notification settings - Fork 83
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
Question regarding lag #806
Comments
Hi @KVeschgini , I am a bit surprised to see this. I don't have your data set, but on one of our demo server, I can get the correct diff select cid, speed_kmh,lag(speed_kmh),speed_kmh-lag(speed_kmh) from car_live_data where cid like 'c0000%' partition by cid the url-addressable link (you only need to use Google/Micosoft ID to SSO): https://demo.timeplus.cloud/default/console/query?sql=select+cid,+speed_kmh,lag(speed_kmh),speed_kmh-lag(speed_kmh)+from+car_live_data+where+cid+like+'c0000%25'+partition+by+cid Timeplus leverages the similar query engine as ClickHouse, which provides some shortcut to compute such a-b, when b is defined in the same query. In many other database, you have to create a CTE/subquery. So you may try this "safe" approach SELECT
signal_name, value_float64, theLag, value_float64 - theLag
FROM
(
SELECT
signal_name, value_float64, lag(value_float64) as theLag
FROM
telemetry
PARTITION BY
signal_name
)
WHERE
signal_name = 'Speed'
LIMIT 5 Also, maybe you can create such question in the |
@KVeschgini May i ask which version of proton you are using ? Thanks. |
@KVeschgini Before we solve it, you may try "safe" approach mentioned by @jovezhong . SELECT
signal_name, value_float64, theLag, value_float64 - theLag
FROM
(
SELECT
signal_name, value_float64, lag(value_float64) as theLag
FROM
telemetry
PARTITION BY
signal_name
)
WHERE
signal_name = 'Speed'
LIMIT 5 |
I posted the question here because I suspected it to be a bug. I am using proton version 1.5.14. Thanks @yl-lisen for confirming the problem. |
Can someone please help me understand the result of the following query:
lag(value_float64) is as expected the same as the value_float64 from the last row but the difference value_float64 - lag(value_float64) seems to be arbitrary. What am I doing wrong here?
The text was updated successfully, but these errors were encountered: