clickhouse-docs icon indicating copy to clipboard operation
clickhouse-docs copied to clipboard

Enhance auto generated settings

Open gingerwizard opened this issue 9 months ago • 1 comments

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

gingerwizard avatar Feb 12 '25 16:02 gingerwizard

Happy to help but I'd need more context.

crisalbu avatar Feb 13 '25 13:02 crisalbu

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

crisalbu avatar Apr 01 '25 13:04 crisalbu