Skip to content

Commit

Permalink
Fix query from eq to in
Browse files Browse the repository at this point in the history
  • Loading branch information
lochmueller committed Feb 13, 2024
1 parent e089377 commit cb21e2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/Cache/StaticFileBackend.php
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ public function findIdentifiersByTags(array $tags)
->from($this->tagsTable)
->where(
$queryBuilder->expr()->eq($this->cacheTable . '.identifier', $queryBuilder->quoteIdentifier($this->tagsTable . '.identifier')),
$queryBuilder->expr()->eq(
$queryBuilder->expr()->in(
$this->tagsTable . '.tag',
array_map(fn($tag) => $queryBuilder->quote($tag), $tags)
),
Expand Down

0 comments on commit cb21e2d

Please sign in to comment.