File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -827,7 +827,6 @@ define_keywords!(
827827 RECEIVE ,
828828 RECLUSTER ,
829829 RECURSIVE ,
830- REDUCE ,
831830 REF ,
832831 REFERENCES ,
833832 REFERENCING ,
@@ -1053,7 +1052,6 @@ define_keywords!(
10531052 TRACE ,
10541053 TRAILING ,
10551054 TRANSACTION ,
1056- TRANSFORM ,
10571055 TRANSIENT ,
10581056 TRANSLATE ,
10591057 TRANSLATE_REGEX ,
Original file line number Diff line number Diff line change @@ -1624,8 +1624,8 @@ impl<'a> Parser<'a> {
16241624 // which is then followed by an arrow, which indicates a lambda function with a single, typed parameter.
16251625 // For example: `a INT -> a * 2`.
16261626 Token::Word(_)
1627- if self.peek_nth_token_ref(1).token == Token::Arrow
1628- && self.dialect.supports_lambda_functions() =>
1627+ if self.dialect.supports_lambda_functions()
1628+ && self.peek_nth_token_ref(1).token == Token::Arrow =>
16291629 {
16301630 let data_type = self.parse_data_type()?;
16311631 self.expect_token(&Token::Arrow)?;
You can’t perform that action at this time.
0 commit comments