[CP] [CP] Add diagnostic log for detection of schema mgr ref leak

This commit is contained in:
obdev
2022-08-25 18:15:35 +08:00
committed by wangzelin.wzl
parent 4e81072cd2
commit 50b76d0245
36 changed files with 134 additions and 30 deletions

View File

@ -75,7 +75,12 @@ int ObVirtualTableProjector::check_column_exist(
}
////////////////////////////////////////////////////////////////
ObSimpleVirtualTableIterator::ObSimpleVirtualTableIterator(uint64_t tenant_id, uint64_t table_id)
: tenant_id_(tenant_id), table_id_(table_id), schema_service_(NULL), table_schema_(NULL)
: tenant_id_(tenant_id),
table_id_(table_id),
columns_(),
schema_guard_(share::schema::ObSchemaMgrItem::MOD_VIRTUAL_TABLE),
schema_service_(NULL),
table_schema_(NULL)
{}
int ObSimpleVirtualTableIterator::init(share::schema::ObMultiVersionSchemaService* schema_service)