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

Method set

base/poco/Net/src/NameValueCollection.cpp:70–77  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

68
69
70void NameValueCollection::set(const std::string& name, const std::string& value)
71{
72 Iterator it = _map.find(name);
73 if (it != _map.end())
74 it->second = value;
75 else
76 _map.insert(HeaderMap::ValueType(name, value));
77}
78
79
80void NameValueCollection::add(const std::string& name, const std::string& value)

Callers 13

openMethod · 0.45
authenticateMethod · 0.45
createAuthParamsMethod · 0.45
updateAuthParamsMethod · 0.45
signPlaintextMethod · 0.45
signHMACSHA1Method · 0.45
runMethod · 0.45
setParameterMethod · 0.45
proxyConnectMethod · 0.45
openMethod · 0.45
writeMultipartMethod · 0.45
acceptMethod · 0.45

Calls 4

ValueTypeEnum · 0.50
findMethod · 0.45
endMethod · 0.45
insertMethod · 0.45

Tested by

no test coverage detected