mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-18 12:22:12 +00:00
7 lines
242 B
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;
|
|
|