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

37 lines
602 B
C
Raw Normal View History

2012-08-02 19:04:26 +00:00
#pragma once
#include <DB/Core/Field.h>
#include <DB/Parsers/IAST.h>
namespace DB
{
/** SET запрос
*/
class ASTSetQuery : public IAST
{
public:
struct Change
{
String name;
Field value;
};
typedef std::vector<Change> Changes;
Changes changes;
bool global; /// Если запрос SET GLOBAL.
ASTSetQuery() {}
ASTSetQuery(StringRange range_) : IAST(range_) {}
/** Получить текст, который идентифицирует этот элемент. */
2012-12-27 16:23:12 +00:00
String getID() const { return "Set"; };
2012-08-02 19:04:26 +00:00
ASTPtr clone() const { return new ASTSetQuery(*this); }
};
}