2016-11-30 17:31:05 +00:00
|
|
|
#pragma once
|
|
|
|
|
2019-05-17 14:34:25 +00:00
|
|
|
#include <Core/Block.h>
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Interpreters/IInterpreter.h>
|
2019-05-17 14:34:25 +00:00
|
|
|
#include <Parsers/IAST_fwd.h>
|
2016-11-30 17:31:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2020-01-24 16:20:36 +00:00
|
|
|
class AccessRightsElements;
|
2017-05-23 18:24:43 +00:00
|
|
|
|
2021-05-31 14:49:02 +00:00
|
|
|
class InterpreterKillQueryQuery final : public IInterpreter, WithMutableContext
|
2016-11-30 17:31:05 +00:00
|
|
|
{
|
|
|
|
public:
|
2021-05-31 14:49:02 +00:00
|
|
|
InterpreterKillQueryQuery(const ASTPtr & query_ptr_, ContextMutablePtr context_) : WithMutableContext(context_), query_ptr(query_ptr_) { }
|
2016-11-30 17:31:05 +00:00
|
|
|
|
2017-04-01 07:20:54 +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;
|
2019-01-11 13:28:13 +00:00
|
|
|
Block getSelectResult(const String & columns, const String & table);
|
2016-11-30 17:31:05 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
ASTPtr query_ptr;
|
2016-11-30 17:31:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|