From b153e02c44c1b99c26bbc6c0f9a160ae2a368efc Mon Sep 17 00:00:00 2001 From: a1iive Date: Thu, 9 Nov 2023 13:41:11 +0000 Subject: [PATCH] add aux lob table into RS progress checker --- src/share/schema/ob_table_schema.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/share/schema/ob_table_schema.h b/src/share/schema/ob_table_schema.h index 0998851555..b0fa08a1e0 100644 --- a/src/share/schema/ob_table_schema.h +++ b/src/share/schema/ob_table_schema.h @@ -1873,10 +1873,12 @@ inline bool ObSimpleTableSchemaV2::should_not_validate_data_index_ckm() 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() || 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