[FEAT MERGE] memtable support dynamic sample

Co-authored-by: wangt1xiuyi <13547954130@163.com>
This commit is contained in:
ZenoWang
2023-08-17 17:19:49 +08:00
committed by ob-robot
parent 09f80e6a68
commit c550060ac7
33 changed files with 966 additions and 389 deletions

View File

@ -8696,10 +8696,12 @@ int ObEstBlockResElement::assign(const ObEstBlockResElement &other)
int ret = OB_SUCCESS;
macro_block_count_ = other.macro_block_count_;
micro_block_count_ = other.micro_block_count_;
sstable_row_count_ = other.sstable_row_count_;
memtable_row_count_ = other.memtable_row_count_;
return ret;
}
OB_SERIALIZE_MEMBER(ObEstBlockResElement, macro_block_count_, micro_block_count_);
OB_SERIALIZE_MEMBER(ObEstBlockResElement, macro_block_count_, micro_block_count_, sstable_row_count_, memtable_row_count_);
int ObEstBlockRes::assign(const ObEstBlockRes &other)
{