ClickHouse/tests/queries/0_stateless/02764_index_analysis_fix.sql

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

10 lines
229 B
MySQL
Raw Normal View History

drop table if exists x;
create table x (dt String) engine MergeTree partition by toYYYYMM(toDate(dt)) order by tuple();
insert into x values ('2022-10-01 10:10:10');
select * from x where dt like '2022-10-01%';
drop table x;