@ -761,17 +761,17 @@ class MemTableInserter : public WriteBatch::Handler {
virtual Status PutCF ( uint32_t column_family_id , const Slice & key ,
virtual Status PutCF ( uint32_t column_family_id , const Slice & key ,
const Slice & value ) override {
const Slice & value ) override {
if ( rebuilding_trx_ ! = nullptr ) {
WriteBatchInternal : : Put ( rebuilding_trx_ , column_family_id , key , value ) ;
return Status : : OK ( ) ;
}
Status seek_status ;
Status seek_status ;
if ( ! SeekToColumnFamily ( column_family_id , & seek_status ) ) {
if ( ! SeekToColumnFamily ( column_family_id , & seek_status ) ) {
+ + sequence_ ;
+ + sequence_ ;
return seek_status ;
return seek_status ;
}
}
if ( rebuilding_trx_ ! = nullptr ) {
rebuilding_trx_ - > Put ( cf_mems_ - > GetColumnFamilyHandle ( ) , key , value ) ;
return Status : : OK ( ) ;
}
MemTable * mem = cf_mems_ - > GetMemTable ( ) ;
MemTable * mem = cf_mems_ - > GetMemTable ( ) ;
auto * moptions = mem - > GetMemTableOptions ( ) ;
auto * moptions = mem - > GetMemTableOptions ( ) ;
if ( ! moptions - > inplace_update_support ) {
if ( ! moptions - > inplace_update_support ) {
@ -851,48 +851,50 @@ class MemTableInserter : public WriteBatch::Handler {
virtual Status DeleteCF ( uint32_t column_family_id ,
virtual Status DeleteCF ( uint32_t column_family_id ,
const Slice & key ) override {
const Slice & key ) override {
if ( rebuilding_trx_ ! = nullptr ) {
WriteBatchInternal : : Delete ( rebuilding_trx_ , column_family_id , key ) ;
return Status : : OK ( ) ;
}
Status seek_status ;
Status seek_status ;
if ( ! SeekToColumnFamily ( column_family_id , & seek_status ) ) {
if ( ! SeekToColumnFamily ( column_family_id , & seek_status ) ) {
+ + sequence_ ;
+ + sequence_ ;
return seek_status ;
return seek_status ;
}
}
if ( rebuilding_trx_ ! = nullptr ) {
rebuilding_trx_ - > Delete ( cf_mems_ - > GetColumnFamilyHandle ( ) , key ) ;
return Status : : OK ( ) ;
}
return DeleteImpl ( column_family_id , key , kTypeDeletion ) ;
return DeleteImpl ( column_family_id , key , kTypeDeletion ) ;
}
}
virtual Status SingleDeleteCF ( uint32_t column_family_id ,
virtual Status SingleDeleteCF ( uint32_t column_family_id ,
const Slice & key ) override {
const Slice & key ) override {
if ( rebuilding_trx_ ! = nullptr ) {
WriteBatchInternal : : SingleDelete ( rebuilding_trx_ , column_family_id , key ) ;
return Status : : OK ( ) ;
}
Status seek_status ;
Status seek_status ;
if ( ! SeekToColumnFamily ( column_family_id , & seek_status ) ) {
if ( ! SeekToColumnFamily ( column_family_id , & seek_status ) ) {
+ + sequence_ ;
+ + sequence_ ;
return seek_status ;
return seek_status ;
}
}
if ( rebuilding_trx_ ! = nullptr ) {
rebuilding_trx_ - > SingleDelete ( cf_mems_ - > GetColumnFamilyHandle ( ) , key ) ;
return Status : : OK ( ) ;
}
return DeleteImpl ( column_family_id , key , kTypeSingleDeletion ) ;
return DeleteImpl ( column_family_id , key , kTypeSingleDeletion ) ;
}
}
virtual Status MergeCF ( uint32_t column_family_id , const Slice & key ,
virtual Status MergeCF ( uint32_t column_family_id , const Slice & key ,
const Slice & value ) override {
const Slice & value ) override {
assert ( ! concurrent_memtable_writes_ ) ;
assert ( ! concurrent_memtable_writes_ ) ;
if ( rebuilding_trx_ ! = nullptr ) {
WriteBatchInternal : : Merge ( rebuilding_trx_ , column_family_id , key , value ) ;
return Status : : OK ( ) ;
}
Status seek_status ;
Status seek_status ;
if ( ! SeekToColumnFamily ( column_family_id , & seek_status ) ) {
if ( ! SeekToColumnFamily ( column_family_id , & seek_status ) ) {
+ + sequence_ ;
+ + sequence_ ;
return seek_status ;
return seek_status ;
}
}
if ( rebuilding_trx_ ! = nullptr ) {
rebuilding_trx_ - > Merge ( cf_mems_ - > GetColumnFamilyHandle ( ) , key , value ) ;
return Status : : OK ( ) ;
}
MemTable * mem = cf_mems_ - > GetMemTable ( ) ;
MemTable * mem = cf_mems_ - > GetMemTable ( ) ;
auto * moptions = mem - > GetMemTableOptions ( ) ;
auto * moptions = mem - > GetMemTableOptions ( ) ;
bool perform_merge = false ;
bool perform_merge = false ;