mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 00:22:29 +00:00
Moved files [#METR-17973].
This commit is contained in:
parent
0ddb9cffdd
commit
3183deadef
@ -215,7 +215,7 @@ public:
|
||||
class AddressPatterns
|
||||
{
|
||||
private:
|
||||
typedef std::vector<SharedPtr<IAddressPattern> > Container;
|
||||
typedef std::vector<std::unique_ptr<IAddressPattern>> Container;
|
||||
Container patterns;
|
||||
|
||||
public:
|
||||
@ -253,15 +253,15 @@ public:
|
||||
|
||||
for (Poco::Util::AbstractConfiguration::Keys::const_iterator it = config_keys.begin(); it != config_keys.end(); ++it)
|
||||
{
|
||||
SharedPtr<IAddressPattern> pattern;
|
||||
Container::value_type pattern;
|
||||
String value = config.getString(config_elem + "." + *it);
|
||||
|
||||
if (0 == it->compare(0, strlen("ip"), "ip"))
|
||||
pattern = new IPAddressPattern(value);
|
||||
pattern.reset(new IPAddressPattern(value));
|
||||
else if (0 == it->compare(0, strlen("host_regexp"), "host_regexp"))
|
||||
pattern = new HostRegexpPattern(value);
|
||||
pattern.reset(new HostRegexpPattern(value));
|
||||
else if (0 == it->compare(0, strlen("host"), "host"))
|
||||
pattern = new HostExactPattern(value);
|
||||
pattern.reset(new HostExactPattern(value));
|
||||
else
|
||||
throw Exception("Unknown address pattern type: " + *it, ErrorCodes::UNKNOWN_ADDRESS_PATTERN_TYPE);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user