ClickHouse/tests/queries/0_stateless/02880_indexHint__partition_id.sql

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

10 lines
404 B
MySQL
Raw Normal View History

drop table if exists data;
create table data (part Int) engine=MergeTree() order by tuple() partition by part;
insert into data values (1)(2);
-- { echoOn }
select * from data prewhere indexHint(_partition_id = '1');
select count() from data prewhere indexHint(_partition_id = '1');
select * from data where indexHint(_partition_id = '1');
select count() from data where indexHint(_partition_id = '1');