(&mut self)
| 8794 | } |
| 8795 | |
| 8796 | fn parse_begin(&mut self) -> Result<Statement<Raw>, ParserError> { |
| 8797 | let _ = self.parse_one_of_keywords(&[TRANSACTION, WORK]); |
| 8798 | Ok(Statement::StartTransaction(StartTransactionStatement { |
| 8799 | modes: self.parse_transaction_modes(false)?, |
| 8800 | })) |
| 8801 | } |
| 8802 | |
| 8803 | fn parse_transaction_modes( |
| 8804 | &mut self, |
no test coverage detected