add aux lob table into RS progress checker

This commit is contained in:
a1iive
2023-11-09 13:41:11 +00:00
committed by ob-robot
parent f545b85426
commit b153e02c44

View File

@ -1873,10 +1873,12 @@ inline bool ObSimpleTableSchemaV2::should_not_validate_data_index_ckm() const
inline bool ObSimpleTableSchemaV2::should_check_major_merge_progress() const inline bool ObSimpleTableSchemaV2::should_check_major_merge_progress() const
{ {
// only include primary table // only include primary table except aux lob tables
// aux lob tables only need to perform replicas verification, but don't need to be verified with primary table
return is_sys_table() return is_sys_table()
|| is_user_table() || is_user_table()
|| is_tmp_table(); || is_tmp_table()
|| is_aux_lob_table();
} }
inline int64_t ObTableSchema::get_id_hash_array_mem_size(const int64_t column_cnt) const inline int64_t ObTableSchema::get_id_hash_array_mem_size(const int64_t column_cnt) const