2017-04-01 09:19:00 +00:00
|
|
|
#include <Interpreters/InterpreterAlterQuery.h>
|
2017-04-25 15:21:03 +00:00
|
|
|
#include <Interpreters/DDLWorker.h>
|
2018-09-04 13:45:39 +00:00
|
|
|
#include <Interpreters/MutationsInterpreter.h>
|
2018-12-05 16:13:52 +00:00
|
|
|
#include <Interpreters/AddDefaultDatabaseVisitor.h>
|
2018-12-25 23:11:36 +00:00
|
|
|
#include <Interpreters/Context.h>
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Parsers/ASTAlterQuery.h>
|
2018-12-25 23:11:36 +00:00
|
|
|
#include <Storages/IStorage.h>
|
|
|
|
#include <Storages/AlterCommands.h>
|
|
|
|
#include <Storages/MutationCommands.h>
|
|
|
|
#include <Storages/PartitionCommands.h>
|
2019-05-28 21:17:48 +00:00
|
|
|
#include <Storages/LiveViewCommands.h>
|
2018-06-13 13:49:27 +00:00
|
|
|
#include <Common/typeid_cast.h>
|
2019-05-28 21:17:48 +00:00
|
|
|
#include <Storages/StorageLiveView.h>
|
2014-06-03 23:09:57 +00:00
|
|
|
|
2013-08-07 13:07:42 +00:00
|
|
|
#include <algorithm>
|
|
|
|
|
2013-08-09 00:12:59 +00:00
|
|
|
|
2016-01-11 21:46:36 +00:00
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
namespace ErrorCodes
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
extern const int LOGICAL_ERROR;
|
2017-07-14 18:09:28 +00:00
|
|
|
extern const int ILLEGAL_COLUMN;
|
2016-01-11 21:46:36 +00:00
|
|
|
}
|
|
|
|
|
2013-09-23 12:01:19 +00:00
|
|
|
|
2017-05-23 18:01:50 +00:00
|
|
|
InterpreterAlterQuery::InterpreterAlterQuery(const ASTPtr & query_ptr_, const Context & context_)
|
2017-04-01 07:20:54 +00:00
|
|
|
: query_ptr(query_ptr_), context(context_)
|
2013-08-07 13:07:42 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2015-06-18 02:11:05 +00:00
|
|
|
BlockIO InterpreterAlterQuery::execute()
|
2013-12-18 11:19:37 +00:00
|
|
|
{
|
2019-03-15 16:14:13 +00:00
|
|
|
const auto & alter = query_ptr->as<ASTAlterQuery &>();
|
2017-04-25 15:21:03 +00:00
|
|
|
|
2019-03-15 16:14:13 +00:00
|
|
|
if (!alter.cluster.empty())
|
|
|
|
return executeDDLQueryOnCluster(query_ptr, context, {alter.database});
|
2017-04-25 15:21:03 +00:00
|
|
|
|
2019-03-15 16:14:13 +00:00
|
|
|
const String & table_name = alter.table;
|
|
|
|
String database_name = alter.database.empty() ? context.getCurrentDatabase() : alter.database;
|
2017-04-01 07:20:54 +00:00
|
|
|
StoragePtr table = context.getTable(database_name, table_name);
|
|
|
|
|
2018-12-05 16:13:52 +00:00
|
|
|
/// Add default database to table identifiers that we can encounter in e.g. default expressions,
|
|
|
|
/// mutation expression, etc.
|
|
|
|
AddDefaultDatabaseVisitor visitor(database_name);
|
2019-03-15 16:14:13 +00:00
|
|
|
ASTPtr command_list_ptr = alter.command_list->ptr();
|
2018-12-05 16:13:52 +00:00
|
|
|
visitor.visit(command_list_ptr);
|
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
AlterCommands alter_commands;
|
|
|
|
PartitionCommands partition_commands;
|
2018-02-02 16:02:43 +00:00
|
|
|
MutationCommands mutation_commands;
|
2019-05-28 21:17:48 +00:00
|
|
|
LiveViewCommands live_view_commands;
|
2019-03-15 16:14:13 +00:00
|
|
|
for (ASTAlterCommand * command_ast : alter.command_list->commands)
|
2018-06-13 13:49:27 +00:00
|
|
|
{
|
|
|
|
if (auto alter_command = AlterCommand::parse(command_ast))
|
|
|
|
alter_commands.emplace_back(std::move(*alter_command));
|
|
|
|
else if (auto partition_command = PartitionCommand::parse(command_ast))
|
|
|
|
partition_commands.emplace_back(std::move(*partition_command));
|
|
|
|
else if (auto mut_command = MutationCommand::parse(command_ast))
|
|
|
|
mutation_commands.emplace_back(std::move(*mut_command));
|
2019-05-28 21:17:48 +00:00
|
|
|
else if (auto live_view_command = LiveViewCommand::parse(command_ast))
|
|
|
|
live_view_commands.emplace_back(std::move(*live_view_command));
|
2018-06-13 13:49:27 +00:00
|
|
|
else
|
|
|
|
throw Exception("Wrong parameter type in ALTER query", ErrorCodes::LOGICAL_ERROR);
|
|
|
|
}
|
2018-02-02 16:02:43 +00:00
|
|
|
|
2018-06-13 13:49:27 +00:00
|
|
|
if (!mutation_commands.empty())
|
2018-02-02 16:02:43 +00:00
|
|
|
{
|
2019-08-19 19:02:20 +00:00
|
|
|
auto table_lock_holder = table->lockStructureForShare(false /* because mutation is executed asyncronously */, context.getCurrentQueryId());
|
|
|
|
MutationsInterpreter(table, mutation_commands, context).validate(table_lock_holder);
|
2018-02-02 16:02:43 +00:00
|
|
|
table->mutate(mutation_commands, context);
|
|
|
|
}
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2018-11-13 13:48:53 +00:00
|
|
|
if (!partition_commands.empty())
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2018-11-13 13:48:53 +00:00
|
|
|
partition_commands.validate(*table);
|
2018-11-26 14:43:40 +00:00
|
|
|
table->alterPartition(query_ptr, partition_commands, context);
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
|
2019-05-28 21:17:48 +00:00
|
|
|
if (!live_view_commands.empty())
|
|
|
|
{
|
2019-06-10 11:41:33 +00:00
|
|
|
live_view_commands.validate(*table);
|
2019-06-11 02:22:53 +00:00
|
|
|
for (const LiveViewCommand & command : live_view_commands)
|
2019-06-10 11:41:33 +00:00
|
|
|
{
|
|
|
|
auto live_view = std::dynamic_pointer_cast<StorageLiveView>(table);
|
|
|
|
switch (command.type)
|
|
|
|
{
|
|
|
|
case LiveViewCommand::REFRESH:
|
|
|
|
live_view->refresh(context);
|
|
|
|
break;
|
2019-05-28 21:17:48 +00:00
|
|
|
}
|
2019-06-10 11:41:33 +00:00
|
|
|
}
|
2019-05-28 21:17:48 +00:00
|
|
|
}
|
|
|
|
|
2018-02-02 16:02:43 +00:00
|
|
|
if (!alter_commands.empty())
|
|
|
|
{
|
2019-03-07 20:52:25 +00:00
|
|
|
auto table_lock_holder = table->lockAlterIntention(context.getCurrentQueryId());
|
2018-05-15 12:56:14 +00:00
|
|
|
alter_commands.validate(*table, context);
|
2019-03-07 20:52:25 +00:00
|
|
|
table->alter(alter_commands, database_name, table_name, context, table_lock_holder);
|
2018-02-02 16:02:43 +00:00
|
|
|
}
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
return {};
|
2013-12-18 11:19:37 +00:00
|
|
|
}
|
|
|
|
|
2016-01-11 21:46:36 +00:00
|
|
|
}
|