mirror of
https://github.com/nextcloud/server.git
synced 2026-07-16 23:12:04 -04:00
Merge pull request #15673 from owncloud/issue/15577-transaction-read-committed
[master] Using TRANSACTION_READ_COMMITTED
This commit is contained in:
commit
3e1b58dd3d
1 changed files with 2 additions and 0 deletions
|
|
@ -79,6 +79,8 @@ class Connection extends \Doctrine\DBAL\Connection implements IDBConnection {
|
|||
parent::__construct($params, $driver, $config, $eventManager);
|
||||
$this->adapter = new $params['adapter']($this);
|
||||
$this->tablePrefix = $params['tablePrefix'];
|
||||
|
||||
parent::setTransactionIsolation(parent::TRANSACTION_READ_COMMITTED);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in a new issue