2013-02-21 10:02:33 +00:00
|
|
|
#pragma once
|
|
|
|
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Interpreters/IInterpreter.h>
|
2013-02-21 10:02:33 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
2014-06-26 00:58:14 +00:00
|
|
|
|
2017-05-23 18:24:43 +00:00
|
|
|
class Context;
|
|
|
|
class IAST;
|
|
|
|
using ASTPtr = std::shared_ptr<IAST>;
|
2014-06-26 00:58:14 +00:00
|
|
|
|
2017-05-23 18:24:43 +00:00
|
|
|
|
|
|
|
/** Return single row with single column "statement" of type String with text of query to CREATE specified table.
|
|
|
|
*/
|
2015-06-18 02:11:05 +00:00
|
|
|
class InterpreterShowCreateQuery : public IInterpreter
|
2013-02-22 09:41:13 +00:00
|
|
|
{
|
|
|
|
public:
|
2017-05-23 18:24:43 +00:00
|
|
|
InterpreterShowCreateQuery(const ASTPtr & query_ptr_, const Context & context_)
|
2017-04-01 07:20:54 +00:00
|
|
|
: query_ptr(query_ptr_), context(context_) {}
|
2014-06-26 00:58:14 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
BlockIO execute() override;
|
2014-06-26 00:58:14 +00:00
|
|
|
|
2013-02-22 09:41:13 +00:00
|
|
|
private:
|
2017-04-01 07:20:54 +00:00
|
|
|
ASTPtr query_ptr;
|
2017-05-23 18:24:43 +00:00
|
|
|
const Context & context;
|
2014-06-26 00:58:14 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
BlockInputStreamPtr executeImpl();
|
2013-02-22 09:41:13 +00:00
|
|
|
};
|
2014-06-26 00:58:14 +00:00
|
|
|
|
|
|
|
|
2013-02-21 10:02:33 +00:00
|
|
|
}
|