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

Function escapeString

src/Common/escapeString.cpp:9–14  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7{
8
9String escapeString(std::string_view value)
10{
11 WriteBufferFromOwnString buf;
12 writeEscapedString(value, buf);
13 return buf.str();
14}
15
16}

Callers 6

traverseFunction · 0.85
parseJSONFunction · 0.85
listTablesInDatabaseMethod · 0.85
getRewrittenQueryMethod · 0.85
getRewrittenQueryMethod · 0.85
getRewrittenQueryMethod · 0.85

Calls 2

writeEscapedStringFunction · 0.85
strMethod · 0.45

Tested by

no test coverage detected