mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 23:31:24 +00:00
6 lines
341 B
SQL
6 lines
341 B
SQL
-- this test checks that null values are correctly serialized inside minmax index (issue #7113)
|
|
drop table if exists null_01016;
|
|
create table if not exists null_01016 (x Nullable(String)) engine MergeTree order by ifNull(x, 'order-null') partition by ifNull(x, 'partition-null');
|
|
insert into null_01016 values (null);
|
|
drop table null_01016;
|