ClickHouse/dbms/src/Interpreters/InterpreterKillQueryQuery.h

33 lines
526 B
C++
Raw Normal View History

2016-11-30 17:31:05 +00:00
#pragma once
#include <Interpreters/IInterpreter.h>
2016-11-30 17:31:05 +00:00
namespace DB
{
2017-05-23 18:24:43 +00:00
class Context;
class IAST;
using ASTPtr = std::shared_ptr<IAST>;
2016-11-30 17:31:05 +00:00
class InterpreterKillQueryQuery : public IInterpreter
{
public:
2017-05-23 18:24:43 +00:00
InterpreterKillQueryQuery(const ASTPtr & query_ptr_, Context & context_)
: query_ptr(query_ptr_), context(context_) {}
2016-11-30 17:31:05 +00:00
BlockIO execute() override;
2016-11-30 17:31:05 +00:00
private:
Block getSelectFromSystemProcessesResult();
Block getSelectFromSystemMutationsResult();
2016-11-30 17:31:05 +00:00
ASTPtr query_ptr;
2017-05-23 18:24:43 +00:00
Context & context;
2016-11-30 17:31:05 +00:00
};
}