メインコンテンツまでスキップ
メインコンテンツまでスキップ

system.query_condition_cache

Querying in ClickHouse Cloud

このシステムテーブルのデータは、ClickHouse Cloudの各ノードにローカルで保管されています。そのため、すべてのデータの完全なビューを取得するには、clusterAllReplicas 関数が必要です。詳細については こちら をご覧ください。

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

列:

  • table_uuid (String) — テーブルのUUID。
  • part_name (String) — パーツの名前。
  • condition (String) — ハッシュ化されたフィルター条件。設定 query_condition_cache_store_conditions_as_plaintext = true の場合のみ設定されます。
  • condition_hash (String) — フィルター条件のハッシュ。
  • entry_size (UInt64) — エントリのサイズ(バイト)。
  • matching_marks (String) — 一致するマーク。

SELECT * FROM system.query_condition_cache FORMAT Vertical;
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 けた
entry_size:     40
matching_marks: 111111110000000000000000000000000000000000000000000000000111111110000000000000000

1 行がセットにあります。経過時間: 0.004 秒。