mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 18:14:03 +00:00
21 lines
389 B
C++
21 lines
389 B
C++
#pragma once
|
|
|
|
#include <DB/Parsers/IParserBase.h>
|
|
#include <DB/Parsers/ExpressionElementParsers.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/** Запрос типа такого:
|
|
* SET [GLOBAL] name1 = value1, name2 = value2, ...
|
|
*/
|
|
class ParserSetQuery : public IParserBase
|
|
{
|
|
protected:
|
|
String getName() { return "SET query"; }
|
|
bool parseImpl(Pos & pos, Pos end, ASTPtr & node, String & expected);
|
|
};
|
|
|
|
}
|