blob: 9284d777ca7c7f624f175871e6ecaebb591f656c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#pragma once
#include <Core/Block.h>
#include <Interpreters/IInterpreter.h>
#include <Parsers/IAST_fwd.h>
namespace DB
{
class AccessRightsElements;
class InterpreterKillQueryQuery final : public IInterpreter, WithMutableContext
{
public:
InterpreterKillQueryQuery(const ASTPtr & query_ptr_, ContextMutablePtr context_) : WithMutableContext(context_), query_ptr(query_ptr_) { }
BlockIO execute() override;
private:
AccessRightsElements getRequiredAccessForDDLOnCluster() const;
Block getSelectResult(const String & columns, const String & table);
ASTPtr query_ptr;
};
}
|