Commit the current transaction.
(&mut self)
| 294 | |
| 295 | /// Commit the current transaction. |
| 296 | pub async fn commit(&mut self) -> NodeDbResult<()> { |
| 297 | let resp = self.send(OpCode::Commit, TextFields::default()).await?; |
| 298 | check_error(resp) |
| 299 | } |
| 300 | |
| 301 | /// Rollback the current transaction. |
| 302 | pub async fn rollback(&mut self) -> NodeDbResult<()> { |
nothing calls this directly
no test coverage detected