diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-08-26 03:56:37 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-08-26 03:56:37 +0200 |
commit | 534b2e407a80405c636b1ebd4486d01b9d3147bd (patch) | |
tree | 540fc589d148d8962b057b4914fbc59539251414 /lib/private/db | |
parent | b45ae1b32e41951a879bdbbdbbe0cb04dd86cda1 (diff) | |
parent | 6f6a5f6c2981cd046abc0530c4b6a222e67f17a7 (diff) | |
download | nextcloud-server-534b2e407a80405c636b1ebd4486d01b9d3147bd.tar.gz nextcloud-server-534b2e407a80405c636b1ebd4486d01b9d3147bd.zip |
Merge pull request #17662 from owncloud/locking-db
Database backend for locking
Diffstat (limited to 'lib/private/db')
-rw-r--r-- | lib/private/db/connection.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/private/db/connection.php b/lib/private/db/connection.php index def3f2fd120..4d33cd968af 100644 --- a/lib/private/db/connection.php +++ b/lib/private/db/connection.php @@ -291,4 +291,14 @@ class Connection extends \Doctrine\DBAL\Connection implements IDBConnection { protected function replaceTablePrefix($statement) { return str_replace( '*PREFIX*', $this->tablePrefix, $statement ); } + + /** + * Check if a transaction is active + * + * @return bool + * @since 8.2.0 + */ + public function inTransaction() { + return $this->getTransactionNestingLevel() > 0; + } } |