clickhouse-docs
clickhouse-docs copied to clipboard
Enhance auto generated settings
SELECT
version,
(arrayJoin(changes) AS change).1 AS setting,
change.2 AS from,
change.3 AS to,
change.4 AS desciption
FROM system.settings_changes
WHERE (version >= '24.4') AND (version <= '24.8')
FORMAT TSV
We can add infor on when a setting was introduced AND when its default changed.
@Blargian we need to think about rendering and work with @crisalbu but we want to show this information
Happy to help but I'd need more context.
Reviewed the designs with @Blargian and we agreed to:
- use an accordion there where we have a version history
- update the Default label with
Default value - Add another column to the initial table mentioning the version when it's been introduced. Could be called
Introduced in version.