ClickHouse/tests/queries/0_stateless/01016_null_part_minmax.sql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

6 lines
341 B
MySQL
Raw Normal View History

-- this test checks that null values are correctly serialized inside minmax index (issue #7113)
2019-10-08 18:52:48 +00:00
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);
2019-10-08 18:52:48 +00:00
drop table null_01016;