diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-11-09 12:13:30 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2018-11-09 12:13:30 +0100 |
commit | 5273639d0e16e946ec25a51cfdd6696fde3d07cd (patch) | |
tree | 87a7c45ab576075f6ede17b860c16a81b7b54d7c /lib/public/IDBConnection.php | |
parent | 230e93f5756dca187f77c8df3cf69e3d7e3d05ff (diff) | |
download | nextcloud-server-5273639d0e16e946ec25a51cfdd6696fde3d07cd.tar.gz nextcloud-server-5273639d0e16e946ec25a51cfdd6696fde3d07cd.zip |
Add deprecation message ofr insertIfNotExist
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'lib/public/IDBConnection.php')
-rw-r--r-- | lib/public/IDBConnection.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/public/IDBConnection.php b/lib/public/IDBConnection.php index 204d7bc99ed..b3abe464845 100644 --- a/lib/public/IDBConnection.php +++ b/lib/public/IDBConnection.php @@ -116,6 +116,7 @@ interface IDBConnection { * @return int number of inserted rows * @throws \Doctrine\DBAL\DBALException * @since 6.0.0 - parameter $compare was added in 8.1.0, return type changed from boolean in 8.1.0 + * @deprecated 15.0.0 - use unique index and "try { $db->insert() } catch (UniqueConstraintViolationException $e) {}" instead, because it is more reliable and does not have the risk for deadlocks - see https://github.com/nextcloud/server/pull/12371 */ public function insertIfNotExist($table, $input, array $compare = null); |