Fixed Transaction#executeOther when using dbType

This commit is contained in:
Rsl1122 2019-03-31 14:58:27 +03:00
parent 9b29edd16e
commit 7002783dac

View File

@ -141,9 +141,11 @@ public abstract class Transaction {
protected void executeOther(Transaction transaction) {
transaction.db = db;
transaction.dbType = dbType;
transaction.connection = this.connection;
transaction.performOperations();
transaction.connection = null;
transaction.dbType = null;
transaction.db = null;
}