> ## Documentation Index
> Fetch the complete documentation index at: https://private-7c7dfe99-mintlify-8c05c8a2.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)](/ar/reference/data-types/index)) — فئة الإعدادات (Session وMergeTree...)
* `version` ([String](/ar/reference/data-types/index)) — إصدار خادم ClickHouse.
* `changes` ([Array(Tuple(name String, previous\_value String, new\_value String, reason String))](/ar/reference/data-types/index)) — قائمة التغييرات على الإعدادات التي غيّرت سلوك 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>

* [الإعدادات](/ar/reference/system-tables/overview#system-tables-introduction)
* [system.settings](/ar/reference/system-tables/settings)
