mirror of https://gitee.com/bigwinds/arangodb
truncate()
This commit is contained in:
parent
d1aaddd8c3
commit
3e2e14d800
|
@ -1607,10 +1607,10 @@ OperationCursor Transaction::indexScan(
|
||||||
if (idx == nullptr) {
|
if (idx == nullptr) {
|
||||||
THROW_ARANGO_EXCEPTION_MESSAGE(
|
THROW_ARANGO_EXCEPTION_MESSAGE(
|
||||||
TRI_ERROR_ARANGO_INDEX_NOT_FOUND,
|
TRI_ERROR_ARANGO_INDEX_NOT_FOUND,
|
||||||
"Could not find primary index in collection '" + collection + "'.");
|
"Could not find primary index in collection '" + collectionName + "'.");
|
||||||
}
|
}
|
||||||
|
|
||||||
iterator = idx->anyIterator(this);
|
iterator.reset(idx->anyIterator(this));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case CursorType::ALL: {
|
case CursorType::ALL: {
|
||||||
|
@ -1627,7 +1627,6 @@ OperationCursor Transaction::indexScan(
|
||||||
"Could not find primary index in collection '" + collectionName + "'.");
|
"Could not find primary index in collection '" + collectionName + "'.");
|
||||||
}
|
}
|
||||||
|
|
||||||
LOG(INFO) << "reverse: " << reverse;
|
|
||||||
iterator.reset(idx->allIterator(this, reverse));
|
iterator.reset(idx->allIterator(this, reverse));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue