mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 07:01:59 +00:00
Fix typo
This commit is contained in:
parent
468ee6b4c2
commit
d1edcfc5cd
@ -239,11 +239,11 @@ void LocalServer::initialize(Poco::Util::Application & self)
|
||||
0, // We don't need any threads one all the parts will be deleted
|
||||
cleanup_threads);
|
||||
|
||||
const size_t drop_tables_threas = server_settings[ServerSetting::database_catalog_drop_table_concurrency];
|
||||
const size_t drop_tables_threads = server_settings[ServerSetting::database_catalog_drop_table_concurrency];
|
||||
getDatabaseCatalogDropTablesThreadPool().initialize(
|
||||
drop_tables_threas,
|
||||
drop_tables_threads,
|
||||
0, // We don't need any threads if there are no DROP queries.
|
||||
drop_tables_threas);
|
||||
drop_tables_threads);
|
||||
|
||||
const size_t freeze_threads = server_settings[ServerSetting::max_freeze_parts_thread_pool_size];
|
||||
getFreezePartThreadPool().initialize(
|
||||
|
Loading…
Reference in New Issue
Block a user