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:
Brandon Williams 2010-07-29 21:17:07 +00:00
parent b43e536f96
commit 8cb42364eb
1 changed files with 1 additions and 1 deletions

View File

@ -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)