Back to Clickhouse

system.settings_changes

docs/en/operations/system-tables/settings_changes.md

26.4.1.1-new1.0 KB
Original Source

system.settings_changes

Contains information about setting changes in previous ClickHouse versions.

Columns:

<!--AUTOGENERATED_START--> <!--AUTOGENERATED_END-->

Example

sql
SELECT *
FROM system.settings_changes
WHERE version = '23.5'
FORMAT Vertical
text
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.')]

See also