mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 18:14:03 +00:00
35 lines
670 B
C++
35 lines
670 B
C++
#pragma once
|
||
|
||
#include <DB/Storages/IStorage.h>
|
||
#include <DB/Parsers/ASTOptimizeQuery.h>
|
||
#include <DB/Interpreters/Context.h>
|
||
|
||
|
||
namespace DB
|
||
{
|
||
|
||
|
||
/** Просто вызвать метод optimize у таблицы.
|
||
*/
|
||
class InterpreterOptimizeQuery
|
||
{
|
||
public:
|
||
InterpreterOptimizeQuery(ASTPtr query_ptr_, Context & context_)
|
||
: query_ptr(query_ptr_), context(context_) {}
|
||
|
||
void execute()
|
||
{
|
||
const ASTOptimizeQuery & ast = dynamic_cast<const ASTOptimizeQuery &>(*query_ptr);
|
||
StoragePtr table = context.getTable(ast.database, ast.table);
|
||
auto table_lock = table->lockStructure(true);
|
||
table->optimize();
|
||
}
|
||
|
||
private:
|
||
ASTPtr query_ptr;
|
||
Context context;
|
||
};
|
||
|
||
|
||
}
|