mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-23 08:02:02 +00:00
Minor
This commit is contained in:
parent
ddcad048de
commit
194e7824de
@ -528,9 +528,7 @@ static std::initializer_list<std::pair<ClickHouseVersion, SettingsChangesHistory
|
|||||||
{"postgresql_connection_pool_retries", 2, 2, "Allow to control the number of retries in PostgreSQL connection pool."}
|
{"postgresql_connection_pool_retries", 2, 2, "Allow to control the number of retries in PostgreSQL connection pool."}
|
||||||
{"postgresql_connection_pool_retries", 2, 2, "Allow to control the number of retries in PostgreSQL connection pool."},
|
{"postgresql_connection_pool_retries", 2, 2, "Allow to control the number of retries in PostgreSQL connection pool."},
|
||||||
{"restore_replace_external_table_functions_to_null", false, false, "New setting."},
|
{"restore_replace_external_table_functions_to_null", false, false, "New setting."},
|
||||||
{"restore_replace_external_engines_to_null", false, false, "New setting."},
|
{"restore_replace_external_engines_to_null", false, false, "New setting."}
|
||||||
{"enable_analyzer", false, true, "Move analyzer to the Beta stage."},
|
|
||||||
{"allow_experimental_analyzer", false, true, "Move analyzer to the Beta stage."},
|
|
||||||
}},
|
}},
|
||||||
{"24.6", {{"materialize_skip_indexes_on_insert", true, true, "Added new setting to allow to disable materialization of skip indexes on insert"},
|
{"24.6", {{"materialize_skip_indexes_on_insert", true, true, "Added new setting to allow to disable materialization of skip indexes on insert"},
|
||||||
{"materialize_statistics_on_insert", true, true, "Added new setting to allow to disable materialization of statistics on insert"},
|
{"materialize_statistics_on_insert", true, true, "Added new setting to allow to disable materialization of statistics on insert"},
|
||||||
|
@ -4,5 +4,5 @@ SET join_algorithm = 'auto';
|
|||||||
SELECT x, y FROM (SELECT number AS x FROM system.numbers LIMIT 3) js1 CROSS JOIN (SELECT number AS y FROM system.numbers LIMIT 5) js2;
|
SELECT x, y FROM (SELECT number AS x FROM system.numbers LIMIT 3) js1 CROSS JOIN (SELECT number AS y FROM system.numbers LIMIT 5) js2;
|
||||||
|
|
||||||
-- Just to test that we preserved old setting name this we use `enable_analyzer` instead of `enable_analyzer` here.
|
-- Just to test that we preserved old setting name this we use `enable_analyzer` instead of `enable_analyzer` here.
|
||||||
SET enable_analyzer = 1;
|
SET allow_experimental_analyzer = 1;
|
||||||
SELECT x, y FROM (SELECT number AS x FROM system.numbers LIMIT 3) js1 CROSS JOIN (SELECT number AS y FROM system.numbers LIMIT 5) js2;
|
SELECT x, y FROM (SELECT number AS x FROM system.numbers LIMIT 3) js1 CROSS JOIN (SELECT number AS y FROM system.numbers LIMIT 5) js2;
|
||||||
|
Loading…
Reference in New Issue
Block a user