v.25.4New Feature
Introduce a new column, parametrized_view_parameters in system
Introduce a new column,parametrized_view_parametersinsystem.tables. Closes https://github.com/clickhouse/clickhouse/issues/66756. #75112 (NamNguyenHoai).
Why it matters
This feature addresses the need for visibility into the parameters of parametrized views by adding a dedicated column in thesystem.tables table. It helps users and administrators easily query and inspect the parameters used by parametrized views, improving management and debugging capabilities.How to use it
Users can query thesystem.tables table and check the new parametrized_view_parameters column to retrieve the parameters defined for parametrized views. For example:SELECT database, name, parametrized_view_parameters FROM system.tables WHERE engine = 'ParametrizedView'