跳到主要内容
跳到主要内容

system.query_condition_cache

在 ClickHouse Cloud 中进行查询

该系统表中的数据保存在 ClickHouse Cloud 中每个节点的本地。因此,如需获得所有数据的完整视图,需要使用 clusterAllReplicas 函数。更多详情请参阅此处

显示 查询条件缓存 的内容。

列:

  • table_uuid (UUID) — 表的 UUID。
  • part_name (String) — 数据片段名称。
  • condition (String) — 过滤条件的哈希文本。仅在将 query_condition_cache_store_conditions_as_plaintext 设置为 true 时才会设置。
  • condition_hash (UInt64) — 过滤条件的哈希值。
  • entry_size (UInt64) — 条目的大小(以字节为单位)。
  • matching_marks (String) — 匹配的标记。

示例

SELECT * FROM system.query_condition_cache FORMAT Vertical;
第 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 行。用时:0.004 秒。