[FEAT MERGE] impl skip tablet

This commit is contained in:
obdev
2023-11-27 08:47:21 +00:00
committed by ob-robot
parent baee35fea8
commit 654e89bbe1
24 changed files with 498 additions and 33 deletions

View File

@ -115,7 +115,7 @@ int ObAllVirtualTableMgr::get_next_tablet()
if (nullptr == tablet_iter_) {
tablet_allocator_.set_tenant_id(MTL_ID());
ObTenantMetaMemMgr *t3m = MTL(ObTenantMetaMemMgr*);
if (OB_ISNULL(tablet_iter_ = new (iter_buf_) ObTenantTabletIterator(*t3m, tablet_allocator_))) {
if (OB_ISNULL(tablet_iter_ = new (iter_buf_) ObTenantTabletIterator(*t3m, tablet_allocator_, nullptr/*no op*/))) {
ret = OB_ERR_UNEXPECTED;
SERVER_LOG(WARN, "fail to new tablet_iter_", K(ret));
}