@ -9,23 +9,22 @@
namespace rocksdb {
namespace rocksdb {
TransactionLogIteratorImpl : : TransactionLogIteratorImpl (
TransactionLogIteratorImpl : : TransactionLogIteratorImpl (
const std : : string & dir ,
const std : : string & dir , const Options * options ,
const Options * options ,
const TransactionLogIterator : : ReadOptions & read_options ,
const EnvOptions & soptions ,
const EnvOptions & soptions , const SequenceNumber seq ,
const SequenceNumber seq ,
std : : unique_ptr < VectorLogPtr > files , DBImpl const * const dbimpl )
std : : unique_ptr < VectorLogPtr > files ,
: dir_ ( dir ) ,
DBImpl const * const dbimpl ) :
options_ ( options ) ,
dir_ ( dir ) ,
read_options_ ( read_options ) ,
options_ ( options ) ,
soptions_ ( soptions ) ,
soptions_ ( soptions ) ,
startingSequenceNumber_ ( seq ) ,
startingSequenceNumber_ ( seq ) ,
files_ ( std : : move ( files ) ) ,
files_ ( std : : move ( files ) ) ,
started_ ( false ) ,
started_ ( false ) ,
isValid_ ( false ) ,
isValid_ ( false ) ,
currentFileIndex_ ( 0 ) ,
currentFileIndex_ ( 0 ) ,
currentBatchSeq_ ( 0 ) ,
currentBatchSeq_ ( 0 ) ,
currentLastSeq_ ( 0 ) ,
currentLastSeq_ ( 0 ) ,
dbimpl_ ( dbimpl ) {
dbimpl_ ( dbimpl ) {
assert ( files_ ! = nullptr ) ;
assert ( files_ ! = nullptr ) ;
assert ( dbimpl_ ! = nullptr ) ;
assert ( dbimpl_ ! = nullptr ) ;
@ -253,9 +252,8 @@ Status TransactionLogIteratorImpl::OpenLogReader(const LogFile* logFile) {
return status ;
return status ;
}
}
assert ( file ) ;
assert ( file ) ;
currentLogReader_ . reset (
currentLogReader_ . reset ( new log : : Reader ( std : : move ( file ) , & reporter_ ,
new log : : Reader ( std : : move ( file ) , & reporter_ , true , 0 )
read_options_ . verify_checksums_ , 0 ) ) ;
) ;
return Status : : OK ( ) ;
return Status : : OK ( ) ;
}
}
} // namespace rocksdb
} // namespace rocksdb