Merge branch 'cassandra-2.0' into cassandra-2.1

Conflicts:
	CHANGES.txt
This commit is contained in:
Marcus Eriksson 2014-05-27 10:29:03 +02:00
commit 8602fe8ce8
2 changed files with 3 additions and 1 deletions

View File

@ -26,6 +26,7 @@
* Fix IllegalArgumentException in CqlStorage (CASSANDRA-7287)
* Allow nulls/non-existant fields in UDT (CASSANDRA-7206)
Merged from 2.0:
* Copy compaction options to make sure they are reloaded (CASSANDRA-7290)
* Always reallocate buffers in HSHA (CASSANDRA-6285)
* (Hadoop) support authentication in CqlRecordReader (CASSANDRA-7221)
* (Hadoop) Close java driver Cluster in CQLRR.close (CASSANDRA-7228)

View File

@ -20,6 +20,7 @@ package org.apache.cassandra.db.compaction;
import java.util.*;
import com.google.common.base.Predicate;
import com.google.common.collect.ImmutableMap;
import com.google.common.collect.Iterables;
import com.google.common.util.concurrent.RateLimiter;
import org.slf4j.Logger;
@ -76,7 +77,7 @@ public abstract class AbstractCompactionStrategy
{
assert cfs != null;
this.cfs = cfs;
this.options = options;
this.options = ImmutableMap.copyOf(options);
/* checks must be repeated here, as user supplied strategies might not call validateOptions directly */