Skip to content

Commit

Permalink
Update cpp-driver to 2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Silviu Caragea committed Apr 6, 2016
1 parent 5d49b06 commit 483f051
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ In case you want to discuss based on this project join me on [WowApp][2]

### Changelog:

##### v2.3 (Not released yet - master)
##### v2.3

- Removed the necessity of `gen_server` calls for prepared statements. Observed this as being a bottleneck under heavy load.
- Removed from erlcass module all methods starting with `uuid_*` and `date_from_epoch/1`, `time_from_epoch/1`, `date_time_to_epoch/2`.
Instead this functions you can use the one from `erlcass_uuid` and `erlcass_time` modules.
- Updated cpp-driver to 2.2.1
- Updated cpp-driver to 2.3.0
- Internal code refactoring

##### v2.2
Expand Down
2 changes: 1 addition & 1 deletion c_src/nif_cass_statement.cc
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ SchemaColumn get_schema_column(const cass::DataType* data_type)

if(data_type->is_collection() || data_type->is_tuple())
{
const cass::SubTypesDataType* collection_type = static_cast<const cass::SubTypesDataType*>(data_type);
const cass::CompositeType* collection_type = static_cast<const cass::CompositeType*>(data_type);

for(cass::DataType::Vec::const_iterator it = collection_type->types().begin(); it != collection_type->types().end(); ++it)
sc.subtypes.push_back(get_schema_column((*it).get()));
Expand Down
2 changes: 1 addition & 1 deletion rebar.config
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{post_hooks,[{'get-deps',"sh -c './build_deps.sh https://github.com/datastax/cpp-driver.git 2cb8360bf45c3e24ec00cd475b4163a45f6700b7'"}]}.
{post_hooks,[{'get-deps',"sh -c './build_deps.sh https://github.com/datastax/cpp-driver.git 6f72bb8b5bd251e63846ebc9f0fba7adbc8c7e72'"}]}.

%{
% deps,
Expand Down

0 comments on commit 483f051

Please sign in to comment.