fix: fix build

This commit is contained in:
Gregor Kleen 2019-07-23 13:06:38 +02:00
parent 0379511545
commit caf4092d12

View File

@ -141,7 +141,7 @@ mkExistsFilter :: PathPiece a
-> E.SqlExpr (E.Value Bool)
mkExistsFilter query row criterias
| Set.null criterias = true
| otherwise = any (E.exists . query row) criterias
| otherwise = any (E.exists . query row) $ Set.toList criterias
-- | Combine several filters, using logical or
anyFilter :: (Foldable f)