Returns true if Impala is actively processing this query.
| 382 | |
| 383 | /// Returns true if Impala is actively processing this query. |
| 384 | inline bool is_active() const { |
| 385 | std::lock_guard<std::mutex> l(expiration_data_lock_); |
| 386 | return ref_count_ > 0; |
| 387 | } |
| 388 | |
| 389 | inline bool is_inflight() const { |
| 390 | // If the query is in 'inflight_queries' it means that the query has actually started |
no outgoing calls
no test coverage detected