mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
fix parser
This commit is contained in:
parent
ebb19cd9b5
commit
0f1cf3a3b8
@ -313,11 +313,20 @@ bool ParserAlterSettingsProfileElements::parseImpl(Pos & pos, ASTPtr & node, Exp
|
||||
auto parse_element = [&]
|
||||
{
|
||||
if (ParserKeyword{Keyword::ADD}.ignore(pos, expected))
|
||||
{
|
||||
action = "ADD";
|
||||
target = "";
|
||||
}
|
||||
else if (ParserKeyword{Keyword::DROP}.ignore(pos, expected))
|
||||
{
|
||||
action = "DROP";
|
||||
target = "";
|
||||
}
|
||||
else if (ParserKeyword{Keyword::MODIFY}.ignore(pos, expected))
|
||||
{
|
||||
action = "MODIFY";
|
||||
target = "";
|
||||
}
|
||||
|
||||
if (!action.empty())
|
||||
{
|
||||
@ -329,10 +338,11 @@ bool ParserAlterSettingsProfileElements::parseImpl(Pos & pos, ASTPtr & node, Exp
|
||||
target = "PROFILES";
|
||||
else if (ParserKeyword{Keyword::SETTINGS}.ignore(pos, expected) || ParserKeyword{Keyword::SETTING}.ignore(pos, expected))
|
||||
target = "SETTINGS";
|
||||
else
|
||||
return false;
|
||||
}
|
||||
|
||||
if (target.empty())
|
||||
return false;
|
||||
|
||||
if (target == "PROFILES")
|
||||
{
|
||||
auto element = std::make_shared<ASTSettingsProfileElement>();
|
||||
|
Loading…
Reference in New Issue
Block a user