mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-04 13:32:13 +00:00
26 lines
430 B
C++
26 lines
430 B
C++
#pragma once
|
|
|
|
#include <Core/Block.h>
|
|
#include <Interpreters/IInterpreter.h>
|
|
#include <Parsers/IAST_fwd.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class Cluster;
|
|
|
|
class InterpreterCheckQuery : public IInterpreter, WithContext
|
|
{
|
|
public:
|
|
InterpreterCheckQuery(const ASTPtr & query_ptr_, ContextPtr context_);
|
|
|
|
BlockIO execute() override;
|
|
|
|
private:
|
|
ASTPtr query_ptr;
|
|
|
|
Poco::Logger * log = &Poco::Logger::get("InterpreterCheckQuery");
|
|
};
|
|
|
|
}
|