mirror of https://github.com/apache/cassandra
Fix range slices of supercolumns in stress.py
git-svn-id: https://svn.apache.org/repos/asf/cassandra/trunk@980582 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
b43e536f96
commit
8cb42364eb
|
|
@ -266,7 +266,7 @@ class RangeSlicer(Operation):
|
|||
keyrange = KeyRange(fmt % current, fmt % last, count = options.rangecount)
|
||||
res = []
|
||||
for j in xrange(supers_per_key):
|
||||
parent = ColumnParent('Super1', chr(ord('A') + j))
|
||||
parent = ColumnParent('Super1', 'S' + str(j))
|
||||
begin = time.time()
|
||||
try:
|
||||
res = self.cclient.get_range_slices(parent, p, keyrange, consistency)
|
||||
|
|
|
|||
Loading…
Reference in New Issue