badmfck-api-server 2.2.7 → 2.2.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -586,6 +586,12 @@ class MysqlService extends BaseService_1.BaseService {
|
|
|
586
586
|
});
|
|
587
587
|
return;
|
|
588
588
|
}
|
|
589
|
+
for (let i of this.transactions) {
|
|
590
|
+
if (i.conn === conn) {
|
|
591
|
+
(0, LogService_1.logInfo)("Your connection is in transaction");
|
|
592
|
+
break;
|
|
593
|
+
}
|
|
594
|
+
}
|
|
589
595
|
this.sendQuery(conn, query, resolve, rollbackQuery);
|
|
590
596
|
}
|
|
591
597
|
catch (e) {
|