MCPcopy Create free account
hub / github.com/apache/kudu / AppendDebugStringForValue

Method AppendDebugStringForValue

src/kudu/common/types.cc:52–58  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

50}
51
52void TypeInfo::AppendDebugStringForValue(const void *ptr, string *str) const {
53 if (KUDU_SHOULD_REDACT()) {
54 str->append(kRedactionMessage);
55 } else {
56 append_func_(ptr, str);
57 }
58}
59
60int TypeInfo::Compare(const void *lhs, const void *rhs) const {
61 return compare_func_(lhs, rhs);

Callers 7

DumpIteratorFunction · 0.45
TestDateToStringMethod · 0.45
TEST_FFunction · 0.45
TestAreConsecutiveFunction · 0.45
StringifyMethod · 0.45
DebugCellAppendMethod · 0.45
ToStringMethod · 0.45

Calls 3

StringAppendStrftimeFunction · 0.85
SubstituteFunction · 0.85
appendMethod · 0.45

Tested by 3

TestDateToStringMethod · 0.36
TEST_FFunction · 0.36
TestAreConsecutiveFunction · 0.36