Merge pull request #9809 from owncloud/check-transaction-before-commit-migration-master
only commit in case a transaction is active
This commit is contained in:
commit
fb0416884f
|
@ -110,7 +110,9 @@ class Migrator {
|
|||
$this->dropTable($tmpName);
|
||||
} catch (DBALException $e) {
|
||||
// pgsql needs to commit it's failed transaction before doing anything else
|
||||
$this->connection->commit();
|
||||
if ($this->connection->isTransactionActive()) {
|
||||
$this->connection->commit();
|
||||
}
|
||||
$this->dropTable($tmpName);
|
||||
throw new MigrationException($table->getName(), $e->getMessage());
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue