メインコンテンツへスキップ
ClickHouse Cloud でのクエリこのシステムテーブルのデータは、ClickHouse Cloud の各ノードにローカルに保持されています。したがって、すべてのデータを完全に把握するには、clusterAllReplicas 関数を使用する必要があります。詳細については、こちらを参照してください。

説明

クエリ条件キャッシュの内容を表示します。

カラム

  • key_hash (UInt128) — (table_uuid、part_name、condition_hash) のハッシュ。
  • entry_size (UInt64) — エントリのサイズ (バイト単位) 。
  • matching_marks (String) — 一致したマーク。

Query
SELECT * FROM system.query_condition_cache FORMAT Vertical;
Response
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 -- 54.6京
entry_size:     40
matching_marks: 111111110000000000000000000000000000000000000000000000000111111110000000000000000

1 row in set. Elapsed: 0.004 sec.
最終更新日 2026年6月10日