Fixed typo in comment [#CLICKHOUSE-2]

This commit is contained in:
Alexey Milovidov 2018-11-27 21:44:19 +03:00
parent b1bc7481d9
commit cdb272848c

View File

@ -89,7 +89,7 @@ BlockIO InterpreterDropQuery::executeToTable(String & database_name_, String & t
database_and_table.second->shutdown();
/// If table was already dropped by anyone, an exception will be thrown
auto table_lock = database_and_table.second->lockForAlter(__PRETTY_FUNCTION__);
/// Delete table metdata and table itself from memory
/// Delete table metadata and table itself from memory
database_and_table.first->removeTable(context, database_and_table.second->getTableName());
/// Delete table data
database_and_table.second->drop();