MCPcopy Create free account
hub / github.com/ClickHouse/ClickHouse / getRaw

Method getRaw

base/poco/Util/src/MapConfiguration.cpp:48–57  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

46
47
48bool MapConfiguration::getRaw(const std::string& key, std::string& value) const
49{
50 StringMap::const_iterator it = _map.find(key);
51 if (it != _map.end())
52 {
53 value = it->second;
54 return true;
55 }
56 else return false;
57}
58
59
60void MapConfiguration::setRaw(const std::string& key, const std::string& value)

Callers

nothing calls this directly

Calls 2

findMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected