[CP] Fix: User variable 500 tenant split

This commit is contained in:
yaojing624
2024-01-09 04:17:29 +00:00
committed by ob-robot
parent 74642cad5d
commit c4be8beb90
2 changed files with 6 additions and 2 deletions

View File

@ -34,6 +34,10 @@ public:
explicit ObStringBufT(const lib::ObLabel &label = ObModIds::OB_STRING_BUF,
const int64_t block_size = DEF_MEM_BLOCK_SIZE)
: ObStringBufT(lib::ObMemAttr(OB_SERVER_TENANT_ID, label), block_size) {}
explicit ObStringBufT(const int64_t tenant_id,
const lib::ObLabel &label = ObModIds::OB_STRING_BUF,
const int64_t block_size = DEF_MEM_BLOCK_SIZE)
: ObStringBufT(lib::ObMemAttr(tenant_id, label), block_size) {}
explicit ObStringBufT(PageArenaT &arena);
~ObStringBufT();
int reset();