ClickHouse/src/Parsers/ASTUseQuery.h
2023-02-02 02:11:16 +01:00

34 lines
776 B
C++

#pragma once
#include <Parsers/IAST.h>
#include <Common/quoteString.h>
#include <IO/Operators.h>
namespace DB
{
/** USE query
*/
class ASTUseQuery : public IAST
{
public:
String database;
/** Get the text that identifies this element. */
String getID(char delim) const override { return "UseQuery" + (delim + database); }
ASTPtr clone() const override { return std::make_shared<ASTUseQuery>(*this); }
QueryKind getQueryKind() const override { return QueryKind::Use; }
protected:
void formatImpl(const FormatSettings & settings, FormatState &, FormatStateStacked) const override
{
settings.ostr << (settings.hilite ? hilite_keyword : "") << "USE " << (settings.hilite ? hilite_none : "") << backQuoteIfNeed(database);
}
};
}