[bugfix]: fix load_data 4013.

This commit is contained in:
Monk-Liu 2024-04-25 06:39:27 +00:00 committed by ob-robot
parent 7a61dba6ef
commit aad5aa3176
2 changed files with 2 additions and 2 deletions

View File

@ -396,7 +396,7 @@ public:
inline int64_t get_file_size() const { return file_size_; }
inline int64_t get_max_blk_size() const { return max_block_size_; }
inline int64_t get_max_hold_mem() const { return max_hold_mem_; }
inline ObIAllocator& get_inner_allocator() { return inner_allocator_; }
inline common::DefaultPageAllocator& get_inner_allocator() { return inner_allocator_; }
inline int64_t has_dumped() const { return block_cnt_on_disk_ > 0; }
inline int64_t get_last_buffer_mem_size() const
{

View File

@ -525,7 +525,7 @@ int ObChunkSliceStore::prepare_datum_stores(const uint64_t tenant_id, ObTabletHa
LOG_WARN("failed to init chunk datum store", K(ret));
} else {
datum_store->set_dir_id(dir_id);
datum_store->set_allocator(allocator);
datum_store->get_inner_allocator().set_tenant_id(tenant_id);
LOG_INFO("set dir id", K(dir_id));
}
if (OB_SUCC(ret)) {