mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 14:11:58 +00:00
0821d62516
Also a couple of massive include-refactorings with better forwarding
31 lines
506 B
C++
31 lines
506 B
C++
#pragma once
|
|
|
|
#include <Core/Block.h>
|
|
#include <Interpreters/IInterpreter.h>
|
|
#include <Parsers/IAST_fwd.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class Context;
|
|
|
|
|
|
class InterpreterKillQueryQuery : public IInterpreter
|
|
{
|
|
public:
|
|
InterpreterKillQueryQuery(const ASTPtr & query_ptr_, Context & context_)
|
|
: query_ptr(query_ptr_), context(context_) {}
|
|
|
|
BlockIO execute() override;
|
|
|
|
private:
|
|
Block getSelectResult(const String & columns, const String & table);
|
|
|
|
ASTPtr query_ptr;
|
|
Context & context;
|
|
};
|
|
|
|
|
|
}
|