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
SELECT
t,
groupArray([type,diff]) as cntDiff
FROM
(
WITH
lagInFrame(cnt) OVER (PARTITION BY type ORDER BY t ASC ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING) AS prev_cnt,
cnt - prev_cnt as diff
SELECT
t,
type,
diff
FROM
(
SELECT
$timeSeries as t,
type,
count() as cnt
FROM $table
WHERE $timeFilter /* AND ... */GROUP BY t, type
)
)
GROUP BY t
ORDER BY t
Slach
changed the title
runningX/neighbor - deprecated
runningDifference/neighbor - deprecated
Jun 24, 2024
Need clickhouse-server version specific implementations for macros which apply windows function for macros if possible
The text was updated successfully, but these errors were encountered: