read msd from frozen memtables in mini merge procedure
This commit is contained in:
committed by
wangzelin.wzl
parent
b3d436156c
commit
6ff3c39b49
@ -82,7 +82,14 @@ void ObTabletAutoincSeq::reset()
|
||||
|
||||
bool ObTabletAutoincSeq::is_valid() const
|
||||
{
|
||||
return true;
|
||||
bool valid = true;
|
||||
|
||||
if (intervals_.empty()) {
|
||||
valid = false;
|
||||
}
|
||||
// TODO(shuangcan.yjw): verify elemetns in array
|
||||
|
||||
return valid;
|
||||
}
|
||||
|
||||
int ObTabletAutoincSeq::get_autoinc_seq_value(uint64_t &autoinc_seq)
|
||||
|
||||
Reference in New Issue
Block a user