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

Method GetFInstanceState

be/src/runtime/query-state.cc:507–514  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

505}
506
507Status QueryState::GetFInstanceState(
508 const TUniqueId& instance_id, FragmentInstanceState** fi_state) {
509 VLOG_FILE << "GetFInstanceState(): instance_id=" << PrintId(instance_id);
510 RETURN_IF_ERROR(WaitForPrepare());
511 auto it = fis_map_.find(instance_id);
512 *fi_state = it != fis_map_.end() ? it->second : nullptr;
513 return Status::OK();
514}
515
516int64_t QueryState::AsyncCodegenThreadHelper(const std::string& suffix) const {
517 int64_t res = 0;

Callers 2

ExecMethod · 0.80

Calls 4

PrintIdFunction · 0.85
OKFunction · 0.85
findMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected