2017-04-01 09:19:00 +00:00
|
|
|
#include <Parsers/ASTRenameQuery.h>
|
|
|
|
#include <Databases/IDatabase.h>
|
2017-05-23 18:24:43 +00:00
|
|
|
#include <Interpreters/Context.h>
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Interpreters/InterpreterRenameQuery.h>
|
|
|
|
#include <Storages/IStorage.h>
|
2017-04-21 12:39:28 +00:00
|
|
|
#include <Interpreters/DDLWorker.h>
|
2020-01-26 09:49:53 +00:00
|
|
|
#include <Access/AccessRightsElement.h>
|
2017-07-13 20:58:19 +00:00
|
|
|
#include <Common/typeid_cast.h>
|
2012-06-18 06:20:23 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
|
2017-05-23 18:24:43 +00:00
|
|
|
InterpreterRenameQuery::InterpreterRenameQuery(const ASTPtr & query_ptr_, Context & context_)
|
2017-04-01 07:20:54 +00:00
|
|
|
: query_ptr(query_ptr_), context(context_)
|
2012-06-18 06:20:23 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-04-08 01:06:15 +00:00
|
|
|
struct RenameDescription
|
|
|
|
{
|
2017-12-01 21:13:25 +00:00
|
|
|
RenameDescription(const ASTRenameQuery::Element & elem, const String & current_database) :
|
2017-04-01 07:20:54 +00:00
|
|
|
from_database_name(elem.from.database.empty() ? current_database : elem.from.database),
|
|
|
|
from_table_name(elem.from.table),
|
|
|
|
to_database_name(elem.to.database.empty() ? current_database : elem.to.database),
|
|
|
|
to_table_name(elem.to.table)
|
|
|
|
{}
|
|
|
|
|
|
|
|
String from_database_name;
|
|
|
|
String from_table_name;
|
|
|
|
|
|
|
|
String to_database_name;
|
|
|
|
String to_table_name;
|
2015-04-08 01:06:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2015-06-18 02:11:05 +00:00
|
|
|
BlockIO InterpreterRenameQuery::execute()
|
2012-06-18 06:20:23 +00:00
|
|
|
{
|
2020-01-24 16:20:36 +00:00
|
|
|
const auto & rename = query_ptr->as<const ASTRenameQuery &>();
|
2017-04-21 12:39:28 +00:00
|
|
|
|
2019-03-15 16:14:13 +00:00
|
|
|
if (!rename.cluster.empty())
|
2020-01-24 16:20:36 +00:00
|
|
|
return executeDDLQueryOnCluster(query_ptr, context, getRequiredAccess());
|
2018-04-17 19:33:58 +00:00
|
|
|
|
2020-01-24 16:20:36 +00:00
|
|
|
context.checkAccess(getRequiredAccess());
|
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();
|
2014-06-26 00:58:14 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
/** In case of error while renaming, it is possible that only part of tables was renamed
|
|
|
|
* or we will be in inconsistent state. (It is worth to be fixed.)
|
|
|
|
*/
|
2012-06-18 06:20:23 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
std::vector<RenameDescription> descriptions;
|
2019-03-15 16:14:13 +00:00
|
|
|
descriptions.reserve(rename.elements.size());
|
2015-04-08 01:06:15 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
/// To avoid deadlocks, we must acquire locks for tables in same order in any different RENAMES.
|
|
|
|
struct UniqueTableName
|
|
|
|
{
|
|
|
|
String database_name;
|
|
|
|
String table_name;
|
2015-04-08 01:06:15 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
UniqueTableName(const String & database_name_, const String & table_name_)
|
|
|
|
: database_name(database_name_), table_name(table_name_) {}
|
2015-04-08 01:06:15 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
bool operator< (const UniqueTableName & rhs) const
|
|
|
|
{
|
|
|
|
return std::tie(database_name, table_name) < std::tie(rhs.database_name, rhs.table_name);
|
|
|
|
}
|
|
|
|
};
|
2015-04-08 01:06:15 +00:00
|
|
|
|
2019-01-22 19:56:53 +00:00
|
|
|
/// Don't allow to drop tables (that we are renaming); don't allow to create tables in places where tables will be renamed.
|
2017-04-01 07:20:54 +00:00
|
|
|
std::map<UniqueTableName, std::unique_ptr<DDLGuard>> table_guards;
|
2015-04-08 01:06:15 +00:00
|
|
|
|
2019-03-15 16:14:13 +00:00
|
|
|
for (const auto & elem : rename.elements)
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2017-12-01 21:13:25 +00:00
|
|
|
descriptions.emplace_back(elem, current_database);
|
2020-01-24 16:20:36 +00:00
|
|
|
const auto & description = descriptions.back();
|
2016-03-22 01:33:17 +00:00
|
|
|
|
2020-01-24 16:20:36 +00:00
|
|
|
UniqueTableName from(description.from_database_name, description.from_table_name);
|
|
|
|
UniqueTableName to(description.to_database_name, description.to_table_name);
|
2016-03-22 01:33:17 +00:00
|
|
|
|
2019-08-31 10:37:28 +00:00
|
|
|
table_guards[from];
|
|
|
|
table_guards[to];
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
2012-06-18 06:20:23 +00:00
|
|
|
|
2020-02-10 18:31:52 +00:00
|
|
|
auto & database_catalog = DatabaseCatalog::instance();
|
|
|
|
|
2019-08-31 10:37:28 +00:00
|
|
|
/// Must do it in consistent order.
|
|
|
|
for (auto & table_guard : table_guards)
|
2020-02-10 18:31:52 +00:00
|
|
|
table_guard.second = database_catalog.getDDLGuard(table_guard.first.database_name, table_guard.first.table_name);
|
2012-06-18 06:20:23 +00:00
|
|
|
|
2019-08-27 23:47:30 +00:00
|
|
|
for (auto & elem : descriptions)
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2020-03-13 15:41:36 +00:00
|
|
|
database_catalog.assertTableDoesntExist(StorageID(elem.to_database_name, elem.to_table_name));
|
2014-03-20 10:59:45 +00:00
|
|
|
|
2020-02-10 13:10:17 +00:00
|
|
|
database_catalog.getDatabase(elem.from_database_name)->renameTable(
|
2019-08-31 10:37:28 +00:00
|
|
|
context,
|
|
|
|
elem.from_table_name,
|
2020-02-10 13:10:17 +00:00
|
|
|
*database_catalog.getDatabase(elem.to_database_name),
|
2019-12-02 19:11:18 +00:00
|
|
|
elem.to_table_name);
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
2015-06-18 02:11:05 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
return {};
|
2012-06-18 06:20:23 +00:00
|
|
|
}
|
|
|
|
|
2020-01-24 16:20:36 +00:00
|
|
|
AccessRightsElements InterpreterRenameQuery::getRequiredAccess() const
|
|
|
|
{
|
|
|
|
AccessRightsElements required_access;
|
|
|
|
const auto & rename = query_ptr->as<const ASTRenameQuery &>();
|
|
|
|
for (const auto & elem : rename.elements)
|
|
|
|
{
|
|
|
|
required_access.emplace_back(AccessType::SELECT | AccessType::DROP_TABLE, elem.from.database, elem.from.table);
|
|
|
|
required_access.emplace_back(AccessType::CREATE_TABLE | AccessType::INSERT, elem.to.database, elem.to.table);
|
|
|
|
}
|
|
|
|
return required_access;
|
|
|
|
}
|
2012-06-18 06:20:23 +00:00
|
|
|
|
|
|
|
}
|