mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 05:32:52 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
32 lines
694 B
C++
32 lines
694 B
C++
#pragma once
|
|
|
|
#include <Parsers/IAST.h>
|
|
#include <Common/quoteString.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); }
|
|
|
|
protected:
|
|
void formatImpl(const FormatSettings & settings, FormatState &, FormatStateStacked) const override
|
|
{
|
|
settings.ostr << (settings.hilite ? hilite_keyword : "") << "USE " << (settings.hilite ? hilite_none : "") << backQuoteIfNeed(database);
|
|
return;
|
|
}
|
|
};
|
|
|
|
}
|