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

Function uriDecode

src/Client/ConnectionString.cpp:38–43  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

36};
37
38std::string uriDecode(const std::string & uri_encoded_string, bool plus_as_space)
39{
40 std::string decoded_string;
41 Poco::URI::decode(uri_encoded_string, decoded_string, plus_as_space);
42 return decoded_string;
43}
44
45void getHostAndPort(const Poco::URI & uri, std::vector<std::vector<std::string>> & hosts_and_ports_arguments)
46{

Callers 2

getHostAndPortFunction · 0.85
tryParseConnectionStringFunction · 0.85

Calls 1

decodeFunction · 0.50

Tested by

no test coverage detected