We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ecd9e87 commit 0621b8cCopy full SHA for 0621b8c
src/parser/mod.rs
@@ -2443,10 +2443,7 @@ impl<'a> Parser<'a> {
2443
/// Returns `Ok(None)` when the name is not an XML function or the
2444
/// dialect does not support XML expressions, in which case the
2445
/// 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> {
+ fn maybe_parse_xml_function(&mut self, name: &ObjectName) -> Result<Option<Expr>, ParserError> {
2450
if !self.dialect.supports_xml_expressions() {
2451
return Ok(None);
2452
}
0 commit comments