fix dblink mem leak in pull meta

This commit is contained in:
obdev
2023-02-20 16:41:40 +00:00
committed by ob-robot
parent 7a9f7e0421
commit 115cb6cece

View File

@ -379,7 +379,7 @@ public:
static bool is_link_table(const ObDMLStmt *stmt, uint64_t table_id); static bool is_link_table(const ObDMLStmt *stmt, uint64_t table_id);
private: private:
share::schema::ObSchemaGetterGuard *schema_guard_; share::schema::ObSchemaGetterGuard *schema_guard_;
common::ModulePageAllocator allocator_; common::ObArenaAllocator allocator_;
common::ObSEArray<const share::schema::ObTableSchema *, 1> table_schemas_; common::ObSEArray<const share::schema::ObTableSchema *, 1> table_schemas_;
uint64_t next_link_table_id_; uint64_t next_link_table_id_;
}; };