ClickHouse/dbms/tests/queries/0_stateless/00931_low_cardinality_set_index_in_key_condition.sql
2019-04-30 13:46:04 +03:00

9 lines
216 B
SQL

drop table if exists test_in;
create table test_in (a LowCardinality(String)) Engine = MergeTree order by a;
insert into test_in values ('a');
select * from test_in where a in ('a');
drop table if exists test_in;