> ## 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.

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

# system.settings_changes

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

Содержит сведения об изменениях настроек в предыдущих версиях ClickHouse.

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

* `type` ([Enum8('Session' = 0, 'MergeTree' = 1)](/ru/reference/data-types)) — Группа настроек (Session, MergeTree...)
* `version` ([String](/ru/reference/data-types)) — Версия сервера ClickHouse.
* `changes` ([Array(Tuple(name String, previous\_value String, new\_value String, reason String))](/ru/reference/data-types)) — Список изменений настроек, повлиявших на поведение ClickHouse.

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

```sql theme={null}
SELECT *
FROM system.settings_changes
WHERE version = '23.5'
FORMAT Vertical
```

```text theme={null}
Row 1:
──────
type:    Core
version: 23.5
changes: [('input_format_parquet_preserve_order','1','0','Allow Parquet reader to reorder rows for better parallelism.'),('parallelize_output_from_storages','0','1','Allow parallelism when executing queries that read from file/url/s3/etc. This may reorder rows.'),('use_with_fill_by_sorting_prefix','0','1','Columns preceding WITH FILL columns in ORDER BY clause form sorting prefix. Rows with different values in sorting prefix are filled independently'),('output_format_parquet_compliant_nested_types','0','1','Change an internal field name in output Parquet file schema.')]
```

<div id="see-also">
  ## См. также
</div>

* [Настройки](/ru/reference/system-tables/overview#system-tables-introduction)
* [system.settings](/ru/reference/system-tables/settings)
