#pragma once #include #include namespace DB { /** Return single row with single column "statement" of type String with text of query to CREATE specified table. */ class InterpreterShowCreateQuery : public IInterpreter, WithContext { public: InterpreterShowCreateQuery(const ASTPtr & query_ptr_, ContextPtr context_) : WithContext(context_), query_ptr(query_ptr_) {} BlockIO execute() override; static Block getSampleBlock(); private: ASTPtr query_ptr; BlockInputStreamPtr executeImpl(); }; }