2013-02-21 10:02:33 +00:00
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <DB/Storages/IStorage.h>
|
|
|
|
|
#include <DB/Parsers/TablePropertiesQueriesASTs.h>
|
|
|
|
|
#include <DB/Parsers/formatAST.h>
|
|
|
|
|
#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
|
|
|
|
#include <DB/DataStreams/OneBlockInputStream.h>
|
|
|
|
|
#include <DB/DataStreams/BlockIO.h>
|
|
|
|
|
#include <DB/DataStreams/copyData.h>
|
|
|
|
|
#include <DB/DataTypes/DataTypesNumberFixed.h>
|
|
|
|
|
#include <DB/DataTypes/DataTypeString.h>
|
2016-08-04 23:35:07 +00:00
|
|
|
|
#include <DB/Columns/ColumnString.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
|
|
|
|
|
2015-06-18 02:11:05 +00:00
|
|
|
|
BlockIO execute() override
|
2013-02-21 10:02:33 +00:00
|
|
|
|
{
|
2013-02-22 09:41:13 +00:00
|
|
|
|
BlockIO res;
|
|
|
|
|
res.in = executeImpl();
|
|
|
|
|
res.in_sample = getSampleBlock();
|
2014-06-26 00:58:14 +00:00
|
|
|
|
|
2013-02-22 09:41:13 +00:00
|
|
|
|
return res;
|
|
|
|
|
}
|
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
|
|
|
|
|
2013-02-22 09:41:13 +00:00
|
|
|
|
Block getSampleBlock()
|
|
|
|
|
{
|
2016-08-05 19:20:38 +00:00
|
|
|
|
return {{ std::make_shared<ColumnConstString>(0, String()), std::make_shared<DataTypeString>(), "statement" }};
|
2013-02-22 09:41:13 +00:00
|
|
|
|
}
|
2014-06-26 00:58:14 +00:00
|
|
|
|
|
2013-02-22 09:41:13 +00:00
|
|
|
|
BlockInputStreamPtr executeImpl()
|
|
|
|
|
{
|
2014-06-26 00:58:14 +00:00
|
|
|
|
const ASTShowCreateQuery & ast = typeid_cast<const ASTShowCreateQuery &>(*query_ptr);
|
|
|
|
|
|
2014-03-20 10:59:45 +00:00
|
|
|
|
std::stringstream stream;
|
|
|
|
|
formatAST(*context.getCreateQuery(ast.database, ast.table), stream, 0, false, true);
|
|
|
|
|
String res = stream.str();
|
2014-06-26 00:58:14 +00:00
|
|
|
|
|
2016-08-04 23:35:07 +00:00
|
|
|
|
return std::make_shared<OneBlockInputStream>(Block{{
|
|
|
|
|
std::make_shared<ColumnConstString>(1, res),
|
|
|
|
|
std::make_shared<DataTypeString>(),
|
|
|
|
|
"statement"}});
|
2013-02-22 09:41:13 +00:00
|
|
|
|
}
|
|
|
|
|
};
|
2014-06-26 00:58:14 +00:00
|
|
|
|
|
|
|
|
|
|
2013-02-21 10:02:33 +00:00
|
|
|
|
}
|