disable construct of ObIAllocator

This commit is contained in:
nroskill
2022-02-10 20:06:48 +08:00
committed by LINxiansheng
parent 17b0f303d7
commit 9007c77b10
15 changed files with 92 additions and 50 deletions

View File

@ -76,6 +76,10 @@ class ObEmptyAlloc : public ObIAllocator {
{
return NULL;
}
void free(void *ptr) override
{
UNUSED(ptr);
}
};
TEST(RARowStore, alloc_project_fail)