ClickHouse/dbms/include/DB/Interpreters/InterpreterOptimizeQuery.h

39 lines
782 B
C
Raw Normal View History

2012-07-31 19:08:49 +00:00
#pragma once
#include <DB/Storages/IStorage.h>
#include <DB/Parsers/ASTOptimizeQuery.h>
#include <DB/Interpreters/Context.h>
2015-06-18 02:11:05 +00:00
#include <DB/Interpreters/IInterpreter.h>
2012-07-31 19:08:49 +00:00
namespace DB
{
/** Просто вызвать метод optimize у таблицы.
*/
2015-06-18 02:11:05 +00:00
class InterpreterOptimizeQuery : public IInterpreter
2012-07-31 19:08:49 +00:00
{
public:
InterpreterOptimizeQuery(ASTPtr query_ptr_, Context & context_)
: query_ptr(query_ptr_), context(context_)
{
}
2012-07-31 19:08:49 +00:00
2015-06-18 02:11:05 +00:00
BlockIO execute() override
2012-07-31 19:08:49 +00:00
{
const ASTOptimizeQuery & ast = typeid_cast<const ASTOptimizeQuery &>(*query_ptr);
StoragePtr table = context.getTable(ast.database, ast.table);
auto table_lock = table->lockStructure(true);
table->optimize(context.getSettings());
2015-06-18 02:11:05 +00:00
return {};
2012-07-31 19:08:49 +00:00
}
private:
ASTPtr query_ptr;
Context context;
};
}