mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
30 lines
443 B
C++
30 lines
443 B
C++
#pragma once
|
|
|
|
#include <DB/Interpreters/Context.h>
|
|
#include <DB/Interpreters/IInterpreter.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
|
|
class InterpreterKillQueryQuery : public IInterpreter
|
|
{
|
|
public:
|
|
InterpreterKillQueryQuery(ASTPtr query_ptr_, Context & context_)
|
|
: query_ptr(query_ptr_), context(context_) {}
|
|
|
|
BlockIO execute() override;
|
|
|
|
private:
|
|
|
|
Block getSelectFromSystemProcessesResult();
|
|
|
|
ASTPtr query_ptr;
|
|
Context context;
|
|
};
|
|
|
|
|
|
}
|
|
|