mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 23:31:24 +00:00
17 lines
328 B
C++
17 lines
328 B
C++
|
#pragma once
|
||
|
#include <string>
|
||
|
#include <vector>
|
||
|
|
||
|
namespace Poco
|
||
|
{
|
||
|
namespace Util
|
||
|
{
|
||
|
class AbstractConfiguration;
|
||
|
}
|
||
|
}
|
||
|
namespace DB
|
||
|
{
|
||
|
/// get all internal key names for given key
|
||
|
std::vector<std::string> getMultipleKeysFromConfig(Poco::Util::AbstractConfiguration & config, const std::string & root, const std::string & name);
|
||
|
}
|