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

27 lines
448 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;
ASTUseQuery() {}
ASTUseQuery(StringRange range_) : IAST(range_) {}
/** Получить текст, который идентифицирует этот элемент. */
2012-12-27 16:23:12 +00:00
String getID() const { return "UseQuery_" + database; };
2012-07-12 19:49:22 +00:00
ASTPtr clone() const { return new ASTUseQuery(*this); }
};
}