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
create STREAM tab (a int32, b int32, c int32, d int32) engine = MergeTree order by (a, b, c);
insert into tab select0, number % 3, 2- int_div(number, 3), (number % 3+1) *10from numbers(6);
insert into tab select0, number % 3, 2- int_div(number, 3), (number % 3+1) *100from numbers(6);
select*from (explain actions =1, sorting=1select a, any(b), c, d from tab where b =1group by a, c, d settings optimize_aggregation_in_order=1, query_plan_aggregation_in_order=1) where explain like'%Sorting (Stream)%'or explain like'%ReadFromMergeTree%'or explain like'%Aggregating%'or explain like'%Order:%';
Expected Result:
the above can run without problem.
How to reproduce
Error message and/or stacktrace
Additional context
The text was updated successfully, but these errors were encountered:
Describe what's wrong
Expected Result:
the above can run without problem.
How to reproduce
Error message and/or stacktrace
Additional context
The text was updated successfully, but these errors were encountered: