(&mut self)
| 8787 | } |
| 8788 | |
| 8789 | fn parse_start_transaction(&mut self) -> Result<Statement<Raw>, ParserError> { |
| 8790 | self.expect_keyword(TRANSACTION)?; |
| 8791 | Ok(Statement::StartTransaction(StartTransactionStatement { |
| 8792 | modes: self.parse_transaction_modes(false)?, |
| 8793 | })) |
| 8794 | } |
| 8795 | |
| 8796 | fn parse_begin(&mut self) -> Result<Statement<Raw>, ParserError> { |
| 8797 | let _ = self.parse_one_of_keywords(&[TRANSACTION, WORK]); |
no test coverage detected