2017-04-01 09:19:00 +00:00
|
|
|
#include <Storages/IStorage.h>
|
|
|
|
#include <Parsers/ASTOptimizeQuery.h>
|
|
|
|
#include <Interpreters/InterpreterOptimizeQuery.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()
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
const ASTOptimizeQuery & ast = typeid_cast<const ASTOptimizeQuery &>(*query_ptr);
|
2016-12-12 07:24:56 +00:00
|
|
|
|
2017-04-01 07:20:54 +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
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
StoragePtr table = context.getTable(ast.database, ast.table);
|
|
|
|
auto table_lock = table->lockStructure(true);
|
2017-04-13 13:13:08 +00:00
|
|
|
table->optimize(ast.partition, ast.final, ast.deduplicate, context.getSettings());
|
2017-04-01 07:20:54 +00:00
|
|
|
return {};
|
2016-12-12 07:24:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|