mirror of https://gitee.com/bigwinds/arangodb
removed unused private field
This commit is contained in:
parent
3d9f85aca6
commit
e85cadb90d
|
@ -116,7 +116,6 @@ RocksDBAllIndexIterator::RocksDBAllIndexIterator(
|
||||||
LogicalCollection* collection, transaction::Methods* trx,
|
LogicalCollection* collection, transaction::Methods* trx,
|
||||||
ManagedDocumentResult* mmdr, RocksDBPrimaryIndex const* index, bool reverse)
|
ManagedDocumentResult* mmdr, RocksDBPrimaryIndex const* index, bool reverse)
|
||||||
: IndexIterator(collection, trx, mmdr, index),
|
: IndexIterator(collection, trx, mmdr, index),
|
||||||
_cmp(index->_cmp),
|
|
||||||
_reverse(reverse),
|
_reverse(reverse),
|
||||||
_bounds(RocksDBKeyBounds::PrimaryIndex(index->objectId())) {
|
_bounds(RocksDBKeyBounds::PrimaryIndex(index->objectId())) {
|
||||||
// acquire rocksdb transaction
|
// acquire rocksdb transaction
|
||||||
|
|
|
@ -93,7 +93,6 @@ class RocksDBAllIndexIterator final : public IndexIterator {
|
||||||
void seek(StringRef const& key);
|
void seek(StringRef const& key);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
RocksDBComparator const* _cmp;
|
|
||||||
bool const _reverse;
|
bool const _reverse;
|
||||||
std::unique_ptr<rocksdb::Iterator> _iterator;
|
std::unique_ptr<rocksdb::Iterator> _iterator;
|
||||||
RocksDBKeyBounds _bounds;
|
RocksDBKeyBounds _bounds;
|
||||||
|
|
Loading…
Reference in New Issue