2012-07-31 19:08:49 +00:00
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#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_)
|
2015-04-14 13:44:38 +00:00
|
|
|
|
: query_ptr(query_ptr_), context(context_)
|
|
|
|
|
{
|
|
|
|
|
}
|
2012-07-31 19:08:49 +00:00
|
|
|
|
|
2016-12-12 07:24:56 +00:00
|
|
|
|
BlockIO execute() override;
|
2012-07-31 19:08:49 +00:00
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
ASTPtr query_ptr;
|
|
|
|
|
Context context;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|