From 115cb6cece1e7f849cc45ac4ef9af99222092af7 Mon Sep 17 00:00:00 2001 From: obdev Date: Mon, 20 Feb 2023 16:41:40 +0000 Subject: [PATCH] fix dblink mem leak in pull meta --- src/sql/ob_sql_context.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sql/ob_sql_context.h b/src/sql/ob_sql_context.h index 04f3cb853b..5722201c47 100644 --- a/src/sql/ob_sql_context.h +++ b/src/sql/ob_sql_context.h @@ -379,7 +379,7 @@ public: static bool is_link_table(const ObDMLStmt *stmt, uint64_t table_id); private: share::schema::ObSchemaGetterGuard *schema_guard_; - common::ModulePageAllocator allocator_; + common::ObArenaAllocator allocator_; common::ObSEArray table_schemas_; uint64_t next_link_table_id_; };