ClickHouse/dbms/src/Interpreters/InterpreterKillQueryQuery.h

31 lines
506 B
C++
Raw Normal View History

2016-11-30 17:31:05 +00:00
#pragma once
#include <Core/Block.h>
#include <Interpreters/IInterpreter.h>
#include <Parsers/IAST_fwd.h>
2016-11-30 17:31:05 +00:00
namespace DB
{
2017-05-23 18:24:43 +00:00
class Context;
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 getSelectResult(const String & columns, const String & table);
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
};
}