summaryrefslogtreecommitdiffstats
path: root/lib/private/Comments
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2017-07-22 12:21:00 +0200
committerJoas Schilling <coding@schilljs.com>2017-08-02 09:48:16 +0200
commit20f8d1094ab9958dc50104a79a2ad0f0a9e0ce1a (patch)
tree6d4a58f43aa068cc593f30cbd98ce4737016423a /lib/private/Comments
parent106df7bc330a2c2e6d974e33be2bed26e22b538e (diff)
downloadnextcloud-server-20f8d1094ab9958dc50104a79a2ad0f0a9e0ce1a.tar.gz
nextcloud-server-20f8d1094ab9958dc50104a79a2ad0f0a9e0ce1a.zip
Can not insert auto increment on oracle
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/private/Comments')
-rw-r--r--lib/private/Comments/Manager.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Comments/Manager.php b/lib/private/Comments/Manager.php
index 0c2a5efe601..078e1eef4d3 100644
--- a/lib/private/Comments/Manager.php
+++ b/lib/private/Comments/Manager.php
@@ -411,7 +411,7 @@ class Manager implements ICommentsManager {
*/
public function getNumberOfUnreadCommentsForFolder($folderId, IUser $user) {
$qb = $this->dbConn->getQueryBuilder();
- $query = $qb->select('fileid')
+ $query = $qb->select('f.fileid')
->selectAlias(
$qb->createFunction('COUNT(' . $qb->getColumnName('c.id') . ')'),
'num_ids'