Fix new clippy errors (#412)

This commit is contained in:
Andrew Lamb 2022-02-05 06:53:33 -05:00 committed by GitHub
parent fbc1d9659b
commit 5cbf1e797a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 14 additions and 5 deletions

View file

@ -2649,7 +2649,7 @@ impl<'a> Parser<'a> {
};
// Not Sure if Top should be cheked here as well. Trino doesn't support TOP.
let is_l_parent = if distinct {
let is_l_paren = if distinct {
self.consume_token(&Token::LParen)
} else {
false
@ -2657,8 +2657,8 @@ impl<'a> Parser<'a> {
let projection = self.parse_comma_separated(Parser::parse_select_item)?;
if is_l_parent {
self.consume_token(&Token::RParen);
if is_l_paren && !self.consume_token(&Token::RParen) {
return self.expected(")", self.peek_token());
}
// Note that for keywords to be properly handled here, they need to be