From ff560cb2ce792ef8a3dfdba80f9081a67c34e40a Mon Sep 17 00:00:00 2001 From: GongYusen <986957406@qq.com> Date: Mon, 3 Mar 2025 16:47:05 +0000 Subject: [PATCH] Fix the memory issue of ObTempRowStore --- src/sql/engine/basic/ob_temp_block_store.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sql/engine/basic/ob_temp_block_store.cpp b/src/sql/engine/basic/ob_temp_block_store.cpp index 7232bd5469..7a2a17fe55 100644 --- a/src/sql/engine/basic/ob_temp_block_store.cpp +++ b/src/sql/engine/basic/ob_temp_block_store.cpp @@ -342,7 +342,7 @@ int ObTempBlockStore::get_block(BlockReader &reader, const int64_t block_id, con LOG_WARN("invalid of row_id", K(ret), K(block_id), K_(block_id_cnt)); } else { if (reader.file_size_ != file_size_) { - reader.reset_cursor(file_size_); + reader.reset_cursor(file_size_, false); blk = NULL; } if (NULL != blk && blk->contain(block_id)) {