Update InterpreterDropQuery.cpp

This commit is contained in:
alexey-milovidov 2018-02-08 22:14:22 +03:00 committed by GitHub
parent 9f66acaec5
commit a69dd93aab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -54,7 +54,7 @@ BlockIO InterpreterDropQuery::execute()
if (drop.database.empty() && !drop.temporary)
{
LOG_WARNING((&Logger::get("InterpreterDropQuery")),
"It is recommended to use `DROP TEMPORARY TABLE ` to delete temporary tables");
"It is recommended to use `DROP TEMPORARY TABLE` to delete temporary tables");
}
table->shutdown();
/// If table was already dropped by anyone, an exception will be thrown