Skip to content

Commit 9b2e8d0

Browse files
committed
update
1 parent 3fade60 commit 9b2e8d0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/parser/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13838,7 +13838,7 @@ impl<'a> Parser<'a> {
1383813838
self.expect_token(&Token::LParen)?;
1383913839
let aggregate_functions = self.parse_comma_separated(Self::parse_aliased_function_call)?;
1384013840
self.expect_keyword_is(Keyword::FOR)?;
13841-
let value_column = if self.peek_token().token == Token::LParen {
13841+
let value_column = if self.peek_token_ref().token == Token::LParen {
1384213842
self.parse_parenthesized_compound_identifier_list(Mandatory, false)?
1384313843
} else {
1384413844
vec![Expr::CompoundIdentifier(self.parse_period_separated(|p| p.parse_identifier())?)]

0 commit comments

Comments
 (0)