fix: fix merge

This commit is contained in:
Steffen Jost 2019-07-25 10:00:55 +02:00
parent ecd72ab56b
commit 38afa901ba

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)