cql-io 0.14.1 → 0.14.2
raw patch · 3 files changed
+10/−1 lines, 3 files
Files
- CHANGELOG.txt +4/−0
- cql-io.cabal +5/−1
- src/Database/CQL/IO.hs +1/−0
CHANGELOG.txt view
@@ -1,3 +1,7 @@+0.14.2+------+- Export `PrepareStrategy` from `Database.CQL.IO`+ 0.14.1 ------ - Support for prepared queries
cql-io.cabal view
@@ -1,5 +1,5 @@ name: cql-io-version: 0.14.1+version: 0.14.2 synopsis: Cassandra CQL client. stability: experimental license: OtherLicense@@ -35,6 +35,10 @@ . * /Customisable retry settings/. Support for default retry settings as well as local overrides per query.+ .+ * /Prepared queries/. Prepared queries are an optimisation which parse+ and prepare a query only once on Cassandra nodes but execute it many+ times with different concrete values. source-repository head type: git
src/Database/CQL/IO.hs view
@@ -55,6 +55,7 @@ module Database.CQL.IO ( -- * Client settings Settings+ , PrepareStrategy (..) , defSettings , addContact , setCompression