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

Method GetUnreportedAuxErrorInfo

be/src/runtime/runtime-state.cc:375–382  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

373}
374
375void RuntimeState::GetUnreportedAuxErrorInfo(AuxErrorInfoPB* aux_error_info) {
376 std::lock_guard<SpinLock> l(aux_error_info_lock_);
377 if (aux_error_info_ != nullptr) {
378 aux_error_info->CopyFrom(*aux_error_info_);
379 }
380 aux_error_info_ = nullptr;
381 reported_aux_error_info_ = true;
382}
383
384const std::string& RuntimeState::GetEffectiveUser() const {
385 return impala::GetEffectiveUser(query_ctx().session);

Callers 1

GetStatusReportMethod · 0.80

Calls 1

CopyFromMethod · 0.45

Tested by

no test coverage detected