ClickHouse/dbms/src/Interpreters/InterpreterKillQueryQuery.h

33 lines
601 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;
2020-01-24 16:20:36 +00:00
class AccessRightsElements;
2017-05-23 18:24:43 +00:00
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:
2020-01-24 16:20:36 +00:00
AccessRightsElements getRequiredAccessForDDLOnCluster() const;
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
};
}