hasql 0.14.0.2 → 0.14.0.3
raw patch · 3 files changed
+3/−4 lines, 3 files
Files
- hasql.cabal +1/−1
- library/Hasql/Decoding/Results.hs +0/−1
- library/Hasql/Query.hs +2/−2
hasql.cabal view
@@ -1,7 +1,7 @@ name: hasql version:- 0.14.0.2+ 0.14.0.3 category: Hasql, Database, PostgreSQL synopsis:
library/Hasql/Decoding/Results.hs view
@@ -51,7 +51,6 @@ case resultMaybe of Just result -> mapLeft ResultError <$> Result.run resultDec (integerDatetimes, result) - <* LibPQ.unsafeFreeResult result Nothing -> fmap (Left . ClientError) (LibPQ.errorMessage connection)
library/Hasql/Query.hs view
@@ -99,7 +99,7 @@ -- * a flag, determining whether it should be prepared. -- -- The SQL template must be formatted according to Postgres' standard,--- with any non-ASCII characters of the template must be encoded using UTF-8.+-- with any non-ASCII characters of the template encoded using UTF-8. -- According to the format, -- parameters must be referred to using the positional notation, as in the following: -- @$1@, @$2@, @$3@ and etc.@@ -122,7 +122,7 @@ -- @ -- -- The statement above accepts a product of two parameters of type 'Int64'--- and results in a single result of type 'Int64'.+-- and produces a single result of type 'Int64'. -- data Query a b = Query !ByteString !(Encoding.Params a) !(Decoding.Result b) !Bool