mirror of https://github.com/apache/cassandra
merge from 0.8
git-svn-id: https://svn.apache.org/repos/asf/cassandra/branches/cassandra-1.0.0@1178787 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
a81a52caba
commit
f4ecf5a604
|
|
@ -10,6 +10,7 @@
|
|||
* (Hadoop) allow wrapping ranges in queries (CASSANDRA-3137)
|
||||
* (Hadoop) check all interfaces for a match with split location
|
||||
before falling back to random replica (CASSANDRA-3211)
|
||||
* Fix stress COUNTER_GET option (CASSANDRA-3301)
|
||||
|
||||
|
||||
1.0.0-rc2
|
||||
|
|
|
|||
|
|
@ -64,7 +64,7 @@ public class CounterGetter extends Operation
|
|||
for (int j = 0; j < session.getSuperColumns(); j++)
|
||||
{
|
||||
String superColumn = 'S' + Integer.toString(j);
|
||||
ColumnParent parent = new ColumnParent("CounterSuper1").setSuper_column(superColumn.getBytes());
|
||||
ColumnParent parent = new ColumnParent("SuperCounter1").setSuper_column(superColumn.getBytes());
|
||||
|
||||
long start = System.currentTimeMillis();
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue