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

Function JsonToString

be/src/util/json-util.cc:166–171  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

164}
165
166std::string JsonToString(const rapidjson::Value& value) {
167 rapidjson::StringBuffer buffer;
168 rapidjson::Writer<rapidjson::StringBuffer> writer(buffer);
169 value.Accept(writer);
170 return std::string(buffer.GetString(), buffer.GetSize());
171}
172} // namespace impala

Callers 7

RedactedProfileTextFunction · 0.85
RedactSourceJsonFunction · 0.85
BuildAgentPayloadJsonFunction · 0.85

Calls 3

AcceptMethod · 0.80
GetSizeMethod · 0.80
GetStringMethod · 0.45

Tested by 2

RedactedProfileTextFunction · 0.68