hasql 1.6.4.2 → 1.6.4.3
raw patch · 2 files changed
+3/−3 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- hasql.cabal +1/−1
- library/Hasql/Statement.hs +2/−2
hasql.cabal view
@@ -1,6 +1,6 @@ cabal-version: 3.0 name: hasql-version: 1.6.4.2+version: 1.6.4.3 category: Hasql, Database, PostgreSQL synopsis: An efficient PostgreSQL driver with a flexible mapping API description:
library/Hasql/Statement.hs view
@@ -117,8 +117,8 @@ -- -- Fortunately, Postgres does provide the expected functionality for arrays with other operators: ----- * Use @something = ANY($1)@ instead of @something IN ($1)@--- * Use @something <> ALL($1)@ instead of @something NOT IN ($1)@+-- * Use @some_expression = ANY($1)@ instead of @some_expression IN ($1)@+-- * Use @some_expression <> ALL($1)@ instead of @some_expression NOT IN ($1)@ -- -- For details refer to -- <https://www.postgresql.org/docs/9.6/static/functions-comparisons.html#AEN20944 the PostgreSQL docs>.