ClickHouse/dbms/src/Interpreters/InterpreterOptimizeQuery.cpp

28 lines
641 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/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 ASTOptimizeQuery & ast = typeid_cast<const ASTOptimizeQuery &>(*query_ptr);
2016-12-12 07:24:56 +00:00
StoragePtr table = context.getTable(ast.database, ast.table);
auto table_lock = table->lockStructure(true, __PRETTY_FUNCTION__);
table->optimize(query_ptr, ast.partition, ast.final, ast.deduplicate, context);
return {};
2016-12-12 07:24:56 +00:00
}
}