mirror of https://github.com/apache/cassandra
merge from 0.6
git-svn-id: https://svn.apache.org/repos/asf/cassandra/trunk@929313 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
bf98ec94ec
commit
59c09e2834
|
|
@ -10,3 +10,4 @@ CHANGES.txt
|
|||
interface/*/gen-*/**
|
||||
src/gen-java/**
|
||||
build/**
|
||||
lib/licenses/*.txt
|
||||
|
|
|
|||
|
|
@ -6,6 +6,10 @@ dev
|
|||
* access levels for authentication/authorization (CASSANDRA-900)
|
||||
|
||||
|
||||
0.6.1
|
||||
* fix NPE in sstable2json when no excluded keys are given (CASSANDRA-934)
|
||||
|
||||
|
||||
0.6.0-RC1
|
||||
* JMX drain to flush memtables and run through commit log (CASSANDRA-880)
|
||||
* Bootstrapping can skip ranges under the right conditions (CASSANDRA-902)
|
||||
|
|
|
|||
|
|
@ -42,7 +42,7 @@
|
|||
<property name="test.name" value="*Test"/>
|
||||
<property name="test.unit.src" value="${test.dir}/unit"/>
|
||||
<property name="dist.dir" value="${build.dir}/dist"/>
|
||||
<property name="version" value="0.6.0-beta3"/>
|
||||
<property name="version" value="0.6.0-rc1"/>
|
||||
<property name="final.name" value="${ant.project.name}-${version}"/>
|
||||
<property name="ivy.version" value="2.1.0" />
|
||||
<property name="ivy.url"
|
||||
|
|
|
|||
|
|
@ -1,3 +1,9 @@
|
|||
cassandra (0.6.0~rc1-1) unstable; urgency=low
|
||||
|
||||
* New release candidated.
|
||||
|
||||
-- Eric Evans <eevans@apache.org> Sun, 28 Mar 2010 09:42:07 -0500
|
||||
|
||||
cassandra (0.6.0~beta3-1) unstable; urgency=low
|
||||
|
||||
* New beta release.
|
||||
|
|
|
|||
|
|
@ -192,8 +192,11 @@ public class SSTableExport
|
|||
SSTableReader reader = SSTableReader.open(ssTableFile);
|
||||
SSTableScanner scanner = reader.getScanner(INPUT_FILE_BUFFER_SIZE);
|
||||
IPartitioner<?> partitioner = DatabaseDescriptor.getPartitioner();
|
||||
Set<String> excludeSet = new HashSet<String>(Arrays.asList(excludes));
|
||||
Set<String> excludeSet = new HashSet();
|
||||
int i = 0;
|
||||
|
||||
if (excludes != null)
|
||||
excludeSet = new HashSet<String>(Arrays.asList(excludes));
|
||||
|
||||
outs.println("{");
|
||||
|
||||
|
|
@ -252,7 +255,10 @@ public class SSTableExport
|
|||
static void export(SSTableReader reader, PrintStream outs, String[] excludes) throws IOException
|
||||
{
|
||||
SSTableScanner scanner = reader.getScanner(INPUT_FILE_BUFFER_SIZE);
|
||||
Set<String> excludeSet = new HashSet<String>(Arrays.asList(excludes));
|
||||
Set<String> excludeSet = new HashSet();
|
||||
|
||||
if (excludes != null)
|
||||
excludeSet = new HashSet<String>(Arrays.asList(excludes));
|
||||
|
||||
outs.println("{");
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue