MCPcopy Create free account
hub / github.com/apache/impala / RedactCopy

Function RedactCopy

be/src/util/redactor.h:65–69  ·  view source on GitHub ↗

Utility function to redacted a string without modifying the original.

Source from the content-addressed store, hash-verified

63
64/// Utility function to redacted a string without modifying the original.
65inline std::string RedactCopy(const std::string& original) {
66 std::string temp(original);
67 Redact(&temp);
68 return temp;
69}
70
71}
72

Callers 6

QueryStateToJsonMethod · 0.85
PlanToJsonHelperFunction · 0.85
QueryBackendsHandlerMethod · 0.85
QuerySummaryHandlerMethod · 0.85
PrintExecSummaryFunction · 0.85

Calls 1

RedactFunction · 0.85

Tested by

no test coverage detected