mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-06 22:42:22 +00:00
7 lines
162 B
SQL
7 lines
162 B
SQL
SET allow_deprecated_error_prone_window_functions = 1;
|
|
|
|
SELECT runningAccumulate(string_state)
|
|
FROM (
|
|
SELECT argMaxState(repeat('a', 48), 1) AS string_state
|
|
)
|