mirror of
https://github.com/nextcloud/server.git
synced 2026-06-09 08:44:07 -04:00
Merge pull request #49420 from nextcloud/fix/etag-constraint-search-query
This commit is contained in:
commit
e2040980de
1 changed files with 1 additions and 1 deletions
|
|
@ -48,7 +48,7 @@ class CacheQueryBuilder extends ExtendedQueryBuilder {
|
|||
public function selectFileCache(?string $alias = null, bool $joinExtendedCache = true) {
|
||||
$name = $alias ?: 'filecache';
|
||||
$this->select("$name.fileid", 'storage', 'path', 'path_hash', "$name.parent", "$name.name", 'mimetype', 'mimepart', 'size', 'mtime',
|
||||
'storage_mtime', 'encrypted', 'etag', "$name.permissions", 'checksum', 'unencrypted_size')
|
||||
'storage_mtime', 'encrypted', "$name.etag", "$name.permissions", 'checksum', 'unencrypted_size')
|
||||
->from('filecache', $name);
|
||||
|
||||
if ($joinExtendedCache) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue