From dd6424b4ba120d8d2ac1f36a85981bfeaa4ab59d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=90=91=E6=9E=97?= Date: Fri, 25 Feb 2022 18:05:46 +0800 Subject: [PATCH] modify plugin name --- Mysql/PDO.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Mysql/PDO.php b/Mysql/PDO.php index b01f15a..ea3e8a2 100644 --- a/Mysql/PDO.php +++ b/Mysql/PDO.php @@ -149,6 +149,7 @@ class PDO implements StopHeartbeatCheck */ public function commit() { + var_dump($this->_transaction); if ($this->_transaction == 0) { $this->_pdo()->commit(); } @@ -161,6 +162,7 @@ class PDO implements StopHeartbeatCheck */ public function rollback() { + var_dump($this->_transaction); if ($this->_transaction == 0) { $this->_pdo()->rollBack(); }