2016-03-19 01:18:49 +00:00
|
|
|
#include <memory>
|
|
|
|
|
2011-11-05 23:31:19 +00:00
|
|
|
#include <Poco/File.h>
|
2011-10-24 12:10:59 +00:00
|
|
|
#include <Poco/FileStream.h>
|
|
|
|
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Common/escapeForFileName.h>
|
|
|
|
|
|
|
|
#include <IO/WriteBufferFromString.h>
|
|
|
|
#include <IO/WriteBufferFromFile.h>
|
|
|
|
#include <IO/WriteHelpers.h>
|
|
|
|
|
|
|
|
#include <DataStreams/NullAndDoCopyBlockInputStream.h>
|
|
|
|
#include <DataStreams/ProhibitColumnsBlockOutputStream.h>
|
|
|
|
#include <DataStreams/MaterializingBlockOutputStream.h>
|
|
|
|
#include <DataStreams/AddingDefaultBlockOutputStream.h>
|
|
|
|
#include <DataStreams/PushingToViewsBlockOutputStream.h>
|
|
|
|
|
|
|
|
#include <Parsers/ASTCreateQuery.h>
|
|
|
|
#include <Parsers/ASTNameTypePair.h>
|
|
|
|
#include <Parsers/ASTColumnDeclaration.h>
|
|
|
|
#include <Parsers/formatAST.h>
|
|
|
|
#include <Parsers/ASTIdentifier.h>
|
|
|
|
#include <Parsers/ASTLiteral.h>
|
|
|
|
#include <Parsers/ParserCreateQuery.h>
|
|
|
|
#include <Parsers/parseQuery.h>
|
2017-04-13 16:12:56 +00:00
|
|
|
#include <Parsers/queryToString.h>
|
2017-04-01 09:19:00 +00:00
|
|
|
|
|
|
|
#include <Storages/StorageFactory.h>
|
|
|
|
#include <Storages/StorageLog.h>
|
|
|
|
|
2017-05-23 18:33:48 +00:00
|
|
|
#include <Interpreters/Context.h>
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Interpreters/InterpreterSelectQuery.h>
|
|
|
|
#include <Interpreters/InterpreterCreateQuery.h>
|
|
|
|
#include <Interpreters/ExpressionAnalyzer.h>
|
2017-04-13 16:12:56 +00:00
|
|
|
#include <Interpreters/DDLWorker.h>
|
2017-04-01 09:19:00 +00:00
|
|
|
|
|
|
|
#include <DataTypes/DataTypesNumber.h>
|
|
|
|
#include <DataTypes/DataTypeNested.h>
|
|
|
|
#include <DataTypes/DataTypeFactory.h>
|
|
|
|
|
|
|
|
#include <Databases/DatabaseFactory.h>
|
|
|
|
#include <Databases/IDatabase.h>
|
2016-03-19 01:18:49 +00:00
|
|
|
|
2017-06-19 20:06:35 +00:00
|
|
|
#include <Common/ZooKeeper/ZooKeeper.h>
|
2011-08-18 20:33:20 +00:00
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2016-01-11 21:46:36 +00:00
|
|
|
namespace ErrorCodes
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
extern const int DIRECTORY_DOESNT_EXIST;
|
|
|
|
extern const int DIRECTORY_ALREADY_EXISTS;
|
|
|
|
extern const int TABLE_ALREADY_EXISTS;
|
|
|
|
extern const int EMPTY_LIST_OF_COLUMNS_PASSED;
|
|
|
|
extern const int INCORRECT_QUERY;
|
|
|
|
extern const int ENGINE_REQUIRED;
|
|
|
|
extern const int TABLE_METADATA_ALREADY_EXISTS;
|
|
|
|
extern const int UNKNOWN_DATABASE_ENGINE;
|
|
|
|
extern const int DUPLICATE_COLUMN;
|
2016-01-11 21:46:36 +00:00
|
|
|
}
|
|
|
|
|
2011-08-18 20:33:20 +00:00
|
|
|
|
2017-05-23 18:33:48 +00:00
|
|
|
InterpreterCreateQuery::InterpreterCreateQuery(const ASTPtr & query_ptr_, Context & context_)
|
2017-04-01 07:20:54 +00:00
|
|
|
: query_ptr(query_ptr_), context(context_)
|
2011-11-01 15:16:04 +00:00
|
|
|
{
|
|
|
|
}
|
2014-06-26 00:58:14 +00:00
|
|
|
|
2011-11-01 15:16:04 +00:00
|
|
|
|
2017-04-25 15:21:03 +00:00
|
|
|
BlockIO InterpreterCreateQuery::createDatabase(ASTCreateQuery & create)
|
2011-08-18 20:33:20 +00:00
|
|
|
{
|
2017-04-25 15:21:03 +00:00
|
|
|
if (!create.cluster.empty())
|
|
|
|
return executeDDLQueryOnCluster(query_ptr, context);
|
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
String database_name = create.database;
|
|
|
|
|
|
|
|
if (create.if_not_exists && context.isDatabaseExist(database_name))
|
2017-04-25 15:21:03 +00:00
|
|
|
return {};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
String database_engine_name;
|
|
|
|
if (!create.storage)
|
|
|
|
{
|
|
|
|
database_engine_name = "Ordinary"; /// Default database engine.
|
|
|
|
auto func = std::make_shared<ASTFunction>();
|
|
|
|
func->name = database_engine_name;
|
|
|
|
create.storage = func;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
const ASTFunction & engine_id = typeid_cast<const ASTFunction &>(*create.storage);
|
|
|
|
|
|
|
|
/// Currently, there are no database engines, that support any arguments.
|
|
|
|
if (engine_id.arguments || engine_id.parameters)
|
|
|
|
{
|
|
|
|
std::stringstream ostr;
|
|
|
|
formatAST(*create.storage, ostr, 0, false, false);
|
|
|
|
throw Exception("Unknown database engine: " + ostr.str(), ErrorCodes::UNKNOWN_DATABASE_ENGINE);
|
|
|
|
}
|
|
|
|
|
|
|
|
database_engine_name = engine_id.name;
|
|
|
|
}
|
|
|
|
|
|
|
|
String database_name_escaped = escapeForFileName(database_name);
|
|
|
|
|
|
|
|
/// Create directories for tables data and metadata.
|
|
|
|
String path = context.getPath();
|
|
|
|
String data_path = path + "data/" + database_name_escaped + "/";
|
|
|
|
String metadata_path = path + "metadata/" + database_name_escaped + "/";
|
|
|
|
|
|
|
|
Poco::File(metadata_path).createDirectory();
|
|
|
|
Poco::File(data_path).createDirectory();
|
|
|
|
|
|
|
|
DatabasePtr database = DatabaseFactory::get(database_engine_name, database_name, metadata_path, context);
|
|
|
|
|
|
|
|
/// Will write file with database metadata, if needed.
|
|
|
|
String metadata_file_tmp_path = path + "metadata/" + database_name_escaped + ".sql.tmp";
|
|
|
|
String metadata_file_path = path + "metadata/" + database_name_escaped + ".sql";
|
|
|
|
|
|
|
|
bool need_write_metadata = !create.attach;
|
|
|
|
|
|
|
|
if (need_write_metadata)
|
|
|
|
{
|
|
|
|
create.attach = true;
|
|
|
|
create.if_not_exists = false;
|
|
|
|
|
|
|
|
std::ostringstream statement_stream;
|
|
|
|
formatAST(create, statement_stream, 0, false);
|
|
|
|
statement_stream << '\n';
|
|
|
|
String statement = statement_stream.str();
|
|
|
|
|
|
|
|
/// Exclusive flag guarantees, that database is not created right now in another thread.
|
|
|
|
WriteBufferFromFile out(metadata_file_tmp_path, statement.size(), O_WRONLY | O_CREAT | O_EXCL);
|
|
|
|
writeString(statement, out);
|
|
|
|
|
|
|
|
out.next();
|
|
|
|
if (context.getSettingsRef().fsync_metadata)
|
|
|
|
out.sync();
|
|
|
|
out.close();
|
|
|
|
}
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
context.addDatabase(database_name, database);
|
|
|
|
|
|
|
|
if (need_write_metadata)
|
|
|
|
Poco::File(metadata_file_tmp_path).renameTo(metadata_file_path);
|
|
|
|
|
|
|
|
database->loadTables(context, thread_pool, has_force_restore_data_flag);
|
|
|
|
}
|
|
|
|
catch (...)
|
|
|
|
{
|
|
|
|
if (need_write_metadata)
|
|
|
|
Poco::File(metadata_file_tmp_path).remove();
|
|
|
|
|
|
|
|
throw;
|
|
|
|
}
|
2017-04-25 15:21:03 +00:00
|
|
|
|
|
|
|
return {};
|
2011-08-18 20:33:20 +00:00
|
|
|
}
|
|
|
|
|
2016-03-19 01:18:49 +00:00
|
|
|
|
|
|
|
using ColumnsAndDefaults = std::pair<NamesAndTypesList, ColumnDefaults>;
|
|
|
|
|
2017-04-02 17:37:49 +00:00
|
|
|
/// AST to the list of columns with types. Columns of Nested type are expanded into a list of real columns.
|
2016-03-19 01:18:49 +00:00
|
|
|
static ColumnsAndDefaults parseColumns(
|
2017-04-01 07:20:54 +00:00
|
|
|
ASTPtr expression_list, const Context & context)
|
2014-07-10 11:13:45 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
auto & column_list_ast = typeid_cast<ASTExpressionList &>(*expression_list);
|
|
|
|
|
|
|
|
/// list of table columns in correct order
|
|
|
|
NamesAndTypesList columns{};
|
|
|
|
ColumnDefaults defaults{};
|
|
|
|
|
|
|
|
/// Columns requiring type-deduction or default_expression type-check
|
|
|
|
std::vector<std::pair<NameAndTypePair *, ASTColumnDeclaration *>> defaulted_columns{};
|
|
|
|
|
|
|
|
/** all default_expressions as a single expression list,
|
|
|
|
* mixed with conversion-columns for each explicitly specified type */
|
|
|
|
ASTPtr default_expr_list = std::make_shared<ASTExpressionList>();
|
|
|
|
default_expr_list->children.reserve(column_list_ast.children.size());
|
|
|
|
|
|
|
|
const DataTypeFactory & data_type_factory = DataTypeFactory::instance();
|
|
|
|
|
|
|
|
for (auto & ast : column_list_ast.children)
|
|
|
|
{
|
|
|
|
auto & col_decl = typeid_cast<ASTColumnDeclaration &>(*ast);
|
|
|
|
|
|
|
|
if (col_decl.type)
|
|
|
|
{
|
|
|
|
const auto & type_range = col_decl.type->range;
|
|
|
|
columns.emplace_back(col_decl.name,
|
|
|
|
data_type_factory.get({ type_range.first, type_range.second }));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
/// we're creating dummy DataTypeUInt8 in order to prevent the NullPointerException in ExpressionActions
|
|
|
|
columns.emplace_back(col_decl.name, std::make_shared<DataTypeUInt8>());
|
|
|
|
|
|
|
|
/// add column to postprocessing if there is a default_expression specified
|
|
|
|
if (col_decl.default_expression)
|
|
|
|
{
|
|
|
|
defaulted_columns.emplace_back(&columns.back(), &col_decl);
|
|
|
|
|
|
|
|
/** for columns with explicitly-specified type create two expressions:
|
|
|
|
* 1. default_expression aliased as column name with _tmp suffix
|
|
|
|
* 2. conversion of expression (1) to explicitly-specified type alias as column name */
|
|
|
|
if (col_decl.type)
|
|
|
|
{
|
|
|
|
const auto & final_column_name = col_decl.name;
|
|
|
|
const auto tmp_column_name = final_column_name + "_tmp";
|
|
|
|
const auto data_type_ptr = columns.back().type.get();
|
|
|
|
|
|
|
|
default_expr_list->children.emplace_back(setAlias(
|
|
|
|
makeASTFunction("CAST", std::make_shared<ASTIdentifier>(StringRange(), tmp_column_name),
|
|
|
|
std::make_shared<ASTLiteral>(StringRange(), Field(data_type_ptr->getName()))), final_column_name));
|
|
|
|
default_expr_list->children.emplace_back(setAlias(col_decl.default_expression->clone(), tmp_column_name));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
default_expr_list->children.emplace_back(setAlias(col_decl.default_expression->clone(), col_decl.name));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// set missing types and wrap default_expression's in a conversion-function if necessary
|
|
|
|
if (!defaulted_columns.empty())
|
|
|
|
{
|
|
|
|
const auto actions = ExpressionAnalyzer{default_expr_list, context, {}, columns}.getActions(true);
|
|
|
|
const auto block = actions->getSampleBlock();
|
|
|
|
|
|
|
|
for (auto & column : defaulted_columns)
|
|
|
|
{
|
|
|
|
const auto name_and_type_ptr = column.first;
|
|
|
|
const auto col_decl_ptr = column.second;
|
|
|
|
|
|
|
|
const auto & column_name = col_decl_ptr->name;
|
|
|
|
const auto has_explicit_type = nullptr != col_decl_ptr->type;
|
|
|
|
auto & explicit_type = name_and_type_ptr->type;
|
|
|
|
|
|
|
|
/// if column declaration contains explicit type, name_and_type_ptr->type is not null
|
|
|
|
if (has_explicit_type)
|
|
|
|
{
|
|
|
|
const auto & tmp_column = block.getByName(column_name + "_tmp");
|
|
|
|
const auto & deduced_type = tmp_column.type;
|
|
|
|
|
|
|
|
/// type mismatch between explicitly specified and deduced type, add conversion for non-array types
|
|
|
|
if (!explicit_type->equals(*deduced_type))
|
|
|
|
{
|
|
|
|
col_decl_ptr->default_expression = makeASTFunction("CAST", col_decl_ptr->default_expression,
|
|
|
|
std::make_shared<ASTLiteral>(StringRange(), explicit_type->getName()));
|
|
|
|
|
|
|
|
col_decl_ptr->children.clear();
|
|
|
|
col_decl_ptr->children.push_back(col_decl_ptr->type);
|
|
|
|
col_decl_ptr->children.push_back(col_decl_ptr->default_expression);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
/// no explicit type, name_and_type_ptr->type is null, set to deduced type
|
|
|
|
explicit_type = block.getByName(column_name).type;
|
|
|
|
|
|
|
|
defaults.emplace(column_name, ColumnDefault{
|
|
|
|
columnDefaultTypeFromString(col_decl_ptr->default_specifier),
|
|
|
|
col_decl_ptr->default_expression
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return { *DataTypeNested::expandNestedColumns(columns), defaults };
|
2014-07-10 11:13:45 +00:00
|
|
|
}
|
|
|
|
|
2016-03-19 01:18:49 +00:00
|
|
|
|
|
|
|
static NamesAndTypesList removeAndReturnColumns(
|
2017-04-01 07:20:54 +00:00
|
|
|
ColumnsAndDefaults & columns_and_defaults, const ColumnDefaultType type)
|
2014-07-10 11:13:45 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
auto & columns = columns_and_defaults.first;
|
|
|
|
auto & defaults = columns_and_defaults.second;
|
|
|
|
|
|
|
|
NamesAndTypesList removed{};
|
|
|
|
|
|
|
|
for (auto it = std::begin(columns); it != std::end(columns);)
|
|
|
|
{
|
|
|
|
const auto jt = defaults.find(it->name);
|
|
|
|
if (jt != std::end(defaults) && jt->second.type == type)
|
|
|
|
{
|
|
|
|
removed.push_back(*it);
|
|
|
|
it = columns.erase(it);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
++it;
|
|
|
|
}
|
|
|
|
|
|
|
|
return removed;
|
2014-07-10 11:13:45 +00:00
|
|
|
}
|
|
|
|
|
2016-03-19 01:18:49 +00:00
|
|
|
|
2014-07-10 11:13:45 +00:00
|
|
|
ASTPtr InterpreterCreateQuery::formatColumns(const NamesAndTypesList & columns)
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
auto columns_list = std::make_shared<ASTExpressionList>();
|
2014-07-10 11:13:45 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
for (const auto & column : columns)
|
|
|
|
{
|
|
|
|
const auto column_declaration = std::make_shared<ASTColumnDeclaration>();
|
|
|
|
column_declaration->name = column.name;
|
2014-07-10 11:13:45 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
StringPtr type_name = std::make_shared<String>(column.type->getName());
|
|
|
|
auto pos = type_name->data();
|
|
|
|
const auto end = pos + type_name->size();
|
2014-07-10 11:13:45 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
ParserIdentifierWithOptionalParameters storage_p;
|
|
|
|
column_declaration->type = parseQuery(storage_p, pos, end, "data type");
|
|
|
|
column_declaration->type->query_string = type_name;
|
|
|
|
columns_list->children.emplace_back(column_declaration);
|
|
|
|
}
|
2014-07-10 11:13:45 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
return columns_list;
|
2014-07-10 11:13:45 +00:00
|
|
|
}
|
|
|
|
|
2014-09-30 03:08:47 +00:00
|
|
|
ASTPtr InterpreterCreateQuery::formatColumns(NamesAndTypesList columns,
|
2017-04-01 07:20:54 +00:00
|
|
|
const NamesAndTypesList & materialized_columns,
|
|
|
|
const NamesAndTypesList & alias_columns,
|
|
|
|
const ColumnDefaults & column_defaults)
|
2014-09-25 15:01:09 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
columns.insert(std::end(columns), std::begin(materialized_columns), std::end(materialized_columns));
|
|
|
|
columns.insert(std::end(columns), std::begin(alias_columns), std::end(alias_columns));
|
2014-09-30 03:08:47 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
auto columns_list = std::make_shared<ASTExpressionList>();
|
2014-09-30 03:08:47 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
for (const auto & column : columns)
|
|
|
|
{
|
|
|
|
const auto column_declaration = std::make_shared<ASTColumnDeclaration>();
|
|
|
|
ASTPtr column_declaration_ptr{column_declaration};
|
2014-09-30 03:08:47 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
column_declaration->name = column.name;
|
2014-09-30 03:08:47 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
StringPtr type_name = std::make_shared<String>(column.type->getName());
|
|
|
|
auto pos = type_name->data();
|
|
|
|
const auto end = pos + type_name->size();
|
2014-09-30 03:08:47 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
ParserIdentifierWithOptionalParameters storage_p;
|
|
|
|
column_declaration->type = parseQuery(storage_p, pos, end, "data type");
|
|
|
|
column_declaration->type->query_string = type_name;
|
2014-09-30 03:08:47 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
const auto it = column_defaults.find(column.name);
|
|
|
|
if (it != std::end(column_defaults))
|
|
|
|
{
|
|
|
|
column_declaration->default_specifier = toString(it->second.type);
|
|
|
|
column_declaration->default_expression = it->second.expression->clone();
|
|
|
|
}
|
2014-09-25 15:01:09 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
columns_list->children.push_back(column_declaration_ptr);
|
|
|
|
}
|
2014-07-10 11:13:45 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
return columns_list;
|
2014-07-10 11:13:45 +00:00
|
|
|
}
|
|
|
|
|
2014-09-30 03:08:47 +00:00
|
|
|
|
2016-03-19 01:18:49 +00:00
|
|
|
InterpreterCreateQuery::ColumnsInfo InterpreterCreateQuery::getColumnsInfo(
|
2017-04-01 07:20:54 +00:00
|
|
|
const ASTPtr & columns, const Context & context)
|
2016-03-19 01:18:49 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
ColumnsInfo res;
|
2016-03-19 01:18:49 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
auto && columns_and_defaults = parseColumns(columns, context);
|
|
|
|
res.materialized_columns = removeAndReturnColumns(columns_and_defaults, ColumnDefaultType::Materialized);
|
|
|
|
res.alias_columns = removeAndReturnColumns(columns_and_defaults, ColumnDefaultType::Alias);
|
|
|
|
res.columns = std::make_shared<NamesAndTypesList>(std::move(columns_and_defaults.first));
|
|
|
|
res.column_defaults = std::move(columns_and_defaults.second);
|
2016-03-19 01:18:49 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
if (res.columns->size() + res.materialized_columns.size() == 0)
|
|
|
|
throw Exception{"Cannot CREATE table without physical columns", ErrorCodes::EMPTY_LIST_OF_COLUMNS_PASSED};
|
2016-03-19 01:18:49 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
return res;
|
2016-03-19 01:18:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
InterpreterCreateQuery::ColumnsInfo InterpreterCreateQuery::setColumns(
|
2017-04-01 07:20:54 +00:00
|
|
|
ASTCreateQuery & create, const Block & as_select_sample, const StoragePtr & as_storage) const
|
2016-03-19 01:18:49 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
ColumnsInfo res;
|
|
|
|
|
|
|
|
if (create.columns)
|
|
|
|
{
|
|
|
|
res = getColumnsInfo(create.columns, context);
|
|
|
|
}
|
|
|
|
else if (!create.as_table.empty())
|
|
|
|
{
|
|
|
|
res.columns = std::make_shared<NamesAndTypesList>(as_storage->getColumnsListNonMaterialized());
|
|
|
|
res.materialized_columns = as_storage->materialized_columns;
|
|
|
|
res.alias_columns = as_storage->alias_columns;
|
|
|
|
res.column_defaults = as_storage->column_defaults;
|
|
|
|
}
|
|
|
|
else if (create.select)
|
|
|
|
{
|
|
|
|
res.columns = std::make_shared<NamesAndTypesList>();
|
|
|
|
for (size_t i = 0; i < as_select_sample.columns(); ++i)
|
|
|
|
res.columns->push_back(NameAndTypePair(as_select_sample.safeGetByPosition(i).name, as_select_sample.safeGetByPosition(i).type));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
throw Exception("Incorrect CREATE query: required list of column descriptions or AS section or SELECT.", ErrorCodes::INCORRECT_QUERY);
|
|
|
|
|
|
|
|
/// Even if query has list of columns, canonicalize it (unfold Nested columns).
|
|
|
|
ASTPtr new_columns = formatColumns(*res.columns, res.materialized_columns, res.alias_columns, res.column_defaults);
|
|
|
|
if (create.columns)
|
|
|
|
{
|
|
|
|
auto it = std::find(create.children.begin(), create.children.end(), create.columns);
|
|
|
|
if (it != create.children.end())
|
|
|
|
*it = new_columns;
|
|
|
|
else
|
|
|
|
create.children.push_back(new_columns);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
create.children.push_back(new_columns);
|
|
|
|
create.columns = new_columns;
|
|
|
|
|
|
|
|
/// Check for duplicates
|
|
|
|
std::set<String> all_columns;
|
|
|
|
auto check_column_already_exists = [&all_columns](const NameAndTypePair & column_name_and_type)
|
|
|
|
{
|
|
|
|
if (!all_columns.emplace(column_name_and_type.name).second)
|
|
|
|
throw Exception("Column " + backQuoteIfNeed(column_name_and_type.name) + " already exists", ErrorCodes::DUPLICATE_COLUMN);
|
|
|
|
};
|
|
|
|
|
|
|
|
for (const auto & elem : *res.columns)
|
|
|
|
check_column_already_exists(elem);
|
|
|
|
for (const auto & elem : res.materialized_columns)
|
|
|
|
check_column_already_exists(elem);
|
|
|
|
for (const auto & elem : res.alias_columns)
|
|
|
|
check_column_already_exists(elem);
|
|
|
|
|
|
|
|
return res;
|
2016-03-19 01:18:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
String InterpreterCreateQuery::setEngine(
|
2017-04-01 07:20:54 +00:00
|
|
|
ASTCreateQuery & create, const StoragePtr & as_storage) const
|
2016-03-19 01:18:49 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
String storage_name;
|
|
|
|
|
|
|
|
auto set_engine = [&](const char * engine)
|
|
|
|
{
|
|
|
|
storage_name = engine;
|
|
|
|
auto func = std::make_shared<ASTFunction>();
|
|
|
|
func->name = engine;
|
|
|
|
create.storage = func;
|
|
|
|
};
|
|
|
|
|
|
|
|
if (create.storage)
|
|
|
|
{
|
|
|
|
storage_name = typeid_cast<ASTFunction &>(*create.storage).name;
|
|
|
|
}
|
|
|
|
else if (!create.as_table.empty())
|
|
|
|
{
|
2017-04-02 17:37:49 +00:00
|
|
|
/// NOTE Getting the structure from the table specified in the AS is done not atomically with the creation of the table.
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
String as_database_name = create.as_database.empty() ? context.getCurrentDatabase() : create.as_database;
|
|
|
|
String as_table_name = create.as_table;
|
|
|
|
|
|
|
|
storage_name = as_storage->getName();
|
|
|
|
create.storage = typeid_cast<const ASTCreateQuery &>(*context.getCreateQuery(as_database_name, as_table_name)).storage;
|
|
|
|
}
|
|
|
|
else if (create.is_temporary)
|
|
|
|
set_engine("Memory");
|
|
|
|
else if (create.is_view)
|
|
|
|
set_engine("View");
|
|
|
|
else if (create.is_materialized_view)
|
|
|
|
set_engine("MaterializedView");
|
|
|
|
else
|
|
|
|
throw Exception("Incorrect CREATE query: required ENGINE.", ErrorCodes::ENGINE_REQUIRED);
|
|
|
|
|
|
|
|
return storage_name;
|
2016-03-19 01:18:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-04-21 12:39:28 +00:00
|
|
|
BlockIO InterpreterCreateQuery::createTable(ASTCreateQuery & create)
|
2016-03-19 01:18:49 +00:00
|
|
|
{
|
2017-04-21 12:39:28 +00:00
|
|
|
if (!create.cluster.empty())
|
2017-04-25 15:21:03 +00:00
|
|
|
return executeDDLQueryOnCluster(query_ptr, context);
|
2017-04-21 12:39:28 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
String path = context.getPath();
|
|
|
|
String current_database = context.getCurrentDatabase();
|
|
|
|
|
|
|
|
String database_name = create.database.empty() ? current_database : create.database;
|
|
|
|
String database_name_escaped = escapeForFileName(database_name);
|
|
|
|
String table_name = create.table;
|
|
|
|
String table_name_escaped = escapeForFileName(table_name);
|
|
|
|
|
|
|
|
String data_path = path + "data/" + database_name_escaped + "/";
|
|
|
|
String metadata_path = path + "metadata/" + database_name_escaped + "/" + table_name_escaped + ".sql";
|
|
|
|
|
|
|
|
std::unique_ptr<InterpreterSelectQuery> interpreter_select;
|
|
|
|
Block as_select_sample;
|
2017-04-02 17:37:49 +00:00
|
|
|
/// For `view` type tables, you may need `sample_block` to get the columns.
|
2017-04-01 07:20:54 +00:00
|
|
|
if (create.select && (!create.attach || (!create.columns && (create.is_view || create.is_materialized_view))))
|
|
|
|
{
|
|
|
|
interpreter_select = std::make_unique<InterpreterSelectQuery>(create.select, context);
|
|
|
|
as_select_sample = interpreter_select->getSampleBlock();
|
|
|
|
}
|
|
|
|
|
|
|
|
String as_database_name = create.as_database.empty() ? current_database : create.as_database;
|
|
|
|
String as_table_name = create.as_table;
|
|
|
|
|
|
|
|
StoragePtr as_storage;
|
|
|
|
TableStructureReadLockPtr as_storage_lock;
|
|
|
|
if (!as_table_name.empty())
|
|
|
|
{
|
|
|
|
as_storage = context.getTable(as_database_name, as_table_name);
|
|
|
|
as_storage_lock = as_storage->lockStructure(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Set and retrieve list of columns.
|
|
|
|
ColumnsInfo columns = setColumns(create, as_select_sample, as_storage);
|
|
|
|
|
2017-04-02 17:37:49 +00:00
|
|
|
/// Select the desired table engine
|
2017-04-01 07:20:54 +00:00
|
|
|
String storage_name = setEngine(create, as_storage);
|
|
|
|
|
|
|
|
StoragePtr res;
|
|
|
|
|
|
|
|
{
|
|
|
|
std::unique_ptr<DDLGuard> guard;
|
|
|
|
|
|
|
|
if (!create.is_temporary)
|
|
|
|
{
|
|
|
|
context.assertDatabaseExists(database_name);
|
|
|
|
|
2017-04-02 17:37:49 +00:00
|
|
|
/** If the table already exists, and the request specifies IF NOT EXISTS,
|
|
|
|
* then we allow concurrent CREATE queries (which do nothing).
|
|
|
|
* Otherwise, concurrent queries for creating a table, if the table does not exist,
|
|
|
|
* can throw an exception, even if IF NOT EXISTS is specified.
|
2017-04-01 07:20:54 +00:00
|
|
|
*/
|
|
|
|
guard = context.getDDLGuardIfTableDoesntExist(database_name, table_name,
|
|
|
|
"Table " + database_name + "." + table_name + " is creating or attaching right now");
|
|
|
|
|
|
|
|
if (!guard)
|
|
|
|
{
|
|
|
|
if (create.if_not_exists)
|
|
|
|
return {};
|
|
|
|
else
|
|
|
|
throw Exception("Table " + database_name + "." + table_name + " already exists.", ErrorCodes::TABLE_ALREADY_EXISTS);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
res = StorageFactory::instance().get(
|
|
|
|
storage_name, data_path, table_name, database_name, context,
|
|
|
|
context.getGlobalContext(), query_ptr, columns.columns,
|
|
|
|
columns.materialized_columns, columns.alias_columns, columns.column_defaults, create.attach, false);
|
|
|
|
|
|
|
|
if (create.is_temporary)
|
|
|
|
context.getSessionContext().addExternalTable(table_name, res);
|
|
|
|
else
|
|
|
|
context.getDatabase(database_name)->createTable(table_name, res, query_ptr, storage_name, context.getSettingsRef());
|
|
|
|
}
|
|
|
|
|
2017-06-06 17:06:14 +00:00
|
|
|
res->startup();
|
|
|
|
|
2017-04-02 17:37:49 +00:00
|
|
|
/// If the CREATE SELECT query is, insert the data into the table
|
2017-04-01 07:20:54 +00:00
|
|
|
if (create.select && storage_name != "View" && (storage_name != "MaterializedView" || create.is_populate))
|
|
|
|
{
|
|
|
|
auto table_lock = res->lockStructure(true);
|
|
|
|
|
2017-04-02 17:37:49 +00:00
|
|
|
/// Also see InterpreterInsertQuery.
|
2017-04-01 07:20:54 +00:00
|
|
|
BlockOutputStreamPtr out =
|
|
|
|
std::make_shared<ProhibitColumnsBlockOutputStream>(
|
|
|
|
std::make_shared<AddingDefaultBlockOutputStream>(
|
|
|
|
std::make_shared<MaterializingBlockOutputStream>(
|
|
|
|
std::make_shared<PushingToViewsBlockOutputStream>(
|
|
|
|
create.database, create.table,
|
|
|
|
create.is_temporary ? context.getSessionContext() : context,
|
|
|
|
query_ptr)),
|
|
|
|
/// @note shouldn't these two contexts be session contexts in case of temporary table?
|
|
|
|
columns.columns, columns.column_defaults, context, static_cast<bool>(context.getSettingsRef().strict_insert_defaults)),
|
|
|
|
columns.materialized_columns);
|
|
|
|
|
|
|
|
BlockIO io;
|
|
|
|
io.in_sample = as_select_sample;
|
|
|
|
io.in = std::make_shared<NullAndDoCopyBlockInputStream>(interpreter_select->execute().in, out);
|
|
|
|
|
|
|
|
return io;
|
|
|
|
}
|
|
|
|
|
|
|
|
return {};
|
2016-03-19 01:18:49 +00:00
|
|
|
}
|
|
|
|
|
2017-04-13 13:42:29 +00:00
|
|
|
|
2016-03-19 01:18:49 +00:00
|
|
|
BlockIO InterpreterCreateQuery::execute()
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
ASTCreateQuery & create = typeid_cast<ASTCreateQuery &>(*query_ptr);
|
|
|
|
|
|
|
|
/// CREATE|ATTACH DATABASE
|
|
|
|
if (!create.database.empty() && create.table.empty())
|
|
|
|
{
|
2017-04-25 15:21:03 +00:00
|
|
|
return createDatabase(create);
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
else
|
2017-04-21 12:39:28 +00:00
|
|
|
return createTable(create);
|
2016-03-19 01:18:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-08-18 20:33:20 +00:00
|
|
|
}
|