| 3454 | } |
| 3455 | |
| 3456 | void Context::killCurrentQuery() const |
| 3457 | { |
| 3458 | if (auto elem = getProcessListElement()) |
| 3459 | elem->cancelQuery(CancelReason::CANCELLED_BY_USER); |
| 3460 | } |
| 3461 | |
| 3462 | bool Context::isCurrentQueryKilled() const |
| 3463 | { |
no test coverage detected