(&mut self)
| 1304 | /// Commits and clears the current transaction. |
| 1305 | #[instrument(level = "debug")] |
| 1306 | async fn commit_transaction(&mut self) -> Result<(), io::Error> { |
| 1307 | self.end_transaction(EndTransactionAction::Commit).await |
| 1308 | } |
| 1309 | |
| 1310 | /// Rollback and clears the current transaction. |
| 1311 | #[instrument(level = "debug")] |
no test coverage detected