ClickHouse/tests/queries/1_stateful/00144_functions_of_aggregation_states.sql
Nikita Taranov 5e3db5b503 fix tests 5
2024-05-01 12:24:05 +01:00

4 lines
214 B
SQL

SET allow_deprecated_functions = 1;
SELECT EventDate, finalizeAggregation(state), runningAccumulate(state) FROM (SELECT EventDate, uniqState(UserID) AS state FROM test.hits GROUP BY EventDate ORDER BY EventDate);