Skip to content
ClickHouse Docs
ClickHouse DocsClickHouse Docs

system.query_condition_cache

설명

쿼리 조건 캐시의 콘텐츠를 표시합니다.

컬럼

  • key_hash (UInt128) — (table_uuid, part_name, condition_hash)의 해시값입니다.
  • entry_size (UInt64) — 항목 크기(바이트)입니다.
  • matching_marks (String) — 일치하는 마크입니다.

예시

Querysql
SELECT * FROM system.query_condition_cache FORMAT Vertical;
Responsetext
Row 1:
──────
table_uuid:     28270a24-ea27-49f6-99cd-97b9bee976ac
part_name:      all_1_1_0
condition:      or(equals(b, 10000_UInt16), equals(c, 10000_UInt16))
condition_hash: 5456494897146899690 -- 5.46 quintillion
entry_size:     40
matching_marks: 111111110000000000000000000000000000000000000000000000000111111110000000000000000

1 row in set. Elapsed: 0.004 sec.
Navigation