packages feed

postgresql-binary 0.2.0 → 0.2.1

raw patch · 2 files changed

+3/−3 lines, 2 files

Files

library/PostgreSQLBinary/Decoder.hs view
@@ -159,8 +159,8 @@       u <- int ub       d <- int db       m <- int mb-      return $ picosecondsToDiffTime $ fromIntegral $-        (10 ^ 6 * (u + 10 ^ 6 * 60 * 60 * 24 * (d + 31 * m)) :: Int)+      return $ picosecondsToDiffTime $+        10 ^ 6 * fromIntegral (u + 10 ^ 6 * 60 * 60 * 24 * (d + 31 * m) :: Int64)   
postgresql-binary.cabal view
@@ -1,7 +1,7 @@ name:   postgresql-binary version:-  0.2.0+  0.2.1 synopsis:   Encoders and decoders for the PostgreSQL's binary format description: