mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-03 13:02:00 +00:00
Fix a test
This commit is contained in:
parent
426104a2d6
commit
bd3f32dc06
@ -41,7 +41,6 @@ bool ParserInsertQuery::parseImpl(Pos & pos, ASTPtr & node, Expected & expected)
|
|||||||
ParserKeyword s_with(Keyword::WITH);
|
ParserKeyword s_with(Keyword::WITH);
|
||||||
ParserToken s_lparen(TokenType::OpeningRoundBracket);
|
ParserToken s_lparen(TokenType::OpeningRoundBracket);
|
||||||
ParserToken s_rparen(TokenType::ClosingRoundBracket);
|
ParserToken s_rparen(TokenType::ClosingRoundBracket);
|
||||||
ParserToken s_semicolon(TokenType::Semicolon);
|
|
||||||
ParserIdentifier name_p(true);
|
ParserIdentifier name_p(true);
|
||||||
ParserList columns_p(std::make_unique<ParserInsertElement>(), std::make_unique<ParserToken>(TokenType::Comma), false);
|
ParserList columns_p(std::make_unique<ParserInsertElement>(), std::make_unique<ParserToken>(TokenType::Comma), false);
|
||||||
ParserFunction table_function_p{false};
|
ParserFunction table_function_p{false};
|
||||||
@ -149,8 +148,9 @@ bool ParserInsertQuery::parseImpl(Pos & pos, ASTPtr & node, Expected & expected)
|
|||||||
{
|
{
|
||||||
/// If VALUES is defined in query, everything except setting will be parsed as data,
|
/// If VALUES is defined in query, everything except setting will be parsed as data,
|
||||||
/// and if values followed by semicolon, the data should be null.
|
/// and if values followed by semicolon, the data should be null.
|
||||||
if (!s_semicolon.checkWithoutMoving(pos, expected))
|
if (pos->type != TokenType::Semicolon)
|
||||||
data = pos->begin;
|
data = pos->begin;
|
||||||
|
|
||||||
format_str = "Values";
|
format_str = "Values";
|
||||||
}
|
}
|
||||||
else if (s_format.ignore(pos, expected))
|
else if (s_format.ignore(pos, expected))
|
||||||
|
Loading…
Reference in New Issue
Block a user