Skip to content
This repository has been archived by the owner on Oct 8, 2023. It is now read-only.

Commit

Permalink
V
Browse files Browse the repository at this point in the history
  • Loading branch information
mondrake committed Aug 30, 2023
1 parent 5d71085 commit 2af9e2c
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/Driver/Database/mysqli/TransactionManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,13 @@ protected function addClientSavepoint(string $name): bool {
return $this->connection->getClientConnection()->savepoint($name);
}

/**
* {@inheritdoc}
*/
protected function releaseClientSavepoint(string $name): bool {
return $this->connection->getClientConnection()->release_savepoint($name);
}

/**
* {@inheritdoc}
*/
Expand Down

0 comments on commit 2af9e2c

Please sign in to comment.