Ignore dynamic defaults

This commit is contained in:
Raúl Marín 2024-02-20 18:24:35 +01:00
parent f97d7bd0ab
commit 738d1b1ddd

View File

@ -16,7 +16,8 @@ $CLICKHOUSE_LOCAL --query "
),
new_settings AS
(
select name, default from system.settings order by name
-- Ignore settings that depend on the machine config (max_threads and similar)
SELECT name, default FROM system.settings WHERE default NOT LIKE '%auto(%'
)
SELECT * FROM
(