ClickHouse/tests/queries/0_stateless/02880_indexHint__partition_id.reference
Azat Khuzhin d9a634eb0f Fix filtering parts with indexHint for non analyzer
Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
(cherry picked from commit ffa82e9297)
2023-09-20 11:29:35 +02:00

10 lines
268 B
Plaintext

-- { echoOn }
select * from data prewhere indexHint(_partition_id = '1');
1
select count() from data prewhere indexHint(_partition_id = '1');
1
select * from data where indexHint(_partition_id = '1');
1
select count() from data where indexHint(_partition_id = '1');
1