Skip to content

Commit

Permalink
Fix compile error under MacOS X (#1214)
Browse files Browse the repository at this point in the history
  • Loading branch information
JaySon-Huang authored Nov 9, 2020
1 parent f32bb23 commit 27fc283
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dbms/src/Storages/PathPool.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ PathPool::PathPool(const Strings & main_data_paths_, const Strings & latest_data
: main_data_paths(main_data_paths_),
latest_data_paths(latest_data_paths_),
global_capacity(global_capacity_),
file_provider(file_provider_)
file_provider(file_provider_),
log(&Poco::Logger::get("PathPool"))
{}

StoragePathPool PathPool::withTable(const String & database_, const String & table_, bool path_need_database_name_) const
Expand Down

0 comments on commit 27fc283

Please sign in to comment.