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

Method getInt64

base/poco/Util/src/AbstractConfiguration.cpp:169–178  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

167
168
169Int64 AbstractConfiguration::getInt64(const std::string& key) const
170{
171 Mutex::ScopedLock lock(_mutex);
172
173 std::string value;
174 if (getRaw(key, value))
175 return parseInt64(internalExpand(value));
176 else
177 throw NotFoundException(key);
178}
179
180
181Int64 AbstractConfiguration::getInt64(const std::string& key, Int64 defaultValue) const

Callers 6

getHeadersReadTimeoutMethod · 0.45
getReceiveTimeoutMethod · 0.45
getSendTimeoutMethod · 0.45
mainMethod · 0.45
parseConfigMethod · 0.45
startServersMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected