#pragma once #include #include #include namespace DB { class Cluster; class InterpreterCheckQuery : public IInterpreter, WithContext { public: InterpreterCheckQuery(const ASTPtr & query_ptr_, ContextPtr context_); BlockIO execute() override; private: ASTPtr query_ptr; }; }