ClickHouse/dbms/tests/queries/1_stateful/00153_aggregate_arena_race.sql
akuzm 95fdc8a96b
Add a test case for #4402. (#6129)
Turns out it's easy to reproduce using the `hits` table, so we can add a case to
stateful tests.
2019-07-24 15:04:18 +03:00

3 lines
195 B
SQL

create temporary table dest00153 (`s` AggregateFunction(groupUniqArray, String)) engine Memory;
insert into dest00153 select groupUniqArrayState(RefererDomain) from test.hits group by URLDomain;