2013-02-21 10:02:33 +00:00
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <DB/Interpreters/Context.h>
|
2015-06-18 02:11:05 +00:00
|
|
|
|
#include <DB/Interpreters/IInterpreter.h>
|
2013-02-21 10:02:33 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
|
{
|
2014-06-26 00:58:14 +00:00
|
|
|
|
|
|
|
|
|
|
2013-02-22 09:41:13 +00:00
|
|
|
|
/** Вернуть одну строку с одним столбцом statement типа String с текстом запроса, создающего указанную таблицу.
|
|
|
|
|
*/
|
2015-06-18 02:11:05 +00:00
|
|
|
|
class InterpreterShowCreateQuery : public IInterpreter
|
2013-02-22 09:41:13 +00:00
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
InterpreterShowCreateQuery(ASTPtr query_ptr_, Context & context_)
|
|
|
|
|
: query_ptr(query_ptr_), context(context_) {}
|
2014-06-26 00:58:14 +00:00
|
|
|
|
|
2016-12-12 07:24:56 +00:00
|
|
|
|
BlockIO execute() override;
|
2014-06-26 00:58:14 +00:00
|
|
|
|
|
2013-02-22 09:41:13 +00:00
|
|
|
|
private:
|
|
|
|
|
ASTPtr query_ptr;
|
|
|
|
|
Context context;
|
2014-06-26 00:58:14 +00:00
|
|
|
|
|
2016-12-12 07:24:56 +00:00
|
|
|
|
Block getSampleBlock();
|
|
|
|
|
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
|
|
|
|
}
|