mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-13 01:41:59 +00:00
33 lines
601 B
C++
33 lines
601 B
C++
#pragma once
|
|
|
|
#include <Core/Block.h>
|
|
#include <Interpreters/IInterpreter.h>
|
|
#include <Parsers/IAST_fwd.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class Context;
|
|
class AccessRightsElements;
|
|
|
|
|
|
class InterpreterKillQueryQuery : public IInterpreter
|
|
{
|
|
public:
|
|
InterpreterKillQueryQuery(const ASTPtr & query_ptr_, Context & context_)
|
|
: query_ptr(query_ptr_), context(context_) {}
|
|
|
|
BlockIO execute() override;
|
|
|
|
private:
|
|
AccessRightsElements getRequiredAccessForDDLOnCluster() const;
|
|
Block getSelectResult(const String & columns, const String & table);
|
|
|
|
ASTPtr query_ptr;
|
|
Context & context;
|
|
};
|
|
|
|
|
|
}
|