(self)
| 110 | } |
| 111 | |
| 112 | fn map_no_statement_parser_err(self) -> Result<T, ParserStatementError> { |
| 113 | self.map_err(|error| ParserStatementError { |
| 114 | error, |
| 115 | statement: None, |
| 116 | }) |
| 117 | } |
| 118 | } |
| 119 | |
| 120 | /// Parses a SQL string containing zero or more SQL statements. |
no outgoing calls
no test coverage detected