mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 15:42:02 +00:00
Merge pull request #61089 from ClickHouse/fix-analyzer-01244_optimize_distributed_group_by_sharding_key
Analyzer: Fix 01244_optimize_distributed_group_by_sharding_key
This commit is contained in:
commit
d1c5f35ad7
@ -4,7 +4,6 @@
|
||||
01062_pm_all_join_with_block_continuation
|
||||
01083_expressions_in_engine_arguments
|
||||
01155_rename_move_materialized_view
|
||||
01244_optimize_distributed_group_by_sharding_key
|
||||
01584_distributed_buffer_cannot_find_column
|
||||
01624_soft_constraints
|
||||
01747_join_view_filter_dictionary
|
||||
|
@ -42,7 +42,7 @@ select 'GROUP BY number ORDER BY number DESC';
|
||||
select count(), * from dist_01247 group by number order by number desc;
|
||||
|
||||
select 'GROUP BY toString(number)';
|
||||
select count(), * from dist_01247 group by toString(number);
|
||||
select count(), any(number) from dist_01247 group by toString(number);
|
||||
|
||||
select 'GROUP BY number%2';
|
||||
select count(), any(number) from dist_01247 group by number%2;
|
||||
|
Loading…
Reference in New Issue
Block a user