mirror of
https://github.com/nextcloud/server.git
synced 2026-04-15 22:11:17 -04:00
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
1 changed files with 3 additions and 1 deletions
|
|
@ -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 a new issue