2013-02-21 10:02:33 +00:00
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <DB/Storages/IStorage.h>
|
|
|
|
|
#include <DB/Parsers/TablePropertiesQueriesASTs.h>
|
|
|
|
|
#include <DB/Parsers/ASTIdentifier.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>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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()
|
|
|
|
|
{
|
|
|
|
|
ColumnWithNameAndType col;
|
|
|
|
|
col.name = "statement";
|
|
|
|
|
col.type = new DataTypeString;
|
2013-06-18 14:12:10 +00:00
|
|
|
|
col.column = col.type->createColumn();
|
2014-06-26 00:58:14 +00:00
|
|
|
|
|
2013-02-22 09:41:13 +00:00
|
|
|
|
Block block;
|
|
|
|
|
block.insert(col);
|
2014-06-26 00:58:14 +00:00
|
|
|
|
|
2013-02-22 09:41:13 +00:00
|
|
|
|
return block;
|
|
|
|
|
}
|
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
|
|
|
|
|
2013-02-22 09:41:13 +00:00
|
|
|
|
ColumnWithNameAndType col;
|
|
|
|
|
col.name = "statement";
|
|
|
|
|
col.type = new DataTypeString;
|
|
|
|
|
col.column = new ColumnConstString(1, res);
|
2014-06-26 00:58:14 +00:00
|
|
|
|
|
2013-02-22 09:41:13 +00:00
|
|
|
|
Block block;
|
|
|
|
|
block.insert(col);
|
2014-06-26 00:58:14 +00:00
|
|
|
|
|
2013-02-22 09:41:13 +00:00
|
|
|
|
return new OneBlockInputStream(block);
|
|
|
|
|
}
|
|
|
|
|
};
|
2014-06-26 00:58:14 +00:00
|
|
|
|
|
|
|
|
|
|
2013-02-21 10:02:33 +00:00
|
|
|
|
}
|