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,
|
||||
ManagedDocumentResult* mmdr, RocksDBPrimaryIndex const* index, bool reverse)
|
||||
: IndexIterator(collection, trx, mmdr, index),
|
||||
_cmp(index->_cmp),
|
||||
_reverse(reverse),
|
||||
_bounds(RocksDBKeyBounds::PrimaryIndex(index->objectId())) {
|
||||
// acquire rocksdb transaction
|
||||
|
|
|
@ -93,7 +93,6 @@ class RocksDBAllIndexIterator final : public IndexIterator {
|
|||
void seek(StringRef const& key);
|
||||
|
||||
private:
|
||||
RocksDBComparator const* _cmp;
|
||||
bool const _reverse;
|
||||
std::unique_ptr<rocksdb::Iterator> _iterator;
|
||||
RocksDBKeyBounds _bounds;
|
||||
|
|
Loading…
Reference in New Issue