From 89b9a60c6a803092002591e4b1acc9d6ae171b9c Mon Sep 17 00:00:00 2001 From: qingsuijiu <642782632@qq.com> Date: Wed, 24 Jan 2024 12:42:48 +0000 Subject: [PATCH] Split the memory of ObExecContext::temp_ctx_ between tenants. --- src/sql/engine/ob_exec_context.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sql/engine/ob_exec_context.h b/src/sql/engine/ob_exec_context.h index cc24b6aa47..50a62080e5 100644 --- a/src/sql/engine/ob_exec_context.h +++ b/src/sql/engine/ob_exec_context.h @@ -603,7 +603,7 @@ protected: // expression evaluating allocator common::ObArenaAllocator eval_res_allocator_; common::ObArenaAllocator eval_tmp_allocator_; - ObSEArray temp_ctx_; + ObTMArray temp_ctx_; // 用于 NLJ 场景下对右侧分区表 TSC 扫描做动态 pruning ObGIPruningInfo gi_pruning_info_;