> ## Documentation Index
> Fetch the complete documentation index at: https://private-7c7dfe99-mintlify-3a82795f.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

> Системная таблица, которая показывает содержимое кэша условий запроса.

# system.query_condition_cache

<Info>
  **Запросы в ClickHouse Cloud**

  Данные в этой системной таблице хранятся локально на каждом узле ClickHouse Cloud. Поэтому, чтобы получить полное представление обо всех данных, требуется функция `clusterAllReplicas`. Дополнительные сведения см. [здесь](/ru/reference/system-tables/overview#system-tables-in-clickhouse-cloud).
</Info>

<div id="description">
  ## Описание
</div>

Показывает содержимое [кэша условий запроса](/ru/concepts/features/performance/caches/query-condition-cache).

<div id="columns">
  ## Столбцы
</div>

* `key_hash` ([UInt128](/ru/reference/data-types)) — Хеш (table\_uuid, part\_name, condition\_hash).
* `entry_size` ([UInt64](/ru/reference/data-types)) — Размер записи в байтах.
* `matching_marks` ([String](/ru/reference/data-types)) — Соответствующие метки.

<div id="example">
  ## Пример
</div>

```sql title="Query" theme={null}
SELECT * FROM system.query_condition_cache FORMAT Vertical;
```

```text title="Response" theme={null}
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 row in set. Elapsed: 0.004 sec.
```
