mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 09:32:01 +00:00
RegionsHierarchies add missed ctor for tests
This commit is contained in:
parent
6d48eacbff
commit
fb5ff00c4a
@ -25,6 +25,7 @@ public:
|
|||||||
* то будет также загружен файл /opt/geo/regions_hierarchy_ua.txt, если такой есть - он будет доступен по ключу ua.
|
* то будет также загружен файл /opt/geo/regions_hierarchy_ua.txt, если такой есть - он будет доступен по ключу ua.
|
||||||
*/
|
*/
|
||||||
RegionsHierarchies();
|
RegionsHierarchies();
|
||||||
|
explicit RegionsHierarchies(const std::string & path_to_regions_hierarchy_file);
|
||||||
|
|
||||||
/// Has corresponding section in configuration file.
|
/// Has corresponding section in configuration file.
|
||||||
static bool isConfigured();
|
static bool isConfigured();
|
||||||
|
@ -9,11 +9,15 @@ static constexpr auto config_key = "path_to_regions_hierarchy_file";
|
|||||||
|
|
||||||
|
|
||||||
RegionsHierarchies::RegionsHierarchies()
|
RegionsHierarchies::RegionsHierarchies()
|
||||||
|
: RegionsHierarchies(Poco::Util::Application::instance().config().getString(config_key))
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
RegionsHierarchies::RegionsHierarchies(const std::string & path)
|
||||||
{
|
{
|
||||||
Logger * log = &Logger::get("RegionsHierarchies");
|
Logger * log = &Logger::get("RegionsHierarchies");
|
||||||
|
|
||||||
std::string path = Poco::Util::Application::instance().config().getString(config_key);
|
|
||||||
|
|
||||||
LOG_DEBUG(log, "Adding default regions hierarchy from " << path);
|
LOG_DEBUG(log, "Adding default regions hierarchy from " << path);
|
||||||
|
|
||||||
data.emplace(std::piecewise_construct,
|
data.emplace(std::piecewise_construct,
|
||||||
|
Loading…
Reference in New Issue
Block a user