[FEAT MERGE] implement Medium Compaction & adaptive Compaction Strategy

This commit is contained in:
obdev
2022-12-19 13:26:58 +00:00
committed by ob-robot
parent 5c19d8c8c7
commit c94062401a
177 changed files with 12721 additions and 3494 deletions

View File

@ -359,5 +359,17 @@ int64_t ObMergeProgress::get_merged_data_percentage() const
return first_param_percnetage(merged_data_size_, unmerged_data_size_);
}
///////////////////////////////////////////////////////////////////////////////
ObTableCompactionInfo &ObTableCompactionInfo::operator=(const ObTableCompactionInfo &other)
{
table_id_ = other.table_id_;
tablet_cnt_ = other.tablet_cnt_;
status_ = other.status_;
is_valid_data_table_ = other.is_valid_data_table_;
all_index_verified_ = other.all_index_verified_;
return *this;
}
} // end namespace share
} // end namespace oceanbase