ClickHouse/dbms/src/Interpreters/InterpreterKillQueryQuery.h
Ivan Lezhankin 0821d62516 Merge ITableDeclaration into IStorage.
Also a couple of massive include-refactorings with better forwarding
2019-05-17 17:34:25 +03:00

31 lines
506 B
C++

#pragma once
#include <Core/Block.h>
#include <Interpreters/IInterpreter.h>
#include <Parsers/IAST_fwd.h>
namespace DB
{
class Context;
class InterpreterKillQueryQuery : public IInterpreter
{
public:
InterpreterKillQueryQuery(const ASTPtr & query_ptr_, Context & context_)
: query_ptr(query_ptr_), context(context_) {}
BlockIO execute() override;
private:
Block getSelectResult(const String & columns, const String & table);
ASTPtr query_ptr;
Context & context;
};
}