ClickHouse/dbms/src/Interpreters/InterpreterCheckQuery.h
Ivan Lezhankin 0821d62516 Merge ITableDeclaration into IStorage.
Also a couple of massive include-refactorings with better forwarding
2019-05-17 17:34:25 +03:00

28 lines
414 B
C++

#pragma once
#include <Core/Block.h>
#include <Interpreters/IInterpreter.h>
#include <Parsers/IAST_fwd.h>
namespace DB
{
class Context;
class Cluster;
class InterpreterCheckQuery : public IInterpreter
{
public:
InterpreterCheckQuery(const ASTPtr & query_ptr_, const Context & context_);
BlockIO execute() override;
private:
ASTPtr query_ptr;
const Context & context;
Block result;
};
}