Compilation error fix.
This commit is contained in:
parent
7a9bcf8222
commit
9034964864
|
@ -524,8 +524,10 @@ GetKeyValuesReply readRange(StorageCacheData* data, Version version, KeyRangeRef
|
||||||
StorageCacheData::VersionedData::ViewAtVersion view = data->data().at(version);
|
StorageCacheData::VersionedData::ViewAtVersion view = data->data().at(version);
|
||||||
StorageCacheData::VersionedData::iterator vCurrent = view.end();
|
StorageCacheData::VersionedData::iterator vCurrent = view.end();
|
||||||
KeyRef readBegin;
|
KeyRef readBegin;
|
||||||
|
KeyRef readEnd;
|
||||||
KeyRef rangeBegin = range.begin;
|
KeyRef rangeBegin = range.begin;
|
||||||
KeyRef rangeEnd = range.end;
|
KeyRef rangeEnd = range.end;
|
||||||
|
int accumulatedBytes = 0;
|
||||||
//printf("\nSCReadRange\n");
|
//printf("\nSCReadRange\n");
|
||||||
|
|
||||||
// if (limit >= 0) we are reading forward, else backward
|
// if (limit >= 0) we are reading forward, else backward
|
||||||
|
@ -544,7 +546,7 @@ GetKeyValuesReply readRange(StorageCacheData* data, Version version, KeyRangeRef
|
||||||
--b;
|
--b;
|
||||||
ASSERT(!b || b.key() < readBegin);
|
ASSERT(!b || b.key() < readBegin);
|
||||||
}
|
}
|
||||||
int accumulatedBytes = 0;
|
accumulatedBytes = 0;
|
||||||
while (vCurrent && vCurrent.key() < rangeEnd && limit > 0 && accumulatedBytes < *pLimitBytes) {
|
while (vCurrent && vCurrent.key() < rangeEnd && limit > 0 && accumulatedBytes < *pLimitBytes) {
|
||||||
if (!vCurrent->isClearTo()) {
|
if (!vCurrent->isClearTo()) {
|
||||||
result.data.push_back_deep(result.arena, KeyValueRef(vCurrent.key(), vCurrent->getValue()));
|
result.data.push_back_deep(result.arena, KeyValueRef(vCurrent.key(), vCurrent->getValue()));
|
||||||
|
@ -569,7 +571,7 @@ GetKeyValuesReply readRange(StorageCacheData* data, Version version, KeyRangeRef
|
||||||
--b;
|
--b;
|
||||||
ASSERT(!b || b.key() >= readEnd);
|
ASSERT(!b || b.key() >= readEnd);
|
||||||
}
|
}
|
||||||
int accumulatedBytes = 0;
|
accumulatedBytes = 0;
|
||||||
while (vCurrent && vCurrent.key() >= rangeEnd && limit > 0 && accumulatedBytes < *pLimitBytes) {
|
while (vCurrent && vCurrent.key() >= rangeEnd && limit > 0 && accumulatedBytes < *pLimitBytes) {
|
||||||
if (!vCurrent->isClearTo()) {
|
if (!vCurrent->isClearTo()) {
|
||||||
result.data.push_back_deep(result.arena, KeyValueRef(vCurrent.key(), vCurrent->getValue()));
|
result.data.push_back_deep(result.arena, KeyValueRef(vCurrent.key(), vCurrent->getValue()));
|
||||||
|
|
Loading…
Reference in New Issue