ClickHouse/dbms/include/DB/Parsers/ASTOptimizeQuery.h

35 lines
881 B
C
Raw Normal View History

2012-07-31 19:08:49 +00:00
#pragma once
#include <DB/Parsers/IAST.h>
namespace DB
{
/** OPTIMIZE запрос
*/
class ASTOptimizeQuery : public IAST
{
public:
String database;
String table;
2014-12-17 15:26:24 +00:00
ASTOptimizeQuery() = default;
ASTOptimizeQuery(const StringRange range_) : IAST(range_) {}
2012-07-31 19:08:49 +00:00
/** Получить текст, который идентифицирует этот элемент. */
2014-12-17 15:26:24 +00:00
String getID() const override { return "OptimizeQuery_" + database + "_" + table; };
2012-07-31 19:08:49 +00:00
2014-12-17 15:26:24 +00:00
ASTPtr clone() const override { return new ASTOptimizeQuery(*this); }
protected:
void formatImpl(const FormatSettings & settings, FormatState & state, FormatStateStacked frame) const override
{
settings.ostr << (settings.hilite ? hilite_keyword : "") << "OPTIMIZE TABLE " << (settings.hilite ? hilite_none : "")
<< (!database.empty() ? backQuoteIfNeed(database) + "." : "") << backQuoteIfNeed(table);
}
2012-07-31 19:08:49 +00:00
};
}