mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
done
This commit is contained in:
parent
1795d45609
commit
ac476ad83e
@ -1,6 +1,6 @@
|
|||||||
|
100
|
||||||
6410
|
6410
|
||||||
6410
|
100
|
||||||
25323
|
|
||||||
25323
|
25323
|
||||||
1774655
|
100
|
||||||
1774655
|
1774655
|
||||||
|
@ -6,15 +6,15 @@ CREATE DICTIONARY db_dict.cache_hits
|
|||||||
PRIMARY KEY WatchID
|
PRIMARY KEY WatchID
|
||||||
SOURCE(CLICKHOUSE(HOST 'localhost' PORT tcpPort() USER 'default' TABLE 'hits' PASSWORD '' DB 'test'))
|
SOURCE(CLICKHOUSE(HOST 'localhost' PORT tcpPort() USER 'default' TABLE 'hits' PASSWORD '' DB 'test'))
|
||||||
LIFETIME(MIN 300 MAX 600)
|
LIFETIME(MIN 300 MAX 600)
|
||||||
LAYOUT(CACHE(SIZE_IN_CELLS 100000 QUERY_WAIT_TIMEOUT_MILLISECONDS 600000));
|
LAYOUT(CACHE(SIZE_IN_CELLS 100 QUERY_WAIT_TIMEOUT_MILLISECONDS 600000));
|
||||||
|
|
||||||
SELECT sum(flag) FROM (SELECT dictHas('db_dict.cache_hits', toUInt64(WatchID)) as flag FROM test.hits PREWHERE WatchID % 1400 == 0);
|
SELECT sum(flag) FROM (SELECT dictHas('db_dict.cache_hits', toUInt64(WatchID)) as flag FROM test.hits PREWHERE WatchID % 1400 == 0 LIMIT 100);
|
||||||
SELECT count() from test.hits PREWHERE WatchID % 1400 == 0;
|
SELECT count() from test.hits PREWHERE WatchID % 1400 == 0;
|
||||||
|
|
||||||
SELECT sum(flag) FROM (SELECT dictHas('db_dict.cache_hits', toUInt64(WatchID)) as flag FROM test.hits PREWHERE WatchID % 350 == 0);
|
SELECT sum(flag) FROM (SELECT dictHas('db_dict.cache_hits', toUInt64(WatchID)) as flag FROM test.hits PREWHERE WatchID % 350 == 0 LIMIT 100);
|
||||||
SELECT count() from test.hits PREWHERE WatchID % 350 == 0;
|
SELECT count() from test.hits PREWHERE WatchID % 350 == 0;
|
||||||
|
|
||||||
SELECT sum(flag) FROM (SELECT dictHas('db_dict.cache_hits', toUInt64(WatchID)) as flag FROM test.hits PREWHERE WatchID % 5 == 0);
|
SELECT sum(flag) FROM (SELECT dictHas('db_dict.cache_hits', toUInt64(WatchID)) as flag FROM test.hits PREWHERE WatchID % 5 == 0 LIMIT 100);
|
||||||
SELECT count() from test.hits PREWHERE WatchID % 5 == 0;
|
SELECT count() from test.hits PREWHERE WatchID % 5 == 0;
|
||||||
|
|
||||||
DROP DICTIONARY IF EXISTS db_dict.cache_hits;
|
DROP DICTIONARY IF EXISTS db_dict.cache_hits;
|
||||||
|
Loading…
Reference in New Issue
Block a user