| 101 | } |
| 102 | |
| 103 | QueryState::ScopedRef::~ScopedRef() { |
| 104 | if (query_state_ == nullptr) return; |
| 105 | ExecEnv::GetInstance()->query_exec_mgr()->ReleaseQueryState(query_state_); |
| 106 | } |
| 107 | |
| 108 | QueryState::QueryState( |
| 109 | const TQueryCtx& query_ctx, int64_t mem_limit, const string& request_pool) |
nothing calls this directly
no test coverage detected