(&mut self)
| 8535 | } |
| 8536 | |
| 8537 | fn parse_named_function(&mut self) -> Result<Function<Raw>, ParserError> { |
| 8538 | let name = self.parse_raw_name()?; |
| 8539 | self.parse_function(name) |
| 8540 | } |
| 8541 | |
| 8542 | /// Parses a function call in a position that only permits "windowless" |
| 8543 | /// function syntax (PostgreSQL's `func_expr_windowless`): DISTINCT, |
no test coverage detected