Skip to content

Commit 8d5feb1

Browse files
Fixed bug that non-existing method exec called by SwoolePostgresqlClient. (#5386)
1 parent 4dd3068 commit 8d5feb1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Concerns/PostgreSqlSwooleExtManagesTransactions.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ protected function createTransaction()
179179
*/
180180
protected function createSavepoint()
181181
{
182-
$this->getPdo()->exec(
182+
$this->getPdo()->query(
183183
$this->queryGrammar->compileSavepoint('trans' . ($this->transactions + 1))
184184
);
185185
}
@@ -212,7 +212,7 @@ protected function performRollBack($toLevel)
212212
if ($toLevel == 0) {
213213
$this->getPdo()->query('ROLLBACK');
214214
} elseif ($this->queryGrammar->supportsSavepoints()) {
215-
$this->getPdo()->exec(
215+
$this->getPdo()->query(
216216
$this->queryGrammar->compileSavepointRollBack('trans' . ($toLevel + 1))
217217
);
218218
}

0 commit comments

Comments
 (0)