2017-04-01 09:19:00 +00:00
|
|
|
#include <Storages/IStorage.h>
|
|
|
|
#include <Parsers/TablePropertiesQueriesASTs.h>
|
|
|
|
#include <Parsers/formatAST.h>
|
|
|
|
#include <DataStreams/OneBlockInputStream.h>
|
|
|
|
#include <DataStreams/BlockIO.h>
|
|
|
|
#include <DataStreams/copyData.h>
|
|
|
|
#include <DataTypes/DataTypesNumber.h>
|
|
|
|
#include <DataTypes/DataTypeString.h>
|
|
|
|
#include <Columns/ColumnString.h>
|
2017-07-13 20:58:19 +00:00
|
|
|
#include <Common/typeid_cast.h>
|
2017-05-23 18:24:43 +00:00
|
|
|
#include <Interpreters/Context.h>
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Interpreters/InterpreterShowCreateQuery.h>
|
2018-02-14 04:00:37 +00:00
|
|
|
#include <AggregateFunctions/AggregateFunctionSequenceMatch.h>
|
2016-12-12 07:24:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
BlockIO InterpreterShowCreateQuery::execute()
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
BlockIO res;
|
|
|
|
res.in = executeImpl();
|
|
|
|
res.in_sample = getSampleBlock();
|
2016-12-12 07:24:56 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
return res;
|
2016-12-12 07:24:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Block InterpreterShowCreateQuery::getSampleBlock()
|
|
|
|
{
|
2018-01-23 19:43:06 +00:00
|
|
|
return {{ std::make_shared<DataTypeString>(), "statement" }};
|
2016-12-12 07:24:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
BlockInputStreamPtr InterpreterShowCreateQuery::executeImpl()
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
const ASTShowCreateQuery & ast = typeid_cast<const ASTShowCreateQuery &>(*query_ptr);
|
2016-12-12 07:24:56 +00:00
|
|
|
|
2018-02-14 04:00:37 +00:00
|
|
|
if (ast.temporary && !ast.database.empty())
|
|
|
|
throw Exception("Can't add database When using `TEMPORARY`", ErrorCodes::SYNTAX_ERROR);
|
|
|
|
|
|
|
|
ASTPtr createQuery = (ast.temporary ? context.getCreateExternalQuery(ast.table) :
|
|
|
|
context.getCreateQuery(ast.database, ast.table));
|
|
|
|
|
|
|
|
if (!createQuery && ast.temporary)
|
|
|
|
throw Exception("Unable to show the create query of " + ast.table + ", It maybe created by system.");
|
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
std::stringstream stream;
|
2018-02-14 04:00:37 +00:00
|
|
|
formatAST(*createQuery, stream, false, true);
|
2017-04-01 07:20:54 +00:00
|
|
|
String res = stream.str();
|
2016-12-12 07:24:56 +00:00
|
|
|
|
2017-12-15 18:23:05 +00:00
|
|
|
MutableColumnPtr column = ColumnString::create();
|
2017-07-21 06:35:58 +00:00
|
|
|
column->insert(res);
|
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
return std::make_shared<OneBlockInputStream>(Block{{
|
2017-12-15 18:23:05 +00:00
|
|
|
std::move(column),
|
2017-04-01 07:20:54 +00:00
|
|
|
std::make_shared<DataTypeString>(),
|
|
|
|
"statement"}});
|
2016-12-12 07:24:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|