ClickHouse/dbms/src/Interpreters/InterpreterOptimizeQuery.cpp

23 lines
660 B
C++
Raw Normal View History

2016-12-12 07:24:56 +00:00
#include <DB/Storages/IStorage.h>
#include <DB/Parsers/ASTOptimizeQuery.h>
#include <DB/Interpreters/InterpreterOptimizeQuery.h>
namespace DB
{
BlockIO InterpreterOptimizeQuery::execute()
{
const ASTOptimizeQuery & ast = typeid_cast<const ASTOptimizeQuery &>(*query_ptr);
2016-12-12 07:24:56 +00:00
if (ast.final && ast.partition.empty())
throw Exception("FINAL flag for OPTIMIZE query is meaningful only with specified PARTITION", ErrorCodes::BAD_ARGUMENTS);
2016-12-12 07:24:56 +00:00
StoragePtr table = context.getTable(ast.database, ast.table);
auto table_lock = table->lockStructure(true);
table->optimize(ast.partition, ast.final, context.getSettings());
return {};
2016-12-12 07:24:56 +00:00
}
}