Bump version to 1.4.3.
This commit is contained in:
parent
dc285e41ad
commit
bfdb140e46
@ -1,5 +1,5 @@
|
|||||||
name: esqueleto
|
name: esqueleto
|
||||||
version: 1.4.2
|
version: 1.4.3
|
||||||
synopsis: Type-safe EDSL for SQL queries on persistent backends.
|
synopsis: Type-safe EDSL for SQL queries on persistent backends.
|
||||||
homepage: https://github.com/prowdsponsor/esqueleto
|
homepage: https://github.com/prowdsponsor/esqueleto
|
||||||
license: BSD3
|
license: BSD3
|
||||||
|
|||||||
@ -258,11 +258,15 @@ class (Functor query, Applicative query, Monad query) =>
|
|||||||
-- (Nothing) otherwise. Some RDBMSs (such as SQLite) require
|
-- (Nothing) otherwise. Some RDBMSs (such as SQLite) require
|
||||||
-- at least two arguments; please refer to the appropriate
|
-- at least two arguments; please refer to the appropriate
|
||||||
-- documentation.
|
-- documentation.
|
||||||
|
--
|
||||||
|
-- /Since: 1.4.3/
|
||||||
coalesce :: PersistField a => [expr (Value (Maybe a))] -> expr (Value (Maybe a))
|
coalesce :: PersistField a => [expr (Value (Maybe a))] -> expr (Value (Maybe a))
|
||||||
|
|
||||||
-- | Like @coalesce@, but takes a non-nullable expression
|
-- | Like @coalesce@, but takes a non-nullable expression
|
||||||
-- placed at the end of the expression list, which guarantees
|
-- placed at the end of the expression list, which guarantees
|
||||||
-- a non-NULL result.
|
-- a non-NULL result.
|
||||||
|
--
|
||||||
|
-- /Since: 1.4.3/
|
||||||
coalesceDefault :: PersistField a => [expr (Value (Maybe a))] -> expr (Value a) -> expr (Value a)
|
coalesceDefault :: PersistField a => [expr (Value (Maybe a))] -> expr (Value a) -> expr (Value a)
|
||||||
|
|
||||||
-- | @LIKE@ operator.
|
-- | @LIKE@ operator.
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user