ClickHouse/tests/queries/0_stateless/00647_histogram_negative

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

4 lines
161 B
Plaintext
Raw Normal View History

create table histogram(num Int64) engine=Tinylog;
insert into histogram values(-1);
insert into histogram values(-1);
select histogram(2)(num) from histogram;