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

Method SerializeToArchiveString

be/src/util/runtime-profile-serialization.cc:62–67  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

60}
61
62Status RuntimeProfile::SerializeToArchiveString(string* out) const {
63 stringstream ss;
64 RETURN_IF_ERROR(SerializeToArchiveString(&ss));
65 *out = ss.str();
66 return Status::OK();
67}
68
69Status RuntimeProfile::SerializeToArchiveString(stringstream* out) const {
70 vector<uint8_t> compressed_buffer;

Callers 2

TESTFunction · 0.80

Calls 4

OKFunction · 0.85
CompressFunction · 0.85
Base64EncodeFunction · 0.70
strMethod · 0.45

Tested by 1

TESTFunction · 0.64