packages feed

clickhouse-haskell 0.1.2.1 → 0.1.2.2

raw patch · 2 files changed

+11/−7 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

clickhouse-haskell.cabal view
@@ -1,6 +1,6 @@ cabal-version:  1.12 name:           clickhouse-haskell-version:        0.1.2.1+version:        0.1.2.2 synopsis:       A Haskell library as database client for Clickhouse homepage:       https://github.com/2049foundation/clickhouse-haskell/ bug-reports:    https://github.com/2049foundation/clickhouse-haskell/issues
src/Database/ClickHouseDriver/Client.hs view
@@ -36,13 +36,14 @@     fetchWithInfo,     execute,     -- * Communication-    client,+    createClient,     defaultClient,     closeClient,     -- * Connection pool     defaultClientPool,-    createClient,-    createClientPool+    createClientPool,+    -- * retrieve settings+    client   ) where @@ -155,8 +156,10 @@                    | CKPool (Pool TCPConnection)  class Resource a where-  client :: Either String a->IO(Env () w)-            -- ^ Either wrong message of resource with type a+  client :: Either String a+             -- ^ Either wrong message of resource with type a+           ->IO(Env () w)+              -- | fetch data fetchData :: State Query->BlockedFetch Query->IO ()@@ -202,7 +205,8 @@  defaultClient :: IO (Env () w) defaultClient = createClient def -  ++-- | create client with given information such as username, host name and password etc.  createClient :: ConnParams->IO(Env () w) createClient ConnParams{                  username'