2012-08-02 19:05:18 +00:00
|
|
|
#pragma once
|
|
|
|
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Parsers/IParserBase.h>
|
|
|
|
#include <Parsers/ExpressionElementParsers.h>
|
2012-08-02 19:05:18 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2017-05-27 17:29:55 +00:00
|
|
|
/** Query like this:
|
2017-09-17 18:49:43 +00:00
|
|
|
* SET name1 = value1, name2 = value2, ...
|
2012-08-02 19:05:18 +00:00
|
|
|
*/
|
|
|
|
class ParserSetQuery : public IParserBase
|
|
|
|
{
|
2015-06-05 21:28:04 +00:00
|
|
|
public:
|
2017-08-04 15:54:00 +00:00
|
|
|
explicit ParserSetQuery(bool parse_only_internals_ = false) : parse_only_internals(parse_only_internals_) {}
|
2020-04-24 16:04:54 +00:00
|
|
|
static bool parseNameValuePair(SettingChange & change, IParser::Pos & pos, Expected & expected);
|
2012-08-02 19:05:18 +00:00
|
|
|
protected:
|
2017-08-04 15:54:00 +00:00
|
|
|
const char * getName() const override { return "SET query"; }
|
|
|
|
bool parseImpl(Pos & pos, ASTPtr & node, Expected & expected) override;
|
2017-09-17 18:49:43 +00:00
|
|
|
/// Parse the list `name = value` pairs, without SET.
|
2017-04-01 07:20:54 +00:00
|
|
|
bool parse_only_internals;
|
2012-08-02 19:05:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|