cassandra-driver 2.1.0-java → 2.1.3-java
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/cassandra/table.rb +2 -1
- data/lib/cassandra/version.rb +1 -1
- data/lib/cassandra_murmur3.jar +0 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 345d45fb0e82aa5c218cbc343971f1f9067825e5
|
|
4
|
+
data.tar.gz: 64d3a7ca35bda6993cf5d220a53b6aa4cfbc8afc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9dc189fe0f294bfddbdde8e6c38815a64292c365b92b367ab85861b22745aea870dfb360385489380ec3aec9ac187f1db3227f129adfd17c7a14912530c925ca
|
|
7
|
+
data.tar.gz: f10710d0fc9d98169b42ab50b6175b7ede11a317a17c5994526fd6db6130123b04405840cba3852b55fece86f876e2b27b555aab35ce55c5f5d7fc592e48f2de
|
data/README.md
CHANGED
|
@@ -91,7 +91,7 @@ __Note__: if you want to use compression you should also install [snappy](http:/
|
|
|
91
91
|
|
|
92
92
|
Some of the new features added to the driver have unfortunately led to changes in the original cql-rb API. In the examples directory, you can find [an example of how to wrap the ruby driver to achieve almost complete interface parity with cql-rb](https://github.com/datastax/ruby-driver/blob/master/examples/cql-rb-wrapper.rb) to assist you with gradual upgrade.
|
|
93
93
|
|
|
94
|
-
## What's new in v2.1.
|
|
94
|
+
## What's new in v2.1.3
|
|
95
95
|
|
|
96
96
|
Features:
|
|
97
97
|
|
data/lib/cassandra/table.rb
CHANGED
|
@@ -280,7 +280,7 @@ module Cassandra
|
|
|
280
280
|
buf ||= Protocol::CqlByteBuffer.new
|
|
281
281
|
buffer ||= Protocol::CqlByteBuffer.new
|
|
282
282
|
|
|
283
|
-
if @
|
|
283
|
+
if @release_version > '2.1'
|
|
284
284
|
Protocol::Coder.write_value_v3(buf, values[column_name], column.type)
|
|
285
285
|
else
|
|
286
286
|
Protocol::Coder.write_value_v1(buf, values[column_name], column.type)
|
|
@@ -319,6 +319,7 @@ module Cassandra
|
|
|
319
319
|
end
|
|
320
320
|
end
|
|
321
321
|
|
|
322
|
+
# @private
|
|
322
323
|
NULL_BYTE = "\x00".freeze
|
|
323
324
|
|
|
324
325
|
attr_reader :partition_key, :clustering_columns, :clustering_order
|
data/lib/cassandra/version.rb
CHANGED
data/lib/cassandra_murmur3.jar
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cassandra-driver
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.1.
|
|
4
|
+
version: 2.1.3
|
|
5
5
|
platform: java
|
|
6
6
|
authors:
|
|
7
7
|
- Theo Hultberg
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2015-
|
|
12
|
+
date: 2015-03-13 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: ione
|