| 284 | } // ImpalaServer::CloseQuery |
| 285 | |
| 286 | void ImpalaServer::GetConnectionContextList( |
| 287 | ThriftServer::ConnectionContextList* connection_contexts) { |
| 288 | lock_guard<mutex> l(internal_server_connections_lock_); |
| 289 | |
| 290 | for(auto iter = internal_server_connections_.cbegin(); |
| 291 | iter != internal_server_connections_.cend(); iter++) { |
| 292 | connection_contexts->push_back(iter->second); |
| 293 | } |
| 294 | } // ImpalaServer::GetConnectionContextList |
| 295 | |
| 296 | } // namespace impala |
no test coverage detected