From 0ac8dd7d1b69d4f71a4d04613753c9e584445052 Mon Sep 17 00:00:00 2001 From: LiefB <954800091@qq.com> Date: Tue, 8 Aug 2023 09:48:49 +0000 Subject: [PATCH] fix check_cross_cluster_checksum about errno --- src/rootserver/freeze/ob_checksum_validator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rootserver/freeze/ob_checksum_validator.cpp b/src/rootserver/freeze/ob_checksum_validator.cpp index e081691d02..61a259b29a 100755 --- a/src/rootserver/freeze/ob_checksum_validator.cpp +++ b/src/rootserver/freeze/ob_checksum_validator.cpp @@ -729,7 +729,7 @@ int ObCrossClusterTabletChecksumValidator::check_column_checksum( if (OB_FAIL(construct_valid_tablet_checksum_item(tablet_checksum_item))) { LOG_WARN("fail to construct valid tablet checksum item", KR(ret)); } else if (OB_FAIL(tablet_checksum_items_map.get_refactored(pair, tablet_checksum_item))) { - if (OB_ENTRY_NOT_EXIST == ret) { + if (OB_HASH_NOT_EXIST == ret) { // ignore ret and skip this tablet checksum. this may be caused by timeouted wait of tablet checksum ret = OB_SUCCESS; } else {