mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-29 19:12:03 +00:00
Roll back test for index hint.
This commit is contained in:
parent
b70be40804
commit
06f3b31179
@ -30,6 +30,6 @@ SELECT sum(t) FROM XXXX WHERE indexHint(t = 42);
|
||||
drop table if exists XXXX;
|
||||
create table XXXX (t Int64, f Float64) Engine=MergeTree order by t settings index_granularity=8192;
|
||||
insert into XXXX select number*60, 0 from numbers(100000);
|
||||
SELECT count() >= 1 FROM XXXX WHERE indexHint(t = toDateTime(0));
|
||||
1
|
||||
SELECT count() FROM XXXX WHERE indexHint(t = toDateTime(0));
|
||||
100000
|
||||
drop table XXXX;
|
||||
|
@ -30,6 +30,6 @@ create table XXXX (t Int64, f Float64) Engine=MergeTree order by t settings inde
|
||||
|
||||
insert into XXXX select number*60, 0 from numbers(100000);
|
||||
|
||||
SELECT count() >= 1 FROM XXXX WHERE indexHint(t = toDateTime(0));
|
||||
SELECT count() FROM XXXX WHERE indexHint(t = toDateTime(0));
|
||||
|
||||
drop table XXXX;
|
||||
|
Loading…
Reference in New Issue
Block a user