| 273 | } // ImpalaServer::FetchAllRowsHS2 |
| 274 | |
| 275 | void ImpalaServer::CloseQuery(const TUniqueId& query_id) { |
| 276 | QueryHandle query_handle; |
| 277 | Status found = GetActiveQueryHandle(query_id, &query_handle); |
| 278 | |
| 279 | if (!found.ok()) { |
| 280 | return; |
| 281 | } |
| 282 | |
| 283 | UnregisterQueryDiscardResult(query_handle->query_id()); |
| 284 | } // ImpalaServer::CloseQuery |
| 285 | |
| 286 | void ImpalaServer::GetConnectionContextList( |
| 287 | ThriftServer::ConnectionContextList* connection_contexts) { |