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>
|
|
|
|
|
#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
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
2013-02-22 09:41:13 +00:00
|
|
|
|
/** Вернуть одну строку с одним столбцом statement типа String с текстом запроса, создающего указанную таблицу.
|
|
|
|
|
*/
|
|
|
|
|
class InterpreterShowCreateQuery
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
InterpreterShowCreateQuery(ASTPtr query_ptr_, Context & context_)
|
|
|
|
|
: query_ptr(query_ptr_), context(context_) {}
|
|
|
|
|
|
|
|
|
|
BlockIO execute()
|
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();
|
2013-02-21 10:02:33 +00:00
|
|
|
|
|
2013-02-22 09:41:13 +00:00
|
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
BlockInputStreamPtr executeAndFormat(WriteBuffer & buf)
|
|
|
|
|
{
|
|
|
|
|
Block sample = getSampleBlock();
|
|
|
|
|
ASTPtr format_ast = dynamic_cast<ASTShowCreateQuery &>(*query_ptr).format;
|
2013-06-29 18:03:57 +00:00
|
|
|
|
String format_name = format_ast ? dynamic_cast<ASTIdentifier &>(*format_ast).name : context.getDefaultFormat();
|
2013-02-21 10:02:33 +00:00
|
|
|
|
|
2013-02-22 09:41:13 +00:00
|
|
|
|
BlockInputStreamPtr in = executeImpl();
|
2013-05-22 14:57:43 +00:00
|
|
|
|
BlockOutputStreamPtr out = context.getFormatFactory().getOutput(format_name, buf, sample);
|
2013-02-21 10:02:33 +00:00
|
|
|
|
|
2013-02-22 09:41:13 +00:00
|
|
|
|
copyData(*in, *out);
|
2013-02-21 10:02:33 +00:00
|
|
|
|
|
2013-02-22 09:41:13 +00:00
|
|
|
|
return in;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
ASTPtr query_ptr;
|
|
|
|
|
Context context;
|
|
|
|
|
|
|
|
|
|
Block getSampleBlock()
|
|
|
|
|
{
|
|
|
|
|
ColumnWithNameAndType col;
|
|
|
|
|
col.name = "statement";
|
|
|
|
|
col.type = new DataTypeString;
|
2013-06-18 14:12:10 +00:00
|
|
|
|
col.column = col.type->createColumn();
|
2013-02-22 09:41:13 +00:00
|
|
|
|
|
|
|
|
|
Block block;
|
|
|
|
|
block.insert(col);
|
|
|
|
|
|
|
|
|
|
return block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
BlockInputStreamPtr executeImpl()
|
|
|
|
|
{
|
|
|
|
|
const ASTShowCreateQuery & ast = dynamic_cast<const ASTShowCreateQuery &>(*query_ptr);
|
|
|
|
|
|
|
|
|
|
String res;
|
2013-02-21 10:02:33 +00:00
|
|
|
|
|
|
|
|
|
{
|
2013-02-22 09:41:13 +00:00
|
|
|
|
Poco::ScopedLock<Poco::Mutex> lock(context.getMutex());
|
|
|
|
|
|
|
|
|
|
if (!context.isTableExist(ast.database, ast.table))
|
|
|
|
|
throw Exception("Table " + (ast.database.empty() ? "" : ast.database + ".") + ast.table + " doesn't exist", ErrorCodes::UNKNOWN_TABLE);
|
2013-02-21 10:02:33 +00:00
|
|
|
|
|
2013-02-22 09:41:13 +00:00
|
|
|
|
std::stringstream stream;
|
|
|
|
|
formatAST(*context.getCreateQuery(ast.database, ast.table), stream, 0, false, true);
|
|
|
|
|
res = stream.str();
|
2013-02-21 10:02:33 +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);
|
|
|
|
|
|
|
|
|
|
Block block;
|
|
|
|
|
block.insert(col);
|
|
|
|
|
|
|
|
|
|
return new OneBlockInputStream(block);
|
|
|
|
|
}
|
|
|
|
|
};
|
2013-02-21 10:02:33 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|