diff --git a/deps/oblib/src/lib/alloc/alloc_interface.h b/deps/oblib/src/lib/alloc/alloc_interface.h index d81bb7378da..8529dbb13d1 100644 --- a/deps/oblib/src/lib/alloc/alloc_interface.h +++ b/deps/oblib/src/lib/alloc/alloc_interface.h @@ -24,8 +24,15 @@ namespace oceanbase namespace lib { class ObTenantCtxAllocator; +struct AChunk; struct ABlock; struct ObMemAttr; +class IChunkMgr +{ +public: + virtual AChunk *alloc_chunk(const uint64_t size, const ObMemAttr &attr) = 0; + virtual void free_chunk(AChunk *chunk, const ObMemAttr &attr) = 0; +}; // end of class IChunkMgr class IBlockMgr { diff --git a/deps/oblib/src/lib/alloc/block_set.cpp b/deps/oblib/src/lib/alloc/block_set.cpp index e042d3e19e1..4b842717504 100644 --- a/deps/oblib/src/lib/alloc/block_set.cpp +++ b/deps/oblib/src/lib/alloc/block_set.cpp @@ -21,21 +21,14 @@ using namespace oceanbase; using namespace oceanbase::lib; -void BlockSet::Lock::lock() -{ - int64_t tid = common::get_itid() + 1; - while (!ATOMIC_BCAS(&tid_, 0, tid)) { - sched_yield(); - } -} - BlockSet::BlockSet() - : mutex_(common::ObLatchIds::ALLOC_BLOCK_LOCK), clist_(NULL), + : tallocator_(NULL), + locker_(NULL), + chunk_mgr_(NULL), + clist_(NULL), avail_bm_(BLOCKS_PER_CHUNK+1, avail_bm_buf_), - total_hold_(0), total_payload_(0), total_used_(0), tallocator_(NULL), - chunk_free_list_(false/*with_mutex*/), locker_(nullptr) + total_hold_(0), total_payload_(0), total_used_(0) { - chunk_free_list_.set_max_chunk_cache_size(0); } BlockSet::~BlockSet() @@ -56,17 +49,6 @@ void BlockSet::reset() //MEMSET(block_list_, 0, sizeof(block_list_)); clist_ = nullptr; avail_bm_.clear(); - LockGuard lock(cache_shared_lock_); - for (AChunk *chunk = nullptr; (chunk = chunk_free_list_.pop()) != nullptr;) { - uint64_t payload = 0; - UNUSED(ATOMIC_FAA(&total_hold_, -chunk->hold(&payload))); - UNUSED(ATOMIC_FAA(&total_payload_, -payload)); - if (chunk->washed_size_ != 0) { - tallocator_->update_wash_stat(-1, -chunk->washed_blks_, -chunk->washed_size_); - } - tallocator_->free_chunk(chunk, attr_); - } - cache_shared_lock_.reset(); } void BlockSet::set_tenant_ctx_allocator(ObTenantCtxAllocator &allocator) @@ -293,17 +275,11 @@ AChunk *BlockSet::alloc_chunk(const uint64_t size, const ObMemAttr &attr) AChunk *chunk = NULL; if (OB_NOT_NULL(tallocator_)) { const uint64_t all_size = AChunkMgr::aligned(size); - if (INTACT_ACHUNK_SIZE == all_size && chunk_free_list_.count() > 0) { - LockGuard lock(cache_shared_lock_); - chunk = chunk_free_list_.pop(); - } - if (nullptr == chunk) { - chunk = tallocator_->alloc_chunk(static_cast(size), attr); - if (chunk != nullptr) { - uint64_t payload = 0; - UNUSED(ATOMIC_FAA(&total_hold_, chunk->hold(&payload))); - UNUSED(ATOMIC_FAA(&total_payload_, payload)); - } + chunk = chunk_mgr_->alloc_chunk(static_cast(size), attr); + if (chunk != nullptr) { + uint64_t payload = 0; + UNUSED(ATOMIC_FAA(&total_hold_, chunk->hold(&payload))); + UNUSED(ATOMIC_FAA(&total_payload_, payload)); } if (NULL != chunk) { if (NULL != clist_) { @@ -351,20 +327,13 @@ void BlockSet::free_chunk(AChunk *const chunk) } uint64_t payload = 0; const uint64_t hold = chunk->hold(&payload); - bool freed = false; - if (INTACT_ACHUNK_SIZE == hold) { - LockGuard lock(cache_shared_lock_); - freed = chunk_free_list_.push(chunk); - } - if (!freed) { - if (OB_NOT_NULL(tallocator_)) { - UNUSED(ATOMIC_FAA(&total_hold_, -hold)); - UNUSED(ATOMIC_FAA(&total_payload_, -payload)); - if (chunk->washed_size_ != 0) { - tallocator_->update_wash_stat(-1, -chunk->washed_blks_, -chunk->washed_size_); - } - tallocator_->free_chunk(chunk, attr_); + if (OB_NOT_NULL(tallocator_)) { + UNUSED(ATOMIC_FAA(&total_hold_, -hold)); + UNUSED(ATOMIC_FAA(&total_payload_, -payload)); + if (chunk->washed_size_ != 0) { + tallocator_->update_wash_stat(-1, -chunk->washed_blks_, -chunk->washed_size_); } + chunk_mgr_->free_chunk(chunk, attr_); } } diff --git a/deps/oblib/src/lib/alloc/block_set.h b/deps/oblib/src/lib/alloc/block_set.h index bf7d2b97c74..2e38212af22 100644 --- a/deps/oblib/src/lib/alloc/block_set.h +++ b/deps/oblib/src/lib/alloc/block_set.h @@ -20,10 +20,6 @@ namespace oceanbase { -namespace common -{ -class ObPageManagerCenter; -} namespace lib { @@ -31,27 +27,7 @@ class ObTenantCtxAllocator; class ISetLocker; class BlockSet { - friend class common::ObPageManagerCenter; friend class ObTenantCtxAllocator; - class Lock - { - public: - Lock() : tid_(0) {} - ~Lock() { reset(); } - void reset() { ATOMIC_STORE(&tid_, 0); } - void lock(); - void unlock() { ATOMIC_STORE(&tid_, 0); } - private: - int64_t tid_; - }; - class LockGuard - { - public: - LockGuard(Lock &lock) : lock_(lock) { lock_.lock(); } - ~LockGuard() { lock_.unlock(); } - private: - Lock &lock_; - }; public: BlockSet(); ~BlockSet(); @@ -68,13 +44,12 @@ class BlockSet inline uint64_t get_total_used() const; void set_tenant_ctx_allocator(ObTenantCtxAllocator &allocator); - void set_max_chunk_cache_size(const int64_t max_cache_size) - { chunk_free_list_.set_max_chunk_cache_size(max_cache_size); } void reset(); void set_locker(ISetLocker *locker) { locker_ = locker; } int64_t sync_wash(int64_t wash_size=INT64_MAX); bool check_has_unfree(); ObTenantCtxAllocator *get_tenant_ctx_allocator() const { return tallocator_; } + void set_chunk_mgr(IChunkMgr *chunk_mgr) { chunk_mgr_ = chunk_mgr; } private: DISALLOW_COPY_AND_ASSIGN(BlockSet); @@ -87,7 +62,10 @@ class BlockSet void free_chunk(AChunk *const chunk); private: - lib::ObMutex mutex_; + ObTenantCtxAllocator *tallocator_; + ObMemAttr attr_; + ISetLocker *locker_; + IChunkMgr *chunk_mgr_; // block_list_ can not be initialized, the state is maintained by avail_bm_ union { ABlock *block_list_[BLOCKS_PER_CHUNK+1]; @@ -98,11 +76,6 @@ class BlockSet uint64_t total_hold_; uint64_t total_payload_; uint64_t total_used_; - ObTenantCtxAllocator *tallocator_; - ObMemAttr attr_; - lib::AChunkList chunk_free_list_; - ISetLocker *locker_; - Lock cache_shared_lock_; }; // end of class BlockSet void BlockSet::lock() diff --git a/deps/oblib/src/lib/alloc/ob_malloc_allocator.cpp b/deps/oblib/src/lib/alloc/ob_malloc_allocator.cpp index 5e5835630e5..19535559b1b 100644 --- a/deps/oblib/src/lib/alloc/ob_malloc_allocator.cpp +++ b/deps/oblib/src/lib/alloc/ob_malloc_allocator.cpp @@ -523,9 +523,6 @@ void ObMallocAllocator::print_tenant_memory_usage(uint64_t tenant_id) const get_global_ctx_info().get_ctx_name(i), ctx_hold_bytes[i], limit); } } - if (OB_SUCC(ret)) { - ObPageManagerCenter::get_instance().print_tenant_stat(tenant_id, buf, BUFLEN, ctx_pos); - } buf[std::min(ctx_pos, BUFLEN - 1)] = '\0'; allow_next_syslog(); _LOG_INFO("[MEMORY] tenant: %lu, limit: %'lu hold: %'lu rpc_hold: %'lu cache_hold: %'lu " @@ -679,6 +676,7 @@ int ObMallocAllocator::recycle_tenant_allocator(uint64_t tenant_id) // wash idle chunks for (int64_t ctx_id = 0; ctx_id < ObCtxIds::MAX_CTX_ID; ctx_id++) { ta[ctx_id].set_idle(0); + ta[ctx_id].reset_req_chunk_mgr(); } ObTenantCtxAllocator *tas[ObCtxIds::MAX_CTX_ID] = {NULL}; diff --git a/deps/oblib/src/lib/alloc/ob_tenant_ctx_allocator.cpp b/deps/oblib/src/lib/alloc/ob_tenant_ctx_allocator.cpp index aff92dd3881..e45d3e9f685 100644 --- a/deps/oblib/src/lib/alloc/ob_tenant_ctx_allocator.cpp +++ b/deps/oblib/src/lib/alloc/ob_tenant_ctx_allocator.cpp @@ -162,7 +162,8 @@ void ObTenantCtxAllocator::print_usage() const allow_next_syslog(); _LOG_INFO("\n[MEMORY] tenant_id=%5ld ctx_id=%25s hold=% '15ld used=% '15ld limit=% '15ld" "\n[MEMORY] idle_size=% '10ld free_size=% '10ld" - "\n[MEMORY] wash_related_chunks=% '10ld washed_blocks=% '10ld washed_size=% '10ld\n%s", + "\n[MEMORY] wash_related_chunks=% '10ld washed_blocks=% '10ld washed_size=% '10ld" + "\n[MEMORY] request_cached_chunk_cnt=% '5ld\n%s", tenant_id_, get_global_ctx_info().get_ctx_name(ctx_id_), ctx_hold_bytes, @@ -173,6 +174,7 @@ void ObTenantCtxAllocator::print_usage() const ATOMIC_LOAD(&wash_related_chunks_), ATOMIC_LOAD(&washed_blocks_), ATOMIC_LOAD(&washed_size_), + req_chunk_mgr_.n_chunks(), buf); } } @@ -220,11 +222,7 @@ AChunk *ObTenantCtxAllocator::alloc_chunk(const int64_t size, const ObMemAttr &a } } - if (OB_ISNULL(chunk)) { - if (INTACT_ACHUNK_SIZE == AChunkMgr::hold(size) && get_ctx_id() != ObCtxIds::CO_STACK) { - chunk = ObPageManagerCenter::get_instance().alloc_from_thread_local_cache(tenant_id_, ctx_id_); - } - } else { + if (OB_NOT_NULL(chunk)) { ObDisableDiagnoseGuard disable_diagnose_guard; lib::ObMutexGuard guard(using_list_mutex_); chunk->prev2_ = &using_list_head_; diff --git a/deps/oblib/src/lib/alloc/ob_tenant_ctx_allocator.h b/deps/oblib/src/lib/alloc/ob_tenant_ctx_allocator.h index 5a33f96828d..bd3adb087af 100644 --- a/deps/oblib/src/lib/alloc/ob_tenant_ctx_allocator.h +++ b/deps/oblib/src/lib/alloc/ob_tenant_ctx_allocator.h @@ -38,18 +38,102 @@ class ObTenantCtxAllocator friend class ObTenantCtxAllocatorGuard; friend class ObMallocAllocator; using InvokeFunc = std::function; + +class ChunkMgr : public IChunkMgr +{ +public: + ChunkMgr(ObTenantCtxAllocator &ta) : ta_(ta) {} + AChunk *alloc_chunk(const uint64_t size, const ObMemAttr &attr) override + { + AChunk *chunk = ta_.alloc_chunk(size, attr); + if (OB_ISNULL(chunk)) { + ta_.req_chunk_mgr_.reclaim_chunks(); + chunk = ta_.alloc_chunk(size, attr); + } + return chunk; + } + void free_chunk(AChunk *chunk, const ObMemAttr &attr) override + { + ta_.free_chunk(chunk, attr); + } +private: + ObTenantCtxAllocator &ta_; +}; + +class ReqChunkMgr : public IChunkMgr +{ +public: + ReqChunkMgr(ObTenantCtxAllocator &ta) + : ta_(ta), parallel_(CTX_ATTR(ta_.get_ctx_id()).parallel_) + { + abort_unless(parallel_ <= ARRAYSIZEOF(chunks_)); + MEMSET(chunks_, 0, sizeof(chunks_)); + } + AChunk *alloc_chunk(const uint64_t size, const ObMemAttr &attr) override + { + AChunk *chunk = NULL; + if (INTACT_ACHUNK_SIZE == AChunk::calc_hold(size)) { + const uint64_t idx = common::get_itid() % parallel_; + chunk = ATOMIC_TAS(&chunks_[idx], NULL); + } + if (OB_ISNULL(chunk)) { + chunk = ta_.alloc_chunk(size, attr); + } + return chunk; + } + void free_chunk(AChunk *chunk, const ObMemAttr &attr) override + { + bool freed = false; + if (INTACT_ACHUNK_SIZE == chunk->hold()) { + const uint64_t idx = common::get_itid() % parallel_; + freed = ATOMIC_BCAS(&chunks_[idx], NULL, chunk); + } + if (!freed) { + ta_.free_chunk(chunk, attr); + } + } + void reclaim_chunks() + { + for (int i = 0; i < parallel_; i++) { + AChunk *chunk = ATOMIC_TAS(&chunks_[i], NULL); + if (chunk != NULL) { + ta_.free_chunk(chunk, + ObMemAttr(ta_.get_tenant_id(), "unused", ta_.get_ctx_id())); + } + } + } + int64_t n_chunks() const + { + int64_t n = 0; + for (int i = 0; i < parallel_; i++) { + AChunk *chunk = ATOMIC_LOAD(&chunks_[i]); + if (chunk != NULL) { + n++; + } + } + return n; + } +private: + ObTenantCtxAllocator &ta_; + const int parallel_; + AChunk *chunks_[32]; +}; + public: explicit ObTenantCtxAllocator(uint64_t tenant_id, uint64_t ctx_id = 0) : resource_handle_(), ref_cnt_(0), tenant_id_(tenant_id), ctx_id_(ctx_id), deleted_(false), - obj_mgr_(*this, tenant_id_, ctx_id_, INTACT_NORMAL_AOBJECT_SIZE, + obj_mgr_(*this, + CTX_ATTR(ctx_id).enable_no_log_, + INTACT_NORMAL_AOBJECT_SIZE, CTX_ATTR(ctx_id).parallel_, CTX_ATTR(ctx_id).enable_dirty_list_, NULL), idle_size_(0), head_chunk_(), chunk_cnt_(0), chunk_freelist_mutex_(common::ObLatchIds::CHUNK_FREE_LIST_LOCK), using_list_mutex_(common::ObLatchIds::CHUNK_USING_LIST_LOCK), - using_list_head_(), wash_related_chunks_(0), washed_blocks_(0), washed_size_(0) + using_list_head_(), wash_related_chunks_(0), washed_blocks_(0), washed_size_(0), + chunk_mgr_(*this), req_chunk_mgr_(*this) { MEMSET(&head_chunk_, 0, sizeof(AChunk)); using_list_head_.prev2_ = &using_list_head_; @@ -60,8 +144,12 @@ using InvokeFunc = std::function; chunk_freelist_mutex_.enable_record_stat(false); using_list_mutex_.enable_record_stat(false); for (int i = 0; i < ObSubCtxIds::MAX_SUB_CTX_ID; ++i) { - new (obj_mgrs_ + i) ObjectMgr(*this, tenant_id_, ctx_id_, INTACT_MIDDLE_AOBJECT_SIZE, - 4/*parallel*/, false/*enable_dirty_list*/, &obj_mgr_); + new (obj_mgrs_ + i) ObjectMgr(*this, + CTX_ATTR(ctx_id).enable_no_log_, + INTACT_MIDDLE_AOBJECT_SIZE, + 4/*parallel*/, + false/*enable_dirty_list*/, + &obj_mgr_); } } virtual ~ObTenantCtxAllocator() @@ -172,6 +260,8 @@ using InvokeFunc = std::function; bool update_hold(const int64_t size); int set_idle(const int64_t size, const bool reserve = false); IBlockMgr &get_block_mgr() { return obj_mgr_; } + IChunkMgr &get_chunk_mgr() { return chunk_mgr_; } + IChunkMgr &get_req_chunk_mgr() { return req_chunk_mgr_; } void get_chunks(AChunk **chunks, int cap, int &cnt); using VisitFunc = std::function; @@ -190,6 +280,7 @@ using InvokeFunc = std::function; return has_unfree; } void update_wash_stat(int64_t related_chunks, int64_t blocks, int64_t size); + void reset_req_chunk_mgr() { req_chunk_mgr_.reclaim_chunks(); } private: int64_t inc_ref_cnt(int64_t cnt) { return ATOMIC_FAA(&ref_cnt_, cnt); } int64_t get_ref_cnt() const { return ATOMIC_LOAD(&ref_cnt_); } @@ -207,7 +298,6 @@ using InvokeFunc = std::function; } return ret; } - public: template static void* common_alloc(const int64_t size, const ObMemAttr &attr, @@ -240,6 +330,8 @@ using InvokeFunc = std::function; union { ObjectMgr obj_mgrs_[ObSubCtxIds::MAX_SUB_CTX_ID]; }; + ChunkMgr chunk_mgr_; + ReqChunkMgr req_chunk_mgr_; }; // end of class ObTenantCtxAllocator } // end of namespace lib diff --git a/deps/oblib/src/lib/alloc/object_mgr.cpp b/deps/oblib/src/lib/alloc/object_mgr.cpp index 492ef31a478..91336b0da34 100644 --- a/deps/oblib/src/lib/alloc/object_mgr.cpp +++ b/deps/oblib/src/lib/alloc/object_mgr.cpp @@ -18,17 +18,22 @@ using namespace oceanbase; using namespace lib; -SubObjectMgr::SubObjectMgr(const bool for_logger, const int64_t tenant_id, const int64_t ctx_id, +SubObjectMgr::SubObjectMgr(ObTenantCtxAllocator &ta, + const bool enable_no_log, const uint32_t ablock_size, const bool enable_dirty_list, IBlockMgr *blk_mgr) - : IBlockMgr(tenant_id, ctx_id), mutex_(common::ObLatchIds::ALLOC_OBJECT_LOCK), + : IBlockMgr(ta.get_tenant_id(), ta.get_ctx_id()), + ta_(ta), + mutex_(common::ObLatchIds::ALLOC_OBJECT_LOCK), normal_locker_(mutex_), no_log_locker_(mutex_), - locker_(!for_logger ? static_cast(normal_locker_) : + locker_(!enable_no_log ? static_cast(normal_locker_) : static_cast(no_log_locker_)), bs_(), os_(NULL, ablock_size, enable_dirty_list) { + bs_.set_tenant_ctx_allocator(ta); bs_.set_locker(&locker_); + bs_.set_chunk_mgr(&ta.get_chunk_mgr()); os_.set_locker(&locker_); NULL == blk_mgr ? os_.set_block_mgr(this) : os_.set_block_mgr(blk_mgr); #ifndef ENABLE_SANITY @@ -63,16 +68,25 @@ void SubObjectMgr::free_block(ABlock *block) bs_.free_block(block); } -ObjectMgr::ObjectMgr(ObTenantCtxAllocator &allocator, uint64_t tenant_id, uint64_t ctx_id, - uint32_t ablock_size, int parallel, bool enable_dirty_list, IBlockMgr *blk_mgr) - : IBlockMgr(tenant_id, ctx_id), ta_(allocator), - ablock_size_(ablock_size), parallel_(parallel), enable_dirty_list_(enable_dirty_list), - blk_mgr_(blk_mgr), sub_cnt_(1), - root_mgr_(CTX_ATTR(ctx_id).enable_no_log_, tenant_id, ctx_id, ablock_size_, +ObjectMgr::ObjectMgr(ObTenantCtxAllocator &ta, + bool enable_no_log, + uint32_t ablock_size, + int parallel, + bool enable_dirty_list, + IBlockMgr *blk_mgr) + : IBlockMgr(ta.get_tenant_id(), ta.get_ctx_id()), + ta_(ta), + enable_no_log_(enable_no_log), + ablock_size_(ablock_size), + parallel_(parallel), + enable_dirty_list_(enable_dirty_list), + blk_mgr_(blk_mgr), + sub_cnt_(1), + root_mgr_(ta, enable_no_log, ablock_size_, enable_dirty_list, blk_mgr_), - last_wash_ts_(0), last_washed_size_(0) + last_wash_ts_(0), + last_washed_size_(0) { - root_mgr_.set_tenant_ctx_allocator(allocator); MEMSET(sub_mgrs_, 0, sizeof(sub_mgrs_)); sub_mgrs_[0] = &root_mgr_; } @@ -234,9 +248,9 @@ SubObjectMgr *ObjectMgr::create_sub_mgr() root_mgr.unlock(); if (OB_NOT_NULL(obj)) { SANITY_UNPOISON(obj->data_, obj->alloc_bytes_); - sub_mgr = new (obj->data_) SubObjectMgr(CTX_ATTR(ctx_id_).enable_no_log_, tenant_id_, ctx_id_, + sub_mgr = new (obj->data_) SubObjectMgr(ta_, + enable_no_log_, ablock_size_, enable_dirty_list_, blk_mgr_); - sub_mgr->set_tenant_ctx_allocator(ta_); } return sub_mgr; } diff --git a/deps/oblib/src/lib/alloc/object_mgr.h b/deps/oblib/src/lib/alloc/object_mgr.h index 84ee0f03064..bfd7afa8963 100644 --- a/deps/oblib/src/lib/alloc/object_mgr.h +++ b/deps/oblib/src/lib/alloc/object_mgr.h @@ -36,14 +36,12 @@ class SubObjectMgr : public IBlockMgr { friend class ObTenantCtxAllocator; public: - SubObjectMgr(const bool for_logger, const int64_t tenant_id, const int64_t ctx_id, - const uint32_t ablock_size, const bool enable_dirty_list, + SubObjectMgr(ObTenantCtxAllocator &ta, + const bool enable_no_log, + const uint32_t ablock_size, + const bool enable_dirty_list, IBlockMgr *blk_mgr); virtual ~SubObjectMgr() {} - OB_INLINE void set_tenant_ctx_allocator(ObTenantCtxAllocator &allocator) - { - bs_.set_tenant_ctx_allocator(allocator); - } OB_INLINE void lock() { locker_.lock(); } OB_INLINE void unlock() { locker_.unlock(); } OB_INLINE bool trylock() { return locker_.trylock(); } @@ -70,6 +68,7 @@ class SubObjectMgr : public IBlockMgr return os_.check_has_unfree(first_label); } private: + ObTenantCtxAllocator &ta_; #ifndef ENABLE_SANITY lib::ObMutex mutex_; #else @@ -85,6 +84,7 @@ class SubObjectMgr : public IBlockMgr class ObjectMgr final : public IBlockMgr { static const int N = 32; + friend class SubObjectMgr; public: struct Stat { @@ -95,8 +95,11 @@ class ObjectMgr final : public IBlockMgr int64_t last_wash_ts_; }; public: - ObjectMgr(ObTenantCtxAllocator &allocator, uint64_t tenant_id, uint64_t ctx_id, - uint32_t ablock_size, int parallel, bool enable_dirty_list, + ObjectMgr(ObTenantCtxAllocator &ta, + bool enable_no_log, + uint32_t ablock_size, + int parallel, + bool enable_dirty_list, IBlockMgr *blk_mgr); ~ObjectMgr(); void reset(); @@ -120,6 +123,7 @@ class ObjectMgr final : public IBlockMgr public: ObTenantCtxAllocator &ta_; + bool enable_no_log_; uint32_t ablock_size_; int parallel_; bool enable_dirty_list_; diff --git a/deps/oblib/src/lib/allocator/ob_concurrent_fifo_allocator.cpp b/deps/oblib/src/lib/allocator/ob_concurrent_fifo_allocator.cpp index 6893ff7a7ac..022b9dd0b88 100644 --- a/deps/oblib/src/lib/allocator/ob_concurrent_fifo_allocator.cpp +++ b/deps/oblib/src/lib/allocator/ob_concurrent_fifo_allocator.cpp @@ -48,15 +48,13 @@ int ObConcurrentFIFOAllocator::init(const int64_t total_limit, } int ObConcurrentFIFOAllocator::init(const int64_t page_size, - const lib::ObLabel &label, - const uint64_t tenant_id, + const lib::ObMemAttr &attr, const int64_t total_limit) { int ret = OB_SUCCESS; const int64_t cache_page_count = lib::is_mini_mode() ? 0 : get_cpu_count() * STORAGE_SIZE_TIMES; if (OB_FAIL(inner_allocator_.init(page_size, - label, - tenant_id, + attr, cache_page_count, total_limit))) { LIB_LOG(WARN, "failed to init inner allocator", K(ret)); @@ -64,6 +62,14 @@ int ObConcurrentFIFOAllocator::init(const int64_t page_size, return ret; } +int ObConcurrentFIFOAllocator::init(const int64_t page_size, + const lib::ObLabel &label, + const uint64_t tenant_id, + const int64_t total_limit) +{ + return init(page_size, ObMemAttr(tenant_id, label), total_limit); +} + int ObConcurrentFIFOAllocator::set_hold_limit(int64_t hold_limit) { UNUSED(hold_limit); diff --git a/deps/oblib/src/lib/allocator/ob_concurrent_fifo_allocator.h b/deps/oblib/src/lib/allocator/ob_concurrent_fifo_allocator.h index f6a29992457..34b1db00728 100644 --- a/deps/oblib/src/lib/allocator/ob_concurrent_fifo_allocator.h +++ b/deps/oblib/src/lib/allocator/ob_concurrent_fifo_allocator.h @@ -27,16 +27,19 @@ class ObConcurrentFIFOAllocator : public common::ObIAllocator int init(const int64_t total_limit, const int64_t hold_limit, const int64_t page_size); - int init(const int64_t page_size, const lib::ObLabel &label, const uint64_t tenant_id, const int64_t total_limit); + int init(const int64_t page_size, + const lib::ObMemAttr &attr, + const int64_t total_limit); void destroy(); public: void set_label(const lib::ObLabel &label); void set_attr(const lib::ObMemAttr &attr); void set_tenant_id(const uint64_t tenant_id); + void set_nway(int nway) { inner_allocator_.set_nway(nway); } void *alloc(const int64_t size); void *alloc(const int64_t size, const ObMemAttr &attr); void free(void *ptr); diff --git a/deps/oblib/src/lib/allocator/ob_page_manager.cpp b/deps/oblib/src/lib/allocator/ob_page_manager.cpp index 880c4747d6a..ac114f7e2c2 100644 --- a/deps/oblib/src/lib/allocator/ob_page_manager.cpp +++ b/deps/oblib/src/lib/allocator/ob_page_manager.cpp @@ -18,157 +18,6 @@ namespace oceanbase { namespace common { -ObPageManagerCenter::ObPageManagerCenter() -{ - mutex_.enable_record_stat(false); -} - -ObPageManagerCenter &ObPageManagerCenter::get_instance() -{ - static ObPageManagerCenter THE_ONE; - return THE_ONE; -} - -int ObPageManagerCenter::register_pm(ObPageManager &pm) -{ - int ret = OB_SUCCESS; - ObDisableDiagnoseGuard disable_diagnose_guard; - lib::ObMutexGuard guard(mutex_); - rb_tree_.insert(&pm); - pm.has_register_ = true; - OB_LOG(INFO, "register pm finish", K(ret), KP(&pm), K(pm.get_tid()), - "tenant_id", pm.get_tenant_id()); - return ret; -} - -void ObPageManagerCenter::unregister_pm(ObPageManager &pm) -{ - ObDisableDiagnoseGuard disable_diagnose_guard; - lib::ObMutexGuard guard(mutex_); - pm.has_register_ = false; - rb_tree_.remove(&pm); - OB_LOG(INFO, "unregister pm finish", KP(&pm), K(pm.get_tid())); -} - -bool ObPageManagerCenter::has_register(ObPageManager &pm) const -{ - return pm.has_register_; -} - -int ObPageManagerCenter::print_tenant_stat(int64_t tenant_id, char *buf, - int64_t len, int64_t &pos) -{ - int ret = OB_SUCCESS; - ObDisableDiagnoseGuard disable_diagnose_guard; - lib::ObMutexGuard guard(mutex_); - int64_t sum_used = 0; - int64_t sum_hold = 0; - if (OB_SUCC(print_tenant_stat(tenant_id, sum_used, sum_hold, buf, len, pos)) && - sum_hold > 0) { - ret = databuff_printf(buf, len, pos, - "[MEMORY][PM] tid=%10s used=%'15ld hold=%'15ld\n", "summary", sum_used, sum_hold); - } - return ret; -} - -AChunk *ObPageManagerCenter::alloc_from_thread_local_cache(int64_t tenant_id, int64_t ctx_id) -{ - int tmpret = OB_SUCCESS; - AChunk *ret = nullptr; - const int RETRY_LIMIT = 10; - ObDisableDiagnoseGuard disable_diagnose_guard; - for (int retry = 0; retry < RETRY_LIMIT && OB_EAGAIN == (tmpret = mutex_.trylock()); ++retry) { - sched_yield(); - } - if (OB_SUCCESS == tmpret) { - ret = alloc_from_thread_local_cache_(tenant_id, ctx_id); - if (OB_SUCCESS != (tmpret = mutex_.unlock())) { - OB_LOG_RET(ERROR, tmpret, "unlock failed", K(tmpret)); - } - } - return ret; -} - -int ObPageManagerCenter::print_tenant_stat(int64_t tenant_id, - int64_t &sum_used, int64_t &sum_hold, char *buf, int64_t len, int64_t &pos) -{ - int ret = OB_SUCCESS; - char cmp_buf[sizeof(ObPageManager)]; - ObPageManager *cmp_node = (ObPageManager*)cmp_buf; - cmp_node->tenant_id_ = tenant_id - 1; - cmp_node->id_ = INT64_MAX; - ObPageManager *start = nullptr; - rb_tree_.nsearch(cmp_node, start); - struct Arg - { - int *ret_; - char *buf_; - int64_t len_; - int64_t *pos_; - int64_t *sum_used_; - int64_t *sum_hold_; - int64_t tenant_id_; - } arg{&ret, buf, len, &pos, &sum_used, &sum_hold, tenant_id}; - auto &&cb = [] (decltype(rb_tree_) *, ObPageManager *pm, void *p) { - Arg *arg = (Arg*)p; - ObPageManager *return_ret = nullptr; - if (!pm->less_than(arg->tenant_id_, INT64_MAX)) { - // iter over - return_ret = pm; - } else if (pm->get_hold() > 0) { - *arg->ret_ = databuff_printf(arg->buf_, arg->len_, *arg->pos_, - "[MEMORY][PM] tid=%10ld used=%'15ld hold=%'15ld pm=%14p ctx_name=%s\n", pm->get_tid(), - pm->get_used(), pm->get_hold(), pm, - get_global_ctx_info().get_ctx_name(pm->get_ctx_id())); - *arg->sum_used_ += pm->get_used(); - *arg->sum_hold_ += pm->get_hold(); - } - return return_ret; - }; - if (NULL != start) { - rb_tree_.iter_rbtree(&rb_tree_, start, cb, &arg); - } - return ret; -} - -AChunk *ObPageManagerCenter::alloc_from_thread_local_cache_(int64_t tenant_id, int64_t ctx_id) -{ - AChunk * ret = nullptr; - - char cmp_buf[sizeof(ObPageManager)]; - ObPageManager *cmp_node = (ObPageManager*)cmp_buf; - cmp_node->tenant_id_ = tenant_id - 1; - cmp_node->id_ = INT64_MAX; - ObPageManager *start = nullptr; - rb_tree_.nsearch(cmp_node, start); - struct Arg - { - AChunk *&ret_; - int64_t tenant_id_; - int64_t ctx_id_; - } arg{ret, tenant_id, ctx_id}; - auto &&cb = [] (decltype(rb_tree_) *, ObPageManager *pm, void *p) { - Arg *arg = (Arg*)p; - ObPageManager *return_ret = nullptr; - if (!pm->less_than(arg->tenant_id_, INT64_MAX)) { - // iter over - return_ret = pm; - } else if (pm->get_ctx_id() == arg->ctx_id_) { - BlockSet::LockGuard lock(pm->bs_.cache_shared_lock_); - arg->ret_ = pm->bs_.chunk_free_list_.pop(); - if (OB_NOT_NULL(arg->ret_)) { - UNUSED(ATOMIC_FAA(&(pm->bs_.total_hold_), -arg->ret_->hold())); - // iter over - return_ret = pm; - } - } - return return_ret; - }; - rb_tree_.iter_rbtree(&rb_tree_, start, cb, &arg); - - return ret; -} - void ObPageManager::reset() { ctx_id_ = ObCtxIds::GLIBC; @@ -179,7 +28,5 @@ void ObPageManager::reset() _RLOCAL(ObPageManager *, ObPageManager::tl_instance_); -int64_t ObPageManager::global_id_ = 0; - } // end of namespace common } // end of namespace oceanbase diff --git a/deps/oblib/src/lib/allocator/ob_page_manager.h b/deps/oblib/src/lib/allocator/ob_page_manager.h index 302a2a4650d..ba1525c0c16 100644 --- a/deps/oblib/src/lib/allocator/ob_page_manager.h +++ b/deps/oblib/src/lib/allocator/ob_page_manager.h @@ -34,38 +34,12 @@ using lib::ObTenantCtxAllocator; class ObPageManager : public lib::IBlockMgr { -public: - constexpr static int DEFAULT_CHUNK_CACHE_SIZE = lib::INTACT_ACHUNK_SIZE * 2; - constexpr static int MINI_MODE_CHUNK_CACHE_SIZE = 0; - RBNODE(ObPageManager, rblink); - int compare(const ObPageManager *node) const - { - int ret = 0; - ret = (tenant_id_ > node->tenant_id_) - (tenant_id_ < node->tenant_id_); - if (ret == 0) { - ret = (id_ > node->id_) - (id_ < node->id_); - } - return ret; - } -private: - friend class ObPageManagerCenter; friend class Thread; public: ObPageManager(); - ~ObPageManager(); + ~ObPageManager() {} static ObPageManager *thread_local_instance() { return tl_instance_; } - bool less_than(const ObPageManager &other) const - { - return less_than(other.tenant_id_, other.id_); - } - bool less_than(int64_t tenant_id, int64_t id) const - { - return tenant_id_ < tenant_id || - (tenant_id_ == tenant_id && id_ < id); - } int set_tenant_ctx(const int64_t tenant_id, const int64_t ctx_id); - void set_max_chunk_cache_size(const int64_t max_cache_size) - { bs_.set_max_chunk_cache_size(max_cache_size); } void reset(); int64_t get_hold() const; int64_t get_tid() const { return tid_; } @@ -82,9 +56,7 @@ class ObPageManager : public lib::IBlockMgr private: int init(); RLOCAL_STATIC(ObPageManager *,tl_instance_); - static int64_t global_id_; private: - int64_t id_; lib::ObTenantCtxAllocatorGuard ta_; lib::BlockSet bs_; int64_t used_; @@ -94,28 +66,8 @@ class ObPageManager : public lib::IBlockMgr bool is_inited_; }; -class ObPageManagerCenter -{ -public: - static ObPageManagerCenter &get_instance(); - int register_pm(ObPageManager &pm); - void unregister_pm(ObPageManager &pm); - bool has_register(ObPageManager &pm) const; - int print_tenant_stat(int64_t tenant_id, char *buf, int64_t len, int64_t &pos); - AChunk *alloc_from_thread_local_cache(int64_t tenant_id, int64_t ctx_id); -private: - ObPageManagerCenter(); - int print_tenant_stat(int64_t tenant_id, int64_t &sum_used, int64_t &sum_hold, - char *buf, int64_t len, int64_t &pos); - AChunk *alloc_from_thread_local_cache_(int64_t tenant_id, int64_t ctx_id); -private: - lib::ObMutex mutex_; - container::ObRbTree> rb_tree_; -}; - inline ObPageManager::ObPageManager() - : id_(ATOMIC_FAA(&global_id_, 1)), - bs_(), + : bs_(), used_(0), tid_(GETTID()), itid_(get_itid()), @@ -124,28 +76,14 @@ inline ObPageManager::ObPageManager() { } -inline ObPageManager::~ObPageManager() -{ - auto &pmc = ObPageManagerCenter::get_instance(); - if (pmc.has_register(*this)) { - pmc.unregister_pm(*this); - } -} - inline int ObPageManager::set_tenant_ctx(const int64_t tenant_id, const int64_t ctx_id) { int ret = OB_SUCCESS; - auto &pmc = ObPageManagerCenter::get_instance(); if (tenant_id != tenant_id_ || ctx_id != ctx_id_) { - if (pmc.has_register(*this)) { - pmc.unregister_pm(*this); - } tenant_id_ = tenant_id; ctx_id_ = ctx_id; is_inited_ = false; if (OB_FAIL(init())) { - } else { - ret = pmc.register_pm(*this); } } return ret; @@ -166,6 +104,7 @@ inline int ObPageManager::init() OB_LOG(ERROR, "null ptr", K(ret)); } else { bs_.set_tenant_ctx_allocator(*ta_.ref_allocator()); + bs_.set_chunk_mgr(&ta_->get_req_chunk_mgr()); is_inited_ = true; } return ret; diff --git a/deps/oblib/src/lib/hash/ob_linear_hash_map.h b/deps/oblib/src/lib/hash/ob_linear_hash_map.h index 69b7fb5e29f..af58a730302 100644 --- a/deps/oblib/src/lib/hash/ob_linear_hash_map.h +++ b/deps/oblib/src/lib/hash/ob_linear_hash_map.h @@ -221,17 +221,18 @@ class ObLinearHashMap : public ConstructGuard HashMapMemMgrCore(); ~HashMapMemMgrCore(); static HashMapMemMgrCore& get_instance(); + int init(const int64_t tenant_id); ObExternalRef* get_external_ref(); ObSmallAllocator& get_node_alloc(); - ObConcurrentFIFOAllocator& get_dir_alloc(); - ObConcurrentFIFOAllocator& get_cnter_alloc(); + ObIAllocator& get_dir_alloc(); + ObIAllocator& get_cnter_alloc(); void add_map(void *ptr); void rm_map(void *ptr); private: ObExternalRef hash_ref_; ObSmallAllocator node_alloc_; - ObConcurrentFIFOAllocator dir_alloc_; - ObConcurrentFIFOAllocator cnter_alloc_; + ObMalloc dir_alloc_; + ObMalloc cnter_alloc_; typedef common::ObArray MapArray; MapArray map_array_; ObSpinLock map_array_lock_; @@ -245,10 +246,11 @@ class ObLinearHashMap : public ConstructGuard typedef HashMapMemMgrCore Core; HashMapMemMgr() {} virtual ~HashMapMemMgr() {} + int init(const int64_t tenant_id) { UNUSED(tenant_id); return OB_SUCCESS; } ObExternalRef* get_external_ref(); ObSmallAllocator& get_node_alloc(); - ObConcurrentFIFOAllocator& get_dir_alloc(); - ObConcurrentFIFOAllocator& get_cnter_alloc(); + ObIAllocator& get_dir_alloc(); + ObIAllocator& get_cnter_alloc(); void add_map(void *ptr) { Core::get_instance().add_map(ptr); } void rm_map(void *ptr) { Core::get_instance().rm_map(ptr); } private: @@ -262,11 +264,12 @@ class ObLinearHashMap : public ConstructGuard public: HashMapMemMgr() : core_() {} virtual ~HashMapMemMgr() {} + int init(const int64_t tenant_id); typedef HashMapMemMgrCore Core; ObExternalRef* get_external_ref(); ObSmallAllocator& get_node_alloc(); - ObConcurrentFIFOAllocator& get_dir_alloc(); - ObConcurrentFIFOAllocator& get_cnter_alloc(); + ObIAllocator& get_dir_alloc(); + ObIAllocator& get_cnter_alloc(); void add_map(void *ptr) { Core::get_instance().add_map(ptr); } void rm_map(void *ptr) { Core::get_instance().rm_map(ptr); } private: @@ -563,6 +566,13 @@ class ObLinearHashMap : public ConstructGuard template constexpr const char *ObLinearHashMap::LABEL; +template +template +int ObLinearHashMap::HashMapMemMgr::init(const int64_t tenant_id) +{ + return core_.init(tenant_id); +} + template template ObExternalRef* ObLinearHashMap::HashMapMemMgr::get_external_ref() @@ -579,14 +589,14 @@ ObSmallAllocator& ObLinearHashMap::HashMapMemMgr template -ObConcurrentFIFOAllocator& ObLinearHashMap::HashMapMemMgr::get_dir_alloc() +ObIAllocator& ObLinearHashMap::HashMapMemMgr::get_dir_alloc() { return core_.get_dir_alloc(); } template template -ObConcurrentFIFOAllocator& ObLinearHashMap::HashMapMemMgr::get_cnter_alloc() +ObIAllocator& ObLinearHashMap::HashMapMemMgr::get_cnter_alloc() { return core_.get_cnter_alloc(); } @@ -607,46 +617,38 @@ ObSmallAllocator& ObLinearHashMap::HashMapMemMgr template -ObConcurrentFIFOAllocator& ObLinearHashMap::HashMapMemMgr::get_dir_alloc() +ObIAllocator& ObLinearHashMap::HashMapMemMgr::get_dir_alloc() { return Core::get_instance().get_dir_alloc(); } template template -ObConcurrentFIFOAllocator& ObLinearHashMap::HashMapMemMgr::get_cnter_alloc() +ObIAllocator& ObLinearHashMap::HashMapMemMgr::get_cnter_alloc() { return Core::get_instance().get_cnter_alloc(); } - /* Hash Map memory manager. */ template ObLinearHashMap::HashMapMemMgrCore::HashMapMemMgrCore() : map_array_lock_(common::ObLatchIds::HASH_MAP_LOCK) { +} + +/* Hash Map memory manager. */ +template +int ObLinearHashMap::HashMapMemMgrCore::init(const int64_t tenant_id) +{ + int ret = OB_SUCCESS; + dir_alloc_.set_attr(ObMemAttr(tenant_id, "LinearHashMapDi")); + cnter_alloc_.set_attr(ObMemAttr(tenant_id, "LinearHashMapCn")); // Init node alloc. - int ret = node_alloc_.init(static_cast(sizeof(Node)), SET_USE_500("LinearHashMapNo")); + ret = node_alloc_.init(static_cast(sizeof(Node)), + SET_USE_500(ObMemAttr(tenant_id, "LinearHashMapNo"))); if (OB_FAIL(ret)) { LIB_LOG(WARN, "failed to init node alloc", K(ret)); } - int64_t total_limit = 128 * (1L << 30); // 128GB - int64_t page_size = 0; - if (lib::is_mini_mode()) { - total_limit *= lib::mini_mode_resource_ratio(); - } - page_size = OB_MALLOC_MIDDLE_BLOCK_SIZE; - // Init dir alloc. - ret = dir_alloc_.init(total_limit, 2 * page_size, page_size); - dir_alloc_.set_attr(SET_USE_500("LinearHashMapDi")); - if (OB_FAIL(ret)) { - LIB_LOG(WARN, "failed to init dir alloc", K(ret)); - } - // Init counter alloc. - ret = cnter_alloc_.init(total_limit, 2 * page_size, page_size); - cnter_alloc_.set_attr(SET_USE_500("LinearHashMapCn")); - if (OB_FAIL(ret)) { - LIB_LOG(WARN, "failed to init cnter alloc", K(ret)); - } + return ret; } template @@ -658,8 +660,6 @@ ObLinearHashMap::HashMapMemMgrCore::~HashMapMemMgrCore() LIB_LOG(WARN, "hash map not destroy", "map_ptr", map_array_.at(i)); } } - cnter_alloc_.destroy(); - dir_alloc_.destroy(); if (OB_SUCCESS != (ret = node_alloc_.destroy())) { LIB_LOG(ERROR, "failed to destroy node alloc", K(ret)); } @@ -669,7 +669,18 @@ template typename ObLinearHashMap::HashMapMemMgrCore& ObLinearHashMap::HashMapMemMgrCore::get_instance() { + class InitCore { + public: + InitCore(HashMapMemMgrCore &core) + { + int ret = OB_SUCCESS; + if (OB_FAIL(core.init(OB_SERVER_TENANT_ID))) { + LIB_LOG(ERROR, "failed to init MemMgrCore", K(ret)); + } + } + }; static HashMapMemMgrCore core; + static InitCore init(core); return core; } @@ -687,13 +698,13 @@ ObSmallAllocator& ObLinearHashMap::HashMapMemMgrCore::get } template -ObConcurrentFIFOAllocator& ObLinearHashMap::HashMapMemMgrCore::get_dir_alloc() +ObIAllocator& ObLinearHashMap::HashMapMemMgrCore::get_dir_alloc() { return dir_alloc_; } template -ObConcurrentFIFOAllocator& ObLinearHashMap::HashMapMemMgrCore::get_cnter_alloc() +ObIAllocator& ObLinearHashMap::HashMapMemMgrCore::get_cnter_alloc() { return cnter_alloc_; } @@ -883,7 +894,9 @@ int ObLinearHashMap::init(uint64_t m_seg_sz, uint64_t s_s set_Lp_(0, 0); init_haz_(); init_foreach_(); - if (OB_SUCCESS != (ret = init_d_arr_(m_seg_sz, s_seg_sz, dir_init_sz))) + if (OB_SUCCESS != (ret = mem_mgr_.init(tenant_id))) + { } + else if (OB_SUCCESS != (ret = init_d_arr_(m_seg_sz, s_seg_sz, dir_init_sz))) { } else if (OB_SUCCESS != (ret = cnter_.init(mem_mgr_))) { } diff --git a/deps/oblib/src/lib/ob_define.h b/deps/oblib/src/lib/ob_define.h index 312e7151da2..c24e2a6c897 100644 --- a/deps/oblib/src/lib/ob_define.h +++ b/deps/oblib/src/lib/ob_define.h @@ -1633,6 +1633,7 @@ OB_INLINE bool is_bootstrap_resource_pool(const uint64_t resource_pool_id) const int64_t OB_MALLOC_NORMAL_BLOCK_SIZE = (1LL << 13) - 256; // 8KB const int64_t OB_MALLOC_MIDDLE_BLOCK_SIZE = (1LL << 16) - 128; // 64KB const int64_t OB_MALLOC_BIG_BLOCK_SIZE = (1LL << 21) - ACHUNK_PRESERVE_SIZE;// 2MB (-17KB) +const int64_t OB_MALLOC_REQ_NORMAL_BLOCK_SIZE = (256LL << 10); // 256KB const int64_t OB_MAX_MYSQL_RESPONSE_PACKET_SIZE = OB_MALLOC_BIG_BLOCK_SIZE; diff --git a/deps/oblib/src/lib/thread/thread.cpp b/deps/oblib/src/lib/thread/thread.cpp index 5b9f29d5b60..859ddecd471 100644 --- a/deps/oblib/src/lib/thread/thread.cpp +++ b/deps/oblib/src/lib/thread/thread.cpp @@ -307,9 +307,6 @@ void* Thread::__th_start(void *arg) if (OB_FAIL(ret)) { LOG_ERROR("set tenant ctx failed", K(ret)); } else { - const int cache_size = !lib::is_mini_mode() ? ObPageManager::DEFAULT_CHUNK_CACHE_SIZE : - ObPageManager::MINI_MODE_CHUNK_CACHE_SIZE; - pm.set_max_chunk_cache_size(cache_size); ObPageManager::set_thread_local_instance(pm); MemoryContext *mem_context = GET_TSI0(MemoryContext); if (OB_ISNULL(mem_context)) { diff --git a/deps/oblib/src/rpc/frame/ob_req_queue_thread.cpp b/deps/oblib/src/rpc/frame/ob_req_queue_thread.cpp index 973d8cdd768..44bb83b9844 100644 --- a/deps/oblib/src/rpc/frame/ob_req_queue_thread.cpp +++ b/deps/oblib/src/rpc/frame/ob_req_queue_thread.cpp @@ -103,7 +103,7 @@ int ObReqQueue::process_task(ObLink *task) LOG_ERROR("queue pop NULL task", K(task), K(ret), K(qhandler_)); } else { lib::ContextParam param; - param.set_mem_attr(common::OB_SERVER_TENANT_ID, ObModIds::OB_ROOT_CONTEXT, ObCtxIds::WORK_AREA) + param.set_mem_attr(common::OB_SERVER_TENANT_ID, ObModIds::OB_ROOT_CONTEXT) .set_properties(USE_TL_PAGE_OPTIONAL); CREATE_WITH_TEMP_CONTEXT(param) { ObRequest *req = static_cast(task); diff --git a/deps/oblib/unittest/common/test_smart_var.cpp b/deps/oblib/unittest/common/test_smart_var.cpp index 773a2f1e686..aad3c0711c4 100644 --- a/deps/oblib/unittest/common/test_smart_var.cpp +++ b/deps/oblib/unittest/common/test_smart_var.cpp @@ -366,6 +366,8 @@ TEST(utility, used_size) int main(int argc, char **argv) { + // This test has an unknown exit crash problem, which requires the existence of such a line of code + oceanbase::common::get_itid(); ::testing::InitGoogleTest(&argc,argv); return RUN_ALL_TESTS(); } diff --git a/deps/oblib/unittest/lib/alloc/test_block_set.cpp b/deps/oblib/unittest/lib/alloc/test_block_set.cpp index a49797b1c56..013edafe64f 100644 --- a/deps/oblib/unittest/lib/alloc/test_block_set.cpp +++ b/deps/oblib/unittest/lib/alloc/test_block_set.cpp @@ -37,6 +37,7 @@ class TestBlockSet { tallocator_.set_tenant_memory_mgr(); tallocator_.set_limit(1000L << 20); + cs_.set_chunk_mgr(&tallocator_.get_chunk_mgr()); cs_.set_tenant_ctx_allocator(tallocator_); } diff --git a/deps/oblib/unittest/lib/alloc/test_object_mgr.cpp b/deps/oblib/unittest/lib/alloc/test_object_mgr.cpp index 0803872b9d6..e8c925ec083 100644 --- a/deps/oblib/unittest/lib/alloc/test_object_mgr.cpp +++ b/deps/oblib/unittest/lib/alloc/test_object_mgr.cpp @@ -238,10 +238,10 @@ TEST_F(TestObjectMgr, TestSubObjectMgr) abort_unless(ptr != MAP_FAILED); int64_t tenant_id = OB_SERVER_TENANT_ID; int64_t ctx_id = ObCtxIds::DEFAULT_CTX_ID; - SubObjectMgr som(false, tenant_id, ctx_id, INTACT_NORMAL_AOBJECT_SIZE, false, NULL); + auto ta = ObMallocAllocator::get_instance()->get_tenant_ctx_allocator( + tenant_id, ctx_id); + ObjectMgr som(*ta.ref_allocator(), false, INTACT_NORMAL_AOBJECT_SIZE, 1, false, NULL); ObMemAttr attr; - som.set_tenant_ctx_allocator(*ObMallocAllocator::get_instance()->get_tenant_ctx_allocator( - tenant_id, ctx_id).ref_allocator()); ObTenantResourceMgrHandle resource_handle; ObResourceMgr::get_instance().get_tenant_resource_mgr( tenant_id, resource_handle); diff --git a/deps/oblib/unittest/lib/allocator/test_allocator.cpp b/deps/oblib/unittest/lib/allocator/test_allocator.cpp index cd3ef4fdc02..4f4ab7cefbf 100644 --- a/deps/oblib/unittest/lib/allocator/test_allocator.cpp +++ b/deps/oblib/unittest/lib/allocator/test_allocator.cpp @@ -180,13 +180,11 @@ TEST_F(TestAllocator, pm_basic) // freelist int large_size = INTACT_ACHUNK_SIZE - 200; - pm.set_max_chunk_cache_size(INTACT_ACHUNK_SIZE); ptr = pm.alloc_page(large_size); hold = pm.get_hold(); ASSERT_GT(hold, 0); pm.free_page(ptr); ASSERT_EQ(pm.get_hold(), hold); - pm.set_max_chunk_cache_size(0); ptr = pm.alloc_page(large_size); ASSERT_EQ(pm.get_hold(), hold); pm.free_page(ptr); @@ -197,7 +195,6 @@ TEST_F(TestAllocator, pm_basic) pm.free_page(ptr); ASSERT_EQ(pm.get_hold(), hold); - pm.set_max_chunk_cache_size(INTACT_ACHUNK_SIZE * 2); pm.alloc_page(large_size); pm.alloc_page(large_size); pm.alloc_page(large_size); diff --git a/deps/oblib/unittest/lib/rc/test_context.cpp b/deps/oblib/unittest/lib/rc/test_context.cpp index 1b51b2550bc..466653c4e0e 100644 --- a/deps/oblib/unittest/lib/rc/test_context.cpp +++ b/deps/oblib/unittest/lib/rc/test_context.cpp @@ -22,6 +22,7 @@ #include "lib/alloc/memory_dump.h" #include "lib/thread/thread_mgr.h" #include "lib/allocator/ob_mem_leak_checker.h" +#include using namespace oceanbase; using namespace oceanbase::common; @@ -58,7 +59,6 @@ TEST_F(TestContext, Basic) ObPageManager g_pm; ObPageManager::set_thread_local_instance(g_pm); g_pm.set_tenant_ctx(tenant_id, ctx_id); - g_pm.set_max_chunk_cache_size(0); MemoryContext &root = MemoryContext::root(); ContextParam param; param.set_mem_attr(tenant_id, "Context", ctx_id); @@ -231,8 +231,48 @@ TEST_F(TestContext, Basic) ObMallocAllocator::get_instance()->get_tenant_ctx_allocator(500, ObCtxIds::DEFAULT_CTX_ID)->print_memory_usage(); } +bool req_cache_empty(ObTenantCtxAllocator *ta) +{ + for (int i = 0; i < ta->req_chunk_mgr_.parallel_; i++) { + if (ta->req_chunk_mgr_.chunks_[i]) { + return false; + } + } + return true; +} + +TEST_F(TestContext, PM_Wash) +{ + uint64_t tenant_id = 1002; + uint64_t ctx_id = ObCtxIds::DEFAULT_CTX_ID; + ObMallocAllocator *ma = ObMallocAllocator::get_instance(); + ASSERT_EQ(OB_SUCCESS, ma->create_and_add_tenant_allocator(tenant_id)); + auto ta = ObMallocAllocator::get_instance()->get_tenant_ctx_allocator(tenant_id, ctx_id); + ObMemAttr attr(tenant_id, "test", ctx_id); + ObPageManager g_pm; + ObPageManager::set_thread_local_instance(g_pm); + g_pm.set_tenant_ctx(tenant_id, ctx_id); + ContextTLOptGuard guard(true); + ContextParam param; + param.set_mem_attr(attr); + param.properties_ = USE_TL_PAGE_OPTIONAL; + ASSERT_TRUE(req_cache_empty(ta.ref_allocator())); + int ret = OB_SUCCESS; + CREATE_WITH_TEMP_CONTEXT(param) { + void *ptr = ctxalf(100, attr); + ASSERT_NE(nullptr, ptr); + ctxfree(ptr); + ASSERT_FALSE(req_cache_empty(ta.ref_allocator())); + ta->set_limit(ta->get_hold()); + ASSERT_NE(ob_malloc(OB_MALLOC_BIG_BLOCK_SIZE, attr), nullptr); + ASSERT_TRUE(req_cache_empty(ta.ref_allocator())); + } +} + +void emptySignalHandler(int) {} int main(int argc, char **argv) { + std::signal(49, emptySignalHandler); oceanbase::common::ObLogger::get_logger().set_log_level("INFO"); OB_LOGGER.set_log_level("INFO"); testing::InitGoogleTest(&argc, argv); diff --git a/hotfuncs.txt b/hotfuncs.txt index a7bad21fdcc..7fe0b85e2f8 100644 --- a/hotfuncs.txt +++ b/hotfuncs.txt @@ -1,97 +1,102 @@ -_ZN9oceanbase6common8ObLogger13need_to_printEmi -_ZTWN9oceanbase3lib6Thread12blocking_ts_E +_ZSt16__introsort_loopIPPN9oceanbase3sql17ObChunkDatumStore9StoredRowElN9__gnu_cxx5__ops15_Iter_comp_iterINS1_12ObSortOpImpl16CopyableComparerEEEEvT_SC_T0_T1_ +_ZN9oceanbase3sql12ObSortOpImpl7CompareclEPKNS0_17ObChunkDatumStore9StoredRowES6_ +_ZN9oceanbase6common21ObNullSafeDatumStrCmpILNS0_15ObCollationTypeE45ELb0ELb1EE3cmpERKNS0_7ObDatumES6_Ri +_ZN9oceanbase6common9datum_cmp13ObDatumStrCmpILNS0_15ObCollationTypeE45ELb0EE3cmpERKNS0_7ObDatumES7_Ri +_ZN9oceanbase6common9ObCharset8strcmpspENS0_15ObCollationTypeEPKclS4_lb +_ZTWN9oceanbase3lib6Thread8loop_ts_E _ZTWN9oceanbase3lib6Thread11wait_event_E -_ZN9oceanbase3sql12ObSortOpImpl12ObAdaptiveQS29inplace_radixsort_more_bucketEllllllb -_ZN9oceanbase3sql12ObSortOpImpl12ObAdaptiveQS10aqs_cps_qsElllll -_ZN9oceanbase3sql17fast_compare_simdEPKhS2_lRll +_ZTWN9oceanbase6common7ObLatch17max_lock_slot_idxE +_ZTWN9oceanbase3lib6Thread12blocking_ts_E +_ZTWN9oceanbase3lib17ContextTLOptGuard13enable_tl_optE _ZN9oceanbase6common18ObBucketRLockGuardD2Ev _ZN9oceanbase6common7ObLatch6unlockEPKj -_ZTWN9oceanbase3lib17ContextTLOptGuard13enable_tl_optE +_ZN9oceanbase7storage16ObTxDataMemtable11merge_sort_EPFlRKNS0_8ObTxDataEERPS2_ +_ZN9oceanbase7storage10get_tx_id_ERKNS0_8ObTxDataE +_ZN9oceanbase7storage13get_start_ts_ERKNS0_8ObTxDataE +_ZTWN9oceanbase8memtable33TLOCAL_NEED_WAIT_IN_LOCK_WAIT_MGRE _ZN9oceanbase7obmysql21ObMySQLRequestManager11release_oldEl +_ZN9oceanbase3sql17ObMergeDistinctOp20inner_get_next_batchEl +_ZN9oceanbase3sql17ObMergeDistinctOp21deduplicate_for_batchEbPKNS0_11ObBatchRowsE +_ZN9oceanbase3sql17ObChunkDatumStore9StoredRow8do_buildILb0EEEiRPS2_RKNS_6common8ObIArrayIPNS0_6ObExprEEERNS0_9ObEvalCtxEPclj +_ZN9oceanbase3sql17ObChunkDatumStore13row_copy_sizeERKNS_6common8ObIArrayIPNS0_6ObExprEEERNS0_9ObEvalCtxERl _ZN9oceanbase3omt10ObThWorker6workerERlS2_Ri -_ZTWN9oceanbase3lib6Thread8loop_ts_E _ZTWN9oceanbase6common16g_warning_bufferE -_ZTWN9oceanbase6common7ObLatch17max_lock_slot_idxE -_ZN9oceanbase3lib17__MemoryContext__15destory_contextEPS1_ +_ZN9oceanbase5share11ObTenantEnv3mtlIPNS_8memtable13ObLockWaitMgrEEET_v +_ZN9oceanbase6common17ObSessionDIBuffer13switch_tenantEm +_ZN9oceanbase5share2_SILNS0_12ObEntityTypeE0ELNS0_12EntitySourceE0EED2Ev _ZN9oceanbase6common16ObPriorityQueue2ILi1ELi2ELi3EE6do_popERPNS0_6ObLinkEll +_ZN9oceanbase6common13ObSpLinkQueue3popERPNS0_6ObLinkE +_ZN9oceanbase6common20ObTenantStatEstGuardD2Ev +_ZN9oceanbase5share2_SILNS0_12ObEntityTypeE1ELNS0_12EntitySourceE2EED2Ev +_ZN9oceanbase5share2_SILNS0_12ObEntityTypeE0ELNS0_12EntitySourceE0EEC2EbPNS0_13ObTenantSpaceE _ZTWN9oceanbase6common11in_try_stmtE -_ZN9oceanbase6common16ObWaitEventGuardD1Ev -_ZN9oceanbase6common16ObWaitEventGuardD2Ev +_ZN9oceanbase3lib2_SILNS0_13ContextSourceE1EEC2IJNS0_11DynamicInfoERNS0_12ContextParamEPNS0_10StaticInfoEEEEbDpOT_ +_ZN9oceanbase3lib17__MemoryContext__14create_contextIJRNS0_12ContextParamERPNS0_10StaticInfoEEEEiRNS0_13MemoryContextERS1_RKNS0_11DynamicInfoEDpOT_ +_ZN9oceanbase3lib17__MemoryContext__4initEv +_ZN9oceanbase3lib17ObMallocAllocator12get_instanceEv +_ZN9oceanbase3lib17__MemoryContext__10init_allocERNS_6common11ObAllocatorEbj +_ZN9oceanbase3lib17__MemoryContext__15destory_contextEPS1_ +_ZN9oceanbase6common9SCondTempILi3EE7prepareEi +_ZN9oceanbase5share13ObTenantSpace4rootEv +_ZN9oceanbase3lib9ObjectSet11free_objectEPNS0_7AObjectE +_ZN9oceanbase3lib8BlockSet10free_blockEPNS0_6ABlockE +_ZN9oceanbase8observer23ObProcessMallocCallbackclERKNS_3lib9ObMemAttrEl +_ZN9oceanbase6common9EventItem14get_event_codeEv +_ZN9oceanbase3lib20ObTenantCtxAllocator11ReqChunkMgr10free_chunkEPNS0_6AChunkERKNS0_9ObMemAttrE +_ZN9oceanbase3lib9ObjectSet15add_free_objectEPNS0_7AObjectE _ZN9oceanbase3omt17ObWorkerProcessor7processERNS_3rpc9ObRequestE -_ZN9oceanbase3rpc5frame14ObReqProcessor7destroyEv _ZN9oceanbase3rpc5frame14ObReqProcessor4initEv +_ZN9oceanbase3rpc5frame14ObReqProcessor7destroyEv _ZNK9oceanbase3omt10ObThWorker10need_retryEv -_ZTW12co_closepbuf _ZN9oceanbase8observer11ObSrvXlator7releaseEPNS_3rpc5frame14ObReqProcessorE _ZN9oceanbase8observer16ObMPPacketSenderD2Ev _ZN9oceanbase8observer9ObMPQuery7processEv _ZN9oceanbase6common13ObSEArrayImplINS0_8ObStringELl1ENS0_19ModulePageAllocatorELb0EE9push_backERKS2_ -_ZNK9oceanbase3sql11ObResultSet23need_end_trans_callbackEv _ZN9oceanbase6common14ObServerConfig12get_instanceEv _ZN9oceanbase6common15databuff_printfEPclRlPKcz +_ZN9oceanbase8observer8ObMPBase33update_transmission_checksum_flagERKNS_3sql16ObSQLSessionInfoE _ZN9oceanbase8observer16ObMPPacketSender11get_sessionERPNS_3sql16ObSQLSessionInfoE -_ZZNK9oceanbase3sql18ObBasicSessionInfo31is_server_status_in_transactionEvENK3$_0clEPKc.llvm.10382599790257871744 +_ZNK9oceanbase3sql11ObResultSet23need_end_trans_callbackEv _ZN9oceanbase11transaction17ObTxnFreeRouteCtx26init_before_handle_requestEPNS0_8ObTxDescE _ZN9oceanbase11transaction8ObTxDesc21in_tx_for_free_route_Ev _ZN9oceanbase3sql8ObParser19split_multiple_stmtERKNS_6common8ObStringERNS2_8ObIArrayIS3_EERNS0_13ObMPParseStatEbb -_ZN9oceanbase3sql10ObSQLUtils20handle_plan_baselineERKNS0_17ObAuditRecordDataEPNS0_14ObPhysicalPlanEiRNS0_8ObSqlCtxE _ZN9oceanbase8observer9ObMPQuery19process_single_stmtERKNS_3sql15ObMultiStmtItemERNS2_16ObSQLSessionInfoEbbRbS8_ _ZN9oceanbase6common13ObTimeUtility12current_timeEv _ZN9oceanbase6common14ObMaxWaitGuardC1EPNS0_15ObWaitEventDescEPNS0_21ObDiagnoseSessionInfoE _ZN9oceanbase3lib6Thread9WaitGuardD2Ev _ZN9oceanbase6common16ObTotalWaitGuardD1Ev -_ZN9oceanbase5trace7ObTrace7set_tagImJEEEv9ObTagTypeRKT_ +_ZN9oceanbase6common14ObMaxWaitGuardD1Ev +_ZN9oceanbase3sql12ObExecRecord12record_startEPNS_6common21ObDiagnoseSessionInfoE +_ZN9oceanbase5trace7ObTrace12get_instanceEv +_ZN9oceanbase3sql12ObExecRecord10record_endEPNS_6common21ObDiagnoseSessionInfoE _ZN9oceanbase6common21ObSessionStatEstGuardD1Ev _ZN9oceanbase6common21ObSessionStatEstGuardD2Ev -_ZN9oceanbase5trace7ObTrace12get_instanceEv _ZNK9oceanbase5share6schema19ObSchemaGetterGuard18get_schema_versionEmRl _ZN9oceanbase6common16ObDISessionCache8get_nodeEmRPNS0_18ObDISessionCollectE -_ZN9oceanbase3sql12ObExecRecord12record_startEPNS_6common21ObDiagnoseSessionInfoE -_ZN9oceanbase8observer14ObReqTimeGuardD2Ev +_ZN9oceanbase5trace7ObTrace7set_tagIA33_cJEEEv9ObTagTypeRKT_ _ZN9oceanbase3sql11ObResultSetC2ERNS0_16ObSQLSessionInfoERNS_6common12ObIAllocatorE -_ZN9oceanbase3sql16LinkExecCtxGuardD2Ev +_ZN9oceanbase3sql13ObExecContextC1ERNS_6common12ObIAllocatorE +_ZN9oceanbase3sql13ObExecContextC2ERNS_6common12ObIAllocatorE _ZN9oceanbase3sql11ObResultSetD1Ev _ZN9oceanbase3sql11ObResultSetD2Ev -_ZN9oceanbase3sql17ObExprOperatorCtxD2Ev _ZN9oceanbase6common10ObObjStoreIPNS_3sql12ObIDASTaskOpERNS0_12ObIAllocatorELb0EED2Ev -_ZN9oceanbase3sql12ObExecRecord10record_endEPNS_6common21ObDiagnoseSessionInfoE -_ZN9oceanbase3sql13ObExecContextC1ERNS_6common12ObIAllocatorE -_ZN9oceanbase3sql13ObExecContextC2ERNS_6common12ObIAllocatorE +_ZN9oceanbase6common10ObObjStoreIPNS_3sql27ObRpcDasAsyncAccessCallBackERNS0_12ObIAllocatorELb0EED2Ev +_ZN9oceanbase6common11ObArrayImplINS_3sql19ObJoinFilterDataCtxENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEED2Ev +_ZN9oceanbase8observer14ObReqTimeGuardD2Ev _ZNK9oceanbase5share6schema27ObMultiVersionSchemaService35get_tenant_refreshed_schema_versionEmRlb _ZN9oceanbase3sql10ObPlanStat17update_cache_statERKNS0_15ObTableScanStatE -_ZN9oceanbase3sql14ObExprValuesOp7destroyEv -_ZN9oceanbase5trace7ObTrace7set_tagIA33_cJEEEv9ObTagTypeRKT_ +_ZN9oceanbase6common16ObClusterVersion12get_instanceEv +_ZN9oceanbase3sql8ObSqlCtx5clearEv +_ZN9oceanbase3sql10ObSQLUtils20handle_plan_baselineERKNS0_17ObAuditRecordDataEPNS0_14ObPhysicalPlanEiRNS0_8ObSqlCtxE +_ZN9oceanbase3sql18ObBasicSessionInfo21gen_configs_in_pc_strEv _ZN9oceanbase8observer8ObMPBase12flush_bufferEb _ZN9oceanbase3sql10ObSQLUtils19handle_audit_recordEbNS0_13ObExecuteModeERNS0_16ObSQLSessionInfoEb -_ZN9oceanbase6common14ObMaxWaitGuardD1Ev -_ZN9oceanbase8observer8ObMPBase33update_transmission_checksum_flagERKNS_3sql16ObSQLSessionInfoE -_ZN9oceanbase3sql8ObSqlCtx5clearEv -_ZN9oceanbase3sql17ObLCObjectManager11common_freeEPNS0_17ObILibCacheObjectENS0_16CacheRefHandleIDE _ZN9oceanbase3sql14ObPhysicalPlan16update_plan_statERKNS0_17ObAuditRecordDataEbbPKNS_6common8ObIArrayINS0_15ObTableRowCountEEE +_ZN9oceanbase3sql17ObLCObjectManager11common_freeEPNS0_17ObILibCacheObjectENS0_16CacheRefHandleIDE +_ZN9oceanbase3sql16LinkExecCtxGuardD2Ev +_ZN9oceanbase3sql17ObAuditRecordData24update_event_stage_stateEv _ZN9oceanbase3sql18ObBasicSessionInfo20update_timezone_infoEv -_ZN9oceanbase3sql18ObBasicSessionInfo21gen_configs_in_pc_strEv _ZN9oceanbase3sql18ObBasicSessionInfo20set_session_in_retryENS0_20ObSessionRetryStatusE -_ZThn56_N9oceanbase8observer8ObMPBase14send_ok_packetERNS_3sql16ObSQLSessionInfoERNS0_10ObOKPParamEPNS_7obmysql13ObMySQLPacketE -_ZN9oceanbase3sql18ObBasicSessionInfo17set_session_sleepEv -_ZN9oceanbase3sql10ObSQLUtils19record_execute_timeENS0_13ObPhyPlanTypeEl -_ZN9oceanbase6common16ObTotalWaitGuardC1EPNS0_15ObWaitEventStatEPNS0_21ObDiagnoseSessionInfoE -_ZN9oceanbase3sql17ObAuditRecordData24update_event_stage_stateEv -_ZN9oceanbase3sql13ObExecContextD1Ev -_ZN9oceanbase3sql13ObExecContextD2Ev -_ZN9oceanbase3sql20ObAggregateProcessor12IAggrFuncCtxD2Ev -_ZN9oceanbase3sql14ObDASBaseRtDefD2Ev -_ZN9oceanbase6common10ObObjStoreIPNS_3sql27ObRpcDasAsyncAccessCallBackERNS0_12ObIAllocatorELb0EED2Ev -_ZN9oceanbase6common11ObArrayImplIPKNS0_8ObIArrayIlEENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEED2Ev -_ZN9oceanbase6common11ObArrayImplINS_3sql19ObJoinFilterDataCtxENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEED2Ev -_ZN9oceanbase3sql13ObTableScanOp7destroyEv -_ZN9oceanbase3sql8ObDASRef5resetEv -_ZN9oceanbase3sql16ObDASTaskFactory7cleanupEv -_ZN9oceanbase3lib9ObjectSet11free_objectEPNS0_7AObjectE -_ZN9oceanbase3lib8BlockSet10free_blockEPNS0_6ABlockE -_ZN9oceanbase3lib9ObjectSet10free_blockEPNS0_6ABlockE -_ZN9oceanbase3sql6ObStmtD2Ev -_ZN9oceanbase6common16ObClusterVersion12get_instanceEv -_ZN9oceanbase3sql18ObBasicSessionInfo18set_session_activeERKNS_6common8ObStringEllNS_7obmysql10ObMySQLCmdE _ZN9oceanbase8observer16ObSyncPlanDriver15response_resultERNS0_16ObMySQLResultSetE _ZN9oceanbase8observer13ObQueryDriver21response_query_resultERNS_3sql11ObResultSetEbbRbl _ZNK9oceanbase3sql18ObBasicSessionInfo19get_charset_sys_varENS_5share17ObSysVarClassTypeERNS_6common13ObCharsetTypeE @@ -107,20 +112,16 @@ _ZNK9oceanbase6common7ObSMRow11encode_cellElPclRlS2_ _ZNK9oceanbase7obmysql9OMPKField9serializeEPclRl _ZN9oceanbase6common9ObSMUtils8cell_strEPclRKNS0_5ObObjENS_7obmysql19MYSQL_PROTOCOL_TYPEERllS2_RKNS0_20ObDataTypeCastParamsEPKNS0_7ObFieldEPNS_5share6schema19ObSchemaGetterGuardEm _ZN9oceanbase7obmysql11ObMySQLUtil12store_lengthEPclmRl +_ZN9oceanbase11transaction8ObTxDesc20in_tx_for_free_routeEv _ZN9oceanbase8observer13ObQueryDriver21response_query_headerERKNS_6common8ObIArrayINS2_7ObFieldEEEbbbPNS_3sql11ObResultSetE +_ZZNK9oceanbase3sql18ObBasicSessionInfo31is_server_status_in_transactionEvENK3$_0clEPKc.llvm.15478692776444540170 _ZN9oceanbase3sql10ObOperator14get_next_batchElRPKNS0_11ObBatchRowsE _ZN9oceanbase3sql10ObOperator16inner_drain_exchEv -_ZN9oceanbase6common16ObClockGenerator8getClockEv _ZN9oceanbase3sql13ObTableScanOp20inner_get_next_batchEl _ZN9oceanbase3sql10ObOperator13do_drain_exchEv _ZN9oceanbase3sql12ObSortOpImpl20add_quick_sort_batchERKNS_6common8ObIArrayIPNS0_6ObExprEEERKNS0_11ObBitVectorEllPl _ZN9oceanbase3sql17ObChunkDatumStore9add_batchERKNS_6common8ObIArrayIPNS0_6ObExprEEERNS0_9ObEvalCtxERKNS0_11ObBitVectorElPKtlPPNS1_9StoredRowE _ZN9oceanbase3sqlL13assign_datumsINS0_23AssignDefaultDatumValueEEEvPPKNS_6common7ObDatumEPKtlPPNS0_17ObChunkDatumStore9StoredRowEl -_ZNK9oceanbase3sql6ObExpr13do_eval_batchERNS0_9ObEvalCtxERKNS0_11ObBitVectorEl -_ZN9oceanbase3sql19ObExprEncodeSortkey25eval_encode_sortkey_batchERKNS0_6ObExprERNS0_9ObEvalCtxERKNS0_11ObBitVectorEl -_ZN9oceanbase5share20ObSortkeyConditioner24process_key_conditioningERNS_6common7ObDatumEPhlRlRNS0_10ObEncParamE -_Z26ob_strnxfrm_unicode_varlenPK13ObCharsetInfoPhmjPKhmbPb -_ZN9oceanbase6common9ObCharset17is_argument_validENS0_15ObCollationTypeEPKclS4_l _ZN9oceanbase3sql13ObTableScanOp28inner_get_next_batch_for_tscEl _ZNK9oceanbase7storage15ObTableReadInfo23get_group_idx_col_indexEv _ZN9oceanbase7storage15ObMultipleMerge13get_next_rowsERll @@ -141,26 +142,30 @@ _ZN9oceanbase6common16ObArenaAllocator5reuseEv _ZNK9oceanbase12blocksstable24ObIntegerBaseDiffDecoder6decodeERKNS0_18ObColumnDecoderCtxERNS_6common7ObDatumElRKNS0_11ObBitStreamEPKcl _ZN9oceanbase8memtable23ObIMemtableScanIterator12get_next_rowERPKNS_12blocksstable10ObDatumRowE _ZNK9oceanbase8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorINS0_20ObStoreRowkeyWrapperEPNS0_9ObMvccRowEEEE13get_iter_flagEv +_ZN9oceanbase6common11ObLoserTreeINS_7storage24ObScanMergeLoserTreeItemENS2_23ObScanMergeLoserTreeCmpELl80EE13inner_rebuildEv +_ZN9oceanbase6common11ObLoserTreeINS_7storage24ObScanMergeLoserTreeItemENS2_23ObScanMergeLoserTreeCmpELl80EE3popEv _ZN9oceanbase6common16ObArenaAllocator5allocEl _ZN9oceanbase6common20ObDiagnoseTenantInfo23get_local_diagnose_infoEv _ZN9oceanbase7storage15ObMultipleMerge16process_fuse_rowEbRNS_12blocksstable10ObDatumRowERPS3_ _ZNK9oceanbase12blocksstable12ObRawDecoder6decodeERKNS0_18ObColumnDecoderCtxERNS_6common7ObDatumElRKNS0_11ObBitStreamEPKcl -_ZNK9oceanbase8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorINS0_20ObStoreRowkeyWrapperEPNS0_9ObMvccRowEEEE9get_valueEv -_ZNK9oceanbase7storage19ObMultipleScanMerge18collect_merge_statERNS0_16ObTableStoreStatE +_ZNK9oceanbase7storage13ObSingleMerge18collect_merge_statERNS0_16ObTableStoreStatE +_ZN9oceanbase7storage15ObMultipleMerge22get_next_aggregate_rowERPNS_12blocksstable10ObDatumRowE +_ZN9oceanbase7storage17ObAggregatedStore8fill_rowERNS_12blocksstable10ObDatumRowE +_ZN9oceanbase7storage12ObSumAggCell4evalERNS_12blocksstable14ObStorageDatumEl +_ZN9oceanbase7storage12ObSumAggCell8eval_intINS_6common4wide13ObWideIntegerILj128EiEEEEiRKNS3_7ObDatumEi +_ZN9oceanbase8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorINS0_20ObStoreRowkeyWrapperEPNS0_9ObMvccRowEEEE11set_versionEl _ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScanner18inner_get_next_rowERPKNS0_10ObDatumRowE _ZN9oceanbase12blocksstable18ObMicroBlockReader7get_rowElRNS0_10ObDatumRowE +_ZZN9oceanbase7storage18ObColumnIndexArrayC1EbbEN4$_378__invokeEjRKNS0_19ObFixedMetaObjArrayIiEE _ZNK9oceanbase7storage16ObReadInfoStruct17get_columns_indexEv _ZNK9oceanbase7storage15ObTableReadInfo25get_seq_read_column_countEv _ZN9oceanbase12blocksstable11ObRowReader8read_rowEPKclPKNS_7storage16ObITableReadInfoERNS0_10ObDatumRowE -_ZZN9oceanbase7storage18ObColumnIndexArrayC1EbbEN4$_378__invokeEjRKNS0_19ObFixedMetaObjArrayIiEE _ZZN9oceanbase7storage18ObColumnIndexArrayC1EbbEN4$_368__invokeEjjlRKNS0_19ObFixedMetaObjArrayIiEE -_ZN9oceanbase7storage15ObMultipleMerge22get_next_aggregate_rowERPNS_12blocksstable10ObDatumRowE -_ZN9oceanbase7storage17ObAggregatedStore8fill_rowERNS_12blocksstable10ObDatumRowE -_ZN9oceanbase7storage12ObSumAggCell4evalERNS_12blocksstable14ObStorageDatumEl -_ZN9oceanbase7storage12ObSumAggCell8eval_intINS_6common4wide13ObWideIntegerILj128EiEEEEiRKNS3_7ObDatumEi -_ZNK9oceanbase8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorINS0_20ObStoreRowkeyWrapperEPNS0_9ObMvccRowEEEE7get_keyEv -_ZN9oceanbase8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorINS0_20ObStoreRowkeyWrapperEPNS0_9ObMvccRowEEEE11set_versionEl -_ZN9oceanbase7storage19ObMultipleScanMerge14can_batch_scanERb +_ZNK9oceanbase7storage19ObMultipleScanMerge18collect_merge_statERNS0_16ObTableStoreStatE +_ZThn352_N9oceanbase12blocksstable18ObMicroBlockReader14get_row_headerElRPKNS0_11ObRowHeaderE +_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE8prefetchEv +_ZN9oceanbase12blocksstable22ObIndexBlockRowScanner8get_nextERNS0_16ObMicroIndexInfoEb +_ZN9oceanbase12blocksstable22ObIndexBlockRowScanner16get_next_idx_rowERNS0_16ObMicroIndexInfoE _ZN9oceanbase8memtable22ObMemtableScanIterator18inner_get_next_rowERPKNS_12blocksstable10ObDatumRowE _ZN9oceanbase8memtable9ObReadRow11iterate_rowERKNS_7storage16ObITableReadInfoERKNS_6common13ObStoreRowkeyERNS6_12ObIAllocatorERNS0_19ObMvccValueIteratorERNS_12blocksstable10ObDatumRowERNS0_11ObNopBitMapERl _ZNK9oceanbase7storage16ObReadInfoStruct26get_memtable_columns_indexEv @@ -172,150 +177,152 @@ _ZZN9oceanbase8memtable19ObMvccValueIterator4initERNS0_15ObMvccAccessCtxEPKNS0_1 _ZN9oceanbase6common8ObLogger13need_to_printEmmi _ZN9oceanbase8keybtree8IteratorINS_8memtable20ObStoreRowkeyWrapperEPNS2_9ObMvccRowEE13set_key_rangeES3_bS3_bl _ZN9oceanbase8keybtree8IteratorINS_8memtable20ObStoreRowkeyWrapperEPNS2_9ObMvccRowEE8get_nextERS3_RS5_ -_ZN9oceanbase5share11ObTenantEnv3mtlIPNS_7storage21ObTenantTabletStatMgrEEET_v -_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE8prefetchEv -_ZN9oceanbase12blocksstable22ObIndexBlockRowScanner8get_nextERNS0_16ObMicroIndexInfoEb -_ZN9oceanbase12blocksstable22ObIndexBlockRowScanner16get_next_idx_rowERNS0_16ObMicroIndexInfoE -_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE18get_prefetch_depthERl -_ZN9oceanbase6common11ObLoserTreeINS_7storage24ObScanMergeLoserTreeItemENS2_23ObScanMergeLoserTreeCmpELl80EE13inner_rebuildEv +_ZN9oceanbase7storage19ObMultipleScanMerge14can_batch_scanERb _ZN9oceanbase12blocksstable22ObIndexBlockRowScanner17read_curr_idx_rowERPKNS0_21ObIndexBlockRowHeaderERPKNS0_13ObDatumRowkeyE _ZNK9oceanbase12blocksstable22ObIndexBlockDataHeader14get_index_dataElRPKcRl _ZN9oceanbase12blocksstable21ObIndexBlockRowParser4initEPKcl +_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE18get_prefetch_depthERl +_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE22ObIndexTreeLevelHandle7forwardERS2_b +_ZN9oceanbase12blocksstable22ObIndexBlockRowScanner4openERKNS0_12MacroBlockIdERKNS0_16ObMicroBlockDataERKNS0_12ObDatumRangeElbbPKNS0_16ObMicroIndexInfoE +_ZN9oceanbase12blocksstable22ObIndexBlockRowScanner12locate_rangeERKNS0_12ObDatumRangeEbb +_ZN9__gnu_cxx5__ops14_Iter_comp_valIN9oceanbase12blocksstable15ObDatumComparorINS3_13ObDatumRowkeyEEEEclIPKS5_S9_EEbT_RT0_ +_ZNK9oceanbase12blocksstable13ObDatumRowkey7compareERKS1_RKNS0_19ObStorageDatumUtilsERib +_ZN9oceanbase12blocksstableL21nonext_nonext_compareERKNS0_14ObStorageDatumES3_RKNS_6common9ObCmpFuncERi.llvm.12329988357696520025 +_ZN9oceanbase12blocksstable22ObIndexBlockRowScanner18init_by_micro_dataERKNS0_16ObMicroBlockDataE +_ZZN9oceanbase12blocksstable22ObIndexBlockRowScanner12locate_rangeERKNS0_12ObDatumRangeEbbENK5$_526clEPKc +_ZN9oceanbase6common8ObLogger13need_to_printEmi +_ZN9oceanbase12blocksstable11ObRowReader15read_row_headerEPKclRPKNS0_11ObRowHeaderE _ZN9oceanbase7storage15ObMultipleMerge12get_next_rowERPNS_12blocksstable10ObDatumRowE -_ZNK9oceanbase7storage13ObSingleMerge18collect_merge_statERNS0_16ObTableStoreStatE +_ZNK9oceanbase7storage16ObReadInfoStruct15get_datum_utilsEv _ZN9oceanbase7storage18ObStoreRowIterator12get_next_rowERPKNS_12blocksstable10ObDatumRowE _ZN9oceanbase7storage13ObSingleMerge13get_table_rowElRKNS_6common8ObIArrayIPNS0_8ObITableEEERNS_12blocksstable10ObDatumRowERbSC_ _ZZN9oceanbase7storage18ObColumnIndexArrayC1EbbEN4$_358__invokeEjRKNS0_19ObFixedMetaObjArrayIiEE +_ZN9oceanbase8memtable19ObIMemtableIterator12get_next_rowERPKNS_12blocksstable10ObDatumRowE _ZN9oceanbase8memtable10ObMemtable3getERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS_12blocksstable13ObDatumRowkeyERPNS2_18ObStoreRowIteratorE -_ZN9oceanbase12blocksstable10ObDatumRowC1Ev -_ZN9oceanbase12blocksstable10ObDatumRowC2Ev +_ZN9oceanbase12blocksstable10ObDatumRowC1Em +_ZN9oceanbase12blocksstable10ObDatumRowC2Em +_ZTWN9oceanbase5share17ObTenantDagWorker5self_E +_ZZN9oceanbase8memtable10ObMemtable3getERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS_12blocksstable13ObDatumRowkeyERPNS2_18ObStoreRowIteratorEENK5$_107clEPKc.llvm.3524317861966783966 +_ZN9oceanbase8memtable21ObMemtableGetIterator18inner_get_next_rowERPKNS_12blocksstable10ObDatumRowE +_ZN9oceanbase8memtable13ObQueryEngine3getEPKNS0_13ObMemtableKeyERPNS0_9ObMvccRowEPS2_ +_ZThn352_N9oceanbase12blocksstable18ObMicroBlockReader22get_multi_version_infoEllRPKNS0_11ObRowHeaderERlS6_ _ZN9oceanbase7storage13ObSingleMerge22get_and_fuse_cache_rowEllRNS_12blocksstable10ObDatumRowERbS5_S5_ _ZN9oceanbase7storage9ObRowFuse8fuse_rowERKNS_12blocksstable10ObDatumRowERS3_RNS0_8ObNopPosERbPNS_6common12ObIAllocatorE -_ZN9oceanbase8memtable19ObIMemtableIterator12get_next_rowERPKNS_12blocksstable10ObDatumRowE _ZN9oceanbase7storage18ObSSTableRowGetter18inner_get_next_rowERPKNS_12blocksstable10ObDatumRowE -_ZN9oceanbase6common11ObLoserTreeINS_7storage24ObScanMergeLoserTreeItemENS2_23ObScanMergeLoserTreeCmpELl80EE3popEv -_ZZN9oceanbase8memtable10ObMemtable3getERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS_12blocksstable13ObDatumRowkeyERPNS2_18ObStoreRowIteratorEENK5$_107clEPKc.llvm.6150484154564822904 -_ZN9oceanbase8memtable21ObMemtableGetIterator18inner_get_next_rowERPKNS_12blocksstable10ObDatumRowE -_ZN9oceanbase8memtable13ObQueryEngine3getEPKNS0_13ObMemtableKeyERPNS0_9ObMvccRowEPS2_ -_ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE -_ZN9oceanbase3lib20ObTenantCtxAllocator12common_allocINS0_9ObjectSetEEEPvlRKNS0_9ObMemAttrERS1_RT_ -_ZN9oceanbase3lib20ObTenantCtxAllocator12common_allocINS0_9ObjectMgrEEEPvlRKNS0_9ObMemAttrERS1_RT_ -_ZN9oceanbase3lib9ObjectMgr12alloc_objectEmRKNS0_9ObMemAttrE -_ZN9oceanbase8observer23ObProcessMallocCallbackclERKNS_3lib9ObMemAttrEl -_ZN9oceanbase6common9EventItem14get_event_codeEv +_ZN9oceanbase12blocksstable9ObSSTable3getERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS0_13ObDatumRowkeyERPNS2_18ObStoreRowIteratorE +_ZN9oceanbase3sql18ObBasicSessionInfo17set_session_sleepEv +_ZN9oceanbase3sql15DASOpResultIter21reset_wild_datums_ptrEv +_ZN9oceanbase6common16ObTotalWaitGuardC1EPNS0_15ObWaitEventStatEPNS0_21ObDiagnoseSessionInfoE +_ZN9oceanbase6common20check_stack_overflowERblPl _ZN9oceanbase3sql18ObBasicSessionInfo38update_query_sensitive_system_variableERNS_5share6schema19ObSchemaGetterGuardE -_ZN9oceanbase3lib9ObjectSet15add_free_objectEPNS0_7AObjectE -_ZN9oceanbase3sql14ObDASScanRtDefD1Ev -_ZN9oceanbase3sql14ObDASScanRtDefD2Ev +_ZN9oceanbase3sql18ObBasicSessionInfo18set_session_activeERKNS_6common8ObStringEllNS_7obmysql10ObMySQLCmdE +_ZNK9oceanbase8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorINS0_20ObStoreRowkeyWrapperEPNS0_9ObMvccRowEEEE9get_valueEv _ZNK9oceanbase3omt17ObTenantConfigMgr27get_tenant_config_with_lockEmmm -_ZN9oceanbase6common20check_stack_overflowERblPl -_ZZN9oceanbase3sql10ObFLTUtils22init_flt_log_frameworkERNS0_16ObSQLSessionInfoEbENK5$_249clEPKc +_ZN9oceanbase3sql10ObSQLUtils19record_execute_timeENS0_13ObPhyPlanTypeEl +_ZZN9oceanbase12blocksstable22ObIndexBlockRowScanner12locate_rangeERKNS0_12ObDatumRangeEbbENK5$_535clEPKc _ZN9oceanbase3sql5ObSql10stmt_queryERKNS_6common8ObStringERNS0_8ObSqlCtxERNS0_11ObResultSetE -_ZNK9oceanbase6common16ObArenaAllocator5totalEv OPENSSL_cleanse +_ZN9oceanbase5trace7ObTrace7set_tagImJEEEv9ObTagTypeRKT_ _ZNK9oceanbase11transaction17ObTxnFreeRouteCtx7is_tempERKNS0_8ObTxDescE _ZN9oceanbase3sql17ObPhysicalPlanCtxC1ERNS_6common12ObIAllocatorE _ZN9oceanbase3sql17ObPhysicalPlanCtxC2ERNS_6common12ObIAllocatorE _ZN9oceanbase3sql5ObSql18handle_large_queryEiRNS0_11ObResultSetERbRNS0_13ObExecContextE _ZN9oceanbase3sql14ObPlanCacheCtxD2Ev -_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE22ObIndexTreeLevelHandle7forwardERS2_b -_ZN9oceanbase12blocksstable22ObIndexBlockRowScanner4openERKNS0_12MacroBlockIdERKNS0_16ObMicroBlockDataERKNS0_12ObDatumRangeElbbPKNS0_16ObMicroIndexInfoE -_ZN9oceanbase12blocksstable22ObIndexBlockRowScanner12locate_rangeERKNS0_12ObDatumRangeEbb -_ZN9__gnu_cxx5__ops14_Iter_comp_valIN9oceanbase12blocksstable15ObDatumComparorINS3_13ObDatumRowkeyEEEEclIPKS5_S9_EEbT_RT0_ -_ZNK9oceanbase12blocksstable13ObDatumRowkey7compareERKS1_RKNS0_19ObStorageDatumUtilsERib -_ZN9oceanbase12blocksstableL21nonext_nonext_compareERKNS0_14ObStorageDatumES3_RKNS_6common9ObCmpFuncERi.llvm.12553954299408958552 -_ZN9oceanbase12blocksstable22ObIndexBlockRowScanner18init_by_micro_dataERKNS0_16ObMicroBlockDataE -_ZZN9oceanbase12blocksstable22ObIndexBlockRowScanner12locate_rangeERKNS0_12ObDatumRangeEbbENK5$_526clEPKc -_ZZN9oceanbase8observer8ObMPBase18process_extra_infoERNS_3sql16ObSQLSessionInfoERKNS_7obmysql16ObMySQLRawPacketERbENK5$_372clEPKc -_ZN9oceanbase3sql12ObUDRItemMgr14UDRRefObjGuardINS0_9ObUDRItemEED2Ev -_ZN9oceanbase6common16ObMemLeakChecker8on_allocERNS_3lib7AObjectERKNS2_9ObMemAttrE -_ZN9oceanbase3sql15DASOpResultIter21reset_wild_datums_ptrEv -_ZN9oceanbase7storage22ObMicroBlockDataHandle20get_micro_block_dataEPNS_12blocksstable18ObMacroBlockReaderERNS2_16ObMicroBlockDataEb +_ZThn56_N9oceanbase8observer8ObMPBase14send_ok_packetERNS_3sql16ObSQLSessionInfoERNS0_10ObOKPParamEPNS_7obmysql13ObMySQLPacketE +_ZZN9oceanbase12blocksstable22ObIndexBlockRowScanner12locate_rangeERKNS0_12ObDatumRangeEbbENK5$_529clEPKc _ZN9oceanbase3sql13ObPxAdmission20exit_query_admissionERNS0_16ObSQLSessionInfoERNS0_13ObExecContextENS0_4stmt8StmtTypeERNS0_14ObPhysicalPlanE -_ZN9oceanbase3sql16ObSQLSessionInfo21set_show_warnings_bufEi +_ZN9oceanbase3sql13ObExecContextD1Ev +_ZN9oceanbase3sql13ObExecContextD2Ev +_ZN9oceanbase3sql14ObDASBaseRtDefD2Ev +_ZN9oceanbase3sql20ObAggregateProcessor12IAggrFuncCtxD2Ev +_ZN9oceanbase6common11ObArrayImplIPKNS0_8ObIArrayIlEENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEED2Ev +_ZN9oceanbase3sql13ObTableScanOp7destroyEv +_ZN9oceanbase3sql8ObDASRef5resetEv +_ZN9oceanbase3sql16ObDASTaskFactory7cleanupEv +_ZN9oceanbase3sql6ObStmtD2Ev +_ZN9oceanbase3sql14ObDASScanRtDefD1Ev +_ZN9oceanbase3sql14ObDASScanRtDefD2Ev +_ZN9oceanbase7storage18ObSSTableRowGetter10inner_openERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextEPNS0_8ObITableEPKv +_ZNK9oceanbase12blocksstable9ObSSTable8get_metaERNS0_19ObSSTableMetaHandleEPNS_6common20ObSafeArenaAllocatorE +_ZN9oceanbase12blocksstable22ObIndexBlockRowScanner4openERKNS0_12MacroBlockIdERKNS0_16ObMicroBlockDataERKNS0_13ObDatumRowkeyElPKNS0_16ObMicroIndexInfoE +_ZN9oceanbase12blocksstable22ObIndexBlockRowScanner10locate_keyERKNS0_13ObDatumRowkeyE _ZN9oceanbase7storage18ObSSTableRowGetter9fetch_rowERNS0_19ObSSTableReadHandleERPKNS_12blocksstable10ObDatumRowE _ZN9oceanbase12blocksstable23ObIMicroBlockRowFetcher4initERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextEPKNS0_9ObSSTableE _ZThn352_N9oceanbase12blocksstable21ObMicroBlockGetReader7get_rowERKNS0_16ObMicroBlockDataERKNS0_13ObDatumRowkeyERKNS_7storage16ObITableReadInfoERNS0_10ObDatumRowE -_ZN9oceanbase3lib9ObjectSet12alloc_objectEmRKNS0_9ObMemAttrE -_ZN9oceanbase3lib8BlockSet14get_free_blockEiRKNS0_9ObMemAttrE -_ZN9oceanbase3sql5ObSql14after_get_planERNS0_14ObPlanCacheCtxERNS0_16ObSQLSessionInfoEPNS0_14ObPhysicalPlanEbPKNS_6common9Ob2DArrayINS8_10ObObjParamELi2079744ENS8_18ObWrapperAllocatorELb0ENS8_9ObSEArrayIPSA_Ll1ESB_Lb0EEEEEm -_ZN9oceanbase7storage9ObAggCell20fill_default_if_needERNS_12blocksstable14ObStorageDatumE +_ZN9oceanbase3sql16ObSQLSessionInfo21set_show_warnings_bufEi +_ZN9oceanbase7storage21ObIndexTreePrefetcher18check_bloom_filterERKNS_12blocksstable16ObMicroIndexInfoEbRNS0_19ObSSTableReadHandleE _ZN9oceanbase6common13ObSEArrayImplINS_3sql18ObPhyTableLocationELl2ENS0_19ModulePageAllocatorELb0EED2Ev -_ZN9oceanbase5trace16__ObFLTSpanGuardD2Ev _ZN9oceanbase8memtable8ObMtHash9fill_pairEPNS0_10ObHashNodeES3_l +_ZNK9oceanbase8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorINS0_20ObStoreRowkeyWrapperEPNS0_9ObMvccRowEEEE7get_keyEv _ZNK9oceanbase7obmysql13OMPKResheader9serializeEPclRl +_ZN9oceanbase7storage22ObMicroBlockDataHandle20get_micro_block_dataEPNS_12blocksstable18ObMacroBlockReaderERNS2_16ObMicroBlockDataEb +_ZN9oceanbase3sql5ObSql14after_get_planERNS0_14ObPlanCacheCtxERNS0_16ObSQLSessionInfoEPNS0_14ObPhysicalPlanEbPKNS_6common9Ob2DArrayINS8_10ObObjParamELi2079744ENS8_18ObWrapperAllocatorELb0ENS8_9ObSEArrayIPSA_Ll1ESB_Lb0EEEEEm +_ZN9oceanbase7storage19ObSSTableRowScannerINS0_30ObIndexTreeMultiPassPrefetcherILi32ELi3EEEE19open_cur_data_blockERNS0_19ObSSTableReadHandleE +_ZNK9oceanbase7storage16ObReadInfoStruct23get_schema_rowkey_countEv +_ZThn352_N9oceanbase12blocksstable18ObMicroBlockReader4initERKNS0_16ObMicroBlockDataERKNS_7storage16ObITableReadInfoE +_ZThn352_N9oceanbase12blocksstable18ObMicroBlockReader10find_boundERKNS0_13ObDatumRowkeyEblRlRb +_ZThn352_N9oceanbase12blocksstable18ObMicroBlockReader10find_boundERKNS0_12ObDatumRangeElRlRbS5_S5_ +_ZN9oceanbase7storage22ObMicroBlockDataHandle21get_loaded_block_dataERNS_12blocksstable16ObMicroBlockDataE +_ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScanner4openERKNS0_12MacroBlockIdERKNS0_16ObMicroBlockDataEbb +_ZN9oceanbase12blocksstable18ObMicroBlockReader10find_boundERKNS0_13ObDatumRowkeyEblRlRb +_ZN9oceanbase12blocksstable11ObRowReader19compare_meta_rowkeyERKNS0_13ObDatumRowkeyERKNS0_19ObStorageDatumUtilsEPKclRi +_ZN9oceanbase12blocksstableL18nonext_ext_compareERKNS0_14ObStorageDatumES3_RKNS_6common9ObCmpFuncERi.llvm.12329988357696520025 +_ZN9oceanbase12blocksstable18ObMicroBlockReader4initERKNS0_16ObMicroBlockDataERKNS_7storage16ObITableReadInfoE +_ZN9oceanbase5share11ObTenantEnv3mtlIPNS_7storage21ObTenantTabletStatMgrEEET_v +_ZZN9oceanbase8observer16ObMySQLResultSet14to_mysql_fieldERKNS_6common7ObFieldERNS_7obmysql12ObMySQLFieldEENK4$_67clEPKc +_ZZN9oceanbase12blocksstable22ObIndexBlockRowScanner10locate_keyERKNS0_13ObDatumRowkeyEENK5$_520clEPKc _ZN9oceanbase8observer9ObMPQuery25store_params_value_to_strERNS_6common12ObIAllocatorERNS_3sql16ObSQLSessionInfoERNS2_9Ob2DArrayINS2_10ObObjParamELi2079744ENS2_18ObWrapperAllocatorELb0ENS2_9ObSEArrayIPS9_Ll1ESA_Lb0EEEEE _ZN9oceanbase3sql11ObResultSet5closeERi -_ZN9oceanbase3sql10ObSQLUtils13is_nested_sqlEPNS0_13ObExecContextE _ZN9oceanbase3sql15ObExecuteResult5closeERNS0_13ObExecContextE _ZNK9oceanbase3sql10ObOperator23get_operator_open_orderEv _ZN9oceanbase3sql10ObOperator5closeEv _ZN9oceanbase3sql13ObTableScanOp11inner_closeEv -_ZN9oceanbase6common16ObArenaAllocator4freeEPv -_ZZN9oceanbase3sql11ObResultSet19auto_end_plan_transERNS0_14ObPhysicalPlanEiRbENKUlPKcE3_clES6_ -_ZN9oceanbase3sql11ObResultSet8end_stmtEb -_ZN9oceanbase3sql10ObSQLUtils16is_pl_nested_sqlEPNS0_13ObExecContextE -_ZN9oceanbase3sql8ObDASRef14close_all_taskEv _ZN9oceanbase7storage19ObTableScanIterator27check_ls_offline_after_readEv _ZN9oceanbase7storage15ObTxTableGuards16check_ls_offlineEv -_ZN9oceanbase6common18ObServerObjectPoolINS_7storage19ObTableScanIteratorEE13return_objectEPS3_ -_ZN9oceanbase7storage19ObTableScanIterator5resetEv -_ZN9oceanbase7storage20ObTableStoreIterator5resetEv -_ZN9oceanbase6common25ObConcurrentFIFOAllocator4freeEPv -_ZNK9oceanbase7storage13ObLSTxService16revert_store_ctxERNS0_10ObStoreCtxE -_ZN9oceanbase11transaction12ObLSTxCtxMgr20end_readonly_requestEv -_ZN9oceanbase6common15ObFIFOAllocator5resetEv -_ZN9oceanbase6common12ObLatchMutex4lockEjl -_ZN9oceanbase6common16ObMultiModRefMgrINS_7storage10ObLSGetModEE3decES3_ -_ZN9oceanbase7storage14ObTabletHandle5resetEv -_ZN9oceanbase7storage13ObSingleMergeD2Ev -_ZN9oceanbase12blocksstable10ObDatumRowD1Ev -_ZN9oceanbase12blocksstable10ObDatumRowD2Ev -_ZN9oceanbase8memtable21ObMemtableGetIteratorD2Ev -_ZN9oceanbase3sql18PushdownFilterInfoD1Ev -_ZN9oceanbase3sql18PushdownFilterInfo5resetEv -_ZZN9oceanbase3sql11ObResultSet19auto_end_plan_transERNS0_14ObPhysicalPlanEiRbENKUlPKcE_clES6_ -_ZN9oceanbase3sql11ObResultSet4openEv -_ZThn32_NK9oceanbase3sql9ObTCLStmt12get_cmd_typeEv -_ZNK9oceanbase3sql15ObExecuteResult4openEv -_ZN9oceanbase3sql10ObOperator4openEv -_ZN9oceanbase3sql8ObSortOp10inner_openEv -_ZN9oceanbase3sql13ObTableScanOp10inner_openEv +_ZN9oceanbase3sql11ObResultSet8end_stmtEb +_ZN9oceanbase3sql10ObSQLUtils13is_nested_sqlEPNS0_13ObExecContextE +_ZN9oceanbase3sql10ObSQLUtils16is_pl_nested_sqlEPNS0_13ObExecContextE +_ZZN9oceanbase3sql11ObResultSet19auto_end_plan_transERNS0_14ObPhysicalPlanEiRbENKUlPKcE3_clES6_ _ZZN9oceanbase7storage13ObSingleMerge18inner_get_next_rowERNS_12blocksstable10ObDatumRowEENK5$_392clEPKc -_ZZN9oceanbase8observer16ObMySQLResultSet14to_mysql_fieldERKNS_6common7ObFieldERNS_7obmysql12ObMySQLFieldEENK4$_67clEPKc -_ZN9oceanbase6common11ObArrayImplINS_3sql18ObExecFeedbackNodeENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev -_ZN9oceanbase7storage15ObLobDataReaderD1Ev -_ZN9oceanbase7storage15ObLobDataReaderD2Ev MD5_Init -_ZZN9oceanbase12blocksstable22ObIndexBlockRowScanner12locate_rangeERKNS0_12ObDatumRangeEbbENK5$_529clEPKc -_ZN9oceanbase3sql5ObSql27pc_get_plan_and_fill_resultERNS0_14ObPlanCacheCtxERNS0_11ObResultSetERiRb +_ZTW12co_closepbuf +_ZN9oceanbase7storage21ObTenantTabletStatMgr11report_statERKNS0_12ObTabletStatERb +_ZZN9oceanbase8observer8ObMPBase18process_extra_infoERNS_3sql16ObSQLSessionInfoERKNS_7obmysql16ObMySQLRawPacketERbENK5$_372clEPKc +_ZN9oceanbase3sql5ObSql27pc_get_plan_and_fill_resultERNS0_14ObPlanCacheCtxERNS0_11ObResultSetERiRb _ZN9oceanbase5share6schema19ObSchemaGetterGuard10check_privERKNS1_17ObSessionPrivInfoERKNS1_15ObStmtNeedPrivsE _ZN9oceanbase6common13ObSEArrayImplImLl8ENS0_19ModulePageAllocatorELb0EE6assignERKNS0_8ObIArrayImEE _ZN9oceanbase3sql11ObPlanCache8get_planERNS_6common12ObIAllocatorERNS0_14ObPlanCacheCtxERNS0_15ObCacheObjGuardE _ZNK9oceanbase5share6schema11ObSchemaMgr20get_tenant_read_onlyEmRb _ZNK9oceanbase5share6schema16ObSysVariableMgr23get_sys_variable_schemaEmRPKNS1_25ObSimpleSysVariableSchemaE -_ZN9oceanbase6common13ObSEArrayImplIPNS_3sql9ObPCParamELl4ENS0_19ModulePageAllocatorELb0EED2Ev -_ZN9oceanbase3sql16ObSQLSessionInfo32check_global_read_only_privilegeEbRKNS0_11ObSqlTraitsE -_ZZN9oceanbase3sql11ObPlanCache13get_cache_objERNS0_14ObILibCacheCtxEPNS0_14ObILibCacheKeyERNS0_15ObCacheObjGuardEENK5$_226clEPKc.llvm.16977314448449668839 +_ZN9oceanbase6common13ObSEArrayImplIlLl16ENS0_19ModulePageAllocatorELb0EED2Ev _ZNK9oceanbase5share6schema19ObSchemaGetterGuard14get_schema_mgrEmRPKNS1_11ObSchemaMgrE _ZN9oceanbase3sql11ObPlanCache13get_cache_objERNS0_14ObILibCacheCtxEPNS0_14ObILibCacheKeyERNS0_15ObCacheObjGuardE _ZN9oceanbase6common4hash11ObHashTableIPNS_3sql14ObILibCacheKeyENS1_11HashMapPairIS5_PNS3_15ObILibCacheNodeEEENS1_9hash_funcIS5_EENS1_8equal_toIS5_EENS1_10pair_firstIS9_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS9_EELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE11read_atomicINS3_18ObLibCacheAtomicOpENS1_8pre_procIS9_EEEEiRKS5_RT_RT0_ +_ZN9oceanbase3sql16ObSQLSessionInfo32check_global_read_only_privilegeEbRKNS0_11ObSqlTraitsE +_ZZN9oceanbase3sql11ObPlanCache13get_cache_objERNS0_14ObILibCacheCtxEPNS0_14ObILibCacheKeyERNS0_15ObCacheObjGuardEENK5$_226clEPKc.llvm.15555104687725353391 +_ZN9oceanbase3sql21ObSqlParameterization11fast_parserERNS_6common12ObIAllocatorERKNS0_9FPContextERKNS2_8ObStringERNS0_18ObFastParserResultE +_ZN9oceanbase3sql16ObFastParserBase5parseERKNS_6common8ObStringERPcRlRP10_ParamListS8_S8_ +_ZN9oceanbase3sql17ObFastParserMysql16parse_next_tokenEv +_ZN9oceanbase3sql17ObFastParserMysql18process_identifierEb +_ZN9oceanbase3sql16ObFastParserBase14process_numberEb +_Z17ob_strntoull_8bitPK13ObCharsetInfoPKcmiPPcPi _ZN9oceanbase3sql8ObPCVSet19inner_get_cache_objERNS0_14ObILibCacheCtxEPNS0_14ObILibCacheKeyERPNS0_17ObILibCacheObjectE +_ZN9oceanbase6common16ObClockGenerator8getClockEv _ZN9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE9push_backERKS2_ _ZN9oceanbase3sql9ObPlanSet17match_params_infoEPKNS_6common9Ob2DArrayINS2_10ObObjParamELi2079744ENS2_18ObWrapperAllocatorELb0ENS2_9ObSEArrayIPS4_Ll1ES5_Lb0EEEEERNS0_14ObPlanCacheCtxElRb _ZN9oceanbase3sql15ObResolverUtils14resolver_paramERNS0_14ObPlanCacheCtxERNS0_16ObSQLSessionInfoERKNS_6common9Ob2DArrayINS6_10ObObjParamELi2079744ENS6_18ObWrapperAllocatorELb0ENS6_9ObSEArrayIPS8_Ll1ES9_Lb0EEEEENS0_4stmt8StmtTypeENS6_13ObCharsetTypeERKNS6_8ObBitSetILl256ENS6_19ModulePageAllocatorELb0EEESN_SN_PKNS0_9ObPCParamElRS8_Rbb _ZN9oceanbase3sql17ObPhysicalPlanCtx22init_datum_param_storeEv +_ZZN9oceanbase3sql15ObResolverUtils14resolver_paramERNS0_14ObPlanCacheCtxERNS0_16ObSQLSessionInfoERKNS_6common9Ob2DArrayINS6_10ObObjParamELi2079744ENS6_18ObWrapperAllocatorELb0ENS6_9ObSEArrayIPS8_Ll1ES9_Lb0EEEEENS0_4stmt8StmtTypeENS6_13ObCharsetTypeERKNS6_8ObBitSetILl256ENS6_19ModulePageAllocatorELb0EEESN_SN_PKNS0_9ObPCParamElRS8_RbbENK5$_756clEPKc _ZZN9oceanbase3sql9ObPlanSet17match_params_infoEPKNS_6common9Ob2DArrayINS2_10ObObjParamELi2079744ENS2_18ObWrapperAllocatorELb0ENS2_9ObSEArrayIPS4_Ll1ES5_Lb0EEEEERNS0_14ObPlanCacheCtxElRbENK5$_621clEPKc _ZN9oceanbase3sql12ObSqlPlanSet11select_planERNS0_14ObPlanCacheCtxERPNS0_17ObPlanCacheObjectE _ZN9oceanbase3sql12ObSqlPlanSet13get_plan_typeERKNS_6common8ObIArrayINS0_15ObTableLocationEEEbRNS0_14ObPlanCacheCtxERNS3_INS0_15ObCandiTableLocEEERNS0_13ObPhyPlanTypeE -_ZN9oceanbase6common6ObListINS0_10ObTabletIDENS0_12ObIAllocatorEE9push_backERKS2_ -_ZN9oceanbase6common13ObSEArrayImplINS_3sql16ObCandiTabletLocELl2ENS0_19ModulePageAllocatorELb1EED2Ev _ZZN9oceanbase3sql19ObPhyLocationGetter17get_phy_locationsERKNS_6common8ObIArrayINS0_15ObTableLocationEEERKNS0_14ObPlanCacheCtxERNS3_INS0_15ObCandiTableLocEEERbENK5$_389clEPKc +_ZN9oceanbase6common13ObSEArrayImplINS_3sql16ObCandiTabletLocELl2ENS0_19ModulePageAllocatorELb1EED2Ev _ZN9oceanbase3sql8ObDASCtx19add_candi_table_locERKNS0_17ObDASTableLocMetaERKNS0_15ObCandiTableLocE _ZNK9oceanbase3sql16ObCandiTabletLoc20get_priority_replicaElRNS_5share19ObLSReplicaLocationE +_ZN9oceanbase6common6ObListINS0_10ObTabletIDENS0_12ObIAllocatorEE9push_backERKS2_ _ZN9oceanbase6common6ObListIPNS_3sql13ObDASTableLocENS0_12ObIAllocatorEE9push_backERKS4_ _ZNK9oceanbase3sql17ObDASTableLocMeta17init_related_metaEmRS1_ -_ZZN9oceanbase3sql15ObResolverUtils14resolver_paramERNS0_14ObPlanCacheCtxERNS0_16ObSQLSessionInfoERKNS_6common9Ob2DArrayINS6_10ObObjParamELi2079744ENS6_18ObWrapperAllocatorELb0ENS6_9ObSEArrayIPS8_Ll1ES9_Lb0EEEEENS0_4stmt8StmtTypeENS6_13ObCharsetTypeERKNS6_8ObBitSetILl256ENS6_19ModulePageAllocatorELb0EEESN_SN_PKNS0_9ObPCParamElRS8_RbbENK5$_756clEPKc _ZN9oceanbase3sql19ObPhyLocationGetter17get_phy_locationsERKNS_6common8ObIArrayINS0_15ObTableLocationEEERKNS0_14ObPlanCacheCtxERNS3_INS0_15ObCandiTableLocEEERb _ZNK9oceanbase3sql18ObBasicSessionInfo16get_sys_variableENS_5share17ObSysVarClassTypeERl _ZN9oceanbase3sql9ObLogPlan22strong_select_replicasERKNS_6common6ObAddrERNS2_8ObIArrayIPNS0_15ObCandiTableLocEEERbb @@ -323,55 +330,96 @@ _ZN9oceanbase3sql15ObCandiTableLoc17all_select_leaderERbRNS_6common6ObAddrE _ZNK9oceanbase3sql15ObTableLocation32calculate_candi_tablet_locationsERNS0_13ObExecContextERKNS_6common9Ob2DArrayINS4_10ObObjParamELi2079744ENS4_18ObWrapperAllocatorELb0ENS4_9ObSEArrayIPS6_Ll1ES7_Lb0EEEEERNS4_8ObIArrayINS0_16ObCandiTabletLocEEERKNS4_20ObDataTypeCastParamsE _ZN9oceanbase5share19ObLSReplicaLocationD2Ev _ZN9oceanbase6common25is_partition_change_errorEi +_ZZNK9oceanbase3sql15ObTableLocation20calculate_tablet_idsERNS0_13ObExecContextERKNS_6common9Ob2DArrayINS4_10ObObjParamELi2079744ENS4_18ObWrapperAllocatorELb0ENS4_9ObSEArrayIPS6_Ll1ES7_Lb0EEEEERNS4_8ObIArrayINS4_10ObTabletIDEEERNSE_ImEESJ_RKNS4_20ObDataTypeCastParamsEENK6$_1762clEPKc.llvm.4086809854299172095 _ZN9oceanbase3sql19ObDASLocationRouter35nonblock_get_candi_tablet_locationsERKNS0_17ObDASTableLocMetaERKNS_6common8ObIArrayINS5_10ObTabletIDEEERKNS6_ImEESD_RNS6_INS0_16ObCandiTabletLocEEE _ZSt11_Hash_bytesPKvmm _ZN9oceanbase8observer14global_contextEv +_ZNK9oceanbase11transaction11ObBLService19check_in_black_listERKNS0_7ObBLKeyERb +_ZN9oceanbase3sql14ObOptTabletLoc33assign_with_only_readable_replicaERKmS3_RKNS_6common10ObTabletIDERKNS_5share12ObLSLocationE _ZN9oceanbase5share17ObTabletLSService12nonblock_getEmRKNS_6common10ObTabletIDERNS0_6ObLSIDE _ZN9oceanbase5share19ObLSLocationService12nonblock_getElmRKNS0_6ObLSIDERNS0_12ObLSLocationE -_ZN9oceanbase3sql14ObOptTabletLoc33assign_with_only_readable_replicaERKmS3_RKNS_6common10ObTabletIDERKNS_5share12ObLSLocationE _ZN9oceanbase6common6DCHashINS_11transaction7ObBLKeyELl128EE3getERKS3_RPNS0_11KeyHashNodeIS3_EE _ZZN9oceanbase3sql19ObDASLocationRouter35nonblock_get_candi_tablet_locationsERKNS0_17ObDASTableLocMetaERKNS_6common8ObIArrayINS5_10ObTabletIDEEERKNS6_ImEESD_RNS6_INS0_16ObCandiTabletLocEEEENK5$_407clEPKc -_ZZNK9oceanbase3sql15ObTableLocation20calculate_tablet_idsERNS0_13ObExecContextERKNS_6common9Ob2DArrayINS4_10ObObjParamELi2079744ENS4_18ObWrapperAllocatorELb0ENS4_9ObSEArrayIPS6_Ll1ES7_Lb0EEEEERNS4_8ObIArrayINS4_10ObTabletIDEEERNSE_ImEESJ_RKNS4_20ObDataTypeCastParamsEENK6$_1757clEPKc.llvm.1068093050124865451 -_ZN9oceanbase3sql21ObSqlParameterization11fast_parserERNS_6common12ObIAllocatorERKNS0_9FPContextERKNS2_8ObStringERNS0_18ObFastParserResultE -_ZN9oceanbase3sql16ObFastParserBase5parseERKNS_6common8ObStringERPcRlRP10_ParamListS8_S8_ -_ZN9oceanbase3sql17ObFastParserMysql16parse_next_tokenEv -_ZN9oceanbase3sql17ObFastParserMysql18process_identifierEb -_ZN9oceanbase3sql16ObFastParserBase14process_numberEb -_Z17ob_strntoull_8bitPK13ObCharsetInfoPKcmiPPcPi +_ZN9oceanbase7storage21ObIndexTreePrefetcher19prefetch_block_dataERNS_12blocksstable16ObMicroIndexInfoERNS0_22ObMicroBlockDataHandleEb +_ZN9oceanbase7storage21ObMicroBlockHandleMgr22get_micro_block_handleERKNS_12blocksstable16ObMicroIndexInfoEbbRNS0_22ObMicroBlockDataHandleE +_ZN9oceanbase7storage22ObMicroBlockDataHandle24try_release_loaded_blockEv +_ZN9oceanbase12blocksstable18ObIMicroBlockCache15get_cache_blockEmNS0_12MacroBlockIdEllRNS0_24ObMicroBlockBufferHandleE +_ZN9oceanbase6common12ObKVCacheMap3getElRKNS0_13ObIKVCacheKeyERPKNS0_15ObIKVCacheValueERPNS0_18ObKVMemBlockHandleE +_ZN9oceanbase6common22ObKVCacheHazardStation7releaseEl +_ZNK9oceanbase12blocksstable20ObMicroBlockCacheKey4hashEv +_ZNK9oceanbase12blocksstable20ObMicroBlockCacheKeyeqERKNS_6common13ObIKVCacheKeyE +_ZN9oceanbase6common22ObKVCacheHazardStation7acquireERl +_ZNK9oceanbase7storage16ObStorageMetaKey4hashEv +_ZNK9oceanbase12blocksstable17ObFuseRowCacheKey4hashERm +_ZN9oceanbase6common11DefHashFuncINS0_19DatumHashCalculatorILNS0_9ObObjTypeE4ENS0_12ObMurmurHashEEEE4hashERKNS0_7ObDatumEmRm +_ZNK9oceanbase12blocksstable13ObDatumRowkey10murmurhashEmRKNS0_19ObStorageDatumUtilsERm +_ZNK9oceanbase12blocksstable21ObBloomFilterCacheKey4hashEv +_ZNK9oceanbase7storage16ObStorageMetaKeyeqERKNS_6common13ObIKVCacheKeyE +_ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE +_ZN9oceanbase3lib20ObTenantCtxAllocator12common_allocINS0_9ObjectSetEEEPvlRKNS0_9ObMemAttrERS1_RT_ +_ZN9oceanbase3lib9ObjectSet12alloc_objectEmRKNS0_9ObMemAttrE +_ZN9oceanbase3lib8BlockSet14get_free_blockEiRKNS0_9ObMemAttrE +_ZN9oceanbase3lib20ObTenantCtxAllocator11ReqChunkMgr11alloc_chunkEmRKNS0_9ObMemAttrE +_ZN9oceanbase6common16ObMemLeakChecker8on_allocERNS_3lib7AObjectERKNS2_9ObMemAttrE +_ZN9oceanbase3sql11ObResultSet4openEv +_ZNK9oceanbase3sql15ObExecuteResult4openEv +_ZZNK9oceanbase3sql8ObOpSpec15create_operatorERNS0_13ObExecContextERPNS0_10ObOperatorEENK5$_127clEPKc.llvm.6370337014050918206 +_ZThn32_NK9oceanbase3sql9ObTCLStmt12get_cmd_typeEv +_ZN9oceanbase3sql10ObOperator4openEv +_ZN9oceanbase3sql13ObTableScanOp10inner_openEv +_ZN9oceanbase3sql8ObSortOp10inner_openEv +_ZN9oceanbase6common16ObWaitEventGuardD1Ev +_ZN9oceanbase6common16ObWaitEventGuardD2Ev +_ZN9oceanbase7storage21ObFuseRowCacheFetcher18put_fuse_row_cacheERKNS_12blocksstable13ObDatumRowkeyERNS2_10ObDatumRowEl +_ZNK9oceanbase12blocksstable17ObFuseRowCacheKey13get_tenant_idEv +_ZN9oceanbase6common15ObKVGlobalCache3putINS0_18ObKVMemBlockHandleEEEiRNS0_15ObIKVCacheStoreIT_EElRKNS0_13ObIKVCacheKeyERKNS0_15ObIKVCacheValueERPSC_RPS3_b +_ZZN9oceanbase3sql8ObPCVSet19inner_get_cache_objERNS0_14ObILibCacheCtxEPNS0_14ObILibCacheKeyERPNS0_17ObILibCacheObjectEENK4$_86clEPKc _ZZN9oceanbase3sql8ObDASCtx19add_candi_table_locERKNS0_17ObDASTableLocMetaERKNS0_15ObCandiTableLocEENK4$_73clEPKc -_ZZN9oceanbase5share19ObLSLocationService15get_from_cache_ElmRKNS0_6ObLSIDERNS0_12ObLSLocationEENK5$_374clEPKc -_ZN9oceanbase3sql12ObSortOpImpl4sortEv -_ZN9oceanbase3sql12ObSortOpImpl12ObAdaptiveQS4initERNS_6common8ObIArrayIPNS0_17ObChunkDatumStore9StoredRowEEERNS3_12ObIAllocatorEllRb -_ZN9oceanbase7storage19ObSSTableRowScannerINS0_30ObIndexTreeMultiPassPrefetcherILi32ELi3EEEE19open_cur_data_blockERNS0_19ObSSTableReadHandleE -_ZThn352_N9oceanbase12blocksstable18ObMicroBlockReader4initERKNS0_16ObMicroBlockDataERKNS_7storage16ObITableReadInfoE -_ZThn352_N9oceanbase12blocksstable18ObMicroBlockReader10find_boundERKNS0_13ObDatumRowkeyEblRlRb -_ZThn352_N9oceanbase12blocksstable18ObMicroBlockReader10find_boundERKNS0_12ObDatumRangeElRlRbS5_S5_ -_ZN9oceanbase7storage22ObMicroBlockDataHandle21get_loaded_block_dataERNS_12blocksstable16ObMicroBlockDataE -_ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScanner4openERKNS0_12MacroBlockIdERKNS0_16ObMicroBlockDataEbb -_ZNK9oceanbase7storage16ObReadInfoStruct15get_datum_utilsEv -_ZN9oceanbase12blocksstable18ObMicroBlockReader10find_boundERKNS0_13ObDatumRowkeyEblRlRb -_ZN9oceanbase12blocksstable11ObRowReader19compare_meta_rowkeyERKNS0_13ObDatumRowkeyERKNS0_19ObStorageDatumUtilsEPKclRi -_ZN9oceanbase12blocksstableL18nonext_ext_compareERKNS0_14ObStorageDatumES3_RKNS_6common9ObCmpFuncERi.llvm.12553954299408958552 -_ZN9oceanbase12blocksstable18ObMicroBlockReader4initERKNS0_16ObMicroBlockDataERKNS_7storage16ObITableReadInfoE -_ZZN9oceanbase12blocksstable22ObIndexBlockRowScanner12locate_rangeERKNS0_12ObDatumRangeEbbENK5$_535clEPKc -_ZN9oceanbase7storage19ObMultipleScanMerge19inner_get_next_rowsEv -_ZNK9oceanbase7storage22ObBlockBatchedRowStore6is_endEv -_ZN9oceanbase8memtable22ObMemtableScanIteratorD2Ev _ZNK9oceanbase8memtable13ObMemtableKey16dup_without_hashINS_6common12ObIAllocatorEEEiRPS1_RT_ _ZN9oceanbase6common26ObWrapperAllocatorWithAttr5allocEl -_ZNK9oceanbase3sql15ObTableLocation20calculate_tablet_idsERNS0_13ObExecContextERKNS_6common9Ob2DArrayINS4_10ObObjParamELi2079744ENS4_18ObWrapperAllocatorELb0ENS4_9ObSEArrayIPS6_Ll1ES7_Lb0EEEEERNS4_8ObIArrayINS4_10ObTabletIDEEERNSE_ImEESJ_RKNS4_20ObDataTypeCastParamsE -_ZN9oceanbase3sql19DASRelatedTabletMap21add_related_tablet_idENS_6common10ObTabletIDEmS3_mm -_ZN9oceanbase3sql19ObDASLocationRouter31refresh_location_cache_by_errnoEbi +_ZN9oceanbase5trace16__ObFLTSpanGuardD2Ev +_ZN9oceanbase3sql8ObDASRef14close_all_taskEv +_ZN9oceanbase6common10ObObjStoreIPNS_3sql20ObDasAggregatedTasksERNS0_12ObIAllocatorELb0EE7destroyEv +_ZN9oceanbase6common10ObObjStoreIPNS_3sql12ObIDASTaskOpERNS0_12ObIAllocatorELb0EE7destroyEv +_ZN9oceanbase6common18ObServerObjectPoolINS_7storage19ObTableScanIteratorEE13return_objectEPS3_ +_ZN9oceanbase7storage19ObTableScanIterator5resetEv +_ZNK9oceanbase7storage13ObLSTxService16revert_store_ctxERNS0_10ObStoreCtxE +_ZN9oceanbase11transaction12ObLSTxCtxMgr20end_readonly_requestEv +_ZN9oceanbase7storage20ObTableStoreIterator5resetEv +_ZN9oceanbase6common25ObConcurrentFIFOAllocator4freeEPv +_ZN9oceanbase6common15ObFIFOAllocator5resetEv +_ZN9oceanbase6common12ObLatchMutex4lockEjl +_ZN9oceanbase6common16ObMultiModRefMgrINS_7storage10ObLSGetModEE3decES3_ +_ZN9oceanbase7storage14ObTabletHandle5resetEv +_ZN9oceanbase7storage13ObSingleMergeD2Ev +_ZN9oceanbase12blocksstable10ObDatumRowD1Ev +_ZN9oceanbase12blocksstable10ObDatumRowD2Ev +_ZN9oceanbase8memtable21ObMemtableGetIteratorD2Ev +_ZN9oceanbase3sql18PushdownFilterInfoD1Ev +_ZN9oceanbase3sql18PushdownFilterInfo5resetEv +_ZN9oceanbase7storage15ObLobDataReaderD1Ev +_ZN9oceanbase7storage15ObLobDataReaderD2Ev +_ZZN9oceanbase3sql11ObResultSet19auto_end_plan_transERNS0_14ObPhysicalPlanEiRbENKUlPKcE_clES6_ +_ZN9oceanbase7storage19ObMultipleScanMerge19inner_get_next_rowsEv +_ZNK9oceanbase7storage22ObBlockBatchedRowStore6is_endEv +_ZZN9oceanbase3sql8ObDASCtx4initERKNS0_14ObPhysicalPlanERNS0_13ObExecContextEENK4$_40clEPKc.llvm.8413183740526788173 +_ZN9oceanbase3lib20ObTenantCtxAllocator12common_allocINS0_9ObjectMgrEEEPvlRKNS0_9ObMemAttrERS1_RT_ +_ZN9oceanbase3lib9ObjectMgr12alloc_objectEmRKNS0_9ObMemAttrE +_ZN9oceanbase3sql14ObExprValuesOp7destroyEv _ZNK9oceanbase7obmysql12ObMySQLField15serialize_pro41EPclRl -_ZN9oceanbase6common16ObWaitEventGuardC1Elmlllb -_ZN9oceanbase6common16ObWaitEventGuardC2Elmlllb -_ZZNK9oceanbase3sql8ObOpSpec15create_operatorERNS0_13ObExecContextERPNS0_10ObOperatorEENK5$_127clEPKc.llvm.2936879241273426121 -MD5 -_ZN9oceanbase3sql8ObParser10is_pl_stmtERKNS_6common8ObStringEPbS6_ +_ZN9oceanbase3sql19ObDASLocationRouter31refresh_location_cache_by_errnoEbi +_ZNK9oceanbase12blocksstable19ObFuseRowCacheValue4sizeEv +_ZNK9oceanbase3sql15ObTableLocation20calculate_tablet_idsERNS0_13ObExecContextERKNS_6common9Ob2DArrayINS4_10ObObjParamELi2079744ENS4_18ObWrapperAllocatorELb0ENS4_9ObSEArrayIPS6_Ll1ES7_Lb0EEEEERNS4_8ObIArrayINS4_10ObTabletIDEEERNSE_ImEESJ_RKNS4_20ObDataTypeCastParamsE +_ZN9oceanbase6common11ObAllocatorUt_10free_blockEPNS_3lib6ABlockE +_ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScanner4initERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextEPKNS0_9ObSSTableE +_ZN9oceanbase7storage15ObTxTableGuards5reuseEv +_ZN9oceanbase3sql12ObUDRItemMgr14UDRRefObjGuardINS0_9ObUDRItemEED2Ev _ZN9oceanbase8observer8ObMPBase13after_processEi -_ZN9oceanbase7storage21ObFuseRowCacheFetcher18put_fuse_row_cacheERKNS_12blocksstable13ObDatumRowkeyERNS2_10ObDatumRowEl -_ZNK9oceanbase12blocksstable17ObFuseRowCacheKey13get_tenant_idEv -_ZN9oceanbase6common15ObKVGlobalCache3putINS0_18ObKVMemBlockHandleEEEiRNS0_15ObIKVCacheStoreIT_EElRKNS0_13ObIKVCacheKeyERKNS0_15ObIKVCacheValueERPSC_RPS3_b +_ZN9oceanbase8memtable22ObMemtableScanIteratorD2Ev +_ZN9oceanbase6common11ObArrayImplINS_3sql18ObExecFeedbackNodeENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev +_ZN9oceanbase3sql8ObParser10is_pl_stmtERKNS_6common8ObStringEPbS6_ +_ZN9oceanbase5trace7ObTrace10begin_spanEjhb +_ZN9oceanbase12blocksstable14ObFuseRowCache7get_rowERKNS0_17ObFuseRowCacheKeyERNS0_20ObFuseRowValueHandleE _ZN9oceanbase12blocksstable22ObMicroBlockRowScanner4openERKNS0_12MacroBlockIdERKNS0_16ObMicroBlockDataEbb _ZN9oceanbase12blocksstable20ObIMicroBlockDecoder10find_boundERKNS0_12ObDatumRangeElRlRbS5_S5_ _ZN9oceanbase12blocksstable20ObIMicroBlockDecoder10find_boundERKNS0_13ObDatumRowkeyEblRlRb @@ -381,9 +429,11 @@ _ZN9oceanbase12blocksstable19ObMicroBlockDecoder14compare_rowkeyERKNS0_12ObDatum _ZN9oceanbase12blocksstable19ObMicroBlockDecoder4initERKNS0_16ObMicroBlockDataERKNS_7storage16ObITableReadInfoE _ZN9oceanbase12blocksstable19ObMicroBlockDecoder7do_initERKNS0_16ObMicroBlockDataE _ZN9oceanbase12blocksstable13ObFixRowIndex4initEPKcll -_ZNK9oceanbase12blocksstable18ObMicroBlockHeader8is_validEv _ZN9oceanbase12blocksstable19ObMicroBlockDecoder13init_decodersEv _ZN9oceanbase12blocksstable19ObMicroBlockDecoder11add_decoderElRKNS_6common9ObObjMetaERNS0_15ObColumnDecoderE +_ZZN9oceanbase5share19ObLSLocationService15get_from_cache_ElmRKNS0_6ObLSIDERNS0_12ObLSLocationEENK5$_375clEPKc +_ZN9oceanbase7storage9ObAggCell20fill_default_if_needERNS_12blocksstable14ObStorageDatumE +_ZNK9oceanbase12blocksstable18ObMicroBlockHeader8is_validEv _ZN9oceanbase3sql11ObResultSet7executeEv _ZNK9oceanbase3sql8ObOpSpec25create_operator_recursiveERNS0_13ObExecContextERPNS0_10ObOperatorE _ZNK9oceanbase6common16ObArenaAllocator4usedEv @@ -392,8 +442,8 @@ _ZN9oceanbase3sql8ObDASRefC1ERNS0_9ObEvalCtxERNS0_13ObExecContextE _ZN9oceanbase3sql8ObDASRefC2ERNS0_9ObEvalCtxERNS0_13ObExecContextE _ZN9oceanbase3sql16ObDASTaskFactoryC1ERNS_6common12ObIAllocatorE _ZN9oceanbase3sql16ObDASTaskFactoryC2ERNS_6common12ObIAllocatorE -_ZN9oceanbase6common12ObThreadCond4initEi _ZNK9oceanbase3sql8ObOpSpec35create_exec_feedback_node_recursiveERNS0_13ObExecContextE +_ZN9oceanbase6common12ObThreadCond4initEi _ZZNK9oceanbase3sql8ObOpSpec25create_operator_recursiveERNS0_13ObExecContextERPNS0_10ObOperatorEENK5$_134clEPKc _ZN9oceanbase3sql17ObSqlTransControl10start_stmtERNS0_13ObExecContextE _ZN9oceanbase7storage26ObTabletCreateDeleteHelper20check_and_get_tabletERKNS0_14ObTabletMapKeyERNS0_14ObTabletHandleElNS0_18ObMDSGetTabletModeEl @@ -408,13 +458,13 @@ _ZN9oceanbase11transaction16ObTransStatistic26add_elr_enable_trans_countEml _ZN9oceanbase11transaction11ObTxELRUtil26refresh_elr_tenant_config_Ev _ZN9oceanbase11transaction14ObTransService20get_ls_read_snapshotERNS0_8ObTxDescENS0_18ObTxIsolationLevelERKNS_5share6ObLSIDElRNS0_16ObTxReadSnapshotE _ZN9oceanbase7storage13ObLSTxService29check_in_leader_serving_stateERb +_ZN9oceanbase11transaction12ObLSTxCtxMgr23in_leader_serving_stateEv _ZN9oceanbase11transaction14ObTransService23acquire_local_snapshot_ERKNS_5share6ObLSIDERNS2_3SCNEbRb _ZN9oceanbase7storage11ObLSService6get_lsERKNS_5share6ObLSIDERNS0_10ObLSHandleENS0_10ObLSGetModE _ZN9oceanbase6common11ObQSyncLock10try_rdlockEv _ZN9oceanbase7storage10ObLSHandleD1Ev _ZN9oceanbase7storage10ObLSHandleD2Ev _ZN9oceanbase11transaction7ObTsMgr7get_gtsEmPNS0_10ObTsCbTaskERNS_5share3SCNE -_ZN9oceanbase11transaction12ObLSTxCtxMgr23in_leader_serving_stateEv _ZZN9oceanbase11transaction14ObTransService23acquire_local_snapshot_ERKNS_5share6ObLSIDERNS2_3SCNEbRbENK6$_1334clEPKc _ZN9oceanbase11transaction16ObLSTxLogAdapter8get_roleERbRl _ZNK9oceanbase10logservice16ObLogHandlerBase8get_roleERNS_6common6ObRoleERl @@ -422,213 +472,202 @@ _ZNK9oceanbase4palf14PalfHandleImpl8get_roleERNS_6common6ObRoleERlRb _ZNK9oceanbase4palf8election12ElectionImpl8get_roleERNS_6common6ObRoleERl _ZNK9oceanbase3sql15ObExprFrameInfo11alloc_frameERNS_6common12ObIAllocatorERKNS2_8ObIArrayIPcEERmRPS6_ _ZZNK9oceanbase11transaction14ObTxVersionMgr17get_max_commit_tsEbENKUlPKcE_clES3_ -_ZZNK9oceanbase3sql8ObOpSpec25create_operator_recursiveERNS0_13ObExecContextERPNS0_10ObOperatorEENK5$_130clEPKc -_ZZN9oceanbase3sql8ObDASCtx4initERKNS0_14ObPhysicalPlanERNS0_13ObExecContextEENK4$_40clEPKc.llvm.15271004367076977045 -_ZN9oceanbase7storage21ObTenantTabletStatMgr11report_statERKNS0_12ObTabletStatERb -_ZN9oceanbase12blocksstable14ObFuseRowCache7get_rowERKNS0_17ObFuseRowCacheKeyERNS0_20ObFuseRowValueHandleE -_ZN9oceanbase12blocksstable19ObMicroBlockDecoderC1Ev _ZN9oceanbase7storage18ObTabletPointerMap12get_meta_objERKNS0_14ObTabletMapKeyERNS0_14ObMetaObjGuardINS0_8ObTabletEEE _ZN9oceanbase7storage18ObTabletPointerMap26try_get_in_memory_meta_objERKNS0_14ObTabletMapKeyERNS0_21ObTabletPointerHandleERNS0_14ObMetaObjGuardINS0_8ObTabletEEERb _ZN9oceanbase6common4hash11ObHashTableINS_7storage14ObTabletMapKeyENS1_11HashMapPairIS4_PNS3_20ObResourceValueStoreINS3_15ObTabletPointerEEEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstISA_EENS1_13SimpleAllocerINS1_15ObHashTableNodeISA_EELi97ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKS4_RSA_l _ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE7set_objERNS0_9ObMetaObjIS2_EE _ZN9oceanbase6common12ObBucketLock6rdlockEml -_ZZNK9oceanbase8observer8ObMPBase16init_process_varERNS_3sql8ObSqlCtxERKNS2_15ObMultiStmtItemERNS2_16ObSQLSessionInfoEENK5$_350clEPKc -_ZN9oceanbase7storage21ObIndexTreePrefetcher19prefetch_block_dataERNS_12blocksstable16ObMicroIndexInfoERNS0_22ObMicroBlockDataHandleEb -_ZN9oceanbase7storage21ObMicroBlockHandleMgr22get_micro_block_handleERKNS_12blocksstable16ObMicroIndexInfoEbbRNS0_22ObMicroBlockDataHandleE -_ZN9oceanbase7storage22ObMicroBlockDataHandle24try_release_loaded_blockEv -_ZN9oceanbase12blocksstable18ObIMicroBlockCache15get_cache_blockEmNS0_12MacroBlockIdEllRNS0_24ObMicroBlockBufferHandleE -_ZN9oceanbase6common12ObKVCacheMap3getElRKNS0_13ObIKVCacheKeyERPKNS0_15ObIKVCacheValueERPNS0_18ObKVMemBlockHandleE -_ZN9oceanbase6common22ObKVCacheHazardStation7releaseEl -_ZNK9oceanbase12blocksstable20ObMicroBlockCacheKey4hashEv -_ZNK9oceanbase12blocksstable20ObMicroBlockCacheKeyeqERKNS_6common13ObIKVCacheKeyE -_ZN9oceanbase6common22ObKVCacheHazardStation7acquireERl -_ZNK9oceanbase7storage16ObStorageMetaKey4hashEv -_ZNK9oceanbase12blocksstable17ObFuseRowCacheKey4hashERm -_ZN9oceanbase6common11DefHashFuncINS0_19DatumHashCalculatorILNS0_9ObObjTypeE4ENS0_12ObMurmurHashEEEE4hashERKNS0_7ObDatumEmRm -_ZNK9oceanbase12blocksstable13ObDatumRowkey10murmurhashEmRKNS0_19ObStorageDatumUtilsERm -_ZNK9oceanbase12blocksstable21ObBloomFilterCacheKey4hashEv -_ZNK9oceanbase12blocksstable19ObFuseRowCacheValue4sizeEv -_ZNK9oceanbase7storage16ObStorageMetaKeyeqERKNS_6common13ObIKVCacheKeyE -_ZN9oceanbase3sql11ObPlanCache23check_can_do_insert_optERNS_6common12ObIAllocatorERNS0_14ObPlanCacheCtxERNS0_18ObFastParserResultERbRlRNS2_8ObStringES9_ -_ZN9oceanbase8observer16ObSrvMySQLXlator9translateERNS_3rpc9ObRequestERPNS2_5frame14ObReqProcessorE -_ZTWN9oceanbase6common13ObPageManager12tl_instance_E -_ZN9oceanbase3sql8ObSqlCtxC1Ev _ZN9oceanbase7storage18ObSSTableRowGetterD2Ev -_ZN9oceanbase7storage21ObMicroBlockHandleMgr13dec_hold_sizeERNS0_22ObMicroBlockDataHandleE -_ZN9oceanbase8observer16ObMPPacketSender14send_ok_packetERNS_3sql16ObSQLSessionInfoERNS0_10ObOKPParamEPNS_7obmysql13ObMySQLPacketE +_ZN9oceanbase3sql19DASRelatedTabletMap21add_related_tablet_idENS_6common10ObTabletIDEmS3_mm +_ZN9oceanbase3sql17ObMergeDistinctOp10inner_openEv +_ZN9oceanbase12blocksstable19ObMicroBlockDecoderC1Ev _ZZN9oceanbase7storage13ObSingleMerge22get_and_fuse_cache_rowEllRNS_12blocksstable10ObDatumRowERbS5_S5_ENK5$_386clEPKc +MD5 +_ZN9oceanbase3sql11ObPlanCache23check_can_do_insert_optERNS_6common12ObIAllocatorERNS0_14ObPlanCacheCtxERNS0_18ObFastParserResultERbRlRNS2_8ObStringES9_ _ZN9oceanbase7storage19ObMultipleScanMergeD1Ev _ZN9oceanbase7storage19ObMultipleScanMergeD2Ev +_ZN9oceanbase6common16ObArenaAllocator4freeEPv _ZN9oceanbase7storage22ObMicroBlockDataHandleD1Ev _ZN9oceanbase7storage22ObMicroBlockDataHandleD2Ev +_ZN9oceanbase6common18ObWrapperAllocator4freeEPv _ZN9oceanbase12blocksstable18ObMacroBlockHandleD1Ev _ZN9oceanbase12blocksstable18ObMacroBlockHandleD2Ev _ZN9oceanbase6common10ObIOHandleD1Ev -_ZN9oceanbase6common18ObWrapperAllocator4freeEPv -_ZN9oceanbase6common15ObKVCacheHandleD1Ev -_ZN9oceanbase6common15ObKVCacheHandleD2Ev _ZN9oceanbase12blocksstable18ObMacroBlockHandle5resetEv _ZN9oceanbase6common15ObKVCacheHandle5resetEv -_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE22ObIndexTreeLevelHandleD2Ev -_ZN9oceanbase12blocksstable24ObMicroBlockReaderHelper5resetEv +_ZN9oceanbase7storage21ObMicroBlockHandleMgr13dec_hold_sizeERNS0_22ObMicroBlockDataHandleE _ZN9oceanbase7storage19ObSSTableRowScannerINS0_30ObIndexTreeMultiPassPrefetcherILi32ELi3EEEED1Ev _ZN9oceanbase7storage19ObSSTableRowScannerINS0_30ObIndexTreeMultiPassPrefetcherILi32ELi3EEEED2Ev +_ZN9oceanbase6common15ObKVCacheHandleD1Ev +_ZN9oceanbase6common15ObKVCacheHandleD2Ev +_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE22ObIndexTreeLevelHandleD2Ev +_ZN9oceanbase12blocksstable24ObMicroBlockReaderHelper5resetEv _ZN9oceanbase12blocksstable23ObIMicroBlockRowScannerD2Ev _ZN9oceanbase7storage15ObTxTableGuardsD2Ev _ZN9oceanbase6common16ObFixedArrayImplINS_7storage19ObSSTableReadHandleENS0_12ObIAllocatorEED2Ev _ZN9oceanbase12blocksstable18ObMicroBlockReaderD2Ev -_ZN9oceanbase7storage21ObIndexTreePrefetcherD2Ev -_ZN9oceanbase3lib17ObMallocAllocator12get_instanceEv _ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScannerD2Ev _ZN9oceanbase12blocksstable22ObBlockReaderAllocatorD2Ev +_ZN9oceanbase7storage21ObIndexTreePrefetcherD2Ev _ZN9oceanbase6common16ObFixedArrayImplINS_5share6schema16ObColumnSchemaV2ENS0_12ObIAllocatorEED2Ev +_ZN9oceanbase6common16ObArenaAllocatorD2Ev _ZN9oceanbase8memtable17ObMvccRowIteratorD1Ev _ZN9oceanbase8memtable17ObMvccRowIteratorD2Ev -_ZN9oceanbase8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorINS0_20ObStoreRowkeyWrapperEPNS0_9ObMvccRowEEEE5resetEv +_ZN9oceanbase6common16ObWaitEventGuardC1Elmlllb +_ZN9oceanbase6common16ObWaitEventGuardC2Elmlllb +_ZNK9oceanbase12blocksstable13ObDatumRowkey5equalERKS1_RKNS0_19ObStorageDatumUtilsERb +_ZN9oceanbase3sql20ObSecurityAuditUtils21handle_security_auditERNS0_11ObResultSetEPNS_5share6schema19ObSchemaGetterGuardEPKNS0_6ObStmtERKNS_6common8ObStringEi +_ZN9oceanbase7storage30ObSSTableMultiVersionRowGetterD2Ev _ZN9oceanbase7storage13ObVectorStoreD2Ev -_ZN9oceanbase6common16ObArenaAllocatorD2Ev _ZN9oceanbase8memtable13ObQueryEngine4scanEPKNS0_13ObMemtableKeyEbS4_blRPNS0_22ObIQueryEngineIteratorE -_ZN9oceanbase5trace7ObTrace10begin_spanEjhb -_ZN9oceanbase3sql17ObMergeDistinctOp10inner_openEv -_ZN9oceanbase3sql16ObSQLSessionInfo24ObCachedTenantConfigInfo7refreshEv -_ZZN9oceanbase3sql8ObPCVSet19inner_get_cache_objERNS0_14ObILibCacheCtxEPNS0_14ObILibCacheKeyERPNS0_17ObILibCacheObjectEENK4$_86clEPKc +_ZN9oceanbase8observer16ObSrvMySQLXlator9translateERNS_3rpc9ObRequestERPNS2_5frame14ObReqProcessorE +_ZTWN9oceanbase6common13ObPageManager12tl_instance_E +_ZN9oceanbase3sql8ObSqlCtxC1Ev +_ZN9oceanbase7storage30ObSSTableMultiVersionRowGetter10inner_openERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextEPNS0_8ObITableEPKv +_ZNK9oceanbase12blocksstable13ObDatumRowkey22to_multi_version_rangeERNS_6common12ObIAllocatorERNS0_12ObDatumRangeE +_ZNK9oceanbase12blocksstable13ObDatumRowkey23to_multi_version_rowkeyEbRNS_6common12ObIAllocatorERS1_ +_ZZNK9oceanbase8observer8ObMPBase16init_process_varERNS_3sql8ObSqlCtxERKNS2_15ObMultiStmtItemERNS2_16ObSQLSessionInfoEENK5$_350clEPKc +_ZSt4sortIPPN9oceanbase3sql17ObChunkDatumStore9StoredRowENS1_12ObSortOpImpl16CopyableComparerEEvT_S8_T0_ _ZN9oceanbase7storage22ObMicroBlockDataHandle5resetEv +_ZNK9oceanbase12blocksstable14ObConstDecoder6decodeERKNS0_18ObColumnDecoderCtxERNS_6common7ObDatumElRKNS0_11ObBitStreamEPKcl +_ZN9oceanbase6common12ObKVCacheMap3putERNS0_13ObKVCacheInstERKNS0_13ObIKVCacheKeyEPKNS0_13ObKVCachePairEPNS0_18ObKVMemBlockHandleEb +_ZN9oceanbase6common14ObSmallObjPoolINS_12blocksstable23ObColumnDecoderCtxBlockEE5allocERPS3_ _ZN9oceanbase3sql15ObTableModifyOp7destroyEv +_ZN9oceanbase8observer16ObMPPacketSender14send_ok_packetERNS_3sql16ObSQLSessionInfoERNS0_10ObOKPParamEPNS_7obmysql13ObMySQLPacketE +_ZN9oceanbase7storage21ObIndexTreePrefetcher20lookup_in_index_treeERNS0_19ObSSTableReadHandleEb _ZN9oceanbase3sql16ObChunkStoreUtil12alloc_dir_idERl -_ZN9oceanbase3sql16AllocInputHelperILi26EE5allocERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecERPNS0_9ObOpInputE -_ZN9oceanbase6common11ObArrayImplIPNS_3sql17ObChunkDatumStore9StoredRowENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEED2Ev -_ZN9oceanbase6common14ObSmallObjPoolINS_12blocksstable23ObColumnDecoderCtxBlockEE5allocERPS3_ +_ZZN9oceanbase5share17ObTabletLSService15get_from_cache_EmRKNS_6common10ObTabletIDERNS0_15ObTabletLSCacheEENK5$_466clEPKc +_ZNK9oceanbase12blocksstable14ObConstDecoder19decode_without_dictERKNS0_18ObColumnDecoderCtxERNS_6common7ObDatumE +_ZN9oceanbase12blocksstableL18load_data_to_datumERKNS_6common9ObObjTypeEPKcllRNS1_7ObDatumE +_ZN9oceanbase6common16ObKVCacheInstMap14get_cache_instERKNS0_16ObKVCacheInstKeyERNS0_19ObKVCacheInstHandleE +_ZN9oceanbase3sql16AllocInputHelperILi24EE5allocERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecERPNS0_9ObOpInputE _ZN9oceanbase7storage19ObSSTableRowScannerINS0_30ObIndexTreeMultiPassPrefetcherILi32ELi3EEEE13get_next_rowsEv -_ZZN9oceanbase7storage15ObMultipleMerge20get_next_normal_rowsERllENK5$_490clEPKc -_ZN9oceanbase12blocksstable9ObSSTable3getERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS0_13ObDatumRowkeyERPNS2_18ObStoreRowIteratorE -_ZN9oceanbase7storage18ObSSTableRowGetter10inner_openERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextEPNS0_8ObITableEPKv -_ZN9oceanbase12blocksstable22ObIndexBlockRowScanner4openERKNS0_12MacroBlockIdERKNS0_16ObMicroBlockDataERKNS0_13ObDatumRowkeyElPKNS0_16ObMicroIndexInfoE -_ZN9oceanbase12blocksstable22ObIndexBlockRowScanner10locate_keyERKNS0_13ObDatumRowkeyE -_ZNK9oceanbase12blocksstable9ObSSTable8get_metaERNS0_19ObSSTableMetaHandleEPNS_6common20ObSafeArenaAllocatorE -_ZZN9oceanbase12blocksstable22ObIndexBlockRowScanner10locate_keyERKNS0_13ObDatumRowkeyEENK5$_520clEPKc -_ZN9oceanbase7storage21ObIndexTreePrefetcher18check_bloom_filterERKNS_12blocksstable16ObMicroIndexInfoEbRNS0_19ObSSTableReadHandleE -_ZN9oceanbase6common15ObKVGlobalCache12get_instanceEv -_ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScanner4initERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextEPKNS0_9ObSSTableE -_ZN9oceanbase7storage15ObTxTableGuards5reuseEv +_ZN9oceanbase7storage30ObSSTableMultiVersionRowGetter18inner_get_next_rowERPKNS_12blocksstable10ObDatumRowE +_ZN9oceanbase7storage19ObSSTableRowScannerINS0_30ObIndexTreeMultiPassPrefetcherILi32ELi3EEEE18inner_get_next_rowERPKNS_12blocksstable10ObDatumRowE +_ZNK9oceanbase12blocksstable21ObBloomFilterCacheKeyeqERKNS_6common13ObIKVCacheKeyE +_ZN9oceanbase12blocksstable18ObBloomFilterCache11may_containEmRKNS0_12MacroBlockIdERKNS0_13ObDatumRowkeyERKNS0_19ObStorageDatumUtilsERb +_ZN9oceanbase6common11ObArrayImplIPNS_3sql17ObChunkDatumStore9StoredRowENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEED2Ev +_ZZNK9oceanbase3sql8ObOpSpec25create_operator_recursiveERNS0_13ObExecContextERPNS0_10ObOperatorEENK5$_130clEPKc +_ZN9oceanbase8memtable34ObMemtableMultiVersionScanIterator18inner_get_next_rowERPKNS_12blocksstable10ObDatumRowE +_ZN9oceanbase8memtable27ObMultiVersionValueIterator25get_next_node_for_compactERPKv +_ZZN9oceanbase8memtable34ObMemtableMultiVersionScanIterator18inner_get_next_rowERPKNS_12blocksstable10ObDatumRowEENK5$_476clEPKc +_ZN9oceanbase8memtable27ObMultiVersionValueIterator23init_multi_version_iterEv +_ZN9oceanbase8memtable34ObMemtableMultiVersionScanIterator23iterate_uncommitted_rowERKNS_6common13ObStoreRowkeyERNS_12blocksstable10ObDatumRowE +_ZN9oceanbase8memtable27ObMultiVersionValueIterator25get_next_uncommitted_nodeERPKvRNS_11transaction9ObTransIDERNS_5share3SCNERNS5_7ObTxSEQE +_ZN9oceanbase3sql16ObSQLSessionInfo24ObCachedTenantConfigInfo7refreshEv _ZNK9oceanbase8observer9ObMPQuery11record_statENS_3sql4stmt8StmtTypeEl -_ZN9oceanbase6common12ObKVCacheMap3putERNS0_13ObKVCacheInstERKNS0_13ObIKVCacheKeyEPKNS0_13ObKVCachePairEPNS0_18ObKVMemBlockHandleEb -_ZN9oceanbase3sql10ObFLTUtils22init_flt_log_frameworkERNS0_16ObSQLSessionInfoEb -_ZN9oceanbase11transaction8ObTxDesc20in_tx_for_free_routeEv -_ZN9oceanbase6common16ObKVCacheInstMap14get_cache_instERKNS0_16ObKVCacheInstKeyERNS0_19ObKVCacheInstHandleE +_ZZN9oceanbase7storage15ObMultipleMerge20get_next_normal_rowsERllENK5$_490clEPKc +_ZN9oceanbase7storageL17get_not_exist_rowERKNS_12blocksstable13ObDatumRowkeyERNS1_10ObDatumRowERPKS5_ +_ZN9oceanbase7storage12ObSumAggCell5reuseEv +_ZZN9oceanbase7storage19ObSSTableRowScannerINS0_30ObIndexTreeMultiPassPrefetcherILi32ELi3EEEE10fetch_rowsERNS0_19ObSSTableReadHandleEENKUlPKcE2_clES8_ +_ZN9oceanbase12blocksstable21ObMicroBlockRowGetter7get_rowERNS_7storage19ObSSTableReadHandleERPKNS0_10ObDatumRowERNS0_18ObMacroBlockReaderE +_ZN9oceanbase12blocksstable21ObMicroBlockGetReader7get_rowERKNS0_16ObMicroBlockDataERKNS0_13ObDatumRowkeyERKNS_7storage16ObITableReadInfoERNS0_10ObDatumRowE +_ZNK9oceanbase7storage16ObRowkeyReadInfo25get_seq_read_column_countEv +_ZN9oceanbase5trace7ObTrace3endEv +_ZN9oceanbase8memtable25ObMultiVersionRowIterator12get_next_rowERPKNS0_13ObMemtableKeyERPNS0_27ObMultiVersionValueIteratorE +_ZN9oceanbase3sql16AllocInputHelperILi26EE5allocERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecERPNS0_9ObOpInputE +_ZN9oceanbase8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorINS0_20ObStoreRowkeyWrapperEPNS0_9ObMvccRowEEEE5resetEv +_ZNK9oceanbase5share3SCN14get_val_for_txEb +_ZN9oceanbase3sql24ObValuesTableCompression21try_batch_exec_paramsERNS_6common12ObIAllocatorERNS0_14ObPlanCacheCtxERNS0_16ObSQLSessionInfoERNS0_18ObFastParserResultE +_ZN9oceanbase6common13ObSEArrayImplIPNS_3sql9ObPCParamELl4ENS0_19ModulePageAllocatorELb0EED2Ev _ZN9oceanbase12blocksstable19ObMicroBlockDecoderD2Ev _ZN9oceanbase3lib17ObMallocAllocator4freeEPv _ZN9oceanbase6common14ObSmallObjPoolINS_12blocksstable23ObColumnDecoderCtxBlockEE4freeEPS3_ +_ZN9oceanbase3lib20ObTenantCtxAllocator8ChunkMgr10free_chunkEPNS0_6AChunkERKNS0_9ObMemAttrE _ZN9oceanbase12blocksstable17ObDecoderCtxArray5resetEv -_ZN9oceanbase3omt10ObThWorker20check_qtime_throttleEv -_ZThn352_N9oceanbase12blocksstable18ObMicroBlockReader14get_row_headerElRPKNS0_11ObRowHeaderE -_ZNK9oceanbase5trace4UUID8tostringEPclRl -_ZN9oceanbase12blocksstable18ObBloomFilterCache11may_containEmRKNS0_12MacroBlockIdERKNS0_13ObDatumRowkeyERKNS0_19ObStorageDatumUtilsERb -_ZNK9oceanbase12blocksstable21ObBloomFilterCacheKeyeqERKNS_6common13ObIKVCacheKeyE -_ZZN9oceanbase5share17ObTabletLSService15get_from_cache_EmRKNS_6common10ObTabletIDERNS0_15ObTabletLSCacheEENK5$_465clEPKc -_ZN9oceanbase3sql20ObSecurityAuditUtils21handle_security_auditERNS0_11ObResultSetEPNS_5share6schema19ObSchemaGetterGuardEPKNS0_6ObStmtERKNS_6common8ObStringEi -_ZN9oceanbase12blocksstable21ObMicroBlockRowGetter7get_rowERNS_7storage19ObSSTableReadHandleERPKNS0_10ObDatumRowERNS0_18ObMacroBlockReaderE -_ZN9oceanbase12blocksstable21ObMicroBlockGetReader7get_rowERKNS0_16ObMicroBlockDataERKNS0_13ObDatumRowkeyERKNS_7storage16ObITableReadInfoERNS0_10ObDatumRowE -_ZNK9oceanbase7storage16ObRowkeyReadInfo25get_seq_read_column_countEv +_ZN9oceanbase3lib20ObTenantCtxAllocator11alloc_chunkElRKNS0_9ObMemAttrE _ZN9oceanbase6common11ObArrayImplIPNS_3sql12ObSortOpImpl13SortStoredRowENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEED2Ev -_ZN9oceanbase3sql24ObValuesTableCompression21try_batch_exec_paramsERNS_6common12ObIAllocatorERNS0_14ObPlanCacheCtxERNS0_16ObSQLSessionInfoERNS0_18ObFastParserResultE -_ZN9oceanbase6common13ObSEArrayImplIlLl16ENS0_19ModulePageAllocatorELb0EED2Ev +_ZN9oceanbase6common11ObArrayImplINS_3sql18ObPCConstParamInfoENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev _ZN9oceanbase3sql13ObDASUpdateOpD2Ev +_ZN9oceanbase6common15ObKVGlobalCache12get_instanceEv +_ZN9oceanbase3lib20ObTenantCtxAllocator10free_chunkEPNS0_6AChunkERKNS0_9ObMemAttrE +_ZNK9oceanbase3lib20ObTenantCtxAllocator8get_holdEv +_ZN9oceanbase3sql9ObPlanSet16match_constraintERKNS_6common9Ob2DArrayINS2_10ObObjParamELi2079744ENS2_18ObWrapperAllocatorELb0ENS2_9ObSEArrayIPS4_Ll1ES5_Lb0EEEEERb _ZN9oceanbase3sql19ObScalarAggregateOp10inner_openEv -_ZN9oceanbase7storage21ObIndexTreePrefetcher20lookup_in_index_treeERNS0_19ObSSTableReadHandleEb +_ZN9oceanbase6common11ObArrayImplINS_5share6schema18ObSchemaObjVersionENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_17DefaultItemEncodeIS4_EEED2Ev +_ZN9oceanbase7storage21ObIndexTreePrefetcher15lookup_in_cacheERNS0_19ObSSTableReadHandleE _ZN9oceanbase6common19ModulePageAllocator4freeEPv -_ZN9oceanbase7storage12ObSumAggCell5reuseEv -_ZZN9oceanbase5share24ObOrderPerservingEncoder25encode_from_string_varlenENS_6common8ObStringEPhlRlRNS0_10ObEncParamEENK5$_958clEPKc.llvm.425457886051521826 -_ZN9oceanbase3sql9ObPlanSet16match_constraintERKNS_6common9Ob2DArrayINS2_10ObObjParamELi2079744ENS2_18ObWrapperAllocatorELb0ENS2_9ObSEArrayIPS4_Ll1ES5_Lb0EEEEERb -_ZN9oceanbase6common11ObArrayImplINS_3sql9ObDopHintENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev -_ZN9oceanbase3sql11ObGroupByOp10inner_openEv +_ZN9oceanbase3sql14ObExprValuesOp11inner_closeEv +_ZN9oceanbase7storage17ObAggregatedStoreD2Ev +_ZN9oceanbase6common16ObFixedArrayImplIPNS_7storage9ObAggCellENS0_12ObIAllocatorEE5resetEv +_ZN9oceanbase12blocksstable10ObDatumRow5resetEv _ZN9oceanbase3sql15ObTableInsertOp11inner_closeEv +_ZZN9oceanbase3sql15ObTableModifyOp23get_next_row_from_childEvENK5$_832clEPKc.llvm.4664018118220268599 +_ZN9oceanbase6common16ObFixedArrayImplImNS0_12ObIAllocatorEE9push_backERKm +_ZN9oceanbase7storage17ObAggregatedStore5resetEv +_ZN9oceanbase3sql15ObTableDeleteOp10inner_openEv +_ZN9oceanbase7storage16ObMergeLoserTreeINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpELl80EE8push_topERKS2_ _ZN9oceanbase11transaction14ObTransService33create_global_implicit_savepoint_ERNS0_8ObTxDescERKNS0_9ObTxParamERNS0_7ObTxSEQEb -_ZZN9oceanbase7storage19ObSSTableRowScannerINS0_30ObIndexTreeMultiPassPrefetcherILi32ELi3EEEE10fetch_rowsERNS0_19ObSSTableReadHandleEENKUlPKcE2_clES8_ -_ZZN9oceanbase3sql15ObTableModifyOp23get_next_row_from_childEvENK5$_832clEPKc.llvm.14688916928656024692 -_ZN9oceanbase3sql15ObTableDeleteOp11inner_closeEv +_ZN9oceanbase6common11ObArrayImplINS_3sql12ObPCPrivInfoENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev +_ZN9oceanbase6common11ObArrayImplINS_3sql13ObMonitorHintENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev _ZN9oceanbase7storage22ObBlockBatchedRowStoreD2Ev -_ZNK9oceanbase8memtable20ObStoreRowkeyWrapper5equalERKS1_Rb -_ZN9oceanbase5trace7ObTrace8end_spanEPNS0_9ObSpanCtxE -_ZN9oceanbase3sql20ObAggregateProcessor4initEv -_ZN9oceanbase3sql14ObExprValuesOp11inner_closeEv -_ZN9oceanbase6common22ObKVCacheHazardStation11delete_nodeElPNS0_19ObKVCacheHazardNodeE +_ZN9oceanbase3omt10ObThWorker20check_qtime_throttleEv _ZNK9oceanbase12blocksstable17ObFuseRowCacheKey4sizeEv -_ZN9oceanbase3lib9SetLockerINS0_7ObMutexEE6unlockEv -_ZN9oceanbase3lib12SubObjectMgr11alloc_blockEmRKNS0_9ObMemAttrE -_ZN9oceanbase3sql15ObSubPlanScanOp7destroyEv -_ZTWN9oceanbase8memtable33TLOCAL_NEED_WAIT_IN_LOCK_WAIT_MGRE -_ZN9oceanbase3sql17ObMergeDistinctOp20inner_get_next_batchEl -_ZN9oceanbase3sql17ObMergeDistinctOp21deduplicate_for_batchEbPKNS0_11ObBatchRowsE -_ZN9oceanbase3sql17ObChunkDatumStore9StoredRow8do_buildILb0EEEiRPS2_RKNS_6common8ObIArrayIPNS0_6ObExprEEERNS0_9ObEvalCtxEPclj -_ZN9oceanbase3sql17ObChunkDatumStore13row_copy_sizeERKNS_6common8ObIArrayIPNS0_6ObExprEEERNS0_9ObEvalCtxERl +_ZNK9oceanbase12blocksstable16ObIColumnDecoder15get_ref_col_idxERl +_ZNK9oceanbase12blocksstable22ObMicroBlockCacheValue4sizeEv +_ZZN9oceanbase3omt10ObThWorker6workerERlS2_RiEN14AllocatorGuardC2EPPNS_6common12ObIAllocatorE +_ZN9oceanbase5share6_SBaseD2Ev _ZN9oceanbase7obmysql8ObSqlNio3runEl _ZN9oceanbase7obmysql16ObSqlSockHandler11on_readableEPv _ZN9oceanbase8observer12ObSrvDeliver7deliverERNS_3rpc9ObRequestE _ZN9oceanbase3omt8ObTenant12recv_requestERNS_3rpc9ObRequestE _ZN9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE3getERKS3_RPS4_ _ZZN9oceanbase7obmysql12ObSqlNioImpl11revert_sockEPNS0_9ObSqlSockEENKUlPKcE1_clES5_ -_ZN9oceanbase6common16ObPriorityQueue2ILi0ELi1ELi0EE4pushEPNS0_6ObLinkEi -_ZN9oceanbase6common9SCondTempILi3EE6signalEji -_ZN9oceanbase3rpc25get_stat_srv_by_tenant_idEm +_ZN9oceanbase6common10FixedHash2INS_3omt19ObResourceGroupNodeEE3getEPS3_RS5_ +_Z23check_easy_memory_limitRN9oceanbase3rpc9ObRequestE _ZN9oceanbase8observer12ObSrvDeliver19deliver_rpc_requestERNS_3rpc9ObRequestE +_ZN9oceanbase3rpc11RpcStatBulkILi10EE9add_pieceERKNS0_12RpcStatPieceE _ZNK9oceanbase3omt13ObMultiTenant10get_tenantEmRPNS0_8ObTenantE -_ZN9oceanbase6common21ObDIThreadTenantCache8get_nodeEmRPNS0_17ObDITenantCollectE -_Z23check_easy_memory_limitRN9oceanbase3rpc9ObRequestE +_ZN9oceanbase3rpc25get_stat_srv_by_tenant_idEm +_ZN9oceanbase3rpc11RpcStatItem9add_pieceERKNS0_12RpcStatPieceE _ZN9oceanbase6common4hash11ObHashTableImNS1_12ObReferedMapImNS_10rootserver14DRUnitStatInfoEE4ItemENS1_9hash_funcImEENS1_8equal_toImEENS7_6GetKeyENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi5ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv _ULx86_64_init_local +_ZN9oceanbase6common7ObDITlsINS0_17ObSessionDIBufferELm0EE12get_instanceEv _ZNK10__cxxabiv117__class_type_info12__do_dyncastElNS0_10__sub_kindEPKS0_PKvS3_S5_RNS0_16__dyncast_resultE -_ZN9oceanbase3lib18MySimpleThreadPool6handleEPv -_ZN9oceanbase11transaction10ObTxCtxMgr38get_ls_min_uncommit_tx_prepare_versionERKNS_5share6ObLSIDERNS2_3SCNE -_ZN9oceanbase11transaction10ObTxCtxMgr17get_ls_tx_ctx_mgrERKNS_5share6ObLSIDERPNS0_12ObLSTxCtxMgrE +_ZN9oceanbase3sql12ObSortOpImpl4sortEv +_ZSt22__final_insertion_sortIPPN9oceanbase3sql17ObChunkDatumStore9StoredRowEN9__gnu_cxx5__ops15_Iter_comp_iterINS1_12ObSortOpImpl16CopyableComparerEEEEvT_SC_T0_ _ZNK10__cxxabiv121__vmi_class_type_info12__do_dyncastElNS_17__class_type_info10__sub_kindEPKS1_PKvS4_S6_RNS1_16__dyncast_resultE _ZNK10__cxxabiv120__si_class_type_info12__do_dyncastElNS_17__class_type_info10__sub_kindEPKS1_PKvS4_S6_RNS1_16__dyncast_resultE +_ZN9oceanbase8keybtree10ObKeyBtreeINS_8memtable20ObStoreRowkeyWrapperEPNS2_9ObMvccRowEE7destroyEPNS0_9BtreeNodeIS3_S5_EE +_ZN9oceanbase3lib6_SBaseD2Ev +_ZN9oceanbase3lib18MySimpleThreadPool6handleEPv _ULx86_64_tdep_trace -_Ux86_64_getcontext_trace _ZN9oceanbase3sql13ObTableScanOp22do_init_before_get_rowEv -_ZN9oceanbase6common13ObSEArrayImplINS0_10ObNewRangeELl4ENS0_19ModulePageAllocatorELb0EE9push_backERKS2_ _ZN9oceanbase6common13ObSEArrayImplINS0_10ObNewRangeELl1ENS0_19ModulePageAllocatorELb0EE5reuseEv -_ZN9oceanbase3sql8ObDASRef13find_das_taskEPKNS0_14ObDASTabletLocENS0_11ObDASOpTypeE -_ZZN9oceanbase3sql13ObTableScanOp25prepare_single_scan_rangeElENK5$_201clEPKc +_ZN9oceanbase6common13ObSEArrayImplINS0_10ObNewRangeELl4ENS0_19ModulePageAllocatorELb0EE9push_backERKS2_ _ZN9oceanbase3sql13ObTableScanOp21GroupRescanParamGuardD2Ev +_ZN9oceanbase3sql8ObDASRef13find_das_taskEPKNS0_14ObDASTabletLocENS0_11ObDASOpTypeE _ZN9oceanbase3sql13ObTableScanOp25prepare_single_scan_rangeEl -_ZZNK9oceanbase3sql12ObQueryRange24direct_get_tablet_rangesERNS_6common12ObIAllocatorERNS0_13ObExecContextERNS2_9ObSEArrayIPNS2_10ObNewRangeELl1ENS2_19ModulePageAllocatorELb0EEERbRKNS2_20ObDataTypeCastParamsEENK6$_1368clEPKc -_ZN9oceanbase3sql13ObTableScanOp21GroupRescanParamGuard25switch_group_rescan_paramEl +_ZN9oceanbase3sql10ObSQLUtils24is_same_type_for_compareERKNS_6common9ObObjMetaES5_ +_ZZNK9oceanbase3sql12ObQueryRange24direct_get_tablet_rangesERNS_6common12ObIAllocatorERNS0_13ObExecContextERNS2_9ObSEArrayIPNS2_10ObNewRangeELl1ENS2_19ModulePageAllocatorELb0EEERbRKNS2_20ObDataTypeCastParamsEENK6$_1382clEPKc _ZN9oceanbase3sql8ObDASRef16execute_all_taskEv _ZN9oceanbase3sql11ObDASScanOp7open_opEv _ZNK9oceanbase7storage16ObTableScanParam8is_validEv _ZN9oceanbase11transaction16ObTxReadSnapshotaSERKS1_ _ZN9oceanbase7storage15ObAccessService10table_scanERNS_6common17ObVTableScanParamERPNS2_16ObNewRowIteratorE _ZN9oceanbase6common7ObLatch6wrlockEjlPKj -_ZZN9oceanbase7storage15ObAccessService19check_read_allowed_ERKNS_5share6ObLSIDERKNS_6common10ObTabletIDENS0_17ObStoreAccessTypeERKNS0_16ObTableScanParamERNS0_14ObTabletHandleERNS1_15ObStoreCtxGuardENS2_3SCNEENK4$_50clEPKc _ZN9oceanbase6common13ObSEArrayImplINS_11transaction6ObPairINS_5share6ObLSIDElEELl1ENS0_19ModulePageAllocatorELb0EE7reserveEl -_ZN9oceanbase6common13ObSEArrayImplImLl4ENS0_19ModulePageAllocatorELb0EE7reserveEl +_ZN9oceanbase3sql13ObTableScanOp21GroupRescanParamGuard25switch_group_rescan_paramEl _ZNK9oceanbase3sql12ObQueryRange24direct_get_tablet_rangesERNS_6common12ObIAllocatorERNS0_13ObExecContextERNS2_9ObSEArrayIPNS2_10ObNewRangeELl1ENS2_19ModulePageAllocatorELb0EEERbRKNS2_20ObDataTypeCastParamsE -_ZN9oceanbase3sql10ObSQLUtils24is_same_type_for_compareERKNS_6common9ObObjMetaES5_ _ZN9oceanbase6common13ObSEArrayImplIPNS0_10ObNewRangeELl1ENS0_19ModulePageAllocatorELb0EE9push_backERKS3_ +_ZZN9oceanbase3sql13ObTableScanOp25prepare_single_scan_rangeElENK5$_201clEPKc _ZN9oceanbase3sql8ObDASRef15create_das_taskEPKNS0_14ObDASTabletLocENS0_11ObDASOpTypeERPNS0_12ObIDASTaskOpE _ZN9oceanbase3sql16AllocDASOpHelperILi1EE5allocERNS_6common12ObIAllocatorERPNS0_12ObIDASTaskOpE +_ZN9oceanbase6common13ObSEArrayImplImLl4ENS0_19ModulePageAllocatorELb0EE7reserveEl _ZN9oceanbase7storage17ObLSTabletService10table_scanERNS0_14ObTabletHandleERNS0_19ObTableScanIteratorERNS0_16ObTableScanParamE +_ZNK9oceanbase7storage16ObReadInfoStruct16get_columns_descEv _ZNK9oceanbase7storage16ObReadInfoStruct23get_schema_column_countEv _ZNK9oceanbase7storage15ObTableReadInfo20has_all_column_groupEv -_ZNK9oceanbase8memtable15ObMvccAccessCtx15is_read_valid__Ev _ZN9oceanbase7storage19ObTableScanIterator4initERNS0_16ObTableScanParamERKNS0_14ObTabletHandleE _ZN9oceanbase7storage21ObMicroBlockHandleMgr4initEbRNS0_16ObTableStoreStatERNS_6common11ObQueryFlagE _ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEEaSERKS3_ -_ZN9oceanbase6common15ObFIFOAllocator4initEPNS0_12ObIAllocatorElRKNS_3lib9ObMemAttrElll -_ZN9oceanbase7storage8ObTablet34check_snapshot_readable_with_cacheEll -_ZN9oceanbase7storage20ObTableAccessContext24build_lob_locator_helperERNS0_16ObTableScanParamERKNS0_10ObStoreCtxERKNS_6common14ObVersionRangeE -_ZN9oceanbase7storage16ObTableScanRange12init_rowkeysERKNS_6common8ObIArrayINS2_10ObNewRangeEEERKNS2_11ObQueryFlagEPKNS_12blocksstable19ObStorageDatumUtilsE -_ZN9oceanbase7storage20ObTableAccessContext19init_scan_allocatorERNS0_16ObTableScanParamE _ZN9oceanbase7storage19ObTableScanIterator9open_iterEv _ZNK9oceanbase7storage16ObRowkeyReadInfo17get_request_countEv -_ZN9oceanbase7storage19ObTableScanIterator14init_scan_iterINS0_13ObSingleMergeEEEiRPT_ -_ZNK9oceanbase7storage16ObReadInfoStruct16get_columns_descEv -_ZN9oceanbase5share15is_reserve_modeEv -_ZTWN9oceanbase5share17ObTenantDagWorker5self_E +_ZN9oceanbase7storage15ObMultipleMergeC2Ev _ZN9oceanbase7storage15ObMultipleMerge4initERNS0_18ObTableAccessParamERNS0_20ObTableAccessContextERNS0_15ObGetTableParamE _ZNK9oceanbase7storage16ObReadInfoStruct8is_validEv -_ZNK9oceanbase7storage15ObTableReadInfo11get_columnsEv _ZN9oceanbase7storage20ObRow2ExprsProjector4initERKNS_6common8ObIArrayIPNS_3sql6ObExprEEERNS4_18ObPushdownOperatorERKNS3_IiEE +_ZNK9oceanbase7storage15ObTableReadInfo11get_columnsEv _ZNK9oceanbase7storage16ObTableIterParam8is_validEv _ZNK9oceanbase7storage15ObTableReadInfo8is_validEv _ZN9oceanbase7storage8ObNopPos4initERNS_6common12ObIAllocatorEl @@ -640,234 +679,156 @@ _ZN9oceanbase7storage8ObTablet15get_read_tablesElRNS0_21ObTabletTableIteratorEb _ZN9oceanbase7storage15ObMultipleMerge28prepare_tables_from_iteratorERNS0_20ObTableStoreIteratorEPKNS_6common10SampleInfoE _ZN9oceanbase7storage20ObTableStoreIterator13get_ith_tableElRPNS0_8ObITableE _ZN9oceanbase7storage8ObTablet20auto_get_read_tablesElRNS0_21ObTabletTableIteratorEb -_ZN9oceanbase7storage15ObBlockRowStore5reuseEv +_ZN9oceanbase6common15ObFIFOAllocator4initEPNS0_12ObIAllocatorElRKNS_3lib9ObMemAttrElll +_ZN9oceanbase7storage20ObTableAccessContext24build_lob_locator_helperERNS0_16ObTableScanParamERKNS0_10ObStoreCtxERKNS_6common14ObVersionRangeE +_ZNK9oceanbase8memtable15ObMvccAccessCtx15is_read_valid__Ev _ZZN9oceanbase7storage15ObMultipleMerge4initERNS0_18ObTableAccessParamERNS0_20ObTableAccessContextERNS0_15ObGetTableParamEENK5$_451clEPKc +_ZN9oceanbase7storage20ObTableAccessContext19init_scan_allocatorERNS0_16ObTableScanParamE +_ZN9oceanbase7storage8ObTablet34check_snapshot_readable_with_cacheEll +_ZN9oceanbase7storage8ObTablet16get_read_tables_ElRNS0_20ObTableStoreIteratorERNS0_19ObStorageMetaHandleEb +_ZNK9oceanbase7storage8ObITable20get_snapshot_versionEv +_ZNK9oceanbase7storage18ObTabletTableStore15get_read_tablesElRKNS0_8ObTabletERNS0_20ObTableStoreIteratorEb +_ZN9oceanbase7storage20ObTableStoreIterator9add_tableEPNS0_8ObITableE +_ZN9oceanbase7storage24ObStorageMetaValueHandle15set_cache_valueEPNS0_23ObStorageMetaCacheValueEPNS_6common12ObIAllocatorE +_ZN9oceanbase7storage19ObStorageMetaHandleD1Ev +_ZN9oceanbase7storage19ObStorageMetaHandleD2Ev +_ZNK9oceanbase7storage14ObSSTableArrayixEl +_ZN9oceanbase7storage18ObTabletTableStore12load_sstableERKNS0_14ObMetaDiskAddrEbRNS0_19ObStorageMetaHandleE +_ZN9oceanbase12blocksstable18ObMacroBlockHandleaSERKS1_ +_ZN9oceanbase7storage19ObStorageMetaHandle11get_sstableERPNS_12blocksstable9ObSSTableE +_ZN9oceanbase7storage18ObStorageMetaCache8get_metaENS0_18ObStorageMetaValue8MetaTypeERKNS0_16ObStorageMetaKeyERNS0_19ObStorageMetaHandleEPKNS0_8ObTabletE _ZN9oceanbase7storage13ObSingleMerge4openERKNS_12blocksstable13ObDatumRowkeyE +_ZN9oceanbase7storage16ObTableScanRange12init_rowkeysERKNS_6common8ObIArrayINS2_10ObNewRangeEEERKNS2_11ObQueryFlagEPKNS_12blocksstable19ObStorageDatumUtilsE +_ZN9oceanbase7storage15ObBlockRowStore5reuseEv _ZN9oceanbase7storage19ObTableScanIterator14init_scan_iterINS0_19ObMultipleScanMergeEEEiRPT_ _ZN9oceanbase7storage19ObMultipleScanMerge4initERNS0_18ObTableAccessParamERNS0_20ObTableAccessContextERNS0_15ObGetTableParamE +_ZZN9oceanbase7storage15ObAccessService25audit_tablet_opt_dml_statERKNS0_14ObDMLBaseParamERKNS_6common10ObTabletIDENS5_16ObOptDmlStatTypeElENK5$_139clEPKc.llvm.10086270093651036312 +_ZN9oceanbase6common13ObSEArrayImplINS_7storage19ObStorageMetaHandleELl1ENS0_19ModulePageAllocatorELb0EE7reserveEl _ZNK9oceanbase3sql12ObQueryRange21gen_simple_scan_rangeERNS_6common12ObIAllocatorERNS0_13ObExecContextERNS2_9ObSEArrayIPNS2_10ObNewRangeELl1ENS2_19ModulePageAllocatorELb0EEERbRKNS2_20ObDataTypeCastParamsE -_ZZN9oceanbase7storage15ObAccessService25audit_tablet_opt_dml_statERKNS0_14ObDMLBaseParamERKNS_6common10ObTabletIDENS5_16ObOptDmlStatTypeElENK5$_139clEPKc.llvm.4309708746237092133 _ZN9oceanbase3sql12ObQueryRange13ObSearchState18tailor_final_rangeEl -_ZN9oceanbase7storage15ObAccessService19check_read_allowed_ERKNS_5share6ObLSIDERKNS_6common10ObTabletIDENS0_17ObStoreAccessTypeERKNS0_16ObTableScanParamERNS0_14ObTabletHandleERNS1_15ObStoreCtxGuardENS2_3SCNE -_ZN9oceanbase7storage15ObAccessService15ObStoreCtxGuard4initERKNS_5share6ObLSIDE -_ZN9oceanbase7storage10ObStoreCtx5resetEv -_ZNK9oceanbase7storage13ObLSTxService18get_read_store_ctxERKNS_11transaction16ObTxReadSnapshotEblRNS0_10ObStoreCtxE -_ZTWN9oceanbase6common7ObLatch13current_locksE -_ZZN9oceanbase11transaction14ObTransService19update_max_read_ts_EmRKNS_5share6ObLSIDENS2_3SCNEENK6$_1478clEPKc -_ZN9oceanbase6common8TCRWLock10RLockGuardC2ERS1_ -_ZZN9oceanbase11transaction14ObTransService23check_replica_readable_ERKNS0_16ObTxReadSnapshotEbNS2_3SRCERKNS_5share6ObLSIDElRKNS_6common10ObTabletIDERNS_7storage4ObLSEENK6$_1322clEPKc -_ZZN9oceanbase11transaction14ObTransService18get_read_store_ctxERKNS0_16ObTxReadSnapshotEblRNS_7storage10ObStoreCtxEENK6$_1285clEPKc -_ZN9oceanbase11transaction14ObTransService18get_read_store_ctxERKNS0_16ObTxReadSnapshotEblRNS_7storage10ObStoreCtxE -_ZN9oceanbase7storage15ObAccessService36construct_store_ctx_other_variables_ERNS0_4ObLSERKNS_6common10ObTabletIDElRKNS_5share3SCNERNS0_14ObTabletHandleERNS1_15ObStoreCtxGuardE -_ZN9oceanbase7storage17ObLSTabletService23get_tablet_with_timeoutERKNS_6common10ObTabletIDERNS0_14ObTabletHandleElNS0_18ObMDSGetTabletModeERKNS_5share3SCNE -_ZZN9oceanbase11transaction14ObTxVersionMgr18update_max_read_tsERKNS_5share3SCNEENKUlPKcE_clES7_ _ZN9oceanbase3sql13ObTableScanOp30cherry_pick_range_by_tablet_idEPNS0_11ObDASScanOpE -_ZN9oceanbase3sql12ObQueryRange13ObSearchStateD2Ev _ZNK9oceanbase3sql12ObQueryRange20get_single_key_valueEPKNS0_9ObKeyPartERNS0_13ObExecContextERNS1_13ObSearchStateERKNS_6common20ObDataTypeCastParamsEl _ZNK9oceanbase6common14ObTimeZoneInfo19get_timezone_offsetElRi -_ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE11ELS3_26EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE -_ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE0ELS3_26EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE _ZN9oceanbase6common13ObObjCmpFuncs16compare_nullsafeERKNS0_5ObObjES4_NS0_15ObCollationTypeE +_ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE11ELS3_26EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE _ZN9oceanbase6common11ObObjCaster7to_typeERKNS0_12ObExpectTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS7_RPS8_ _ZN9oceanbase3sql20ObExprResultTypeUtil23get_relational_cmp_typeERNS_6common9ObObjTypeERKS3_S6_ _ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE26ELS3_11EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE _ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE26ELS3_0EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE +_ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE0ELS3_26EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE _ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE11ELS3_11EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE -_ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE0ELS3_11EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE _ZN9oceanbase6common11ObObjCaster7to_typeENS0_9ObObjTypeENS0_15ObCollationTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS6_ _ZN9oceanbase3sql24ObRelationalExprOperator16compare_nullsafeERlRKNS_6common5ObObjES6_RNS3_15ObObjCastParamsENS3_9ObObjTypeENS3_15ObCollationTypeE _ZN9oceanbase6common13ObObjCmpFuncs7compareERNS0_5ObObjERKS2_S5_RKNS0_12ObCompareCtxENS0_7ObCmpOpERb +_ZZNK9oceanbase3sql12ObQueryRange21gen_simple_scan_rangeERNS_6common12ObIAllocatorERNS0_13ObExecContextERNS2_9ObSEArrayIPNS2_10ObNewRangeELl1ENS2_19ModulePageAllocatorELb0EEERbRKNS2_20ObDataTypeCastParamsEENK6$_1394clEPKc +_ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE0ELS3_11EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE +_ZN9oceanbase3sql12ObQueryRange13ObSearchStateD2Ev +_ZN9oceanbase7storage15ObAccessService19check_read_allowed_ERKNS_5share6ObLSIDERKNS_6common10ObTabletIDENS0_17ObStoreAccessTypeERKNS0_16ObTableScanParamERNS0_14ObTabletHandleERNS1_15ObStoreCtxGuardENS2_3SCNE +_ZN9oceanbase7storage15ObAccessService15ObStoreCtxGuard4initERKNS_5share6ObLSIDE +_ZN9oceanbase7storage10ObStoreCtx5resetEv +_ZNK9oceanbase7storage13ObLSTxService18get_read_store_ctxERKNS_11transaction16ObTxReadSnapshotEblRNS0_10ObStoreCtxE +_ZN9oceanbase6common8TCRWLock10RLockGuardC2ERS1_ +_ZTWN9oceanbase6common7ObLatch13current_locksE +_ZZN9oceanbase7storage15ObAccessService19check_read_allowed_ERKNS_5share6ObLSIDERKNS_6common10ObTabletIDENS0_17ObStoreAccessTypeERKNS0_16ObTableScanParamERNS0_14ObTabletHandleERNS1_15ObStoreCtxGuardENS2_3SCNEENK4$_50clEPKc +_ZN9oceanbase11transaction14ObTransService18get_read_store_ctxERKNS0_16ObTxReadSnapshotEblRNS_7storage10ObStoreCtxE +_ZZN9oceanbase11transaction14ObTransService19update_max_read_ts_EmRKNS_5share6ObLSIDENS2_3SCNEENK6$_1478clEPKc +_ZZN9oceanbase11transaction14ObTransService18get_read_store_ctxERKNS0_16ObTxReadSnapshotEblRNS_7storage10ObStoreCtxEENK6$_1285clEPKc +_ZZN9oceanbase11transaction14ObTransService23check_replica_readable_ERKNS0_16ObTxReadSnapshotEbNS2_3SRCERKNS_5share6ObLSIDElRKNS_6common10ObTabletIDERNS_7storage4ObLSEENK6$_1322clEPKc +_ZN9oceanbase7storage15ObAccessService36construct_store_ctx_other_variables_ERNS0_4ObLSERKNS_6common10ObTabletIDElRKNS_5share3SCNERNS0_14ObTabletHandleERNS1_15ObStoreCtxGuardE +_ZN9oceanbase7storage17ObLSTabletService23get_tablet_with_timeoutERKNS_6common10ObTabletIDERNS0_14ObTabletHandleElNS0_18ObMDSGetTabletModeERKNS_5share3SCNE +_ZZN9oceanbase11transaction14ObTxVersionMgr18update_max_read_tsERKNS_5share3SCNEENKUlPKcE_clES7_ _ZN9oceanbase7storage16ObTableScanRange11init_rangesERKNS_6common8ObIArrayINS2_10ObNewRangeEEERKNS2_11ObQueryFlagEPKNS_12blocksstable19ObStorageDatumUtilsE -_ZN9oceanbase7storage17ObAggregatedStore5reuseEv -_ZZNK9oceanbase3sql12ObQueryRange21gen_simple_scan_rangeERNS_6common12ObIAllocatorERNS0_13ObExecContextERNS2_9ObSEArrayIPNS2_10ObNewRangeELl1ENS2_19ModulePageAllocatorELb0EEERbRKNS2_20ObDataTypeCastParamsEENK6$_1380clEPKc _ZN9oceanbase7storage19ObMultipleScanMerge4openERKNS_12blocksstable12ObDatumRangeE _ZNK9oceanbase7storage18ObSimpleRowsMergerINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpEE9is_initedEv +_ZNK9oceanbase6common11ObLoserTreeINS_7storage24ObScanMergeLoserTreeItemENS2_23ObScanMergeLoserTreeCmpELl80EE9is_initedEv _ZN9oceanbase7storage15ObBlockRowStore4openERKNS0_16ObTableIterParamE _ZN9oceanbase7storage19ObMultipleScanMerge15construct_itersEv _ZNK9oceanbase7storage18ObSimpleRowsMergerINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpEE5emptyEv _ZN9oceanbase12blocksstable9ObSSTable4scanERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS0_12ObDatumRangeERPNS2_18ObStoreRowIteratorE -_ZN9oceanbase7storage18ObSimpleRowsMergerINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpEE3topERPKS2_ -_ZN9oceanbase7storage19ObMultipleScanMerge23locate_blockscan_borderEv -_ZN9oceanbase7storage18ObSimpleRowsMergerINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpEE4pushERKS2_ +_ZNK9oceanbase7storage16ObMergeLoserTreeINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpELl80EE5emptyEv _ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE17init_tree_handlesEl _ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE22ObIndexTreeLevelHandleC2Ev -_ZN9oceanbase7storage23ObScanMergeLoserTreeCmp3cmpERKNS0_24ObScanMergeLoserTreeItemES4_Rl -_ZN9oceanbase7storage31ObSSTableMultiVersionRowScanner18inner_get_next_rowERPKNS_12blocksstable10ObDatumRowE _ZN9oceanbase7storage19ObSSTableRowScannerINS0_30ObIndexTreeMultiPassPrefetcherILi32ELi3EEEE10inner_openERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextEPNS0_8ObITableEPKv _ZN9oceanbase12blocksstable22ObIndexBlockRowScanner4initERKNS_6common8ObIArrayIiEERKNS3_INS_5share6schema16ObColumnSchemaV2EEERKNS0_19ObStorageDatumUtilsERNS2_12ObIAllocatorERKNS2_11ObQueryFlagElb _ZNK9oceanbase7storage9ObAggCell16need_access_dataEv +_ZN9oceanbase7storage19ObMultipleScanMerge23locate_blockscan_borderEv +_ZN9oceanbase7storage31ObSSTableMultiVersionRowScanner18inner_get_next_rowERPKNS_12blocksstable10ObDatumRowE +_ZN9oceanbase7storage18ObSimpleRowsMergerINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpEE4pushERKS2_ +_ZN9oceanbase7storage18ObSimpleRowsMergerINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpEE3topERPKS2_ _ZN9oceanbase7storage23ObReallocatedFixedArrayINS0_19ObSSTableReadHandleEE18prepare_reallocateEl _ZN9oceanbase6common16ObFixedArrayImplINS_7storage19ObSSTableReadHandleENS0_12ObIAllocatorEE16prepare_allocateEl -_ZN9oceanbase7storage19ObSSTableRowScannerINS0_30ObIndexTreeMultiPassPrefetcherILi32ELi3EEEE25refresh_blockscan_checkerERKNS_12blocksstable13ObDatumRowkeyE +_ZN9oceanbase7storage23ObScanMergeLoserTreeCmp3cmpERKNS0_24ObScanMergeLoserTreeItemES4_Rl _ZZN9oceanbase7storage19ObMultipleScanMerge15construct_itersEvENK5$_628clEPKc +_ZN9oceanbase7storage19ObSSTableRowScannerINS0_30ObIndexTreeMultiPassPrefetcherILi32ELi3EEEE25refresh_blockscan_checkerERKNS_12blocksstable13ObDatumRowkeyE _ZN9oceanbase8memtable10ObMemtable4scanERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS_12blocksstable12ObDatumRangeERPNS2_18ObStoreRowIteratorE +_ZZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE25refresh_blockscan_checkerElRKNS_12blocksstable13ObDatumRowkeyEENKUlPKcE5_clES8_ _ZN9oceanbase7storage31ObSSTableMultiVersionRowScanner10inner_openERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextEPNS0_8ObITableEPKv _ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE14check_row_lockERKNS_12blocksstable16ObMicroIndexInfoERb +_ZN9oceanbase7storage16ObMergeLoserTreeINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpELl80EE4pushERKS2_ _ZN9oceanbase3sql16AllocDASOpHelperILi4EE5allocERNS_6common12ObIAllocatorERPNS0_12ObIDASTaskOpE _ZNK9oceanbase3sql12ObQueryRange21generate_single_rangeERNS1_13ObSearchStateElRPNS_6common10ObNewRangeERb _ZN9oceanbase3sql16AllocDASOpHelperILi2EE5allocERNS_6common12ObIAllocatorERPNS0_12ObIDASTaskOpE -_ZN9oceanbase3sql12ObIDASTaskOp14start_das_taskEv -_ZN9oceanbase11transaction16ObTxReadSnapshotD1Ev +_ZN9oceanbase6common11ObLoserTreeINS_7storage24ObScanMergeLoserTreeItemENS2_23ObScanMergeLoserTreeCmpELl80EE4pushERKS3_ _ZN9oceanbase7storage13ObVectorStore4initERKNS0_18ObTableAccessParamE _ZN9oceanbase7storage22ObBlockBatchedRowStore4initERKNS0_18ObTableAccessParamE _ZN9oceanbase3sql18PushdownFilterInfo4initERKNS_7storage16ObTableIterParamERNS_6common12ObIAllocatorE _ZN9oceanbase7storage17ObAggregatedStore4initERKNS0_18ObTableAccessParamE -_ZZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE25refresh_blockscan_checkerElRKNS_12blocksstable13ObDatumRowkeyEENKUlPKcE5_clES8_ -_ZN9oceanbase6common13ObSEArrayImplINS_11transaction6ObPairINS_5share6ObLSIDElEELl1ENS0_19ModulePageAllocatorELb0EED2Ev -_ZN9oceanbase3sql13ObDASDeleteOp7open_opEv -_ZN9oceanbase3sql20ObDASIndexDMLAdaptorILi4ENS0_16ObDASDMLIteratorEE10write_rowsERKNS_5share6ObLSIDERKNS_6common10ObTabletIDERKNS0_13ObDASDelCtDefERNS0_13ObDASDelRtDefERS2_Rl -_ZN9oceanbase7storage15ObAccessService11delete_rowsERKNS_5share6ObLSIDERKNS_6common10ObTabletIDERNS_11transaction8ObTxDescERKNS0_14ObDMLBaseParamERKNS6_8ObIArrayImEEPNS6_16ObNewRowIteratorERl -_ZN9oceanbase7storage15ObAccessService20check_write_allowed_ERKNS_5share6ObLSIDERKNS_6common10ObTabletIDENS0_17ObStoreAccessTypeERKNS0_14ObDMLBaseParamERNS_11transaction8ObTxDescERNS0_14ObTabletHandleERNS1_15ObStoreCtxGuardE -_ZN9oceanbase7storage8ObITable7dec_refEv -_ZN9oceanbase7storage15ObAccessService26get_write_store_ctx_guard_ERKNS_5share6ObLSIDElRNS_11transaction8ObTxDescERKNS6_16ObTxReadSnapshotENS_18concurrent_control11ObWriteFlagERNS1_15ObStoreCtxGuardERKNS6_7ObTxSEQE -_ZNK9oceanbase7storage13ObLSTxService10get_tx_ctxERKNS_11transaction9ObTransIDEbRPNS2_14ObPartTransCtxE -__dynamic_cast -_ZN9oceanbase11transaction9tablelock11get_lock_idERKNS_6common10ObTabletIDERNS1_8ObLockIDE -_ZN9oceanbase11transaction14ObPartTransCtx13check_status_Ev -_ZN9oceanbase11transaction14ObTransService19get_write_store_ctxERNS0_8ObTxDescERKNS0_16ObTxReadSnapshotENS_18concurrent_control11ObWriteFlagERNS_7storage10ObStoreCtxERKNS0_7ObTxSEQEb -_ZN9oceanbase11transaction12CtxLockGuardD1Ev -_ZN9oceanbase11transaction12CtxLockGuardD2Ev -_ZN9oceanbase11transaction12ObLSTxCtxMgr10get_tx_ctxERKNS0_9ObTransIDEbRPNS0_14ObPartTransCtxE -_ZN9oceanbase11transaction7CtxLock4lockEv -_ZZN9oceanbase11transaction14ObTransService11get_tx_ctx_ERKNS_5share6ObLSIDEPNS_7storage4ObLSERKNS0_9ObTransIDERPNS0_14ObPartTransCtxEENK6$_1300clEPKc -_ZZN9oceanbase11transaction14ObTransService14acquire_tx_ctxERKNS_5share6ObLSIDERKNS0_8ObTxDescERPNS0_14ObPartTransCtxEPNS_7storage4ObLSEbENK6$_1299clEPKc -_ZNK9oceanbase11transaction8ObTxDesc13get_expire_tsEv -_ZN9oceanbase11transaction9tablelock11ObLockTable4lockERNS_7storage10ObStoreCtxERKNS1_11ObLockParamE -_ZN9oceanbase6common8ObBitSetILl16ENS0_19ModulePageAllocatorELb0EED2Ev -_ZN9oceanbase7storage15ObTableHandleV25resetEv -_ZN9oceanbase6common7ObLatch10try_wrlockEjPKj -_ZNK9oceanbase11transaction9tablelock12ObLockMemCtx16check_lock_existERKNS1_8ObLockIDERKNS_5share10ObCommonIDEhNS1_17ObTableLockOpTypeERbRh -_ZN9oceanbase7storage15ObAccessService25audit_tablet_opt_dml_statERKNS0_14ObDMLBaseParamERKNS_6common10ObTabletIDENS5_16ObOptDmlStatTypeEl -_ZZN9oceanbase11transaction14ObTransService19get_write_store_ctxERNS0_8ObTxDescERKNS0_16ObTxReadSnapshotENS_18concurrent_control11ObWriteFlagERNS_7storage10ObStoreCtxERKNS0_7ObTxSEQEbENK6$_1295clEPKc -_ZN9oceanbase11transaction14ObTransService23handle_tx_commit_resultERKNS0_9ObTransIDEiNS_5share3SCNE -_ZN9oceanbase11transaction11ObTxDescMgr6revertERNS0_8ObTxDescE -_ZN9oceanbase8memtable18ObTransCallbackMgr21acquire_callback_listEv -_ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocENS_6common10SpinRWLockELl65536EE3getERKS2_RPS3_ -_ZN9oceanbase11transaction9tablelock12ObOBJLockMap4lockERKNS1_11ObLockParamERNS_7storage10ObStoreCtxERKNS1_13ObTableLockOpERKhRNS_6common4hash19ObIteratableHashSetINS0_9ObTransIDELm16EEE -_ZN9oceanbase8memtable13ObMemtableCtx15add_lock_recordERKNS_11transaction9tablelock13ObTableLockOpE -_ZN9oceanbase11transaction9tablelock12ObLockMemCtx15add_lock_recordERKNS1_13ObTableLockOpERPNS1_22ObMemCtxLockOpLinkNodeEb -_ZN9oceanbase8memtable10ObIMvccCtx23register_table_lock_cb_EPNS_11transaction9tablelock14ObLockMemtableEPNS3_22ObMemCtxLockOpLinkNodeERPNS3_17ObOBJLockCallbackE -_ZN9oceanbase8memtable13ObMemtableCtx25alloc_table_lock_callbackERNS0_10ObIMvccCtxEPNS_11transaction9tablelock14ObLockMemtableE -_ZN9oceanbase11transaction9tablelock12ObLockMemCtx22alloc_lock_op_callbackEv -_ZN9oceanbase8memtable24ObMemtableCtxCbAllocator5allocEl -_ZN9oceanbase6common15ObFIFOAllocator5allocEl -_ZN9oceanbase6common23ObOptStatMonitorManager18update_local_cacheERNS0_12ObOptDmlStatE -_ZN9oceanbase6common4hash11ObHashTableISt4pairImmENS1_11HashMapPairIS4_NS0_12ObOptDmlStatEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi64ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKS4_RS7_l -_ZN9oceanbase6common4hash11ObHashTableISt4pairImmENS1_11HashMapPairIS4_NS0_12ObOptDmlStatEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi64ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE6atomicINS0_23ObOptStatMonitorManager19UpdateValueAtomicOpENS1_8pre_procIS7_EEEEiRKS4_RT_RT0_ -_ZN9oceanbase6common11ObTimeGuardD2Ev -_ZN9oceanbase11transaction9tablelock12ObOBJLockMap32get_or_create_obj_lock_with_ref_ERKNS1_8ObLockIDERPNS1_9ObOBJLockE -_ZN9oceanbase8memtable13ObMemtableCtx19elr_trans_preparingEv -_ZNK9oceanbase6common10ObFunctionIFiPNS_8memtable16ObITransCallbackEEE7DerivedIZNS2_16ObTxCallbackList16tx_elr_preparingEvE5$_241E4copyERNS0_12ObIAllocatorEPv$8b4bcdecdd0d8f749c37b62d8328b37c -_ZN9oceanbase7storage17ObLSTabletService11delete_rowsERNS0_14ObTabletHandleERNS0_10ObStoreCtxERKNS0_14ObDMLBaseParamERKNS_6common8ObIArrayImEEPNS9_16ObNewRowIteratorERl -_ZN9oceanbase5share6schema19ObSchemaGetterGuardD1Ev -_ZN9oceanbase5share6schema19ObSchemaGetterGuardD2Ev -_ZN9oceanbase6common13ObSEArrayImplINS_5share6schema9SchemaObjELl2ENS0_19ModulePageAllocatorELb0EED2Ev -_ZZN9oceanbase11transaction14ObPartTransCtx12start_accessERKNS0_8ObTxDescERNS0_7ObTxSEQEENK5$_795clEPKc -_ZN9oceanbase6common11ObArrayImplINS_11transaction16ObTransIDAndAddrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev -_ZN9oceanbase11transaction8ObTxDesc17execute_commit_cbEv -_ZN9oceanbase6common12ObLatchMutex8try_lockEjPKj -_ZN9oceanbase3sql23ObEndTransAsyncCallback8callbackEi -_ZN9oceanbase8observer15ObSqlEndTransCb8callbackEi -_ZN9oceanbase3sql17ObSqlTransControl22reset_session_tx_stateEPNS0_16ObSQLSessionInfoEbb -_ZThn8_N9oceanbase3sql16ObSQLSessionInfo17reset_tx_variableEb -_ZN9oceanbase7obmysql23ObPocSqlRequestOperator25alloc_sql_response_bufferEPNS_3rpc9ObRequestEl -_ZN9oceanbase3sql17ObSqlTransControl22reset_session_tx_stateEPNS0_18ObBasicSessionInfoEbb -_ZN9oceanbase3lib11ObLockGuardINS_6common16ObRecursiveMutexEED2Ev -_ZN9oceanbase5share19ObTenantSwitchGuard9switch_toEmb -_ZN9oceanbase11transaction14ObTransService8reuse_txERNS0_8ObTxDescE -_ZN9oceanbase6common12ObLatchMutex6unlockEv -_ZN9oceanbase11transaction11ObTxDescMgr6removeERNS0_8ObTxDescE -_ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocENS_6common10SpinRWLockELl65536EE3delERKS2_PS3_ -_ZZN9oceanbase11transaction11ObTxDescMgr6removeERNS0_8ObTxDescEENK6$_1137clEPKc.llvm.15462746491421382466 -_ZN9oceanbase11transaction14ObTransService14create_tx_ctx_ERKNS_5share6ObLSIDEPNS_7storage4ObLSERKNS0_8ObTxDescERPNS0_14ObPartTransCtxEb -_ZZN9oceanbase11transaction14ObTransService14create_tx_ctx_ERKNS_5share6ObLSIDEPNS_7storage4ObLSERKNS0_8ObTxDescERPNS0_14ObPartTransCtxEbENK6$_1303clEPKc -_ZZN9oceanbase3sql20ObDASIndexDMLAdaptorILi3ENS0_16ObDASUpdIteratorEE12write_tabletERS2_RlENKUlPKcE_clES7_ -_ZN9oceanbase3sql13ObDASInsertOp7open_opEv -_ZN9oceanbase3sql20ObDASIndexDMLAdaptorILi2ENS0_16ObDASDMLIteratorEE10write_rowsERKNS_5share6ObLSIDERKNS_6common10ObTabletIDERKNS0_13ObDASInsCtDefERNS0_13ObDASInsRtDefERS2_Rl -_ZN9oceanbase7storage15ObAccessService11insert_rowsERKNS_5share6ObLSIDERKNS_6common10ObTabletIDERNS_11transaction8ObTxDescERKNS0_14ObDMLBaseParamERKNS6_8ObIArrayImEEPNS6_16ObNewRowIteratorERl -_ZN9oceanbase7storage14ObTabletHandleaSERKS1_ -_ZN9oceanbase6common2SVINS_7storage10ObRowsInfoELb0EEC2IZNS2_17ObLSTabletService11insert_rowsERNS2_14ObTabletHandleERNS2_10ObStoreCtxERKNS2_14ObDMLBaseParamERKNS0_8ObIArrayImEEPNS0_16ObNewRowIteratorERlE6$_1179EEibOT_ -_ZN9oceanbase6common2SVINS_7storage10ObRowsInfoELb0EED2Ev -_ZN9oceanbase6common15check_from_heapEiRb -_ZN9oceanbase7storage10ObRowsInfoD1Ev -_ZN9oceanbase6common23ObReserveArenaAllocatorILl1024EED2Ev -_ZN9oceanbase7storage20ObTableAccessContextD1Ev -_ZN9oceanbase7storage20ObTableAccessContextD2Ev -_ZN9oceanbase3sql16ObDASDMLIterator13get_next_rowsERPNS_6common8ObNewRowERl -_ZN9oceanbase3sql16ObDASDMLIterator12get_next_rowERPNS_6common8ObNewRowE -_ZZN9oceanbase3sql16ObDASDMLIterator12get_next_rowERPNS_6common8ObNewRowEENK5$_124clEPKc +_ZN9oceanbase7storage17ObAggregatedStore5reuseEv +_ZN9oceanbase7storage16ObMergeLoserTreeINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpELl80EE3topERPKS2_ _ZN9oceanbase3sql13ObDASUpdateOp7open_opEv -_ZN9oceanbase6common13ObTimeUtility15current_time_nsEv -_ZN9oceanbase7storage10ObStoreCtxC2Ev _ZN9oceanbase3sql12ObDMLService14init_dml_paramERKNS0_17ObDASDMLBaseCtDefERNS0_17ObDASDMLBaseRtDefERNS_11transaction16ObTxReadSnapshotERNS_6common12ObIAllocatorERNS_7storage14ObDMLBaseParamE -_ZN9oceanbase6common11ObTimeGuard5clickEPKc _ZN9oceanbase7storage15ObAccessService15ObStoreCtxGuardD2Ev _ZNK9oceanbase7storage13ObLSTxService13revert_tx_ctxEPNS_11transaction10ObTransCtxE -_ZN9oceanbase11transaction12ObLSTxCtxMgr13revert_tx_ctxEPNS0_10ObTransCtxE _ZN9oceanbase11transaction14ObTransService16revert_store_ctxERNS_7storage10ObStoreCtxE +_ZN9oceanbase11transaction12ObLSTxCtxMgr26revert_tx_ctx_without_lockEPNS0_10ObTransCtxE _ZZN9oceanbase11transaction14ObTransService16revert_store_ctxERNS_7storage10ObStoreCtxEENK6$_1312clEPKc -_ZN9oceanbase6common11ObArrayImplINS_11transaction16ObTransIDAndAddrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEED2Ev _ZN9oceanbase11transaction8ObTxDesc12update_part_ERNS0_8ObTxPartEb +_ZN9oceanbase6common11ObArrayImplINS_11transaction16ObTransIDAndAddrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEED2Ev _ZZN9oceanbase11transaction14ObTransService14revert_tx_ctx_EPNS_7storage4ObLSEPNS0_14ObPartTransCtxEENK6$_1301clEPKc -_ZZN9oceanbase11transaction14ObTransService41fetch_cflict_tx_ids_from_mem_ctx_to_desc_ERNS_8memtable15ObMvccAccessCtxEENK6$_1307clEPKc +_ZN9oceanbase6common11ObTimeGuard5clickEPKc +_ZN9oceanbase11transaction17ObTransCtxFactory7releaseEPNS0_10ObTransCtxE _ZN9oceanbase8memtable13ObMemtableCtx22get_conflict_trans_idsERNS_6common8ObIArrayINS_11transaction16ObTransIDAndAddrEEE +_ZZN9oceanbase11transaction14ObTransService41fetch_cflict_tx_ids_from_mem_ctx_to_desc_ERNS_8memtable15ObMvccAccessCtxEENK6$_1307clEPKc _ZN9oceanbase7storage17ObLSTabletService11update_rowsERNS0_14ObTabletHandleERNS0_10ObStoreCtxERKNS0_14ObDMLBaseParamERKNS_6common8ObIArrayImEESD_PNS9_16ObNewRowIteratorERl -_ZN9oceanbase7storage20ObTableStoreIteratorC1Ebb +_ZN9oceanbase7storage15ObDMLRunningCtxC1ERNS0_10ObStoreCtxERKNS0_14ObDMLBaseParamERNS_6common12ObIAllocatorES9_NS_12blocksstable9ObDmlFlagE _ZN9oceanbase6common13ObSEArrayImplIlLl8ENS0_19ModulePageAllocatorELb0EED2Ev +_ZN9oceanbase7storage20ObTableStoreIteratorC1Ebb _ZN9oceanbase8memtable16ObQueryAllocator5allocEl _ZN9oceanbase5share6schema19ObSchemaGetterGuardC1ENS1_15ObSchemaMgrItem3ModE _ZNK9oceanbase8memtable15ObMvccAccessCtx8is_validEv -_ZN9oceanbase7storage17ObLSTabletService22get_next_row_from_iterEPNS_6common16ObNewRowIteratorERNS0_10ObStoreRowEb _ZN9oceanbase7storage15ObDMLRunningCtx4initEPKNS_6common8ObIArrayImEES6_PNS_5share6schema27ObMultiVersionSchemaServiceERNS0_14ObTabletHandleE -_ZN9oceanbase7storage8ObTablet16get_read_tables_ElRNS0_20ObTableStoreIteratorERNS0_19ObStorageMetaHandleEb -_ZNK9oceanbase7storage8ObITable20get_snapshot_versionEv -_ZNK9oceanbase7storage14ObSSTableArrayixEl -_ZNK9oceanbase7storage18ObTabletTableStore15get_read_tablesElRKNS0_8ObTabletERNS0_20ObTableStoreIteratorEb -_ZN9oceanbase7storage20ObTableStoreIterator9add_tableEPNS0_8ObITableE -_ZN9oceanbase7storage24ObStorageMetaValueHandle15set_cache_valueEPNS0_23ObStorageMetaCacheValueEPNS_6common12ObIAllocatorE -_ZN9oceanbase7storage19ObStorageMetaHandleD1Ev -_ZN9oceanbase7storage19ObStorageMetaHandleD2Ev -_ZN9oceanbase7storage18ObTabletTableStore12load_sstableERKNS0_14ObMetaDiskAddrEbRNS0_19ObStorageMetaHandleE -_ZN9oceanbase12blocksstable18ObMacroBlockHandleaSERKS1_ -_ZN9oceanbase7storage19ObStorageMetaHandle11get_sstableERPNS_12blocksstable9ObSSTableE -_ZN9oceanbase7storage18ObStorageMetaCache8get_metaENS0_18ObStorageMetaValue8MetaTypeERKNS0_16ObStorageMetaKeyERNS0_19ObStorageMetaHandleEPKNS0_8ObTabletE -_ZNK9oceanbase7storage15ObRelativeTable19is_rowkey_column_idEmRb -_ZNK9oceanbase5share6schema9ColumnMap3getEmRi -_ZN9oceanbase7storage17ObLSTabletService20construct_update_idxElPKNS_5share6schema9ColumnMapERKNS_6common8ObIArrayImEERNS7_9ObSEArrayIlLl8ENS7_19ModulePageAllocatorELb0EEE _ZN9oceanbase7storage8ObTablet31check_schema_version_with_cacheEll -_ZN9oceanbase6common10ObRowStoreD1Ev +_ZN9oceanbase7storage17ObLSTabletService22get_next_row_from_iterEPNS_6common16ObNewRowIteratorERNS0_10ObStoreRowEb +_ZN9oceanbase7storage17ObLSTabletService20construct_update_idxElPKNS_5share6schema9ColumnMapERKNS_6common8ObIArrayImEERNS7_9ObSEArrayIlLl8ENS7_19ModulePageAllocatorELb0EEE _ZN9oceanbase7storage17ObLSTabletService15process_new_rowERNS0_14ObTabletHandleERNS0_15ObDMLRunningCtxERKNS_6common8ObIArrayIlEERKNS0_10ObStoreRowESD_b -_ZN9oceanbase5share14ObThrottleStat8need_logEb _ZN9oceanbase7storage16ObTableIterParamD1Ev _ZN9oceanbase7storage16ObTableIterParamD2Ev _ZN9oceanbase7storage8ObTablet10update_rowERNS0_15ObRelativeTableERNS0_10ObStoreCtxERKNS_6common8ObIArrayINS_5share6schema9ObColDescEEERKNS7_IlEERKNS0_10ObStoreRowESJ_PKNS7_INS_11transaction18ObEncryptMetaCacheEEE _ZN9oceanbase8memtable10ObMemtable15get_freeze_flagEv -_ZNK9oceanbase8memtable10ObMemtable18is_active_memtableEv +_ZN9oceanbase5share14ObThrottleStat8need_logEb _ZN9oceanbase8memtable10ObMemtable3setERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS_6common8ObIArrayINS_5share6schema9ObColDescEEERKNS9_IlEERKNS2_10ObStoreRowESL_PKNSA_13ObEncryptMetaE -_ZNK9oceanbase7storage16ObReadInfoStruct23get_schema_rowkey_countEv -_ZZN9oceanbase8memtable13ObMemtableCtx10write_authEbENK5$_325clEPKc.llvm.6150484154564822904 _ZN9oceanbase8memtable10ObMemtable4set_ERKNS_7storage16ObTableIterParamERKNS_6common8ObIArrayINS_5share6schema9ObColDescEEERKNS2_10ObStoreRowEPSF_PKNS7_IlEERNS2_20ObTableAccessContextEPNS0_23ObMvccRowAndWriteResultEb _ZN9oceanbase12blocksstable11ObRowWriter5writeElRKNS_7storage10ObStoreRowEPKNS_6common8ObIArrayIlEERPcRl -_ZN9oceanbase8memtable13ObMemtableKey6encodeERKNS_6common8ObIArrayINS_5share6schema9ObColDescEEEPKNS2_13ObStoreRowkeyE _ZN9oceanbase8memtable10ObMemtable11mvcc_write_ERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextEPKNS0_13ObMemtableKeyERKNS0_11ObTxNodeArgERbPNS0_23ObMvccRowAndWriteResultEb _ZN9oceanbase8memtable12ObMvccEngine9ensure_kvEPKNS0_13ObMemtableKeyEPNS0_9ObMvccRowE _ZN9oceanbase6common13ObObjCmpFuncs7compareERKNS0_5ObObjES4_NS0_15ObCollationTypeERi _ZN9oceanbase12blocksstable19ObDatumRowkeyHelperD2Ev +_ZN9oceanbase8memtable13ObMemtableKey6encodeERKNS_6common8ObIArrayINS_5share6schema9ObColDescEEEPKNS2_13ObStoreRowkeyE _ZN9oceanbase8memtable10ObMemtable36lock_row_on_frozen_stores_on_successEbNS_12blocksstable9ObDmlFlagERKNS_5share3SCNERNS_7storage20ObTableAccessContextEPNS0_9ObMvccRowERNS0_17ObMvccWriteResultE -_ZN9oceanbase8memtable12ObMvccEngine10mvcc_writeERNS0_14ObIMemtableCtxENS_18concurrent_control11ObWriteFlagERKNS_11transaction12ObTxSnapshotERNS0_9ObMvccRowERKNS0_11ObTxNodeArgERNS0_17ObMvccWriteResultE -_ZN9oceanbase6common20ObGMemstoreAllocator11AllocHandle5allocEl _ZN9oceanbase12blocksstable11ObRowWriter15inner_write_rowElRKNS_7storage10ObStoreRowEPKNS_6common8ObIArrayIlEE +_ZN9oceanbase12blocksstable13ObDatumRowkey11from_rowkeyERKNS_6common8ObRowkeyERNS0_20ObStorageDatumBufferE _ZN9oceanbase12blocksstable11ObRowWriter18alloc_buf_and_initEb +_ZN9oceanbase8memtable12ObMvccEngine10mvcc_writeERNS0_14ObIMemtableCtxENS_18concurrent_control11ObWriteFlagERKNS_11transaction12ObTxSnapshotERNS0_9ObMvccRowERKNS0_11ObTxNodeArgERNS0_17ObMvccWriteResultE +_ZN9oceanbase6common20ObGMemstoreAllocator11AllocHandle5allocEl _ZN9oceanbase8memtable12ObMvccEngine14build_tx_node_ERNS0_14ObIMemtableCtxERKNS0_11ObTxNodeArgERPNS0_15ObMvccTransNodeE -_ZN9oceanbase12blocksstable13ObDatumRowkey11from_rowkeyERKNS_6common8ObRowkeyERNS0_20ObStorageDatumBufferE _ZN9oceanbase8memtable16ObMvccWriteGuard10write_authERNS_7storage10ObStoreCtxE -_ZN9oceanbase6common15ObLinearHashMapINS0_9ObIntWarpENS_11transaction9ObTransIDENS0_14ShareMemMgrTagEE16load_access_bkt_ERKS2_RmRPNS6_6BucketE _ZN9oceanbase12blocksstable9ObSSTable16check_row_lockedERKNS_7storage16ObTableIterParamERKNS0_13ObDatumRowkeyERNS2_20ObTableAccessContextERNS2_19ObStoreRowLockStateERNS2_10ObRowStateEb _ZN9oceanbase12blocksstable9ObSSTable15get_last_rowkeyERPKNS0_13ObDatumRowkeyE _ZN9oceanbase12blocksstable9ObSSTable19get_index_tree_rootERNS0_16ObMicroBlockDataEb -_ZN9oceanbase8memtable9ObMvccRow10mvcc_writeERNS0_14ObIMemtableCtxENS_18concurrent_control11ObWriteFlagERKNS_11transaction12ObTxSnapshotERNS0_15ObMvccTransNodeERNS0_17ObMvccWriteResultE +_ZN9oceanbase6common23ObReserveArenaAllocatorILl1024EE4freeEPv _ZN9oceanbase8memtable10ObIMvccCtx22register_row_commit_cbEPKNS0_13ObMemtableKeyEPNS0_9ObMvccRowEPNS0_15ObMvccTransNodeElPKNS0_9ObRowDataEPNS0_10ObMemtableENS_11transaction7ObTxSEQEl _ZN9oceanbase8memtable18ObTransCallbackMgr6appendEPNS0_16ObITransCallbackE +_ZN9oceanbase8memtable9ObMvccRow10mvcc_writeERNS0_14ObIMemtableCtxENS_18concurrent_control11ObWriteFlagERKNS_11transaction12ObTxSnapshotERNS0_15ObMvccTransNodeERNS0_17ObMvccWriteResultE _ZN9oceanbase8memtable10ObMemtable13need_for_saveEPKNS_5share13ObEncryptMetaE _ZN9oceanbase6common7ObLatch10try_rdlockEj _ZN9oceanbase8memtable12ObMvccEngine9create_kvEPKNS0_13ObMemtableKeyEPS2_RPNS0_9ObMvccRowERNS0_15RowHeaderGetterERb @@ -875,258 +836,395 @@ _ZN9oceanbase6common20ObGMemstoreAllocator5allocERNS1_11AllocHandleEl _ZN9oceanbase7storage15ObTenantFreezer20check_memstore_full_ERbRlS2_b _ZN9oceanbase6common12ObSliceAlloc5allocEv _ZN9oceanbase6common13ObBlockSlicer10alloc_itemEv +_ZN9oceanbase12blocksstable26ObMicroBlockRowLockCheckerD2Ev _ZN9oceanbase8memtable18ObTransCallbackMgr14callback_allocEl _ZN9oceanbase7storage19ObStorageTableGuard25refresh_and_protect_tableERNS0_15ObRelativeTableE _ZN9oceanbase8memtable10ObMemtable13inc_write_refEv _ZN9oceanbase8memtable10ObMemtable20get_is_tablet_freezeEv -_ZN9oceanbase8memtable16ObMvccWriteGuardD1Ev -_ZNK9oceanbase8memtable10ObMemtable18is_frozen_memtableEv -_ZN9oceanbase11transaction14ObPartTransCtx15submit_redo_logEb +_ZZN9oceanbase3sql16ObDASUpdIterator12get_next_rowERPNS_6common8ObNewRowEENK5$_544clEPKc _ZN9oceanbase7storage15ObRelativeTableD1Ev _ZN9oceanbase7storage15ObRelativeTableD2Ev -_ZN9oceanbase6common13ObObjCmpFuncs11cmp_op_funcILNS0_14ObObjTypeClassE1ELS3_1ELNS0_7ObCmpOpE5EEEiRKNS0_5ObObjES7_RKNS0_12ObCompareCtxE -_ZZN9oceanbase8memtable8ObMtHash6insertEPKNS0_20ObStoreRowkeyWrapperEPKNS0_9ObMvccRowEENKUlPKcE0_clES9_ -_ZN9oceanbase11transaction16ObTransStatistic22add_read_elr_row_countEml +_ZN9oceanbase7storage23ObSSTableRowLockCheckerD1Ev +_ZN9oceanbase7storage23ObSSTableRowLockCheckerD2Ev +_ZN9oceanbase6common10ObRowStoreD1Ev +_ZN9oceanbase7storage20ObTableAccessContext4initERKNS_6common11ObQueryFlagERNS0_10ObStoreCtxERNS2_12ObIAllocatorERKNS2_14ObVersionRangeE +_ZN9oceanbase8memtable16ObMvccWriteGuardD1Ev +_ZN9oceanbase11transaction14ObPartTransCtx15submit_redo_logEb _ZN9oceanbase7storage17ObLSTabletService19check_rowkey_changeERKNS_6common8ObIArrayImEERKNS0_15ObRelativeTableERbSA_ +_ZNK9oceanbase7storage15ObRelativeTable19is_rowkey_column_idEmRb +_ZNK9oceanbase5share6schema9ColumnMap3getEmRi +_ZZN9oceanbase8memtable8ObMtHash6insertEPKNS0_20ObStoreRowkeyWrapperEPKNS0_9ObMvccRowEENKUlPKcE0_clES9_ _ZN9oceanbase3sql16ObDASUpdIterator12get_next_rowERPNS_6common8ObNewRowE _ZN9oceanbase3sql10ObDASUtils19project_storage_rowERKNS0_17ObDASDMLBaseCtDefERKNS0_17ObChunkDatumStore9StoredRowERKNS_6common12ObFixedArrayIlNS9_12ObIAllocatorEEERSB_RNS9_8ObNewRowE +_ZN9oceanbase6common15ObLinearHashMapINS0_9ObIntWarpENS_11transaction9ObTransIDENS0_15UniqueMemMgrTagEE17load_factor_ctrl_Em _ZN9oceanbase8memtable16ObQueryAllocator4freeEPv _ZN9oceanbase7storage8ObTablet13rowkey_existsERNS0_15ObRelativeTableERNS0_10ObStoreCtxERKNS_6common8ObNewRowERb +_ZNK9oceanbase8memtable10ObMemtable18is_active_memtableEv +_ZNK9oceanbase8memtable10ObMemtable18is_frozen_memtableEv _ZN9oceanbase7storage18ObStoreRowIterator4initERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextEPNS0_8ObITableEPKv _ZN9oceanbase12blocksstable9ObSSTable5existERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS0_13ObDatumRowkeyERbSB_ _ZN9oceanbase7storage19ObSSTableRowExisterD2Ev -_ZN9oceanbase7storage21ObIndexTreePrefetcherC2Ev _ZN9oceanbase12blocksstable18ObMacroBlockReaderC1Ev _ZN9oceanbase12blocksstable18ObMacroBlockReaderC2Ev -_ZN9oceanbase7storage20ObTableAccessContext4initERKNS_6common11ObQueryFlagERNS0_10ObStoreCtxERNS2_12ObIAllocatorERKNS2_14ObVersionRangeE -_ZZN9oceanbase3sql16ObDASUpdIterator12get_next_rowERPNS_6common8ObNewRowEENK5$_544clEPKc -_ZN9oceanbase7storage21ObTabletTableIteratorD2Ev -_ZN9oceanbase3sql20ObDASIndexDMLAdaptorILi3ENS0_16ObDASUpdIteratorEE10write_rowsERKNS_5share6ObLSIDERKNS_6common10ObTabletIDERKNS0_13ObDASUpdCtDefERNS0_13ObDASUpdRtDefERS2_Rl -_ZN9oceanbase7storage20ObTableStoreIteratorD1Ev -_ZN9oceanbase7storage20ObTableStoreIteratorD2Ev +_ZN9oceanbase7storage21ObIndexTreePrefetcherC2Ev +_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi2ELi2EED2Ev +_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi2ELi2EE22ObIndexTreeLevelHandleD2Ev +_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi2ELi2EEC2Ev +_ZN9oceanbase6common18ObServerObjectPoolINS_11transaction14ObPartTransCtxEE13return_objectEPS3_ _ZN9oceanbase6common13ObObjCmpFuncs21compare_oper_nullsafeERKNS0_5ObObjES4_NS0_15ObCollationTypeENS0_7ObCmpOpE -_ZN9oceanbase12blocksstable23ObIMicroBlockRowFetcherD2Ev +_ZN9oceanbase11transaction16ObTransStatistic22add_read_elr_row_countEml _ZZN9oceanbase11transaction14ObPartTransCtx10end_accessEvENK5$_796clEPKc +_ZN9oceanbase6common13ObObjCmpFuncs11cmp_op_funcILNS0_14ObObjTypeClassE1ELS3_1ELNS0_7ObCmpOpE5EEEiRKNS0_5ObObjES7_RKNS0_12ObCompareCtxE +_ZN9oceanbase7storage23ObSSTableRowLockChecker10inner_openERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextEPNS0_8ObITableEPKv +_ZN9oceanbase7storage19ObSSTableRowScannerINS0_30ObIndexTreeMultiPassPrefetcherILi2ELi2EEEE10inner_openERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextEPNS0_8ObITableEPKv +_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi2ELi2EE15init_basic_infoEiRNS_12blocksstable9ObSSTableERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextEPKv +_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi2ELi2EE17init_tree_handlesEl +_ZN9oceanbase3sql20ObDASIndexDMLAdaptorILi3ENS0_16ObDASUpdIteratorEE10write_rowsERKNS_5share6ObLSIDERKNS_6common10ObTabletIDERKNS0_13ObDASUpdCtDefERNS0_13ObDASUpdRtDefERS2_Rl +_ZN9oceanbase6common11ObTimeGuardD2Ev +_ZN9oceanbase12blocksstable23ObIMicroBlockRowFetcherD2Ev _ZN9oceanbase7storage17ObLSTabletService23process_old_row_lob_colERNS0_14ObTabletHandleERNS0_15ObDMLRunningCtxERNS0_10ObStoreRowE _ZN9oceanbase8keybtree11WriteHandleINS_8memtable20ObStoreRowkeyWrapperEPNS2_9ObMvccRowEE11split_childEPNS0_9BtreeNodeIS3_S5_EEiS3_S5_S3_S5_RS9_SA_l _ZN9oceanbase8keybtree9BtreeNodeINS_8memtable20ObStoreRowkeyWrapperEPNS2_9ObMvccRowEE4copyERS6_iii _ZN9oceanbase8keybtree9BtreeNodeINS_8memtable20ObStoreRowkeyWrapperEPNS2_9ObMvccRowEE15copy_and_insertERS6_iiiS3_S5_S3_S5_ _ZN9oceanbase8keybtree18BtreeNodeAllocatorINS_8memtable20ObStoreRowkeyWrapperEPNS2_9ObMvccRowEE10alloc_nodeEb -_ZN9oceanbase11transaction12ObLSTxCtxMgr13create_tx_ctxERKNS0_13ObTxCreateArgERbRPNS0_14ObPartTransCtxE -_ZN9oceanbase11transaction17ObTransCtxFactory5allocEl +_ZN9oceanbase11transaction14ObPartTransCtx7destroyEv +_ZN9oceanbase11transaction11ObCtxTxData7destroyEv +_ZN9oceanbase11transaction14ObPartTransCtx14reset_log_cbs_Ev +_ZN9oceanbase11transaction12ObTxExecInfo7destroyEv +_ZN9oceanbase11transaction12ObTxExecInfo5resetEv +_ZN9oceanbase8memtable13ObMemtableCtx5resetEv +_ZN9oceanbase8memtable18ObTransCallbackMgr5resetEv +_ZN9oceanbase7storage23ObSSTableRowLockChecker16check_row_lockedEbRKNS_5share3SCNERNS0_19ObStoreRowLockStateERNS0_10ObRowStateE +_ZN9oceanbase12blocksstable23ObIMicroBlockRowScannerC2ERNS_6common12ObIAllocatorE _ZN9oceanbase7storage8ObTablet31insert_row_without_rowkey_checkERNS0_15ObRelativeTableERNS0_10ObStoreCtxERKNS_6common8ObIArrayINS_5share6schema9ObColDescEEERKNS0_10ObStoreRowEPKNS7_INS_11transaction18ObEncryptMetaCacheEEE -_ZZN9oceanbase8memtable10ObMemtable4set_ERKNS_7storage16ObTableIterParamERKNS_6common8ObIArrayINS_5share6schema9ObColDescEEERKNS2_10ObStoreRowEPSF_PKNS7_IlEERNS2_20ObTableAccessContextEPNS0_23ObMvccRowAndWriteResultEbENK5$_283clEPKc +_ZN9oceanbase8memtable10ObMemtable3setERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS_6common8ObIArrayINS_5share6schema9ObColDescEEERKNS2_10ObStoreRowEPKNSA_13ObEncryptMetaE +_ZZN9oceanbase3sql20ObDASIndexDMLAdaptorILi3ENS0_16ObDASUpdIteratorEE12write_tabletERS2_RlENKUlPKcE_clES7_ _ZN9oceanbase7storage17ObLSTabletService24check_old_row_legitimacyERNS0_14ObTabletHandleERNS0_15ObDMLRunningCtxERKNS_6common8ObNewRowE +_ZN9oceanbase12blocksstable22ObMicroBlockRowScanner4initERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextEPKNS0_9ObSSTableE +_ZZN9oceanbase8memtable10ObMemtable4set_ERKNS_7storage16ObTableIterParamERKNS_6common8ObIArrayINS_5share6schema9ObColDescEEERKNS2_10ObStoreRowEPSF_PKNS7_IlEERNS2_20ObTableAccessContextEPNS0_23ObMvccRowAndWriteResultEbENK5$_283clEPKc +_ZN9oceanbase6common11ObLoserTreeINS_7storage24ObScanMergeLoserTreeItemENS2_23ObScanMergeLoserTreeCmpELl80EE4initElRNS0_12ObIAllocatorE +_ZN9oceanbase8memtable12ObMvccEngine16check_row_lockedERNS0_15ObMvccAccessCtxEPKNS0_13ObMemtableKeyERNS_7storage19ObStoreRowLockStateE +_ZN9oceanbase6common11ObLoserTreeINS_7storage24ObScanMergeLoserTreeItemENS2_23ObScanMergeLoserTreeCmpELl80EE3topERPKS3_ +_ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql6ObExprENS0_12ObIAllocatorEE9push_backERKS4_ +_ZN9oceanbase18concurrent_control28check_sequence_set_violationENS0_11ObWriteFlagENS_11transaction7ObTxSEQENS2_9ObTransIDENS_12blocksstable9ObDmlFlagES3_S4_S6_S3_ _ZN9oceanbase6common11ObArrayImplINS_11transaction9ObTransIDENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEED2Ev -_ZNK9oceanbase6common11ObLoserTreeINS_7storage24ObScanMergeLoserTreeItemENS2_23ObScanMergeLoserTreeCmpELl80EE9is_initedEv -_ZN9oceanbase8memtable10ObMemtable3setERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS_6common8ObIArrayINS_5share6schema9ObColDescEEERKNS2_10ObStoreRowEPKNSA_13ObEncryptMetaE +_ZN9oceanbase6commonL10string_intENS0_9ObObjTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS4_m +_Z12ob_scan_8bitPK13ObCharsetInfoPKcS3_i +_ZN9oceanbase6common21check_convert_str_errEPKcS2_iiRKNS0_15ObCollationTypeE +_Z22ob_strntoull10rnd_8bitPK13ObCharsetInfoPKcmiPPcPi +_ZN9oceanbase3sql19ObDataAccessService21execute_dist_das_taskERNS0_8ObDASRefERNS0_20ObDasAggregatedTasksEb +_ZN9oceanbase3sql12ObIDASTaskOp14start_das_taskEv +_ZN9oceanbase3sql13ObDASInsertOp7open_opEv +_ZN9oceanbase3sql20ObDASIndexDMLAdaptorILi2ENS0_16ObDASDMLIteratorEE10write_rowsERKNS_5share6ObLSIDERKNS_6common10ObTabletIDERKNS0_13ObDASInsCtDefERNS0_13ObDASInsRtDefERS2_Rl +_ZN9oceanbase7storage15ObAccessService11insert_rowsERKNS_5share6ObLSIDERKNS_6common10ObTabletIDERNS_11transaction8ObTxDescERKNS0_14ObDMLBaseParamERKNS6_8ObIArrayImEEPNS6_16ObNewRowIteratorERl +_ZN9oceanbase6common2SVINS_7storage10ObRowsInfoELb0EEC2IZNS2_17ObLSTabletService11insert_rowsERNS2_14ObTabletHandleERNS2_10ObStoreCtxERKNS2_14ObDMLBaseParamERKNS0_8ObIArrayImEEPNS0_16ObNewRowIteratorERlE6$_1186EEibOT_ +_ZN9oceanbase3sql13ObDASDeleteOp7open_opEv +_ZN9oceanbase3sql20ObDASIndexDMLAdaptorILi4ENS0_16ObDASDMLIteratorEE10write_rowsERKNS_5share6ObLSIDERKNS_6common10ObTabletIDERKNS0_13ObDASDelCtDefERNS0_13ObDASDelRtDefERS2_Rl +_ZN9oceanbase7storage15ObAccessService11delete_rowsERKNS_5share6ObLSIDERKNS_6common10ObTabletIDERNS_11transaction8ObTxDescERKNS0_14ObDMLBaseParamERKNS6_8ObIArrayImEEPNS6_16ObNewRowIteratorERl +_ZN9oceanbase7storage14ObTabletHandleaSERKS1_ +_ZN9oceanbase7storage10ObStoreCtxC2Ev +_ZN9oceanbase7storage15ObAccessService20check_write_allowed_ERKNS_5share6ObLSIDERKNS_6common10ObTabletIDENS0_17ObStoreAccessTypeERKNS0_14ObDMLBaseParamERNS_11transaction8ObTxDescERNS0_14ObTabletHandleERNS1_15ObStoreCtxGuardE +_ZZN9oceanbase8memtable13ObMemtableCtx10write_authEbENK5$_325clEPKc.llvm.3524317861966783966 +_ZN9oceanbase11transaction9tablelock11get_lock_idERKNS_6common10ObTabletIDERNS1_8ObLockIDE +_ZN9oceanbase7storage15ObAccessService26get_write_store_ctx_guard_ERKNS_5share6ObLSIDElRNS_11transaction8ObTxDescERKNS6_16ObTxReadSnapshotENS_18concurrent_control11ObWriteFlagERNS1_15ObStoreCtxGuardERKNS6_7ObTxSEQE +_ZN9oceanbase11transaction14ObTransService19get_write_store_ctxERNS0_8ObTxDescERKNS0_16ObTxReadSnapshotENS_18concurrent_control11ObWriteFlagERNS_7storage10ObStoreCtxERKNS0_7ObTxSEQEb +_ZN9oceanbase11transaction12CtxLockGuardD1Ev +_ZN9oceanbase11transaction12CtxLockGuardD2Ev +_ZN9oceanbase11transaction14ObPartTransCtx13check_status_Ev +_ZN9oceanbase11transaction7CtxLock4lockEv +_ZNK9oceanbase7storage13ObLSTxService10get_tx_ctxERKNS_11transaction9ObTransIDEbRPNS2_14ObPartTransCtxE +_ZN9oceanbase11transaction12ObLSTxCtxMgr10get_tx_ctxERKNS0_9ObTransIDEbRPNS0_14ObPartTransCtxE +_ZZN9oceanbase11transaction14ObTransService19get_write_store_ctxERNS0_8ObTxDescERKNS0_16ObTxReadSnapshotENS_18concurrent_control11ObWriteFlagERNS_7storage10ObStoreCtxERKNS0_7ObTxSEQEbENK6$_1295clEPKc +_ZZN9oceanbase11transaction14ObTransService14acquire_tx_ctxERKNS_5share6ObLSIDERKNS0_8ObTxDescERPNS0_14ObPartTransCtxEPNS_7storage4ObLSEbENK6$_1299clEPKc +_ZN9oceanbase11transaction9tablelock11ObLockTable4lockERNS_7storage10ObStoreCtxERKNS1_11ObLockParamE +_ZN9oceanbase7storage8ObITable7dec_refEv +_ZN9oceanbase6common8ObBitSetILl16ENS0_19ModulePageAllocatorELb0EED2Ev +_ZN9oceanbase6common7ObLatch10try_wrlockEjPKj +_ZN9oceanbase7storage15ObTableHandleV25resetEv +_ZNK9oceanbase11transaction9tablelock12ObLockMemCtx16check_lock_existERKNS1_8ObLockIDERKNS_5share10ObCommonIDEhNS1_17ObTableLockOpTypeERbRh +_ZZN9oceanbase11transaction14ObTransService11get_tx_ctx_ERKNS_5share6ObLSIDEPNS_7storage4ObLSERKNS0_9ObTransIDERPNS0_14ObPartTransCtxEENK6$_1300clEPKc +_ZN9oceanbase7storage15ObAccessService25audit_tablet_opt_dml_statERKNS0_14ObDMLBaseParamERKNS_6common10ObTabletIDENS5_16ObOptDmlStatTypeEl +_ZN9oceanbase11transaction14ObTransService23handle_tx_commit_resultERKNS0_9ObTransIDEiNS_5share3SCNE +_ZN9oceanbase11transaction11ObTxDescMgr6revertERNS0_8ObTxDescE +_ZNK9oceanbase11transaction8ObTxDesc13get_expire_tsEv +_ZN9oceanbase8memtable18ObTransCallbackMgr21acquire_callback_listEv +_ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocENS_6common10SpinRWLockELl65536EE3getERKS2_RPS3_ +_ZN9oceanbase11transaction9tablelock12ObOBJLockMap4lockERKNS1_11ObLockParamERNS_7storage10ObStoreCtxERKNS1_13ObTableLockOpERKhRNS_6common4hash19ObIteratableHashSetINS0_9ObTransIDELm16EEE +_ZN9oceanbase8memtable13ObMemtableCtx15add_lock_recordERKNS_11transaction9tablelock13ObTableLockOpE +_ZN9oceanbase11transaction9tablelock12ObLockMemCtx15add_lock_recordERKNS1_13ObTableLockOpERPNS1_22ObMemCtxLockOpLinkNodeEb +_ZN9oceanbase8memtable10ObIMvccCtx23register_table_lock_cb_EPNS_11transaction9tablelock14ObLockMemtableEPNS3_22ObMemCtxLockOpLinkNodeERPNS3_17ObOBJLockCallbackE +_ZN9oceanbase8memtable13ObMemtableCtx25alloc_table_lock_callbackERNS0_10ObIMvccCtxEPNS_11transaction9tablelock14ObLockMemtableE +_ZN9oceanbase11transaction9tablelock12ObLockMemCtx22alloc_lock_op_callbackEv +_ZN9oceanbase8memtable24ObMemtableCtxCbAllocator5allocEl +_ZN9oceanbase6common15ObFIFOAllocator5allocEl +_ZN9oceanbase6common23ObOptStatMonitorManager18update_local_cacheERNS0_12ObOptDmlStatE +_ZN9oceanbase6common4hash11ObHashTableISt4pairImmENS1_11HashMapPairIS4_NS0_12ObOptDmlStatEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi64ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKS4_RS7_l +_ZN9oceanbase6common4hash11ObHashTableISt4pairImmENS1_11HashMapPairIS4_NS0_12ObOptDmlStatEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi64ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE6atomicINS0_23ObOptStatMonitorManager19UpdateValueAtomicOpENS1_8pre_procIS7_EEEEiRKS4_RT_RT0_ +_ZN9oceanbase11transaction9tablelock12ObOBJLockMap32get_or_create_obj_lock_with_ref_ERKNS1_8ObLockIDERPNS1_9ObOBJLockE +_ZZN9oceanbase11transaction14ObPartTransCtx12start_accessERKNS0_8ObTxDescERNS0_7ObTxSEQEENK5$_795clEPKc +_ZN9oceanbase8memtable13ObMemtableCtx19elr_trans_preparingEv +_ZNK9oceanbase6common10ObFunctionIFiPNS_8memtable16ObITransCallbackEEE7DerivedIZNS2_16ObTxCallbackList16tx_elr_preparingEvE5$_241E4copyERNS0_12ObIAllocatorEPv$8b4bcdecdd0d8f749c37b62d8328b37c +_ZN9oceanbase7storage17ObLSTabletService11delete_rowsERNS0_14ObTabletHandleERNS0_10ObStoreCtxERKNS0_14ObDMLBaseParamERKNS_6common8ObIArrayImEEPNS9_16ObNewRowIteratorERl +_ZN9oceanbase5share6schema19ObSchemaGetterGuardD1Ev +_ZN9oceanbase5share6schema19ObSchemaGetterGuardD2Ev +_ZN9oceanbase6common13ObSEArrayImplINS_5share6schema9SchemaObjELl2ENS0_19ModulePageAllocatorELb0EED2Ev +_ZN9oceanbase6common11ObArrayImplINS_11transaction16ObTransIDAndAddrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev +_ZN9oceanbase11transaction8ObTxDesc17execute_commit_cbEv +_ZN9oceanbase6common12ObLatchMutex8try_lockEjPKj +_ZN9oceanbase3sql23ObEndTransAsyncCallback8callbackEi +_ZN9oceanbase8observer15ObSqlEndTransCb8callbackEi +_ZN9oceanbase3sql17ObSqlTransControl22reset_session_tx_stateEPNS0_16ObSQLSessionInfoEbb +_ZN9oceanbase7obmysql23ObPocSqlRequestOperator25alloc_sql_response_bufferEPNS_3rpc9ObRequestEl +_ZN9oceanbase3sql17ObSqlTransControl22reset_session_tx_stateEPNS0_18ObBasicSessionInfoEbb +_ZN9oceanbase3lib11ObLockGuardINS_6common16ObRecursiveMutexEED2Ev +_ZN9oceanbase11transaction11ObTxDescMgr6removeERNS0_8ObTxDescE +_ZThn8_N9oceanbase3sql16ObSQLSessionInfo17reset_tx_variableEb +_ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocENS_6common10SpinRWLockELl65536EE3delERKS2_PS3_ +_ZN9oceanbase5share19ObTenantSwitchGuard9switch_toEmb +_ZN9oceanbase11transaction14ObTransService8reuse_txERNS0_8ObTxDescE +_ZN9oceanbase11transaction14ObTransService14create_tx_ctx_ERKNS_5share6ObLSIDEPNS_7storage4ObLSERKNS0_8ObTxDescERPNS0_14ObPartTransCtxEb +_ZN9oceanbase11transaction16ObTxReadSnapshotD1Ev +_ZN9oceanbase6common13ObSEArrayImplINS_11transaction6ObPairINS_5share6ObLSIDElEELl1ENS0_19ModulePageAllocatorELb0EED2Ev +_ZN9oceanbase11transaction12ObLSTxCtxMgr13create_tx_ctxERKNS0_13ObTxCreateArgERbRPNS0_14ObPartTransCtxE +_ZN9oceanbase11transaction17ObTransCtxFactory5allocEl +_ZN9oceanbase3sql12ObDMLService31check_local_index_affected_rowsEllRKNS0_17ObDASDMLBaseCtDefERNS0_17ObDASDMLBaseRtDefES4_S6_ +_ZN9oceanbase8memtable16ObTxCallbackList16tx_elr_preparingEv +_ZN9oceanbase8memtable16ObITransCallback19elr_trans_preparingEv +_ZNK9oceanbase6common10ObFunctionIFiPNS_8memtable16ObITransCallbackEEE7DerivedIZNS2_16ObTxCallbackList16tx_elr_preparingEvE5$_241E6invokeES4_$8b4bcdecdd0d8f749c37b62d8328b37c +_ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocENS_6common10SpinRWLockELl16384EE16BucketWLockGuardC2ERKS6_m _ZN9oceanbase7storage17ObLSTabletService11insert_rowsERNS0_14ObTabletHandleERNS0_10ObStoreCtxERKNS0_14ObDMLBaseParamERKNS_6common8ObIArrayImEEPNS9_16ObNewRowIteratorERl -_ZN9oceanbase7storage10ObRowsInfo4initERKNS0_15ObRelativeTableERNS0_10ObStoreCtxERKNS0_16ObITableReadInfoE +_ZN9oceanbase6common2SVINS_7storage10ObRowsInfoELb0EED2Ev +_ZN9oceanbase6common15check_from_heapEiRb _ZN9oceanbase6common13ObSEArrayImplINS_7storage26ObMarkedRowkeyAndLockStateELl16ENS0_19ModulePageAllocatorELb0EEixEl +_ZN9oceanbase7storage10ObRowsInfo4initERKNS0_15ObRelativeTableERNS0_10ObStoreCtxERKNS0_16ObITableReadInfoE _ZN9oceanbase6common13ObSEArrayImplIjLl16ENS0_19ModulePageAllocatorELb0EEixEl _ZN9oceanbase7storage10ObRowsInfo11ExistHelper4initERKNS0_15ObRelativeTableERNS0_10ObStoreCtxERKNS0_16ObITableReadInfoERNS_6common23ObReserveArenaAllocatorILl1024EEESE_ -_ZN9oceanbase7storage20ObTableAccessContext4initERKNS_6common11ObQueryFlagERNS0_10ObStoreCtxERNS2_12ObIAllocatorES9_RKNS2_14ObVersionRangeEb _ZN9oceanbase7storage17ObLSTabletService21insert_lob_tablet_rowERNS0_14ObTabletHandleERNS0_15ObDMLRunningCtxERNS0_10ObStoreRowE _ZN9oceanbase7storage10ObRowsInfo15check_duplicateEPNS0_10ObStoreRowElRNS0_15ObRelativeTableE _ZN9oceanbase6common23ObReserveArenaAllocatorILl1024EE5allocEl _ZN9oceanbase6common13ObSEArrayImplINS_7storage26ObMarkedRowkeyAndLockStateELl16ENS0_19ModulePageAllocatorELb0EE9push_backERKS3_ _ZN9oceanbase6common13ObSEArrayImplIjLl16ENS0_19ModulePageAllocatorELb0EE16prepare_allocateEl +_ZN9oceanbase7storage20ObTableAccessContext4initERKNS_6common11ObQueryFlagERNS0_10ObStoreCtxERNS2_12ObIAllocatorES9_RKNS2_14ObVersionRangeEb _ZN9oceanbase12blocksstable13ObDatumRowkey11from_rowkeyERKNS_6common8ObRowkeyERNS2_12ObIAllocatorE -_ZN9oceanbase7storage8ObTablet11insert_rowsERNS0_15ObRelativeTableERNS0_10ObStoreCtxEPNS0_10ObStoreRowERNS0_10ObRowsInfoEbRKNS_6common8ObIArrayINS_5share6schema9ObColDescEEElPKNSB_INS_11transaction18ObEncryptMetaCacheEEE -_ZN9oceanbase7storage19ObStorageTableGuardC1EPNS0_8ObTabletERNS0_10ObStoreCtxEbbNS_5share3SCNEb -_ZN9oceanbase7storage8ObTablet25try_update_storage_schemaEllRNS_6common12ObIAllocatorEl -_ZN9oceanbase7storage8ObTablet16prepare_memtableERNS0_15ObRelativeTableERNS0_10ObStoreCtxERPNS_8memtable10ObMemtableE _ZN9oceanbase6common7ObDatum8from_objERKNS0_5ObObjE _ZN9oceanbase7storage10ObRowsInfoC1Ev _ZN9oceanbase7storage20ObTableAccessContextC1Ev _ZN9oceanbase7storage20ObTableAccessContextC2Ev +_ZN9oceanbase7storage10ObRowsInfoD1Ev +_ZN9oceanbase6common23ObReserveArenaAllocatorILl1024EED2Ev +_ZN9oceanbase7storage20ObTableAccessContextD1Ev +_ZN9oceanbase7storage20ObTableAccessContextD2Ev +_ZN9oceanbase7storage8ObTablet11insert_rowsERNS0_15ObRelativeTableERNS0_10ObStoreCtxEPNS0_10ObStoreRowERNS0_10ObRowsInfoEbRKNS_6common8ObIArrayINS_5share6schema9ObColDescEEElPKNSB_INS_11transaction18ObEncryptMetaCacheEEE +_ZN9oceanbase7storage19ObStorageTableGuardC1EPNS0_8ObTabletERNS0_10ObStoreCtxEbbNS_5share3SCNEb +_ZN9oceanbase7storage8ObTablet25try_update_storage_schemaEllRNS_6common12ObIAllocatorEl +_ZN9oceanbase7storage8ObTablet16prepare_memtableERNS0_15ObRelativeTableERNS0_10ObStoreCtxERPNS_8memtable10ObMemtableE _ZN9oceanbase7storage8ObTablet14rowkeys_existsERNS0_10ObStoreCtxERNS0_15ObRelativeTableERNS0_10ObRowsInfoERb +_ZN9oceanbase7storage21ObTabletTableIteratorD2Ev _ZN9oceanbase7storage10ObRowsInfo5resetEv _ZN9oceanbase7storage20ObTableAccessContext5resetEv +_ZN9oceanbase3sql16ObDASDMLIterator13get_next_rowsERPNS_6common8ObNewRowERl +_ZN9oceanbase3sql16ObDASDMLIterator12get_next_rowERPNS_6common8ObNewRowE +_ZZN9oceanbase3sql16ObDASDMLIterator12get_next_rowERPNS_6common8ObNewRowEENK5$_124clEPKc +_ZN9oceanbase7storage20ObTableStoreIteratorD1Ev +_ZN9oceanbase7storage20ObTableStoreIteratorD2Ev _ZN9oceanbase8memtable10ObMemtable5existERNS_7storage10ObRowsInfoERbS5_ _ZN9oceanbase8memtable10ObMemtable5existERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS_12blocksstable13ObDatumRowkeyERbSC_ _ZN9oceanbase8memtable19ObMvccValueIterator13get_next_nodeERPKv _ZN9oceanbase7storage23ObStorageSchemaRecorder25try_update_storage_schemaEllRNS_6common12ObIAllocatorEl -_ZN9oceanbase8observer16ObMPPacketSender14revert_sessionEPNS_3sql16ObSQLSessionInfoE -_ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocENS_6common10SpinRWLockELl16384EE16BucketWLockGuardC2ERKS6_m _ZN9oceanbase7storage19ObStorageTableGuardD1Ev _ZN9oceanbase8memtable10ObMemtable13dec_write_refEv -_ZN9oceanbase8memtable16ObTxCallbackList16tx_elr_preparingEv -_ZN9oceanbase8memtable16ObITransCallback19elr_trans_preparingEv -_ZNK9oceanbase6common10ObFunctionIFiPNS_8memtable16ObITransCallbackEEE7DerivedIZNS2_16ObTxCallbackList16tx_elr_preparingEvE5$_241E6invokeES4_$8b4bcdecdd0d8f749c37b62d8328b37c -_ZN9oceanbase18concurrent_control28check_sequence_set_violationENS0_11ObWriteFlagENS_11transaction7ObTxSEQENS2_9ObTransIDENS_12blocksstable9ObDmlFlagES3_S4_S6_S3_ -_ZN9oceanbase6commonL10string_intENS0_9ObObjTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS4_m -_Z12ob_scan_8bitPK13ObCharsetInfoPKcS3_i -_ZN9oceanbase6common21check_convert_str_errEPKcS2_iiRKNS0_15ObCollationTypeE -_Z22ob_strntoull10rnd_8bitPK13ObCharsetInfoPKcmiPPcPi -_ZN9oceanbase3sql12ObDMLService31check_local_index_affected_rowsEllRKNS0_17ObDASDMLBaseCtDefERNS0_17ObDASDMLBaseRtDefES4_S6_ +_ZN9oceanbase8observer16ObMPPacketSender14revert_sessionEPNS_3sql16ObSQLSessionInfoE +_ZN9oceanbase6common13ObSEArrayImplINS0_9ObSEArrayIPNS_3sql12ObIDASTaskOpELl2ENS0_19ModulePageAllocatorELb0EEELl2ES6_Lb0EE9push_backERKS7_ +_ZN9oceanbase11transaction12ObLSTxCtxMgr35try_wait_gts_and_inc_max_commit_ts_Ev _ZN9oceanbase11transaction14ObPartTransCtx4initEmRKNS_6common6ObAddrEjRKNS0_9ObTransIDElRKNS_5share6ObLSIDEmPNS0_14ObTransServiceEmlPNS0_12ObLSTxCtxMgrEb +_ZN9oceanbase11transaction11ObTraceInfo5resetEv _ZN9oceanbase11transaction11ObCtxTxData4initEPNS0_12ObLSTxCtxMgrEl -_ZN9oceanbase11transaction9ObTxLogCb4initERKNS_5share6ObLSIDERKNS0_9ObTransIDEPNS0_10ObTransCtxEb -_ZN9oceanbase11transaction9tablelock11ObLockTable17get_lock_memtableERNS_7storage15ObTableHandleV2E _ZN9oceanbase11transaction21ObTxLogBigSegmentInfo5resetEv -_ZN9oceanbase11transaction12ObTxMDSCache5resetEv +_ZN9oceanbase11transaction9tablelock12ObLockMemCtx4initERNS_7storage15ObTableHandleV2E +_ZNK9oceanbase7storage8ObITable7get_refEv +_ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb0EE7destroyEv +_ZN9oceanbase11transaction9tablelock11ObLockTable17get_lock_memtableERNS_7storage15ObTableHandleV2E +_ZN9oceanbase11transaction9ObTxLogCb4initERKNS_5share6ObLSIDERKNS0_9ObTransIDEPNS0_10ObTransCtxEb _ZN9oceanbase7storage13ObTxDataTable13alloc_tx_dataERNS0_13ObTxDataGuardE _ZN9oceanbase8memtable18ObTransCallbackMgr11trans_startEv -_ZN9oceanbase11transaction11ObTraceInfo5resetEv -_ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb0EE7destroyEv +_ZN9oceanbase11transaction12ObTxMDSCache5resetEv +_ZN9oceanbase7storage15ObTableHandleV2aSERKS1_ +_ZN9oceanbase7storage24ObStorageMetaValueHandleaSERKS1_ _ZNK9oceanbase7storage14ObIMemtableMgr19get_active_memtableERNS0_15ObTableHandleV2E -_ZN9oceanbase11transaction12ObLSTxCtxMgr35try_wait_gts_and_inc_max_commit_ts_Ev -_ZN9oceanbase6common13ObSEArrayImplINS_7storage26ObMarkedRowkeyAndLockStateELl16ENS0_19ModulePageAllocatorELb0EE7reserveEl -_ZN9oceanbase3sql19ObDataAccessService21execute_dist_das_taskERNS0_8ObDASRefERNS0_20ObDasAggregatedTasksEb +_ZZN9oceanbase11transaction14ObTransService8reuse_txERNS0_8ObTxDescEENK6$_1659clEPKc +_ZZN9oceanbase11transaction11ObTxDescMgr6removeERNS0_8ObTxDescEENK6$_1144clEPKc.llvm.16757999695646208410 _ZN9oceanbase3sql12ObIDASTaskOp13state_advanceEv -_ZN9oceanbase6common13ObSEArrayImplINS0_9ObSEArrayIPNS_3sql12ObIDASTaskOpELl2ENS0_19ModulePageAllocatorELb0EEELl2ES6_Lb0EE9push_backERKS7_ +_ZN9oceanbase6common13ObSEArrayImplINS_7storage26ObMarkedRowkeyAndLockStateELl16ENS0_19ModulePageAllocatorELb0EE7reserveEl +_ZZN9oceanbase3sql20ObDASIndexDMLAdaptorILi4ENS0_16ObDASDMLIteratorEE12write_tabletERS2_RlENKUlPKcE3_clES7_ +_ZN9oceanbase11transaction14ObTransService24handle_tx_commit_result_ERNS0_8ObTxDescEiNS_5share3SCNE +_ZN9oceanbase11transaction14ObTransService18tx_post_terminate_ERNS0_8ObTxDescE +_ZN9oceanbase7storage15ObTableHandleV2D1Ev +_ZN9oceanbase7storage15ObTableHandleV2D2Ev +_ZN9oceanbase8memtable13ObMemtableCtx4initEm +_ZN9oceanbase8memtable16ObQueryAllocator4initEm +_ZN9oceanbase8memtable24ObMemtableCtxCbAllocator4initEm +_ZN9oceanbase7storage19ObSSTableRowScannerINS0_30ObIndexTreeMultiPassPrefetcherILi2ELi2EEEE18inner_get_next_rowERPKNS_12blocksstable10ObDatumRowE _ZN9oceanbase6commonL11string_uintENS0_9ObObjTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS4_m -_ZZN9oceanbase11transaction14ObTransService8reuse_txERNS0_8ObTxDescEENK6$_1659clEPKc -_ZZN9oceanbase3sql20ObDASIndexDMLAdaptorILi3ENS0_16ObDASUpdIteratorEE12write_tabletERS2_RlENKUlPKcE3_clES7_ -_ZZN9oceanbase3sql20ObDASIndexDMLAdaptorILi4ENS0_16ObDASDMLIteratorEE12write_tabletERS2_RlENKUlPKcE_clES7_ -_ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql6ObExprENS0_12ObIAllocatorEE9push_backERKS4_ +_ZZN9oceanbase3sql20ObDASIndexDMLAdaptorILi2ENS0_16ObDASDMLIteratorEE12write_tabletERS2_RlENKUlPKcE_clES7_ +_ZN9oceanbase7storage16ObMergeLoserTreeINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpELl80EE7rebuildEv +_ZNK9oceanbase7storage8ObITable11get_end_scnEv _ZN9oceanbase8observer16ObMPPacketSender12flush_bufferEb _ZN9oceanbase7obmysql23ObPocSqlRequestOperator20async_write_responseEPNS_3rpc9ObRequestEPKcl _ZN9oceanbase7obmysql23ObPocSqlRequestOperator18finish_sql_requestEPNS_3rpc9ObRequestE _ZN9oceanbase7obmysql23request_finish_callbackEv -_ZNK9oceanbase7storage16ObMergeLoserTreeINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpELl80EE5emptyEv -_ZN9oceanbase11transaction14ObTransService24handle_tx_commit_result_ERNS0_8ObTxDescEiNS_5share3SCNE -_ZN9oceanbase11transaction14ObTransService18tx_post_terminate_ERNS0_8ObTxDescE -_ZN9oceanbase6common7ObDITlsINS0_17ObSessionDIBufferELm0EE12get_instanceEv -_ZZN9oceanbase3sql20ObDASIndexDMLAdaptorILi2ENS0_16ObDASDMLIteratorEE12write_tabletERS2_RlENKUlPKcE3_clES7_ _ZN9oceanbase7storage14ObPDAggFactory10alloc_cellERKNS0_18ObAggCellBasicInfoERNS_6common8ObIArrayIPNS0_9ObAggCellEEEbbPNS_3sql9ObEvalCtxE -_ZZN9oceanbase3sql20ObDASIndexDMLAdaptorILi2ENS0_16ObDASDMLIteratorEE12write_tabletERS2_RlENKUlPKcE_clES7_ +_ZN9oceanbase12blocksstable18ObMacroBlockReaderD1Ev +_ZN9oceanbase12blocksstable18ObMacroBlockReaderD2Ev +_ZZN9oceanbase3sql20ObDASIndexDMLAdaptorILi4ENS0_16ObDASDMLIteratorEE12write_tabletERS2_RlENKUlPKcE_clES7_ +_ZN9oceanbase6common16ObFixedArrayImplIPNS_7storage9ObAggCellENS0_12ObIAllocatorEE4initEl _ZN9oceanbase11transaction8ObTxDescD1Ev _ZN9oceanbase11transaction8ObTxDescD2Ev _ZN6obutil4CondD1Ev _ZN9oceanbase11transaction8ObTxDesc5resetEv +_ZZN9oceanbase3sql20ObDASIndexDMLAdaptorILi3ENS0_16ObDASUpdIteratorEE12write_tabletERS2_RlENKUlPKcE3_clES7_ +_ZZN9oceanbase11transaction11ObTxDescMgr3getERKNS0_9ObTransIDERPNS0_8ObTxDescEENK6$_1141clEPKc.llvm.16757999695646208410 _ZN9oceanbase6common30common_string_unsigned_integerERKmRKNS0_9ObObjTypeERKNS0_15ObCollationTypeERKNS0_8ObStringEbRm -_ZZN9oceanbase3sql20ObDASIndexDMLAdaptorILi4ENS0_16ObDASDMLIteratorEE12write_tabletERS2_RlENKUlPKcE3_clES7_ -_ZN9oceanbase6common16ObFixedArrayImplIPNS_7storage9ObAggCellENS0_12ObIAllocatorEE4initEl -_ZN9oceanbase8memtable13ObMemtableCtx4initEm -_ZN9oceanbase8memtable16ObQueryAllocator4initEm -_ZN9oceanbase8memtable24ObMemtableCtxCbAllocator4initEm +_ZZN9oceanbase3sql20ObDASIndexDMLAdaptorILi2ENS0_16ObDASDMLIteratorEE12write_tabletERS2_RlENKUlPKcE3_clES7_ _ZN9oceanbase8memtable10ObMemtable9multi_setERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS_6common8ObIArrayINS_5share6schema9ObColDescEEEPKNS2_10ObStoreRowElbPKNSA_13ObEncryptMetaERNS2_10ObRowsInfoE -_ZN9oceanbase11transaction9tablelock12ObLockMemCtx4initERNS_7storage15ObTableHandleV2E -_ZNK9oceanbase7storage8ObITable7get_refEv -_ZN9oceanbase7storage15ObTableHandleV2aSERKS1_ -_ZN9oceanbase7storage24ObStorageMetaValueHandleaSERKS1_ _ZN9oceanbase6common16ObArenaAllocator5resetEv +_ZNK9oceanbase7storage12ObTenantInfo14get_freeze_ctxERNS0_17ObTenantFreezeCtxE _ZN9oceanbase7storage12ObSumAggCell4initEbPNS_3sql9ObEvalCtxE -_ZZN9oceanbase11transaction11ObTxDescMgr3getERKNS0_9ObTransIDERPNS0_8ObTxDescEENK6$_1134clEPKc.llvm.15462746491421382466 +_ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl4ENS0_19ModulePageAllocatorELb0EE7reserveEl _ZN9oceanbase6common6QClock13try_quiescentERm -_ZN9oceanbase6common16ObFixedArrayImplIPNS_7storage9ObAggCellENS0_12ObIAllocatorEE9push_backERKS4_ +_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi2ELi2EE8prefetchEv +_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi2ELi2EE14check_row_lockERKNS_12blocksstable16ObMicroIndexInfoERb +_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi2ELi2EE19try_add_query_rangeERNS2_22ObIndexTreeLevelHandleE +_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi2ELi2EE22ObIndexTreeLevelHandle8prefetchElRS2_ +_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi2ELi2EE18get_prefetch_depthERl +_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi2ELi2EE10drill_downEv +_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi2ELi2EE22ObIndexTreeLevelHandle7forwardERS2_b _ZZN9oceanbase11transaction14ObPartTransCtx4initEmRKNS_6common6ObAddrEjRKNS0_9ObTransIDElRKNS_5share6ObLSIDEmPNS0_14ObTransServiceEmlPNS0_12ObLSTxCtxMgrEbENK4$_55clEPKc -_ZNK9oceanbase7storage12ObTenantInfo14get_freeze_ctxERNS0_17ObTenantFreezeCtxE _ZN9oceanbase6common12ObSliceAlloc13prepare_blockEv -_ZZN9oceanbase11transaction11ObTxDescMgr6revertERNS0_8ObTxDescEENK6$_1136clEPKc.llvm.15462746491421382466 -_ZN9oceanbase7storage16ObMergeLoserTreeINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpELl80EE3topERPKS2_ _ZN9oceanbase6commonL13string_stringENS0_9ObObjTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS4_m _ZN9oceanbase6commonL11copy_stringERKNS0_15ObObjCastParamsENS0_9ObObjTypeEPKclRNS0_5ObObjEl -_ZNK9oceanbase6common5ObObj10get_stringERNS0_8ObStringE _ZN9oceanbase6common5ObObj10set_stringENS0_9ObObjTypeEPKci +_ZNK9oceanbase6common5ObObj10get_stringERNS0_8ObStringE +_ZN9oceanbase6common16ObArenaAllocator5allocElRKNS_3lib9ObMemAttrE +_ZN9oceanbase6common16ObFixedArrayImplIPNS_7storage9ObAggCellENS0_12ObIAllocatorEE9push_backERKS4_ +_ZNK9oceanbase6common11ObFifoArena14calc_mem_limitElll +_ZN9oceanbase11transaction9tablelock12ObLockMemCtx5resetEv _ZN9oceanbase7storage15ObTenantFreezer21get_tenant_mem_usage_ERNS0_17ObTenantFreezeCtxE -_ZN9oceanbase7storage9ObAggCell4initEbPNS_3sql9ObEvalCtxE -_ZZN9oceanbase11transaction8ObTxDesc17execute_commit_cbEvENK6$_1083clEPKc -_ZN9oceanbase7storage16ObMergeLoserTreeINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpELl80EE4pushERKS2_ _ZN9oceanbase6commonL20check_convert_stringENS0_9ObObjTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS4_ -_ZNK9oceanbase6common11ObFifoArena14calc_mem_limitElll -_ZN9oceanbase8memtable12ObMvccEngine16check_row_lockedERNS0_15ObMvccAccessCtxEPKNS0_13ObMemtableKeyERNS_7storage19ObStoreRowLockStateE -_ZN9oceanbase6common11ObLoserTreeINS_7storage24ObScanMergeLoserTreeItemENS2_23ObScanMergeLoserTreeCmpELl80EE4pushERKS3_ +_ZN9oceanbase8memtable9ObMvccRow16check_row_lockedERNS0_15ObMvccAccessCtxERNS_7storage19ObStoreRowLockStateE +_ZZN9oceanbase11transaction14ObTransService14create_tx_ctx_ERKNS_5share6ObLSIDEPNS_7storage4ObLSERKNS0_8ObTxDescERPNS0_14ObPartTransCtxEbENK6$_1303clEPKc +_ZZN9oceanbase11transaction8ObTxDesc17execute_commit_cbEvENK6$_1090clEPKc +_ZN9oceanbase7storage9ObAggCell4initEbPNS_3sql9ObEvalCtxE +_ZZN9oceanbase11transaction11ObTxDescMgr6revertERNS0_8ObTxDescEENK6$_1143clEPKc.llvm.16757999695646208410 _ZN9oceanbase3lib22get_tenant_memory_holdEmm _ZN9oceanbase5share25get_tenant_base_with_lockEmRNS_6common10ObLDHandleERPNS0_12ObTenantBaseERSt8functionIFiS3_EE _ZNK9oceanbase3omt13ObMultiTenant27get_tenant_with_tenant_lockEmRNS_6common10ObLDHandleERPNS0_8ObTenantE -_ZN9oceanbase6common15ObBlockAllocMgr11alloc_blockElRNS_3lib9ObMemAttrE -_ZN9oceanbase6common11ObLoserTreeINS_7storage24ObScanMergeLoserTreeItemENS2_23ObScanMergeLoserTreeCmpELl80EE4initElRNS0_12ObIAllocatorE -_Z10futex_waitPViiPK8timespec +_ZN9oceanbase5share11ObTenantEnv10set_tenantEPNS0_12ObTenantBaseE +_ZN9oceanbase5share12ObTenantBaseaSERKS1_ +_ZNK9oceanbase6common11ObFifoArena42get_writing_throttling_trigger_percentage_Ev _ZN9oceanbase6common22ObMemstoreAllocatorMgr29get_tenant_memstore_allocatorEmRPNS0_20ObGMemstoreAllocatorE -_ZN9oceanbase6common11ObLoserTreeINS_7storage24ObScanMergeLoserTreeItemENS2_23ObScanMergeLoserTreeCmpELl80EE3topERPKS3_ -_ZN9oceanbase7storage16ObMergeLoserTreeINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpELl80EE7rebuildEv -_ZN9oceanbase6commonL8int_uintENS0_9ObObjTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS4_m -_ZN9oceanbase8memtable9ObMvccRow16check_row_lockedERNS0_15ObMvccAccessCtxERNS_7storage19ObStoreRowLockStateE +_ZN9oceanbase12blocksstable14ObBlockManager7inc_refERKNS0_12MacroBlockIdE +_ZN9oceanbase6common15ObLinearHashMapINS_12blocksstable12MacroBlockIdENS2_14ObBlockManager9BlockInfoENS0_14ShareMemMgrTagEE7do_get_ERKS3_RS5_ +_ZN9oceanbase6common15ObLinearHashMapINS_12blocksstable12MacroBlockIdENS2_14ObBlockManager9BlockInfoENS0_14ShareMemMgrTagEE16load_access_bkt_ERKS3_RmRPNS7_6BucketE +_ZN9oceanbase6common15ObLinearHashMapINS_12blocksstable12MacroBlockIdENS2_14ObBlockManager9BlockInfoENS0_14ShareMemMgrTagEE17load_factor_ctrl_Em +_Z10futex_waitPViiPK8timespec +_ZN9oceanbase6common4hash9ObHashSetIlNS1_19ReadWriteDefendModeENS1_9hash_funcIlEENS1_8equal_toIlEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIlNS1_11HashNullObjEEEEELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev +_ZN9oceanbase5share12ObTenantBaseC1Emb +_ZN9oceanbase5share12ObTenantBaseC2Emb +_ZN9oceanbase6common4hash9ObHashMapINS_5share17ThreadDynamicNodeEdNS1_24LatchReadWriteDefendModeENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS4_dEEEELi81ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev _ZN9oceanbase6commonL13string_numberENS0_9ObObjTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS4_m -_ZN9oceanbase6common5ObObj10set_numberENS0_9ObObjTypeERKNS0_6number8ObNumberE _ZN9oceanbase6common6number8ObNumber12from_sci_optINS0_15ObObjCastParamsEEEiPKclRT_PsS9_b -_ZN9oceanbase6commonL24convert_string_collationERKNS0_8ObStringENS0_15ObCollationTypeERS1_S4_RNS0_15ObObjCastParamsE +_ZN9oceanbase6common5ObObj10set_numberENS0_9ObObjTypeERKNS0_6number8ObNumberE _ZN9oceanbase6common6number8ObNumber8from_v3_EPKclRNS2_10IAllocatorERiPNS1_16ObNumberFmtModelEPsSA_PKNS_3lib9ObMemAttrEb +_ZN9oceanbase6commonL24convert_string_collationERKNS0_8ObStringENS0_15ObCollationTypeERS1_S4_RNS0_15ObObjCastParamsE _ZN9oceanbase6common6number8ObNumber10TAllocatorINS0_15ObObjCastParamsEE5allocEl -_ZN9oceanbase6common17ObjHashCalculatorILNS0_9ObObjTypeE5ENS0_13ObDefaultHashENS0_5ObObjEE15calc_hash_valueERKS4_mRm -_ZNK9oceanbase6common11ObFifoArena42get_writing_throttling_trigger_percentage_Ev +_ZN9oceanbase11transaction14ObPartTransCtx11start_transEv _ZN9oceanbase12blocksstable22ObIndexBlockRowScanner15check_blockscanERKNS0_13ObDatumRowkeyERb _ZN9oceanbase6common6number8ObNumber15round_scale_v3_ElbbPsS3_ _ZN9oceanbase6common13ObSEArrayImplINS_7storage20ObRow2ExprsProjector4ItemELl4ENS0_19ModulePageAllocatorELb0EE7reserveEl -_ZN9oceanbase6common16ObLatchWaitQueue7wake_upERNS0_7ObLatchEb -_ZN9oceanbase6common16ObLatchWaitQueue12get_instanceEv -_ZN9oceanbase6common10HazardList7move_toERS1_ -_ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE2ELS3_2EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE -_ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE10ELS3_10EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE -_ZN9oceanbase6common9ObCharset8strcmpspENS0_15ObCollationTypeEPKclS4_lb -_ZN9oceanbase12blocksstable20ObIEncodeBlockReaderD2Ev +_ZN9oceanbase6common7ObLatch12LowTryRDLockclEPVjjjRb +_ZN9oceanbase6commonL8int_uintENS0_9ObObjTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS4_m +_ZN9oceanbase7storage15ObLobDataReader4initERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextE +_ZN9oceanbase7storage19ObSSTableRowScannerINS0_30ObIndexTreeMultiPassPrefetcherILi2ELi2EEEE9fetch_rowERNS0_19ObSSTableReadHandleERPKNS_12blocksstable10ObDatumRowE +_ZN9oceanbase12blocksstable26ObMicroBlockRowLockChecker18inner_get_next_rowERbRlRPNS_7storage19ObStoreRowLockStateE +_ZN9oceanbase12blocksstable26ObMicroBlockRowLockChecker12get_next_rowERPKNS0_10ObDatumRowE +_ZN9oceanbase6common7ObDListINS0_10ObWaitProcEE8add_lastEPS2_ +_ZN9oceanbase11transaction12_GLOBAL__N_114SyncTxCommitCb8callbackEi$486dc6eed163a01441d2db9eeeac8694 +_ZN9oceanbase6common17ObjHashCalculatorILNS0_9ObObjTypeE22ENS0_13ObDefaultHashENS0_5ObObjEE15calc_hash_valueERKS4_mRm +_ZN9oceanbase6common5ObObj8set_uintENS0_9ObObjTypeEm +_ZN9oceanbase7storage19ObSSTableRowScannerINS0_30ObIndexTreeMultiPassPrefetcherILi2ELi2EEEE19open_cur_data_blockERNS0_19ObSSTableReadHandleE +_ZN9oceanbase12blocksstable23ObIMicroBlockRowScanner5reuseEv +_ZN9oceanbase12blocksstable23ObIMicroBlockRowScanner14switch_contextERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextEPKNS0_9ObSSTableE +_ZN9oceanbase6common13ObSEArrayImplIPNS0_10ObNewRangeELl1ENS0_19ModulePageAllocatorELb0EE7reserveEl +_ZNK9oceanbase7storage19ObStorageMetaHandle8is_validEv +_ZN9oceanbase6common13ObSEArrayImplINS_5share6schema9ObColDescELl32ENS0_19ModulePageAllocatorELb0EE7reserveEl +_ZN9oceanbase6common15ObLinearHashMapINS0_9ObIntWarpENS_11transaction9ObTransIDENS0_15UniqueMemMgrTagEE7shrink_Ev +_ZN9oceanbase7storage18ObLobLocatorHelperC1Ev +_ZN9oceanbase3sql11ObDASLockOp7open_opEv _ZN9oceanbase6common16ObLatchWaitQueue4waitINS0_7ObLatch12LowTryWRLockEEEiRNS0_10ObWaitProcEjjRT_S8_l _ZN9oceanbase6common16ObLatchWaitQueue8try_lockINS0_7ObLatch12LowTryWRLockEEEiRNS1_13ObLatchBucketERNS0_10ObWaitProcEjjRT_ -_ZN9oceanbase12blocksstable17ObDecoderCtxArrayD2Ev -_ZN9oceanbase6common5ObObj8set_uintENS0_9ObObjTypeEm -_ZN9oceanbase7storage15ObLobDataReader4initERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextE -_Z27ob_strnncollsp_utf8mb4_helpPPKhmS1_mS1_S1_bPiS2_ -_ZZN9oceanbase3sql12ObQueryRange17get_tablet_rangesERNS_6common9ObSEArrayIPNS2_10ObNewRangeELl1ENS2_19ModulePageAllocatorELb0EEERbRKNS2_20ObDataTypeCastParamsEENK6$_1391clEPKc -_ZN9oceanbase6common15ObLinearHashMapINS0_9ObIntWarpENS_11transaction9ObTransIDENS0_14ShareMemMgrTagEE7shrink_Ev -_ZN9oceanbase3lib20ObTenantCtxAllocator12get_obj_holdEPv -_ZN9oceanbase7storage19ObTableScanIterator14init_scan_iterINS0_24ObMultipleMultiScanMergeEEEiRPT_ _ZNK9oceanbase3sql12ObQueryRange18cold_cast_cur_nodeEPKNS0_9ObKeyPartERNS_6common12ObIAllocatorERKNS5_20ObDataTypeCastParamsERNS5_5ObObjERb _ZN9oceanbase6common16ObLatchWaitQueue4waitINS0_7ObLatch12LowTryRDLockEEEiRNS0_10ObWaitProcEjjRT_S8_l _ZN9oceanbase6common16ObLatchWaitQueue8try_lockINS0_7ObLatch12LowTryRDLockEEEiRNS1_13ObLatchBucketERNS0_10ObWaitProcEjjRT_ -_ZZN9oceanbase3sql20ObDASIndexDMLAdaptorILi3ENS0_16ObDASUpdIteratorEE12write_tabletERS2_RlENKUlPKcE2_clES7_ -_ZN9oceanbase6common13ObSEArrayImplINS_5share6schema9ObColDescELl32ENS0_19ModulePageAllocatorELb0EE7reserveEl -_ZNK9oceanbase3sql10ObTempExpr4evalERNS0_13ObExecContextERKNS_6common8ObNewRowERNS4_5ObObjE -_ZN9oceanbase6common6number8ObNumber12from_sci_optINS0_12ObIAllocatorEEEiPKclRT_PsS9_b +_ZN9oceanbase12blocksstable26ObMicroBlockRowLockChecker9check_rowEbRKNS_11transaction9ObTransIDEPKNS0_11ObRowHeaderERKNS_7storage19ObStoreRowLockStateERb _ZNK9oceanbase3sql12ObQueryRange28generate_true_or_false_rangeEPKNS0_9ObKeyPartERNS_6common12ObIAllocatorERPNS5_10ObNewRangeE +_ZN9oceanbase3sql16AllocDASOpHelperILi5EE5allocERNS_6common12ObIAllocatorERPNS0_12ObIDASTaskOpE +_ZN9oceanbase7storage14ObDMLBaseParamD2Ev +_ZN9oceanbase3sql12ObQueryRange17get_tablet_rangesERNS_6common9ObSEArrayIPNS2_10ObNewRangeELl1ENS2_19ModulePageAllocatorELb0EEERbRKNS2_20ObDataTypeCastParamsE +_ZN9oceanbase6common4hash11ObHashTableINS_3sql12ObQueryRange14ObRangeWrapperENS1_11HashMapPairIS5_NS1_11HashNullObjEEENS1_9hash_funcIS5_EENS1_8equal_toIS5_EENS1_10pair_firstIS8_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS8_EELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv +_ZZN9oceanbase3sql12ObQueryRange17get_tablet_rangesERNS_6common9ObSEArrayIPNS2_10ObNewRangeELl1ENS2_19ModulePageAllocatorELb0EEERbRKNS2_20ObDataTypeCastParamsEENK6$_1405clEPKc +_ZNK9oceanbase6common14ObLobLocatorV214get_inrow_dataERNS0_8ObStringE +_ZNK9oceanbase6common14ObLobLocatorV216get_disk_locatorERNS0_8ObStringE +_ZN9oceanbase6commonL10number_intENS0_9ObObjTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS4_m +_ZN9oceanbase7storage36ObSSTableMultiVersionRowMultiScanner10inner_openERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextEPNS0_8ObITableEPKv +_ZN9oceanbase6common7ObDITlsIA16384_cLm3EE12get_instanceEv +_ZN9oceanbase6common4hash13SimpleAllocerINS0_11ObLatchStatELi543ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEE5allocIJEEEPS3_DpRT_ _ZN9oceanbase7storage18ObLobLocatorHelper4initERKNS0_16ObTableScanParamERKNS0_10ObStoreCtxERKNS_5share6ObLSIDEl -_ZN9oceanbase11transaction14ObPartTransCtx11start_transEv _ZN9oceanbase3sql12ObQueryRange25final_extract_query_rangeERNS0_13ObExecContextERKNS_6common20ObDataTypeCastParamsE -_ZN9oceanbase6common13ObSEArrayImplINS0_10ObNewRangeELl1ENS0_19ModulePageAllocatorELb0EE7reserveEl -_ZN9oceanbase7storage18ObLobLocatorHelperC1Ev +_ZNK9oceanbase7storage21ObITabletMdsInterface12get_ddl_dataERKNS_5share3SCNERNS0_26ObTabletBindingMdsUserDataEl _ZSt22__final_insertion_sortIN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS1_19ModulePageAllocatorELb0EEEN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S9_T0_ -_ZN9oceanbase3sql11ObDASLockOp7open_opEv -_ZN9oceanbase7storage15ObAccessService9lock_rowsERKNS_5share6ObLSIDERKNS_6common10ObTabletIDERNS_11transaction8ObTxDescERKNS0_14ObDMLBaseParamElNS0_10ObLockFlagEPNS6_16ObNewRowIteratorERl -_ZN9oceanbase7storage17ObLSTabletService23prepare_dml_running_ctxEPKNS_6common8ObIArrayImEES6_RNS0_14ObTabletHandleERNS0_15ObDMLRunningCtxE -_ZN9oceanbase8memtable10ObMemtable24post_row_write_conflict_ERNS0_15ObMvccAccessCtxERKNS0_13ObMemtableKeyERNS_7storage19ObStoreRowLockStateEll -_ZN9oceanbase8memtable13ObMemtableCtx21add_conflict_trans_idENS_11transaction9ObTransIDE -_ZNK9oceanbase6common14ObLobLocatorV214get_inrow_dataERNS0_8ObStringE -_ZN9oceanbase7storage15ObMultipleMergeC2Ev +_ZN9oceanbase8keybtree11WriteHandleINS_8memtable20ObStoreRowkeyWrapperEPNS2_9ObMvccRowEE21replace_child_and_keyEPNS0_9BtreeNodeIS3_S5_EEiS3_S9_RS9_l +_ZN9oceanbase3sql12ObQueryRange9deep_copyERKS1_b +_ZN9oceanbase3sql12ObQueryRange28shallow_copy_expr_final_infoERKNS_6common8ObIArrayINS1_13ExprFinalInfoEEE +_ZN9oceanbase3sql12ObQueryRange21deep_copy_range_graphEPNS0_9ObKeyPartERS3_ +_ZN9oceanbase3sql12ObQueryRange28deep_copy_key_part_and_itemsEPKNS0_9ObKeyPartERPS2_ +_ZN9oceanbase3sql12ObQueryRange19create_new_key_partEv +_ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql9ObRawExprENS0_12ObIAllocatorEE9push_backERKS4_ +_ZN9oceanbase3sql9ObKeyPart14deep_node_copyERKS1_ +_ZN9oceanbase6common12ob_write_objINS0_12ObIAllocatorEEEiRT_RKNS0_5ObObjERS5_ _ZN9oceanbase3sql12ObQueryRange14or_range_graphERNS_6common7ObDListINS0_9ObKeyPartEEEPNS0_13ObExecContextERPS4_RKNS2_20ObDataTypeCastParamsE -_ZN9oceanbase3sql12ObQueryRange8split_orEPNS0_9ObKeyPartERNS_6common7ObDListIS2_EE +_ZN9oceanbase3sql12ObQueryRange14link_or_graphsERNS_6common7ObDListINS0_9ObKeyPartEEERPS4_ +_ZNK9oceanbase6common6number8ObNumber9format_v2EPclRlsb _ZN9oceanbase3sql12ObQueryRange21or_single_head_graphsERNS_6common7ObDListINS0_9ObKeyPartEEEPNS0_13ObExecContextERKNS2_20ObDataTypeCastParamsE _ZN9oceanbase3sql9ObKeyPart17key_node_is_equalEPKS1_ _ZN9oceanbase3sql12ObQueryRange17definite_key_partEPNS0_9ObKeyPartERNS0_13ObExecContextERKNS_6common20ObDataTypeCastParamsERb -_ZNK9oceanbase3sql12ObQueryRange16get_result_valueERNS_6common5ObObjERNS0_13ObExecContextEPNS2_12ObIAllocatorE +_ZN9oceanbase3sql9ObKeyPart15cast_value_typeERKNS_6common20ObDataTypeCastParamsEbRb +_ZN9oceanbase3sql9ObKeyPart14try_cast_valueERKNS_6common20ObDataTypeCastParamsERNS2_12ObIAllocatorERKNS0_12ObKeyPartPosERNS2_5ObObjERl _ZN9oceanbase3sql9ObKeyPart9intersectEPS1_b +_ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE2ELS3_2EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE _ZN9oceanbase3sql9ObKeyPart17formalize_keypartEb -_ZNK9oceanbase6common5ObObj11can_compareERKS1_ +_ZN9oceanbase3sql9ObKeyPart18remove_in_dup_valsEv +_Ux86_64_getcontext_trace md5_block_asm_data_order _ZN9oceanbase3sql15ObResolverUtils13resolve_constEPK10_ParseNodeNS0_4stmt8StmtTypeERNS_6common12ObIAllocatorENS7_15ObCollationTypeESA_PKNS7_14ObTimeZoneInfoERNS7_10ObObjParamEbRNS7_8ObStringEsSA_PNS0_11ObSqlBitSetILl96ENS0_14ObExprInfoFlagELb1EEEmbb _Z14ob_numchars_mbPK13ObCharsetInfoPKcS3_ _ZN9oceanbase6common5ObObj10set_stringENS0_9ObObjTypeERKNS0_8ObStringE -MD5_Final -_ZN9oceanbase6common12ObKVCacheMap18clean_garbage_nodeERll -_ZN9oceanbase6common22ObKVCacheHazardStation6retireEm -_ZN9oceanbase6common19ObKVCacheHazardSlot6retireEmm -_ZN9oceanbase6common13ObVSliceAlloc4freeEPv -_ZN9oceanbase3sql13AllocOpHelperILi25EE5allocERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputElRPNS0_10ObOperatorE -_ZN9oceanbase3sql15ObTableModifyOpC2ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE _ZN9oceanbase6common18ObSimpleThreadPool4run1Ev _ZN9oceanbase6common13ObLightyQueue3popERPvl _ZN9oceanbase10logservice17ObLogApplyService6handleEPv _ZN9oceanbase10logservice13ObApplyStatus29submit_task_to_apply_service_ERNS0_18ObApplyServiceTaskE +_ZZN9oceanbase10logservice13ObApplyStatus19try_handle_cb_queueEPNS0_23ObApplyServiceQueueTaskERbENK4$_33clEPKc _ZN9oceanbase11transaction9ObTxLogCb10on_successEv _ZNK9oceanbase11transaction11ObCtxTxData18get_commit_versionEv _ZN9oceanbase11transaction14ObPartTransCtx14return_log_cb_EPNS0_9ObTxLogCbE _ZN9oceanbase8memtable18ObRedoLogGenerator13sync_log_succENS_5share3SCNERKNS0_15ObCallbackScopeE _ZN9oceanbase8memtable17ObMvccRowCallback8log_syncENS_5share3SCNE _ZN9oceanbase11transaction9tablelock17ObOBJLockCallback8log_syncENS_5share3SCNE -_ZN9oceanbase11transaction17ObTransCtxFactory7releaseEPNS0_10ObTransCtxE _ZN9oceanbase11transaction11ObCtxTxData14set_end_log_tsERKNS_5share3SCNE _ZN9oceanbase11transaction10ObTransCtx9test_lockEPNS0_9ObTxLogCbE -_ZN9oceanbase11transaction10ObTransCtx12set_exiting_Ev -_ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocENS_6common10SpinRWLockELl16384EE3delERKS2_PS3_ _ZN9oceanbase8memtable13ObMemtableCtx32remove_callbacks_for_fast_commitEv _ZN9oceanbase8memtable16ObTxCallbackList32remove_callbacks_for_fast_commitEPKNS0_16ObITransCallbackERb -_ZN9oceanbase6common18ObServerObjectPoolINS_11transaction14ObPartTransCtxEE13return_objectEPS3_ +_ZN9oceanbase11transaction10ObTransCtx12set_exiting_Ev +_ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocENS_6common10SpinRWLockELl16384EE3delERKS2_PS3_ _ZN9oceanbase11transaction10ObTransCtx24unregister_timeout_task_Ev _ZN9oceanbase11transaction12ObTransTimer23unregister_timeout_taskERNS0_14ObITimeoutTaskE _ZN9oceanbase11transaction14ObPartTransCtx7tx_end_Eb @@ -1139,248 +1237,251 @@ _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv _ZN9oceanbase6common15ObFIFOAllocator4freeEPv _ZN9oceanbase11transaction9tablelock12ObLockMemCtx21free_lock_op_callbackEPv _ZN9oceanbase8memtable24ObMemtableCtxCbAllocator4freeEPv -_ZNK9oceanbase11transaction11ObCtxTxData14get_end_log_tsEv -_ZN9oceanbase8memtable17ObMvccRowCallback19elr_trans_preparingEv _ZN9oceanbase8memtable15RowHolderMapper17reset_hash_holderERKNS_6common10ObTabletIDERKNS0_13ObMemtableKeyERKNS_11transaction9ObTransIDE +_ZN9oceanbase6common15ObLinearHashMapINS0_9ObIntWarpENS_11transaction9ObTransIDENS0_15UniqueMemMgrTagEE16load_access_bkt_ERKS2_RmRPNS6_6BucketE _ZN9oceanbase6common12ObSliceAlloc4freeEPv +_ZNK9oceanbase11transaction11ObCtxTxData14get_end_log_tsEv +_ZN9oceanbase8memtable17ObMvccRowCallback19elr_trans_preparingEv _ZN9oceanbase11transaction9tablelock12ObOBJLockMap18remove_lock_recordERKNS1_13ObTableLockOpE _ZN9oceanbase11transaction9tablelock12ObLockMemCtx18remove_lock_recordEPNS1_22ObMemCtxLockOpLinkNodeE _ZN9oceanbase8memtable9ObMvccRow13wakeup_waiterERKNS_6common10ObTabletIDERKNS0_13ObMemtableKeyE _ZN9oceanbase8memtable13ObLockWaitMgr6wakeupERKNS_6common10ObTabletIDERKNS0_13ObMemtableKeyE _ZN9oceanbase8memtable13ObLockWaitMgr6wakeupEm _ZZN9oceanbase8memtable13ObLockWaitMgr6wakeupEmENK4$_21clEPKc -_ZZN9oceanbase8memtable13ObLockWaitMgr6wakeupERKNS_6common10ObTabletIDERKNS0_13ObMemtableKeyEENK4$_43clEPKc.llvm.6150484154564822904 +_ZZN9oceanbase8memtable13ObLockWaitMgr6wakeupERKNS_6common10ObTabletIDERKNS0_13ObMemtableKeyEENK4$_43clEPKc.llvm.3524317861966783966 _ZNK9oceanbase8memtable13ObMemtableCtx14get_tx_end_scnEv _ZN9oceanbase11transaction11ObCtxTxData9set_stateEi _ZN9oceanbase11transaction11ObCtxTxData20insert_into_tx_tableEv _ZN9oceanbase7storage13ObTxDataTable6insertERPNS0_8ObTxDataE _ZNK9oceanbase7storage8ObITable13get_start_scnEv -_ZN9oceanbase7storage26ObTxDataMemtableWriteGuardD2Ev -_ZN9oceanbase7storage15ObTableHandleV2D1Ev -_ZN9oceanbase7storage15ObTableHandleV2D2Ev _ZN9oceanbase7storage19ObTxDataMemtableMgr27get_all_memtables_for_writeERNS0_26ObTxDataMemtableWriteGuardE _ZN9oceanbase7storage15ObTableHandleV29set_tableEPNS0_8ObITableEPNS0_18ObTenantMetaMemMgrENS2_9TableTypeE +_ZN9oceanbase7storage26ObTxDataMemtableWriteGuardD2Ev _ZN9oceanbase7storage13ObTxDataTable7insert_ERPNS0_8ObTxDataERNS0_26ObTxDataMemtableWriteGuardE _ZN9oceanbase7storage15ObTxDataHashMap6insertERKNS_11transaction9ObTransIDEPNS0_8ObTxDataE _ZN9oceanbase11transaction14ObPartTransCtx19notify_data_source_ENS0_10NotifyTypeERKNS_5share3SCNEbRKNS_6common9ObSEArrayINS0_14ObTxBufferNodeELl1ENS7_19ModulePageAllocatorELb0EEEb -_ZN9oceanbase11transaction14ObPartTransCtx7destroyEv -_ZN9oceanbase11transaction11ObCtxTxData7destroyEv -_ZN9oceanbase11transaction14ObPartTransCtx14reset_log_cbs_Ev -_ZN9oceanbase11transaction12ObTxExecInfo7destroyEv -_ZN9oceanbase8memtable13ObMemtableCtx5resetEv -_ZN9oceanbase8memtable18ObTransCallbackMgr5resetEv -_ZN9oceanbase11transaction12ObTxExecInfo5resetEv -_ZZN9oceanbase10logservice13ObApplyStatus19try_handle_cb_queueEPNS0_23ObApplyServiceQueueTaskERbENK4$_38clEPKc _ZN9oceanbase11transaction14ObPartTransCtx20post_tx_commit_resp_Ei -_ZZN9oceanbase10logservice13ObApplyStatus19try_handle_cb_queueEPNS0_23ObApplyServiceQueueTaskERbENK4$_33clEPKc -_ZN9oceanbase10logservice13ObApplyStatus19statistics_cb_cost_ERKNS_4palf3LSNERKNS_5share3SCNElllll +_ZZN9oceanbase10logservice13ObApplyStatus19try_handle_cb_queueEPNS0_23ObApplyServiceQueueTaskERbENK4$_38clEPKc _ZN9oceanbase11transaction14ObPartTransCtx31wait_gts_elapse_commit_version_ERb _ZN9oceanbase11transaction7ObTsMgr15wait_gts_elapseEmRKNS_5share3SCNEPNS0_10ObTsCbTaskERb _ZN9oceanbase11transaction11ObGtsSource15wait_gts_elapseElPNS0_10ObTsCbTaskERb _ZN9oceanbase11transaction7ObTsMgr23get_ts_source_info_opt_EmRNS0_19ObTsSourceInfoGuardEbb +_ZN9oceanbase10logservice13ObApplyStatus19statistics_cb_cost_ERKNS_4palf3LSNERKNS_5share3SCNElllll +_ZZN9oceanbase10logservice13ObApplyStatus29submit_task_to_apply_service_ERNS0_18ObApplyServiceTaskEENK4$_77clEPKc +_ZN9oceanbase4palf17LogIOFlushLogTask10free_this_EPNS0_12IPalfEnvImplE +_ZN9oceanbase4palf11PalfEnvImpl17get_log_allocatorEv _ZN9oceanbase10logservice17ObLogApplyService9push_taskEPNS0_18ObApplyServiceTaskE _ZN9oceanbase3lib15TG_QUEUE_THREAD9push_taskEPv _ZN9oceanbase6common13ObLightyQueue4pushEPv -_ZZN9oceanbase10logservice13ObApplyStatus29submit_task_to_apply_service_ERNS0_18ObApplyServiceTaskEENK4$_77clEPKc +_ZNK9oceanbase7storage8ObTxData25is_valid_in_tx_data_tableEv _ZN9oceanbase4palf21LogIOTaskCbThreadPool6handleEPv -_ZNK9oceanbase4palf14PalfHandleImpl14get_palf_epochERl _ZN9oceanbase4palf20IPalfHandleImplGuardD1Ev -_ZN9oceanbase4palf17LogIOFlushLogTask10free_this_EPNS0_12IPalfEnvImplE -_ZN9oceanbase4palf11PalfEnvImpl17get_log_allocatorEv _ZN9oceanbase4palf11PalfEnvImpl23revert_palf_handle_implEPNS0_15IPalfHandleImplE -_ZN9oceanbase4palf11PalfEnvImpl20get_palf_handle_implElRNS0_20IPalfHandleImplGuardE -_ZNK9oceanbase4palf14PalfHandleImpl17check_can_be_usedEv -_ZN9oceanbase4palf17LogIOFlushLogTaskD2Ev -_ZZN9oceanbase8memtable13ObLockWaitMgr6wakeupEmENK4$_22clEPKc -_ZNK9oceanbase7storage8ObTxData25is_valid_in_tx_data_tableEv -_ZZN9oceanbase11transaction14ObTxVersionMgr20update_max_commit_tsERKNS_5share3SCNEbENKUlPKcE_clES7_ _ZN9oceanbase11transaction25ObMulSourceTxDataNotifier6notifyERKNS_6common9ObSEArrayINS0_14ObTxBufferNodeELl1ENS2_19ModulePageAllocatorELb0EEENS0_10NotifyTypeERKNS0_24ObMulSourceDataNotifyArgEPNS0_14ObPartTransCtxERl -_ZZN9oceanbase8memtable13ObLockWaitMgr6wakeupERKNS_11transaction9ObTransIDEENK4$_44clEPKc.llvm.6150484154564822904 -_ZN9oceanbase4palf11PalfEnvImpl20get_palf_handle_implElRPNS0_15IPalfHandleImplE -_ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_15IPalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE3getERKS3_RPS4_ -_ZN9oceanbase6common6DCHashINS_4palf5LSKeyELl8EE3getERKS3_RPNS0_11KeyHashNodeIS3_EE -_ZN9oceanbase6common6DCHashINS_4palf5LSKeyELl8EE6Handle10search_preEmRPNS0_8HashNodeE -_ZN9oceanbase6common6DCHashINS_4palf5LSKeyELl8EE6Handle6retireEil +_ZZN9oceanbase10logservice13ObApplyStatus19try_handle_cb_queueEPNS0_23ObApplyServiceQueueTaskERbENK4$_30clEPKc +_ZZN9oceanbase11transaction14ObTxVersionMgr20update_max_commit_tsERKNS_5share3SCNEbENKUlPKcE_clES7_ +_ZZN9oceanbase8memtable13ObLockWaitMgr6wakeupEmENK4$_22clEPKc _ZN9oceanbase4palf17LogIOFlushLogTask14after_consume_EPNS0_12IPalfEnvImplE +_ZZN9oceanbase4palf11PalfEnvImpl20get_palf_handle_implElRNS0_20IPalfHandleImplGuardEENK5$_797clEPKc.llvm.1044425045905407792 _ZN9oceanbase4palf14PalfHandleImpl21inner_after_flush_logERKNS0_13FlushLogCbCtxE -_ZZN9oceanbase4palf16LogSlidingWindow15after_flush_logERKNS0_13FlushLogCbCtxEENK5$_213clEPKc +_ZZN9oceanbase4palf16LogSlidingWindow15after_flush_logERKNS0_13FlushLogCbCtxEENK5$_217clEPKc +_ZZN9oceanbase10logservice13ObApplyStatus19try_handle_cb_queueEPNS0_23ObApplyServiceQueueTaskERbENK4$_39clEPKc +_ZN9oceanbase4palf17LogIOFlushLogTaskD2Ev +_ZN9oceanbase11transaction10ObTransCtx29print_trace_log_if_necessary_Ev _ZN9oceanbase4palf11LogWriteBufD1Ev _ZN9oceanbase4palf11LogWriteBufD2Ev _ZN9oceanbase4palf16LogSlidingWindow15after_flush_logERKNS0_13FlushLogCbCtxE +_ZNK9oceanbase4palf16LogSlidingWindow23get_last_submit_log_id_Ev _ZN9oceanbase4palf16LogSlidingWindow32inc_update_max_flushed_log_info_ERKNS0_3LSNES4_RKl _ZN9oceanbase6common8TCRWLock6wrlockEl -_ZNK9oceanbase4palf16LogSlidingWindow23get_last_submit_log_id_Ev _ZN9oceanbase4palf16LogSlidingWindow22gen_committed_end_lsn_ERNS0_3LSNE +_ZSt16__insertion_sortIPN9oceanbase4palf3LSNEN9__gnu_cxx5__ops15_Iter_comp_iterINS1_10LSNCompareEEEEvT_S9_T0_ _ZN9oceanbase4palf16LogSlidingWindow26try_advance_committed_lsn_ERKNS0_3LSNE +_ZZNK9oceanbase4palf16LogSlidingWindow17get_majority_lsn_ERKNS_6common16ObMemberListBaseILl7EEElRNS0_3LSNEENK5$_339clEPKc _ZNK9oceanbase4palf16LogSlidingWindow17get_majority_lsn_ERKNS_6common16ObMemberListBaseILl7EEElRNS0_3LSNE +_ZSt16__introsort_loopIPN9oceanbase4palf3LSNElN9__gnu_cxx5__ops15_Iter_comp_iterINS1_10LSNCompareEEEEvT_S9_T0_T1_ +_ZN9oceanbase4palf16LogSlidingWindow25try_update_match_lsn_map_ERKNS_6common6ObAddrERKNS0_3LSNE _ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf9LsnTsInfoENS0_14ShareMemMgrTagEE7do_get_ERKS2_RS4_ _ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf9LsnTsInfoENS0_14ShareMemMgrTagEE16load_access_bkt_ERKS2_RmRPNS6_6BucketE _ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf9LsnTsInfoENS0_14ShareMemMgrTagEE7shrink_Ev -_ZSt16__insertion_sortIPN9oceanbase4palf3LSNEN9__gnu_cxx5__ops15_Iter_comp_iterINS1_10LSNCompareEEEEvT_S9_T0_ -_ZN9oceanbase4palf16LogSlidingWindow25feedback_freeze_last_log_Ev -_ZN9oceanbase4palf16LogSlidingWindow21handle_committed_log_Ev -_ZNK9oceanbase4palf16LogSlidingWindow32is_all_committed_log_slided_out_ERNS0_3LSNERlS3_S3_ -_ZNK9oceanbase4palf16LogSlidingWindow24get_last_slide_log_info_ERlRNS_5share3SCNERNS0_3LSNES7_S2_S2_ -_ZN9oceanbase6common8TCRWLock21RLockGuardWithTimeoutD2Ev -_ZN9oceanbase4palf12LSNAllocator10try_freezeERNS0_3LSNERl -_ZN9oceanbase4palf16LogSlidingWindow23handle_next_submit_log_ERb -_ZN9oceanbase6common8ObMember5resetEv -_ZNK9oceanbase4palf16LogSlidingWindow25get_last_submit_log_info_ERNS0_3LSNES3_RlS4_ -_ZN9oceanbase4palf19LogGroupEntryHeader8generateEbbRKNS0_11LogWriteBufElRKNS_5share3SCNElRKNS0_3LSNERKlRl -_ZN9oceanbase4palf19LogGroupEntryHeader23calculate_log_checksum_EbRKNS0_11LogWriteBufElRl -_ZN9oceanbase4palf14LogEntryHeader11deserializeEPKclRl -_ZN9oceanbase5share3SCN35fixed_deserialize_without_transformEPKclRl -_ZNK9oceanbase4palf19LogGroupEntryHeader28get_header_parity_check_res_Ev -_ZNK9oceanbase4palf19LogGroupEntryHeader9serializeEPclRl -_ZN9oceanbase4palf14LogGroupBuffer11get_log_bufERKNS0_3LSNElRNS0_11LogWriteBufE -_ZN9oceanbase4palf16LogSlidingWindow25set_last_submit_log_info_ERKNS0_3LSNES4_lRKl -_ZZN9oceanbase4palf14LogGroupBuffer11get_log_bufERKNS0_3LSNElRNS0_11LogWriteBufEENK5$_743clEPKc -_ZN9oceanbase6common13ObSEArrayImplINS0_8ObMemberELl7ENS0_19ModulePageAllocatorELb0EED2Ev -_ZN9oceanbase6common16ObMemberListBaseILl7EE13remove_serverERKNS0_6ObAddrE -_ZN9oceanbase4palf16LogSlidingWindow25try_freeze_last_log_task_ElRKNS0_3LSNERb -_ZN9oceanbase4palf7LogTask11try_freeze_ERKNS0_3LSNE -_ZZN9oceanbase4palf9LogEngine21submit_flush_log_taskERKNS0_13FlushLogCbCtxERKNS0_11LogWriteBufEENK5$_554clEPKc.llvm.12216593503935591459 _ZNK9oceanbase4palf12LogConfigMgr51get_log_sync_member_list_for_generate_committed_lsnERNS_6common16ObMemberListBaseILl7EEERlS5_S6_RbRNS0_3LSNE -_ZSt16__introsort_loopIPN9oceanbase4palf3LSNElN9__gnu_cxx5__ops15_Iter_comp_iterINS1_10LSNCompareEEEEvT_S9_T0_T1_ -_ZNK9oceanbase4palf12LogConfigMgr17get_children_listERNS_6common15BaseLearnerListILl15ENS0_10LogLearnerEEE -_ZN9oceanbase6common8TCRWLock6rdlockEl -_ZZN9oceanbase4palf16LogSlidingWindow23handle_next_submit_log_ERbENK5$_172clEPKc -_ZN9oceanbase4palf16LogSlidingWindow25try_update_match_lsn_map_ERKNS_6common6ObAddrERKNS0_3LSNE -_ZTWN9oceanbase6common7ObLatch12current_waitE -_ZZN9oceanbase4palf7LogTask18update_header_infoERKNS0_3LSNElENK5$_666clEPKc -_ZN9oceanbase4palf16LogSlidingWindow10sliding_cbElPKNS0_22FixedSlidingWindowSlotE -_ZN9oceanbase6common10ObMiniStat10ObStatItem4statEl -_ZN9oceanbase4palf11LogChecksum21verify_accum_checksumEll -_ZN9oceanbase4palf16LogSlidingWindow31try_update_last_slide_log_info_ElRKNS_5share3SCNERKNS0_3LSNES8_RKll -_ZN9oceanbase4palf15PalfFSCbWrapper14update_end_lsnElRKNS0_3LSNEl -_ZN9oceanbase10logservice11ObApplyFsCb14update_end_lsnElRKNS_4palf3LSNEl -_ZN9oceanbase10logservice12ObReplayFsCb14update_end_lsnElRKNS_4palf3LSNEl -_ZN9oceanbase4palf11LogChecksum21verify_accum_checksumElllRl -_ZZN9oceanbase10logservice13ObApplyStatus19try_handle_cb_queueEPNS0_23ObApplyServiceQueueTaskERbENK4$_30clEPKc -_ZNK9oceanbase4palf12LogConfigMgr24get_log_sync_member_listERNS_6common16ObMemberListBaseILl7EEERl _ZZN9oceanbase4palf21LogIOTaskCbThreadPool6handleEPvENK5$_949clEPKc -_ZN9oceanbase11transaction10ObTransCtx29print_trace_log_if_necessary_Ev -_ZZN9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE7revert_ElENKUlPKcE3_clES5_ -_ZZN9oceanbase10logservice13ObApplyStatus29submit_task_to_apply_service_ERNS0_18ObApplyServiceTaskEENK4$_78clEPKc -_ZN9oceanbase6common15BaseLearnerListILl2000ENS0_8ObMemberEE6appendERKS3_ -_ZZNK9oceanbase4palf19LogGroupEntryHeader9serializeEPclRlENK5$_819clEPKc -_ZZN9oceanbase4palf19LogGroupEntryHeader23update_header_checksum_EvENK5$_811clEPKc.llvm.12216593503935591459 -_ZZN9oceanbase4palf14PalfHandleImpl21inner_after_flush_logERKNS0_13FlushLogCbCtxEENK6$_1378clEPKc +_ZZN9oceanbase8memtable13ObLockWaitMgr6wakeupERKNS_11transaction9ObTransIDEENK4$_44clEPKc.llvm.3524317861966783966 _ZZN9oceanbase10logservice17ObLogApplyService19handle_submit_task_EPNS0_13ObApplyStatusEENK5$_179clEPKc _ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf9LsnTsInfoENS0_14ShareMemMgrTagEE17load_factor_ctrl_Em -_ZN9oceanbase11transaction9tablelock12ObLockMemCtx5resetEv -_ZZNK9oceanbase4palf16LogSlidingWindow32is_all_committed_log_slided_out_ERNS0_3LSNERlS3_S3_ENK5$_259clEPKc.llvm.456594663833244305 -_ZZN9oceanbase4palf11LogChecksum22acquire_accum_checksumElRlENK5$_173clEPKc.llvm.12216593503935591459 -_ZN9oceanbase4palf9LogEngine21submit_flush_log_taskERKNS0_13FlushLogCbCtxERKNS0_11LogWriteBufE -_ZN9oceanbase6common22ObTenantMutilAllocator27alloc_log_io_flush_log_taskEll -_ZN9oceanbase4palf17LogIOFlushLogTaskC1Ell -_ZZN9oceanbase4palf17LogIOFlushLogTask4initERKNS0_13FlushLogCbCtxERKNS0_11LogWriteBufEENK5$_837clEPKc.llvm.12216593503935591459 -_ZZN9oceanbase10logservice13ObApplyStatus19try_handle_cb_queueEPNS0_23ObApplyServiceQueueTaskERbENK4$_39clEPKc -_ZZN9oceanbase4palf11LogChecksum21verify_accum_checksumEllENK5$_175clEPKc.llvm.12216593503935591459 -_ZZNK9oceanbase4palf16LogSlidingWindow17get_majority_lsn_ERKNS_6common16ObMemberListBaseILl7EEElRNS0_3LSNEENK5$_334clEPKc -_ZZN9oceanbase4palf16LogSlidingWindow23handle_next_submit_log_ERbENK5$_187clEPKc -_ZZN9oceanbase4palf17LogIOFlushLogTask14after_consume_EPNS0_12IPalfEnvImplEENK5$_851clEPKc -_ZZN9oceanbase4palf19LogGroupEntryHeader8generateEbbRKNS0_11LogWriteBufElRKNS_5share3SCNElRKNS0_3LSNERKlRlENK5$_792clEPKc.llvm.12216593503935591459 -_ZZN9oceanbase4palf16LogSlidingWindow28generate_group_entry_header_ElPNS0_7LogTaskERNS0_19LogGroupEntryHeaderERlRbENK5$_193clEPKc -_ZZN9oceanbase4palf16LogSlidingWindow21handle_committed_log_EvENK5$_166clEPKc -_ZZN9oceanbase4palf11LogChecksum21verify_accum_checksumElllRlENK5$_176clEPKc -_ZZN9oceanbase4palf19LogGroupEntryHeader23calculate_log_checksum_EbRKNS0_11LogWriteBufElRlENK5$_810clEPKc -_ZZN9oceanbase4palf7LogTask11try_freeze_ERKNS0_3LSNEENK5$_670clEPKc -_ZZN9oceanbase4palf16LogSlidingWindow21handle_committed_log_EvENK5$_167clEPKc -_ZZN9oceanbase10logservice13ObApplyStatus29update_palf_committed_end_lsnERKNS_4palf3LSNElENK4$_58clEPKc -_ZN9oceanbase6common6DCHashINS_4palf5LSKeyELl8EE15do_pending_taskEPNS0_7DCArrayE +_ZTWN9oceanbase6common7ObLatch12current_waitE +_ZZN9oceanbase4palf16LogSlidingWindow25try_update_match_lsn_map_ERKNS_6common6ObAddrERKNS0_3LSNEENK5$_452clEPKc +_ZZN9oceanbase4palf17LogIOFlushLogTask7destroyEvENK5$_838clEPKc.llvm.9524917497784007230 _ZZN9oceanbase10logservice13ObApplyStatus20try_submit_cb_queuesEvENK4$_27clEPKc -_ZZN9oceanbase4palf16LogSlidingWindow25try_freeze_last_log_task_ElRKNS0_3LSNERbENK5$_199clEPKc -_ZThn24_N9oceanbase11transaction20ObKeepAliveLSHandler10on_successEv -_ZZN9oceanbase4palf16LogSlidingWindow25try_update_match_lsn_map_ERKNS_6common6ObAddrERKNS0_3LSNEENK5$_447clEPKc -_ZZN9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE5slideElPNS0_16ISlidingCallBackEENKUlPKcE5_clES7_ -_ZZN9oceanbase4palf17LogIOFlushLogTask7destroyEvENK5$_838clEPKc.llvm.12216593503935591459 -_ZZN9oceanbase4palf16LogSlidingWindow15after_flush_logERKNS0_13FlushLogCbCtxEENK5$_223clEPKc -_ZZN9oceanbase4palf16LogSlidingWindow23handle_next_submit_log_ERbENK5$_177clEPKc -_ZZN9oceanbase4palf11LogIOWorker14submit_io_taskEPNS0_9LogIOTaskEENK5$_960clEPKc.llvm.12216593503935591459 +_ZNK9oceanbase8memtable33ObRemoveSyncCallbacksWCondFunctor11is_iter_endEPNS0_16ObITransCallbackE +_ZZN9oceanbase10logservice13ObApplyStatus29submit_task_to_apply_service_ERNS0_18ObApplyServiceTaskEENK4$_78clEPKc +_ZZN9oceanbase4palf17LogIOFlushLogTask14after_consume_EPNS0_12IPalfEnvImplEENK5$_851clEPKc +_ZZN9oceanbase4palf16LogSlidingWindow15after_flush_logERKNS0_13FlushLogCbCtxEENK5$_228clEPKc _ZN9oceanbase6common12ObSliceAlloc12add_to_blistEPNS0_13ObBlockSlicerE -_ZZN9oceanbase4palf16LogSlidingWindow25set_last_submit_log_info_ERKNS0_3LSNES4_lRKlENK5$_225clEPKc -_ZZN9oceanbase4palf16LogSlidingWindow31try_update_last_slide_log_info_ElRKNS_5share3SCNERKNS0_3LSNES8_RKllENK5$_227clEPKc -_ZZN9oceanbase4palf16LogSlidingWindow26try_advance_committed_lsn_ERKNS0_3LSNEENK5$_229clEPKc.llvm.456594663833244305 -_ZZN9oceanbase4palf16LogSlidingWindow32inc_update_max_flushed_log_info_ERKNS0_3LSNES4_RKlENK5$_234clEPKc -_ZZN9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE5slideElPNS0_16ISlidingCallBackEENKUlPKcE1_clES7_ -_ZNK9oceanbase11transaction18ObTransTimeoutTask4hashEv -_ZN9oceanbase8memtable10ObMemtable11row_compactEPNS0_9ObMvccRowENS_5share3SCNEl -_ZN9oceanbase6common11ObTimeGuardC2EPKcl +_ZZN9oceanbase4palf14PalfHandleImpl21inner_after_flush_logERKNS0_13FlushLogCbCtxEENK6$_1383clEPKc +_ZZN9oceanbase4palf16LogSlidingWindow32inc_update_max_flushed_log_info_ERKNS0_3LSNES4_RKlENK5$_239clEPKc _ZN9oceanbase8memtable22ObMemtableRowCompactor7compactENS_5share3SCNEl _ZN9oceanbase8memtable22ObMemtableRowCompactor20insert_compact_node_EPNS0_15ObMvccTransNodeES3_ _ZN9oceanbase8memtable22ObMemtableRowCompactor23construct_compact_node_ENS_5share3SCNElPNS0_15ObMvccTransNodeE -_ZN9oceanbase7storage14ObTxTableGuardD2Ev -_ZN9oceanbase12blocksstable11ObRowWriter5writeElRKNS0_10ObDatumRowERPcRl -_ZN9oceanbase5share10mtl_mallocElRKNS_3lib7ObLabelE _ZN9oceanbase12blocksstable10ObDatumRow7reserveElb +_ZN9oceanbase7storage14ObTxTableGuardD2Ev +_ZN9oceanbase5share3SCN5minusERKS1_m +_ZN9oceanbase8memtable22ObMemtableRowCompactor4initEPNS0_9ObMvccRowEPNS0_10ObMemtableEPNS_6common12ObIAllocatorE +_ZN9oceanbase8memtable10ObMemtable11row_compactEPNS0_9ObMvccRowENS_5share3SCNEl _ZN9oceanbase8memtable22ObMemtableRowCompactor15find_start_pos_ENS_5share3SCNERPNS0_15ObMvccTransNodeE _ZN9oceanbase8memtable10ObMemtable18get_tx_table_guardERNS_7storage14ObTxTableGuardE -_ZZN9oceanbase4palf14PalfHandleImpl21inner_after_flush_logERKNS0_13FlushLogCbCtxEENK6$_1380clEPKc -_ZN9oceanbase11transaction10ObTsWorker6handleEPv +_ZZN9oceanbase4palf16LogSlidingWindow26try_advance_committed_lsn_ERKNS0_3LSNEENK5$_234clEPKc.llvm.1044425045905407792 +_ZN9oceanbase5share10mtl_mallocElRKNS_3lib7ObLabelE +_ZN9oceanbase12blocksstable11ObRowWriter5writeElRKNS0_10ObDatumRowERPcRl _ZN9oceanbase7storage17ObTxDataMiniCacheC2Ev -_ZN9oceanbase12blocksstable20ObStorageDatumBuffer7reserveElb -_ZN9oceanbase6common12ObSliceAlloc13destroy_blockEPNS0_13ObBlockSlicerE -_ZN9oceanbase5share3SCN5minusERKS1_m +_ZZN9oceanbase4palf14PalfHandleImpl21inner_after_flush_logERKNS0_13FlushLogCbCtxEENK6$_1385clEPKc _ZN9oceanbase12blocksstable10ObDatumRow4initEl -_ZN9oceanbase8memtable22ObMemtableRowCompactor4initEPNS0_9ObMvccRowEPNS0_10ObMemtableEPNS_6common12ObIAllocatorE -_ZN9oceanbase6common6DCHashINS_4palf5LSKeyELl8EE24alloc_and_init_cur_arrayEv -_ZNK9oceanbase7storage19ObStorageMetaHandle8is_validEv -_ZN9oceanbase11transaction20ObKeepAliveLSHandler10on_successEv -_ZN9oceanbase8memtable9ObMvccRow17unlink_trans_nodeERKNS0_15ObMvccTransNodeE -_ZN9oceanbase11transaction7ObTsMgr17handle_gts_resultEmli +_ZN9oceanbase11transaction10ObTsWorker6handleEPv _ZN9oceanbase11transaction11ObGtsSource37get_gts_from_local_timestamp_service_ERNS_6common6ObAddrERlRNS2_13ObMonotonicTsE -_ZN9oceanbase10logservice18ObLogReplayService6handleEPv -_ZN9oceanbase10logservice14ObReplayStatus25batch_push_all_task_queueEv +_ZN9oceanbase6common8TCRWLock10try_rdlockEv +_ZN9oceanbase6common15ObLinearHashMapINS0_9ObIntWarpENS_11transaction9ObTransIDENS0_15UniqueMemMgrTagEE7expand_Ev +_ZN9oceanbase6common15ObLinearHashMapINS0_9ObIntWarpENS_11transaction9ObTransIDENS0_15UniqueMemMgrTagEE24split_expand_d_seg_bkts_EmmPNS6_6BucketES8_ +_ZN9oceanbase6common15ObLinearHashMapINS0_9ObIntWarpENS_11transaction9ObTransIDENS0_15UniqueMemMgrTagEE9cons_seg_Em +_ZN9oceanbase6common15ObLinearHashMapINS0_9ObIntWarpENS_11transaction9ObTransIDENS0_15UniqueMemMgrTagEE23load_expand_d_seg_bkts_EmmRPNS6_6BucketES9_ +_ZN9oceanbase11transaction11ObGtsSource15get_gts_leader_ERNS_6common6ObAddrE +MD5_Final +_ZN9oceanbase3lib17ObTenantMemoryMgr10free_chunkEPNS0_6AChunkERKNS0_9ObMemAttrE +_ZN9oceanbase3lib17ObTenantMemoryMgr11update_holdElmRKNS0_7ObLabelERb +_ZN9oceanbase3lib17ObTenantMemoryMgr11free_chunk_EPNS0_6AChunkERKNS0_9ObMemAttrE +_ZN9oceanbase3lib10AChunkList4pushEPNS0_6AChunkE +_ZN9oceanbase6common12ObLatchMutex6unlockEv +_ZN9oceanbase6common12ObKVCacheMap18clean_garbage_nodeERll +_ZN9oceanbase6common22ObKVCacheHazardStation6retireEm +_ZN9oceanbase6common19ObKVCacheHazardSlot6retireEmm +_ZN9oceanbase6common13ObVSliceAlloc4freeEPv +_ZN9oceanbase3sql13AllocOpHelperILi25EE5allocERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputElRPNS0_10ObOperatorE +_ZN9oceanbase3sql15ObTableModifyOpC2ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE _ZN9oceanbase3sql13AllocOpHelperILi2EE5allocERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputElRPNS0_10ObOperatorE _ZN9oceanbase12blocksstable17ObTmpFileIOHandleC1Ev _ZN9oceanbase12blocksstable17ObTmpFileIOHandleC2Ev _ZN9oceanbase6common8ObRandomC1Ev _ZN9oceanbase6common8ObRandomC2Ev +_ZN9oceanbase3sql13AllocOpHelperILi30EE5allocERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputElRPNS0_10ObOperatorE +_ZN9oceanbase3sql10ObOperatorC2ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE +_ZNK9oceanbase4palf14PalfHandleImpl14get_palf_epochERl _ZN9oceanbase11transaction30ObTransDeadlockDetectorAdapter36maintain_deadlock_info_when_end_stmtERNS_3sql13ObExecContextEb _ZN9oceanbase6common11ObArrayImplINS_11transaction16ObTransIDAndAddrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE6assignERKNS0_8ObIArrayIS3_EE _ZN9oceanbase6common11ObArrayImplINS_11transaction16ObTransIDAndAddrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE7destroyEv _ZN9oceanbase6common6DCHashINS_5share8detector13UserBinaryKeyELl8EE3getERKS4_RPNS0_11KeyHashNodeIS4_EE -_ZNK9oceanbase5share8detector13UserBinaryKey7compareERKS2_ -_ZN9oceanbase3sql13AllocOpHelperILi30EE5allocERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputElRPNS0_10ObOperatorE -_ZN9oceanbase3sql10ObOperatorC2ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE -_ZN9oceanbase10rootserver26ObMigrateUnitFinishChecker23try_finish_migrate_unitERKNS_6common4hash12ObReferedMapImNS0_14DRUnitStatInfoEEE -_ULx86_64_r_uc_addr -_ZN9oceanbase3sql13ObCmdExecutor7executeERNS0_13ObExecContextERNS0_6ObICmdE -_ZZN9oceanbase3sql13ObCmdExecutor7executeERNS0_13ObExecContextERNS0_6ObICmdEENK4$_22clEv -_ZZN9oceanbase3sql13ObCmdExecutor7executeERNS0_13ObExecContextERNS0_6ObICmdEENK4$_21clEv -_ZN9oceanbase3sql17ObSqlTransControl20explicit_start_transERNS0_13ObExecContextEbNS_6common8ObStringE -_ZN9oceanbase11transaction14ObTransService8start_txERNS0_8ObTxDescERKNS0_9ObTxParamERKNS0_9ObTransIDE -_ZNSt17_Function_handlerIFiRN9oceanbase11transaction9ObTransIDEESt5_BindIFMNS1_14ObTransServiceEFiS3_EPS6_St12_PlaceholderILi1EEEEE9_M_invokeERKSt9_Any_dataS3_ -_ZN9oceanbase11transaction11ObTxDescMgr3addERNS0_8ObTxDescE -_ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocENS_6common10SpinRWLockELl65536EE8insert__ERKS2_PS3_iPSB_ -_ZN9oceanbase11transaction14ObTransService12gen_trans_idERNS0_9ObTransIDE -_ZZN9oceanbase11transaction11ObTxDescMgr3addERNS0_8ObTxDescEENK6$_1126clEPKc -_ZN9oceanbase11transaction14ObTransService10acquire_txERPNS0_8ObTxDescEj -_ZN9oceanbase11transaction11ObTxDescMgr5allocERPNS0_8ObTxDescE -_ZN9oceanbase11transaction8ObTxDescC1Ev -_ZN9oceanbase11transaction8ObTxDescC2Ev -_ZN9oceanbase3sql18ObEndTransExecutor9end_transERNS0_13ObExecContextERNS0_14ObEndTransStmtE -_ZN9oceanbase11transaction11ObGtiSource12get_trans_idERl -_ZZN9oceanbase11transaction14ObTransService10release_txERNS0_8ObTxDescEENK6$_1654clEPKc -_ZN9oceanbase3sql17ObSqlTransControl18explicit_end_transERNS0_13ObExecContextEbNS_6common8ObStringE -_ZN9oceanbase3sql17ObSqlTransControl9end_transERNS0_13ObExecContextEbbPNS0_23ObEndTransAsyncCallbackEb -_ZN9oceanbase3sql17ObSqlTransControl13do_end_trans_EPNS0_16ObSQLSessionInfoEbblPNS0_23ObEndTransAsyncCallbackE -_ZN9oceanbase3sql15ObSQLSessionMgr15inc_session_refEPKNS0_16ObSQLSessionInfoE -_ZN9oceanbase5share8detector21ObDeadLockDetectorMgr20check_detector_existINS_11transaction9ObTransIDEEEiRKT_Rb -_ZN9oceanbase6common12ScopedLambdaIZNS_11transaction14ObTransService16submit_commit_txERNS2_8ObTxDescElRNS2_13ObITxCallbackEPKNS0_8ObStringEE6$_1684ED2Ev -_ZNK9oceanbase11transaction9ObTransID9serializeEPclRl -_ZZN9oceanbase11transaction14ObTransService13do_commit_tx_ERNS0_8ObTxDescElRNS0_13ObITxCallbackERNS_5share3SCNEENK6$_1216clEPKc -_ZN9oceanbase11transaction14ObTransService16submit_commit_txERNS0_8ObTxDescElRNS0_13ObITxCallbackEPKNS_6common8ObStringE -_ZN9oceanbase11transaction8ObTxDesc13set_commit_cbEPNS0_13ObITxCallbackE -_ZN9oceanbase11transaction10ObTransCtx19set_app_trace_info_ERKNS_6common8ObStringE -_ZN9oceanbase11transaction11ObTraceInfo18set_app_trace_infoERKNS_6common8ObStringE -_ZZN9oceanbase11transaction14ObTransService22decide_tx_commit_info_ERNS0_8ObTxDescERPNS0_8ObTxPartEENK6$_1248clEPKc -_ZN9oceanbase11transaction14ObTransService22decide_tx_commit_info_ERNS0_8ObTxDescERPNS0_8ObTxPartE -_ZN9oceanbase6common13ObLinkHashMapINS_5share8detector13UserBinaryKeyENS3_19ObIDeadLockDetectorENS3_21ObDeadLockDetectorMgr16InnerAllocHandleENS0_9RefHandleELl8EE3getERKS4_RPS5_ -_ZN9oceanbase11transaction14ObTransService19local_ls_commit_tx_ERKNS0_9ObTransIDERKNS_5share6ObLSIDERKNS_6common9ObSEArrayIS6_Ll3ENS9_19ModulePageAllocatorELb0EEERKlRKNS9_8ObStringESG_NS5_3SCNERSK_RKNS9_6ObAddrE -_ZN9oceanbase6common11ObQSyncLock6rdlockEv -_ZN9oceanbase11transaction10ObTransCtx8set_stc_ENS_6common13ObMonotonicTsE +_ZZN9oceanbase11transaction30ObTransDeadlockDetectorAdapter36maintain_deadlock_info_when_end_stmtERNS_3sql13ObExecContextEbENK5$_724clEPKc +_ZN9oceanbase11transaction23ObTenantWeakReadService4run1Ev +_ZN9oceanbase6common6ObCond9timedwaitEl +_ZN9oceanbase6common11ObTimeGuardC2EPKcl +_ZN9oceanbase11transaction23ObTenantWeakReadService15do_thread_task_ElRl +_ZN9oceanbase11transaction23ObTenantWeakReadService36generate_tenant_weak_read_timestamp_Eb +_ZNSt14_Function_baseD2Ev +_ZN9oceanbase6common14SpinWLockGuardD2Ev +_ZN9oceanbase11transaction7ObTsMgr12get_instanceEv +_ZNSt14_Function_base13_Base_managerIZN9oceanbase11transaction14ObWeakReadUtil35max_stale_time_for_weak_consistencyEmlE5$_252E10_M_managerERSt9_Any_dataRKS6_St18_Manager_operation.llvm.633415549657061134 +_ZN9oceanbase11transaction14ObWeakReadUtil30generate_min_weak_read_versionEmRNS_5share3SCNE +_ZNSt14_Function_base13_Base_managerIZN9oceanbase11transaction14ObWeakReadUtil30generate_min_weak_read_versionEmRNS1_5share3SCNEE5$_245E10_M_managerERSt9_Any_dataRKS9_St18_Manager_operation +_ZNSt17_Function_handlerIFvRKN9oceanbase3omt14ObTenantConfigEEZNS0_11transaction14ObWeakReadUtil30generate_min_weak_read_versionEmRNS0_5share3SCNEE5$_245E9_M_invokeERKSt9_Any_dataS4_ +_ZN9oceanbase5share3SCN15convert_from_tsEm +_ZN9oceanbase11transaction23ObTenantWeakReadService12scan_all_ls_EPNS_7storage11ObLSServiceE +_ZN9oceanbase7storage11ObLSService11get_ls_iterERNS_6common13ObSharedGuardINS0_12ObLSIteratorEEENS0_10ObLSGetModE +_ZN9oceanbase6common13ObSharedGuardINS_7storage12ObLSIteratorEE5resetEv +_ZNK9oceanbase6common10ObFunctionIFvPNS_7storage12ObLSIteratorEEE7DerivedIZNS2_11ObLSService11get_ls_iterERNS0_13ObSharedGuardIS3_EENS2_10ObLSGetModEE5$_422E6invokeES4_$d0b61f4535426365edc8f0d03c52496a +_ZN9oceanbase6common11ObArrayImplIPNS_7storage4ObLSENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEED2Ev +_ZN9oceanbase11transaction14ObWeakReadUtil35max_stale_time_for_weak_consistencyEml +_ZNSt14_Function_base13_Base_managerIZN9oceanbase11transaction14ObWeakReadUtil35max_stale_time_for_weak_consistencyEmlE5$_251E10_M_managerERSt9_Any_dataRKS6_St18_Manager_operation.llvm.633415549657061134 +_ZNK9oceanbase3omt17ObTenantConfigMgr18read_tenant_configEmmRKSt8functionIFvRKNS0_14ObTenantConfigEEERKS2_IFvvEE +_ZN9oceanbase11transaction23ObTenantWeakReadService10handle_ls_ERNS_7storage4ObLSE +_ZNK9oceanbase5share3SCN13convert_to_tsEb +_ZN9oceanbase11transaction32ObTenantWeakReadServerVersionMgr18ServerVersionInner21update_with_part_infoElbbNS_5share3SCNE +_ZN9oceanbase7storage12ObLSIterator5resetEv +_ZN9oceanbase7storage14ObLSWRSHandler38generate_ls_weak_read_snapshot_versionERNS0_4ObLSERbS4_RNS_5share3SCNEl +_ZN9oceanbase7storage8ObLSMeta21ObReentrantRLockGuardC2ERNS_6common7ObLatchEbl +_ZN9oceanbase11transaction32ObTenantWeakReadServerVersionMgr21update_with_part_infoEmlbbNS_5share3SCNE +_ZN9oceanbase7storage14ObLSWRSHandler29generate_weak_read_timestamp_ERNS0_4ObLSElRNS_5share3SCNE +_ZN9oceanbase10logservice12ObLogHandler19get_max_decided_scnERNS_5share3SCNE +_ZN9oceanbase10logservice19ObReplayStatusGuardD2Ev +_ZN9oceanbase10logservice18ObApplyStatusGuardD1Ev +_ZN9oceanbase10logservice18ObApplyStatusGuardD2Ev +_ZN9oceanbase10logservice17ObLogApplyService19get_max_applied_scnERKNS_5share6ObLSIDERNS2_3SCNE +_ZN9oceanbase10logservice13ObApplyStatus19get_max_applied_scnERNS_5share3SCNE +_ZN9oceanbase3lib11ObLockGuardINS0_7ObMutexEED2Ev +_ZN9oceanbase10logservice13ObApplyStatus22update_last_check_scn_Ev +_ZZN9oceanbase10logservice13ObApplyStatus19get_max_applied_scnERNS_5share3SCNEENK4$_67clEPKc +_ZZN9oceanbase10logservice23ObApplyServiceQueueTask22is_snapshot_apply_doneERbENK3$_5clEPKc +_ZZN9oceanbase10logservice17ObLogApplyService19get_max_applied_scnERKNS_5share6ObLSIDERNS2_3SCNEENK5$_151clEPKc +_ZN9oceanbase10logservice17ObLogApplyService16wait_append_syncERKNS_5share6ObLSIDE +_ZN9oceanbase10logservice11ObLSAdapter16wait_append_syncERKNS_5share6ObLSIDE +_ZN9oceanbase11transaction14ObTransService35get_ls_min_uncommit_prepare_versionERKNS_5share6ObLSIDERNS2_3SCNE +_ZN9oceanbase11transaction10ObTxCtxMgr38get_ls_min_uncommit_tx_prepare_versionERKNS_5share6ObLSIDERNS2_3SCNE +_ZN9oceanbase11transaction14ObTransHashMapINS_5share6ObLSIDENS0_12ObLSTxCtxMgrENS0_17ObLSTxCtxMgrAllocENS_6common11ObQSyncLockELl64EE6revertEPS4_ +_ZN9oceanbase11transaction10ObTxCtxMgr17get_ls_tx_ctx_mgrERKNS_5share6ObLSIDERPNS0_12ObLSTxCtxMgrE +_ZN9oceanbase11transaction23ObTenantWeakReadService25generate_cluster_version_Ev +_ZZN9oceanbase10logservice13ObApplyStatus19get_max_applied_scnERNS_5share3SCNEENK4$_70clEPKc +_ZN9oceanbase10logservice18ObLogReplayService20get_max_replayed_scnERKNS_5share6ObLSIDERNS2_3SCNE +_ZN9oceanbase10logservice14ObReplayStatus27get_min_unreplayed_log_infoERNS_4palf3LSNERNS_5share3SCNERlRNS0_13ObLogBaseTypeES8_S8_S8_ +_ZNK9oceanbase10logservice25ObReplayServiceSubmitTask27get_next_to_submit_log_infoERNS_4palf3LSNERNS_5share3SCNE +_ZN9oceanbase11transaction32ObTenantWeakReadServerVersionMgr20generate_new_versionEmlNS_5share3SCNEb +_ZZN9oceanbase10logservice12ObLogHandler19get_max_decided_scnERNS_5share3SCNEENK5$_402clEPKc.llvm.8287266113495706879 +_ZN9oceanbase11transaction23ObTenantWeakReadService21do_cluster_heartbeat_Ev +_ZN9oceanbase11transaction23ObTenantWeakReadService29process_cluster_heartbeat_rpcERKNS_6common6ObAddrENS_5share3SCNElll +_ZN9oceanbase11transaction30ObTenantWeakReadClusterService24persist_version_if_need_ENS_5share3SCNES3_S3_S3_bRl +_ZN9oceanbase6common16ObCommonSqlProxy5writeEmPKciRl +_ZZN9oceanbase6common16ObCommonSqlProxy5writeEmPKciRlENK5$_344clES3_.llvm.4413886316998863023 +_ZN9oceanbase8observer20ObInnerSQLConnection13execute_writeEmPKcRlbPKNS_6common6ObAddrE +_ZN9oceanbase11transaction30ObTenantWeakReadClusterService21update_server_versionERKNS_6common6ObAddrENS_5share3SCNElll +_ZNK9oceanbase11transaction30ObTenantWeakReadClusterService18check_leader_info_ERl +_ZN9oceanbase11transaction33ObTenantWeakReadClusterVersionMgr21update_server_versionERKNS_6common6ObAddrENS_5share3SCNElllRb +_ZN9oceanbase11transaction33ObTenantWeakReadClusterVersionMgr17find_match_serverERlRKNS_6common6ObAddrERPNS1_10ServerInfoE +_ULx86_64_r_uc_addr +unw_init_local_common +_ZN9oceanbase3sql15ObTableInsertOp10inner_openEv +_ZN9oceanbase6common11ObArrayWrapINS_3sql10ObInsRtDefEE14allocate_arrayERNS0_12ObIAllocatorEl +_ZN9oceanbase3sql12ObDMLService14init_ins_rtdefERNS0_10ObDMLRtCtxERNS0_10ObInsRtDefERKNS0_10ObInsCtDefERNS_6common8ObIArrayIPNS0_6ObExprEEERNSA_IPNS0_19ObForeignKeyCheckerEEE +_ZN9oceanbase3sql12ObDMLService22init_related_das_rtdefERNS0_10ObDMLRtCtxERKNS_6common12ObFixedArrayIPNS0_17ObDASDMLBaseCtDefENS4_12ObIAllocatorEEERNS4_11ObArrayWrapIPNS0_17ObDASDMLBaseRtDefEEE +_ZN9oceanbase3sql12ObDMLService18init_das_dml_rtdefERNS0_10ObDMLRtCtxERKNS0_17ObDASDMLBaseCtDefERNS0_17ObDASDMLBaseRtDefEPKNS0_17ObDASTableLocMetaE +_ZN9oceanbase3sql16ObDASTaskFactory16create_das_rtdefENS0_11ObDASOpTypeERPNS0_14ObDASBaseRtDefE +_ZN9oceanbase6common11ObArrayWrapIPNS_3sql17ObDASDMLBaseRtDefEE14allocate_arrayERNS0_12ObIAllocatorEl +_ZN9oceanbase3sql19AllocDASRtDefHelperILi2EE5allocERNS_6common12ObIAllocatorERPNS0_14ObDASBaseRtDefE +_ZN9oceanbase3sql19AllocDASRtDefHelperILi3EE5allocERNS_6common12ObIAllocatorERPNS0_14ObDASBaseRtDefE +_ZN9oceanbase3sql19AllocDASRtDefHelperILi4EE5allocERNS_6common12ObIAllocatorERPNS0_14ObDASBaseRtDefE +_ZN9oceanbase3sql8ObDASCtx18extended_table_locERKNS0_17ObDASTableLocMetaERPNS0_13ObDASTableLocE +_ZN9oceanbase3sql12ObDMLService21init_fk_checker_arrayERNS0_10ObDMLRtCtxERKNS0_14ObDMLBaseCtDefERNS_6common11ObArrayWrapIPNS0_19ObForeignKeyCheckerEEE +_ZNK9oceanbase7obmysql6OMPKOK9serializeEPclRl +_ZN9oceanbase6common11ObArrayImplIPNS_3sql21ObUserVarIdentRawExprENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS4_EENS0_17DefaultItemEncodeIS4_EEED2Ev +backtrace +unw_backtrace +_ZN9oceanbase3sql12ObSortOpImpl4initEmPKNS_6common8ObIArrayINS0_20ObSortFieldCollationEEEPKNS3_INS2_9ObCmpFuncEEEPNS0_9ObEvalCtxEPNS0_13ObExecContextEbbbllbl +_ZN9oceanbase3sql17ObFastParserMysql14process_valuesEPKc +_ZN9oceanbase3sql13ObCmdExecutor7executeERNS0_13ObExecContextERNS0_6ObICmdE +_ZZN9oceanbase3sql13ObCmdExecutor7executeERNS0_13ObExecContextERNS0_6ObICmdEENK4$_21clEv +_ZZN9oceanbase3sql13ObCmdExecutor7executeERNS0_13ObExecContextERNS0_6ObICmdEENK4$_22clEv +_ZN9oceanbase3sql18ObEndTransExecutor9end_transERNS0_13ObExecContextERNS0_14ObEndTransStmtE +_ZN9oceanbase3sql17ObSqlTransControl20explicit_start_transERNS0_13ObExecContextEbNS_6common8ObStringE +_ZN9oceanbase11transaction14ObTransService8start_txERNS0_8ObTxDescERKNS0_9ObTxParamERKNS0_9ObTransIDE +_ZNSt17_Function_handlerIFiRN9oceanbase11transaction9ObTransIDEESt5_BindIFMNS1_14ObTransServiceEFiS3_EPS6_St12_PlaceholderILi1EEEEE9_M_invokeERKSt9_Any_dataS3_ +_ZN9oceanbase11transaction11ObTxDescMgr3addERNS0_8ObTxDescE +_ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocENS_6common10SpinRWLockELl65536EE8insert__ERKS2_PS3_iPSB_ +_ZZN9oceanbase11transaction11ObTxDescMgr3addERNS0_8ObTxDescEENK6$_1133clEPKc +_ZN9oceanbase11transaction14ObTransService12gen_trans_idERNS0_9ObTransIDE +_ZN9oceanbase11transaction11ObGtiSource12get_trans_idERl +_ZZN9oceanbase11transaction14ObTransService10release_txERNS0_8ObTxDescEENK6$_1654clEPKc +_ZN9oceanbase11transaction14ObTransService10acquire_txERPNS0_8ObTxDescEj +_ZN9oceanbase11transaction11ObTxDescMgr5allocERPNS0_8ObTxDescE +_ZN9oceanbase11transaction8ObTxDescC1Ev +_ZN9oceanbase11transaction8ObTxDescC2Ev +_ZN9oceanbase3sql17ObSqlTransControl18explicit_end_transERNS0_13ObExecContextEbNS_6common8ObStringE +_ZN9oceanbase3sql17ObSqlTransControl9end_transERNS0_13ObExecContextEbbPNS0_23ObEndTransAsyncCallbackEb +_ZN9oceanbase3sql17ObSqlTransControl13do_end_trans_EPNS0_16ObSQLSessionInfoEbblPNS0_23ObEndTransAsyncCallbackE +_ZN9oceanbase5share8detector21ObDeadLockDetectorMgr20check_detector_existINS_11transaction9ObTransIDEEEiRKT_Rb +_ZNK9oceanbase11transaction9ObTransID9serializeEPclRl +_ZN9oceanbase11transaction14ObTransService16submit_commit_txERNS0_8ObTxDescElRNS0_13ObITxCallbackEPKNS_6common8ObStringE +_ZN9oceanbase11transaction8ObTxDesc13set_commit_cbEPNS0_13ObITxCallbackE +_ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEED2Ev +_ZN9oceanbase11transaction10ObTxCtxMgr13revert_tx_ctxEPNS0_14ObPartTransCtxE +_ZN9oceanbase11transaction11ObTraceInfo18set_app_trace_infoERKNS_6common8ObStringE +_ZN9oceanbase11transaction14ObTransService19local_ls_commit_tx_ERKNS0_9ObTransIDERKNS_5share6ObLSIDERKNS_6common9ObSEArrayIS6_Ll3ENS9_19ModulePageAllocatorELb0EEERKlRKNS9_8ObStringESG_NS5_3SCNERSK_RKNS9_6ObAddrE +_ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocENS_6common10SpinRWLockELl16384EE6revertEPS3_ +_ZN9oceanbase11transaction10ObTransCtx19set_app_trace_info_ERKNS_6common8ObStringE _ZN9oceanbase11transaction14ObPartTransCtx16do_local_tx_end_ENS0_11TxEndActionE _ZN9oceanbase11transaction14ObPartTransCtx24generate_commit_version_Ev _ZN9oceanbase11transaction14ObPartTransCtx8get_gts_ERNS_5share3SCNE @@ -1388,26 +1489,23 @@ _ZN9oceanbase11transaction11ObCtxTxData18set_commit_versionERKNS_5share3SCNE _ZN9oceanbase11transaction14ObPartTransCtx31prepare_mul_data_source_tx_end_Eb _ZN9oceanbase11transaction10ObTxCtxMgr10get_tx_ctxERKNS_5share6ObLSIDERKNS0_9ObTransIDEbRPNS0_14ObPartTransCtxE _ZN9oceanbase6common13ObSEArrayImplINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EE6assignERKNS0_8ObIArrayIS3_EE -_ZN9oceanbase11transaction14ObPartTransCtx28set_start_scn_in_commit_log_ERNS0_13ObTxCommitLogE -_ZNK9oceanbase11transaction11ObCtxTxData16get_start_log_tsEv -_ZN9oceanbase11transaction10ObTxCtxMgr13revert_tx_ctxEPNS0_14ObPartTransCtxE -_ZZN9oceanbase11transaction14ObTransService10acquire_txERPNS0_8ObTxDescEjENK6$_1651clEPKc +_ZN9oceanbase6common11ObQSyncLock6rdlockEv +_ZN9oceanbase11transaction10ObTransCtx8set_stc_ENS_6common13ObMonotonicTsE +_ZN9oceanbase11transaction14ObTransService22decide_tx_commit_info_ERNS0_8ObTxDescERPNS0_8ObTxPartE +_ZZN9oceanbase11transaction14ObTransService22decide_tx_commit_info_ERNS0_8ObTxDescERPNS0_8ObTxPartEENK6$_1248clEPKc +_ZN9oceanbase6common13ObLinkHashMapINS_5share8detector13UserBinaryKeyENS3_19ObIDeadLockDetectorENS3_21ObDeadLockDetectorMgr16InnerAllocHandleENS0_9RefHandleELl8EE3getERKS4_RPS5_ _ZN9oceanbase11transaction14ObPartTransCtx16submit_log_impl_ENS0_11ObTxLogTypeE +_ZNK9oceanbase11transaction13ObTxLogHeader9serializeEPclRl _ZN9oceanbase11transaction10ObTransCtx16acquire_ctx_ref_Ev _ZN9oceanbase11transaction18ObTxLogBlockHeader16before_serializeEv -_ZN9oceanbase11transaction13ObTxBaseLogCb10set_log_tsERKNS_5share3SCNE -_ZN9oceanbase8memtable13ObMemtableCtx17calc_checksum_allEv _ZN9oceanbase11transaction12ObTxLogBlock4initElRKNS0_18ObTxLogBlockHeaderEl -_ZN9oceanbase11transaction18ObTxAdaptiveLogBuf17alloc_normal_buf_Ev -_ZN9oceanbase8memtable16ObTxCallbackList20tx_calc_checksum_allEv -_ZN9oceanbase8memtable16ObITransCallback13calc_checksumENS_5share3SCNEPNS_6common15ObBatchChecksumE +_ZN9oceanbase8memtable13ObMemtableCtx17calc_checksum_allEv +_ZN9oceanbase6common13ObSEArrayImplINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EED2Ev +_ZN9oceanbase11transaction18ObTxAdaptiveLogBuf4initEl _ZN9oceanbase11transaction13ObTxCommitLog16before_serializeEv _ZN9oceanbase11transaction17ObTxSerCompatByte21init_all_bytes_valid_El -_ZN9oceanbase11transaction12ObTxLogBlock11add_new_logINS0_13ObTxCommitLogEEEiRT_PNS0_17ObTxBigSegmentBufE -_ZN9oceanbase3lib17ObMallocAllocator5allocElRKNS0_9ObMemAttrE -_ZN9oceanbase3lib20ObTenantCtxAllocator5allocElRKNS0_9ObMemAttrE -_ZN9oceanbase11transaction14ObPartTransCtx17get_prev_log_lsn_ERKNS0_12ObTxLogBlockENS0_11ObTxLogTypeERNS_4palf3LSNE -_ZN9oceanbase11transaction12ObTxLogBlockD2Ev +_ZN9oceanbase8memtable16ObTxCallbackList20tx_calc_checksum_allEv +_ZN9oceanbase8memtable16ObITransCallback13calc_checksumENS_5share3SCNEPNS_6common15ObBatchChecksumE _ZN9oceanbase11transaction16ObLSTxLogAdapter10submit_logEPKclRKNS_5share3SCNEPNS0_13ObTxBaseLogCbEb _ZNK9oceanbase10logservice12ObLogHandler8is_validEv _ZN9oceanbase11transaction16ObTransStatistic24add_trans_log_total_sizeEml @@ -1416,52 +1514,50 @@ _ZN9oceanbase10logservice12ObLogHandler6appendEPKvlRKNS_5share3SCNEbPNS0_8Append _ZN9oceanbase4palf11PalfEnvImpl23check_disk_space_enoughEv _ZN9oceanbase10logservice13ObApplyStatus14push_append_cbEPNS0_8AppendCbE _ZN9oceanbase4palf14PalfHandleImpl10submit_logERKNS0_17PalfAppendOptionsEPKclRKNS_5share3SCNERNS0_3LSNERS8_ +_ZN9oceanbase11transaction14ObPartTransCtx17get_prev_log_lsn_ERKNS0_12ObTxLogBlockENS0_11ObTxLogTypeERNS_4palf3LSNE _ZN9oceanbase11transaction14ObPartTransCtx17after_submit_log_ERNS0_12ObTxLogBlockEPNS0_9ObTxLogCbEPNS_8memtable21ObRedoLogSubmitHelperE _ZN9oceanbase8memtable16ObITransCallback13log_submittedEv _ZN9oceanbase8memtable18ObRedoLogGenerator13log_submittedERKNS0_15ObCallbackScopeE _ZN9oceanbase8memtable17ObMvccRowCallback13log_submittedEv -_ZN9oceanbase11transaction11ObCtxTxData16set_start_log_tsERKNS_5share3SCNE _ZN9oceanbase11transaction12ObTxLogBlock5reuseElRKNS0_18ObTxLogBlockHeaderE -_ZNK9oceanbase3lib17ObMallocAllocator40get_tenant_ctx_allocator_without_tlcacheEmm -_ZN9oceanbase6common13ObSEArrayImplINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EED2Ev -_ZN9oceanbase11transaction18ObTxAdaptiveLogBuf4initEl +_ZN9oceanbase11transaction11ObCtxTxData16set_start_log_tsERKNS_5share3SCNE +_ZZN9oceanbase10logservice12ObLogHandler6appendEPKvlRKNS_5share3SCNEbPNS0_8AppendCbERNS_4palf3LSNERS5_ENK5$_267clEPKc +_ZN9oceanbase11transaction16ObTransStatistic12get_instanceEv +_ZN9oceanbase11transaction12ObTxLogBlockD2Ev _ZN9oceanbase11transaction12ObTxLogBlock27serialize_log_block_header_ElRKNS0_18ObTxLogBlockHeaderENS_10logservice19ObReplayBarrierTypeE _ZN9oceanbase6common13serialization10encode_i32EPclRli _ZN9oceanbase6common13serialization10encode_i64EPclRll -_ZN9oceanbase11transaction13ObTxBaseLogCb7set_lsnERKNS_4palf3LSNE -_ZZN9oceanbase10logservice12ObLogHandler6appendEPKvlRKNS_5share3SCNEbPNS0_8AppendCbERNS_4palf3LSNERS5_ENK5$_267clEPKc -_ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EE6assignERKNS0_8ObIArrayIS3_EE +_ZN9oceanbase11transaction18ObTxAdaptiveLogBuf17alloc_normal_buf_Ev +_ZN9oceanbase3lib17ObMallocAllocator5allocElRKNS0_9ObMemAttrE +_ZN9oceanbase3lib20ObTenantCtxAllocator5allocElRKNS0_9ObMemAttrE +_ZN9oceanbase6common8get_itidEv _ZNK9oceanbase11transaction18ObTxLogBlockHeader10serialize_EPclRl _ZNK9oceanbase6common6ObAddr9serializeEPclRl -_ZN9oceanbase11transaction16ObTransStatistic12get_instanceEv -_ZNK9oceanbase11transaction13ObTxCommitLog19get_serialize_size_Ev +_ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EE6assignERKNS0_8ObIArrayIS3_EE _ZN9oceanbase4palf16LogSlidingWindow10submit_logEPKclRKNS_5share3SCNERNS0_3LSNERS5_ _ZN9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE3getElRPS2_ -_ZN9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE7revert_El -_ZN9oceanbase4palf14LogGroupBuffer4fillERKNS0_3LSNEPKcl _ZN9oceanbase4palf14LogEntryHeader23update_header_checksum_Ev -_ZNK9oceanbase4palf14LogEntryHeader9serializeEPclRl +_ZN9oceanbase4palf14LogGroupBuffer4fillERKNS0_3LSNEPKcl +_ZN9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE7revert_El _ZZN9oceanbase4palf14LogGroupBuffer4fillERKNS0_3LSNEPKclENK5$_751clES6_ -_ZNK9oceanbase4palf16LogSlidingWindow14get_max_log_idEv -_ZZN9oceanbase4palf14LogGroupBuffer5fill_ERKNS0_3LSNElPKclENK5$_779clES6_ -_ZZN9oceanbase4palf14LogEntryHeader23update_header_checksum_EvENK5$_716clEPKc.llvm.12216593503935591459 +_ZZN9oceanbase4palf14LogEntryHeader15generate_headerEPKclRKNS_5share3SCNEENK5$_717clES3_.llvm.9524917497784007230 +_ZNK9oceanbase4palf14LogEntryHeader9serializeEPclRl +_ZN9oceanbase4palf16LogSlidingWindow12LogTaskGuard15revert_log_taskEv +_ZNK9oceanbase4palf14LogGroupBuffer18can_handle_new_logERKNS0_3LSNElS4_ +_ZZN9oceanbase4palf14LogEntryHeader23update_header_checksum_EvENK5$_716clEPKc.llvm.9524917497784007230 _ZN9oceanbase11transaction14ObPartTransCtx28submit_redo_commit_info_log_ERNS0_12ObTxLogBlockERbRNS_8memtable21ObRedoLogSubmitHelperE -_ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EE9push_backERKS3_ -_ZNK9oceanbase11transaction13ObTxLogHeader9serializeEPclRl -_ZN9oceanbase11transaction17ObTxCommitInfoLog16before_serializeEv _ZN9oceanbase8memtable13ObMemtableCtx13fill_redo_logEPclRlRNS0_21ObRedoLogSubmitHelperEb _ZNK9oceanbase8memtable17ObMvccRowCallback10get_seq_noEv _ZN9oceanbase8memtable17ObMvccRowCallback13get_data_sizeEv _ZNK9oceanbase11transaction9tablelock17ObOBJLockCallback10get_seq_noEv _ZN9oceanbase11transaction9tablelock17ObOBJLockCallback13get_data_sizeEv _ZN9oceanbase8memtable18ObRedoLogGenerator13fill_redo_logEPclRlRNS0_21ObRedoLogSubmitHelperEb -_ZN9oceanbase6common14SpinRLockGuardD2Ev _ZN9oceanbase8memtable18ObRedoLogGenerator13fill_row_redoERNS0_24ObITransCallbackIteratorERNS0_15ObMutatorWriterERNS0_12RedoDataNodeEbRbRNS_11transaction17ObCLogEncryptInfoE -_ZN9oceanbase6common13ob_crc64_isalEmPKcl _ZN9oceanbase8memtable9ObRowData9serializeEPclRl _ZNK9oceanbase8memtable18ObMutatorRowHeader9serializeEPclRl _ZNK9oceanbase6common10ObTabletID9serializeEPclRl _ZNK9oceanbase11transaction7ObTxSEQ9serializeEPclRl +_ZN9oceanbase6common14SpinRLockGuardD2Ev _ZN9oceanbase6common7ObLatch6rdlockEjl _ZNK9oceanbase8memtable17ObMvccRowCallback19get_cluster_versionERm _ZN9oceanbase8memtable18ObRedoLogGenerator20fill_table_lock_redoERNS0_24ObITransCallbackIteratorERNS0_15ObMutatorWriterERNS0_21TableLockRedoDataNodeEbRb @@ -1469,132 +1565,442 @@ _ZNK9oceanbase11transaction9tablelock8ObLockID9serializeEPclRl _ZN9oceanbase8memtable21TableLockRedoDataNode3setEPKNS0_13ObMemtableKeyERKNS_11transaction9tablelock13ObTableLockOpERKNS_6common10ObTabletIDEPNS0_16ObITransCallbackE _ZNK9oceanbase6common8ObRowkey9serializeEPclRl _ZN9oceanbase8memtable17ObMvccRowCallback8get_redoERNS0_12RedoDataNodeE -_ZN9oceanbase11transaction13ObCtxRedoInfo16before_serializeEv -_ZN9oceanbase11transaction12ObTxLogBlock11add_new_logINS0_11ObTxRedoLogEEEiRT_PNS0_17ObTxBigSegmentBufE -_ZN9oceanbase11transaction17ObCLogEncryptInfoD2Ev +_ZN9oceanbase11transaction17ObTxCommitInfoLog16before_serializeEv +_ZN9oceanbase8memtable15ObMutatorWriter9serializeEhRlRNS_11transaction17ObCLogEncryptInfoE _ZN9oceanbase11transaction12ObTxLogBlock11add_new_logINS0_17ObTxCommitInfoLogEEEiRT_PNS0_17ObTxBigSegmentBufE +_ZN9oceanbase11transaction13ObCtxRedoInfo16before_serializeEv +_ZN9oceanbase11transaction12ObTxLogBlock11add_new_logINS0_13ObTxCommitLogEEEiRT_PNS0_17ObTxBigSegmentBufE +_ZNK9oceanbase4palf16LogSlidingWindow14get_max_log_idEv +_ZNK9oceanbase11transaction13ObTxCommitLog19get_serialize_size_Ev +_ZNK9oceanbase3lib17ObMallocAllocator40get_tenant_ctx_allocator_without_tlcacheEmm +_ZZN9oceanbase4palf14LogGroupBuffer5fill_ERKNS0_3LSNElPKclENK5$_779clES6_ _ZNK9oceanbase11transaction17ObTxCommitInfoLog19get_serialize_size_Ev -_ZN9oceanbase8memtable15ObMutatorWriter9serializeEhRlRNS_11transaction17ObCLogEncryptInfoE -_ZN9oceanbase11transaction14ObPartTransCtx30decide_state_log_barrier_type_ERKNS0_11ObTxLogTypeERNS_10logservice19ObReplayBarrierTypeE -_ZN9oceanbase4palf16LogSlidingWindow24wait_group_buffer_ready_ERKNS0_3LSNEl -_ZZN9oceanbase4palf16LogSlidingWindow10submit_logEPKclRKNS_5share3SCNERNS0_3LSNERS5_ENK5$_142clES3_ +_ZN9oceanbase11transaction17ObCLogEncryptInfoD2Ev +_ZNK9oceanbase6common6ObAddr19get_serialize_size_Ev _ZN9oceanbase11transaction14ObPartTransCtx18update_rec_log_ts_EbRKNS_5share3SCNE -_ZNK9oceanbase4palf14LogGroupBuffer18can_handle_new_logERKNS0_3LSNElS4_ _ZN9oceanbase11transaction14ObPartTransCtx16submit_redo_log_ERNS0_12ObTxLogBlockERbRNS_8memtable21ObRedoLogSubmitHelperE -_ZN9oceanbase11transaction12ObTxLogBlock19prepare_mutator_bufERNS0_11ObTxRedoLogE +_ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EE9push_backERKS3_ _ZN9oceanbase11transaction12ObTxLogBlock18finish_mutator_bufERNS0_11ObTxRedoLogERKl +_ZN9oceanbase11transaction12ObTxLogBlock19prepare_mutator_bufERNS0_11ObTxRedoLogE _ZN9oceanbase11transaction14ObPartTransCtx15prepare_log_cb_EbRPNS0_9ObTxLogCbE _ZNK9oceanbase11transaction11ObTxRedoLog9serializeEPclRl -_ZZN9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE7revert_ElENKUlPKcE1_clES5_ -_ZZN9oceanbase4palf16LogSlidingWindow10submit_logEPKclRKNS_5share3SCNERNS0_3LSNERS5_ENK5$_134clES3_ +_ZN9oceanbase11transaction12ObTxLogBlock11add_new_logINS0_11ObTxRedoLogEEEiRT_PNS0_17ObTxBigSegmentBufE +_ZN9oceanbase8memtable18ObTransCallbackMgr20inc_pending_log_sizeEl +_ZN9oceanbase4palf16LogSlidingWindow24wait_group_buffer_ready_ERKNS0_3LSNEl _ZNK9oceanbase11transaction13ObTxCommitLog9serializeEPclRl -_ZZN9oceanbase4palf12LSNAllocator13alloc_lsn_scnERKNS_5share3SCNEllRKNS0_3LSNERS6_RlRS3_RbSC_SA_ENK5$_700clEPKc -_ZZN9oceanbase11transaction14ObPartTransCtx25submit_multi_data_source_ERNS0_12ObTxLogBlockEENK5$_707clEPKc +_ZN9oceanbase11transaction14ObPartTransCtx30decide_state_log_barrier_type_ERKNS0_11ObTxLogTypeERNS_10logservice19ObReplayBarrierTypeE +_ZN9oceanbase11transaction12ObTxMDSCache39decide_cache_state_log_mds_barrier_typeENS0_11ObTxLogTypeERNS_10logservice19ObReplayBarrierTypeE _ZNK9oceanbase11transaction17ObTxCommitInfoLog9serializeEPclRl _ZNK9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EE9serializeEPclRl _ZNK9oceanbase5share6ObLSID9serializeEPclRl -_ZZN9oceanbase4palf14LogGroupBuffer30inc_update_readable_begin_lsn_ERKNS0_3LSNEENK5$_768clEPKc.llvm.12216593503935591459 -_ZNK9oceanbase6common6ObAddr19get_serialize_size_Ev -_ZN9oceanbase5share8detector21ObDeadLockDetectorMgr16DetectorRefGuardD1Ev -_ZN9oceanbase5share8detector21ObDeadLockDetectorMgr16DetectorRefGuardD2Ev -_ZN6obutil4CondC1Ev -_ZZN9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE3getElRPS2_ENKUlPKcE0_clES7_ +_ZZN9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE7revert_ElENKUlPKcE1_clES5_ +_ZZN9oceanbase4palf12LSNAllocator13alloc_lsn_scnERKNS_5share3SCNEllRKNS0_3LSNERS6_RlRS3_RbSC_SA_ENK5$_705clEPKc +_ZZN9oceanbase4palf16LogSlidingWindow10submit_logEPKclRKNS_5share3SCNERNS0_3LSNERS5_ENK5$_143clES3_ +_ZN9oceanbase11transaction13ObTxBaseLogCb10set_log_tsERKNS_5share3SCNE _ZNK9oceanbase11transaction14ObTxDataBackup9serializeEPclRl -_ZNK9oceanbase5share3SCN9serializeEPclRl -_ZZN9oceanbase4palf14LogEntryHeader15generate_headerEPKclRKNS_5share3SCNEENK5$_717clES3_.llvm.12216593503935591459 -_ZN9oceanbase11transaction12ObTxMDSCache39decide_cache_state_log_mds_barrier_typeENS0_11ObTxLogTypeERNS_10logservice19ObReplayBarrierTypeE _ZN9oceanbase11transaction14ObTransService10release_txERNS0_8ObTxDescE _ZZN9oceanbase11transaction14ObTransService10release_txERNS0_8ObTxDescEENK6$_1655clEPKc -_ZNK9oceanbase11transaction14ObPartTransCtx20gen_final_mds_array_ERNS_6common9ObSEArrayINS0_14ObTxBufferNodeELl1ENS2_19ModulePageAllocatorELb0EEEb -_ZZN9oceanbase4palf14PalfHandleImpl10submit_logERKNS0_17PalfAppendOptionsEPKclRKNS_5share3SCNERNS0_3LSNERS8_ENK5$_952clES6_ -_ZN9oceanbase8memtable18ObTransCallbackMgr20inc_pending_log_sizeEl +_ZZN9oceanbase11transaction14ObTransService13do_commit_tx_ERNS0_8ObTxDescElRNS0_13ObITxCallbackERNS_5share3SCNEENK6$_1216clEPKc +_ZN9oceanbase3sql15ObSQLSessionMgr15inc_session_refEPKNS0_16ObSQLSessionInfoE +_ZN9oceanbase6common13ObSEArrayImplINS_11transaction8ObTxPartELl4ENS0_19ModulePageAllocatorELb0EEixEl +_ZZN9oceanbase4palf14PalfHandleImpl10submit_logERKNS0_17PalfAppendOptionsEPKclRKNS_5share3SCNERNS0_3LSNERS8_ENK5$_957clES6_ +_ZZN9oceanbase4palf16LogSlidingWindow10submit_logEPKclRKNS_5share3SCNERNS0_3LSNERS5_ENK5$_134clES3_ +_ZZN9oceanbase4palf14LogGroupBuffer30inc_update_readable_begin_lsn_ERKNS0_3LSNEENK5$_768clEPKc.llvm.9524917497784007230 +_ZN9oceanbase3sql17ObSqlTransControl15inc_session_refEPKNS0_16ObSQLSessionInfoE _ZN9oceanbase11transaction7ObTsMgr7get_gtsEmNS_6common13ObMonotonicTsEPNS0_10ObTsCbTaskERNS_5share3SCNERS3_ _ZN9oceanbase11transaction11ObGtsSource7get_gtsENS_6common13ObMonotonicTsEPNS0_10ObTsCbTaskERlRS3_ +_ZN9oceanbase11transaction18ObTimestampService13get_timestampERl _ZN9oceanbase11transaction11ObIDService10get_numberEllRlS2_ -_ZN9oceanbase3sql17ObSqlTransControl15inc_session_refEPKNS0_16ObSQLSessionInfoE +_ZZN9oceanbase11transaction14ObTransService12gen_trans_idERNS0_9ObTransIDEENK6$_1491clEPKc.llvm.9814865624707066129 _ZN9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EE6assignERKNS0_8ObIArrayIS3_EE -_ZZN9oceanbase11transaction14ObTransService12gen_trans_idERNS0_9ObTransIDEENK6$_1491clEPKc.llvm.42739271581596463 +_ZZN9oceanbase11transaction14ObTransService10acquire_txERPNS0_8ObTxDescEjENK6$_1651clEPKc +_ZZN9oceanbase11transaction14ObPartTransCtx25submit_multi_data_source_ERNS0_12ObTxLogBlockEENK5$_707clEPKc +_ZN9oceanbase4palf16LogSlidingWindow29try_feedback_freeze_log_task_El +_ZN9oceanbase11transaction19ObDupTableLSHandler22check_tablet_set_existEv +_ZN9oceanbase5share8detector21ObDeadLockDetectorMgr16DetectorRefGuardD1Ev +_ZN9oceanbase5share8detector21ObDeadLockDetectorMgr16DetectorRefGuardD2Ev +_ZZNK9oceanbase11transaction14ObTxVersionMgr15get_max_read_tsEvENKUlPKcE_clES3_ +_ZNK9oceanbase11transaction14ObPartTransCtx20gen_final_mds_array_ERNS_6common9ObSEArrayINS0_14ObTxBufferNodeELl1ENS2_19ModulePageAllocatorELb0EEEb +_ZN9oceanbase11transaction14ObPartTransCtx28set_start_scn_in_commit_log_ERNS0_13ObTxCommitLogE +_ZNK9oceanbase11transaction11ObCtxTxData16get_start_log_tsEv +_ZZN9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE3getElRPS2_ENKUlPKcE0_clES7_ +_ZZN9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE7revert_ElENKUlPKcE5_clES5_ +_ZN9oceanbase11transaction14ObPartTransCtx25submit_multi_data_source_ERNS0_12ObTxLogBlockE _ZN9oceanbase4palf16LogSlidingWindow23generate_new_group_log_ERKNS0_3LSNElRKNS_5share3SCNElRKNS0_7LogTypeEPKclRb -_ZZN9oceanbase10logservice13ObApplyStatus14push_append_cbEPNS0_8AppendCbEENK4$_21clEPKc +_ZN9oceanbase4palf16LogSlidingWindow25feedback_freeze_last_log_Ev +_ZN9oceanbase4palf16LogSlidingWindow21handle_committed_log_Ev +_ZNK9oceanbase4palf16LogSlidingWindow32is_all_committed_log_slided_out_ERNS0_3LSNERlS3_S3_ +_ZNK9oceanbase4palf16LogSlidingWindow24get_last_slide_log_info_ERlRNS_5share3SCNERNS0_3LSNES7_S2_S2_ +_ZN9oceanbase6common8TCRWLock21RLockGuardWithTimeoutD2Ev +_ZZN9oceanbase4palf7LogTask18update_header_infoERKNS0_3LSNElENK5$_671clEPKc +_ZN9oceanbase4palf16LogSlidingWindow23handle_next_submit_log_ERb +_ZN9oceanbase6common8ObMember5resetEv +_ZNK9oceanbase4palf16LogSlidingWindow25get_last_submit_log_info_ERNS0_3LSNES3_RlS4_ +_ZNK9oceanbase4palf19LogGroupEntryHeader28get_header_parity_check_res_Ev +_ZN9oceanbase4palf19LogGroupEntryHeader8generateEbbRKNS0_11LogWriteBufElRKNS_5share3SCNElRKNS0_3LSNERKlRl +_ZN9oceanbase4palf19LogGroupEntryHeader23calculate_log_checksum_EbRKNS0_11LogWriteBufElRl +_ZN9oceanbase4palf14LogEntryHeader11deserializeEPKclRl +_ZN9oceanbase5share3SCN35fixed_deserialize_without_transformEPKclRl +_ZNK9oceanbase4palf19LogGroupEntryHeader9serializeEPclRl +_ZN9oceanbase4palf14LogGroupBuffer11get_log_bufERKNS0_3LSNElRNS0_11LogWriteBufE +_ZN9oceanbase4palf16LogSlidingWindow25set_last_submit_log_info_ERKNS0_3LSNES4_lRKl +_ZZN9oceanbase4palf16LogSlidingWindow23handle_next_submit_log_ERbENK5$_173clEPKc +_ZN9oceanbase6common16ObMemberListBaseILl7EE13remove_serverERKNS0_6ObAddrE +_ZN9oceanbase4palf12LSNAllocator10try_freezeERNS0_3LSNERl +_ZZN9oceanbase4palf14LogGroupBuffer11get_log_bufERKNS0_3LSNElRNS0_11LogWriteBufEENK5$_743clEPKc +_ZZN9oceanbase4palf16LogSlidingWindow23handle_next_submit_log_ERbENK5$_188clEPKc +_ZN9oceanbase6common8TCRWLock6rdlockEl +_ZZNK9oceanbase4palf19LogGroupEntryHeader9serializeEPclRlENK5$_819clEPKc +_ZN9oceanbase6common13ObSEArrayImplINS0_8ObMemberELl7ENS0_19ModulePageAllocatorELb0EED2Ev +_ZN9oceanbase4palf16LogSlidingWindow10sliding_cbElPKNS0_22FixedSlidingWindowSlotE +_ZN9oceanbase6common10ObMiniStat10ObStatItem4statEl +_ZN9oceanbase4palf11LogChecksum21verify_accum_checksumEll +_ZN9oceanbase4palf15PalfFSCbWrapper14update_end_lsnElRKNS0_3LSNEl +_ZN9oceanbase10logservice11ObApplyFsCb14update_end_lsnElRKNS_4palf3LSNEl +_ZN9oceanbase10logservice12ObReplayFsCb14update_end_lsnElRKNS_4palf3LSNEl +_ZN9oceanbase4palf16LogSlidingWindow31try_update_last_slide_log_info_ElRKNS_5share3SCNERKNS0_3LSNES8_RKll +_ZN9oceanbase4palf11LogChecksum21verify_accum_checksumElllRl +_ZZN9oceanbase4palf9LogEngine21submit_flush_log_taskERKNS0_13FlushLogCbCtxERKNS0_11LogWriteBufEENK5$_554clEPKc.llvm.9524917497784007230 +_ZNK9oceanbase4palf12LogConfigMgr17get_children_listERNS_6common15BaseLearnerListILl15ENS0_10LogLearnerEEE +_ZN9oceanbase4palf16LogSlidingWindow25try_freeze_last_log_task_ElRKNS0_3LSNERb +_ZN9oceanbase4palf7LogTask11try_freeze_ERKNS0_3LSNE +_ZZN9oceanbase4palf11LogChecksum22acquire_accum_checksumElRlENK5$_173clEPKc.llvm.9524917497784007230 +_ZN9oceanbase4palf9LogEngine21submit_flush_log_taskERKNS0_13FlushLogCbCtxERKNS0_11LogWriteBufE +_ZN9oceanbase6common22ObTenantMutilAllocator27alloc_log_io_flush_log_taskEll +_ZN9oceanbase4palf17LogIOFlushLogTaskC1Ell +_ZZN9oceanbase4palf17LogIOFlushLogTask4initERKNS0_13FlushLogCbCtxERKNS0_11LogWriteBufEENK5$_837clEPKc.llvm.9524917497784007230 +_ZN9oceanbase6common15BaseLearnerListILl2000ENS0_8ObMemberEE6appendERKS3_ +_ZNK9oceanbase4palf12LogConfigMgr24get_log_sync_member_listERNS_6common16ObMemberListBaseILl7EEERl +_ZZN9oceanbase4palf19LogGroupEntryHeader23update_header_checksum_EvENK5$_811clEPKc.llvm.9524917497784007230 +_ZZN9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE7revert_ElENKUlPKcE3_clES5_ _ZN9oceanbase4palf16LogSlidingWindow20try_freeze_prev_log_ElRKNS0_3LSNERb -_ZN9oceanbase11transaction10ObTransCtx8get_stc_Ev -_ZN9oceanbase11transaction14ObPartTransCtx25submit_multi_data_source_ERNS0_12ObTxLogBlockE -_ZZN9oceanbase4palf7LogTask20try_freeze_by_myselfEvENK5$_669clEPKc +_ZZN9oceanbase4palf7LogTask20try_freeze_by_myselfEvENK5$_674clEPKc +_ZZN9oceanbase4palf16LogSlidingWindow21handle_committed_log_EvENK5$_167clEPKc +_ZZN9oceanbase4palf16LogSlidingWindow28generate_group_entry_header_ElPNS0_7LogTaskERNS0_19LogGroupEntryHeaderERlRbENK5$_194clEPKc +_ZZN9oceanbase4palf11LogChecksum21verify_accum_checksumEllENK5$_175clEPKc.llvm.9524917497784007230 +_ZZN9oceanbase4palf19LogGroupEntryHeader23calculate_log_checksum_EbRKNS0_11LogWriteBufElRlENK5$_810clEPKc +_ZZN9oceanbase4palf16LogSlidingWindow23handle_next_submit_log_ERbENK5$_178clEPKc +_ZZN9oceanbase4palf16LogSlidingWindow21handle_committed_log_EvENK5$_168clEPKc +_ZZN9oceanbase4palf11LogChecksum21verify_accum_checksumElllRlENK5$_176clEPKc +_ZZNK9oceanbase4palf16LogSlidingWindow32is_all_committed_log_slided_out_ERNS0_3LSNERlS3_S3_ENK5$_264clEPKc.llvm.1044425045905407792 _ZZN9oceanbase4palf16LogSlidingWindow10submit_logEPKclRKNS_5share3SCNERNS0_3LSNERS5_ENK5$_140clES3_ -_ZZNK9oceanbase11transaction14ObTxVersionMgr15get_max_read_tsEvENKUlPKcE_clES3_ -_ZZN9oceanbase4palf7LogTask23set_initial_header_infoERKNS0_17LogTaskHeaderInfoEENK5$_663clEPKc +_ZZN9oceanbase4palf19LogGroupEntryHeader8generateEbbRKNS0_11LogWriteBufElRKNS_5share3SCNElRKNS0_3LSNERKlRlENK5$_792clEPKc.llvm.9524917497784007230 +_ZZN9oceanbase4palf16LogSlidingWindow25try_freeze_last_log_task_ElRKNS0_3LSNERbENK5$_200clEPKc +_ZZN9oceanbase10logservice13ObApplyStatus29update_palf_committed_end_lsnERKNS_4palf3LSNElENK4$_58clEPKc +_ZZN9oceanbase4palf7LogTask23set_initial_header_infoERKNS0_17LogTaskHeaderInfoEENK5$_668clEPKc _ZZN9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE7revert_ElENKUlPKcE2_clES5_ -_ZZN9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE7revert_ElENKUlPKcE5_clES5_ +_ZZN9oceanbase4palf7LogTask11try_freeze_ERKNS0_3LSNEENK5$_675clEPKc +_ZZN9oceanbase4palf16LogSlidingWindow25set_last_submit_log_info_ERKNS0_3LSNES4_lRKlENK5$_230clEPKc +_ZN9oceanbase11transaction10ObTransCtx8get_stc_Ev _ZN6obutil11ObUtilMutexD1Ev -_ZN9oceanbase11transaction11ObTransCondC2Ev +_ZZN9oceanbase4palf16LogSlidingWindow31try_update_last_slide_log_info_ElRKNS_5share3SCNERKNS0_3LSNES8_RKllENK5$_232clEPKc +_ZZN9oceanbase4palf11LogIOWorker14submit_io_taskEPNS0_9LogIOTaskEENK5$_960clEPKc.llvm.9524917497784007230 +_ZZN9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE5slideElPNS0_16ISlidingCallBackEENKUlPKcE5_clES7_ +_ZZN9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE5slideElPNS0_16ISlidingCallBackEENKUlPKcE1_clES7_ +_ZZN9oceanbase10logservice13ObApplyStatus14push_append_cbEPNS0_8AppendCbEENK4$_21clEPKc +_ZN9oceanbase11transaction13ObTxBaseLogCb7set_lsnERKNS_4palf3LSNE _ZN9oceanbase6common17obj_val_serializeILNS0_9ObObjTypeE5EEEiRKNS0_5ObObjEPclRl _ZN9oceanbase11transaction14ObTransService9commit_txERNS0_8ObTxDescElPKNS_6common8ObStringE -_ZNK6obutil9ObMonitorINS_11ObUtilMutexEE10timed_waitERKNS_9ObSysTimeE -_ZN9oceanbase11transaction14ObTransService19abort_participants_ERKNS0_8ObTxDescE _ZN9oceanbase11transaction11ObTransCond4waitElRi -_ZNK6obutil11ObUtilMutex4lockEv -_ZN9oceanbase11transaction14ObPartTransCtx16submit_redo_log_Ev -_ZN9oceanbase6common13ObLinkHashMapINS0_9ObIntWarpENS_11transaction14ObTsSourceInfoENS3_19ObTsSourceInfoAllocENS0_9RefHandleELl8EE4nextEPNS0_12LinkHashNodeIS2_EE -_ZN9oceanbase6common13BaseRefHandleC2ERNS0_13RetireStationE -_ZN9oceanbase6common6QClock14enter_criticalEv -unw_init_local_common -_ZN9oceanbase7storage21ObIndexTreePrefetcher15lookup_in_cacheERNS0_19ObSSTableReadHandleE -_ZN9oceanbase3sql16AllocInputHelperILi24EE5allocERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecERPNS0_9ObOpInputE -_ZN9oceanbase6common11ObArrayImplIPNS_3sql21ObUserVarIdentRawExprENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS4_EENS0_17DefaultItemEncodeIS4_EEED2Ev -_ZN9oceanbase3sql15ObTableInsertOp10inner_openEv -_ZN9oceanbase6common11ObArrayWrapINS_3sql10ObInsRtDefEE14allocate_arrayERNS0_12ObIAllocatorEl -_ZN9oceanbase3sql12ObDMLService14init_ins_rtdefERNS0_10ObDMLRtCtxERNS0_10ObInsRtDefERKNS0_10ObInsCtDefERNS_6common8ObIArrayIPNS0_6ObExprEEERNSA_IPNS0_19ObForeignKeyCheckerEEE -_ZN9oceanbase3sql12ObDMLService22init_related_das_rtdefERNS0_10ObDMLRtCtxERKNS_6common12ObFixedArrayIPNS0_17ObDASDMLBaseCtDefENS4_12ObIAllocatorEEERNS4_11ObArrayWrapIPNS0_17ObDASDMLBaseRtDefEEE -_ZN9oceanbase3sql12ObDMLService18init_das_dml_rtdefERNS0_10ObDMLRtCtxERKNS0_17ObDASDMLBaseCtDefERNS0_17ObDASDMLBaseRtDefEPKNS0_17ObDASTableLocMetaE -_ZN9oceanbase3sql16ObDASTaskFactory16create_das_rtdefENS0_11ObDASOpTypeERPNS0_14ObDASBaseRtDefE -_ZN9oceanbase6common11ObArrayWrapIPNS_3sql17ObDASDMLBaseRtDefEE14allocate_arrayERNS0_12ObIAllocatorEl -_ZN9oceanbase3sql19AllocDASRtDefHelperILi3EE5allocERNS_6common12ObIAllocatorERPNS0_14ObDASBaseRtDefE -_ZN9oceanbase3sql19AllocDASRtDefHelperILi2EE5allocERNS_6common12ObIAllocatorERPNS0_14ObDASBaseRtDefE -_ZN9oceanbase3sql19AllocDASRtDefHelperILi4EE5allocERNS_6common12ObIAllocatorERPNS0_14ObDASBaseRtDefE -_ZN9oceanbase3sql8ObDASCtx18extended_table_locERKNS0_17ObDASTableLocMetaERPNS0_13ObDASTableLocE -_ZN9oceanbase3sql12ObDMLService21init_fk_checker_arrayERNS0_10ObDMLRtCtxERKNS0_14ObDMLBaseCtDefERNS_6common11ObArrayWrapIPNS0_19ObForeignKeyCheckerEEE -_ZN9oceanbase7storage17ObAggregatedStoreD2Ev -_ZN9oceanbase6common16ObFixedArrayImplIPNS_7storage9ObAggCellENS0_12ObIAllocatorEE5resetEv -_ZN9oceanbase12blocksstable10ObDatumRow5resetEv -_ZN9oceanbase7storage17ObAggregatedStore5resetEv -_ZN9oceanbase7storage8ObAggRowD2Ev -_ZN9oceanbase7storage9ObAggCell5resetEv -_ZN9oceanbase7storage12ObSumAggCell5resetEv -_ZN9oceanbase6common11ObArrayImplINS_3sql13ObMonitorHintENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev -_ZN9oceanbase12blocksstable11ObRowReader15read_row_headerEPKclRPKNS0_11ObRowHeaderE -_ZN9oceanbase3sql12ObSortOpImpl4initEmPKNS_6common8ObIArrayINS0_20ObSortFieldCollationEEEPKNS3_INS2_9ObCmpFuncEEEPNS0_9ObEvalCtxEPNS0_13ObExecContextEbbbllbl -_ZNK9oceanbase7obmysql6OMPKOK9serializeEPclRl -_ZN9oceanbase3sql17ObFastParserMysql14process_valuesEPKc -_ZN9oceanbase6common16ObFixedArrayImplImNS0_12ObIAllocatorEE9push_backERKm +_ZNK6obutil9ObMonitorINS_11ObUtilMutexEE10timed_waitERKNS_9ObSysTimeE +_ZN9oceanbase6common17obj_val_serializeILNS0_9ObObjTypeE22EEEiRKNS0_5ObObjEPclRl +_ZNK9oceanbase6common8ObString9serializeEPclRl +_ZN9oceanbase5obrpc10ObGtiRPCCBILNS0_15ObRpcPacketCodeE1632EE8process_ERKNS0_14ObGtiRpcResultERKNS_6common6ObAddrERNS0_15ObRpcResultCodeE _ZN9oceanbase6common16ObFixedArrayImplImNS0_12ObIAllocatorEE7reserveEl _ZN9oceanbase6common16ObFixedArrayImplImNS0_12ObIAllocatorEE4initEl -_ZN9oceanbase6common11ObArrayImplINS_3sql12ObPCPrivInfoENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev +_ZNK9oceanbase8memtable20ObStoreRowkeyWrapper5equalERKS1_Rb +_ZN9oceanbase3sql13ObDASInsertOpD2Ev _ZN9oceanbase3sql8ObSortOp7destroyEv _ZN9oceanbase12blocksstable17ObTmpFileIOHandle5resetEv _ZN9oceanbase12blocksstable17ObTmpFileIOHandleD1Ev _ZN9oceanbase12blocksstable17ObTmpFileIOHandleD2Ev +_ZN9oceanbase3sql17ObPhysicalPlanCtx19reserve_param_spaceEl +_ZN9oceanbase10compaction22ObPartitionMinorMerger15merge_partitionERNS0_21ObBasicTabletMergeCtxEl +_ZNK9oceanbase7storage18ObSimpleRowsMergerINS_10compaction29ObPartitionMergeLoserTreeItemENS2_28ObPartitionMergeLoserTreeCmpEE5emptyEv +_ZNK9oceanbase7storage18ObSimpleRowsMergerINS_10compaction29ObPartitionMergeLoserTreeItemENS2_28ObPartitionMergeLoserTreeCmpEE18is_unique_championEv +_ZN9oceanbase7storage18ObSimpleRowsMergerINS_10compaction29ObPartitionMergeLoserTreeItemENS2_28ObPartitionMergeLoserTreeCmpEE7rebuildEv +_ZN9oceanbase7storage18ObSimpleRowsMergerINS_10compaction29ObPartitionMergeLoserTreeItemENS2_28ObPartitionMergeLoserTreeCmpEE8push_topERKS3_ +_ZN9oceanbase7storage18ObSimpleRowsMergerINS_10compaction29ObPartitionMergeLoserTreeItemENS2_28ObPartitionMergeLoserTreeCmpEE3topERPKS3_ +_ZN9oceanbase10compaction22ObPartitionMergeHelper19rebuild_rows_mergerEv +_ZN9oceanbase10compaction22ObPartitionMergeHelper25find_rowkey_minimum_itersERNS_6common9ObSEArrayIPNS0_20ObPartitionMergeIterELl16ENS2_19ModulePageAllocatorELb0EEE +_ZN9oceanbase7storage18ObSimpleRowsMergerINS_10compaction29ObPartitionMergeLoserTreeItemENS2_28ObPartitionMergeLoserTreeCmpEE3popEv +_ZNK9oceanbase10compaction26ObPartitionMajorRowsMerger18is_unique_championEv +_ZN9oceanbase10compaction26ObPartitionMajorRowsMerger3topERPKNS0_29ObPartitionMergeLoserTreeItemE +_ZN9oceanbase10compaction30ObPartitionMinorMacroMergeIter4nextEv +_ZN9oceanbase7storage18ObSimpleRowsMergerINS_10compaction29ObPartitionMergeLoserTreeItemENS2_28ObPartitionMergeLoserTreeCmpEE4pushERKS3_ +_ZN9oceanbase10compaction22ObPartitionMinorMerger23merge_same_rowkey_itersERNS_6common9ObSEArrayIPNS0_20ObPartitionMergeIterELl16ENS2_19ModulePageAllocatorELb0EEE +_ZN9oceanbase10compaction22ObPartitionMinorMerger13inner_processERKNS_12blocksstable10ObDatumRowE +_ZN9oceanbase12blocksstable18ObMacroBlockWriter10append_rowERKNS0_10ObDatumRowEPKNS0_16ObMacroBlockDescE +_ZNK9oceanbase12blocksstable18ObMacroBlockWriter17is_keep_freespaceEv +_ZNK9oceanbase12blocksstable18ObMicroBlockWriter13get_row_countEv +_ZNK9oceanbase12blocksstable18ObMicroBlockWriter14get_block_sizeEv +_ZN9oceanbase12blocksstable18ObMacroBlockWriter28try_active_flush_macro_blockEv +_ZN9oceanbase12blocksstable18ObMacroBlockWriter10append_rowERKNS0_10ObDatumRowEl +_ZN9oceanbase12blocksstable18ObMacroBlockWriter24update_micro_commit_infoERKNS0_10ObDatumRowE +_ZNK9oceanbase12blocksstable19ObMicroBlockEncoder14get_block_sizeEv +_ZNK9oceanbase12blocksstable28ObMicroBlockAdaptiveSplitter16check_need_splitEllllbRb +_ZN9oceanbase12blocksstable18ObMacroBlockWriter13save_last_keyERKNS0_10ObDatumRowE +_ZN9oceanbase10compaction16ObLocalAllocatorINS_6common16ObArenaAllocatorEE5allocEl +_ZN9oceanbase12blocksstable18ObMacroBlockWriter13save_last_keyERKNS0_13ObDatumRowkeyE +_ZN9oceanbase12blocksstable18ObMacroBlockWriter25append_row_and_hash_indexERKNS0_10ObDatumRowE +_ZN9oceanbase12blocksstable18ObMicroBlockWriter10append_rowERKNS0_10ObDatumRowE +_ZN9oceanbase6common13ob_crc64_isalEmPKcl +_ZN9oceanbase12blocksstable26ObMicroBlockChecksumHelper16cal_row_checksumINS0_14ObStorageDatumEEEiPKT_l +_ZN9oceanbase12blocksstable11ObRowWriter5writeElRKNS0_10ObDatumRowEPclRl +_ZN9oceanbase12blocksstable19ObMicroBufferWriter12ensure_spaceEl +_ZN9oceanbase12blocksstable11ObRowWriter17inner_write_cellsINS0_14ObStorageDatumEEEiPKT_l +_ZNK9oceanbase12blocksstable27ObDataMacroBlockMergeWriter17is_keep_freespaceEv +_ZN9oceanbase10compaction8ObMerger30get_base_iter_curr_macro_blockERPKNS_12blocksstable16ObMacroBlockDescE +_ZN9oceanbase10compaction26ObPartitionMajorRowsMerger3popEv +_ZN9oceanbase10compaction28ObPartitionMinorRowMergeIter4nextEv +_ZN9oceanbase10compaction30ObPartitionMinorMacroMergeIter10inner_nextEb +_ZN9oceanbase7storage24ObSSTableRowWholeScanner18inner_get_next_rowERPKNS_12blocksstable10ObDatumRowE +_ZN9oceanbase10compaction26ObPartitionMajorRowsMerger7rebuildEv +_ZN9oceanbase12blocksstable19ObMicroBlockEncoder10append_rowERKNS0_10ObDatumRowE +_ZN9oceanbase6common11ObArrayImplINS_12blocksstable15ObConstDatumRowENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE9push_backERKS3_ +_ZN9oceanbase10compaction26ObPartitionMajorRowsMerger8push_topERKNS0_29ObPartitionMergeLoserTreeItemE +_ZN9oceanbase10compaction26ObPartitionMajorRowsMerger4pushERKNS0_29ObPartitionMergeLoserTreeItemE +_ZN9oceanbase10compaction26ObPartitionMajorRowsMerger17compare_base_iterEv +_ZN9oceanbase6common13ObSEArrayImplIlLl16ENS0_19ModulePageAllocatorELb0EE5reuseEv +_ZN9oceanbase10compaction28ObPartitionMergeLoserTreeCmp7compareERKNS0_29ObPartitionMergeLoserTreeItemES4_Rl +_ZNK9oceanbase10compaction28ObPartitionMergeLoserTreeCmp14compare_rowkeyERKNS_12blocksstable10ObDatumRowES5_Rl +_ZN9oceanbase12blocksstable27ObDataMacroBlockMergeWriter10append_rowERKNS0_10ObDatumRowEPKNS0_16ObMacroBlockDescE +_ZN9oceanbase6common13ObSEArrayImplIlLl16ENS0_19ModulePageAllocatorELb0EE9push_backERKl +_ZN9oceanbase12blocksstable19ObMicroBufferWriter5writeIiEEiRKT_ +_ZN9oceanbase6common11ObArrayImplINS_12blocksstable15ObConstDatumRowENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE10extend_bufEl +_ZN9oceanbase10compaction22ObPartitionMinorMerger28move_and_remove_unused_itersERNS_6common9ObSEArrayIPNS0_20ObPartitionMergeIterELl16ENS2_19ModulePageAllocatorELb0EEES8_RNS2_8ObIArrayIlEE +_ZN9oceanbase10compaction17ObPartitionMerger7processERKNS_12blocksstable10ObDatumRowE +_ZN9oceanbase10compaction12ObMergeFuser8fuse_rowERNS_6common9ObSEArrayIPNS0_20ObPartitionMergeIterELl16ENS2_19ModulePageAllocatorELb0EEE +_ZN9oceanbase10compaction26ObMinorPartitionMergeFuser19preprocess_fuse_rowERKNS_12blocksstable10ObDatumRowERb +_ZN9oceanbase10compaction12ObMergeFuser22set_multi_version_flagERKNS_12blocksstable21ObMultiVersionRowFlagE +_ZN9oceanbase10compaction26ObMinorPartitionMergeFuser12end_fuse_rowERKNS_7storage8ObNopPosERNS_12blocksstable10ObDatumRowE +_ZN9oceanbase10compaction28ObPartitionMinorRowMergeIter21multi_version_compareERKNS0_20ObPartitionMergeIterERi +_ZN9oceanbase10compaction28ObPartitionMinorRowMergeIter25compare_multi_version_colERKNS0_20ObPartitionMergeIterElRi +_ZN9oceanbase5share17ObTenantDagWorker5yieldEv +_ZN9oceanbase12blocksstable18ObMacroBlockWriter17build_micro_blockEv +_ZN9oceanbase12blocksstable24ObMicroBlockBufferHelper28compress_encrypt_micro_blockERNS0_16ObMicroBlockDescEll +_ZNK9oceanbase12blocksstable13ObDictDecoder6decodeERKNS0_18ObColumnDecoderCtxERNS_6common7ObDatumElRKNS0_11ObBitStreamEPKcl +_ZNK9oceanbase12blocksstable13ObDictDecoder6decodeERKNS_6common9ObObjTypeERNS2_7ObDatumEll +_ZNK9oceanbase12blocksstable18ObMicroBlockWriter16get_column_countEv +LZ4_compress_default +LZ4_compress_fast_extState +_ZN9oceanbase6common25ObDataBlockCachePreWarmer14reserve_kvpairERKNS_12blocksstable16ObMicroBlockDescEl +_ZN9oceanbase6common25ObDataBlockCachePreWarmer17do_reserve_kvpairERKNS_12blocksstable16ObMicroBlockDescERl +_ZN9oceanbase12blocksstable24ObMicroBlockBufferHelper26prepare_micro_block_readerEPKclRPNS0_19ObIMicroBlockReaderE +_ZN9oceanbase12blocksstable18ObMicroBlockReader4initERKNS0_16ObMicroBlockDataEPKNS0_19ObStorageDatumUtilsE +_ZN9oceanbase12blocksstable24ObMicroBlockReaderHelper10get_readerENS_6common14ObRowStoreTypeERPNS0_19ObIMicroBlockReaderE +_ZNK9oceanbase6common15ObLZ4Compressor21get_max_overflow_sizeElRl +_ZN9oceanbase7storage24ObCompactionBufferWriter12ensure_spaceEl +_ZN9oceanbase6common15ObLZ4Compressor8compressEPKclPclRl +_ZN9oceanbase12blocksstable19ObMicroBlockEncoder16init_column_ctxsEv +_ZN9oceanbase6common11ObArrayImplINS_12blocksstable19ObColumnEncodingCtxENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE9push_backERKS3_ +_ZN9oceanbase12blocksstable18ObMacroBlockWriter11alloc_blockEv +_ZN9oceanbase12blocksstable18ObMicroBlockWriter5reuseEv +_ZN9oceanbase12blocksstable19ObMicroBufferWriter5reuseEv +_ZN9oceanbase12blocksstable24ObMicroBlockReaderHelper11init_readerINS0_18ObMicroBlockReaderEEEiRPT_RPNS0_19ObIMicroBlockReaderE +_ZN9oceanbase12blocksstable19ObMicroBlockDecoder4initERKNS0_16ObMicroBlockDataEPKNS0_19ObStorageDatumUtilsE +_ZN9oceanbase12blocksstableL21release_local_decoderINS0_13ObDictDecoderEEEvRNS0_13ObDecoderPoolEPNS0_16ObIColumnDecoderE.llvm.1477912345767287866 +_ZN9oceanbase12blocksstable21ObDataMicroBlockCache14reserve_kvpairERKNS0_16ObMicroBlockDescERNS_6common19ObKVCacheInstHandleERNS5_15ObKVCacheHandleERPNS5_13ObKVCachePairERl +_ZNK9oceanbase12blocksstable23ObMicroBlockEncodingCtx8is_validEv +_ZN9oceanbase6common25ObDataBlockCachePreWarmer13do_put_kvpairERKNS_12blocksstable16ObMicroBlockDescERNS0_10ObIKVCacheINS2_20ObMicroBlockCacheKeyENS2_22ObMicroBlockCacheValueEEE +_ZN9oceanbase12blocksstable22ObMicroBlockEncryption7encryptEPKclRS3_Rl +_ZN9oceanbase12blocksstable25ObCSMicroBlockTransformerD2Ev +_ZN9oceanbase12blocksstable19ObMicroBlockEncoder26update_estimate_size_limitERKNS0_23ObMicroBlockEncodingCtxE +_ZN9oceanbase6common11ObArrayImplIlNS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIlEENS0_22NotImplementItemEncodeIlEEE7destroyEv +_ZN9oceanbase12blocksstable18ObMacroBlockWriter17write_micro_blockERNS0_16ObMicroBlockDescE +_ZNK9oceanbase12blocksstable19ObMicroBlockEncoder17get_original_sizeEv +_ZN9oceanbase12blocksstable23ObDataIndexBlockBuilder10append_rowERKNS0_16ObMicroBlockDescERKNS0_12ObMacroBlockE +_ZN9oceanbase12blocksstable23ObDataIndexBlockBuilder28insert_and_update_index_treeEPKNS0_10ObDatumRowE +_ZN9oceanbase12blocksstable23ObDataIndexBlockBuilder25cal_macro_meta_block_sizeERKNS0_13ObDatumRowkeyERl +_ZNK9oceanbase12blocksstable18ObMicroBlockWriter17get_original_sizeEv +_ZN9oceanbase5share13ObBlockCipher13get_iv_lengthENS0_14ObCipherOpModeE +_ZNK9oceanbase12blocksstable19ObMicroBlockEncoder13get_row_countEv +_ZN9oceanbase12blocksstable19ObIMicroBlockWriter22build_micro_block_descERNS0_16ObMicroBlockDescE +_ZN9oceanbase12blocksstable19ObMicroBlockEncoder11build_blockERPcRl +_ZN9oceanbase12blocksstable19ObStringDiffEncoder14store_fix_dataERNS0_14ObBufferWriterE +_ZN9oceanbase12blocksstable26ObEncodingHashTableBuilder5buildERKNS0_15ObPodFix2dArrayINS_6common7ObDatumELl1048576ELl65408EEERKNS_5share6schema9ObColDescE +_ZN9oceanbase6common11DefHashFuncINS0_19DatumHashCalculatorILNS0_9ObObjTypeE5ENS0_12ObMurmurHashEEEE4hashERKNS0_7ObDatumEmRm +_ZN9oceanbase6common11DefHashFuncINS0_22DatumStrHashCalculatorILNS0_15ObCollationTypeE45ELb0ENS0_12ObMurmurHashELb0EEEE4hashERKNS0_7ObDatumEmRm +_ZN9oceanbase6common9ObCharset4hashENS0_15ObCollationTypeEPKclmbPFmPKvmmE +_ZL20ob_hash_sort_utf8mb4PK13ObCharsetInfoPKhmPmS4_bPFmPKvmmE +_ZN9oceanbase12blocksstable19ObMicroBlockEncoder13fill_row_dataEl +_ZN9oceanbase12blocksstable12ObRawEncoder14store_fix_dataERNS0_14ObBufferWriterE +_ZN9oceanbase12blocksstable24ObIntegerBaseDiffEncoder14store_fix_dataERNS0_14ObBufferWriterE +_ZNK9oceanbase12blocksstable24ObIntegerBaseDiffEncoder13ObIntegerDataIlE5deltaERKNS_6common7ObDatumE +_ZN9oceanbase12blocksstable13ObDictEncoder14store_fix_dataERNS0_14ObBufferWriterE +_ZN9oceanbase12blocksstable18ObMicroBlockWriter11build_blockERPcRl +_ZNK9oceanbase12blocksstable20ObDataMacroBlockMeta18build_estimate_rowERNS0_10ObDatumRowERNS_6common12ObIAllocatorE +_ZNK9oceanbase12blocksstable18ObDataBlockMetaVal8is_validEv +_ZN9oceanbase12blocksstable13ObDictEncoder10store_metaERNS0_14ObBufferWriterE +_ZSt25__unguarded_linear_insertIPN9oceanbase12blocksstable22ObEncodingHashNodeListEN9__gnu_cxx5__ops14_Val_comp_iterINS1_13ObDictEncoder7DictCmpEEEEvT_T0_ +_ZN9oceanbase12blocksstable20ObDataMacroBlockMetaD1Ev +_ZN9oceanbase12blocksstable19ObMicroBufferWriter5writeEPKvl +_ZNK9oceanbase12blocksstable13ObDictEncoder9calc_sizeEv +_ZN9oceanbase12blocksstable18ObDataBlockMetaValC2Ev +_ZNK9oceanbase12blocksstable12ObRawEncoder34get_encoding_store_meta_need_spaceERl +_ZN9oceanbase6common11ObArrayImplIPNS_12blocksstable17ObMultiPrefixTreeENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEE9push_backERKS4_ +_ZN9oceanbase12blocksstable19ObStringDiffEncoder10store_metaERNS0_14ObBufferWriterE +_ZN9oceanbase12blocksstable23ObBaseIndexBlockBuilder10append_rowERKNS0_19ObIndexBlockRowDescE +_ZN9oceanbase12blocksstable22ObIndexBlockRowBuilder10set_rowkeyERKNS0_19ObIndexBlockRowDescE +_ZN9oceanbase12blocksstable22ObIndexBlockRowBuilder22append_header_and_metaERKNS0_19ObIndexBlockRowDescERKl +_ZN9oceanbase12blocksstable15ObPodFix2dArrayINS_6common7ObDatumELl1048576ELl65408EE6extendEl +_ZNK9oceanbase12blocksstable12ObRawEncoder9calc_sizeEv +_ZN9oceanbase12blocksstable12ObMacroBlock17write_micro_blockERKNS0_16ObMicroBlockDescERl +_ZNK9oceanbase12blocksstable18ObMicroBlockHeader9deep_copyEPclRlRPS1_ +_ZNK9oceanbase12blocksstable19ObStringDiffEncoder34get_encoding_store_meta_need_spaceERl +_ZNK9oceanbase12blocksstable16ObIColumnEncoder20is_valid_fix_encoderEv +_ZN9oceanbase5shareL14get_evp_cipherENS0_14ObCipherOpModeE.llvm.5808438859131731834 +_ZN9oceanbase6common12ObDatumFuncs14get_basic_funcENS0_9ObObjTypeENS0_15ObCollationTypeEsbbs +_ZN9oceanbase12blocksstable22ObIndexBlockRowBuilder14calc_data_sizeERKNS0_19ObIndexBlockRowDescERNS0_14ObAggRowWriterERl +_ZN9oceanbase6common11ObArrayImplIPNS_12blocksstable16ObIColumnEncoderENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEE9push_backERKS4_ +_ZN9oceanbase6common11ObArrayImplIPNS_12blocksstable19ObEncodingHashTableENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEE9push_backERKS4_ +_ZN9oceanbase12blocksstable19ObMicroBlockEncoder11try_encoderINS0_12ObRawEncoderEEEiRPNS0_16ObIColumnEncoderEl +_ZN9oceanbase12blocksstable19ObMicroBlockEncoder13alloc_encoderINS0_12ObRawEncoderEEEPT_v +_ZN9oceanbase12blocksstable12ObRawEncoder8traverseEbRb +_ZN9oceanbase12blocksstable12ObRawEncoder4initERKNS0_19ObColumnEncodingCtxElRKNS_6common7ObArrayINS0_15ObConstDatumRowENS5_19ModulePageAllocatorELb0ENS5_22ObArrayDefaultCallBackIS7_EENS5_22NotImplementItemEncodeIS7_EEEE +_ZN9oceanbase12blocksstable16ObIColumnEncoder4initERKNS0_19ObColumnEncodingCtxElRKNS_6common7ObArrayINS0_15ObConstDatumRowENS5_19ModulePageAllocatorELb0ENS5_22ObArrayDefaultCallBackIS7_EENS5_22NotImplementItemEncodeIS7_EEEE +_ZN9oceanbase12blocksstable12ObRawEncoder10store_metaERNS0_14ObBufferWriterE +_ZN9oceanbase5share16ObEncryptionUtil16encrypted_lengthENS0_14ObCipherOpModeEl +_ZN9oceanbase12blocksstable19ObMicroBlockEncoder11try_encoderINS0_13ObDictEncoderEEEiRPNS0_16ObIColumnEncoderEl +_ZN9oceanbase12blocksstable13ObDictEncoder8traverseERb +_ZN9oceanbase12blocksstable26ObEncodingHashTableFactory6createEllRPNS0_19ObEncodingHashTableE +_ZN9oceanbase12blocksstable27ObDataMacroBlockMergeWriter17build_micro_blockEv +_ZN9oceanbase12blocksstable19ObMicroBlockEncoder11try_encoderERPNS0_16ObIColumnEncoderElNS0_14ObColumnHeader4TypeEll +_ZN9oceanbase6common10zstd_1_3_822ObZstdCompressor_1_3_810decompressEPKclPclRl +_ZN9oceanbase6common10zstd_1_3_813ObZstdWrapper10decompressERNS1_17OB_ZSTD_customMemEPKcmPcmRm +ZSTD_createDCtx_advanced +ZSTD_freeDCtx +_ZN9oceanbase12blocksstable19ObMicroBlockEncoder11try_encoderINS0_14ObConstEncoderEEEiRPNS0_16ObIColumnEncoderEl +_ZN9oceanbase12blocksstable14ObConstEncoder4initERKNS0_19ObColumnEncodingCtxElRKNS_6common7ObArrayINS0_15ObConstDatumRowENS5_19ModulePageAllocatorELb0ENS5_22ObArrayDefaultCallBackIS7_EENS5_22NotImplementItemEncodeIS7_EEEE +_ZN9oceanbase12blocksstable13ObDictEncoder4initERKNS0_19ObColumnEncodingCtxElRKNS_6common7ObArrayINS0_15ObConstDatumRowENS5_19ModulePageAllocatorELb0ENS5_22ObArrayDefaultCallBackIS7_EENS5_22NotImplementItemEncodeIS7_EEEE +_ZN9oceanbase12blocksstable14ObConstEncoder8traverseERb +_ZN9oceanbase12blocksstable19ObMicroBlockDecoder5resetEv +_ZNK9oceanbase12blocksstable14ObConstEncoder34get_encoding_store_meta_need_spaceERl +_ZN9oceanbase12blocksstable14ObConstEncoder10store_metaERNS0_14ObBufferWriterE +_ZN9oceanbase6common11DefHashFuncINS0_22DatumStrHashCalculatorILNS0_15ObCollationTypeE63ELb0ENS0_12ObMurmurHashELb0EEEE4hashERKNS0_7ObDatumEmRm +_ZZN9oceanbase12blocksstable19ObMicroBlockEncoder26update_estimate_size_limitERKNS0_23ObMicroBlockEncodingCtxEENK5$_659clEPKc +_ZN9oceanbase7storage24ObSSTableRowWholeScanner27open_next_valid_micro_blockEv +_ZN9oceanbase7storage24ObSSTableRowWholeScanner25check_micro_block_recycleERKNS_12blocksstable18ObMicroBlockHeaderERb +_ZN9oceanbase12blocksstable24ObMicroBlockBareIterator25get_next_micro_block_dataERNS0_16ObMicroBlockDataE +_ZNK9oceanbase12blocksstable25ObSSTableMacroBlockHeader8is_validEv +_ZN9oceanbase12blocksstable18ObMacroBlockReader27decrypt_and_decompress_dataERKNS0_25ObSSTableMacroBlockHeaderEPKclRS6_RlRb +_ZN9oceanbase12blocksstable18ObMacroBlockReader27decrypt_and_decompress_dataERKNS0_19ObMicroBlockDesMetaEPKclRS6_RlRbbPNS_6common12ObIAllocatorE +_ZN9oceanbase12blocksstable18ObMacroBlockReader30do_decrypt_and_decompress_dataERKNS0_18ObMicroBlockHeaderERKNS0_19ObMicroBlockDesMetaEPKclRS9_RlRbbPNS_6common12ObIAllocatorE +_ZNK9oceanbase12blocksstable18ObMicroBlockHeader12check_recordEPKcls +_ZN9oceanbase12blocksstable19ObMicroBlockEncoder11try_encoderINS0_19ObStringDiffEncoderEEEiRPNS0_16ObIColumnEncoderEl +_ZN9oceanbase12blocksstable19ObStringDiffEncoder8traverseERb +_ZN9oceanbase12blocksstable19ObStringDiffEncoder4initERKNS0_19ObColumnEncodingCtxElRKNS_6common7ObArrayINS0_15ObConstDatumRowENS5_19ModulePageAllocatorELb0ENS5_22ObArrayDefaultCallBackIS7_EENS5_22NotImplementItemEncodeIS7_EEEE +ZSTD_decompressMultiFrame.llvm.9685852580138344713 +ZSTD_decompressBlock_internal +ZSTD_decompressSequences_bmi2.llvm.8881741463387445498 +ZSTD_decodeLiteralsBlock +HUF_decompress4X1_usingDTable_internal_bmi2 +HUF_decompress4X_hufOnly_wksp_bmi2 +HUF_readDTableX1_wksp +HUF_readStats +FSE_decompress_usingDTable +FSE_buildDTable +FSE_readNCount +ZSTD_decodeSeqHeaders +ZSTD_buildSeqTable +ZSTD_buildFSETable +ZSTD_getFrameHeader_advanced +_ZN9oceanbase6common14ObSmallObjPoolINS_12blocksstable14ObConstDecoderEE4freeEPS3_ +_ZN9oceanbase10compaction8ObMerger13prepare_mergeERNS0_21ObBasicTabletMergeCtxEl +_ZN9oceanbase12blocksstable19ObMicroBlockEncoder11try_encoderINS0_24ObIntegerBaseDiffEncoderEEEiRPNS0_16ObIColumnEncoderEl +_ZN9oceanbase12blocksstable24ObIntegerBaseDiffEncoder8traverseERb +_ZZN9oceanbase7storage24ObCompactionBufferWriter12ensure_spaceElENK5$_263clEPKc +_ZN9oceanbase12blocksstable12ObRawEncoder14get_var_lengthElRl +_ZN9oceanbase12blocksstable19ObMicroBlockEncoder23try_span_column_encoderINS0_20ObColumnEqualEncoderEEEiRPNS0_16ObIColumnEncoderEl +_ZN9oceanbase12blocksstable19ObMicroBlockEncoder23try_span_column_encoderEPNS0_19ObSpanColumnEncoderEllRb +_ZN9oceanbase12blocksstable20ObColumnEqualEncoder8traverseERb +_ZN9oceanbase6common11ObArrayImplIlNS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIlEENS0_22NotImplementItemEncodeIlEEE9push_backERKl +_ZN9oceanbase12blocksstable19ObMicroBlockEncoder5reuseEv +_ZN9oceanbase12blocksstable19ObMicroBlockEncoder13free_encodersEv +_ZN9oceanbase12blocksstable24ObMultiPrefixTreeFactory7recycleEPNS0_17ObMultiPrefixTreeE +_ZN9oceanbase12blocksstable26ObEncodingHashTableFactory7recycleEPNS0_19ObEncodingHashTableE +_ZN9oceanbase12blocksstable44ObMultiVersionMicroBlockMinorMergeRowScanner4openERKNS0_12MacroBlockIdERKNS0_16ObMicroBlockDataEbb +_ZN9oceanbase12blocksstable19ObMicroBlockEncoder23try_span_column_encoderINS0_23ObInterColSubStrEncoderEEEiRPNS0_16ObIColumnEncoderEl +_ZN9oceanbase12blocksstable23ObIMicroBlockRowScanner4openERKNS0_12MacroBlockIdERKNS0_16ObMicroBlockDataEbb +_ZN9oceanbase12blocksstable23ObInterColSubStrEncoder8traverseERb +_ZN9oceanbase6common10zstd_1_3_822ObZstdCompressor_1_3_88compressEPKclPclRl +_ZL14ob_zstd_mallocPvm +_ZN9oceanbase6common10zstd_1_3_813ObZstdWrapper8compressERNS1_17OB_ZSTD_customMemEPKcmPcmRm +_ZL12ob_zstd_freePvS_ +ZSTD_compress_usingDict +ZSTD_compressEnd +ZSTD_compressContinue_internal.llvm.6017512284523208930 +ZSTD_compressBlock_internal +ZSTD_compressBlock_fast +ZSTD_encodeSequences_bmi2 +ZSTD_buildCTable +FSE_buildCTable_wksp +FSE_writeNCount_generic.llvm.15848333331409998944 +FSE_normalizeCount +FSE_optimalTableLog +ZSTD_storeSeq +ZSTD_count +ZSTD_freeCCtxContent.llvm.6017512284523208930 +HUF_compress_internal.llvm.6493419786308544980 +HIST_count_parallel_wksp.llvm.18111432382211931394 +HUF_buildCTable_wksp +HUF_writeCTable +FSE_compress_usingCTable_generic.llvm.15848333331409998944 +HUF_compress4X_usingCTable_internal +HUF_compress1X_usingCTable_internal_bmi2 +ZSTD_resetCCtx_internal.llvm.6017512284523208930 +ZSTD_getCParams +ZSTD_compress_insertDictionary.llvm.6017512284523208930 +HUF_decompress4X1_usingDTable_internal.llvm.6315770839748097910 +_ZN9oceanbase7storage24ObCompactionBufferWriter11alloc_blockElRNS0_23ObCompactionBufferBlockE _ZN9oceanbase3sql19ObScalarAggregateOp11inner_closeEv -_ZN9oceanbase3sql17ObChunkDatumStore15ShadowStoredRow4initERNS_6common12ObIAllocatorEl -_ZN9oceanbase6common11ObArrayImplINS_5share6schema18ObSchemaObjVersionENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_17DefaultItemEncodeIS4_EEED2Ev +_ZN9oceanbase8memtable27ObMultiVersionValueIterator27get_next_multi_version_nodeERPKv +_ZN9oceanbase6common11ObArrayImplINS_3sql16ObExprConstraintENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev +_ZN9oceanbase3sql15ObTableModifyOp10inner_openEv +_ZN9oceanbase7storage8ObAggRowD2Ev +_ZN9oceanbase3sql17ObMergeDistinctOp11inner_closeEv +_ZN9oceanbase3sql17ObChunkDatumStore14init_batch_ctxEll +_ZN9oceanbase6common11ObArrayImplINS_3sql9ObDopHintENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev +_ZN9oceanbase3sql8ObSortOp11inner_closeEv +_ZN9oceanbase3sql13ObDatumCaster7destroyEv +MD5_Update _ZN9oceanbase3sql13AllocOpHelperILi26EE5allocERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputElRPNS0_10ObOperatorE -_ZN9oceanbase6common9Ob2DArrayIPNS_3sql20ObAggregateProcessor8GroupRowELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS5_Ll64ES6_Lb0EEEE9push_backERKS5_ -_ZN9oceanbase3sql9ObEvalCtxD1Ev -_ZN9oceanbase3sql9ObEvalCtxD2Ev -_ZN9oceanbase6common11ObArrayImplINS_3sql22ObDDLSchemaVersionHintENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev +_ZN9oceanbase8observer16ObMPPacketSender7do_initEPNS_3rpc9ObRequestEhbbl _ZN9oceanbase3sql14ObExprValuesOp10inner_openEv -_ZN9oceanbase3sql13ObDatumCaster4initERNS0_13ObExecContextE _ZN9oceanbase3sql10ObSQLUtils21get_default_cast_modeEbjPKNS0_16ObSQLSessionInfoERm +_ZN9oceanbase3sql13ObDatumCaster4initERNS0_13ObExecContextE _ZZN9oceanbase3sql14ObExprValuesOp10inner_openEvENK5$_318clEPKc -_ZN9oceanbase3sql17ObChunkDatumStore14init_batch_ctxEll -_ZN9oceanbase8observer16ObMPPacketSender7do_initEPNS_3rpc9ObRequestEhbbl -_ZN9oceanbase3sql13ObDatumCaster7destroyEv -_ZN9oceanbase3sql16ObFastParserBase12process_hintEv +_ZSt16__introsort_loopIPN9oceanbase12blocksstable22ObEncodingHashNodeListElN9__gnu_cxx5__ops15_Iter_comp_iterINS1_13ObDictEncoder7DictCmpEEEEvT_SA_T0_T1_ +_ZN9oceanbase12blocksstable13ObDictEncoder7DictCmpclERKNS0_22ObEncodingHashNodeListES5_ +_ZN9oceanbase6common20ObNullSafeDatumTCCmpILNS0_14ObObjTypeClassE1ELS2_1ELb1EE3cmpERKNS0_7ObDatumES6_Ri +_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE23check_data_infos_borderEllRKNS_12blocksstable13ObDatumRowkeyEb +_ZN9oceanbase7storage21ObMicroInfoComparator7compareERKNS_12blocksstable16ObMicroIndexInfoERKNS2_13ObDatumRowkeyE _ZN9oceanbase3sql12ObSortOpImpl5reuseEv +_ZN9oceanbase6common9Ob2DArrayIPNS_3sql20ObAggregateProcessor8GroupRowELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS5_Ll64ES6_Lb0EEEE9push_backERKS5_ +_ZN9oceanbase6common11ObArrayImplINS_3sql22ObDDLSchemaVersionHintENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev +_ZN9oceanbase3sql11ObGroupByOp10inner_openEv +_ZN9oceanbase3sql17ObChunkDatumStore15ShadowStoredRow4initERNS_6common12ObIAllocatorEl +_ZN9oceanbase3sql20ObAggregateProcessor4initEv +_ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql20ObAggregateProcessor12IAggrFuncCtxENS0_12ObIAllocatorEE16prepare_allocateEl +_ZN9oceanbase3sql20ObAggregateProcessor16DecIntAggFuncCtx4initERKNS0_10ObAggrInfoEl +_ZN9oceanbase6common9Ob2DArrayIPNS_3sql20ObAggregateProcessor8GroupRowELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS5_Ll64ES6_Lb0EEEE7reserveEl +_ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql20ObAggregateProcessor12IAggrFuncCtxENS0_12ObIAllocatorEE7reserveEl +_ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql20ObAggregateProcessor12IAggrFuncCtxENS0_12ObIAllocatorEE4initEl +_ZN9oceanbase3sql10ObExprTrim9eval_trimERKNS0_6ObExprERNS0_9ObEvalCtxERNS_6common7ObDatumE +_ZN9oceanbase3sql13cast_eval_argERKNS0_6ObExprERNS0_9ObEvalCtxERNS_6common7ObDatumE +_ZN9oceanbase3sql30eval_assign_question_mark_funcERKNS0_6ObExprERNS0_9ObEvalCtxERNS_6common7ObDatumE +_ZN9oceanbase3sql10ObSQLUtils21get_default_cast_modeERKNS0_4stmt8StmtTypeEPKNS0_16ObSQLSessionInfoERm +_ZN9oceanbase6common11ObObjCaster7to_typeENS0_9ObObjTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS5_ +_ZN9oceanbase3sql15ObDatumObjParam25alloc_datum_reserved_buffINS_6common9ObObjMetaEEEiRKT_sRNS3_12ObIAllocatorE +_ZN9oceanbase3sql15ObDatumObjParam13from_objparamERKNS_6common10ObObjParamEPNS2_12ObIAllocatorE +_ZN9oceanbase3sqlL15eval_trim_innerERKNS0_6ObExprERNS0_9ObEvalCtxERNS_6common7ObDatumERKlRNS6_8ObStringERbRKNS0_11ObDatumMetaEbRKS7_ +_ZN9oceanbase3sql10ObExprTrim4trimERNS_6common8ObStringElRKS3_S6_ +_ZN9oceanbase3sql16ObFastParserBase17parser_insert_strERNS_6common12ObIAllocatorElRKNS2_8ObStringERS5_RbRlSA_SA_SA_ _ZN9oceanbase3sql10ObOperator12get_next_rowEv _ZN9oceanbase3sql13ObDASUpdateOp10release_opEv _ZN9oceanbase3sql13ObDASDeleteOp10release_opEv -_ZN9oceanbase3sql13ObDASInsertOp10release_opEv _ZN9oceanbase6common12ObDataBuffer5allocEl +_ZN9oceanbase3sql13ObDASInsertOp10release_opEv _ZN9oceanbase3sql17ObExprStrResAlloc5allocEl _ZN9oceanbase3sql15ObTableModifyOp19submit_all_dml_taskEv _ZN9oceanbase3sql14ObExprValuesOp18inner_get_next_rowEv @@ -1602,405 +2008,468 @@ _ZN9oceanbase6common9ObCharset20charset_type_by_collENS0_15ObCollationTypeE _ZN9oceanbase3sql13ObDatumCaster7to_typeERKNS0_11ObDatumMetaERKNS0_6ObExprERKmRPNS_6common7ObDatumEl _ZN9oceanbase3sql7int_intERKNS0_6ObExprERNS0_9ObEvalCtxERNS_6common7ObDatumE _ZN9oceanbase3sql13ObDatumCaster15setup_cast_exprERKNS0_11ObDatumMetaERKNS0_6ObExprEmRS5_ +_ZN9oceanbase3sql15ObTableDeleteOp23write_row_to_das_bufferEv +_ZN9oceanbase3sql12ObDMLService19write_row_to_das_opILi4EEEiRKNS0_17ObDASDMLBaseCtDefERNS0_17ObDASDMLBaseRtDefEPKNS0_14ObDASTabletLocERNS0_10ObDMLRtCtxERKNS_6common12ObFixedArrayIPNS0_6ObExprENSD_12ObIAllocatorEEESG_RPNS0_17ObChunkDatumStore9StoredRowE _ZN9oceanbase3sql15ObTableInsertOp23write_row_to_das_bufferEv _ZN9oceanbase3sql15ObTableInsertOp15calc_tablet_locERKNS0_10ObInsCtDefERNS0_10ObInsRtDefERPNS0_14ObDASTabletLocE _ZN9oceanbase3sql8ObDASCtx19extended_tablet_locERNS0_13ObDASTableLocERKNS_6common10ObTabletIDERPNS0_14ObDASTabletLocERKmSC_ -_ZN9oceanbase3sql12ObDMLService19write_row_to_das_opILi2EEEiRKNS0_17ObDASDMLBaseCtDefERNS0_17ObDASDMLBaseRtDefEPKNS0_14ObDASTabletLocERNS0_10ObDMLRtCtxERKNS_6common12ObFixedArrayIPNS0_6ObExprENSD_12ObIAllocatorEEESG_RPNS0_17ObChunkDatumStore9StoredRowE _ZN9oceanbase3sql13ObDASTableLoc14add_tablet_locEPNS0_14ObDASTabletLocE +_ZN9oceanbase3sql12ObDMLService19write_row_to_das_opILi2EEEiRKNS0_17ObDASDMLBaseCtDefERNS0_17ObDASDMLBaseRtDefEPKNS0_14ObDASTabletLocERNS0_10ObDMLRtCtxERKNS_6common12ObFixedArrayIPNS0_6ObExprENSD_12ObIAllocatorEEESG_RPNS0_17ObChunkDatumStore9StoredRowE _ZN9oceanbase3sql19ObDASLocationRouter14get_tablet_locERKNS0_17ObDASTableLocMetaERKNS_6common10ObTabletIDERNS0_14ObDASTabletLocE _ZN9oceanbase3sql23ObExprCalcPartitionBase23calc_part_and_tablet_idEPKNS0_6ObExprERNS0_9ObEvalCtxERmRNS_6common10ObTabletIDE _ZN9oceanbase3sql23ObExprCalcPartitionBase26calc_no_partition_locationERKNS0_6ObExprERNS0_9ObEvalCtxERNS_6common7ObDatumE -_ZN9oceanbase3sql15ObTableDeleteOp23write_row_to_das_bufferEv -_ZN9oceanbase3sql12ObDMLService19write_row_to_das_opILi4EEEiRKNS0_17ObDASDMLBaseCtDefERNS0_17ObDASDMLBaseRtDefEPKNS0_14ObDASTabletLocERNS0_10ObDMLRtCtxERKNS_6common12ObFixedArrayIPNS0_6ObExprENSD_12ObIAllocatorEEESG_RPNS0_17ObChunkDatumStore9StoredRowE _ZN9oceanbase3sql8ObDASCtx21get_das_tablet_mapperEmRNS0_17ObDASTabletMapperEPKNS_6common12ObIArrayWrapImEE -_ZN9oceanbase5share6schema19ObSchemaGetterGuard16get_table_schemaEmmRPKNS1_13ObTableSchemaE -_ZN9oceanbase5share6schema19ObSchemaGetterGuard10get_schemaINS1_13ObTableSchemaEEEiNS1_12ObSchemaTypeEmmRPKT_l _ZN9oceanbase3sql12ObDMLService18process_insert_rowERKNS0_10ObInsCtDefERNS0_10ObInsRtDefERNS0_15ObTableModifyOpERb _ZN9oceanbase3sql12ObDMLService14check_row_nullERKNS_6common8ObIArrayIPNS0_6ObExprEEERNS0_9ObEvalCtxElRKNS3_INS0_13ColumnContentEEERKNS0_17ObDASDMLBaseCtDefEbRNS0_15ObTableModifyOpE _ZN9oceanbase3sql16ObExprColumnConv14column_convertERKNS0_6ObExprERNS0_9ObEvalCtxERNS_6common7ObDatumE _ZN9oceanbase6common9ObCharset15well_formed_lenENS0_15ObCollationTypeEPKclRl _ZN9oceanbase3sql20datum_accuracy_checkERKNS0_6ObExprEmRNS0_9ObEvalCtxERKNS_6common10ObAccuracyEbRKNS6_7ObDatumERSA_Ri -_ZN9oceanbase3sql12ObDMLService26init_heap_table_pk_for_insERKNS0_10ObInsCtDefERNS0_9ObEvalCtxE -_ZN9oceanbase3sql12ObDMLService18process_delete_rowERKNS0_10ObDelCtDefERNS0_10ObDelRtDefERbRNS0_15ObTableModifyOpE -_ZN9oceanbase3sql15ObTableModifyOp20merge_implict_cursorEllll -_ZN9oceanbase3sql13TriggerHandle20do_handle_before_rowERNS0_15ObTableModifyOpERNS0_17ObDASDMLBaseCtDefERKNS0_14ObTrigDMLCtDefERNS0_14ObTrigDMLRtDefE +_ZN9oceanbase3sql13ObDASTableLoc20get_tablet_loc_by_idERKNS_6common10ObTabletIDERPNS0_14ObDASTabletLocE _ZN9oceanbase3sql19ObDASLocationRouter19nonblock_get_leaderEmRKNS_6common10ObTabletIDERNS0_14ObDASTabletLocE _ZN9oceanbase5share19ObLSLocationService19nonblock_get_leaderElmRKNS0_6ObLSIDERNS_6common6ObAddrE +_ZN9oceanbase3sql15ObTableDeleteOp20write_rows_post_procEi +_ZN9oceanbase5share6schema19ObSchemaGetterGuard16get_table_schemaEmmRPKNS1_13ObTableSchemaE +_ZN9oceanbase5share6schema19ObSchemaGetterGuard10get_schemaINS1_13ObTableSchemaEEEiNS1_12ObSchemaTypeEmmRPKT_l +_ZN9oceanbase3sql12ObDMLService18process_delete_rowERKNS0_10ObDelCtDefERNS0_10ObDelRtDefERbRNS0_15ObTableModifyOpE +_ZN9oceanbase3sql15ObTableModifyOp20merge_implict_cursorEllll _ZN9oceanbase3sql15ObTableUpdateOp23write_row_to_das_bufferEv _ZN9oceanbase3sql12ObDMLService22add_related_index_infoERKNS0_14ObDASTabletLocERKNS_6common12ObFixedArrayIPNS0_17ObDASDMLBaseCtDefENS5_12ObIAllocatorEEERNS5_11ObArrayWrapIPNS0_17ObDASDMLBaseRtDefEEERNS0_12ObIDASTaskOpE -_ZZN9oceanbase3sql16ObDASWriteBuffer11try_add_rowERKNS_6common8ObIArrayIPNS0_6ObExprEEEPNS0_9ObEvalCtxElRPNS0_17ObChunkDatumStore9StoredRowERbbENK5$_147clEPKc _ZN9oceanbase3sql16ObDASWriteBuffer11try_add_rowERKNS_6common8ObIArrayIPNS0_6ObExprEEEPNS0_9ObEvalCtxElRPNS0_17ObChunkDatumStore9StoredRowERbb -_ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql14ObDASBaseRtDefENS0_12ObIAllocatorEE9push_backERKS4_ -_ZN9oceanbase6common16ObFixedArrayImplINS0_10ObTabletIDENS0_12ObIAllocatorEE9push_backERKS2_ +_ZZN9oceanbase3sql16ObDASWriteBuffer11try_add_rowERKNS_6common8ObIArrayIPNS0_6ObExprEEEPNS0_9ObEvalCtxElRPNS0_17ObChunkDatumStore9StoredRowERbbENK5$_147clEPKc _ZN9oceanbase6common16ObFixedArrayImplIPKNS_3sql14ObDASBaseCtDefENS0_12ObIAllocatorEE9push_backERKS5_ +_ZN9oceanbase6common16ObFixedArrayImplINS0_10ObTabletIDENS0_12ObIAllocatorEE9push_backERKS2_ +_ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql14ObDASBaseRtDefENS0_12ObIAllocatorEE9push_backERKS4_ _ZN9oceanbase6common16ObFixedArrayImplINS0_10ObTabletIDENS0_12ObIAllocatorEE7reserveEl _ZN9oceanbase6common16ObFixedArrayImplINS0_10ObTabletIDENS0_12ObIAllocatorEE4initEl _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql14ObDASBaseRtDefENS0_12ObIAllocatorEE7reserveEl _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql14ObDASBaseRtDefENS0_12ObIAllocatorEE4initEl _ZN9oceanbase6common16ObFixedArrayImplIPKNS_3sql14ObDASBaseCtDefENS0_12ObIAllocatorEE7reserveEl _ZN9oceanbase6common16ObFixedArrayImplIPKNS_3sql14ObDASBaseCtDefENS0_12ObIAllocatorEE4initEl -_ZN9oceanbase3sql13ObDASTableLoc20get_tablet_loc_by_idERKNS_6common10ObTabletIDERPNS0_14ObDASTabletLocE -_ZN9oceanbase3sql15ObTableDeleteOp20write_rows_post_procEi -_ZZN9oceanbase5share6schema19ObSchemaGetterGuard20get_from_local_cacheINS1_13ObTableSchemaEEEiNS1_12ObSchemaTypeEmmRPKT_ENKUlPKcE3_clESB_ -_ZN9oceanbase3sql12ObDMLService25filter_row_for_view_checkERKNS_6common12ObFixedArrayIPNS0_6ObExprENS2_12ObIAllocatorEEERNS0_9ObEvalCtxERb +_ZN9oceanbase3sql13TriggerHandle20do_handle_before_rowERNS0_15ObTableModifyOpERNS0_17ObDASDMLBaseCtDefERKNS0_14ObTrigDMLCtDefERNS0_14ObTrigDMLRtDefE +_ZN9oceanbase3sql12ObDMLService26init_heap_table_pk_for_insERKNS0_10ObInsCtDefERNS0_9ObEvalCtxE _ZN9oceanbase3sql17ObDASTabletMapper27get_non_partition_tablet_idERNS_6common8ObIArrayINS2_10ObTabletIDEEERNS3_ImEE _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl1ENS0_19ModulePageAllocatorELb0EE9push_backERKS2_ _ZN9oceanbase6common13ObSEArrayImplImLl1ENS0_19ModulePageAllocatorELb0EE9push_backERKm _ZN9oceanbase3sql17ObDASTabletMapper24get_tablet_and_object_idENS_5share6schema16ObPartitionLevelEmRKNS_6common10ObNewRangeERNS5_8ObIArrayINS5_10ObTabletIDEEERNS9_ImEE -_ZZNK9oceanbase5share6schema17ObPartitionSchema24get_tablet_and_object_idERNS_6common10ObTabletIDERmENK6$_2927clEPKc.llvm.4013174362514226367 _ZN9oceanbase5share6schema16ObPartitionUtils24get_tablet_and_object_idERKNS1_13ObTableSchemaERNS_6common10ObTabletIDERmPNS1_16RelatedTableInfoE _ZNK9oceanbase5share6schema21ObSimpleTableSchemaV213get_tablet_idEv +_ZNK9oceanbase5share6schema21ObSimpleTableSchemaV213get_object_idEv _ZNK9oceanbase5share6schema17ObPartitionSchema24get_tablet_and_object_idERNS_6common10ObTabletIDERm _ZNK9oceanbase5share6schema21ObSimpleTableSchemaV210has_tabletEv _ZNK9oceanbase5share6schema21ObSimpleTableSchemaV214get_part_levelEv +_ZZNK9oceanbase5share6schema17ObPartitionSchema24get_tablet_and_object_idERNS_6common10ObTabletIDERmENK6$_2927clEPKc.llvm.788657004958285896 +_ZN9oceanbase3sql12ObDMLService25filter_row_for_view_checkERKNS_6common12ObFixedArrayIPNS0_6ObExprENS2_12ObIAllocatorEEERNS0_9ObEvalCtxERb +_ZN9oceanbase3sql12ObDMLService24set_heap_table_hidden_pkERKNS0_10ObInsCtDefERKNS_6common10ObTabletIDERNS0_9ObEvalCtxE _ZN9oceanbase3sql12ObDMLService18process_update_rowERKNS0_10ObUpdCtDefERNS0_10ObUpdRtDefERbRNS0_15ObTableModifyOpE _ZNK9oceanbase3sql6ObExpr23eval_one_datum_of_batchERNS0_9ObEvalCtxERPNS_6common7ObDatumE _ZN9oceanbase3sql9ObExprAdd11add_int_intERKNS0_6ObExprERNS0_9ObEvalCtxERNS_6common7ObDatumE _ZN9oceanbase3sql12ObDMLService25check_row_whether_changedERKNS0_10ObUpdCtDefERNS0_10ObUpdRtDefERNS0_9ObEvalCtxE -_ZN9oceanbase3sql12ObDMLService24filter_row_for_check_cstERKNS_6common12ObFixedArrayIPNS0_6ObExprENS2_12ObIAllocatorEEERNS0_9ObEvalCtxERb -_ZN9oceanbase3sql12ObDMLService25check_nested_sql_legalityERNS0_13ObExecContextEm -_ZN9oceanbase3sql12ObDMLService24set_heap_table_hidden_pkERKNS0_10ObInsCtDefERKNS_6common10ObTabletIDERNS0_9ObEvalCtxE -_ZN9oceanbase3sql19ObIntIntBatchAddRaw9raw_checkElll _ZN9oceanbase3sql12ObDMLService25check_dml_tablet_validityERNS0_10ObDMLRtCtxERKNS0_14ObDASTabletLocERKNS_6common12ObFixedArrayIPNS0_6ObExprENS7_12ObIAllocatorEEERKNS0_14ObDMLBaseCtDefERNS0_14ObDMLBaseRtDefE -_ZN9oceanbase3sql13TriggerHandle18init_param_old_rowERNS0_9ObEvalCtxERKNS0_14ObTrigDMLCtDefERNS0_14ObTrigDMLRtDefE +_ZN9oceanbase3sql12ObDMLService25check_nested_sql_legalityERNS0_13ObExecContextEm +_ZN9oceanbase5share6schema19ObSchemaGetterGuard17get_schema_statusEmRNS1_21ObRefreshSchemaStatusE +_ZNK9oceanbase6common13ObSEArrayImplINS_5share6schema15ObSchemaMgrInfoELl2ENS0_19ModulePageAllocatorELb0EEixEl +_ZN9oceanbase3sql12ObDMLService24filter_row_for_check_cstERKNS_6common12ObFixedArrayIPNS0_6ObExprENS2_12ObIAllocatorEEERNS0_9ObEvalCtxERb +_ZZN9oceanbase5share6schema19ObSchemaGetterGuard20get_from_local_cacheINS1_13ObTableSchemaEEEiNS1_12ObSchemaTypeEmmRPKT_ENKUlPKcE3_clESB_ +_ZN9oceanbase5share6schema19ObSchemaGetterGuard23get_simple_table_schemaEmmRPKNS1_21ObSimpleTableSchemaV2E +_ZNK9oceanbase5share6schema11ObSchemaMgr16get_table_schemaEmmRPKNS1_21ObSimpleTableSchemaV2E _ZN9oceanbase5share6schema19ObSchemaGetterGuard18put_to_local_cacheINS1_8ObSchemaEEEiNS1_12ObSchemaTypeEmmRPKT_RNS_6common15ObKVCacheHandleE _ZNK9oceanbase5share6schema19ObSysVariableSchema16get_convert_sizeEv _ZNK9oceanbase5share6schema13ObTableSchema16get_convert_sizeEv _ZNK9oceanbase5share6schema16ObColumnSchemaV216get_convert_sizeEv -_ZN9oceanbase6common16ObArenaAllocator5allocElRKNS_3lib9ObMemAttrE -_ZN9oceanbase5share6schema19ObSchemaGetterGuard23get_simple_table_schemaEmmRPKNS1_21ObSimpleTableSchemaV2E -_ZNK9oceanbase5share6schema11ObSchemaMgr16get_table_schemaEmmRPKNS1_21ObSimpleTableSchemaV2E -_ZN9oceanbase5share6schema19ObSchemaGetterGuard17get_schema_statusEmRNS1_21ObRefreshSchemaStatusE -_ZNK9oceanbase6common13ObSEArrayImplINS_5share6schema15ObSchemaMgrInfoELl2ENS0_19ModulePageAllocatorELb0EEixEl _ZN9oceanbase3sql15ObTableInsertOp20write_rows_post_procEi _ZN9oceanbase3sql17ObPhysicalPlanCtx22sync_last_value_globalEv _ZN9oceanbase3sql17ObPhysicalPlanCtx21sync_last_value_localEv +_ZN9oceanbase3sql13TriggerHandle18init_param_old_rowERNS0_9ObEvalCtxERKNS0_14ObTrigDMLCtDefERNS0_14ObTrigDMLRtDefE _ZN9oceanbase3sql13TriggerHandle18init_param_new_rowERNS0_9ObEvalCtxERKNS0_14ObTrigDMLCtDefERNS0_14ObTrigDMLRtDefE +_ZN9oceanbase3sql19ObIntIntBatchAddRaw9raw_checkElll +_ZNK9oceanbase5share6schema21ObSimpleTableSchemaV216get_convert_sizeEv _ZZN9oceanbase5share6schema19ObSchemaGetterGuard20get_from_local_cacheINS1_13ObTableSchemaEEEiNS1_12ObSchemaTypeEmmRPKT_ENKUlPKcE1_clESB_ -_ZNK9oceanbase5share6schema21ObSimpleTableSchemaV213get_object_idEv _ZN9oceanbase3sql13ObTableScanOp18inner_get_next_rowEv -_ZNK9oceanbase5share6schema21ObSimpleTableSchemaV216get_convert_sizeEv _ZN9oceanbase5share6schema19ObSchemaGetterGuard18get_schema_versionENS1_12ObSchemaTypeEmmRl _ZZN9oceanbase5share6schema19ObSchemaGetterGuard18get_schema_versionENS1_12ObSchemaTypeEmmRlENK6$_1353clEPKc -_ZN9oceanbase3sql13ObTableScanOp28inner_get_next_row_implementEv -_ZN9oceanbase3sql11ObDASScanOp22get_output_result_iterEv -_ZN9oceanbase7storage19ObTableScanIterator12get_next_rowEv _ZN9oceanbase5share6schema27ObMultiVersionSchemaService10get_schemaEPKNS1_11ObSchemaMgrERKNS1_21ObRefreshSchemaStatusENS1_12ObSchemaTypeEmlRNS_6common15ObKVCacheHandleERPKNS1_8ObSchemaE -_ZN9oceanbase6common9ObKVCacheINS_5share6schema16ObSchemaCacheKeyENS3_18ObSchemaCacheValueEE3getERKS4_RPKS5_RNS0_15ObKVCacheHandleE _ZN9oceanbase5share6schema13ObSchemaCache10get_schemaENS1_12ObSchemaTypeEmmlRNS_6common15ObKVCacheHandleERPKNS1_8ObSchemaE +_ZN9oceanbase6common9ObKVCacheINS_5share6schema16ObSchemaCacheKeyENS3_18ObSchemaCacheValueEE3getERKS4_RPKS5_RNS0_15ObKVCacheHandleE _ZN9oceanbase6common15ObKVGlobalCache3getElRKNS0_13ObIKVCacheKeyERPKNS0_15ObIKVCacheValueERPNS0_18ObKVMemBlockHandleE _ZN9oceanbase6common4hash11ObHashTableINS_5share6schema16ObSchemaCacheKeyENS1_11HashMapPairIS5_PKNS4_18ObSchemaCacheValueEEENS1_9hash_funcIS5_EENS1_8equal_toIS5_EENS1_10pair_firstISA_EENS1_13SimpleAllocerINS1_15ObHashTableNodeISA_EELi74ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19ReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKS5_RSA_l -_ZN9oceanbase3sql8ObSortOp14sort_impl_nextEv +_ZN9oceanbase3sql13ObTableScanOp28inner_get_next_row_implementEv +_ZN9oceanbase3sql11ObDASScanOp22get_output_result_iterEv +_ZN9oceanbase7storage19ObTableScanIterator12get_next_rowEv _ZN9oceanbase7storage19ObTableScanIterator12get_next_rowERPNS_12blocksstable10ObDatumRowE -_ZNK9oceanbase5share6schema14ObTenantSchema16get_convert_sizeEv -_ZNK9oceanbase5share24SchemaZoneReplicaAttrSet16get_convert_sizeEv -_ZN9oceanbase6common4hash10ReadLockerC2ER16pthread_rwlock_t _ZN9oceanbase3sql13ObTableScanOp26inner_get_next_row_for_tscEv pthread_rwlock_rdlock -_ZN9oceanbase3sql15ObTableModifyOp23get_next_row_from_childEv -_ZN9oceanbase3sql13ObMergeJoinOp27right_join_cache_func_goingEv -_ZN9oceanbase3sql12ObSortOpImpl12get_next_rowERKNS_6common8ObIArrayIPNS0_6ObExprEEERPKNS0_17ObChunkDatumStore9StoredRowE _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema9SchemaObjELl2ENS0_19ModulePageAllocatorELb0EE7reserveEl _ZN9oceanbase6common17ObAtomicReference21check_and_inc_ref_cntEv -_ZN9oceanbase3sql13ObTableLockOp18inner_get_next_rowEv -_ZN9oceanbase3sql11ObDASLockOp10release_opEv _ZN9oceanbase3sql13ObTableScanOp26report_ddl_column_checksumEv -_ZN9oceanbase3sql13ObTableLockOp22submit_row_by_strategyEv -_ZN9oceanbase3sql12ObHashJoinOp18inner_get_next_rowEv -_ZN9oceanbase3sql18ObHashJoinBatchMgr21remove_undumped_batchEli -_ZN9oceanbase3sql15ObHashJoinBatchD2Ev -_ZN9oceanbase3sql17ObChunkDatumStore5resetEv +_ZN9oceanbase3sql17datetime_datetimeERKNS0_6ObExprERNS0_9ObEvalCtxERNS_6common7ObDatumE +_ZN9oceanbase6common15ObTimeConverter21datetime_to_timestampElPKNS0_14ObTimeZoneInfoERl +_ZN9oceanbase3sql13ObMergeJoinOp18inner_get_next_rowEv +_ZN9oceanbase3sql13ObTableLockOp18inner_get_next_rowEv _ZN9oceanbase6common22ObVirtualTableIterator12get_next_rowEv -_ZN9oceanbase3sql13ObTableLockOp15lock_row_to_dasEv -_ZN9oceanbase3sql20datetime_scale_checkERKmRKNS_6common10ObAccuracyENS3_9ObObjTypeERKNS3_7ObDatumERS8_Ri +_ZN9oceanbase3sql13ObMergeJoinOp18full_cache_operateEv +_ZN9oceanbase3sql13ObMergeJoinOp18join_begin_operateEv +_ZN9oceanbase3sql12ObMaterialOp18inner_get_next_rowEv +_ZNSt14_Function_base13_Base_managerIZN9oceanbase3sql16ObMaterialOpImpl12process_dumpEvE5$_736E10_M_managerERSt9_Any_dataRKS6_St18_Manager_operation +_ZN9oceanbase3sql17ObChunkDatumStore8Iterator12get_next_rowERKNS_6common8ObIArrayIPNS0_6ObExprEEERNS0_9ObEvalCtxEPPKNS1_9StoredRowE +_ZN9oceanbase3sql17ObChunkDatumStore8Iterator12get_next_rowERPKNS1_9StoredRowE +_ZN9oceanbase3sql17ObChunkDatumStore13get_store_rowERNS1_11RowIteratorERPKNS1_9StoredRowE +_ZZN9oceanbase5share6schema19ObSchemaGetterGuard18get_schema_versionENS1_12ObSchemaTypeEmmRlENK6$_1318clEPKc +_ZN9oceanbase3sql13ObMergeJoinOp24fill_cache_func_diff_endEv +_ZN9oceanbase3sql17ObChunkDatumStore15ShadowStoredRow11shadow_copyERKNS_6common8ObIArrayIPNS0_6ObExprEEERNS0_9ObEvalCtxE +_ZN9oceanbase3sql13ObMergeJoinOp16calc_equal_condsERl +_ZN9oceanbase3sql8ObSortOp18inner_get_next_rowEv +_ZN9oceanbase3sql15ObSubPlanScanOp18inner_get_next_rowEv +_ZN9oceanbase3sql8ObSortOp12process_sortEv +_ZN9oceanbase3sql17ObChunkDatumStore8Iterator15load_next_blockERNS1_11RowIteratorE +_ZN9oceanbase3sql20ObPxEstimateSizeUtil11get_px_sizeEPNS0_13ObExecContextENS0_14PxOpSizeFactorElRl +_ZN9oceanbase3sql18ObNestedLoopJoinOp18inner_get_next_rowEv +_ZN9oceanbase3sql16ObMaterialOpImpl4initEmPNS0_9ObEvalCtxEPNS0_13ObExecContextEPNS0_17ObIOEventObserverEl _ZN9oceanbase6common22ObVirtualTableIterator12get_next_rowERPNS0_8ObNewRowE -_ZN9oceanbase8observer28ObIteratePrivateVirtualTable18inner_get_next_rowERPNS_6common8ObNewRowE -_ZN9oceanbase8observer28ObIteratePrivateVirtualTable12next_tenant_Ev -_ZN9oceanbase8observer28ObIteratePrivateVirtualTable7do_openEv -_ZN9oceanbase6common11ObQSyncLock6wrlockEv -_ZN9oceanbase3sql8ObSortOp11inner_closeEv -_ZN9oceanbase3sql13AllocOpHelperILi11EE5allocERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputElRPNS0_10ObOperatorE -_ZN9oceanbase3sql17ObMergeDistinctOpC1ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE -_ZN9oceanbase3sql13AllocOpHelperILi24EE5allocERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputElRPNS0_10ObOperatorE +_ZNK9oceanbase6common4hash18ObPointerHashArrayINS_5share6schema13ObColumnIdKeyEPNS4_16ObColumnSchemaV2ENS4_14ObGetColumnKeyEE14get_refactoredERKS5_RS7_ +_ZN9oceanbase8observer20ObAllVirtualPalfStat18inner_get_next_rowERPNS_6common8ObNewRowE +_ZN9oceanbase3omt13ObMultiTenant35operate_each_tenant_for_sys_or_selfERKSt8functionIFivEEb +_ZNK9oceanbase6common8ObVectorImNS0_9PageArenaImNS0_20DefaultPageAllocatorEEEE2atEl +_ZN9oceanbase6common10ObRowStore8Iterator12get_next_rowERNS0_8ObNewRowEPNS0_8ObStringEPPNS1_9StoredRowE +_ZN9oceanbase3sql18ObNestedLoopJoinOp17read_left_operateEv +_ZN9oceanbase6common12ObCellReader5parseEPm +_ZN9oceanbase3sql13ObDASDeleteOpD2Ev +_ZN9oceanbase3sql15ObTableModifyOp11inner_closeEv +_ZN9oceanbase6common10ObIORunner4run1Ev +_ZN9oceanbase3lib11ObLockGuardINS_6common12ObThreadCondEED2Ev +_ZThn24_N9oceanbase12blocksstable21ObDataMicroBlockCache15put_cache_blockERKNS0_19ObMicroBlockDesMetaEPKcRKNS0_20ObMicroBlockCacheKeyERNS0_18ObMacroBlockReaderERNS_6common12ObIAllocatorERPKNS0_22ObMicroBlockCacheValueERNSC_15ObKVCacheHandleE +_ZN9oceanbase6common11ObIORequest14free_io_bufferEv +_ZN9oceanbase6common10ObIOResult6finishERKNS0_11ObIORetCodeEPNS0_11ObIORequestE +_ZN9oceanbase12blocksstable33ObAsyncSingleMicroBlockIOCallback13inner_processEPKcl +_ZNK9oceanbase12blocksstable20ObMicroBlockCacheKey4sizeEv +_ZNK9oceanbase12blocksstable18ObMicroBlockHeader20check_and_get_recordEPKclsRS3_Rl +_ZNK9oceanbase12blocksstable18ObMicroBlockHeader21check_header_checksumEv +_ZN9oceanbase6common9ObKVCacheINS_12blocksstable20ObMicroBlockCacheKeyENS2_22ObMicroBlockCacheValueEE3getERKS3_RPKS4_RNS0_15ObKVCacheHandleE +_ZN9oceanbase12blocksstable21ObDataMicroBlockCache15put_cache_blockERKNS0_19ObMicroBlockDesMetaEPKcRKNS0_20ObMicroBlockCacheKeyERNS0_18ObMacroBlockReaderERNS_6common12ObIAllocatorERPKNS0_22ObMicroBlockCacheValueERNSC_15ObKVCacheHandleE +_ZN9oceanbase12blocksstable18ObMicroBlockHeader11deserializeEPKclRl +_ZN9oceanbase6common15ObLZ4Compressor10decompressEPKclPclRl +LZ4_decompress_safe +_ZNK9oceanbase6common15ObLZ4Compressor19get_compressor_nameEv +_ZN9oceanbase6common10ObIKVCacheINS_12blocksstable20ObMicroBlockCacheKeyENS2_22ObMicroBlockCacheValueEE10put_kvpairERNS0_19ObKVCacheInstHandleEPNS0_13ObKVCachePairERNS0_15ObKVCacheHandleEb +_ZNK9oceanbase6common13ObIKVCacheKey4hashERm +_ZN9oceanbase6common9ObKVCacheINS_12blocksstable20ObMicroBlockCacheKeyENS2_22ObMicroBlockCacheValueEE5allocEmllRPNS0_13ObKVCachePairERNS0_15ObKVCacheHandleERNS0_19ObKVCacheInstHandleE +_ZNK9oceanbase12blocksstable18ObMicroBlockHeader22check_payload_checksumEPKcl +_ZN9oceanbase6common15ObKVGlobalCache5allocINS0_18ObKVMemBlockHandleEEEiRNS0_15ObIKVCacheStoreIT_EElmllRPNS0_13ObKVCachePairERPS3_RNS0_19ObKVCacheInstHandleE +_ZN9oceanbase12blocksstable26ObMicroBlockBufTransformer9transfromEPcl +_ZN9oceanbase12blocksstable18ObMacroBlockReader11decrypt_bufERKNS0_19ObMicroBlockDesMetaEPKclRS6_Rl +_ZNK9oceanbase6common16ObCompressorPool19get_compressor_typeEPKcRNS0_16ObCompressorTypeE +_ZN9oceanbase12blocksstable26ObMicroBlockBufTransformer4initEv +_ZN9oceanbase7storage18ObStorageMetaCache23ObStorageMetaIOCallback13inner_processEPKcl +_ZN9oceanbase3sql13ObStmtFactory7destoryEv +_ZN9oceanbase6common11ObArrayImplINS_3sql9ObVarInfoENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev +_ZN9oceanbase6common11ObArrayImplINS_3sql18ObPCParamEqualInfoENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev +_ZN9oceanbase3sql15ObTableDeleteOp11inner_closeEv +_ZN9oceanbase6common11ObArrayWrapINS_3sql10ObDelRtDefEE13release_arrayEv _ZN9oceanbase6common15ObIKVCacheStoreINS0_18ObKVMemBlockHandleEE5storeERNS0_13ObKVCacheInstERKNS0_13ObIKVCacheKeyERKNS0_15ObIKVCacheValueERPNS0_13ObKVCachePairERPS2_NS0_15ObKVCachePolicyE _ZNK9oceanbase12blocksstable19ObFuseRowCacheValue9deep_copyEPclRPNS_6common15ObIKVCacheValueE _ZN9oceanbase6common15ObIKVCacheStoreINS0_18ObKVMemBlockHandleEE12alloc_kvpairERNS0_13ObKVCacheInstEllRPNS0_13ObKVCachePairERPS2_NS0_15ObKVCachePolicyE _ZNK9oceanbase12blocksstable17ObFuseRowCacheKey9deep_copyEPclRPNS_6common13ObIKVCacheKeyE _ZN9oceanbase6common15ObIKVCacheStoreINS0_18ObKVMemBlockHandleEE26alloc_kvpair_without_retryERNS0_13ObKVCacheInstEllRPNS0_13ObKVCachePairERPS2_NS0_15ObKVCachePolicyE _ZN9oceanbase6common17ObKVStoreMemBlock5allocElllRPNS0_13ObKVCachePairE -_ZNK9oceanbase5share24ObVTableLocationCacheKey9deep_copyEPclRPNS_6common13ObIKVCacheKeyE -_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE23check_data_infos_borderEllRKNS_12blocksstable13ObDatumRowkeyEb -_ZN9oceanbase7storage21ObMicroInfoComparator7compareERKNS_12blocksstable16ObMicroIndexInfoERKNS2_13ObDatumRowkeyE -_ZN9oceanbase6common11ObAllocator5allocEl -_ZN9oceanbase3sql10ObExprTrim9eval_trimERKNS0_6ObExprERNS0_9ObEvalCtxERNS_6common7ObDatumE -_ZN9oceanbase3sql13cast_eval_argERKNS0_6ObExprERNS0_9ObEvalCtxERNS_6common7ObDatumE -_ZN9oceanbase3sql30eval_assign_question_mark_funcERKNS0_6ObExprERNS0_9ObEvalCtxERNS_6common7ObDatumE -_ZN9oceanbase3sql10ObSQLUtils21get_default_cast_modeERKNS0_4stmt8StmtTypeEPKNS0_16ObSQLSessionInfoERm -_ZN9oceanbase6common11ObObjCaster7to_typeENS0_9ObObjTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS5_ -_ZN9oceanbase3sql15ObDatumObjParam25alloc_datum_reserved_buffINS_6common9ObObjMetaEEEiRKT_sRNS3_12ObIAllocatorE -_ZN9oceanbase3sql10ObExprTrim4trimERNS_6common8ObStringElRKS3_S6_ -_ZN9oceanbase3sql15ObDatumObjParam13from_objparamERKNS_6common10ObObjParamEPNS2_12ObIAllocatorE -_ZN9oceanbase3sqlL15eval_trim_innerERKNS0_6ObExprERNS0_9ObEvalCtxERNS_6common7ObDatumERKlRNS6_8ObStringERbRKNS0_11ObDatumMetaEbRKS7_ -_ZN9oceanbase3sql13ObStmtFactory7destoryEv -_ZN9oceanbase6common11ObArrayImplINS_3sql18ObPCConstParamInfoENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev -_ZN9oceanbase6common11ObArrayImplINS_3sql9ObVarInfoENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev -_ZN9oceanbase6common11ObArrayImplINS_3sql16ObExprConstraintENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev -_ZN9oceanbase6common11ObArrayImplINS_3sql18ObPCParamEqualInfoENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev -_ZN9oceanbase3sql16ObFastParserBase17parser_insert_strERNS_6common12ObIAllocatorElRKNS2_8ObStringERS5_RbRlSA_SA_SA_ -_ZN9oceanbase3sql17ObChunkDatumStore15ShadowStoredRow5resetEv -_ZNK9oceanbase12blocksstable17ObFuseRowCacheKey5equalERKNS_6common13ObIKVCacheKeyERb -_ZN9oceanbase3lib20ObTenantCtxAllocator10free_chunkEPNS0_6AChunkERKNS0_9ObMemAttrE -_ZNK9oceanbase3lib20ObTenantCtxAllocator8get_holdEv -_ZN9oceanbase3lib17ObTenantMemoryMgr10free_chunkEPNS0_6AChunkERKNS0_9ObMemAttrE -_ZN9oceanbase3lib17ObTenantMemoryMgr11update_holdElmRKNS0_7ObLabelERb -_ZN9oceanbase3lib17ObTenantMemoryMgr11free_chunk_EPNS0_6AChunkERKNS0_9ObMemAttrE -_ZN9oceanbase3lib10AChunkList4pushEPNS0_6AChunkE -_ZNSt14_Function_base13_Base_managerIZNK9oceanbase3lib20ObTenantCtxAllocator8get_holdEvEUlPKNS2_17ObTenantMemoryMgrEE_E10_M_managerERSt9_Any_dataRKS9_St18_Manager_operation -_ZNSt24uniform_int_distributionImEclISt23mersenne_twister_engineImLm32ELm624ELm397ELm31ELm2567483615ELm11ELm4294967295ELm7ELm2636928640ELm15ELm4022730752ELm18ELm1812433253EEEEmRT_RKNS0_10param_typeE -_ZN9oceanbase3sql15ObTableModifyOp11inner_closeEv -_ZN9oceanbase12blocksstable13ObDecoderPool5resetEv +_ZNK9oceanbase12blocksstable20ObMicroBlockCacheKey9deep_copyEPclRPNS_6common13ObIKVCacheKeyE +_ZN9oceanbase3sql16ObFastParserBase12process_hintEv +access_mem _ZN9oceanbase3sql15ObTableUpdateOp10inner_openEv -_ZN9oceanbase3sql17ObMergeDistinctOp11inner_closeEv -_ZN9oceanbase6common16ObFixedArrayImplIPKNS_12blocksstable16ObIColumnDecoderENS0_12ObIAllocatorEE7reserveEl -_ZN9oceanbase3sql15ObTableDeleteOp10inner_openEv -_ZN9oceanbase3sql15ObTableModifyOp10inner_openEv _ZN9oceanbase6common11ObArrayWrapINS_3sql10ObDelRtDefEE14allocate_arrayERNS0_12ObIAllocatorEl -_ZN9oceanbase3sql12ObDMLService14init_del_rtdefERNS0_10ObDMLRtCtxERNS0_10ObDelRtDefERKNS0_10ObDelCtDefE -_ZN9oceanbase3sql10ObDASUtils25check_nested_sql_mutatingEmRNS0_13ObExecContextEb +_ZN9oceanbase3sql13AllocOpHelperILi24EE5allocERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputElRPNS0_10ObOperatorE +_ZNK9oceanbase12blocksstable17ObFuseRowCacheKey5equalERKNS_6common13ObIKVCacheKeyERb +_ZN9oceanbase8observer16ObAsyncCmdDriver15response_resultERNS0_16ObMySQLResultSetE +_ZN9oceanbase6common13ObVSliceAlloc5allocEl +_ZN9oceanbase6common16ObFixedArrayImplIPKNS_12blocksstable16ObIColumnDecoderENS0_12ObIAllocatorEE7reserveEl +_ZN9oceanbase12blocksstable18ObHexStringEncoder8traverseERb _ZN9oceanbase3sql13AllocOpHelperILi10EE5allocERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputElRPNS0_10ObOperatorE _ZN9oceanbase3sql20ObAggregateProcessorC1ERNS0_9ObEvalCtxERNS_6common8ObIArrayINS0_10ObAggrInfoEEERKNS_3lib7ObLabelERNS0_13ObMonitorNodeEl -_ZN9oceanbase3sql13ObDASInsertOpD2Ev -_ZN9oceanbase3sql13ObDASDeleteOpD2Ev -_ZZN9oceanbase11transaction30ObTransDeadlockDetectorAdapter36maintain_deadlock_info_when_end_stmtERNS_3sql13ObExecContextEbENK5$_723clEPKc -_ZZN9oceanbase11transaction14ObTransService33create_global_implicit_savepoint_ERNS0_8ObTxDescERKNS0_9ObTxParamERNS0_7ObTxSEQEbENK6$_1708clEPKc -backtrace -unw_backtrace -_ZN9oceanbase8observer16ObAsyncCmdDriver15response_resultERNS0_16ObMySQLResultSetE -_ZNK9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS_3sql17ObILibCacheObjectEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE18foreach_refactoredINS4_25ObDumpAllCacheObjByTypeOpEEEiRT_ -access_mem -MD5_Update -_ZN9oceanbase3sql10ObFLTUtils35update_flush_policy_by_control_infoERNS0_16ObSQLSessionInfoE -_ZN9oceanbase6common8ObRandom4randEll _ZN9oceanbase3sql15ObTableUpdateOp11inner_closeEv -_ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql20ObAggregateProcessor12IAggrFuncCtxENS0_12ObIAllocatorEE16prepare_allocateEl -_ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql20ObAggregateProcessor12IAggrFuncCtxENS0_12ObIAllocatorEE4initEl -_ZN9oceanbase5share6schema19ObSchemaGetterGuard23check_single_table_privERKNS1_17ObSessionPrivInfoERKNS1_10ObNeedPrivE -_ZN9oceanbase3sql20ObAggregateProcessor16DecIntAggFuncCtx4initERKNS0_10ObAggrInfoEl -_ZN9oceanbase6common15ObLinearHashMapINS_4palf5LSKeyENS0_9ObSEArrayINS_10logservice15LogMemberStatusELl7ENS0_19ModulePageAllocatorELb0EEENS0_14ShareMemMgrTagEE11do_foreach_INS5_20ObArbitrationService16DoUpgradeFunctorENSA_14DoForeachOnBktISD_EEEEbRT_RT0_ -_ZN9oceanbase6common15ObLinearHashMapINS_4palf5LSKeyENS0_9ObSEArrayINS_10logservice15LogMemberStatusELl7ENS0_19ModulePageAllocatorELb0EEENS0_14ShareMemMgrTagEE20unset_foreach_L_lmt_Em -_ZN9oceanbase6common15ObLinearHashMapINS_4palf5LSKeyENS0_9ObSEArrayINS_10logservice15LogMemberStatusELl7ENS0_19ModulePageAllocatorELb0EEENS0_14ShareMemMgrTagEE16do_foreach_scan_INS5_20ObArbitrationService16DoUpgradeFunctorENSA_14DoForeachOnBktISD_EEEEbmmRT_RT0_ _ZN9oceanbase7storage19ObSSTableRowExister9fetch_rowERNS0_19ObSSTableReadHandleERPKNS_12blocksstable10ObDatumRowE _ZThn352_N9oceanbase12blocksstable21ObMicroBlockGetReader9exist_rowERKNS0_16ObMicroBlockDataERKNS0_13ObDatumRowkeyERKNS_7storage16ObITableReadInfoERbSC_ _ZN9oceanbase12blocksstable22ObMicroBlockRowExister8is_existERKNS0_13ObDatumRowkeyERKNS0_16ObMicroBlockDataERbS8_ -_ZN9oceanbase12blocksstable23ObIMicroBlockFlatReaderC2Ev _ZN9oceanbase12blocksstable21ObMicroBlockGetReader9exist_rowERKNS0_16ObMicroBlockDataERKNS0_13ObDatumRowkeyERKNS_7storage16ObITableReadInfoERbSC_ _ZN9oceanbase12blocksstable21ObMicroBlockGetReader10inner_initERKNS0_16ObMicroBlockDataERKNS_7storage16ObITableReadInfoERKNS0_13ObDatumRowkeyE +_ZN9oceanbase12blocksstable23ObIMicroBlockRowFetcher14prepare_readerENS_6common14ObRowStoreTypeE +_ZN9oceanbase12blocksstable23ObIMicroBlockFlatReaderC2Ev _ZN9oceanbase12blocksstable21ObMicroBlockGetReader13locate_rowkeyERKNS0_13ObDatumRowkeyERl _ZN9oceanbase12blocksstable23ObIMicroBlockFlatReader11find_bound_ERKNS0_13ObDatumRowkeyEbllRKNS0_19ObStorageDatumUtilsERlRb -_ZN9oceanbase12blocksstable23ObIMicroBlockRowFetcher14prepare_readerENS_6common14ObRowStoreTypeE -_ZN9oceanbase12blocksstable20ObIEncodeBlockReaderC2Ev _ZN9oceanbase12blocksstable22ObEncodeBlockGetReader9exist_rowERKNS0_16ObMicroBlockDataERKNS0_13ObDatumRowkeyERKNS_7storage16ObITableReadInfoERbSC_ _ZN9oceanbase12blocksstable22ObEncodeBlockGetReader10locate_rowERKNS0_13ObDatumRowkeyERKNS0_19ObStorageDatumUtilsERPKcRlSB_Rb -_ZN9oceanbase12blocksstable15ObColumnDecoder13quick_compareERKNS0_14ObStorageDatumERKNS0_21ObStorageDatumCmpFuncElRKNS0_11ObBitStreamEPKclRi _ZN9oceanbase12blocksstable20ObIEncodeBlockReader7do_initERKNS0_16ObMicroBlockDataEl -_ZN9oceanbase12blocksstable20ObIEncodeBlockReader13init_decodersEv -_ZN9oceanbase12blocksstable20ObIEncodeBlockReader11add_decoderElRKNS_6common9ObObjMetaERNS0_15ObColumnDecoderE +_ZN9oceanbase12blocksstable20ObIEncodeBlockReaderC2Ev _ZN9oceanbase12blocksstable18ObBloomFilterCache14inc_empty_readEmmRKNS0_12MacroBlockIdEll _ZN9oceanbase12blocksstable20ObIEncodeBlockReader7prepareEml -_ZN9oceanbase10compaction23ObTenantTabletScheduler26schedule_build_bloomfilterEmRKNS_12blocksstable12MacroBlockIdEl -_ZN9oceanbase8observer15ObSyncCmdDriver15response_resultERNS0_16ObMySQLResultSetE -_ZN9oceanbase8observer15ObSyncCmdDriver15free_output_rowERNS0_16ObMySQLResultSetE +_ZN9oceanbase12blocksstable22ObEncodeBlockGetReader7get_rowERKNS0_16ObMicroBlockDataERKNS0_13ObDatumRowkeyERKNS_7storage16ObITableReadInfoERNS0_10ObDatumRowE +_ZN9oceanbase12blocksstable15ObColumnDecoder13quick_compareERKNS0_14ObStorageDatumERKNS0_21ObStorageDatumCmpFuncElRKNS0_11ObBitStreamEPKclRi +_ZN9oceanbase12blocksstable22ObEncodeBlockGetReader15get_all_columnsEPKcllRNS0_10ObDatumRowE +_ZN9oceanbase12blocksstable20ObIEncodeBlockReader13init_decodersEv +_ZN9oceanbase12blocksstable20ObIEncodeBlockReader11add_decoderElRKNS_6common9ObObjMetaERNS0_15ObColumnDecoderE +_ZN9oceanbase3sql9ObEvalCtxD1Ev +_ZN9oceanbase3sql9ObEvalCtxD2Ev +_ZN9oceanbase6common15ObLinearHashMapINS_4palf5LSKeyENS0_9ObSEArrayINS_10logservice15LogMemberStatusELl7ENS0_19ModulePageAllocatorELb0EEENS0_14ShareMemMgrTagEE11do_foreach_INS5_20ObArbitrationService16DoUpgradeFunctorENSA_14DoForeachOnBktISD_EEEEbRT_RT0_ +_ZN9oceanbase6common15ObLinearHashMapINS_4palf5LSKeyENS0_9ObSEArrayINS_10logservice15LogMemberStatusELl7ENS0_19ModulePageAllocatorELb0EEENS0_14ShareMemMgrTagEE20unset_foreach_L_lmt_Em +_ZN9oceanbase6common15ObLinearHashMapINS_4palf5LSKeyENS0_9ObSEArrayINS_10logservice15LogMemberStatusELl7ENS0_19ModulePageAllocatorELb0EEENS0_14ShareMemMgrTagEE16do_foreach_scan_INS5_20ObArbitrationService16DoUpgradeFunctorENSA_14DoForeachOnBktISD_EEEEbmmRT_RT0_ +_ZNSt14_Function_base13_Base_managerIZNK9oceanbase3lib20ObTenantCtxAllocator8get_holdEvEUlPKNS2_17ObTenantMemoryMgrEE_E10_M_managerERSt9_Any_dataRKS9_St18_Manager_operation +_ZNK9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS_3sql17ObILibCacheObjectEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE18foreach_refactoredINS4_25ObDumpAllCacheObjByTypeOpEEEiRT_ +_ZN9oceanbase3sql13AllocOpHelperILi11EE5allocERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputElRPNS0_10ObOperatorE +_ZN9oceanbase3sql17ObMergeDistinctOpC1ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE _ZN9oceanbase11transaction12ObLSTxCtxMgr22check_scheduler_statusERNS_5share3SCNERNS0_17MinStartScnStatusE _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocENS_6common10SpinRWLockELl16384EE19generate_value_arr_ElRNS5_9ObSEArrayIPS3_Ll32ENS5_19ModulePageAllocatorELb0EEE -_ZN9oceanbase5obrpc10ObBatchRpc4run1Ev -_ZN9oceanbase5obrpc14ObBatchRpcBase7do_workEv -_ZN9oceanbase6common17ObSleepEventGuardC2Elml -_ZN9oceanbase6common9ob_usleepILNS0_14ObWaitEventIds17ObWaitEventIdEnumE27EEEvj -_ZTWN9oceanbase3lib6Thread9sleep_us_E -_ZN9oceanbase3lib7ObFutex4waitEil -_ZN9oceanbase5obrpc11ObRpcBuffer4sendERNS0_15ObBatchRpcProxyEmRKNS_6common6ObAddrEb -_ZN9oceanbase3sql17ObMergeDistinctOp7destroyEv +_ZN9oceanbase11transaction13TxFunctorStat18finish_iter_singleEPKcRKNS0_9ObTransIDERKNS_5share6ObLSIDE +_ZN9oceanbase12blocksstable44ObMultiVersionMicroBlockMinorMergeRowScanner18inner_get_next_rowERPKNS0_10ObDatumRowE +_ZN9oceanbase12blocksstable18ObMicroBlockReader22get_multi_version_infoEllRPKNS0_11ObRowHeaderERlS6_ +_ZN9oceanbase12blocksstable11ObRowReader11read_columnEPKcllRNS0_14ObStorageDatumE +_ZN9oceanbase12blocksstable10ObRowQueue7add_rowERKNS0_10ObDatumRowERNS_6common12ObIAllocatorE +_ZN9oceanbase12blocksstable10ObDatumRow9deep_copyERKS1_RNS_6common12ObIAllocatorE +_ZN9oceanbase12blocksstable10ObRowQueue9alloc_rowERPNS0_10ObDatumRowERNS_6common12ObIAllocatorE +_ZN9oceanbase12blocksstable44ObMultiVersionMicroBlockMinorMergeRowScanner17compact_first_rowEv +_ZN9oceanbase12blocksstable10ObRowQueue13add_empty_rowERNS_6common12ObIAllocatorE +_ZN9oceanbase12blocksstable44ObMultiVersionMicroBlockMinorMergeRowScanner11compact_rowERKNS0_10ObDatumRowElRS2_ +_ZN9oceanbase12blocksstable20ObStorageDatumBuffer7reserveElb +_ZN9oceanbase12blocksstable23ObIMicroBlockRowScanner8fuse_rowERKNS0_10ObDatumRowERS2_RNS_7storage8ObNopPosERbPNS_6common12ObIAllocatorE +_ZN9oceanbase7storage28ObTxDataMemtableScanIterator18inner_get_next_rowERPKNS_12blocksstable10ObDatumRowE +_ZN9oceanbase7storage28ObTxDataMemtableScanIterator24TxData2DatumRowConverter17generate_next_nowERPKNS_12blocksstable10ObDatumRowE +_ZN9oceanbase7storage28ObTxDataMemtableScanIterator24TxData2DatumRowConverter4initEPNS0_8ObTxDataE +_ZNK9oceanbase7storage8ObTxData18get_serialize_sizeEv +_ZNK9oceanbase7storage16ObUndoStatusList18get_serialize_sizeEv +_ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE +_ZNK9oceanbase7storage8ObTxData9serializeEPclRl +_ZNK9oceanbase5share3SCN9serializeEPclRl +_ZN9oceanbase6common11ObArrayImplIPNS_7storage16ObUndoStatusNodeENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEED2Ev +_ZN9oceanbase8observer15ObSyncCmdDriver15response_resultERNS0_16ObMySQLResultSetE +_ZN9oceanbase8observer15ObSyncCmdDriver15free_output_rowERNS0_16ObMySQLResultSetE +_ZN9oceanbase10compaction22ObPartitionMajorMerger15merge_partitionERNS0_21ObBasicTabletMergeCtxEl +_ZNK9oceanbase10compaction26ObPartitionMajorRowsMerger5emptyEv +_ZN9oceanbase10compaction23ObPartitionRowMergeIter4nextEv +_ZN9oceanbase10compaction22ObPartitionMajorMerger23merge_same_rowkey_itersERNS_6common9ObSEArrayIPNS0_20ObPartitionMergeIterELl16ENS2_19ModulePageAllocatorELb0EEE +_ZN9oceanbase10compaction12ObMergeFuser19preprocess_fuse_rowERKNS_12blocksstable10ObDatumRowERb +_ZN9oceanbase10compaction22ObPartitionMajorMerger13inner_processERKNS_12blocksstable10ObDatumRowE +_ZN9oceanbase10compaction12ObMergeFuser12add_fuse_rowERKNS_12blocksstable10ObDatumRowERb +_ZN9oceanbase10compaction25ObPartitionMacroMergeIter4nextEv +_ZN9oceanbase10compaction26ObMajorPartitionMergeFuser12end_fuse_rowERKNS_7storage8ObNopPosERNS_12blocksstable10ObDatumRowE +_ZN9oceanbase10compaction17ObPartitionMerger17check_row_columnsERKNS_12blocksstable10ObDatumRowE +_ZN9oceanbase12blocksstable13ObDecoderPool5resetEv +_ZN9oceanbase6common14ObSmallObjPoolINS_12blocksstable19ObStringDiffDecoderEE4freeEPS3_ +_ZN9oceanbase6common14ObSmallObjPoolINS_12blocksstable13ObDictDecoderEE4freeEPS3_ +_ZN9oceanbase6common14ObSmallObjPoolINS_12blocksstable24ObIntegerBaseDiffDecoderEE4freeEPS3_ +_ZN9oceanbase6common14ObSmallObjPoolINS_12blocksstable12ObRawDecoderEE4freeEPS3_ +_ZN9oceanbase3sql12ObDMLService26process_after_stmt_triggerERKNS0_14ObDMLBaseCtDefERNS0_14ObDMLBaseRtDefERNS0_10ObDMLRtCtxERKNS_6common14ObDmlEventTypeE _ZN9oceanbase3sql19ObScalarAggregateOp7destroyEv +_ZN9oceanbase3sql17ObChunkDatumStore15ShadowStoredRow5resetEv _ZN9oceanbase6common9Ob2DArrayIPNS_3sql20ObAggregateProcessor8GroupRowELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS5_Ll64ES6_Lb0EEEED2Ev +_ZN9oceanbase5share6schema19ObSchemaGetterGuard23check_single_table_privERKNS1_17ObSessionPrivInfoERKNS1_10ObNeedPrivE +_ZN9oceanbase8memtable13ObLockWaitMgr12post_processEbRb +_ZN9oceanbase8memtable13ObLockWaitMgr4waitEPNS_3rpc14ObLockWaitNodeE +_ZZN9oceanbase11transaction14ObTransService33create_global_implicit_savepoint_ERNS0_8ObTxDescERKNS0_9ObTxParamERNS0_7ObTxSEQEbENK6$_1707clEPKc +_ZN9oceanbase6common16ObPriorityQueue2ILi0ELi1ELi0EE6do_popERPNS0_6ObLinkEll +_ZN9oceanbase6common9SCondTempILi3EE4waitEjjl +_ZN9oceanbase6common11ObLinkQueue3popERPNS0_6ObLinkE +futex_hook +_ZN9oceanbase6common7ob_freeEPv +_ZN9oceanbase3libL13get_page_sizeEv _ZNSs12_S_constructIPcEES0_T_S1_RKSaIcESt20forward_iterator_tag.part.0 _ZNSs12_S_constructIPKcEEPcT_S3_RKSaIcESt20forward_iterator_tag.part.0 -_ZN9oceanbase6common13ObVSliceAlloc5allocEl -_ZN9oceanbase6common7ob_freeEPv -_ZN9oceanbase6common9Ob2DArrayIPNS_3sql20ObAggregateProcessor8GroupRowELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS5_Ll64ES6_Lb0EEEE7reserveEl _ZZN9oceanbase3sql16ObFastParserBase22get_one_insert_row_strERNS0_8ObRawSqlERNS_6common8ObStringERbRlS7_S8_S8_ENK4$_28clEPKc -_ZN9oceanbase3sql12ObDMLService26process_after_stmt_triggerERKNS0_14ObDMLBaseCtDefERNS0_14ObDMLBaseRtDefERNS0_10ObDMLRtCtxERKNS_6common14ObDmlEventTypeE -_ZNK9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS_3sql17ObILibCacheObjectEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE18foreach_refactoredINS4_19ObDumpAllCacheObjOpEEEiRT_ -_ZNK9oceanbase3sql19ObDumpAllCacheObjOp11should_dumpEPNS0_17ObILibCacheObjectE -_ZN9oceanbase3sql19ObDumpAllCacheObjOpclERNS_6common4hash11HashMapPairImPNS0_17ObILibCacheObjectEEE -_ZNK9oceanbase3sql25ObDumpAllCacheObjByTypeOp11should_dumpEPNS0_17ObILibCacheObjectE -_ZN9oceanbase6common11ObArrayImplINS_3sql17AllocCacheObjInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE9push_backERKS3_ -_ZN9oceanbase6common11ObArrayImplINS_3sql17AllocCacheObjInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE10extend_bufEl -_ZN9oceanbase6common11ObArrayWrapINS_3sql10ObDelRtDefEE13release_arrayEv -_ZZN9oceanbase3sql11ObPlanCache13get_cache_objERNS0_14ObILibCacheCtxEPNS0_14ObILibCacheKeyERNS0_15ObCacheObjGuardEENK5$_229clEPKc.llvm.16977314448449668839 -_ZN9oceanbase3sql17ObPhysicalPlanCtx19reserve_param_spaceEl -_ZN9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE19realloc_first_blockEl -_ZN9oceanbase5trace4UUID3genEv -_ZN9oceanbase5trace4UUID8gen_randEv +_ZNK9oceanbase5trace4UUID8tostringEPclRl +_ZN9oceanbase7storage9ObAggCell5resetEv _ZN9oceanbase7obmysql11ObMySQLUtil19decimalint_cell_strEPclPKNS_6common12ObDecimalIntEisRlbi _ZN9oceanbase6common4wide9to_stringEPKNS0_12ObDecimalIntEilPclRlb -_ZN9oceanbase6common16ObPriorityQueue2ILi0ELi1ELi0EE6do_popERPNS0_6ObLinkEll -_ZN9oceanbase6common9SCondTempILi3EE4waitEjjl -_ZN9oceanbase6common9SCondTempILi3EE7prepareEi -futex_hook -_ZN9oceanbase6common11ObLinkQueue3popERPNS0_6ObLinkE -_ZNK9oceanbase5share6schema16ObSchemaCacheKey4hashERm -_ZN9oceanbase6common16ObFixedArrayImplINS_3sql16ObValuesTokenPosENS0_12ObIAllocatorEE7reserveEl -_ZN9oceanbase6common19ModulePageAllocator5allocEl -_ZN9oceanbase6common16ObFixedArrayImplINS_3sql16ObValuesTokenPosENS0_12ObIAllocatorEE4initEl +_ZN9oceanbase3sql17ObMergeDistinctOp7destroyEv +_ZN9oceanbase5obrpc10ObBatchRpc4run1Ev +_ZN9oceanbase5obrpc14ObBatchRpcBase7do_workEv +_ZN9oceanbase6common17ObSleepEventGuardC2Elml +_ZN9oceanbase6common9ob_usleepILNS0_14ObWaitEventIds17ObWaitEventIdEnumE27EEEvj +_ZTWN9oceanbase3lib6Thread9sleep_us_E +_ZN9oceanbase3lib7ObFutex4waitEil +_ZN9oceanbase5obrpc11ObRpcBuffer4sendERNS0_15ObBatchRpcProxyEmRKNS_6common6ObAddrEb +_ZN9oceanbase5obrpc15ObRingRpcBuffer4readERlRPcS2_b +_ZN9oceanbase3sql12ObDMLService14init_del_rtdefERNS0_10ObDMLRtCtxERNS0_10ObDelRtDefERKNS0_10ObDelCtDefE +_ZN9oceanbase3sql10ObDASUtils25check_nested_sql_mutatingEmRNS0_13ObExecContextEb +_ZN9oceanbase6common13ObLinkHashMapINS0_9ObIntWarpENS_3sql11ObPxResInfoENS3_13ObPxInfoAllocENS0_9RefHandleELl8EE4nextEPNS0_12LinkHashNodeIS2_EE +_ZN9oceanbase6common11ObQSyncImpl11release_refEv +_ZN9oceanbase6common6QClock14enter_criticalEv +_ZN9oceanbase7storage12ObSumAggCell5resetEv _ZN9oceanbase6common7ObTimer4run1Ev _ZN9oceanbase6common15ObKVGlobalCache16KVMapReplaceTask12runTimerTaskEv -_ZN9oceanbase6common14ObTimerMonitor12get_instanceEv -_ZN9oceanbase5share20ObActiveSessHistTask12runTimerTaskEv +_ZN9oceanbase6common22ObKVCacheHazardStation11delete_nodeElPNS0_19ObKVCacheHazardNodeE +_ZN9oceanbase6common14ObTimerMonitor8end_taskEll +pthread_mutex_lock _ZTWN9oceanbase6common20ObActiveSessionGuard18thread_local_stat_E -_ZN6obutil7ObLockTINS_9ObMonitorINS_11ObUtilMutexEEEED2Ev +_ZN9oceanbase5share20ObActiveSessHistTask12runTimerTaskEv _ZN9oceanbase6common7ObTimer12insert_tokenERKNS1_5TokenE +_ZTHN9oceanbase6common20ObActiveSessionGuard18thread_local_stat_E +_ZN6obutil7ObLockTINS_9ObMonitorINS_11ObUtilMutexEEEED2Ev +_ZN9oceanbase4palf16BlockGCTimerTask12runTimerTaskEv _ZN9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE3mapINS8_8HandleOnINS_5share20ObActiveSessHistTaskEEEEEiRT_ _ZN9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE4nextEPNS0_12LinkHashNodeIS3_EE -_ZN9oceanbase4palf16BlockGCTimerTask12runTimerTaskEv -_ZTHN9oceanbase6common20ObActiveSessionGuard18thread_local_stat_E _ZN9oceanbase12blocksstable14ObBlockManager19InspectBadBlockTask12runTimerTaskEv -_ZN9oceanbase6common15ObLinearHashMapINS_12blocksstable12MacroBlockIdENS2_14ObBlockManager9BlockInfoENS0_14ShareMemMgrTagEE7do_get_ERKS3_RS5_ -_ZN9oceanbase6common15ObLinearHashMapINS_12blocksstable12MacroBlockIdENS2_14ObBlockManager9BlockInfoENS0_14ShareMemMgrTagEE16load_access_bkt_ERKS3_RmRPNS7_6BucketE _ZN9oceanbase4palf24palf_reach_time_intervalElRl -_ZNK9oceanbase6common19ObParallelAllocator5totalEv -_ZN9oceanbase6common15ObLinearHashMapINS_12blocksstable12MacroBlockIdENS2_14ObBlockManager9BlockInfoENS0_14ShareMemMgrTagEE17load_factor_ctrl_Em -_ZN9oceanbase7storage18ObTenantMetaMemMgr12TabletGCTask12runTimerTaskEv _ZN9oceanbase4palf11PalfEnvImpl18try_recycle_blocksEv _ZN9oceanbase4palf11PalfEnvImpl15get_disk_usage_ERlS2_S2_S2_ _ZNK9oceanbase4palf14PalfHandleImpl25get_total_used_disk_spaceERlS2_ -_ZZN9oceanbase4palf11PalfEnvImpl21GetTotalUsedDiskSpaceclERKNS0_5LSKeyEPNS0_15IPalfHandleImplEENK5$_826clEPKc -_ZZNK9oceanbase4palf9LogEngine25get_total_used_disk_spaceERlS2_ENK5$_644clEPKc -_ZN9oceanbase6common15ObLinearHashMapINS_12blocksstable12MacroBlockIdENS2_14ObBlockManager9BlockInfoENS0_14ShareMemMgrTagEE20unset_foreach_L_lmt_Em _ZNK9oceanbase4palf9LogEngine25get_total_used_disk_spaceERlS2_ _ZNK9oceanbase4palf11LogBlockMgr18get_block_id_rangeERmS2_ -_ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEED2Ev -_ZNK9oceanbase4palf10LogStorage11get_end_lsnEv _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEEC2ERS3_ +_ZNK9oceanbase4palf10LogStorage11get_end_lsnEv _ZNK9oceanbase4palf9LogEngine30get_base_lsn_used_for_block_gcEv -_ZN9oceanbase7storage18ObTenantMetaMemMgr11TableGCTask12runTimerTaskEv -_ZN9oceanbase6common4hash19ObHashTableIteratorINS_5share6ObLSIDENS1_11HashMapPairIS4_PNS1_9ObHashSetImNS1_19ReadWriteDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS5_ImNS1_11HashNullObjEEEEELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEEEENS8_IS4_EENSA_IS4_EENS1_10pair_firstISO_EENSC_INSD_ISO_EELi108ESH_SI_EENS1_24LatchReadWriteDefendModeESK_SL_Ll1EEppEv -_ZNK9oceanbase3lib20ObTenantCtxAllocator9get_limitEv -_ZN9oceanbase7storage20ObDDLCtrlSpeedHandle22RefreshSpeedHandleTask12runTimerTaskEv +_ZZN9oceanbase4palf11PalfEnvImpl21GetTotalUsedDiskSpaceclERKNS0_5LSKeyEPNS0_15IPalfHandleImplEENK5$_831clEPKc +_ZZNK9oceanbase4palf9LogEngine25get_total_used_disk_spaceERlS2_ENK5$_646clEPKc +_ZZNK9oceanbase4palf9LogEngine25get_total_used_disk_spaceERlS2_ENK5$_644clEPKc +_ZN9oceanbase7storage18ObTenantMetaMemMgr12TabletGCTask12runTimerTaskEv _ZN9oceanbase4palf10LogUpdater12runTimerTaskEv -_ZN9oceanbase8observer18ObTableLoadManager29get_releasable_table_ctx_listERNS_6common8ObIArrayIPNS0_19ObTableLoadTableCtxEEE -_ZN9oceanbase3omt19ObTenantTimezoneMgr18UpdateTenantTZTask12runTimerTaskEv +_ZN9oceanbase12blocksstable17ObTmpFileWaitTask12runTimerTaskEv +_ZN9oceanbase8observer28ObTenantLSMetaTableCheckTask12runTimerTaskEv +_ZN9oceanbase5share23ObLSReplicaFilterHolder19set_reserved_serverERKNS_6common6ObAddrE +_ZN9oceanbase7storage20ObDDLCtrlSpeedHandle22RefreshSpeedHandleTask12runTimerTaskEv +_ZN9oceanbase3sql3dtl23ObDTLIntermResultGCTask12runTimerTaskEv +_ZNK9oceanbase6common4hash11ObHashTableINS_3sql3dtl20ObDTLIntermResultKeyENS1_11HashMapPairIS5_PNS4_21ObDTLIntermResultInfoEEENS1_9hash_funcIS5_EENS1_8equal_toIS5_EENS1_10pair_firstIS9_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS9_EELi81ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE18foreach_refactoredINS4_19ObDTLIntermResultGCEEEiRT_ +_ZN9oceanbase8observer19ObTenantMetaChecker27schedule_ls_meta_check_taskEv _ZN9oceanbase10compaction30ObTenantTabletSchedulerTaskMgr13MergeLoopTask12runTimerTaskEv _ZN9oceanbase7storage8ObTablet14get_ddl_kv_mgrERNS0_14ObMetaObjGuardINS0_16ObTabletDDLKvMgrEEEb _ZN9oceanbase7storage14ObTabletHandleC1ERKS1_ -_ZN9oceanbase10compaction28ObCompactionScheduleIterator15get_next_tabletERNS_7storage14ObTabletHandleE -_ZN9oceanbase7storage13ObTabletIDSet7foreachINS0_17ObLSTabletService22GetAllTabletIDOperatorEEEiRT_ -_ZN9oceanbase7storage17ObLSTabletService22GetAllTabletIDOperatorclERKNS_6common10ObTabletIDE -_ZN9oceanbase7storage17ObLSTabletService10get_tabletERKNS_6common10ObTabletIDERNS0_14ObTabletHandleElNS0_18ObMDSGetTabletModeE -_ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl2000ENS0_19ModulePageAllocatorELb0EE9push_backERKS2_ -_ZN9oceanbase7storage14ObMetaObjGuardINS0_16ObTabletDDLKvMgrEEaSERKS3_ +_ZN9oceanbase10compaction28ObCompactionScheduleIterator11get_next_lsERNS_7storage10ObLSHandleE _ZN9oceanbase7storage14ObMetaObjGuardINS0_16ObTabletDDLKvMgrEE9reset_objEv _ZN9oceanbase10compaction23ObTenantTabletScheduler27schedule_tablet_minor_mergeINS0_23ObTabletMergeExecuteDagEEEiRNS_7storage10ObLSHandleERNS4_14ObTabletHandleE _ZN9oceanbase10compaction22ObPartitionMergePolicy22get_minor_merge_tablesERKNS_7storage21ObGetMergeTablesParamERNS2_4ObLSERKNS2_8ObTabletERNS2_22ObGetMergeTablesResultE +_ZN9oceanbase7storage22ObGetMergeTablesResult5resetEv +_ZN9oceanbase10compaction22ObPartitionMergePolicy29get_boundary_snapshot_versionERKNS_7storage8ObTabletERlS6_bb +_ZNK9oceanbase7storage8ObTablet21read_medium_info_listERNS_6common16ObArenaAllocatorERPKNS_10compaction26ObMediumCompactionInfoListE +_ZNK9oceanbase7storage8ObTablet21get_finish_medium_scnERl +_ZNK9oceanbase7storage8ObTablet17fetch_table_storeERNS0_21ObTabletMemberWrapperINS0_18ObTabletTableStoreES3_EE +_ZN9oceanbase7storage24ObTabletDumpedMediumInfoD1Ev +_ZN9oceanbase7storage24ObTabletDumpedMediumInfoD2Ev +_ZN9oceanbase7storage24ObTabletDumpedMediumInfo5resetEv +_ZN9oceanbase7storage24ObTabletDumpedMediumInfo23init_for_first_creationERNS_6common12ObIAllocatorE +_ZN9oceanbase10compaction30ObMediumCompactionScheduleFunc23get_max_sync_medium_scnERKNS_7storage8ObTabletERKNS0_26ObMediumCompactionInfoListERl +_ZNK9oceanbase7storage8ObTablet23get_tablet_memtable_mgrERPNS0_19ObTabletMemtableMgrE +_ZN9oceanbase7storage15ObTabletMdsData21copy_medium_info_listElRKNS0_24ObTabletDumpedMediumInfoERS2_ +_ZN9oceanbase10compaction26ObMediumCompactionInfoList4initERNS_6common12ObIAllocatorERKNS0_17ObExtraMediumInfoEPKNS_7storage24ObTabletDumpedMediumInfoE _ZN9oceanbase10compaction22ObPartitionMergePolicy23find_minor_merge_tablesERKNS_7storage21ObGetMergeTablesParamEllRNS2_4ObLSERKNS2_8ObTabletERNS2_22ObGetMergeTablesResultE _ZN9oceanbase3omt17ObTenantConfigMgr12get_instanceEv _ZNK9oceanbase10compaction14ObMergeDagHash10inner_hashEv _ZN9oceanbase3omt17ObTenantConfigMgr26default_fallback_tenant_idEv -_ZN9oceanbase7storage19ObTablesHandleArrayD1Ev _ZNK9oceanbase7storage8ObTablet23get_mini_minor_sstablesERNS0_20ObTableStoreIteratorE +_ZN9oceanbase7storage19ObTablesHandleArrayD1Ev _ZN9oceanbase6common11ObArrayImplINS_7storage15ObTableHandleV2ENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEED2Ev -_ZN9oceanbase10compaction22ObPartitionMergePolicy29get_boundary_snapshot_versionERKNS_7storage8ObTabletERlS6_bb -_ZN9oceanbase10compaction30ObMediumCompactionScheduleFunc23get_max_sync_medium_scnERKNS_7storage8ObTabletERKNS0_26ObMediumCompactionInfoListERl -_ZNK9oceanbase7storage8ObTablet23get_tablet_memtable_mgrERPNS0_19ObTabletMemtableMgrE +_ZN9oceanbase12blocksstable9ObSSTable7dec_refEv +_ZN9oceanbase7storage15ObTabletMdsData21load_medium_info_listERNS_6common12ObIAllocatorERKNS0_19ObTabletComplexAddrINS0_24ObTabletDumpedMediumInfoEEERPS6_ +_ZN9oceanbase10compaction18ObIDiagnoseInfoMgr11delete_infoEl +_ZN9oceanbase10compaction22ObPartitionMergePolicy27get_hist_minor_merge_tablesERKNS_7storage21ObGetMergeTablesParamERNS2_4ObLSERKNS2_8ObTabletERNS2_22ObGetMergeTablesResultE +_ZN9oceanbase7storage20ObTableStoreIterator8get_nextERNS0_15ObTableHandleV2E _ZN9oceanbase10compaction22ObPartitionMergePolicy25get_neighbour_freeze_infoEllRNS_7storage21ObTenantFreezeInfoMgr19NeighbourFreezeInfoEb _ZN9oceanbase7storage21ObTenantFreezeInfoMgr19get_snapshot_gc_scnEv -_ZN9oceanbase7storage20ObTableStoreIterator8get_nextERNS0_15ObTableHandleV2E -_ZN9oceanbase12blocksstable9ObSSTable7inc_refEv -_ZN9oceanbase10compaction18ObIDiagnoseInfoMgr11delete_infoEl _ZN9oceanbase5share19ObFreezeInfoManager27get_neighbour_frozen_statusElRNS0_12ObFreezeInfoES3_ -_ZN9oceanbase10compaction22ObPartitionMergePolicy27get_hist_minor_merge_tablesERKNS_7storage21ObGetMergeTablesParamERNS2_4ObLSERKNS2_8ObTabletERNS2_22ObGetMergeTablesResultE -_ZN9oceanbase7storage22ObGetMergeTablesResult5resetEv -_ZN9oceanbase6common11ObDebugSync8instanceEv -_ZN9oceanbase10compaction18ObIDiagnoseInfoMgr16del_with_no_lockElPNS0_15ObIDiagnoseInfoE -_ZN9oceanbase6common4hash11ObHashTableIlNS1_11HashMapPairIlPNS_10compaction15ObIDiagnoseInfoEEENS1_9hash_funcIlEENS1_8equal_toIlEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKlRS7_l -_ZZN9oceanbase10compaction30ObMediumCompactionScheduleFunc23get_max_sync_medium_scnERKNS_7storage8ObTabletERKNS0_26ObMediumCompactionInfoListERlENK6$_1521clEPKc -_ZN9oceanbase10compaction28ObCompactionScheduleIterator11get_next_lsERNS_7storage10ObLSHandleE -_ZN9oceanbase12blocksstable17ObTmpFileWaitTask12runTimerTaskEv -_ZN9oceanbase8observer8ObServer25ObRefreshNetworkSpeedTask12runTimerTaskEv -_ZN9oceanbase6common11ObDebugSync7executeENS0_16ObDebugSyncPointE -_ZN9oceanbase6common7ObDITlsINS0_15ObDSActionArrayELm0EE12get_instanceEv -_ZN9oceanbase3sql3dtl23ObDTLIntermResultGCTask12runTimerTaskEv -_ZNK9oceanbase6common4hash11ObHashTableINS_3sql3dtl20ObDTLIntermResultKeyENS1_11HashMapPairIS5_PNS4_21ObDTLIntermResultInfoEEENS1_9hash_funcIS5_EENS1_8equal_toIS5_EENS1_10pair_firstIS9_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS9_EELi81ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE18foreach_refactoredINS4_19ObDTLIntermResultGCEEEiRT_ -_ZN9oceanbase14dbms_scheduler18ObDBMSSchedJobTask12runTimerTaskEv -_ZN9oceanbase6common14ObTimerMonitor18ObTimerMonitorTask12runTimerTaskEv +_ZNK9oceanbase7storage19ObTablesHandleArray9get_tableElRNS0_15ObTableHandleV2E +_ZZN9oceanbase10compaction30ObMediumCompactionScheduleFunc23get_max_sync_medium_scnERKNS_7storage8ObTabletERKNS0_26ObMediumCompactionInfoListERlENK6$_1511clEPKc _ZN9oceanbase10compaction22ObPartitionMergePolicy25refine_minor_merge_resultENS0_11ObMergeTypeElRNS_7storage22ObGetMergeTablesResultE +_ZN9oceanbase6common14ObTimerMonitor18ObTimerMonitorTask12runTimerTaskEv +_ZN9oceanbase8observer19ObTenantMetaChecker15check_ls_table_ENS_5share9ObLSTable4ModeE +_ZN9oceanbase5share25_make_tenant_switch_guardEv +_ZN9oceanbase5share11ObLSReplicaC1Ev +_ZN9oceanbase6common11ObArrayImplINS_5share11ObLSReplicaENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE7destroyEv +_ZN9oceanbase5share11ObLSReplicaD1Ev +_ZN9oceanbase5share11ObLSReplicaD2Ev +_ZN9oceanbase6common15BaseLearnerListILl2000ENS0_8ObMemberEED2Ev +_ZN9oceanbase8observer19ObTenantMetaChecker24check_dangling_replicas_ERNS_6common4hash9ObHashMapINS_5share6ObLSIDENS5_11ObLSReplicaENS3_24LatchReadWriteDefendModeENS3_9hash_funcIS6_EENS3_8equal_toIS6_EENS3_13SimpleAllocerINS3_15ObHashTableNodeINS3_11HashMapPairIS6_S7_EEEELi6ENS3_19SpinMutexDefendModeENS3_29DefaultSimpleAllocerAllocatorEEENS3_13NormalPointerENS2_8ObMallocELl1EEERl +_ZN9oceanbase6common4hash9ObHashMapINS_5share6ObLSIDENS3_11ObLSReplicaENS1_24LatchReadWriteDefendModeENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS4_S5_EEEELi6ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev +_ZN9oceanbase5share8ObLSInfo6filterERKNS0_17ObLSReplicaFilterE +_ZN9oceanbase6common4hash11ObHashTableINS_5share6ObLSIDENS1_11HashMapPairIS4_NS3_11ObLSReplicaEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi6ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14set_refactoredIvLb0EEEiRKS4_RKS7_iiiPT_ _ZN9oceanbase10compaction30ObTenantTabletSchedulerTaskMgr15MediumCheckTask12runTimerTaskEv +_ZN9oceanbase3omt11ObTenantSrs27TenantSrsUpdatePeriodicTask12runTimerTaskEv _ZN9oceanbase3omt19ObTenantTimezoneMgr18DeleteTenantTZTask12runTimerTaskEv -_ZN9oceanbase8observer18ObTableLoadService21ObClientTaskPurgeTask12runTimerTaskEv -_ZN9oceanbase8observer24ObTableLoadClientService19get_all_client_taskERNS_6common8ObIArrayIPNS0_21ObTableLoadClientTaskEEE -_ZN9oceanbase12blocksstable21ObSharedMacroBlockMgr26ObBlockDefragmentationTask12runTimerTaskEv -_ZN9oceanbase12blocksstable17ObMacroIdIteratorD2Ev -_ZN9oceanbase6common15ObLinearHashMapINS_12blocksstable12MacroBlockIdEiNS0_14ShareMemMgrTagEE16do_foreach_scan_INS2_21ObSharedMacroBlockMgr15GetSmallBlockOpENS5_14DoForeachOnBktIS8_EEEEbmmRT_RT0_ -_ZN9oceanbase8observer16ObTenantDutyTask12runTimerTaskEv -_ZN9oceanbase12blocksstable21ObSharedMacroBlockMgr13update_tabletERKNS_7storage14ObTabletHandleERKNS_6common8ObIArrayINS0_12MacroBlockIdEEERlRNS0_21ObSSTableIndexBuilderERNS0_21ObIndexBlockRebuilderE +_ZN9oceanbase5share6schema19ObSchemaGetterGuard32check_if_tenant_has_been_droppedEmRb +_ZN9oceanbase8observer15ObLeaseStateMgr9HeartBeat12runTimerTaskEv +_ZN9oceanbase8observer26ObTenantSqlMemoryTimerTask12runTimerTaskEv +_ZN9oceanbase8observer9ObService15fill_ls_replicaEmRKNS_5share6ObLSIDERNS2_11ObLSReplicaE +_ZN9oceanbase7storage4ObLS18get_replica_statusERNS_5share15ObReplicaStatusE +_ZN9oceanbase5share11ObLSReplica24transform_ob_member_listERKNS_6common16ObMemberListBaseILl7EEERNS2_9ObSEArrayINS0_12SimpleMemberELl7ENS2_15ObNullAllocatorELb0EEE +_ZN9oceanbase3sql26ObPlanCacheEliminationTask12runTimerTaskEv +_ZNK9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS_3sql17ObILibCacheObjectEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE18foreach_refactoredINS4_19ObDumpAllCacheObjOpEEEiRT_ +_ZNK9oceanbase8observer22ObGlobalReqTimeService25get_global_safe_timestampERl +_ZN9oceanbase3sql19ObDumpAllCacheObjOpclERNS_6common4hash11HashMapPairImPNS0_17ObILibCacheObjectEEE +_ZNK9oceanbase3sql25ObDumpAllCacheObjByTypeOp11should_dumpEPNS0_17ObILibCacheObjectE +_ZN9oceanbase6common11ObArrayImplINS_3sql17AllocCacheObjInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE9push_backERKS3_ +_ZN9oceanbase6common11ObArrayImplINS_3sql17AllocCacheObjInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE10extend_bufEl +_ZN9oceanbase3lib17ObTenantMemoryMgr11alloc_chunkElRKNS0_9ObMemAttrE +_ZN9oceanbase3lib17ObTenantMemoryMgr12alloc_chunk_ElRKNS0_9ObMemAttrE +_ZN9oceanbase3lib10AChunkList3popEv +_ZN9oceanbase3lib9AChunkMgr11update_holdElb +_ZN9oceanbase3lib9AChunkMgr12direct_allocEmbRbb +mmap +mmap64 +ob_mmap_hook _ZN9oceanbase7storage12ObSumAggCell14collect_resultERNS_3sql9ObEvalCtxEb _ZN9oceanbase7storage12ObSumAggCell29collect_result_to_decimal_intERKNS_6common4wide13ObWideIntegerILj128EiEERKNS2_7ObDatumERS8_ -_ZNK9oceanbase5share6schema16ObSchemaCacheKeyeqERKNS_6common13ObIKVCacheKeyE +_ZN9oceanbase6common16ObFixedArrayImplINS_3sql16ObValuesTokenPosENS0_12ObIAllocatorEE4initEl +_ZNK9oceanbase6common10ObFunctionIFvvEE7DerivedIZNS0_5occam20ObThreadHungDetector4initEvEUlvE_E6invokeEv +_ZN9oceanbase6common16ObFixedArrayImplINS_3sql16ObValuesTokenPosENS0_12ObIAllocatorEE7reserveEl +_ZN9oceanbase6common19ModulePageAllocator5allocEl +_ZN9oceanbase6common4hash11ObHashTableINS0_6ObAddrENS1_12ObReferedMapIS3_NS_10rootserver16DRServerStatInfoEE4ItemENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS8_6GetKeyENS1_13SimpleAllocerINS1_15ObHashTableNodeIS8_EELi74ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE5clearEv +_ZN9oceanbase3sql12ObDMLService27process_before_stmt_triggerERKNS0_14ObDMLBaseCtDefERNS0_14ObDMLBaseRtDefERNS0_10ObDMLRtCtxERKNS_6common14ObDmlEventTypeE +_ZNK9oceanbase5share6schema16ObSchemaCacheKey4hashERm _ZN9oceanbase6common15ObLinearHashMapINS_12blocksstable12MacroBlockIdENS2_14ObBlockManager9BlockInfoENS0_14ShareMemMgrTagEE16do_foreach_scan_INS4_25GetAllMacroBlockIdFunctorENS7_14DoForeachOnBktIS9_EEEEbmmRT_RT0_ _ZN9oceanbase6common15ObLinearHashMapINS_12blocksstable12MacroBlockIdENS2_14ObBlockManager9BlockInfoENS0_14ShareMemMgrTagEE16load_access_bkt_EmRPNS7_6BucketE _ZN9oceanbase6common11ObArrayImplINS_12blocksstable12MacroBlockIdENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE9push_backERKS3_ -_ZNK9oceanbase6common10ObFunctionIFvvEE7DerivedIZNS0_5occam20ObThreadHungDetector4initEvEUlvE_E6invokeEv -_ZN9oceanbase6common14ObKVCacheStore13de_handle_refEPNS0_18ObKVMemBlockHandleEb -_ZN9oceanbase6common11QClockGuardC2ERNS0_6QClockE -_ZN9oceanbase3sql16ObSQLSessionInfo24update_show_warnings_bufEv -_ZZN9oceanbase3sql16ObFastParserBase17parser_insert_strERNS_6common12ObIAllocatorElRKNS2_8ObStringERS5_RbRlSA_SA_SA_ENK4$_23clEPKc -_Znwm -_Z14ob_malloc_hookmPKv -_Z15ob_malloc_retrym -_ZTWN9oceanbase3lib21ObMallocHookAttrGuard11tl_mem_attrE -__tls_init.llvm.15324576766021379907 -_ZTHN9oceanbase3lib21ObMallocHookAttrGuard11tl_mem_attrE -_ZNSs12_S_constructIPKcEEPcT_S3_RKSaIcESt20forward_iterator_tag -_ZN9oceanbase3sql10ObInsRtDefD2Ev +_ZN9oceanbase6common11ObArrayImplINS_12blocksstable12MacroBlockIdENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE10extend_bufEl _ZN9oceanbase11transaction12ObLSTxCtxMgr11get_rec_scnERNS_5share3SCNE _ZN9oceanbase11transaction18GetRecLogTSFunctor17internal_operatorERKNS0_9ObTransIDEPNS0_14ObPartTransCtxE _ZN9oceanbase7storage16ObTxCtxTableInfoC2Ev _ZN9oceanbase11transaction12ObTxExecInfoC2Ev +_ZN9oceanbase6common9ObSEArrayINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EEC2Ev _ZN9oceanbase6common9ObSEArrayINS_7storage3mds13BufferCtxNodeELl1ENS0_19ModulePageAllocatorELb0EEC2Ev _ZN9oceanbase6common9ObSEArrayINS_4palf3LSNELl10ENS0_19ModulePageAllocatorELb0EEC2Ev -_ZN9oceanbase6common9ObSEArrayINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EEC2Ev _ZN9oceanbase7storage16ObTxCtxTableInfoD2Ev _ZN9oceanbase7storage16ObTxCtxTableInfo5resetEv -_ZN9oceanbase6common13ObSEArrayImplINS_11transaction11ObLSLogInfoELl10ENS0_19ModulePageAllocatorELb0EED2Ev _ZN9oceanbase6common13ObSEArrayImplINS_11transaction9tablelock13ObTableLockOpELl10ENS2_24TransModulePageAllocatorELb0EE7destroyEv +_ZN9oceanbase6common13ObSEArrayImplINS_11transaction11ObLSLogInfoELl10ENS0_19ModulePageAllocatorELb0EED2Ev +_ZN9oceanbase6common13ObSEArrayImplINS_11transaction9tablelock13ObTableLockOpELl10ENS2_24TransModulePageAllocatorELb0EED2Ev _ZN9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EED2Ev -_ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql20ObAggregateProcessor12IAggrFuncCtxENS0_12ObIAllocatorEE7reserveEl -LZ4_compress_fast_extState -_ZN9oceanbase3sql12ObDMLService27process_before_stmt_triggerERKNS0_14ObDMLBaseCtDefERNS0_14ObDMLBaseRtDefERNS0_10ObDMLRtCtxERKNS_6common14ObDmlEventTypeE +_ZN9oceanbase7storage13ObTxDataGuard5resetEv +_ZN9oceanbase3sql10ObInsRtDefD2Ev +_ZZN9oceanbase3sql16ObFastParserBase17parser_insert_strERNS_6common12ObIAllocatorElRKNS2_8ObStringERS5_RbRlSA_SA_SA_ENK4$_23clEPKc +_ZN9oceanbase6common12ObDedupQueue4run1Ev +_ZN9oceanbase7storage22ObBloomFilterBuildTask7processEv +_ZN9oceanbase12blocksstable27ObMacroBlockRowBareIterator12get_next_rowERPKNS0_10ObDatumRowE +_ZN9oceanbase12blocksstable23ObBloomFilterCacheValue6insertEj +_ZN9oceanbase12blocksstable27ObMacroBlockRowBareIterator21open_next_micro_blockEv +_ZTWN9oceanbase5share17ObTenantDagWorker16is_reserve_mode_E _ZN9oceanbase6common12ObMemoryDump4run1Ev _ZN9oceanbase6common18do_with_segv_catchIRZNS0_12ObMemoryDump6handleEPvE4$_23EEvOT_RbRDTclfL0p_EE _ZTWN9oceanbase6common3jmpE _ZNK9oceanbase6common4hash9hash_funcINS_3lib17ObMallocSampleKeyEEclERKS4_Rm _ZN9oceanbase3lib20ObTenantCtxAllocator10get_chunksEPPNS0_6AChunkEiRi -_ZN9oceanbase3libL13get_page_sizeEv _ZN9oceanbase6common4hash11ObHashTableISt4pairImmENS1_11HashMapPairIS4_NS0_13LabelInfoItemEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi81ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14set_refactoredIvLb0EEEiRKS4_RKS7_iiiPT_ -_ZN9oceanbase6common4hash11ObHashTableINS_3lib17ObMallocSampleKeyENS1_11HashMapPairIS4_NS3_19ObMallocSampleValueEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi33ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE5clearEv +_ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocator5allocEl +_ZN9oceanbase6common14get_tenant_idsEPmiRi +_ZNK9oceanbase3lib17ObMallocAllocator35get_tenant_ctx_allocator_unrecycledEmm +_ZN9oceanbase6common13ObLatchRGuardC2ERNS0_7ObLatchEj _ZN9oceanbase6common4hash11ObHashTableINS_3lib17ObMallocSampleKeyENS1_11HashMapPairIS4_NS3_19ObMallocSampleValueEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi33ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14set_refactoredIvLb0EEEiRKS4_RKS7_iiiPT_ _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairISt4pairImmENS0_13LabelInfoItemEEEEELi81ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEE4freeEPS9_ -_ZN9oceanbase3sql19ObScalarAggregateOp20inner_get_next_batchEl -_ZN9oceanbase3sql20ObAggregateProcessor25process_aggr_batch_resultINS1_16ObBatchRowsSliceEEEiPKNS_6common8ObIArrayIPNS0_6ObExprEEERNS1_8AggrCellERKNS0_10ObAggrInfoERKT_ +_ZN9oceanbase3sql16ObSQLSessionInfo24update_show_warnings_bufEv +_ZN9oceanbase7storage16ObTxDataMemtable21pre_process_for_mergeEv +_ZN9oceanbase3lib20ObTenantCtxAllocator8ChunkMgr11alloc_chunkEmRKNS0_9ObMemAttrE +_Znwm +_Z14ob_malloc_hookmPKv +_Z15ob_malloc_retrym +_ZTWN9oceanbase3lib21ObMallocHookAttrGuard11tl_mem_attrE +__tls_init.llvm.6650822884049577728 +_ZTHN9oceanbase3lib21ObMallocHookAttrGuard11tl_mem_attrE +_ZN9oceanbase3sql19ObScalarAggregateOp20inner_get_next_batchEl +_ZN9oceanbase3sql20ObAggregateProcessor25process_aggr_batch_resultINS1_16ObBatchRowsSliceEEEiPKNS_6common8ObIArrayIPNS0_6ObExprEEERNS1_8AggrCellERKNS0_10ObAggrInfoERKT_ _ZN9oceanbase3sql22ObDecIntSumBatchOpFuncINS_6common4wide13ObWideIntegerILj128EiEES5_S5_NS0_20ObAggregateProcessor16ObBatchRowsSliceEE9add_batchERNS2_7ObDatumEPS6_RNS6_8AggrCellERKNS2_13ObDatumVectorEPKvs _ZN9oceanbase3sql20ObAggregateProcessor19collect_aggr_resultERNS1_8AggrCellEPKNS0_6ObExprERKNS0_10ObAggrInfoEll _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell14collect_resultENS_6common14ObObjTypeClassERNS0_9ObEvalCtxERKNS0_10ObAggrInfoE +_ZZN9oceanbase3sql11ObPlanCache13get_cache_objERNS0_14ObILibCacheCtxEPNS0_14ObILibCacheKeyERNS0_15ObCacheObjGuardEENK5$_229clEPKc.llvm.15555104687725353391 +_ZN9oceanbase12blocksstable23ObIMicroBlockIOCallback13get_allocatorEv _ZN9oceanbase3sql5ObSql20handle_physical_planERKNS_6common8ObStringERNS0_8ObSqlCtxERNS0_11ObResultSetERNS0_14ObPlanCacheCtxEi _ZN9oceanbase3sql22UDRBackupRecoveryGuardD2Ev _ZN9oceanbase3sql5ObSql16parser_and_checkERKNS_6common8ObStringERNS0_13ObExecContextERNS0_14ObPlanCacheCtxER11ParseResultiRbSC_ _ZN9oceanbase3sql8ObParser5parseERKNS_6common8ObStringER11ParseResult9ParseModebbbb _ZN9oceanbase3sql5ObSql22generate_physical_planER11ParseResultPNS0_14ObPlanCacheCtxERNS0_8ObSqlCtxERNS0_11ObResultSetEbNS0_13PlanCacheModeEPS2_ +_ZNK9oceanbase6common16ObArenaAllocator5totalEv +__dynamic_cast _ZN9oceanbase6common13ObSEArrayImplISt4pairIPNS_3sql9ObRawExprEPNS3_14ObConstRawExprEELl8ENS0_19ModulePageAllocatorELb0EED2Ev _ZN9oceanbase3sql16ObRawExprFactoryC2ERNS_6common12ObIAllocatorE -_ZN9oceanbase3sql10ObResolverD1Ev -_ZN9oceanbase3sql10ObResolverD2Ev -_ZN9oceanbase6common8ObBitSetILl256ENS0_19ModulePageAllocatorELb1EED2Ev _ZN9oceanbase3sql13ObExecContext16get_stmt_factoryEv _ZN9oceanbase3sql13ObStmtFactoryC2ERNS_6common12ObIAllocatorE _ZN9oceanbase3sql5ObSql13generate_stmtER11ParseResultPNS0_14ObPlanCacheCtxERNS0_8ObSqlCtxERNS_6common12ObIAllocatorERNS0_11ObResultSetERPNS0_6ObStmtEPS2_ @@ -2008,27 +2477,30 @@ _ZNK9oceanbase3sql6ObStmt19has_global_variableEv _ZNK9oceanbase3sql6ObStmt11is_dml_stmtEv _ZN9oceanbase6common11ObArrayImplIPNS_5share6schema13ObTableSchemaENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEEC2ElRKS6_ _ZN9oceanbase3sql6ObStmt13is_write_stmtENS0_4stmt8StmtTypeEb -_ZN9oceanbase6common4hash9ObHashMapImmNS1_24LatchReadWriteDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImmEEEELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE5clearEv -_ZN9oceanbase3sql10ObQueryCtxC2Ev +_ZN9oceanbase3sql6ObStmt11is_ddl_stmtENS0_4stmt8StmtTypeEb +_ZN9oceanbase3sql10ObResolverD1Ev +_ZN9oceanbase3sql10ObResolverD2Ev +_ZN9oceanbase6common8ObBitSetILl256ENS0_19ModulePageAllocatorELb1EED2Ev _ZN9oceanbase3sql16ObSqlSchemaGuard5resetEv _ZN9oceanbase3sql16ObResolverParamsC2ERKS1_ -_ZN9oceanbase3sql10ObUDRUtils24match_udr_and_refill_ctxERKNS_6common8ObStringERNS0_8ObSqlCtxERNS0_11ObResultSetERNS0_14ObPlanCacheCtxERbRNS0_12ObUDRItemMgr14UDRRefObjGuardINS0_9ObUDRItemEEE +_ZN9oceanbase3sql10ObQueryCtxC2Ev +_ZN9oceanbase6common4hash9ObHashMapImmNS1_24LatchReadWriteDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImmEEEELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE5clearEv +_ZZN9oceanbase3sql5ObSql13generate_stmtER11ParseResultPNS0_14ObPlanCacheCtxERNS0_8ObSqlCtxERNS_6common12ObIAllocatorERNS0_11ObResultSetERPNS0_6ObStmtEPS2_ENK6$_3429clEPKc _ZN9oceanbase3sql15ObResolverUtils26get_stmt_type_by_item_typeE10ObItemType _ZN9oceanbase3sql8ObParser9parse_sqlERKNS_6common8ObStringER11ParseResultb parse_init -parse_realloc parse_sql -_ZZN9oceanbase3sql5ObSql13generate_stmtER11ParseResultPNS0_14ObPlanCacheCtxERNS0_8ObSqlCtxERNS_6common12ObIAllocatorERNS0_11ObResultSetERPNS0_6ObStmtEPS2_ENK6$_3427clEPKc +parse_realloc +_ZN9oceanbase3sql10ObUDRUtils24match_udr_and_refill_ctxERKNS_6common8ObStringERNS0_8ObSqlCtxERNS0_11ObResultSetERNS0_14ObPlanCacheCtxERbRNS0_12ObUDRItemMgr14UDRRefObjGuardINS0_9ObUDRItemEEE _ZN9oceanbase3sql10ObResolver7resolveENS1_10IsPreparedERK10_ParseNodeRPNS0_6ObStmtE _ZN9oceanbase3sql6ObStmt9init_stmtERNS_6common17ObPooledAllocatorINS2_4hash15ObHashTableNodeINS4_11HashMapPairImlEEEENS2_18ObWrapperAllocatorENS2_10ObNullLockEEERS9_ _ZN9oceanbase3sql6ObStmt11is_dcl_stmtENS0_4stmt8StmtTypeE -_ZN9oceanbase3sql6ObStmt11is_ddl_stmtENS0_4stmt8StmtTypeEb _ZN9oceanbase6common10smart_freeEPv -_ZN9oceanbase6common11smart_allocElPKc _ZN9oceanbase3sql18ObEndTransResolver7resolveERK10_ParseNode +_ZN9oceanbase6common11smart_allocElPKc +_ZN9oceanbase6common11ObAllocator5allocElRKNS_3lib9ObMemAttrE _ZN9oceanbase3sql20ObStartTransResolver7resolveERK10_ParseNode _ZN9oceanbase3sql11ObQueryHint15add_stmt_id_mapElNS0_4stmt8StmtTypeE -_ZN9oceanbase6common11ObAllocator5allocElRKNS_3lib9ObMemAttrE _ZN9oceanbase5share6schema19ObSchemaGetterGuard23get_sys_variable_schemaEmRPKNS1_25ObSimpleSysVariableSchemaE _ZN9oceanbase6common16ObFixedArrayImplINS_5share6schema18ObSchemaObjVersionENS0_12ObIAllocatorEE6assignERKNS0_8ObIArrayIS4_EE obsql_mysql_yyparse @@ -2038,41 +2510,59 @@ obsql_mysql_yylex mysql_non_reserved_keyword_lookup yy_get_previous_state yy_get_next_buffer -_ZN9oceanbase3sql5ObSql16get_outline_dataERNS0_14ObPlanCacheCtxERKNS_6common8ObStringERNS0_14ObOutlineStateERS5_ -_ZNK9oceanbase6common8ObString9serializeEPclRl -_ZN9oceanbase10rootserver20ObLSRecoveryReportor4run2Ev -_ZN9oceanbase10rootserver17ObLSServiceHelper26update_ls_recover_in_transERKNS_5share16ObLSRecoveryStatEbRNS_6common18ObMySQLTransactionE -_ZN9oceanbase10rootserver23ObLSRecoveryStatHandler26get_ls_level_recovery_statERNS_5share16ObLSRecoveryStatE -_ZN9oceanbase10logservice17ObLogApplyService19get_max_applied_scnERKNS_5share6ObLSIDERNS2_3SCNE -_ZN9oceanbase10logservice13ObApplyStatus19get_max_applied_scnERNS_5share3SCNE -_ZN9oceanbase10logservice13ObApplyStatus22update_last_check_scn_Ev -_ZZN9oceanbase10logservice23ObApplyServiceQueueTask22is_snapshot_apply_doneERbENK3$_5clEPKc -_ZN9oceanbase10logservice17ObLogApplyService16wait_append_syncERKNS_5share6ObLSIDE -_ZN9oceanbase10logservice11ObLSAdapter16wait_append_syncERKNS_5share6ObLSIDE -_ZN9oceanbase3lib11ObLockGuardINS0_7ObMutexEED2Ev -_ZN9oceanbase10logservice17ObLogApplyService16get_apply_statusERKNS_5share6ObLSIDERNS0_18ObApplyStatusGuardE -_ZN9oceanbase10logservice17ObLogApplyService21GetApplyStatusFunctorclERKNS_5share6ObLSIDEPNS0_13ObApplyStatusE -_ZZN9oceanbase10logservice13ObApplyStatus19get_max_applied_scnERNS_5share3SCNEENK4$_67clEPKc -_ZN9oceanbase6common11ObArrayImplINS0_6ObAddrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_22NotImplementItemEncodeIS2_EEE9push_backERKS2_ -_ZN9oceanbase4palf8PalfStatC1Ev -_ZN9oceanbase10rootserver23ObLSRecoveryStatHandler21get_latest_palf_stat_ERNS_4palf8PalfStatE -_ZN9oceanbase4palf14PalfHandleImpl4statERNS0_8PalfStatE -_ZNK9oceanbase4palf12LogConfigMgr22get_arbitration_memberERNS_6common8ObMemberE -_ZNK9oceanbase4palf12LogConfigMgr23get_global_learner_listERNS_6common15BaseLearnerListILl2000ENS2_8ObMemberEEE -_ZNK9oceanbase4palf12LogConfigMgr25get_degraded_learner_listERNS_6common15BaseLearnerListILl2000ENS2_8ObMemberEEE -_ZNK9oceanbase4palf9LogEngine18get_min_block_infoERmRNS_5share3SCNE -_ZN9oceanbase4palf8PalfStat5resetEv -_ZN9oceanbase10rootserver17ObLSServiceHelper23get_ls_replica_sync_scnEmRKNS_5share6ObLSIDERNS2_3SCNE -_ZNK9oceanbase10logservice12ObLogHandler21get_paxos_member_listERNS_6common16ObMemberListBaseILl7EEERl +_ZN9oceanbase3sql5ObSql15fill_result_setERNS0_11ObResultSetEPNS0_8ObSqlCtxENS0_13PlanCacheModeERNS0_6ObStmtE +_ZNK9oceanbase5share6schema16ObSchemaCacheKeyeqERKNS_6common13ObIKVCacheKeyE +_ZNK9oceanbase7storage15ObTableReadInfo19get_trans_col_indexEv +_ZN9oceanbase11transaction7ObTsMgr4run1Ev +_ZN9oceanbase6common13ObLinkHashMapINS0_9ObIntWarpENS_11transaction14ObTsSourceInfoENS3_19ObTsSourceInfoAllocENS0_9RefHandleELl8EE4nextEPNS0_12LinkHashNodeIS2_EE +_ZN9oceanbase6common13ObLinkHashMapINS0_9ObIntWarpENS_11transaction14ObTsSourceInfoENS3_19ObTsSourceInfoAllocENS0_9RefHandleELl8EE11try_inc_refEPNS0_12LinkHashNodeIS2_EE +_ZN9oceanbase11transaction11ObGtsSource11refresh_gtsEb +_ZN9oceanbase4palf11PalfEnvImpl20get_palf_handle_implElRNS0_20IPalfHandleImplGuardE +_ZNK9oceanbase4palf14PalfHandleImpl17check_can_be_usedEv +_ZN9oceanbase4palf11PalfEnvImpl20get_palf_handle_implElRPNS0_15IPalfHandleImplE +_ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_15IPalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE3getERKS3_RPS4_ +_ZN9oceanbase6common6DCHashINS_4palf5LSKeyELl8EE3getERKS3_RPNS0_11KeyHashNodeIS3_EE +_ZN9oceanbase6common6DCHashINS_4palf5LSKeyELl8EE6Handle10search_preEmRPNS0_8HashNodeE +_ZN9oceanbase6common6DCHashINS_4palf5LSKeyELl8EE6Handle6retireEil +_ZN9oceanbase6common6DCHashINS_4palf5LSKeyELl8EE15do_pending_taskEPNS0_7DCArrayE +_ZN9oceanbase6common6DCHashINS_4palf5LSKeyELl8EE24alloc_and_init_cur_arrayEv +_ZN9oceanbase3omt15ObResourceGroup18check_worker_countERNS0_10ObThWorkerE +_ZNK9oceanbase6common13ObIKVCacheKey5equalERKS1_Rb +_ZN9oceanbase12blocksstable20ObIEncodeBlockReaderD2Ev +_ZN9oceanbase12blocksstableL13get_offset_16EPKvl +_ZN9oceanbase3sql20ObAggregateProcessor18generate_group_rowERPNS1_8GroupRowEl +_ZN9oceanbase6common15ObLinearHashMapINS0_10ObTabletIDEPNS_7storage3mds12MdsTableBaseENS0_14ShareMemMgrTagEE16do_foreach_scan_IZNS4_13ObMdsTableMgr25for_each_in_t3m_mds_tableIZNS4_18ObTenantMdsService24for_each_mds_table_in_lsERNS3_4ObLSERKNS0_10ObFunctionIFiRNS3_8ObTabletEEEEE5$_143Lb1EEEiOT_EUlRKS2_RS6_E_NS8_14DoForeachOnBktISS_EEEEbmmRSN_RT0_ +_ZN9oceanbase6common15ObLinearHashMapINS0_10ObTabletIDEPNS_7storage3mds12MdsTableBaseENS0_14ShareMemMgrTagEE16load_access_bkt_EmRPNS8_6BucketE +_ZN9oceanbase6common14ObKVCacheStore18reuse_wash_structsEv +_ZN9oceanbase3omt13ObMultiTenant4run1Ev +_ZN9oceanbase3omt8ObTenant6timeupEv +_ZNSsC1EPKcRKSaIcE +_ZNSsC2EPKcRKSaIcE +_ZN9oceanbase3lib6Thread16get_cpu_time_incERl +_ZN9oceanbase3omt15ObResourceGroup18check_worker_countEv +_ZNK9oceanbase3omt8ObTenant14min_worker_cntEv +_ZN9oceanbase8observer17ObSrvNetworkFrame31reload_tenant_sql_thread_configEm +_ZN9oceanbase8observer11QueueThread16set_thread_countEi +_ZNK9oceanbase3omt8ObTenant14max_worker_cntEv +_ZN9oceanbase10rootserver17ObCommonLSService7do_workEv +_ZN9oceanbase6common11ObArrayImplINS_5share14ObLSStatusInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEED2Ev +_ZN9oceanbase5share18ObLSStatusOperator26get_all_ls_status_by_orderEmRNS_6common8ObIArrayINS0_14ObLSStatusInfoEEERNS2_12ObISQLClientE +_ZN9oceanbase5share20ObLSTemplateOperator9exec_readINS0_18ObLSStatusOperatorENS0_14ObLSStatusInfoEEEiRKmRKNS_6common11ObSqlStringERNS7_12ObISQLClientEPT_RNS7_8ObIArrayIT0_EE _ZN9oceanbase6common16ObCommonSqlProxy4readERNS0_12ObISQLClient10ReadResultEmPKci -_ZN9oceanbase6common16ObCommonSqlProxy4readEPNS0_9sqlclient16ObISQLConnectionERNS0_12ObISQLClient10ReadResultEmPKcPKNS0_6ObAddrE -_ZN9oceanbase8observer20ObInnerSQLConnection12execute_readEmPKcRNS_6common12ObISQLClient10ReadResultEbPKNS4_6ObAddrE -_ZN9oceanbase8observer20ObInnerSQLConnection12execute_readElmRKNS_6common8ObStringERNS2_12ObISQLClient10ReadResultEbPKNS2_6ObAddrE +_ZN9oceanbase5share11ObShareUtil23set_default_timeout_ctxERNS_6common12ObTimeoutCtxEl +_ZN9oceanbase6common19ObFixedLengthStringILl128EEC2ERKNS0_8ObStringE _ZN9oceanbase8observer24ObInnerSQLConnectionPool7acquireEmRPNS_6common9sqlclient16ObISQLConnectionEPNS2_12ObISQLClientEi +_ZNK9oceanbase6common12ObMySQLProxy14is_oracle_modeEv _ZN9oceanbase6common10EventTable8instanceEv _ZN9oceanbase8observer20ObInnerSQLConnection4initEPNS0_24ObInnerSQLConnectionPoolEPNS_5share6schema27ObMultiVersionSchemaServiceEPNS_3sql5ObSqlEPNS0_15ObVTIterCreatorEPNS_6common14ObServerConfigEPNS8_16ObSQLSessionInfoEPNSD_12ObISQLClientEPNS0_20ObRestoreSQLModifierEbbi -_ZNK9oceanbase6common12ObMySQLProxy14is_oracle_modeEv -_ZN9oceanbase3sql18ObBasicSessionInfo19update_sys_variableENS_5share17ObSysVarClassTypeERKNS_6common8ObStringE +_ZN9oceanbase3sql18ObBasicSessionInfo22update_max_packet_sizeEv +_ZN9oceanbase3sql16ObSQLSessionInfo4initEjmPNS_6common12ObIAllocatorEPKNS2_11ObTZInfoMapElm +_ZN9oceanbase6common8ObMalloc5allocEl +_ZN9oceanbase6commonL13parse_versionEPKcPml.llvm.4267705610684709941 +_ZNK9oceanbase3sql18ObBasicSessionInfo17get_int64_sys_varENS_5share17ObSysVarClassTypeERl +_ZN9oceanbase3sql18ObBasicSessionInfo4initEjmPNS_6common12ObIAllocatorEPKNS2_11ObTZInfoMapE +_ZN9oceanbase6common18ObDSSessionActions4initElRNS0_12ObIAllocatorE +_ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS_2pl16ObPLPackageStateEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE6createElPSJ_PSM_ _ZN9oceanbase8observer20ObInnerSQLConnection17init_session_infoEPNS_3sql16ObSQLSessionInfoEbbb _ZN9oceanbase3sql18ObBasicSessionInfo21init_system_variablesEbbb _ZNK9oceanbase3sql18ObBasicSessionInfo19sys_variable_existsERKNS_6common8ObStringERb @@ -2082,39 +2572,56 @@ _ZN9oceanbase6common9ObDFMUtil28parse_datetime_format_stringERKNS0_8ObStringERNS _ZN9oceanbase5share15ObSysVarFactory14create_sys_varENS0_17ObSysVarClassTypeERPNS0_13ObBasicSysVarE _ZN9oceanbase6common13ObSEArrayImplINS0_9ObDFMElemELl10ENS0_19ModulePageAllocatorELb0EE9push_backERKS2_ _ZN9oceanbase5share16IsoCurrencyUtils28get_currency_by_country_nameERKNS_6common8ObStringERS3_ +_ZN9oceanbase3sql18ObBasicSessionInfo21gen_sys_var_in_pc_strEv +_ZN9oceanbase6common19obj_print_plain_strILNS0_9ObObjTypeE5EEEiRKNS0_5ObObjEPclRlRKNS0_16ObObjPrintParamsE +_ZN9oceanbase6common19obj_print_plain_strILNS0_9ObObjTypeE10EEEiRKNS0_5ObObjEPclRlRKNS0_16ObObjPrintParamsE +_ZN9oceanbase3sql12ObSysVarInPC18serialize_sys_varsEPclRl +_ZN9oceanbase6common19obj_print_plain_strILNS0_9ObObjTypeE0EEEiRKNS0_5ObObjEPclRlRKNS0_16ObObjPrintParamsE +_ZN9oceanbase6common19obj_print_plain_strILNS0_9ObObjTypeE22EEEiRKNS0_5ObObjEPclRlRKNS0_16ObObjPrintParamsE _ZN9oceanbase6common5ObObj9deep_copyERKS1_PclRl -_ZN9oceanbase6common13ObSEArrayImplINS_5share17ObSysVarClassTypeELl64ENS0_19ModulePageAllocatorELb0EE9push_backERKS3_ +_ZN9oceanbase6common13ObSEArrayImplINS0_5ObObjELl32ENS0_19ModulePageAllocatorELb0EE7reserveEl _ZN9oceanbase6common28ObConfigRuntimeFilterChecker23get_runtime_filter_typeEPKcl -_ZZN9oceanbase6common28ObConfigRuntimeFilterChecker23get_runtime_filter_typeEPKclENK4$_46clERNS0_8ObStringE.llvm.16015624524174875985 _ZN9oceanbase6common11ObObjCaster7to_typeENS0_9ObObjTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS5_RPS6_ _ZN9oceanbase6common20get_length_semanticsERKNS0_8ObStringE +_ZN9oceanbase3sql18ObBasicSessionInfo15get_pc_mem_confERNS0_14ObPCMemPctConfE +_ZZN9oceanbase6common28ObConfigRuntimeFilterChecker23get_runtime_filter_typeEPKclENK4$_46clERNS0_8ObStringE.llvm.13150166867295933230 +_ZN9oceanbase6common13ObSEArrayImplIlLl32ENS0_19ModulePageAllocatorELb0EE7reserveEl +_ZN9oceanbase3omt19ObTenantTimezoneMgr26get_tenant_timezone_staticEmRNS_6common11ObTZMapWrapE _ZN9oceanbase3sql18ObBasicSessionInfo31process_session_time_zone_valueERKNS_6common5ObObjEb -_ZN9oceanbase11transaction21tx_isolation_from_strERKNS_6common8ObStringE -_ZN9oceanbase3sql18ObBasicSessionInfo20set_default_databaseERKNS_6common8ObStringENS2_15ObCollationTypeE -_ZN9oceanbase3sql16ObSQLSessionInfo4initEjmPNS_6common12ObIAllocatorEPKNS2_11ObTZInfoMapElm -_ZN9oceanbase6common8ObMalloc5allocEl -_ZN9oceanbase6common4hash9ObHashMapImPNS_2pl16ObPLPackageStateENS1_19NoPthreadDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS5_EEEELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE6createElRKNS_3lib9ObMemAttrESP_ -_ZN9oceanbase6common4hash14cal_next_primeEl +_ZN9oceanbase6common9ObCharset27charset_type_by_name_oracleERKNS0_8ObStringE _ZN9oceanbase3sql18ObBasicSessionInfo13set_time_zoneERKNS_6common8ObStringEbb +_ZN9oceanbase3omt19ObTenantTimezoneMgr19get_tenant_timezoneEmRNS_6common11ObTZMapWrapERPNS2_21ObTimeZoneInfoManagerE +_ZN9oceanbase3omt19ObTenantTimezoneMgr25get_tenant_timezone_innerEmRNS_6common11ObTZMapWrapERPNS2_21ObTimeZoneInfoManagerE +_ZN9oceanbase6common7DRWLock11RDLockGuardD2Ev _ZN9oceanbase6common15ObTimeConverter13str_to_offsetERKNS0_8ObStringERiS5_bb _ZN9oceanbase6common15ObTimeConverter19get_datetime_digitsERPKcS3_iRNS1_12ObTimeDigitsE -_ZN9oceanbase6commonL13parse_versionEPKcPml.llvm.4711181963414282731 -_ZN9oceanbase3sql18ObBasicSessionInfo4initEjmPNS_6common12ObIAllocatorEPKNS2_11ObTZInfoMapE -_ZN9oceanbase6common13ObSEArrayImplIlLl32ENS0_19ModulePageAllocatorELb0EE7reserveEl +_ZN9oceanbase3sql18ObBasicSessionInfo25process_session_log_levelERKNS_6common5ObObjE +_ZN9oceanbase11transaction21tx_isolation_from_strERKNS_6common8ObStringE _ZN9oceanbase5share15ObSysVarFactory19create_all_sys_varsEv -_ZN9oceanbase5share11ObIntSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE _ZN9oceanbase5share15ObVarcharSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE +_ZN9oceanbase5share11ObIntSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE _ZN9oceanbase5share12ObBoolSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE _ZN9oceanbase5share15ObNumericSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE _ZN9oceanbase5share12ObEnumSysVarC2EPPKcPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSF_EPFiS7_SA_SD_SH_EPFiRNSE_12ObIAllocatorERKNS5_18ObBasicSessionInfoESD_SI_EPFiSO_SR_SD_RNSE_8ObStringEEPFNSE_9ObObjTypeEvE -_ZN9oceanbase5share15ObCharsetSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE -_ZN9oceanbase5share22ObStrictRangeIntSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE _ZN9oceanbase5share12ObSqlModeVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE +_ZN9oceanbase5share22ObStrictRangeIntSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE +_ZN9oceanbase5share15ObCharsetSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE _ZN9oceanbase5share16ObTimeZoneSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE _ZN9oceanbase5share25ObSessionSpecialIntSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE _ZN9oceanbase5share26ObSessionSpecialBoolSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiS4_S7_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSN_SQ_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE +_ZN9oceanbase3sql18ObBasicSessionInfo14reset_timezoneEv +_ZNK9oceanbase3sql18ObBasicSessionInfo16get_sys_variableENS_5share17ObSysVarClassTypeERNS_6common5ObObjE _ZN9oceanbase8observer24ObInnerSQLConnectionPool21add_to_used_conn_listEPNS0_20ObInnerSQLConnectionE -_ZN9oceanbase6common18ObDSSessionActions4initElRNS0_12ObIAllocatorE +_ZN9oceanbase3sql18ObBasicSessionInfo11init_tenantERKNS_6common8ObStringEm +_ZN9oceanbase5share17ObLabelSeResolver26deserialize_session_labelsERKNS_6common8ObStringERNS2_8ObIArrayINS0_21ObLabelSeSessionLabelEEE +_ZN9oceanbase6common16ObCommonSqlProxy4readEPNS0_9sqlclient16ObISQLConnectionERNS0_12ObISQLClient10ReadResultEmPKcPKNS0_6ObAddrE +_ZN9oceanbase8observer20ObInnerSQLConnection12execute_readEmPKcRNS_6common12ObISQLClient10ReadResultEbPKNS4_6ObAddrE +_ZN9oceanbase8observer20ObInnerSQLConnection12execute_readElmRKNS_6common8ObStringERNS2_12ObISQLClient10ReadResultEbPKNS2_6ObAddrE +_ZN9oceanbase8observer20ObInnerSQLConnection12TimeoutGuardC2ERS1_ +_ZN9oceanbase3omt19ObTenantTimezoneMgr23refresh_tenant_timezoneEm +_ZN9oceanbase3sql18ObBasicSessionInfo17set_session_stateENS0_17ObSQLSessionStateE +_ZN9oceanbase3sql18ObBasicSessionInfo20set_default_databaseERKNS_6common8ObStringENS2_15ObCollationTypeE +_ZN9oceanbase3sql18ObBasicSessionInfo18set_session_state_ENS0_17ObSQLSessionStateE _ZN9oceanbase3sql18ObBasicSessionInfo26process_session_debug_syncERKNS_6common5ObObjEbb _ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_NS_3sql17ObSessionVariableEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS7_EENS0_17ObPooledAllocatorINS1_15ObHashTableNodeIS7_EENS0_18ObWrapperAllocatorENS0_10ObNullLockEEENS1_19NoPthreadDefendModeENS1_13NormalPointerESH_Ll1EE6createElPSJ_PSH_ _ZN9oceanbase6common18ObWrapperAllocator5allocEl @@ -2123,146 +2630,112 @@ _ZN9oceanbase6common8ObLogger13need_to_printEi _ZN9oceanbase8observer20ObInnerSQLConnectionC2Ev _ZN9oceanbase3sql16ObSQLSessionInfoC1Em _ZN9oceanbase3sql16ObSQLSessionInfoC2Em +_ZN9oceanbase5share6schema19ObSchemaGetterGuard5resetEv +_ZN9oceanbase5share6schema17ObSchemaMgrHandle5resetEv +_ZN9oceanbase6common13ObSEArrayImplINS_5share6schema9SchemaObjELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv +_ZN9oceanbase6common13ObSEArrayImplINS_5share6schema15ObSchemaMgrInfoELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv _ZN9oceanbase11transaction14ObTxExecResultC1Ev -_ZN9oceanbase6common4hash9ObHashMapImPNS_2pl16ObPLPackageStateENS1_19NoPthreadDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS5_EEEELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev +_ZN9oceanbase8observer15ObSqlEndTransCbC1Ev _ZN9oceanbase3sql20ObOptimizerTraceImplC1Ev -_ZN9oceanbase3sql18ObBasicSessionInfo11init_tenantERKNS_6common8ObStringEm -_ZN9oceanbase3omt19ObTenantTimezoneMgr26get_tenant_timezone_staticEmRNS_6common11ObTZMapWrapE -_ZN9oceanbase3omt19ObTenantTimezoneMgr23refresh_tenant_timezoneEm -_ZN9oceanbase3omt19ObTenantTimezoneMgr19get_tenant_timezoneEmRNS_6common11ObTZMapWrapERPNS2_21ObTimeZoneInfoManagerE -_ZN9oceanbase3omt19ObTenantTimezoneMgr25get_tenant_timezone_innerEmRNS_6common11ObTZMapWrapERPNS2_21ObTimeZoneInfoManagerE -_ZN9oceanbase6common7DRWLock11RDLockGuardD2Ev -_ZN9oceanbase3sql18ObBasicSessionInfo17set_session_stateENS0_17ObSQLSessionStateE -_ZN9oceanbase5share17ObLabelSeResolver26deserialize_session_labelsERKNS_6common8ObStringERNS2_8ObIArrayINS0_21ObLabelSeSessionLabelEEE -_ZN9oceanbase3sql18ObBasicSessionInfo14reset_timezoneEv -_ZNK9oceanbase3sql18ObBasicSessionInfo16get_sys_variableENS_5share17ObSysVarClassTypeERNS_6common5ObObjE +_ZN9oceanbase6common4hash9ObHashMapImPNS_2pl16ObPLPackageStateENS1_19NoPthreadDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS5_EEEELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev +_ZN9oceanbase5share15ObSysVarFactoryC1El +_ZZN9oceanbase6common16ObCommonSqlProxy4readEPNS0_9sqlclient16ObISQLConnectionERNS0_12ObISQLClient10ReadResultEmPKcPKNS0_6ObAddrEENK5$_338clES9_.llvm.4413886316998863023 _ZN9oceanbase3sql18ObBasicSessionInfo37check_optimizer_features_enable_validERKNS_6common5ObObjE -_ZN9oceanbase6common9ObCharset27charset_type_by_name_oracleERKNS0_8ObStringE -_ZN9oceanbase8observer20ObInnerSQLConnection16is_local_executeElm -_ZN9oceanbase3sql18ObBasicSessionInfo25process_session_log_levelERKNS_6common5ObObjE -_ZN9oceanbase8observer15ObSqlEndTransCbC1Ev +_ZN9oceanbase6common11ObArrayImplINS_5share14ObLSStatusInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE9push_backERKS3_ +_ZN9oceanbase6common11ObArrayImplINS_5share14ObLSStatusInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE10extend_bufEl _ZN9oceanbase8observer20ObInnerSQLConnection18execute_read_innerElmRKNS_6common8ObStringERNS2_12ObISQLClient10ReadResultEbPKNS2_6ObAddrE -_ZNK9oceanbase3omt13ObMultiTenant19is_available_tenantEm -_ZN9oceanbase3omt8ObTenant8get_unitEv -_ZN9oceanbase8observer20ObInnerSQLConnection13switch_tenantEm _ZN9oceanbase8observer16ObInnerSQLResultC1ERNS_3sql16ObSQLSessionInfoE _ZN9oceanbase8observer16ObInnerSQLResultC2ERNS_3sql16ObSQLSessionInfoE -_ZN9oceanbase3sql18ObBasicSessionInfo8set_userERKNS_6common8ObStringES5_m -_ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE6_allocEl -_ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl -_ZN9oceanbase6common12ObStringBufTINS0_19ModulePageAllocatorENS0_9PageArenaIcS2_EEE12write_stringERKNS0_8ObStringEPS6_ +_ZNK9oceanbase3omt13ObMultiTenant19is_available_tenantEm +_ZN9oceanbase3omt8ObTenant17get_create_statusEv +_ZN9oceanbase3omt8ObTenant8get_unitEv _ZN9oceanbase8observer20ObInnerSQLConnection5queryERNS_6common9sqlclient11ObIExecutorERNS0_16ObInnerSQLResultEPNS0_29ObVirtualTableIteratorFactoryE -_ZNK9oceanbase8observer20ObInnerSQLTimeRecord22get_exec_end_timestampEv -_ZNK9oceanbase8observer20ObInnerSQLTimeRecord21get_receive_timestampEv -_ZNK9oceanbase8observer20ObInnerSQLTimeRecord18get_send_timestampEv -_ZNK9oceanbase8observer20ObInnerSQLTimeRecord17get_run_timestampEv +_ZNK9oceanbase8observer20ObInnerSQLTimeRecord24get_exec_start_timestampEv +_ZNK9oceanbase8observer20ObInnerSQLTimeRecord21get_enqueue_timestampEv _ZNK9oceanbase8observer20ObInnerSQLTimeRecord28get_single_process_timestampEv +_ZNK9oceanbase8observer20ObInnerSQLTimeRecord22get_exec_end_timestampEv _ZN9oceanbase8observer20ObInnerSQLConnection12TimeoutGuardD2Ev _ZN9oceanbase8observer20ObInnerSQLConnection19set_session_timeoutEll -_ZN9oceanbase3sql18ObBasicSessionInfo20set_query_start_timeEl -_ZN9oceanbase8observer20ObInnerSQLConnection11set_timeoutERl +_ZNK9oceanbase8observer20ObInnerSQLTimeRecord17get_run_timestampEv +_ZNK9oceanbase8observer20ObInnerSQLTimeRecord21get_process_timestampEv _ZN9oceanbase3sql18ObBasicSessionInfo19update_sys_variableENS_5share17ObSysVarClassTypeERKNS_6common5ObObjE _ZN9oceanbase6common9ObDFMUtil14check_semanticERKNS0_8ObIArrayINS0_9ObDFMElemEEERNS0_13ObFixedBitSetILl64EEEm -_ZN9oceanbase3sql18ObBasicSessionInfo21gen_sys_var_in_pc_strEv -_ZN9oceanbase6common19obj_print_plain_strILNS0_9ObObjTypeE5EEEiRKNS0_5ObObjEPclRlRKNS0_16ObObjPrintParamsE -_ZN9oceanbase6common19obj_print_plain_strILNS0_9ObObjTypeE10EEEiRKNS0_5ObObjEPclRlRKNS0_16ObObjPrintParamsE -_ZN9oceanbase3sql12ObSysVarInPC18serialize_sys_varsEPclRl -_ZN9oceanbase6common19obj_print_plain_strILNS0_9ObObjTypeE0EEEiRKNS0_5ObObjEPclRlRKNS0_16ObObjPrintParamsE -_ZN9oceanbase6common19obj_print_plain_strILNS0_9ObObjTypeE22EEEiRKNS0_5ObObjEPclRlRKNS0_16ObObjPrintParamsE -_ZN9oceanbase6common13ObSEArrayImplINS0_5ObObjELl32ENS0_19ModulePageAllocatorELb0EE7reserveEl _ZN9oceanbase3sql18ObBasicSessionInfo22deep_copy_sys_variableERNS_5share13ObBasicSysVarENS2_17ObSysVarClassTypeERKNS_6common5ObObjE _ZN9oceanbase6common12ob_write_objINS0_9PageArenaIcNS0_19ModulePageAllocatorEEEEEiRT_RKNS0_5ObObjERS7_ +_ZN9oceanbase8observer20ObInnerSQLConnection11set_timeoutERl _ZN9oceanbase5share19ObTenantSwitchGuardD2Ev +_ZN9oceanbase8observer20ObInnerSQLConnection8do_queryERNS_6common9sqlclient11ObIExecutorERNS0_16ObInnerSQLResultE +_ZN9oceanbase3lib4Flow6deinitEv +_ZN9oceanbase5share6schema19ObSchemaGetterGuard15get_tenant_infoEmRPKNS1_14ObTenantSchemaE +_ZN9oceanbase8observer20ObInnerSQLConnection18ObSqlQueryExecutor7executeERNS_3sql5ObSqlERNS3_8ObSqlCtxERNS3_11ObResultSetE _ZN9oceanbase5share6schema27ObMultiVersionSchemaService23get_tenant_schema_guardEmRNS1_19ObSchemaGetterGuardEllNS2_17RefreshSchemaModeE _ZN9oceanbase5share6schema27ObMultiVersionSchemaService19add_schema_mgr_infoERNS1_19ObSchemaGetterGuardEPNS1_13ObSchemaStoreERKNS1_21ObRefreshSchemaStatusEmllNS2_17RefreshSchemaModeE -_ZN9oceanbase5share6schema17ObSchemaMgrHandle5resetEv _ZN9oceanbase5share6schema16ObSchemaMgrCache3getElRPKNS1_11ObSchemaMgrERNS1_17ObSchemaMgrHandleE _ZN9oceanbase6common12TCRLockGuardC2ERKNS0_8TCRWLockE -_ZN9oceanbase5share6schema19ObSchemaGetterGuard17get_tenant_statusEmRNS1_14ObTenantStatusE -_ZNK9oceanbase5share6schema11ObSchemaMgr17get_tenant_schemaEmRPKNS1_20ObSimpleTenantSchemaE _ZN9oceanbase5share6schema27ObMultiVersionSchemaService27get_baseline_schema_versionEmbRl +_ZN9oceanbase8observer16ObInnerSQLResult4openEv +_ZN9oceanbase3sql18ObBasicSessionInfo40process_session_compatibility_mode_valueERKNS_6common5ObObjE +_ZN9oceanbase8observer20ObInnerSQLConnection13switch_tenantEm +_ZN9oceanbase3sql18ObBasicSessionInfo8set_userERKNS_6common8ObStringES5_m +_ZN9oceanbase6common12ObStringBufTINS0_19ModulePageAllocatorENS0_9PageArenaIcS2_EEE12write_stringERKNS0_8ObStringEPS6_ +_ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE6_allocEl +_ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl +_ZN9oceanbase3sql18ObBasicSessionInfo13switch_tenantEm +_ZN9oceanbase5share6schema19ObSchemaGetterGuard17get_tenant_statusEmRNS1_14ObTenantStatusE _ZN9oceanbase8observer20ObInnerSQLConnection14process_recordERNS_3sql11ObResultSetERNS2_8ObSqlCtxERNS2_16ObSQLSessionInfoERNS0_13ObITimeRecordEillRNS_6common15ObWaitEventDescERNSB_15ObWaitEventStatERNS2_12ObExecRecordERNS2_15ObExecTimestampEbRKNSB_8ObStringEb -_ZN9oceanbase8observer20ObInnerSQLConnection20process_audit_recordERNS_3sql11ObResultSetERNS2_8ObSqlCtxERNS2_16ObSQLSessionInfoEillbRKNS_6common8ObStringEb _ZNK9oceanbase3sql8ObDASCtx22get_related_tablet_cntEv -_ZN9oceanbase8observer20ObInnerSQLConnection8do_queryERNS_6common9sqlclient11ObIExecutorERNS0_16ObInnerSQLResultE -_ZN9oceanbase8observer20ObInnerSQLConnection18ObSqlQueryExecutor7executeERNS_3sql5ObSqlERNS3_8ObSqlCtxERNS3_11ObResultSetE -_ZN9oceanbase3sql18ObBasicSessionInfo18store_query_stringERKNS_6common8ObStringE -_ZN9oceanbase3sql18ObBasicSessionInfo40process_session_compatibility_mode_valueERKNS_6common5ObObjE -_ZN9oceanbase3sql18ObBasicSessionInfo30process_session_sql_mode_valueERKNS_6common5ObObjE -_ZN9oceanbase8observer16ObInnerSQLResult4openEv -_ZN9oceanbase3sql18ObBasicSessionInfo19store_query_string_ERKNS_6common8ObStringE +_ZNK9oceanbase8observer20ObInnerSQLTimeRecord18get_send_timestampEv +_ZN9oceanbase8observer20ObInnerSQLConnection20process_audit_recordERNS_3sql11ObResultSetERNS2_8ObSqlCtxERNS2_16ObSQLSessionInfoEillbRKNS_6common8ObStringEb _ZN9oceanbase8observer16ObInnerSQLResult4initEb _ZN9oceanbase3lib17__MemoryContext__14create_contextIJRNS0_12ContextParamEPNS0_10StaticInfoEEEEiRNS0_13MemoryContextERKNS0_11DynamicInfoEDpOT_ -_ZN9oceanbase3omt8ObTenant17get_create_statusEv -_ZN9oceanbase3sql18ObBasicSessionInfo13switch_tenantEm _ZN9oceanbase5share12ObUnitConfigC1ERKS1_ -_ZNK9oceanbase5share3SCN14get_val_for_txEb -_ZN9oceanbase6common12ObLatchMutex4waitElj -_ZN9oceanbase6common14ObKVCacheStore18reuse_wash_structsEv +_ZNK9oceanbase5share6schema19ObSchemaGetterGuard16check_inner_statEv +_ZN9oceanbase3sql11ObResultSet12get_next_rowERPKNS_6common8ObNewRowE +_ZN9oceanbase5share6schema19ObSchemaGetterGuard10get_schemaINS1_14ObTenantSchemaEEEiNS1_12ObSchemaTypeEmmRPKT_l +_ZNK9oceanbase5share6schema11ObSchemaMgr17get_tenant_schemaEmRPKNS1_20ObSimpleTenantSchemaE +_ZN9oceanbase5share6schema16is_normal_schemaENS1_12ObSchemaTypeE +_ZN9oceanbase5share6schema19ObSchemaGetterGuard20get_from_local_cacheINS1_14ObTenantSchemaEEEiNS1_12ObSchemaTypeEmmRPKT_ +_ZNK9oceanbase5share6schema14ObTenantSchema16get_convert_sizeEv +_ZNK9oceanbase5share24SchemaZoneReplicaAttrSet16get_convert_sizeEv +_ZZN9oceanbase5share6schema19ObSchemaGetterGuard20get_from_local_cacheINS1_14ObTenantSchemaEEEiNS1_12ObSchemaTypeEmmRPKT_ENKUlPKcE1_clESB_ +_ZN9oceanbase3sql18ObBasicSessionInfo30process_session_sql_mode_valueERKNS_6common5ObObjE +_ZN9oceanbase3sql18ObBasicSessionInfo18store_query_stringERKNS_6common8ObStringE +_ZN9oceanbase3sql18ObBasicSessionInfo19store_query_string_ERKNS_6common8ObStringE +_ZN9oceanbase5share18ObLSStatusOperator9fill_cellEPNS_6common9sqlclient13ObMySQLResultERNS0_14ObLSStatusInfoE +_ZN9oceanbase5share16str_to_ls_statusERKNS_6common8ObStringE +_ZN9oceanbase3sql16ObSQLSessionInfo36refresh_temp_tables_sess_active_timeEv +_ZN9oceanbase10rootserver17ObCommonLSService25try_modify_ls_unit_group_ERKNS_5share6schema14ObTenantSchemaE +_ZN9oceanbase10rootserver20ObTenantThreadHelper22check_can_do_recovery_Em +_ZNSs12_S_constructIPKcEEPcT_S3_RKSaIcESt20forward_iterator_tag +_ZN9oceanbase8memtable13ObLockWaitMgr4run1Ev +_ZN9oceanbase6common10FixedHash2INS_3rpc14ObLockWaitNodeEE10quick_nextEPS3_ +_ZN9oceanbase8observer24ObTableLoadClientService19get_all_client_taskERNS_6common8ObIArrayIPNS0_21ObTableLoadClientTaskEEE +_ZN9oceanbase6common8ObMalloc4freeEPv +_ZN9oceanbase12blocksstable17ObDecoderCtxArrayD2Ev +_ZN9oceanbase5share17ObTenantDagWorker4run1Ev +_ZNK9oceanbase3lib10TGRunnable12has_set_stopEv +_ZN9oceanbase6common12ObThreadCond7wait_usEm +ob_pthread_cond_timedwait +ob_pthread_cond_wait +_ZN9oceanbase6common15ObPriorityQueueILi1EE3popERPNS0_6ObLinkEl +_ZN9oceanbase6common12ObBucketLock12try_lock_allEb +_ZN9oceanbase12blocksstable19ObIntArrayFuncTable2atIhEElPKvl _ZN9oceanbase6common14ObKVCacheStore24compute_tenant_wash_sizeEv _ZN9oceanbase6common16ObKVCacheInstMap14get_cache_infoEmRNS0_8ObIArrayINS0_19ObKVCacheInstHandleEEE _ZN9oceanbase6common14ObFixedHashMapImPNS0_14ObKVCacheStore14TenantWashInfoENS0_4hash9hash_funcImEEE3getEmRS4_ -_ZNK9oceanbase6common22ObTenantMemLimitGetter20get_tenant_mem_limitEmRlS2_ +_ZN9oceanbase6common14ObFixedHashMapImPNS0_14ObKVCacheStore14TenantWashInfoENS0_4hash9hash_funcImEEE3setERKmRKS4_ +_ZN9oceanbase6common10ObFreeHeapINS0_14ObKVCacheStore14TenantWashInfoEE4sbrkElRPS3_ _ZN9oceanbase6common16ObFixedArrayImplINS0_19ObKVCacheInstHandleENS0_16ObArenaAllocatorEE9push_backERKS2_ -_ZN9oceanbase3omt13ObMultiTenant4run1Ev -_ZN9oceanbase3omt8ObTenant6timeupEv -_ZNSsC1EPKcRKSaIcE -_ZNSsC2EPKcRKSaIcE -_ZN9oceanbase3lib6Thread16get_cpu_time_incERl -_ZdlPv -_ZN9oceanbase3omt15ObResourceGroup18check_worker_countEv -_ZNK9oceanbase3omt8ObTenant14min_worker_cntEv -_ZN9oceanbase8observer17ObSrvNetworkFrame31reload_tenant_sql_thread_configEm -_ZN9oceanbase5share19ObTenantSwitchGuard7releaseEv -_ZN9oceanbase8observer11QueueThread16set_thread_countEi -_ZN9oceanbase3sql20ObAggregateProcessor18generate_group_rowERPNS1_8GroupRowEl -_ZN9oceanbase6common11ObDLinkBaseINS_5share17ObLSReplicaFilterEED2Ev -_ZN9oceanbase8memtable13ObLockWaitMgr4run1Ev -_ZN9oceanbase6common10FixedHash2INS_3rpc14ObLockWaitNodeEE10quick_nextEPS3_ -_ZN9oceanbase4palf11LogIOWorker9run_loop_Ev -_ZN9oceanbase4palf18LogWritingThrottle52check_need_update_throtting_options_guarded_by_lock_Ev -_ZN9oceanbase4palf14PalfHandleImpl17advance_reuse_lsnERKNS0_3LSNE -_ZN9oceanbase4palf14PalfHandleImpl16inner_append_logERKNS_6common12ObFixedArrayINS0_3LSNENS2_12ObIAllocatorEEERKNS3_IPNS0_11LogWriteBufES5_EERKNS3_INS_5share3SCNES5_EE -_ZZN9oceanbase4palf11PalfEnvImpl20get_palf_handle_implElRNS0_20IPalfHandleImplGuardEENK5$_792clEPKc.llvm.456594663833244305 -_ZZN9oceanbase4palf16LogSlidingWindow17advance_reuse_lsnERKNS0_3LSNEENK5$_485clEPKc.llvm.456594663833244305 -_ZN9oceanbase6common16ObFixedArrayImplIPNS_4palf17LogIOFlushLogTaskENS0_12ObIAllocatorEE9push_backERKS4_ -_ZN9oceanbase6common16ObFixedArrayImplINS_5share3SCNENS0_12ObIAllocatorEE9push_backERKS3_ -_ZN9oceanbase6common16ObFixedArrayImplINS_4palf3LSNENS0_12ObIAllocatorEE9push_backERKS3_ -_ZZN9oceanbase4palf11LogIOWorker25BatchLogIOFlushLogTaskMgr26find_usable_batch_io_task_ElRPNS0_22BatchLogIOFlushLogTaskEENK5$_987clEPKc -_ZN9oceanbase4palf10LogStorage6writevERKNS_6common12ObFixedArrayINS0_3LSNENS2_12ObIAllocatorEEERKNS3_IPNS0_11LogWriteBufES5_EERKNS3_INS_5share3SCNES5_EE -_ZN9oceanbase4palf10LogStorage6writevERKNS0_3LSNERKNS0_11LogWriteBufERKNS_5share3SCNE -_ZZN9oceanbase4palf14PalfHandleImpl17advance_reuse_lsnERKNS0_3LSNEENK6$_1377clEPKc.llvm.456594663833244305 -_ZN9oceanbase4palf29push_task_into_cb_thread_poolElPNS0_9LogIOTaskE -_ZZN9oceanbase4palf11LogBlockMgr6writevEmmRKNS0_11LogWriteBufEENK5$_115clEPKc -_ZN9oceanbase4palf11LogBlockMgr6writevEmmRKNS0_11LogWriteBufE -_ZN9oceanbase4palf15LogBlockHandler17inner_write_once_EmPKcl -_ZN9oceanbase4palf16LogDIOAlignedBuf12truncate_bufEv -_ZN9oceanbase4palf16LogDIOAlignedBuf9align_bufEPKclRPcRlRm -_ZN9oceanbase6common17ObSessionDIBuffer13switch_tenantEm -_ZZN9oceanbase4palf16LogDIOAlignedBuf12truncate_bufEvENK4$_60clEPKc -_ZZN9oceanbase4palf11LogWriteBuf5mergeERKS1_RbENK5$_679clEPKc -_ZN9oceanbase6common16ObFixedArrayImplIPNS_4palf11LogWriteBufENS0_12ObIAllocatorEE9push_backERKS4_ -_ZZN9oceanbase4palf15LogBlockHandler6writevEmRKNS0_11LogWriteBufEENK4$_79clEPKc -_ZZN9oceanbase4palf10LogStorage6writevERKNS_6common12ObFixedArrayINS0_3LSNENS2_12ObIAllocatorEEERKNS3_IPNS0_11LogWriteBufES5_EERKNS3_INS_5share3SCNES5_EEENK5$_587clEPKc -_ZZN9oceanbase4palf10LogStorage6writevERKNS0_3LSNERKNS0_11LogWriteBufERKNS_5share3SCNEENK5$_580clEPKc -_ZZN9oceanbase4palf14LogGroupBuffer20inc_update_reuse_lsnERKNS0_3LSNEENK5$_771clEPKc.llvm.12216593503935591459 -_ZN9oceanbase3sql17ObSqlTransControl18implicit_end_transERNS0_13ObExecContextEbPNS0_23ObEndTransAsyncCallbackEb -_ZN9oceanbase3lib17ObTenantMemoryMgr11alloc_chunkElRKNS0_9ObMemAttrE -_ZN9oceanbase3lib17ObTenantMemoryMgr12alloc_chunk_ElRKNS0_9ObMemAttrE -_ZN9oceanbase3lib10AChunkList3popEv -_ZN9oceanbase3lib9AChunkMgr11update_holdElb -_ZN9oceanbase3lib9AChunkMgr12direct_allocEmbRbb -mmap -mmap64 -ob_mmap_hook -_ZN9oceanbase3omt15ObResourceGroup18check_worker_countERNS0_10ObThWorkerE -_ZN9oceanbase6common15ObLinearHashMapINS0_10ObTabletIDEPNS_7storage3mds12MdsTableBaseENS0_14ShareMemMgrTagEE16do_foreach_scan_IZNS4_13ObMdsTableMgr25for_each_in_t3m_mds_tableIZNS4_18ObTenantMdsService24for_each_mds_table_in_lsERNS3_4ObLSERKNS0_10ObFunctionIFiRNS3_8ObTabletEEEEE5$_143Lb1EEEiOT_EUlRKS2_RS6_E_NS8_14DoForeachOnBktISS_EEEEbmmRSN_RT0_ -_ZN9oceanbase6common15ObLinearHashMapINS0_10ObTabletIDEPNS_7storage3mds12MdsTableBaseENS0_14ShareMemMgrTagEE16load_access_bkt_EmRPNS8_6BucketE -_ZZN9oceanbase7storage3mds13ObMdsTableMgr25for_each_in_t3m_mds_tableIZNS1_18ObTenantMdsService24for_each_mds_table_in_lsERNS0_4ObLSERKNS_6common10ObFunctionIFiRNS0_8ObTabletEEEEE5$_143Lb1EEEiOT_ENKUlRKNS7_10ObTabletIDERPNS1_12MdsTableBaseEE_clESK_SN_ -_ZNSs4_Rep9_S_createEmmRKSaIcE -_ZNSt17_Function_handlerIFiPN9oceanbase3lib17ObTenantMemoryMgrEEZNS1_17ObMallocAllocator15get_tenant_holdEmE4$_55E9_M_invokeERKSt9_Any_dataOS3_.llvm.15324576766021379907 +_ZN9oceanbase3lib15get_memory_usedEv +_ZNK9oceanbase6common22ObTenantMemLimitGetter20get_tenant_mem_limitEmRlS2_ +_ZNK9oceanbase6common22ObVirtualTenantManager20get_tenant_mem_limitEmRlS2_ +_ZNK9oceanbase7storage12ObTenantInfo13get_mem_limitERlS2_ +_ZN9oceanbase7storage21ObTenantTabletStatMgr13process_statsEv +_ZN9oceanbase7storage12ObTabletStatpLERKS1_ +_ZN9oceanbase6common4hash11ObHashTableINS_7storage15ObTabletStatKeyENS1_11HashMapPairIS4_PNS3_18ObTabletStreamNodeEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS8_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS8_EELi97ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKS4_RS8_l +_ZN9oceanbase6common12ObBucketLock6wrlockEml +_ZN9oceanbase6common18ObBucketWLockGuardD2Ev _ZN9oceanbase10logservice20ObArbitrationService4run1Ev -_ZN9oceanbase6common10ObFunctionIFiRKNS_4palf10PalfHandleEEED2Ev _ZN9oceanbase6common15ObLinearHashMapINS_4palf5LSKeyENS0_9ObSEArrayINS_10logservice15LogMemberStatusELl7ENS0_19ModulePageAllocatorELb0EEENS0_14ShareMemMgrTagEE11do_foreach_INS5_20ObArbitrationService16DoDegradeFunctorENSA_14DoForeachOnBktISD_EEEEbRT_RT0_ _ZN9oceanbase6common15ObLinearHashMapINS_4palf5LSKeyENS0_9ObSEArrayINS_10logservice15LogMemberStatusELl7ENS0_19ModulePageAllocatorELb0EEENS0_14ShareMemMgrTagEE18set_foreach_L_lmt_Ev _ZN9oceanbase6common15ObLinearHashMapINS_4palf5LSKeyENS0_9ObSEArrayINS_10logservice15LogMemberStatusELl7ENS0_19ModulePageAllocatorELb0EEENS0_14ShareMemMgrTagEE16do_foreach_scan_INS5_20ObArbitrationService16DoDegradeFunctorENSA_14DoForeachOnBktISD_EEEEbmmRT_RT0_ @@ -2271,322 +2744,400 @@ _ZN9oceanbase10logservice20ObArbitrationService16DoUpgradeFunctorD2Ev _ZN9oceanbase4palf11PalfEnvImpl8for_eachERKNS_6common10ObFunctionIFiRKNS0_10PalfHandleEEEE _ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_15IPalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE4nextEPNS0_12LinkHashNodeIS3_EE _ZNK9oceanbase4palf14PalfHandleImpl11get_palf_idERl +_ZN9oceanbase10logservice20ObArbitrationService16DoDegradeFunctorD2Ev _ZNK9oceanbase6common10ObFunctionIFiRKNS_4palf10PalfHandleEEE7DerivedIZNS_10logservice20ObArbitrationService21get_server_sync_info_EvE5$_718E6invokeES5_$29689d532dee077abb46fa33517273d3 _ZN9oceanbase6common15ObLinearHashMapINS_4palf5LSKeyENS0_9ObSEArrayINS_10logservice15LogMemberStatusELl7ENS0_19ModulePageAllocatorELb0EEENS0_14ShareMemMgrTagEE7do_get_ERKS3_RS8_ _ZN9oceanbase6common15ObLinearHashMapINS_4palf5LSKeyENS0_9ObSEArrayINS_10logservice15LogMemberStatusELl7ENS0_19ModulePageAllocatorELb0EEENS0_14ShareMemMgrTagEE16load_access_bkt_ERKS3_RmRPNSA_6BucketE _ZN9oceanbase6common13ObExternalRef7acquireEPPv +_ZNK9oceanbase4palf14PalfHandleImpl21get_paxos_member_listERNS_6common16ObMemberListBaseILl7EEERl _ZN9oceanbase6common15ObLinearHashMapINS_4palf5LSKeyENS0_9ObSEArrayINS_10logservice15LogMemberStatusELl7ENS0_19ModulePageAllocatorELb0EEENS0_14ShareMemMgrTagEE17load_factor_ctrl_Em _ZNK9oceanbase4palf14PalfHandleImpl18get_ack_info_arrayERNS_6common9ObSEArrayINS0_16LogMemberAckInfoELl7ENS2_19ModulePageAllocatorELb0EEERNS2_15BaseLearnerListILl2000ENS2_8ObMemberEEE +_ZNK9oceanbase6common8ObMember8is_validEv _ZN9oceanbase6common15ObLinearHashMapINS_4palf5LSKeyENS0_9ObSEArrayINS_10logservice15LogMemberStatusELl7ENS0_19ModulePageAllocatorELb0EEENS0_14ShareMemMgrTagEE7shrink_Ev -_ZN9oceanbase6common8TCRWLock10RLockGuardD2Ev -_ZNK9oceanbase4palf14PalfHandleImpl21get_paxos_member_listERNS_6common16ObMemberListBaseILl7EEERl _ZNK9oceanbase4palf13LogConfigInfo29get_expected_paxos_memberlistERNS_6common16ObMemberListBaseILl7EEERl -_ZZZN9oceanbase10logservice20ObArbitrationService21get_server_sync_info_EvENK5$_718clERKNS_4palf10PalfHandleEENKUlPKcE2_clES8_ -_ZNK9oceanbase6common8ObMember8is_validEv +_ZN9oceanbase6common8TCRWLock10RLockGuardD2Ev _ZNK9oceanbase6common15ObLinearHashMapINS_4palf5LSKeyENS0_9ObSEArrayINS_10logservice15LogMemberStatusELl7ENS0_19ModulePageAllocatorELb0EEENS0_14ShareMemMgrTagEE15get_load_factorEv -_ZN9oceanbase5share17ObTenantDagWorker4run1Ev -_ZNK9oceanbase3lib10TGRunnable12has_set_stopEv -_ZN9oceanbase6common12ObThreadCond7wait_usEm -ob_pthread_cond_timedwait -_ZN9oceanbase7storage21ObTenantTabletStatMgr13process_statsEv -_ZN9oceanbase7storage12ObTabletStatpLERKS1_ -_ZN9oceanbase6common4hash11ObHashTableINS_7storage15ObTabletStatKeyENS1_11HashMapPairIS4_PNS3_18ObTabletStreamNodeEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS8_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS8_EELi97ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKS4_RS8_l -_ZN9oceanbase6common12ObBucketLock6wrlockEml -_ZN9oceanbase6common18ObBucketWLockGuardD2Ev -_ZN9oceanbase5share21ObSyslogPerErrLimiter13RefreshThread4run1Ev -_ZN9oceanbase7storage16ObTxDataMemtable21pre_process_for_mergeEv -_ZN9oceanbase5share6schema19ObSchemaGetterGuard23get_simple_table_schemaEmmRKNS_6common8ObStringEbRPKNS1_21ObSimpleTableSchemaV2Eb -_ZNK9oceanbase5share6schema11ObSchemaMgr16get_table_schemaEmmmRKNS_6common8ObStringERPKNS1_21ObSimpleTableSchemaV2E -_ZNK9oceanbase6common4hash16ObPointerHashMapINS_5share6schema24ObTableSchemaHashWrapperEPNS4_21ObSimpleTableSchemaV2ENS4_13GetTableKeyV2ELl1024ENS0_19ModulePageAllocatorEE14get_refactoredERKS5_RS7_ -_ZN9oceanbase6common9ObCharset4hashENS0_15ObCollationTypeEPKclmbPFmPKvmmE -_ZL20ob_hash_sort_utf8mb4PK13ObCharsetInfoPKhmPmS4_bPFmPKvmmE -_ZN9oceanbase5share6schema17ObSysTableChecker20check_sys_table_nameEmmRKNS_6common8ObStringERb -_ZNK9oceanbase6common4hash9ObHashMapImPNS0_9ObSEArrayINS_5share6schema17ObSysTableChecker16TableNameWrapperELl2ENS0_19ModulePageAllocatorELb0EEENS1_19NoPthreadDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImSA_EEEELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKmRSA_l -_ZNK9oceanbase5share6schema17ObSysTableChecker16TableNameWrappereqERKS3_ -_ZN9oceanbase5share6schema25ObCompareNameWithTenantID7compareERKNS_6common8ObStringES6_ -_ZL20ob_strnncoll_utf8mb4PK13ObCharsetInfoPKhmS3_mb -_ZL16ob_mb_wc_utf8mb4PK13ObCharsetInfoPmPKhS4_ -_ZZN9oceanbase5share6schema17ObSysTableChecker20check_sys_table_nameEmmRKNS_6common8ObStringERbENK6$_2197clEPKc -_ZN9oceanbase6common15ObPriorityQueueILi1EE3popERPNS0_6ObLinkEl -_ZZN9oceanbase4palf22BatchLogIOFlushLogTask9push_backEPNS0_17LogIOFlushLogTaskEENK5$_896clEPKc -_ZN9oceanbase6common4hash12ObReferedMapINS0_6ObAddrENS_10rootserver16DRServerStatInfoEED2Ev -_ZN9oceanbase3sql13ObPxTargetMgr4run1Ev -_ZN9oceanbase6common13ObLinkHashMapINS0_9ObIntWarpENS_3sql11ObPxResInfoENS3_13ObPxInfoAllocENS0_9RefHandleELl8EE4nextEPNS0_12LinkHashNodeIS2_EE -_ZN9oceanbase3sql23ObPxTenantTargetMonitor8get_roleERNS_6common6ObRoleE -_ZN9oceanbase6common12ObBucketLock12try_lock_allEb -_ZN9oceanbase6common15ObLinearHashMapINS0_10ObTabletIDEPNS_7storage3mds12MdsTableBaseENS0_14ShareMemMgrTagEE16do_foreach_scan_IZNS4_13ObMdsTableMgr30first_scan_to_get_min_rec_scn_ERNS_5share3SCNERNS0_8ObIArrayIS2_EEE4$_48NS8_14DoForeachOnBktISH_EEEEbmmRT_RT0_ -_ZN9oceanbase12blocksstableL13get_offset_16EPKvl -_ZN9oceanbase8observer21ObInnerSQLReadContext12mysql_resultEv -_ZN9oceanbase6common5occam17ObOccamThreadPool30keep_fetching_task_until_stop_Em -_ZN9oceanbase6common5occam17ObOccamThreadPool14InnerTaskQueue8pop_taskERNS0_10ObFunctionIFvvEEEl -_ZN9oceanbase3lib11ObLockGuardINS_6common12ObThreadCondEED2Ev -_ZN9oceanbase3lib11ObLockGuardINS_6common12ObThreadCondEEC2ERS3_ -pthread_mutex_lock -_ZN9oceanbase6common11ObWeakGuardINS0_10ObFunctionIFbvEEEED2Ev -_ZZN9oceanbase4palf11LogIOWorker15reduce_io_task_EPvENK5$_972clEPKc +_ZZZN9oceanbase10logservice20ObArbitrationService21get_server_sync_info_EvENK5$_718clERKNS_4palf10PalfHandleEENKUlPKcE2_clES8_ +_ZNK9oceanbase6common10ObFunctionIFiRKNS_4palf10PalfHandleEEE7DerivedIZNS_8observer20ObAllVirtualPalfStat18inner_get_next_rowERPNS0_8ObNewRowEE5$_472E6invokeES5_$bdd4f963af0244a8611210bb0306e06d +_ZN9oceanbase4palf11LogIOWorker9run_loop_Ev +_ZN9oceanbase4palf14PalfHandleImpl17advance_reuse_lsnERKNS0_3LSNE +_ZN9oceanbase4palf14PalfHandleImpl16inner_append_logERKNS_6common12ObFixedArrayINS0_3LSNENS2_12ObIAllocatorEEERKNS3_IPNS0_11LogWriteBufES5_EERKNS3_INS_5share3SCNES5_EE +_ZN9oceanbase4palf18LogWritingThrottle52check_need_update_throtting_options_guarded_by_lock_Ev +_ZZN9oceanbase4palf14PalfHandleImpl17advance_reuse_lsnERKNS0_3LSNEENK6$_1382clEPKc.llvm.1044425045905407792 +_ZN9oceanbase6common16ObFixedArrayImplINS_5share3SCNENS0_12ObIAllocatorEE9push_backERKS3_ +_ZZN9oceanbase4palf16LogSlidingWindow17advance_reuse_lsnERKNS0_3LSNEENK5$_490clEPKc.llvm.1044425045905407792 +_ZN9oceanbase4palf29push_task_into_cb_thread_poolElPNS0_9LogIOTaskE +_ZN9oceanbase4palf10LogStorage6writevERKNS_6common12ObFixedArrayINS0_3LSNENS2_12ObIAllocatorEEERKNS3_IPNS0_11LogWriteBufES5_EERKNS3_INS_5share3SCNES5_EE +_ZN9oceanbase4palf10LogStorage6writevERKNS0_3LSNERKNS0_11LogWriteBufERKNS_5share3SCNE +_ZN9oceanbase4palf11LogBlockMgr6writevEmmRKNS0_11LogWriteBufE +_ZN9oceanbase4palf15LogBlockHandler17inner_write_once_EmPKcl +_ZN9oceanbase4palf16LogDIOAlignedBuf12truncate_bufEv +_ZN9oceanbase4palf16LogDIOAlignedBuf9align_bufEPKclRPcRlRm +_ZZN9oceanbase4palf11LogBlockMgr6writevEmmRKNS0_11LogWriteBufEENK5$_115clEPKc +_ZZN9oceanbase4palf16LogDIOAlignedBuf12truncate_bufEvENK4$_60clEPKc +_ZZN9oceanbase4palf10LogStorage6writevERKNS_6common12ObFixedArrayINS0_3LSNENS2_12ObIAllocatorEEERKNS3_IPNS0_11LogWriteBufES5_EERKNS3_INS_5share3SCNES5_EEENK5$_592clEPKc +_ZZN9oceanbase4palf15LogBlockHandler6writevEmRKNS0_11LogWriteBufEENK4$_79clEPKc +_ZN9oceanbase6common16ObFixedArrayImplINS_4palf3LSNENS0_12ObIAllocatorEE9push_backERKS3_ +_ZN9oceanbase6common16ObFixedArrayImplIPNS_4palf11LogWriteBufENS0_12ObIAllocatorEE9push_backERKS4_ +_ZZN9oceanbase4palf10LogStorage6writevERKNS0_3LSNERKNS0_11LogWriteBufERKNS_5share3SCNEENK5$_585clEPKc +_ZZN9oceanbase4palf14LogGroupBuffer20inc_update_reuse_lsnERKNS0_3LSNEENK5$_771clEPKc.llvm.9524917497784007230 +_ZN9oceanbase4palf18LogWritingThrottle41update_throtting_options_guarded_by_lock_EPNS0_12IPalfEnvImplERb +_ZN9oceanbase3sql17ObSqlTransControl18implicit_end_transERNS0_13ObExecContextEbPNS0_23ObEndTransAsyncCallbackEb +_ZN9oceanbase7storage18ObTenantMetaMemMgr18gc_tables_in_queueERb +_ZN9oceanbase6common13RetireStation10RetireList6retireERNS0_10HazardListES4_lRNS0_6QClockE +_ZN9oceanbase6common4hash19ObHashTableIteratorINS_5share6ObLSIDENS1_11HashMapPairIS4_PNS1_9ObHashSetImNS1_19ReadWriteDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS5_ImNS1_11HashNullObjEEEEELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEEEENS8_IS4_EENSA_IS4_EENS1_10pair_firstISO_EENSC_INSD_ISO_EELi108ESH_SI_EENS1_24LatchReadWriteDefendModeESK_SL_Ll1EEppEv +_ZNK9oceanbase3lib20ObTenantCtxAllocator9get_limitEv +_ZN9oceanbase6common4hash19ObHashTableIteratorImNS1_11HashMapPairImNS1_11HashNullObjEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19ReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEppEv +_ZN9oceanbase6common10HazardList7move_toERS1_ +_ZNK9oceanbase6common19ObParallelAllocator5totalEv +_ZNSt14_Function_base13_Base_managerIZNK9oceanbase3lib20ObTenantCtxAllocator9get_limitEvEUlPKNS2_17ObTenantMemoryMgrEE_E10_M_managerERSt9_Any_dataRKS9_St18_Manager_operation +_ZN9oceanbase3sql15ObSubPlanScanOp7destroyEv +_ZN9oceanbase10compaction16ObLocalAllocatorINS_6common16ObArenaAllocatorEE4freeEPv +_ZZN9oceanbase4palf11LogIOWorker25BatchLogIOFlushLogTaskMgr26find_usable_batch_io_task_ElRPNS0_22BatchLogIOFlushLogTaskEENK5$_987clEPKc _ZN9oceanbase6common16ObFixedArrayImplIPNS_4palf17LogIOFlushLogTaskENS0_12ObIAllocatorEE6assignERKNS0_8ObIArrayIS4_EE -_ZNSt14_Function_base13_Base_managerIZN9oceanbase5share25get_tenant_base_with_lockEmRNS1_6common10ObLDHandleERPNS2_12ObTenantBaseERSt8functionIFiS5_EEE4$_13E10_M_managerERSt9_Any_dataRKSF_St18_Manager_operation +_ZN9oceanbase6common14ObTimerMonitor12get_instanceEv +_ZN9oceanbase6common4hash12ObReferedMapINS0_6ObAddrENS_10rootserver16DRServerStatInfoEED2Ev +_ZN9oceanbase6common4hash14cal_next_primeEl +_ZN9oceanbase5share21ObSyslogPerErrLimiter13RefreshThread4run1Ev +_ZN9oceanbase3lib7Threads12has_set_stopEv +_ZN9oceanbase7storage8ObTablet42check_tablet_status_for_read_all_committedEv +_ZNK9oceanbase7storage21ObITabletMdsInterface17get_tablet_statusERKNS_5share3SCNERNS0_31ObTabletCreateDeleteMdsUserDataEl +_ZNK9oceanbase7storage21ObITabletMdsInterface12get_snapshotINS0_31ObTabletCreateDeleteMdsUserDataEZNKS1_17get_tablet_statusERKNS_5share3SCNERS3_lEUlRKS3_E_EEiOT0_S5_ll +_ZNK9oceanbase6common10ObFunctionIFiRKNS_7storage31ObTabletCreateDeleteMdsUserDataEEE7DerivedIZNKS2_21ObITabletMdsInterface12get_snapshotIS3_ZNKS9_17get_tablet_statusERKNS_5share3SCNERS3_lEUlS5_E_EEiOT0_SC_llEUlS5_E_E6invokeES5_ +_ZNK9oceanbase7storage21ObITabletMdsInterface24get_mds_data_from_tabletINS0_31ObTabletCreateDeleteMdsUserDataEEEiRKNS_6common10ObFunctionIFiRKT_EEE +_ZN9oceanbase6common5occam16ObOccamTimeGuard5clickEt +_ZNK9oceanbase7storage8ObTablet21get_mds_table_handle_ERNS0_3mds14MdsTableHandleEb +_ZN9oceanbase7storage15ObTabletPointer13get_mds_tableERNS0_3mds14MdsTableHandleEb +_ZN9oceanbase7storage3mds17ObMdsTableHandler20get_mds_table_handleERNS1_14MdsTableHandleERKNS_6common10ObTabletIDERKNS_5share6ObLSIDEbPNS0_15ObTabletPointerE +_ZZNK9oceanbase7storage21ObITabletMdsInterface12get_snapshotINS0_31ObTabletCreateDeleteMdsUserDataEZNKS1_17get_tablet_statusERKNS_5share3SCNERS3_lEUlRKS3_E_EEiOT0_S5_llENKUlPKcE2_clESF_ +_ZZNK9oceanbase7storage21ObITabletMdsInterface12get_snapshotINS0_31ObTabletCreateDeleteMdsUserDataEZNKS1_17get_tablet_statusERKNS_5share3SCNERS3_lEUlRKS3_E_EEiOT0_S5_llENKUlPKcE18_clESF_ +_ZN9oceanbase6common16ObLightSharedPtrINS_7storage3mds12MdsTableBaseEEaSERKS5_ +_ZN9oceanbase6common16ObFixedArrayImplIPNS_4palf17LogIOFlushLogTaskENS0_12ObIAllocatorEE9push_backERKS4_ +_ZN9oceanbase8memtable13ObQueryEngine22inner_loop_find_level_EPKNS0_13ObMemtableKeyES4_lRlS5_S5_ +_ZN9oceanbase8keybtree8IteratorINS_8memtable20ObStoreRowkeyWrapperEPNS2_9ObMvccRowEE13next_on_levelElRS3_RS5_ +_ZN9oceanbase8keybtree8IteratorINS_8memtable20ObStoreRowkeyWrapperEPNS2_9ObMvccRowEE4compERS3_PS3_Ri +_ZN9oceanbase8keybtree10ScanHandleINS_8memtable20ObStoreRowkeyWrapperEPNS2_9ObMvccRowEE12scan_forwardEl +_ZNK9oceanbase8memtable20ObStoreRowkeyWrapper7compareERKS1_Ri +_ZN9oceanbase8memtable13ObQueryEngine26init_raw_iter_for_estimateERPNS1_8IteratorINS_8keybtree16BtreeRawIteratorINS0_20ObStoreRowkeyWrapperEPNS0_9ObMvccRowEEEEEPKNS0_13ObMemtableKeyESE_ +_ZN9oceanbase12blocksstable19ObIntArrayFuncTable11upper_boundIhEElPKvlll +_ZN9oceanbase7storage18ObTabletPointerMap20for_each_value_storeINS0_22ObT3mTabletMapIterator17FetchTabletItemOpEEEiRT_ +_ZN9oceanbase6common13ObSEArrayImplINS_7storage14ObTabletMapKeyELl8ENS0_19ModulePageAllocatorELb0EE9push_backERKS3_ +_ZNK9oceanbase12blocksstable22ObMicroBlockCacheValue9deep_copyEPclRPNS_6common15ObIKVCacheValueE +_ZN9oceanbase12blocksstable22ObIndexBlockDataHeader33deep_copy_transformed_index_blockERKS1_lPcRl +_ZN9oceanbase12blocksstable19ObMicroBlockDecoder22update_cached_decodersEPclPKcS4_l +_ZN9oceanbase12blocksstable19ObStringDiffDecoder14update_pointerEPKcS3_ +_ZN9oceanbase12blocksstable12ObRawDecoder14update_pointerEPKcS3_ +_ZN9oceanbase12blocksstable24ObIntegerBaseDiffDecoder14update_pointerEPKcS3_ +_ZN9oceanbase12blocksstable14ObConstDecoder14update_pointerEPKcS3_ _ZN9oceanbase5share8detector22ObLCLBatchSenderThread4run1Ev -_ZN9oceanbase6common15ObLinearHashMapINS_5share8detector20ObDependencyResourceENS3_12ObLCLMessageENS0_14ShareMemMgrTagEE18set_foreach_L_lmt_Ev -_ZN9oceanbase6common5occam26ObOccamTimeGuardDetectHungC2EjjPKcS4_S4_t _ZTWN9oceanbase6common5occam20ObThreadHungDetector15click_point_idxE +_ZN9oceanbase6common15ObLinearHashMapINS_5share8detector20ObDependencyResourceENS3_12ObLCLMessageENS0_14ShareMemMgrTagEE18set_foreach_L_lmt_Ev _ZTHN9oceanbase6common5occam20ObThreadHungDetector15click_point_idxE _ZN9oceanbase6common15ObLinearHashMapINS_5share8detector20ObDependencyResourceENS3_12ObLCLMessageENS0_14ShareMemMgrTagEE16do_foreach_scan_INS3_22ObLCLBatchSenderThread10RemoveIfOpENS7_15DoRemoveIfOnBktISA_EEEEbmmRT_RT0_ _ZN9oceanbase5share8detector22ObLCLBatchSenderThread46record_summary_info_and_logout_when_necessary_Elll -_ZN9oceanbase6common5occam20ObThreadHungDetector13ClickPointIdx7get_idxEv -_ZN9oceanbase8memtable34ObMemtableMultiVersionScanIterator18inner_get_next_rowERPKNS_12blocksstable10ObDatumRowE -_ZN9oceanbase8memtable27ObMultiVersionValueIterator25get_next_node_for_compactERPKv -_ZZN9oceanbase8memtable34ObMemtableMultiVersionScanIterator18inner_get_next_rowERPKNS_12blocksstable10ObDatumRowEENK5$_476clEPKc -_ZN9oceanbase8memtable27ObMultiVersionValueIterator23init_multi_version_iterEv -_ZN9oceanbase8memtable27ObMultiVersionValueIterator25get_next_uncommitted_nodeERPKvRNS_11transaction9ObTransIDERNS_5share3SCNERNS5_7ObTxSEQE -_ZN9oceanbase8memtable34ObMemtableMultiVersionScanIterator23iterate_uncommitted_rowERKNS_6common13ObStoreRowkeyERNS_12blocksstable10ObDatumRowE -_ZN9oceanbase8memtable25ObMultiVersionRowIterator12get_next_rowERPKNS0_13ObMemtableKeyERPNS0_27ObMultiVersionValueIteratorE -_ZN9oceanbase8memtable27ObMultiVersionValueIterator27get_next_multi_version_nodeERPKv -_ZN9oceanbase10logservice17ObRemoteLogWriter4run1Ev -_ZN9oceanbase3lib7Threads12has_set_stopEv -_ZZN9oceanbase10logservice17ObRemoteLogWriter11foreach_ls_ERKNS_5share6ObLSIDEENK5$_660clEPKc -_ZZN9oceanbase10logservice17ObRemoteLogWriter15do_thread_task_EvENK5$_654clEPKc +_ZN9oceanbase6common5occam20ObOccamFastTimeGuardD2Ev +_ZN9oceanbase6common14ObKVCacheStore13de_handle_refEPNS0_18ObKVMemBlockHandleEb +_ZN9oceanbase3lib17ObTenantMemoryMgr13free_cache_mbEPv +_ZN9oceanbase6common14ObKVCacheStore13free_mbhandleEPNS0_18ObKVMemBlockHandleEb +_ZN9oceanbase6common14ObKVCacheStore17retire_mb_handlesERNS0_10HazardListEb +_ZN9oceanbase6common15ObBlockAllocMgr11alloc_blockElRNS_3lib9ObMemAttrE +_ZN9oceanbase3sql10ObOperator11inner_closeEv +_ZN9oceanbase5obrpc18ObRpcProcessorBase15before_responseEi +_ZZN9oceanbase4palf11LogIOWorker15reduce_io_task_EPvENK5$_972clEPKc +_ZN9oceanbase6common15ObLinearHashMapINS0_10ObTabletIDEPNS_7storage3mds12MdsTableBaseENS0_14ShareMemMgrTagEE16do_foreach_scan_IZNS4_13ObMdsTableMgr30first_scan_to_get_min_rec_scn_ERNS_5share3SCNERNS0_8ObIArrayIS2_EEE4$_48NS8_14DoForeachOnBktISH_EEEEbmmRT_RT0_ _ZN9oceanbase10logservice17ObRemoteLogWriter15do_thread_task_Ev _ZN9oceanbase7storage12ObLSIterator8get_nextERPNS0_4ObLSE _ZN9oceanbase6common11ObArrayImplIPNS_7storage4ObLSENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEE9push_backERKS4_ _ZN9oceanbase6common11ObArrayImplIPNS_7storage4ObLSENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEE10extend_bufEl -_ZNK9oceanbase8observer22ObGlobalReqTimeService25get_global_safe_timestampERl -_ZN9oceanbase3lib12SubObjectMgr10free_blockEPNS0_6ABlockE -_ZN9oceanbase3lib8BlockSet11alloc_blockEmRKNS0_9ObMemAttrE _ZN9oceanbase6common12ObBucketLock10unlock_allEv +_ZN9oceanbase3lib12SubObjectMgr11alloc_blockEmRKNS0_9ObMemAttrE +_ZN9oceanbase6common12ObLatchMutex4waitElj +_ZN9oceanbase12blocksstable14ObBlockManager7dec_refERKNS0_12MacroBlockIdE +_ZN9oceanbase6common15ObLinearHashMapINS_12blocksstable12MacroBlockIdENS2_14ObBlockManager9BlockInfoENS0_14ShareMemMgrTagEE20do_insert_or_update_ERKS3_RKS5_ +_ZN9oceanbase10compaction28ObCompactionScheduleIterator15get_next_tabletERNS_7storage14ObTabletHandleE +_ZN9oceanbase7storage13ObTabletIDSet7foreachINS0_17ObLSTabletService22GetAllTabletIDOperatorEEEiRT_ +_ZN9oceanbase7storage17ObLSTabletService22GetAllTabletIDOperatorclERKNS_6common10ObTabletIDE +_ZN9oceanbase7storage17ObLSTabletService10get_tabletERKNS_6common10ObTabletIDERNS0_14ObTabletHandleElNS0_18ObMDSGetTabletModeE +_ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl2000ENS0_19ModulePageAllocatorELb0EE9push_backERKS2_ +_ZN9oceanbase6common4hash11ObHashTableINS0_10ObTabletIDENS1_11HashMapPairIS3_NS1_11HashNullObjEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS6_EELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE5beginEv +_ZN9oceanbase5share6schema19ObSchemaGetterGuard23get_simple_table_schemaEmmRKNS_6common8ObStringEbRPKNS1_21ObSimpleTableSchemaV2Eb +_ZNK9oceanbase5share6schema11ObSchemaMgr16get_table_schemaEmmmRKNS_6common8ObStringERPKNS1_21ObSimpleTableSchemaV2E +_ZNK9oceanbase6common4hash16ObPointerHashMapINS_5share6schema24ObTableSchemaHashWrapperEPNS4_21ObSimpleTableSchemaV2ENS4_13GetTableKeyV2ELl1024ENS0_19ModulePageAllocatorEE14get_refactoredERKS5_RS7_ +_ZN9oceanbase5share6schema17ObSysTableChecker17is_sys_table_nameEmmRKNS_6common8ObStringERb +_ZN9oceanbase5share6schema25ObCompareNameWithTenantID7compareERKNS_6common8ObStringES6_ +_ZL20ob_strnncoll_utf8mb4PK13ObCharsetInfoPKhmS3_mb +_ZL16ob_mb_wc_utf8mb4PK13ObCharsetInfoPmPKhS4_ +_ZN9oceanbase5share6schema17ObSysTableChecker20check_sys_table_nameEmmRKNS_6common8ObStringERb +_ZNK9oceanbase6common4hash9ObHashMapImPNS0_9ObSEArrayINS_5share6schema17ObSysTableChecker16TableNameWrapperELl2ENS0_19ModulePageAllocatorELb0EEENS1_19NoPthreadDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImSA_EEEELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKmRSA_l +_ZNK9oceanbase5share6schema17ObSysTableChecker16TableNameWrappereqERKS3_ +_ZN9oceanbase6common9ObCharset17is_argument_validENS0_15ObCollationTypeEPKclS4_l +_ZZN9oceanbase4palf22BatchLogIOFlushLogTask9push_backEPNS0_17LogIOFlushLogTaskEENK5$_896clEPKc +_ZNK9oceanbase12blocksstable12ObRLEDecoder6decodeERKNS0_18ObColumnDecoderCtxERNS_6common7ObDatumElRKNS0_11ObBitStreamEPKcl +_ZN9oceanbase6common13ObTimeUtility23current_monotonic_time_Ev +_Z12ob_free_hookPvPKv +_ZNSs4_Rep9_S_createEmmRKSaIcE +_ZN9oceanbase4palf26ElectionAcceptResponseMsgP7processEv +_ZN9oceanbase6common15ObLinearHashMapINS_10logservice18ServerProbeService11ServerLSKeyENS3_10LSProbeCtxENS0_14ShareMemMgrTagEE16do_foreach_scan_IZNS3_15run_probe_once_EvE5$_790NS7_14DoForeachOnBktIS9_EEEEbmmRT_RT0_ +_ZN9oceanbase6common15ObLinearHashMapINS_10logservice18ServerProbeService11ServerLSKeyENS3_10LSProbeCtxENS0_14ShareMemMgrTagEE16load_access_bkt_EmRPNS7_6BucketE +_ZZN9oceanbase4palf11LogIOWorker25BatchLogIOFlushLogTaskMgr6handleElPNS0_12IPalfEnvImplEENK5$_984clEPKc +_ZNK9oceanbase3sql23ObBasicNestedLoopJoinOp23get_operator_open_orderEv +_ZN9oceanbase6common11ObRefHolderINS0_11ObIORequestEED2Ev _ZN9oceanbase6common11ObQSyncLock8rdunlockEv -_ZN9oceanbase10compaction22ObPartitionMinorMerger15merge_partitionERNS0_21ObBasicTabletMergeCtxEl -_ZNK9oceanbase7storage18ObSimpleRowsMergerINS_10compaction29ObPartitionMergeLoserTreeItemENS2_28ObPartitionMergeLoserTreeCmpEE5emptyEv -_ZNK9oceanbase7storage18ObSimpleRowsMergerINS_10compaction29ObPartitionMergeLoserTreeItemENS2_28ObPartitionMergeLoserTreeCmpEE18is_unique_championEv -_ZN9oceanbase7storage18ObSimpleRowsMergerINS_10compaction29ObPartitionMergeLoserTreeItemENS2_28ObPartitionMergeLoserTreeCmpEE7rebuildEv -_ZN9oceanbase10compaction22ObPartitionMergeHelper19rebuild_rows_mergerEv -_ZN9oceanbase10compaction22ObPartitionMergeHelper25find_rowkey_minimum_itersERNS_6common9ObSEArrayIPNS0_20ObPartitionMergeIterELl16ENS2_19ModulePageAllocatorELb0EEE -_ZN9oceanbase7storage18ObSimpleRowsMergerINS_10compaction29ObPartitionMergeLoserTreeItemENS2_28ObPartitionMergeLoserTreeCmpEE8push_topERKS3_ -_ZN9oceanbase7storage18ObSimpleRowsMergerINS_10compaction29ObPartitionMergeLoserTreeItemENS2_28ObPartitionMergeLoserTreeCmpEE3popEv -_ZN9oceanbase7storage18ObSimpleRowsMergerINS_10compaction29ObPartitionMergeLoserTreeItemENS2_28ObPartitionMergeLoserTreeCmpEE3topERPKS3_ -_ZN9oceanbase10compaction22ObPartitionMinorMerger23merge_same_rowkey_itersERNS_6common9ObSEArrayIPNS0_20ObPartitionMergeIterELl16ENS2_19ModulePageAllocatorELb0EEE -_ZN9oceanbase10compaction22ObPartitionMinorMerger13inner_processERKNS_12blocksstable10ObDatumRowE -_ZN9oceanbase12blocksstable18ObMacroBlockWriter10append_rowERKNS0_10ObDatumRowEPKNS0_16ObMacroBlockDescE -_ZNK9oceanbase12blocksstable18ObMacroBlockWriter17is_keep_freespaceEv -_ZNK9oceanbase12blocksstable18ObMicroBlockWriter13get_row_countEv -_ZNK9oceanbase12blocksstable18ObMicroBlockWriter14get_block_sizeEv -_ZN9oceanbase12blocksstable18ObMacroBlockWriter28try_active_flush_macro_blockEv -_ZN9oceanbase12blocksstable18ObMacroBlockWriter10append_rowERKNS0_10ObDatumRowEl -_ZN9oceanbase12blocksstable18ObMacroBlockWriter24update_micro_commit_infoERKNS0_10ObDatumRowE -_ZN9oceanbase12blocksstable18ObMacroBlockWriter13save_last_keyERKNS0_10ObDatumRowE -_ZN9oceanbase10compaction12ObLocalArena5allocEl -_ZN9oceanbase12blocksstable18ObMacroBlockWriter13save_last_keyERKNS0_13ObDatumRowkeyE -_ZNK9oceanbase12blocksstable28ObMicroBlockAdaptiveSplitter16check_need_splitEllllbRb -_ZN9oceanbase12blocksstable18ObMacroBlockWriter25append_row_and_hash_indexERKNS0_10ObDatumRowE -_ZN9oceanbase12blocksstable18ObMicroBlockWriter10append_rowERKNS0_10ObDatumRowE -_ZN9oceanbase12blocksstable26ObMicroBlockChecksumHelper16cal_row_checksumINS0_14ObStorageDatumEEEiPKT_l -_ZN9oceanbase12blocksstable11ObRowWriter5writeElRKNS0_10ObDatumRowEPclRl -_ZN9oceanbase12blocksstable11ObRowWriter17inner_write_cellsINS0_14ObStorageDatumEEEiPKT_l -_ZN9oceanbase12blocksstable19ObMicroBufferWriter12ensure_spaceEl -_ZN9oceanbase10compaction8ObMerger30get_base_iter_curr_macro_blockERPKNS_12blocksstable16ObMacroBlockDescE -_ZN9oceanbase10compaction28ObPartitionMinorRowMergeIter4nextEv -_ZN9oceanbase7storage18ObSimpleRowsMergerINS_10compaction29ObPartitionMergeLoserTreeItemENS2_28ObPartitionMergeLoserTreeCmpEE4pushERKS3_ -_ZN9oceanbase12blocksstable19ObMicroBufferWriter5writeIiEEiRKT_ -_ZN9oceanbase12blocksstable18ObMacroBlockWriter17build_micro_blockEv -_ZN9oceanbase12blocksstable24ObMicroBlockBufferHelper28compress_encrypt_micro_blockERNS0_16ObMicroBlockDescEll -_ZNK9oceanbase12blocksstable18ObMicroBlockWriter17get_original_sizeEv -_ZN9oceanbase6common15ObLZ4Compressor10decompressEPKclPclRl -LZ4_decompress_safe -_ZN9oceanbase6common15ObLZ4Compressor8compressEPKclPclRl -_ZN9oceanbase12blocksstable18ObMacroBlockWriter17write_micro_blockERNS0_16ObMicroBlockDescE -_ZN9oceanbase6common25ObDataBlockCachePreWarmer14reserve_kvpairERKNS_12blocksstable16ObMicroBlockDescEl -_ZN9oceanbase12blocksstable23ObDataIndexBlockBuilder10append_rowERKNS0_16ObMicroBlockDescERKNS0_12ObMacroBlockE -_ZN9oceanbase12blocksstable23ObDataIndexBlockBuilder25cal_macro_meta_block_sizeERKNS0_13ObDatumRowkeyERl -_ZN9oceanbase12blocksstable20ObDataMacroBlockMetaD1Ev -_ZNK9oceanbase12blocksstable20ObDataMacroBlockMeta18build_estimate_rowERNS0_10ObDatumRowERNS_6common12ObIAllocatorE -_ZN9oceanbase12blocksstable12ObMacroBlock17write_micro_blockERKNS0_16ObMicroBlockDescERl -_ZN9oceanbase10compaction8ObMerger13prepare_mergeERNS0_21ObBasicTabletMergeCtxEl -_ZN9oceanbase5share17ObTenantDagWorker5yieldEv -_ZN9oceanbase12blocksstable23ObBaseIndexBlockBuilder10append_rowERKNS0_19ObIndexBlockRowDescE -_ZN9oceanbase12blocksstable22ObIndexBlockRowBuilder22append_header_and_metaERKNS0_19ObIndexBlockRowDescERKl -_ZN9oceanbase12blocksstable22ObIndexBlockRowBuilder10set_rowkeyERKNS0_19ObIndexBlockRowDescE +_ZN9oceanbase3sql20ObLocalIndexLookupOp23get_lookup_storage_iterEv +_ZN9oceanbase12blocksstable33ObAsyncSingleMicroBlockIOCallback8get_dataEv +_ZNK9oceanbase5share16ObReplicaAttrSet31get_readonly_replica_attr_arrayEv +_ZNK9oceanbase5share16ObReplicaAttrSet41get_encryption_logonly_replica_attr_arrayEv _ZN9oceanbase8observer21ObInnerSQLReadContextD2Ev -_ZN9oceanbase8observer20ObInnerSQLConnection5unrefEv -_ZN9oceanbase8observer16ObInnerSQLResultD2Ev -_ZN9oceanbase8observer16ObInnerSQLResult5closeEv -_ZN9oceanbase5share11ObTenantEnv10set_tenantEPNS0_12ObTenantBaseE -_ZN9oceanbase5share12ObTenantBaseaSERKS1_ -_ZN9oceanbase6common4hash9ObHashMapINS_5share17ThreadDynamicNodeEdNS1_24LatchReadWriteDefendModeENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS4_dEEEELi81ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev -_ZN9oceanbase6common4hash9ObHashSetIlNS1_19ReadWriteDefendModeENS1_9hash_funcIlEENS1_8equal_toIlEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIlNS1_11HashNullObjEEEEELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev -_ZN9oceanbase5share12ObTenantBaseC1Emb -_ZN9oceanbase5share12ObTenantBaseC2Emb _ZN9oceanbase6common4hash9ObHashMapINS0_8ObStringElNS1_19NoPthreadDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_lEEEELi97ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev -_ZN9oceanbase6common8ObMalloc4freeEPv _ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_lEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi97ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv -_ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS0_8ObStringElEEEELi97ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEE4freeEPS7_ +_ZN9oceanbase8observer16ObInnerSQLResultD2Ev +_ZN9oceanbase8observer16ObInnerSQLResult5closeEv +_ZN9oceanbase5share19ObTenantSwitchGuard7releaseEv +_ZNSt8functionIFiRN9oceanbase6common10ObLDHandleEEEaSEDn +_ZNSt14_Function_base13_Base_managerIZN9oceanbase5share25get_tenant_base_with_lockEmRNS1_6common10ObLDHandleERPNS2_12ObTenantBaseERSt8functionIFiS5_EEE4$_13E10_M_managerERSt9_Any_dataRKSF_St18_Manager_operation +_ZN9oceanbase8observer20ObInnerSQLConnection5unrefEv _ZN9oceanbase8observer16ObInnerSQLResult11inner_closeEv -_ZN9oceanbase3lib4Flow6deinitEv _ZN9oceanbase3lib11ObTLTaGuard9switch_toEl +_ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS0_8ObStringElEEEELi97ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEE4freeEPS7_ _ZN9oceanbase3sql8ObSqlCtxD2Ev _ZN9oceanbase3sql8ObSqlCtx5resetEv _ZN9oceanbase8observer24ObInnerSQLConnectionPool6revertEPNS0_20ObInnerSQLConnectionE _ZN9oceanbase8observer24ObInnerSQLConnectionPool26remove_from_used_conn_listEPNS0_20ObInnerSQLConnectionE _ZN9oceanbase8observer24ObInnerSQLConnectionPool9free_connEPNS0_20ObInnerSQLConnectionE -_ZN9oceanbase6common9sqlclient16ObISQLConnectionD2Ev -_ZN9oceanbase3sql16ObSQLSessionInfo7destroyEb -_ZN9oceanbase3sql16ObSQLSessionInfo5resetEb -_ZN9oceanbase6common13ObSEArrayImplImLl8ENS0_19ModulePageAllocatorELb0EE7destroyEv -_ZN9oceanbase3sql18ObBasicSessionInfo5resetEb -_ZN9oceanbase5share15ObSysVarFactory7destroyEv -_ZN9oceanbase3sql15ObSessionValMap5reuseEv -_ZNSt8functionIFiRN9oceanbase6common10ObLDHandleEEEaSEDn -_ZN9oceanbase6common12ObStringBufTINS0_19ModulePageAllocatorENS0_9PageArenaIcS2_EEE5resetEv -_ZN9oceanbase6common13ObSEArrayImplIlLl32ENS0_19ModulePageAllocatorELb0EE7destroyEv -_ZN9oceanbase6common13ObSEArrayImplINS0_8ObStringELl16ENS0_19ModulePageAllocatorELb0EE7destroyEv -_ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE -_ZNSt17_Function_handlerIFiRN9oceanbase6common10ObLDHandleEEZNS0_5share25get_tenant_base_with_lockEmS3_RPNS5_12ObTenantBaseERSt8functionIS4_EE4$_13E9_M_invokeERKSt9_Any_dataS3_ -_ZN9oceanbase3sql18ObBasicSessionInfo16SysVarsCacheData5resetEv -_ZN9oceanbase6common13ObSEArrayImplINS_3sql18ObBasicSessionInfo10ChangedVarELl8ENS0_19ModulePageAllocatorELb0EE7destroyEv -_ZN9oceanbase6common18ObDSSessionActions9clear_allEv _ZN9oceanbase8observer20ObInnerSQLConnectionD2Ev _ZN9oceanbase6common11ObArrayImplINS0_22ObTZTransitionTypeInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_17DefaultItemEncodeIS2_EEED2Ev -_ZN9oceanbase6common4hash9ObHashMapINS0_8ObStringEPNS_3sql17ObInnerContextMapENS1_19NoPthreadDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_S6_EEEELi97ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl2EED2Ev -_ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_PNS_3sql17ObInnerContextMapEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS8_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS8_EELi97ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl2EE7destroyEv -_ZN9oceanbase3sql20ObOptimizerTraceImplD1Ev -_ZN9oceanbase6common4hash9ObHashMapINS0_8ObStringEmNS1_19NoPthreadDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_mEEEELi97ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev -_ZN9oceanbase3sql16ObSQLSessionInfoD1Ev -_ZN9oceanbase3sql16ObSQLSessionInfoD2Ev -_ZN9oceanbase6common11ObArrayImplIlNS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIlEENS0_22NotImplementItemEncodeIlEEED2Ev -_ZN9oceanbase6common4hash9ObHashMapImPNS_2pl16ObPLPackageStateENS1_19NoPthreadDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS5_EEEELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev -_ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS_2pl16ObPLPackageStateEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv -_ZN9oceanbase6common4hash9ObHashMapImNS_5share15ObSequenceValueENS1_19NoPthreadDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS4_EEEELi64ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev -_ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImNS_5share15ObSequenceValueEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS6_EELi64ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv -_ZN9oceanbase6common4hash9ObHashMapImPNS_3sql15ObPsSessionInfoENS1_19NoPthreadDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS5_EEEELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev -_ZN9oceanbase6common11ObArrayImplINS0_15ObWarningBuffer11WarningItemENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEED2Ev -_ZN9oceanbase6common11ObArrayImplIPNS0_9sqlclient28ObCommonServerConnectionPoolENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEED2Ev -_ZN9oceanbase5share6schema19ObSchemaGetterGuard5resetEv -_ZN9oceanbase6common13ObSEArrayImplINS_5share6schema9SchemaObjELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv -_ZN9oceanbase6common13ObSEArrayImplINS_5share6schema15ObSchemaMgrInfoELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv -_ZN9oceanbase6common4hash9ObHashMapIlPNS_2pl14ObPLCursorInfoENS1_19NoPthreadDefendModeENS1_9hash_funcIlEENS1_8equal_toIlEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIlS5_EEEELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev -_ZN9oceanbase6common4hash9ObHashMapINS_3sql21ObDBlinkSequenceIdKeyEmNS1_19NoPthreadDefendModeENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS4_mEEEELi88ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev -_ZN9oceanbase6common4hash11ObHashTableINS_3sql21ObDBlinkSequenceIdKeyENS1_11HashMapPairIS4_mEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS6_EELi88ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv _ZN9oceanbase6common13ObSEArrayImplImLl1ENS0_19ModulePageAllocatorELb0EE7destroyEv -_ZN9oceanbase3sql16ObSQLSessionInfo11CursorCacheD2Ev +_ZN9oceanbase6common4hash9ObHashMapINS0_8ObStringEmNS1_19NoPthreadDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_mEEEELi97ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev +_ZN9oceanbase6common11ObArrayImplINS0_22ObTZTransitionTypeInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_17DefaultItemEncodeIS2_EEE7destroyEv +_ZN9oceanbase5share17ObFeedbackManagerD2Ev +_ZN9oceanbase5share17ObFeedbackManager5resetEv +_ZN9oceanbase6common13ObSEArrayImplIPNS_5share6schema16ObSequenceSchemaELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv +_ZN9oceanbase11transaction14ObTxExecResultD1Ev +_ZN9oceanbase6common9sqlclient16ObISQLConnectionD2Ev _ZN9oceanbase3sql18ObBasicSessionInfoD2Ev _ZN9oceanbase5share15ObSysVarFactoryD1Ev _ZN9oceanbase5share15ObSysVarFactoryD2Ev _ZN9oceanbase3sql15ObSessionValMapD1Ev _ZN9oceanbase3sql15ObSessionValMapD2Ev _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv -_ZN9oceanbase5share17ObFeedbackManagerD2Ev -_ZN9oceanbase5share17ObFeedbackManager5resetEv -_ZN9oceanbase11transaction14ObTxExecResultD1Ev -_ZN9oceanbase6common13ObSEArrayImplIlLl32ENS0_19ModulePageAllocatorELb0EED2Ev _ZN9oceanbase6common11ObArrayImplINS0_18ObTZRevertTypeInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_17DefaultItemEncodeIS2_EEED2Ev -_ZN9oceanbase6common13ObSEArrayImplINS_11transaction8ObTxPartELl4ENS0_19ModulePageAllocatorELb0EE7destroyEv +_ZN9oceanbase3sql16ObSQLSessionInfoD1Ev +_ZN9oceanbase3sql16ObSQLSessionInfoD2Ev +_ZN9oceanbase6common4hash9ObHashMapImPNS_2pl16ObPLPackageStateENS1_19NoPthreadDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS5_EEEELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev +_ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS_2pl16ObPLPackageStateEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv +_ZN9oceanbase6common11ObArrayImplINS0_15ObWarningBuffer11WarningItemENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEED2Ev +_ZN9oceanbase6common4hash9ObHashMapImPNS_3sql15ObPsSessionInfoENS1_19NoPthreadDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS5_EEEELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev +_ZN9oceanbase6common4hash9ObHashMapINS_3sql21ObDBlinkSequenceIdKeyEmNS1_19NoPthreadDefendModeENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS4_mEEEELi88ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev +_ZN9oceanbase6common4hash11ObHashTableINS_3sql21ObDBlinkSequenceIdKeyENS1_11HashMapPairIS4_mEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS6_EELi88ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv +_ZN9oceanbase6common11ObArrayImplIPNS0_9sqlclient28ObCommonServerConnectionPoolENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEED2Ev +_ZN9oceanbase6common4hash9ObHashMapIlPNS_2pl14ObPLCursorInfoENS1_19NoPthreadDefendModeENS1_9hash_funcIlEENS1_8equal_toIlEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIlS5_EEEELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev +_ZN9oceanbase6common4hash9ObHashMapImNS_5share15ObSequenceValueENS1_19NoPthreadDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS4_EEEELi64ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev +_ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImNS_5share15ObSequenceValueEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS6_EELi64ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv +_ZN9oceanbase6common4hash9ObHashMapINS0_8ObStringEPNS_3sql17ObInnerContextMapENS1_19NoPthreadDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_S6_EEEELi97ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl2EED2Ev +_ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_PNS_3sql17ObInnerContextMapEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS8_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS8_EELi97ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl2EE7destroyEv +_ZN9oceanbase3sql16ObSQLSessionInfo7destroyEb +_ZN9oceanbase3sql16ObSQLSessionInfo5resetEb +_ZN9oceanbase3sql18ObBasicSessionInfo20set_query_start_timeEl +_ZN9oceanbase6common13ObSEArrayImplImLl8ENS0_19ModulePageAllocatorELb0EE7destroyEv +_ZN9oceanbase3sql18ObBasicSessionInfo5resetEb +_ZN9oceanbase5share15ObSysVarFactory7destroyEv +_ZN9oceanbase3sql15ObSessionValMap5reuseEv +_ZN9oceanbase6common12ObStringBufTINS0_19ModulePageAllocatorENS0_9PageArenaIcS2_EEE5resetEv +_ZN9oceanbase6common13ObSEArrayImplINS0_8ObStringELl16ENS0_19ModulePageAllocatorELb0EE7destroyEv +_ZN9oceanbase6common18ObDSSessionActions9clear_allEv +_ZN9oceanbase6common13ObSEArrayImplIlLl32ENS0_19ModulePageAllocatorELb0EE7destroyEv +_ZN9oceanbase3sql18ObBasicSessionInfo16SysVarsCacheData5resetEv +_ZN9oceanbase6common13ObSEArrayImplINS_3sql18ObBasicSessionInfo10ChangedVarELl8ENS0_19ModulePageAllocatorELb0EE7destroyEv +_ZN9oceanbase3sql20ObDblinkCtxInSession21free_dblink_conn_poolEv _ZN9oceanbase3sql20ObDblinkCtxInSessionD2Ev _ZN9oceanbase3sql20ObDblinkCtxInSession17clean_dblink_connEb -_ZN9oceanbase3sql20ObDblinkCtxInSession21free_dblink_conn_poolEv -_ZN9oceanbase6common14ObFileAppenderD1Ev -_ZN9oceanbase6common14ObFileAppenderD2Ev -_ZN9oceanbase3sql15LogFileAppenderD2Ev -_ZN9oceanbase6common11ObArrayImplINS0_22ObTZTransitionTypeInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_17DefaultItemEncodeIS2_EEE7destroyEv -_ZN9oceanbase3sql18ObBasicSessionInfo7destroyEv +_ZN9oceanbase6common11ObArrayImplIlNS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIlEENS0_22NotImplementItemEncodeIlEEED2Ev _ZN9oceanbase6common23ObReserveArenaAllocatorILl256EED2Ev +_ZN9oceanbase3sql18ObBasicSessionInfo7destroyEv +_ZN9oceanbase6common13ObSEArrayImplINS_11transaction8ObTxPartELl4ENS0_19ModulePageAllocatorELb0EE7destroyEv +_ZN9oceanbase3sql20ObOptimizerTraceImplD1Ev +_ZN9oceanbase3sql15LogFileAppenderD2Ev _ZN9oceanbase3sql16ObSQLSessionInfo16drop_temp_tablesEbb -_ZN9oceanbase3sql16ObSQLSessionInfo36refresh_temp_tables_sess_active_timeEv +_ZN9oceanbase6common16ObClockGenerator4run1Ev +_ZN9oceanbase6common5occam16ObOccamTimerTask9begin_runEv +_ZN9oceanbase12blocksstable27ObIndexBlockDataTransformer9transformERKNS0_16ObMicroBlockDataERS2_RNS_6common12ObIAllocatorERPc +_ZN9oceanbase6common12ObMurmurHash4hashEPKvmm +_ZN9oceanbase12blocksstable19ObIntArrayFuncTable11lower_boundIhEElPKvlll +_ZN9oceanbase6common21ObDiagnoseSessionInfo15notify_wait_endEPNS0_20ObDiagnoseTenantInfoEb +_ZN9oceanbase11transaction9ObTxParamD1Ev +_ZThn16_N9oceanbase10logservice11ObGCHandler11get_rec_scnEv +_ZN9oceanbase6common15ObLinearHashMapINS_5share6ObLSIDEPNS_10logservice14ObReplayStatusENS0_14ShareMemMgrTagEE16do_foreach_scan_INS4_18ObLogReplayService15FetchLogFunctorENS8_14DoForeachOnBktISB_EEEEbmmRT_RT0_ +_ZN9oceanbase6common15ObLinearHashMapINS_5share6ObLSIDEPNS_10logservice14ObReplayStatusENS0_14ShareMemMgrTagEE16load_access_bkt_EmRPNS8_6BucketE +_ZThn9032_N9oceanbase8observer18ObAllVirtualLSInfo19process_curr_tenantERPNS_6common8ObNewRowE +_ZN9oceanbase3sql16ObConfigInfoInPC26load_influence_plan_configEv _ZN9oceanbase6common13TimeWheelBase4run1Ev +_ZN6obutil4CondC1Ev _ZN9oceanbase6common16ObClockGenerator6usleepEl _ZNK6obutil4Cond15timed_wait_implINS_11ObUtilMutexEEEbRKT_RKNS_9ObSysTimeE -_ZN9oceanbase6common5occam16ObOccamTimerTask9begin_runEv -_ZNK9oceanbase6common6future16ObFutureBaseBase4waitEv _ZN9oceanbase6common5occam16ObOccamTimerTask12runTimerTaskEv _ZN9oceanbase6common11ObTimeWheel8scheduleEPNS0_15ObTimeWheelTaskEl _ZN9oceanbase6common5occam16ObOccamTimerTask27commit_task_to_thread_pool_Ev +_ZN9oceanbase6common10ObFunctionIFvvEE7DerivedIZNS0_5occam17ObOccamThreadPool11commit_taskILNS5_13TASK_PRIORITYE1ERNS5_16ObOccamTimerTask11TaskWrapperEJEEEiRNS0_8ObFutureINSt9result_ofIFT0_DpT1_EE4typeEEEOSE_DpOSF_EUlvE_ED2Ev _ZN9oceanbase6common13ObSharedGuardINS0_10ObFunctionIFbvEEEE5resetEv -_ZNK9oceanbase6common6future12ObFutureBaseIbE8is_validEv +_ZNK9oceanbase6common6future16ObFutureBaseBase4waitEv _ZN9oceanbase6common13TimeWheelBase8scheduleEPNS0_15ObTimeWheelTaskEl _ZN9oceanbase6common5occam17ObOccamThreadPool11commit_taskILNS1_13TASK_PRIORITYE1ERNS1_16ObOccamTimerTask11TaskWrapperEJEEEiRNS0_8ObFutureINSt9result_ofIFT0_DpT1_EE4typeEEEOSA_DpOSB_ _ZN9oceanbase6common13ObSharedGuardINS0_6future12ObFutureBaseIbE11FutureBlockEE5resetEv -_ZN9oceanbase6common10ObFunctionIFvvEE6assignIZNS0_5occam17ObOccamThreadPool11commit_taskILNS5_13TASK_PRIORITYE1ERNS5_16ObOccamTimerTask11TaskWrapperEJEEEiRNS0_8ObFutureINSt9result_ofIFT0_DpT1_EE4typeEEEOSE_DpOSF_EUlvE_Lb1EEEiOT_ _ZNK9oceanbase6common9ObPromiseIbE10get_futureEv +_ZN9oceanbase6common10ObFunctionIFvvEE6assignIZNS0_5occam17ObOccamThreadPool11commit_taskILNS5_13TASK_PRIORITYE1ERNS5_16ObOccamTimerTask11TaskWrapperEJEEEiRNS0_8ObFutureINSt9result_ofIFT0_DpT1_EE4typeEEEOSE_DpOSF_EUlvE_Lb1EEEiOT_ _ZN9oceanbase6common6future12ObFutureBaseIbE4initERNS0_12ObIAllocatorE _ZN9oceanbase6common15ob_alloc_sharedINS0_6future12ObFutureBaseIbE11FutureBlockEJELb1EEEiRNS0_13ObSharedGuardIT_EERNS0_12ObIAllocatorE +_ZN9oceanbase6common6future22DefaultFutureAllocator5allocEl _ZN9oceanbase6common5occam17ObOccamThreadPool14InnerTaskQueue9push_taskERKNS0_10ObFunctionIFvvEEE _ZNK9oceanbase6common10ObFunctionIFvvEE7DerivedIZNS0_5occam17ObOccamThreadPool11commit_taskILNS5_13TASK_PRIORITYE1ERNS5_16ObOccamTimerTask11TaskWrapperEJEEEiRNS0_8ObFutureINSt9result_ofIFT0_DpT1_EE4typeEEEOSE_DpOSF_EUlvE_E4copyERNS0_12ObIAllocatorEPv _ZN9oceanbase6common8function24DefaultFunctionAllocator5allocEl -_ZN9oceanbase6common6future22DefaultFutureAllocator5allocEl -_ZN9oceanbase7storage16ObMergeLoserTreeINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpELl80EE8push_topERKS2_ -_ZN9oceanbase6common16ObClockGenerator4run1Ev -_ZN9oceanbase3lib9ObjectSet9merge_objEPNS0_7AObjectE -_ZN9oceanbase6common16ObFixedArrayImplINS_5share12AutoincParamENS0_12ObIAllocatorEED2Ev -_ZN9oceanbase6common13ObTimeUtility22current_monotonic_timeEv -_ZN9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE3mapINS8_8HandleOnINS5_19CheckSessionFunctorEEEEEiRT_ -_ZN9oceanbase3sql18ObBasicSessionInfo10is_timeoutERb -_ZN9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE6revertEPS4_ -_ZN9oceanbase3sql18ObBasicSessionInfo19is_trx_idle_timeoutERb -_ZN9oceanbase3sql18ObBasicSessionInfo14try_lock_queryEv -_ZN9oceanbase3sql18ObBasicSessionInfo20try_lock_thread_dataEv +_ZN9oceanbase5share8detector9ObLCLNode13PushStateTask12runTimerTaskEv _ZN9oceanbase10rootserver14ObDDLScheduler4run1Ev _ZN9oceanbase10rootserver14ObDDLScheduler9DDLIdling20get_idle_interval_usEv _ZN9oceanbase10rootserver14ObThreadIdling4idleEl _ZN9oceanbase10rootserver14ObDDLTaskQueue13get_next_taskERPNS0_9ObDDLTaskE -_ZN9oceanbase6common16ObFixedArrayImplINS_3sql15ObTableRowCountENS0_12ObIAllocatorEED2Ev +_ZN9oceanbase3lib8BlockSet11alloc_blockEmRKNS0_9ObMemAttrE +_ZN9oceanbase6common8function24DefaultFunctionAllocator4freeEPv +_ZN9oceanbase6common10ObFunctionIFiRKNS_4palf10PalfHandleEEED2Ev +_Ux86_64_get_accessors +_Ux86_64_get_accessors_int +_ZN9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE3mapINS8_8HandleOnINS5_19CheckSessionFunctorEEEEEiRT_ +_ZN9oceanbase3sql18ObBasicSessionInfo19is_trx_idle_timeoutERb +_ZN9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE6revertEPS4_ +_ZN9oceanbase3sql18ObBasicSessionInfo10is_timeoutERb +_ZN9oceanbase3sql18ObBasicSessionInfo20try_lock_thread_dataEv +_ZN9oceanbase3sql18ObBasicSessionInfo14try_lock_queryEv +_ZN9oceanbase6common5occam17ObOccamThreadPool30keep_fetching_task_until_stop_Em +_ZN9oceanbase6common5occam17ObOccamThreadPool14InnerTaskQueue8pop_taskERNS0_10ObFunctionIFvvEEEl +_ZN9oceanbase3lib11ObLockGuardINS_6common12ObThreadCondEEC2ERS3_ +_ZN9oceanbase6common11ObWeakGuardINS0_10ObFunctionIFbvEEEED2Ev +_ZN9oceanbase6common14ObTraceIDGuardD2Ev +trace_cache_buckets +_ZN9oceanbase3omt17ObTenantConfigMgr25get_tenant_config_versionEm +_ZN9oceanbase6common4hash11ObHashTableINS_3omt10ObTenantIDENS1_11HashMapPairIS4_lEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS6_EELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKS4_RS6_l +_ZN9oceanbase6common4hash11ObHashTableINS_3omt10ObTenantIDENS1_11HashMapPairIS4_lEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS6_EELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE32internal_get_with_timeout_unsafeERNS1_17ObHashTableBucketIS6_NS0_7ObLatchENS1_5NCondEEERKS4_RPKS6_l _ZN9oceanbase6common4hash11ObHashTableINS_3omt10ObTenantIDENS1_11HashMapPairIS4_PNS3_14ObTenantConfigEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS8_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS8_EELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE32internal_get_with_timeout_unsafeERNS1_17ObHashTableBucketIS8_NS1_5NLockENS1_5NCondEEERKS4_RPKS8_l -_ZN9oceanbase6common4hash11ObHashTableINS_3sql12ObQueryRange14ObRangeWrapperENS1_11HashMapPairIS5_NS1_11HashNullObjEEENS1_9hash_funcIS5_EENS1_8equal_toIS5_EENS1_10pair_firstIS8_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS8_EELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv -_ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS_3sql12ObQueryRange14ObRangeWrapperENS1_11HashNullObjEEEEELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEE4freeEPSA_ -_ZN9oceanbase3lib9SetLockerINS0_7ObMutexEE4lockEv -_ZZN9oceanbase4palf11LogIOWorker25BatchLogIOFlushLogTaskMgr6handleElPNS0_12IPalfEnvImplEENK5$_984clEPKc -_ZN9oceanbase6common15ObLinearHashMapINS_5share8detector20ObDependencyResourceENS3_12ObLCLMessageENS0_14ShareMemMgrTagEE8es_lock_Ev -_ZN9oceanbase10compaction23ObTenantTabletScheduler27schedule_all_tablets_mediumEv -_ZN9oceanbase7storage4ObLS11get_ls_roleERNS_6common6ObRoleE -_ZN9oceanbase10compaction30ObMediumCompactionScheduleFunc28schedule_tablet_medium_mergeERNS_7storage4ObLSERNS2_8ObTabletERbS7_lb -_ZNK9oceanbase7storage8ObTablet21read_medium_info_listERNS_6common16ObArenaAllocatorERPKNS_10compaction26ObMediumCompactionInfoListE -_ZN9oceanbase7storage24ObTabletDumpedMediumInfoD1Ev -_ZN9oceanbase7storage24ObTabletDumpedMediumInfoD2Ev -_ZN9oceanbase7storage15ObTabletPointer13get_mds_tableERNS0_3mds14MdsTableHandleEb -_ZNK9oceanbase7storage8ObTablet21get_finish_medium_scnERl -_ZNK9oceanbase7storage8ObTablet17fetch_table_storeERNS0_21ObTabletMemberWrapperINS0_18ObTabletTableStoreES3_EE -_ZN9oceanbase7storage24ObTabletDumpedMediumInfo5resetEv -_ZN9oceanbase7storage3mds17ObMdsTableHandler20get_mds_table_handleERNS1_14MdsTableHandleERKNS_6common10ObTabletIDERKNS_5share6ObLSIDEbPNS0_15ObTabletPointerE -_ZN9oceanbase7storage15ObTabletMdsData21load_medium_info_listERNS_6common12ObIAllocatorERKNS0_19ObTabletComplexAddrINS0_24ObTabletDumpedMediumInfoEEERPKS6_ -_ZN9oceanbase7storage24ObTabletDumpedMediumInfo23init_for_first_creationERNS_6common12ObIAllocatorE -_ZN9oceanbase7storage15ObTabletMdsData21copy_medium_info_listElRKNS0_24ObTabletDumpedMediumInfoERS2_ -_ZN9oceanbase10compaction26ObMediumCompactionInfoList4initERNS_6common12ObIAllocatorERKNS0_17ObExtraMediumInfoEPKNS_7storage24ObTabletDumpedMediumInfoE -_ZN9oceanbase10compaction20ObTabletMergeChecker28check_could_merge_for_mediumERKNS_7storage8ObTabletERb -_ZNK9oceanbase7storage21ObITabletMdsInterface24get_latest_tablet_statusERNS0_31ObTabletCreateDeleteMdsUserDataERb -_ZNK9oceanbase7storage21ObITabletMdsInterface10get_latestINS0_31ObTabletCreateDeleteMdsUserDataEZNKS1_24get_latest_tablet_statusERS3_RbEUlRKS3_E_EEiOT0_S5_l -_ZNK9oceanbase6common10ObFunctionIFiRKNS_7storage31ObTabletCreateDeleteMdsUserDataEEE7DerivedIZNKS2_21ObITabletMdsInterface10get_latestIS3_ZNKS9_24get_latest_tablet_statusERS3_RbEUlS5_E_EEiOT0_SC_lEUlS5_E_E6invokeES5_ -_ZN9oceanbase6common5occam16ObOccamTimeGuard5clickEt -_ZNK9oceanbase7storage8ObTablet21get_mds_table_handle_ERNS0_3mds14MdsTableHandleEb -_ZNK9oceanbase7storage21ObITabletMdsInterface24get_mds_data_from_tabletINS0_31ObTabletCreateDeleteMdsUserDataEEEiRKNS_6common10ObFunctionIFiRKT_EEE -_ZN9oceanbase6common8function24DefaultFunctionAllocator21get_default_allocatorEv -_ZZNK9oceanbase7storage21ObITabletMdsInterface10get_latestINS0_31ObTabletCreateDeleteMdsUserDataEZNKS1_24get_latest_tablet_statusERS3_RbEUlRKS3_E_EEiOT0_S5_lENKUlPKcE18_clESC_ -_ZZNK9oceanbase7storage21ObITabletMdsInterface10get_latestINS0_31ObTabletCreateDeleteMdsUserDataEZNKS1_24get_latest_tablet_statusERS3_RbEUlRKS3_E_EEiOT0_S5_lENKUlPKcE2_clESC_ -_ZN9oceanbase10compaction27ObProhibitScheduleMediumMap10clear_flagERKNS_5share6ObLSIDERKNS1_12ProhibitFlagE -_ZN9oceanbase6common15ObLinearHashMapINS_5share6ObLSIDEPNS_10logservice14ObReplayStatusENS0_14ShareMemMgrTagEE16do_foreach_scan_INS4_18ObLogReplayService15FetchLogFunctorENS8_14DoForeachOnBktISB_EEEEbmmRT_RT0_ -_ZN9oceanbase6common15ObLinearHashMapINS_5share6ObLSIDEPNS_10logservice14ObReplayStatusENS0_14ShareMemMgrTagEE16load_access_bkt_EmRPNS8_6BucketE -_ZN9oceanbase10logservice14ObReplayStatus17trigger_fetch_logEv -_ZN9oceanbase7storage18ObTabletPointerMap20for_each_value_storeINS0_22ObT3mTabletMapIterator17FetchTabletItemOpEEEiRT_ -_ZN9oceanbase6common13ObSEArrayImplINS_3sql17ObArrayParamGroupELl2ENS0_19ModulePageAllocatorELb0EED2Ev +_ZN9oceanbase11transaction7ObTsMgr22is_external_consistentEm +_ZN9oceanbase6common11ObArrayImplINS_5share8detector20ObDependencyResourceENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEED2Ev +_ZN9oceanbase12blocksstable18ObIMicroBlockCache8prefetchEmRKNS0_12MacroBlockIdERKNS0_16ObMicroIndexInfoEbRNS0_18ObMacroBlockHandleEPNS_6common12ObIAllocatorE +_ZN9oceanbase6common8ObMalloc5allocElRKNS_3lib9ObMemAttrE +_ZN9oceanbase12blocksstable18ObMacroBlockHandle10async_readERKNS0_20ObMacroBlockReadInfoE +_ZN9oceanbase6common11ObIOManager10tenant_aioERKNS0_8ObIOInfoERNS0_10ObIOHandleE +_ZN9oceanbase6common17ObTenantIOManager9inner_aioERKNS0_8ObIOInfoERNS0_10ObIOHandleE +_ZN9oceanbase6common11ObIOManager21get_tenant_io_managerEmRNS0_11ObRefHolderINS0_17ObTenantIOManagerEEE +_ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS0_17ObTenantIOManagerEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS6_EELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE32internal_get_with_timeout_unsafeERNS1_17ObHashTableBucketIS6_NS0_7ObLatchENS1_5NCondEEERKmRPKS6_l +_ZN9oceanbase12blocksstable18ObMacroBlockHandle18set_macro_block_idERKNS0_12MacroBlockIdE +_ZN9oceanbase6common11ObIOManager8aio_readERKNS0_8ObIOInfoERNS0_10ObIOHandleE +_ZN9oceanbase12blocksstable18ObMacroBlockHandle13get_tenant_idEv +_ZN9oceanbase12blocksstable18ObMacroBlockHandle5reuseEv +_ZN9oceanbase6common13ObIOScheduler16schedule_requestERNS0_11ObIORequestE +_ZN9oceanbase6common13ObMClockQueue13push_phyqueueEPNS0_10ObPhyQueueE +_ZN9oceanbase6common16ObBinaryHeapBaseIPNS0_10ObPhyQueueENS0_13ObMClockQueue11HeapCompareIS2_XadL_ZNS2_20group_limitation_ts_EEEEELl50EE4pushERKS3_ +_ZN9oceanbase6common16ObBinaryHeapBaseIPNS0_10ObPhyQueueENS0_13ObMClockQueue11HeapCompareIS2_XadL_ZNS2_15reservation_ts_EEEEELl50EE4pushERKS3_ +_ZN9oceanbase6common12ObThreadCond6signalEv +_ZN9oceanbase6common10ObIOSender15enqueue_requestERNS0_11ObIORequestE +_ZN9oceanbase6common13ObMClockQueue16remove_from_heapEPNS0_10ObPhyQueueE +_ZN9oceanbase6common12ObBinaryHeapIPNS0_10ObPhyQueueENS0_13ObMClockQueue11HeapCompareIS2_XadL_ZNS2_20group_limitation_ts_EEEEELl50EE8downheapEl +_ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS0_15ObIOGroupQueuesEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS6_EELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKmRS6_l +_ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS0_15ObIOGroupQueuesEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS6_EELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE32internal_get_with_timeout_unsafeERNS1_17ObHashTableBucketIS6_NS0_7ObLatchENS1_5NCondEEERKmRPKS6_l +_ZN9oceanbase6common15ObRemovableHeapIPNS0_10ObPhyQueueENS0_13ObMClockQueue11HeapCompareIS2_XadL_ZNS2_15reservation_ts_EEEEEXadL_ZNS2_16reservation_pos_EEELl50EE15remove_by_indexEl +_ZN9oceanbase6common12ObBinaryHeapIPNS0_10ObPhyQueueENS0_13ObMClockQueue11HeapCompareIS2_XadL_ZNS2_15reservation_ts_EEEEELl50EE8downheapEl +_ZN9oceanbase6common17ObTenantIOManager20alloc_req_and_resultERKNS0_8ObIOInfoERNS0_10ObIOHandleERPNS0_11ObIORequestE +_ZN9oceanbase6common15ObTenantIOClock19calc_phyqueue_clockEPNS0_10ObPhyQueueERNS0_11ObIORequestE +_ZN9oceanbase6common15ObIOCalibration14get_iops_scaleENS0_8ObIOModeElRdRb +_ZN9oceanbase10rootserver14ObRootBalancer11all_balanceEv +_ZN9oceanbase10rootserver26ObMigrateUnitFinishChecker23try_finish_migrate_unitERKNS_6common4hash12ObReferedMapImNS0_14DRUnitStatInfoEEE +_ZNK9oceanbase6common4hash11ObHashTableImNS1_12ObReferedMapImNS_10rootserver14DRUnitStatInfoEE4ItemENS1_9hash_funcImEENS1_8equal_toImEENS7_6GetKeyENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi5ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE5beginEv +_ZN9oceanbase10rootserver8DRLSInfo22build_disaster_ls_infoERKNS_5share8ObLSInfoERKNS2_14ObLSStatusInfoERKb +_ZNK9oceanbase5share6schema14ObTenantSchema21get_paxos_replica_numERNS1_19ObSchemaGetterGuardERl +_ZNK9oceanbase5share8ObLSInfo11find_leaderERPKNS0_11ObLSReplicaE +_ZN9oceanbase6common4hash12ObReferedMapINS0_6ObAddrENS_10rootserver16DRServerStatInfoEE6locateERKS3_RPNS6_4ItemE +_ZN9oceanbase10rootserver16ObServerBalancer15balance_serversEv +_ZL14pn_thread_funcPv +ob_epoll_wait +_ZL17timerfd_handle_twP9timerfd_t +_ZL21pn_pkts_flush_cb_funcP10pkts_req_t +pkts_sk_handle_event +cfifo_free +pkts_sk_consume +sk_read_with_ib +sk_read +_ZL17ib_prepare_bufferP9ibuffer_tl +_ZN9oceanbase5obrpc14ObNetKeepAlive8in_blackERK11easy_addr_tRbPNS0_18ObNetKeepAliveDataE +_ZN9oceanbase5obrpc14ObNetKeepAlive19regist_dest_if_needERK11easy_addr_t +fifo_free +pktc_sk_handle_event +_ZL16pn_pktc_flush_cbP10pktc_req_t +pktc_sk_consume +wq_flush +easy_hash_code +_ZL19pn_pkts_handle_funcP6pkts_tPvPKclm +_Z8serve_cbiPKclm +_ZN9oceanbase12blocksstable18ObMacroBlockHandle4waitEv +_ZN9oceanbase6common10ObIOHandle4waitEv +_ZN9oceanbase6common11ObIORequest15get_io_data_bufEv +_ZN9oceanbase6common14ObKVCacheStore13refresh_scoreEv +_ZN9oceanbase6common16ObKVCacheInstMap13refresh_scoreEv +_ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE +_ZN9oceanbase6common17ObjHashCalculatorILNS0_9ObObjTypeE5ENS0_13ObDefaultHashENS0_5ObObjEE15calc_hash_valueERKS4_mRm +_ZN9oceanbase5obrpc8LogRpcCBILNS0_15ObRpcPacketCodeE5386EE7processEv +_ZN9oceanbase7storage24ObMultipleMultiScanMerge18inner_get_next_rowERNS_12blocksstable10ObDatumRowE +_ZNK9oceanbase5share24ObVTableLocationCacheKeyeqERKNS_6common13ObIKVCacheKeyE +_ZN9oceanbase6common9Ob2DArrayINS_3sql15ObDatumObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS3_Ll1ES4_Lb0EEEED2Ev +_ZN9oceanbase8memtable16ObTxCallbackList36remove_callbacks_for_remove_memtableEPKNS_6common4hash9ObHashSetImNS3_19ReadWriteDefendModeENS3_9hash_funcImEENS3_8equal_toImEENS3_13SimpleAllocerINS3_15ObHashTableNodeINS3_11HashMapPairImNS3_11HashNullObjEEEEELi108ENS3_19SpinMutexDefendModeENS3_29DefaultSimpleAllocerAllocatorEEENS3_13NormalPointerENS2_8ObMallocELl1EEENS_5share3SCNE +_ZN9oceanbase6common15ObSmallSpinLockIhLl0ELl500ELl100EE4lockEv +_ZNK9oceanbase6common10ObFunctionIFbPNS_8memtable16ObITransCallbackEEE7DerivedIZNS2_16ObTxCallbackList36remove_callbacks_for_remove_memtableEPKNS0_4hash9ObHashSetImNS9_19ReadWriteDefendModeENS9_9hash_funcImEENS9_8equal_toImEENS9_13SimpleAllocerINS9_15ObHashTableNodeINS9_11HashMapPairImNS9_11HashNullObjEEEEELi108ENS9_19SpinMutexDefendModeENS9_29DefaultSimpleAllocerAllocatorEEENS9_13NormalPointerENS0_8ObMallocELl1EEENS_5share3SCNEE5$_223E4copyERNS0_12ObIAllocatorEPv$8b4bcdecdd0d8f749c37b62d8328b37c +_ZN9oceanbase6common10ObFunctionIFbPNS_8memtable16ObITransCallbackEEED2Ev +_ZN9oceanbase8memtable33ObRemoveSyncCallbacksWCondFunctorC2ERKNS_6common10ObFunctionIFbPNS0_16ObITransCallbackEEEES9_bb +_ZN9oceanbase6common10ObFunctionIFbPNS_8memtable16ObITransCallbackEEE6assignERKS6_ +_ZN9oceanbase6common15ObLinearHashMapINS0_10ObTabletIDEPNS_7storage3mds12MdsTableBaseENS0_14ShareMemMgrTagEE16do_foreach_scan_IZNS4_13ObMdsTableMgr25for_each_in_t3m_mds_tableIZZNS4_16ObTenantMdsTimer34dump_special_mds_table_status_taskEvENK5$_131clERNS3_4ObLSEEUlRS5_E_Lb1EEEiOT_EUlRKS2_RS6_E_NS8_14DoForeachOnBktISN_EEEEbmmRSI_RT0_ +_ZN9oceanbase6common20ObGMemstoreAllocator14destroy_handleERNS1_11AllocHandleE +_ZN9oceanbase3lib20ObTenantCtxAllocator12get_obj_holdEPv +_ZN9oceanbase12blocksstable33ObAsyncSingleMicroBlockIOCallbackD2Ev +_ZN9oceanbase6common10ObIOResult7dec_refEPKc +_ZNK9oceanbase3sql17ObChunkDatumStore9StoredRow7to_exprILb0EEEiRKNS_6common8ObIArrayIPNS0_6ObExprEEERNS0_9ObEvalCtxE +_ZNK9oceanbase7storage16ObTxDataCacheKey4hashEv +_ZN9oceanbase6common15ObLinearHashMapINS_10logservice18ServerProbeService11ServerLSKeyENS3_10LSProbeCtxENS0_14ShareMemMgrTagEE20unset_foreach_L_lmt_Em +_ZN9oceanbase3sql24ObTenantSqlMemoryManager44calculate_global_bound_size_by_interval_infoERNS_6common12ObIAllocatorElb +_ZN9oceanbase3sql24ObTenantSqlMemoryManager21ObSqlWorkAreaCalcInfo4initERNS_6common12ObIAllocatorEPNS0_21ObSqlWorkAreaIntervalEl +_ZN9oceanbase3sql24ObTenantSqlMemoryManager38count_profile_into_work_area_intervalsEPNS0_21ObSqlWorkAreaIntervalERlS4_ +_ZN9oceanbase7storage13ObAggDatumBuf4initElbl +_ZN9oceanbase6common10ObIOSender4run1Ev +_ZN9oceanbase6common11ObIORequest7dec_refEPKc +_ZN9oceanbase6common11ObRefHolderINS0_17ObTenantIOManagerEED2Ev +_ZN9oceanbase6common14ObIOObjectPoolINS0_11ObIORequestEE7recycleEPS2_ +_ZN9oceanbase6common11ObIORequest7destroyEv +_ZN9oceanbase5share13ObLocalDevice9free_iocbEPNS_6common6ObIOCBE +_ZN9oceanbase6common12ObFixedQueueINS_5share11ObLocalIOCBEE4pushEPS3_ +_ZN9oceanbase6common10ObIOSender6submitERNS0_11ObIORequestE +_ZN9oceanbase6common15ObDeviceChannel6submitERNS0_11ObIORequestE +_ZN9oceanbase6common8ObRandom4randEll +_ZNK9oceanbase6common16ObAsyncIOChannel15get_queue_countEv +_ZN9oceanbase6common16ObAsyncIOChannel6submitERNS0_11ObIORequestE +_ZN9oceanbase6common17ObTenantIOManager21trace_request_if_needEPKNS0_11ObIORequestEPKcNS0_10ObIOTracer9TraceTypeE +_ZN9oceanbase6common11ObIOManager18get_device_channelEPKNS0_10ObIODeviceERPNS0_15ObDeviceChannelE +_ZN9oceanbase6common11ObIORequest7prepareEPcll +_ZN9oceanbase5share13ObLocalDevice16io_prepare_preadERKNS_6common6ObIOFdEPvmlPNS2_6ObIOCBES6_ +_ZN9oceanbase5share13ObLocalDevice10alloc_iocbEv +_ZN9oceanbase6common11ObIORequest12alloc_io_bufERPc +_ZN9oceanbase6common13ObIOAllocator5allocEl +_ZN9oceanbase6common25ObConcurrentFIFOAllocator5allocEl +_ZN9oceanbase5share13ObLocalDevice9io_submitEPNS_6common11ObIOContextEPNS2_6ObIOCBE +_ZN9oceanbase5share13ObLocalDevice17io_prepare_pwriteERKNS_6common6ObIOFdEPvmlPNS2_6ObIOCBES6_ +_ZN9oceanbase6common16ObAsyncIOChannel4run1Ev +_ZN9oceanbase5share13ObLocalDevice12io_geteventsEPNS_6common11ObIOContextElPNS2_10ObIOEventsEP8timespec +_ZN9oceanbase6common17ObTenantIOManager16enqueue_callbackERNS0_11ObIORequestE _ZN9oceanbase6common11ObArrayImplINS_5share8detector12ObLCLMessageENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEE7destroyEv -_ZN9oceanbase8memtable13ObQueryEngine22inner_loop_find_level_EPKNS0_13ObMemtableKeyES4_lRlS5_S5_ -_ZN9oceanbase8keybtree8IteratorINS_8memtable20ObStoreRowkeyWrapperEPNS2_9ObMvccRowEE13next_on_levelElRS3_RS5_ -_ZN9oceanbase8keybtree10ScanHandleINS_8memtable20ObStoreRowkeyWrapperEPNS2_9ObMvccRowEE12scan_forwardEl -_ZN9oceanbase8keybtree8IteratorINS_8memtable20ObStoreRowkeyWrapperEPNS2_9ObMvccRowEE4compERS3_PS3_Ri -_ZNK9oceanbase8memtable20ObStoreRowkeyWrapper7compareERKS1_Ri -_ZN9oceanbase6common15ObLinearHashMapINS_10logservice18ServerProbeService11ServerLSKeyENS3_10LSProbeCtxENS0_14ShareMemMgrTagEE16do_foreach_scan_IZNS3_21try_clear_server_listEvE5$_779NS7_15DoRemoveIfOnBktIS9_EEEEbmmRT_RT0_ -_ZN9oceanbase6common15ObLinearHashMapINS_10logservice18ServerProbeService11ServerLSKeyENS3_10LSProbeCtxENS0_14ShareMemMgrTagEE16load_access_bkt_EmRPNS7_6BucketE -_ZN9oceanbase6common19ObFixedLengthStringILl128EE6assignEPKc -_ZN9oceanbase3lib6Worker10check_waitEv -_ZN9oceanbase6common15ObBaseLogWriter9flush_logEv -_ZN9oceanbase6common15ObBaseLogWriter12do_flush_logEv -_ZN9oceanbase3sql16ObPlanCacheValue24check_dep_schema_versionERKNS_6common8ObIArrayINS0_12PCVSchemaObjEEERKNS3_IPS4_EERb -trace_cache_buckets -_ZN9oceanbase11transaction14ObTransHashMapINS0_9tablelock8ObLockIDENS2_9ObOBJLockENS2_14ObOBJLockAllocENS_6common10SpinRWLockELl1024EE22for_each_in_one_bucketINS2_12ObOBJLockMap17LockIDIterFunctorEEEiRT_l -_ZN9oceanbase11transaction14ObTransHashMapINS0_9tablelock8ObLockIDENS2_9ObOBJLockENS2_14ObOBJLockAllocENS_6common10SpinRWLockELl1024EE19generate_value_arr_ElRNS6_9ObSEArrayIPS4_Ll32ENS6_19ModulePageAllocatorELb0EEE -_ZN9oceanbase6common13ObTimeUtility23current_monotonic_time_Ev -_ZNSt14_Function_base13_Base_managerIZN9oceanbase3sql12ObSortOpImpl14before_add_rowEvE6$_1091E10_M_managerERSt9_Any_dataRKS6_St18_Manager_operation +_ZN9oceanbase6common10ObIOHandle5resetEv +_ZNSt14_Function_base13_Base_managerIZN9oceanbase3lib17ObMallocAllocator16get_tenant_limitEmE4$_54E10_M_managerERSt9_Any_dataRKS6_St18_Manager_operation.llvm.6650822884049577728 +_ZNSt14_Function_base13_Base_managerIZN9oceanbase3lib17ObMallocAllocator15get_tenant_holdEmE4$_55E10_M_managerERSt9_Any_dataRKS6_St18_Manager_operation.llvm.6650822884049577728 +_ZNSt14_Function_base13_Base_managerIZN9oceanbase3sql15ObHashGroupByOp30update_mem_status_periodicallyEllRlRbE5$_845E10_M_managerERSt9_Any_dataRKS8_St18_Manager_operation _ZN9oceanbase6common16ObFixedArrayImplINS_3sql20ObImplicitCursorInfoENS0_12ObIAllocatorEED2Ev -_ZN9oceanbase7storage32ObTabletDumpedMediumInfoIterator5resetEv -_ZN9oceanbase6common15BaseLearnerListILl2000ENS0_8ObMemberEED2Ev -_ZNK9oceanbase7storage16ObTxDataCacheKey4hashEv _ZN9oceanbase5share19ObPersistentLSTable19construct_ls_infos_ERNS_6common9sqlclient13ObMySQLResultERNS2_8ObIArrayINS0_8ObLSInfoEEE +_ZNK9oceanbase8observer16ObInnerSQLResult11get_varcharEPKcRNS_6common8ObStringE +_ZNK9oceanbase8observer16ObInnerSQLResult11get_varcharElRNS_6common8ObStringE +_ZN9oceanbase8observer16ObInnerSQLResult4nextEv +_ZN9oceanbase6common18ObTimeZoneInfoWrapD2Ev _ZN9oceanbase5share8ObLSInfo21update_replica_statusEv _ZN9oceanbase5share19ObPersistentLSTable20construct_ls_replicaERNS_6common9sqlclient13ObMySQLResultERNS0_11ObLSReplicaE _ZNK9oceanbase8observer16ObInnerSQLResult7get_intEPKcRl @@ -2594,865 +3145,1077 @@ _ZNK9oceanbase8observer16ObInnerSQLResult8find_idxEPKcRl _ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_lEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi97ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKS3_RS5_l _ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_lEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi97ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14set_refactoredIvLb0EEEiRKS3_RKS5_iiiPT_ _ZNK9oceanbase8observer16ObInnerSQLResult7get_intElRl -_ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_lEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi97ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE32internal_get_with_timeout_unsafeERNS1_17ObHashTableBucketIS5_NS1_5NLockENS1_5NCondEEERKS3_RPKS5_l _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS0_8ObStringElEEEELi97ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEE5allocIJEEEPS7_DpRT_ -_ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE -_ZNK9oceanbase8observer16ObInnerSQLResult13get_timestampEPKcPKNS_6common14ObTimeZoneInfoERl +_ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_lEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi97ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE32internal_get_with_timeout_unsafeERNS1_17ObHashTableBucketIS5_NS1_5NLockENS1_5NCondEEERKS3_RPKS5_l +_ZNK9oceanbase6common8ObStringeqERKS1_ +_ZN9oceanbase3omt19ObTenantTimezoneMgr12get_instanceEv +_ZNK9oceanbase8observer16ObInnerSQLResult13get_timestampElPKNS_6common14ObTimeZoneInfoERl +_ZN9oceanbase5share11ObLSReplica4initEllmRKNS0_6ObLSIDERKNS_6common6ObAddrElRKNS5_6ObRoleERKNS5_13ObReplicaTypeElRKNS0_15ObReplicaStatusERKNS0_17ObLSRestoreStatusElmRKNS5_8ObStringElllRKNS5_9ObSEArrayINS0_12SimpleMemberELl7ENS5_15ObNullAllocatorELb0EEERKNS5_15BaseLearnerListILl2000ENS5_8ObMemberEEEb _ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_lEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi97ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE6createElPSH_PSK_ -_ZN9oceanbase5share11ObLSReplica16text2member_listEPKcRNS_6common9ObSEArrayINS0_12SimpleMemberELl7ENS4_15ObNullAllocatorELb0EEE -_ZN9oceanbase5share12SimpleMember4initElPc +_ZN9oceanbase6common13ObSEArrayImplINS_5share12SimpleMemberELl7ENS0_15ObNullAllocatorELb0EE6assignERKNS0_8ObIArrayIS3_EE _ZN9oceanbase6common10to_cstringINS0_8ObStringEEEPKcRKT_NS0_8BoolTypeILb0EEE -_ZN9oceanbase6common11ObArrayImplINS_5share8ObLSInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE9push_backERKS3_ -_ZN9oceanbase3sql20ObSecurityAuditUtils17check_allow_auditERNS0_16ObSQLSessionInfoERNS0_16ObAuditTrailTypeE -_ZL14pn_thread_funcPv -ob_epoll_wait -_ZL17timerfd_handle_twP9timerfd_t -pkts_sk_handle_event -delay_warn -cfifo_free -_ZL12pktc_evfd_cbP6sock_t -pktc_sk_handle_event -pktc_sk_consume -sk_read_with_ib -sk_read -pkts_sk_consume -wq_flush -_ZL19pn_pkts_handle_funcP6pkts_tPvPKclm -_Z8serve_cbiPKclm -_ZN9oceanbase5obrpcL24rpc_mem_pool_create_pageElPKcl.llvm.11535677664210646573 -_ZL12pktc_post_ioP6pktc_tP10pktc_req_t -_ZN9oceanbase6common6parrayEPclPli -_ZN9oceanbase3omt17ObTenantConfigMgr25get_tenant_config_versionEm -_ZN9oceanbase6common4hash11ObHashTableINS_3omt10ObTenantIDENS1_11HashMapPairIS4_lEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS6_EELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKS4_RS6_l -_ZN9oceanbase6common4hash11ObHashTableINS_3omt10ObTenantIDENS1_11HashMapPairIS4_lEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS6_EELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE32internal_get_with_timeout_unsafeERNS1_17ObHashTableBucketIS6_NS0_7ObLatchENS1_5NCondEEERKS4_RPKS6_l -_ZN9oceanbase7archive16ObArchiveFetcher4run1Ev -_ZN9oceanbase6common6ObCond9timedwaitEl -_ZN9oceanbase6common15ObLinearHashMapINS_10logservice18ServerProbeService11ServerLSKeyENS3_10LSProbeCtxENS0_14ShareMemMgrTagEE20unset_foreach_L_lmt_Em -_ZN9oceanbase6common15ObLinearHashMapINS_10logservice18ServerProbeService11ServerLSKeyENS3_10LSProbeCtxENS0_14ShareMemMgrTagEE18set_foreach_L_lmt_Ev +_ZN9oceanbase5share11ObLSReplica17text2learner_listEPKcRNS_6common15BaseLearnerListILl2000ENS4_8ObMemberEEE +_ZN9oceanbase6common8split_onERNS0_8ObStringEcRNS0_8ObIArrayIS1_EE _ZZN9oceanbase10logservice20ObArbitrationService9run_loop_EvENK5$_724clEPKc -_ZN9oceanbase6common14ObKVCacheStore13refresh_scoreEv -_ZN9oceanbase6common16ObKVCacheInstMap13refresh_scoreEv -_ZN9oceanbase6common11ObSqlStringD1Ev -_ZN9oceanbase6common11ObSqlStringD2Ev +_ZN9oceanbase6common9SCondTempILi3EE6signalEji +_ZN9oceanbase11transaction10ObTxCtxMgr33remove_callback_for_uncommited_txENS_5share6ObLSIDEPKNS_6common4hash9ObHashSetImNS5_19ReadWriteDefendModeENS5_9hash_funcImEENS5_8equal_toImEENS5_13SimpleAllocerINS5_15ObHashTableNodeINS5_11HashMapPairImNS5_11HashNullObjEEEEELi108ENS5_19SpinMutexDefendModeENS5_29DefaultSimpleAllocerAllocatorEEENS5_13NormalPointerENS4_8ObMallocELl1EEE +_ZN9oceanbase11transaction23ObRemoveCallbackFunctor17internal_operatorERKNS0_9ObTransIDEPNS0_14ObPartTransCtxE +_ZN9oceanbase11transaction14ObPartTransCtx34remove_callback_for_uncommited_txnEPKNS_6common4hash9ObHashSetImNS3_19ReadWriteDefendModeENS3_9hash_funcImEENS3_8equal_toImEENS3_13SimpleAllocerINS3_15ObHashTableNodeINS3_11HashMapPairImNS3_11HashNullObjEEEEELi108ENS3_19SpinMutexDefendModeENS3_29DefaultSimpleAllocerAllocatorEEENS3_13NormalPointerENS2_8ObMallocELl1EEE +_ZN9oceanbase5share17ObBGThreadMonitor4run1Ev +_ZN9oceanbase3sql16ObConfigInfoInPC17serialize_configsEPciRl +_ZN9oceanbase3sql16ObPlanCacheValue24check_dep_schema_versionERKNS_6common8ObIArrayINS0_12PCVSchemaObjEEERKNS3_IPS4_EERb +_ZN9oceanbase6common4hash11ObHashTableIlNS1_11HashMapPairIlmEENS1_9hash_funcIlEENS1_8equal_toIlEENS1_10pair_firstIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS4_EELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE5beginEv +_ZN9oceanbase6common13ObSEArrayImplINS0_8ObMemberELl7ENS0_19ModulePageAllocatorELb0EE7destroyEv _ZN9oceanbase6common11ObSqlString10assign_fmtEPKcz -_ZN9oceanbase6common11ObSqlString7vappendEPKcP13__va_list_tag _ZN9oceanbase6common11ObSqlString7reserveEl _ZN9oceanbase6common11ObSqlString6extendEl -_ZN9oceanbase11transaction7ObTsMgr22is_external_consistentEm -_ZN9oceanbase3sql24ObTenantSqlMemoryManager44calculate_global_bound_size_by_interval_infoERNS_6common12ObIAllocatorElb -_ZN9oceanbase3sql24ObTenantSqlMemoryManager21ObSqlWorkAreaCalcInfo4initERNS_6common12ObIAllocatorEPNS0_21ObSqlWorkAreaIntervalEl -_ZN9oceanbase3sql24ObTenantSqlMemoryManager38count_profile_into_work_area_intervalsEPNS0_21ObSqlWorkAreaIntervalERlS4_ -_ZN9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEED2Ev -_ZN9oceanbase6common15ObLinearHashMapINS0_10ObTabletIDEPNS_7storage3mds12MdsTableBaseENS0_14ShareMemMgrTagEE16do_foreach_scan_IZNS4_13ObMdsTableMgr25for_each_in_t3m_mds_tableIZZNS4_16ObTenantMdsTimer34dump_special_mds_table_status_taskEvENK5$_131clERNS3_4ObLSEEUlRS5_E_Lb1EEEiOT_EUlRKS2_RS6_E_NS8_14DoForeachOnBktISN_EEEEbmmRSI_RT0_ -_ZN9oceanbase6common15ObLinearHashMapINS_10logservice18ServerProbeService11ServerLSKeyENS3_10LSProbeCtxENS0_14ShareMemMgrTagEE16do_foreach_scan_IZNS3_15run_probe_once_EvE5$_790NS7_14DoForeachOnBktIS9_EEEEbmmRT_RT0_ -_ZN9oceanbase12blocksstable22ObIndexBlockDataHeader33deep_copy_transformed_index_blockERKS1_lPcRl -_ZNK9oceanbase3lib7ABitSet22find_first_significantEi -_ZN9oceanbase6common8ObString8split_onEc -_ZN9oceanbase3sql16ObConfigInfoInPC17serialize_configsEPciRl -_ZN9oceanbase6common4hash11ObHashTableIlNS1_11HashMapPairIllEENS1_9hash_funcIlEENS1_8equal_toIlEENS1_10pair_firstIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS4_EELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv -_ZN9oceanbase6common15ObSmallSpinLockIhLl0ELl500ELl100EE4lockEv -_ZN9oceanbase10logservice20ObArbitrationService16DoDegradeFunctorD2Ev -_ZN9oceanbase6common4hash11ObHashTableIlNS1_11HashMapPairIlmEENS1_9hash_funcIlEENS1_8equal_toIlEENS1_10pair_firstIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS4_EELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE5beginEv -_ZNK9oceanbase3lib17ObMallocAllocator35get_tenant_ctx_allocator_unrecycledEmm -_ZN9oceanbase6common13ObLatchRGuardC2ERNS0_7ObLatchEj -_ZN9oceanbase5share25_make_tenant_switch_guardEv -_ZN9oceanbase6common25ObSyslogSampleRateLimiter10do_acquireElii -_ZN9oceanbase10rootserver8DRLSInfo4initEv -_ZN9oceanbase6common4hash11ObHashTableINS0_6ObAddrENS1_12ObReferedMapIS3_NS_10rootserver16DRServerStatInfoEE4ItemENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS8_6GetKeyENS1_13SimpleAllocerINS1_15ObHashTableNodeIS8_EELi74ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE5clearEv -_ZN9oceanbase6common9Ob2DArrayINS_3sql15ObDatumObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS3_Ll1ES4_Lb0EEEED2Ev +_ZN9oceanbase6common11ObSqlString7vappendEPKcP13__va_list_tag _ZN9oceanbase3sql18ObBasicSessionInfo19update_sys_variableERKNS_6common8ObStringES5_ -_ZN9oceanbase6common6ObAddr17convert_ipv4_addrEPKc -_ZN9oceanbase6common15ObLinearHashMapINS_5share14ObCascadMemberENS2_15ObDstServerInfoENS0_14ShareMemMgrTagEE20unset_foreach_L_lmt_Em -_ZN9oceanbase6common14SpinWLockGuardC2ERKNS0_10SpinRWLockE -_ZN9oceanbase3sql17ObChunkDatumStore8Iterator12reset_cursorEl -_ZN9oceanbase3sql12ObSortOpImpl21array_next_stored_rowERPKNS0_17ObChunkDatumStore9StoredRowE -_ZN9oceanbase6common15ObLinearHashMapINS_12blocksstable12MacroBlockIdENS2_14ObBlockManager9BlockInfoENS0_14ShareMemMgrTagEE18set_foreach_L_lmt_Ev -_ZN9oceanbase5share6schema8ObSchema13deep_copy_strERKNS_6common8ObStringERS4_ -_ZNK9oceanbase7storage22ObStorageLoggerManager20get_using_disk_spaceERl -_ZNK9oceanbase7storage15ObStorageLogger20get_using_disk_spaceERl -_ZNK9oceanbase6common14ObLogFileGroup19get_total_used_sizeERl -_Z12ob_free_hookPvPKv -_ZN9oceanbase3omt13ObMultiTenant18get_mtl_tenant_idsERNS_6common8ObIArrayImEE -_ZN9oceanbase5share13ObLocalDevice8scan_dirEPKcRNS_6common22ObBaseDirEntryOperatorE -_ZN9oceanbase5share20ObGetFileSizeFunctor4funcEPK6dirent -_ZN9oceanbase5share13ObLocalDevice4statEPKcRNS_6common13ObIODFileStatE -_ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImmEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS4_EELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE32internal_get_with_timeout_unsafeERNS1_17ObHashTableBucketIS4_NS1_5NLockENS1_5NCondEEERKmRPKS4_l -_ZN9oceanbase6common21ObDiagnoseSessionInfo15notify_wait_endEPNS0_20ObDiagnoseTenantInfoEb -_ZN9oceanbase6common15ObLinearHashMapINS_5share6ObLSIDEPNS_10logservice14ObReplayStatusENS0_14ShareMemMgrTagEE16do_foreach_scan_INS4_18ObLogReplayService24StatReplayProcessFunctorENS8_14DoForeachOnBktISB_EEEEbmmRT_RT0_ +_ZN9oceanbase6common13ObSEArrayImplINS_5share17ObSysVarClassTypeELl64ENS0_19ModulePageAllocatorELb0EE9push_backERKS3_ +_ULx86_64_reuse_frame +_ZN9oceanbase3sql16AllocInputHelperILi34EE5allocERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecERPNS0_9ObOpInputE +_ZN9oceanbase6common4hash11ObHashTableIlNS1_11HashMapPairIlPNS_10compaction15ObIDiagnoseInfoEEENS1_9hash_funcIlEENS1_8equal_toIlEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKlRS7_l +_ZN9oceanbase3sql17ObPhysicalPlanCtxD1Ev +_ZN9oceanbase3sql17ObPhysicalPlanCtxD2Ev +_ZN9oceanbase6common13ObSEArrayImplIPcLl1ENS0_19ModulePageAllocatorELb1EED2Ev +_ZN9oceanbase6common16ObFixedArrayImplINS_5share12AutoincParamENS0_12ObIAllocatorEED2Ev +_ZN9oceanbase6common13ObSEArrayImplINS_3sql17ObArrayParamGroupELl2ENS0_19ModulePageAllocatorELb0EED2Ev +_ZN9oceanbase3sql20ObSecurityAuditUtils17check_allow_auditERNS0_16ObSQLSessionInfoERNS0_16ObAuditTrailTypeE +_ZN9oceanbase6common13ObSEArrayImplINS_5share6schema9ObColDescELl52ENS0_19ModulePageAllocatorELb0EE9push_backERKS4_ +_ZN9oceanbase6common13ObSEArrayImplINS_3sql12PCVSchemaObjELl4ENS0_19ModulePageAllocatorELb0EE7destroyEv +_ZN9oceanbase6common11ObArrayImplINS_5share6schema11ObZoneScoreENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEED2Ev +_ZN9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEED2Ev +_ZN9oceanbase6common8ObLogger14log_message_kvIJNS0_8ObILogKVEEEEvPKciS5_iS5_miS5_DpOKT_ +_ZN9oceanbase6common5guard27DefaultSharedGuardAllocator4freeEPv +_ZN9oceanbase12blocksstable19ObMicroBlockDecoder14get_col_datumsEiPKlPPKclPNS_6common7ObDatumE +_ZNK9oceanbase12blocksstable19ObStringDiffDecoder12batch_decodeERKNS0_18ObColumnDecoderCtxEPKNS0_11ObIRowIndexEPKlPPKclPNS_6common7ObDatumE +_ZN9oceanbase6common16ObFixedArrayImplIPKNS_12blocksstable16ObIColumnDecoderENS0_12ObIAllocatorEE9push_backERKS5_ +_ZN9oceanbase6common13ObTimeUtility22current_monotonic_timeEv +_ZN9oceanbase5share19ObLSLocationService29renew_all_ls_locations_by_rpcEv +_ZN9oceanbase5share15ObLSLocationMap6updateEbRKNS0_20ObLSLocationCacheKeyERNS0_12ObLSLocationE +_ZN9oceanbase6common11ObQSyncLock6wrlockEv +_ZN9oceanbase5share12ObLSLocation4initElmRKNS0_6ObLSIDEl +_ZN9oceanbase5share12ObLSLocation17merge_leader_fromERKS1_ +_ZNK9oceanbase5share12ObLSLocation10get_leaderERNS0_19ObLSReplicaLocationE +_ZN9oceanbase6common8ob_preadEiPcll +_ZN9oceanbase6common15ObLinearHashMapINS_10logservice18ServerProbeService11ServerLSKeyENS3_10LSProbeCtxENS0_14ShareMemMgrTagEE18set_foreach_L_lmt_Ev +_ZZN9oceanbase4palf7PalfEnv4openElRNS0_10PalfHandleEENK5$_743clEPKc.llvm.1044425045905407792 +_ZN9oceanbase3lib12SubObjectMgr10free_blockEPNS0_6ABlockE +_ZN9oceanbase12blocksstable12ObRLEEncoder8traverseERb +_ZN9oceanbase6common16ObLatchWaitQueue7wake_upERNS0_7ObLatchEb +_ZN9oceanbase3sql17ObStmtExprVisitor5visitINS0_9ObRawExprEEEiRPT_NS0_12DmlStmtScopeE +_ZN9oceanbase3sql18FastRelExprChecker8add_exprERPNS0_9ObRawExprE +_ZN9oceanbase6common13ObSEArrayImplIPNS_3sql9ObRawExprELl32ENS0_19ModulePageAllocatorELb0EE9push_backERKS4_ +_ZN9oceanbase6common15ObLinearHashMapINS_12blocksstable12MacroBlockIdENS2_14ObBlockManager9BlockInfoENS0_14ShareMemMgrTagEE20unset_foreach_L_lmt_Em +_ZN9oceanbase12blocksstable18ObSSTableMacroInfo21deserialize_block_idsERNS_6common16ObArenaAllocatorEPKclRlRPNS0_12MacroBlockIdES7_ +_ZN9oceanbase12blocksstable12MacroBlockId11deserializeEPKclRl _ZN9oceanbase6common15ObKVGlobalCache20print_all_cache_infoEv _ZN9oceanbase6common16ObKVCacheInstMap23print_tenant_cache_infoEm -_ZNK9oceanbase3sql18ObBasicSessionInfo17get_int64_sys_varENS_5share17ObSysVarClassTypeERl -_ZNK9oceanbase6common8ObRowkey10murmurhashEm -_ZN9oceanbase11transaction39IteratePartCtxAskSchedulerStatusFunctor17internal_operatorERKNS0_9ObTransIDEPNS0_14ObPartTransCtxE -_ZN9oceanbase11transaction14ObPartTransCtx22check_scheduler_statusEv -_ZN9oceanbase11transaction7CtxLock8try_lockEv -_ZN9oceanbase3sql29ObTenantCachedSchemaGuardInfo27refresh_tenant_schema_guardEm -_ZNK9oceanbase5share6schema19ObSchemaGetterGuard16check_lazy_guardEmRPKNS1_11ObSchemaMgrE -dwarf_search_unwind_table_int -_ULx86_64_dwarf_search_unwind_table -_ZN9oceanbase6common13RetireStation10RetireList6retireERNS0_10HazardListES4_lRNS0_6QClockE -_ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImmEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS4_EELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv -_ZN9oceanbase11transaction30ObTenantWeakReadClusterService21update_server_versionERKNS_6common6ObAddrENS_5share3SCNElll -_ZN9oceanbase11transaction33ObTenantWeakReadClusterVersionMgr21update_server_versionERKNS_6common6ObAddrENS_5share3SCNElllRb -_ZNK9oceanbase11transaction30ObTenantWeakReadClusterService18check_leader_info_ERl -_ZN9oceanbase10logservice12ObLogService13get_palf_roleERKNS_5share6ObLSIDERNS_6common6ObRoleERl -_ZZN9oceanbase10logservice12ObLogService9open_palfERKNS_5share6ObLSIDERNS_4palf15PalfHandleGuardEENK5$_477clEPKc -_ZN9oceanbase10logservice12ObLogService9open_palfERKNS_5share6ObLSIDERNS_4palf15PalfHandleGuardE -_ZN9oceanbase4palf15PalfHandleGuardD2Ev -_ZN9oceanbase11transaction13TxFunctorStat18finish_iter_singleEPKcRKNS0_9ObTransIDERKNS_5share6ObLSIDE -_ZN9oceanbase5obrpc18ObRpcProcessorBase14set_ob_requestERNS_3rpc9ObRequestE +_ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImNS1_11HashNullObjEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19ReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE5clearEv +pthread_rwlock_wrlock +_ZN9oceanbase6common15ObLinearHashMapINS_5share6ObLSIDEPNS_10logservice14ObReplayStatusENS0_14ShareMemMgrTagEE16do_foreach_scan_INS4_18ObLogReplayService24StatReplayProcessFunctorENS8_14DoForeachOnBktISB_EEEEbmmRT_RT0_ _ZN9oceanbase5share6schema19ObSchemaGetterGuard31get_outline_info_with_signatureEmmRKNS_6common8ObStringERPKNS1_13ObOutlineInfoE _ZNK9oceanbase5share6schema12ObOutlineMgr33get_outline_schema_with_signatureEmmRKNS_6common8ObStringERPKNS1_21ObSimpleOutlineSchemaE -_ZZN9oceanbase5share6schema19ObSchemaGetterGuard31get_outline_info_with_signatureEmmRKNS_6common8ObStringERPKNS1_13ObOutlineInfoEENK6$_1688clEPKc -_ZNK9oceanbase12blocksstable18ObMicroBlockHeader9deep_copyEPclRlRPS1_ -_ZN9oceanbase5share6schema19ObSchemaGetterGuard15get_tenant_infoEmRPKNS1_14ObTenantSchemaE -_ZNK9oceanbase5share6schema19ObSchemaGetterGuard16check_inner_statEv -_ZN9oceanbase5share6schema16is_normal_schemaENS1_12ObSchemaTypeE -_ZN9oceanbase5share6schema19ObSchemaGetterGuard10get_schemaINS1_14ObTenantSchemaEEEiNS1_12ObSchemaTypeEmmRPKT_l -_ZN9oceanbase5share6schema19ObSchemaGetterGuard20get_from_local_cacheINS1_14ObTenantSchemaEEEiNS1_12ObSchemaTypeEmmRPKT_ -_ZZN9oceanbase5share6schema19ObSchemaGetterGuard20get_from_local_cacheINS1_14ObTenantSchemaEEEiNS1_12ObSchemaTypeEmmRPKT_ENKUlPKcE1_clESB_ -_ZN9oceanbase5share17ObBGThreadMonitor4run1Ev -_ZN9oceanbase6common6future12ObFutureBaseIbE3setIbEEiOT_ +_ZN9oceanbase5obrpc15ObRpcResultCodeD2Ev +_ZN9oceanbase6common15ObBaseLogWriter9flush_logEv +_ZN9oceanbase6common15ObBaseLogWriter12do_flush_logEv +_ZN9oceanbase6common8ObLogger17process_log_itemsEPPNS0_14ObIBaseLogItemElRl +_ZN9oceanbase7storage18ObStorageLogWriter17process_log_itemsEPPNS_6common14ObIBaseLogItemElRl +_ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE10ELS3_10EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE +_Z27ob_strnncollsp_utf8mb4_helpPPKhmS1_mS1_S1_bPiS2_ +ev_feed_event _ZN9oceanbase6common16ObFixedArrayImplINS_3sql17PartParamIdxArrayENS0_12ObIAllocatorEED2Ev -_ZN9oceanbase6common13ObSEArrayImplINS_5share6schema9ObColDescELl16ENS0_19ModulePageAllocatorELb0EE9push_backERKS4_ apply_reg_state -_ZN9oceanbase12blocksstable14ObBlockManager7inc_refERKNS0_12MacroBlockIdE -_ZN9oceanbase6common11ObArrayImplISt4pairImmENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEED2Ev -_ZN9oceanbase6common11ObArrayImplINS0_8ObStringENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_17DefaultItemEncodeIS2_EEED2Ev -_ZN9oceanbase6common11ObArrayImplINS_5share6schema11ObZoneScoreENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEED2Ev -_ZN9oceanbase6common11ObArrayImplINS_7storage15ObTableHandleV2ENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE9push_backERKS3_ -_ZN9oceanbase7storage15ObTableHandleV2C1ERKS1_ -_ZN9oceanbase12blocksstable14ObBlockManager7dec_refERKNS0_12MacroBlockIdE -_ZN9oceanbase6common15ObLinearHashMapINS_12blocksstable12MacroBlockIdENS2_14ObBlockManager9BlockInfoENS0_14ShareMemMgrTagEE20do_insert_or_update_ERKS3_RKS5_ -_ZN9oceanbase5share6schema19ObSchemaGetterGuard23get_sys_variable_schemaEmRPKNS1_19ObSysVariableSchemaE -_ZN9oceanbase5share6schema19ObSchemaGetterGuard10get_schemaINS1_19ObSysVariableSchemaEEEiNS1_12ObSchemaTypeEmmRPKT_l -_ZZN9oceanbase5share6schema19ObSchemaGetterGuard20get_from_local_cacheINS1_19ObSysVariableSchemaEEEiNS1_12ObSchemaTypeEmmRPKT_ENKUlPKcE1_clESB_ -_ZZN9oceanbase5share6schema19ObSchemaGetterGuard18get_schema_versionENS1_12ObSchemaTypeEmmRlENK6$_1318clEPKc -_ZN9oceanbase6common15ObLinearHashMapINS0_10ObTabletIDEPNS_7storage3mds12MdsTableBaseENS0_14ShareMemMgrTagEE20unset_foreach_L_lmt_Em -_ZN9oceanbase6common12ob_write_objINS0_12ObIAllocatorEEEiRT_RKNS0_5ObObjERS5_ -_ZN9oceanbase3sql17ObStmtExprVisitor5visitINS0_9ObRawExprEEEiRPT_NS0_12DmlStmtScopeE -_ZN9oceanbase6common15ObLinearHashMapINS_12blocksstable12MacroBlockIdENS2_14ObBlockManager9BlockInfoENS0_14ShareMemMgrTagEE16do_foreach_scan_INS4_26GetPendingFreeBlockFunctorENS7_14DoForeachOnBktIS9_EEEEbmmRT_RT0_ -_ZN9oceanbase6common13ObSEArrayImplIPcLl1ENS0_19ModulePageAllocatorELb1EED2Ev -_ZN9oceanbase5obrpc24ObPocServerHandleContext4respEPNS0_11ObRpcPacketE -_ZN9oceanbase5obrpc17ObRpcPacketHeader9serializeEPclRl -cfifo_alloc -_ZN9oceanbase5obrpc19ObAsyncRespCallback11handle_respEiPKcl -_ZN9oceanbase5obrpc17ObRpcPacketHeader11deserializeEPKclRl -_ZN9oceanbase5share6schema19ObSchemaGetterGuard28get_outline_info_with_sql_idEmmRKNS_6common8ObStringERPKNS1_13ObOutlineInfoE -_ZNK9oceanbase5share6schema12ObOutlineMgr30get_outline_schema_with_sql_idEmmRKNS_6common8ObStringERPKNS1_21ObSimpleOutlineSchemaE -_ZN9oceanbase9container8ObRbTreeINS_6common13ObPageManagerENS0_17ObDummyCompHelperIS3_EENS3_15ObRbNode_rblinkEE12iter_recurseEPS7_PS3_PFS9_S8_S9_PvESA_ -_ZZN9oceanbase6common19ObPageManagerCenter17print_tenant_statElRlS2_PclS2_EN3$_08__invokeEPNS_9container8ObRbTreeINS0_13ObPageManagerENS5_17ObDummyCompHelperIS7_EENS7_15ObRbNode_rblinkEEEPS7_Pv -_ZN9oceanbase6common15ObLinearHashMapINS0_10ObTabletIDEPNS_7storage3mds12MdsTableBaseENS0_14ShareMemMgrTagEE18set_foreach_L_lmt_Ev -_ZN9oceanbase6common15ObLinearHashMapINS_5share6ObLSIDEPNS_10logservice14ObReplayStatusENS0_14ShareMemMgrTagEE18set_foreach_L_lmt_Ev -_ZN9oceanbase6common11ObIORequest7dec_refEPKc -_ZN9oceanbase6common12ObDedupQueue4run1Ev -_ZN9oceanbase6common4hash11ObHashTableIPKNS0_12IObDedupTaskENS1_11HashMapPairIS5_PS3_EENS1_9hash_funcIS5_EENS1_8equal_toIS5_EENS1_10pair_firstIS8_EENS0_16AllocatorWrapperINS1_15ObHashTableNodeIS8_EENS0_25ObConcurrentFIFOAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_18ObWrapperAllocatorELl1EE16erase_refactoredERKS5_PS8_ -_ZN9oceanbase5obrpc14ObRpcProcessorINS0_13ObSrvRpcProxy5ObRpcILNS0_15ObRpcPacketCodeE1193EvEEED2Ev -_ZN9oceanbase12blocksstable27ObIndexBlockDataTransformer9transformERKNS0_16ObMicroBlockDataERS2_RNS_6common12ObIAllocatorERPc -_ZN9oceanbase6common15ObLinearHashMapINS_5share6ObLSIDEPNS_10logservice13ObApplyStatusENS0_14ShareMemMgrTagEE18unload_access_bkt_EPNS8_6BucketESA_ -_ZN9oceanbase10compaction19ObParallelMergeInfo7destroyEv -_ZNK9oceanbase5share6schema19ObSchemaGetterGuard14get_tenant_idsERNS_6common8ObIArrayImEE -_ZNK9oceanbase5share6schema11ObSchemaMgr14get_tenant_idsERNS_6common8ObIArrayImEE -_ZN9oceanbase6common11ObArrayImplImNS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackImEENS0_22NotImplementItemEncodeImEEE9push_backERKm +_ZN9oceanbase6common11ObDebugSync8instanceEv +_ZN9oceanbase6common16ObFixedArrayImplINS_3sql15ObTableRowCountENS0_12ObIAllocatorEED2Ev +_ZN9oceanbase6common15ObLinearHashMapINS_5share14ObCascadMemberENS2_15ObDstServerInfoENS0_14ShareMemMgrTagEE16do_foreach_scan_INS2_17ObServerBlacklist18ObMapRemoveFunctorENS6_15DoRemoveIfOnBktIS9_EEEEbmmRT_RT0_ +_ZN9oceanbase6common15ObLinearHashMapINS_5share14ObCascadMemberENS2_15ObDstServerInfoENS0_14ShareMemMgrTagEE16load_access_bkt_EmRPNS6_6BucketE +_ZN9oceanbase12blocksstable17ObMultiPrefixTree10build_treeEPKNS0_15ObPodFix2dArrayINS_6common7ObDatumELl1048576ELl65408EEERlRbS8_S8_ +_ZN9oceanbase12blocksstable17ObMultiPrefixTree17traverse_by_levelElRbl +XXH64 +_ZN9oceanbase3sql16ObFastParserBase16process_backtickEv _ZN9oceanbase7storage4ObLS45try_update_upper_trans_version_and_gc_sstableERNS_10compaction28ObCompactionScheduleIteratorE _ZNK9oceanbase7storage8ObTablet27check_need_remove_old_tableElRb -_ZNK9oceanbase7storage18ObTabletTableStore21need_remove_old_tableElRb _ZNK9oceanbase7storage8ObTablet22get_kept_snapshot_infoElRNS0_21ObStorageSnapshotInfoE -_ZN9oceanbase6common16ObFixedArrayImplINS_7storage21ObStorageColumnSchemaENS0_12ObIAllocatorEED2Ev _ZN9oceanbase10compaction22ObMediumCompactionInfoD1Ev _ZN9oceanbase10compaction22ObMediumCompactionInfoD2Ev -_ZN9oceanbase7storage24ObTabletMediumInfoReader20get_next_medium_infoERNS_6common12ObIAllocatorERNS_10compaction25ObMediumCompactionInfoKeyERNS5_22ObMediumCompactionInfoE -_ZN9oceanbase7storage15ObStorageSchemaD1Ev -_ZN9oceanbase7storage15ObStorageSchemaD2Ev -_ZN9oceanbase6common16ObFixedArrayImplINS_7storage27ObStorageRowkeyColumnSchemaENS0_12ObIAllocatorEED2Ev -_ZN9oceanbase6common16ObFixedArrayImplINS_7storage26ObStorageColumnGroupSchemaENS0_12ObIAllocatorEED2Ev -_ZN9oceanbase6common16ObFixedArrayImplINS_5share6schema21ObSkipIndexAttrWithIdENS0_12ObIAllocatorEED2Ev +_ZN9oceanbase10compaction19ObParallelMergeInfoD2Ev +_ZN9oceanbase7storage24ObTabletMediumInfoReaderD1Ev +_ZN9oceanbase7storage24ObTabletMediumInfoReaderD2Ev +_ZN9oceanbase6common13ObSEArrayImplIPNS_10compaction22ObMediumCompactionInfoELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv +_ZN9oceanbase7storage32ObTabletDumpedMediumInfoIteratorD1Ev +_ZN9oceanbase7storage32ObTabletDumpedMediumInfoIterator5resetEv +_ZN9oceanbase10compaction19ObParallelMergeInfo7destroyEv _ZN9oceanbase7storage24ObTabletMediumInfoReader4initERNS_6common16ObArenaAllocatorE -_ZN9oceanbase7storage3mds14MdsTableHandleD2Ev +_ZN9oceanbase7storage8ObTablet26update_upper_trans_versionERNS0_4ObLSERb +_ZNK9oceanbase7storage18ObTabletTableStore23get_mini_minor_sstablesEbRNS0_20ObTableStoreIteratorE +_ZN9oceanbase7storage20ObTableStoreIterator10add_tablesERKNS0_14ObSSTableArrayEllb _ZN9oceanbase7storage21ObTenantFreezeInfoMgr25get_min_reserved_snapshotERKNS_6common10ObTabletIDElRNS0_21ObStorageSnapshotInfoE _ZN9oceanbase6common16ObClusterVersion23get_tenant_data_versionEmRm _ZNK9oceanbase7storage21ObTenantFreezeInfoMgr26get_multi_version_durationERl -_ZN9oceanbase7storage15ObStorageSchema5resetEv -_ZN9oceanbase7storage21ObStorageColumnSchema7destroyERNS_6common12ObIAllocatorE -_ZN9oceanbase7storage24ObTabletMediumInfoReader17advance_dump_iterEv +_ZN9oceanbase7storage21ObTenantFreezeInfoMgr40get_freeze_info_behind_snapshot_version_ElRNS_5share12ObFreezeInfoE _ZNK9oceanbase19concurrency_control30ObMultiVersionGarbageCollector36get_reserved_snapshot_for_active_txnEv -_ZN9oceanbase7storage8ObTablet26update_upper_trans_versionERNS0_4ObLSERb -_ZNK9oceanbase7storage18ObTabletTableStore23get_mini_minor_sstablesEbRNS0_20ObTableStoreIteratorE -_ZN9oceanbase7storage20ObTableStoreIterator10add_tablesERKNS0_14ObSSTableArrayEllb -_ZN9oceanbase7storage24ObTabletMediumInfoReader16advance_mds_iterEv -_ZN9oceanbase7storage32ObTabletDumpedMediumInfoIterator4initERNS_6common12ObIAllocatorEPKNS0_24ObTabletDumpedMediumInfoE -_ZN9oceanbase5share20ObLSTemplateOperator9exec_readINS0_18ObLSStatusOperatorENS0_14ObLSStatusInfoEEEiRKmRKNS_6common11ObSqlStringERNS7_12ObISQLClientEPT_RNS7_8ObIArrayIT0_EE -_ZN9oceanbase8observer16ObInnerSQLResult4nextEv -_ZN9oceanbase3sql11ObResultSet12get_next_rowERPKNS_6common8ObNewRowE -_ZN9oceanbase6common11ObArrayImplINS_5share14ObLSStatusInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE9push_backERKS3_ -_ZN9oceanbase5share18ObLSStatusOperator9fill_cellEPNS_6common9sqlclient13ObMySQLResultERNS0_14ObLSStatusInfoE -_ZNK9oceanbase8observer16ObInnerSQLResult11get_varcharEPKcRNS_6common8ObStringE -_ZNK9oceanbase8observer16ObInnerSQLResult11get_varcharElRNS_6common8ObStringE -_ZN9oceanbase5share16str_to_ls_statusERKNS_6common8ObStringE -_ZN9oceanbase5share8ObLSFlag11str_to_flagERKNS_6common8ObStringE -_ZNK9oceanbase4palf8election15ElectionMsgBase19get_serialize_size_Ev -_ZNK9oceanbase4palf8election18ElectionMsgDebugTs19get_serialize_size_Ev -_ZN9oceanbase10compaction12ObLocalArenaD1Ev -_ZN9oceanbase10compaction12ObLocalArenaD2Ev -_ZN9oceanbase5share10ObUnitInfoD2Ev -_ZN9oceanbase3lib13ObResourceMgr7dec_refEPNS0_19ObTenantResourceMgrE +_ZNK9oceanbase7storage18ObTabletTableStore21need_remove_old_tableElRb +_ZZN9oceanbase7storage21ObTenantFreezeInfoMgr25get_min_reserved_snapshotERKNS_6common10ObTabletIDElRNS0_21ObStorageSnapshotInfoEENK6$_1082clEPKc +_ZNK9oceanbase12blocksstable12MacroBlockId9serializeEPclRl +_ZN9oceanbase6common14SpinRLockGuardC2ERKNS0_10SpinRWLockE +_ZN9oceanbase12blocksstableL21acquire_local_decoderINS0_19ObStringDiffDecoderEEEiRNS0_13ObDecoderPoolERKNS0_18ObMicroBlockHeaderERKNS0_14ObColumnHeaderEPKcRPKNS0_16ObIColumnDecoderE +ev_invoke_pending +_ZZL17rpc_easy_timer_cbP7ev_loopP8ev_timeriENK5$_156clEPKc +_ZZL23batch_rpc_easy_timer_cbP7ev_loopP8ev_timeriENK5$_160clEPKc +_ZL32batch_rpc_easy_timer_cb_with_lbtP7ev_loopP8ev_timeri +_ZN9oceanbase6common6parrayEPclPli +_ZN9oceanbase6common15ObLinearHashMapINS_5share6ObLSIDEPNS_10logservice13ObApplyStatusENS0_14ShareMemMgrTagEE11do_operate_INS4_17ObLogApplyService21GetApplyStatusFunctorEEEiRKS3_RT_ +_ZN9oceanbase6common15ObLinearHashMapINS_5share6ObLSIDEPNS_10logservice13ObApplyStatusENS0_14ShareMemMgrTagEE10es_unlock_Ev +_ZN9oceanbase6common15ObLinearHashMapINS_5share6ObLSIDEPNS_10logservice13ObApplyStatusENS0_14ShareMemMgrTagEE18unload_access_bkt_EPNS8_6BucketESA_ +_ZN9oceanbase10logservice17ObLogApplyService21GetApplyStatusFunctorclERKNS_5share6ObLSIDEPNS0_13ObApplyStatusE +_ZN9oceanbase6common15ObLinearHashMapINS_5share6ObLSIDEPNS_10logservice13ObApplyStatusENS0_14ShareMemMgrTagEE16load_access_bkt_ERKS3_RmRPNS8_6BucketE +_ZN9oceanbase6common15ObLinearHashMapINS_5share6ObLSIDEPNS_10logservice13ObApplyStatusENS0_14ShareMemMgrTagEE7shrink_Ev +_ZN9oceanbase6common15ObLinearHashMapINS_5share6ObLSIDEPNS_10logservice13ObApplyStatusENS0_14ShareMemMgrTagEE17load_factor_ctrl_Em +_ZN9oceanbase6common15ObLinearHashMapINS0_10ObTabletIDEPNS_7storage3mds12MdsTableBaseENS0_14ShareMemMgrTagEE18set_foreach_L_lmt_Ev +_ZN9oceanbase5share22ObLogRestoreSourceItemD2Ev +_ZN9oceanbase6common11ObSqlString10append_fmtEPKcz +_ZN9oceanbase6common13ObSEArrayImplINS_7storage15ObTableHandleV2ELl2ENS0_19ModulePageAllocatorELb0EED2Ev +_ZN9oceanbase10compaction23ObTenantTabletScheduler27schedule_all_tablets_mediumEv +_ZN9oceanbase10compaction20ObTabletMergeChecker28check_could_merge_for_mediumERKNS_7storage8ObTabletERb +_ZNK9oceanbase7storage21ObITabletMdsInterface24get_latest_tablet_statusERNS0_31ObTabletCreateDeleteMdsUserDataERb +_ZN9oceanbase6common8function24DefaultFunctionAllocator21get_default_allocatorEv +_ZNK9oceanbase7storage21ObITabletMdsInterface10get_latestINS0_31ObTabletCreateDeleteMdsUserDataEZNKS1_24get_latest_tablet_statusERS3_RbEUlRKS3_E_EEiOT0_S5_l +_ZNK9oceanbase6common10ObFunctionIFiRKNS_7storage31ObTabletCreateDeleteMdsUserDataEEE7DerivedIZNKS2_21ObITabletMdsInterface10get_latestIS3_ZNKS9_24get_latest_tablet_statusERS3_RbEUlS5_E_EEiOT0_SC_lEUlS5_E_E6invokeES5_ +_ZZNK9oceanbase7storage21ObITabletMdsInterface10get_latestINS0_31ObTabletCreateDeleteMdsUserDataEZNKS1_24get_latest_tablet_statusERS3_RbEUlRKS3_E_EEiOT0_S5_lENKUlPKcE2_clESC_ +_ZZNK9oceanbase7storage21ObITabletMdsInterface10get_latestINS0_31ObTabletCreateDeleteMdsUserDataEZNKS1_24get_latest_tablet_statusERS3_RbEUlRKS3_E_EEiOT0_S5_lENKUlPKcE18_clESC_ +_ZN9oceanbase10compaction30ObMediumCompactionScheduleFunc28schedule_tablet_medium_mergeERNS_7storage4ObLSERNS2_8ObTabletERbS7_lb +_ZN9oceanbase10compaction30ObMediumCompactionScheduleFunc18is_election_leaderERKNS_5share6ObLSIDERb +_ZN9oceanbase5share6schema19ObSchemaGetterGuard23get_sys_variable_schemaEmRPKNS1_19ObSysVariableSchemaE +_ZN9oceanbase5share6schema19ObSchemaGetterGuard10get_schemaINS1_19ObSysVariableSchemaEEEiNS1_12ObSchemaTypeEmmRPKT_l +_ZZN9oceanbase5share6schema19ObSchemaGetterGuard20get_from_local_cacheINS1_19ObSysVariableSchemaEEEiNS1_12ObSchemaTypeEmmRPKT_ENKUlPKcE1_clESB_ +_ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocENS_6common10SpinRWLockELl16384EE22for_each_in_one_bucketINS0_20ObTxSubmitLogFunctorEEEiRT_l +_ZN9oceanbase6common4hash11ObHashTableINS_5share6ObLSIDENS1_11HashMapPairIS4_lEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS6_EELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv +_ZN9oceanbase3sql17ObChunkDatumStore5resetEv +_ZN9oceanbase3sql20ObSqlMemMgrProcessor4freeEl +_ZN9oceanbase3lib23get_tenant_memory_limitEm +_ZNSt17_Function_handlerIFiPN9oceanbase3lib17ObTenantMemoryMgrEEZNS1_17ObMallocAllocator16get_tenant_limitEmE4$_54E9_M_invokeERKSt9_Any_dataOS3_.llvm.6650822884049577728 +_ZN9oceanbase3lib17ObMallocAllocator27with_resource_handle_invokeEmSt8functionIFiPNS0_17ObTenantMemoryMgrEEE +_ZNSt17_Function_handlerIFiPN9oceanbase3lib17ObTenantMemoryMgrEEZNS1_17ObMallocAllocator15get_tenant_holdEmE4$_55E9_M_invokeERKSt9_Any_dataOS3_.llvm.6650822884049577728 _ZN9oceanbase3lib13ObResourceMgr12get_instanceEv -_ZN9oceanbase3sql15ObSchemaChecker17is_ora_priv_checkEv -_ZN9oceanbase3sql12ObMaterialOp7destroyEv -_ZN9oceanbase7storage19ObTxDataMemtableMgr16create_memtable_ENS_5share3SCNEll -_ZN9oceanbase6common11ObArrayImplINS0_8ObStringENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_17DefaultItemEncodeIS2_EEEaSERKS8_ -_ZN9oceanbase6common9Ob2DArrayIjLi2044ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPjLl64ES2_Lb0EEEE7destroyEv -_ZN9oceanbase6common11ObAllocator4freeEPv -_ZN9oceanbase5obrpc18ObRpcProcessorBase16check_cluster_idEv -_ZN9oceanbase4palf7LogMetaC2ERKS1_ -_ZN9oceanbase4palf7LogMetaaSERKS1_ -_ZZN9oceanbase4palf15LogConfigInfoV2aSERKS1_ENK6$_1097clEPKc -_ZN9oceanbase4palf13LogConfigInfoaSERKS1_ -_ZN9oceanbase6common13ObSEArrayImplINS0_8ObMemberELl7ENS0_19ModulePageAllocatorELb0EE7destroyEv -_ZN9oceanbase4palf8election38print_debug_ts_if_reach_warn_thresholdERKNS1_15ElectionMsgBaseEl -_ZN9oceanbase11transaction21ObMDSRetainCtxFunctorclEPNS_7storage4ObLSEPNS0_16ObTxRetainCtxMgrE +_ZN9oceanbase3lib13ObResourceMgr23get_tenant_resource_mgrEmRNS0_25ObTenantResourceMgrHandleE +_ZN9oceanbase3lib13ObResourceMgr7dec_refEPNS0_19ObTenantResourceMgrE +_ZNSt17_Function_handlerIFiPN9oceanbase3lib17ObTenantMemoryMgrEEZNKS1_17ObMallocAllocator25print_tenant_memory_usageEmE4$_57E9_M_invokeERKSt9_Any_dataOS3_.llvm.6650822884049577728 +_ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImmEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS4_EELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv +_ZNK9oceanbase4palf14PalfHandleImpl38get_paxos_member_list_and_learner_listERNS_6common16ObMemberListBaseILl7EEERlRNS2_15BaseLearnerListILl2000ENS2_8ObMemberEEE +_ZN9oceanbase5share12ObLSLocation20add_replica_locationERKNS0_19ObLSReplicaLocationE +_ZN9oceanbase5share6schema19ObSchemaGetterGuard28get_outline_info_with_sql_idEmmRKNS_6common8ObStringERPKNS1_13ObOutlineInfoE +_ZNK9oceanbase5share6schema12ObOutlineMgr30get_outline_schema_with_sql_idEmmRKNS_6common8ObStringERPKNS1_21ObSimpleOutlineSchemaE +_ZNK9oceanbase7storage15ObRelativeTable21get_rowkey_column_idsERNS_6common8ObIArrayINS_5share6schema9ObColDescEEE +_ZN9oceanbase6common13ObSEArrayImplIPPNS_3sql9ObRawExprELl1ENS0_19ModulePageAllocatorELb0EE7reserveEl +_ZN9oceanbase12blocksstableL21acquire_local_decoderINS0_12ObRawDecoderEEEiRNS0_13ObDecoderPoolERKNS0_18ObMicroBlockHeaderERKNS0_14ObColumnHeaderEPKcRPKNS0_16ObIColumnDecoderE +_ZL12pkts_evfd_cbP6sock_t +_ZN9oceanbase3sql16ObMaterialOpImplD2Ev +_ZN9oceanbase3sql17ObChunkDatumStore8Iterator12reset_cursorEl +_ZN9oceanbase11transaction14ObPartTransCtx22check_scheduler_statusEv +_ZN9oceanbase11transaction7CtxLock8try_lockEv +_ZNK9oceanbase6common10ObFunctionIFvvEE7DerivedIZNS0_5occam17ObOccamThreadPool11commit_taskILNS5_13TASK_PRIORITYE1ERNS5_16ObOccamTimerTask11TaskWrapperEJEEEiRNS0_8ObFutureINSt9result_ofIFT0_DpT1_EE4typeEEEOSE_DpOSF_EUlvE_E6invokeEv _ZN9oceanbase6common5occam16ObOccamTimerTask11TaskWrapperclEv +_ZN9oceanbase6common6future12ObFutureBaseIbE3setIbEEiOT_ +_ZNK9oceanbase6common6future12ObFutureBaseIbE8is_validEv +_ZN9oceanbase6common5occam20ObOccamFastTimeGuard10is_timeoutEv +_ZN9oceanbase6common14ObStringHolder6assignERKNS0_8ObStringE _ZNK9oceanbase6common10ObFunctionIFbvEE7DerivedIZNS_10logservice11coordinator17ObFailureDetector9mtl_startERPS7_E3$_4E6invokeEv$e2df201f70d536e5f08f8354ad9e873b +_ZN9oceanbase6common5occam26ObOccamTimeGuardDetectHungC2EjjPKcS4_S4_t _ZN9oceanbase6common5occam26ObOccamTimeGuardDetectHungD2Ev -_ZN9oceanbase6common5occam20ObThreadHungDetector12get_instanceEv -_ZN9oceanbase6common5occam20ObOccamFastTimeGuard10is_timeoutEv +_ZN9oceanbase6common5occam20ObThreadHungDetector13ClickPointIdx7get_idxEv _ZNK9oceanbase6common10ObFunctionIFbvEE7DerivedIZNS_4palf8election16ElectionProposer26register_renew_lease_task_EvE4$_82E6invokeEv$00bb314702dcee4ba9359d7928dcbd87 _ZN9oceanbase4palf8election16ElectionProposer31leader_revoke_if_lease_expired_ENS1_16RoleChangeReasonE _ZN9oceanbase4palf8election16ElectionProposer7proposeEv +_ZN9oceanbase10logservice12ObLogService17get_io_start_timeERl _ZN9oceanbase7storage15ObTenantFreezer25get_tenant_memstore_cond_ERlS2_S2_S2_S2_b -_ZN9oceanbase6common14ObStringHolder6assignERKNS0_8ObStringE _ZNK9oceanbase6common10ObFunctionIFbvEE7DerivedIZNS_4palf8election16ElectionAcceptor5startEvE3$_1E6invokeEv$00bb314702dcee4ba9359d7928dcbd87 _ZNK9oceanbase4palf8election5Lease10is_expiredEv -_ZN9oceanbase7storage15ObTenantFreezer19get_freeze_trigger_ERNS0_17ObTenantFreezeCtxE -_ZN9oceanbase3lib23get_tenant_memory_limitEm -_ZNSt17_Function_handlerIFiPN9oceanbase3lib17ObTenantMemoryMgrEEZNS1_17ObMallocAllocator16get_tenant_limitEmE4$_54E9_M_invokeERKSt9_Any_dataOS3_.llvm.15324576766021379907 -_ZN9oceanbase5share6schema19ObSchemaGetterGuardC1Ev +_ZNK9oceanbase5share13ObLocalDevice16check_space_fullEl +_ZNSt17_Function_handlerIFiRN9oceanbase6common10ObLDHandleEEZNS0_5share25get_tenant_base_with_lockEmS3_RPNS5_12ObTenantBaseERSt8functionIS4_EE4$_13E9_M_invokeERKSt9_Any_dataS3_ +_ZNK9oceanbase7storage22ObStorageLoggerManager20get_using_disk_spaceERl +_ZNK9oceanbase7storage15ObStorageLogger20get_using_disk_spaceERl +_ZN9oceanbase3omt13ObMultiTenant18get_mtl_tenant_idsERNS_6common8ObIArrayImEE +_ZNK9oceanbase6common14ObLogFileGroup19get_total_used_sizeERl +_ZN9oceanbase5share13ObLocalDevice8scan_dirEPKcRNS_6common22ObBaseDirEntryOperatorE +_ZN9oceanbase5share20ObGetFileSizeFunctor4funcEPK6dirent +_ZN9oceanbase5share13ObLocalDevice4statEPKcRNS_6common13ObIODFileStatE +_ZN9oceanbase6common16ObFixedArrayImplImNS0_16ObArenaAllocatorEE9push_backERKm +_ZNK9oceanbase6common10ObFunctionIFbvEE7DerivedIZNS_11transaction9tablelock18ObTableLockService25ObOBJLockGarbageCollector5startEvE5$_602E6invokeEv$806f957fb21599808b7ae20820a5ead8 +_ZNK9oceanbase6common10ObFunctionIFbvEE7DerivedIZNS_10logservice11coordinator17ObFailureDetector9mtl_startERPS7_E3$_6E6invokeEv$e2df201f70d536e5f08f8354ad9e873b +_ZNK9oceanbase6common10ObFunctionIFbvEE7DerivedIZNS_7storage3mds18ObTenantMdsService9mtl_startERPS7_E5$_126E6invokeEv$9b1b95bf4bc4371fc0d0d7fd92278764 +_ZN9oceanbase7storage3mds18ObTenantMdsService21for_each_ls_in_tenantERKNS_6common10ObFunctionIFiRNS0_4ObLSEEEE +_ZNK9oceanbase6common10ObFunctionIFiRNS_7storage4ObLSEEE7DerivedIZNS2_3mds16ObTenantMdsTimer26try_recycle_mds_table_taskEvE5$_130E6invokeES4_$9b1b95bf4bc4371fc0d0d7fd92278764 +_ZN9oceanbase6common15ObLinearHashMapINS0_10ObTabletIDEPNS_7storage3mds12MdsTableBaseENS0_14ShareMemMgrTagEE20unset_foreach_L_lmt_Em +_ZNK9oceanbase6common10ObFunctionIFiRNS_7storage8ObTabletEEE7DerivedIZZNS2_3mds16ObTenantMdsTimer26try_recycle_mds_table_taskEvENK5$_130clERNS2_4ObLSEEUlS4_E_E6invokeES4_$9b1b95bf4bc4371fc0d0d7fd92278764 +_ZN9oceanbase7storage3mds17ObMdsTableHandler23try_release_nodes_belowERKNS_5share3SCNE +_ZN9oceanbase7storage3mds17ObMdsTableHandler16try_gc_mds_tableEv +_ZN9oceanbase7storage18ObTenantMetaMemMgr20get_min_mds_ckpt_scnERKNS0_14ObTabletMapKeyERNS_5share3SCNE +_ZN9oceanbase7storage18ObTenantMetaMemMgr25get_tablet_with_allocatorERKNS0_18WashTabletPriorityERKNS0_14ObTabletMapKeyERNS_6common16ObArenaAllocatorERNS0_14ObTabletHandleEb +_ZN9oceanbase11transaction9tablelock11ObLockTable24check_and_clear_obj_lockEb +_ZN9oceanbase11transaction9tablelock12ObOBJLockMap16get_lock_id_iterERNS_6common16ObSimpleIteratorINS1_8ObLockIDEXadL_ZNS1_22ObSimpleIteratorModIds15OB_OBJ_LOCK_MAPEEELl16EEE +_ZN9oceanbase11transaction14ObTransHashMapINS0_9tablelock8ObLockIDENS2_9ObOBJLockENS2_14ObOBJLockAllocENS_6common10SpinRWLockELl1024EE22for_each_in_one_bucketINS2_12ObOBJLockMap17LockIDIterFunctorEEEiRT_l +_ZN9oceanbase11transaction14ObTransHashMapINS0_9tablelock8ObLockIDENS2_9ObOBJLockENS2_14ObOBJLockAllocENS_6common10SpinRWLockELl1024EE19generate_value_arr_ElRNS6_9ObSEArrayIPS4_Ll32ENS6_19ModulePageAllocatorELb0EEE +_ZN9oceanbase7storage3mds12MdsTableImplINS_6common7ObTupleIJNS1_7MdsUnitINS1_8DummyKeyENS0_31ObTabletCreateDeleteMdsUserDataEEENS5_IS6_NS0_26ObTabletBindingMdsUserDataEEENS5_IS6_NS_5share18ObTabletAutoincSeqEEENS5_INS_10compaction25ObMediumCompactionInfoKeyENSE_22ObMediumCompactionInfoEEEEEEE11try_recycleENSB_3SCNE +_ZN9oceanbase7storage15ObTxTableGuards13lock_for_readERKNS_11transaction16ObLockForReadArgERbRNS_5share3SCNES6_RNS0_12ObCleanoutOpERNS0_11ObReCheckOpE +_ZN9oceanbase7storage9ObTxTable18check_with_tx_dataERNS0_15ObReadTxDataArgERNS0_21ObITxDataCheckFunctorE +_ZN9oceanbase6common9ObKVCacheINS_7storage16ObTxDataCacheKeyENS2_18ObTxDataCacheValueEE3getERKS3_RPKS4_RNS0_15ObKVCacheHandleE +_ZN9oceanbase7storage9ObTxTable22check_state_and_epoch_ENS_11transaction9ObTransIDElbRi +_ZN9oceanbase11transaction12ObLSTxCtxMgr18check_with_tx_dataERKNS0_9ObTransIDERNS_7storage21ObITxDataCheckFunctorE +_ZN9oceanbase7storage26ObCleanoutNothingOperationclERKNS0_8ObTxDataEPNS0_9ObTxCCCtxE +_ZN9oceanbase7storage18LockForReadFunctorclERKNS0_8ObTxDataEPNS0_9ObTxCCCtxE +_ZN9oceanbase11transaction12ObLSTxCtxMgr11get_tx_ctx_ERKNS0_9ObTransIDEbRPNS0_14ObPartTransCtxE +_ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocENS_6common10SpinRWLockELl16384EE3getERKS2_RPS3_ +_ZN9oceanbase7storage18ObTxDataCacheValue16inner_deep_copy_EPvRKNS0_8ObTxDataE +_ZN9oceanbase7storage13ObTxDataTable18check_with_tx_dataENS_11transaction9ObTransIDERNS0_21ObITxDataCheckFunctorERNS0_13ObTxDataGuardERNS_5share3SCNE +_ZN9oceanbase11transaction16ObTxRetainCtxMgr16for_each_remove_EMS1_FiPNS0_24ObIRetainCtxCheckFunctorERbPNS_7storage4ObLSEES7_l +_ZN9oceanbase11transaction16ObTxRetainCtxMgr7try_gc_EPNS0_24ObIRetainCtxCheckFunctorERbPNS_7storage4ObLSE +_ZN9oceanbase11transaction21ObMDSRetainCtxFunctorclEPNS_7storage4ObLSEPNS0_16ObTxRetainCtxMgrE +_ZN9oceanbase7storage8ObLSMeta21ObReentrantRLockGuardD2Ev +_ZN9oceanbase6common4hash11ObHashTableIlNS1_11HashMapPairIllEENS1_9hash_funcIlEENS1_8equal_toIlEENS1_10pair_firstIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS4_EELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE12internal_setERNS1_17ObHashTableBucketIS4_NS0_7ObLatchENS1_5NCondEEERKS4_b +_ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIllEEEELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEE5allocIJEEEPS6_DpRT_ +_ZN9oceanbase6common15ObLinearHashMapINS_5share6ObLSIDEPNS_10logservice14ObReplayStatusENS0_14ShareMemMgrTagEE20unset_foreach_L_lmt_Em +_ZN9oceanbase6common15ObLinearHashMapINS_5share14ObCascadMemberENS2_15ObDstServerInfoENS0_14ShareMemMgrTagEE20unset_foreach_L_lmt_Em +_ZN9oceanbase5share15ObMergeInfoItem7set_scnEm +_ZN9oceanbase6common15ObLinearHashMapINS_12blocksstable12MacroBlockIdENS2_14ObBlockManager9BlockInfoENS0_14ShareMemMgrTagEE16do_foreach_scan_INS4_26GetPendingFreeBlockFunctorENS7_14DoForeachOnBktIS9_EEEEbmmRT_RT0_ +_ZN9oceanbase3sql13ObTempExprCtxD1Ev +_ZN9oceanbase3sql13ObTempExprCtxD2Ev +_ZN9oceanbase10compaction16ObLocalAllocatorINS_6common16ObArenaAllocatorEE5resetEv +_ZNK9oceanbase8observer16ObInnerSQLResult7get_objEPKcRNS_6common5ObObjE +_ZN9oceanbase6common16ObFixedArrayImplINS_3sql15ObTableRowCountENS0_12ObIAllocatorEE7reserveEl +_ZN9oceanbase6common16ObFixedArrayImplINS_3sql15ObTableRowCountENS0_12ObIAllocatorEE4initEl +_ZN9oceanbase6common11ObArrayImplINS_5share11ObLSReplicaENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE9push_backERKS3_ +_ZN9oceanbase5share11ObLSReplica6assignERKS1_ +_ZN9oceanbase6common19ObFixedLengthStringILl128EE6assignERKS2_ +_ZN9oceanbase5share11ObLSReplica5resetEv +_ZN9oceanbase6common19ObFixedLengthStringILl128EE6assignEPKc +_ZN9oceanbase6common16copy_assign_wrapINS0_9ObSEArrayINS_5share12SimpleMemberELl7ENS0_15ObNullAllocatorELb0EEEEEiRT_RKS7_NS0_8BoolTypeILb0EEE +_ZN9oceanbase6common15BaseLearnerListILl2000ENS0_8ObMemberEEaSERKS3_ +_ZN9oceanbase6common4hash19ObHashTableIteratorIlNS1_11HashMapPairIllEENS1_9hash_funcIlEENS1_8equal_toIlEENS1_10pair_firstIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS4_EELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEppEv +_ZNK9oceanbase8observer16ObInnerSQLResult10get_numberEPKcRNS_6common6number8ObNumberE +_ZN9oceanbase3sql18ObBasicSessionInfo32change_value_for_special_sys_varENS_5share17ObSysVarClassTypeERKNS_6common5ObObjERS5_ +_UIx86_64__mempool_alloc +_ZN9oceanbase6common15ObLinearHashMapINS_10logservice18ServerProbeService11ServerLSKeyENS3_10LSProbeCtxENS0_14ShareMemMgrTagEE16do_foreach_scan_IZNS3_21try_clear_server_listEvE5$_779NS7_15DoRemoveIfOnBktIS9_EEEEbmmRT_RT0_ +_ZN9oceanbase6common14ObKVCacheStore14alloc_mbhandleERNS0_13ObKVCacheInstENS0_15ObKVCachePolicyElRPNS0_18ObKVMemBlockHandleE +_ZN9oceanbase3lib17ObTenantMemoryMgr14alloc_cache_mbEl +_ZN9oceanbase3lib9AChunkMgr8instanceEv +_ZN9oceanbase6common11QClockGuardC2ERNS0_6QClockE +_ZN9oceanbase6common14ObKVCacheStore13try_supply_mbEl +_ZN9oceanbase6common13ObSEArrayImplINS0_5ObObjELl8ENS0_19ModulePageAllocatorELb0EED2Ev +_ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImbEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS4_EELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19ReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKmRS4_l +_ZNK9oceanbase6common5occam16ObOccamTimeGuard24fmt_ts_to_meaningful_strEPclRlPKcl +_ZN9oceanbase7storage19ObTxDataMemtableMgr16create_memtable_ENS_5share3SCNEll +_ZNK9oceanbase4palf8election18ElectionMsgDebugTs10serialize_EPclRl +_ZN9oceanbase8observer18ObTableLoadManager17get_all_table_ctxERNS_6common8ObIArrayIPNS0_19ObTableLoadTableCtxEEE +_ZN9oceanbase5obrpc19ObAsyncRespCallback11handle_respEiPKcl +_ZN9oceanbase5obrpc17ObRpcPacketHeader11deserializeEPKclRl +_ZN9oceanbase5obrpc10ObRpcProxy7AsyncCBINS0_13LogRpcProxyV25ObRpcILNS0_15ObRpcPacketCodeE5386EvEEE6decodeEPv +_ZN9oceanbase5obrpc15ObRpcResultCode11deserializeEPKclRl +_ZN9oceanbase7storage15ObMultipleMerge26handle_lob_before_fuse_rowEv +_ZN9oceanbase7storage15ObMultipleMerge16fill_lob_locatorERNS_12blocksstable10ObDatumRowE +_ZN9oceanbase7storage18ObLobLocatorHelper19fill_lob_locator_v2ERNS_12blocksstable10ObDatumRowERKNS0_20ObTableAccessContextERKNS0_18ObTableAccessParamE +_ZN9oceanbase6common14ObLobLocatorV216set_payload_dataERKNS0_8ObStringE +_ZN9oceanbase6common14ObLobLocatorV24fillENS0_12ObMemLobTypeERKNS0_19ObMemLobExternFlagsERKNS0_8ObStringEPKNS0_11ObLobCommonEjjb +_ZN9oceanbase7storage18ObLobLocatorHelper15build_rowid_objERNS_12blocksstable10ObDatumRowERNS_6common8ObStringEbRKNS5_8ObIArrayINS_5share6schema9ObColDescEEERKNS8_IiEERKNS5_10ObTabletIDE +_ZN9oceanbase12blocksstable13ObSSTableMetaC2Ev +_ZNK9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS_3sql12ObPsStmtInfoEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_23SpinReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE18foreach_refactoredINS4_19ObGetClosedStmtIdOpEEEiRT_ +_ZN9oceanbase3sql12PCVSchemaObj22init_without_copy_nameEPKNS_5share6schema21ObSimpleTableSchemaV2E +_ZN9oceanbase6common11ObArrayImplINS_8observer23ObTabletTableUpdateTaskENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE10extend_bufEl +_ZN9oceanbase6common21ObDetectManagerThread6detectEv +_ZN9oceanbase6common4hash11ObHashTableINS0_14ObDetectableIdENS1_11HashMapPairIS3_NS1_11HashNullObjEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS6_EELi88ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE5beginEv +_ZN9oceanbase6common12ObCurTraceId7TraceId3setEPKm +_ZN9oceanbase3sql18ObHashJoinBatchMgr21remove_undumped_batchEli +_ZN9oceanbase6common11ObAllocator4freeEPv +_ZN9oceanbase3sql15ObHashJoinBatchD2Ev +_ULx86_64_dwarf_callback +_ZN9oceanbase3sql13ObMergeJoinOp24get_next_right_cache_rowEv +_ZN9oceanbase3sql9ObKeyPartD2Ev +_ZN9oceanbase6common11ObArrayImplINS0_8ObStringENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_17DefaultItemEncodeIS2_EEED2Ev +easy_baseth_pool_monitor_func.llvm.12889796537703634804 +_ZN9oceanbase7storage10checkpoint20ObCheckpointExecutor27get_cannot_recycle_log_sizeEv +_ZN9oceanbase12blocksstable21ObMicroBlockRowGetter17get_not_exist_rowERKNS0_13ObDatumRowkeyERPKNS0_10ObDatumRowE +_ZN9oceanbase8keybtree10ScanHandleINS_8memtable20ObStoreRowkeyWrapperEPNS2_9ObMvccRowEE13scan_backwardEbPl +_ZN9oceanbase4palf7LogMetaC2ERKS1_ +_ZN9oceanbase4palf13LogConfigInfoC2Ev +_ZN9oceanbase6common15BaseLearnerListILl2000ENS0_8ObMemberEEC2Ev +_ZN9oceanbase4palf7LogMetaaSERKS1_ +_ZZN9oceanbase4palf15LogConfigInfoV2aSERKS1_ENK6$_1097clEPKc +_ZZN9oceanbase4palf13LogConfigInfoaSERKS1_ENK6$_1079clEPKc +_ZN9oceanbase12blocksstable19ObMicroBlockDecoder15get_micro_metasERPKNS0_18ObMicroBlockHeaderERPKNS0_14ObColumnHeaderERPKcSB_l +_ZN9oceanbase12blocksstable19ObMicroBlockDecoder22get_decoder_cache_sizeEPKclRl +_ZN9oceanbase3sql10ObOperator6rescanEv +_ZN9oceanbase12blocksstable19ObMicroBlockDecoder14cache_decodersEPclPKcl _ZN9oceanbase11transaction14ObTxLoopWorker4run1Ev -_ZNK9oceanbase4palf14PalfHandleImpl11get_max_scnEv _ZNK9oceanbase4palf14PalfHandleImpl11get_end_scnEv -_ZN9oceanbase6common13ObSharedGuardINS_7storage12ObLSIteratorEE5resetEv -_ZNK9oceanbase6common10ObFunctionIFvPNS_7storage12ObLSIteratorEEE7DerivedIZNS2_11ObLSService11get_ls_iterERNS0_13ObSharedGuardIS3_EENS2_10ObLSGetModEE5$_411E6invokeES4_$f6ef9fac91760a214463dcbceb95e6d8 -_ZN9oceanbase6common5guard27DefaultSharedGuardAllocator4freeEPv -_ZN9oceanbase7storage12ObLSIterator5resetEv +_ZNK9oceanbase4palf14PalfHandleImpl11get_max_scnEv +_ZN9oceanbase6common5guard27DefaultSharedGuardAllocator5allocEl _ZN9oceanbase11transaction20ObKeepAliveLSHandler25serialize_keep_alive_log_ERKNS_5share3SCNENS0_17MinStartScnStatusE -_ZNK9oceanbase10logservice15ObLogBaseHeader9serializeEPclRl _ZNK9oceanbase10logservice12ObLogHandler11get_max_scnERNS_5share3SCNE _ZNK9oceanbase4palf12LSNAllocator11get_max_scnEv +_ZNK9oceanbase10logservice12ObLogHandler11get_end_scnERNS_5share3SCNE _ZNK9oceanbase11transaction18ObKeepAliveLogBody9serializeEPclRl -_ZN9oceanbase11transaction23ObTenantWeakReadService36generate_tenant_weak_read_timestamp_Eb -_ZN9oceanbase11transaction23ObTenantWeakReadService12scan_all_ls_EPNS_7storage11ObLSServiceE -_ZN9oceanbase7storage11ObLSService11get_ls_iterERNS_6common13ObSharedGuardINS0_12ObLSIteratorEEENS0_10ObLSGetModE -_ZN9oceanbase11transaction23ObTenantWeakReadService10handle_ls_ERNS_7storage4ObLSE -_ZNSt14_Function_baseD2Ev -_ZN9oceanbase7storage14ObLSWRSHandler38generate_ls_weak_read_snapshot_versionERNS0_4ObLSERbS4_RNS_5share3SCNEl -_ZN9oceanbase5share3SCN10inc_updateERKS1_ -_ZNK9oceanbase5share3SCN13convert_to_tsEb -_ZNK9oceanbase7storage8ObLSMeta20get_migration_statusERNS0_17ObMigrationStatusE -_ZNSt14_Function_base13_Base_managerIZN9oceanbase11transaction14ObWeakReadUtil35max_stale_time_for_weak_consistencyEmlE5$_252E10_M_managerERSt9_Any_dataRKS6_St18_Manager_operation.llvm.8242723922268623225 -_ZN9oceanbase11transaction14ObWeakReadUtil35max_stale_time_for_weak_consistencyEml -_ZNSt17_Function_handlerIFvRKN9oceanbase3omt14ObTenantConfigEEZNS0_11transaction14ObWeakReadUtil35max_stale_time_for_weak_consistencyEmlE5$_251E9_M_invokeERKSt9_Any_dataS4_.llvm.8242723922268623225 -_ZN9oceanbase11transaction32ObTenantWeakReadServerVersionMgr18ServerVersionInner6updateERKS2_ -_ZN9oceanbase11transaction32ObTenantWeakReadServerVersionMgr21update_with_part_infoEmlbbNS_5share3SCNE -_ZN9oceanbase11transaction14ObWeakReadUtil30generate_min_weak_read_versionEmRNS_5share3SCNE -_ZNSt14_Function_base13_Base_managerIZN9oceanbase11transaction14ObWeakReadUtil30generate_min_weak_read_versionEmRNS1_5share3SCNEE5$_246E10_M_managerERSt9_Any_dataRKS9_St18_Manager_operation -_ZNSt14_Function_base13_Base_managerIZN9oceanbase11transaction14ObWeakReadUtil30generate_min_weak_read_versionEmRNS1_5share3SCNEE5$_245E10_M_managerERSt9_Any_dataRKS9_St18_Manager_operation -_ZN9oceanbase5share3SCN15convert_from_tsEm -_ZNK9oceanbase3omt17ObTenantConfigMgr18read_tenant_configEmmRKSt8functionIFvRKNS0_14ObTenantConfigEEERKS2_IFvvEE -_ZN9oceanbase7storage14ObLSWRSHandler29generate_weak_read_timestamp_ERNS0_4ObLSElRNS_5share3SCNE -_ZN9oceanbase10logservice12ObLogHandler19get_max_decided_scnERNS_5share3SCNE -_ZN9oceanbase10logservice18ObApplyStatusGuardD1Ev -_ZN9oceanbase10logservice18ObApplyStatusGuardD2Ev -_ZN9oceanbase10logservice18ObLogReplayService20get_max_replayed_scnERKNS_5share6ObLSIDERNS2_3SCNE -_ZN9oceanbase10logservice18ObLogReplayService18get_replay_status_ERKNS_5share6ObLSIDERNS0_19ObReplayStatusGuardE -_ZN9oceanbase6common15ObLinearHashMapINS_5share6ObLSIDEPNS_10logservice14ObReplayStatusENS0_14ShareMemMgrTagEE11do_operate_INS4_18ObLogReplayService22GetReplayStatusFunctorEEEiRKS3_RT_ -_ZN9oceanbase6common15ObLinearHashMapINS_5share6ObLSIDEPNS_10logservice14ObReplayStatusENS0_14ShareMemMgrTagEE16load_access_bkt_ERKS3_RmRPNS8_6BucketE -_ZN9oceanbase10logservice14ObReplayStatus27get_min_unreplayed_log_infoERNS_4palf3LSNERNS_5share3SCNERlRNS0_13ObLogBaseTypeES8_S8_S8_ -_ZNK9oceanbase10logservice25ObReplayServiceSubmitTask27get_next_to_submit_log_infoERNS_4palf3LSNERNS_5share3SCNE -_ZZN9oceanbase10logservice18ObLogReplayService18get_replay_status_ERKNS_5share6ObLSIDERNS0_19ObReplayStatusGuardEENK5$_466clEPKc.llvm.17313663432882638639 -_ZN9oceanbase6common5guard27DefaultSharedGuardAllocator5allocEl -_ZZN9oceanbase10logservice12ObLogHandler19get_max_decided_scnERNS_5share3SCNEENK5$_402clEPKc.llvm.8183870080057500334 -_ZN9oceanbase6common15ObLinearHashMapINS_5share6ObLSIDEPNS_10logservice14ObReplayStatusENS0_14ShareMemMgrTagEE7shrink_Ev -_ZN9oceanbase6common15ObLinearHashMapINS_5share6ObLSIDEPNS_10logservice14ObReplayStatusENS0_14ShareMemMgrTagEE17load_factor_ctrl_Em -easy_baseth_pool_monitor_func.llvm.17992765816787810246 -_ZN9oceanbase5share20ObZoneReplicaAttrSet6assignERKS1_ -_ZNK9oceanbase5share16ObReplicaAttrSet31get_readonly_replica_attr_arrayEv -_ZN9oceanbase5share16ObReplicaAttrSet5resetEv -_ZN9oceanbase3sql17ObChunkDatumStore8Iterator12get_next_rowERKNS_6common8ObIArrayIPNS0_6ObExprEEERNS0_9ObEvalCtxEPPKNS1_9StoredRowE -_ZNK9oceanbase3sql17ObChunkDatumStore9StoredRow7to_exprILb0EEEiRKNS_6common8ObIArrayIPNS0_6ObExprEEERNS0_9ObEvalCtxE -_ZN9oceanbase3sql17ObChunkDatumStore8Iterator12get_next_rowERPKNS1_9StoredRowE -_ZN9oceanbase3sql17ObChunkDatumStore5Block13get_store_rowERlRPKNS1_9StoredRowE -_ZN9oceanbase3sql17ObChunkDatumStore8Iterator15load_next_blockERNS1_11RowIteratorE -_ZN9oceanbase3sql22ObRawExprInfoExtractor5visitERNS0_18ObColumnRefRawExprE -_ZN9oceanbase6common15ObLinearHashMapINS_5share14ObCascadMemberENS2_15ObDstServerInfoENS0_14ShareMemMgrTagEE16do_foreach_scan_INS2_17ObServerBlacklist18ObMapRemoveFunctorENS6_15DoRemoveIfOnBktIS9_EEEEbmmRT_RT0_ -_ZN9oceanbase6common15ObLinearHashMapINS_5share14ObCascadMemberENS2_15ObDstServerInfoENS0_14ShareMemMgrTagEE16load_access_bkt_EmRPNS6_6BucketE -_ZNK9oceanbase3sql12ObSelectStmt15get_child_stmtsERNS_6common8ObIArrayIPS1_EE -_ZNK9oceanbase5share17ObMasterKeyGetter23get_max_stored_versionsERNS_6common8ObIArrayISt4pairImmEEE -_ZN9oceanbase3sql16ObConfigInfoInPC26load_influence_plan_configEv +_ZNK9oceanbase8observer16ObInnerSQLResult8get_uintElRm +_ZN9oceanbase10rootserver20ObArbitrationService20check_service_epoch_ERNS_6common12ObISQLClientE +_ZN9oceanbase3sql3dtl21ObDtlTenantMemManager17auto_free_on_timeEv +_ZN9oceanbase3sql3dtl22ObDtlChannelMemManager19get_max_mem_percentEv +_ZZN9oceanbase3sql3dtl22ObDtlChannelMemManager17auto_free_on_timeElENK5$_252clEPKc +_ZN9oceanbase3sql3dtl22ObDtlChannelMemManager30get_memstore_limit_percentage_Ev +_ZNK9oceanbase7storage15ObStorageSchema30get_multi_version_column_descsERNS_6common8ObIArrayINS_5share6schema9ObColDescEEE +_ZN9oceanbase11transaction25ObStandbyTimestampService4run1Ev +_ZN9oceanbase11transaction25ObStandbyTimestampService24query_and_update_last_idEv +_ZN9oceanbase6common11ObArrayImplINS_5share14ObLSStatusInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE7destroyEv +_ZN9oceanbase3omt8ObPxPool4run1Ev +__cxa_thread_atexit +_ZNK9oceanbase12blocksstable13ObVarRowIndex3getElRPKcRl _ZN9oceanbase3sql10ObOperator10filter_rowERNS0_9ObEvalCtxERKNS_6common8ObIArrayIPNS0_6ObExprEEERb _ZN9oceanbase3sql18ObRelationalTCFuncILb1ELNS_6common14ObObjTypeClassE2ELS3_1ELNS2_7ObCmpOpE0EE4evalERKNS0_6ObExprERNS0_9ObEvalCtxERNS2_7ObDatumE +_ZN9oceanbase3sql19ObRelationalStrFuncILb1ELNS_6common15ObCollationTypeE45ELb0ELNS2_7ObCmpOpE5EE4evalERKNS0_6ObExprERNS0_9ObEvalCtxERNS2_7ObDatumE _ZN9oceanbase3sql18ObRelationalTCFuncILb1ELNS_6common14ObObjTypeClassE1ELS3_1ELNS2_7ObCmpOpE0EE4evalERKNS0_6ObExprERNS0_9ObEvalCtxERNS2_7ObDatumE -_ZN9oceanbase3sql19ObRelationalStrFuncILb1ELNS_6common15ObCollationTypeE45ELb0ELNS2_7ObCmpOpE0EE4evalERKNS0_6ObExprERNS0_9ObEvalCtxERNS2_7ObDatumE -_ZN9oceanbase3sql13calc_or_exprNERKNS0_6ObExprERNS0_9ObEvalCtxERNS_6common7ObDatumE -_ZN9oceanbase6common11ObSqlString10append_fmtEPKcz -_ZN9oceanbase6common11ObArrayImplINS_5share11ObLSReplicaENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE7destroyEv -_ZN9oceanbase7storage16MemMgrRLockGuardC2ERKNS0_15MemtableMgrLockE -_ZN9oceanbase12blocksstable12MacroBlockId11deserializeEPKclRl -_ZN9oceanbase7storage15ObMultipleMerge26handle_lob_before_fuse_rowEv -_ZN9oceanbase7storage15ObMultipleMerge16fill_lob_locatorERNS_12blocksstable10ObDatumRowE -_ZN9oceanbase7storage18ObLobLocatorHelper19fill_lob_locator_v2ERNS_12blocksstable10ObDatumRowERKNS0_20ObTableAccessContextERKNS0_18ObTableAccessParamE -_ZN9oceanbase6common14ObLobLocatorV216set_payload_dataERKNS0_8ObStringE -_ZN9oceanbase6common14ObLobLocatorV24fillENS0_12ObMemLobTypeERKNS0_19ObMemLobExternFlagsERKNS0_8ObStringEPKNS0_11ObLobCommonEjjb -_ZN9oceanbase7storage18ObLobLocatorHelper15build_rowid_objERNS_12blocksstable10ObDatumRowERNS_6common8ObStringEbRKNS5_8ObIArrayINS_5share6schema9ObColDescEEERKNS8_IiEERKNS5_10ObTabletIDE -_ZN9oceanbase6common13ObSEArrayImplINS_7storage15ObTableHandleV2ELl2ENS0_19ModulePageAllocatorELb0EED2Ev -_ZN9oceanbase6common11ObArrayImplIlNS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIlEENS0_17DefaultItemEncodeIlEEED2Ev -_ZN9oceanbase7storage15ObTxTableGuards13lock_for_readERKNS_11transaction16ObLockForReadArgERbRNS_5share3SCNES6_RNS0_12ObCleanoutOpERNS0_11ObReCheckOpE -_ZN9oceanbase7storage9ObTxTable18check_with_tx_dataERNS0_15ObReadTxDataArgERNS0_21ObITxDataCheckFunctorE -_ZN9oceanbase6common9ObKVCacheINS_7storage16ObTxDataCacheKeyENS2_18ObTxDataCacheValueEE3getERKS3_RPKS4_RNS0_15ObKVCacheHandleE -_ZN9oceanbase11transaction12ObLSTxCtxMgr18check_with_tx_dataERKNS0_9ObTransIDERNS_7storage21ObITxDataCheckFunctorE -_ZN9oceanbase7storage26ObCleanoutNothingOperationclERKNS0_8ObTxDataEPNS0_9ObTxCCCtxE -_ZN9oceanbase11transaction12ObLSTxCtxMgr11get_tx_ctx_ERKNS0_9ObTransIDEbRPNS0_14ObPartTransCtxE -_ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocENS_6common10SpinRWLockELl16384EE3getERKS2_RPS3_ -_ZN9oceanbase7storage9ObTxTable22check_state_and_epoch_ENS_11transaction9ObTransIDElbRi -_ZN9oceanbase7storage18LockForReadFunctorclERKNS0_8ObTxDataEPNS0_9ObTxCCCtxE -_ZN9oceanbase3lib6_SBaseD2Ev -__cxa_thread_atexit -_ZN9oceanbase3sql12ObQueryRange19create_new_key_partEv -_ZN9oceanbase3lib13ObResourceMgr23get_tenant_resource_mgrEmRNS0_25ObTenantResourceMgrHandleE -_ZN9oceanbase4palf16LogSlidingWindow28check_and_switch_freeze_modeEv -_ZN9oceanbase10compaction28ObCompactionScheduleIterator17get_cur_ls_handleERNS_7storage10ObLSHandleE +_ZN9oceanbase3sql18ObRelationalTCFuncILb1ELNS_6common14ObObjTypeClassE5ELS3_5ELNS2_7ObCmpOpE2EE4evalERKNS0_6ObExprERNS0_9ObEvalCtxERNS2_7ObDatumE +_ZN9oceanbase3sql18ObRelationalTCFuncILb1ELNS_6common14ObObjTypeClassE2ELS3_2ELNS2_7ObCmpOpE1EE4evalERKNS0_6ObExprERNS0_9ObEvalCtxERNS2_7ObDatumE _ZNK9oceanbase5share6schema13ObTableSchema24get_generated_column_idsERNS_6common8ObIArrayImEE -_ZNK9oceanbase12blocksstable12MacroBlockId9serializeEPclRl -_ZN9oceanbase4palf13LogConfigMeta5resetEv -_ZNK9oceanbase7storage3mds12MdsTableBase16advance_state_toENS2_5StateE -_ZN9oceanbase6common4hash11ObHashTableINS_5share6ObLSIDENS1_11HashMapPairIS4_lEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS6_EELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv -_ZN9oceanbase3sql16ObGbyBloomFilter5existEm -_ZN9oceanbase6common14logdata_printfEPclRlPKcz -_ZN9oceanbase11transaction16ObTxRetainCtxMgr16for_each_remove_EMS1_FiPNS0_24ObIRetainCtxCheckFunctorERbPNS_7storage4ObLSEES7_l -_ZN9oceanbase6common21ObDetectManagerThread6detectEv -_ZN9oceanbase6common4hash11ObHashTableINS0_14ObDetectableIdENS1_11HashMapPairIS3_NS1_11HashNullObjEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS6_EELi88ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE5beginEv -_ZN9oceanbase12blocksstable19ObMicroBlockDecoder22update_cached_decodersEPclPKcS4_l -_ZN9oceanbase7storage18ObLSTabletIteratorD1Ev -_ZN9oceanbase3sql8ObDASRef5reuseEv -_ZN9oceanbase3sql12ObSortOpImpl13after_add_rowEPNS0_17ObChunkDatumStore9StoredRowE -_ZN9oceanbase5share6schema8ObSchema13get_allocatorEv -_ZN9oceanbase5share17ObPrimaryZoneUtil29get_tenant_primary_zone_arrayERKNS0_6schema14ObTenantSchemaERNS_6common8ObIArrayINS6_19ObFixedLengthStringILl128EEEEE -_ZN9oceanbase6common11ObArrayImplINS_5share11ReplicaAttrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEED2Ev -_ZN9oceanbase6common11ObArrayImplINS0_19ObFixedLengthStringILl128EEENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE9push_backERKS3_ -_ZN9oceanbase5share17ObPrimaryZoneUtil29get_tenant_primary_zone_scoreERKNS0_6schema14ObTenantSchemaERNS2_13ObPrimaryZoneERNS_6common8ObIArrayINS0_20ObZoneReplicaAttrSetEEERNS9_INS2_11ObZoneScoreEEE -_ZN9oceanbase6common13ObSEArrayImplINS0_19ObFixedLengthStringILl128EEELl5ENS0_19ModulePageAllocatorELb0EE5resetEv -_ZNK9oceanbase5share6schema14ObTenantSchema27get_zone_replica_attr_arrayERNS_6common8ObIArrayINS0_20ObZoneReplicaAttrSetEEE -_ZNK9oceanbase5share20SchemaReplicaAttrSet31get_readonly_replica_attr_arrayEv -_ZN9oceanbase6common11ObArrayImplINS0_19ObFixedLengthStringILl128EEENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE10extend_bufEl -_ZN9oceanbase5share16ObReplicaAttrSet6assignERKNS0_18BaseReplicaAttrSetE _ZN9oceanbase6common11ObArrayImplINS_5share11ReplicaAttrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE6assignERKNS0_8ObIArrayIS3_EE _ZN9oceanbase6common11ObArrayImplINS_5share11ReplicaAttrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE7reserveEl _ZN9oceanbase6common11ObArrayImplINS_5share11ReplicaAttrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE10extend_bufEl -_ZN9oceanbase6common19ObFixedLengthStringILl128EEaSERKS2_ -_ZN9oceanbase5share17ObPrimaryZoneUtil43convert_normal_primary_zone_into_integratedERKNS_6common8ObIArrayINS0_6schema11ObZoneScoreEEERKNS3_INS2_19ObFixedLengthStringILl128EEEEERKNS3_INS0_20ObZoneReplicaAttrSetEEERS6_RSA_ -_ZN9oceanbase6common15ObTimeConverter21datetime_to_timestampElPKNS0_14ObTimeZoneInfoERl -ev_invoke_pending -_ZL19mysql_easy_timer_cbP7ev_loopP8ev_timeri -_ZN9oceanbase7storage21ObStorageColumnSchema21deep_copy_default_valERNS_6common12ObIAllocatorERKNS2_5ObObjE -_ZN9oceanbase6common13ObMClockQueue13push_phyqueueEPNS0_10ObPhyQueueE -_ZN9oceanbase6common16ObBinaryHeapBaseIPNS0_10ObPhyQueueENS0_13ObMClockQueue11HeapCompareIS2_XadL_ZNS2_20group_limitation_ts_EEEEELl50EE4pushERKS3_ -_ZN9oceanbase3sql17ObFastParserMysql23process_zero_identifierEv -_ZN9oceanbase6common11ObArrayImplINS_5share19ObLSPrimaryZoneInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE7destroyEv -_ZN9oceanbase6common11ObArrayImplIPNS_10rootserver14DRUnitStatInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEE9push_backERKS4_ -_ZN9oceanbase3omt17ObTenantConfigMgr18get_lease_responseERNS_5share15ObLeaseResponseE -_ZNK9oceanbase6common4hash18ObPointerHashArrayINS_5share6schema13ObColumnIdKeyEPNS4_16ObColumnSchemaV2ENS4_14ObGetColumnKeyEE14get_refactoredERKS5_RS7_ -_ZN9oceanbase6common15ObLinearHashMapINS_5share6ObLSIDEPNS_10logservice13ObApplyStatusENS0_14ShareMemMgrTagEE16load_access_bkt_ERKS3_RmRPNS8_6BucketE -_ZN9oceanbase5share23ObLSReplicaFilterHolder5resetEv -_ZN9oceanbase6common6DCHashINS_5share8detector13UserBinaryKeyELl8EE15do_pending_taskEPNS0_7DCArrayE -_ZN9oceanbase6common15ObLinearHashMapINS_5share6ObLSIDEPNS_10logservice14ObReplayStatusENS0_14ShareMemMgrTagEE20unset_foreach_L_lmt_Em -_ZN9oceanbase6common15ObLinearHashMapINS_5share6ObLSIDEPNS_10logservice13ObApplyStatusENS0_14ShareMemMgrTagEE7shrink_Ev -_ZN9oceanbase6common16ObFixedArrayImplINS_3sql12ObQueryRange10ObEqualOffENS0_12ObIAllocatorEE6assignERKNS0_8ObIArrayIS4_EE -_ZZN9oceanbase10logservice27ObLogExternalStorageHandler6resizeEllENK5$_791clEPKc -_ZN9oceanbase6common11ObArrayImplINS_5share6ObLSIDENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE9push_backERKS3_ -_ZN9oceanbase3sql18ObRawExprUniqueSet6appendINS0_9ObRawExprEEEiPT_ -_ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE20free_remain_one_pageEv -_ZNK9oceanbase6common12ObConfigItem3strEv -_ZNK9oceanbase10rootserver20ObRsMasterKeyManager25get_all_tenant_master_keyERKNS_6common19ObFixedLengthStringILl128EEERNS2_8ObIArrayISt4pairImNS_5share15ObLeaseResponse14TLRpKeyVersionEEEE -_ZNK9oceanbase5share24SchemaZoneReplicaAttrSet21get_paxos_replica_numEv -_ZN9oceanbase8memtable23ObMemtableMScanIterator18inner_get_next_rowERPKNS_12blocksstable10ObDatumRowE -_ZN9oceanbase8memtable23ObMemtableMScanIterator21get_next_row_for_scanERPKNS_12blocksstable10ObDatumRowE -_ZNK9oceanbase4palf10LogStorage18read_block_header_EmRNS0_14LogBlockHeaderE -_ZNK9oceanbase4palf10LogStorage38get_readable_log_tail_guarded_by_lock_ERNS0_3LSNERl -_ZN9oceanbase4palf14LogBlockHeader11deserializeEPKclRl -_ZNK9oceanbase4palf10LogStorage24check_read_out_of_bound_ERKmlb -_ZN9oceanbase6common15ObSyncIOChannel4run1Ev -_ZN9oceanbase6common16ObFixedArrayImplINS_5share6schema9ObColDescENS0_12ObIAllocatorEE6assignERKNS0_8ObIArrayIS4_EE -_ZNK9oceanbase4palf22PalfDiskOptionsWrapper34get_disk_opts_for_recycling_blocksEv -_ZN9oceanbase5obrpc15ObPocClientStub15check_blacklistERKNS_6common6ObAddrE -_ZN9oceanbase5obrpc14ObNetKeepAlive8in_blackERK11easy_addr_tRbPNS0_18ObNetKeepAliveDataE -easy_hash_code +_ZN9oceanbase6common4hash11ObHashTableIlNS1_11HashMapPairIllEENS1_9hash_funcIlEENS1_8equal_toIlEENS1_10pair_firstIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS4_EELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv +_ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIllEEEELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEE4freeEPS6_ +_ZNK9oceanbase7storage22ObSharedBlocksWriteCtx8is_validEv +_ULx86_64_dwarf_read_encoded_pointer +_ZN9oceanbase8observer14ObSrvRpcXlator9translateERNS_3rpc9ObRequestERPNS2_5frame14ObReqProcessorE +_ZN9oceanbase6common11ObArrayImplINS_11transaction16ObTransIDAndAddrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE10extend_bufEl +_ZNK9oceanbase3lib17ObMallocAllocator29print_tenant_ctx_memory_usageEm +_ZNK9oceanbase3lib20ObTenantCtxAllocator11print_usageEv +_ZN9oceanbase6common13ObLatchRGuardD2Ev _ZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS0_7ObLabelEPNS_6common9LabelItemEEE _ZNSt17_Function_handlerIFiRN9oceanbase3lib7ObLabelEPNS0_6common9LabelItemEEZNKS1_20ObTenantCtxAllocator11print_usageEvE4$_72E9_M_invokeERKSt9_Any_dataS3_OS6_ _ZN9oceanbase6common12ObMemoryDumpC2Ev -_ZZN9oceanbase7storage9ObFreezer33get_max_consequent_callbacked_scnERNS_5share3SCNEENK5$_153clEPKc.llvm.11485315993861188692 -_ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImNS1_11HashNullObjEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19ReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKmRS5_l -_ZNK9oceanbase5share6schema11ObSchemaMgr18get_tenant_schemasERNS_6common8ObIArrayIPKNS1_20ObSimpleTenantSchemaEEE -_ZN9oceanbase6common11ObArrayImplIPKNS_5share6schema20ObSimpleTenantSchemaENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS6_EENS0_22NotImplementItemEncodeIS6_EEE9push_backERKS6_ -_ZN9oceanbase5share11ObShareUtil41check_compat_version_for_readonly_replicaEmRb -_ZN9oceanbase3sql18ObExprCurTimestamp18eval_cur_timestampERKNS0_6ObExprERNS0_9ObEvalCtxERNS_6common7ObDatumE -_ZNK9oceanbase5share8ObLSInfo4findERKNS_6common6ObAddrERPKNS0_11ObLSReplicaE -_ZL12pkts_evfd_cbP6sock_t +_ZSt16__introsort_loopIPZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS1_7ObLabelEPNS0_6common9LabelItemEEEE11ItemWrapperlN9__gnu_cxx5__ops15_Iter_comp_iterIZNKS2_10iter_labelESA_E4$_69EEEvT_SI_T0_T1_ +_ZNK9oceanbase5share6schema11ObSchemaMgr14get_tenant_idsERNS_6common8ObIArrayImEE +_ZN9oceanbase6common11ObArrayImplImNS0_18ObWrapperAllocatorELb0ENS0_22ObArrayDefaultCallBackImEENS0_22NotImplementItemEncodeImEEE9push_backERKm +_ZN9oceanbase6common14logdata_printfEPclRlPKcz +_ZN9oceanbase6common9ObIOTuner4run1Ev +_ZN9oceanbase6common13ObSEArrayImplINS0_9ObSEArrayIdLl21ENS0_19ModulePageAllocatorELb0EEELl2ES3_Lb0EE6assignERKNS0_8ObIArrayIS4_EE +_ZN9oceanbase6common12ObSysIOUsage18calculate_io_usageEv +_ZN9oceanbase6common13ObSEArrayImplINS0_9ObSEArrayIdLl21ENS0_19ModulePageAllocatorELb0EEELl2ES3_Lb0EED2Ev +_ZN9oceanbase6common11ObArrayImplImNS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackImEENS0_22NotImplementItemEncodeImEEE5resetEv +_ZN9oceanbase6common13ObSEArrayImplIdLl21ENS0_19ModulePageAllocatorELb0EE7reserveEl +_ZN9oceanbase6common11ObIOManager14get_tenant_idsERNS0_8ObIArrayImEE +_ZN9oceanbase6common11ObArrayImplImNS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackImEENS0_22NotImplementItemEncodeImEEE9push_backERKm +_ZN9oceanbase6common11ObArrayImplImNS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackImEENS0_22NotImplementItemEncodeImEEE10extend_bufEl +_ZN9oceanbase6common9ObIOUsage18calculate_io_usageEv +_ZN9oceanbase6common13ObSEArrayImplINS0_9ObSEArrayIdLl21ENS0_19ModulePageAllocatorELb0EEELl2ES3_Lb0EE5reuseEv +_ZN9oceanbase6common13ObSEArrayImplINS0_9ObSEArrayIdLl8ENS0_19ModulePageAllocatorELb0EEELl2ES3_Lb0EE6assignERKNS0_8ObIArrayIS4_EE +_ZN9oceanbase6common13ObSEArrayImplINS0_9ObSEArrayIdLl8ENS0_19ModulePageAllocatorELb0EEELl2ES3_Lb0EE5reuseEv +_ZZN9oceanbase6common9ObIOTuner19print_sender_statusEvENK5$_226clEPKc +_ZN9oceanbase3sql16ObGbyBloomFilter4initEll +_ZN9oceanbase4palf13LogConfigInfoD2Ev +_ZN9oceanbase3lib22get_tenant_memory_holdEm +_ZN9oceanbase7storage17ObLSTabletService17direct_get_tabletERKNS_6common10ObTabletIDERNS0_14ObTabletHandleE +_ZN9oceanbase6common11ObArrayImplINS0_6ObAddrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_22NotImplementItemEncodeIS2_EEE10extend_bufEl +_ZN9oceanbase8memtable23ObMemtableMScanIterator18inner_get_next_rowERPKNS_12blocksstable10ObDatumRowE +_ZN9oceanbase8memtable23ObMemtableMScanIterator13is_range_scanERb +_ZN9oceanbase7archive16ObArchiveFetcher4run1Ev +_ZN9oceanbase4palf8PalfStat5resetEv +_ZN9oceanbase7storage18ObLSTabletIterator15get_next_tabletERNS0_14ObTabletHandleE +_ZZN9oceanbase3sql11ObPlanCache14get_plan_cacheERNS0_14ObILibCacheCtxERNS0_15ObCacheObjGuardEENK5$_207clEPKc.llvm.15555104687725353391 +_ZN9oceanbase10rootserver10ObDRWorker17LocalityAlignmentD2Ev +_ZN9oceanbase6common4hash9ObHashMapINS0_19ObFixedLengthStringILl128EEEPNS_10rootserver10ObDRWorker16ReplicaDescArrayENS1_19NoPthreadDefendModeENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS4_S8_EEEELi40ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev +_ZNK9oceanbase12blocksstable9ObSSTable18get_deep_copy_sizeEv +_ZN9oceanbase5share18ObCompatModeGetter21get_table_compat_modeEmlRNS_3lib6Worker10CompatModeE +_ZN9oceanbase10rootserver22ObBalanceLSPrimaryZone27need_update_ls_primary_zoneERKNS_5share19ObLSPrimaryZoneInfoERKNS_6common19ObFixedLengthStringILl128EEERKNS6_11ObSqlStringERb +_ZN9oceanbase6common15ObLinearHashMapINS_12blocksstable12MacroBlockIdENS2_14ObBlockManager9BlockInfoENS0_14ShareMemMgrTagEE16do_foreach_scan_INS4_25GetOldestHoldBlockFunctorENS7_14DoForeachOnBktIS9_EEEEbmmRT_RT0_ +_ZN9oceanbase12blocksstable14ObBlockManager25GetOldestHoldBlockFunctorclERKNS0_12MacroBlockIdERKNS1_9BlockInfoE +_ZN9oceanbase8observer20ObRootServiceMonitor4run1Ev +_ZN9oceanbase8observer20ObRootServiceMonitor20monitor_root_serviceEv +_ZZN9oceanbase10logservice12ObLogService9open_palfERKNS_5share6ObLSIDERNS_4palf15PalfHandleGuardEENK5$_477clEPKc +_ZNK9oceanbase10logservice12ObLogService16check_palf_existERKNS_5share6ObLSIDERb +_ZN9oceanbase4palf7PalfEnv5closeERNS0_10PalfHandleE +_ZN9oceanbase4palf10PalfHandle23unregister_file_size_cbEv +_ZN9oceanbase4palf10PalfHandle25unregister_role_change_cbEv +_ZN9oceanbase4palf10PalfHandle21unregister_rebuild_cbEv +_ZZN9oceanbase4palf10PalfHandle21unregister_rebuild_cbEvENK5$_907clEPKc.llvm.1044425045905407792 +_ZZN9oceanbase4palf10PalfHandle23unregister_file_size_cbEvENK5$_897clEPKc.llvm.1044425045905407792 +_ZZN9oceanbase4palf10PalfHandle25unregister_role_change_cbEvENK5$_902clEPKc +_ZNK9oceanbase5share16ObServerTraceMap16find_server_infoERKNS_6common6ObAddrERNS0_19ObServerInfoInTableE +_ZN9oceanbase6common13serialization6encodeImlEEiPclRlRKSt4pairIT_T0_E +_ZN9oceanbase6common11ObArrayImplINS_5share8ObLSAttrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE9push_backERKS3_ +_ZN9oceanbase6common4hash11ObHashTableINS0_6ObAddrENS1_11HashMapPairIS3_lEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi88ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv +_ZN9oceanbase3sql17ObFastParserMysql23process_zero_identifierEv +_ZN9oceanbase3sql13ObTableLockOp10inner_openEv +_ZN9oceanbase3sql13ObTableLockOp15init_lock_rtdefEv +_ZN9oceanbase6common23ObSingleConnectionProxy7connectEmiPNS0_12ObISQLClientE +_ZN9oceanbase6common13ObSEArrayImplINS_5share19ObLSPrimaryZoneInfoELl1ENS0_19ModulePageAllocatorELb0EE9push_backERKS3_ +_ZN9oceanbase5share19ObLSPrimaryZoneInfo6assignERKS1_ _ZN9oceanbase5obrpc18ObRpcProcessorBase3runEv -_ZN9oceanbase4palf26ElectionAcceptResponseMsgP13process_impl_ILb1ELb1EEEiv -_ZN9oceanbase4palf14PalfHandleImpl23handle_election_messageERKNS0_8election25ElectionAcceptResponseMsgE -_ZN9oceanbase4palf17LogRequestHandler14handle_requestINS0_8election25ElectionAcceptResponseMsgEEEilRKNS_6common6ObAddrERKT_ +_ZN9oceanbase5obrpc14ObRpcProcessorINS0_13LogRpcProxyV25ObRpcILNS0_15ObRpcPacketCodeE5386EvEEE11encode_baseEPclRl +_ZN9oceanbase5obrpc14ObRpcProcessorINS0_13LogRpcProxyV25ObRpcILNS0_15ObRpcPacketCodeE5387EvEEE11decode_baseEPKclRl _ZN9oceanbase4palf25ElectionAcceptRequestMsgP13process_impl_ILb1ELb1EEEiv _ZN9oceanbase4palf17LogRequestHandler14handle_requestINS0_8election24ElectionAcceptRequestMsgEEEilRKNS_6common6ObAddrERKT_ -_ZNK9oceanbase4palf8election15ElectionMsgBase8is_validEv +_ZN9oceanbase5obrpc18ObRpcProcessorBase16check_cluster_idEv +_ZN9oceanbase4palf26ElectionAcceptResponseMsgP13process_impl_ILb1ELb1EEEiv +_ZN9oceanbase4palf14PalfHandleImpl23handle_election_messageERKNS0_8election25ElectionAcceptResponseMsgE +_ZN9oceanbase5obrpc18ObRpcProcessorBase13after_processEi +_ZN9oceanbase4palf19__get_palf_env_implEmRPNS0_12IPalfEnvImplEb +_ZN9oceanbase5obrpc20check_arb_white_listElRb _ZN9oceanbase4palf8election12ElectionImpl14handle_messageERKNS1_24ElectionAcceptRequestMsgE -_ZNK9oceanbase4palf8election12ElectionImpl5send_ERKNS1_25ElectionAcceptResponseMsgE _ZN9oceanbase4palf8election31ElectionAcceptResponseMsgMiddle12set_acceptedElPKNS1_16ElectionPriorityE -_ZN9oceanbase4palf8election12ElectionImpl17refresh_priority_Ev +_ZNK9oceanbase4palf8election12ElectionImpl5send_ERKNS1_25ElectionAcceptResponseMsgE _ZNK9oceanbase10logservice11coordinator20ElectionPriorityImpl9serializeEPclRl _ZN9oceanbase10logservice11coordinator16SerializeFunctorclINS1_10PriorityV0EEEiRKT_ +_ZN9oceanbase10logservice11coordinator16SerializeFunctorclINS1_10PriorityV1EEEiRKT_ +_ZN9oceanbase4palf8election12ElectionImpl17refresh_priority_Ev _ZN9oceanbase10logservice11coordinator20ElectionPriorityImpl7refreshEv _ZN9oceanbase10logservice11coordinator14RefeshPriorityclINS1_10PriorityV1EEEiRT_ -_ZN9oceanbase4palf7PalfEnv5closeERNS0_10PalfHandleE -_ZN9oceanbase4palf10PalfHandle25unregister_role_change_cbEv -_ZN9oceanbase4palf10PalfHandle21unregister_rebuild_cbEv -_ZN9oceanbase4palf10PalfHandle23unregister_file_size_cbEv -_ZZN9oceanbase4palf10PalfHandle25unregister_role_change_cbEvENK5$_897clEPKc -_ZZN9oceanbase4palf10PalfHandle23unregister_file_size_cbEvENK5$_892clEPKc.llvm.456594663833244305 -_ZZN9oceanbase4palf10PalfHandle21unregister_rebuild_cbEvENK5$_902clEPKc.llvm.456594663833244305 -_ZN9oceanbase10logservice11coordinator14RefeshPriorityclINS1_10PriorityV0EEEiRT_ _ZN9oceanbase10logservice11coordinator10PriorityV18refresh_ERKNS_5share6ObLSIDE _ZN9oceanbase6common5occam26ObOccamTimeGuardDetectHung5clickEt _ZN9oceanbase10logservice11coordinator17ObFailureDetector25get_specified_level_eventENS1_12FailureLevelERNS_6common8ObIArrayINS1_12FailureEventEEE -_ZN9oceanbase5obrpc18ObRpcProcessorBase7cleanupEv -_ZN9oceanbase3rpc11RpcStatBulkILi10EE9add_pieceERKNS0_12RpcStatPieceE -_ZN9oceanbase3rpc11RpcStatItem9add_pieceERKNS0_12RpcStatPieceE -_ZN9oceanbase6common7obtuple15ObTupleBaseBaseIJllbNS0_7ObTupleIJbNS0_14ObStringHolderEEEEbbbEE7assign_ILi3EEEiRKSt5tupleIJllbS5_bbbEE -_ZN9oceanbase5obrpc18ObRpcProcessorBase13part_responseEib -_ZN9oceanbase5obrpc23ObPocRpcRequestOperator21alloc_response_bufferEPNS_3rpc9ObRequestEl -_ZN9oceanbase5obrpc18ObRpcProcessorBase11do_responseERKNS1_8ResponseE -_ZN9oceanbase10logservice11coordinator16SerializeFunctorclINS1_10PriorityV1EEEiRKT_ -_ZN9oceanbase6common13serialization14encoded_lengthINS0_9ObSEArrayINS_10logservice11coordinator12FailureEventELl3ENS0_19ModulePageAllocatorELb0EEEEElRKT_ -_ZNK9oceanbase10logservice11coordinator10PriorityV09serializeEPclRl +_ZN9oceanbase10logservice11coordinator14RefeshPriorityclINS1_10PriorityV0EEEiRT_ +_ZZN9oceanbase4palf26ElectionAcceptResponseMsgP13process_impl_ILb1ELb1EEEivENKUlPKcE0_clES4_ +_ZN9oceanbase4palf17LogRequestHandler14handle_requestINS0_8election25ElectionAcceptResponseMsgEEEilRKNS_6common6ObAddrERKT_ +_ZN9oceanbase6common11ObArrayImplIlNS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIlEENS0_22NotImplementItemEncodeIlEEE10extend_bufEl _ZN9oceanbase4palf8election12ElectionImpl14handle_messageERKNS1_25ElectionAcceptResponseMsgE -_ZN9oceanbase6common5occam20ObOccamFastTimeGuardD2Ev _ZN9oceanbase4palf8election16ElectionProposer31leader_takeover_if_lease_valid_ENS1_16RoleChangeReasonE -_ZNK9oceanbase5obrpc15ObRpcResultCode9serializeEPclRl +_ZN9oceanbase4palf8election20MemberListWithStates29get_server_idx_in_memberlist_ERKNS_6common6ObAddrERl _ZN9oceanbase5obrpc18ObRpcProcessorBase11deserializeEv _ZN9oceanbase5trace4UUID11deserializeEPKclRl -_ZN9oceanbase4palf8election30ElectionAcceptRequestMsgMiddle11deserializeEPKclRl -_ZN9oceanbase4palf8election30ElectionAcceptRequestMsgMiddle12deserialize_EPKclRl -_ZN9oceanbase4palf16LogConfigVersion11deserializeEPKclRl -_ZN9oceanbase3lib16ObRuntimeContext11deserializeEPKclRl +_ZN9oceanbase5obrpc18ObRpcProcessorBase13part_responseEib +_ZN9oceanbase5obrpc18ObRpcProcessorBase11do_responseERKNS1_8ResponseE +_ZN9oceanbase5obrpc23ObPocRpcRequestOperator15response_resultEPNS_3rpc9ObRequestEPNS0_11ObRpcPacketE +_ZN9oceanbase5obrpc24ObPocServerHandleContext4respEPNS0_11ObRpcPacketE +_ZN9oceanbase5obrpc17ObRpcPacketHeader9serializeEPclRl +pkts_resp +_ZNK9oceanbase5obrpc15ObRpcResultCode19get_serialize_size_Ev +_ZN9oceanbase4palf16LogRpcPacketImplINS0_8election24ElectionAcceptRequestMsgEE11deserializeEPKclRl +_ZN9oceanbase4palf8election38print_debug_ts_if_reach_warn_thresholdERKNS1_15ElectionMsgBaseEl _ZN9oceanbase4palf8election16ElectionProposer42reschedule_or_register_prepare_task_after_El _ZN9oceanbase6common26ObOccamTimerTaskRAIIHandle16reschedule_afterEl +_ZNK9oceanbase6common26ObOccamTimerTaskRAIIHandle10is_runningEv +_ZNK9oceanbase5obrpc15ObRpcResultCode9serializeEPclRl +_ZNK9oceanbase6common13ObSEArrayImplINS0_15ObWarningBuffer11WarningItemELl1ENS0_19ModulePageAllocatorELb0EE9serializeEPclRl _ZN9oceanbase6common26ObOccamTimerTaskRAIIHandle27remove_task_from_timewheel_Ev +_ZN9oceanbase4palf8election30ElectionAcceptRequestMsgMiddle11deserializeEPKclRl +_ZN9oceanbase4palf8election30ElectionAcceptRequestMsgMiddle12deserialize_EPKclRl _ZN9oceanbase5obrpc26ObUpdateTenantInfoCacheArg11deserializeEPKclRl +_ZNK9oceanbase5share15ObLeaseResponse9serializeEPclRl _ZN9oceanbase5share15ObAllTenantInfo11deserializeEPKclRl -_ZN9oceanbase5share3SCN11deserializeEPKclRl -_ZN9oceanbase5share12ObTenantRole11deserializeEPKclRl -_ZNK9oceanbase5share23ObLSReplicaFilterHolder5checkERKNS0_11ObLSReplicaERb -_ZN9oceanbase7storage19ObFixedMetaObjArrayINS_5share6schema9ObColDescEE6assignERKNS_6common8ObIArrayIS4_EE -_ZNK9oceanbase6common14ObLobLocatorV216get_disk_locatorERPNS0_11ObLobCommonE -_ZN9oceanbase7storage3mds11MdsDumpNode5resetEv -_ZNK9oceanbase7storage12ObTabletMeta8is_validEv -_ZN9oceanbase6common14ObKVCacheStore14alloc_mbhandleERNS0_13ObKVCacheInstENS0_15ObKVCachePolicyElRPNS0_18ObKVMemBlockHandleE -_ZN9oceanbase3lib17ObTenantMemoryMgr14alloc_cache_mbEl -_ZNK9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS_3sql12ObPsStmtInfoEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_23SpinReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE18foreach_refactoredINS4_19ObGetClosedStmtIdOpEEEiRT_ -_ZN9oceanbase3sql9ObKeyPart14try_cast_valueERKNS_6common20ObDataTypeCastParamsERNS2_12ObIAllocatorERKNS0_12ObKeyPartPosERNS2_5ObObjERl -_ZN9oceanbase3sql16ObFastParserBase31process_identifier_begin_with_tERb -_ZN9oceanbase6common15ObSegmentBitSetILl65408ENS0_19ModulePageAllocatorEE10add_memberEl -_ZN9oceanbase3sql17ObChunkDatumStore8Iterator14get_next_batchEPPKNS1_9StoredRowElRl -_ZN9oceanbase3sql17ObChunkDatumStore11RowIterator14get_next_batchEPPKNS1_9StoredRowElRl -_ZN9oceanbase3sql17ObChunkDatumStore13get_store_rowERNS1_11RowIteratorERPKNS1_9StoredRowE -_ZN9oceanbase6common4hash11ObHashTableIlNS1_11HashMapPairIllEENS1_9hash_funcIlEENS1_8equal_toIlEENS1_10pair_firstIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS4_EELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKlRS4_l -_ZN9oceanbase3sql13ObMergeJoinOp18inner_get_next_rowEv -_ZN9oceanbase3sql13ObMergeJoinOp19full_cache_func_endEv -_ZN9oceanbase3sql13ObMergeJoinOp24fill_cache_func_diff_endEv -_ZN9oceanbase3sql13ObMergeJoinOp19empty_cache_operateEv -_ZN9oceanbase3sql17ObChunkDatumStore15ShadowStoredRow11shadow_copyERKNS_6common8ObIArrayIPNS0_6ObExprEEERNS0_9ObEvalCtxE -run_cfi_program -_ZN9oceanbase3sql13AllocOpHelperILi6EE5allocERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputElRPNS0_10ObOperatorE -_ZZN9oceanbase5obrpc10ObGtiRPCCBILNS0_15ObRpcPacketCodeE1632EE8process_ERKNS0_14ObGtiRpcResultERKNS_6common6ObAddrERNS0_15ObRpcResultCodeEENKUlPKcE5_clESE_ -_ZZN9oceanbase10rootserver14ObTenantLSInfo11gather_statEvENK6$_1976clEPKc -_ZN9oceanbase6common16ObFixedArrayImplINS_3sql15ObTableRowCountENS0_12ObIAllocatorEE9push_backERKS3_ -_ZN9oceanbase6common16ObFixedArrayImplINS_3sql15ObTableRowCountENS0_12ObIAllocatorEE4initEl -_ZN9oceanbase6common16ObFixedArrayImplINS_3sql15ObTableRowCountENS0_12ObIAllocatorEE7reserveEl -_ZN9oceanbase6common4hash9ObHashMapImNS_10rootserver20ObRsMasterKeyManager14VersionCounterENS1_24LatchReadWriteDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS5_EEEELi97ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev -_ZN9oceanbase5share21ObSyslogPerErrLimiter10do_acquireElii -_ZN9oceanbase6common11ObArrayImplINS_5share19ObLSPrimaryZoneInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE9push_backERKS3_ -_ZN9oceanbase5share19ObLSPrimaryZoneInfo6assignERKS1_ -_ZN9oceanbase6common4hash9ObHashMapImNS_3sql13ObExprNodeMap11ExprCounterENS1_19NoPthreadDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS5_EEEELi97ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev -_ZN9oceanbase6common4hash9ObHashMapINS_3sql11EqualSetKeyElNS1_19NoPthreadDefendModeENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS4_lEEEELi97ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev -_ZN9oceanbase10rootserver18ObHeartbeatService21process_hb_responses_Ev -_ZN9oceanbase6common4hash11ObHashTableINS0_6ObAddrENS1_11HashMapPairIS3_NS_5share14ObServerHBInfoEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi54ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE5beginEv -_ZN9oceanbase5share8ObLSInfo15init_by_replicaERKNS0_11ObLSReplicaE -_ZNK9oceanbase5share8ObLSInfo9find_idx_ERKNS0_11ObLSReplicaERl -_ZNK9oceanbase5share8ObLSInfo9find_idx_ERKNS_6common6ObAddrERl -_ZNK9oceanbase3sql23ObPreCalcExprConstraint14check_is_matchERKNS_6common10ObObjParamERb -_ZN9oceanbase8keybtree10ScanHandleINS_8memtable20ObStoreRowkeyWrapperEPNS2_9ObMvccRowEE13scan_backwardEbPl -_ZN9oceanbase3sql3dtl21ObDtlTenantMemManager17auto_free_on_timeEv -_ZN9oceanbase12blocksstable19ObMicroBufferWriter5reuseEv -_ZN9oceanbase7storage8ObLSMeta19ObSpinLockTimeGuardC2ERNS_6common10ObSpinLockEl -_ZN9oceanbase8observer16ObAgentTableBase17construct_columnsEmRNS_6common11ObSqlStringE -_ZZN9oceanbase8observer27init_srv_xlator_for_palfenvEPNS0_14ObSrvRpcXlatorEEN6$_16278__invokeERKNS0_15ObGlobalContextERPNS_3rpc5frame14ObReqProcessorERNS_5obrpc19ObRpcSessionHandlerE -_ZN9oceanbase3omt17ObTenantConfigMgr17get_lease_requestERNS_5share14ObLeaseRequestE -_ZN9oceanbase7storage16ObStorageLogItem17fill_batch_headerEisl -_ZN9oceanbase8observer18ObTableLoadManager17get_all_table_ctxERNS_6common8ObIArrayIPNS0_19ObTableLoadTableCtxEEE -_ZN9oceanbase6common12ObDedupQueue10copy_task_ERKNS0_12IObDedupTaskE -_ZN9oceanbase7storage22ObSharedBlocksWriteCtx5clearEv -_ZNK9oceanbase4palf8election15ElectionMsgBase10serialize_EPclRl -_ZNK9oceanbase4palf8election18ElectionMsgDebugTs9serializeEPclRl -_ZNK9oceanbase4palf8election18ElectionMsgDebugTs10serialize_EPclRl -_ZN9oceanbase10rootserver20ObAllTenantInfoCache15get_tenant_infoERNS_5share15ObAllTenantInfoERlS5_ -_ZN9oceanbase12blocksstable18ObMicroBlockReader4initERKNS0_16ObMicroBlockDataEPKNS0_19ObStorageDatumUtilsE +_ZN9oceanbase5share17ObPrimaryZoneUtil43convert_normal_primary_zone_into_integratedERKNS_6common8ObIArrayINS0_6schema11ObZoneScoreEEERKNS3_INS2_19ObFixedLengthStringILl128EEEEERKNS3_INS0_20ObZoneReplicaAttrSetEEERS6_RSA_ +_ZN9oceanbase6common11ObArrayImplINS0_19ObFixedLengthStringILl128EEENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE9push_backERKS3_ +_ZN9oceanbase12blocksstableL21acquire_local_decoderINS0_24ObIntegerBaseDiffDecoderEEEiRNS0_13ObDecoderPoolERKNS0_18ObMicroBlockHeaderERKNS0_14ObColumnHeaderEPKcRPKNS0_16ObIColumnDecoderE +_ZN9oceanbase12blocksstableL21acquire_local_decoderINS0_14ObConstDecoderEEEiRNS0_13ObDecoderPoolERKNS0_18ObMicroBlockHeaderERKNS0_14ObColumnHeaderEPKcRPKNS0_16ObIColumnDecoderE +_ZN9oceanbase6common11ObArrayImplINS_5share8ObLSInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEED2Ev +_ZN9oceanbase4palf14PalfHandleImpl4statERNS0_8PalfStatE +_ZNK9oceanbase4palf9LogEngine18get_min_block_infoERmRNS_5share3SCNE +_ZNK9oceanbase4palf12LogConfigMgr22get_arbitration_memberERNS_6common8ObMemberE +_ZNK9oceanbase4palf10LogStorage17get_block_min_scnERKmRNS_5share3SCNE +_ZN9oceanbase4palf12ReadBufGuardD1Ev +_ZZN9oceanbase4palf14PalfHandleImpl4statERNS0_8PalfStatEENK6$_1503clEPKc +_ZNK9oceanbase4palf10LogStorage18read_block_header_EmRNS0_14LogBlockHeaderE +_ZN9oceanbase6common15ob_malloc_alignEllRKNS_3lib9ObMemAttrE +_ZNK9oceanbase4palf10LogStorage24check_read_out_of_bound_ERKmlb +_ZNK9oceanbase4palf10LogStorage38get_readable_log_tail_guarded_by_lock_ERNS0_3LSNERl _ZNK9oceanbase4palf9LogReader12inner_pread_EimlPcRl -_ZN9oceanbase6common8ob_preadEiPcll -_ZN9oceanbase12blocksstable9ObSSTable5resetEv -_ZN9oceanbase12blocksstable18ObMicroBlockWriter11build_blockERPcRl -_ZN9oceanbase7storage8ObLSMetaC1ERKS1_ -_ZN9oceanbase7storage8ObLSMetaC2ERKS1_ -_ZN9oceanbase6common15ObLinearHashMapINS_5share14ObCascadMemberENS2_15ObDstServerInfoENS0_14ShareMemMgrTagEE16do_foreach_scan_INS2_17ObServerBlacklist19ObMapSendReqFunctorENS6_14DoForeachOnBktIS9_EEEEbmmRT_RT0_ -_ZN9oceanbase5obrpc26ObUpdateTenantInfoCacheArg4initEmRKNS_5share15ObAllTenantInfoEl -_ZNK9oceanbase7storage15ObStorageSchema8is_validEv -_ZN9oceanbase3sql19ObScalarAggregateOp18inner_get_next_rowEv -_ZN9oceanbase6common9ObIOTuner4run1Ev -_ZN9oceanbase6common12ObSysIOUsage18calculate_io_usageEv -_ZN9oceanbase6common13ObSEArrayImplINS0_9ObSEArrayIdLl21ENS0_19ModulePageAllocatorELb0EEELl2ES3_Lb0EE6assignERKNS0_8ObIArrayIS4_EE -_ZN9oceanbase6common13ObSEArrayImplINS0_9ObSEArrayIdLl21ENS0_19ModulePageAllocatorELb0EEELl2ES3_Lb0EED2Ev -_ZN9oceanbase6common11ObIOManager21get_tenant_io_managerEmRNS0_11ObRefHolderINS0_17ObTenantIOManagerEEE -_ZN9oceanbase6common13ObSEArrayImplINS0_9ObSEArrayIdLl8ENS0_19ModulePageAllocatorELb0EEELl2ES3_Lb0EED2Ev -_ZN9oceanbase6common13ObSEArrayImplINS0_9ObSEArrayIdLl8ENS0_19ModulePageAllocatorELb0EEELl2ES3_Lb0EE6assignERKNS0_8ObIArrayIS4_EE -_ZN9oceanbase6common11ObIOManager14get_tenant_idsERNS0_8ObIArrayImEE -_ZN9oceanbase3sql13ObMergeJoinOp31expand_match_flags_if_necessaryElb -_ZN9oceanbase5share6schema8ObSchema22set_primary_zone_arrayERKNS_6common8ObIArrayINS1_11ObZoneScoreEEERS6_ -_ZNK9oceanbase7storage8ObLSMeta19get_serialize_size_Ev -_ZN9oceanbase3sql13ObTableLockOp15init_lock_rtdefEv -_ZN9oceanbase3sql17ObChunkDatumStore7add_rowERKNS_6common8ObIArrayIPNS0_6ObExprEEEPNS0_9ObEvalCtxEPPNS1_9StoredRowE -_ZN9oceanbase3sql17ObChunkDatumStore5Block10append_rowERKNS_6common8ObIArrayIPNS0_6ObExprEEEPNS0_9ObEvalCtxEPNS1_11BlockBufferElPPNS1_9StoredRowEb -_ZN9oceanbase3sql17ObChunkDatumStore18alloc_block_bufferERPNS1_5BlockEllb -_ZN9oceanbase6common11ObIOManager10tenant_aioERKNS0_8ObIOInfoERNS0_10ObIOHandleE -_ZN9oceanbase6common17ObTenantIOManager9inner_aioERKNS0_8ObIOInfoERNS0_10ObIOHandleE -_ZN9oceanbase6common10ObIOSender15enqueue_requestERNS0_11ObIORequestE -_ZN9oceanbase6common16ObBinaryHeapBaseIPNS0_10ObPhyQueueENS0_13ObMClockQueue11HeapCompareIS2_XadL_ZNS2_15reservation_ts_EEEEELl50EE4pushERKS3_ -_ZN9oceanbase6common11ObIORequest12alloc_io_bufERPc -_ZN9oceanbase3sql18ObBasicSessionInfo23get_global_sys_variableEmRNS_6common12ObIAllocatorERKNS2_20ObDataTypeCastParamsERKNS2_8ObStringERNS2_5ObObjE -_ZN9oceanbase3sql18ObBasicSessionInfo32change_value_for_special_sys_varERKNS_6common8ObStringERKNS2_5ObObjERS6_ -_ZNK9oceanbase5share6schema14ObSysVarSchema9get_valueEPNS_6common12ObIAllocatorERKNS3_20ObDataTypeCastParamsERNS3_5ObObjE -_ZN9oceanbase3sql12ObSortOpImpl7CompareclEPKNS0_17ObChunkDatumStore9StoredRowES6_ -_ZN9oceanbase10rootserver23ObFreezeReentrantThread26obtain_proposal_id_from_lsEbRlRNS_6common6ObRoleE -_ZN9oceanbase5share20ObLSTemplateOperator9exec_readINS0_18ObLSStatusOperatorENS0_19ObLSPrimaryZoneInfoEEEiRKmRKNS_6common11ObSqlStringERNS7_12ObISQLClientEPT_RNS7_8ObIArrayIT0_EE -_ZN9oceanbase6common19ObFixedLengthStringILl128EEC2ERKNS0_8ObStringE -_ZN9oceanbase11transaction23ObTenantWeakReadService4run1Ev -_ZN9oceanbase11transaction23ObTenantWeakReadService21do_cluster_heartbeat_Ev -_ZN9oceanbase6common11ObArrayImplINS_5share11ObLSReplicaENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE9push_backERKS3_ -_ZN9oceanbase5share6schema19ObSchemaGetterGuard26get_tenant_system_variableEmNS0_17ObSysVarClassTypeERPKNS1_14ObSysVarSchemaE -_ZN9oceanbase8observer20ObRootServiceMonitor4run1Ev -_ZNK9oceanbase10logservice12ObLogService16check_palf_existERKNS_5share6ObLSIDERb -_ZN9oceanbase8observer20ObRootServiceMonitor20monitor_root_serviceEv -_ZZN9oceanbase4palf7PalfEnv4openElRNS0_10PalfHandleEENK5$_738clEPKc.llvm.456594663833244305 -_ZN9oceanbase5share11ObLSReplicaC1Ev -_ZNK9oceanbase5share8ObLSInfo11find_leaderERPKNS0_11ObLSReplicaE -_ZN9oceanbase5share12ObHBResponse6assignERKS1_ -_ZSt16__insertion_sortIN9oceanbase6common5array17ObSEArrayIteratorINS0_12blocksstable12ObDatumRangeELl8ENS1_19ModulePageAllocatorELb0EEEN9__gnu_cxx5__ops15_Iter_comp_iterINS4_15ObDatumComparorIS5_EEEEEvT_SE_T0_ -_ZN9oceanbase3sql17ObTransformDBlink21check_link_expr_validEPNS0_9ObRawExprERb -_ZN9oceanbase10compaction21ObAdaptiveMergePolicy36check_inc_sstable_row_cnt_percentageERKNS_7storage8ObTabletERNS1_19AdaptiveMergeReasonE -_ZN9oceanbase6common13serialization14encoded_lengthINS0_9ObSEArrayISt4pairImlELl10ENS0_19ModulePageAllocatorELb0EEEEElRKT_ -_ZN9oceanbase3sql12ObMaterialOp18inner_get_next_rowEv -_ZN9oceanbase3sql16ObMaterialOpImpl14before_add_rowEv -_ZN9oceanbase3sql17ObSqlWorkareaUtil17get_workarea_sizeENS0_17ObSqlWorkAreaTypeElPNS0_13ObExecContextERl -_ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImbEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS4_EELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19ReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE32internal_get_with_timeout_unsafeERNS1_17ObHashTableBucketIS4_16pthread_rwlock_tNS1_5NCondEEERKmRPKS4_l -_ZN9oceanbase5share6schema27ObMultiVersionSchemaService23check_tenant_is_restoreEPNS1_19ObSchemaGetterGuardEmRb -_ZN9oceanbase7storage19ObMultipleScanMerge15set_rows_mergerEl -_ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocENS_6common10SpinRWLockELl16384EE22for_each_in_one_bucketINS0_20ObTxSubmitLogFunctorEEEiRT_l -_ZN9oceanbase5share19ObServerInfoInTable6assignERKS1_ -_ZNK9oceanbase5share15ObAllTenantInfo19get_serialize_size_Ev -_ZN9oceanbase5obrpc13LogRpcProxyV211post_packetERKNS_6common6ObAddrERKNS_4palf16LogRpcPacketImplINS6_8election25ElectionAcceptResponseMsgEEElRKNS6_28PalfTransportCompressOptionsE -_ZNK9oceanbase6common18ObConfigStringItem16get_value_stringEv -_ZN9oceanbase6common10to_cstringINS0_13ObStoreRowkeyEEEPKcRKT_NS0_8BoolTypeILb0EEE -_ZN9oceanbase4palf8election31ElectionAcceptResponseMsgMiddle11deserializeEPKclRl -_ZN9oceanbase4palf8election15ElectionMsgBase11deserializeEPKclRl -_ZN9oceanbase4palf8election15ElectionMsgBase12deserialize_EPKclRl -_ZN9oceanbase6common6ObAddr11deserializeEPKclRl -_ZN9oceanbase4palf8election18ElectionMsgDebugTs11deserializeEPKclRl -_ZN9oceanbase4palf8election18ElectionMsgDebugTs12deserialize_EPKclRl -_ZN9oceanbase7storage3mds12MdsTableImplINS_6common7ObTupleIJNS1_7MdsUnitINS1_8DummyKeyENS0_31ObTabletCreateDeleteMdsUserDataEEENS5_IS6_NS0_26ObTabletBindingMdsUserDataEEENS5_IS6_NS_5share18ObTabletAutoincSeqEEENS5_INS_10compaction25ObMediumCompactionInfoKeyENSE_22ObMediumCompactionInfoEEEEEEE7operateERKNS3_10ObFunctionIFiRNS1_12MdsTableBaseEEEE -_ZN9oceanbase3sql24ObTenantSqlMemoryManager18get_work_area_sizeEPNS_6common12ObIAllocatorERNS0_20ObSqlWorkAreaProfileE -_ZN9oceanbase11transaction23ObTenantWeakReadService25generate_cluster_version_Ev -_ZN9oceanbase11transaction30ObTenantWeakReadClusterService24persist_version_if_need_ENS_5share3SCNES3_S3_S3_bRl -_ZZN9oceanbase11transaction30ObTransDeadlockDetectorAdapter36maintain_deadlock_info_when_end_stmtERNS_3sql13ObExecContextEbENK5$_714clEPKc -_ZN9oceanbase5share6schema14ObTenantSchema29reset_zone_replica_attr_arrayEv -_ZN9oceanbase8observer19ObTenantMetaChecker15check_ls_table_ENS_5share9ObLSTable4ModeE -_ZN9oceanbase5share11ObLSReplica6assignERKS1_ -_ZN9oceanbase6common16copy_assign_wrapINS0_9ObSEArrayINS_5share12SimpleMemberELl7ENS0_15ObNullAllocatorELb0EEEEEiRT_RKS7_NS0_8BoolTypeILb0EEE -_ZN9oceanbase5share11ObLSReplica5resetEv -_ZN9oceanbase8observer19ObTenantMetaChecker24check_dangling_replicas_ERNS_6common4hash9ObHashMapINS_5share6ObLSIDENS5_11ObLSReplicaENS3_24LatchReadWriteDefendModeENS3_9hash_funcIS6_EENS3_8equal_toIS6_EENS3_13SimpleAllocerINS3_15ObHashTableNodeINS3_11HashMapPairIS6_S7_EEEELi6ENS3_19SpinMutexDefendModeENS3_29DefaultSimpleAllocerAllocatorEEENS3_13NormalPointerENS2_8ObMallocELl1EEERl -_ZN9oceanbase6common4hash9ObHashMapINS_5share6ObLSIDENS3_11ObLSReplicaENS1_24LatchReadWriteDefendModeENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS4_S5_EEEELi6ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev -_ZN9oceanbase5share17ObLSTableIterator4nextERNS0_8ObLSInfoE -_ZN9oceanbase6common11ObArrayImplINS_5share11ObLSReplicaENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEEaSERKS9_ -_ZN9oceanbase8observer9ObService15fill_ls_replicaEmRKNS_5share6ObLSIDERNS2_11ObLSReplicaE -_ZN9oceanbase7storage8ObLSLock4lockEPKNS0_4ObLSElll -_ZN9oceanbase5share11ObLSReplica4initEllmRKNS0_6ObLSIDERKNS_6common6ObAddrElRKNS5_6ObRoleERKNS5_13ObReplicaTypeElRKNS0_15ObReplicaStatusERKNS0_17ObLSRestoreStatusElmRKNS5_8ObStringElllRKNS5_9ObSEArrayINS0_12SimpleMemberELl7ENS5_15ObNullAllocatorELb0EEERKNS5_15BaseLearnerListILl2000ENS5_8ObMemberEEEb -_ZN9oceanbase6common13ObSEArrayImplINS_5share12SimpleMemberELl7ENS0_15ObNullAllocatorELb0EE6assignERKNS0_8ObIArrayIS3_EE -_ZN9oceanbase5share11ObLSReplica24transform_ob_member_listERKNS_6common16ObMemberListBaseILl7EEERNS2_9ObSEArrayINS0_12SimpleMemberELl7ENS2_15ObNullAllocatorELb0EEE -_ZN9oceanbase3sql12ObHashJoinOp17init_bloom_filterERNS_6common12ObIAllocatorEl -_ZNK9oceanbase12blocksstable15ObRootBlockInfo19deep_copy_micro_bufEPKclPclb -_ZN9oceanbase10rootserver17ObCommonLSService14try_create_ls_ERKNS_5share6schema14ObTenantSchemaE -_ZN9oceanbase3sql9ObDMLStmt15get_column_itemEmRKNS_6common8ObStringE -_ZN9oceanbase11transaction25ObStandbyTimestampService4run1Ev -_ZN9oceanbase5obrpc16ObCommonRpcProxy8rpc_callINS0_18ObFetchLocationArgENS0_21ObFetchLocationResultEEEiNS0_15ObRpcPacketCodeERKT_RT0_PNS0_6HandleERKNS0_9ObRpcOptsE -_ZNK9oceanbase5share7ObRsMgr22get_master_root_serverERNS_6common6ObAddrE -_ZN9oceanbase3omt13ObMultiTenant14get_tenant_idsERNS_6common8ObVectorImNS2_9PageArenaImNS2_20DefaultPageAllocatorEEEEE -_ZNK9oceanbase5share15ObDMLSqlSplicer13splice_columnEPKcNS1_6ColSet4TypeENS1_6ValSet4TypeERNS_6common11ObSqlStringE -_ULx86_64_step -_ZN9oceanbase3lib17__MemoryContext__4initEv -_ZN9oceanbase3lib17__MemoryContext__10init_allocERNS_6common11ObAllocatorEbj -_ZN9oceanbase6common9PageArenaImNS0_20DefaultPageAllocatorEE6_allocEl -_ZN9oceanbase10rootserver16ObServerBalancer23fill_pool_units_in_zoneERKNS_6common19ObFixedLengthStringILl128EEERNS_5share14ObResourcePoolERNS2_8ObIArrayINS0_13ObUnitManager10ObUnitLoadEEE -_ZN9oceanbase3sql21ObWhereSubQueryPullup23get_single_set_subqueryERNS0_9ObDMLStmtEPNS0_9ObRawExprES5_bRNS_6common8ObIArrayINS1_14SingleSetParamEEE -_ZN9oceanbase5share20ObLSTemplateOperator9exec_readINS0_16ObLSAttrOperatorENS0_8ObLSAttrEEEiRKmRKNS_6common11ObSqlStringERNS7_12ObISQLClientEPT_RNS7_8ObIArrayIT0_EE -_ZNK9oceanbase12blocksstable20ObDataMacroBlockMeta9build_rowERNS0_10ObDatumRowERNS_6common12ObIAllocatorE -_ZN9oceanbase6common13ObSEArrayImplINS0_19ObFixedLengthStringILl128EEELl5ENS0_19ModulePageAllocatorELb0EE7reserveEl _ZN9oceanbase4palf15LogConfigInfoV2D1Ev _ZN9oceanbase4palf15LogConfigInfoV2D2Ev -_ZN9oceanbase5share6schema27ObMultiVersionSchemaService24get_cluster_schema_guardERNS1_19ObSchemaGetterGuardENS2_17RefreshSchemaModeE -_ZN9oceanbase5share6schema27ObMultiVersionSchemaService26check_restore_tenant_existERKNS_6common8ObIArrayImEERb -_ZN9oceanbase6common11ObArrayImplImNS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackImEENS0_22NotImplementItemEncodeImEEED2Ev -_ZN9oceanbase3sql12ObHashJoinOp15calc_hash_valueERKNS_6common8ObIArrayIPNS0_6ObExprEEERKNS3_INS2_10ObHashFuncEEERmbRb +_ZN9oceanbase4palf14LogBlockHeader11deserializeEPKclRl +_ZNK9oceanbase12blocksstable15ObRootBlockInfo9deep_copyEPclRlRS1_ +_ZNK9oceanbase12blocksstable15ObRootBlockInfo19deep_copy_micro_bufEPKclPclb +fetch_proc_info +_ZN9oceanbase10rootserver21ObLSBalanceTaskHelper21check_need_ls_balanceERb +_ZZN9oceanbase10logservice17ObLogApplyService16get_apply_statusERKNS_5share6ObLSIDERNS0_18ObApplyStatusGuardEENK5$_158clEPKc.llvm.397653736375101649 _ZN9oceanbase4palf13LogLoopThread4run1Ev +_ZNK9oceanbase6common10ObFunctionIFiPNS_4palf15IPalfHandleImplEEE7DerivedIZNS2_13LogLoopThread9log_loop_EvE6$_1026E6invokeES4_$967ef7e041bac93e9b7bec9aca11182f +_ZNK9oceanbase6common10ObFunctionIFiPNS_4palf15IPalfHandleImplEEE7DerivedIZNS2_13LogLoopThread9log_loop_EvE6$_1020E6invokeES4_$967ef7e041bac93e9b7bec9aca11182f _ZN9oceanbase4palf11PalfEnvImpl8for_eachERKNS_6common10ObFunctionIFiPNS0_15IPalfHandleImplEEEE -_ZN9oceanbase4palf14PalfHandleImpl22period_freeze_last_logEv -_ZN9oceanbase4palf16LogSlidingWindow22period_freeze_last_logEv +_ZNK9oceanbase6common10ObFunctionIFiPNS_4palf15IPalfHandleImplEEE7DerivedIZNS2_13LogLoopThread9log_loop_EvE6$_1022E6invokeES4_$967ef7e041bac93e9b7bec9aca11182f _ZN9oceanbase4palf14PalfHandleImpl22check_and_switch_stateEv _ZN9oceanbase4palf11LogStateMgr16is_state_changedEv -_ZN9oceanbase4palf11LogStateMgr28check_leader_log_sync_state_Ev -_ZN9oceanbase6common13ObSEArrayImplINS_4palf10LogLearnerELl7ENS0_19ModulePageAllocatorELb0EED2Ev -_ZN9oceanbase4palf12LogConfigMgr19leader_do_loop_workERb _ZN9oceanbase4palf11LogStateMgr19need_update_leader_ERNS_6common6ObAddrE _ZNK9oceanbase4palf8election12ElectionImpl25get_current_leader_likelyERNS_6common6ObAddrERl -_ZN9oceanbase4palf12LogConfigMgr21check_children_healthEv -_ZN9oceanbase4palf12LogConfigMgr27submit_retire_children_req_ERKNS_6common15BaseLearnerListILl15ENS0_10LogLearnerEEE +_ZN9oceanbase4palf11LogStateMgr28check_leader_log_sync_state_Ev +_ZN9oceanbase4palf12LogConfigMgr19leader_do_loop_workERb +_ZN9oceanbase4palf14PalfHandleImpl22period_freeze_last_logEv +_ZN9oceanbase4palf16LogSlidingWindow22period_freeze_last_logEv _ZN9oceanbase4palf14PalfHandleImpl16update_palf_statEv -_ZN9oceanbase6common15ObLinearHashMapINS_5share14ObCascadMemberENS2_15ObDstServerInfoENS0_14ShareMemMgrTagEE16do_foreach_scan_INS2_17ObServerBlacklist21ObMapMarkBlackFunctorENS6_14DoForeachOnBktIS9_EEEEbmmRT_RT0_ -_ZN9oceanbase10rootserver18ObTenantInfoLoader19get_valid_sts_afterElRNS_5share3SCNE -_ZZN9oceanbase10rootserver18ObTenantInfoLoader19get_valid_sts_afterElRNS_5share3SCNEENK6$_1211clEPKc -_ZN9oceanbase6common19ObTableAccessHelper34get_signle_column_from_signle_row_EPNS0_9sqlclient13ObMySQLResultEPKcRNS0_14ObStringHolderE -_ZN9oceanbase3sql19ObIndexLookupOpImpl12get_next_rowEv -_ZNK9oceanbase5share19ObUnitTableOperator25get_unit_groups_by_tenantEmRNS_6common8ObIArrayINS0_17ObSimpleUnitGroupEEE -_ZNK9oceanbase5share19ObUnitTableOperator16read_unit_groupsERNS_6common11ObSqlStringERNS2_8ObIArrayINS0_17ObSimpleUnitGroupEEE -_ZN9oceanbase6common15ObLinearHashMapINS_10logservice18ServerProbeService11ServerLSKeyENS3_10LSProbeCtxENS0_14ShareMemMgrTagEE16do_foreach_scan_IZNS3_23print_all_server_statusEvE5$_789NS7_14DoForeachOnBktIS9_EEEEbmmRT_RT0_ -_ZNK9oceanbase7storage17ObStorageLogEntry9serializeEPclRl -_ZN9oceanbase7storage15ObTabletMdsData5resetEv -_ZN9oceanbase3omt8ObPxPool4run1Ev +_ZN9oceanbase5share6schema19ObSchemaGetterGuardC1Ev +_ZNK9oceanbase8observer16ObInnerSQLResult13get_timestampEPKcPKNS_6common14ObTimeZoneInfoERl +_ZN9oceanbase6common6number8ObNumber12from_sci_optINS0_12ObIAllocatorEEEiPKclRT_PsS9_b +_ZNK9oceanbase7storage3mds12MdsTableImplINS_6common7ObTupleIJNS1_7MdsUnitINS1_8DummyKeyENS0_31ObTabletCreateDeleteMdsUserDataEEENS5_IS6_NS0_26ObTabletBindingMdsUserDataEEENS5_IS6_NS_5share18ObTabletAutoincSeqEEENS5_INS_10compaction25ObMediumCompactionInfoKeyENSE_22ObMediumCompactionInfoEEEEEEE64for_each_unit_from_small_key_to_big_from_old_node_to_new_to_dumpERNS3_10ObFunctionIFiRKNS1_9MdsDumpKVEEEElb +_ZNK9oceanbase7storage3mds12MdsTableBase16advance_state_toENS2_5StateE +_ZNK9oceanbase5share3SCN15fixed_serializeEPclRl +_ZN9oceanbase7storage24ObTabletMediumInfoReader17advance_dump_iterEv +_ZN9oceanbase5share15ObDMLSqlSplicer10add_columnIA11_cEEibPKcRKT_ +_ZZN9oceanbase3sql11ObPlanCache14get_plan_cacheERNS0_14ObILibCacheCtxERNS0_15ObCacheObjGuardEENK5$_206clEPKc.llvm.15555104687725353391 +_ZZN9oceanbase7storage19ObSSTableRowScannerINS0_30ObIndexTreeMultiPassPrefetcherILi32ELi3EEEE9fetch_rowERNS0_19ObSSTableReadHandleERPKNS_12blocksstable10ObDatumRowEENKUlPKcE7_clESD_ +_ZNK9oceanbase5share18ObLSLeaderLocation19get_serialize_size_Ev +_ZNK9oceanbase6common4hash18ObPointerHashArrayINS_5share6schema25ObColumnSchemaHashWrapperEPNS4_16ObColumnSchemaV2ENS4_14ObGetColumnKeyEE21placement_hash_searchERKS5_Rl +create_state_record_for.part.0 +_ZNK9oceanbase8observer16ObInnerSQLResult8get_boolEPKcRb +_ZN9oceanbase6common15ObLinearHashMapINS_12blocksstable12MacroBlockIdENS2_14ObBlockManager9BlockInfoENS0_14ShareMemMgrTagEE18set_foreach_L_lmt_Ev +_ZN9oceanbase6common11ObArrayImplINS0_7ObTupleIJllbNS2_IJbNS0_14ObStringHolderEEEEbbbEEENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEE7destroyEv +_ZN9oceanbase10compaction21ObAdaptiveMergePolicy21add_meta_merge_resultEPNS_7storage8ObITableERKNS2_19ObStorageMetaHandleERNS2_22ObGetMergeTablesResultEb +_ZN9oceanbase6common13ObSEArrayImplImLl64ENS0_19ModulePageAllocatorELb0EE6assignERKNS0_8ObIArrayImEE +_ZZN9oceanbase11transaction25ObStandbyTimestampService4run1EvENK5$_512clEPKc +_ZNK9oceanbase4palf22PalfDiskOptionsWrapper34get_disk_opts_for_recycling_blocksEv +_ZN9oceanbase6common14ObKVCacheStore30purge_mb_handle_retire_stationEv +_ZNK9oceanbase7storage22ObBloomFilterBuildTask4hashEv +_ZN9oceanbase3sql17ObChunkDatumStore7add_rowERKNS_6common8ObIArrayIPNS0_6ObExprEEEPNS0_9ObEvalCtxEPPNS1_9StoredRowE +_ZN9oceanbase3sql17ObChunkDatumStore18alloc_block_bufferERPNS1_5BlockEllb +_ZN9oceanbase3sql17ObChunkDatumStore17init_block_bufferEPvlRPNS1_5BlockE +_ZN9oceanbase6common15ObLinearHashMapINS_5share6ObLSIDEPNS_10logservice14ObReplayStatusENS0_14ShareMemMgrTagEE18set_foreach_L_lmt_Ev +_ZZNK9oceanbase5share20ObInnerTableOperator11do_get_row_ERNS_6common12ObISQLClientEbRKNS0_16ObIInnerTableKeyERNS0_16ObIInnerTableRowEENK6$_1217clEPKc +_ZN9oceanbase6common15ObLinearHashMapINS_5share14ObCascadMemberENS2_15ObDstServerInfoENS0_14ShareMemMgrTagEE18set_foreach_L_lmt_Ev +_ZZN9oceanbase5share6schema19ObSchemaGetterGuard31get_outline_info_with_signatureEmmRKNS_6common8ObStringERPKNS1_13ObOutlineInfoEENK6$_1688clEPKc +_ZN9oceanbase5share11ObLSReplica20member_list_is_equalERKNS_6common9ObSEArrayINS0_12SimpleMemberELl7ENS2_15ObNullAllocatorELb0EEES8_ +_ZN9oceanbase11transaction20ObKeepAliveLSHandler10on_successEv +_ZN9oceanbase12blocksstable13ObDecoderPool4freeINS0_24ObIntegerBaseDiffDecoderEEEvPT_ +_ZN9oceanbase6common11ObArrayImplINS_10rootserver10ObDRWorker15ReplicaStatDescENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEE9push_backERKS4_ +_ZN9oceanbase4palf8election31ElectionAcceptResponseMsgMiddle11deserializeEPKclRl +_ZN9oceanbase4palf16LogConfigVersion11deserializeEPKclRl +_ZN9oceanbase4palf8election15ElectionMsgBase11deserializeEPKclRl +_ZN9oceanbase4palf8election15ElectionMsgBase12deserialize_EPKclRl +_ZN9oceanbase6common6ObAddr11deserializeEPKclRl +_ZN9oceanbase4palf8election18ElectionMsgDebugTs11deserializeEPKclRl +_ZN9oceanbase4palf8election18ElectionMsgDebugTs12deserialize_EPKclRl +_ZN9oceanbase12blocksstable14ObBlockManager14mark_and_sweepEv +_ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS_12blocksstable12MacroBlockIdENS1_11HashNullObjEEEEELi88ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEE4freeEPS9_ +_ZN9oceanbase6common15ObLinearHashMapINS_12blocksstable12MacroBlockIdEbNS0_14ShareMemMgrTagEE16do_foreach_scan_INS2_14ObBlockManager23CopyBlockToArrayFunctorENS5_14DoForeachOnBktIS8_EEEEbmmRT_RT0_ +_ZN9oceanbase12blocksstable14ObBlockManager17mark_macro_blocksERNS_6common15ObLinearHashMapINS0_12MacroBlockIdEbNS2_14ShareMemMgrTagEEERNS2_4hash9ObHashSetIS4_NS8_19NoPthreadDefendModeENS8_9hash_funcIS4_EENS8_8equal_toIS4_EENS8_13SimpleAllocerINS8_15ObHashTableNodeINS8_11HashMapPairIS4_NS8_11HashNullObjEEEEELi88ENS8_19SpinMutexDefendModeENS8_29DefaultSimpleAllocerAllocatorEEENS8_13NormalPointerENS2_8ObMallocELl1EEERNS0_24ObMacroBlockMarkerStatusE +_ZN9oceanbase6common4hash11ObHashTableINS_12blocksstable12MacroBlockIdENS1_11HashMapPairIS4_NS1_11HashNullObjEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi88ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14set_refactoredIvLb0EEEiRKS4_RKS7_iiiPT_ +_ZN9oceanbase12blocksstable14ObBlockManager16update_mark_infoERKNS0_12MacroBlockIdERNS_6common15ObLinearHashMapIS2_bNS5_14ShareMemMgrTagEEE +_ZN9oceanbase6common15ObLinearHashMapINS_12blocksstable12MacroBlockIdEbNS0_14ShareMemMgrTagEE16load_access_bkt_ERKS3_RmRPNS5_6BucketE +_ZNK9oceanbase7storage8ObTablet19get_tablet_meta_idsERNS_6common8ObIArrayINS_12blocksstable12MacroBlockIdEEE +_ZN9oceanbase7storage8ObTablet15parse_meta_addrERKNS0_14ObMetaDiskAddrERNS_6common8ObIArrayINS_12blocksstable12MacroBlockIdEEE +_ZN9oceanbase6common4hash11ObHashTableINS_12blocksstable12MacroBlockIdENS1_11HashMapPairIS4_NS1_11HashNullObjEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi88ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE12internal_setERNS1_17ObHashTableBucketIS7_NS1_5NLockENS1_5NCondEEERKS7_b +_ZN9oceanbase12blocksstable14ObBlockManager23mark_sstable_meta_blockERKNS0_9ObSSTableERNS_6common15ObLinearHashMapINS0_12MacroBlockIdEbNS5_14ShareMemMgrTagEEERNS5_4hash9ObHashSetIS7_NSB_19NoPthreadDefendModeENSB_9hash_funcIS7_EENSB_8equal_toIS7_EENSB_13SimpleAllocerINSB_15ObHashTableNodeINSB_11HashMapPairIS7_NSB_11HashNullObjEEEEELi88ENSB_19SpinMutexDefendModeENSB_29DefaultSimpleAllocerAllocatorEEENSB_13NormalPointerENS5_8ObMallocELl1EEERNS0_24ObMacroBlockMarkerStatusE +_ZN9oceanbase6common11ObArrayImplINS_12blocksstable12MacroBlockIdENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE9push_backERKS3_ +_ZN9oceanbase6common11ObArrayImplINS_12blocksstable12MacroBlockIdENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE10extend_bufEl +_ZN9oceanbase6common15ObLinearHashMapINS_12blocksstable12MacroBlockIdEbNS0_14ShareMemMgrTagEE7shrink_Ev +_ZN9oceanbase6common20ObSafeArenaAllocator5reuseEv +epoll_poll +_ZN9oceanbase6common15ObLinearHashMapINS_12blocksstable12MacroBlockIdEiNS0_14ShareMemMgrTagEE16do_foreach_scan_INS2_21ObSharedMacroBlockMgr15GetSmallBlockOpENS5_14DoForeachOnBktIS8_EEEEbmmRT_RT0_ +_ZN9oceanbase12blocksstable18ObColDataStoreDesc14fresh_col_metaERKNS_5share6schema13ObMergeSchemaE +_ZN9oceanbase3sql9ObDMLStmt15get_column_itemEmm +_ZN9oceanbase3sql13AllocOpHelperILi34EE5allocERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputElRPNS0_10ObOperatorE +_ZN9oceanbase3sql12ObMaterialOpC2ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE _ZN9oceanbase3sql16ObMaterialOpImplC1ERNS0_13ObMonitorNodeERNS0_20ObSqlWorkAreaProfileE -_ZN9oceanbase7storage14ObSSTableArray10inner_initERNS_6common16ObArenaAllocatorERKNS2_8ObIArrayIPNS0_8ObITableEEEll -_ZN9oceanbase5share20ObAllTenantInfoProxy16load_tenant_infoEmPNS_6common12ObISQLClientEbRlRNS0_15ObAllTenantInfoE -_ZNK9oceanbase8observer16ObInnerSQLResult8get_uintEPKcRm -_ZNK9oceanbase8observer16ObInnerSQLResult8get_uintElRm -_ZN9oceanbase5share15ObAllTenantInfo4initEmRKNS0_12ObTenantRoleERKNS0_24ObTenantSwitchoverStatusElRKNS0_3SCNESA_SA_SA_RKNS0_13ObArchiveModeERKNS0_6ObLSIDE -_ZN9oceanbase5share20ObAllTenantInfoProxy22load_pure_tenant_info_EmPNS_6common12ObISQLClientEbRlRNS0_15ObAllTenantInfoE -_ZN9oceanbase6common11ObArrayImplINS_5share20ObZoneReplicaAttrSetENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE10extend_bufEl -_ZN9oceanbase6common11ObArrayImplINS0_14ObStringHolderENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_22NotImplementItemEncodeIS2_EEE10extend_bufEl +_ZN9oceanbase10compaction8ObMergerD2Ev +_ZN9oceanbase12blocksstable13ObDecoderPool4freeINS0_14ObConstDecoderEEEvPT_ +_ZN9oceanbase12blocksstable23ObIMicroBlockRowScanner15apply_blockscanEPNS_7storage15ObBlockRowStoreERNS2_16ObTableStoreStatE +_ZN9oceanbase3omt10ObThWorker12check_statusEv +_ZN9oceanbase7storage15ObBlockRowStore15apply_blockscanERNS_12blocksstable23ObIMicroBlockRowScannerEbRNS0_16ObTableStoreStatE +_ZZN9oceanbase5share11ObShareUtil23set_default_timeout_ctxERNS_6common12ObTimeoutCtxElENK5$_557clEPKc +_ZN9oceanbase6common15ObLinearHashMapINS_5share6ObLSIDEPNS_10logservice14ObReplayStatusENS0_14ShareMemMgrTagEE11do_operate_INS4_18ObLogReplayService22GetReplayStatusFunctorEEEiRKS3_RT_ +_ZN9oceanbase6common15ObLinearHashMapINS_5share6ObLSIDEPNS_10logservice14ObReplayStatusENS0_14ShareMemMgrTagEE16load_access_bkt_ERKS3_RmRPNS8_6BucketE +_ZN9oceanbase6common15ObLinearHashMapINS_5share6ObLSIDEPNS_10logservice14ObReplayStatusENS0_14ShareMemMgrTagEE7shrink_Ev +_ZN9oceanbase6common15ObLinearHashMapINS_5share6ObLSIDEPNS_10logservice14ObReplayStatusENS0_14ShareMemMgrTagEE17load_factor_ctrl_Em _ULx86_64_dwarf_extract_proc_info_from_fde _ULx86_64_dwarf_step -_ZN9oceanbase6common4hash11ObHashTableINS_5share21ObVTableLocUpdateTaskENS1_11HashMapPairIS4_NS1_11HashNullObjEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi97ENS1_19NoPthreadDefendModeENS_8observer22ObHighPrioMemAllocatorEEESH_NS1_13NormalPointerENS0_8ObMallocELl1EE32internal_get_with_timeout_unsafeERNS1_17ObHashTableBucketIS7_NS1_5NLockENS1_5NCondEEERKS4_RPKS7_l -_ZN9oceanbase6common25ObConcurrentFIFOAllocator5allocEl -_ZN9oceanbase6common8ObLogger8log_headElPKciS3_iS3_iPclRl -_ZN9oceanbase6common17ob_fast_localtimeERlR2tmRKlPS2_ -_ZN9oceanbase7storage15ObStorageLogger9write_logERNS0_17ObStorageLogParamE -_ZN9oceanbase6common15ObBaseLogWriter10append_logERNS0_14ObIBaseLogItemEm -_ZN9oceanbase3sql13ObMergeJoinOp7destroyEv -_ZN9oceanbase3sql14ObRADatumStore5resetEv -_ZN9oceanbase5obrpc15ObRpcResultCode11deserializeEPKclRl -_ZN9oceanbase6common13ObSEArrayImplINS0_15ObWarningBuffer11WarningItemELl1ENS0_19ModulePageAllocatorELb0EE11deserializeEPKclRl -_ZN9oceanbase12blocksstable26ObMicroBlockChecksumHelper4initEPKNS_6common8ObIArrayINS_5share6schema9ObColDescEEEb -_ZN9oceanbase12blocksstable9ObSSTable10multi_scanERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS_6common8ObIArrayINS0_12ObDatumRangeEEERPNS2_18ObStoreRowIteratorE -_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EEC2Ev -_ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql9ObRawExprENS0_12ObIAllocatorEE9push_backERKS4_ -_ZN9oceanbase3sql12ObHashJoinOp34update_dumped_partition_statisticsEb +_ZN9oceanbase6common11ObArrayImplIPKNS_5obrpc26ObUpdateTenantInfoCacheResENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEE10extend_bufEl +_ZN9oceanbase3sql29ObTenantCachedSchemaGuardInfo27refresh_tenant_schema_guardEm +_ZZN9oceanbase4palf13LogNetService23post_request_to_server_INS0_8election24ElectionAcceptRequestMsgEEEiRKNS_6common6ObAddrERKT_ENKUlPKcE0_clESD_ +_ZN9oceanbase3sql16ObFastParserBase31process_identifier_begin_with_tERb +_ZN9oceanbase6common11ObArrayImplINS0_19ObFixedLengthStringILl128EEENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE10extend_bufEl +_ZN9oceanbase6common9ObKVCacheINS_12blocksstable20ObMicroBlockCacheKeyENS2_22ObMicroBlockCacheValueEE3putERKS3_RKS4_b +_ZN9oceanbase7storage8ObLSMetaC1ERKS1_ +_ZN9oceanbase7storage8ObLSMetaC2ERKS1_ +_ZN9oceanbase11transaction11ObAllIDMeta18update_all_id_metaERKS1_ +_ZN9oceanbase7storage16ObTabletDDLKvMgr26check_has_effective_ddl_kvERb +_ZNK9oceanbase12blocksstable18ObSSTableBasicMeta18get_serialize_sizeEv +_ZN9oceanbase6common15ObLinearHashMapINS_5share14ObCascadMemberENS2_15ObDstServerInfoENS0_14ShareMemMgrTagEE16do_foreach_scan_INS2_17ObServerBlacklist21ObMapMarkBlackFunctorENS6_14DoForeachOnBktIS9_EEEEbmmRT_RT0_ +run_cfi_program +_ZN9oceanbase6common15ObSyncIOChannel4run1Ev +_ZN9oceanbase7storage22ObSharedBlocksWriteCtx12add_block_idERKNS_12blocksstable12MacroBlockIdE +_ZN9oceanbase12blocksstable19ObMicroBlockEncoder13alloc_encoderINS0_18ObHexStringEncoderEEEPT_v +_ZN9oceanbase6common6ObPoolINS0_8ObMallocENS0_10ObNullLockEE15alloc_new_blockEv +_ZN9oceanbase10rootserver18ObZoneMergeManager19ObZoneMergeMgrGuardD2Ev +_ZN9oceanbase3sql20ObSqlMemMgrProcessor4initEPNS_6common12ObIAllocatorEmlNS0_17ObPhyOperatorTypeEmPNS0_13ObExecContextE +_ZN9oceanbase3sql24ObTenantSqlMemoryManager26register_work_area_profileERNS0_20ObSqlWorkAreaProfileE +_ZN9oceanbase3sql20ObSqlWorkAreaProfile13set_exec_infoERNS0_13ObExecContextE +_ZN9oceanbase3sql17ObSqlWorkareaUtil17get_workarea_sizeENS0_17ObSqlWorkAreaTypeElPNS0_13ObExecContextERl +_ZN9oceanbase6common8ObVectorImNS0_9PageArenaImNS0_20DefaultPageAllocatorEEEE6insertEPmRKm +_ZNK9oceanbase5share8ObLSInfo9find_idx_ERKNS0_11ObLSReplicaERl +_ZN9oceanbase8memtable13ObMemtableCtx14on_wlock_retryERKNS0_13ObMemtableKeyERKNS_11transaction9ObTransIDE +_ZNK9oceanbase5share6schema14ObSysVarSchema9get_valueEPNS_6common12ObIAllocatorERKNS3_20ObDataTypeCastParamsERNS3_5ObObjE +_ZZN9oceanbase5share8detector9ObLCLNodeC1ERKNS1_13UserBinaryKeyEmRKNS_6common10ObFunctionIFiRKNS6_8ObIArrayINS1_25ObDetectorInnerReportInfoEEElEEERKNS7_IFiRNS1_24ObDetectorUserReportInfoEEEERKNS1_18ObDetectorPriorityEmjbENK5$_127clEPKc +_ZN9oceanbase6common14ObIOMemoryPoolILl2101248EE4freeEPv +_ZN9oceanbase6common14obj_print_jsonILNS0_9ObObjTypeE4EEEiRKNS0_5ObObjEPclRlRKNS0_16ObObjPrintParamsE +_ZN9oceanbase6common4hash9ObHashMapImNS_3sql13ObExprNodeMap11ExprCounterENS1_19NoPthreadDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS5_EEEELi97ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev _ZN9oceanbase3sql12ObQueryRange16and_first_searchERNS1_13ObSearchStateEPNS0_9ObKeyPartERNS_6common9ObSEArrayIPNS6_10ObNewRangeELl1ENS6_19ModulePageAllocatorELb0EEERbRKNS6_20ObDataTypeCastParamsE _ZN9oceanbase3sql12ObQueryRange18generate_cur_rangeERNS1_13ObSearchStateElbRNS_6common9ObSEArrayIPNS4_10ObNewRangeELl1ENS4_19ModulePageAllocatorELb0EEERbb -_ZN9oceanbase3sql12ObQueryRange11store_rangeEPNS_6common10ObNewRangeEbRNS1_13ObSearchStateERNS2_9ObSEArrayIS4_Ll1ENS2_19ModulePageAllocatorELb0EEERb _ZN9oceanbase6common4hash11ObHashTableINS_3sql12ObQueryRange14ObRangeWrapperENS1_11HashMapPairIS5_NS1_11HashNullObjEEENS1_9hash_funcIS5_EENS1_8equal_toIS5_EENS1_10pair_firstIS8_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS8_EELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14set_refactoredIvLb0EEEiRKS5_RKS8_iiiPT_ -_ZNK9oceanbase7storage3mds11MdsDumpNode13generate_hashEv -_ZN9oceanbase3sql15ObSessionValMapC1Ev +_ZNK9oceanbase6common10ObNewRange4hashEv +_ZNK9oceanbase6common8ObRowkey10murmurhashEm +_ZN9oceanbase6common11ObArrayImplINS_5share11ObLSReplicaENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEEaSERKS9_ +_ZN9oceanbase6common13ObSEArrayImplINS_5share19ObLSReplicaLocationELl3ENS0_19ModulePageAllocatorELb0EE6assignERKNS0_8ObIArrayIS3_EE +_ZN9oceanbase12blocksstable19ObIMicroBlockReader12locate_rangeERKNS0_12ObDatumRangeEbbRlS5_b +_ZN9oceanbase5share15ObZoneMergeInfo6assignERKS1_ +_ZN9oceanbase3sql12ObHashJoinOp5resetEv +_ZN9oceanbase10rootserver19ObBackupBaseService4idleEv +_ZN9oceanbase3sql13ObExecContext19build_temp_expr_ctxERKNS0_10ObTempExprERPNS0_13ObTempExprCtxE +_ZN9oceanbase6common11ObArrayImplIPcNS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_22NotImplementItemEncodeIS2_EEED2Ev +_ZN9oceanbase5share6schema14ObTenantSchemaaSERKS2_ +_ZN9oceanbase5share6schema8ObSchema22deep_copy_string_arrayERKNS_6common8ObIArrayINS3_8ObStringEEERNS3_13ObArrayHelperIS5_EE +_ZN9oceanbase5share6schema8ObSchema13deep_copy_strERKNS_6common8ObStringERS4_ +_ZN9oceanbase5share6schema8ObSchema5allocEl +_ZN9oceanbase5share6schema8ObSchema22set_primary_zone_arrayERKNS_6common8ObIArrayINS1_11ObZoneScoreEEERS6_ +_ZN9oceanbase5share17ObPrimaryZoneUtil29get_tenant_primary_zone_scoreERKNS0_6schema14ObTenantSchemaERNS2_13ObPrimaryZoneERNS_6common8ObIArrayINS0_20ObZoneReplicaAttrSetEEERNS9_INS2_11ObZoneScoreEEE +_ZNK9oceanbase5share6schema14ObTenantSchema13get_zone_listERNS_6common8ObIArrayINS3_19ObFixedLengthStringILl128EEEEE +_ZNK9oceanbase5share6schema14ObTenantSchema24get_primary_zone_inheritERNS1_19ObSchemaGetterGuardERNS1_13ObPrimaryZoneE +_ZN9oceanbase6common11ObArrayImplINS_5share6schema11ObZoneScoreENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEE9push_backERKS4_ +_ZNK9oceanbase5share6schema14ObTenantSchema27get_zone_replica_attr_arrayERNS_6common8ObIArrayINS0_20ObZoneReplicaAttrSetEEE +_ZNK9oceanbase5share20SchemaReplicaAttrSet31get_readonly_replica_attr_arrayEv +_ZN9oceanbase6common11ObArrayImplINS_5share11ReplicaAttrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEED2Ev +_ZN9oceanbase6common11ObArrayImplINS_5share20ObZoneReplicaAttrSetENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE9push_backERKS3_ +_ZN9oceanbase7storage22ObSharedBlocksWriteCtx5clearEv +_ZN9oceanbase6common10ObRowStore9new_blockEl +_ZN9oceanbase3sql16ObFastParserBase23process_comment_contentEb +_ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS0_7ObArrayIPNS_5share6ObUnitENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS7_EENS0_22NotImplementItemEncodeIS7_EEEEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstISF_EENS1_13SimpleAllocerINS1_15ObHashTableNodeISF_EELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKmRSF_l +_ZN9oceanbase12blocksstable25ObIndexBlockMacroIterator20get_next_macro_blockERNS0_12MacroBlockIdERl +_ZN9oceanbase6common11ObArrayImplINS_12blocksstable13ObDatumRowkeyENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE9push_backERKS3_ +_ZN9oceanbase12blocksstable22ObIndexBlockTreeCursor19read_next_level_rowEl +_ZN9oceanbase6common11ObArrayImplINS_12blocksstable16ObMicroIndexInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE9push_backERKS3_ +_ZN9oceanbase6common11ObArrayImplINS_12blocksstable16ObMicroIndexInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE10extend_bufEl +_ZN9oceanbase6common15ObLinearHashMapINS_5share14ObCascadMemberENS2_15ObDstServerInfoENS0_14ShareMemMgrTagEE16do_foreach_scan_INS2_17ObServerBlacklist19ObMapSendReqFunctorENS6_14DoForeachOnBktIS9_EEEEbmmRT_RT0_ +_ZN9oceanbase7storage16ObStorageLogItem8fill_logElRKNS0_17ObStorageLogParamEi +_ZN9oceanbase7storage17ObStorageLogEntry10fill_entryEPKclim +_ZNK9oceanbase7storage17ObStorageLogEntry9serializeEPclRl +_ZN9oceanbase10rootserver23ObMajorMergeInfoManager10try_reloadEv +_ZN9oceanbase6common11ObArrayImplINS_5share10ObUnitInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE9push_backERKS3_ +_ZN9oceanbase6common22ObVirtualTableIterator5closeEv +_ZN9oceanbase3sql12ObHashJoinOp30build_hash_table_for_recursiveEv +_ZN9oceanbase3sql17ObChunkDatumStore8Iterator14get_next_batchEPPKNS1_9StoredRowElRl +_ZN9oceanbase3sql13ObMergeJoinOp31expand_match_flags_if_necessaryElb +_ZN9oceanbase6common11ObArrayImplINS_3sql10ColumnItemENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE10extend_bufEl +_ZN9oceanbase6common13ObSEArrayImplISt4pairImlELl10ENS0_19ModulePageAllocatorELb0EE11deserializeEPKclRl +dwarf_search_unwind_table_int +_ULx86_64_dwarf_search_unwind_table +_ZN9oceanbase3sql16ObGbyBloomFilter5existEm +_ZN9oceanbase3sql12ObHashJoinOp16inner_drain_exchEv +_ZN9oceanbase3sql16ObFastParserBase31process_identifier_begin_with_lERb +_ZN9oceanbase3sql9ObRawExpr16postorder_acceptERNS0_16ObRawExprVisitorE +_ZNK9oceanbase6common8ObIArrayINS_7storage21ObStorageColumnSchemaEE9to_stringEPcl +_ZL12pktc_evfd_cbP6sock_t +delay_warn +_ZL12pktc_post_ioP6pktc_tP10pktc_req_t +_ZN9oceanbase12blocksstableL21acquire_local_decoderINS0_13ObDictDecoderEEEiRNS0_13ObDecoderPoolERKNS0_18ObMicroBlockHeaderERKNS0_14ObColumnHeaderEPKcRPKNS0_16ObIColumnDecoderE +_ZN9oceanbase3omt8ObTenant15get_tenant_metaEv +_ZN9oceanbase5share20ObLSTemplateOperator9exec_readINS0_16ObLSAttrOperatorENS0_8ObLSAttrEEEiRKmRKNS_6common11ObSqlStringERNS7_12ObISQLClientEPT_RNS7_8ObIArrayIT0_EE +_ZN9oceanbase5share16ObLSAttrOperator9fill_cellEPNS_6common9sqlclient13ObMySQLResultERNS0_8ObLSAttrE +_ZN9oceanbase12blocksstable18ObColDataStoreDesc5resetEv +_ZN9oceanbase5share6schema14ObTenantSchema28reset_physical_location_infoEv +_ZN9oceanbase10rootserver18ObHeartbeatService21process_hb_responses_Ev +_ZN9oceanbase6common4hash11ObHashTableINS0_6ObAddrENS1_11HashMapPairIS3_NS_5share14ObServerHBInfoEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi54ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE5beginEv +_ZN9oceanbase6common13ObSEArrayImplINS0_19ObFixedLengthStringILl128EEELl5ENS0_19ModulePageAllocatorELb0EEaSERKS5_ +_ZN9oceanbase6common13ObSEArrayImplINS0_19ObFixedLengthStringILl128EEELl5ENS0_19ModulePageAllocatorELb0EE7reserveEl +_ZN9oceanbase12blocksstable24ObMicroBlockBufferHelperD2Ev +_ZNK9oceanbase10logservice14ObReplayStatus15need_submit_logEv +_ZNK9oceanbase5share16ObServerTraceMap16get_servers_infoERKNS_6common19ObFixedLengthStringILl128EEERNS2_8ObIArrayINS0_19ObServerInfoInTableEEEb +_ZN9oceanbase12blocksstable22ObMicroBlockEncryptionC1Ev +_ZN9oceanbase7storage24ObTabletMediumInfoReader16advance_mds_iterEv +_ZN9oceanbase5obrpc18ObRpcProcessorBase7cleanupEv +_ZN9oceanbase5share8detector13UserBinaryKey12set_user_keyINS_11transaction9ObTransIDEEEiRKT_ +_ZN9oceanbase10compaction21ObAdaptiveMergePolicy36check_inc_sstable_row_cnt_percentageERKNS_7storage8ObTabletERNS1_19AdaptiveMergeReasonE +_ZN9oceanbase5share13ObLocalDevice11alloc_blockEPKNS_6common9ObIODOptsERNS2_6ObIOFdE +_ZN9oceanbase6common4hash11ObHashTableIlNS1_11HashMapPairIllEENS1_9hash_funcIlEENS1_8equal_toIlEENS1_10pair_firstIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS4_EELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE32internal_get_with_timeout_unsafeERNS1_17ObHashTableBucketIS4_NS0_7ObLatchENS1_5NCondEEERKlRPKS4_l +_ZN9oceanbase7storage19ObMultipleScanMerge15set_rows_mergerEl +_ZNK9oceanbase12blocksstable20ObDataMacroBlockMeta9deep_copyERPS1_RNS_6common12ObIAllocatorE +_ZN9oceanbase12blocksstable18ObDataBlockMetaVal6assignERKS1_ +_ZN9oceanbase6common13ObSEArrayImplIlLl4ENS0_19ModulePageAllocatorELb0EE6assignERKNS0_8ObIArrayIlEE +_ZN9oceanbase3sql13string_numberERKNS0_6ObExprERNS0_9ObEvalCtxERNS_6common7ObDatumE +_ZN9oceanbase3sql23eval_question_mark_funcERKNS0_6ObExprERNS0_9ObEvalCtxERNS_6common7ObDatumE +_ZN9oceanbase6common7ObDatum8from_objERKNS0_5ObObjENS0_17ObObjDatumMapTypeE +_ZN9oceanbase3sql13ObExprNodeMap4initEv +_ZN9oceanbase19concurrency_control34ObMultiVersionGCSnapshotCalculatorclENS_5share3SCNENS0_26ObMultiVersionSnapshotTypeENS0_22ObMultiVersionGCStatusElNS_6common6ObAddrE +_ZN9oceanbase3sql9ObDMLStmt15add_column_itemERNS0_10ColumnItemE +_ZN9oceanbase6common11ObArrayImplINS_7storage22ObSharedBlocksWriteCtxENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE9push_backERKS3_ +_ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImmEEEELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEE4freeEPS6_ +_ZN9oceanbase8observer15ObUniqTaskQueueINS_5share22ObLSLocationUpdateTaskENS2_19ObLSLocationServiceEE4run1Ev +_ZN9oceanbase6common11ObDebugSync7executeENS0_16ObDebugSyncPointE +_ZN9oceanbase6common7ObDITlsINS0_15ObDSActionArrayELm0EE12get_instanceEv +_ZN9oceanbase6common11ObArrayImplINS_5share22ObLSLocationUpdateTaskENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE10extend_bufEl +_ZN9oceanbase4palf6LogRpc12post_requestINS0_8election24ElectionAcceptRequestMsgEEEiRKNS_6common6ObAddrElRKT_ +_ZN9oceanbase5obrpc13LogRpcProxyV211post_packetERKNS_6common6ObAddrERKNS_4palf16LogRpcPacketImplINS6_8election24ElectionAcceptRequestMsgEEElRKNS6_28PalfTransportCompressOptionsE +_ZN9oceanbase5obrpc13LogRpcProxyV211post_packetERKNS_4palf16LogRpcPacketImplINS2_8election24ElectionAcceptRequestMsgEEEPNS0_10ObRpcProxy7AsyncCBINS1_5ObRpcILNS0_15ObRpcPacketCodeE5386EvEEEERKNS0_9ObRpcOptsE +_ZN9oceanbase5obrpc10ObRpcProxy8rpc_postINS0_13LogRpcProxyV25ObRpcILNS0_15ObRpcPacketCodeE5386EvEEEEiRKNT_7RequestEPNS1_7AsyncCBIS7_EERKNS0_9ObRpcOptsE +pn_send +cfifo_alloc +_ZN9oceanbase6common13serialization14encoded_lengthINS_4palf16LogRpcPacketImplINS3_8election24ElectionAcceptRequestMsgEEEEElRKT_ +_ZNK9oceanbase4palf8election15ElectionMsgBase19get_serialize_size_Ev +_ZNK9oceanbase4palf8election18ElectionMsgDebugTs19get_serialize_size_Ev +_ZNK9oceanbase4palf16LogRpcPacketImplINS0_8election24ElectionAcceptRequestMsgEE9serializeEPclRl +_ZNK9oceanbase4palf8election15ElectionMsgBase9serializeEPclRl +_ZNK9oceanbase4palf8election15ElectionMsgBase10serialize_EPclRl +_ZN9oceanbase6common4hash11ObHashTableINS_3sql6RowKeyINS0_7ObDatumEEENS1_11HashMapPairIS6_NS1_11HashNullObjEEENS1_9hash_funcIS6_EENS1_8equal_toIS6_EENS1_10pair_firstIS9_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS9_EELi97ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKS6_RS9_l +_ZN9oceanbase6common11ObArrayImplINS_5share11ObLSReplicaENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE10extend_bufEl +_ZN9oceanbase7storage8ObLSMeta14update_id_metaEllRKNS_5share3SCNEb +_ZN9oceanbase6common17ob_fast_localtimeERlR2tmRKlPS2_ +_ZNK9oceanbase4palf8election31ElectionAcceptResponseMsgMiddle9serializeEPclRl +_ZNK9oceanbase4palf16LogConfigVersion9serializeEPclRl +_ZN9oceanbase6common11ObArrayImplINS_5share14ObLSStatusInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEEaSERKS9_ +_ZN9oceanbase6common15ObLinearHashMapINS_12blocksstable12MacroBlockIdEbNS0_14ShareMemMgrTagEE7expand_Ev +_ZN9oceanbase10compaction20ObPartitionMergeIterC2ERNS_6common12ObIAllocatorE +_ZNK9oceanbase7storage3mds12MdsTableImplINS_6common7ObTupleIJNS1_7MdsUnitINS1_8DummyKeyENS0_31ObTabletCreateDeleteMdsUserDataEEENS5_IS6_NS0_26ObTabletBindingMdsUserDataEEENS5_IS6_NS_5share18ObTabletAutoincSeqEEENS5_INS_10compaction25ObMediumCompactionInfoKeyENSE_22ObMediumCompactionInfoEEEEEEE10get_latestElPvRNS3_10ObFunctionIFiSK_EEERbl +_ZN9oceanbase6common11ObAllocator5allocEl +_ZN9oceanbase6common8ObLogger6log_itIRZNS1_14log_message_kvIJNS0_8ObILogKVEEEEvPKciS6_iS6_miS6_DpOKT_EUlPclRlE_EEvS6_iS6_iS6_miOT_ +_ZN9oceanbase6common8ObLogger14do_log_messageIZNS1_14log_message_kvIJNS0_8ObILogKVEEEEvPKciS6_iS6_miS6_DpOKT_EUlPclRlE_EEvbS6_iS6_iS6_bmiRT_ +_ZN9oceanbase6common8ObLogger24check_reset_force_allowsEv +_ZN9oceanbase6common8ObLogger20check_tl_log_limiterEmiilRbRPKc +_ZN9oceanbase6common8ObLogger14alloc_log_itemEilRPNS0_10ObPLogItemE +_ZN9oceanbase3sql23ObTransformSimplifyExpr13flatten_exprsERNS_6common8ObIArrayIPNS0_9ObRawExprEEERb +_ZNK9oceanbase7storage3mds12MdsTableImplINS_6common7ObTupleIJNS1_7MdsUnitINS1_8DummyKeyENS0_31ObTabletCreateDeleteMdsUserDataEEENS5_IS6_NS0_26ObTabletBindingMdsUserDataEEENS5_IS6_NS_5share18ObTabletAutoincSeqEEENS5_INS_10compaction25ObMediumCompactionInfoKeyENSE_22ObMediumCompactionInfoEEEEEEE12get_snapshotElPvRNS3_10ObFunctionIFiSK_EEERKNSB_3SCNEll +_ZN9oceanbase7storage18ObColumnIndexArray4initEllRNS_6common12ObIAllocatorE +_ZN9oceanbase10logservice19ObRemoteFetchWorker4run1Ev +_ZN9oceanbase8observer18ObTableLoadManager29get_releasable_table_ctx_listERNS_6common8ObIArrayIPNS0_19ObTableLoadTableCtxEEE +_ZN9oceanbase5share17ObPrimaryZoneUtil43convert_random_primary_zone_into_integratedERKNS_6common8ObIArrayINS2_19ObFixedLengthStringILl128EEEEERKNS3_INS0_20ObZoneReplicaAttrSetEEERNS3_INS0_6schema11ObZoneScoreEEERS5_ +_ZNK9oceanbase5share16ObAliveServerMap8is_aliveERKNS_6common6ObAddrERbRl +_ZN9oceanbase6common16ObFixedArrayImplINS_3sql15ObTableRowCountENS0_12ObIAllocatorEE9push_backERKS3_ +_ZN9oceanbase12blocksstable22ObIndexBlockTreeCursor18get_current_endkeyERNS0_13ObDatumRowkeyEb +_ZN9oceanbase8observer20ObInnerSQLConnection30retry_while_no_tenant_resourceIZNS1_13execute_writeEmRKNS_6common8ObStringERlbPKNS3_6ObAddrEE5$_270EEilRKmT_.llvm.13956667331354424375 +_ZN9oceanbase8observer20ObInnerSQLConnection19execute_write_innerEmRKNS_6common8ObStringERlbPKNS2_6ObAddrE +_ZN9oceanbase3sql6ObStmt17is_dml_write_stmtENS0_4stmt8StmtTypeE +_ZN9oceanbase3sql12ObHashJoinOp4nextEv +_ZN9oceanbase3sql12ObHashJoinOp19read_right_func_endEv _ZN9oceanbase3sql12ObHashJoinOp18read_right_operateEv -_ZZN9oceanbase3sql12ObHashJoinOp23can_use_cache_aware_optEvENK5$_279clEPKc _ZN9oceanbase3sql12ObHashJoinOp17recursive_processERb +_ZN9oceanbase3sql17ObChunkDatumStore4initElmlPKcbjl _ZN9oceanbase3sql19ObHashJoinPartition4initEiliibPNS0_16ObHashJoinBufMgrEPNS0_18ObHashJoinBatchMgrEPNS0_15ObHashJoinBatchEPNS0_10ObOperatorEPNS0_19ObSqlMemoryCallbackElPNS0_17ObIOEventObserverE _ZN9oceanbase3sql18ObHashJoinBatchMgr19get_or_create_batchEillbRPNS0_15ObHashJoinBatchEb +_ZN9oceanbase6common6ObListINS_3sql19ObHashJoinBatchPairENS0_12ObIAllocatorEE10push_frontERKS3_ _ZN9oceanbase3sql15ObHashJoinBatchC2ERNS_6common12ObIAllocatorEPNS0_16ObHashJoinBufMgrEmill -_ZN9oceanbase6common14ObKVCacheStore13free_mbhandleEPNS0_18ObKVMemBlockHandleEb -_ZN9oceanbase5share12ObLSLocation17merge_leader_fromERKS1_ -_ZN9oceanbase8observer20ObInnerSQLConnection13execute_writeEmRKNS_6common8ObStringERlbPKNS2_6ObAddrE -_ZN9oceanbase8observer20ObInnerSQLConnection30retry_while_no_tenant_resourceIZNS1_13execute_writeEmRKNS_6common8ObStringERlbPKNS3_6ObAddrEE5$_270EEilRKmT_.llvm.4164465008807762168 -_ZN9oceanbase8observer20ObInnerSQLConnection19execute_write_innerEmRKNS_6common8ObStringERlbPKNS2_6ObAddrE -_ZN9oceanbase5share18ObCompatModeGetter22get_tenant_compat_modeEmRNS_3lib6Worker10CompatModeE -_ZN9oceanbase5obrpc13LogRpcProxyV211post_packetERKNS_6common6ObAddrERKNS_4palf16LogRpcPacketImplINS6_8election24ElectionAcceptRequestMsgEEElRKNS6_28PalfTransportCompressOptionsE -_ZN9oceanbase6common9ObScannerC1EPKcPNS0_12ObIAllocatorElmb -_ZN9oceanbase10rootserver14ObTenantLSInfoC2EPNS_6common12ObMySQLProxyEPKNS_5share6schema14ObTenantSchemaEmPNS2_18ObMySQLTransactionE -_ZN9oceanbase5share6schema14ObTenantSchemaaSERKS2_ -_ZN9oceanbase5share6schema14ObTenantSchema31set_specific_replica_attr_arrayERNS_6common13ObArrayHelperINS0_11ReplicaAttrEEERKNS3_8ObIArrayIS5_EE +_ZN9oceanbase3sql12ObHashJoinOp16dump_build_tableElb +_ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImlEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS4_EELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14set_refactoredIvLb0EEEiRKmRKS4_iiiPT_ +_ZN9oceanbase12blocksstable19ObMicroBlockEncoder13alloc_encoderINS0_12ObRLEEncoderEEEPT_v +_ZN9oceanbase10compaction28ObPartitionMinorRowMergeIter23common_minor_inner_initERKNS0_16ObMergeParameterE +_ZN9oceanbase7storage19ObTxDataMemtableMgr5flushENS_5share3SCNEb +_ZN9oceanbase7storage15ObTabletMdsData16load_mds_dump_kvERNS_6common12ObIAllocatorERKNS0_19ObTabletComplexAddrINS0_3mds9MdsDumpKVEEERPS7_ +_ZN9oceanbase3sql13ObExprNvlUtil13calc_nvl_exprERKNS0_6ObExprERNS0_9ObEvalCtxERNS_6common7ObDatumE +_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EEC2Ev +_ZN9oceanbase7storage15ObTenantFreezer30get_freeze_trigger_percentage_Ev +_ZN9oceanbase7storage15ObStorageLogger9write_logERNS0_17ObStorageLogParamE +_ZNK9oceanbase7storage11ObLSMetaLog8is_validEv +_ZN9oceanbase7storage16ObStorageLogItem14wait_flush_logEm +_ZNK9oceanbase7storage11ObLSMetaLog9serializeEPclRl +_ZN9oceanbase7storage22ObStorageLoggerManager10alloc_itemElRPNS0_16ObStorageLogItemEl +_ZN9oceanbase12blocksstable12ObMacroBlock23write_index_micro_blockERKNS0_16ObMicroBlockDescEbRl +_ZN9oceanbase6common4hash11ObHashTableISt4pairImmENS1_11HashMapPairIS4_lEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS6_EELi97ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14set_refactoredIvLb0EEEiRKS4_RKS6_iiiPT_ +_ZN9oceanbase5share19ObLSLocationService15get_from_cache_ElmRKNS0_6ObLSIDERNS0_12ObLSLocationE +_ZN9oceanbase12blocksstable15ObRootBlockInfo20init_root_block_infoERNS_6common16ObArenaAllocatorERKNS_7storage14ObMetaDiskAddrERKNS0_16ObMicroBlockDataENS2_14ObRowStoreTypeE +_ZN9oceanbase8observer18ObHeartBeatProcess18init_lease_requestERNS_5share14ObLeaseRequestE +_ZNK9oceanbase5share17ObMasterKeyGetter23get_max_stored_versionsERNS_6common8ObIArrayISt4pairImmEEE +_ZN9oceanbase3omt17ObTenantConfigMgr17get_lease_requestERNS_5share14ObLeaseRequestE +_ZN9oceanbase7storage17ObLSTabletService9lock_rowsERNS0_14ObTabletHandleERNS0_10ObStoreCtxERKNS0_14ObDMLBaseParamElNS0_10ObLockFlagEbPNS_6common16ObNewRowIteratorERl +_ZN9oceanbase7storage17ObLSTabletService23prepare_dml_running_ctxEPKNS_6common8ObIArrayImEES6_RNS0_14ObTabletHandleERNS0_15ObDMLRunningCtxE +_ZNK9oceanbase5share6schema18ObTableSchemaParam21get_rowkey_column_idsERNS_6common8ObIArrayImEE +_ZN9oceanbase12blocksstable17ObSSTableMergeResD1Ev +_ZN9oceanbase12blocksstable17ObSSTableMergeResD2Ev +_ZN9oceanbase7storage18ObStorageMetaCache25get_meta_and_bypass_cacheENS0_18ObStorageMetaValue8MetaTypeERKNS0_16ObStorageMetaKeyERNS_6common20ObSafeArenaAllocatorERNS0_19ObStorageMetaHandleE +_ZNK9oceanbase10rootserver13ObUnitManager18inner_get_unit_idsERNS_6common8ObIArrayImEE +_ZN9oceanbase6common16ObFixedArrayImplIlNS0_12ObIAllocatorEE4initEl +_ZN9oceanbase6common18ObMySQLTransactionD1Ev +_ZN9oceanbase6common18ObMySQLTransactionD2Ev +_ZNK9oceanbase5share6schema15ObBasePartition18get_deep_copy_sizeEv +_ZNK9oceanbase3sql12ObQueryRange16get_result_valueERNS_6common5ObObjERNS0_13ObExecContextEPNS2_12ObIAllocatorE +_ZSt16__insertion_sortIN9oceanbase6common5array17ObSEArrayIteratorINS0_12blocksstable12ObDatumRangeELl8ENS1_19ModulePageAllocatorELb0EEEN9__gnu_cxx5__ops15_Iter_comp_iterINS4_15ObDatumComparorIS5_EEEEEvT_SE_T0_ +_ZN9__gnu_cxx5__ops14_Val_comp_iterIN9oceanbase12blocksstable15ObDatumComparorINS3_12ObDatumRangeEEEEclIS5_NS2_6common5array17ObSEArrayIteratorIS5_Ll8ENS9_19ModulePageAllocatorELb0EEEEEbRT_T0_ +_ZNK9oceanbase7storage14ObSSTableArray9get_tableERKNS0_8ObITable8TableKeyERPS2_ +_ZNK9oceanbase7storage8ObLSMeta19get_serialize_size_Ev +_ZNK9oceanbase11transaction11ObAllIDMeta19get_serialize_size_Ev +_ZN9oceanbase10rootserver27ObBalanceTaskExecuteService7do_workEv +_ZN9oceanbase5share26ObBalanceTaskTableOperator21load_can_execute_taskEmRNS_6common8ObIArrayINS0_13ObBalanceTaskEEERNS2_12ObISQLClientE +_ZN9oceanbase5share26ObBalanceTaskTableOperator11read_tasks_EmRNS_6common12ObISQLClientERKNS2_11ObSqlStringERNS2_8ObIArrayINS0_13ObBalanceTaskEEE +_ZZN9oceanbase7storage8ObTablet17dec_macro_ref_cntEvENK5$_927clEPKc.llvm.9416700908822489016 +_ZNK9oceanbase12blocksstable13ObSSTableMeta9deep_copyEPclRlRPS1_ +_ZN9oceanbase5share20ObTenantDagScheduler4run1Ev +_ZN9oceanbase5share6ObIDag17generate_next_dagERPS1_ +_ZN9oceanbase5share18ObDagPrioScheduler25check_need_load_shedding_Eb +_ZN9oceanbase5share18ObDagPrioScheduler13schedule_one_ERNS_6common8ObIArrayIPNS0_9ObIDagNetEEERS5_ +_ZN9oceanbase5share20ObTenantDagScheduler15dump_dag_statusEb +_ZZN9oceanbase5share20ObTenantDagScheduler15dump_dag_statusEbENK5$_352clEPKc +_ZN9oceanbase5share18ObDagPrioScheduler9get_limitEv +_ZNK9oceanbase7storage14ObSSTableArray13inc_macro_refERb +_ZN9oceanbase12blocksstable20ObServerBlockManager12get_instanceEv +_ZNK9oceanbase12blocksstable9ObSSTable13inc_macro_refERb +_ZN9oceanbase3sql9ObDMLStmt24formalize_relation_exprsEPNS0_16ObSQLSessionInfoE +_ZN9oceanbase6common11ObArrayImplINS0_14ObStringHolderENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_22NotImplementItemEncodeIS2_EEE10extend_bufEl +_ZN9oceanbase12blocksstable23ObBaseIndexBlockBuilderC2Ev +_ZNK9oceanbase7storage15ObStorageSchema8is_validEv +_ZN9oceanbase7storage14ObSSTableArray10inner_initERNS_6common16ObArenaAllocatorERKNS2_8ObIArrayIPNS0_8ObITableEEEll +_ZN9oceanbase6common16ObFixedArrayImplINS_7storage21ObStorageColumnSchemaENS0_12ObIAllocatorEE7reserveEl +_ZN9oceanbase12blocksstable19ObStorageDatumUtils10inner_initERKNS_6common8ObIArrayINS_5share6schema9ObColDescEEElb +_ZN9oceanbase6common11ObArrayImplINS_10rootserver15ObUnitGroupInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE10extend_bufEl +_ZN9oceanbase6common11ObArrayImplINS_5share19ObLSPrimaryZoneInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE10extend_bufEl +_ZN9oceanbase4palf6LogRpc12post_requestINS0_8election25ElectionAcceptResponseMsgEEEiRKNS_6common6ObAddrElRKT_ +_ZNK9oceanbase4palf8election15ElectionMsgBase8is_validEv +_ZN9oceanbase5obrpc13LogRpcProxyV211post_packetERKNS_6common6ObAddrERKNS_4palf16LogRpcPacketImplINS6_8election25ElectionAcceptResponseMsgEEElRKNS6_28PalfTransportCompressOptionsE +_ZN9oceanbase6common13ObSEArrayImplINS0_15ObWarningBuffer11WarningItemELl1ENS0_19ModulePageAllocatorELb0EE7reserveEl +_ZN9oceanbase5obrpc13LogRpcProxyV211post_packetERKNS_4palf16LogRpcPacketImplINS2_8election25ElectionAcceptResponseMsgEEEPNS0_10ObRpcProxy7AsyncCBINS1_5ObRpcILNS0_15ObRpcPacketCodeE5387EvEEEERKNS0_9ObRpcOptsE +_ZN9oceanbase5obrpc10ObRpcProxy8rpc_postINS0_13LogRpcProxyV25ObRpcILNS0_15ObRpcPacketCodeE5387EvEEEEiRKNT_7RequestEPNS1_7AsyncCBIS7_EERKNS0_9ObRpcOptsE +_ZNK9oceanbase5obrpc8LogRpcCBILNS0_15ObRpcPacketCodeE5387EE5cloneERKNS_3rpc5frame7SPAllocE +_ZN9oceanbase5obrpcL24rpc_mem_pool_create_pageElPKcl.llvm.4991058036511102216 +_ZNK9oceanbase4palf8election31ElectionAcceptResponseMsgMiddle19get_serialize_size_Ev +_ZNK9oceanbase5obrpc10ObRpcProxy8init_pktEPNS0_11ObRpcPacketENS0_15ObRpcPacketCodeERKNS0_9ObRpcOptsEb +_ZN9oceanbase5obrpc18fill_extra_payloadERNS0_11ObRpcPacketEPclRl +_ZNK9oceanbase3lib16ObRuntimeContext9serializeEPclRl +_ZNK9oceanbase5trace4UUID9serializeEPclRl +_ZN9oceanbase3sql18ObNestedLoopJoinOpC1ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE +_ZN9oceanbase3sql18ObGroupJoinBuffferC1Ev +_ZN9oceanbase7archive18ObArchiveSequencer4run1Ev +_ZN9oceanbase6common11ObArrayImplINS_5share19ObPartitionLocationENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE10extend_bufEl +_ZN9oceanbase5share6schema27ObMultiVersionSchemaService24get_cluster_schema_guardERNS1_19ObSchemaGetterGuardENS2_17RefreshSchemaModeE +_ZN9oceanbase5share6schema27ObMultiVersionSchemaService26check_restore_tenant_existERKNS_6common8ObIArrayImEERb +_ZN9oceanbase5share6schema19ObSchemaGetterGuard15get_tenant_infoEmRPKNS1_20ObSimpleTenantSchemaE +_ZNK9oceanbase5share6schema11ObSchemaMgr18get_tenant_schemasERNS_6common8ObIArrayIPKNS1_20ObSimpleTenantSchemaEEE +_ZNK9oceanbase7storage8ObTablet29check_sstable_column_checksumEv +_ZNK9oceanbase7storage18ObTabletTableStore15get_all_sstableERNS0_20ObTableStoreIteratorEb +_ZN9oceanbase7storage13ObVectorStore9fill_rowsElPNS_12blocksstable19ObIMicroBlockReaderERllRKNS0_14ObFilterResultE +_ZN9oceanbase7storage22ObBlockBatchedRowStore11get_row_idsEPNS_12blocksstable19ObIMicroBlockReaderERllS5_bRKNS0_14ObFilterResultE +_ZN9oceanbase12blocksstable19ObMicroBlockDecoder8get_rowsERKNS_6common8ObIArrayIiEERKNS3_IPKNS_5share6schema13ObColumnParamEEEPKlPPKclRNS3_INS0_14ObSqlDatumInfoEEEl +_ZN9oceanbase5share17ObLSTableOperator13get_by_tenantEmbRNS_6common8ObIArrayINS0_8ObLSInfoEEE +_ZNK9oceanbase5share19ObUnitTableOperator25get_unit_groups_by_tenantEmRNS_6common8ObIArrayINS0_17ObSimpleUnitGroupEEE +_ZN9oceanbase3sql17ObPlanCacheObject19check_pre_calc_consEbRbRNS0_23ObPreCalcExprConstraintERNS0_13ObExecContextE +_ZN9oceanbase3sql15ObDatumObjParam11to_objparamERNS_6common10ObObjParamEPNS2_12ObIAllocatorE +_ZNK9oceanbase3sql13FlashBackItem24set_flashback_query_infoERNS0_9ObEvalCtxERNS0_14ObDASScanRtDefE +_ZN9oceanbase8observer16ObAgentTableBase13construct_sqlEmRNS_6common11ObSqlStringE +_ZN9oceanbase8observer16ObAgentTableBase17construct_columnsEmRNS_6common11ObSqlStringE +_ZNK9oceanbase5share6schema13ObTableSchema28get_column_name_by_column_idEmRNS_6common8ObStringERb +_ZN9oceanbase8observer16ObAgentTableBase20append_sql_conditionERNS_6common11ObSqlStringE +_ZN9oceanbase8observer28ObIteratePrivateVirtualTable29setup_inital_rowkey_conditionERNS_6common11ObSqlStringES4_ +_ZN9oceanbase7storage19ObTabletMemtableMgr22release_head_memtable_EPNS_8memtable11ObIMemtableEb +_ZN9oceanbase8memtable10ObMemtable5lock_ERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS_6common13ObStoreRowkeyE _ZN9oceanbase12blocksstable11ObRowWriter12write_rowkeyERKNS_6common13ObStoreRowkeyERPcRl _ZN9oceanbase12blocksstable11ObRowWriter20write_col_in_clusterINS_6common5ObObjEEEiPKT_lll -_ZN9oceanbase11transaction11ObGtsSource15get_gts_leader_ERNS_6common6ObAddrE -_ZN9oceanbase3sql13AllocOpHelperILi32EE5allocERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputElRPNS0_10ObOperatorE -_ULx86_64_dwarf_callback -_ZN9oceanbase6common11ObArrayImplINS_5share11ObLSReplicaENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE6assignERKNS0_8ObIArrayIS3_EE -_ZSt16__introsort_loopIPZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS1_7ObLabelEPNS0_6common9LabelItemEEEE11ItemWrapperlN9__gnu_cxx5__ops15_Iter_comp_iterIZNKS2_10iter_labelESA_E4$_69EEEvT_SI_T0_T1_ -_ZN9oceanbase8observer9ObService24get_server_resource_infoERNS_5share20ObServerResourceInfoE -_ZN9oceanbase3sql19ObDASLocationRouter18get_vt_ls_locationEmRKNS_6common10ObTabletIDERNS_5share12ObLSLocationE -_ZN9oceanbase6common11ObIORequest14recycle_bufferEv -_ZN9oceanbase3sql12ObSortOpImpl5resetEv -_ZN9oceanbase8memtable10ObMemtable10multi_scanERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS_6common8ObIArrayINS_12blocksstable12ObDatumRangeEEERPNS2_18ObStoreRowIteratorE -_ZN9oceanbase7storage3mds13ObMdsTableMgr11get_rec_scnERNS_6common10ObTabletIDE -_ZNK9oceanbase6common10ObFunctionIFiRNS_7storage8ObTabletEEE7DerivedIZZNS2_3mds16ObTenantMdsTimer26try_recycle_mds_table_taskEvENK5$_130clERNS2_4ObLSEEUlS4_E_E6invokeES4_$6716a20acc2bc67cdce2559f75cb0d5f -_ZN9oceanbase6common10ObIORunner4run1Ev -_ZN9oceanbase6common22ObVirtualTableIteratorC2Ev -_ZN9oceanbase3sql15ObHashGroupByOp7destroyEv -_ZN9oceanbase5share6ObIDag11check_cycleEv -_ZN9oceanbase10rootserver20ObArbitrationService7do_workEv -_ZN9oceanbase6common23ObSingleConnectionProxy4readERNS0_12ObISQLClient10ReadResultEmPKci -_ZN9oceanbase6common18ObMySQLTransaction5startEPNS0_12ObISQLClientEmbi +_ZN9oceanbase12blocksstable11ObRowWriter13append_columnERKNS_6common5ObObjE +_ZN9oceanbase3sql16ObSelectResolver7resolveERK10_ParseNode +_ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImlEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS4_EENS0_17ObPooledAllocatorINS1_15ObHashTableNodeIS4_EENS0_18ObWrapperAllocatorENS0_10ObNullLockEEENS1_19NoPthreadDefendModeENS1_13NormalPointerESE_Ll1EE6createElPSG_PSE_ +_ZN9oceanbase6common16ObFixedArrayImplINS_5share6schema9ObColDescENS0_12ObIAllocatorEE9push_backERKS4_ +_ZNK9oceanbase10compaction19ObDiagnoseInfoParamILl3ELl64EE12fill_commentEPcl +_ZN9oceanbase12blocksstable18ObMacroBlockWriter5resetEv +_ZN9oceanbase7storage24ObCompactionBufferWriter10free_blockEv +_ZN9oceanbase3omt21ObMultiTenantOperator4initEv +_ZNK9oceanbase7storage14ObMetaDiskAddr9serializeEPclRl +_ZN9oceanbase12blocksstable23ObDataIndexBlockBuilder18generate_macro_rowERNS0_12ObMacroBlockERKNS0_12MacroBlockIdE +_ZN9oceanbase12blocksstable23ObBaseIndexBlockBuilder23build_index_micro_blockERNS0_16ObMicroBlockDescE +_ZN9oceanbase12blocksstable23ObDataIndexBlockBuilder15append_next_rowERKNS0_16ObMicroBlockDescERNS0_19ObIndexBlockRowDescE +_ZN9oceanbase12blocksstable12ObMacroBlock20get_macro_block_metaERNS0_20ObDataMacroBlockMetaE +_ZNK9oceanbase7storage19ObFixedMetaObjArrayINS_5share6schema9ObColDescEE9serializeEPclRl +ev_run +_ZN9oceanbase5share24ObLSRecoveryStatOperator25get_all_ls_recovery_stat_EmRKNS_6common11ObSqlStringERNS2_12ObISQLClientERNS0_3SCNES9_ +_ZN9oceanbase7storage14ObMetaDiskAddr11deserializeEPKclRl +_ZN9oceanbase7storage17ObLSDDLLogHandler11get_rec_scnEv +_ZN9oceanbase5share19ObLSLocationService10get_leaderElmRKNS0_6ObLSIDEbRNS_6common6ObAddrE +_ZN9oceanbase3sql15ObEqualAnalysis13new_equal_setEv +_ZN9oceanbase3sql12ObDMLService19write_row_to_das_opILi5EEEiRKNS0_17ObDASDMLBaseCtDefERNS0_17ObDASDMLBaseRtDefEPKNS0_14ObDASTabletLocERNS0_10ObDMLRtCtxERKNS_6common12ObFixedArrayIPNS0_6ObExprENSD_12ObIAllocatorEEESG_RPNS0_17ObChunkDatumStore9StoredRowE +_ZN9oceanbase8observer15ObUniqTaskQueueINS_5share21ObVTableLocUpdateTaskENS2_23ObVTableLocationServiceEE4run1Ev +_ZN9oceanbase4palf13LogConfigMeta5resetEv +_ZN9oceanbase3sql13ObMergeJoinOp7destroyEv +_ZN9oceanbase3sql12ObSortOpImpl14before_add_rowEv +_ZN9oceanbase3sql24ObTenantSqlMemoryManager18get_work_area_sizeEPNS_6common12ObIAllocatorERNS0_20ObSqlWorkAreaProfileE +_ZN9oceanbase6common15ObLinearHashMapINS_12blocksstable12MacroBlockIdEiNS0_14ShareMemMgrTagEE16load_access_bkt_ERKS3_RmRPNS5_6BucketE +_ZN9oceanbase10rootserver20ObLSRecoveryReportor4run2Ev +_ZN9oceanbase6common18ObMySQLTransaction3endEb +_ZN9oceanbase6common23ObSingleConnectionProxy5closeEv +_ZN9oceanbase10rootserver20ObAllTenantInfoCache15get_tenant_infoERNS_5share15ObAllTenantInfoERlS5_ +_ZN9oceanbase10rootserver20ObLSRecoveryReportor43update_sys_ls_recovery_stat_and_tenant_infoERNS_5share16ObLSRecoveryStatERKNS2_12ObTenantRoleEbRNS_6common18ObMySQLTransactionE +_ZN9oceanbase8observer20ObInnerSQLConnection6commitEv +_ZN9oceanbase10rootserver23ObLSRecoveryStatHandler26get_ls_level_recovery_statERNS_5share16ObLSRecoveryStatE +_ZN9oceanbase10logservice12ObLogService13get_palf_roleERKNS_5share6ObLSIDERNS_6common6ObRoleERl +_ZN9oceanbase10logservice12ObLogService9open_palfERKNS_5share6ObLSIDERNS_4palf15PalfHandleGuardE +_ZN9oceanbase4palf15PalfHandleGuardD2Ev +_ZN9oceanbase10rootserver23ObLSRecoveryStatHandler21get_latest_palf_stat_ERNS_4palf8PalfStatE +_ZNK9oceanbase10logservice12ObLogHandler21get_paxos_member_listERNS_6common16ObMemberListBaseILl7EEERl _ZN9oceanbase8observer20ObInnerSQLConnection17start_transactionERKmb _ZN9oceanbase8observer20ObInnerSQLConnection30retry_while_no_tenant_resourceIZNS1_17start_transactionERKmbE5$_204EEilS4_T_ _ZN9oceanbase8observer20ObInnerSQLConnection23start_transaction_innerERKmb -_ZN9oceanbase5share19ObServiceEpochProxy24inner_get_service_epoch_ERNS_6common12ObISQLClientElbPKcRl -_ZN9oceanbase5share44ObArbitrationServiceReplicaTaskTableOperator13get_all_tasksERNS_6common12ObISQLClientEmbRNS2_9ObSEArrayINS0_35ObArbitrationServiceReplicaTaskInfoELl100ENS2_15ObNullAllocatorELb0EEE -_ZN9oceanbase3sql12ObHashJoinOp19get_max_memory_sizeEl -_ZN9oceanbase5share19ObLSLocationService15get_from_cache_ElmRKNS0_6ObLSIDERNS0_12ObLSLocationE -_ZNK9oceanbase12blocksstable13ObSSTableMeta9serializeEPclRl -_ZN9oceanbase6common19ObTableAccessHelper34get_signle_column_from_signle_row_EPNS0_9sqlclient13ObMySQLResultEPKcRl -_ZN9oceanbase12blocksstable18ObIMicroBlockCache8prefetchEmRKNS0_12MacroBlockIdERKNS0_16ObMicroIndexInfoEbRNS0_18ObMacroBlockHandleEPNS_6common12ObIAllocatorE -_ZN9oceanbase3sql18ObGroupJoinBuffferC1Ev -_ZNK9oceanbase10rootserver13ObUnitManager18inner_get_unit_idsERNS_6common8ObIArrayImEE +_ZN9oceanbase6common2SVINS_8observer16ObInnerSQLResultELb0EEC2IZNS2_20ObInnerSQLConnection23start_transaction_innerERKmbE5$_206EEibOT_ +_ZN9oceanbase3sql11ObJoinOrder20extract_used_columnsEmmbRNS_6common8ObIArrayImEERNS3_INS0_10ColumnItemEEE +_ZN9oceanbase7storage25ObSharedBlockReaderWriter11write_blockERKNS0_22ObSharedBlockWriteInfoERKNS1_22ObSharedBlockWriteArgsERNS0_23ObSharedBlockBaseHandleERNS0_22ObSharedBlocksWriteCtxE +_ZN9oceanbase12blocksstable18ObMacroBlockHandle11async_writeERKNS0_21ObMacroBlockWriteInfoE +_ZN9oceanbase7storage16ObStorageLogItem17fill_batch_headerEisl _ZN9oceanbase8observer15ObUniqTaskQueueINS0_23ObTabletTableUpdateTaskENS0_20ObTabletTableUpdaterEE4run1Ev +_ZN9oceanbase6common21ObTimeZoneInfoManager20fetch_time_zone_infoEv +_ZN9oceanbase5share20ObLSTemplateOperator9exec_readINS0_18ObLSStatusOperatorENS0_19ObLSPrimaryZoneInfoEEEiRKmRKNS_6common11ObSqlStringERNS7_12ObISQLClientEPT_RNS7_8ObIArrayIT0_EE +_ZN9oceanbase3omt13ObMultiTenant16get_tenant_unitsERNS_6common9ObSEArrayINS_5share16ObUnitInfoGetter14ObTenantConfigELl16ENS2_19ModulePageAllocatorELb0EEEb +_ZNK9oceanbase3sql9ObDMLStmt26get_where_scope_conditionsERNS_6common8ObIArrayIPNS0_9ObRawExprEEEb +_ZN9oceanbase6common11ObArrayImplINS_10rootserver26ObLSStatusMachineParameterENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE9push_backERKS3_ +_ZN9oceanbase5share20ObAllTenantInfoProxy22load_pure_tenant_info_EmPNS_6common12ObISQLClientEbRlRNS0_15ObAllTenantInfoE +_ZN9oceanbase6common11ObSqlString6appendEPKcl +_ZN9oceanbase5share16ObAsyncTaskQueue4run2Ev +_ZN9oceanbase6common10ObRowStore20add_row_by_projectorERKNS0_8ObNewRowERPKNS1_9StoredRowEl +_ZN9oceanbase6common12ObCellWriter6appendEmRKNS0_5ObObjEPS2_ +_ZN9oceanbase6common12ObCellWriter9write_intERKNS0_5ObObjENS0_9ObObjTypeEl +_ZN9oceanbase7storage3mds40retry_release_lock_with_op_until_timeoutILNS1_8LockModeE1ERNS1_7MdsUnitINS1_8DummyKeyENS0_31ObTabletCreateDeleteMdsUserDataEE13GetSnapShotOpIZNKS1_12MdsTableImplINS_6common7ObTupleIJS7_NS4_IS5_NS0_26ObTabletBindingMdsUserDataEEENS4_IS5_NS_5share18ObTabletAutoincSeqEEENS4_INS_10compaction25ObMediumCompactionInfoKeyENSH_22ObMediumCompactionInfoEEEEEEE12get_snapshotIS6_ZNS1_17GetSnapshotHelperISM_E11InnerHelperIS5_S6_EclERKS7_EUlRKS6_E_Lb1EEEiOT0_NSE_3SCNEllEUlRKNS1_11UserMdsNodeIS5_S6_EEE_EEEEiRKNSA_10SpinRWLockERNS1_10RetryParamESY_ +_ZN9oceanbase3sql13ObStmtMapInfoD2Ev +_ZN9oceanbase8observer16ObQueryRetryCtrl25test_and_save_retry_stateERKNS0_15ObGlobalContextERKNS_3sql8ObSqlCtxERNS5_11ObResultSetEiRibbb +_ZN9oceanbase6common17ObReplicaProperty11deserializeEPKclRl +_ZN9oceanbase5share19ObLSLocationService14fill_location_ElRKNS0_8ObLSInfoERNS0_12ObLSLocationE +_ZN9oceanbase12blocksstable20ObWholeDataStoreDesc6assignERKNS0_15ObDataStoreDescE +_ZN9oceanbase6common16ObFixedArrayImplIlNS0_12ObIAllocatorEE6assignERKNS0_8ObIArrayIlEE +easy_baseth_pool_invoke.llvm.12889796537703634804 +_ZN9oceanbase14dbms_scheduler24ObDBMSSchedTableOperator23get_dbms_sched_job_infoEmbmRKNS_6common8ObStringERNS2_12ObIAllocatorERNS0_18ObDBMSSchedJobInfoE +_ZN9oceanbase11transaction15ObGtsRequestRpc4postEmRKNS_6common6ObAddrERKNS0_12ObGtsRequestE +_ZN9oceanbase5obrpc10ObGtsRPCCBILNS0_15ObRpcPacketCodeE1808EE8process_ERKNS0_14ObGtsRpcResultERKNS_6common6ObAddrERNS0_15ObRpcResultCodeE +_ZN9oceanbase11transaction23ObTsResponseTaskFactory5allocEv +_ZN9oceanbase11transaction10ObTsWorker9push_taskEmPNS0_16ObTsResponseTaskE +_ZN9oceanbase11transaction7ObTsMgr10update_gtsEmNS_6common13ObMonotonicTsEliRb +_ZN9oceanbase11transaction11ObGtsSource10update_gtsENS_6common13ObMonotonicTsElS3_Rb _ZN9oceanbase11transaction17ObTimestampAccess14handle_requestERKNS0_12ObGtsRequestERNS_5obrpc14ObGtsRpcResultE _ZN9oceanbase11transaction16ObTransStatistic27add_gts_request_total_countEml -_ZN9oceanbase7storage18ObTabletPointerMap5existERKNS0_14ObTabletMapKeyERb -_ZNK9oceanbase12blocksstable18ObSSTableMetaCache18get_serialize_sizeEv -_ZN9oceanbase6common16ObOptStatService29load_table_stat_and_put_cacheEmRKNS0_14ObOptTableStat3KeyERNS0_20ObOptTableStatHandleE -_ZN9oceanbase10logservice19ObRemoteFetchWorker4run1Ev -_ZN9oceanbase7archive18ObArchiveSequencer4run1Ev -_ZN9oceanbase6common21ObNullSafeDatumStrCmpILNS0_15ObCollationTypeE45ELb0ELb0EE3cmpERKNS0_7ObDatumES6_Ri -_ZN9oceanbase3lib9ObjectMgr14create_sub_mgrEv -_ZN9oceanbase5share11ObLSReplica17text2learner_listEPKcRNS_6common15BaseLearnerListILl2000ENS4_8ObMemberEEE -_ZN9oceanbase10rootserver14ObTenantLSInfo19gather_all_ls_info_Ev -_ZN9oceanbase6common11ObArrayImplINS_10rootserver13ObLSGroupInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE9push_backERKS3_ -_ZN9oceanbase6common10ObIOResult7dec_refEPKc +_ZN9oceanbase7storage8ObITable8TableKey11deserializeEPKclRl +_ZN9oceanbase5share10ObScnRange11deserializeEPKclRl +_ZN9oceanbase5share3SCN11deserializeEPKclRl +_ZN9oceanbase3sql13ObMergeJoinOpC1ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE +_ZN9oceanbase3sql14ObRADatumStoreC1EPNS_6common12ObIAllocatorE +_ZN9oceanbase5share24ObLSRecoveryStatOperator32update_ls_recovery_stat_in_transERKNS0_16ObLSRecoveryStatEbRNS_6common18ObMySQLTransactionE +_ZN9oceanbase6common23ObSingleConnectionProxy4readERNS0_12ObISQLClient10ReadResultEmPKc +_ZN9oceanbase6common23ObSingleConnectionProxy5writeEmPKcRl _ZN9oceanbase5share24ObLSRecoveryStatOperator20get_ls_recovery_statERKmRKNS0_6ObLSIDEbRNS0_16ObLSRecoveryStatERNS_6common12ObISQLClientE -_ZN9oceanbase10rootserver20ObTenantThreadHelper22check_can_do_recovery_Em -_ZNK9oceanbase5share19ObUnitTableOperator9read_unitERKNS_6common9sqlclient13ObMySQLResultERNS0_6ObUnitE -_ZN9oceanbase3sql13ObMergeJoinOp10inner_openEv -_ZN9oceanbase3sql18ObNestedLoopJoinOp10inner_openEv -_ZN9oceanbase5share6schema20ObDDLTransController4run1Ev -_ZN9oceanbase12blocksstable18ObMacroBlockWriter5resetEv -_ZN9oceanbase8observer15ObUniqTaskQueueINS_5share22ObLSLocationUpdateTaskENS2_19ObLSLocationServiceEE4run1Ev -_ZN9oceanbase3sql20ObAggregateProcessor7processERNS1_8GroupRowEb -_ZN9oceanbase3sql19ObExprLeastGreatest10calc_mysqlERKNS0_6ObExprERNS0_9ObEvalCtxERNS_6common7ObDatumEb -_ZN9oceanbase5share26ObGlobalMergeTableOperator22load_global_merge_infoERNS_6common12ObISQLClientEmRNS0_17ObGlobalMergeInfoEb +_ZN9oceanbase6common15ObLinearHashMapINS0_9ObIntWarpENS_7storage3mds24ObMdsMemoryLeakDebugInfoENS0_14ShareMemMgrTagEE16do_foreach_scan_IZNS4_18ObTenantMdsService21dump_map_holding_itemElE5$_159NS7_14DoForeachOnBktISA_EEEEbmmRT_RT0_.llvm.1757474974016973374 +_ZN9oceanbase5share17ObGlobalStatProxy26inner_get_snapshot_gc_scn_ERNS_6common12ObISQLClientEmRNS0_3SCNEPKc +_ZN9oceanbase7storage19ObTabletMemtableMgr17get_all_memtablesERNS_6common8ObIArrayINS0_15ObTableHandleV2EEE +_ZN9oceanbase12blocksstableL21acquire_local_decoderINS0_12ObRLEDecoderEEEiRNS0_13ObDecoderPoolERKNS0_18ObMicroBlockHeaderERKNS0_14ObColumnHeaderEPKcRPKNS0_16ObIColumnDecoderE +_ZN9oceanbase12blocksstable24ObMicroBlockBufferHelper4openERKNS0_15ObDataStoreDescERNS_6common12ObIAllocatorE +_ZN9oceanbase6common9ObObjMeta11deserializeEPKclRl +_ZN9oceanbase6common21ObNullSafeDatumStrCmpILNS0_15ObCollationTypeE45ELb0ELb0EE3cmpERKNS0_7ObDatumES6_Ri +_ZN9oceanbase7storage18ObLSRestoreHandler24check_before_do_restore_ERb +_ZN9oceanbase7storage17ObTabletPersister26convert_tablet_to_disk_argERNS_6common16ObArenaAllocatorERKNS0_8ObTabletERNS2_8ObIArrayINS0_22ObSharedBlocksWriteCtxEEESB_RNS0_16ObTabletPoolTypeERNS0_20ObTabletTransformArgE +_ZN9oceanbase7storage15ObStorageSchemaD1Ev +_ZN9oceanbase7storage15ObStorageSchemaD2Ev +_ZN9oceanbase6common16ObFixedArrayImplINS_7storage26ObStorageColumnGroupSchemaENS0_12ObIAllocatorEED2Ev +_ZN9oceanbase7storage15ObStorageSchema5resetEv +_ZN9oceanbase7storage21ObStorageColumnSchema7destroyERNS_6common12ObIAllocatorE +_ZN9oceanbase12blocksstable9ObSSTableD1Ev +_ZN9oceanbase12blocksstable9ObSSTableD2Ev +_ZN9oceanbase7storage17ObTabletPersister32load_dump_kv_and_fill_write_infoERNS_6common16ObArenaAllocatorERKNS0_19ObTabletComplexAddrINS0_3mds9MdsDumpKVEEERNS2_8ObIArrayINS0_22ObSharedBlockWriteInfoEEERNS0_14ObMetaDiskAddrE +_ZNK9oceanbase7storage15ObStorageSchema18get_serialize_sizeEv +_ZNK9oceanbase12blocksstable18ObDataBlockMetaVal9serializeEPclRl +_ZNK9oceanbase12blocksstable18ObDataBlockMetaVal18get_serialize_sizeEv +_ZNK9oceanbase12blocksstable19ObLogicMacroBlockId19get_serialize_size_Ev +_ZNK9oceanbase12blocksstable19ObLogicMacroBlockId9serializeEPclRl +_ZN9oceanbase12blocksstable23ObBaseIndexBlockBuilder4initERKNS0_15ObDataStoreDescERS2_RNS_6common12ObIAllocatorEPNS0_18ObMacroBlockWriterEl +_ZN9oceanbase12blocksstable18ObMacroBlockWriter18build_micro_writerEPKNS0_15ObDataStoreDescERNS_6common12ObIAllocatorERPNS0_19ObIMicroBlockWriterEl +_ZN9oceanbase12blocksstable19ObMicroBlockEncoder4initERKNS0_23ObMicroBlockEncodingCtxE +_ZN9oceanbase7storage26ObTabletCreateDeleteHelper18acquire_tmp_tabletERKNS0_14ObTabletMapKeyERNS_6common16ObArenaAllocatorERNS0_14ObTabletHandleE +_ZN9oceanbase7storage18ObTenantMetaMemMgr18acquire_tmp_tabletERKNS0_18WashTabletPriorityERKNS0_14ObTabletMapKeyERNS_6common16ObArenaAllocatorERNS0_14ObTabletHandleE +_ZN9oceanbase7storage17ObLSTabletService18estimate_row_countERKNS0_16ObTableScanParamERKNS0_16ObTableScanRangeERNS_6common8ObIArrayINS8_19ObEstRowCountRecordEEERlSD_ +_ZN9oceanbase10rootserver17ObLSServiceHelper24process_status_to_steadyEbRKNS_5share24ObTenantSwitchoverStatusERNS0_14ObTenantLSInfoE +_ZN9oceanbase10rootserver17ObLSServiceHelper27construct_ls_status_machineEbmPNS_6common12ObMySQLProxyERNS2_8ObIArrayINS0_26ObLSStatusMachineParameterEEE +_ZN9oceanbase8observer15ObUniqTaskQueueINS0_18ObServerSchemaTaskENS0_21ObServerSchemaUpdaterEE4run1Ev +_ZN9oceanbase6common9ObScannerC1EPKcPNS0_12ObIAllocatorElmb +_ZN9oceanbase6common9ObCharset15charset_convertERNS0_12ObIAllocatorERKNS0_8ObStringENS0_15ObCollationTypeES7_RS4_lPl +_ZN9oceanbase7storage10ObStoreCtx13init_for_readERKNS0_10ObLSHandleEllRKNS_5share3SCNE +_ZN9oceanbase10rootserver18ObTenantInfoLoader4run2Ev +_ZN9oceanbase6common11ObArrayImplIiNS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIiEENS0_22NotImplementItemEncodeIiEEED2Ev +_ZN9oceanbase5share44ObArbitrationServiceReplicaTaskTableOperator13get_all_tasksERNS_6common12ObISQLClientEmbRNS2_9ObSEArrayINS0_35ObArbitrationServiceReplicaTaskInfoELl100ENS2_15ObNullAllocatorELb0EEE _ZN9oceanbase5share8detector9ObLCLNode46register_timer_with_necessary_retry_with_lock_Ev -ev_run -_ZN9oceanbase5obrpc10ObRpcProxy8rpc_postINS0_13LogRpcProxyV25ObRpcILNS0_15ObRpcPacketCodeE5387EvEEEEiRKNT_7RequestEPNS1_7AsyncCBIS7_EERKNS0_9ObRpcOptsE -_ZN9oceanbase5obrpc18fill_extra_payloadERNS0_11ObRpcPacketEPclRl -pn_send -_ZNK9oceanbase4palf8election31ElectionAcceptResponseMsgMiddle19get_serialize_size_Ev -_ZNK9oceanbase5obrpc10ObRpcProxy8init_pktEPNS0_11ObRpcPacketENS0_15ObRpcPacketCodeERKNS0_9ObRpcOptsEb +_ZN9oceanbase7archive14ObArchiveLSMgr4run1Ev +_ZN9oceanbase12blocksstable24ObSSTableSecMetaIterator4openERKNS0_12ObDatumRangeENS0_20ObMacroBlockMetaTypeERKNS0_9ObSSTableERKNS_7storage16ObITableReadInfoERNS_6common12ObIAllocatorEbl +_ZN9oceanbase7archive15ObArchiveSender4run1Ev +_ZN9oceanbase14dbms_scheduler20ObDBMSSchedJobMaster12register_jobERNS0_18ObDBMSSchedJobInfoEPNS0_17ObDBMSSchedJobKeyEb +_ZN9oceanbase14dbms_scheduler24ObDBMSSchedTableOperator15calc_execute_atERNS0_18ObDBMSSchedJobInfoERlS4_b _ZN9oceanbase10logservice18ObGarbageCollector4run1Ev +_ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS0_9ObSEArrayINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EEENS0_14ShareMemMgrTagEE9cons_seg_Em _ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS0_9ObSEArrayINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EEENS0_14ShareMemMgrTagEE16do_foreach_scan_INS_10logservice18ObGarbageCollector27QueryLSIsValidMemberFunctorENS9_14DoForeachOnBktISD_EEEEbmmRT_RT0_ -_ZN9oceanbase8observer9ObService20get_leader_locationsERKNS_5obrpc23ObGetLeaderLocationsArgERNS2_26ObGetLeaderLocationsResultE -_ZN9oceanbase3omt21ObMultiTenantOperator7executeERPNS_6common8ObNewRowE -_ZN9oceanbase8observer18ObAllVirtualLSInfo19process_curr_tenantERPNS_6common8ObNewRowE +_ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS0_9ObSEArrayINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EEENS0_14ShareMemMgrTagEE7destroyEv +_ZN9oceanbase10logservice18ObGarbageCollector11execute_gc_ERNS_6common9ObSEArrayINS1_11GCCandidateELl16ENS2_19ModulePageAllocatorELb0EEE +_ZN9oceanbase5obrpc15ObPocClientStub4sendINS_5share14ObLeaseRequestENS3_15ObLeaseResponseEEEiRNS0_10ObRpcProxyERKNS_6common6ObAddrENS0_15ObRpcPacketCodeERKT_RT0_PNS0_6HandleERKNS0_9ObRpcOptsE +_ZNK9oceanbase5obrpc26ObUpdateTenantInfoCacheArg9serializeEPclRl +_ZN9oceanbase3sql19ObDASLocationRouter15get_vt_svr_pairEmRPKNS0_14VirtualSvrPairE +_ZN9oceanbase7storage18ObTabletTableStore28try_cache_local_sstable_metaERNS_6common16ObArenaAllocatorERNS0_14ObSSTableArrayElRl _ZN9oceanbase3sql23ObBasicNestedLoopJoinOp21prepare_rescan_paramsEb -_ZNK9oceanbase4palf8election31ElectionAcceptResponseMsgMiddle9serializeEPclRl -_ZN9oceanbase10rootserver20ObEmptyServerChecker4run3Ev -_ZNK9oceanbase5share16ObServerTraceMap16get_servers_infoERKNS_6common19ObFixedLengthStringILl128EEERNS2_8ObIArrayINS0_19ObServerInfoInTableEEEb -_ZN9oceanbase5share23ObVTableLocationService10vtable_getEmmlRbRNS_6common8ObIArrayINS3_6ObAddrEEE -_ZN9oceanbase6common4hash11ObHashTableINS_5share21ObVTableLocUpdateTaskENS1_11HashMapPairIS4_NS1_11HashNullObjEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi97ENS1_19NoPthreadDefendModeENS_8observer22ObHighPrioMemAllocatorEEESH_NS1_13NormalPointerENS0_8ObMallocELl1EE14set_refactoredIvLb0EEEiRKS4_RKS7_iiiPT_ -_ZN9oceanbase6common12ObCellWriter6appendEmRKNS0_5ObObjEPS2_ -_ZN9oceanbase6common12ObCellWriter9write_intERKNS0_5ObObjENS0_9ObObjTypeEl -_ZN9oceanbase5share20ObTenantDagScheduler4run1Ev -_ZN9oceanbase5share20ObTenantDagScheduler15dump_dag_statusEb -_ZZN9oceanbase5share17ObDagNetScheduler15dump_dag_statusEvENK5$_290clEPKc -_ZN9oceanbase5share18ObDagPrioScheduler13schedule_one_ERNS_6common8ObIArrayIPNS0_9ObIDagNetEEERS5_ -_ZN9oceanbase7storage18ObLSRestoreHandler24check_before_do_restore_ERb -_ZN9oceanbase7storage8ObLSMeta19ObSpinLockTimeGuardD2Ev -_ZN9oceanbase5share8detector21ObDeadLockDetectorMgr16InnerAllocHandle12InnerFactory6createERKNS1_13UserBinaryKeyERKNS_6common10ObFunctionIFiRKNS8_8ObIArrayINS1_25ObDetectorInnerReportInfoEEElEEERKNS9_IFiRNS1_24ObDetectorUserReportInfoEEEERKNS1_18ObDetectorPriorityEmjbRPNS1_19ObIDeadLockDetectorE -_ZN9oceanbase3sql12ObHashJoinOp10inner_openEv -_ZN9oceanbase19concurrency_control30ObMultiVersionGarbageCollector7collectERNS0_31ObMultiVersionGCSnapshotFunctorE -_ZN9oceanbase6common17ObReplicaProperty11deserializeEPKclRl +_ZN9oceanbase7storage18ObTenantMetaMemMgr23compare_and_swap_tabletERKNS0_14ObTabletMapKeyERKNS0_14ObTabletHandleERS5_ +_ZN9oceanbase5obrpc14rpc_encode_reqINS0_18ObFetchLocationArgEEEiRNS0_10ObRpcProxyERNS0_12ObRpcMemPoolENS0_15ObRpcPacketCodeERKT_RKNS0_9ObRpcOptsERPcRlbbbl +_ZN9oceanbase5obrpc14rpc_encode_reqINS0_23ObGetLeaderLocationsArgEEEiRNS0_10ObRpcProxyERNS0_12ObRpcMemPoolENS0_15ObRpcPacketCodeERKT_RKNS0_9ObRpcOptsERPcRlbbbl +_ZN9oceanbase7storage18ObTabletPointerMap33get_meta_obj_with_external_memoryERKNS0_14ObTabletMapKeyERNS_6common16ObArenaAllocatorERNS0_14ObMetaObjGuardINS0_8ObTabletEEEb +_ZN9oceanbase12blocksstable20ObDataMacroBlockMeta9parse_rowERNS0_10ObDatumRowE +_ZN9oceanbase6common13serialization6decodeEPKclRlS4_ +_ZN9oceanbase6common13ObSEArrayImplIlLl4ENS0_19ModulePageAllocatorELb0EE11deserializeEPKclRl +_ZN9oceanbase5share24ObZoneMergeTableOperator28inner_load_zone_merge_infos_ERNS_6common12ObISQLClientEmRNS2_8ObIArrayINS0_15ObZoneMergeInfoEEEb +_ZN9oceanbase8observer28ObIteratePrivateVirtualTable7do_openEv +_ZN9oceanbase7storage21ObTenantFreezeInfoMgr15try_update_infoEv +_ZN9oceanbase6common9ObVersion11deserializeEPKclRl +_ZNK9oceanbase10logservice11coordinator10PriorityV110serialize_EPclRl +_ZNK9oceanbase6common13ObSEArrayImplINS_10logservice11coordinator12FailureEventELl3ENS0_19ModulePageAllocatorELb0EE9serializeEPclRl +_ZN9oceanbase7storage21ObTenantFreezeInfoMgr10ReloadTask18refresh_merge_infoEv _ZNK9oceanbase10rootserver13ObUnitManager28inner_get_unit_infos_of_poolEmRNS_6common8ObIArrayINS_5share10ObUnitInfoEEE -_ZN9oceanbase4palf14PalfHandleImpl12set_base_lsnERKNS0_3LSNE -_ZN9oceanbase10rootserver18ObTenantInfoLoader4run2Ev -_ZN9oceanbase10rootserver20ObAllTenantInfoCache19refresh_tenant_infoEmPNS_6common12ObMySQLProxyERb -_ZNK9oceanbase7storage3mds7MdsUnitINS1_8DummyKeyENS0_31ObTabletCreateDeleteMdsUserDataEE10get_latestIRZNKS1_12MdsTableImplINS_6common7ObTupleIJS5_NS2_IS3_NS0_26ObTabletBindingMdsUserDataEEENS2_IS3_NS_5share18ObTabletAutoincSeqEEENS2_INS_10compaction25ObMediumCompactionInfoKeyENSF_22ObMediumCompactionInfoEEEEEEE10get_latestIS4_ZNS1_15GetLatestHelperISK_E11InnerHelperIS3_S4_EclERKS5_EUlRKS4_E_Lb1EEEiOT0_RblEUlRKNS1_11UserMdsNodeIS3_S4_EEE_EEiOT_l -_ZN9oceanbase6common4hash12ObReferedMapImNS_10rootserver14DRUnitStatInfoEE6locateERKmRPNS5_4ItemE -_ZN9oceanbase8observer15ObUniqTaskQueueINS0_19ObLSTableUpdateTaskENS0_16ObLSTableUpdaterEE4run1Ev -_ZN9oceanbase6common13ObLinkHashMapINS_5share8detector13UserBinaryKeyENS3_19ObIDeadLockDetectorENS3_21ObDeadLockDetectorMgr16InnerAllocHandleENS0_9RefHandleELl8EE14insert_and_getERKS4_PS5_ -_ZNK9oceanbase5share16ObUnitInfoGetter16build_unit_infosERKNS_6common8ObIArrayINS0_6ObUnitEEERKNS3_INS0_12ObUnitConfigEEERKNS3_INS0_14ObResourcePoolEEERNS3_INS0_10ObUnitInfoEEE -_ZN9oceanbase14dbms_scheduler24ObDBMSSchedTableOperator12extract_infoERNS_6common9sqlclient13ObMySQLResultElbRNS2_12ObIAllocatorERNS0_18ObDBMSSchedJobInfoE -_ZNK9oceanbase8observer16ObInnerSQLResult7get_objEPKcRNS_6common5ObObjE -_ZN9oceanbase8observer15ObUniqTaskQueueINS_5share21ObVTableLocUpdateTaskENS2_23ObVTableLocationServiceEE4run1Ev -_ZN9oceanbase6common10ObIOResult6finishERKNS0_11ObIORetCodeEPNS0_11ObIORequestE -_ZN9oceanbase8observer15ObUniqTaskQueueINS_10rootserver23ObDRTaskTableUpdateTaskENS2_20ObDRTaskTableUpdaterEE4run1Ev -_ZN9oceanbase8observer15ObUniqTaskQueueINS_5share20ObTabletLSUpdateTaskENS2_17ObTabletLSServiceEE4run1Ev -_ZN9oceanbase7storage3mds12MdsTableImplINS_6common7ObTupleIJNS1_7MdsUnitINS1_8DummyKeyENS0_31ObTabletCreateDeleteMdsUserDataEEENS5_IS6_NS0_26ObTabletBindingMdsUserDataEEENS5_IS6_NS_5share18ObTabletAutoincSeqEEENS5_INS_10compaction25ObMediumCompactionInfoKeyENSE_22ObMediumCompactionInfoEEEEEEE64for_each_unit_from_small_key_to_big_from_old_node_to_new_to_dumpIZNKSJ_64for_each_unit_from_small_key_to_big_from_old_node_to_new_to_dumpERNS3_10ObFunctionIFiRKNS1_9MdsDumpKVEEEElbEUlSO_E_Lb1EEEiOT_lb -_ZNK9oceanbase7storage3mds10MdsDumpKey13generate_hashEv -_ZNK9oceanbase10compaction25ObMediumCompactionInfoKey9serializeEPclRl -_ZN9oceanbase8memtable10ObMemtable5lock_ERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS_6common13ObStoreRowkeyE -_ZN9oceanbase6common8ObLogger18flush_logs_to_fileEPPNS0_10ObPLogItemEl -_ZN9oceanbase8observer16ObAgentTableBase20append_sql_conditionERNS_6common11ObSqlStringE -_ZNK9oceanbase6common6number8ObNumber9format_v2EPclRlsb -_ZN9oceanbase6common10ObIOSender4run1Ev -_ZN9oceanbase6common13ObMClockQueue16remove_from_heapEPNS0_10ObPhyQueueE -_ZN9oceanbase6common10ObIOSender6submitERNS0_11ObIORequestE -_ZN9oceanbase6common15ObDeviceChannel6submitERNS0_11ObIORequestE -_ZN9oceanbase3sql13ObMergeJoinOpC1ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE -_ZN9oceanbase11transaction14ObPartTransCtx22rollback_to_savepoint_ENS0_7ObTxSEQES2_ -_ZN9oceanbase7storage8ObTablet15create_memtableElNS_5share3SCNEb -_ZNK9oceanbase7storage15ObStorageSchema18get_serialize_sizeEv -_ZN9oceanbase8memtable10ObMemtable16ready_for_flush_Ev -_ZN9oceanbase7storage17ObTabletPersister26convert_tablet_to_disk_argERNS_6common16ObArenaAllocatorERKNS0_8ObTabletERNS2_8ObIArrayINS0_22ObSharedBlocksWriteCtxEEESB_RNS0_16ObTabletPoolTypeERNS0_20ObTabletTransformArgE -_ZNK9oceanbase7storage18ObTabletTableStore15get_all_sstableERNS0_20ObTableStoreIteratorEb -_ZN9oceanbase7storage18ObTabletTableStore5resetEv _ZN9oceanbase5obrpc14ObNetKeepAlive4run1Ev -_ZN9oceanbase5obrpc10ObRpcProxy8rpc_postINS0_13LogRpcProxyV25ObRpcILNS0_15ObRpcPacketCodeE5386EvEEEEiRKNT_7RequestEPNS1_7AsyncCBIS7_EERKNS0_9ObRpcOptsE -_ZNK9oceanbase4palf16LogRpcPacketImplINS0_8election24ElectionAcceptRequestMsgEE9serializeEPclRl -_ZNK9oceanbase4palf16LogConfigVersion9serializeEPclRl +_ZN9oceanbase4palf14PalfHandleImpl12set_base_lsnERKNS0_3LSNE +_ZN9oceanbase3sql28get_accuracy_from_parse_nodeERKNS0_6ObExprERNS0_9ObEvalCtxERNS_6common10ObAccuracyERNS6_9ObObjTypeE +_ZN9oceanbase10rootserver20ObArbitrationService35do_tenant_arbitration_service_task_Em +_ZN9oceanbase5share33ObArbitrationServiceTableOperator3getERNS_6common12ObISQLClientERKNS2_8ObStringEbRNS0_24ObArbitrationServiceInfoE +_ZNK9oceanbase12blocksstable9ObSSTable13dec_macro_refEv _ZN9oceanbase10logservice11coordinator13TableAccessor34get_all_ls_election_reference_infoERNS_6common8ObIArrayINS3_7ObTupleIJllbNS5_IJbNS3_14ObStringHolderEEEEbbbEEEEE +_ZN9oceanbase6common19ObTableAccessHelper34get_signle_column_from_signle_row_EPNS0_9sqlclient13ObMySQLResultEPKcRNS0_14ObStringHolderE _ZN9oceanbase6common19ObTableAccessHelper18get_my_sql_result_EPPKclRKNS0_8ObStringES7_RNS0_12ObISQLClientEmRNS8_10ReadResultERPNS0_9sqlclient13ObMySQLResultE +_ZN9oceanbase6common19ObTableAccessHelper27read_and_convert_to_values_IJlEEEimPPKclRKNS0_8ObStringES8_DpRT_ _ZN9oceanbase6common19ObTableAccessHelper27read_and_convert_to_values_IJNS0_14ObStringHolderEEEEimPPKclRKNS0_8ObStringES9_DpRT_ +_ZN9oceanbase6common19ObTableAccessHelper20get_values_from_row_ILi0ENS0_14ObStringHolderEJEEEiPNS0_9sqlclient13ObMySQLResultEPPKcRT0_DpRT1_ _ZN9oceanbase6common19ObTableAccessHelper20split_string_by_charERKNS0_14ObStringHolderEcRNS0_8ObIArrayIS2_EE +_ZN9oceanbase3sql14ObPhysicalPlan17assign_worker_mapERNS_6common4hash9ObHashMapINS2_6ObAddrElNS3_24LatchReadWriteDefendModeENS3_9hash_funcIS5_EENS3_8equal_toIS5_EENS3_13SimpleAllocerINS3_15ObHashTableNodeINS3_11HashMapPairIS5_lEEEELi16ENS3_19SpinMutexDefendModeENS3_29DefaultSimpleAllocerAllocatorEEENS3_13NormalPointerENS2_8ObMallocELl1EEERKNS4_IS5_lS6_S8_SA_NSB_ISF_Li88ESG_SH_EESJ_SK_Ll1EEE +_ZNK9oceanbase7storage15ObTabletMdsData9serializeEPclRl +_ZN9oceanbase6common13ObLinkHashMapINS_5share8detector13UserBinaryKeyENS3_19ObIDeadLockDetectorENS3_21ObDeadLockDetectorMgr16InnerAllocHandleENS0_9RefHandleELl8EE14insert_and_getERKS4_PS5_ +_ZN9oceanbase5share23ObVTableLocationService22renew_vtable_location_EmmRNS_6common7ObArrayINS0_19ObPartitionLocationENS2_19ModulePageAllocatorELb0ENS2_22ObArrayDefaultCallBackIS4_EENS2_17DefaultItemEncodeIS4_EEEE +_ZN9oceanbase5obrpc16ObCommonRpcProxy14fetch_locationERKNS0_18ObFetchLocationArgERNS0_21ObFetchLocationResultERKNS0_9ObRpcOptsE +_ZN9oceanbase3sql20ObAggregateProcessor7processERNS1_8GroupRowEb +_ZN9oceanbase3sql19ObExprLeastGreatest10calc_mysqlERKNS0_6ObExprERNS0_9ObEvalCtxERNS_6common7ObDatumEb +_ZN9oceanbase3sql20ObAggregateProcessor19process_aggr_resultERKNS0_17ObChunkDatumStore9StoredRowEPKNS_6common8ObIArrayIPNS0_6ObExprEEERNS1_8AggrCellERKNS0_10ObAggrInfoE +_ZN9oceanbase3sql20ObAggregateProcessor8min_calcERNS1_8AggrCellERNS_6common7ObDatumERKS5_PFiS8_S8_RiEb +_ZNK9oceanbase5share20ObServerResourceInfo9serializeEPclRl +_ZN9oceanbase10logservice19ObLogRestoreService15do_thread_task_Ev +_ZNK9oceanbase4palf6LogRpc17get_compress_optsEv +_ZNK9oceanbase12blocksstable18ObSSTableBasicMeta9serializeEPclRl +_ZNK9oceanbase12blocksstable9ObSSTable9serializeEPclRl +_ZN9oceanbase10rootserver20ObRsMasterKeyManager4run3Ev +_ZN9oceanbase12blocksstable21ObSSTableIndexBuilder5closeERNS0_17ObSSTableMergeResEll +_ZN9oceanbase12blocksstable23ObBaseIndexBlockBuilder5resetEv +_ZN9oceanbase6common13ObSEArrayImplIlLl1ENS0_19ModulePageAllocatorELb0EE7reserveEl +_ZN9oceanbase7storage3mds13ObMdsTableMgr5flushENS_5share3SCNEb +_ZNK9oceanbase7storage15ObLSRebuildInfo9serializeEPclRl +_ZN9oceanbase7storage3mds12MdsTableImplINS_6common7ObTupleIJNS1_7MdsUnitINS1_8DummyKeyENS0_31ObTabletCreateDeleteMdsUserDataEEENS5_IS6_NS0_26ObTabletBindingMdsUserDataEEENS5_IS6_NS_5share18ObTabletAutoincSeqEEENS5_INS_10compaction25ObMediumCompactionInfoKeyENSE_22ObMediumCompactionInfoEEEEEEE64for_each_unit_from_small_key_to_big_from_old_node_to_new_to_dumpIZNKSJ_64for_each_unit_from_small_key_to_big_from_old_node_to_new_to_dumpERNS3_10ObFunctionIFiRKNS1_9MdsDumpKVEEEElbEUlSO_E_Lb1EEEiOT_lb +_ZNK9oceanbase7storage3mds10MdsDumpKey13generate_hashEv +_ZNK9oceanbase7storage3mds11MdsDumpNode13generate_hashEv +_ZNK9oceanbase5share18ObTabletAutoincSeq9serializeEPclRl +_ZN9oceanbase7storage14ObSSTableArray11deserializeERNS_6common16ObArenaAllocatorEPKclRlb +_ZN9oceanbase12blocksstable9ObSSTable11deserializeERNS_6common16ObArenaAllocatorEPKclRl _ZN9oceanbase5share18ObLSLeaderLocation11deserializeEPKclRl -_ZN9oceanbase5share20ObServerResourceInfo11deserializeEPKclRl -_ZN9oceanbase3sql12ObHashJoinOp12read_hashrowEv -_ZN9oceanbase7storage18ObTabletPointerMap33get_meta_obj_with_external_memoryERKNS0_14ObTabletMapKeyERNS_6common16ObArenaAllocatorERNS0_14ObMetaObjGuardINS0_8ObTabletEEEb -_ZN9oceanbase14dbms_scheduler20ObDBMSSchedJobMaster9schedulerEv -_ZN9oceanbase6common8ObVectorIPNS_14dbms_scheduler17ObDBMSSchedJobKeyENS0_9PageArenaIS4_NS0_20DefaultPageAllocatorEEEE6insertEPS4_PKS3_ -_ZN9oceanbase14dbms_scheduler20ObDBMSSchedJobMaster12register_jobERNS0_18ObDBMSSchedJobInfoEPNS0_17ObDBMSSchedJobKeyEb -_ZN9oceanbase3sql9ObLogPlan18plan_tree_traverseERKNS0_10TraverseOpEPv -_ZNK9oceanbase5share18ObLSLeaderLocation9serializeEPclRl -_ZN9oceanbase7storage17ObTabletPersister9transformERKNS0_20ObTabletTransformArgEPcl +_ZN9oceanbase5obrpc16ObDASIDRpcResult11deserializeEPKclRl +_ZN9oceanbase10rootserver14ObTenantLSInfo19gather_all_ls_info_Ev _ZN9oceanbase8observer9ObMPQuery24process_with_tmp_contextERNS_3sql16ObSQLSessionInfoEbbRbS5_ +_ZN9oceanbase7storage17ObTabletPersister9transformERKNS0_20ObTabletTransformArgEPcl +_ZN9oceanbase11transaction24ObXATransHeartbeatWorker4run1Ev +_ZNK9oceanbase6common10ObFunctionIFiRKNS_5share19ObServerInfoInTableEEE7DerivedIZNS_10rootserver18ObTenantInfoLoader30broadcast_tenant_info_content_EvE6$_1199E6invokeES5_$fd579124db96d472de614548711d0cc0 +_ZN9oceanbase5obrpc26ObUpdateTenantInfoCacheArg4initEmRKNS_5share15ObAllTenantInfoEl +_ZN9oceanbase8observer9ObService20get_leader_locationsERKNS_5obrpc23ObGetLeaderLocationsArgERNS2_26ObGetLeaderLocationsResultE +_ZN9oceanbase7storage8ObTablet14init_for_mergeERNS_6common16ObArenaAllocatorERKNS0_23ObUpdateTableStoreParamERKS1_ +_ZN9oceanbase10compaction16ObTabletMergeCtx27update_and_analyze_progressEv +_ZN9oceanbase7storage12ObTabletMeta11deserializeEPKclRl +_ZN9oceanbase7storage31ObTabletCreateDeleteMdsUserData11deserializeEPKclRl +_ZN9oceanbase5share19ObPartitionLocation11deserializeEPKclRl _ZN9oceanbase11transaction14ObTransService30rollback_to_implicit_savepointERNS0_8ObTxDescENS0_7ObTxSEQElPKNS_6common9ObSEArrayINS_5share6ObLSIDELl3ENS5_19ModulePageAllocatorELb0EEE -_ZN9oceanbase10rootserver25ObArchiveSchedulerService4run2Ev -_ZN9oceanbase10rootserver16ObServerBalancer15balance_serversEv -_ZN9oceanbase3omt20ObTenantNodeBalancer4run1Ev -_ZN9oceanbase6common25ObTenantMutilAllocatorMgr23update_tenant_mem_limitERKNS0_9ObSEArrayINS_5share16ObUnitInfoGetter14ObTenantConfigELl16ENS0_19ModulePageAllocatorELb0EEE -_ZN9oceanbase8observer20ObInnerSQLConnection6commitEv -_ZN9oceanbase8observer14ObSignalHandle4run1Ev -_ZN9oceanbase3sql8ObUDRMgr26sync_rule_from_inner_tableEv -_ZN9oceanbase10rootserver27ObBalanceTaskExecuteService13execute_task_Ev -_ZN9oceanbase7storage3mds9MdsDumpKV11deserializeERNS_6common12ObIAllocatorEPKclRl -_ZN9oceanbase7storage15ObStorageSchema11deserializeERNS_6common12ObIAllocatorEPKclRl -_ZN9oceanbase7storage20ObLSMigrationHandler7processEv -_ZN9oceanbase7storage13ObLSLockGuardD1Ev -_ZN9oceanbase7storage13ObLSLockGuardD2Ev -_ZN9oceanbase12blocksstable18ObSSTableBasicMeta17decode_for_compatEPKclRl -_ZN9oceanbase6common12ObCellReader5parseEPm -_ZN9oceanbase12blocksstable9ObSSTable11deserializeERNS_6common16ObArenaAllocatorEPKclRl -_ZN9oceanbase10logservice19ObLogRestoreService15do_thread_task_Ev -_ZN9oceanbase7storage17ObTransferHandler7processEv +_ZN9oceanbase11transaction14ObTransService19rollback_savepoint_ERNS0_8ObTxDescERNS0_9ObRefListINS0_8ObTxPartELi4EEENS0_7ObTxSEQEl +_ZN9oceanbase10rootserver10ObDRWorker24try_ls_disaster_recoveryEbRNS0_8DRLSInfoERlS3_ +_ZZN9oceanbase10rootserver10ObDRWorker21try_replicate_to_unitEbRNS0_8DRLSInfoERlENK5$_978clEPKc +_ZN9oceanbase3sql15ObHashGroupByOp10inner_openEv +_ZN9oceanbase5share6schema20ObDDLTransController4run1Ev _ZN9oceanbase10rootserver10ObDRWorker17LocalityAlignment5buildEv +_ZZN9oceanbase10rootserver10ObDRWorker17LocalityAlignment23build_locality_stat_mapEvENK5$_669clEPKc +_ZN9oceanbase10rootserver8DRLSInfo16get_replica_statElRPNS_5share11ObLSReplicaERPNS0_16DRServerStatInfoERPNS0_14DRUnitStatInfoESB_ +_ZN9oceanbase3sql16ObTransformUtils26replace_with_groupby_exprsEPNS0_12ObSelectStmtERPNS0_9ObRawExprEbPNS0_16ObTransformerCtxEb +_ZNK9oceanbase5share18ObLSLeaderLocation9serializeEPclRl +_ZN9oceanbase5obrpc10ObRpcProxy8rpc_postINS0_13ObSrvRpcProxy5ObRpcILNS0_15ObRpcPacketCodeE338EvEEEEiRKNT_7RequestEPNS1_7AsyncCBIS7_EERKNS0_9ObRpcOptsE +_ZN9oceanbase3sql27ObTransformSubqueryCoalesce27coalesce_same_any_all_exprsEPNS0_9ObDMLStmtE10ObItemTypeRNS_6common8ObIArrayIPNS0_9ObRawExprEEERb +_ZNK9oceanbase7storage8ObLSMeta10serialize_EPclRl +_ZN9oceanbase3sql15ObTransformRule14transform_selfERNS_6common8ObIArrayINS0_15ObParentDMLStmtEEElRPNS0_9ObDMLStmtE +_ZN9oceanbase3sql24ObTransformSimplifyLimit18transform_one_stmtERNS_6common8ObIArrayINS0_15ObParentDMLStmtEEERPNS0_9ObDMLStmtERb +_ZN9oceanbase3sql20ObTransformTempTable18transform_one_stmtERNS_6common8ObIArrayINS0_15ObParentDMLStmtEEERPNS0_9ObDMLStmtERb +_ZN9oceanbase12blocksstable18ObSSTableBasicMeta17decode_for_compatEPKclRl +_ZNK9oceanbase8observer16ObInnerSQLResult15get_number_implElRNS_6common6number8ObNumberE +_ZN9oceanbase3sql20ObStaticEngineExprCG8cg_exprsERKNS_6common8ObIArrayIPNS0_9ObRawExprEEERNS0_15ObExprFrameInfoE +_ZZN9oceanbase8observer15ObVTIterCreator14create_vt_iterERNS_6common17ObVTableScanParamERPNS2_22ObVirtualTableIteratorEENK5$_514clEv +_ZZN9oceanbase8observer15ObVTIterCreator14create_vt_iterERNS_6common17ObVTableScanParamERPNS2_22ObVirtualTableIteratorEENK5$_507clEv +_ZN9oceanbase7storage3mds12MdsTableImplINS_6common7ObTupleIJNS1_7MdsUnitINS1_8DummyKeyENS0_31ObTabletCreateDeleteMdsUserDataEEENS5_IS6_NS0_26ObTabletBindingMdsUserDataEEENS5_IS6_NS_5share18ObTabletAutoincSeqEEENS5_INS_10compaction25ObMediumCompactionInfoKeyENSE_22ObMediumCompactionInfoEEEEEEE46calculate_flush_scn_and_need_dumped_nodes_cnt_ENSB_3SCNERSK_Rl _ZN9oceanbase7archive16ObArchiveService15do_thread_task_Ev _ZNK9oceanbase7storage15ObStorageSchema9serializeEPclRl -_ZN9oceanbase10rootserver21ObBackupTaskScheduler4run2Ev +_ZN9oceanbase7storage15ObStorageSchema11deserializeERNS_6common12ObIAllocatorEPKclRl +_ZN9oceanbase7storage20ObLSMigrationHandler7processEv _ZN9oceanbase8observer15ObVTIterCreator14create_vt_iterERNS_6common17ObVTableScanParamERPNS2_22ObVirtualTableIteratorE +_ZZN9oceanbase8observer15ObVTIterCreator14create_vt_iterERNS_6common17ObVTableScanParamERPNS2_22ObVirtualTableIteratorEENK5$_505clEv diff --git a/src/observer/mysql/obmp_query.cpp b/src/observer/mysql/obmp_query.cpp index 070ce44076b..3d80cf67408 100644 --- a/src/observer/mysql/obmp_query.cpp +++ b/src/observer/mysql/obmp_query.cpp @@ -587,8 +587,7 @@ OB_NOINLINE int ObMPQuery::process_with_tmp_context(ObSQLSessionInfo &session, param.set_mem_attr(MTL_ID(), ObModIds::OB_SQL_EXECUTOR, ObCtxIds::DEFAULT_CTX_ID) .set_properties(lib::USE_TL_PAGE_OPTIONAL) - .set_page_size(!lib::is_mini_mode() ? OB_MALLOC_BIG_BLOCK_SIZE - : OB_MALLOC_MIDDLE_BLOCK_SIZE) + .set_page_size(OB_MALLOC_REQ_NORMAL_BLOCK_SIZE) .set_ablock_size(lib::INTACT_MIDDLE_AOBJECT_SIZE); CREATE_WITH_TEMP_CONTEXT(param) { ret = do_process(session, diff --git a/src/observer/omt/ob_tenant.cpp b/src/observer/omt/ob_tenant.cpp index 1089844e4fc..947e039c717 100644 --- a/src/observer/omt/ob_tenant.cpp +++ b/src/observer/omt/ob_tenant.cpp @@ -257,7 +257,7 @@ void ObPxPool::run1() ObTLTaGuard ta_guard(tenant_id_); auto *pm = common::ObPageManager::thread_local_instance(); if (OB_LIKELY(nullptr != pm)) { - pm->set_tenant_ctx(tenant_id_, common::ObCtxIds::WORK_AREA); + pm->set_tenant_ctx(tenant_id_, common::ObCtxIds::DEFAULT_CTX_ID); } //ObTaTLCacheGuard ta_guard(tenant_id_); CLEAR_INTERRUPTABLE(); diff --git a/src/observer/omt/ob_th_worker.cpp b/src/observer/omt/ob_th_worker.cpp index 158a17c411b..9c9cd473774 100644 --- a/src/observer/omt/ob_th_worker.cpp +++ b/src/observer/omt/ob_th_worker.cpp @@ -339,8 +339,7 @@ void ObThWorker::worker(int64_t &tenant_id, int64_t &req_recv_timestamp, int32_t lib::ContextTLOptGuard guard(true); lib::ContextParam param; param.set_mem_attr(tenant_->id(), ObModIds::OB_SQL_EXECUTOR, ObCtxIds::DEFAULT_CTX_ID) - .set_page_size(!lib::is_mini_mode() ? - OB_MALLOC_BIG_BLOCK_SIZE : OB_MALLOC_MIDDLE_BLOCK_SIZE) + .set_page_size(OB_MALLOC_REQ_NORMAL_BLOCK_SIZE) .set_properties(lib::USE_TL_PAGE_OPTIONAL) .set_ablock_size(lib::INTACT_MIDDLE_AOBJECT_SIZE); CREATE_WITH_TEMP_CONTEXT(param) { diff --git a/src/share/config/ob_server_config.cpp b/src/share/config/ob_server_config.cpp index c543dee8d13..97115dd93c4 100644 --- a/src/share/config/ob_server_config.cpp +++ b/src/share/config/ob_server_config.cpp @@ -309,10 +309,12 @@ int64_t ObServerMemoryConfig::get_adaptive_memory_config(const int64_t memory_si } return adap_memory_size; } + int64_t ObServerMemoryConfig::get_extra_memory() { return memory_limit_ < lib::ObRunningModeConfig::MINI_MEM_UPPER ? 0 : hidden_sys_memory_; } + int ObServerMemoryConfig::reload_config(const ObServerConfig& server_config) { int ret = OB_SUCCESS; @@ -354,11 +356,51 @@ int ObServerMemoryConfig::reload_config(const ObServerConfig& server_config) } if (memory_limit - system_memory >= min_server_avail_memory && system_memory >= hidden_sys_memory) { - memory_limit_ = memory_limit; - system_memory_ = system_memory; - hidden_sys_memory_ = hidden_sys_memory; - LOG_INFO("update observer memory config success", - K_(memory_limit), K_(system_memory), K_(hidden_sys_memory)); + bool setted = false; + if (!is_mini_mode()) { + int64_t unit_assigned = 0; + if (OB_NOT_NULL(GCTX.omt_)) { + const int64_t system_memory_hold = lib::get_tenant_memory_hold(OB_SERVER_TENANT_ID); + common::ObArray tenant_metas; + if (OB_FAIL(GCTX.omt_->get_tenant_metas(tenant_metas))) { + LOG_WARN("fail to get tenant metas", K(ret)); + // ignore ret + ret = OB_SUCCESS; + } else { + for (int64_t i = 0; i < tenant_metas.count(); i++) { + unit_assigned += tenant_metas.at(i).unit_.config_.memory_size(); + } + LOG_INFO("update observer memory config", + K(memory_limit_), K(system_memory_), K(hidden_sys_memory_), + K(memory_limit), K(system_memory), K(hidden_sys_memory), + K(system_memory_hold), K(unit_assigned)); + if ((system_memory - hidden_sys_memory) >= system_memory_hold + && memory_limit >= (unit_assigned + system_memory) ) { + system_memory_ = system_memory; + hidden_sys_memory_ = hidden_sys_memory; + memory_limit_ = memory_limit; + } else { + LOG_ERROR("Unreasonable memory parameters", + "[config]memory_limit", server_config.memory_limit.get_value(), + "[config]system_memory", server_config.system_memory.get_value(), + "[config]hidden_sys", server_config._hidden_sys_tenant_memory.get_value(), + "[expect]memory_limit", memory_limit, + "[expect]system_memory", system_memory, + "[expect]hidden_sys", hidden_sys_memory, + K(system_memory_hold), + K(unit_assigned)); + } + setted = true; + } + } + } + if (!setted) { + memory_limit_ = memory_limit; + system_memory_ = system_memory; + hidden_sys_memory_ = hidden_sys_memory; + } + LOG_INFO("update observer memory config", + K_(memory_limit), K_(system_memory), K_(hidden_sys_memory)); } else { ret = OB_INVALID_CONFIG; LOG_ERROR("update observer memory config failed", diff --git a/src/share/diagnosis/ob_sql_plan_monitor_node_list.h b/src/share/diagnosis/ob_sql_plan_monitor_node_list.h index ea19297826b..fed021a4e06 100644 --- a/src/share/diagnosis/ob_sql_plan_monitor_node_list.h +++ b/src/share/diagnosis/ob_sql_plan_monitor_node_list.h @@ -195,7 +195,7 @@ class ObPlanMonitorNodeList public: typedef hash::ObHashMap MonitorNodeMap; - static const int64_t MONITOR_NODE_PAGE_SIZE = (1LL << 21) - (1LL << 13); // 2M - 8k + static const int64_t MONITOR_NODE_PAGE_SIZE = (128LL << 10); // 128K static const int64_t EVICT_INTERVAL = 1000000; //1s static const char *MOD_LABEL; typedef common::ObRaQueue::Ref Ref; diff --git a/src/sql/session/ob_sql_session_info.cpp b/src/sql/session/ob_sql_session_info.cpp index 06788992c1d..da9ee21d82c 100644 --- a/src/sql/session/ob_sql_session_info.cpp +++ b/src/sql/session/ob_sql_session_info.cpp @@ -2976,8 +2976,7 @@ inline int ObSQLSessionInfo::init_mem_context(uint64_t tenant_id) if (OB_LIKELY(NULL == mem_context_)) { lib::ContextParam param; param.set_properties(lib::USE_TL_PAGE_OPTIONAL) - .set_mem_attr(tenant_id, ObModIds::OB_SQL_SESSION, - common::ObCtxIds::WORK_AREA); + .set_mem_attr(tenant_id, ObModIds::OB_SQL_SESSION); if (OB_FAIL(ROOT_CONTEXT->CREATE_CONTEXT(mem_context_, param))) { SQL_ENG_LOG(WARN, "create entity failed", K(ret)); } else if (OB_ISNULL(mem_context_)) { diff --git a/src/storage/memtable/ob_lock_wait_mgr.h b/src/storage/memtable/ob_lock_wait_mgr.h index de3e4a67334..7f1e21b0364 100644 --- a/src/storage/memtable/ob_lock_wait_mgr.h +++ b/src/storage/memtable/ob_lock_wait_mgr.h @@ -67,7 +67,7 @@ class RowHolderMapper { } void clear() { map_.clear(); } private: - ObLinearHashMap map_; + ObLinearHashMap map_; }; class DeadLockBlockCallBack {