ClickHouse/dbms/src/Interpreters/InterpreterDropQuery.cpp

142 lines
4.0 KiB
C++
Raw Normal View History

2011-11-05 23:31:19 +00:00
#include <Poco/File.h>
#include <DB/Common/escapeForFileName.h>
#include <DB/Parsers/ASTDropQuery.h>
#include <DB/Interpreters/InterpreterDropQuery.h>
#include <DB/Storages/IStorage.h>
2011-11-05 23:31:19 +00:00
namespace DB
{
InterpreterDropQuery::InterpreterDropQuery(ASTPtr query_ptr_, Context & context_)
: query_ptr(query_ptr_), context(context_)
{
}
void InterpreterDropQuery::execute()
{
2012-08-02 17:33:31 +00:00
String path = context.getPath();
String current_database = context.getCurrentDatabase();
ASTDropQuery & drop = typeid_cast<ASTDropQuery &>(*query_ptr);
2011-11-05 23:31:19 +00:00
2012-08-02 17:33:31 +00:00
String database_name = drop.database.empty() ? current_database : drop.database;
2011-11-05 23:31:19 +00:00
String database_name_escaped = escapeForFileName(database_name);
String data_path = path + "data/" + database_name_escaped + "/";
String metadata_path = path + "metadata/" + database_name_escaped + "/";
2011-11-05 23:31:19 +00:00
StorageVector tables_to_drop;
2011-11-05 23:31:19 +00:00
if (!drop.table.empty())
{
StoragePtr table;
if (drop.if_exists)
table = context.tryGetTable(database_name, drop.table);
else
table = context.getTable(database_name, drop.table);
if (table)
tables_to_drop.push_back(table);
2011-11-05 23:31:19 +00:00
else
return;
}
else
{
Poco::ScopedLock<Poco::Mutex> lock(context.getMutex());
if (!drop.if_exists)
context.assertDatabaseExists(database_name);
else if (!context.isDatabaseExist(database_name))
return;
Tables tables = context.getDatabases()[database_name];
for (auto & it : tables)
2011-11-05 23:31:19 +00:00
{
tables_to_drop.push_back(it.second);
2011-11-05 23:31:19 +00:00
}
}
for (StoragePtr table : tables_to_drop)
2011-11-05 23:31:19 +00:00
{
table->shutdown();
/// Если кто-то успел удалить эту таблицу, выбросит исключение.
2014-03-20 13:00:42 +00:00
auto table_lock = table->lockForAlter();
String current_table_name = table->getTableName();
/// Удаляем информацию о таблице из оперативки
context.detachTable(database_name, current_table_name);
/// Удаляем данные таблицы
if (!drop.detach)
2011-11-05 23:31:19 +00:00
{
String current_data_path = data_path + escapeForFileName(current_table_name);
String current_metadata_path = metadata_path + escapeForFileName(current_table_name) + ".sql";
/// Для таблиц типа ChunkRef, файла с метаданными не существует.
if (Poco::File(current_metadata_path).exists())
Poco::File(current_metadata_path).remove();
table->drop();
table->is_dropped = true;
if (Poco::File(current_data_path).exists())
Poco::File(current_data_path).remove(true);
2011-11-05 23:31:19 +00:00
}
}
if (drop.table.empty())
{
/// Удаление базы данных. Таблицы в ней уже удалены.
Poco::ScopedLock<Poco::Mutex> lock(context.getMutex());
/// Кто-то мог успеть удалить БД до нас.
context.assertDatabaseExists(database_name);
/// Кто-то мог успеть создать таблицу в удаляемой БД, пока мы удаляли таблицы без лока контекста.
if (!context.getDatabases()[database_name].empty())
throw Exception("New table appeared in database being dropped. Try dropping it again.", ErrorCodes::DATABASE_NOT_EMPTY);
/// Удаляем информацию о БД из оперативки
context.detachDatabase(database_name);
Poco::File(data_path).remove(false);
Poco::File(metadata_path).remove(false);
}
}
void InterpreterDropQuery::dropDetachedTable(String database_name, StoragePtr table, Context & context)
{
table->shutdown();
2014-03-20 13:00:42 +00:00
auto table_lock = table->lockForAlter();
String table_name = table->getTableName();
String path = context.getPath();
String database_name_escaped = escapeForFileName(database_name);
String data_path = path + "data/" + database_name_escaped + "/" + escapeForFileName(table_name);
String metadata_path = path + "metadata/" + database_name_escaped + "/" + escapeForFileName(table_name) + ".sql";
if (Poco::File(metadata_path).exists())
Poco::File(metadata_path).remove();
table->drop();
table->is_dropped = true;
if (Poco::File(data_path).exists())
Poco::File(data_path).remove(true);
2011-11-05 23:31:19 +00:00
}
}