Remove unneeded option
This commit is contained in:
parent
dd42d11f1b
commit
69139e3593
|
@ -123,11 +123,7 @@ struct RocksDBKeyValueStore : IKeyValueStore {
|
||||||
rocksdb::ReadOptions readOptions;
|
rocksdb::ReadOptions readOptions;
|
||||||
std::unique_ptr<rocksdb::Iterator> cursor = nullptr;
|
std::unique_ptr<rocksdb::Iterator> cursor = nullptr;
|
||||||
|
|
||||||
explicit Reader(DB& db)
|
explicit Reader(DB& db) : db(db) {}
|
||||||
: db(db)
|
|
||||||
{
|
|
||||||
readOptions.total_order_seek = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
void init() override {}
|
void init() override {}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue