Browse Source
Merge pull request #10260 from nextcloud/bugfix/7974/improved-sql-for-fetching-quota
Use the path_hash instead of the path to query the filecache
pull/10253/merge
Morris Jobke
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
lib/private/Files/Config/UserMountCache.php
|
|
|
@ -375,7 +375,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))); |
|
|
|
|