ClickHouse/tests/queries/0_stateless/03261_variant_permutation_bug.sql

7 lines
242 B
SQL

set allow_experimental_variant_type=1;
create table test (x UInt64, d Variant(UInt64)) engine=Memory;
insert into test select number, null from numbers(200000);
select d from test order by d::String limit 32213 format Null;
drop table test;