1 | #pragma once |
---|---|
2 | |
3 | #include <Interpreters/IInterpreter.h> |
4 | #include <Parsers/IAST_fwd.h> |
5 | |
6 | |
7 | namespace DB |
8 | { |
9 | |
10 | class Context; |
11 | |
12 | |
13 | /** Return single row with single column "statement" of type String with text of query to CREATE specified table. |
14 | */ |
15 | class InterpreterShowCreateQuery : public IInterpreter |
16 | { |
17 | public: |
18 | InterpreterShowCreateQuery(const ASTPtr & query_ptr_, const Context & context_) |
19 | : query_ptr(query_ptr_), context(context_) {} |
20 | |
21 | BlockIO execute() override; |
22 | |
23 | static Block getSampleBlock(); |
24 | |
25 | private: |
26 | ASTPtr query_ptr; |
27 | const Context & context; |
28 | |
29 | BlockInputStreamPtr executeImpl(); |
30 | }; |
31 | |
32 | |
33 | } |
34 |