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

Function MergeErrorMaps

be/src/util/error-util.cc:96–100  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

94}
95
96void MergeErrorMaps(const ErrorLogMapPB& m1, ErrorLogMap* m2) {
97 for (const ErrorLogMapPB::value_type& v : m1) {
98 MergeErrorLogEntry(static_cast<TErrorCode::type>(v.first), v.second, m2);
99 }
100}
101
102void MergeErrorMaps(const ErrorLogMap& m1, ErrorLogMap* m2) {
103 for (const ErrorLogMap::value_type& v : m1) {

Callers 3

MergeErrorLogMethod · 0.85
ApplyExecStatusReportMethod · 0.85
TESTFunction · 0.85

Calls 1

MergeErrorLogEntryFunction · 0.85

Tested by 1

TESTFunction · 0.68