2017-04-01 09:19:00 +00:00
|
|
|
#include <Storages/IStorage.h>
|
|
|
|
#include <Parsers/ASTOptimizeQuery.h>
|
2017-05-23 18:24:43 +00:00
|
|
|
#include <Interpreters/Context.h>
|
2018-07-20 05:46:48 +00:00
|
|
|
#include <Interpreters/DDLWorker.h>
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Interpreters/InterpreterOptimizeQuery.h>
|
2017-07-13 20:58:19 +00:00
|
|
|
#include <Common/typeid_cast.h>
|
2016-12-12 07:24:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2017-04-08 01:32:05 +00:00
|
|
|
namespace ErrorCodes
|
|
|
|
{
|
|
|
|
extern const int BAD_ARGUMENTS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-12-12 07:24:56 +00:00
|
|
|
BlockIO InterpreterOptimizeQuery::execute()
|
|
|
|
{
|
2019-03-08 09:45:34 +00:00
|
|
|
const auto * ast = query_ptr->As<ASTOptimizeQuery>();
|
2016-12-12 07:24:56 +00:00
|
|
|
|
2019-03-08 09:45:34 +00:00
|
|
|
if (!ast->cluster.empty())
|
|
|
|
return executeDDLQueryOnCluster(query_ptr, context, {ast->database});
|
2018-07-20 05:46:48 +00:00
|
|
|
|
2019-03-08 09:45:34 +00:00
|
|
|
StoragePtr table = context.getTable(ast->database, ast->table);
|
2019-03-07 18:04:47 +00:00
|
|
|
auto table_lock = table->lockStructureForShare(true, context.getCurrentQueryId());
|
2019-03-08 09:45:34 +00:00
|
|
|
table->optimize(query_ptr, ast->partition, ast->final, ast->deduplicate, context);
|
2017-04-01 07:20:54 +00:00
|
|
|
return {};
|
2016-12-12 07:24:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|