| 667 | } |
| 668 | |
| 669 | void Coordinator::BackendState::UpdateHostProfile( |
| 670 | const TRuntimeProfileTree& thrift_profile) { |
| 671 | // We do not take 'lock_' here because RuntimeProfile::Update() is thread-safe. |
| 672 | DCHECK(!IsEmptyBackend()); |
| 673 | host_profile_->Update(thrift_profile, false); |
| 674 | } |
| 675 | |
| 676 | void Coordinator::BackendState::UpdateExecStats( |
| 677 | const vector<FragmentStats*>& fragment_stats, bool finalize) { |
no test coverage detected