From bd8de495d9a57114e23cbae42e7ddda257558edf Mon Sep 17 00:00:00 2001 From: XIAO-HOU <372060054@qq.com> Date: Wed, 24 Jul 2024 08:51:43 +0000 Subject: [PATCH] Remove pthread defend for set in filter IN pushdown scenario --- src/storage/blocksstable/cs_encoding/ob_cs_decoding_util.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/storage/blocksstable/cs_encoding/ob_cs_decoding_util.h b/src/storage/blocksstable/cs_encoding/ob_cs_decoding_util.h index d5c9cf2fe7..4dd8c5a51f 100644 --- a/src/storage/blocksstable/cs_encoding/ob_cs_decoding_util.h +++ b/src/storage/blocksstable/cs_encoding/ob_cs_decoding_util.h @@ -366,7 +366,7 @@ public: CHECK_USE_HASHSET_FOR_IN_OP(filter_val_cnt, row_count); if (use_hash_set) { - common::hash::ObHashSet datums_val; + common::hash::ObHashSet datums_val; if (OB_FAIL(datums_val.create(filter_val_cnt))) { STORAGE_LOG(WARN, "fail to create hashset", KR(ret), K(filter_val_cnt)); } @@ -440,7 +440,7 @@ public: CHECK_USE_HASHSET_FOR_IN_OP(filter_val_cnt, row_count); if (use_hash_set) { - common::hash::ObHashSet datums_val; + common::hash::ObHashSet datums_val; if (OB_FAIL(datums_val.create(filter_val_cnt))) { STORAGE_LOG(WARN, "fail to create hash set", KR(ret), K(filter_val_cnt)); }