| 96 | "of the query. See JvmPauseMonitor for details. Reported by the JvmPauseMonitor."); |
| 97 | |
| 98 | QueryState::ScopedRef::ScopedRef(const TUniqueId& query_id) { |
| 99 | DCHECK(ExecEnv::GetInstance()->query_exec_mgr() != nullptr); |
| 100 | query_state_ = ExecEnv::GetInstance()->query_exec_mgr()->GetQueryState(query_id); |
| 101 | } |
| 102 | |
| 103 | QueryState::ScopedRef::~ScopedRef() { |
| 104 | if (query_state_ == nullptr) return; |
nothing calls this directly
no test coverage detected