ClickHouse/tests/queries/0_stateless/00931_low_cardinality_set_index_in_key_condition.sql
Ivan 97f2a2213e
Move all folders inside /dbms one level up (#9974)
* Move some code outside dbms/src folder
* Fix paths
2020-04-02 02:51:21 +03:00

8 lines
215 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;