ClickHouse/dbms/src/Interpreters/InterpreterOptimizeQuery.cpp

32 lines
775 B
C++
Raw Normal View History

#include <Storages/IStorage.h>
#include <Parsers/ASTOptimizeQuery.h>
2017-05-23 18:24:43 +00:00
#include <Interpreters/Context.h>
#include <Interpreters/DDLWorker.h>
#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()
{
const auto & ast = query_ptr->as<ASTOptimizeQuery &>();
2016-12-12 07:24:56 +00:00
if (!ast.cluster.empty())
return executeDDLQueryOnCluster(query_ptr, context, {ast.database});
StoragePtr table = context.getTable(ast.database, ast.table);
auto table_lock = table->lockStructureForShare(true, context.getCurrentQueryId());
table->optimize(query_ptr, ast.partition, ast.final, ast.deduplicate, context);
return {};
2016-12-12 07:24:56 +00:00
}
}