mirror of https://github.com/apache/cassandra
fix cqlsh support for replicate_on_write
patch by Paul Cannon; reviewed by jbellis for CASSANDRA-3596 git-svn-id: https://svn.apache.org/repos/asf/cassandra/branches/cassandra-1.0@1212146 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
cc63c8d162
commit
24f8ddeea1
|
|
@ -1,4 +1,5 @@
|
|||
1.0.6
|
||||
* (CQL) fix cqlsh support for replicate_on_write (CASSANDRA-3596)
|
||||
* fix adding to leveled manifest after streaming (CASSANDRA-3536)
|
||||
* filter out unavailable cipher suites when using encryption (CASSANDRA-3178)
|
||||
* (HADOOP) add old-style api support for CFIF and CFRR (CASSANDRA-2799)
|
||||
|
|
|
|||
|
|
@ -37,7 +37,7 @@ columnfamily_options = (
|
|||
('max_compaction_threshold', None),
|
||||
('row_cache_save_period_in_seconds', None),
|
||||
('key_cache_save_period_in_seconds', None),
|
||||
('replication_on_write', 'replicate_on_write')
|
||||
('replicate_on_write', None)
|
||||
)
|
||||
|
||||
cql_type_to_apache_class = {
|
||||
|
|
|
|||
Loading…
Reference in New Issue