From e198dc1b200f3ade93498e0ea7b468c87d46748a Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Tue, 4 May 2021 19:06:02 +0200 Subject: rework search api to allow searching on multiple caches at once Signed-off-by: Robin Appelman --- lib/private/Files/Cache/FailedCache.php | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'lib/private/Files/Cache/FailedCache.php') diff --git a/lib/private/Files/Cache/FailedCache.php b/lib/private/Files/Cache/FailedCache.php index 01959585547..eddab8c19d3 100644 --- a/lib/private/Files/Cache/FailedCache.php +++ b/lib/private/Files/Cache/FailedCache.php @@ -22,6 +22,7 @@ namespace OC\Files\Cache; use OCP\Constants; +use OCP\DB\QueryBuilder\IQueryBuilder; use OCP\Files\Cache\ICache; use OCP\Files\Cache\ICacheEntry; use OCP\Files\Search\ISearchQuery; @@ -138,4 +139,12 @@ class FailedCache implements ICache { public function copyFromCache(ICache $sourceCache, ICacheEntry $sourceEntry, string $targetPath): int { throw new \Exception("Invalid cache"); } + + public function getQueryFilterForStorage(IQueryBuilder $builder) { + return 'false'; + } + + public function getCacheEntryFromSearchResult(ICacheEntry $rawEntry): ?ICacheEntry { + return null; + } } -- cgit v1.2.3