Adjust tests and docs

This commit is contained in:
Raúl Marín 2024-12-02 13:48:50 +01:00
parent b0d555b892
commit e97ccb6b07
2 changed files with 4 additions and 1 deletions

View File

@ -7,6 +7,7 @@ Contains information about setting changes in previous ClickHouse versions.
Columns:
- `type` ([String](../../sql-reference/data-types/string.md)) - The group of settings (Core, MergeTree...)
- `version` ([String](../../sql-reference/data-types/string.md)) — The ClickHouse version in which settings were changed
- `changes` ([Array](../../sql-reference/data-types/array.md) of [Tuple](../../sql-reference/data-types/tuple.md)) — A description of the setting changes: (setting name, previous value, new value, reason for the change)
@ -22,6 +23,7 @@ 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.')]
```

View File

@ -1,3 +1,4 @@
type String The group of settings (Core, MergeTree...)
version String The ClickHouse server version.
changes Array(Tuple(\n name String,\n previous_value String,\n new_value String,\n reason String)) The list of changes in settings which changed the behaviour of ClickHouse.
22.5 [('memory_overcommit_ratio_denominator','0','1073741824','Enable memory overcommit feature by default'),('memory_overcommit_ratio_denominator_for_user','0','1073741824','Enable memory overcommit feature by default')]
Core 22.5 [('memory_overcommit_ratio_denominator','0','1073741824','Enable memory overcommit feature by default'),('memory_overcommit_ratio_denominator_for_user','0','1073741824','Enable memory overcommit feature by default')]