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

34 lines
772 B
C++
Raw Normal View History

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