Skip to content

Commit 0621b8c

Browse files
fmt
1 parent ecd9e87 commit 0621b8c

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/parser/mod.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2443,10 +2443,7 @@ impl<'a> Parser<'a> {
24432443
/// Returns `Ok(None)` when the name is not an XML function or the
24442444
/// dialect does not support XML expressions, in which case the
24452445
/// caller should fall back to the regular function-call parser.
2446-
fn maybe_parse_xml_function(
2447-
&mut self,
2448-
name: &ObjectName,
2449-
) -> Result<Option<Expr>, ParserError> {
2446+
fn maybe_parse_xml_function(&mut self, name: &ObjectName) -> Result<Option<Expr>, ParserError> {
24502447
if !self.dialect.supports_xml_expressions() {
24512448
return Ok(None);
24522449
}

0 commit comments

Comments
 (0)