Browse Source

Merge pull request #19281 from nextcloud/fix/noid/get-unread-comments-with-indexes

for the DB ot pick an index specify the object_type
pull/19203/head
Roeland Jago Douma 6 years ago
committed by GitHub
parent
commit
4503cff51a
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 10
      lib/private/Comments/Manager.php

10
lib/private/Comments/Manager.php

@ -601,11 +601,13 @@ class Manager implements ICommentsManager {
$query = $qb->select('f.fileid')
->addSelect($qb->func()->count('c.id', 'num_ids'))
->from('filecache', 'f')
->leftJoin('f', 'comments', 'c', $qb->expr()->eq(
'f.fileid', $qb->expr()->castColumn('c.object_id', IQueryBuilder::PARAM_INT)
->leftJoin('f', 'comments', 'c', $qb->expr()->andX(
$qb->expr()->eq('f.fileid', $qb->expr()->castColumn('c.object_id', IQueryBuilder::PARAM_INT)),
$qb->expr()->eq('c.object_type', $qb->createNamedParameter('files'))
))
->leftJoin('c', 'comments_read_markers', 'm', $qb->expr()->eq(
'c.object_id', 'm.object_id'
->leftJoin('c', 'comments_read_markers', 'm', $qb->expr()->andX(
$qb->expr()->eq('c.object_id', 'm.object_id'),
$qb->expr()->eq('m.object_type', $qb->createNamedParameter('files'))
))
->where(
$qb->expr()->andX(

Loading…
Cancel
Save