File tree Expand file tree Collapse file tree 1 file changed +6
-8
lines changed
Expand file tree Collapse file tree 1 file changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -11032,8 +11032,8 @@ impl<'a> Parser<'a> {
1103211032 }
1103311033
1103411034 if self.dialect.supports_comma_separated_set_assignments() {
11035- if let Ok(v) = self
11036- .try_parse(|parser| parser.parse_comma_separated(Parser::parse_set_assignment))
11035+ if let Ok(v) =
11036+ self .try_parse(|parser| parser.parse_comma_separated(Parser::parse_set_assignment))
1103711037 {
1103811038 let (variables, values): (Vec<_>, Vec<_>) = v.into_iter().unzip();
1103911039
@@ -11103,12 +11103,10 @@ impl<'a> Parser<'a> {
1110311103 })
1110411104 }
1110511105 "TIMEZONE" => match self.parse_expr() {
11106- Ok(expr) => {
11107- Ok(Statement::SetTimeZone {
11108- local: modifier == Some(Keyword::LOCAL),
11109- value: expr,
11110- })
11111- }
11106+ Ok(expr) => Ok(Statement::SetTimeZone {
11107+ local: modifier == Some(Keyword::LOCAL),
11108+ value: expr,
11109+ }),
1111211110 _ => self.expected("timezone value", self.peek_token()),
1111311111 },
1111411112 "CHARACTERISTICS" => {
You can’t perform that action at this time.
0 commit comments