Merge pull request #10762 from nextcloud/backport/10260/improved-sql-for-fetching-quota
[stable13] Use the path_hash instead of the path to query the filecache
This commit is contained in:
commit
d0f8a431c8
|
@ -376,7 +376,7 @@ class UserMountCache implements IUserMountCache {
|
|||
->innerJoin('m', 'filecache', 'f',
|
||||
$builder->expr()->andX(
|
||||
$builder->expr()->eq('m.storage_id', 'f.storage'),
|
||||
$builder->expr()->eq('f.path', $builder->createNamedParameter('files'))
|
||||
$builder->expr()->eq('f.path_hash', $builder->createNamedParameter(md5('files')))
|
||||
))
|
||||
->where($builder->expr()->eq('m.mount_point', $mountPoint))
|
||||
->andWhere($builder->expr()->in('m.user_id', $builder->createNamedParameter($userIds, IQueryBuilder::PARAM_STR_ARRAY)));
|
||||
|
|
Loading…
Reference in New Issue