#pragma once #include #include #include #include #include #include #include #include #include #include #include namespace DB { /** Вернуть одну строку с одним столбцом statement типа String с текстом запроса, создающего указанную таблицу. */ class InterpreterShowCreateQuery : public IInterpreter { public: InterpreterShowCreateQuery(ASTPtr query_ptr_, Context & context_) : query_ptr(query_ptr_), context(context_) {} BlockIO execute() override { BlockIO res; res.in = executeImpl(); res.in_sample = getSampleBlock(); return res; } private: ASTPtr query_ptr; Context context; Block getSampleBlock() { return {{ std::make_shared(0, String()), std::make_shared(), "statement" }}; } BlockInputStreamPtr executeImpl() { const ASTShowCreateQuery & ast = typeid_cast(*query_ptr); std::stringstream stream; formatAST(*context.getCreateQuery(ast.database, ast.table), stream, 0, false, true); String res = stream.str(); return std::make_shared(Block{{ std::make_shared(1, res), std::make_shared(), "statement"}}); } }; }