ClickHouse/tests/queries/0_stateless/01906_lc_in_bug.sql
2021-06-15 12:52:34 +03:00

9 lines
264 B
SQL

drop table if exists tab;
create table tab (x LowCardinality(String)) engine = MergeTree order by tuple();
insert into tab values ('a'), ('bb'), ('a'), ('cc');
select count() as c, x in ('a', 'bb') as g from tab group by g order by c;
drop table if exists tab;