2018-06-05 19:46:49 +00:00
|
|
|
#include <sstream>
|
|
|
|
|
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>
|
2016-12-12 07:24:56 +00:00
|
|
|
|
2018-06-05 19:46:49 +00:00
|
|
|
|
2016-12-12 07:24:56 +00:00
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2018-02-14 07:15:38 +00:00
|
|
|
namespace ErrorCodes
|
|
|
|
{
|
2018-03-07 19:52:22 +00:00
|
|
|
extern const int SYNTAX_ERROR;
|
|
|
|
extern const int THERE_IS_NO_QUERY;
|
2018-02-14 07:15:38 +00:00
|
|
|
}
|
|
|
|
|
2016-12-12 07:24:56 +00:00
|
|
|
BlockIO InterpreterShowCreateQuery::execute()
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
BlockIO res;
|
|
|
|
res.in = executeImpl();
|
|
|
|
return res;
|
2016-12-12 07:24:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Block InterpreterShowCreateQuery::getSampleBlock()
|
|
|
|
{
|
2018-02-15 18:54:12 +00:00
|
|
|
return Block{{
|
|
|
|
ColumnString::create(),
|
|
|
|
std::make_shared<DataTypeString>(),
|
|
|
|
"statement"}};
|
2016-12-12 07:24:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
BlockInputStreamPtr InterpreterShowCreateQuery::executeImpl()
|
|
|
|
{
|
2019-03-12 12:41:57 +00:00
|
|
|
/// FIXME: try to prettify this cast using `as<>()`
|
|
|
|
const auto * ast = dynamic_cast<const ASTQueryWithTableAndOutput *>(query_ptr.get());
|
2016-12-12 07:24:56 +00:00
|
|
|
|
2019-03-11 12:49:39 +00:00
|
|
|
if (ast->temporary && !ast->database.empty())
|
2018-03-07 19:39:05 +00:00
|
|
|
throw Exception("Temporary databases are not possible.", ErrorCodes::SYNTAX_ERROR);
|
2018-02-14 04:00:37 +00:00
|
|
|
|
2018-03-13 13:28:32 +00:00
|
|
|
ASTPtr create_query;
|
2019-03-11 12:49:39 +00:00
|
|
|
if (ast->temporary)
|
|
|
|
create_query = context.getCreateExternalTableQuery(ast->table);
|
|
|
|
else if (ast->table.empty())
|
|
|
|
create_query = context.getCreateDatabaseQuery(ast->database);
|
2018-03-13 13:28:32 +00:00
|
|
|
else
|
2019-03-11 12:49:39 +00:00
|
|
|
create_query = context.getCreateTableQuery(ast->database, ast->table);
|
2018-02-14 04:00:37 +00:00
|
|
|
|
2019-03-11 12:49:39 +00:00
|
|
|
if (!create_query && ast->temporary)
|
|
|
|
throw Exception("Unable to show the create query of " + ast->table + ". Maybe it was created by the system.", ErrorCodes::THERE_IS_NO_QUERY);
|
2018-02-14 04:00:37 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
std::stringstream stream;
|
2018-03-07 19:39:05 +00:00
|
|
|
formatAST(*create_query, 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
|
|
|
}
|
|
|
|
|
|
|
|
}
|