diff --git a/build.sh b/build.sh index f1c2731c2fefbf0c5620de11ea72c9398c0131e1..7c94d1125c7ef95ecae8751d3ab7de67ebf8c8c1 100755 --- a/build.sh +++ b/build.sh @@ -193,7 +193,7 @@ function build ;; xrpm) STATIC_LINK_LGPL_DEPS_OPTION=OFF - do_build "$@" -DCMAKE_BUILD_TYPE=RelWithDebInfo -DOB_USE_LLD=$LLD_OPTION -DENABLE_FATAL_ERROR_HANG=OFF -DOB_STATIC_LINK_LGPL_DEPS=$STATIC_LINK_LGPL_DEPS_OPTION + do_build "$@" -DCMAKE_BUILD_TYPE=RelWithDebInfo -DOB_USE_LLD=$LLD_OPTION -DENABLE_FATAL_ERROR_HANG=OFF -DENABLE_AUTO_FDO=ON -DOB_STATIC_LINK_LGPL_DEPS=$STATIC_LINK_LGPL_DEPS_OPTION ;; xenable_smart_var_check) do_build "$@" -DCMAKE_BUILD_TYPE=Debug -DOB_USE_LLD=$LLD_OPTION -DENABLE_SMART_VAR_CHECK=ON -DOB_ENABLE_AVX2=ON diff --git a/cmake/Env.cmake b/cmake/Env.cmake index 0c6a6922881f50f0182a61f9fe53baf1fcd1ecde..535f063d479eb8eba2c19a0b31e48899b05f3ff2 100644 --- a/cmake/Env.cmake +++ b/cmake/Env.cmake @@ -21,6 +21,7 @@ ob_define(ENABLE_SMART_VAR_CHECK OFF) ob_define(ENABLE_COMPILE_DLL_MODE OFF) ob_define(OB_CMAKE_RULES_CHECK ON) ob_define(OB_STATIC_LINK_LGPL_DEPS ON) +ob_define(HOTFUNC_PATH "${CMAKE_SOURCE_DIR}/hotfuncs.txt") # 'ENABLE_PERF_MODE' use for offline system insight performance test # PERF_MODE macro controls many special code path in system @@ -40,6 +41,11 @@ if(WITH_COVERAGE) set(DEBUG_PREFIX "") endif() +ob_define(AUTO_FDO_OPT "") +if(ENABLE_AUTO_FDO) + set(AUTO_FDO_OPT "-fprofile-sample-use=${CMAKE_SOURCE_DIR}/observer.prof") +endif() + # should not use initial-exec for tls-model if building OBCDC. if(NOT OB_BUILD_CDC) @@ -66,7 +72,7 @@ if (OB_USE_CLANG) if (OB_USE_LLD) set(LD_OPT "-fuse-ld=${DEVTOOLS_DIR}/bin/ld.lld") set(REORDER_COMP_OPT "-ffunction-sections -funique-internal-linkage-names -fdebug-info-for-profiling") - set(REORDER_LINK_OPT "-Wl,--no-rosegment,--build-id=sha1") + set(REORDER_LINK_OPT "-Wl,--no-rosegment,--build-id=sha1,--no-warn-symbol-ordering,--symbol-ordering-file,${HOTFUNC_PATH}") set(OB_LD_BIN "${DEVTOOLS_DIR}/bin/ld.lld") endif() set(CMAKE_CXX_FLAGS "--gcc-toolchain=${GCC9} ${DEBUG_PREFIX} -fcolor-diagnostics ${REORDER_COMP_OPT} -fmax-type-align=8 ${CMAKE_ASAN_FLAG} ${CMAKE_COVERAGE_FLAG} -std=gnu++11") diff --git a/deps/init/oceanbase.el7.aarch64.deps b/deps/init/oceanbase.el7.aarch64.deps index 1b2ed0d3df30847b2c34b2c852870f841c254088..29613b5118cfc30baa6b15b35cb5715911499cc9 100644 --- a/deps/init/oceanbase.el7.aarch64.deps +++ b/deps/init/oceanbase.el7.aarch64.deps @@ -14,7 +14,7 @@ arch=aarch64 repo=http://yum.tbsite.net/taobao/7/aarch64/test/ob-deploy/ [deps] -devdeps-gtest-1.8.0-72022092914.el7.aarch64.rpm +devdeps-gtest-1.8.0-132022101316.el7.aarch64.rpm devdeps-isa-l-static-2.22.0-22022092915.el7.aarch64.rpm devdeps-libcurl-static-7.29.0-32022093010.el7.aarch64.rpm devdeps-libunwind-static-1.6.2-222022100410.el7.aarch64.rpm diff --git a/deps/init/oceanbase.el7.x86_64.deps b/deps/init/oceanbase.el7.x86_64.deps index ab1c11151d2096cc55730300b78bbea3349e6d68..eb53bde1c1699e7f7fb9b10702fcdcc6661816db 100644 --- a/deps/init/oceanbase.el7.x86_64.deps +++ b/deps/init/oceanbase.el7.x86_64.deps @@ -9,7 +9,7 @@ arch=x86_64 repo=http://mirrors.aliyun.com/oceanbase/community/stable/el/7/x86_64/ [deps] -devdeps-gtest-1.8.0-72022092914.el7.x86_64.rpm +devdeps-gtest-1.8.0-132022101316.el7.x86_64.rpm devdeps-isa-l-static-2.22.0-22022092915.el7.x86_64.rpm devdeps-libcurl-static-7.29.0-32022093010.el7.x86_64.rpm devdeps-libunwind-static-1.6.2-222022100410.el7.x86_64.rpm diff --git a/deps/init/oceanbase.el8.aarch64.deps b/deps/init/oceanbase.el8.aarch64.deps index 166efd68cd0d151fda044e7b4aec41d8c7f4a9bf..76baa2d733ae659f08fe25e8ea8dc23e26b52ec9 100644 --- a/deps/init/oceanbase.el8.aarch64.deps +++ b/deps/init/oceanbase.el8.aarch64.deps @@ -9,7 +9,7 @@ arch=aarch64 repo=http://mirrors.aliyun.com/oceanbase/community/stable/el/8/aarch64/ [deps] -devdeps-gtest-1.8.0-72022092914.el8.aarch64.rpm +devdeps-gtest-1.8.0-132022101316.el8.aarch64.rpm devdeps-isa-l-static-2.22.0-22022092915.el8.aarch64.rpm devdeps-libcurl-static-7.29.0-32022093010.el8.aarch64.rpm devdeps-libunwind-static-1.6.2-222022100410.el8.aarch64.rpm diff --git a/deps/init/oceanbase.el8.x86_64.deps b/deps/init/oceanbase.el8.x86_64.deps index 1cd734d63db171ce19c431a282cfba083eef1dba..b0e4891c3b9d564473d031b20625414a4cc8b75c 100644 --- a/deps/init/oceanbase.el8.x86_64.deps +++ b/deps/init/oceanbase.el8.x86_64.deps @@ -9,7 +9,7 @@ arch=x86_64 repo=http://mirrors.aliyun.com/oceanbase/community/stable/el/8/x86_64/ [deps] -devdeps-gtest-1.8.0-72022092914.el8.x86_64.rpm +devdeps-gtest-1.8.0-132022101316.el8.x86_64.rpm devdeps-isa-l-static-2.22.0-22022092915.el8.x86_64.rpm devdeps-libcurl-static-7.29.0-32022093010.el8.x86_64.rpm devdeps-libunwind-static-1.6.2-222022100410.el8.x86_64.rpm diff --git a/hotfuncs.txt b/hotfuncs.txt new file mode 100644 index 0000000000000000000000000000000000000000..25951876b89d7e4c3b9dc728ca007e369f51e934 --- /dev/null +++ b/hotfuncs.txt @@ -0,0 +1,4409 @@ +_ZN9oceanbase6common13ObTimeUtility12current_timeEv +ev_now +ev_time +_ZSt16__introsort_loopIPPN9oceanbase3sql17ObChunkDatumStore9StoredRowElN9__gnu_cxx5__ops15_Iter_comp_iterINS1_12ObSortOpImpl16CopyableComparerEEEEvT_SC_T0_T1_ +_ZN9oceanbase3sql12ObSortOpImpl7CompareclEPKNS0_17ObChunkDatumStore9StoredRowES6_ +_ZN9oceanbase6common21ObNullSafeDatumStrCmpILNS0_15ObCollationTypeE45ELb0ELb1EE3cmpERKNS0_7ObDatumES6_ +_ZL22ob_strnncollsp_utf8mb4PK13ObCharsetInfoPKhmS3_mb.5aa8bf9a2f1d92c2672c2bb9fbfc2e97 +_ZN9oceanbase3lib11ObLibConfig12get_instanceEv +_ZN9oceanbase6common9ObCharset8strcmpspENS0_15ObCollationTypeEPKclS4_lb +_ZSt22__move_median_to_firstIPPN9oceanbase3sql17ObChunkDatumStore9StoredRowEN9__gnu_cxx5__ops15_Iter_comp_iterINS1_12ObSortOpImpl16CopyableComparerEEEEvT_SC_SC_SC_T0_ +_Z27ob_strnncollsp_utf8mb4_helpPPKhmS1_mS1_S1_bPiS2_ +_ZN9oceanbase6common8ObLogger13need_to_printEmi +_ZN9oceanbase6common7ObLatch6unlockEPKj +_ZN9oceanbase6common16ObLatchWaitQueue7wake_upERNS0_7ObLatchEb +_ZN9oceanbase6common7ObLatch6wrlockEjlPKj +easy_request_cleanup.f43157592e2c0f0ad5daf1bf99e9d331 +_ZN9oceanbase4easy7cleanupEP14easy_request_tPv +_ZN9oceanbase7obmysql14ObMySQLHandler7cleanupEP14easy_request_tPv +_ZN9oceanbase6common18ObInterruptChecker22clear_interrupt_statusEv +easy_buf_create +easy_message_create +easy_request_set_cleanup +_ZTWN9oceanbase6common13ObPageManager12tl_instance_E +easy_request_server_done +ev_feed_event +_ZTWN9oceanbase8memtable33TLOCAL_NEED_WAIT_IN_LOCK_WAIT_MGRE +easy_message_destroy +epoll_poll.f8d7388e3b0c2a08f5c22fd7550445b6 +_ZN9oceanbase6common14ObTscTimestamp12get_instanceEv +_ZN9oceanbase3omt10ObThWorker25set_th_worker_thread_nameEm +easy_pool_calloc +easy_pool_destroy +easy_connection_process_request.8d7a091449e6908669a41293537a4cf4 +_ZN9oceanbase4easy7processEP14easy_request_t +easy_request_sleeping +_ZNK9oceanbase8observer11ObSMHandler10get_sessidEP17easy_connection_t +_ZNK9oceanbase8observer11ObSMHandler23is_in_ssl_connect_phaseEP17easy_connection_t +_ZN9oceanbase7obmysql14ObMySQLHandler7processEP14easy_request_t +_ZN9oceanbase3rpc14ObLockWaitNodeC1Ev +_ZN9oceanbase3rpc14ObLockWaitNodeC2Ev +_ZNK9oceanbase8observer11ObSMHandler20get_connection_phaseEP17easy_connection_t +_ZN9oceanbase8observer12ObSrvDeliver7deliverERNS_3rpc9ObRequestE +_ZN9oceanbase3rpc9ObRequest15set_trace_pointEi +easy_pool_set_lock +_ZN9oceanbase8observer12ObSrvDeliver21deliver_mysql_requestERNS_3rpc9ObRequestE +_ZN9oceanbase3omt8ObTenant12recv_requestERNS_3rpc9ObRequestE +_ZN9oceanbase6common16ObPriorityQueue2ILi1ELi2ELi3EE4pushEPNS0_6ObLinkEi +_ZN9oceanbase6common20ObTenantStatEstGuardD2Ev +_ZN9oceanbase6common20ObTenantStatEstGuardC2Em +_ZN9oceanbase3lib7ObFutex4wakeEl +_ZN9oceanbase5obrpc12ObRpcHandler7processEP14easy_request_t +_ZN9oceanbase8observer12ObSrvDeliver19deliver_rpc_requestERNS_3rpc9ObRequestE +_ZN9oceanbase3omt10ObThWorker6workerERlS2_Ri +_ZN9oceanbase6common12ObLatchMutexC1Ev +_ZN9oceanbase6common12ObLatchMutexC2Ev +_ZTWN9oceanbase3lib17ContextTLOptGuard13enable_tl_optE +_ZN9oceanbase3lib17ObMallocAllocator12get_instanceEv +_ZTWN9oceanbase6common11in_try_stmtE +_ZN9oceanbase6common16ObWaitEventGuardC1Elmlllb +_ZN9oceanbase6common16ObWaitEventGuardC2Elmlllb +_ZN9oceanbase5share2_SILNS0_12ObEntityTypeE1ELNS0_12EntitySourceE2EED2Ev +_ZN9oceanbase6common16ObWaitEventGuardD1Ev +_ZN9oceanbase6common16ObWaitEventGuardD2Ev +_ZN9oceanbase3lib2_SILNS0_13ContextSourceE1EEC2IJNS0_11DynamicInfoERNS0_12ContextParamEPNS0_10StaticInfoEEEEbDpOT_ +_ZN9oceanbase3lib9ObjectSetC1EPNS0_17__MemoryContext__Ej +_ZN9oceanbase3lib9ObjectSetC2EPNS0_17__MemoryContext__Ej +_ZNK9oceanbase3lib17ObMallocAllocator24get_tenant_ctx_allocatorEmm +_ZN9oceanbase5share13ObTenantSpace13guard_init_cbERKS1_PcRb +_ZN9oceanbase3lib2_SILNS0_13ContextSourceE1EED2Ev +_ZN9oceanbase6common11ObAllocatorD2Ev +_ZN9oceanbase3lib17__MemoryContext__15destory_contextEPS1_ +_ZN9oceanbase6common11ObAllocator4freeEPv +_ZN9oceanbase6common13ObPageManager24get_tenant_ctx_allocatorEv +_ZN9oceanbase3lib9ObjectSet11free_objectEPNS0_7AObjectE +_ZNK9oceanbase3lib8BlockSet24get_tenant_ctx_allocatorEv +_ZN9oceanbase3lib9ObjectSet14do_free_objectEPNS0_7AObjectE +_ZTWN9oceanbase3lib15malloc_callbackE +_ZN9oceanbase8observer23ObProcessMallocCallbackclERKNS_3lib9ObMemAttrEl +_ZNK9oceanbase3lib7ObLabelcvPKcEv +_ZN9oceanbase3lib8BlockSet10free_blockEPNS0_6ABlockE +_ZN9oceanbase3lib12SubObjectMgr10free_blockEPNS0_6ABlockE +_ZN9oceanbase6common13ObPageManager10free_blockEPNS_3lib6ABlockE +_ZN9oceanbase5share11ObTenantEnv3mtlIPNS_8memtable13ObLockWaitMgrEEET_v +_ZN9oceanbase3lib11DynamicInfoC2Ev +_ZN9oceanbase3lib9ObjectSet15add_free_objectEPNS0_7AObjectE +_ZN9oceanbase3omt17ObWorkerProcessor7processERNS_3rpc9ObRequestE +_ZN9oceanbase3rpc5frame14ObReqProcessor7destroyEv +_ZN9oceanbase8observer8ObMPBase7cleanupEv +_ZN9oceanbase3rpc5frame15ObReqTranslator9translateERNS0_9ObRequestERPNS1_14ObReqProcessorE +_ZN9oceanbase6common20ObActiveSessionGuard17setup_default_ashEv +_ZTW8co_epbuf +_ZN9oceanbase3rpc5frame14ObSqlProcessor3runEv +_ZN9oceanbase3sql8ObParserD1Ev +_ZN9oceanbase3sql8ObParserD2Ev +_ZNK9oceanbase3omt10ObThWorker10need_retryEv +_ZN9oceanbase8observer8ObMPBase14before_processEv +_ZN9oceanbase6common12ObCurTraceId7TraceId3setERKS2_ +_ZN9oceanbase3lib15CompatModeGuardD2Ev +_ZN9oceanbase8observer8ObMPBase19setup_packet_senderEv +_ZN9oceanbase3rpc20ObSqlRequestOperator15get_sql_sessionEPNS0_9ObRequestE +_ZN9oceanbase8observer9ObMPQuery7processEv +_ZN9oceanbase8observer16ObMySQLResultSetD2Ev +_ZN9oceanbase3sql13ObBaselineKey5resetEv +_ZN9oceanbase6common11ObTimeGuardD2Ev +_ZN9oceanbase3sql15ObCacheObjGuardD2Ev +_ZN9oceanbase5trace7ObTrace10begin_spanEjhb +_ZN9oceanbase3sql8ObParserC1ERNS_6common12ObIAllocatorEmNS2_15ObCollationTypeE +_ZN9oceanbase3sql8ObParserC2ERNS_6common12ObIAllocatorEmNS2_15ObCollationTypeE +_ZN9oceanbase8observer16ObMPPacketSender14revert_sessionEPNS_3sql16ObSQLSessionInfoE +_ZN9oceanbase8observer9ObMPUtils13init_flt_infoENS_7obmysql13Ob20ExtraInfoERNS_3sql16ObSQLSessionInfoEb +_ZN9oceanbase8observer8ObMPBase16clear_wb_contentERNS_3sql16ObSQLSessionInfoE +_ZN9oceanbase6common21ObSessionStatEstGuardD1Ev +_ZN9oceanbase6common21ObSessionStatEstGuardD2Ev +_ZN9oceanbase6common8precheckINS_8observer16ObMySQLResultSetEEEibRb +_ZN9oceanbase3sql16ObQueryRetryInfo5resetEv +_ZNK9oceanbase5share6schema27ObMultiVersionSchemaService37get_tenant_received_broadcast_versionEmRlb +_ZN9oceanbase6common13ObSEArrayImplINS0_8ObStringELl1ENS0_19ModulePageAllocatorELb0EE9push_backERKS2_ +_ZN9oceanbase6common13ObSEArrayImplINS0_8ObStringELl1ENS0_19ModulePageAllocatorELb0EED2Ev +_ZN9oceanbase3sql18ObBasicSessionInfo21gen_configs_in_pc_strEv +_ZN9oceanbase6common16ObTotalWaitGuardD1Ev +_ZN9oceanbase6common16ObTotalWaitGuardD2Ev +_ZN9oceanbase6common11ObArrayImplINS0_6ObAddrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_22NotImplementItemEncodeIS2_EEE7destroyEv +_ZN9oceanbase3sql8ObParser19split_multiple_stmtERKNS_6common8ObStringERNS2_8ObIArrayIS3_EERNS0_13ObMPParseStatEbb +_ZN9oceanbase3sql18ObBasicSessionInfo25check_and_init_retry_infoERKNS_6common12ObCurTraceId7TraceIdERKNS2_8ObStringE +_ZN9oceanbase6common15databuff_printfEPclRlPKcz +_ZN9oceanbase6common2SVINS_8observer16ObMySQLResultSetELb0EEC2IZNS2_9ObMPQuery10do_processERNS_3sql16ObSQLSessionInfoEbbRbSA_EUlPvE_EEibOT_ +_ZN9oceanbase3sql16ObSQLSessionInfo24ObCachedTenantConfigInfo7refreshEv +_ZN9oceanbase3lib11ObLockGuardINS_6common16ObRecursiveMutexEED2Ev +_ZNK9oceanbase3sql11ObResultSet23need_end_trans_callbackEv +_ZN9oceanbase6common14ObMaxWaitGuardD1Ev +_ZN9oceanbase6common14ObMaxWaitGuardD2Ev +_ZN9oceanbase8observer9ObMPQuery19process_single_stmtERKNS_3sql15ObMultiStmtItemERNS2_16ObSQLSessionInfoEbbRbS8_ +_ZN9oceanbase6common20ObActiveSessionGuard8get_statEv +_ZN9oceanbase6common23get_reserved_stack_sizeEv +_ZN9oceanbase8observer14global_contextEv +_ZTWN9oceanbase6common16g_warning_bufferE +_ZN9oceanbase6common11ObSqlString5resetEv +_ZN9oceanbase3sql16LinkExecCtxGuardD2Ev +_ZN9oceanbase5trace7ObTrace12get_instanceEv +_ZN9oceanbase6common24ObFatalErrExtraInfoGuardC1Ev +_ZN9oceanbase6common24ObFatalErrExtraInfoGuardC2Ev +_ZNK9oceanbase6common13ObSEArrayImplINS_5share6schema15ObSchemaMgrInfoELl2ENS0_19ModulePageAllocatorELb0EEixEl +_ZN9oceanbase5trace16__ObFLTSpanGuardD2Ev +_ZThn56_N9oceanbase8observer8ObMPBase15response_packetERNS_7obmysql13ObMySQLPacketEPNS_3sql16ObSQLSessionInfoE +_ZN9oceanbase6common16ObClusterVersion12get_instanceEv +_ZN9oceanbase3sql6ObStmt13is_write_stmtENS0_4stmt8StmtTypeEb +_ZThn56_N9oceanbase8observer8ObMPBase19update_last_pkt_posEv +_ZN9oceanbase3lib21ObMallocCallbackGuardC1ERNS0_16ObMallocCallbackE +_ZN9oceanbase3lib21ObMallocCallbackGuardC2ERNS0_16ObMallocCallbackE +_ZNK9oceanbase5share6schema27ObMultiVersionSchemaService35get_tenant_refreshed_schema_versionEmRlb +_ZNK9oceanbase5share6schema16ObSchemaStoreMap3getEm +_ZN9oceanbase6common24ObFatalErrExtraInfoGuardD1Ev +_ZN9oceanbase6common24ObFatalErrExtraInfoGuardD2Ev +_ZN9oceanbase6common11ObArrayImplINS0_15ObWarningBuffer11WarningItemENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE5resetEv +_ZN9oceanbase3lib21ObMallocCallbackGuardD1Ev +_ZN9oceanbase3lib21ObMallocCallbackGuardD2Ev +_ZN9oceanbase3sql16LinkExecCtxGuard22unlink_current_contextEv +_ZThn56_N9oceanbase8observer8ObMPBase14send_ok_packetERNS_3sql16ObSQLSessionInfoERNS0_10ObOKPParamEPNS_7obmysql13ObMySQLPacketE +_ZN9oceanbase5trace7ObTrace7set_tagImJEEEv9ObTagTypeRKT_DpT0_ +_ZNK9oceanbase5share6schema19ObSchemaGetterGuard18get_schema_versionEmRl +_ZNK9oceanbase3sql11ObResultSet19has_implicit_cursorEv +_ZN9oceanbase3sql11ObResultSetC2ERNS0_16ObSQLSessionInfoERNS_6common12ObIAllocatorE +_ZN9oceanbase3sql13ObExecContextC1ERNS_6common12ObIAllocatorE +_ZN9oceanbase3sql13ObExecContextC2ERNS_6common12ObIAllocatorE +_ZN9oceanbase11transaction16ObTxReadSnapshotC1Ev +_ZN9oceanbase11transaction16ObTxReadSnapshotC2Ev +_ZN9oceanbase3sql19ObDASLocationRouterC1ERNS_6common12ObIAllocatorE +_ZN9oceanbase3sql19ObDASLocationRouterC2ERNS_6common12ObIAllocatorE +_ZN9oceanbase3sql17ObTaskExecutorCtxC1ERNS0_13ObExecContextE +_ZN9oceanbase3sql17ObTaskExecutorCtxC2ERNS0_13ObExecContextE +_ZN9oceanbase6common16ObTotalWaitGuardC1EPNS0_15ObWaitEventStatEPNS0_21ObDiagnoseSessionInfoE +_ZN9oceanbase6common16ObTotalWaitGuardC2EPNS0_15ObWaitEventStatEPNS0_21ObDiagnoseSessionInfoE +_ZN9oceanbase3sql8ObSqlCtx5resetEv +_ZN9oceanbase3sql6ObStmt11is_ddl_stmtENS0_4stmt8StmtTypeEb +_ZN9oceanbase3sql5ObSql10stmt_queryERKNS_6common8ObStringERNS0_8ObSqlCtxERNS0_11ObResultSetE +_ZN9oceanbase6common16ObArenaAllocator4freeEPv +_ZN9oceanbase3sql8ObDASCtx24unmark_need_check_serverEv +_ZN9oceanbase6common13ObSEArrayImplINS0_8ObStringELl1ENS0_19ModulePageAllocatorELb1EED2Ev +_ZN9oceanbase6common16ObFixedArrayImplINS0_13ObCharsetTypeENS0_12ObIAllocatorEED2Ev +_ZN9oceanbase3sql16ObSQLSessionInfo22set_early_lock_releaseEb +_ZN9oceanbase3sql14ObPlanCacheCtxD2Ev +_ZN9oceanbase6common16ObFixedArrayImplINS_3sql14PsNotParamInfoENS0_12ObIAllocatorEED2Ev +_ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb1EED2Ev +_ZN9oceanbase6common16ObFixedArrayImplINS_3sql12NotParamInfoENS0_12ObIAllocatorEED2Ev +_ZN9oceanbase3sql13ObExecContext24create_physical_plan_ctxEv +_ZN9oceanbase3sql8ObSqlCtx5clearEv +_ZN9oceanbase3sql11ObResultSet41check_and_nonblock_refresh_location_cacheEv +_ZN9oceanbase3sql5ObSql27pc_get_plan_and_fill_resultERNS0_14ObPlanCacheCtxERNS0_11ObResultSetERiRb +_ZNK9oceanbase3sql16ObSQLSessionInfo24has_user_super_privilegeEv +_ZN9oceanbase8observer22ObGlobalReqTimeService18check_req_timeinfoEv +_ZN9oceanbase3sql16ObSQLSessionInfo14get_plan_cacheEv +_ZN9oceanbase3sql11ObPlanCache8get_planERNS_6common12ObIAllocatorERNS0_14ObPlanCacheCtxERNS0_15ObCacheObjGuardE +_ZN9oceanbase3sql11ObPlanCache13get_cache_objERNS0_14ObILibCacheCtxEPNS0_14ObILibCacheKeyERNS0_15ObCacheObjGuardE +_ZN9oceanbase3sql10ObSQLUtils16is_batch_executeERNS0_8ObSqlCtxE +_ZN9oceanbase3sql11ObResultSetD1Ev +_ZN9oceanbase3sql11ObResultSetD2Ev +_ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEED2Ev +_ZN9oceanbase6common16ObFixedArrayImplINS0_7ObFieldENS0_12ObIAllocatorEED2Ev +_ZN9oceanbase3sql9ObOpInputD2Ev +_ZN9oceanbase3sql18ObTableScanOpInputD1Ev +_ZN9oceanbase3sql18ObTableScanOpInputD2Ev +_ZN9oceanbase3sql13ObTableScanOp7destroyEv +_ZN9oceanbase11transaction14ObTxExecResultD1Ev +_ZN9oceanbase11transaction14ObTxExecResultD2Ev +_ZN9oceanbase6common13ObSEArrayImplINS_3sql15ObPxTabletRangeELl1ENS0_19ModulePageAllocatorELb0EED2Ev +_ZN9oceanbase3sql14ObDASScanRtDefD1Ev +_ZN9oceanbase3sql14ObDASScanRtDefD2Ev +_ZN9oceanbase6common10ObObjStoreIPNS_3sql12ObIDASTaskOpERNS0_12ObIAllocatorELb0EED2Ev +_ZN9oceanbase3sql15ObCacheObjGuard19force_early_releaseEPNS0_11ObPlanCacheE +_ZN9oceanbase6common11ObArrayImplINS_11transaction16ObTransIDAndAddrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev +_ZN9oceanbase8observer9ObMPUtils22init_flt_log_frameworkERNS_3sql16ObSQLSessionInfoEb +_ZNK9oceanbase3sql18ObBasicSessionInfo31is_server_status_in_transactionEv +_ZNK9oceanbase11transaction8ObTxDesc14can_free_routeEv +_ZZNK9oceanbase3sql18ObBasicSessionInfo31is_server_status_in_transactionEvENK3$_0clEPKc.7d011f5114f8312fd0eb7b31f2639cf5 +_ZN9oceanbase5trace7ObTrace10reset_spanEv +_ZN9oceanbase8observer16ObMPPacketSender11get_sessionERPNS_3sql16ObSQLSessionInfoE +_ZN9oceanbase3lib4Flow11current_ctxEv +_ZN9oceanbase6common21ObSessionStatEstGuardC1Emmb +_ZN9oceanbase6common21ObSessionStatEstGuardC2Emmb +_ZZNK9oceanbase8observer8ObMPBase16init_process_varERNS_3sql8ObSqlCtxERKNS2_15ObMultiStmtItemERNS2_16ObSQLSessionInfoERbENK5$_268clEPKc.aab76b6a44351831e19725958b59fc25 +_ZN9oceanbase6common15ObWarningBufferaSERKS1_ +_ZN9oceanbase6common13ObSEArrayImplINS_3sql21ObPartIdRowMapManager8MapEntryELl1ENS0_19ModulePageAllocatorELb0EED2Ev +_ZN9oceanbase6common13ObSEArrayImplINS_3sql12PCVSchemaObjELl4ENS0_19ModulePageAllocatorELb0EED2Ev +_ZN9oceanbase8observer16ObSyncPlanDriver15response_resultERNS0_16ObMySQLResultSetE +_ZN9oceanbase7obmysql7OMPKEOFD1Ev +_ZN9oceanbase7obmysql7OMPKEOFD2Ev +_ZN9oceanbase7obmysql7OMPKEOFC1Ev +_ZN9oceanbase7obmysql7OMPKEOFC2Ev +_ZN9oceanbase3sql10ObExecutor5resetEv +_ZN9oceanbase8observer13ObQueryDriver21response_query_resultERNS_3sql11ObResultSetEbbRbl +_ZNK9oceanbase3sql18ObBasicSessionInfo25get_character_set_resultsERNS_6common13ObCharsetTypeE +_ZN9oceanbase6common7ObSMRowC1ENS_7obmysql19MYSQL_PROTOCOL_TYPEERKNS0_8ObNewRowERKNS0_20ObDataTypeCastParamsEPKNS0_8ObIArrayINS0_7ObFieldEEEPNS_5share6schema19ObSchemaGetterGuardEm +_ZN9oceanbase6common7ObSMRowC2ENS_7obmysql19MYSQL_PROTOCOL_TYPEERKNS0_8ObNewRowERKNS0_20ObDataTypeCastParamsEPKNS0_8ObIArrayINS0_7ObFieldEEEPNS_5share6schema19ObSchemaGetterGuardEm +_ZN9oceanbase7obmysql7OMPKRowC1ERKNS0_10ObMySQLRowE +_ZN9oceanbase7obmysql7OMPKRowC2ERKNS0_10ObMySQLRowE +_ZN9oceanbase8observer16ObMPPacketSender15response_packetERNS_7obmysql13ObMySQLPacketEPNS_3sql16ObSQLSessionInfoE +_ZN9oceanbase8observer16ObMPPacketSender15try_encode_withERNS_7obmysql13ObMySQLPacketElRll +_ZNK9oceanbase7obmysql7OMPKRow9serializeEPclRl +_ZNK9oceanbase7obmysql9OMPKField9serializeEPclRl +_ZN9oceanbase7obmysql14ObProto20Utils16do_packet_encodeERNS0_18ObProtoEncodeParamE +_ZNK9oceanbase6common7ObSMRow13get_cells_cntEv +_ZNK9oceanbase7obmysql10ObMySQLRow9serializeEPclRl +_ZNK9oceanbase6common7ObSMRow11encode_cellElPclRlS2_ +_ZN9oceanbase3sql11ObResultSet12get_next_rowERPKNS_6common8ObNewRowE +_ZN9oceanbase3sql13ObExecContext29get_convert_charset_allocatorERPNS_6common16ObArenaAllocatorE +_ZN9oceanbase3sql15ObExecuteResult12get_next_rowERNS0_13ObExecContextERPKNS_6common8ObNewRowE +_ZN9oceanbase3sql10ObOperator12get_next_rowEv +_ZNK9oceanbase6common7ObDatum6to_objERNS0_5ObObjERKNS0_9ObObjMetaENS0_17ObObjDatumMapTypeE +_ZN9oceanbase3sql13ObTableScanOp18inner_get_next_rowEv +_ZN9oceanbase3sql13ObTableScanOp21get_next_row_with_dasEv +_ZN9oceanbase3sql11ObDASScanOp22get_output_result_iterEv +_ZN9oceanbase7storage19ObTableScanIterator12get_next_rowEv +_ZN9oceanbase3sql15DASOpResultIter12get_next_rowEv +_ZN9oceanbase7storage19ObTableScanIterator12get_next_rowERPNS_6common8ObNewRowE +_ZN9oceanbase7storage19ObTableScanIterator37check_txn_status_if_read_uncommitted_Ev +_ZN9oceanbase7storage15ObMultipleMerge12get_next_rowERPNS_12blocksstable10ObDatumRowE +_ZN9oceanbase7storage18ObStoreRowIterator13get_iter_flagEv +_ZN9oceanbase7storage18ObStoreRowIterator12get_next_rowERPKNS_12blocksstable10ObDatumRowE +_ZN9oceanbase7storage31ObSSTableMultiVersionRowScanner18inner_get_next_rowERPKNS_12blocksstable10ObDatumRowE +_ZN9oceanbase8memtable22ObMemtableScanIterator13get_iter_flagEv +_ZNK9oceanbase7storage8ObITable11is_memtableEv +_ZN9oceanbase12blocksstable10ObDatumRow15prepare_new_rowERKNS_6common8ObIArrayINS_5share6schema9ObColDescEEE +_ZN9oceanbase7storage15ObMultipleMerge23refresh_table_on_demandEv +_ZN9oceanbase7storage19ObMultipleScanMerge18inner_get_next_rowERNS_12blocksstable10ObDatumRowE +_ZN9oceanbase7storage23ObScanMergeLoserTreeCmpclERKNS0_24ObScanMergeLoserTreeItemES4_ +_ZN9oceanbase7storage23ObScanMergeLoserTreeCmp14compare_rowkeyERKNS_12blocksstable10ObDatumRowES5_Ri +_ZN9oceanbase12blocksstableL21nonext_nonext_compareERKNS0_14ObStorageDatumES3_RKNS_6common9ObCmpFuncERi.8f1e732d6655d093e942b32e16c602d8 +_ZN9oceanbase6common20ObNullSafeDatumTCCmpILNS0_14ObObjTypeClassE1ELS2_1ELb1EE3cmpERKNS0_7ObDatumES6_ +_ZN9oceanbase7storage9ObRowFuse8fuse_rowERKNS_12blocksstable10ObDatumRowERS3_RNS0_8ObNopPosERbPNS_6common12ObIAllocatorE +_ZN9oceanbase7storage19ObSSTableRowScanner18inner_get_next_rowERPKNS_12blocksstable10ObDatumRowE +_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher8prefetchEv +_ZN9oceanbase7storage15ObMultipleMerge16process_fuse_rowEbRNS_12blocksstable10ObDatumRowERPS3_ +_ZN9oceanbase7storage15ObMultipleMerge20project2output_exprsERNS_12blocksstable10ObDatumRowES4_ +_ZN9oceanbase3sql18ObPushdownOperator21clear_datum_eval_flagEv +_ZN9oceanbase7storage19ObSSTableRowScanner9fetch_rowERNS0_19ObSSTableReadHandleERPKNS_12blocksstable10ObDatumRowE +_ZN9oceanbase12blocksstable23ObIMicroBlockRowScanner12get_next_rowERPKNS0_10ObDatumRowE +_ZN9oceanbase3sql10ObOperator28try_register_rt_monitor_nodeEl +_ZN9oceanbase7storage20ObRow2ExprsProjector7projectERKNS_6common8ObIArrayIPNS_3sql6ObExprEEEPKNS_12blocksstable14ObStorageDatumEPsRl +_ZN9oceanbase7storage18ObSimpleRowsMergerINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpEE4pushERKS2_ +_ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScanner18inner_get_next_rowERPKNS0_10ObDatumRowE +_ZThn320_N9oceanbase12blocksstable18ObMicroBlockReader7get_rowElRNS0_10ObDatumRowE +_ZN9oceanbase12blocksstable23ObIMicroBlockRowScanner18inner_get_next_rowERPKNS0_10ObDatumRowE +_ZN9oceanbase12blocksstable18ObMicroBlockReader7get_rowElRNS0_10ObDatumRowE +_ZN9oceanbase12blocksstable11ObRowReader8read_rowEPKclPKNS_7storage15ObTableReadInfoERNS0_10ObDatumRowE +_ZN9oceanbase12blocksstableL12get_offset_8EPKvl.8f1e732d6655d093e942b32e16c602d8 +_ZN9oceanbase12blocksstable11ObRowReader9setup_rowEPKcl +_ZNK9oceanbase7storage15ObTableReadInfo8is_validEv +_ZN9oceanbase12blocksstable21ObClusterColumnReader4initEPKcmmRKNS0_20ObColClusterInfoMaskE +_ZN9oceanbase12blocksstable10ObDatumRow7reserveElb +_ZN9oceanbase12blocksstable21ObClusterColumnReader18read_storage_datumElRNS0_14ObStorageDatumE +_ZN9oceanbase3sql10ObExecutor5closeERNS0_13ObExecContextE +_ZN9oceanbase6common9ObCharset18is_valid_collationEl +_ZN9oceanbase7obmysql12ObMySQLFieldC1Ev +_ZN9oceanbase7obmysql12ObMySQLFieldC2Ev +_ZNK9oceanbase8observer16ObMPPacketSender8get_connEv +_ZN9oceanbase8memtable23ObIMemtableScanIterator12get_next_rowERPKNS_12blocksstable10ObDatumRowE +_ZN9oceanbase3sql16ObHashDistinctOp18inner_get_next_rowEv +_ZN9oceanbase3sql16ObHashDistinctOp19do_unblock_distinctEv +_ZNK9oceanbase3sql11ObResultSet13get_field_cntEv +_ZN9oceanbase3sql16ObHashDistinctOp19build_distinct_dataEb +_ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE33insert_row_with_unique_hash_tableERKNS_6common8ObIArrayIPNS0_6ObExprEEERbSC_ +_ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE15calc_hash_valueERKNS_6common8ObIArrayIPNS0_6ObExprEEERm +_ZN9oceanbase6common9ObCharset4hashENS0_15ObCollationTypeEPKclmbPFmPKvmmE +_ZL20ob_hash_sort_utf8mb4PK13ObCharsetInfoPKhmPmS4_bPFmPKvmmE.5aa8bf9a2f1d92c2672c2bb9fbfc2e97 +_ZL16ob_mb_wc_utf8mb4PK13ObCharsetInfoPmPKhS4_.5aa8bf9a2f1d92c2672c2bb9fbfc2e97 +_ZN9oceanbase6common12ObMurmurHash4hashEPKvmm +_ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE36do_insert_row_with_unique_hash_tableERKNS_6common8ObIArrayIPNS0_6ObExprEEEmRbSC_ +_ZNK9oceanbase3sql30ObHashPartitionExtendHashTableINS0_14ObHashPartColsEE3getEmRKS2_RPS4_ +_ZN9oceanbase6common16ObArenaAllocator5allocEl +_ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE30update_mem_status_periodicallyEv +_ZN9oceanbase3sql20ObSqlMemMgrProcessor42update_max_available_mem_size_periodicallyEPNS_6common12ObIAllocatorESt8functionIFblEERb +_ZNSt17_Function_handlerIFblEZN9oceanbase3sql12ObSortOpImpl14before_add_rowEvE5$_970E9_M_invokeERKSt9_Any_dataOl.68271ef948b9e29c783f97102b0c767d +_ZNSt17_Function_handlerIFblEZN9oceanbase3sql24ObHashPartInfrastructureINS2_14ObHashPartColsENS2_19ObHashPartStoredRowEE30update_mem_status_periodicallyEvEUllE_E9_M_invokeERKSt9_Any_dataOl +_ZNSt14_Function_base13_Base_managerIZN9oceanbase3sql24ObHashPartInfrastructureINS2_14ObHashPartColsENS2_19ObHashPartStoredRowEE30update_mem_status_periodicallyEvEUllE_E10_M_managerERSt9_Any_dataRKS9_St18_Manager_operation +_ZN9oceanbase7storage18ObSimpleRowsMergerINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpEE3popEv +_ZN9oceanbase6common5ObObj28convert_string_value_charsetENS0_13ObCharsetTypeERNS0_12ObIAllocatorE +_ZN9oceanbase6common9ObCharset11get_charsetENS0_15ObCollationTypeE +_ZN9oceanbase6common9ObCharset21get_default_collationENS0_13ObCharsetTypeE +_ZN9oceanbase3rpc20ObSqlRequestOperator12get_operatorEPKNS0_9ObRequestE +_ZN9oceanbase3sql8ObSortOp18inner_get_next_rowEv +_ZN9oceanbase3sql8ObSortOp14sort_impl_nextEv +_ZN9oceanbase3sql12ObSortOpImpl12get_next_rowERKNS_6common8ObIArrayIPNS0_6ObExprEEERPKNS0_17ObChunkDatumStore9StoredRowE +_ZN9oceanbase3sql12ObSortOpImpl21array_next_stored_rowERPKNS0_17ObChunkDatumStore9StoredRowE +_ZN9oceanbase3sql30ObHashPartitionExtendHashTableINS0_14ObHashPartColsEE3setERS2_ +_ZN9oceanbase3sql8ObDASRef17begin_result_iterEv +_ZN9oceanbase7obmysql24ObEasySqlRequestOperator25alloc_sql_response_bufferEPNS_3rpc9ObRequestEl +_ZN9oceanbase3sql8ObSortOp12process_sortEv +_ZN9oceanbase3sql12ObSortOpImpl7add_rowERKNS_6common8ObIArrayIPNS0_6ObExprEEERPKNS0_17ObChunkDatumStore9StoredRowE +_ZN9oceanbase3sql17ObChunkDatumStore7add_rowERKNS_6common8ObIArrayIPNS0_6ObExprEEEPNS0_9ObEvalCtxEPPNS1_9StoredRowE +_ZN9oceanbase3sql17ObChunkDatumStore5Block10append_rowERKNS_6common8ObIArrayIPNS0_6ObExprEEEPNS0_9ObEvalCtxEPNS1_11BlockBufferElPPNS1_9StoredRowEb +_ZN9oceanbase3sql17ObChunkDatumStore9StoredRow8do_buildILb0EEEiRPS2_RKNS_6common8ObIArrayIPNS0_6ObExprEEERNS0_9ObEvalCtxEPclj +_ZN9oceanbase3sql12ObSortOpImpl13after_add_rowEPNS0_17ObChunkDatumStore9StoredRowE +_ZN9oceanbase3sql12ObSortOpImpl14before_add_rowEv +_ZNK9oceanbase6common11ObAllocator4usedEv +_ZN9oceanbase6common14ObServerConfig12get_instanceEv +_ZNSt14_Function_baseD2Ev +_ZN9oceanbase3sql12ObSortOpImpl9need_dumpEv +_ZNSt14_Function_base13_Base_managerIZN9oceanbase3sql12ObSortOpImpl14before_add_rowEvE5$_970E10_M_managerERSt9_Any_dataRKS6_St18_Manager_operation.68271ef948b9e29c783f97102b0c767d +_ZN9oceanbase7obmysql9OMPKFieldC1ERNS0_12ObMySQLFieldE +_ZN9oceanbase7obmysql9OMPKFieldC2ERNS0_12ObMySQLFieldE +_ZN9oceanbase8memtable22ObMemtableScanIterator18inner_get_next_rowERPKNS_12blocksstable10ObDatumRowE +_ZN9oceanbase12blocksstable11ObRowReader5resetEv +_ZN9oceanbase12blocksstable11ObRowReaderC1Ev +_ZN9oceanbase12blocksstable11ObRowReaderC2Ev +_ZN9oceanbase12blocksstable11ObRowReader17read_memtable_rowEPKclRKNS_7storage15ObTableReadInfoERNS0_10ObDatumRowERNS_8memtable11ObNopBitMapERb +_ZN9oceanbase8memtable19ObMvccValueIterator13get_next_nodeERPKv +_ZThn56_N9oceanbase8observer8ObMPBase25need_send_extra_ok_packetEv +_ZN9oceanbase7storage16ObTableStoreStat5reuseEv +_ZN9oceanbase6common9ObSMUtils8cell_strEPclRKNS0_5ObObjENS_7obmysql19MYSQL_PROTOCOL_TYPEERllS2_RKNS0_20ObDataTypeCastParamsEPKNS0_7ObFieldEPNS_5share6schema19ObSchemaGetterGuardEm +_ZN9oceanbase7obmysql11ObMySQLUtil16varchar_cell_strEPclRKNS_6common8ObStringEbRl +_ZN9oceanbase3sql13ObTableScanOp23add_ddl_column_checksumEv +_ZN9oceanbase6common9ObCharset11is_bin_sortENS0_15ObCollationTypeE +_ZN9oceanbase3sql8ObDASCtx16is_partition_hitEv +_ZN9oceanbase3sql13ObTableScanOp22do_init_before_get_rowEv +_ZN9oceanbase6common13ObSEArrayImplIPNS0_10ObNewRangeELl1ENS0_19ModulePageAllocatorELb0EED2Ev +_ZN9oceanbase3sql8ObDASRef13find_das_taskEPKNS0_14ObDASTabletLocENS0_11ObDASOpTypeE +_ZN9oceanbase6common13ObSEArrayImplIbLl2ENS0_19ModulePageAllocatorELb1EED2Ev +_ZN9oceanbase6common11DefHashFuncINS0_22DatumStrHashCalculatorILNS0_15ObCollationTypeE45ELb0ENS0_12ObMurmurHashELb0EEEE4hashERKNS0_7ObDatumEm +_ZN9oceanbase3sql19ObScalarAggregateOp18inner_get_next_rowEv +_ZN9oceanbase8memtable17ObMvccRowIterator12get_next_rowERPKNS0_13ObMemtableKeyERPNS0_19ObMvccValueIteratorERhb +_ZN9oceanbase3sql15DASOpResultIter11next_resultEv +_ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE12process_dumpEbRb +_ZN9oceanbase8keybtree13BtreeIterator8get_nextERNS_8memtable20ObStoreRowkeyWrapperERPNS2_9ObMvccRowE +_ZNK9oceanbase7obmysql7OMPKEOF9serializeEPclRl +_ZN9oceanbase8keybtree8Iterator8get_nextERNS_8memtable20ObStoreRowkeyWrapperERPNS2_9ObMvccRowE +_ZNK9oceanbase8keybtree9BtreeNode7get_tagEiPNS0_11MultibitSetE +_ZNK9oceanbase7obmysql13OMPKResheader9serializeEPclRl +_ZN9oceanbase3sql16LinkExecCtxGuard20link_current_contextEv +_ZN9oceanbase3sql20ObAggregateProcessor7processERNS1_8GroupRowEb +_ZN9oceanbase3sql20ObAggregateProcessor13inner_processERNS1_8GroupRowEllb +_ZNK9oceanbase3sql10ObAggrInfo9eval_aggrERNS0_17ObChunkDatumStore15ShadowStoredRowERNS0_9ObEvalCtxE +_ZN9oceanbase3sql11ObResultSet4openEv +_ZNK9oceanbase3lib6Worker10is_timeoutEv +_ZN9oceanbase3sql15ObExecuteResult4openERNS0_13ObExecContextE +_ZNK9oceanbase3sql15ObTableModifyOp23get_operator_open_orderEv +_ZN9oceanbase3sql10ObExecutor4initEPNS0_14ObPhysicalPlanE +_ZZN9oceanbase8memtable19ObMvccValueIterator4initERNS0_15ObMvccAccessCtxEPKNS0_13ObMemtableKeyEPNS0_9ObMvccRowERKNS_6common11ObQueryFlagEbENK5$_110clEPKc.0340b0f4925be2641495b31f3f56bf33 +_ZN9oceanbase6common8ObLogger13need_to_printEmmi +_ZN9oceanbase3sql20ObAggregateProcessor19process_aggr_resultERKNS0_17ObChunkDatumStore9StoredRowEPKNS_6common8ObIArrayIPNS0_6ObExprEEERNS1_8AggrCellERKNS0_10ObAggrInfoE +_ZN9oceanbase3sql10ObSQLUtils23extract_pre_query_rangeERKNS0_12ObQueryRangeERNS_6common12ObIAllocatorERNS0_13ObExecContextERNS5_9ObSEArrayIPNS5_10ObNewRangeELl1ENS5_19ModulePageAllocatorELb0EEENSA_IbLl2ESD_Lb1EEERKNS5_20ObDataTypeCastParamsE +_ZN9oceanbase6common13ObSEArrayImplIPNS0_10ObNewRangeELl1ENS0_19ModulePageAllocatorELb0EE9push_backERKS3_ +_ZN9oceanbase6common13ObSEArrayImplIbLl2ENS0_19ModulePageAllocatorELb1EE9push_backERKb +_ZN9oceanbase3sql10ObSQLUtils24is_same_type_for_compareERKNS_6common9ObObjMetaES5_ +_ZN9oceanbase3sql13ObPxAdmission20exit_query_admissionERNS0_16ObSQLSessionInfoERNS0_13ObExecContextERNS0_14ObPhysicalPlanE +_ZN9oceanbase7obmysql6OMPKOK11set_messageERKNS_6common8ObStringE +_ZN9oceanbase3sql8ObDASRef16execute_all_taskEv +_ZN9oceanbase3sql12ObIDASTaskOp14start_das_taskEv +_ZN9oceanbase6common13ObSEArrayImplImLl4ENS0_19ModulePageAllocatorELb0EE5reuseEv +_ZN9oceanbase6common13ObSEArrayImplINS_11transaction6ObPairINS_5share6ObLSIDElEELl1ENS0_19ModulePageAllocatorELb0EE5reuseEv +_ZN9oceanbase12blocksstable23ObIMicroBlockRowScanner9set_rangeERKNS0_12ObDatumRangeE +_ZN9oceanbase3sql11ObResultSet11open_resultEv +_ZN9oceanbase3sql11ObResultSet16replace_lob_typeERKNS0_16ObSQLSessionInfoERKNS_6common7ObFieldERNS_7obmysql12ObMySQLFieldE +_ZN9oceanbase3sql13ObExecContext12init_expr_opEm +_ZN9oceanbase7obmysql11ObMySQLUtil12store_lengthEPclmRl +_ZN9oceanbase7storage13ObSingleMerge18inner_get_next_rowERNS_12blocksstable10ObDatumRowE +_ZN9oceanbase8memtable21ObMemtableGetIteratorC1Ev +_ZN9oceanbase8memtable21ObMemtableGetIteratorC2Ev +_ZN9oceanbase12blocksstable19ObFuseRowCacheValueC1Ev +_ZN9oceanbase12blocksstable19ObFuseRowCacheValueC2Ev +_ZN9oceanbase8memtable10ObMemtable3getERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS_12blocksstable13ObDatumRowkeyERPNS2_18ObStoreRowIteratorE +_ZNK9oceanbase7storage16ObTableIterParam8is_validEv +_ZN9oceanbase7obmysql11ObMySQLUtil20get_number_store_lenEm +_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher19prefetch_micro_dataEv +_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher10drill_downEv +_ZNK9oceanbase12blocksstable22ObIndexBlockRowScanner12end_of_blockEv +_ZN9oceanbase12blocksstable22ObIndexBlockRowScanner5reuseEv +_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher19prefetch_index_treeEv +_ZN9oceanbase7storage22ObMicroBlockDataHandle19get_data_block_dataERNS_12blocksstable18ObMacroBlockReaderERNS2_16ObMicroBlockDataE +_ZN9oceanbase7storage22ObMicroBlockDataHandle21get_loaded_block_dataERNS_12blocksstable16ObMicroBlockDataE +_ZN9oceanbase6common9ObSMUtils14get_mysql_typeENS0_9ObObjTypeERNS_7obmysql15EMySQLFieldTypeERtRs +_ZN9oceanbase3sql11ObDASScanOp7open_opEv +_ZN9oceanbase11transaction12ObTxSnapshotaSERKS1_ +_ZN9oceanbase3sql13ObTableScanOp25prepare_single_scan_rangeEl +_ZN9oceanbase3sql18ObBasicSessionInfo17create_dtc_paramsEPKS1_ +_ZN9oceanbase7storage13ObSingleMerge22get_and_fuse_cache_rowEllRNS_12blocksstable10ObDatumRowERbS5_S5_ +_ZN9oceanbase3lib17__MemoryContext__14create_contextIJRNS0_12ContextParamEPNS0_10StaticInfoEEEEiRNS0_13MemoryContextERKNS0_11DynamicInfoEDpOT_ +_ZN9oceanbase3sql10ObOperator10drain_exchEv +_ZZN9oceanbase8memtable10ObMemtable3getERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS_12blocksstable13ObDatumRowkeyERPNS2_18ObStoreRowIteratorEENK5$_114clEPKc.1dd22efca7fa83ae50e8099a04ad3959 +_ZN9oceanbase7storage21ObFuseRowCacheFetcher18get_fuse_row_cacheERKNS_12blocksstable13ObDatumRowkeyERNS2_20ObFuseRowValueHandleE +_ZN9oceanbase12blocksstable17ObFuseRowCacheKeyC1EmRKNS_6common10ObTabletIDERKNS0_13ObDatumRowkeyEllRKNS0_19ObStorageDatumUtilsE +_ZN9oceanbase12blocksstable17ObFuseRowCacheKeyC2EmRKNS_6common10ObTabletIDERKNS0_13ObDatumRowkeyEllRKNS0_19ObStorageDatumUtilsE +_ZN9oceanbase12blocksstable14ObFuseRowCache7get_rowERKNS0_17ObFuseRowCacheKeyERNS0_20ObFuseRowValueHandleE +_ZN9oceanbase6common9ObKVCacheINS_12blocksstable17ObFuseRowCacheKeyENS2_19ObFuseRowCacheValueEE3getERKS3_RPKS4_RNS0_15ObKVCacheHandleE +_ZN9oceanbase8memtable19ObIMemtableIterator12get_next_rowERPKNS_12blocksstable10ObDatumRowE +_ZN9oceanbase8memtable21ObMemtableGetIterator18inner_get_next_rowERPKNS_12blocksstable10ObDatumRowE +_ZN9oceanbase8memtable10ObMemtable3getERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS_12blocksstable13ObDatumRowkeyERNS8_10ObDatumRowE +_ZN9oceanbase3lib9ObjectSetD1Ev +_ZN9oceanbase3lib9ObjectSetD2Ev +_ZN9oceanbase3sql18ObBasicSessionInfo38update_query_sensitive_system_variableERNS_5share6schema19ObSchemaGetterGuardE +_ZN9oceanbase5share6schema19ObSchemaGetterGuard23get_sys_variable_schemaEmRPKNS1_25ObSimpleSysVariableSchemaE +_ZNK9oceanbase5share6schema16ObSysVariableMgr23get_sys_variable_schemaEmRPKNS1_25ObSimpleSysVariableSchemaE +_ZN9oceanbase11transaction9ObTxParamC1Ev +_ZN9oceanbase11transaction9ObTxParamC2Ev +_ZN9oceanbase7storage21ObFuseRowCacheFetcher18put_fuse_row_cacheERKNS_12blocksstable13ObDatumRowkeyERNS2_10ObDatumRowEl +_ZN9oceanbase12blocksstable19ObFuseRowCacheValue4initERKNS0_10ObDatumRowEl +_ZN9oceanbase12blocksstable14ObFuseRowCache7put_rowERKNS0_17ObFuseRowCacheKeyERKNS0_19ObFuseRowCacheValueE +_ZN9oceanbase6common15ObKVGlobalCache3putElRKNS0_13ObIKVCacheKeyERKNS0_15ObIKVCacheValueERPS6_RPNS0_18ObKVMemBlockHandleEb +_ZNK9oceanbase12blocksstable17ObFuseRowCacheKey13get_tenant_idEv +_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandle7forwardERKNS0_15ObTableReadInfoERKNS_12blocksstable13ObDatumRowkeyE +_ZN9oceanbase3sql11ObResultSet7executeEv +_ZN9oceanbase3sql11ObResultSet10start_stmtEv +_ZN9oceanbase3sql16ObSQLSessionInfo20get_raw_audit_recordEv +_ZNK9oceanbase3sql6ObICmd21cause_implicit_commitEv +_ZN9oceanbase3sql18ObBasicSessionInfo14set_start_stmtEv +_ZThn32_NK9oceanbase3sql16ObStartTransStmt21cause_implicit_commitEv +_ZNK9oceanbase3sql18ObBasicSessionInfo16get_tx_read_onlyEv +_ZN9oceanbase3sql8ObDASRef5resetEv +_ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql14ObDASBaseRtDefENS0_12ObIAllocatorEED2Ev +_ZN9oceanbase3sql12ObIDASTaskOpD2Ev +_ZN9oceanbase6common16ObFixedArrayImplIPKNS_3sql14ObDASBaseCtDefENS0_12ObIAllocatorEED2Ev +_ZN9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EED2Ev +_ZN9oceanbase6common13ObSEArrayImplINS_11transaction8ObTxPartELl4ENS0_19ModulePageAllocatorELb0EED2Ev +_ZN9oceanbase6common16ObFixedArrayImplINS0_10ObTabletIDENS0_12ObIAllocatorEED2Ev +_ZN9oceanbase3sql13ObExecContext12reset_op_envEv +_ZN9oceanbase7obmysql13OMPKResheaderC1Ev +_ZN9oceanbase7obmysql13OMPKResheaderC2Ev +_ZZN9oceanbase3sql13ObTableScanOp25prepare_single_scan_rangeElENK5$_224clEPKc.4dcb63e5b90b62777233554860a5c667 +_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandle8prefetchERKNS0_15ObTableReadInfoERKNS_12blocksstable13ObDatumRowkeyElRS1_ +_ZN9oceanbase3sql8ObParser9pre_parseERKNS_6common8ObStringERNS0_14PreParseResultE +_ZN9oceanbase3sql17ObSqlTransControl10start_stmtERNS0_13ObExecContextE +_ZNK9oceanbase11transaction16ObTxReadSnapshot15get_source_nameEv +_ZN9oceanbase11transaction10ObTxCtxMgr20revert_ls_tx_ctx_mgrEPNS0_12ObLSTxCtxMgrE +_ZN9oceanbase3sql8ObDASCtx13has_same_lsidEPNS_5share6ObLSIDE +_ZNK9oceanbase3sql18ObBasicSessionInfo16get_tx_isolationEv +_ZN9oceanbase6common13ObSEArrayImplINS_11transaction6ObPairINS_5share6ObLSIDElEELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv +_ZN9oceanbase6common13ObLinkHashMapINS_5share6ObLSIDENS_11transaction12ObLSTxCtxMgrENS4_17ObLSTxCtxMgrAllocENS0_9RefHandleELl8EE6revertEPNS0_12LinkHashNodeIS3_EE +_ZN9oceanbase11transaction11ObTxELRUtil28check_and_update_tx_elr_infoERNS0_8ObTxDescEb +_ZN9oceanbase3omt19ObTenantConfigGuardC1EPNS0_14ObTenantConfigE +_ZN9oceanbase3omt19ObTenantConfigGuardC2EPNS0_14ObTenantConfigE +_ZN9oceanbase3sqlL14get_tx_serviceEPNS0_18ObBasicSessionInfoERPNS_11transaction14ObTransServiceE.2477d7488918a1107364fd115ff965f5 +_ZNK9oceanbase3omt17ObTenantConfigMgr27get_tenant_config_with_lockEmmm +_ZN9oceanbase6common7ObLatch6rdlockEjl +_ZN9oceanbase11transaction14ObTransService19sql_stmt_start_hookERKNS0_11ObXATransIDERNS0_8ObTxDescE +_ZNK9oceanbase11transaction11ObXATransID5emptyEv +_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher19try_add_query_rangeERNS1_22ObIndexTreeLevelHandleE +_ZN9oceanbase12blocksstable22ObIndexBlockRowScanner4openERKNS0_12MacroBlockIdERKNS0_16ObMicroBlockDataERKNS0_12ObDatumRangeEsbb +_ZN9oceanbase12blocksstable22ObIndexBlockRowScanner12locate_rangeERKNS0_12ObDatumRangeEbb +_ZN9__gnu_cxx5__ops14_Iter_comp_valIN9oceanbase12blocksstable15ObDatumComparorINS3_13ObDatumRowkeyEEEEclIPKS5_S9_EEbT_RT0_ +_ZNK9oceanbase12blocksstable13ObDatumRowkey7compareERKS1_RKNS0_19ObStorageDatumUtilsERi +_ZN9__gnu_cxx5__ops14_Val_comp_iterIN9oceanbase12blocksstable15ObDatumComparorINS3_13ObDatumRowkeyEEEEclIKS5_PS9_EEbRT_T0_ +_ZN9oceanbase12blocksstable22ObIndexBlockRowScanner18init_by_micro_dataERKNS0_16ObMicroBlockDataE +_ZN9oceanbase12blocksstable13ObSSTableMeta19get_index_tree_rootERKNS_7storage15ObTableReadInfoERNS0_16ObMicroBlockDataEb +_ZNK9oceanbase7storage14ObMetaDiskAddr8is_validEv +_ZZN9oceanbase12blocksstable22ObIndexBlockRowScanner12locate_rangeERKNS0_12ObDatumRangeEbbENK5$_770clEPKc.79c84811dffcee7ee47b268264023dc2 +_ZN9oceanbase3sql11ObResultSet14set_mysql_infoEv +_ZN9oceanbase3sql10ObExecutor12execute_planERNS0_13ObExecContextE +_ZN9oceanbase3sql13ObExecContext13get_allocatorEv +_ZNK9oceanbase3sql8ObOpSpec15create_operatorERNS0_13ObExecContextERPNS0_10ObOperatorE +_ZNK9oceanbase3sql8ObOpSpec36link_sql_plan_monitor_node_recursiveERNS0_13ObExecContextERPNS0_13ObMonitorNodeE +_ZN9oceanbase3sql13ObMonitorNode19add_rt_monitor_nodeEPS1_ +_ZNK9oceanbase3sql15ObExprFrameInfo21pre_alloc_exec_memoryERNS0_13ObExecContextE +_ZZNK9oceanbase3sql8ObOpSpec15create_operatorERNS0_13ObExecContextERPNS0_10ObOperatorEENK5$_115clEPKc.68271ef948b9e29c783f97102b0c767d +_ZNK9oceanbase3sql8ObOpSpec25create_operator_recursiveERNS0_13ObExecContextERPNS0_10ObOperatorE +_ZN9oceanbase3sql18ObTableScanOpInputC1ERNS0_13ObExecContextERKNS0_8ObOpSpecE +_ZN9oceanbase3sql18ObTableScanOpInputC2ERNS0_13ObExecContextERKNS0_8ObOpSpecE +_ZN9oceanbase3sql13ObTableScanOpC1ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE +_ZN9oceanbase3sql13ObTableScanOpC2ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE +_ZN9oceanbase3sql8ObDASRefC1ERNS0_9ObEvalCtxERNS0_13ObExecContextE +_ZN9oceanbase3sql8ObDASRefC2ERNS0_9ObEvalCtxERNS0_13ObExecContextE +_ZN9oceanbase3sql16ObDASTaskFactoryC1ERNS_6common12ObIAllocatorE +_ZN9oceanbase3sql16ObDASTaskFactoryC2ERNS_6common12ObIAllocatorE +_ZN9oceanbase3sql10ObOperatorC2ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE +_ZN9oceanbase3sql9ObEvalCtxC1ERNS0_13ObExecContextE +_ZN9oceanbase3sql9ObEvalCtxC2ERNS0_13ObExecContextE +_ZZNK9oceanbase3sql8ObOpSpec25create_operator_recursiveERNS0_13ObExecContextERPNS0_10ObOperatorEENK5$_121clEPKc.68271ef948b9e29c783f97102b0c767d +_ZN9oceanbase3sql20ObSecurityAuditUtils21handle_security_auditERNS0_11ObResultSetEPNS_5share6schema19ObSchemaGetterGuardEPKNS0_6ObStmtERKNS_6common8ObStringEi +_ZZN9oceanbase8observer16ObMySQLResultSet14to_mysql_fieldERKNS_6common7ObFieldERNS_7obmysql12ObMySQLFieldEENK4$_58clEPKc.aab76b6a44351831e19725958b59fc25 +_ZN9oceanbase8memtable17ObMvccRowIterator5resetEv +_ZN9oceanbase11transaction14ObTransService20get_ls_read_snapshotERNS0_8ObTxDescENS0_18ObTxIsolationLevelERKNS_5share6ObLSIDElRNS0_16ObTxReadSnapshotE +_ZN9oceanbase6common12ObLatchMutex4lockEjl +_ZNK9oceanbase5share6ObLSID4hashEv +_ZN9oceanbase11transaction10ObTxCtxMgr17get_ls_tx_ctx_mgrERKNS_5share6ObLSIDERPNS0_12ObLSTxCtxMgrE +_ZN9oceanbase11transaction12ObLSTxCtxMgr23in_leader_serving_stateEv +_ZN9oceanbase3lib6Worker23get_sql_arena_allocatorEv +_ZN9oceanbase7storage15ObAccessService10table_scanERNS_6common17ObVTableScanParamERPNS2_16ObNewRowIteratorE +_ZN9oceanbase7storage14ObTabletHandleC1Ev +_ZN9oceanbase7storage14ObTabletHandleC2Ev +_ZNK9oceanbase7storage16ObTableScanParam8is_validEv +_ZN9oceanbase5share11ObQSyncLock6rdlockEv +_ZN9oceanbase5share11ObQSyncLock8rdunlockEv +_ZNK9oceanbase7storage13ObLSTxService18get_read_store_ctxERKNS_11transaction16ObTxReadSnapshotEblRNS0_10ObStoreCtxE +_ZN9oceanbase7storage9ObTxTable18get_tx_table_guardERNS0_14ObTxTableGuardE +_ZN9oceanbase7storage14ObTabletMapKeyC1ERKNS_5share6ObLSIDERKNS_6common10ObTabletIDE +_ZN9oceanbase7storage14ObTabletMapKeyC2ERKNS_5share6ObLSIDERKNS_6common10ObTabletIDE +_ZN9oceanbase11transaction14ObTransService18get_read_store_ctxERKNS0_16ObTxReadSnapshotEblRNS_7storage10ObStoreCtxE +_ZN9oceanbase11transaction12ObTxSnapshot5resetEv +_ZN9oceanbase11transaction14ObTransService19update_max_read_ts_EmRKNS_5share6ObLSIDEl +_ZN9oceanbase11transaction14ObTransService23check_replica_readable_ElbNS0_16ObTxReadSnapshot3SRCERKNS_5share6ObLSIDElRNS_7storage4ObLSE +_ZN9oceanbase7storage13ObLSTxService21get_tx_ls_log_adapterEv +_ZN9oceanbase8memtable15ObMvccAccessCtx9init_readEPNS_11transaction14ObPartTransCtxEPNS0_13ObMemtableCtxERKNS_7storage14ObTxTableGuardERKNS2_12ObTxSnapshotEll +_ZZN9oceanbase11transaction14ObTransService19update_max_read_ts_EmRKNS_5share6ObLSIDElENK6$_1153clEPKc.93feb755617c21c32b229b78773c290c +_ZZN9oceanbase11transaction14ObTransService23check_replica_readable_ElbNS0_16ObTxReadSnapshot3SRCERKNS_5share6ObLSIDElRNS_7storage4ObLSEENK6$_1025clEPKc.93feb755617c21c32b229b78773c290c +_ZZN9oceanbase11transaction14ObTxVersionMgr18update_max_read_tsElENKUlPKcE_clES3_ +_ZN9oceanbase7storage13ObSingleMerge13get_table_rowElRKNS_6common8ObIArrayIPNS0_8ObITableEEERNS_12blocksstable10ObDatumRowERbSC_ +_ZNK9oceanbase7storage8ObITable30is_multi_version_minor_sstableEv +_ZN9oceanbase3sql16ObQueryRetryInfo4initEv +_ZN9oceanbase3sql11ObResultSet15drive_dml_queryEv +_ZN9oceanbase8observer8ObMPBase33update_transmission_checksum_flagERKNS_3sql16ObSQLSessionInfoE +_ZN9oceanbase12blocksstable9ObSSTable3getERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS0_13ObDatumRowkeyERPNS2_18ObStoreRowIteratorE +_ZN9oceanbase7storage18ObSSTableRowGetterC2Ev +_ZN9oceanbase7storage21ObMicroBlockHandleMgrC1Ev +_ZN9oceanbase7storage21ObMicroBlockHandleMgrC2Ev +_ZN9oceanbase6common15ObFIFOAllocatorC1Em +_ZN9oceanbase6common15ObFIFOAllocatorC2Em +_ZN9oceanbase3sql20ObAggregateProcessor8add_calcERKNS_6common7ObDatumERNS1_8AggrCellERKNS0_10ObAggrInfoE +_ZN9oceanbase6common12ObDataBuffer5allocEl +_ZN9oceanbase3sql13ObExecContextD1Ev +_ZN9oceanbase3sql13ObExecContextD2Ev +_ZN9oceanbase3lib18SetDoNothingLocker6unlockEv +_ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql20ObTablePartitionInfoENS0_12ObIAllocatorEED2Ev +_ZN9oceanbase6common16ObFixedArrayImplISt4pairIlPNS_3sql13ObSqlArrayObjEENS0_12ObIAllocatorEED2Ev +_ZN9oceanbase11transaction16ObTxReadSnapshotD1Ev +_ZN9oceanbase11transaction16ObTxReadSnapshotD2Ev +_ZN9oceanbase3sql3dtl10ObDtlChSetD2Ev +_ZN9oceanbase12blocksstable15ObTmpFileIOInfoD1Ev +_ZN9oceanbase12blocksstable15ObTmpFileIOInfoD2Ev +_ZN9oceanbase6common11ObArrayImplIPKNS0_8ObIArrayIlEENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEED2Ev +_ZN9oceanbase6common10ObObjStoreIPNS_3sql16ObIDASTaskResultERNS0_12ObIAllocatorELb0EED2Ev +_ZN9oceanbase6common10ObObjStoreIPNS_3sql14ObDASBaseRtDefERNS0_12ObIAllocatorELb0EED2Ev +_ZN9oceanbase3sql17ObTaskExecutorCtxD1Ev +_ZN9oceanbase3sql17ObTaskExecutorCtxD2Ev +_ZN9oceanbase3sql16ObDASTaskFactoryD1Ev +_ZN9oceanbase3sql16ObDASTaskFactoryD2Ev +_ZN9oceanbase3sql3dtl16ObDtlChTotalInfoD2Ev +_ZN9oceanbase6common10ObObjStoreIPNS_3sql14ObDASExtraDataERNS0_12ObIAllocatorELb0EED2Ev +_ZN9oceanbase6common10ObObjStoreIPNS_3sql14ObDASBaseCtDefERNS0_12ObIAllocatorELb0EED2Ev +_ZN9oceanbase3sql15ObTableModifyOp7destroyEv +_ZN9oceanbase6common13ObSEArrayImplINS0_10ObNewRangeELl1ENS0_19ModulePageAllocatorELb0EED2Ev +_ZNK9oceanbase7storage13ObLSTxService10get_tx_ctxERKNS_11transaction9ObTransIDEbRPNS2_14ObPartTransCtxE +__dynamic_cast +_ZN9oceanbase3omt17ObTenantConfigMgr25get_tenant_config_versionEm +_ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE19est_partition_countEv +_ZN9oceanbase3sql18ObBasicSessionInfo18set_session_activeERKNS_6common8ObStringEllNS_7obmysql10ObMySQLCmdE +_ZN9oceanbase6common20ObDiagnoseTenantInfo23get_local_diagnose_infoEv +_ZN9oceanbase6common20ObActiveSessionGuard9setup_ashERNS0_17ActiveSessionStatE +_ZN9oceanbase11transaction12ObLSTxCtxMgr10get_tx_ctxERKNS0_9ObTransIDEbRPNS0_14ObPartTransCtxE +_ZZN9oceanbase12blocksstable22ObIndexBlockRowScanner12locate_rangeERKNS0_12ObDatumRangeEbbENK5$_773clEPKc.79c84811dffcee7ee47b268264023dc2 +_ZZN9oceanbase11transaction14ObTransService18get_read_store_ctxERKNS0_16ObTxReadSnapshotEblRNS_7storage10ObStoreCtxEENK5$_992clEPKc.93feb755617c21c32b229b78773c290c +_ZN9oceanbase3omt19ObTenantConfigGuardD1Ev +_ZN9oceanbase3omt19ObTenantConfigGuardD2Ev +_ZN9oceanbase3sql11ObResultSet5closeEv +_ZN9oceanbase3sql15ObExecuteResult5closeERNS0_13ObExecContextE +_ZN9oceanbase3sql18ObBasicSessionInfo33reset_tx_variable_if_remote_transERKNS0_13ObPhyPlanTypeE +_ZN9oceanbase11transaction14ObTxExecResult5resetEv +_ZN9oceanbase11transaction14ObTransService17sql_stmt_end_hookERKNS0_11ObXATransIDERNS0_8ObTxDescE +_ZN9oceanbase3sql10ObOperator5closeEv +_ZN9oceanbase3sql13ObTableScanOp11inner_closeEv +_ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql12ObIDASTaskOpEEEED2Ev +_ZN9oceanbase3sql8ObDASRef14close_all_taskEv +_ZN9oceanbase3sql11ObDASScanOp10release_opEv +_ZN9oceanbase3sql10ObInsRtDefD2Ev +_ZN9oceanbase7storage15ObAccessService16revert_scan_iterEPNS_6common16ObNewRowIteratorE +_ZN9oceanbase7storage19ObTableScanIterator5resetEv +_ZN9oceanbase7storage18ObStoreRowIteratorD1Ev +_ZN9oceanbase7storage18ObStoreRowIteratorD2Ev +_ZN9oceanbase7storage16ObTableStoreStat5resetEv +_ZN9oceanbase7storage14ObTabletHandle5resetEv +_ZN9oceanbase6common13ObTimeUtility15current_time_nsEv +_ZN9oceanbase7storage8ObNopPos7destroyEv +_ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl8ENS0_19ModulePageAllocatorELb0EED2Ev +_ZN9oceanbase6common13ObSEArrayImplINS_5share6schema9ObColDescELl32ENS0_19ModulePageAllocatorELb0EE7destroyEv +_ZN9oceanbase6common13ObSEArrayImplINS_5share6schema9ObColDescELl32ENS0_19ModulePageAllocatorELb0EED2Ev +_ZN9oceanbase7storage15ObLobDataReaderD1Ev +_ZN9oceanbase7storage15ObLobDataReaderD2Ev +_ZN9oceanbase7storage15ObAccessService15ObStoreCtxGuard5resetEv +_ZNK9oceanbase7storage13ObLSTxService16revert_store_ctxERNS0_10ObStoreCtxE +_ZN9oceanbase11transaction8ObTxPartD1Ev +_ZN9oceanbase11transaction8ObTxPartD2Ev +_ZN9oceanbase11transaction14ObTransService14revert_tx_ctx_EPNS_7storage4ObLSEPNS0_14ObPartTransCtxE +_ZN9oceanbase11transaction8ObTxDesc11update_partERNS0_8ObTxPartE +_ZN9oceanbase7storage20ObTableAccessContext5resetEv +_ZN9oceanbase6common13ObSEArrayImplIPNS_7storage18ObStoreRowIteratorELl8ENS0_19ModulePageAllocatorELb0EED2Ev +_ZN9oceanbase7storage18ObSSTableRowGetterD1Ev +_ZN9oceanbase7storage18ObSSTableRowGetterD2Ev +_ZN9oceanbase12blocksstable18ObMacroBlockReaderD1Ev +_ZN9oceanbase12blocksstable18ObMacroBlockReaderD2Ev +_ZN9oceanbase12blocksstable21ObMicroBlockRowGetterD2Ev +_ZN9oceanbase12blocksstable21ObMicroBlockGetReaderD2Ev +_ZN9oceanbase7storage15ObLobDataReader5resetEv +_ZN9oceanbase11transaction14ObTransService16revert_store_ctxERNS_7storage10ObStoreCtxE +_ZZN9oceanbase11transaction14ObTransService16revert_store_ctxERNS_7storage10ObStoreCtxEENK6$_1018clEPKc.93feb755617c21c32b229b78773c290c +_ZNK9oceanbase7storage13ObLSTxService13revert_tx_ctxEPNS_11transaction10ObTransCtxE +_ZZN9oceanbase3sql11ObResultSet19auto_end_plan_transERNS0_14ObPhysicalPlanEiRbENKUlPKcE3_clES6_ +_ZN9oceanbase7storage13ObSingleMergeD1Ev +_ZN9oceanbase7storage13ObSingleMergeD2Ev +_ZN9oceanbase6common12ObLatchMutexD1Ev +_ZN9oceanbase6common12ObLatchMutexD2Ev +_ZN9oceanbase6common18ObWrapperAllocator4freeEPv +_ZN9oceanbase12blocksstable10ObDatumRowD1Ev +_ZN9oceanbase12blocksstable10ObDatumRowD2Ev +_ZN9oceanbase6common8ObNewRow5resetEv +_ZN9oceanbase7storage20ObTableStoreIteratorD1Ev +_ZN9oceanbase7storage20ObTableStoreIteratorD2Ev +_ZN9oceanbase8memtable21ObMemtableGetIteratorD1Ev +_ZN9oceanbase8memtable21ObMemtableGetIteratorD2Ev +_ZN9oceanbase12blocksstable10ObDatumRow5resetEv +_ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl16ENS0_19ModulePageAllocatorELb0EED2Ev +_ZN9oceanbase7storage21ObIndexTreePrefetcherD2Ev +_ZN9oceanbase6common15ObFIFOAllocatorD1Ev +_ZN9oceanbase6common15ObFIFOAllocatorD2Ev +_ZN9oceanbase6common15ObFIFOAllocator5resetEv +_ZN9oceanbase3sql14ObPhysicalPlan16update_plan_statERKNS0_17ObAuditRecordDataEbbPKNS_6common8ObIArrayINS0_15ObTableRowCountEEE +_ZN9oceanbase6common13ObSEArrayImplINS_7storage20ObRow2ExprsProjector4ItemELl4ENS0_19ModulePageAllocatorELb0EED2Ev +_ZN9oceanbase7storage17ObLSTabletService10table_scanERNS0_19ObTableScanIteratorERNS0_16ObTableScanParamERPNS_6common16ObNewRowIteratorE +_ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv +_ZN9oceanbase6common14ObVersionRangeC1Ev +_ZN9oceanbase6common14ObVersionRangeC2Ev +_ZN9oceanbase7storage14ObTabletMapKeyD1Ev +_ZN9oceanbase7storage14ObTabletMapKeyD2Ev +_ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EE5reuseEv +_ZN9oceanbase7storage26ObTabletCreateDeleteHelper20check_and_get_tabletERKNS0_14ObTabletMapKeyERNS0_14ObTabletHandleEl +_ZN9oceanbase7storage14ObTabletHandleD1Ev +_ZN9oceanbase7storage14ObTabletHandleD2Ev +_ZN9oceanbase7storage14ObTabletHandleaSERKS1_ +_ZN9oceanbase7storage8ObTablet17get_tablet_statusERNS0_14ObTabletStatus6StatusE +_ZN9oceanbase7storage29ObTabletTxMultiSourceDataUnit5resetEv +_ZN9oceanbase7storage15ObTableHandleV2C1Ev +_ZN9oceanbase7storage15ObTableHandleV2C2Ev +_ZN9oceanbase7storage26ObTabletCreateDeleteHelper10get_tabletERKNS0_14ObTabletMapKeyERNS0_14ObTabletHandleE +_ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE7get_objEv +_ZN9oceanbase7storage18ObTenantMetaMemMgr10get_tabletERKNS0_18WashTabletPriorityERKNS0_14ObTabletMapKeyERNS0_14ObTabletHandleE +_ZN9oceanbase7storage21ObTabletBindingHelper23check_snapshot_readableERNS0_14ObTabletHandleEl +_ZN9oceanbase7storage19ObTabletBindingInfo5resetEv +_ZNK9oceanbase7storage19ObTabletMemtableMgr26get_multi_source_data_unitEPNS_8memtable22ObIMultiSourceDataUnitE +_ZN9oceanbase7storage15ObTableHandleV2D1Ev +_ZN9oceanbase7storage15ObTableHandleV2D2Ev +_ZN9oceanbase6common12TCRLockGuardD2Ev +_ZN9oceanbase7storage15ObTableHandleV2aSERKS1_ +_ZN9oceanbase8memtable10ObMemtable26get_multi_source_data_unitEPNS0_22ObIMultiSourceDataUnitEPNS_6common12ObIAllocatorE +_ZNK9oceanbase7storage19ObTabletBindingInfo4typeEv +_ZNK9oceanbase7storage29ObTabletTxMultiSourceDataUnit4typeEv +_ZN9oceanbase6common12TCRLockGuardC2ERKNS0_8TCRWLockE +_ZN9oceanbase8memtable17ObMultiSourceData26get_multi_source_data_unitEPNS0_22ObIMultiSourceDataUnitEPNS_6common12ObIAllocatorE +_ZN9oceanbase7storage16ObMetaPointerMapINS0_14ObTabletMapKeyENS0_8ObTabletEE12get_meta_objERKS2_RNS_6common12ObIAllocatorERNS0_14ObMetaObjGuardIS3_EE +_ZN9oceanbase6common12ObBucketLock6unlockEm +_ZN9oceanbase7storage19ObMetaPointerHandleINS0_14ObTabletMapKeyENS0_8ObTabletEED2Ev +_ZN9oceanbase7storage19ObTableScanIterator4initERNS0_16ObTableScanParamERKNS0_14ObTabletHandleE +_ZNK9oceanbase7storage18ObSimpleRowsMergerINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpEE9is_initedEv +_ZNK9oceanbase8memtable15ObMvccAccessCtx8is_validEv +_ZN9oceanbase7storage13ObSingleMergeC1Ev +_ZN9oceanbase7storage13ObSingleMergeC2Ev +_ZN9oceanbase7storage21ObFuseRowCacheFetcher4initERKNS_6common10ObTabletIDEPKNS0_15ObTableReadInfoEl +_ZN9oceanbase7storage15ObMultipleMergeC2Ev +_ZN9oceanbase12blocksstable10ObDatumRowC1Ev +_ZN9oceanbase12blocksstable10ObDatumRowC2Ev +_ZN9oceanbase7storage20ObTableStoreIteratorC1Eb +_ZN9oceanbase7storage20ObTableStoreIteratorC2Eb +_ZN9oceanbase7storage15ObLobDataReaderC1Ev +_ZN9oceanbase7storage15ObLobDataReaderC2Ev +_ZN9oceanbase7storage18ObTableAccessParam4initERKNS0_16ObTableScanParamERKNS0_14ObTabletHandleE +_ZN9oceanbase7storage20ObTableAccessContext4initERNS0_16ObTableScanParamERNS0_10ObStoreCtxERKNS_6common14ObVersionRangeE +_ZN9oceanbase7storage15ObLobDataReader5reuseEv +_ZN9oceanbase6common12ObBucketLock6rdlockEm +_ZN9oceanbase8memtable12ObMvccEngine3getERNS0_15ObMvccAccessCtxERKNS_6common11ObQueryFlagEbPKNS0_13ObMemtableKeyEPS8_RNS0_19ObMvccValueIteratorE +_ZZNK9oceanbase3sql8ObOpSpec25create_operator_recursiveERNS0_13ObExecContextERPNS0_10ObOperatorEENK5$_117clEPKc.68271ef948b9e29c783f97102b0c767d +_ZN9oceanbase3sql16ObSQLSessionInfo21set_show_warnings_bufEi +_ZN9oceanbase7storage18ObSSTableRowGetter18inner_get_next_rowERPKNS_12blocksstable10ObDatumRowE +_ZN9oceanbase12blocksstable23ObIMicroBlockRowFetcherC1Ev +_ZN9oceanbase12blocksstable23ObIMicroBlockRowFetcherC2Ev +_ZN9oceanbase7storage18ObSSTableRowGetter9fetch_rowERNS0_19ObSSTableReadHandleERPKNS_12blocksstable10ObDatumRowE +_ZNK9oceanbase12blocksstable9ObSSTable23get_upper_trans_versionEv +_ZN9oceanbase12blocksstable21ObMicroBlockRowGetter7get_rowERNS_7storage19ObSSTableReadHandleERPKNS0_10ObDatumRowERNS0_18ObMacroBlockReaderE +_ZN9oceanbase12blocksstable21ObMicroBlockRowGetter4initERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextEPKNS0_9ObSSTableE +_ZN9oceanbase7storage19ObSSTableRowScanner19open_cur_data_blockERNS0_19ObSSTableReadHandleE +_ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScanner5reuseEv +_ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScanner4openERKNS0_12MacroBlockIdERKNS0_16ObMicroBlockDataEbb +_ZThn320_N9oceanbase12blocksstable18ObMicroBlockReader4initERKNS0_16ObMicroBlockDataERKNS_7storage15ObTableReadInfoE +_ZNK9oceanbase12blocksstable18ObMicroBlockHeader8is_validEv +_ZN9oceanbase12blocksstable23ObIMicroBlockRowScanner4openERKNS0_12MacroBlockIdERKNS0_16ObMicroBlockDataEbb +_ZN9oceanbase12blocksstable23ObIMicroBlockRowScanner16locate_range_posEbbRlS2_ +_ZThn320_N9oceanbase12blocksstable18ObMicroBlockReader10find_boundERKNS0_13ObDatumRowkeyEblRlRb +_ZThn320_N9oceanbase12blocksstable18ObMicroBlockReader10find_boundERKNS0_12ObDatumRangeElRlRbS5_S5_ +_ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScanner4initERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextEPKNS0_9ObSSTableE +_ZN9oceanbase12blocksstable19ObIMicroBlockReader12locate_rangeERKNS0_12ObDatumRangeEbbRlS5_b +_ZN9oceanbase12blocksstable18ObMicroBlockReader5resetEv +_ZN9oceanbase6common16ObArenaAllocator5reuseEv +_ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScannerC2ERNS_6common12ObIAllocatorE +_ZN9oceanbase12blocksstable23ObIMicroBlockRowScannerC1ERNS_6common12ObIAllocatorE +_ZN9oceanbase12blocksstable23ObIMicroBlockRowScannerC2ERNS_6common12ObIAllocatorE +_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher15check_blockscanERb +_ZN9oceanbase12blocksstable18ObMicroBlockReader4initERKNS0_16ObMicroBlockDataERKNS_7storage15ObTableReadInfoE +_ZN9oceanbase12blocksstable23ObIMicroBlockRowScanner4initERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextEPKNS0_9ObSSTableE +_ZN9oceanbase3lib9ObjectMgr10free_blockEPNS0_6ABlockE +_ZN9oceanbase5trace7ObTrace7set_tagImJ9ObTagTypePcEEEvS3_RKT_DpT0_ +_ZN9oceanbase3sql8ObPCVSet19inner_get_cache_objERNS0_14ObILibCacheCtxEPNS0_14ObILibCacheKeyERPNS0_17ObILibCacheObjectE +_ZNK9oceanbase3sql18ObBasicSessionInfo25get_capture_plan_baselineERb +_ZN9oceanbase3sql16ObPlanCacheValue21check_not_param_valueERKNS0_18ObFastParserResultERKNS_6common8ObIArrayINS0_12NotParamInfoEEERb +_ZN9oceanbase3sql16ObPlanCacheValue27check_value_version_for_getEPNS_5share6schema19ObSchemaGetterGuardEbRKNS_6common8ObIArrayINS0_12PCVSchemaObjEEEmRb +_ZN9oceanbase3sql10ObSQLUtils13is_nested_sqlEPNS0_13ObExecContextE +_ZN9oceanbase3sql16ObPlanCacheValue11choose_planERNS0_14ObPlanCacheCtxERKNS_6common8ObIArrayINS0_12PCVSchemaObjEEERPNS0_17ObPlanCacheObjectE +_ZN9oceanbase6common7ObDatum22get_obj_datum_map_typeENS0_9ObObjTypeE +_ZN9oceanbase6common13ObSEArrayImplIPcLl1ENS0_19ModulePageAllocatorELb1EE9push_backERKS2_ +_ZNK9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE2atEl +_ZN9oceanbase6common10ObObjParam5resetEv +_ZNK9oceanbase3sql9ObPlanSet22match_param_bool_valueERKNS0_11ObParamInfoERKNS_6common10ObObjParamERb +_ZN9oceanbase6common7ObDatum17get_reserved_sizeENS0_17ObObjDatumMapTypeE +_ZN9oceanbase3sql10ObSQLUtils22is_oracle_empty_stringERKNS_6common10ObObjParamE +_ZN9oceanbase3sql9ObPlanSet17match_params_infoEPKNS_6common9Ob2DArrayINS2_10ObObjParamELi2079744ENS2_18ObWrapperAllocatorELb0ENS2_9ObSEArrayIPS4_Ll1ES5_Lb0EEEEERNS0_14ObPlanCacheCtxElRb +_ZN9oceanbase6common16ObClockGenerator8getClockEv +_ZN9oceanbase6common9Ob2DArrayINS_3sql11ObParamInfoELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS3_Ll64ES4_Lb0EEEE2atEl +_ZN9oceanbase3sql17ObPhysicalPlanCtx12set_cur_timeERKlRKNS0_16ObSQLSessionInfoE +_ZN9oceanbase3sql12ObSqlPlanSet15get_plan_normalERNS0_14ObPlanCacheCtxERPNS0_14ObPhysicalPlanE +_ZN9oceanbase5share17ObLSRestoreStatusaSERKNS1_6StatusE +_ZN9oceanbase5share19ObLSReplicaLocation5resetEv +_ZN9oceanbase3sql16ObCandiTabletLocD1Ev +_ZN9oceanbase3sql16ObCandiTabletLocD2Ev +_ZN9oceanbase3sql15ObCandiTableLoc22set_table_location_keyEmm +_ZNK9oceanbase5share19ObLSReplicaLocation8is_validEv +_ZN9oceanbase6common20check_stack_overflowERblPl +_ZN9oceanbase3sql9ObLogPlan15select_replicasERNS0_13ObExecContextERKNS_6common8ObIArrayIPKNS0_15ObTableLocationEEERKNS4_6ObAddrERNS5_IPNS0_15ObCandiTableLocEEE +_ZN9oceanbase6common16is_strong_leaderENS0_6ObRoleE +_ZN9oceanbase3sql15ObCandiTableLocD1Ev +_ZN9oceanbase3sql15ObCandiTableLocD2Ev +_ZN9oceanbase3sql14ObOptTabletLocD1Ev +_ZN9oceanbase3sql14ObOptTabletLocD2Ev +_ZN9oceanbase6common13ObSEArrayImplIlLl2ENS0_19ModulePageAllocatorELb1EED2Ev +_ZN9oceanbase3sql19ObPhyLocationGetter17get_phy_locationsERKNS_6common8ObIArrayINS0_15ObTableLocationEEERKNS0_14ObPlanCacheCtxERNS3_INS0_15ObCandiTableLocEEERb +_ZN9oceanbase6common13ObSEArrayImplIPNS_3sql15ObCandiTableLocELl2ENS0_19ModulePageAllocatorELb0EED2Ev +_ZN9oceanbase3sql15ObCandiTableLocC1Ev +_ZN9oceanbase3sql15ObCandiTableLocC2Ev +_ZN9oceanbase6common13ObSEArrayImplImLl8ENS0_19ModulePageAllocatorELb0EED2Ev +_ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl8ENS0_19ModulePageAllocatorELb0EED2Ev +_ZN9oceanbase6common13ObSEArrayImplINS_3sql16ObCandiTabletLocELl2ENS0_19ModulePageAllocatorELb1EE5resetEv +_ZN9oceanbase6common13ObSEArrayImplIPKNS_3sql15ObTableLocationELl2ENS0_19ModulePageAllocatorELb0EED2Ev +_ZN9oceanbase3sql9ObLogPlan15select_replicasERNS0_13ObExecContextEbRKNS_6common6ObAddrERNS4_8ObIArrayIPNS0_15ObCandiTableLocEEE +_ZN9oceanbase5share19ObLSReplicaLocationC1Ev +_ZN9oceanbase5share19ObLSReplicaLocationC2Ev +_ZNK9oceanbase3sql18ObBasicSessionInfo16get_sys_variableENS_5share17ObSysVarClassTypeERl +_ZNK9oceanbase5share13ObBasicSysVar9get_valueEv +_ZN9oceanbase5share15ObSysVarFactory22calc_sys_var_store_idxENS0_17ObSysVarClassTypeERl +_ZNK9oceanbase3sql15ObTableLocation32calculate_candi_tablet_locationsERNS0_13ObExecContextERKNS_6common9Ob2DArrayINS4_10ObObjParamELi2079744ENS4_18ObWrapperAllocatorELb0ENS4_9ObSEArrayIPS6_Ll1ES7_Lb0EEEEERNS4_8ObIArrayINS0_16ObCandiTabletLocEEERKNS4_20ObDataTypeCastParamsEb +_ZN9oceanbase5share12ObLSLocationC1Ev +_ZN9oceanbase5share12ObLSLocationC2Ev +_ZN9oceanbase6common13ObSEArrayImplINS_3sql16ObCandiTabletLocELl2ENS0_19ModulePageAllocatorELb1EE16prepare_allocateEl +_ZN9oceanbase5share12ObLSLocationD1Ev +_ZN9oceanbase5share12ObLSLocationD2Ev +_ZN9oceanbase5share12ObLSLocation5resetEv +_ZN9oceanbase3sql16ObCandiTabletLocC1Ev +_ZN9oceanbase3sql16ObCandiTabletLocC2Ev +_ZN9oceanbase3sql19ObDASLocationRouter3getERKNS0_17ObDASTableLocMetaERKNS_6common10ObTabletIDERNS_5share12ObLSLocationE +_ZN9oceanbase5share15ObTabletLSCache6assignERKS1_ +_ZN9oceanbase6common15ObKVGlobalCache12get_instanceEv +_ZN9oceanbase3sql16ObCandiTabletLoc39set_part_loc_with_only_readable_replicaERKmS3_RKNS_6common10ObTabletIDERKlRKNS_5share12ObLSLocationERKNS4_8ObIArrayINS4_6ObAddrEEE +_ZZNK9oceanbase3sql15ObTableLocation20get_tablet_locationsERNS0_8ObDASCtxEPNS0_16ObSQLSessionInfoEmRKNS_6common8ObIArrayINS6_10ObTabletIDEEERKNS7_ImEERNS7_INS0_16ObCandiTabletLocEEEbbENK6$_1111clEPKc.c0f3ebb58adf60d04e27c69da5b90c06 +_ZN9oceanbase5share17ObLocationService3getEmRKNS_6common10ObTabletIDElRbRNS0_6ObLSIDE +_ZN9oceanbase3sql16ObPlanCacheValue15resolver_paramsERNS0_14ObPlanCacheCtxENS0_4stmt8StmtTypeERKNS_6common8ObIArrayINS6_13ObCharsetTypeEEERKNS6_8ObBitSetILl256ENS6_19ModulePageAllocatorELb0EEESG_SG_RNS7_IPNS0_9ObPCParamEEEPNS6_9Ob2DArrayINS6_10ObObjParamELi2079744ENS6_18ObWrapperAllocatorELb0ENS6_9ObSEArrayIPSM_Ll1ESN_Lb0EEEEE +_ZZN9oceanbase3sql19ObPhyLocationGetter17get_phy_locationsERKNS_6common8ObIArrayINS0_15ObTableLocationEEERKNS0_14ObPlanCacheCtxERNS3_INS0_15ObCandiTableLocEEERbENK5$_355clEPKc.08a2b9b0d59ff83413633eb11fd88a2d +_ZN9oceanbase3sql8ObDASCtx19add_candi_table_locERKNS0_17ObDASTableLocMetaERKNS0_15ObCandiTableLocE +_ZN9oceanbase3sql17ObPhysicalPlanCtx22init_datum_param_storeEv +_ZN9oceanbase3sql15ObDatumObjParam13from_objparamERKNS_6common10ObObjParamEPNS2_12ObIAllocatorE +_ZNK9oceanbase3sql15ObTableLocation20calculate_tablet_idsERNS0_13ObExecContextERKNS_6common9Ob2DArrayINS4_10ObObjParamELi2079744ENS4_18ObWrapperAllocatorELb0ENS4_9ObSEArrayIPS6_Ll1ES7_Lb0EEEEERNS4_8ObIArrayINS4_10ObTabletIDEEERNSE_ImEERKNS4_20ObDataTypeCastParamsE +_ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl8ENS0_19ModulePageAllocatorELb0EE9push_backERKS2_ +_ZN9oceanbase6common13ObSEArrayImplImLl8ENS0_19ModulePageAllocatorELb0EE9push_backERKm +_ZN9oceanbase6common13ObSEArrayImplImLl4ENS0_19ModulePageAllocatorELb0EED2Ev +_ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl4ENS0_19ModulePageAllocatorELb0EED2Ev +_ZN9oceanbase3sql17ObDASTabletMapper27get_non_partition_tablet_idERNS_6common8ObIArrayINS2_10ObTabletIDEEERNS3_ImEE +_ZNK9oceanbase5share6schema21ObSimpleTableSchemaV212get_table_idEv +_ZNK9oceanbase5share6schema21ObSimpleTableSchemaV214get_part_levelEv +_ZNK9oceanbase5share6schema21ObSimpleTableSchemaV213get_tenant_idEv +_ZZNK9oceanbase5share6schema17ObPartitionSchema24get_tablet_and_object_idERNS_6common10ObTabletIDERmENK5$_330clEPKc.238ab44b22ba0c710eddc3a8b49e8eb3 +_ZN9oceanbase3sql8ObDASCtx21get_das_tablet_mapperEmRNS0_17ObDASTabletMapperEPKNS_6common12ObIArrayWrapImEE +_ZN9oceanbase5share6schema19ObSchemaGetterGuard16get_table_schemaEmmRPKNS1_13ObTableSchemaE +_ZN9oceanbase5share6schema19ObSchemaGetterGuard10get_schemaINS1_13ObTableSchemaEEEiNS1_12ObSchemaTypeEmmRPKT_l +_ZN9oceanbase5share6schema16is_normal_schemaENS1_12ObSchemaTypeE +_ZZN9oceanbase5share6schema19ObSchemaGetterGuard16get_table_schemaEmmRPKNS1_13ObTableSchemaEENK5$_279clEPKc.bfa63f0f3456173f564c7cf65584fc48 +_ZZN9oceanbase5share6schema19ObSchemaGetterGuard20get_from_local_cacheINS1_13ObTableSchemaEEEiNS1_12ObSchemaTypeEmmRPKT_ENKUlPKcE3_clESB_ +_ZN9oceanbase5share17ObLocationService3getElmRKNS0_6ObLSIDElRbRNS0_12ObLSLocationE +_ZSt11_Hash_bytesPKvmm +_ZN9oceanbase5share17ObLSRestoreStatusaSERKS1_ +_ZN9oceanbase5share19ObLSLocationService14get_from_cacheElmRKNS0_6ObLSIDERNS0_12ObLSLocationE +_ZZN9oceanbase5share19ObLSLocationService14get_from_cacheElmRKNS0_6ObLSIDERNS0_12ObLSLocationEENK5$_289clEPKc.db28c62327e16d3ae5c8a88acfd53bbb +_ZN9oceanbase5share16ObServerLocalityD1Ev +_ZN9oceanbase5share16ObServerLocalityD2Ev +_ZNK9oceanbase3sql13ObExecContext8get_addrEv +_ZZN9oceanbase3sql8ObDASCtx19add_candi_table_locERKNS0_17ObDASTableLocMetaERKNS0_15ObCandiTableLocEENK4$_67clEPKc.45c27dd3dc8b42ec4ef71c6f367bd924 +_ZN9oceanbase3sql8ObDASCtx19extended_tablet_locERNS0_13ObDASTableLocERKNS0_16ObCandiTabletLocERPNS0_14ObDASTabletLocE +_ZNK9oceanbase3sql16ObCandiTabletLoc20get_selected_replicaERNS_5share19ObLSReplicaLocationE +_ZN9oceanbase3sql8ObDASCtx17check_same_serverEPKNS0_14ObDASTabletLocE +_ZNK9oceanbase3sql12ObQueryRange17get_tablet_rangesERNS_6common12ObIAllocatorERNS0_13ObExecContextERNS2_9ObSEArrayIPNS2_10ObNewRangeELl1ENS2_19ModulePageAllocatorELb0EEERNS7_IbLl2ESA_Lb1EEERKNS2_20ObDataTypeCastParamsE +_ZNK9oceanbase3sql12ObQueryRange16get_result_valueERNS_6common5ObObjERNS0_13ObExecContextEPNS2_12ObIAllocatorE +_ZN9oceanbase3sql13ObExecContext11init_phy_opEm +_ZZN9oceanbase7storage13ObSingleMerge18inner_get_next_rowERNS_12blocksstable10ObDatumRowEENK5$_451clEPKc.60e5f1555e1608e51e89c573dc1497ed +_ZN9oceanbase6common15ObKVGlobalCache3putINS0_18ObKVMemBlockHandleEEEiRNS0_15ObIKVCacheStoreIT_EElRKNS0_13ObIKVCacheKeyERKNS0_15ObIKVCacheValueERPSC_RPS3_b +_ZNK9oceanbase12blocksstable17ObFuseRowCacheKey4sizeEv +_ZNK9oceanbase12blocksstable19ObFuseRowCacheValue4sizeEv +_ZN9oceanbase6common15ObIKVCacheStoreINS0_18ObKVMemBlockHandleEE5storeERNS0_13ObKVCacheInstERKNS0_13ObIKVCacheKeyERKNS0_15ObIKVCacheValueERPNS0_13ObKVCachePairERPS2_NS0_15ObKVCachePolicyE +_ZNK9oceanbase6common14ObKVCacheStore14get_block_sizeEv +_ZN9oceanbase6common14ObKVCacheStore11get_curr_mbERNS0_13ObKVCacheInstENS0_15ObKVCachePolicyE +_ZNK9oceanbase12blocksstable19ObFuseRowCacheValue9deep_copyEPclRPNS_6common15ObIKVCacheValueE +_ZN9oceanbase6common14ObKVCacheStore14add_handle_refEPNS0_18ObKVMemBlockHandleE +_ZN9oceanbase6common17ObAtomicReference21check_and_inc_ref_cntEv +_ZNK9oceanbase12blocksstable17ObFuseRowCacheKey9deep_copyEPclRPNS_6common13ObIKVCacheKeyE +_ZN9oceanbase6common12ObKVCacheMap3putERNS0_13ObKVCacheInstERKNS0_13ObIKVCacheKeyEPKNS0_13ObKVCachePairEPNS0_18ObKVMemBlockHandleEb +_ZN9oceanbase6common11upper_alignEll +_ZN9oceanbase6common13ObVSliceAlloc5allocEl +_ZZN9oceanbase5share17ObTabletLSService14get_from_cacheEmRKNS_6common10ObTabletIDERNS0_15ObTabletLSCacheEENK5$_358clEPKc.db28c62327e16d3ae5c8a88acfd53bbb +_ZN9oceanbase7storage19ObTableScanIterator9open_iterEv +_ZNK9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE8is_validEv +_ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl16ENS0_19ModulePageAllocatorELb0EE5reuseEv +_ZN9oceanbase7storage18ObStoreRowIterator4initERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextEPNS0_8ObITableEPKv +_ZN9oceanbase7storage8ObNopPos4initERNS_6common12ObIAllocatorEl +_ZN9oceanbase6common18ObWrapperAllocator5allocElRKNS_3lib9ObMemAttrE +_ZN9oceanbase7storage21ObFuseRowCacheFetcherC1Ev +_ZN9oceanbase7storage21ObFuseRowCacheFetcherC2Ev +_ZZN9oceanbase7storage15ObMultipleMerge4initERKNS0_18ObTableAccessParamERNS0_20ObTableAccessContextERKNS0_15ObGetTableParamEENK5$_483clEPKc.60e5f1555e1608e51e89c573dc1497ed +_ZN9oceanbase12blocksstable9ObSSTable4scanERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS0_12ObDatumRangeERPNS2_18ObStoreRowIteratorE +_ZN9oceanbase7storage21ObIndexTreePrefetcher15single_prefetchERNS0_19ObSSTableReadHandleE +_ZN9oceanbase7storage15ObMultipleMerge4initERKNS0_18ObTableAccessParamERNS0_20ObTableAccessContextERKNS0_15ObGetTableParamE +_ZNK9oceanbase7storage8ObITable10is_sstableEv +_ZN9oceanbase8memtable10ObMemtable8is_emptyEv +_ZN9oceanbase7storage20ObTableStoreIterator5resetEv +_ZN9oceanbase7storage15ObMultipleMerge28prepare_tables_from_iteratorERNS0_20ObTableStoreIteratorEPKNS_6common10SampleInfoE +_ZNK9oceanbase8memtable10ObMemtable16get_start_log_tsEv +_ZN9oceanbase7storage20ObTableStoreIterator8get_nextERPNS0_8ObITableE +_ZN9oceanbase12blocksstable10ObDatumRow4initERNS_6common12ObIAllocatorEl +_ZN9oceanbase7storage20ObTableStoreIterator6resumeEv +_ZN9oceanbase7storage8ObTablet15get_read_tablesElRNS0_21ObTabletTableIteratorEb +_ZN9oceanbase7storage8ObTablet15get_read_tablesElRNS0_20ObTableStoreIteratorEb +_ZNK9oceanbase7storage8ObITable16is_major_sstableEv +_ZNK9oceanbase7storage8ObITable16is_data_memtableEv +_ZNK9oceanbase7storage8ObITable20get_snapshot_versionEv +_ZN9oceanbase7storage18ObTabletTableStore15get_read_tablesElRNS0_20ObTableStoreIteratorEb +_ZNK9oceanbase8memtable10ObMemtable14get_end_log_tsEv +_ZN9oceanbase7storage20ObTableStoreIterator10add_tablesERNS0_15ObMemtableArrayEl +_ZN9oceanbase7storage20ObTableStoreIterator10add_tablesEPPNS0_8ObITableEl +_ZN9oceanbase7storage20ObRow2ExprsProjector4initERKNS_6common8ObIArrayIPNS_3sql6ObExprEEERNS4_18ObPushdownOperatorERKNS3_IiEE +_ZNK9oceanbase7storage15ObMemtableArray4findEllRPNS0_8ObITableERl +_ZN9oceanbase7storage21ObIndexTreePrefetcher20lookup_in_index_treeERNS0_19ObSSTableReadHandleE +_ZN9oceanbase12blocksstable22ObIndexBlockRowScanner8get_nextERNS0_16ObMicroIndexInfoE +_ZN9oceanbase12blocksstable22ObIndexBlockRowScanner4openERKNS0_12MacroBlockIdERKNS0_16ObMicroBlockDataERKNS0_13ObDatumRowkeyEs +_ZN9oceanbase12blocksstable22ObIndexBlockRowScanner10locate_keyERKNS0_13ObDatumRowkeyE +_ZN9oceanbase7storage21ObIndexTreePrefetcher19prefetch_block_dataERNS_12blocksstable16ObMicroIndexInfoERNS0_22ObMicroBlockDataHandleEb +_ZN9oceanbase12blocksstable12MacroBlockIdC1ERKS1_ +_ZN9oceanbase12blocksstable12MacroBlockIdC2ERKS1_ +_ZN9oceanbase7storage21ObMicroBlockHandleMgr22get_micro_block_handleEmNS_12blocksstable12MacroBlockIdERKNS2_21ObIndexBlockRowHeaderEbRNS0_22ObMicroBlockDataHandleE +_ZThn24_N9oceanbase12blocksstable21ObDataMicroBlockCache9get_cacheERPNS_6common10ObIKVCacheINS0_20ObMicroBlockCacheKeyENS0_22ObMicroBlockCacheValueEEE +_ZN9oceanbase12blocksstable19ObStorageCacheSuite12get_instanceEv +_ZNK9oceanbase12blocksstable21ObIndexBlockRowHeader19fill_micro_des_metaEbRNS0_19ObMicroBlockDesMetaE +_ZN9oceanbase12blocksstable18ObIMicroBlockCache15get_cache_blockEmNS0_12MacroBlockIdEllRNS0_24ObMicroBlockBufferHandleE +_ZN9oceanbase6common9ObKVCacheINS_12blocksstable20ObMicroBlockCacheKeyENS2_22ObMicroBlockCacheValueEE3getERKS3_RPKS4_RNS0_15ObKVCacheHandleE +_ZN9oceanbase6common15ObKVGlobalCache3getElRKNS0_13ObIKVCacheKeyERPKNS0_15ObIKVCacheValueERPNS0_18ObKVMemBlockHandleE +_ZNK9oceanbase6common13ObIKVCacheKey4hashERm +_ZNK9oceanbase12blocksstable20ObMicroBlockCacheKey4hashEv +_ZN9oceanbase6common24GlobalHazardVersionGuardD1Ev +_ZN9oceanbase6common24GlobalHazardVersionGuardD2Ev +_ZN9oceanbase6common12ObKVCacheMap3getElRKNS0_13ObIKVCacheKeyERPKNS0_15ObIKVCacheValueERPNS0_18ObKVMemBlockHandleE +_ZN9oceanbase6common17ObAtomicReference29check_seq_num_and_inc_ref_cntEj +_ZNK9oceanbase12blocksstable17ObFuseRowCacheKey4hashERm +_ZN9oceanbase6common11DefHashFuncINS0_19DatumHashCalculatorILNS0_9ObObjTypeE4ENS0_12ObMurmurHashEEEE4hashERKNS0_7ObDatumEm +_ZNK9oceanbase12blocksstable13ObDatumRowkey10murmurhashEmRKNS0_19ObStorageDatumUtilsERm +_ZThn24_N9oceanbase12blocksstable22ObIndexMicroBlockCache9get_cacheERPNS_6common10ObIKVCacheINS0_20ObMicroBlockCacheKeyENS0_22ObMicroBlockCacheValueEEE +_ZNK9oceanbase5share18ObTabletLSCacheKey4hashEv +_ZNK9oceanbase6common13ObIKVCacheKey5equalERKS1_Rb +_ZNK9oceanbase12blocksstable20ObMicroBlockCacheKeyeqERKNS_6common13ObIKVCacheKeyE +_ZN9oceanbase6common14ObKVCacheStore14add_handle_refEPNS0_18ObKVMemBlockHandleEj +_ZNK9oceanbase12blocksstable21ObBloomFilterCacheKey4hashEv +_ZNK9oceanbase5share18ObTabletLSCacheKeyeqERKNS_6common13ObIKVCacheKeyE +_ZN9oceanbase6common19GlobalHazardVersion7releaseEv +_ZNK9oceanbase12blocksstable17ObFuseRowCacheKey5equalERKNS_6common13ObIKVCacheKeyERb +_ZN9oceanbase7storage21ObIndexTreePrefetcher18check_bloom_filterERKNS_12blocksstable16ObMicroIndexInfoERNS0_19ObSSTableReadHandleE +_ZN9oceanbase12blocksstable22ObIndexBlockRowScanner17read_curr_idx_rowEv +_ZNK9oceanbase12blocksstable22ObIndexBlockDataHeader14get_index_dataElRPKc +_ZN9oceanbase12blocksstable21ObIndexBlockRowParser4initEPKc +_ZN9oceanbase7storage31ObSSTableMultiVersionRowScanner10inner_openERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextEPNS0_8ObITableEPKv +_ZNK9oceanbase12blocksstable13ObDatumRowkey23to_multi_version_rowkeyEbRNS_6common12ObIAllocatorERS1_ +_ZN9oceanbase7storage19ObSSTableRowScanner10inner_openERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextEPNS0_8ObITableEPKv +_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher4initEiRNS_12blocksstable9ObSSTableERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextEPKv +_ZN9oceanbase12blocksstable22ObIndexBlockRowScanner4initERKNS_6common8ObIArrayIiEERKNS3_INS_5share6schema16ObColumnSchemaV2EEEPKNS_7storage15ObTableReadInfoERNS2_12ObIAllocatorERKNS2_11ObQueryFlagE +_ZN9oceanbase7storage21ObMicroBlockHandleMgr4initEbbRNS_6common12ObIAllocatorE +_ZN9oceanbase6common15ObFIFOAllocator4initEPNS0_12ObIAllocatorElRKNS_3lib9ObMemAttrElll +_ZNK9oceanbase12blocksstable13ObDatumRowkey5equalERKS1_RKNS0_19ObStorageDatumUtilsERb +_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher15init_basic_infoEiRNS_12blocksstable9ObSSTableERNS0_20ObTableAccessContextEPKvRb +_ZZN9oceanbase12blocksstable22ObIndexBlockRowScanner10locate_keyERKNS0_13ObDatumRowkeyEENK5$_767clEPKc.79c84811dffcee7ee47b268264023dc2 +_ZN9oceanbase7storage11ObHandleMgrINS0_22ObMicroBlockDataHandleENS_12blocksstable20ObMicroBlockCacheKeyELl64EE4initEbbRNS_6common12ObIAllocatorE +_ZN9oceanbase7storage18ObSSTableRowGetter10inner_openERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextEPNS0_8ObITableEPKv +_ZN9oceanbase7storage21ObIndexTreePrefetcher4initEiRNS_12blocksstable9ObSSTableERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextEPKv +_ZN9oceanbase8memtable22ObMemtableScanIteratorC1Ev +_ZN9oceanbase8memtable22ObMemtableScanIteratorC2Ev +_ZN9oceanbase6common12ObKVCacheMap18internal_data_moveERPNS1_4NodeES4_S4_NS0_15ObKVCachePolicyE +_ZN9oceanbase12blocksstable18ObBloomFilterCache11may_containEmRKNS0_12MacroBlockIdERKNS0_13ObDatumRowkeyERKNS0_19ObStorageDatumUtilsERb +_ZN9oceanbase6common9ObKVCacheINS_12blocksstable21ObBloomFilterCacheKeyENS2_23ObBloomFilterCacheValueEE3getERKS3_RPKS4_RNS0_15ObKVCacheHandleE +_ZN9oceanbase7storage23ObReallocatedFixedArrayINS0_19ObSSTableReadHandleEE18prepare_reallocateEl +_ZN9oceanbase6common16ObFixedArrayImplINS_7storage19ObSSTableReadHandleENS0_12ObIAllocatorEE16prepare_allocateEl +_ZN9oceanbase7storage22ObMicroBlockDataHandle20get_index_block_dataERKNS0_15ObTableReadInfoERNS_12blocksstable16ObMicroBlockDataE +_ZNK9oceanbase12blocksstable23ObBloomFilterCacheValue11may_containEjRb +_ZN9oceanbase3sql13ObTableScanOp26report_ddl_column_checksumEv +_ZN9oceanbase3sql16ObHashDistinctOp7destroyEv +_ZN9oceanbase8observer11ObSrvXlator7releaseEPNS_3rpc5frame14ObReqProcessorE +_ZN9oceanbase8observer23worker_allocator_deleteINS_3rpc5frame14ObReqProcessorEEEvRPT_ +_ZN9oceanbase6common16ObFixedArrayImplIlNS0_12ObIAllocatorEED2Ev +_ZN9oceanbase6common16ObFixedArrayImplIPNS0_9ObSEArrayIlLl4ENS0_19ModulePageAllocatorELb1EEENS0_12ObIAllocatorEED2Ev +_ZN9oceanbase6common13ObSEArrayImplIPNS_7obmysql12Obp20EncoderELl4ENS0_19ModulePageAllocatorELb0EED2Ev +_ZN9oceanbase6common16ObFixedArrayImplINS_3sql18LocationConstraintENS0_12ObIAllocatorEED2Ev +_ZN9oceanbase6common16ObFixedArrayImplINS0_8ObStringENS0_12ObIAllocatorEED2Ev +_ZN9oceanbase6common13ObSEArrayImplINS_7obmysql10ObCommonKVINS0_5ObObjES4_EELl4ENS0_19ModulePageAllocatorELb0EED2Ev +_ZN9oceanbase8observer9ObMPQueryD1Ev +_ZN9oceanbase8observer9ObMPQueryD2Ev +_ZN9oceanbase3sql5ObSql14after_get_planERNS0_14ObPlanCacheCtxERNS0_16ObSQLSessionInfoEPNS0_14ObPhysicalPlanEbPKNS_6common9Ob2DArrayINS8_10ObObjParamELi2079744ENS8_18ObWrapperAllocatorELb0ENS8_9ObSEArrayIPSA_Ll1ESB_Lb0EEEEE +_ZN9oceanbase3sql18ObBasicSessionInfo16set_cur_phy_planEPNS0_14ObPhysicalPlanE +_ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EED2Ev +_ZN9oceanbase6common13ObSEArrayImplImLl2ENS0_19ModulePageAllocatorELb0EED2Ev +_ZN9oceanbase3sql8ObDASCtx4initERKNS0_14ObPhysicalPlanERNS0_13ObExecContextE +_ZZN9oceanbase3sql8ObDASCtx4initERKNS0_14ObPhysicalPlanERNS0_13ObExecContextEENK4$_38clEPKc.45c27dd3dc8b42ec4ef71c6f367bd924 +_ZN9oceanbase3sql11ObResultSet8end_stmtEb +_ZN9oceanbase3sql18ObBasicSessionInfo12set_end_stmtEv +_ZZN9oceanbase11transaction14ObTransService23acquire_local_snapshot_ERKNS_5share6ObLSIDERlENK6$_1031clEPKc.93feb755617c21c32b229b78773c290c +_ZN9oceanbase6common19GlobalHazardVersion11delete_nodeEPNS0_17KVCacheHazardNodeE +_ZN9oceanbase6common13ObSEArrayImplIbLl2ENS0_19ModulePageAllocatorELb1EE7reserveEl +_ZN9oceanbase12blocksstable18ObMicroBlockReader10find_boundERKNS0_13ObDatumRowkeyEblRlRb +_ZN9oceanbase12blocksstable23ObIMicroBlockFlatReader11find_bound_ERKNS0_13ObDatumRowkeyEbllRKNS_7storage15ObTableReadInfoERlRb +_ZN9oceanbase12blocksstable11ObRowReader19compare_meta_rowkeyERKNS0_13ObDatumRowkeyERKNS_7storage15ObTableReadInfoEPKclRi +_ZN9oceanbase12blocksstable21ObClusterColumnReader19sequence_read_datumElRNS0_14ObStorageDatumE +_ZN9oceanbase12blocksstableL18nonext_ext_compareERKNS0_14ObStorageDatumES3_RKNS_6common9ObCmpFuncERi.8f1e732d6655d093e942b32e16c602d8 +_ZN9oceanbase11transaction12ObLSTxCtxMgr13revert_tx_ctxEPNS0_10ObTransCtxE +_ZN9oceanbase7storage16ObTableScanRange4initERNS0_16ObTableScanParamE +_ZN9oceanbase12blocksstable13ObDatumRowkey11from_rowkeyERKNS_6common8ObRowkeyERNS2_12ObIAllocatorE +_ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl16ENS0_19ModulePageAllocatorELb0EE7reserveEl +_ZN9oceanbase12blocksstable23ObIMicroBlockRowScanner10set_readerENS_6common14ObRowStoreTypeE +_ZN9oceanbase12blocksstable23ObIMicroBlockFlatReaderC1Ev +_ZN9oceanbase12blocksstable23ObIMicroBlockFlatReaderC2Ev +_ZZNK9oceanbase11transaction14ObTxVersionMgr17get_max_commit_tsEbENKUlPKcE_clES3_ +_ZN9oceanbase3sql21ObSqlParameterization11fast_parserERNS_6common12ObIAllocatorEmNS2_15ObCollationTypeERKNS2_8ObStringEbRNS0_18ObFastParserResultE +_ZN9oceanbase3sql12ObFastParser5parseERKNS_6common8ObStringEbRPcRlRP10_ParamListS8_NS2_15ObCollationTypeERNS2_12ObIAllocatorEm +_ZN9oceanbase6common9ObCharset20charset_type_by_collENS0_15ObCollationTypeE +_ZN9oceanbase3sql17ObFastParserMysql16parse_next_tokenEv +_ZN9oceanbase3sql17ObFastParserMysql18process_identifierEb +_ZN9oceanbase3sql16ObFastParserBase14process_numberEb +ob_strntoull +_ZN9oceanbase3sql8ObParser10is_pl_stmtERKNS_6common8ObStringEPbS6_ +_ZN9oceanbase7storage13ObMetaPointerINS0_8ObTabletEE17get_in_memory_objERNS0_14ObMetaObjGuardIS2_EE +_ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE7set_objERNS0_9ObMetaObjIS2_EE +_ZN9oceanbase3sql13ObExecContext22init_physical_plan_ctxERKNS0_14ObPhysicalPlanE +_ZN9oceanbase3sql8ObDASCtx18extended_table_locERKNS0_17ObDASTableLocMetaERPNS0_13ObDASTableLocE +_ZN9oceanbase3sql10ObSQLUtils19handle_audit_recordEbNS0_13ObExecuteModeERNS0_16ObSQLSessionInfoEb +_ZN9oceanbase3sql16ObSQLSessionInfo29update_stat_from_audit_recordEv +_ZN9oceanbase6common11ObArrayImplIPNS_3sql22ObInMemoryTopnSortImpl13SortStoredRowENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEED2Ev +_ZN9oceanbase6common16ObPriorityQueue2ILi1ELi2ELi3EE6do_popERPNS0_6ObLinkEll +_ZN9oceanbase6common9SCondTempILi3EE4waitEl +_ZN9oceanbase3lib7ObFutex4waitEil +_ZN9oceanbase8memtable22ObMemtableScanIterator12prepare_scanEv +_ZN9oceanbase8memtable12ObMvccEngine4scanERNS0_15ObMvccAccessCtxERKNS_6common11ObQueryFlagERKNS0_15ObMvccScanRangeERNS0_17ObMvccRowIteratorE +_ZN9oceanbase7storage18ObSimpleRowsMergerINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpEE4initElRNS_6common12ObIAllocatorE +_ZN9oceanbase6common5ObObj9deep_copyERKS1_PclRl +_ZN9oceanbase7storage19ObSSTableRowScannerC2Ev +_ZN9oceanbase12blocksstable18ObMacroBlockReaderC1Ev +_ZN9oceanbase12blocksstable18ObMacroBlockReaderC2Ev +_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherC2Ev +_ZN9oceanbase6common10ObIOHandleC1Ev +_ZN9oceanbase6common10ObIOHandleC2Ev +_ZN9oceanbase7storage22ObMicroBlockDataHandleC1Ev +_ZN9oceanbase7storage22ObMicroBlockDataHandleC2Ev +_ZN9oceanbase12blocksstable12MacroBlockIdC1Ev +_ZN9oceanbase12blocksstable12MacroBlockIdC2Ev +_ZN9oceanbase6common15ObKVCacheHandleC1Ev +_ZN9oceanbase6common15ObKVCacheHandleC2Ev +_ZN9oceanbase7storage21ObIndexTreePrefetcherC2Ev +_ZNK9oceanbase3sql15ObExprFrameInfo11alloc_frameERNS_6common12ObIAllocatorERKNS2_8ObIArrayIPcEERmRPS6_ +_ZN9oceanbase3sql13ObTableScanOp23update_output_tablet_idEv +_ZN9oceanbase5share6schema16ObPartitionUtils24get_tablet_and_object_idERKNS1_13ObTableSchemaERNS_6common10ObTabletIDERmPNS1_16RelatedTableInfoE +_ZNK9oceanbase5share6schema21ObSimpleTableSchemaV213get_tablet_idEv +_ZNK9oceanbase5share6schema21ObSimpleTableSchemaV210has_tabletEv +_ZN9oceanbase6common13ObSEArrayImplImLl4ENS0_19ModulePageAllocatorELb0EE7reserveEl +_ZN9oceanbase6common11ObArrayImplINS_11transaction16ObTransIDAndAddrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEED2Ev +_ZNK9oceanbase6common9EventItem4callEv +_ZN9oceanbase3sql20ObSqlMemMgrProcessor18unregister_profileEv +_ZN9oceanbase6common13ObSEArrayImplINS_3sql18ObPhyTableLocationELl2ENS0_19ModulePageAllocatorELb0EED2Ev +_ZN9oceanbase6common11ObArrayImplINS_3sql11ObQueryHint10IdNamePairENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS4_EENS0_17DefaultItemEncodeIS4_EEED2Ev +_ZZN9oceanbase8observer9ObMPUtils22init_flt_log_frameworkERNS_3sql16ObSQLSessionInfoEbENK4$_59clEPKc.712a47fc6d4da9894c7fa8e4e81b6498 +_ZZN9oceanbase3sql11ObResultSet19auto_end_plan_transERNS0_14ObPhysicalPlanEiRbENKUlPKcE_clES6_ +_ZN9oceanbase3sql14ObExprValuesOp7destroyEv +_ZN9oceanbase6common13ObSEArrayImplINS_11transaction8ObTxPartELl4ENS0_19ModulePageAllocatorELb0EEixEl +_ZZN9oceanbase7storage19ObMultipleScanMerge15construct_itersEvENK5$_637clEPKc.60e5f1555e1608e51e89c573dc1497ed +_ZN9oceanbase7storage21ObIndexTreePrefetcher15lookup_in_cacheERNS0_19ObSSTableReadHandleE +_ZN9oceanbase6common9ObKVCacheINS_12blocksstable17ObFuseRowCacheKeyENS2_19ObFuseRowCacheValueEE3putERKS3_RKS4_b +_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher19prepare_read_handleERNS1_22ObIndexTreeLevelHandleERNS0_19ObSSTableReadHandleE +_ZZN9oceanbase11transaction14ObTransService14revert_tx_ctx_EPNS_7storage4ObLSEPNS0_14ObPartTransCtxEENK6$_1008clEPKc.93feb755617c21c32b229b78773c290c +_ZZN9oceanbase7storage13ObSingleMerge22get_and_fuse_cache_rowEllRNS_12blocksstable10ObDatumRowERbS5_S5_ENK5$_444clEPKc.60e5f1555e1608e51e89c573dc1497ed +_ZN9oceanbase6common13ObSEArrayImplINS_11transaction6ObPairINS_5share6ObLSIDElEELl1ENS0_19ModulePageAllocatorELb0EE7reserveEl +_ZN9oceanbase8observer11ObSrvXlator13get_processorERNS_3rpc9ObRequestE +_ZN9oceanbase11transaction14ObTransService41fetch_cflict_tx_ids_from_mem_ctx_to_desc_ERNS_8memtable15ObMvccAccessCtxE +_ZN9oceanbase8memtable13ObMemtableCtx24reset_conflict_trans_idsEv +_ZN9oceanbase3sql10ObOperator4openEv +_ZN9oceanbase3sql13ObTableScanOp24init_ddl_column_checksumEv +_ZN9oceanbase3sql10ObDASUtils25check_nested_sql_mutatingEmRNS0_13ObExecContextE +_ZN9oceanbase3sql13ObTableScanOp10inner_openEv +_ZN9oceanbase3sql13ObTableScanOp21init_table_scan_rtdefEv +_ZN9oceanbase3sql18ObPushdownOperatorC1ERNS0_9ObEvalCtxERKNS0_18ObPushdownExprSpecE +_ZN9oceanbase3sql18ObPushdownOperatorC2ERNS0_9ObEvalCtxERKNS0_18ObPushdownExprSpecE +_ZN9oceanbase3sql14ObDASScanRtDef10init_pd_opERNS0_13ObExecContextERKNS0_14ObDASScanCtDefE +_ZN9oceanbase3sql8ObDASCtx19get_table_loc_by_idEmm +_ZN9oceanbase3sql18ObPushdownOperator28init_pushdown_storage_filterEv +_ZN9oceanbase6common13ObSEArrayImplIPNS_3sql6ObExprELl4ENS0_19ModulePageAllocatorELb0EE7destroyEv +_ZN9oceanbase6common15ObIKVCacheStoreINS0_18ObKVMemBlockHandleEE12alloc_kvpairERNS0_13ObKVCacheInstEllRPNS0_13ObKVCachePairERPS2_NS0_15ObKVCachePolicyE +_ZN9oceanbase6common17ObKVStoreMemBlock5allocElllRPNS0_13ObKVCachePairE +_ZN9oceanbase6common14ObKVCacheStore15mb_status_matchERNS0_13ObKVCacheInstENS0_15ObKVCachePolicyEPNS0_18ObKVMemBlockHandleE +_ZN9oceanbase8observer8ObMPBase12flush_bufferEb +easy_request_wakeup +ev_async_send +_ZN9oceanbase7obmysql19ObMySQLRequestUtils12flush_bufferERNS0_18ObFlushBufferParamE +_ZN9oceanbase7obmysql23request_finish_callbackEv +_ZN9oceanbase7storage19ObMultipleScanMergeD1Ev +_ZN9oceanbase7storage19ObMultipleScanMergeD2Ev +_ZN9oceanbase7storage30ObSSTableMultiVersionRowGetterD2Ev +_ZN9oceanbase7storage19ObSSTableRowScannerD1Ev +_ZN9oceanbase7storage19ObSSTableRowScannerD2Ev +_ZN9oceanbase7storage22ObMicroBlockDataHandleD1Ev +_ZN9oceanbase7storage22ObMicroBlockDataHandleD2Ev +_ZN9oceanbase7storage22ObMicroBlockDataHandle5resetEv +_ZN9oceanbase12blocksstable18ObMacroBlockHandle5resetEv +_ZN9oceanbase6common10ObIOHandle5resetEv +_ZN9oceanbase12blocksstable18ObMacroBlockHandleD1Ev +_ZN9oceanbase12blocksstable18ObMacroBlockHandleD2Ev +_ZN9oceanbase6common10ObIOHandleD1Ev +_ZN9oceanbase6common10ObIOHandleD2Ev +_ZN9oceanbase12blocksstable18ObMacroBlockHandle14reset_macro_idEv +_ZN9oceanbase6common15ObKVCacheHandleD1Ev +_ZN9oceanbase6common15ObKVCacheHandleD2Ev +_ZN9oceanbase6common15ObKVCacheHandle5resetEv +_ZN9oceanbase6common17ObAtomicReference27dec_ref_cnt_and_inc_seq_numERj +_ZN9oceanbase6common16ObFixedArrayImplINS_7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandleENS0_12ObIAllocatorEED2Ev +_ZN9oceanbase12blocksstable22ObIndexBlockRowScannerD1Ev +_ZN9oceanbase12blocksstable22ObIndexBlockRowScannerD2Ev +_ZN9oceanbase12blocksstable23ObIMicroBlockFlatReaderD1Ev +_ZN9oceanbase12blocksstable23ObIMicroBlockFlatReaderD2Ev +_ZN9oceanbase12blocksstable23ObIMicroBlockRowScannerD1Ev +_ZN9oceanbase12blocksstable23ObIMicroBlockRowScannerD2Ev +_ZN9oceanbase6common16ObFixedArrayImplINS_7storage19ObSSTableReadHandleENS0_12ObIAllocatorEED2Ev +_ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScannerD2Ev +_ZN9oceanbase12blocksstable18ObMicroBlockReaderD2Ev +_ZN9oceanbase8observer8ObMPBase13after_processEi +_ZN9oceanbase8memtable10ObMemtable4scanERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS_12blocksstable12ObDatumRangeERPNS2_18ObStoreRowIteratorE +_ZN9oceanbase8memtable17ObMvccRowIteratorC1Ev +_ZN9oceanbase8memtable17ObMvccRowIteratorC2Ev +_ZN9oceanbase8observer16ObMPPacketSender14send_ok_packetERNS_3sql16ObSQLSessionInfoERNS0_10ObOKPParamEPNS_7obmysql13ObMySQLPacketE +_ZN9oceanbase7obmysql6OMPKOKC1Ev +_ZN9oceanbase7obmysql6OMPKOKC2Ev +_ZN9oceanbase3sql18ObBasicSessionInfo17save_trans_statusEv +_ZN9oceanbase6common11ObArrayImplINS_3sql22ObDDLSchemaVersionHintENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev +_ZN9oceanbase3sql16AllocInputHelperILi24EE5allocERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecERPNS0_9ObOpInputE +_ZZN9oceanbase11transaction14ObTransService11get_tx_ctx_ERKNS_5share6ObLSIDEPNS_7storage4ObLSERKNS0_9ObTransIDERPNS0_14ObPartTransCtxEENK6$_1007clEPKc.93feb755617c21c32b229b78773c290c +_ZN9oceanbase3sql13ObTableScanOp16prepare_das_taskEv +_ZN9oceanbase3sql11ObDASScanOp14init_task_infoEv +_ZN9oceanbase6common13ObSEArrayImplINS0_10ObNewRangeELl4ENS0_19ModulePageAllocatorELb0EE9push_backERKS2_ +_ZN9oceanbase3sql8ObDASRef15create_das_taskEPKNS0_14ObDASTabletLocENS0_11ObDASOpTypeERPNS0_12ObIDASTaskOpE +_ZN9oceanbase6common26ObWrapperAllocatorWithAttr5allocEl +_ZN9oceanbase3sql13ObTableScanOp30cherry_pick_range_by_tablet_idEPNS0_11ObDASScanOpE +_ZN9oceanbase3sql19ObDataAccessService15get_das_task_idERl +_ZN9oceanbase3sql16ObDASTaskFactory18create_das_task_opENS0_11ObDASOpTypeERPNS0_12ObIDASTaskOpE +_ZN9oceanbase3sql11ObDASScanOpC1ERNS_6common12ObIAllocatorE +_ZN9oceanbase3sql11ObDASScanOpC2ERNS_6common12ObIAllocatorE +_ZN9oceanbase11transaction14ObTxExecResultC1Ev +_ZN9oceanbase11transaction14ObTxExecResultC2Ev +_ZN9oceanbase7storage16ObTableScanParamC2Ev +_ZN9oceanbase3sql13ObDASUpdateOpC1ERNS_6common12ObIAllocatorE +_ZN9oceanbase3sql13ObDASUpdateOpC2ERNS_6common12ObIAllocatorE +_ZN9oceanbase11transaction16ObLSTxLogAdapter8get_roleERbRl +_ZNK9oceanbase10logservice12ObLogHandler8get_roleERNS_6common6ObRoleERl +_ZNK9oceanbase4palf10PalfHandle8get_roleERNS_6common6ObRoleERlRb +_ZNK9oceanbase4palf8election12ElectionImpl8get_roleERNS_6common6ObRoleERl +_ZN9oceanbase6common16ObPriorityQueue2ILi1ELi2ELi3EE13pop_high_highERPNS0_6ObLinkEl +_ZN9oceanbase6common11ObArrayImplIPNS_3sql21ObUserVarIdentRawExprENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS4_EENS0_17DefaultItemEncodeIS4_EEED2Ev +_ZN9oceanbase3sql9ObPlanSet21match_multi_stmt_infoERKNS_6common9Ob2DArrayINS2_10ObObjParamELi2079744ENS2_18ObWrapperAllocatorELb0ENS2_9ObSEArrayIPS4_Ll1ES5_Lb0EEEEERKNS2_8ObIArrayIlEERb +_ZN9oceanbase8observer16ObSrvMySQLXlator9translateERNS_3rpc9ObRequestERPNS2_5frame14ObReqProcessorE +_ZN9oceanbase7obmysql24ObEasySqlRequestOperator15get_sql_sessionEPNS_3rpc9ObRequestE +_ZN9oceanbase8observer9ObMPQueryC1ERKNS0_15ObGlobalContextE +_ZN9oceanbase8observer9ObMPQueryC2ERKNS0_15ObGlobalContextE +_ZN9oceanbase3sql8ObSqlCtxC1Ev +_ZN9oceanbase3sql8ObSqlCtxC2Ev +_ZN9oceanbase8observer16ObMPPacketSenderC1Ev +_ZN9oceanbase8observer16ObMPPacketSenderC2Ev +_ZN9oceanbase6common11ObAllocator5allocElRKNS_3lib9ObMemAttrE +_ZN9oceanbase3lib9ObjectMgr24get_tenant_ctx_allocatorEv +_ZN9oceanbase3lib9ObjectSet12alloc_objectEmRKNS0_9ObMemAttrE +_ZN9oceanbase6common13ObPageManager11alloc_blockEmRKNS_3lib9ObMemAttrE +_ZN9oceanbase3lib8BlockSet11alloc_blockEmRKNS0_9ObMemAttrE +_ZN9oceanbase3lib9ObjectMgr11alloc_blockEmRKNS0_9ObMemAttrE +_ZN9oceanbase3lib17ObMallocAllocator24get_tenant_ctx_block_mgrEmm +_ZN9oceanbase3sql17ObChunkDatumStore18alloc_block_bufferERPNS1_5BlockEllb +_ZN9oceanbase6common11ObArrayImplINS_3sql13ObMonitorHintENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev +_ZN9oceanbase7storage30ObSSTableMultiVersionRowGetter10inner_openERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextEPNS0_8ObITableEPKv +_ZNK9oceanbase12blocksstable13ObDatumRowkey22to_multi_version_rangeERNS_6common12ObIAllocatorERNS0_12ObDatumRangeE +_ZN9oceanbase3sql11ObDASScanOpD1Ev +_ZN9oceanbase3sql11ObDASScanOpD2Ev +_ZN9oceanbase6common13ObSEArrayImplINS0_10ObNewRangeELl4ENS0_19ModulePageAllocatorELb0EE7destroyEv +_ZN9oceanbase7storage16ObTableScanParamD2Ev +_ZN9oceanbase6common13ObSEArrayImplINS_3sql14ObOptParamHint12OptParamTypeELl1ENS0_19ModulePageAllocatorELb1EED2Ev +_ZN9oceanbase11transaction14ObPartTransCtx12check_statusEv +_ZN9oceanbase6common14ObKVCacheStore13de_handle_refEPNS0_18ObKVMemBlockHandleE +_ZN9oceanbase8memtable22ObMemtableScanIteratorD1Ev +_ZN9oceanbase8memtable22ObMemtableScanIteratorD2Ev +_ZN9oceanbase8memtable13ObMemtableCtx22get_conflict_trans_idsERNS_6common8ObIArrayINS_11transaction16ObTransIDAndAddrEEE +_ZN9oceanbase6common11ObArrayImplINS_11transaction9ObTransIDENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE5resetEv +_ZN9oceanbase6common11ObArrayImplINS_3sql9ObDopHintENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev +_ZN9oceanbase3sql11ObResultSet20store_last_insert_idERNS0_13ObExecContextE +_ZN9oceanbase6common13ObSEArrayImplINS0_5ObObjELl1ENS0_19ModulePageAllocatorELb1EED2Ev +_ZN9oceanbase3sql17ObChunkDatumStore13row_copy_sizeERKNS_6common8ObIArrayIPNS0_6ObExprEEERNS0_9ObEvalCtxERl +_ZN9oceanbase3sql8ObSortOp10inner_openEv +_ZN9oceanbase11transaction8ObTxDesc12update_part_ERNS0_8ObTxPartEb +_ZN9oceanbase11transaction14ObTransService25create_implicit_savepointERNS0_8ObTxDescERKNS0_9ObTxParamERlb +_ZN9oceanbase7storage23ObReallocatedFixedArrayINS0_30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandleEE18prepare_reallocateEl +_ZN9oceanbase6common16ObFixedArrayImplINS_7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandleENS0_12ObIAllocatorEE16prepare_allocateEl +_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandleC2Ev +_ZN9oceanbase12blocksstable22ObIndexBlockRowScannerC1Ev +_ZN9oceanbase12blocksstable22ObIndexBlockRowScannerC2Ev +_ZN9oceanbase8memtable17ObMvccRowIteratorD1Ev +_ZN9oceanbase8memtable17ObMvccRowIteratorD2Ev +_ZN9oceanbase6common13ObObjFreeList4freeEPv +_ZN9oceanbase6common16ObFixedArrayImplINS_7storage19ObSSTableReadHandleENS0_12ObIAllocatorEE7reserveEl +_ZN9oceanbase6common16ObBinaryHeapBaseIPNS_3sql22ObInMemoryTopnSortImpl13SortStoredRowENS2_12ObSortOpImpl7CompareELl50EED2Ev +_ZN9oceanbase6common11ObArrayImplINS_3sql16ObExprConstraintENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev +_ZN9oceanbase11transaction14ObPartTransCtx10end_accessEv +_ZN9oceanbase8memtable13ObMemtableCtx7dec_refEv +_ZN9oceanbase8memtable18ObTransCallbackMgr20revert_callback_listEv +_ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb1EE7destroyEv +_ZNK9oceanbase7obmysql12ObMySQLField15serialize_pro41EPclRl +_ZN9oceanbase6common13ObSEArrayImplINS_3sql7ObHintsELl8ENS0_19ModulePageAllocatorELb1EED2Ev +_ZN9oceanbase3omt10ObThWorker20check_qtime_throttleEv +_ZN9oceanbase6common11ObArrayImplINS_3sql18ObPCParamEqualInfoENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev +_ZN9oceanbase3sql15ObResolverUtils13resolve_constEPK10_ParseNodeNS0_4stmt8StmtTypeERNS_6common12ObIAllocatorENS7_15ObCollationTypeESA_PKNS7_14ObTimeZoneInfoERNS7_10ObObjParamEbRNS7_8ObStringEsSA_PNS0_11ObSqlBitSetILl96ENS0_14ObExprInfoFlagELb1EEEmb +_ZL19ob_ismbchar_utf8mb4PK13ObCharsetInfoPKcS3_.5aa8bf9a2f1d92c2672c2bb9fbfc2e97 +_ZN9oceanbase6common9ObCharset11strlen_charENS0_15ObCollationTypeEPKcl +_ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE5resetEv +_ZN9oceanbase6common12ObIAllocatorD2Ev +_ZN9oceanbase3sql17ObChunkDatumStore13ChunkIterator5resetEv +_ZN9oceanbase6common8ObIOFlag5resetEv +_ZN9oceanbase12blocksstable17ObTmpFileIOHandle5resetEv +_ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable17ObTmpFileIOHandle18ObBlockCacheHandleELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv +_ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable17ObTmpFileIOHandle17ObPageCacheHandleELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv +_ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable17ObTmpFileIOHandle14ObIOReadHandleELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv +_ZN9oceanbase3sql30ObHashPartitionExtendHashTableINS0_14ObHashPartColsEE7destroyEv +_ZN9oceanbase6common9Ob2DArrayIPNS_3sql14ObHashPartColsELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS4_Ll64ES5_Lb0EEEE7destroyEv +_ZN9oceanbase3sql10ObDelRtDefD2Ev +_ZN9oceanbase3sql11ObResultSet35transaction_set_violation_and_retryERiRl +_ZN9oceanbase3sql17ObExprStrResAlloc5allocEl +_ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE28clean_cur_dumping_partitionsEv +_ZNK9oceanbase5share6schema21ObSimpleTableSchemaV213get_object_idEv +_ZN9oceanbase6common13ObSEArrayImplIPKNS_5share6schema13ObTableSchemaELl1ENS0_19ModulePageAllocatorELb0EED2Ev +_ZN9oceanbase6common16ObFixedArrayImplINS_7storage19ObSSTableReadHandleENS0_12ObIAllocatorEE4initEl +_ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS_3sql24ObHashPartInfrastructureINS5_14ObHashPartColsENS5_19ObHashPartStoredRowEE14ObIntraPartKeyEPNS9_16ObIntraPartitionEEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEED2Ev +_ZN9oceanbase6common13ObSEArrayImplIPPNS_3sql20ObAggregateProcessor8GroupRowELl64ENS0_19ModulePageAllocatorELb0EED2Ev +_ZN9oceanbase6common11ObArrayImplINS_11transaction9ObTransIDENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE6assignERKNS0_8ObIArrayIS3_EE +_ZN9oceanbase6common16ObFixedArrayImplINS_7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandleENS0_12ObIAllocatorEE7reserveEl +_ZN9oceanbase6common16ObFixedArrayImplINS_7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandleENS0_12ObIAllocatorEE4initEl +_ZZNK9oceanbase3sql15ObTableLocation20calculate_tablet_idsERNS0_13ObExecContextERKNS_6common9Ob2DArrayINS4_10ObObjParamELi2079744ENS4_18ObWrapperAllocatorELb0ENS4_9ObSEArrayIPS6_Ll1ES7_Lb0EEEEERNS4_8ObIArrayINS4_10ObTabletIDEEERNSE_ImEERKNS4_20ObDataTypeCastParamsEENK6$_1105clEPKc.c0f3ebb58adf60d04e27c69da5b90c06 +_ZN9oceanbase3sql13ObPxAdmission21enter_query_admissionERNS0_16ObSQLSessionInfoERNS0_13ObExecContextERNS0_14ObPhysicalPlanE +_ZN9oceanbase12blocksstable21ObMicroBlockRowGetter13get_block_rowERNS_7storage19ObSSTableReadHandleERNS0_18ObMacroBlockReaderERPKNS0_10ObDatumRowE +_ZThn320_N9oceanbase12blocksstable21ObMicroBlockGetReader7get_rowERKNS0_16ObMicroBlockDataERKNS0_13ObDatumRowkeyERKNS_7storage15ObTableReadInfoERNS0_10ObDatumRowE +_ZN9oceanbase12blocksstable21ObMicroBlockRowGetter13inner_get_rowERKNS0_12MacroBlockIdERKNS0_13ObDatumRowkeyERKNS0_16ObMicroBlockDataERPKNS0_10ObDatumRowE +_ZN9oceanbase12blocksstable21ObMicroBlockGetReader10inner_initERKNS0_16ObMicroBlockDataERKNS_7storage15ObTableReadInfoE +_ZN9oceanbase12blocksstable21ObMicroBlockGetReader7get_rowERKNS0_16ObMicroBlockDataERKNS0_13ObDatumRowkeyERKNS_7storage15ObTableReadInfoERNS0_10ObDatumRowE +_ZN9oceanbase12blocksstable21ObMicroBlockGetReader13locate_rowkeyERKNS0_13ObDatumRowkeyERl +_ZN9oceanbase12blocksstable23ObIMicroBlockRowFetcher14prepare_readerENS_6common14ObRowStoreTypeE +_ZN9oceanbase8observer9ObMPQuery11deserializeEv +_ZN9oceanbase3sql11ObResultSet8open_cmdEv +_ZThn32_NK9oceanbase3sql9ObTCLStmt12get_cmd_typeEv +_ZN9oceanbase6common16ObKVCacheInstMap14get_cache_instERKNS0_16ObKVCacheInstKeyERNS0_19ObKVCacheInstHandleE +_ZN9oceanbase12blocksstableL13get_offset_16EPKvl.8f1e732d6655d093e942b32e16c602d8 +_ZNK9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE7get_objEv +_ZN9oceanbase7obmysql13OMPKResheaderD1Ev +_ZN9oceanbase7obmysql13OMPKResheaderD2Ev +_ZN9oceanbase11transaction30ObTransDeadlockDetectorAdapter36maintain_deadlock_info_when_end_stmtERNS_3sql13ObExecContextEb +_ZN9oceanbase8memtable8ObMtHash9fill_pairEPNS0_10ObHashNodeES3_l +_ZN9oceanbase3sql20ObSqlMemMgrProcessor5allocEl +_ZN9oceanbase3sql9ObPlanSet16match_constraintERKNS_6common9Ob2DArrayINS2_10ObObjParamELi2079744ENS2_18ObWrapperAllocatorELb0ENS2_9ObSEArrayIPS4_Ll1ES5_Lb0EEEEERb +_ZN9oceanbase3sql16AllocDASOpHelperILi2EE5allocERNS_6common12ObIAllocatorERPNS0_12ObIDASTaskOpE +_ZN9oceanbase3sql8ObSortOp5resetEv +_ZN9oceanbase6common16ObBinaryHeapBaseIPNS_3sql22ObInMemoryTopnSortImpl13SortStoredRowENS2_12ObSortOpImpl7CompareELl50EE20reset_root_cmp_cacheEv +_ZN9oceanbase3sql12ObSortOpImpl5resetEv +_ZN9oceanbase3sql20ObPxEstimateSizeUtil11get_px_sizeEPNS0_13ObExecContextENS0_14PxOpSizeFactorElRl +_ZN9oceanbase6common11ObArrayImplIPNS_3sql22ObInMemoryTopnSortImpl13SortStoredRowENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEE7destroyEv +_ZN9oceanbase12blocksstable21ObMicroBlockRowGetter17get_not_exist_rowERKNS0_13ObDatumRowkeyERPKNS0_10ObDatumRowE +_ZN9oceanbase3sql13ObDASUpdateOp7open_opEv +_ZN9oceanbase6common11ObArrayImplINS_11transaction9ObTransIDENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEED2Ev +_ZN9oceanbase3sql14ObExprValuesOp18inner_get_next_rowEv +_ZN9oceanbase3sql13ObDatumCaster7to_typeERKNS0_11ObDatumMetaERKNS0_6ObExprERKmRPNS_6common7ObDatumE +_ZN9oceanbase3sql13ObDatumCaster15setup_cast_exprERKNS0_11ObDatumMetaERKNS0_6ObExprEmRS5_ +_ZNK9oceanbase5share6schema21ObSimpleTableSchemaV218get_schema_versionEv +_ZN9oceanbase3sql14ObExprValuesOp11inner_closeEv +_ZN9oceanbase3sql9ObEvalCtxD2Ev +_ZN9oceanbase6common13ObSEArrayImplINS_11transaction6ObPairINS_5share6ObLSIDElEELl1ENS0_19ModulePageAllocatorELb0EE9push_backERKS6_ +_ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql20ObAggregateProcessor12IAggrFuncCtxENS0_12ObIAllocatorEED2Ev +_ZN9oceanbase8observer8ObMPBase8responseEi +_ZZN9oceanbase11transaction14ObPartTransCtx10end_accessEvENK5$_657clEPKc.93feb755617c21c32b229b78773c290c +_ZNK9oceanbase6common19GlobalHazardVersion15get_min_versionERm +_ZN9oceanbase3lib7ABitSetC1EiPc +_ZN9oceanbase3lib7ABitSetC2EiPc +_ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImNS0_5ObObjEEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEE5clearEv +_ZN9oceanbase6common13ObObjFreeList5allocEv +_ZN9oceanbase3sql22ObInMemoryTopnSortImpl5resetEv +_ZN9oceanbase3sql16AllocDASOpHelperILi4EE5allocERNS_6common12ObIAllocatorERPNS0_12ObIDASTaskOpE +_ZN9oceanbase11transaction8ObTxDesc22add_implicit_savepointEl +_ZN9oceanbase3sql16ObFastParserBase12process_hintEv +_ZN9oceanbase3sql11ObPxSqcUtil24get_sqc_est_worker_ratioEPNS0_13ObExecContextE +_ZNK9oceanbase7obmysql6OMPKOK9serializeEPclRl +_ZZN9oceanbase11transaction14ObTransService41fetch_cflict_tx_ids_from_mem_ctx_to_desc_ERNS_8memtable15ObMvccAccessCtxEENK6$_1014clEPKc.93feb755617c21c32b229b78773c290c +_ZN9oceanbase7obmysql11ObMySQLUtil30store_obstr_nzt_with_pre_spaceEPclNS_6common8ObStringERl +_ZN9oceanbase6common11ObArrayImplINS_11transaction9ObTransIDENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE7reserveEl +_ZNK9oceanbase3sql12ObQueryRange21gen_simple_scan_rangeERNS_6common12ObIAllocatorERNS0_13ObExecContextERNS2_9ObSEArrayIPNS2_10ObNewRangeELl1ENS2_19ModulePageAllocatorELb0EEERNS7_IbLl2ESA_Lb1EEERKNS2_20ObDataTypeCastParamsE +_ZNK9oceanbase6common5ObObj32check_collation_free_and_compareERKS1_ +_ZNK9oceanbase3sql12ObQueryRange20get_single_key_valueEPKNS0_9ObKeyPartERNS0_13ObExecContextERNS1_13ObSearchStateERKNS_6common20ObDataTypeCastParamsE +_ZNK9oceanbase6common14ObTimeZoneInfo19get_timezone_offsetElRi +_ZN9oceanbase3sql20ObExprResultTypeUtil23get_relational_cmp_typeERNS_6common9ObObjTypeERKS3_S6_ +_ZN9oceanbase3sql12ObQueryRange13ObSearchState9intersectERKNS_6common5ObObjEbS6_b +_ZNK9oceanbase6common5ObObj7compareERKS1_ +_ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE11ELS3_23EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE +_ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE23ELS3_11EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE +_ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE23ELS3_0EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE +_ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE1ELS3_1EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE +_ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE0ELS3_23EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE +_ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE11ELS3_11EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE +_ZN9oceanbase3sql24ObRelationalExprOperator16compare_nullsafeERlRKNS_6common5ObObjES6_RNS3_15ObObjCastParamsENS3_9ObObjTypeENS3_15ObCollationTypeE +_ZN9oceanbase6common13ObObjCmpFuncs7compareERNS0_5ObObjERKS2_S5_RKNS0_12ObCompareCtxENS0_7ObCmpOpERb +_ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE0ELS3_11EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE +_ZN9oceanbase6common11ObObjCaster7to_typeERKNS0_12ObExpectTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS7_RPS8_ +_ZN9oceanbase6commonL7int_intENS0_9ObObjTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS4_m.db28c62327e16d3ae5c8a88acfd53bbb +_ZN9oceanbase6common11DefHashFuncINS0_19DatumHashCalculatorILNS0_9ObObjTypeE5ENS0_12ObMurmurHashEEEE4hashERKNS0_7ObDatumEm +_ZN9oceanbase3sql12ObSortOpImpl5reuseEv +_ZN9oceanbase3sql20ObSqlMemMgrProcessor4freeEl +_ZN9oceanbase3sql13ObDASDeleteOpC1ERNS_6common12ObIAllocatorE +_ZN9oceanbase3sql13ObDASDeleteOpC2ERNS_6common12ObIAllocatorE +_ZN9oceanbase3sql15ObTableUpdateOp18inner_get_next_rowEv +_ZN9oceanbase3sql13ObDASUpdateOp10release_opEv +_ZN9oceanbase3sql8ObDASRef22pick_del_task_to_firstEv +_ZN9oceanbase3sql8ObDASRef5reuseEv +_ZN9oceanbase3sql13ObDASUpdateOpD2Ev +_ZN9oceanbase3sql13ObDASDeleteOpD2Ev +_ZN9oceanbase3lib9ObjectSet20take_off_free_objectEPNS0_7AObjectE +_ZN9oceanbase3sql15ObTableUpdateOp11inner_closeEv +_ZN9oceanbase5share22ObAutoincrementService12get_instanceEv +_ZN9oceanbase3sql13AllocOpHelperILi2EE5allocERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputElRPNS0_10ObOperatorE +_ZN9oceanbase6common8ObRandomD1Ev +_ZN9oceanbase6common8ObRandomD2Ev +_ZN9oceanbase6common8ObRandom3getEv +_ZN9oceanbase3sql17ObChunkDatumStoreC1EPNS_6common12ObIAllocatorE +_ZN9oceanbase3sql17ObChunkDatumStoreC2EPNS_6common12ObIAllocatorE +_ZN9oceanbase6common8ObIOFlagC1Ev +_ZN9oceanbase6common8ObIOFlagC2Ev +_ZN9oceanbase12blocksstable15ObTmpFileIOInfoC1Ev +_ZN9oceanbase12blocksstable15ObTmpFileIOInfoC2Ev +_ZN9oceanbase3sql17ObChunkDatumStore11RowIteratorC1Ev +_ZN9oceanbase3sql17ObChunkDatumStore11RowIteratorC2Ev +_ZN9oceanbase3sql12ObSortOpImplC1Ev +_ZN9oceanbase3sql12ObSortOpImplC2Ev +_ZN9oceanbase6common8ObRandomC1Ev +_ZN9oceanbase6common8ObRandomC2Ev +_ZN9oceanbase6common11ObArrayImplINS_11transaction9ObTransIDENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE7destroyEv +_ZN9oceanbase3sql13ObDASDeleteOp7open_opEv +_ZN9oceanbase7storage14ObDMLBaseParamC2Ev +_ZN9oceanbase3sql20ObDASIndexDMLAdaptorILi3ENS0_16ObDASUpdIteratorEED2Ev +_ZNK9oceanbase3sql12ObQueryRange21generate_single_rangeERNS1_13ObSearchStateElmRPNS_6common10ObNewRangeERb +_ZN9oceanbase6common13ObObjCmpFuncs16compare_nullsafeERKNS0_5ObObjES4_NS0_15ObCollationTypeE +_ZN9oceanbase3sql13ObDASInsertOpC1ERNS_6common12ObIAllocatorE +_ZN9oceanbase3sql13ObDASInsertOpC2ERNS_6common12ObIAllocatorE +_ZNK9oceanbase5share6schema19ObSysVariableSchema17get_sysvar_schemaEl +_ZZN9oceanbase11transaction14ObTransService33create_global_implicit_savepoint_ERNS0_8ObTxDescERKNS0_9ObTxParamERlbENK6$_1310clEPKc.93feb755617c21c32b229b78773c290c +_ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE9end_roundEv +_ZN9oceanbase3sql8ObSortOp7destroyEv +_ZN9oceanbase6common8ObIOFlagD1Ev +_ZN9oceanbase6common8ObIOFlagD2Ev +_ZN9oceanbase3sql17ObChunkDatumStore5resetEv +_ZN9oceanbase12blocksstable17ObTmpFileIOHandleD1Ev +_ZN9oceanbase12blocksstable17ObTmpFileIOHandleD2Ev +_ZN9oceanbase6common11ObArrayImplIPNS_3sql17ObChunkDatumStore9StoredRowENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEED2Ev +_ZN9oceanbase3sql17ObChunkDatumStore13ChunkIteratorD1Ev +_ZN9oceanbase3sql17ObChunkDatumStore13ChunkIteratorD2Ev +_ZN9oceanbase6common24GlobalHazardVersionGuardC1ERNS0_19GlobalHazardVersionE +_ZN9oceanbase6common24GlobalHazardVersionGuardC2ERNS0_19GlobalHazardVersionE +_ZN9oceanbase3sql15ObTableModifyOp11inner_closeEv +_ZN9oceanbase3sql16ObHashDistinctOp26init_hash_partition_infrasEv +_ZN9oceanbase3sql16ObChunkStoreUtil12alloc_dir_idERl +_ZN9oceanbase12blocksstable16ObTmpFileManager9alloc_dirERl +_ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE11start_roundEv +_ZN9oceanbase3sql30ObHashPartitionExtendHashTableINS0_14ObHashPartColsEE4initEPNS_6common12ObIAllocatorElPNS0_20ObSqlMemMgrProcessorEllb +_ZN9oceanbase6common19ModulePageAllocator5allocEl +_ZN9oceanbase6common9Ob2DArrayIPNS_3sql14ObHashPartColsELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS4_Ll64ES5_Lb0EEEE4initEl +_ZN9oceanbase6common9Ob2DArrayIPNS_3sql14ObHashPartColsELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS4_Ll64ES5_Lb0EEEE11set_defaultEl +_ZN9oceanbase6common9Ob2DArrayIPNS_3sql14ObHashPartColsELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS4_Ll64ES5_Lb0EEEE7reserveEl +_ZN9oceanbase6common9Ob2DArrayIPNS_3sql14ObHashPartColsELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS4_Ll64ES5_Lb0EEEE9new_blockEl +_ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE +_ZN9oceanbase3lib17ObMallocAllocator5allocElRKNS0_9ObMemAttrE +_ZN9oceanbase3lib20ObTenantCtxAllocator5allocElRKNS0_9ObMemAttrE +_ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE4initEmbbblPNS0_20ObSqlMemMgrProcessorE +_ZN9oceanbase3sql30ObHashPartitionExtendHashTableINS0_14ObHashPartColsEE19create_bucket_arrayElRPNS_6common9Ob2DArrayIPS2_Li65408ENS4_19ModulePageAllocatorELb0ENS4_9ObSEArrayIPS6_Ll64ES7_Lb0EEEEE +_ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE17init_default_partEPNS4_16ObIntraPartitionElli +_ZN9oceanbase3sql20ObDASIndexDMLAdaptorILi3ENS0_16ObDASUpdIteratorEE12write_tabletERS2_Rl +_ZN9oceanbase11transaction12ObTxSnapshotC1Ev +_ZN9oceanbase11transaction12ObTxSnapshotC2Ev +_ZN9oceanbase3sql12ObDMLService14init_dml_paramERKNS0_17ObDASDMLBaseCtDefERNS0_17ObDASDMLBaseRtDefERNS_11transaction16ObTxReadSnapshotERNS_6common12ObIAllocatorERNS_7storage14ObDMLBaseParamE +_ZN9oceanbase7storage15ObAccessService11update_rowsERKNS_5share6ObLSIDERKNS_6common10ObTabletIDERNS_11transaction8ObTxDescERKNS0_14ObDMLBaseParamERKNS6_8ObIArrayImEESJ_PNS6_16ObNewRowIteratorERl +_ZNK9oceanbase7storage15ObRelativeTable21get_rowkey_column_numEv +_ZN9oceanbase8memtable16ObQueryAllocator4freeEPv +_ZN9oceanbase7storage17ObLSTabletService23prepare_dml_running_ctxEPKNS_6common8ObIArrayImEES6_RNS0_14ObTabletHandleERNS0_15ObDMLRunningCtxE +_ZN9oceanbase7storage15ObDMLRunningCtx19prepare_column_infoERKNS_6common8ObIArrayImEE +_ZN9oceanbase7storage15ObAccessService25audit_tablet_opt_dml_statERKNS0_14ObDMLBaseParamERKNS_6common10ObTabletIDENS5_16ObOptDmlStatTypeEl +_ZNK9oceanbase8observer15ObGlobalContext18is_standby_clusterEv +_ZN9oceanbase7storage15ObAccessService15ObStoreCtxGuardD2Ev +_ZN9oceanbase7storage10ObStoreCtx5resetEv +_ZN9oceanbase7storageL13is_lob_updateERNS0_15ObDMLRunningCtxERKNS_6common8ObIArrayIlEE.e6be6dc590fd106f1b5fd0ce2055aa18 +_ZN9oceanbase7storage15ObDMLRunningCtx4initEPKNS_6common8ObIArrayImEES6_PNS_5share6schema27ObMultiVersionSchemaServiceERNS0_14ObTabletHandleE +_ZNK9oceanbase7storage16ObTabletHAStatus8is_validEv +_ZNK9oceanbase5share6schema11ObTableMode8is_validEv +_ZNK9oceanbase7storage15ObStorageSchema8is_validEv +_ZNK9oceanbase7storage15ObStorageSchema24check_column_array_validINS0_27ObStorageRowkeyColumnSchemaEEEbRKNS_6common8ObIArrayIT_EE +_ZNK9oceanbase7storage12ObTabletMeta8is_validEv +_ZZN9oceanbase7storage15ObAccessService25audit_tablet_opt_dml_statERKNS0_14ObDMLBaseParamERKNS_6common10ObTabletIDENS5_16ObOptDmlStatTypeElENK5$_125clEPKc.a13d96b7c27110f7acdd340c58275d80 +_ZN9oceanbase6common23ObOptStatMonitorManager12get_instanceEv +_ZN9oceanbase7storage15ObDMLRunningCtx22prepare_relative_tableERKNS_5share6schema18ObTableSchemaParamERNS0_14ObTabletHandleEl +_ZN9oceanbase7storage15ObAccessService20check_write_allowed_ERKNS_5share6ObLSIDERKNS_6common10ObTabletIDENS0_17ObStoreAccessTypeERKNS0_14ObDMLBaseParamERNS_11transaction8ObTxDescERNS1_15ObStoreCtxGuardE +_ZNK9oceanbase7storage13ObLSTxService19get_write_store_ctxERNS_11transaction8ObTxDescERKNS2_16ObTxReadSnapshotERNS0_10ObStoreCtxE +_ZN9oceanbase11transaction12ObTxSnapshotD1Ev +_ZN9oceanbase11transaction12ObTxSnapshotD2Ev +_ZN9oceanbase11transaction9tablelock11ObLockParam3setERKNS1_8ObLockIDEhRKlNS1_17ObTableLockOpTypeElbbl +_ZN9oceanbase11transaction9tablelock11ObLockTable17get_lock_memtableERNS_7storage15ObTableHandleV2E +_ZN9oceanbase7storage19ObMemtableMgrHandleD1Ev +_ZN9oceanbase7storage19ObMemtableMgrHandleD2Ev +_ZN9oceanbase7storage19ObMemtableMgrHandle16set_memtable_mgrEPNS0_14ObIMemtableMgrEPNS0_20ObITenantMetaObjPoolE +_ZN9oceanbase7storage19ObMemtableMgrHandle5resetEv +_ZNK9oceanbase11transaction8ObTxDesc13get_expire_tsEv +_ZN9oceanbase11transaction9tablelock11get_lock_idERKNS_6common10ObTabletIDERNS1_8ObLockIDE +_ZN9oceanbase7storage15ObAccessService26get_write_store_ctx_guard_ERKNS_5share6ObLSIDElRNS_11transaction8ObTxDescERKNS6_16ObTxReadSnapshotERNS1_15ObStoreCtxGuardE +_ZN9oceanbase11transaction14ObTransService19get_write_store_ctxERNS0_8ObTxDescERKNS0_16ObTxReadSnapshotERNS_7storage10ObStoreCtxE +_ZN9oceanbase11transaction14ObTransService14acquire_tx_ctxERKNS_5share6ObLSIDERKNS0_8ObTxDescERPNS0_14ObPartTransCtxEPNS_7storage4ObLSE +_ZN9oceanbase11transaction14ObTransService19get_tx_table_guard_EPNS_7storage4ObLSERKNS_5share6ObLSIDERNS2_14ObTxTableGuardE +_ZN9oceanbase11transaction9tablelock11ObLockTable4lockERNS_7storage10ObStoreCtxERKNS1_11ObLockParamE +_ZN9oceanbase7storage19ObMemtableMgrHandleC1Ev +_ZN9oceanbase7storage19ObMemtableMgrHandleC2Ev +_ZN9oceanbase7storage17ObLSTabletService21get_lock_memtable_mgrERNS0_19ObMemtableMgrHandleE +_ZN9oceanbase7storage15ObTableHandleV217get_lock_memtableERPNS_11transaction9tablelock14ObLockMemtableE +_ZNK9oceanbase8memtable13ObMemtableCtx16check_lock_existERKNS_11transaction9tablelock8ObLockIDERKlhRbRh +_ZNK9oceanbase11transaction9tablelock12ObLockMemCtx16check_lock_existERKNS1_8ObLockIDERKlhRbRh +_ZNK9oceanbase7storage14ObIMemtableMgr19get_active_memtableERNS0_15ObTableHandleV2E +_ZN9oceanbase11transaction9tablelock14ObLockMemtable5lock_ERKNS1_11ObLockParamERNS_7storage10ObStoreCtxERNS1_13ObTableLockOpE +_ZN9oceanbase8memtable16ObMvccWriteGuardD1Ev +_ZN9oceanbase8memtable16ObMvccWriteGuardD2Ev +_ZN9oceanbase11transaction7CtxLock4lockEv +_ZN9oceanbase8memtable16ObMvccWriteGuard10write_authERNS_7storage10ObStoreCtxE +_ZN9oceanbase8memtable13ObMemtableCtx10write_authEb +_ZN9oceanbase8memtable13ObMemtableCtx10write_doneEv +_ZNK9oceanbase11transaction9tablelock13ObTableLockOp8is_validEv +_ZN9oceanbase11transaction14ObPartTransCtx15submit_redo_logEb +_ZN9oceanbase8memtable13ObMemtableCtx26pending_log_size_too_largeEv +_ZN9oceanbase11transaction9tablelock12ObLockMemCtx17get_lock_memtableERPNS1_14ObLockMemtableE +_ZN9oceanbase6common7ObLatch10try_rdlockEj +_ZZN9oceanbase8memtable13ObMemtableCtx10write_authEbENK5$_285clEPKc.1dd22efca7fa83ae50e8099a04ad3959 +_ZN9oceanbase6common7ObLatch10try_wrlockEjPKj +_ZN9oceanbase7storage11ObLSService6get_lsERKNS_5share6ObLSIDERNS0_10ObLSHandleENS0_10ObLSGetModE +_ZN9oceanbase6common13ObSEArrayImplIlLl8ENS0_19ModulePageAllocatorELb0EED2Ev +_ZN9oceanbase7storage15ObDMLRunningCtx20check_schema_versionERNS_5share6schema27ObMultiVersionSchemaServiceEmmllRNS0_14ObTabletHandleE +_ZN9oceanbase5share6schema15ObSchemaService17is_formal_versionEl +_ZN9oceanbase7storage15ObDMLRunningCtx27check_tenant_schema_versionERNS_5share6schema27ObMultiVersionSchemaServiceEmml +_ZN9oceanbase7storage10ObLSHandleD1Ev +_ZN9oceanbase7storage10ObLSHandleD2Ev +_ZZN9oceanbase11transaction14ObTransService14acquire_tx_ctxERKNS_5share6ObLSIDERKNS0_8ObTxDescERPNS0_14ObPartTransCtxEPNS_7storage4ObLSEENK6$_1006clEPKc.93feb755617c21c32b229b78773c290c +_ZN9oceanbase7storage21ObTabletBindingHelper20check_schema_versionERNS0_14ObTabletHandleEl +_ZNK9oceanbase7storage8ObTablet12get_ddl_dataERNS0_19ObTabletBindingInfoE +_ZN9oceanbase11transaction14ObTransService14create_tx_ctx_ERKNS_5share6ObLSIDEPNS_7storage4ObLSERKNS0_8ObTxDescERPNS0_14ObPartTransCtxE +_ZN9oceanbase11transaction9tablelock12ObOBJLockMap4lockERKNS1_11ObLockParamERNS_7storage10ObStoreCtxERKNS1_13ObTableLockOpERKhRNS_6common4hash19ObIteratableHashSetINS0_9ObTransIDELm16EEE +_ZN9oceanbase11transaction9tablelock12ObOBJLockMap32get_or_create_obj_lock_with_ref_ERKNS1_8ObLockIDERPNS1_9ObOBJLockE +_ZN9oceanbase6common13ObLinkHashMapINS_11transaction9tablelock8ObLockIDENS3_9ObOBJLockENS3_14ObOBJLockAllocENS0_9RefHandleELl8EE6revertEPNS0_12LinkHashNodeIS4_EE +_ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EE7reserveEl +_ZZN9oceanbase11transaction14ObTransService19get_write_store_ctxERNS0_8ObTxDescERKNS0_16ObTxReadSnapshotERNS_7storage10ObStoreCtxEENK6$_1002clEPKc.93feb755617c21c32b229b78773c290c +_ZN9oceanbase7storage17ObLSTabletService11update_rowsERNS0_10ObStoreCtxERKNS0_14ObDMLBaseParamERKNS_6common8ObIArrayImEESB_PNS7_16ObNewRowIteratorERl +_ZNK9oceanbase7storage15ObRelativeTable16get_column_countEv +_ZN9oceanbase8memtable16ObQueryAllocator5allocEl +_ZN9oceanbase7storage15ObDMLRunningCtxC1ERNS0_10ObStoreCtxERKNS0_14ObDMLBaseParamERNS_6common12ObIAllocatorES9_NS_12blocksstable9ObDmlFlagE +_ZN9oceanbase7storage15ObDMLRunningCtxC2ERNS0_10ObStoreCtxERKNS0_14ObDMLBaseParamERNS_6common12ObIAllocatorES9_NS_12blocksstable9ObDmlFlagE +_ZN9oceanbase5share6schema19ObSchemaGetterGuardC1ENS1_15ObSchemaMgrItem3ModE +_ZN9oceanbase5share6schema19ObSchemaGetterGuardC2ENS1_15ObSchemaMgrItem3ModE +_ZN9oceanbase6common10ObRowStoreD1Ev +_ZN9oceanbase6common10ObRowStoreD2Ev +_ZN9oceanbase7storage15ObDMLRunningCtxD2Ev +_ZN9oceanbase5share6schema19ObSchemaGetterGuardD1Ev +_ZN9oceanbase5share6schema19ObSchemaGetterGuardD2Ev +_ZN9oceanbase6common13ObSEArrayImplINS_5share6schema15ObSchemaMgrInfoELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv +_ZN9oceanbase7storage17ObLSTabletService20check_and_get_tabletERKNS_6common10ObTabletIDERNS0_14ObTabletHandleEl +_ZN9oceanbase7storage15ObRelativeTableD1Ev +_ZN9oceanbase7storage15ObRelativeTableD2Ev +_ZN9oceanbase6common13ObSEArrayImplINS_5share6schema19ObSchemaGetterGuard9SchemaObjELl2ENS0_19ModulePageAllocatorELb0EED2Ev +_ZN9oceanbase7storage17ObLSTabletService19check_rowkey_changeERKNS_6common8ObIArrayImEERKNS0_15ObRelativeTableERbSA_ +_ZNK9oceanbase7storage15ObRelativeTable15is_unique_indexEv +_ZNK9oceanbase7storage15ObRelativeTable19is_rowkey_column_idEmRb +_ZN9oceanbase6common23ObOptStatMonitorManager18update_local_cacheEmRNS0_12ObOptDmlStatE +_ZN9oceanbase7storage17ObLSTabletService20update_row_to_tabletERNS0_14ObTabletHandleERNS0_15ObDMLRunningCtxEbRKNS_6common8ObIArrayIlEEbbRNS0_10ObStoreRowESC_PNS6_10ObRowStoreERb +_ZNK9oceanbase7storage15ObRelativeTable12get_table_idEv +_ZNK9oceanbase7storage10ObStoreCtx8is_validEv +_ZN9oceanbase7storage17ObLSTabletService15process_new_rowERNS0_14ObTabletHandleERNS0_15ObDMLRunningCtxERKNS_6common8ObIArrayIlEERKNS0_10ObStoreRowESD_b +_ZNK9oceanbase7storage15ObRelativeTable8is_validEv +_ZN9oceanbase8memtable13ObMemtableCtx15add_lock_recordERKNS_11transaction9tablelock13ObTableLockOpE +_ZNK9oceanbase7storage15ObTableHandleV28is_validEv +_ZN9oceanbase11transaction9tablelock12ObLockMemCtx15add_lock_recordERKNS1_13ObTableLockOpERPNS1_22ObMemCtxLockOpLinkNodeEb +_ZN9oceanbase8memtable10ObIMvccCtx22register_table_lock_cbEPNS_11transaction9tablelock14ObLockMemtableEPNS3_22ObMemCtxLockOpLinkNodeE +_ZN9oceanbase8memtable13ObMemtableCtx25alloc_table_lock_callbackERNS0_10ObIMvccCtxEPNS_11transaction9tablelock14ObLockMemtableE +_ZN9oceanbase8memtable24ObMemtableCtxCbAllocator5allocEl +_ZN9oceanbase11transaction9tablelock12ObLockMemCtx22alloc_lock_op_callbackEv +_ZN9oceanbase11transaction14ObPartTransCtx12start_accessERKNS0_8ObTxDescEl +_ZN9oceanbase11transaction17TransTableSeqLock10write_lockEv +_ZN9oceanbase8memtable13ObMemtableCtx7inc_refEv +_ZN9oceanbase11transaction22CtxTransTableLockGuardD1Ev +_ZN9oceanbase11transaction22CtxTransTableLockGuardD2Ev +_ZN9oceanbase8memtable18ObTransCallbackMgr21acquire_callback_listEv +_ZN9oceanbase3sql16ObDASUpdIterator12get_next_rowERPNS_6common8ObNewRowE +_ZN9oceanbase3sql23ObEndTransCbPacketParamaSERKS1_ +_ZN9oceanbase6common19ModulePageAllocator4freeEPv +_ZN9oceanbase8observer15ObSyncCmdDriver15response_resultERNS0_16ObMySQLResultSetE +_ZN9oceanbase6common13ObSEArrayImplIPNS_3sql22ObInMemoryTopnSortImpl13SortStoredRowELl50ENS0_19ModulePageAllocatorELb0EE7destroyEv +_ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv +_ZN9oceanbase3sql5ObSql20handle_physical_planERKNS_6common8ObStringERNS0_8ObSqlCtxERNS0_11ObResultSetERNS0_14ObPlanCacheCtxEib +OPENSSL_cleanse +_ZN9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE5reuseEv +_ZN9oceanbase3sql18ObBasicSessionInfo14set_cur_sql_idEPc +MD5_Init +_ZN9oceanbase6common16ObFixedArrayImplINS_5share6schema10ObNeedPrivENS0_12ObIAllocatorEE7destroyEv +_ZN9oceanbase3sql16ObPrivilegeCheck22check_password_expiredERKNS0_8ObSqlCtxENS0_4stmt8StmtTypeE +_ZN9oceanbase3sql5ObSql15generate_sql_idERNS0_14ObPlanCacheCtxEbR11ParseResultRNS_6common8ObStringEi +_ZN9oceanbase6common11to_hex_cstrEPKvlPcl +_ZN9oceanbase6common16ObFixedArrayImplINS_5share6schema13ObOraNeedPrivENS0_12ObIAllocatorEE7destroyEv +MD5 +_ZN9oceanbase11transaction8ObTxDesc30release_all_implicit_savepointEv +_ZN9oceanbase3sql16ObHashDistinctOp11inner_closeEv +_ZN9oceanbase6common9SCondTempILi3EE7prepareEi +_ZN9oceanbase3sql13ObDASInsertOpD2Ev +_ZN9oceanbase3sql20ObSqlMemMgrProcessor4initEPNS_6common12ObIAllocatorEmlNS0_17ObPhyOperatorTypeEmPNS0_13ObExecContextE +_ZN9oceanbase3omt17ObTenantConfigMgr12get_instanceEv +_ZN9oceanbase12blocksstable16ObTmpFileManager12get_instanceEv +_ZN9oceanbase3sql17ObSqlWorkareaUtil17get_workarea_sizeENS0_17ObSqlWorkAreaTypeElRl +_ZN9oceanbase3sql24ObTenantSqlMemoryManager18get_work_area_sizeEPNS_6common12ObIAllocatorERNS0_20ObSqlWorkAreaProfileE +_ZN9oceanbase3sql12ObSortOpImpl4initEmPKNS_6common8ObIArrayINS0_20ObSortFieldCollationEEEPKNS3_INS2_9ObCmpFuncEEEPNS0_9ObEvalCtxEPNS0_13ObExecContextEbbblll +_ZN9oceanbase3sql17ObChunkDatumStore4initElmlPKcbjl +_ZZN9oceanbase3sql13ObCmdExecutor7executeERNS0_13ObExecContextERNS0_6ObICmdEENK4$_21clEv.9f50165c44148c1c108cb64accd07fe7 +_ZN9oceanbase8observer16ObMPPacketSender7do_initEPNS_3rpc9ObRequestEhbbl +_ZN9oceanbase7storage30ObSSTableMultiVersionRowGetter18inner_get_next_rowERPKNS_12blocksstable10ObDatumRowE +_ZN9oceanbase3lib25ObTenantResourceMgrHandle14get_memory_mgrEv +_ZN9oceanbase12blocksstable13ObRowCacheKeyD1Ev +_ZN9oceanbase12blocksstable13ObRowCacheKeyD2Ev +_ZN9oceanbase6common9Ob2DArrayIPNS_3sql20ObAggregateProcessor8GroupRowELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS5_Ll64ES6_Lb0EEEE9push_backERKS5_ +_ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE18get_next_partitionENS0_9InputSideE +_ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl +_ZN9oceanbase3sql13ObStmtFactory7destoryEv +_ZN9oceanbase6common13ObSEArrayImplIPKNS_3sql6ObHintELl8ENS0_19ModulePageAllocatorELb1EED2Ev +_ZN9oceanbase6common11ObArrayImplINS_3sql9ObVarInfoENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev +_ZN9oceanbase6common11ObArrayImplINS_5share6schema18ObSchemaObjVersionENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_17DefaultItemEncodeIS4_EEED2Ev +_ZN9oceanbase6common11ObArrayImplINS_3sql18ObPCConstParamInfoENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev +_ZN9oceanbase6common13ObSEArrayImplINS_3sql18ObHiddenColumnItemELl1ENS0_19ModulePageAllocatorELb1EED2Ev +_ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE16est_bucket_countEllll +_ZN9oceanbase3sql15ObTableDeleteOp18inner_get_next_rowEv +_ZNK9oceanbase6common12ObIAllocator4usedEv +_ZN9oceanbase3sql13ObDASDeleteOp10release_opEv +_ZN9oceanbase3sql19ObScalarAggregateOp11inner_closeEv +_ZN9oceanbase3sql20ObSqlMemMgrProcessor31unregister_profile_if_necessaryEv +_ZN9oceanbase3sql13AllocOpHelperILi10EE5allocERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputElRPNS0_10ObOperatorE +_ZN9oceanbase11transaction9tablelock9ObOBJLock4lockERKNS1_11ObLockParamERNS_7storage10ObStoreCtxERKNS1_13ObTableLockOpERKhRNS_6common8ObMallocERNSE_4hash19ObIteratableHashSetINS0_9ObTransIDELm16EEE +_ZN9oceanbase11transaction9tablelock9ObOBJLock5lock_ERKNS1_11ObLockParamERKNS1_13ObTableLockOpERKhRbRNS_6common8ObMallocERNSC_4hash19ObIteratableHashSetINS0_9ObTransIDELm16EEE +_ZN9oceanbase3sql13TriggerHandle19do_handle_after_rowERNS0_15ObTableModifyOpERKNS0_14ObTrigDMLCtDefERNS0_14ObTrigDMLRtDefEm +_ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE16init_mem_contextEm +_ZN9oceanbase3sql20ObAggregateProcessorC1ERNS0_9ObEvalCtxERNS_6common8ObIArrayINS0_10ObAggrInfoEEERKNS_3lib7ObLabelE +_ZN9oceanbase3sql20ObAggregateProcessorC2ERNS0_9ObEvalCtxERNS_6common8ObIArrayINS0_10ObAggrInfoEEERKNS_3lib7ObLabelE +_ZN9oceanbase11transaction8ObTxPartC1Ev +_ZN9oceanbase11transaction8ObTxPartC2Ev +_ZN9oceanbase6common16ObMemLeakChecker8on_allocERNS_3lib7AObjectERKNS2_9ObMemAttrE +_ZN9oceanbase6common19GlobalHazardVersion16get_thread_storeERPNS0_24KVCacheHazardThreadStoreE +_ZN9oceanbase11transaction9tablelock9ObOBJLock17check_allow_lock_ERKNS1_13ObTableLockOpERKhRNS_6common4hash19ObIteratableHashSetINS0_9ObTransIDELm16EEERbRNS8_8ObMallocE +_ZN9oceanbase11transaction9tablelock9ObOBJLock17check_allow_lock_ERKNS1_13ObTableLockOpERKhRNS_6common4hash19ObIteratableHashSetINS0_9ObTransIDELm16EEERbbb +_ZN9oceanbase3sql16ObHashDistinctOp10inner_openEv +_ZN9oceanbase3sql14ObExprValuesOp10inner_openEv +_ZN9oceanbase3sql10ObSQLUtils21get_default_cast_modeEbjPKNS0_16ObSQLSessionInfoERm +_ZN9oceanbase3sql10ObSQLUtils21get_default_cast_modeERKNS0_4stmt8StmtTypeEPKNS0_16ObSQLSessionInfoERm +_ZN9oceanbase3sql13ObDatumCaster4initERNS0_13ObExecContextE +_ZN9oceanbase3sql6ObExprC1Ev +_ZN9oceanbase3sql6ObExprC2Ev +_ZN9oceanbase3sql15ObTableInsertOp18inner_get_next_rowEv +_ZN9oceanbase3sql15ObTableInsertOp15calc_tablet_locERKNS0_10ObInsCtDefERNS0_10ObInsRtDefERPNS0_14ObDASTabletLocE +_ZN9oceanbase6common6ObListIPNS_3sql14ObDASTabletLocENS0_12ObIAllocatorEE9push_backERKS4_ +_ZN9oceanbase3sql19ObDASLocationRouter14get_tablet_locERKNS0_17ObDASTableLocMetaERKNS_6common10ObTabletIDERNS0_14ObDASTabletLocE +_ZN9oceanbase3sql19ObDASLocationRouter10get_leaderEmRKNS_6common10ObTabletIDERNS0_14ObDASTabletLocEl +_ZN9oceanbase3sql17ObPhysicalPlanCtx22sync_last_value_globalEv +_ZN9oceanbase3sql13AllocOpHelperILi12EE5allocERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputElRPNS0_10ObOperatorE +_ZN9oceanbase3sql16ObHashDistinctOpC1ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE +_ZN9oceanbase3sql16ObHashDistinctOpC2ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE +_ZN9oceanbase3sql15ObTableInsertOp10inner_openEv +_ZN9oceanbase3sql12ObDMLService14init_ins_rtdefERNS0_10ObDMLRtCtxERNS0_10ObInsRtDefERKNS0_10ObInsCtDefERNS_6common8ObIArrayIPNS0_6ObExprEEE +_ZNK9oceanbase5share6schema18ObTableSchemaParam16is_rowkey_columnEmRb +_ZN9oceanbase7obmysql11ObMySQLUtil15number_cell_strEPclRKNS_6common6number8ObNumberERlsbi +_ZN9oceanbase11transaction14ObTransService23acquire_local_snapshot_ERKNS_5share6ObLSIDERl +_ZN9oceanbase7storage17ObLSTabletService22process_data_table_rowERNS0_14ObTabletHandleERNS0_15ObDMLRunningCtxERKNS_6common8ObIArrayIlEERKNS0_10ObStoreRowESD_b +_ZNK9oceanbase7storage15ObRelativeTable13get_tablet_idEv +_ZN9oceanbase7storage8ObTablet31insert_row_without_rowkey_checkERNS0_15ObRelativeTableERNS0_10ObStoreCtxERKNS_6common8ObIArrayINS_5share6schema9ObColDescEEERKNS0_10ObStoreRowE +_ZN9oceanbase7storage19ObStorageTableGuardC1EPNS0_8ObTabletERNS0_10ObStoreCtxEbblb +_ZN9oceanbase7storage19ObStorageTableGuardC2EPNS0_8ObTabletERNS0_10ObStoreCtxEbblb +_ZNK9oceanbase7storage9ObFreezer9is_freezeEj +_ZN9oceanbase8memtable10ObMemtable3setERNS_7storage10ObStoreCtxEmRKNS2_15ObTableReadInfoERKNS_6common8ObIArrayINS_5share6schema9ObColDescEEERKNS2_10ObStoreRowE +_ZN9oceanbase12blocksstable11ObRowWriter5resetEv +_ZN9oceanbase8memtable10ObMemtable22set_max_schema_versionEl +_ZN9oceanbase8memtable10ObMemtable4set_ERNS_7storage10ObStoreCtxEmRKNS2_15ObTableReadInfoERKNS_6common8ObIArrayINS_5share6schema9ObColDescEEERKNS2_10ObStoreRowEPSH_PKNS9_IlEE +_ZN9oceanbase7storage19ObStoreRowLockState5resetEv +_ZN9oceanbase12blocksstable11ObRowWriterC1Ev +_ZN9oceanbase12blocksstable11ObRowWriterC2Ev +_ZN9oceanbase8memtable10ObMemtable11mvcc_write_ERNS_7storage10ObStoreCtxEPKNS0_13ObMemtableKeyERKNS2_15ObTableReadInfoERKNS0_11ObTxNodeArgERb +_ZN9oceanbase6common20ObGMemstoreAllocator11AllocHandle5allocEl +_ZN9oceanbase6common7ObLatchC1Ev +_ZN9oceanbase6common7ObLatchC2Ev +_ZNK9oceanbase8memtable13ObMemtableCtx10is_can_elrEv +_ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl4ENS0_19ModulePageAllocatorELb0EE9push_backERKS4_ +_ZN9oceanbase8memtable13ObMemtableCtx24add_trans_mem_total_sizeEl +_ZN9oceanbase8memtable13ObMemtableCtx14callback_allocEl +_ZN9oceanbase8memtable15RowHeaderGetter3getEv +_ZN9oceanbase12blocksstable19ObDatumRowkeyHelperD2Ev +_ZN9oceanbase12blocksstable20ObStorageDatumBuffer5resetEv +_ZN9oceanbase6common15ObFIFOAllocator5allocEl +_ZN9oceanbase8memtable9ObMvccRow24update_max_trans_versionElRKNS_11transaction9ObTransIDE +_ZN9oceanbase12blocksstable9ObSSTable16check_row_lockedERNS_7storage10ObStoreCtxERKNS2_15ObTableReadInfoERKNS0_13ObDatumRowkeyERNS2_19ObStoreRowLockStateE +_ZN9oceanbase12blocksstable19ObDatumRowkeyHelperC2Ev +_ZN9oceanbase12blocksstable20ObStorageDatumBufferC1EPNS_6common12ObIAllocatorE +_ZN9oceanbase12blocksstable20ObStorageDatumBufferC2EPNS_6common12ObIAllocatorE +_ZN9oceanbase12blocksstable11ObRowWriterD1Ev +_ZN9oceanbase12blocksstable11ObRowWriterD2Ev +_ZN9oceanbase8memtable10ObIMvccCtx22register_row_commit_cbEPKNS0_13ObMemtableKeyEPNS0_9ObMvccRowEPNS0_15ObMvccTransNodeElPKNS0_9ObRowDataEPNS0_10ObMemtableEl +_ZN9oceanbase8memtable18ObTransCallbackMgr6appendEPNS0_16ObITransCallbackE +_ZN9oceanbase8memtable13ObMemtableCtx19inc_unsubmitted_cntEv +_ZN9oceanbase8memtable10ObMemtable19inc_unsubmitted_cntEv +_ZN9oceanbase8memtable13ObMemtableCtx16inc_unsynced_cntEv +_ZN9oceanbase8memtable10ObMemtable16inc_unsynced_cntEv +_ZN9oceanbase8memtable12ObMvccEngine9ensure_kvEPKNS0_13ObMemtableKeyEPNS0_9ObMvccRowE +_ZN9oceanbase12blocksstable19ObDatumRowkeyHelper20convert_datum_rowkeyERKNS_6common8ObRowkeyERNS0_13ObDatumRowkeyE +_ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl4ENS0_19ModulePageAllocatorELb0EED2Ev +_ZN9oceanbase8memtable12ObMvccEngine9create_kvEPKNS0_13ObMemtableKeyEPS2_RPNS0_9ObMvccRowERNS0_15RowHeaderGetterERb +_ZNK9oceanbase6common8ObRowkey10murmurhashEm +_ZN9oceanbase8memtable13ObMTKVBuilder7dup_keyERPNS_6common13ObStoreRowkeyERNS2_12ObIAllocatorEPKS3_ +_ZN9oceanbase12blocksstable11ObRowWriter5writeElRKNS_7storage10ObStoreRowEPKNS_6common8ObIArrayIlEERPcRl +_ZN9oceanbase12blocksstable11ObRowWriter15inner_write_rowElRKNS_7storage10ObStoreRowEPKNS_6common8ObIArrayIlEE +_ZN9oceanbase12blocksstable11ObRowWriter13append_columnERKNS_6common5ObObjE +_ZN9oceanbase8memtable13ObQueryEngine3setEPKNS0_13ObMemtableKeyEPNS0_9ObMvccRowE +_ZN9oceanbase8memtable8ObMtHash6insertEPKNS0_20ObStoreRowkeyWrapperEPKNS0_9ObMvccRowE +_ZN9oceanbase7storage19ObStorageTableGuard25refresh_and_protect_tableERNS0_15ObRelativeTableE +_ZN9oceanbase8memtable10ObMemtable15get_freeze_flagEv +_ZN9oceanbase8memtable10ObMemtable20get_is_tablet_freezeEv +_ZN9oceanbase7storage20ObTableStoreIterator18get_boundary_tableEb +_ZN9oceanbase7storage19ObStorageTableGuard26double_check_inc_write_refEjbPNS_8memtable11ObIMemtableERb +_ZN9oceanbase8memtable8ObMtHash14insert_mt_nodeEPKNS0_20ObStoreRowkeyWrapperElPKNS0_9ObMvccRowEPNS0_10ObHashNodeE +_ZN9oceanbase7storage19ObStorageTableGuardD1Ev +_ZN9oceanbase7storage19ObStorageTableGuardD2Ev +_ZNK9oceanbase8memtable10ObMemtable18is_frozen_memtableEv +_ZN9oceanbase8memtable10ObMemtable13dec_write_refEv +_ZN9oceanbase8memtable15RowHolderMapper15set_hash_holderERKNS_6common10ObTabletIDERKNS0_13ObMemtableKeyERKNS_11transaction9ObTransIDE +_ZN9oceanbase8memtable10ObMemtable7set_endERNS0_15ObMvccAccessCtxEi +_ZN9oceanbase8memtable12ObMvccEngine10mvcc_writeERNS0_14ObIMemtableCtxElRNS0_9ObMvccRowERKNS0_11ObTxNodeArgERNS0_17ObMvccWriteResultE +_ZN9oceanbase8memtable13ObMemtableCtx18get_tx_table_guardEv +_ZN9oceanbase8memtable9ObMvccRow11mvcc_write_ERNS0_14ObIMemtableCtxERNS0_15ObMvccTransNodeElRNS0_17ObMvccWriteResultE +_ZN9oceanbase8memtable8ObMtHash15get_bucket_nodeElmRPNS0_10ObHashNodeERNS1_9GenealogyE +_ZN9oceanbase8keybtree10ObKeyBtree6insertENS_8memtable20ObStoreRowkeyWrapperERPNS2_9ObMvccRowE +_ZN9oceanbase8keybtree11WriteHandle9find_pathEPNS0_9BtreeNodeENS_8memtable20ObStoreRowkeyWrapperE +_ZNK9oceanbase8memtable20ObStoreRowkeyWrapper7compareERKS1_Ri +_ZN9oceanbase6common13ObObjCmpFuncs7compareERKNS0_5ObObjES4_NS0_15ObCollationTypeERi +_ZNK9oceanbase6common5ObObj32check_collation_free_and_compareERKS1_Ri +_ZN9oceanbase6common6QClock14enter_criticalEv +_ZN9oceanbase8keybtree10ObKeyBtree6retireERNS_6common10HazardListE +_ZN9oceanbase6common13RetireStation10RetireList6retireERNS0_10HazardListES4_lRNS0_6QClockE +_ZZN9oceanbase8memtable10ObMemtable4set_ERNS_7storage10ObStoreCtxEmRKNS2_15ObTableReadInfoERKNS_6common8ObIArrayINS_5share6schema9ObColDescEEERKNS2_10ObStoreRowEPSH_PKNS9_IlEEENK5$_243clEPKc.1dd22efca7fa83ae50e8099a04ad3959 +_ZZN9oceanbase8memtable8ObMtHash6insertEPKNS0_20ObStoreRowkeyWrapperEPKNS0_9ObMvccRowEENKUlPKcE0_clES9_ +_ZN9oceanbase7storage23ObStorageSchemaRecorder25try_update_storage_schemaEll +_ZZN9oceanbase3sql20ObDASIndexDMLAdaptorILi3ENS0_16ObDASUpdIteratorEE12write_tabletERS2_RlENKUlPKcE_clES7_ +_ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE17finish_insert_rowEv +_ZN9oceanbase3sql24ObTenantSqlMemoryManager28unregister_work_area_profileERNS0_20ObSqlWorkAreaProfileE +_ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEED2Ev +_ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE16ObIntraPartitionD2Ev +_ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE7destroyEv +_ZN9oceanbase3sql18ObEndTransExecutor9end_transERNS0_13ObExecContextERNS0_14ObEndTransStmtE +_ZN9oceanbase3sql15ObTableDeleteOp10inner_openEv +_ZN9oceanbase3sql12ObDMLService14init_del_rtdefERNS0_10ObDMLRtCtxERNS0_10ObDelRtDefERKNS0_10ObDelCtDefE +_ZN9oceanbase3sql15ObTableModifyOp10inner_openEv +_ZN9oceanbase6common11ObArrayWrapINS_3sql10ObDelRtDefEE14allocate_arrayERNS0_12ObIAllocatorEl +_ZN9oceanbase3sql17ObSqlTransControl18explicit_end_transERNS0_13ObExecContextEb +_ZN9oceanbase3sql17ObSqlTransControl9end_transERNS0_13ObExecContextEbbPNS0_23ObEndTransAsyncCallbackE +_ZN9oceanbase3sql17ObSqlTransControl13do_end_trans_EPNS0_16ObSQLSessionInfoEbblPNS0_23ObEndTransAsyncCallbackE +_ZN9oceanbase6common11ObArrayWrapINS_3sql10ObInsRtDefEE14allocate_arrayERNS0_12ObIAllocatorEl +_ZN9oceanbase3sql23ObExprCalcPartitionBase23calc_part_and_tablet_idEPKNS0_6ObExprERNS0_9ObEvalCtxERmRNS_6common10ObTabletIDE +_ZN9oceanbase6common13ObSEArrayImplImLl1ENS0_19ModulePageAllocatorELb0EED2Ev +_ZN9oceanbase3sql23ObExprCalcPartitionBase26calc_no_partition_locationERKNS0_6ObExprERNS0_9ObEvalCtxERNS_6common7ObDatumE +_ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl1ENS0_19ModulePageAllocatorELb0EE9push_backERKS2_ +_ZN9oceanbase6common13ObSEArrayImplImLl1ENS0_19ModulePageAllocatorELb0EE9push_backERKm +_ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE21append_all_dump_partsEv +_ZN9oceanbase7storage19ObStorageTableGuard29check_freeze_to_inc_write_refEPNS0_8ObITableERb +_ZN9oceanbase8memtable10ObMemtable13inc_write_refEv +_ZNK9oceanbase8memtable10ObMemtable18is_active_memtableEv +_ZN9oceanbase3sql13AllocOpHelperILi24EE5allocERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputElRPNS0_10ObOperatorE +_ZN9oceanbase3sql15ObTableModifyOpC2ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE +_ZN9oceanbase5trace7ObTrace7set_tagIlJEEEv9ObTagTypeRKT_DpT0_ +_ZN9oceanbase3sql15ObTableUpdateOp10inner_openEv +_ZN9oceanbase6common24KVCacheHazardThreadStore6retireEm +_ZN9oceanbase6common12ObKVCacheMap4Node6retireEv +_ZZN9oceanbase3sql16ObDASUpdIterator12get_next_rowERPNS_6common8ObNewRowEENK5$_384clEPKc.45c27dd3dc8b42ec4ef71c6f367bd924 +_ZdlPv +_ZN9oceanbase3sql15ObSQLSessionMgr15inc_session_refEPKNS0_16ObSQLSessionInfoE +_ZN9oceanbase7storage17ObLSTabletService15process_lob_rowERNS0_14ObTabletHandleERNS0_15ObDMLRunningCtxERKNS_6common8ObIArrayIlEEbRNS0_10ObStoreRowESC_SC_ +_ZN9oceanbase6common11ObArrayImplINS0_15ObWarningBuffer11WarningItemENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE7reserveEl +_ZN9oceanbase3sql9ObLogPlan20weak_select_replicasERKNS_6common6ObAddrENS0_17ObRoutePolicyTypeEbRNS2_8ObIArrayIPNS0_15ObCandiTableLocEEERbRNS_5share27ObFollowerFirstFeedbackTypeE +_ZN9oceanbase3sql13ObRoutePolicy4initEv +_ZN9oceanbase3sql13ObRoutePolicy19get_server_localityERKNS_6common6ObAddrERKNS2_8ObIArrayINS_5share16ObServerLocalityEEERS8_ +_ZNK9oceanbase8observer8ObMPBase16do_after_processERNS_3sql16ObSQLSessionInfoEbRNS2_8ObSqlCtxEb +_ZN9oceanbase3sql18ObBasicSessionInfo17set_session_sleepEv +_ZN9oceanbase3sql5ObSql16parser_and_checkERKNS_6common8ObStringERNS0_13ObExecContextERNS0_14ObPlanCacheCtxER11ParseResultiRbSC_ +_ZN9oceanbase3sql8ObParser5parseERKNS_6common8ObStringER11ParseResult9ParseModebbb +_ZN9oceanbase3sql11ObSQLParser5parseEPKclR11ParseResult +obsql_mysql_yylex_init_extra +obsql_mysql_yy_delete_buffer +parse_sql +parse_free +parse_realloc +obsql_mysql_yy_scan_bytes +obsql_mysql_yy_switch_to_buffer +_ZN9oceanbase3sql13AllocOpHelperILi30EE5allocERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputElRPNS0_10ObOperatorE +_ZN9oceanbase7storage17ObLSTabletService15process_old_rowERNS0_14ObTabletHandleERNS0_15ObDMLRunningCtxEbbRNS0_10ObStoreRowE +_ZN9oceanbase7storage17ObLSTabletService23process_old_row_lob_colERNS0_14ObTabletHandleERNS0_15ObDMLRunningCtxERNS0_10ObStoreRowE +_ZN9oceanbase7storage19ObTabletBindingInfoC1Ev +_ZN9oceanbase7storage19ObTabletBindingInfoC2Ev +_ZNK9oceanbase7storage15ObRelativeTable14has_udf_columnERb +_ZNK9oceanbase5share6schema18ObTableSchemaParam14has_udf_columnERb +_ZNK9oceanbase5share6schema9ColumnMap3getEmRi +_ZN9oceanbase3sql12ObDMLService18init_das_dml_rtdefERNS0_10ObDMLRtCtxERKNS0_17ObDASDMLBaseCtDefERNS0_17ObDASDMLBaseRtDefEPKNS0_17ObDASTableLocMetaE +_ZN9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE3getERKS3_RPS4_ +_ZN9oceanbase3sql15ObTableInsertOp11inner_closeEv +_ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl1ENS0_19ModulePageAllocatorELb0EED2Ev +_ZN9oceanbase3sql13AllocOpHelperILi26EE5allocERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputElRPNS0_10ObOperatorE +_ZN9oceanbase3sql12ObDMLService19write_row_to_das_opILi4EEEiRKNS0_17ObDASDMLBaseCtDefERNS0_17ObDASDMLBaseRtDefEPKNS0_14ObDASTabletLocERNS0_10ObDMLRtCtxERKNS_6common12ObFixedArrayIPNS0_6ObExprENSD_12ObIAllocatorEEE +_ZN9oceanbase3sql13ObDASDeleteOp14init_task_infoEv +_ZN9oceanbase3sql13ObDASDeleteOp9write_rowERKNS_6common12ObFixedArrayIPNS0_6ObExprENS2_12ObIAllocatorEEERNS0_9ObEvalCtxERb +_ZNK9oceanbase12blocksstable21ObBloomFilterCacheKeyeqERKNS_6common13ObIKVCacheKeyE +_ZN9oceanbase3sql13AllocOpHelperILi25EE5allocERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputElRPNS0_10ObOperatorE +_ZN9oceanbase3sql15ObTableUpdateOpC1ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE +_ZN9oceanbase3sql15ObTableUpdateOpC2ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE +_ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE23clean_dumped_partitionsEv +_ZN9oceanbase6common4hash9ObHashMapINS_3sql24ObHashPartInfrastructureINS3_14ObHashPartColsENS3_19ObHashPartStoredRowEE14ObIntraPartKeyEPNS7_16ObIntraPartitionENS1_19NoPthreadDefendModeENS1_9hash_funcIS8_EENS1_8equal_toIS8_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS8_SA_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv +_ZN9oceanbase6common4hash11ObHashTableINS_3sql24ObHashPartInfrastructureINS3_14ObHashPartColsENS3_19ObHashPartStoredRowEE14ObIntraPartKeyENS1_11HashMapPairIS8_PNS7_16ObIntraPartitionEEENS1_9hash_funcIS8_EENS1_8equal_toIS8_EENS1_10pair_firstISC_EENS1_13SimpleAllocerINS1_15ObHashTableNodeISC_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv +_ZN9oceanbase3sql8ObDASCtx19extended_tablet_locERNS0_13ObDASTableLocERKNS_6common10ObTabletIDERPNS0_14ObDASTabletLocE +_Z18parser_free_bufferPvS_ +_ZN9oceanbase3sql17ObSqlTransControl18implicit_end_transERNS0_13ObExecContextEbPNS0_23ObEndTransAsyncCallbackE +_ZNK9oceanbase6common8ObRowkey5equalERKS1_Rb +_ZN9oceanbase3sql12ObDMLService18process_delete_rowERKNS0_10ObDelCtDefERNS0_10ObDelRtDefERbRNS0_15ObTableModifyOpE +_ZN9oceanbase3sql16ForeignKeyHandle9do_handleERNS0_15ObTableModifyOpERKNS0_14ObDMLBaseCtDefERNS0_14ObDMLBaseRtDefE +MD5_Update +_ZN9oceanbase3sql20ObDASIndexDMLAdaptorILi4ENS0_16ObDASDMLIteratorEED2Ev +_ZN9oceanbase3sql19ObScalarAggregateOp7destroyEv +_ZN9oceanbase3sql17ObChunkDatumStore15ShadowStoredRow5resetEv +_ZN9oceanbase3sql13ObDatumCaster7destroyEv +_ZN9oceanbase5share16ObServerLocality6assignERKS1_ +_ZN9oceanbase3sql5ObSql16get_outline_dataERNS0_8ObSqlCtxERNS0_14ObPlanCacheCtxERKNS_6common8ObStringERNS0_14ObOutlineStateER11ParseResult +_ZN9oceanbase3sql12ObDMLService19write_row_to_das_opILi2EEEiRKNS0_17ObDASDMLBaseCtDefERNS0_17ObDASDMLBaseRtDefEPKNS0_14ObDASTabletLocERNS0_10ObDMLRtCtxERKNS_6common12ObFixedArrayIPNS0_6ObExprENSD_12ObIAllocatorEEE +_ZN9oceanbase3sql13ObDASInsertOp14init_task_infoEv +_ZN9oceanbase3sql13ObDASInsertOp9write_rowERKNS_6common12ObFixedArrayIPNS0_6ObExprENS2_12ObIAllocatorEEERNS0_9ObEvalCtxERb +_ZN9oceanbase3sql15ObTableModifyOp20merge_implict_cursorEllll +_ZN9oceanbase3sql12ObSortOpImpl4sortEv +_ZSt22__final_insertion_sortIPPN9oceanbase3sql17ObChunkDatumStore9StoredRowEN9__gnu_cxx5__ops15_Iter_comp_iterINS1_12ObSortOpImpl16CopyableComparerEEEEvT_SC_T0_ +_ZN9oceanbase3sql17ObChunkDatumStore8Iterator4initEPS1_lPKNS1_12IterationAgeE +_ZN9oceanbase3sql20ObDASIndexDMLAdaptorILi4ENS0_16ObDASDMLIteratorEE12write_tabletERS2_Rl +_ZN9oceanbase7storage15ObAccessService11delete_rowsERKNS_5share6ObLSIDERKNS_6common10ObTabletIDERNS_11transaction8ObTxDescERKNS0_14ObDMLBaseParamERKNS6_8ObIArrayImEEPNS6_16ObNewRowIteratorERl +_ZN9oceanbase7storage17ObLSTabletService11delete_rowsERNS0_10ObStoreCtxERKNS0_14ObDMLBaseParamERKNS_6common8ObIArrayImEEPNS7_16ObNewRowIteratorERl +_ZN9oceanbase7storage17ObLSTabletService20delete_row_in_tabletERNS0_14ObTabletHandleERNS0_15ObDMLRunningCtxERKNS_6common8ObNewRowE +_ZNK9oceanbase5share6schema16ObSchemaCacheKeyeqERKNS_6common13ObIKVCacheKeyE +_ZN9oceanbase3sql19ObDataAccessService21execute_dist_das_taskERNS0_8ObDASRefERNS0_12ObIDASTaskOpE +_ZNK9oceanbase3sql18ObBasicSessionInfo20get_query_timeout_tsEv +_ZN9oceanbase3sql13ObDASInsertOp7open_opEv +_ZN9oceanbase3sql13ObDASInsertOp11insert_rowsEv +_ZN9oceanbase3sql20ObDASIndexDMLAdaptorILi2ENS0_16ObDASDMLIteratorEED2Ev +_ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEEC2Ev +_ZN9oceanbase3sql17ObChunkDatumStore13ChunkIteratorC1Ev +_ZN9oceanbase3sql17ObChunkDatumStore13ChunkIteratorC2Ev +_ZN9oceanbase12blocksstable17ObTmpFileIOHandleC1Ev +_ZN9oceanbase12blocksstable17ObTmpFileIOHandleC2Ev +_ZN9oceanbase3sql12ObDMLService22init_related_das_rtdefERNS0_10ObDMLRtCtxERKNS_6common12ObFixedArrayIPNS0_17ObDASDMLBaseCtDefENS4_12ObIAllocatorEEERNS4_11ObArrayWrapIPNS0_17ObDASDMLBaseRtDefEEE +_ZZN9oceanbase11transaction14ObPartTransCtx12start_accessERKNS0_8ObTxDescElENK5$_656clEPKc.93feb755617c21c32b229b78773c290c +_ZN9oceanbase3sql15ObTableDeleteOp11inner_closeEv +_ZZN9oceanbase3sql15ObTableUpdateOp23get_next_row_from_childEvENKUlPKcE0_clES3_ +_ZN9oceanbase3sql14ObExprValuesOpC1ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE +_ZN9oceanbase3sql14ObExprValuesOpC2ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE +_ZN9oceanbase3sql12ObSqlPlanSet16get_plan_specialERNS0_14ObPlanCacheCtxERPNS0_14ObPhysicalPlanE +_ZN9oceanbase6common13ObSEArrayImplINS_3sql15ObCandiTableLocELl2ENS0_19ModulePageAllocatorELb0EED2Ev +_ZN9oceanbase3sql12ObSqlPlanSet13get_plan_typeERKNS_6common8ObIArrayINS0_15ObTableLocationEEEbRNS0_14ObPlanCacheCtxERNS3_INS0_15ObCandiTableLocEEERNS0_13ObPhyPlanTypeE +_ZN9oceanbase3sql12ObSqlPlanSet17get_phy_locationsERKNS_6common8ObIArrayINS0_15ObTableLocationEEERNS0_14ObPlanCacheCtxERNS3_INS0_15ObCandiTableLocEEERb +_ZN9oceanbase6common13ObSEArrayImplINS_3sql15ObCandiTableLocELl2ENS0_19ModulePageAllocatorELb0EE5reuseEv +_ZN9oceanbase3sql8ObSortOp11inner_closeEv +_ZN9oceanbase6common9ObKVCacheINS_12blocksstable13ObRowCacheKeyENS2_15ObRowCacheValueEE3getERKS3_RPKS4_RNS0_15ObKVCacheHandleE +_ZN9oceanbase3sql20ObAggregateProcessor7prepareERNS1_8GroupRowE +_ZN9oceanbase3sql20ObDASIndexDMLAdaptorILi2ENS0_16ObDASDMLIteratorEE12write_tabletERS2_Rl +_ZN9oceanbase7storage15ObAccessService11insert_rowsERKNS_5share6ObLSIDERKNS_6common10ObTabletIDERNS_11transaction8ObTxDescERKNS0_14ObDMLBaseParamERKNS6_8ObIArrayImEEPNS6_16ObNewRowIteratorERl +_ZN9oceanbase6common16ObNewRowIterator13get_next_rowsERPNS0_8ObNewRowERl +_ZN9oceanbase8memtable13ObMemtableCtx19get_query_allocatorEv +_ZN9oceanbase3sql16ObDASDMLIterator12get_next_rowERPNS_6common8ObNewRowE +_ZN9oceanbase7storage17ObLSTabletService11insert_rowsERNS0_10ObStoreCtxERKNS0_14ObDMLBaseParamERKNS_6common8ObIArrayImEEPNS7_16ObNewRowIteratorERl +_ZN9oceanbase7storage16ObTableIterParamC1Ev +_ZN9oceanbase7storage16ObTableIterParamC2Ev +_ZN9oceanbase7storage20ObTableAccessContextC1Ev +_ZN9oceanbase7storage20ObTableAccessContextC2Ev +_ZN9oceanbase7storage16ObTableStoreStatC1Ev +_ZN9oceanbase7storage16ObTableStoreStatC2Ev +_ZN9oceanbase7storage10ObRowsInfo4initERKNS0_15ObRelativeTableERNS0_10ObStoreCtxERKNS0_15ObTableReadInfoE +_ZZN9oceanbase3sql16ObDASDMLIterator12get_next_rowERPNS_6common8ObNewRowEENK4$_86clEPKc.45c27dd3dc8b42ec4ef71c6f367bd924 +_ZN9oceanbase7storage10ObRowsInfo11ExistHelper4initERKNS0_15ObRelativeTableERNS0_10ObStoreCtxERKNS0_15ObTableReadInfoERNS_6common23ObReserveArenaAllocatorILl1024EEE +_ZN9oceanbase7storage10ObRowsInfoC1Ev +_ZN9oceanbase7storage10ObRowsInfoC2Ev +_ZN9oceanbase7storage10ObRowsInfoD1Ev +_ZN9oceanbase7storage10ObRowsInfoD2Ev +_ZN9oceanbase7storage20ObTableAccessContextD1Ev +_ZN9oceanbase7storage20ObTableAccessContextD2Ev +_ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable13ObDatumRowkeyELl1ENS0_19ModulePageAllocatorELb0EED2Ev +_ZN9oceanbase7storage17ObLSTabletService21insert_rows_to_tabletERNS0_14ObTabletHandleERNS0_15ObDMLRunningCtxEPKNS_6common8ObNewRowElRNS0_10ObRowsInfoEPNS0_10ObStoreRowERlSE_ +_ZN9oceanbase7storage17ObLSTabletService22insert_lob_tablet_rowsERNS0_14ObTabletHandleERNS0_15ObDMLRunningCtxEPNS0_10ObStoreRowEl +_ZN9oceanbase7storage17ObLSTabletService21insert_lob_tablet_rowERNS0_14ObTabletHandleERNS0_15ObDMLRunningCtxERNS0_10ObStoreRowE +_ZNK9oceanbase12blocksstable13ObRowCacheKey4hashERm +_ZN9oceanbase8observer16ObAsyncCmdDriver15response_resultERNS0_16ObMySQLResultSetE +_ZN9oceanbase3sql23ObEndTransCbPacketParam4fillERNS0_11ObResultSetERNS0_16ObSQLSessionInfoERKNS_6common12ObCurTraceId7TraceIdE +_ZZN9oceanbase3sql16ObHashDistinctOp10inner_openEvENK5$_457clEPKc.ae889f3027d8490103b30de3c389dd2f +_ZNK9oceanbase6common8ObRowkey9deep_copyINS0_12ObIAllocatorEEEiRS1_RT_ +_ZN9oceanbase6common20ObGMemstoreAllocator5allocERNS1_11AllocHandleEl +_ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv +_ZN9oceanbase7storage15ObTenantFreezer34check_tenant_out_of_memstore_limitERb +_ZN9oceanbase5share19ObTenantSwitchGuard7releaseEv +_ZN9oceanbase6common11ObFifoArena5allocElRNS1_6HandleEl +_ZN9oceanbase5share19ObTenantSwitchGuard9switch_toEmb +_ZZN9oceanbase3sql16ObHashDistinctOp19do_unblock_distinctEvENK5$_508clEPKc.ae889f3027d8490103b30de3c389dd2f +_ZN9oceanbase3sql12ObDMLService25check_nested_sql_legalityERNS0_13ObExecContextEm +_ZN9oceanbase3lib9ObjectSet9merge_objEPNS0_7AObjectE +_ZN9oceanbase3sql12ObDMLService18process_insert_rowERKNS0_10ObInsCtDefERNS0_10ObInsRtDefERNS0_15ObTableModifyOpERb +_ZN9oceanbase3sql12ObDMLService17check_column_typeERKNS_6common12ObFixedArrayIPNS0_6ObExprENS2_12ObIAllocatorEEElRKNS2_8ObIArrayINS0_13ColumnContentEEERNS0_15ObTableModifyOpE +_ZN9oceanbase3sql16ObExprColumnConv14column_convertERKNS0_6ObExprERNS0_9ObEvalCtxERNS_6common7ObDatumE +_ZN9oceanbase3sql9ObExprAdd11add_int_intERKNS0_6ObExprERNS0_9ObEvalCtxERNS_6common7ObDatumE +_ZN9oceanbase3sql20datum_accuracy_checkERKNS0_6ObExprEmRNS0_9ObEvalCtxERKNS_6common7ObDatumERS7_Ri +_ZN9oceanbase3sql22string_collation_checkEbNS_6common15ObCollationTypeENS1_9ObObjTypeERNS1_8ObStringE +_ZN9oceanbase6common9ObCharset15well_formed_lenENS0_15ObCollationTypeEPKclRl +_ZL26ob_well_formed_len_utf8mb4PK13ObCharsetInfoPKcS3_mPi.5aa8bf9a2f1d92c2672c2bb9fbfc2e97 +_ZN9oceanbase3sql7int_intERKNS0_6ObExprERNS0_9ObEvalCtxERNS_6common7ObDatumE +_ZN9oceanbase3sql12ObDMLService14check_row_nullERKNS_6common8ObIArrayIPNS0_6ObExprEEERNS0_9ObEvalCtxElRKNS3_INS0_13ColumnContentEEEbRNS0_15ObTableModifyOpE +_ZN9oceanbase3sql19ObArithExprOperator19def_arith_eval_funcINS0_13ObArithOpWrapINS0_19ObIntIntBatchAddRawEEEJEEEiRKNS0_6ObExprERNS0_9ObEvalCtxERNS_6common7ObDatumEDpRT0_ +_ZNK9oceanbase7storage13ObLSTxService13create_tx_ctxENS_11transaction13ObTxCreateArgERbRPNS2_14ObPartTransCtxE +_ZN9oceanbase11transaction12ObLSTxCtxMgr13create_tx_ctxERKNS0_13ObTxCreateArgERbRPNS0_14ObPartTransCtxE +_ZN9oceanbase11transaction12ObLSTxCtxMgr14create_tx_ctx_ERKNS0_13ObTxCreateArgERbRPNS0_14ObPartTransCtxE +_ZN9oceanbase11transaction17ObTransCtxFactory5allocEl +_ZN9oceanbase11transaction7CtxLock4initEPNS0_10ObTransCtxE +_ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE8insert__ERKS2_PS3_iPS8_ +_ZN9oceanbase6common18ObServerObjectPoolINS_11transaction14ObPartTransCtxEE13borrow_objectEv +_ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE16BucketWLockGuardC2ERKNS_6common10SpinRWLockEm +_ZN9oceanbase11transaction12ObLSTxCtxMgr35try_wait_gts_and_inc_max_commit_ts_Ev +_ZN9oceanbase3sql12ObDMLService25filter_row_for_view_checkERKNS_6common12ObFixedArrayIPNS0_6ObExprENS2_12ObIAllocatorEEERNS0_9ObEvalCtxERb +_ZN9oceanbase7storage10ObRowsInfo15check_duplicateEPNS0_10ObStoreRowElRNS0_15ObRelativeTableE +_ZN9oceanbase6common23ObReserveArenaAllocatorILl1024EE5allocEl +_ZN9oceanbase5obrpc18ObRpcProcessorBase15before_responseEi +_ZN9oceanbase3lib9ObjectSet15get_free_objectEj +_ZN9oceanbase11transaction11ObGtsSource22is_external_consistentEv +_ZNK9oceanbase5share6schema16ObSchemaCacheKey4hashEv +_ZN9oceanbase5share17ObLocationService10get_leaderElmRKNS0_6ObLSIDEbRNS_6common6ObAddrE +_ZN9oceanbase5share19ObLSLocationService10get_leaderElmRKNS0_6ObLSIDEbRNS_6common6ObAddrE +_ZN9oceanbase5share19ObLSLocationService3getElmRKNS0_6ObLSIDElRbRNS0_12ObLSLocationE +_ZZN9oceanbase3sql20ObDASIndexDMLAdaptorILi2ENS0_16ObDASDMLIteratorEE12write_tabletERS2_RlENKUlPKcE_clES7_ +_ZN9oceanbase3sql19ObScalarAggregateOp10inner_openEv +_ZN9oceanbase3sql11ObGroupByOp10inner_openEv +_ZN9oceanbase3sql20ObAggregateProcessor4initEv +_ZN9oceanbase3sql17ObChunkDatumStore15ShadowStoredRow4initERNS_6common12ObIAllocatorEl +_ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql20ObAggregateProcessor12IAggrFuncCtxENS0_12ObIAllocatorEE16prepare_allocateEl +_ZN9oceanbase6common9Ob2DArrayIPNS_3sql20ObAggregateProcessor8GroupRowELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS5_Ll64ES6_Lb0EEEE7reserveEl +_ZZN9oceanbase3sql15ObTableInsertOp23get_next_row_from_childEvENK5$_380clEPKc.d0cfd61ae46f76aef14238838f0240b8 +_ZN9oceanbase11transaction14ObPartTransCtx4initEmRKNS_6common6ObAddrEjRKNS0_9ObTransIDElRKNS_5share6ObLSIDEmPNS0_14ObTransServiceEmlbPNS0_12ObLSTxCtxMgrEb +_ZN9oceanbase8memtable13ObMemtableCtx13set_trans_ctxEPNS_11transaction14ObPartTransCtxE +_ZN9oceanbase11transaction14ObPartTransCtx13init_log_cbs_ERKNS_5share6ObLSIDERKNS0_9ObTransIDE +_ZThn664_N9oceanbase11transaction14ObPartTransCtx18set_upstream_stateENS0_9ObTxStateE +_ZN9oceanbase8memtable18ObTransCallbackMgr14set_for_replayEb +_ZN9oceanbase11transaction11ObCtxTxData5resetEv +_ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb0EE7destroyEv +_ZN9oceanbase11transaction12ObTxMDSCache5resetEv +_ZN9oceanbase11transaction14ObPartTransCtx18init_memtable_ctx_EmRKNS_5share6ObLSIDE +_ZN9oceanbase11transaction14ObPartTransCtx13default_init_Ev +_ZN9oceanbase4palf3LSN5resetEv +_ZN9oceanbase11transaction12ObTxMDSRange5resetEv +_ZN9oceanbase11transaction14ObPartTransCtx14reset_log_cbs_Ev +_ZN9oceanbase7storage14ObTxCommitData5resetEv +_ZN9oceanbase6common13ObSEArrayImplINS_11transaction11ObLSLogInfoELl10ENS0_19ModulePageAllocatorELb0EE7destroyEv +_ZN9oceanbase11transaction17ObCLogEncryptInfo5resetEv +_ZN9oceanbase11transaction12ObTxExecInfo5resetEv +_ZN9oceanbase5share13ObEncryptMeta5resetEv +_ZN9oceanbase11transaction11ObCtxTxData4initEPNS0_12ObLSTxCtxMgrEl +_ZN9oceanbase7storage9ObTxTable13alloc_tx_dataERPNS0_8ObTxDataE +_ZN9oceanbase8memtable13ObMemtableCtx4initEm +_ZN9oceanbase8memtable16ObQueryAllocator4initEm +_ZN9oceanbase8memtable24ObMemtableCtxCbAllocator4initEm +_ZZN9oceanbase11transaction14ObPartTransCtx4initEmRKNS_6common6ObAddrEjRKNS0_9ObTransIDElRKNS_5share6ObLSIDEmPNS0_14ObTransServiceEmlbPNS0_12ObLSTxCtxMgrEbENK4$_55clEPKc.93feb755617c21c32b229b78773c290c +_ZN9oceanbase11transaction8ObTxDesc18merge_conflict_txsERKNS_6common8ObIArrayINS0_16ObTransIDAndAddrEEE +_ZN9oceanbase3sql13TriggerHandle20do_handle_before_rowERNS0_15ObTableModifyOpERNS0_17ObDASDMLBaseCtDefERKNS0_14ObTrigDMLCtDefERNS0_14ObTrigDMLRtDefE +_ZNK9oceanbase5share13ObBasicSysVar13get_data_typeEv +_ZN9oceanbase12blocksstable13ObRowCacheKeyC1EmRKNS_6common10ObTabletIDERKNS0_13ObDatumRowkeyERKNS0_19ObStorageDatumUtilsElNS_7storage8ObITable9TableTypeE +_ZN9oceanbase12blocksstable13ObRowCacheKeyC2EmRKNS_6common10ObTabletIDERKNS0_13ObDatumRowkeyERKNS0_19ObStorageDatumUtilsElNS_7storage8ObITable9TableTypeE +_ZN9oceanbase3sql18ObRelationalTCFuncILb1ELNS_6common14ObObjTypeClassE1ELS3_1ELNS2_7ObCmpOpE0EE4evalERKNS0_6ObExprERNS0_9ObEvalCtxERNS2_7ObDatumE +_ZN9oceanbase6common8ObMalloc4freeEPv +_ZN9oceanbase3lib9SetLocker4lockEv +realloc_with_mod_stat +_Z13get_tp_switchv +_ZN9oceanbase6common15ob_easy_reallocEPvm +_ZTWN9oceanbase5obrpc7g_pcodeE +_ZN9oceanbase3lib9SetLocker6unlockEv +_ZN9oceanbase3lib17ObMallocAllocator4freeEPv +_ZN9oceanbase6common12ObLatchMutex8try_lockEjPKj +_ZN9oceanbase3lib12SubObjectMgr24get_tenant_ctx_allocatorEv +_ZN9oceanbase6common20get_mem_leak_checkerEv +_ZN9oceanbase3lib17ObMallocAllocator7reallocEPKvlRKNS0_9ObMemAttrE +_ZN9oceanbase3lib9ObjectMgr12alloc_objectEmRKNS0_9ObMemAttrE +_ZN9oceanbase6common12ObLatchMutex6unlockEv +_ZN9oceanbase3lib12SubObjectMgr11alloc_blockEmRKNS0_9ObMemAttrE +_ZN9oceanbase3lib11ObLockGuardINS0_7ObMutexEEC2ERS2_ +_ZN9oceanbase3lib20ObTenantCtxAllocator11alloc_chunkElRKNS0_9ObMemAttrE +_ZN9oceanbase3lib11ObLockGuardINS0_7ObMutexEED2Ev +_ZN9oceanbase3lib17ObTenantMemoryMgr11alloc_chunkElRKNS0_9ObMemAttrE +_ZN9oceanbase3lib17ObTenantMemoryMgr11update_holdElmRKNS0_7ObLabelERb +_ZNK9oceanbase3lib7ObLabeleqERKS1_ +_ZN9oceanbase3lib9AChunkMgr11alloc_chunkEmb +ev_userdata +easy_connection_write_socket +easy_buf_check_read_space +easy_socket_write +easy_connection_on_readable +_ZN9oceanbase4easy6decodeEP14easy_message_t +easy_pool_alloc_ex +_ZN9oceanbase7obmysql14ObMySQLHandler6decodeEP14easy_message_t +_ZNK9oceanbase8observer11ObSMHandler20get_cs_protocol_typeEP17easy_connection_t +_ZN9oceanbase5obrpc15ObRpcNetHandler6decodeEP14easy_message_t +_ZN9oceanbase6common13ObPageManager14set_tenant_ctxEmm +_ZN9oceanbase6common19ObPageManagerCenter12get_instanceEv +ev_invoke_pending +_ZN9oceanbase8memtable13ObLockWaitMgr4run1Ev +_ZN9oceanbase8memtable13ObLockWaitMgr13check_timeoutEv +_ZN9oceanbase8memtable13ObLockWaitMgr26fetch_deadlocked_sessions_ERPNS_6common9ObSEArrayINS1_8SessPairELl16ENS2_19ModulePageAllocatorELb0EEE +_ZN9oceanbase5share13ObTenantSpace15guard_deinit_cbERKS1_Pc +_ZN9oceanbase11transaction12ObLSTxCtxMgr38get_ls_min_uncommit_tx_prepare_versionERl +_ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE22for_each_in_one_bucketINS0_31IterateMinPrepareVersionFunctorEEEiRT_l +_ZN9oceanbase6common13ObSEArrayImplIPNS_11transaction10ObTransCtxELl32ENS0_19ModulePageAllocatorELb0EED2Ev +_ZN9oceanbase11transaction14ObPartTransCtx31get_prepare_version_if_preparedERbRl +_ZNK10__cxxabiv117__class_type_info12__do_dyncastElNS0_10__sub_kindEPKS0_PKvS3_S5_RNS0_16__dyncast_resultE +easy_socket_read +_ZN9oceanbase8memtable13ObLockWaitMgr12post_processEbRb +easy_connection_request_done +_ZN9oceanbase7obmysql14ObMySQLHandler6encodeEP14easy_request_tPv +_ZN9oceanbase4easy6encodeEP14easy_request_tPv +_ZN9oceanbase6common14ObTscTimestamp12current_timeEv +easy_request_addbuf +_ZN9oceanbase5obrpc15ObRpcNetHandler6encodeEP14easy_request_tPv +_ZN9oceanbase5obrpc22ObRpcProtocolProcessor6encodeEP14easy_request_tPNS0_11ObRpcPacketE +_ZN9oceanbase5obrpc29ObVirtualRpcProtocolProcessor21encode_raw_rpc_packetERNS_6common11ObTimeGuardEP14easy_request_tRPNS0_11ObRpcPacketERi +_ZN9oceanbase5obrpc11ObRpcPacket16encode_ez_headerEPclRl +_ZN9oceanbase5obrpc17ObRpcPacketHeader9serializeEPclRl +_ZNK9oceanbase5obrpc13ObRpcCostTime9serializeEPclRl +_ZN9oceanbase6common13ObLinkHashMapINS0_9ObIntWarpENS_11transaction14ObTsSourceInfoENS3_19ObTsSourceInfoAllocENS0_9RefHandleELl8EE3mapINS7_8HandleOnINS3_19ObGtsRefreshFunctorEEEEEiRT_ +_ZN9oceanbase6common13ObLinkHashMapINS0_9ObIntWarpENS_11transaction14ObTsSourceInfoENS3_19ObTsSourceInfoAllocENS0_9RefHandleELl8EE4nextEPNS0_12LinkHashNodeIS2_EE +easy_buf_destroy +_ZNK10__cxxabiv120__si_class_type_info12__do_dyncastElNS_17__class_type_info10__sub_kindEPKS1_PKvS4_S6_RNS1_16__dyncast_resultE +pipecb.f8d7388e3b0c2a08f5c22fd7550445b6 +_ZNK10__cxxabiv121__vmi_class_type_info12__do_dyncastElNS_17__class_type_info10__sub_kindEPKS1_PKvS4_S6_RNS1_16__dyncast_resultE +_ZN9oceanbase6common4hash11ObHashTableImNS1_12ObReferedMapImNS_10rootserver14DRUnitStatInfoEE4ItemENS1_9hash_funcImEENS1_8equal_toImEENS7_6GetKeyENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi5ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv +_ZN9oceanbase6common13ObLinkHashMapINS0_9ObIntWarpENS_3sql11ObPxResInfoENS3_13ObPxInfoAllocENS0_9RefHandleELl8EE4nextEPNS0_12LinkHashNodeIS2_EE +_ZN9oceanbase10logservice17ObLogApplyService16wait_append_syncERKNS_5share6ObLSIDE +_ZN9oceanbase10logservice11ObLSAdapter16wait_append_syncERKNS_5share6ObLSIDE +easy_connection_on_wakeup +md5_block_asm_data_order +MD5_Final +_ZN9oceanbase6common18ObSimpleThreadPool4run1Ev +_ZN9oceanbase6common13ObLightyQueue3popERPvl +_ZN9oceanbase3lib18MySimpleThreadPool6handleEPv +_ZN9oceanbase10logservice17ObLogApplyService6handleEPv +_ZN9oceanbase10logservice8AppendCb22set_cb_first_handle_tsEl +_ZN9oceanbase10logservice12AppendCbBase19__get_class_addressEPNS_6common6ObLinkE +_ZN9oceanbase10logservice13ObApplyStatus19try_handle_cb_queueEPNS0_23ObApplyServiceQueueTaskERb +_ZN9oceanbase4palf3LSNaSERKS1_ +_ZN9oceanbase11transaction9ObTxLogCb10on_successEv +_ZN9oceanbase11transaction12CtxLockGuardD1Ev +_ZN9oceanbase11transaction12CtxLockGuardD2Ev +_ZN9oceanbase11transaction12CtxLockGuard5resetEv +_ZN9oceanbase11transaction18ObTxCommitCallback5resetEv +_ZN9oceanbase6common8TCRWLock10RLockGuardD2Ev +_ZN9oceanbase11transaction14ObPartTransCtx10on_successEPNS0_9ObTxLogCbE +_ZN9oceanbase6common11ObTimeGuard5clickEPKc +_ZNK9oceanbase11transaction14ObPartTransCtx9is_sub2pcEv +_ZN9oceanbase11transaction12ObLSTxCtxMgr26revert_tx_ctx_without_lockEPNS0_10ObTransCtxE +_ZN9oceanbase11transaction17ObTransCtxFactory7releaseEPNS0_10ObTransCtxE +_ZN9oceanbase10logservice13ObApplyStatus19statistics_cb_cost_ERKNS_4palf3LSNElllll +_ZN9oceanbase11transaction18ObTxCommitCallback8callbackEv +_ZN9oceanbase11transaction14ObTransService23handle_tx_commit_resultERKNS0_9ObTransIDEil +_ZN9oceanbase11transaction11ObTxDescMgr3getERKNS0_9ObTransIDERPNS0_8ObTxDescE +_ZN9oceanbase11transaction11ObTxDescMgr6revertERNS0_8ObTxDescE +_ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocEE3getERKS2_RPS3_ +_ZN9oceanbase6common8TCRWLock10RLockGuardC2ERS1_ +_ZN9oceanbase11transaction8ObTxDesc17execute_commit_cbEv +_ZN9oceanbase6common12ObSliceAlloc4freeEPv +_ZN9oceanbase3sql23ObEndTransAsyncCallback8callbackEi +_ZN9oceanbase8observer15ObSqlEndTransCb8callbackEi +_ZN9oceanbase3sql17ObSqlTransControl22reset_session_tx_stateEPNS0_16ObSQLSessionInfoEb +_ZN9oceanbase3sql17ObSqlTransControl22reset_session_tx_stateEPNS0_18ObBasicSessionInfoEb +_ZThn8_N9oceanbase3sql16ObSQLSessionInfo17reset_tx_variableEv +_ZZN9oceanbase11transaction14ObTransService8reuse_txERNS0_8ObTxDescEENK6$_1272clEPKc.93feb755617c21c32b229b78773c290c +_ZN9oceanbase6common18ObServerObjectPoolINS_11transaction14ObPartTransCtxEE13return_objectEPS3_ +_ZN9oceanbase11transaction14ObPartTransCtx7destroyEv +_ZN9oceanbase6common13ObSEArrayImplINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv +_ZN9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EE7destroyEv +_ZN9oceanbase11transaction11ObTraceInfo5resetEv +_ZN9oceanbase6common13ObSEArrayImplINS_4palf3LSNELl10ENS0_19ModulePageAllocatorELb0EE7destroyEv +_ZN9oceanbase11transaction12ObTxExecInfo7destroyEv +_ZN9oceanbase11transaction12ObTxMDSCache7destroyEv +_ZN9oceanbase11transaction14ObPartTransCtx15on_success_ops_EPNS0_9ObTxLogCbE +_ZN9oceanbase8memtable13ObMemtableCtx32remove_callbacks_for_fast_commitEv +_ZNK9oceanbase11transaction11ObCtxTxData16get_start_log_tsEv +_ZN9oceanbase11transaction14ObPartTransCtx25local_tx_end_side_effect_Eb +_ZNK9oceanbase11transaction14ObPartTransCtx7is_rootEv +_ZN9oceanbase6common14SpinWLockGuardD2Ev +_ZN9oceanbase6common13ObSEArrayImplINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EED2Ev +_ZN9oceanbase11transaction11ObCtxTxData20insert_into_tx_tableEv +_ZN9oceanbase7storage9ObTxTable6insertERPNS0_8ObTxDataE +_ZN9oceanbase7storage13ObTxDataTable17get_memtable_mgr_Ev +_ZN9oceanbase7storage26ObTxDataMemtableWriteGuardD2Ev +_ZN9oceanbase7storage13ObTxDataTable6insertERPNS0_8ObTxDataE +_ZNK9oceanbase7storage8ObITable16get_start_log_tsEv +_ZNK9oceanbase7storage8ObITable14get_end_log_tsEv +_ZN9oceanbase7storage15ObTableHandleV2C1ERKS1_ +_ZN9oceanbase7storage15ObTableHandleV2C2ERKS1_ +_ZN9oceanbase7storage13ObTxDataTable7insert_ERPNS0_8ObTxDataERNS_6common8ObIArrayINS0_15ObTableHandleV2EEE +_ZN9oceanbase7storage15ObTableHandleV220get_tx_data_memtableERPNS0_16ObTxDataMemtableE +_ZN9oceanbase11transaction11ObCtxTxData23check_tx_data_writable_Ev +_ZN9oceanbase7storage13ObTxDataTable21insert_into_memtable_EPNS0_16ObTxDataMemtableERPNS0_8ObTxDataE +_ZN9oceanbase7storage16ObTxDataMemtable6insertEPNS0_8ObTxDataE +_ZN9oceanbase6common13ObLinkHashMapINS_11transaction9ObTransIDENS_7storage8ObTxDataENS4_24TxDataHashMapAllocHandleENS0_9RefHandleELl8EE14insert_and_getERKS3_PS5_ +_ZN9oceanbase6common6DCHashINS_11transaction9ObTransIDELl8EE6HandleD2Ev +_ZN9oceanbase7storage24TxDataHashMapAllocHandle10alloc_nodeEPNS0_8ObTxDataE +_ZN9oceanbase6common13ObLinkHashMapINS_11transaction9ObTransIDENS_7storage8ObTxDataENS4_24TxDataHashMapAllocHandleENS0_9RefHandleELl8EE6revertEPNS0_12LinkHashNodeIS3_EE +_ZN9oceanbase6common13ObLinkHashMapINS_11transaction9ObTransIDENS_7storage8ObTxDataENS4_24TxDataHashMapAllocHandleENS0_9RefHandleELl8EE18get_retire_stationEv +_ZN9oceanbase6common6DCHashINS_11transaction9ObTransIDELl8EE3getERKS3_RPNS0_11KeyHashNodeIS3_EE +_ZN9oceanbase6common6DCHashINS_11transaction9ObTransIDELl8EE6Handle10search_preEmRPNS0_8HashNodeE +_ZN9oceanbase6common6DCHashINS_11transaction9ObTransIDELl8EE6Handle6retireEil +_ZN9oceanbase6common7DCArray10copy_rangeEPS1_mPNS0_8HashNodeE +_ZN9oceanbase6common6DCHashINS_11transaction9ObTransIDELl8EE6insertERKS3_PNS0_11KeyHashNodeIS3_EE +_ZN9oceanbase6common10_ol_insertINS0_11KeyHashNodeINS_11transaction9ObTransIDEEEEEiPT_S7_ +_ZN9oceanbase6common13ObSEArrayImplINS_7storage15ObTableHandleV2ELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv +_ZN9oceanbase6common6DCHashINS_11transaction9ObTransIDELl8EE11alloc_arrayEPNS0_7DCArrayEl +_ZN9oceanbase11transaction14ObPartTransCtx16on_local_commit_Ev +_ZThn72_N9oceanbase11transaction7ObTsMgr15wait_gts_elapseEmlPNS0_10ObTsCbTaskERb +_ZN9oceanbase8memtable13ObMemtableCtx11trans_clearEv +_ZNK9oceanbase11transaction12ObTxMDSCache7copy_toERNS_6common9ObSEArrayINS0_14ObTxBufferNodeELl1ENS2_19ModulePageAllocatorELb0EEE +_ZN9oceanbase11transaction14ObPartTransCtx31wait_gts_elapse_commit_version_ERb +_ZN9oceanbase11transaction14ObPartTransCtx13local_tx_end_Eb +_ZN9oceanbase6common13ObSEArrayImplINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EE5reuseEv +_ZN9oceanbase8memtable13ObMemtableCtx9trans_endEbl +_ZN9oceanbase6common13ObSEArrayImplINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EE6assignERKNS0_8ObIArrayIS3_EE +_ZN9oceanbase11transaction10ObTransCtx24unregister_timeout_task_Ev +_ZN9oceanbase11transaction12ObTransTimer23unregister_timeout_taskERNS0_14ObITimeoutTaskE +_ZN9oceanbase6common11ObTimeWheel6cancelEPNS0_15ObTimeWheelTaskE +_ZN9oceanbase6common13TimeWheelBase6cancelEPNS0_15ObTimeWheelTaskE +_ZNK9oceanbase11transaction11ObCtxTxData14get_end_log_tsEv +_ZN9oceanbase11transaction25ObMulSourceTxDataNotifier6notifyERKNS_6common9ObSEArrayINS0_14ObTxBufferNodeELl1ENS2_19ModulePageAllocatorELb0EEENS0_10NotifyTypeERKNS0_24ObMulSourceDataNotifyArgEPNS0_14ObPartTransCtxE +_ZN9oceanbase11transaction14ObPartTransCtx7tx_end_Ebl +_ZN9oceanbase8memtable13ObMemtableCtx12do_trans_endEbli +_ZN9oceanbase11transaction25ObPartitionAuditInfoCache26stmt_end_update_audit_infoEb +_ZN9oceanbase11transaction16ObTransStatistic21add_trans_mt_end_timeEml +_ZN9oceanbase11transaction7ObTsMgr23get_ts_source_info_opt_EmRNS0_19ObTsSourceInfoGuardEbb +_ZNK9oceanbase7storage8ObTxData25is_valid_in_tx_data_tableEv +_ZN9oceanbase11transaction11ObCtxTxData16set_start_log_tsEl +_ZN9oceanbase11transaction10ObTransCtx12set_exiting_Ev +_ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE3delERKS2_PS3_ +_ZZN9oceanbase10logservice13ObApplyStatus19try_handle_cb_queueEPNS0_23ObApplyServiceQueueTaskERbENK4$_32clEPKc.d3a41d52a3cfae37a6a74713ee8e7132 +_ZN9oceanbase11transaction10ObTransCtx29print_trace_log_if_necessary_Ev +_ZN9oceanbase6common16ObTraceLogConfig13get_log_levelEv +_ZNK9oceanbase6common8ObLogger13get_log_levelEv +_ZN9oceanbase11transaction14ObTransService8reuse_txERNS0_8ObTxDescE +_ZN9oceanbase11transaction11ObTransCond5resetEv +_ZN9oceanbase11transaction11ObTxDescMgr6removeERNS0_8ObTxDescE +_ZN9oceanbase11transaction8ObTxDesc16cancel_commit_cbEv +_ZN9oceanbase11transaction8ObTxDesc5resetEv +_ZN9oceanbase11transaction11ObXATransID5resetEv +_ZN9oceanbase11transaction15ObTxTimeoutTask5resetEv +_ZN9oceanbase6common15ObTimeWheelTask5resetEv +_ZN9oceanbase6common13ObSEArrayImplINS_11transaction8ObTxPartELl4ENS0_19ModulePageAllocatorELb0EE7destroyEv +_ZN9oceanbase11transaction14ObTransService8init_tx_ERNS0_8ObTxDescEj +_ZN9oceanbase6common11ObArrayImplINS_11transaction16ObTransIDAndAddrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE7destroyEv +_ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocEE3delERKS2_PS3_ +_ZZN9oceanbase11transaction11ObTxDescMgr6removeERNS0_8ObTxDescEENK6$_1088clEPKc.6c6f3ed9193054173c335adef4549614 +_ZN9oceanbase11transaction9ObTxLogCb5reuseEv +_ZN9oceanbase7storage26ObTxDataMemtableWriteGuard5resetEv +_ZN9oceanbase7storage16ObTxDataMemtable13dec_write_refEv +_ZN9oceanbase11transaction14ObPartTransCtx20post_tx_commit_resp_Ei +_ZN9oceanbase11transaction10ObTransCtx22defer_commit_callback_Eil +_ZN9oceanbase7storage19ObTxDataMemtableMgr27get_all_memtables_for_writeERNS0_26ObTxDataMemtableWriteGuardE +_ZN9oceanbase7storage16ObTxDataMemtable13inc_write_refEv +_ZN9oceanbase11transaction16ObTransStatistic19add_clog_sync_countEml +_ZN9oceanbase11transaction17ObCLogEncryptInfo7destroyEv +_ZZN9oceanbase11transaction11ObTxDescMgr6revertERNS0_8ObTxDescEENK6$_1087clEPKc.6c6f3ed9193054173c335adef4549614 +_ZN9oceanbase3sql16ObSQLSessionInfo15get_piece_cacheEb +_ZN9oceanbase8memtable18ObTransCallbackMgr9trans_endEb +_ZN9oceanbase8memtable13ObLockWaitMgr6wakeupERKNS_11transaction9ObTransIDE +_ZN9oceanbase8memtable16ObTxCallbackList9tx_commitEv +_ZNK9oceanbase8memtable13ObMemtableCtx9get_tx_idEv +_ZN9oceanbase11transaction9tablelock17ObOBJLockCallback3delEv +_ZN9oceanbase8memtable16ObTxCallbackList9callback_ERNS0_20ObITxCallbackFunctorEPNS0_16ObITransCallbackES5_ +_ZN9oceanbase8memtable16ObITransCallback6removeEv +_ZN9oceanbase8memtable13ObMemtableCtx13callback_freeEPNS0_16ObITransCallbackE +_ZNK9oceanbase11transaction9tablelock17ObOBJLockCallback22is_table_lock_callbackEv +_ZN9oceanbase11transaction9tablelock12ObLockMemCtx21free_lock_op_callbackEPv +_ZN9oceanbase8memtable24ObMemtableCtxCbAllocator4freeEPv +_ZNK9oceanbase8memtable16ObITransCallback22is_table_lock_callbackEv +_ZNK9oceanbase8memtable16ObITransCallback12is_need_freeEv +_ZN9oceanbase8memtable9ObMvccRow12need_compactEbb +_ZN9oceanbase8memtable13ObLockWaitMgr6wakeupEm +_ZN9oceanbase11transaction9tablelock17ObOBJLockCallback12trans_commitEv +_ZN9oceanbase11transaction9tablelock12ObLockMemCtx18remove_lock_recordEPNS1_22ObMemCtxLockOpLinkNodeE +_ZN9oceanbase8memtable13ObLockWaitMgr6wakeupERKNS_6common10ObTabletIDERKNS0_13ObMemtableKeyE +_ZNK9oceanbase6common10ObTabletID4hashEv +_ZNK9oceanbase6common13ObStoreRowkey10murmurhashEm +_ZN9oceanbase6common15ObFIFOAllocator4freeEPv +_ZZN9oceanbase8memtable13ObLockWaitMgr6wakeupEmENK4$_21clEPKc.1dd22efca7fa83ae50e8099a04ad3959 +_ZN9oceanbase11transaction9tablelock14ObLockMemtable18remove_lock_recordERKNS1_13ObTableLockOpEb +_ZN9oceanbase6common13ObLinkHashMapINS_11transaction9tablelock8ObLockIDENS3_9ObOBJLockENS3_14ObOBJLockAllocENS0_9RefHandleELl8EE8dec_urefEPNS0_12LinkHashNodeIS4_EE +_ZN9oceanbase6common13ObLinkHashMapINS_11transaction9tablelock8ObLockIDENS3_9ObOBJLockENS3_14ObOBJLockAllocENS0_9RefHandleELl8EE3getERKS4_RPS5_ +_ZNK9oceanbase8memtable13ObMemtableCtx17get_tx_end_log_tsEv +_ZN9oceanbase8memtable13ObMemtableCtx18remove_lock_recordEPNS_11transaction9tablelock22ObMemCtxLockOpLinkNodeE +_ZZN9oceanbase8memtable13ObLockWaitMgr6wakeupERKNS_6common10ObTabletIDERKNS0_13ObMemtableKeyEENK4$_42clEPKc.1dd22efca7fa83ae50e8099a04ad3959 +_ZZN9oceanbase8memtable13ObLockWaitMgr6wakeupEmENK4$_22clEPKc.1dd22efca7fa83ae50e8099a04ad3959 +_ZN9oceanbase11transaction8ObTxDesc27acq_commit_cb_lock_if_need_Ev +_ZN9oceanbase11transaction14ObTransService24handle_tx_commit_result_ERNS0_8ObTxDescEil +_ZN9oceanbase6common13ObSEArrayImplINS_11transaction13ObTxSavePointELl4ENS0_19ModulePageAllocatorELb0EE7destroyEv +_ZN9oceanbase11transaction14ObTransService18tx_post_terminate_ERNS0_8ObTxDescE +_ZN9oceanbase11transaction16ObTransStatistic25add_trans_total_used_timeEml +_ZN9oceanbase11transaction16ObTransStatistic21add_trans_commit_timeEml +_ZN9oceanbase11transaction11ObCtxTxData14set_end_log_tsEl +_ZN9oceanbase11transaction7ObTsMgr15wait_gts_elapseEmlPNS0_10ObTsCbTaskERb +_ZN9oceanbase11transaction16ObTransStatistic30add_gts_wait_elapse_total_timeEml +_ZN9oceanbase11transaction11ObGtsSource15wait_gts_elapseElPNS0_10ObTsCbTaskERb +_ZN9oceanbase8memtable13ObMemtableCtx13sync_log_succElRKNS0_15ObCallbackScopeE +_ZN9oceanbase8memtable18ObRedoLogGenerator13sync_log_succElRKNS0_15ObCallbackScopeE +_ZN9oceanbase8memtable16ObITransCallback11log_sync_cbEl +_ZN9oceanbase8memtable13ObMemtableCtx16dec_unsynced_cntEv +_ZN9oceanbase11transaction9tablelock17ObOBJLockCallback8log_syncEl +_ZN9oceanbase8memtable16ObITransCallback10set_log_tsEl +_ZN9oceanbase8memtable10ObMemtable16dec_unsynced_cntEv +_ZNK9oceanbase8memtable10ObMemtable13get_write_refEv +_ZN9oceanbase8memtable10ObMemtable18set_max_end_log_tsEl +_ZN9oceanbase8memtable10ObMemtable14set_rec_log_tsEl +_ZN9oceanbase8memtable18ObTransCallbackMgr11RDLockGuardC1ERKNS_6common10SpinRWLockE +_ZN9oceanbase8memtable18ObTransCallbackMgr11RDLockGuardC2ERKNS_6common10SpinRWLockE +_ZN9oceanbase11transaction9tablelock12ObLockMemCtx14set_log_syncedEPNS1_22ObMemCtxLockOpLinkNodeEl +_ZN9oceanbase8memtable13ObMemtableCtx27update_max_submitted_seq_noEl +_ZN9oceanbase8memtable13ObMemtableCtx14set_log_syncedEPNS_11transaction9tablelock22ObMemCtxLockOpLinkNodeEl +_ZZN9oceanbase11transaction14ObTxVersionMgr20update_max_commit_tsElbENKUlPKcE_clES3_ +_ZN9oceanbase8memtable15RowHolderMapper17reset_hash_holderERKNS_6common10ObTabletIDERKNS0_13ObMemtableKeyERKNS_11transaction9ObTransIDE +_ZN9oceanbase8memtable13ObMemtableCtx5resetEv +_ZN9oceanbase8memtable18ObTransCallbackMgr5resetEv +_ZN9oceanbase11transaction8ObTxDescD1Ev +_ZN9oceanbase11transaction8ObTxDescD2Ev +_ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb0EED2Ev +_ZZN9oceanbase8memtable13ObLockWaitMgr6wakeupERKNS_11transaction9ObTransIDEENK4$_43clEPKc.1dd22efca7fa83ae50e8099a04ad3959 +_ZN9oceanbase11transaction9tablelock12ObLockMemCtx5resetEv +_ZN9oceanbase7storage15ObTableHandleV25resetEv +_ZN9oceanbase7storage8ObITable7dec_refEv +_ZN9oceanbase11transaction11ObCtxTxData9set_stateEi +_ZN9oceanbase11transaction14ObTsSourceInfo13get_ts_sourceEmRNS0_15ObTsSourceGuardERb +_ZN9oceanbase6common13ObSEArrayImplINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EE7reserveEl +_ZN9oceanbase11transaction16ObTransStatistic22add_trans_mt_end_countEml +_ZN9oceanbase11transaction9tablelock12ObLockMemCtx16clear_table_lockEbl +_ZN9oceanbase11transaction14ObPartTransCtx24need_callback_scheduler_Ev +_ZN9oceanbase11transaction16ObTransStatistic31add_gts_wait_elapse_total_countEml +_ZN9oceanbase6common8ObLogger10get_loggerEv +_ZN9oceanbase11transaction11ObCtxTxData7destroyEv +_ZN9oceanbase11transaction16ObTransStatistic15add_local_countEml +_ZZN9oceanbase10logservice13ObApplyStatus19try_handle_cb_queueEPNS0_23ObApplyServiceQueueTaskERbENK4$_38clEPKc.d3a41d52a3cfae37a6a74713ee8e7132 +_ZN9oceanbase11transaction10ObTransCtx9test_lockEv +_ZN9oceanbase6common11KeyHashNodeINS_11transaction9ObTransIDEE3setERKS3_ +_ZN9oceanbase10logservice17ObLogApplyService19handle_submit_task_EPNS0_13ObApplyStatusE +_ZN9oceanbase10logservice13ObApplyStatus20try_submit_cb_queuesEv +_ZN9oceanbase10logservice13ObApplyStatus29submit_task_to_apply_service_ERNS0_18ObApplyServiceTaskE +_ZN9oceanbase3lib2TGILNS0_6TGTypeE5EE9push_taskEPv +_ZZN9oceanbase10logservice13ObApplyStatus29submit_task_to_apply_service_ERNS0_18ObApplyServiceTaskEENK4$_69clEPKc.d3a41d52a3cfae37a6a74713ee8e7132 +_ZN9oceanbase11transaction16ObTransStatistic22add_commit_trans_countEml +_ZZN9oceanbase11transaction11ObTxDescMgr3getERKNS0_9ObTransIDERPNS0_8ObTxDescEENK6$_1085clEPKc.6c6f3ed9193054173c335adef4549614 +_ZThn24_N9oceanbase11transaction20ObKeepAliveLSHandler10on_successEv +_ZZN9oceanbase10logservice13ObApplyStatus19try_handle_cb_queueEPNS0_23ObApplyServiceQueueTaskERbENK4$_37clEPKc.d3a41d52a3cfae37a6a74713ee8e7132 +_ZZN9oceanbase10logservice13ObApplyStatus19try_handle_cb_queueEPNS0_23ObApplyServiceQueueTaskERbENK4$_29clEPKc.d3a41d52a3cfae37a6a74713ee8e7132 +_ZN9oceanbase6common21ObFixedClassAllocatorINS_11transaction8ObTxDescEE3getERKNS_3lib7ObLabelE +_ZN9oceanbase8observer16ObMPPacketSender12flush_bufferEb +_ZN9oceanbase11transaction16ObTransStatistic18add_clog_sync_timeEml +_ZN9oceanbase10logservice17ObLogApplyService9push_taskEPNS0_18ObApplyServiceTaskE +_ZN9oceanbase6common18ObSimpleThreadPool4pushEPv +_ZN9oceanbase6common13ObLightyQueue4pushEPv +_ZZN9oceanbase11transaction8ObTxDesc17execute_commit_cbEvENK6$_1040clEPKc.6c6f3ed9193054173c335adef4549614 +_ZN9oceanbase6common13ObLatchWGuardC2ERNS0_7ObLatchEj +_ZN9oceanbase8memtable18ObTransCallbackMgr32remove_callbacks_for_fast_commitERb +_ZN9oceanbase8memtable16ObTxCallbackList32remove_callbacks_for_fast_commitERb +_ZN9oceanbase8memtable16ObTxCallbackList13SpinLockGuardC1ERNS_6common7ObLatchE +_ZN9oceanbase8memtable16ObTxCallbackList13SpinLockGuardC2ERNS_6common7ObLatchE +_ZN9oceanbase6common7ob_freeEPv +_ZN9oceanbase6common13ObLatchWGuardD2Ev +_ZN9oceanbase6common12TCWLockGuardD2Ev +_ZN9oceanbase8memtable16ObTxCallbackList13SpinLockGuardD1Ev +_ZN9oceanbase8memtable16ObTxCallbackList13SpinLockGuardD2Ev +_ZZN9oceanbase10logservice17ObLogApplyService19handle_submit_task_EPNS0_13ObApplyStatusEENK5$_165clEPKc.d3a41d52a3cfae37a6a74713ee8e7132 +_ZZN9oceanbase10logservice13ObApplyStatus29submit_task_to_apply_service_ERNS0_18ObApplyServiceTaskEENK4$_70clEPKc.d3a41d52a3cfae37a6a74713ee8e7132 +_ZN9oceanbase11transaction14ObPartTransCtxD2Ev +_ZN9oceanbase11transaction13ObTxBaseLogCbD2Ev +_ZN9oceanbase11transaction9ObTxLogCbD2Ev +_ZN9oceanbase6common13ObSEArrayImplINS_4palf3LSNELl10ENS0_19ModulePageAllocatorELb0EED2Ev +_ZN9oceanbase11transaction12ObTxExecInfoD2Ev +_ZN9oceanbase8memtable13ObMemtableCtxD1Ev +_ZN9oceanbase8memtable13ObMemtableCtxD2Ev +_ZN9oceanbase6common7ObTimer4run1Ev +_ZN9oceanbase6common12ObKVCacheMap21replace_fragment_nodeERll +_ZN9oceanbase6common12ObBucketLock6wrlockEm +_ZN9oceanbase6common18ObBucketWLockGuardD2Ev +_ZN9oceanbase6common14ObTimerMonitor8end_taskEll +_ZN9oceanbase6common14ObTimerMonitor10start_taskElllPKNS0_11ObTimerTaskE +_ZNK6obutil5Mutex6unlockEv +_ZN9oceanbase4palf16BlockGCTimerTask12runTimerTaskEv +_ZN9oceanbase6common12ObKVCacheMap20internal_map_replaceERPNS1_4NodeES4_S4_ +_ZN9oceanbase4palf11PalfEnvImpl18try_recycle_blocksEv +_ZNK9oceanbase4palf22PalfDiskOptionsWrapper13get_disk_optsERNS0_15PalfDiskOptionsES3_RNS1_6StatusE +_ZN9oceanbase6common7ObTimer12insert_tokenERKNS1_5TokenE +_ZNK9oceanbase4palf22PalfDiskOptionsWrapper12is_shrinkingEv +_ZN9oceanbase4palf11PalfEnvImpl15get_disk_usage_ERlS2_S2_ +_ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE3mapINS7_8HandleOnINS2_11PalfEnvImpl21GetTotalUsedDiskSpaceEEEEEiRT_ +_ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE8HandleOnINS2_11PalfEnvImpl21GetTotalUsedDiskSpaceEEclERS3_PS4_ +_ZNK9oceanbase4palf14PalfHandleImpl25get_total_used_disk_spaceEv +_ZNK9oceanbase4palf10LogStorage18get_block_id_rangeERmS2_ +_ZZN9oceanbase4palf11PalfEnvImpl21GetTotalUsedDiskSpaceclERKNS0_5LSKeyEPNS0_14PalfHandleImplEENK5$_726clEPKc.0e4bf25207570af14a78557c8489c4fc +_ZNK9oceanbase4palf9LogEngine25get_total_used_disk_spaceERl +_ZNK9oceanbase4palf11LogBlockMgr18get_block_id_rangeERmS2_ +_ZNK9oceanbase4palf10LogStorage11get_end_lsnEv +_ZZNK9oceanbase4palf9LogEngine25get_total_used_disk_spaceERlENK5$_522clEPKc.1598dc2348996c1ae1caea6120522988 +_ZN9oceanbase12blocksstable14ObBlockManager19InspectBadBlockTask17inspect_bad_blockEv +ev_run +_ZNK6obutil9ObSysTime14toMicroSecondsEv +easy_pool_create +_ZN9oceanbase11transaction14ObTransService16submit_commit_txERNS0_8ObTxDescElRNS0_13ObITxCallbackEPKNS_6common8ObStringE +_ZN9oceanbase11transaction14ObTransService13do_commit_tx_ERNS0_8ObTxDescElRNS0_13ObITxCallbackERl +_ZN9oceanbase11transaction8ObTxDesc13set_commit_cbEPNS0_13ObITxCallbackE +_ZN9oceanbase11transaction14ObTransService19local_ls_commit_tx_ERKNS0_9ObTransIDERKNS_5share6ObLSIDERKNS_6common9ObSEArrayIS6_Ll3ENS9_19ModulePageAllocatorELb0EEERKlRKNS9_8ObStringESG_Rl +_ZN9oceanbase6common13ObLinkHashMapINS_5share6ObLSIDENS_11transaction12ObLSTxCtxMgrENS4_17ObLSTxCtxMgrAllocENS0_9RefHandleELl8EE8dec_urefEPNS0_12LinkHashNodeIS3_EE +_ZN9oceanbase11transaction10ObTxCtxMgr10get_tx_ctxERKNS_5share6ObLSIDERKNS0_9ObTransIDEbRPNS0_14ObPartTransCtxE +_ZN9oceanbase11transaction14ObTransService22decide_tx_commit_info_ERNS0_8ObTxDescERPNS0_8ObTxPartE +_ZN9oceanbase11transaction11ObTraceInfo18set_app_trace_infoERKNS_6common8ObStringE +_ZN9oceanbase11transaction10ObTxCtxMgr13revert_tx_ctxEPNS0_14ObPartTransCtxE +_ZN9oceanbase11transaction14ObPartTransCtx6commitERKNS_6common9ObSEArrayINS_5share6ObLSIDELl3ENS2_19ModulePageAllocatorELb0EEERKNS0_11MonotonicTsERKlRKNS2_8ObStringESE_ +_ZNK9oceanbase11transaction14ObPartTransCtx20get_downstream_stateEv +_ZN9oceanbase11transaction14ObPartTransCtx31prepare_mul_data_source_tx_end_Eb +_ZNK9oceanbase11transaction11ObCtxTxData18get_commit_versionEv +_ZN9oceanbase11transaction10ObTransCtx19set_app_trace_info_ERKNS_6common8ObStringE +_ZN9oceanbase11transaction14ObPartTransCtx25submit_multi_source_data_Ev +_ZN9oceanbase11transaction12ObTxLogBlockD1Ev +_ZN9oceanbase11transaction12ObTxLogBlockD2Ev +_ZN9oceanbase6common18ObBaseResourcePoolINS_11transaction6LogBufILl1965056EEENS0_10RPStrLabelIXadL_ZNS0_8ObModIds17OB_TRANS_CLOG_BUFEEEEEE10free_node_EPNS8_4NodeE +_ZN9oceanbase6common17get_resource_poolINS_11transaction6LogBufILl1965056EEEXadL_ZNS0_8ObModIds17OB_TRANS_CLOG_BUFEEEEERNS0_14ObResourcePoolIT_NS0_10RPStrLabelIXT0_EEEEEv +_ZN9oceanbase11transaction12ObTxLogBlockC1Ev +_ZN9oceanbase11transaction12ObTxLogBlockC2Ev +_ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EED2Ev +_ZN9oceanbase11transaction14ObPartTransCtx24generate_commit_version_Ev +_ZThn72_N9oceanbase11transaction7ObTsMgr7get_gtsEmNS0_11MonotonicTsEPNS0_10ObTsCbTaskERlRS2_ +_ZN9oceanbase11transaction19ObTransNeedWaitWrap24set_trans_need_wait_wrapENS0_11MonotonicTsEl +_ZN9oceanbase11transaction14ObPartTransCtx8get_gts_ERl +_ZN9oceanbase11transaction11ObCtxTxData18set_commit_versionEl +_ZN9oceanbase11transaction15ObTsSourceGuardD1Ev +_ZN9oceanbase11transaction15ObTsSourceGuardD2Ev +_ZN9oceanbase11transaction19ObTsSourceInfoGuardD1Ev +_ZN9oceanbase11transaction19ObTsSourceInfoGuardD2Ev +_ZN9oceanbase11transaction10ObTransCtx22register_timeout_task_El +_ZN9oceanbase11transaction12ObTransTimer21register_timeout_taskERNS0_14ObITimeoutTaskEl +_ZNK9oceanbase11transaction18ObTransTimeoutTask4hashEv +_ZN9oceanbase6common11ObTimeWheel8scheduleEPNS0_15ObTimeWheelTaskEl +_ZN9oceanbase11transaction14ObPartTransCtx16submit_log_impl_ENS0_11ObTxLogTypeE +_ZNK9oceanbase11transaction14ObPartTransCtx20gen_final_mds_array_ERNS_6common9ObSEArrayINS0_14ObTxBufferNodeELl1ENS2_19ModulePageAllocatorELb0EEEb +_ZN9oceanbase11transaction14ObPartTransCtx18submit_commit_log_Ev +_ZNK9oceanbase4palf3LSN8is_validEv +_ZN9oceanbase4palf3LSNC1Ev +_ZN9oceanbase4palf3LSNC2Ev +_ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EE7destroyEv +_ZN9oceanbase11transaction17ObTxCommitInfoLogD2Ev +_ZN9oceanbase11transaction12ObTxLogBlock4initElRKNS0_18ObTxLogBlockHeaderE +_ZN9oceanbase10logservice15ObLogBaseHeaderD1Ev +_ZN9oceanbase10logservice15ObLogBaseHeaderD2Ev +_ZN9oceanbase11transaction14ClogBufFactory5allocEv +_ZN9oceanbase11transaction12ObTxLogBlock5reuseElRKNS0_18ObTxLogBlockHeaderE +_ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EE9push_backERKS3_ +_ZN9oceanbase11transaction12ObTxLogBlock27serialize_log_block_header_ElRKNS0_18ObTxLogBlockHeaderE +_ZNK9oceanbase10logservice15ObLogBaseHeader9serializeEPclRl +_ZN9oceanbase11transaction16ObTransStatistic12get_instanceEv +_ZN9oceanbase8memtable13ObMemtableCtx17calc_checksum_allEv +_ZN9oceanbase10logservice15ObLogBaseHeaderC1ENS0_13ObLogBaseTypeENS0_19ObReplayBarrierTypeEl +_ZN9oceanbase10logservice15ObLogBaseHeaderC2ENS0_13ObLogBaseTypeENS0_19ObReplayBarrierTypeEl +_ZN9oceanbase6common18ObBaseResourcePoolINS_11transaction6LogBufILl1965056EEENS0_10RPStrLabelIXadL_ZNS0_8ObModIds17OB_TRANS_CLOG_BUFEEEEEE5allocEv +_ZN9oceanbase6common18ObBaseResourcePoolINS_11transaction6LogBufILl1965056EEENS0_10RPStrLabelIXadL_ZNS0_8ObModIds17OB_TRANS_CLOG_BUFEEEEEE11alloc_node_Ev +_ZN9oceanbase11transaction18ObTxLogBlockHeader16before_serializeEv +_ZN9oceanbase11transaction13ObTxCommitLog16before_serializeEv +_ZN9oceanbase11transaction17ObTxSerCompatByte4initEl +_ZN9oceanbase11transaction16ObLSTxLogAdapter10submit_logEPKcllPNS0_13ObTxBaseLogCbEb +_ZN9oceanbase4palf10PalfHandle6appendERKNS0_17PalfAppendOptionsEPKvllRNS0_3LSNERl +_ZN9oceanbase11transaction13ObTxBaseLogCb10set_log_tsEl +_ZN9oceanbase11transaction14ObPartTransCtx17after_submit_log_ERNS0_12ObTxLogBlockEPNS0_9ObTxLogCbEPNS_8memtable21ObRedoLogSubmitHelperE +_ZNK9oceanbase11transaction9tablelock17ObOBJLockCallback16get_mutator_typeEv +_ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EE5reuseEv +_ZN9oceanbase8memtable18ObRedoLogGenerator13log_submittedERKNS0_15ObCallbackScopeE +_ZN9oceanbase8memtable16ObITransCallback16log_submitted_cbEv +_ZN9oceanbase8memtable13ObMemtableCtx19dec_unsubmitted_cntEv +_ZN9oceanbase8memtable10ObMemtable19dec_unsubmitted_cntEv +_ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EE6assignERKNS0_8ObIArrayIS3_EE +_ZN9oceanbase8memtable13ObMemtableCtx13log_submittedERKNS0_21ObRedoLogSubmitHelperE +_ZNK9oceanbase11transaction11ObCtxTxData11get_tx_dataERPKNS_7storage8ObTxDataE +_ZN9oceanbase11transaction14ObPartTransCtx28submit_redo_commit_info_log_ERNS0_12ObTxLogBlockERbRNS_8memtable21ObRedoLogSubmitHelperE +_ZN9oceanbase11transaction12ObTxLogBlock11add_new_logINS0_17ObTxCommitInfoLogEEEiRT_ +_ZNK9oceanbase6common6ObAddr18get_serialize_sizeEv +_ZN9oceanbase6common13serialization14encoded_lengthEm +_ZNK9oceanbase11transaction17ObTxCommitInfoLog19get_serialize_size_Ev +_ZNK9oceanbase5share6ObLSID18get_serialize_sizeEv +_ZN9oceanbase6common13serialization14encoded_lengthINS0_9ObSEArrayINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EEEEElRKT_ +_ZN9oceanbase11transaction17ObTxCommitInfoLogC2ERNS_6common6ObAddrERNS2_9ObSEArrayINS_5share6ObLSIDELl3ENS2_19ModulePageAllocatorELb0EEERS7_bbbRNS2_8ObStringERKSC_RKNS_4palf3LSNERNS5_ISH_Ll10ES8_Lb0EEESA_mRKNS0_11ObXATransIDE +_ZN9oceanbase11transaction17ObTxCommitInfoLog16before_serializeEv +_ZN9oceanbase11transaction17ObTxSerCompatByte15set_object_flagElb +_ZN9oceanbase10logservice12ObLogHandler6appendEPKvllbPNS0_8AppendCbERNS_4palf3LSNERl +_ZN9oceanbase4palf3LSNC1ERKS1_ +_ZN9oceanbase4palf3LSNC2ERKS1_ +_ZNK9oceanbase4palf11LogStateMgr15get_proposal_idEv +_ZN9oceanbase10logservice12AppendCbBase20__get_member_addressEPNS0_8AppendCbE +_ZN9oceanbase6common10ObMiniStat10ObStatItem4statEl +_ZN9oceanbase10logservice13ObApplyStatus14push_append_cbEPNS0_8AppendCbE +_ZN9oceanbase4palf14PalfHandleImpl10submit_logERKNS0_17PalfAppendOptionsEPKcllRNS0_3LSNERl +_ZNK9oceanbase8memtable17ObMvccRowCallback13get_tablet_idEv +_ZN9oceanbase11transaction14ObPartTransCtx18update_rec_log_ts_Ebl +_ZN9oceanbase11transaction12ObTxLogBlock11add_new_logINS0_13ObTxCommitLogEEEiRT_ +_ZNK9oceanbase4palf3LSN18get_serialize_sizeEv +_ZNK9oceanbase11transaction13ObTxCommitLog19get_serialize_size_Ev +_ZN9oceanbase6common13serialization11EnumEncoderILb0ENS_11transaction14ObTxDataBackupEE14encoded_lengthERKS4_ +_ZN9oceanbase8memtable16ObTxCallbackList20tx_calc_checksum_allEv +_ZN9oceanbase11transaction11ObXATransIDC1ERKS1_ +_ZN9oceanbase11transaction11ObXATransIDC2ERKS1_ +_ZN9oceanbase11transaction14ObPartTransCtx14fill_redo_log_EPclRlRNS_8memtable21ObRedoLogSubmitHelperE +_ZN9oceanbase8memtable13ObMemtableCtx13fill_redo_logEPclRlRNS0_21ObRedoLogSubmitHelperEb +_ZN9oceanbase11transaction9tablelock17ObOBJLockCallback13get_data_sizeEv +_ZNK9oceanbase8memtable17ObMvccRowCallback10get_seq_noEv +_ZN9oceanbase8memtable17ObMvccRowCallback13get_data_sizeEv +_ZNK9oceanbase8memtable16ObITransCallback18is_logging_blockedEv +_ZNK9oceanbase8memtable17ObMvccRowCallback16get_mutator_typeEv +_ZN9oceanbase8memtable18ObRedoLogGenerator13fill_redo_logEPclRlRNS0_21ObRedoLogSubmitHelperEb +_ZNK9oceanbase8memtable17ObMvccRowCallback12get_dml_flagEv +_ZNK9oceanbase8memtable17ObMvccRowCallback18is_logging_blockedEv +_ZNK9oceanbase11transaction9tablelock17ObOBJLockCallback10get_seq_noEv +_ZN9oceanbase8memtable18ObMutatorTableLock9serializeEPclRl +_ZN9oceanbase6common13serialization10encode_i32EPclRli +_ZNK9oceanbase11transaction9tablelock8ObLockID9serializeEPclRl +_ZN9oceanbase11transaction9tablelock17ObOBJLockCallback8get_redoERNS_8memtable21TableLockRedoDataNodeE +_ZN9oceanbase8memtable21TableLockRedoDataNode3setEPKNS0_13ObMemtableKeyERKNS_11transaction9tablelock13ObTableLockOpERKNS_6common10ObTabletIDEPNS0_16ObITransCallbackE +_ZN9oceanbase8memtable15ObMutatorWriter13append_row_kvElRKNS0_12RedoDataNodeERKNS_11transaction17ObCLogEncryptInfoEb +_ZNK9oceanbase6common10ObTabletID9serializeEPclRl +_ZN9oceanbase8memtable9ObRowData9serializeEPclRl +_ZN9oceanbase8memtable17ObMvccRowCallback8get_redoERNS0_12RedoDataNodeE +_ZN9oceanbase6common8ob_crc64EmPKvl +_ZNK9oceanbase8memtable18ObMutatorRowHeader9serializeEPclRl +_ZNK9oceanbase11transaction17ObCLogEncryptInfo16get_encrypt_infoEmRbRNS_5share13ObEncryptMetaE +_ZNK9oceanbase6common8ObRowkey9serializeEPclRl +_ZNK9oceanbase8memtable17ObMvccRowCallback19get_cluster_versionERm +_ZN9oceanbase6common8TCRWLock6rdlockEl +_ZN9oceanbase4palf16LogSlidingWindow10submit_logEPKcllRNS0_3LSNERl +_ZNK9oceanbase4palf16LogSlidingWindow12get_start_idEv +_ZN9oceanbase4palf16LogSlidingWindow26leader_can_submit_new_log_El +_ZNK9oceanbase4palf3LSNltERKS1_ +_ZNK9oceanbase4palf3LSNgtERKS1_ +_ZNK9oceanbase4palf16LogSlidingWindow14get_max_log_idEv +_ZNK9oceanbase4palf14LogGroupBuffer18can_handle_new_logERKNS0_3LSNElS4_ +_ZN9oceanbase4palf12LSNAllocator12alloc_lsn_tsEllRNS0_3LSNERlS4_RbS5_S4_ +_ZNK9oceanbase11transaction18ObTxLogBlockHeader9serializeEPclRl +_ZNK9oceanbase11transaction18ObTxLogBlockHeader19serialize_dispatch_EPclRlSt17integral_constantIbLb0EE +_ZNK9oceanbase11transaction18ObTxLogBlockHeader10serialize_EPclRl +_ZN9oceanbase6common13serialization11encode_vi64EPclRll +_ZNK9oceanbase11transaction9ObTransID9serializeEPclRl +_ZNK9oceanbase11transaction9ObTransID10serialize_EPclRl +_ZN9oceanbase11transaction14ObPartTransCtx17get_prev_log_lsn_ERNS_4palf3LSNE +_ZN9oceanbase4palf16LogSlidingWindow20append_to_group_log_ERKNS0_3LSNElllPKclRb +_ZN9oceanbase4palf3LSNC1Em +_ZN9oceanbase4palf3LSNC2Em +_ZN9oceanbase4palfplERKNS0_3LSNEm +_ZNK9oceanbase4palf3LSNleERKS1_ +_ZN9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE3getElRPS2_ +_ZN9oceanbase4palf14LogEntryHeader15generate_headerEPKcll +_ZN9oceanbase4palf14LogEntryHeaderC1Ev +_ZN9oceanbase4palf14LogEntryHeaderC2Ev +_ZN9oceanbase4palf14LogEntryHeader23update_header_checksum_Ev +_ZN9oceanbase4palf14LogGroupBuffer4fillERKNS0_3LSNEPKcl +_ZN9oceanbase4palfmiERKNS0_3LSNES3_ +_ZNK9oceanbase4palf14LogGroupBuffer15get_buffer_pos_ERKNS0_3LSNERl +_ZNK9oceanbase4palf14LogEntryHeader9serializeEPclRl +_ZN9oceanbase4palf14LogGroupBuffer4waitERKNS0_3LSNEl +_ZN9oceanbase4palf16LogSlidingWindow26leader_wait_sw_slot_ready_El +_ZN9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE6revertEl +_ZZN9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE3getElRPS2_ENKUlPKcE0_clES7_ +_ZN9oceanbase8memtable18ObTransCallbackMgr20inc_pending_log_sizeEl +_ZN9oceanbase11transaction13ObTxBaseLogCb7set_lsnERKNS_4palf3LSNE +_ZZN9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE6revertElENKUlPKcE2_clES5_ +_ZN9oceanbase8memtable18ObTransCallbackMgr11RDLockGuardD2Ev +_ZNK9oceanbase11transaction13ObTxCommitLog9serializeEPclRl +_ZN9oceanbase11transaction16ObTransStatistic24add_trans_log_total_sizeEml +_ZNK9oceanbase11transaction13ObTxCommitLog10serialize_EPclRl +_ZNK9oceanbase4palf3LSN9serializeEPclRl +_ZN9oceanbase6common13serialization11encode_vi32EPclRli +_ZNK9oceanbase10logservice12ObLogHandler8is_validEv +_ZNK9oceanbase4palf10PalfHandle8is_validEv +_ZNK9oceanbase6common6ObAddr19get_serialize_size_Ev +_ZN9oceanbase8memtable18ObTransCallbackMgr17calc_checksum_allEv +_ZN9oceanbase8memtable15ObMutatorWriter9serializeEhRl +_ZN9oceanbase6commonL11crc64_sse42EmPKcl.3c99adf4d252691c8becdc9ea2f3cc95 +_ZN9oceanbase6common8ob_crc64EPKvl +_ZN9oceanbase11transaction14ObPartTransCtx28get_max_submitting_log_info_ERNS_4palf3LSNERl +_ZN9oceanbase11transaction14ObPartTransCtx25submit_multi_source_data_ERNS0_12ObTxLogBlockE +_ZN9oceanbase11transaction14ObPartTransCtx16submit_redo_log_ERNS0_12ObTxLogBlockERbRNS_8memtable21ObRedoLogSubmitHelperE +_ZN9oceanbase11transaction14ObPartTransCtx11get_log_cb_EbRPNS0_9ObTxLogCbE +_ZN9oceanbase11transaction14ObPartTransCtx14return_log_cb_EPNS0_9ObTxLogCbE +_ZN9oceanbase11transaction12ObTxLogBlock11add_new_logINS0_11ObTxRedoLogEEEiRT_ +_ZN9oceanbase11transaction12ObTxLogBlock18finish_mutator_bufERNS0_11ObTxRedoLogERKl +_ZN9oceanbase11transaction12ObTxLogBlock19prepare_mutator_bufERNS0_11ObTxRedoLogE +_ZN9oceanbase11transaction11ObTxRedoLog16set_mutator_sizeElb +_ZNK9oceanbase11transaction14ObTxDataBackup9serializeEPclRl +_ZNK9oceanbase11transaction14ObTxDataBackup10serialize_EPclRl +_ZZN9oceanbase4palf12LSNAllocator12alloc_lsn_tsEllRNS0_3LSNERlS4_RbS5_S4_ENK5$_597clEPKc.0e4bf25207570af14a78557c8489c4fc +_ZNK9oceanbase11transaction11ObTxRedoLog9serializeEPclRl +_ZNK9oceanbase11transaction11ObTxRedoLog10serialize_EPclRl +_ZNK9oceanbase11transaction13ObCtxRedoInfo19serialize_dispatch_EPclRlSt17integral_constantIbLb0EE +_ZNK9oceanbase11transaction13ObCtxRedoInfo10serialize_EPclRl +_ZN9oceanbase11transaction16ObTransStatistic21add_clog_submit_countEml +_ZZN9oceanbase4palf14LogEntryHeader15generate_headerEPKcllENK5$_576clES3_.1598dc2348996c1ae1caea6120522988 +_ZZN9oceanbase11transaction14ObPartTransCtx18submit_commit_log_EvENK5$_358clEPKc.93feb755617c21c32b229b78773c290c +_ZZN9oceanbase11transaction14ObTransService13do_commit_tx_ERNS0_8ObTxDescElRNS0_13ObITxCallbackERlENK5$_919clEPKc.93feb755617c21c32b229b78773c290c +_ZN9oceanbase11transaction10ObTransCtx8set_stc_ENS0_11MonotonicTsE +_ZZN9oceanbase4palf14LogEntryHeader23update_header_checksum_EvENK5$_575clEPKc.1598dc2348996c1ae1caea6120522988 +_ZNK9oceanbase11transaction17ObTxCommitInfoLog9serializeEPclRl +_ZNK9oceanbase11transaction17ObTxCommitInfoLog10serialize_EPclRl +_ZNK9oceanbase11transaction17ObTxSerCompatByte15is_object_validEl +_ZN9oceanbase6common13serialization6encodeEPclRlm +_ZNK9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EE9serializeEPclRl +_ZNK9oceanbase5share6ObLSID9serializeEPclRl +_ZNK9oceanbase6common6ObAddr9serializeEPclRl +_ZNK9oceanbase6common6ObAddr10serialize_EPclRl +_ZZN9oceanbase10logservice12ObLogHandler6appendEPKvllbPNS0_8AppendCbERNS_4palf3LSNERlENK5$_196clEPKc.1291a23568de5f940ae06fb9e7354412 +_ZN9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EE5reuseEv +_ZZN9oceanbase4palf14LogGroupBuffer4fillERKNS0_3LSNEPKclENK5$_605clES6_.1598dc2348996c1ae1caea6120522988 +_ZZN9oceanbase11transaction14ObPartTransCtx25submit_multi_source_data_ERNS0_12ObTxLogBlockEENK5$_601clEPKc.93feb755617c21c32b229b78773c290c +_ZN9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EE7reserveEl +_ZZN9oceanbase11transaction14ObTransService22decide_tx_commit_info_ERNS0_8ObTxDescERPNS0_8ObTxPartEENK5$_953clEPKc.93feb755617c21c32b229b78773c290c +_ZZN9oceanbase4palf14PalfHandleImpl10submit_logERKNS0_17PalfAppendOptionsEPKcllRNS0_3LSNERlENK5$_823clES6_.0e4bf25207570af14a78557c8489c4fc +_ZN9oceanbase11transaction7ObTsMgr7get_gtsEmNS0_11MonotonicTsEPNS0_10ObTsCbTaskERlRS2_ +_ZN9oceanbase11transaction11ObGtsSource7get_gtsENS0_11MonotonicTsEPNS0_10ObTsCbTaskERlRS2_ +_ZN9oceanbase5share19ObTenantSwitchGuardD2Ev +_ZN9oceanbase11transaction11ObGtsSource37get_gts_from_local_timestamp_service_ERNS_6common6ObAddrERlRNS0_11MonotonicTsE +_ZN9oceanbase11transaction17ObTimestampAccess10get_numberElRl +_ZN9oceanbase11transaction11ObIDService17check_and_fill_lsEv +_ZN9oceanbase5share25_make_tenant_switch_guardEv +_ZN9oceanbase11transaction11ObGtsSource15get_gts_leader_ERNS_6common6ObAddrE +_ZNK9oceanbase6common6ObAddr8is_validEv +_ZN9oceanbase11transaction11ObIDService10get_numberEllRlS2_ +_ZZN9oceanbase4palf16LogSlidingWindow10submit_logEPKcllRNS0_3LSNERlENK5$_105clES3_.0e4bf25207570af14a78557c8489c4fc +_ZN9oceanbase4palf14LogEntryHeaderD1Ev +_ZN9oceanbase4palf14LogEntryHeaderD2Ev +_ZNK9oceanbase11transaction13ObCtxRedoInfo9serializeEPclRl +_ZZN9oceanbase4palf16LogSlidingWindow10submit_logEPKcllRNS0_3LSNERlENK5$_113clES3_.0e4bf25207570af14a78557c8489c4fc +_ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EE7reserveEl +_ZZN9oceanbase11transaction14ObPartTransCtx6commitERKNS_6common9ObSEArrayINS_5share6ObLSIDELl3ENS2_19ModulePageAllocatorELb0EEERKNS0_11MonotonicTsERKlRKNS2_8ObStringESE_ENK5$_113clEPKc.93feb755617c21c32b229b78773c290c +_ZZN9oceanbase10logservice13ObApplyStatus14push_append_cbEPNS0_8AppendCbEENK4$_20clEPKc.d3a41d52a3cfae37a6a74713ee8e7132 +_ZN9oceanbase4palf16LogSlidingWindow12LogTaskGuardD2Ev +_ZZNK9oceanbase11transaction14ObTxVersionMgr15get_max_read_tsEvENKUlPKcE_clES3_ +_ZZN9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE6revertElENKUlPKcE6_clES5_ +_ZN9oceanbase4palf16LogSlidingWindow23generate_new_group_log_ERKNS0_3LSNElllRKNS0_7LogTypeEPKclRb +_ZN9oceanbase4palf7LogTask23set_initial_header_infoERKNS0_17LogTaskHeaderInfoE +_ZZN9oceanbase4palf7LogTask20try_freeze_by_myselfEvENK5$_570clEPKc.0e4bf25207570af14a78557c8489c4fc +_ZZN9oceanbase4palf7LogTask23set_initial_header_infoERKNS0_17LogTaskHeaderInfoEENK5$_564clEPKc.0e4bf25207570af14a78557c8489c4fc +_ZN9oceanbase4palf16LogSlidingWindow20try_freeze_prev_log_ElRKNS0_3LSNERb +_ZZN9oceanbase4palf7LogTask11try_freeze_ERKNS0_3LSNEENK5$_571clEPKc.0e4bf25207570af14a78557c8489c4fc +_ZZN9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE6revertElENKUlPKcE3_clES5_ +_ZZN9oceanbase11transaction11ObIDService10get_numberEllRlS2_ENK5$_405clEPKc.6c6f3ed9193054173c335adef4549614 +_ZN9oceanbase6common17obj_val_serializeILNS0_9ObObjTypeE5EEEiRKNS0_5ObObjEPclRl +easy_baseth_pool_invoke.4cdd23ddacb096b5c68ec580fb4fcf84 +_ZN9oceanbase3sql12ObDMLService10update_rowERKNS0_10ObUpdCtDefERNS0_10ObUpdRtDefEPKNS0_14ObDASTabletLocES9_RNS0_10ObDMLRtCtxE +_ZN9oceanbase3sql12ObDMLService19write_row_to_das_opILi3EEEiRKNS0_17ObDASDMLBaseCtDefERNS0_17ObDASDMLBaseRtDefEPKNS0_14ObDASTabletLocERNS0_10ObDMLRtCtxERKNS_6common12ObFixedArrayIPNS0_6ObExprENSD_12ObIAllocatorEEE +_ZN9oceanbase3sql13ObDASUpdateOp14init_task_infoEv +_ZN9oceanbase3sql13ObDASUpdateOp9write_rowERKNS_6common12ObFixedArrayIPNS0_6ObExprENS2_12ObIAllocatorEEERNS0_9ObEvalCtxERb +_ZN9oceanbase3sql16ObDASWriteBuffer11try_add_rowERKNS_6common8ObIArrayIPNS0_6ObExprEEEPNS0_9ObEvalCtxElRbb +_ZN9oceanbase3sql16ObDASWriteBuffer19init_dml_shadow_rowElb +_ZN9oceanbase3sql12ObDMLService25check_dml_tablet_validityERNS0_10ObDMLRtCtxERKNS0_14ObDASTabletLocERKNS_6common12ObFixedArrayIPNS0_6ObExprENS7_12ObIAllocatorEEERKNS0_14ObDMLBaseCtDefERNS0_14ObDMLBaseRtDefE +_ZN9oceanbase10rootserver26ObMigrateUnitFinishChecker23try_finish_migrate_unitERKNS_6common4hash12ObReferedMapImNS0_14DRUnitStatInfoEEE +_ZN9oceanbase7storage18ObTenantMetaMemMgr27gc_min_minor_sstable_in_setEv +_ZN9oceanbase6common4hash24ObHashTableConstIteratorINS_7storage18ObTenantMetaMemMgr19MinMinorSSTableInfoENS1_11HashMapPairIS5_NS1_11HashNullObjEEENS1_9hash_funcIS5_EENS1_8equal_toIS5_EENS1_10pair_firstIS8_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS8_EELi61ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEppEv +_ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql9ObRawExprEEEED2Ev +_ZN9oceanbase4palf21LogIOTaskCbThreadPool6handleEPv +_ZNK9oceanbase4palf14PalfHandleImpl14get_palf_epochERl +_ZN9oceanbase4palf11PalfEnvImpl17get_log_allocatorEv +_ZN9oceanbase4palf17LogIOFlushLogTask13after_consumeEPNS0_11PalfEnvImplE +_ZN9oceanbase4palf11PalfEnvImpl20get_palf_handle_implElRNS0_19PalfHandleImplGuardE +_ZN9oceanbase4palf11PalfEnvImpl20get_palf_handle_implElRPNS0_14PalfHandleImplE +_ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE3getERKS3_RPS4_ +_ZN9oceanbase6common6DCHashINS_4palf5LSKeyELl8EE3getERKS3_RPNS0_11KeyHashNodeIS3_EE +_ZN9oceanbase6common6DCHashINS_4palf5LSKeyELl8EE6Handle10search_preEmRPNS0_8HashNodeE +_ZN9oceanbase6common6DCHashINS_4palf5LSKeyELl8EE24alloc_and_init_cur_arrayEv +_ZN9oceanbase6common6DCHashINS_4palf5LSKeyELl8EE6Handle6retireEil +_ZN9oceanbase6common22ObTenantMutilAllocator26free_log_io_flush_log_taskEPNS_4palf17LogIOFlushLogTaskE +_ZN9oceanbase4palf11LogWriteBufD1Ev +_ZN9oceanbase4palf11LogWriteBufD2Ev +_ZN9oceanbase6common13ObSEArrayImplINS_4palf11LogWriteBuf11InnerStructELl2ENS0_19ModulePageAllocatorELb0EED2Ev +_ZN9oceanbase4palf17LogIOFlushLogTaskD1Ev +_ZN9oceanbase4palf17LogIOFlushLogTaskD2Ev +_ZN9oceanbase4palf14PalfHandleImpl21inner_after_flush_logERKNS0_13FlushLogCbCtxE +_ZNK9oceanbase4palf11LogStateMgr16is_leader_activeEv +_ZNK9oceanbase4palf16LogSlidingWindow23get_last_submit_log_id_Ev +_ZZN9oceanbase4palf17LogIOFlushLogTask13after_consumeEPNS0_11PalfEnvImplEENK5$_678clEPKc.1598dc2348996c1ae1caea6120522988 +_ZN9oceanbase4palf16LogSlidingWindow15after_flush_logERKNS0_13FlushLogCbCtxE +_ZNK9oceanbase4palf16LogSlidingWindow23get_max_flushed_end_lsnERNS0_3LSNE +_ZN9oceanbase6common8TCRWLock10WLockGuardD2Ev +_ZNK9oceanbase4palf12LogConfigMgr30get_paxos_log_sync_replica_numERl +_ZZN9oceanbase4palf16LogSlidingWindow25try_update_match_lsn_map_ERKNS_6common6ObAddrERKNS0_3LSNEENK5$_375clEPKc.0e4bf25207570af14a78557c8489c4fc +_ZZN9oceanbase4palf21LogIOTaskCbThreadPool6handleEPvENK5$_759clEPKc.1598dc2348996c1ae1caea6120522988 +_ZN9oceanbase4palf16LogSlidingWindow25try_update_match_lsn_map_ERKNS_6common6ObAddrERKNS0_3LSNE +_ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf3LSNENS0_14ShareMemMgrTagEE7do_get_ERKS2_RS4_ +_ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf3LSNENS0_14ShareMemMgrTagEE16load_access_bkt_ERKS2_RmRPNS6_6BucketE +_ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf3LSNENS0_14ShareMemMgrTagEE7shrink_Ev +_ZZN9oceanbase4palf16LogSlidingWindow21handle_committed_log_EvENK5$_136clEPKc.0e4bf25207570af14a78557c8489c4fc +_ZN9oceanbase4palf16LogSlidingWindow32inc_update_max_flushed_log_info_ERKNS0_3LSNES4_RKl +_ZN9oceanbase6common8TCRWLock6wrlockEl +_ZZN9oceanbase4palf16LogSlidingWindow15after_flush_logERKNS0_13FlushLogCbCtxEENK5$_183clEPKc.0e4bf25207570af14a78557c8489c4fc +_ZZN9oceanbase4palf16LogSlidingWindow15after_flush_logERKNS0_13FlushLogCbCtxEENK5$_173clEPKc.0e4bf25207570af14a78557c8489c4fc +_ZZN9oceanbase4palf11PalfEnvImpl20get_palf_handle_implElRPNS0_14PalfHandleImplEENK5$_689clEPKc.0e4bf25207570af14a78557c8489c4fc +_ZN9oceanbase4palf16LogSlidingWindow22gen_committed_end_lsn_ERNS0_3LSNE +_ZN9oceanbase6common8ObMember5resetEv +_ZSt6__sortIPN9oceanbase4palf3LSNEN9__gnu_cxx5__ops15_Iter_comp_iterINS1_10LSNCompareEEEEvT_S9_T0_ +_ZN9oceanbase4palf16LogSlidingWindow26try_advance_committed_lsn_ERKNS0_3LSNE +_ZZNK9oceanbase4palf16LogSlidingWindow17get_majority_lsn_ERKNS_6common16ObMemberListBaseILl7EEElRNS0_3LSNEENK5$_271clEPKc.0e4bf25207570af14a78557c8489c4fc +_ZNK9oceanbase4palf12LogConfigMgr23get_paxos_log_sync_listERNS_6common16ObMemberListBaseILl7EEE +_ZN9oceanbase6common8ObMemberaSERKS1_ +_ZSt16__insertion_sortIPN9oceanbase4palf3LSNEN9__gnu_cxx5__ops15_Iter_comp_iterINS1_10LSNCompareEEEEvT_S9_T0_ +_ZNK9oceanbase4palf16LogSlidingWindow17get_majority_lsn_ERKNS_6common16ObMemberListBaseILl7EEElRNS0_3LSNE +_ZSt16__introsort_loopIPN9oceanbase4palf3LSNElN9__gnu_cxx5__ops15_Iter_comp_iterINS1_10LSNCompareEEEEvT_S9_T0_T1_ +_ZSt22__final_insertion_sortIPN9oceanbase4palf3LSNEN9__gnu_cxx5__ops15_Iter_comp_iterINS1_10LSNCompareEEEEvT_S9_T0_ +_ZNK9oceanbase4palf11LogStateMgr12can_slide_swEv +_ZZN9oceanbase4palf14PalfHandleImpl21inner_after_flush_logERKNS0_13FlushLogCbCtxEENK6$_1148clEPKc.0e4bf25207570af14a78557c8489c4fc +_ZZN9oceanbase4palf14PalfHandleImpl21inner_after_flush_logERKNS0_13FlushLogCbCtxEENK6$_1146clEPKc.0e4bf25207570af14a78557c8489c4fc +_ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf3LSNENS0_14ShareMemMgrTagEE20do_insert_or_update_ERKS2_RKS4_ +_ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf3LSNENS0_14ShareMemMgrTagEE17load_factor_ctrl_Em +_ZZN9oceanbase4palf16LogSlidingWindow26try_advance_committed_lsn_ERKNS0_3LSNEENK5$_189clEPKc.0e4bf25207570af14a78557c8489c4fc +_ZZN9oceanbase4palf16LogSlidingWindow32inc_update_max_flushed_log_info_ERKNS0_3LSNES4_RKlENK5$_194clEPKc.0e4bf25207570af14a78557c8489c4fc +_ZN9oceanbase3sql13ObDMLResolver39check_table_item_with_gen_col_using_udfEPKNS0_9TableItemERb +_ZNK9oceanbase5share6schema13ObTableSchema35has_generated_column_using_udf_exprERb +_ZNK9oceanbase7storage17ObLocalityManager25get_server_locality_arrayERNS_6common8ObIArrayINS_5share16ObServerLocalityEEERb +_ZN9oceanbase6common13ObSEArrayImplINS_5share16ObServerLocalityELl32ENS0_19ModulePageAllocatorELb0EE5resetEv +_ZNK9oceanbase5share21ObServerLocalityCache25get_server_locality_arrayERNS_6common8ObIArrayINS0_16ObServerLocalityEEERb +_ZN9oceanbase6common13ObSEArrayImplINS_5share16ObServerLocalityELl32ENS0_19ModulePageAllocatorELb0EE6assignERKNS0_8ObIArrayIS3_EE +_ZN9oceanbase5share16ObServerLocalityC1Ev +_ZN9oceanbase5share16ObServerLocalityC2Ev +_ZN9oceanbase6common13ObSEArrayImplINS_5share16ObServerLocalityELl32ENS0_19ModulePageAllocatorELb0EE7destroyEv +_ZN9oceanbase6common13ObSEArrayImplINS_5share16ObServerLocalityELl32ENS0_19ModulePageAllocatorELb0EE5reuseEv +_ZN9oceanbase6common13ObSEArrayImplINS_5share16ObServerLocalityELl32ENS0_19ModulePageAllocatorELb0EE7reserveEl +_ZN9oceanbase8keybtree11WriteHandle23insert_and_split_upwardENS_8memtable20ObStoreRowkeyWrapperERPNS2_9ObMvccRowERPNS0_9BtreeNodeE +_ZN9oceanbase8keybtree11WriteHandle16insert_into_nodeEPNS0_9BtreeNodeEiNS_8memtable20ObStoreRowkeyWrapperEPNS4_9ObMvccRowERS3_S8_ +_ZN9oceanbase8keybtree11WriteHandle11split_childEPNS0_9BtreeNodeEiNS_8memtable20ObStoreRowkeyWrapperEPNS4_9ObMvccRowES5_S7_RS3_S8_l +_ZN9oceanbase8keybtree9BtreeNode15copy_and_insertERS1_iiiNS_8memtable20ObStoreRowkeyWrapperEPNS3_9ObMvccRowES4_S6_ +_ZN9oceanbase8keybtree9BtreeNode33split_child_cause_recursive_splitEPS1_S2_iNS_8memtable20ObStoreRowkeyWrapperEPNS3_9ObMvccRowES4_S6_l +_ZN9oceanbase8keybtree9BtreeNode4copyERS1_iii +_ZN9oceanbase8keybtree18BtreeNodeAllocator10alloc_nodeEb +_ZN9oceanbase8keybtree18BtreeNodeAllocator3popERPNS0_9BtreeNodeE +_ZN9oceanbase3sql5ObSql22generate_physical_planER11ParseResultPNS0_14ObPlanCacheCtxERNS0_8ObSqlCtxERNS0_11ObResultSetEbbPS2_ +_ZNK9oceanbase6common16ObArenaAllocator5totalEv +_ZN9oceanbase3sql10ObResolverD1Ev +_ZN9oceanbase3sql10ObResolverD2Ev +_ZN9oceanbase6common13ObSEArrayImplISt4pairIPNS_3sql9ObRawExprEPNS3_14ObConstRawExprEELl8ENS0_19ModulePageAllocatorELb0EED2Ev +_ZN9oceanbase3sql5ObSql13generate_stmtER11ParseResultPNS0_14ObPlanCacheCtxERNS0_8ObSqlCtxERNS_6common12ObIAllocatorERNS0_11ObResultSetERPNS0_6ObStmtEPS2_ +_ZNK9oceanbase3sql6ObStmt19has_global_variableEv +_ZNK9oceanbase3sql6ObStmt11is_dml_stmtEv +_ZN9oceanbase3sql6ObStmt17is_dml_write_stmtENS0_4stmt8StmtTypeE +_ZN9oceanbase3sql15ObSchemaCheckerC1Ev +_ZN9oceanbase3sql15ObSchemaCheckerC2Ev +_ZN9oceanbase3sql15ObSchemaChecker4initERNS0_16ObSqlSchemaGuardEm +_ZN9oceanbase3sql10ObResolverC1ERNS0_16ObResolverParamsE +_ZN9oceanbase3sql10ObResolverC2ERNS0_16ObResolverParamsE +_ZN9oceanbase3sql13ObStmtFactory13get_query_ctxEv +_ZN9oceanbase6common7ObArrayIPNS_3sql21ObUserVarIdentRawExprENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS4_EENS0_17DefaultItemEncodeIS4_EEEC2Ev +_ZN9oceanbase3sql16ObSqlSchemaGuard5resetEv +_ZN9oceanbase3sql10ObQueryCtxC2Ev +_ZN9oceanbase6common13ObSEArrayImplIPKNS_5share6schema13ObTableSchemaELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv +_ZN9oceanbase3sql12ObGlobalHint5resetEv +_ZN9oceanbase3sql11ObQueryHint5resetEv +_ZN9oceanbase3sql13ObExecContext16get_stmt_factoryEv +_ZN9oceanbase3sql13ObExecContext16get_expr_factoryEv +_ZN9oceanbase6common16ObFixedArrayImplINS_5share6schema18ObSchemaObjVersionENS0_12ObIAllocatorEE6assignERKNS0_8ObIArrayIS4_EE +_ZN9oceanbase3sql15ObResolverUtils26get_stmt_type_by_item_typeE10ObItemType +_ZN9oceanbase3sql10ObResolver7resolveENS1_10IsPreparedERK10_ParseNodeRPNS0_6ObStmtE +_ZN9oceanbase3sql18ObEndTransResolverD1Ev +_ZN9oceanbase3sql18ObEndTransResolverD2Ev +_ZN9oceanbase3sql6ObStmt11is_dcl_stmtENS0_4stmt8StmtTypeE +_ZN9oceanbase3sql20ObStartTransResolverD1Ev +_ZN9oceanbase3sql20ObStartTransResolverD2Ev +_ZN9oceanbase3sql10ObResolver18stmt_resolver_funcINS0_20ObStartTransResolverEEEiRNS0_16ObResolverParamsERK10_ParseNodeRPNS0_6ObStmtE +_ZN9oceanbase3sql10ObResolver18stmt_resolver_funcINS0_18ObEndTransResolverEEEiRNS0_16ObResolverParamsERK10_ParseNodeRPNS0_6ObStmtE +_ZN9oceanbase6common10smart_freeEPv +_ZN9oceanbase3sql14ObStmtResolver9init_stmtEv +_ZN9oceanbase6common11smart_allocElPKc +_ZN9oceanbase3sql14ObStmtResolver11create_stmtINS0_14ObEndTransStmtEEEPT_v +_ZN9oceanbase3sql17get_timezone_infoEPKNS0_16ObSQLSessionInfoE +_ZN9oceanbase3sql20ObStartTransResolver7resolveERK10_ParseNode +_ZN9oceanbase3sql14ObStmtResolver11create_stmtINS0_16ObStartTransStmtEEEPT_v +_ZN9oceanbase3sql20get_obj_print_paramsEPKNS0_16ObSQLSessionInfoE +_ZN9oceanbase8memtable18ObTransCallbackMgr11trans_startEv +easy_buf_set_cleanup +_ZN9oceanbase6common12ObKVCacheMap18clean_garbage_nodeERll +_ZN9oceanbase6common19GlobalHazardVersion6retireEv +_ZN9oceanbase7storage17ObLSTabletService18insert_tablet_rowsERNS0_14ObTabletHandleERNS0_15ObDMLRunningCtxEPNS0_10ObStoreRowElRNS0_10ObRowsInfoE +_ZNK9oceanbase7storage15ObRelativeTable18get_schema_versionEv +_ZNK9oceanbase7storage15ObRelativeTable22is_storage_index_tableEv +_ZN9oceanbase7storage8ObTablet14rowkeys_existsERNS0_10ObStoreCtxERNS0_15ObRelativeTableERNS0_10ObRowsInfoERb +_ZN9oceanbase7storage8ObTablet16do_rowkeys_existERNS0_20ObTableStoreIteratorERNS0_10ObRowsInfoERb +_ZN9oceanbase8memtable10ObMemtable5existERNS_7storage10ObRowsInfoERbS5_ +_ZN9oceanbase8memtable10ObMemtable9get_beginERNS0_15ObMvccAccessCtxE +_ZN9oceanbase8memtable10ObMemtable5existERNS_7storage10ObStoreCtxEmRKNS2_15ObTableReadInfoERKNS_12blocksstable13ObDatumRowkeyERbSC_ +_ZN9oceanbase8memtable13ObMemtableKey6encodeERKNS_6common8ObIArrayINS_5share6schema9ObColDescEEEPKNS2_13ObStoreRowkeyE +_ZN9oceanbase7storage10ObRowsInfo18clear_found_rowkeyEl +_ZN9oceanbase8memtable10ObMemtable7get_endERNS0_15ObMvccAccessCtxEi +easy_connection_recycle_message.8d7a091449e6908669a41293537a4cf4 +_ZN9oceanbase3sql10ObExprTrim9eval_trimERKNS0_6ObExprERNS0_9ObEvalCtxERNS_6common7ObDatumE +_ZN9oceanbase3sql13cast_eval_argERKNS0_6ObExprERNS0_9ObEvalCtxERNS_6common7ObDatumE +_ZN9oceanbase3sql30eval_assign_question_mark_funcERKNS0_6ObExprERNS0_9ObEvalCtxERNS_6common7ObDatumE +_ZN9oceanbase3sql10ObExprTrim4trimERNS_6common8ObStringElRKS3_S6_ +_ZN9oceanbase6common11ObObjCaster7to_typeENS0_9ObObjTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS5_ +_ZNSt17_Function_handlerIFiPKN9oceanbase3lib17ObTenantMemoryMgrEEZNKS1_20ObTenantCtxAllocator8get_holdEvEUlS4_E_E9_M_invokeERKSt9_Any_dataOS4_ +_ZNK9oceanbase3lib17ObTenantMemoryMgr12get_ctx_holdEmRl +_ZN9oceanbase3omt8ObTenant18check_worker_countEv +_ZN9oceanbase5obrpc10ObBatchRpc4run1Ev +_ZN9oceanbase5obrpc14ObBatchRpcBase7do_workEv +_ZN9oceanbase5obrpc11ObRpcBuffer4sendERNS0_15ObBatchRpcProxyEmRKNS_6common6ObAddrEb +_ZN9oceanbase6common13TimeWheelBase4scanEv +_ZN6obutil5MutexC1Ev +_ZN6obutil5MutexC2Ev +_ZN6obutil4CondC1Ev +_ZN6obutil4CondC2Ev +_ZN6obutil4CondD1Ev +_ZN6obutil4CondD2Ev +_ZN9oceanbase6common16ObClockGenerator6usleepEl +_ZN6obutil9ObSysTimeC1El +_ZN6obutil9ObSysTimeC2El +_ZNK6obutil5Mutex6unlockERNS0_9LockStateE +_ZNK6obutil5Mutex4lockERNS0_9LockStateE +_ZNK6obutil4Cond15timed_wait_implINS_5MutexEEEbRKT_RKNS_9ObSysTimeE +_ZNK6obutil9ObSysTimecv7timevalEv +_ZN6obutil5MutexD1Ev +_ZN6obutil5MutexD2Ev +_ZN6obutil9ObSysTime3nowENS0_5ClockE +_ZN6obutil9ObSysTime12microSecondsEl +_ZN9oceanbase6common5occam16ObOccamTimerTask12runTimerTaskEv +_ZN9oceanbase6common5occam16ObOccamTimeGuardD2Ev +_ZN9oceanbase6common5occam16ObOccamTimerTask27commit_task_to_thread_pool_Ev +_ZN9oceanbase6common5occam17ObOccamThreadPool11commit_taskILNS1_13TASK_PRIORITYE1ERNS1_16ObOccamTimerTask11TaskWrapperEJEEEiRNS0_8ObFutureINSt9result_ofIFT0_DpT1_EE4typeEEEOSA_DpOSB_ +_ZN9oceanbase6common6future12ObFutureBaseIbE4initERNS0_12ObIAllocatorE +_ZN9oceanbase6common13ObSharedGuardINS0_6future12ObFutureBaseIbE11FutureBlockEE5resetEv +_ZN9oceanbase3omt17ObMultiLevelQueue3popERPNS_6common6ObLinkEil +_ZN9oceanbase6common15ObPriorityQueueILi1EE3popERPNS0_6ObLinkEl +_ZN9oceanbase3sql13ObCmdExecutor7executeERNS0_13ObExecContextERNS0_6ObICmdE +_ZN9oceanbase3sql18ObEndTransExecutor7executeERNS0_13ObExecContextERNS0_14ObEndTransStmtE +_ZZN9oceanbase3sql13ObCmdExecutor7executeERNS0_13ObExecContextERNS0_6ObICmdEENK4$_20clEv.9f50165c44148c1c108cb64accd07fe7 +_ZN9oceanbase3sql20ObStartTransExecutor7executeERNS0_13ObExecContextERNS0_16ObStartTransStmtE +_ZN9oceanbase3sql17ObSqlTransControl20explicit_start_transERNS0_13ObExecContextEb +_ZN9oceanbase11transaction14ObTransService8start_txERNS0_8ObTxDescERKNS0_9ObTxParamE +_ZNSt17_Function_handlerIFiRN9oceanbase11transaction9ObTransIDEESt5_BindIFSt7_Mem_fnIMNS1_14ObTransServiceEFiS3_EEPS7_St12_PlaceholderILi1EEEEE9_M_invokeERKSt9_Any_dataS3_ +_ZN9oceanbase11transaction11ObTxDescMgr3addERNS0_8ObTxDescE +_ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocEE8insert__ERKS2_PS3_iPS9_ +_ZN9oceanbase11transaction14ObTransService13gen_trans_id_ERNS0_9ObTransIDE +_ZN9oceanbase11transaction16ObTransStatistic21add_trans_start_countEml +_ZN9oceanbase11transaction14ObTransService10release_txERNS0_8ObTxDescE +_ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEED2Ev +_ZN9oceanbase11transaction14ObTransService12finalize_tx_ERNS0_8ObTxDescE +_ZZN9oceanbase11transaction14ObTransService10release_txERNS0_8ObTxDescEENK6$_1269clEPKc.93feb755617c21c32b229b78773c290c +_ZZN9oceanbase11transaction11ObTxDescMgr3addERNS0_8ObTxDescEENK6$_1077clEPKc.6c6f3ed9193054173c335adef4549614 +_ZN9oceanbase11transaction11ObGtiSource12get_trans_idERl +_ZZN9oceanbase11transaction14ObTransService13gen_trans_id_ERNS0_9ObTransIDEENK6$_1164clEPKc.93feb755617c21c32b229b78773c290c +_ZZN9oceanbase11transaction14ObTransService10release_txERNS0_8ObTxDescEENK6$_1267clEPKc.93feb755617c21c32b229b78773c290c +_ZN9oceanbase11transaction14ObTransService10acquire_txERPNS0_8ObTxDescEj +_ZN9oceanbase11transaction11ObTxDescMgr5allocERPNS0_8ObTxDescE +_ZN9oceanbase11transaction8ObTxDescC1Ev +_ZN9oceanbase11transaction8ObTxDescC2Ev +_ZN9oceanbase3sql12ObDMLService18process_update_rowERKNS0_10ObUpdCtDefERNS0_10ObUpdRtDefERbRNS0_15ObTableModifyOpE +_ZN9oceanbase6common7ObDatum12binary_equalERKS1_S3_ +_ZN9oceanbase3sql12ObDMLService25check_row_whether_changedERKNS0_10ObUpdCtDefERNS0_10ObUpdRtDefERNS0_9ObEvalCtxE +_ZNK9oceanbase5share6schema11ObSchemaMgr16get_table_schemaEmmRPKNS1_21ObSimpleTableSchemaV2E +_ZNK9oceanbase6common4hash16ObPointerHashMapImPNS_5share6schema21ObSimpleTableSchemaV2ENS4_13GetTableKeyV2ELl8064ENS0_19ModulePageAllocatorEE14get_refactoredERKmRS6_ +_ZN9oceanbase8observer24ObInnerSQLConnectionPool7acquireEmRPNS_6common9sqlclient16ObISQLConnectionEPNS2_12ObISQLClientE +backtrace +unw_backtrace +_ZN9oceanbase8observer20ObInnerSQLConnection4initEPNS0_24ObInnerSQLConnectionPoolEPNS_5share6schema27ObMultiVersionSchemaServiceEPNS_3sql5ObSqlEPNS0_15ObVTIterCreatorEPNS_6common14ObServerConfigEPNS8_16ObSQLSessionInfoEPNSD_12ObISQLClientEPNS0_20ObRestoreSQLModifierEbb +_ZN9oceanbase3sql18ObBasicSessionInfo25load_default_sys_variableEbb +_ZN9oceanbase5share14ObSysVariables7get_maxEl +_ZN9oceanbase3sql18ObBasicSessionInfo21init_system_variablesEbb +_ZN9oceanbase6common9ObCharset20get_system_collationEv +_ZN9oceanbase5share14ObSysVariables8get_nameEl +_ZN9oceanbase5share15ObSysVarFactory23find_sys_var_id_by_nameERKNS_6common8ObStringEb +_ZN9oceanbase5share14ObSysVariables9get_flagsEl +_ZN9oceanbase5share14ObSysVariables8get_typeEl +_ZN9oceanbase5share14ObSysVariables7get_minEl +_ZN9oceanbase5share13ObBasicSysVar4initERKNS_6common5ObObjES5_S5_NS2_9ObObjTypeEl +_ZN9oceanbase5share14ObSysVariables9get_valueEl +_ZN9oceanbase3sql18ObBasicSessionInfo17load_sys_variableERNS_6common12ObIAllocatorERKNS2_8ObStringERKNS2_5ObObjESA_SA_SA_lb +_ZN9oceanbase6common11ObObjCaster7to_typeENS0_9ObObjTypeENS0_15ObCollationTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS6_ +_ZN9oceanbase6commonL10string_intENS0_9ObObjTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS4_m.db28c62327e16d3ae5c8a88acfd53bbb +_ZN9oceanbase6commonL24convert_string_collationERKNS0_8ObStringENS0_15ObCollationTypeERS1_S4_RNS0_15ObObjCastParamsE.db28c62327e16d3ae5c8a88acfd53bbb +_ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE5allocEl +_ZN9oceanbase6common21common_string_integerERKmRKNS0_9ObObjTypeERKNS0_15ObCollationTypeERKNS0_8ObStringEbRl +_ZN9oceanbase6common21check_convert_str_errEPKcS2_iiRKNS0_15ObCollationTypeE +_ZN9oceanbase6common9ObCharset8scan_strEPKcS3_i +_ZN9oceanbase6common9ObCharset12strntoullrndEPKcmiPPcPi +_ZN9oceanbase6commonL11string_uintENS0_9ObObjTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS4_m.db28c62327e16d3ae5c8a88acfd53bbb +_ZN9oceanbase6common9ObDFMUtil28parse_datetime_format_stringERKNS0_8ObStringERNS0_8ObIArrayINS0_9ObDFMElemEEEb +_ZN9oceanbase6common9ObDFMUtil14parse_one_elemERNS0_13ObDFMParseCtxERNS0_9ObDFMElemEb +_ZN9oceanbase6common30common_string_unsigned_integerERKmRKNS0_9ObObjTypeERKNS0_15ObCollationTypeERKNS0_8ObStringEbRm +_ZN9oceanbase6common15ObLogIdLevelMap9set_levelEa +_ZN9oceanbase5share16IsoCurrencyUtils28get_currency_by_country_nameERKNS_6common8ObStringERS3_ +_ZN9oceanbase6commonL13string_stringENS0_9ObObjTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS4_m.db28c62327e16d3ae5c8a88acfd53bbb +_ZN9oceanbase6commonL11copy_stringERKNS0_15ObObjCastParamsENS0_9ObObjTypeEPKclRNS0_5ObObjEl.db28c62327e16d3ae5c8a88acfd53bbb +_ZNK9oceanbase6common5ObObj10get_stringERNS0_8ObStringE +_ZN9oceanbase6common18ObTimeZoneInfoWrap25set_error_on_overlap_timeEb +_ZN9oceanbase6commonL20check_convert_stringENS0_9ObObjTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS4_.db28c62327e16d3ae5c8a88acfd53bbb +_ZN9oceanbase5share15ObSysVarFactory14create_sys_varENS0_17ObSysVarClassTypeERPNS0_13ObBasicSysVarE +_ZN9oceanbase5share23ObSysVarLockWaitTimeoutC2Ev +_ZN9oceanbase5share34ObSysVarSqlThrottleCurrentPriorityC2Ev +_ZN9oceanbase5share24ObSysVarMaxExecutionTimeC2Ev +_ZN9oceanbase5share38ObSysVarWindowfuncOptimizationSettingsC2Ev +_ZN9oceanbase6common11ObObjCaster7to_typeENS0_9ObObjTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS5_RPS6_ +_ZN9oceanbase6commonL13string_numberENS0_9ObObjTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS4_m.db28c62327e16d3ae5c8a88acfd53bbb +_ZN9oceanbase6common6number8ObNumber12from_sci_optINS0_15ObObjCastParamsEEEiPKclRT_PsS9_b +_ZN9oceanbase6common6number8ObNumber8from_v3_EPKclRNS2_10IAllocatorERiPNS1_16ObNumberFmtModelEPsSA_PKNS_3lib9ObMemAttrEb +_ZN9oceanbase6common6number8ObNumber10TAllocatorINS0_15ObObjCastParamsEE5allocEl +_ZN9oceanbase6common6number8ObNumber17find_point_range_EPKclRlS5_S5_RbRiPsS8_ +_ZN9oceanbase6common6number8ObNumber17construct_digits_EPKclllPjRlS6_ +_ZN9oceanbase6common16ob_fast_digits10Em +_ZN9oceanbase5share28ObSysVarTransactionIsolationC2Ev +_ZN9oceanbase5share15ObNumericSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE +_ZN9oceanbase6common9ObCharset27charset_type_by_name_oracleERKNS0_8ObStringE +_ZNK9oceanbase6common8ObString12case_compareEPKc +_ZN9oceanbase3sql18ObBasicSessionInfo31process_session_time_zone_valueERKNS_6common5ObObjEb +_ZN9oceanbase5share27ObSysVarObCompatibilityModeC2Ev +_ZN9oceanbase3sql18ObBasicSessionInfo26process_session_debug_syncERKNS_6common5ObObjEb +_ZN9oceanbase3sql18ObBasicSessionInfo25process_session_log_levelERKNS_6common5ObObjE +_ZN9oceanbase5share38ObSysVarValidatePasswordMixedCaseCountC2Ev +_ZN9oceanbase5share29ObSysVarObPlanCachePercentageC2Ev +_ZN9oceanbase5share19ObSysVarNlsCalendarC2Ev +_ZN9oceanbase5share21ObSysVarSqlThrottleRtC2Ev +_ZN9oceanbase5share22ObSysVarMaxConnectionsC2Ev +_ZN9oceanbase5share16ObSysVarHostnameC2Ev +_ZN9oceanbase5share14ObSysVarTmpdirC2Ev +_ZN9oceanbase6commonL8int_uintENS0_9ObObjTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS4_m.db28c62327e16d3ae5c8a88acfd53bbb +_ZN9oceanbase3sql18ObBasicSessionInfo40process_session_compatibility_mode_valueERKNS_6common5ObObjE +_ZN9oceanbase3sql18ObBasicSessionInfo22update_max_packet_sizeEv +_ZN9oceanbase6common13ObSEArrayImplINS0_9ObDFMElemELl10ENS0_19ModulePageAllocatorELb0EED2Ev +_ZN9oceanbase5share18ObSysVarGeneralLogC2Ev +_ZN9oceanbase11transaction21tx_isolation_from_strERKNS_6common8ObStringE +_ZN9oceanbase5share17ObLabelSeResolver26deserialize_session_labelsERKNS_6common8ObStringERNS2_8ObIArrayINS0_21ObLabelSeSessionLabelEEE +_ZN9oceanbase6common8ObString8split_onEc +_ZN9oceanbase6common6number8ObNumber15round_scale_v3_ElbbPsS3_ +_ZN9oceanbase6common13ObSEArrayImplIlLl32ENS0_19ModulePageAllocatorELb0EE7reserveEl +_ZN9oceanbase3sql18ObBasicSessionInfo30process_session_sql_mode_valueERKNS_6common5ObObjE +_ZN9oceanbase6common21is_sql_mode_supportedEm +_ZN9oceanbase8observer20ObInnerSQLConnection12init_sessionEPNS_3sql16ObSQLSessionInfoEb +_ZN9oceanbase3sql18ObBasicSessionInfo19update_sys_variableENS_5share17ObSysVarClassTypeERKNS_6common8ObStringE +_ZN9oceanbase3sql16ObSQLSessionInfo4initEjmPNS_6common12ObIAllocatorEPKNS2_11ObTZInfoMapElm +_ZN9oceanbase6common4hash9ObHashMapImPNS_2pl16ObPLPackageStateENS1_19NoPthreadDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS5_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE6createElRKNS_3lib7ObLabelESP_mm +_ZN9oceanbase6common8ObMalloc5allocEl +_ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_PNS_3sql17ObInnerContextMapEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS8_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS8_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl2EE6createElPSK_PSN_ +_ZN9oceanbase6common16ObClusterVersion11get_versionEPKcRm +_ZN9oceanbase8observer20ObInnerSQLConnection13switch_tenantEm +_ZN9oceanbase3sql18ObBasicSessionInfo4initEjmPNS_6common12ObIAllocatorEPKNS2_11ObTZInfoMapE +_ZN9oceanbase6common18ObWrapperAllocator5allocEl +_ZN9oceanbase3omt19ObTenantTimezoneMgr12get_instanceEv +_ZN9oceanbase6common18ObDSSessionActions4initElRNS0_12ObIAllocatorE +_ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_NS_3sql17ObSessionVariableEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS7_EENS0_17ObPooledAllocatorINS1_15ObHashTableNodeIS7_EENS0_18ObWrapperAllocatorENS0_10ObNullLockEEENS1_19NoPthreadDefendModeENS1_13NormalPointerESH_Ll1EE6createElPSJ_PSH_ +_ZN9oceanbase3sql18ObBasicSessionInfo17set_session_stateENS0_17ObSQLSessionStateE +_ZN9oceanbase6commonL13parse_versionEPKcPil.61d1885c38c5cddde571b3feb2b6fe43 +_ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS_2pl16ObPLPackageStateEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE6createElPSJ_PSM_ +_ZN9oceanbase6common4hash9do_createIPNS1_17ObHashTableBucketINS1_11HashMapPairImPNS_2pl16ObPLPackageStateEEENS1_5NLockENS1_5NCondEEENS0_8ObMallocEEEiRT_lllNS1_16NormalPointerTagERT0_ +_ZN9oceanbase3sql18ObBasicSessionInfo20set_default_databaseERKNS_6common8ObStringENS2_15ObCollationTypeE +_ZN9oceanbase6common15ObTimeConverter13str_to_offsetERKNS0_8ObStringERiS5_bb +_ZN9oceanbase5share15ObSysVarFactory19create_all_sys_varsEv +_ZN9oceanbase5share15ObVarcharSysVarC2EPFiRNS_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 +_ZN9oceanbase5share11ObIntSysVarC2EPFiRNS_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 +_ZN9oceanbase5share26ObSessionSpecialBoolSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiS4_S7_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSN_SQ_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE +_ZN9oceanbase5share15ObCharsetSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE +_ZN9oceanbase5share24ObSysVarObTrxLockTimeoutC2Ev +_ZN9oceanbase5share25ObSessionSpecialIntSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE +_ZN9oceanbase5share16ObSysVarServerIdC2Ev +_ZN9oceanbase5share21ObSysVarSqlThrottleIoC2Ev +_ZN9oceanbase5share20ObSysVarTmpTableSizeC2Ev +_ZN9oceanbase5share22ObSysVarSqlThrottleCpuC2Ev +_ZN9oceanbase5share24ObSysVarObCapabilityFlagC2Ev +_ZN9oceanbase5share23ObSysVarNlsDateLanguageC2Ev +_ZN9oceanbase5share18ObSysVarSslCrlpathC2Ev +_ZN9oceanbase5share12ObSqlModeVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE +_ZN9oceanbase5share16ObSysVarSqlNotesC2Ev +_ZN9oceanbase5share37ObSysVarValidatePasswordCheckUserNameC2Ev +_ZN9oceanbase5share22ObSysVarObOrgClusterIdC2Ev +_ZN9oceanbase5share21ObSysVarObRoutePolicyC2Ev +_ZN9oceanbase5share36ObSysVarObEnableTransmissionChecksumC2Ev +_ZN9oceanbase5share33ObSysVarObEnableTruncateFlashbackC2Ev +_ZN9oceanbase5share33ObSysVarObEnableBlkNestedloopJoinC2Ev +_ZN9oceanbase5share24ObSysVarForeignKeyChecksC2Ev +_ZN9oceanbase5share26ObSysVarErrorOnOverlapTimeC2Ev +_ZN9oceanbase5share30ObSysVarPxBroadcastFudgeFactorC2Ev +_ZN9oceanbase5share31ObSysVarObSqlWorkAreaPercentageC2Ev +_ZN9oceanbase5share17ObSysVarSslCapathC2Ev +_ZN9oceanbase5share18ObSysVarTimeFormatC2Ev +_ZN9oceanbase5share19ObSysVarHaveOpensslC2Ev +_ZN9oceanbase5share23ObSysVarProtocolVersionC2Ev +_ZN9oceanbase5share15ObSysVarSslCertC2Ev +_ZN9oceanbase5share15ObSysVarHaveSslC2Ev +_ZN9oceanbase5share14ObSysVarSslKeyC2Ev +_ZN9oceanbase5share24ObSysVarNlsNcharConvExcpC2Ev +_ZN9oceanbase5share26ObSysVarObStatementTraceIdC2Ev +_ZN9oceanbase5share27ObSysVarSqlThrottlePriorityC2Ev +_ZN9oceanbase5share30ObSysVarObSafeWeakReadSnapshotC2Ev +_ZN9oceanbase5share26ObSysVarSqlThrottleNetworkC2Ev +_ZN9oceanbase5share16ObTimeZoneSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE +_ZN9oceanbase5share26ObSysVarNljBatchingEnabledC2Ev +_ZN9oceanbase5share18ObSysVarRecyclebinC2Ev +_ZN9oceanbase5share24ObSysVarIsResultAccurateC2Ev +_ZN9oceanbase5share19ObSysVarLocalInfileC2Ev +_ZN9oceanbase3sql18ObBasicSessionInfo8set_userERKNS_6common8ObStringES5_m +_ZN9oceanbase6common12ObStringBufTINS0_19ModulePageAllocatorENS0_9PageArenaIcS2_EEE12write_stringERKNS0_8ObStringEPS6_ +_ZN9oceanbase3sql18ObBasicSessionInfo11init_tenantERKNS_6common8ObStringEm +_ZN9oceanbase3omt19ObTenantTimezoneMgr26get_tenant_timezone_staticEmRNS_6common11ObTZMapWrapE +_ZN9oceanbase3omt19ObTenantTimezoneMgr19get_tenant_timezoneEmRNS_6common11ObTZMapWrapERPNS2_21ObTimeZoneInfoManagerE +_ZN9oceanbase3omt19ObTenantTimezoneMgr25get_tenant_timezone_innerEmRNS_6common11ObTZMapWrapERPNS2_21ObTimeZoneInfoManagerE +_ZN9oceanbase8observer24ObInnerSQLConnectionPool10alloc_connERPNS0_20ObInnerSQLConnectionE +_ZN9oceanbase8observer16ObQueryRetryCtrlC1Ev +_ZN9oceanbase8observer16ObQueryRetryCtrlC2Ev +_ZN9oceanbase8observer20ObInnerSQLConnectionC1Ev +_ZN9oceanbase8observer20ObInnerSQLConnectionC2Ev +_ZN9oceanbase6common4hash9ObHashMapINS0_8ObStringEmNS1_19NoPthreadDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_mEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev +_ZN9oceanbase3sql16ObSQLSessionInfoC1Ev +_ZN9oceanbase3sql16ObSQLSessionInfoC2Ev +_ZN9oceanbase3sql23ObEndTransAsyncCallbackC1Ev +_ZN9oceanbase3sql23ObEndTransAsyncCallbackC2Ev +_ZN9oceanbase5share15ObSysVarFactoryC1Ev +_ZN9oceanbase5share15ObSysVarFactoryC2Ev +_ZN9oceanbase3sql18ObBasicSessionInfo13SysVarIncInfoC1Ev +_ZN9oceanbase3sql18ObBasicSessionInfo13SysVarIncInfoC2Ev +_ZN9oceanbase8observer15ObSqlEndTransCbC1Ev +_ZN9oceanbase8observer15ObSqlEndTransCbC2Ev +_ZN9oceanbase6common4hash9ObHashMapImPNS_3sql15ObPsSessionInfoENS1_19NoPthreadDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS5_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev +_ZN9oceanbase6common15ObWarningBufferC2Ev +_ZN9oceanbase6common4hash9ObHashMapImNS_5share15ObSequenceValueENS1_19NoPthreadDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS4_EEEELi65ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev +_ZN9oceanbase3sql18ObBasicSessionInfoC1Ev +_ZN9oceanbase3sql18ObBasicSessionInfoC2Ev +_ZN9oceanbase3sql18ObBasicSessionInfo16SysVarsCacheDataC2Ev +_ZN9oceanbase6common17ObTimeZoneInfoPosC2Ev +_ZN9oceanbase6common9ObSEArrayINS_3sql18ObBasicSessionInfo13TableStmtTypeELl1ENS0_19ModulePageAllocatorELb0EEC2Ev +_ZN9oceanbase6common4hash9ObHashMapINS0_8ObStringENS_3sql17ObSessionVariableENS1_19NoPthreadDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS0_17ObPooledAllocatorINS1_15ObHashTableNodeINS1_11HashMapPairIS3_S5_EEEENS0_18ObWrapperAllocatorENS0_10ObNullLockEEENS1_13NormalPointerESG_Ll1EEC2Ev +_ZN9oceanbase6common6ObPoolINS0_18ObWrapperAllocatorENS0_10ObNullLockEEC2EllRKS2_ +_ZZN9oceanbase6common5occam20ObThreadHungDetectorC1EvENKUlvE_clEv +_ZN9oceanbase6common12ObMemoryDump6handleEPv +_ZN9oceanbase6common18do_with_segv_catchIRZNS0_12ObMemoryDump6handleEPvE4$_22EEvOT_RbRDTclfL0p_EE.a1b49044713ee2b295a5be406ce610bf +_ZN9oceanbase6common18get_signal_handlerEv +_ZN9oceanbase6common10label_statEPNS_3lib6AChunkEPNS1_6ABlockEPNS1_7AObjectERNS0_4hash9ObHashMapINS0_8ObStringENS0_13LabelInfoItemENS8_24LatchReadWriteDefendModeENS8_9hash_funcISA_EENS8_8equal_toISA_EENS8_13SimpleAllocerINS8_15ObHashTableNodeINS8_11HashMapPairISA_SB_EEEELi82ENS8_19SpinMutexDefendModeENS8_29DefaultSimpleAllocerAllocatorEEENS8_13NormalPointerENS0_8ObMallocELl1EEEPNS0_9LabelItemElRl +_ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_NS0_13LabelInfoItemEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS6_EELi82ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKS3_RPKS6_l +_ZNK9oceanbase6common4hash9hash_funcINS0_8ObStringEEclERKS3_ +_ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_NS0_13LabelInfoItemEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS6_EELi82ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE32internal_get_with_timeout_unsafeERNS1_17ObHashTableBucketIS6_NS0_7ObLatchENS1_5NCondEEERKS3_RPKS6_l +_ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_NS0_13LabelInfoItemEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS6_EELi82ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE5clearEv +_ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE22for_each_in_one_bucketINS0_39IteratePartCtxAskSchedulerStatusFunctorEEEiRT_l +_ZN9oceanbase11transaction12ObLSTxCtxMgr14get_rec_log_tsERl +_ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE19generate_value_arr_ElRNS_6common9ObSEArrayIPS3_Ll32ENS6_19ModulePageAllocatorELb0EEE +_ZN9oceanbase11transaction18GetRecLogTSFunctorclEPNS0_10ObTransCtxE +_ZNK9oceanbase11transaction14ObPartTransCtx14get_rec_log_tsEv +_ZN9oceanbase3sql19string_length_checkERKNS0_6ObExprERKmRKNS_6common10ObAccuracyENS6_9ObObjTypeENS6_15ObCollationTypeERNS0_9ObEvalCtxERKNS6_7ObDatumERSE_Ri +_ZN9oceanbase3sql17ObPhysicalPlanCtx21sync_last_value_localEv +_ZZN9oceanbase3sql20ObDASIndexDMLAdaptorILi4ENS0_16ObDASDMLIteratorEE12write_tabletERS2_RlENKUlPKcE_clES7_ +_ZN9oceanbase3sql12ObDMLService24filter_row_for_check_cstERKNS_6common12ObFixedArrayIPNS0_6ObExprENS2_12ObIAllocatorEEERNS0_9ObEvalCtxERb +_ZN9oceanbase3sql20ObAggregateProcessor18generate_group_rowERPNS1_8GroupRowEl +_ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13alloc_alignedEll +_ZN9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE3mapINS8_8HandleOnINS_5share20ObActiveSessHistTaskEEEEEiRT_ +_ZN9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE4nextEPNS0_12LinkHashNodeIS3_EE +_ZN9oceanbase11transaction14ObPartTransCtx11start_transEv +_ZN9oceanbase3sql19ObIntIntBatchAddRaw9raw_checkElll +_ZN9oceanbase4palf13LogLoopThread9log_loop_Ev +_ZN9oceanbase4palf11PalfEnvImpl22try_freeze_log_for_allEv +_ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE3mapINS7_8HandleOnINS2_11PalfEnvImpl16FreezeLogFunctorEEEEEiRT_ +_ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE4nextEPNS0_12LinkHashNodeIS3_EE +_ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE8dec_urefEPNS0_12LinkHashNodeIS3_EE +_ZN9oceanbase4palf14PalfHandleImpl19try_freeze_last_logEv +_ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE18get_retire_stationEv +_ZN9oceanbase4palf16LogSlidingWindow19try_freeze_last_logEv +_ZN9oceanbase4palf19LogGroupEntryHeaderD1Ev +_ZN9oceanbase4palf19LogGroupEntryHeaderD2Ev +_ZNK9oceanbase4palf11LogStateMgr18is_follower_activeEv +_ZNK9oceanbase4palf11LogStateMgr8get_roleEv +_ZN9oceanbase4palf12LSNAllocator10try_freezeERNS0_3LSNERl +_ZZN9oceanbase4palf16LogSlidingWindow21handle_committed_log_EvENK5$_135clEPKc.0e4bf25207570af14a78557c8489c4fc +_ZN9oceanbase4palf16LogSlidingWindow21handle_committed_log_Ev +_ZN9oceanbase4palf7LogTask11can_be_slidEv +_ZNK9oceanbase4palf16LogSlidingWindow32is_all_committed_log_slided_out_ERNS0_3LSNERlS3_ +_ZNK9oceanbase4palf16LogSlidingWindow24get_last_slide_log_info_ERlS2_RNS0_3LSNES4_S2_ +_ZN9oceanbase4palf13FlushLogCbCtxD1Ev +_ZN9oceanbase4palf13FlushLogCbCtxD2Ev +_ZN9oceanbase4palf16LogSlidingWindow23handle_next_submit_log_ERb +_ZN9oceanbase6common8ObMemberC1Ev +_ZN9oceanbase6common8ObMemberC2Ev +_ZNK9oceanbase4palf16LogSlidingWindow25get_last_submit_log_info_ERNS0_3LSNES3_RlS4_ +_ZN9oceanbase4palf24palf_reach_time_intervalElRl +_ZN9oceanbase4palf19LogGroupEntryHeader27update_accumulated_checksumEl +_ZZN9oceanbase4palf16LogSlidingWindow23handle_next_submit_log_ERbENK5$_140clEPKc.0e4bf25207570af14a78557c8489c4fc +_ZN9oceanbase4palf13FlushLogCbCtxC1Ev +_ZN9oceanbase4palf13FlushLogCbCtxC2Ev +_ZN9oceanbase4palf16LogSlidingWindow20try_freeze_last_log_ElRKNS0_3LSNERb +_ZN9oceanbase4palf7LogTask11try_freeze_ERKNS0_3LSNE +_ZN9oceanbase4palf14LogGroupBuffer11get_log_bufERKNS0_3LSNElRNS0_11LogWriteBufE +_ZN9oceanbase4palf11LogWriteBuf9push_backEPKcl +_ZN9oceanbase4palf11LogWriteBufC1Ev +_ZN9oceanbase4palf11LogWriteBufC2Ev +_ZN9oceanbase6common13ObSEArrayImplINS_4palf11LogWriteBuf11InnerStructELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv +_ZN9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE5slideElPNS0_16ISlidingCallBackE +_ZN9oceanbase6common8TCRWLock21RLockGuardWithTimeoutD2Ev +_ZN9oceanbase4palf16LogSlidingWindow10sliding_cbElPKNS0_22FixedSlidingWindowSlotE +_ZN9oceanbase4palf19LogGroupEntryHeaderC1Ev +_ZN9oceanbase4palf19LogGroupEntryHeaderC2Ev +_ZN9oceanbase10logservice12ObReplayFsCb14update_end_lsnElRKNS_4palf3LSNEl +_ZN9oceanbase4palf15PalfFSCbWrapper14update_end_lsnElRKNS0_3LSNEl +_ZNK9oceanbase4palf3LSNgeERKS1_ +_ZN9oceanbase4palf11LogChecksum21verify_accum_checksumEll +_ZN9oceanbase4palf7LogTask5resetEv +_ZN9oceanbase4palf16LogSlidingWindow31try_push_log_to_paxos_follower_EllRKNS0_3LSNES4_RKNS0_11LogWriteBufE +_ZZN9oceanbase4palf16LogSlidingWindow23handle_next_submit_log_ERbENK5$_144clEPKc.0e4bf25207570af14a78557c8489c4fc +_ZN9oceanbase4palf16LogSlidingWindow28generate_group_entry_header_ElPNS0_7LogTaskERNS0_19LogGroupEntryHeaderERl +_ZN9oceanbase4palf19LogGroupEntryHeader22update_header_checksumEv +_ZN9oceanbase4palf19LogGroupEntryHeader8generateEbbRKNS0_11LogWriteBufElllRKNS0_3LSNERKlRl +_ZNK9oceanbase4palf11LogWriteBuf8is_validEv +_ZN9oceanbase4palf19LogGroupEntryHeader23calculate_log_checksum_EbRKNS0_11LogWriteBufElRl +_ZN9oceanbase4palf14LogEntryHeader11deserializeEPKclRl +_ZN9oceanbase6common12parity_checkEm +_ZN9oceanbase6common12parity_checkEt +_ZN9oceanbase6common12parity_checkEj +_ZNK9oceanbase4palf14LogEntryHeader22check_header_integrityEv +_ZNK9oceanbase4palf11LogWriteBuf25check_memory_is_continousEv +_ZNK9oceanbase4palf11LogWriteBuf13get_write_bufElRPKcRl +_ZN9oceanbase4palf11LogChecksum22acquire_accum_checksumElRl +_ZN9oceanbase6common16ObMemberListBaseILl7EE13remove_serverERKNS0_6ObAddrE +_ZNK9oceanbase4palf19LogGroupEntryHeader9serializeEPclRl +_ZN9oceanbase6common13ObSEArrayImplINS_4palf10LogLearnerELl1ENS0_19ModulePageAllocatorELb0EED2Ev +_ZN9oceanbase4palf16LogSlidingWindow31try_update_last_slide_log_info_EllRKNS0_3LSNES4_RKll +_ZN9oceanbase4palf11PalfEnvImpl24try_switch_state_for_allEv +_ZN9oceanbase4palf16LogSlidingWindow25try_push_log_to_children_EllRKNS0_3LSNES4_RKNS0_11LogWriteBufE +_ZN9oceanbase6common13ObSEArrayImplINS_4palf10LogLearnerELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv +_ZNK9oceanbase4palf12LogConfigMgr17get_children_listERNS_6common15BaseLearnerListILl15ENS0_10LogLearnerEEE +_ZN9oceanbase4palf9LogEngine21submit_flush_log_taskERKNS0_13FlushLogCbCtxERKNS0_11LogWriteBufE +_ZN9oceanbase4palf9LogEngine24generate_flush_log_task_ERKNS0_13FlushLogCbCtxERKNS0_11LogWriteBufERPNS0_17LogIOFlushLogTaskE +_ZN9oceanbase6common13ObSEArrayImplINS_4palf11LogWriteBuf11InnerStructELl2ENS0_19ModulePageAllocatorELb0EE5reuseEv +_ZZNK9oceanbase4palf19LogGroupEntryHeader9serializeEPclRlENK5$_651clEPKc.1598dc2348996c1ae1caea6120522988 +_ZN9oceanbase4palf17LogIOFlushLogTask4initERKNS0_13FlushLogCbCtxERKNS0_11LogWriteBufEll +_ZZN9oceanbase4palf17LogIOFlushLogTask4initERKNS0_13FlushLogCbCtxERKNS0_11LogWriteBufEllENK5$_664clEPKc.1598dc2348996c1ae1caea6120522988 +_ZN9oceanbase6common15BaseLearnerListILl15ENS_4palf10LogLearnerEE6appendERKS4_ +_ZN9oceanbase10logservice14ObReplayStatus17update_end_offsetERKNS_4palf3LSNE +_ZZN9oceanbase4palf16LogSlidingWindow28generate_group_entry_header_ElPNS0_7LogTaskERNS0_19LogGroupEntryHeaderERlENK5$_160clEPKc.0e4bf25207570af14a78557c8489c4fc +_ZN9oceanbase10logservice13ObApplyStatus29update_palf_committed_end_lsnERKNS_4palf3LSNEl +_ZNK9oceanbase4palf19LogGroupEntryHeader28get_header_parity_check_res_Ev +_ZNK9oceanbase10logservice14ObReplayStatus15need_submit_logEv +_ZN9oceanbase4palf16LogSlidingWindow25set_last_submit_log_info_ERKNS0_3LSNES4_lRKl +_ZZN9oceanbase4palf19LogGroupEntryHeader23calculate_log_checksum_EbRKNS0_11LogWriteBufElRlENK5$_642clEPKc.1598dc2348996c1ae1caea6120522988 +_ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE3mapINS7_8HandleOnINS2_11PalfEnvImpl18SwitchStateFunctorEEEEEiRT_ +_ZZNK9oceanbase4palf16LogSlidingWindow32is_all_committed_log_slided_out_ERNS0_3LSNERlS3_ENK5$_218clEPKc.0e4bf25207570af14a78557c8489c4fc +_ZZN9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE6revertElENKUlPKcE4_clES5_ +_ZZN9oceanbase4palf16LogSlidingWindow25set_last_submit_log_info_ERKNS0_3LSNES4_lRKlENK5$_185clEPKc.0e4bf25207570af14a78557c8489c4fc +_ZZN9oceanbase4palf16LogSlidingWindow23handle_next_submit_log_ERbENK5$_154clEPKc.0e4bf25207570af14a78557c8489c4fc +_ZN9oceanbase6common13ObSEArrayImplINS_4palf11LogWriteBuf11InnerStructELl2ENS0_19ModulePageAllocatorELb0EE7reserveEl +_ZZN9oceanbase4palf14LogGroupBuffer11get_log_bufERKNS0_3LSNElRNS0_11LogWriteBufEENK5$_596clEPKc.1598dc2348996c1ae1caea6120522988 +_ZZN9oceanbase4palf11LogChecksum21verify_accum_checksumEllENK5$_153clEPKc.1598dc2348996c1ae1caea6120522988 +_ZZN9oceanbase4palf19LogGroupEntryHeader23update_header_checksum_EvENK5$_643clEPKc.1598dc2348996c1ae1caea6120522988 +_ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE8HandleOnINS2_11PalfEnvImpl18SwitchStateFunctorEEclERS3_PS4_ +_ZN9oceanbase4palf14PalfHandleImpl22check_and_switch_stateEv +_ZN9oceanbase4palf11LogStateMgr16is_state_changedEv +_ZN9oceanbase4palf12LogConfigMgr19leader_do_loop_workEv +_ZN9oceanbase4palf12LogConfigMgr22try_resend_config_log_El +_ZN9oceanbase4palf11LogStateMgr26leader_active_need_switch_ERb +_ZNK9oceanbase4palf16LogSlidingWindow8is_emptyEv +_ZN9oceanbase4palf11LogStateMgr28check_leader_log_sync_state_Ev +_ZN9oceanbase4palf11LogStateMgr19need_update_leader_ERNS_6common6ObAddrE +_ZNK9oceanbase4palf8election12ElectionImpl25get_current_leader_likelyERNS_6common6ObAddrERl +_ZZN9oceanbase4palf11LogChecksum22acquire_accum_checksumElRlENK5$_151clEPKc.1598dc2348996c1ae1caea6120522988 +_ZZN9oceanbase10logservice13ObApplyStatus29update_palf_committed_end_lsnERKNS_4palf3LSNElENK4$_56clEPKc.d3a41d52a3cfae37a6a74713ee8e7132 +_ZZN9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE5slideElPNS0_16ISlidingCallBackEENKUlPKcE1_clES7_ +_ZZN9oceanbase4palf7LogTask18update_header_infoERKNS0_3LSNElENK5$_567clEPKc.0e4bf25207570af14a78557c8489c4fc +_ZZN9oceanbase4palf19LogGroupEntryHeader8generateEbbRKNS0_11LogWriteBufElllRKNS0_3LSNERKlRlENK5$_635clEPKc.1598dc2348996c1ae1caea6120522988 +_ZZN9oceanbase4palf16LogSlidingWindow31try_update_last_slide_log_info_EllRKNS0_3LSNES4_RKllENK5$_187clEPKc.0e4bf25207570af14a78557c8489c4fc +_ZN9oceanbase6common16ObCommonSqlProxy8get_poolEv +_ZZN9oceanbase11transaction14ObTransService14create_tx_ctx_ERKNS_5share6ObLSIDEPNS_7storage4ObLSERKNS0_8ObTxDescERPNS0_14ObPartTransCtxEENK6$_1010clEPKc.93feb755617c21c32b229b78773c290c +_ZNK9oceanbase5share15ObLocalIOEvents16get_complete_cntEv +_ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScanner24inner_inner_get_next_rowERPKNS0_10ObDatumRowERbS6_S6_ +_ZN9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEE8AbstractD2Ev +_ZN9oceanbase12blocksstable18ObMicroBlockReader22get_multi_version_infoEllRNS0_21ObMultiVersionRowFlagERNS_11transaction9ObTransIDERlS7_ +_ZN9oceanbase12blocksstable11ObRowReader15read_row_headerEPKclRPKNS0_11ObRowHeaderE +_ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScanner13lock_for_readERKNS_11transaction16ObLockForReadArgERbRlS6_ +_ZN9oceanbase6common10ObFunctionIFbvEE8AbstractD2Ev +_ZN9oceanbase7storage9ObTxTable13lock_for_readERKNS_11transaction16ObLockForReadArgElRbRlS6_RKNS_6common10ObFunctionIFiRKNS0_8ObTxDataEPNS0_9ObTxCCCtxEEEERKNS9_IFbvEEE +_ZN9oceanbase7storage18LockForReadFunctor7recheckEv +_ZNK9oceanbase6common10ObFunctionIFbvEE7DerivedINS_7storage25ObReCheckNothingOperationEE6invokeEv +_ZNK9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEE7DerivedINS2_26ObCleanoutNothingOperationEE4copyERNS0_12ObIAllocatorEPv +_ZNK9oceanbase6common10ObFunctionIFbvEE7DerivedINS_7storage25ObReCheckNothingOperationEE4copyERNS0_12ObIAllocatorEPv +_ZN9oceanbase7storage9ObTxTable18check_with_tx_dataENS_11transaction9ObTransIDERNS0_21ObITxDataCheckFunctorEl +_ZN9oceanbase7storage25ObReCheckNothingOperationclEv +_ZN9oceanbase12blocksstable11ObRowReader11read_columnEPKcllRNS0_14ObStorageDatumE +_ZN9oceanbase11transaction12ObLSTxCtxMgr18check_with_tx_dataERKNS0_9ObTransIDERNS_7storage21ObITxDataCheckFunctorE +_ZN9oceanbase7storage18LockForReadFunctorC2ERKNS_11transaction16ObLockForReadArgERbRlS6_RKNS_6common10ObFunctionIFiRKNS0_8ObTxDataEPNS0_9ObTxCCCtxEEEERKNS9_IFbvEEE +_ZN9oceanbase7storage9ObTxTable22check_state_and_epoch_ENS_11transaction9ObTransIDElbRi +_ZNK9oceanbase6common10ObFunctionIFbvEE7DerivedINS_7storage38ObReCheckTxNodeForLockForReadOperationEE4copyERNS0_12ObIAllocatorEPv +_ZN9oceanbase7storage13ObTxDataTable18check_with_tx_dataENS_11transaction9ObTransIDERNS0_21ObITxDataCheckFunctorE +_ZN9oceanbase7storage13ObTxDataTable25check_tx_data_in_sstable_ENS_11transaction9ObTransIDERNS0_21ObITxDataCheckFunctorE +_ZNK9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEE7DerivedINS2_26ObCleanoutNothingOperationEE6invokeES5_S7_ +_ZN9oceanbase7storage16ObTableIterParamD1Ev +_ZN9oceanbase7storage16ObTableIterParamD2Ev +_ZN9oceanbase7storage26ObCleanoutNothingOperationclERKNS0_8ObTxDataEPNS0_9ObTxCCCtxE +_ZN9oceanbase7storage13ObTxDataTable13alloc_tx_dataERPNS0_8ObTxDataE +_ZN9oceanbase7storage8ObTxData5resetEv +_ZN9oceanbase6common12ObSliceAlloc5allocEv +_ZN9oceanbase6common13ObBlockSlicer10alloc_itemEv +_ZN9oceanbase7storage13ObTxDataTable23get_tx_data_in_sstable_ENS_11transaction9ObTransIDERPNS0_8ObTxDataE +_ZN9oceanbase7storage18LockForReadFunctorclERKNS0_8ObTxDataEPNS0_9ObTxCCCtxE +_ZN9oceanbase7storage23ObTxDataSingleRowGetter13get_next_row_ERNS0_14ObSSTableArrayERNS0_8ObTxDataE +_ZN9oceanbase7storage20ObTableAccessContext4initERKNS_6common11ObQueryFlagERNS0_10ObStoreCtxERNS2_12ObIAllocatorERKNS2_14ObVersionRangeE +_ZN9oceanbase7storage23ObTxDataSingleRowGetter22get_row_from_sstables_ERNS_12blocksstable13ObDatumRowkeyERNS0_14ObSSTableArrayERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextERNS0_8ObTxDataE +_ZN9oceanbase7storage23ObTxDataSingleRowGetter35deserialize_tx_data_from_store_row_EPKNS_12blocksstable10ObDatumRowERNS0_8ObTxDataE +_ZN9oceanbase7storage8ObTxData11deserializeEPKclRlRNS_6common12ObSliceAllocE +_ZN9oceanbase7storage8ObTxData12deserialize_EPKclRlRNS_6common12ObSliceAllocE +_ZN9oceanbase7storage16ObUndoStatusList11deserializeEPKclRlRNS_6common12ObSliceAllocE +_ZN9oceanbase6common12ObSliceAlloc13prepare_blockEv +_ZN9oceanbase7storage14ObTabletHandleC1ERKS1_ +_ZN9oceanbase7storage14ObTabletHandleC2ERKS1_ +_ZN9oceanbase7storage16ObUndoStatusList12deserialize_EPKclRlRNS_6common12ObSliceAllocE +_ZN9oceanbase11transaction9ObTransID11deserializeEPKclRl +_ZN9oceanbase11transaction9ObTransID21deserialize_dispatch_EPKclRlSt17integral_constantIbLb0EE +_ZN9oceanbase11transaction9ObTransID12deserialize_EPKclRl +_ZN9oceanbase7storage13ObTxDataTable12free_tx_dataEPNS0_8ObTxDataE +_ZN9oceanbase7storage18LockForReadFunctor19inner_lock_for_readERKNS0_8ObTxDataEPNS0_9ObTxCCCtxE +_ZN9oceanbase7storage13ObTxDataTable22update_memtables_cacheEv +_ZN9oceanbase7storage13ObTxDataTable34check_need_update_memtables_cache_ERb +_ZN9oceanbase11transaction14ObPartTransCtx18check_with_tx_dataERNS_7storage21ObITxDataCheckFunctorE +_ZN9oceanbase7storage13ObTxDataTable26check_tx_data_in_memtable_ENS_11transaction9ObTransIDERNS0_21ObITxDataCheckFunctorE +_ZN9oceanbase7storage13ObTxDataTable31get_tx_data_in_memtables_cache_ENS_11transaction9ObTransIDERNS0_15ObTableHandleV2ERNS0_13ObTxDataGuardERb +_ZN9oceanbase7storage16ObTxDataMemtable11get_tx_dataERKNS_11transaction9ObTransIDERNS0_13ObTxDataGuardE +_ZN9oceanbase6common13ObLinkHashMapINS_11transaction9ObTransIDENS_7storage8ObTxDataENS4_24TxDataHashMapAllocHandleENS0_9RefHandleELl8EE3getERKS3_RPS5_ +_ZN9oceanbase6common10ObRowStoreC1ERKNS_3lib7ObLabelEmb +_ZN9oceanbase6common10ObRowStoreC2ERKNS_3lib7ObLabelEmb +_ZN9oceanbase6common16ObPriorityQueue2ILi0ELi1ELi0EE6do_popERPNS0_6ObLinkEll +_ZN9oceanbase6common11ObLinkQueue3popERPNS0_6ObLinkE +_ZN9oceanbase3sql12ObDMLService24set_heap_table_hidden_pkERKNS0_10ObInsCtDefERKNS_6common10ObTabletIDERNS0_9ObEvalCtxE +_ZNK9oceanbase6common6number8ObNumber9format_v2EPclRlsb +_ZNK9oceanbase6common6number8ObNumber12format_int64EPcRlsRb +_ZN9oceanbase6common15ObFastFormatInt15format_unsignedEmPc +_ZNK9oceanbase5share6schema19ObSchemaGetterGuard14get_schema_mgrEmRPKNS1_11ObSchemaMgrE +_ZN9oceanbase3sql12ObDMLService26init_heap_table_pk_for_insERKNS0_10ObInsCtDefERNS0_9ObEvalCtxE +_ZNK9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS_3sql17ObILibCacheObjectEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE18foreach_refactoredINS4_16ObGetAllPlanIdOpEEEiRT_ +_ZN9oceanbase3sql16ObGetAllPlanIdOpclERNS_6common4hash11HashMapPairImPNS0_17ObILibCacheObjectEEE +_ZN9oceanbase3omt8ObTenant24check_group_worker_countEv +_ZN9oceanbase3omt15ObResourceGroup18check_worker_countEv +_ZN9oceanbase12blocksstable10ObRowCache7get_rowERKNS0_13ObRowCacheKeyERNS0_16ObRowValueHandleE +_ZN9oceanbase3sql9ObLogPlan22calc_intersect_serversERKNS_6common8ObIArrayIPNS0_15ObCandiTableLocEEERNS2_6ObListINS2_6ObAddrENS2_16ObArenaAllocatorEEE +_ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScanner10do_compactEPKNS0_10ObDatumRowERS2_Rb +_ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE19append_dumped_partsENS0_9InputSideE +_ZN9oceanbase5share6schema19ObSchemaGetterGuard17get_schema_statusEmRNS1_21ObRefreshSchemaStatusE +_ZNK9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS_3sql17ObILibCacheObjectEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE18foreach_refactoredINS4_25ObDumpAllCacheObjByTypeOpEEEiRT_ +_ZN9oceanbase6common13ObTimeUtility19current_time_coarseEv +_ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE20free_remain_one_pageEv +_ZZN9oceanbase3sql15ObTableDeleteOp23get_next_row_from_childEvENKUlPKcE0_clES3_ +_ZN9oceanbase3sql15ObTableInsertOp18ins_rows_post_procEv +_ZN9oceanbase3sql13ObDASInsertOp10release_opEv +_ZNK9oceanbase5share6schema13ObTableSchema16get_column_countEv +_ZNK9oceanbase7storage19ObMemtableMgrHandle8is_validEv +_ZZN9oceanbase3sql17ObSqlTransControl13do_end_trans_EPNS0_16ObSQLSessionInfoEbblPNS0_23ObEndTransAsyncCallbackEENK6$_2311clEPKc.2477d7488918a1107364fd115ff965f5 +_ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE6revertEPS4_ +_ZN9oceanbase5share25get_tenant_base_with_lockEmRNS_6common10ObLDHandleERPNS0_12ObTenantBaseERSt8functionIFiS3_EE +_ZNK9oceanbase3omt13ObMultiTenant27get_tenant_with_tenant_lockEmRNS_6common10ObLDHandleERPNS0_8ObTenantE +_ZN9oceanbase11transaction10ObTransCtx13get_ctx_guardERNS0_12CtxLockGuardE +_ZN9oceanbase3sql13TriggerHandle18init_param_new_rowERNS0_9ObEvalCtxERKNS0_14ObTrigDMLCtDefERNS0_14ObTrigDMLRtDefE +_ZN9oceanbase3sql16ObSQLSessionInfo24update_show_warnings_bufEv +_Z13ob_charpos_mbPK13ObCharsetInfoPKcS3_m +_ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql20ObAggregateProcessor12IAggrFuncCtxENS0_12ObIAllocatorEE7reserveEl +_ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql20ObAggregateProcessor12IAggrFuncCtxENS0_12ObIAllocatorEE4initEl +_ZN9oceanbase3sql12ObDMLService29check_rowkey_whether_distinctERKNS_6common8ObIArrayIPNS0_6ObExprEEEllNS0_12DistinctTypeERNS0_9ObEvalCtxERPNS2_4hash9ObHashSetINS0_12SeRowkeyItemENSC_19NoPthreadDefendModeENSC_9hash_funcISE_EENSC_8equal_toISE_EENSC_13SimpleAllocerINSC_15ObHashTableNodeINSC_11HashMapPairISE_NSC_11HashNullObjEEEEELi89ENSC_19SpinMutexDefendModeENSC_29DefaultSimpleAllocerAllocatorEEENSC_13NormalPointerENS2_8ObMallocELl1EEERb +_ZN9oceanbase7storage17ObLSTabletService24check_old_row_legitimacyERNS0_14ObTabletHandleERNS0_15ObDMLRunningCtxERKNS_6common8ObNewRowE +_ZNK9oceanbase10rootserver13ObRootService11is_stoppingEv +_ZNSt17_Function_handlerIFiRN9oceanbase6common10ObLDHandleEEZNS0_5share25get_tenant_base_with_lockEmS3_RPNS5_12ObTenantBaseERSt8functionIS4_EE4$_13E9_M_invokeERKSt9_Any_dataS3_.dffa7baff4f06077efbca9bde9102f22 +_ZThn320_N9oceanbase12blocksstable18ObMicroBlockReader22get_multi_version_infoEllRNS0_21ObMultiVersionRowFlagERNS_11transaction9ObTransIDERlS7_ +_ZNK9oceanbase6common4hash11ObHashTableINS_3sql3dtl20ObDTLIntermResultKeyENS1_11HashMapPairIS5_PNS4_21ObDTLIntermResultInfoEEENS1_9hash_funcIS5_EENS1_8equal_toIS5_EENS1_10pair_firstIS9_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS9_EELi82ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE18foreach_refactoredINS4_19ObDTLIntermResultGCEEEiRT_ +_ZN9oceanbase11transaction8ObTxDesc18implicit_start_tx_Ev +_ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScanner21locate_cursor_to_readERb +_ZNK9oceanbase3sql25ObDumpAllCacheObjByTypeOp11should_dumpEPNS0_17ObILibCacheObjectE +_ZN9oceanbase3sql20ObAggregateProcessor19prepare_aggr_resultERKNS0_17ObChunkDatumStore9StoredRowEPKNS_6common8ObIArrayIPNS0_6ObExprEEERNS1_8AggrCellERKNS0_10ObAggrInfoE +_ZN9oceanbase3sql20ObAggregateProcessor16prepare_add_calcERKNS_6common7ObDatumERNS1_8AggrCellERKNS0_10ObAggrInfoE +_ZN9oceanbase5share11ObTenantEnv10set_tenantEPNS0_12ObTenantBaseE +_ZN9oceanbase3lib20set_tenant_tg_helperEPNS0_8TGHelperE +_ZN9oceanbase5share12ObTenantBaseaSERKS1_ +_ZN9oceanbase5share12ObTenantBaseC1Emb +_ZN9oceanbase5share12ObTenantBaseC2Emb +_ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIlNS1_11HashNullObjEEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEED2Ev +_ZN9oceanbase6common4hash9ObHashMapINS_5share17ThreadDynamicNodeEdNS1_24LatchReadWriteDefendModeENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS4_dEEEELi82ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev +_ZN9oceanbase6common4hash9ObHashSetIlNS1_19ReadWriteDefendModeENS1_9hash_funcIlEENS1_8equal_toIlEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIlNS1_11HashNullObjEEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev +_ZN9oceanbase8memtable13ObMemtableCtx17enable_lock_tableERNS_7storage15ObTableHandleV2E +_ZN9oceanbase11transaction9tablelock12ObLockMemCtx4initERNS_7storage15ObTableHandleV2E +_ZN9oceanbase6common14ObKVCacheStore24compute_tenant_wash_sizeEv +_ZN9oceanbase6common16ObKVCacheInstMap18get_all_cache_infoERNS0_8ObIArrayINS0_19ObKVCacheInstHandleEEE +_ZN9oceanbase6common22ObFixedHashMapIteratorImPNS0_14ObKVCacheStore14TenantWashInfoENS0_4hash9hash_funcImEEEppEv +_ZN9oceanbase5obrpc16ObTransRpcResult5resetEv +_ZN9oceanbase3omt8ObTenant16handle_retry_reqEv +_ZN9oceanbase3sql14ObRawExprUtils18replace_ref_columnERPNS0_9ObRawExprES3_S3_PKNS_6common8ObIArrayIS3_EE +_ZN9oceanbase8observer15ObSyncCmdDriver30process_schema_version_changesERKNS0_16ObMySQLResultSetE +_ZN9oceanbase8keybtree10ObKeyBtree18get_retire_stationEv +_ZN9oceanbase3sql16ObRawExprFactory7destoryEv +_ZN9oceanbase3sql14ObConstRawExprD1Ev +_ZN9oceanbase3sql18ObColumnRefRawExprD1Ev +_ZN9oceanbase7storage12ObLSIterator8get_nextERPNS0_4ObLSE +_ZN9oceanbase6common11ObArrayImplIPNS_7storage4ObLSENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEE9push_backERKS4_ +_ZN9oceanbase6common11ObArrayImplIPNS_7storage4ObLSENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEE10extend_bufEl +_ZNK9oceanbase8observer16ObInnerSQLResult7get_intEPKcRl +_ZNK9oceanbase8observer16ObInnerSQLResult7get_intElRl +_ZNK9oceanbase8observer16ObInnerSQLResult8find_idxEPKcRl +_ZNK9oceanbase8observer16ObInnerSQLResult16build_column_mapEv +_ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_lEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14set_refactoredERKS3_RKS5_iii +_ZNK9oceanbase8observer16ObInnerSQLResult7get_objElRPKNS_6common5ObObjE +_ZN9oceanbase6common4hash9ObHashMapINS0_8ObStringElNS1_19NoPthreadDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_lEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE6createElRKNS_3lib7ObLabelESN_mm +obsql_mysql_yyparse +mysql_non_reserved_keyword_lookup +new_terminal_node +count_child +new_non_terminal_node +merge_tree +parse_malloc +_Z19parser_alloc_bufferPvl +setup_token_pos_info +new_link_node +obsql_mysql_yylex +yy_get_previous_state.609565a8af3f883a2d183bfc9d8bb068 +find_word +yy_get_next_buffer.609565a8af3f883a2d183bfc9d8bb068 +new_node +parse_strndup +_ZNSt14_Function_base13_Base_managerIZNK9oceanbase3lib20ObTenantCtxAllocator8get_holdEvEUlPKNS2_17ObTenantMemoryMgrEE_E10_M_managerERSt9_Any_dataRKS9_St18_Manager_operation +_ZN9oceanbase3sql13ObRoutePolicy24select_intersect_replicaERNS0_16ObRoutePolicyCtxERNS_6common8ObIArrayIPNS0_15ObCandiTableLocEEERNS4_6ObListINS1_16CandidateReplicaENS4_16ObArenaAllocatorEEERb +_ZN9oceanbase3sql13ObRoutePolicy23calc_intersect_repllicaERKNS_6common8ObIArrayIPNS0_15ObCandiTableLocEEERNS2_6ObListINS1_16CandidateReplicaENS2_16ObArenaAllocatorEEE +_ZN9oceanbase6common15ObLinearHashMapINS_12blocksstable12MacroBlockIdENS2_14ObBlockManager9BlockInfoENS0_14ShareMemMgrTagEE16do_foreach_scan_INS4_25GetAllMacroBlockIdFunctorENS7_14DoForeachOnBktIS9_EEEEbmmRT_RT0_ +_ZN9oceanbase6common15ObLinearHashMapINS_12blocksstable12MacroBlockIdENS2_14ObBlockManager9BlockInfoENS0_14ShareMemMgrTagEE16load_access_bkt_EmRPNS7_6BucketE +_ZN9oceanbase6common15ObLinearHashMapINS_12blocksstable12MacroBlockIdENS2_14ObBlockManager9BlockInfoENS0_14ShareMemMgrTagEE14DoForeachOnBktINS4_25GetAllMacroBlockIdFunctorEEclERS7_PNS7_6BucketERS9_ +_ZN9oceanbase6common11ObArrayImplINS_12blocksstable12MacroBlockIdENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE9push_backERKS3_ +_ZZN9oceanbase3sql16ObHashDistinctOp5resetEvENK5$_459clEPKc.ae889f3027d8490103b30de3c389dd2f +_ZN9oceanbase3sql20ObAggregateProcessor17collect_group_rowEPNS1_8GroupRowElPKNS0_6ObExprEl +_ZN9oceanbase3sql20ObAggregateProcessor19collect_aggr_resultERNS1_8AggrCellEPKNS0_6ObExprERKNS0_10ObAggrInfoEll +_ZN9oceanbase3sql20ObAggregateProcessor8AggrCell14collect_resultENS_6common14ObObjTypeClassERNS0_9ObEvalCtxERKNS0_10ObAggrInfoE +_ZN9oceanbase6common6number8ObNumber10TAllocatorINS_3sql19ObNumStackAllocatorILl2EEEE5allocEl +_ZN9oceanbase6common6number8ObNumber13from_integer_IlEEiT_RNS2_10IAllocatorE +_ZN9oceanbase3sql9ObRawExpr16postorder_acceptERNS0_16ObRawExprVisitorE +_ZNK9oceanbase3sql9ObRawExpr16skip_visit_childEv +_ZNK9oceanbase3sql11ObOpRawExpr15get_param_countEv +_ZNK9oceanbase3sql17ObTerminalRawExpr15get_param_countEv +_ZN9oceanbase3sql16ObRawExprVisitor10skip_childERNS0_9ObRawExprE +_ZN9oceanbase3sql11ObOpRawExpr14get_param_exprEl +_ZN9oceanbase3sql14ObConstRawExpr8do_visitERNS0_16ObRawExprVisitorE +_ZN9oceanbase3sql18ObColumnRefRawExpr8do_visitERNS0_16ObRawExprVisitorE +_ZNK9oceanbase3sql15ObCaseOpRawExpr15get_param_countEv +_ZN9oceanbase3sql22ObRawExprInfoExtractor5visitERNS0_18ObColumnRefRawExprE +_ZN9oceanbase3sql11ObOpRawExpr8do_visitERNS0_16ObRawExprVisitorE +_ZN9oceanbase3sql15ObCaseOpRawExpr14get_param_exprEl +_ZN9oceanbase3sql15ObSysFunRawExpr8do_visitERNS0_16ObRawExprVisitorE +_ZN9oceanbase3sql22ObRawExprInfoExtractor5visitERNS0_14ObConstRawExprE +_ZNK9oceanbase3sql17ObQueryRefRawExpr15get_param_countEv +_ZN9oceanbase3sql19ObRawExprDeduceType5visitERNS0_14ObConstRawExprE +_ZN9oceanbase3sql19ObRawExprDeduceType5visitERNS0_18ObColumnRefRawExprE +_ZN9oceanbase3sql15ObCaseOpRawExpr8do_visitERNS0_16ObRawExprVisitorE +_ZN9oceanbase3sql22ObRawExprInfoExtractor5visitERNS0_15ObSysFunRawExprE +_ZN9oceanbase3sql22ObRawExprInfoExtractor9pull_infoERNS0_9ObRawExprE +_ZN9oceanbase3sql9ObRawExpr15add_child_flagsERKNS0_11ObSqlBitSetILl96ENS0_14ObExprInfoFlagELb1EEE +_ZN9oceanbase3sql11ObSqlBitSetILl96ENS0_14ObExprInfoFlagELb1EE10add_memberEl +_ZN9oceanbase3sql11ObSqlBitSetILl96ENS0_14ObExprInfoFlagELb1EE7do_maskEll +_ZN9oceanbase3sql11ObSqlBitSetILl96ENS0_14ObExprInfoFlagELb1EEC2ERKS3_ +_ZN9oceanbase3sql11ObSqlBitSetILl96ENS0_14ObExprInfoFlagELb1EE11add_membersILl96ES2_Lb1EEEiRKNS1_IXT_ET0_XT1_EEE +_ZN9oceanbase3sql22ObRawExprInfoExtractor9add_constERNS0_9ObRawExprE +_ZN9oceanbase3sql22ObRawExprInfoExtractor10clear_infoERNS0_9ObRawExprE +_ZN9oceanbase3sql22ObRawExprInfoExtractor19not_calculable_exprERKNS0_9ObRawExprE +_ZNK9oceanbase3sql9ObRawExpr22has_generalized_columnEv +_ZN9oceanbase3sql19ObRawExprDeduceType5visitERNS0_15ObSysFunRawExprE +_ZN9oceanbase3sql15ObSysFunRawExpr6get_opEv +_ZN9oceanbase3sql20ObNonTerminalRawExpr6get_opEv +_ZN9oceanbase6common13ObSEArrayImplINS_3sql13ObExprResTypeELl5ENS0_19ModulePageAllocatorELb1EE9push_backERKS3_ +_ZN9oceanbase6common16ObFixedArrayImplINS0_9ObObjMetaENS0_12ObIAllocatorEE6assignERKNS0_8ObIArrayIS2_EE +_ZN9oceanbase3sql19ObRawExprDeduceType17add_implicit_castERNS0_11ObOpRawExprERKm +_ZN9oceanbase3sql19ObRawExprDeduceType16calc_result_typeERNS0_20ObNonTerminalRawExprERNS_6common8ObIArrayINS0_13ObExprResTypeEEERmi +_ZN9oceanbase6common13ObSEArrayImplINS_3sql13ObExprResTypeELl5ENS0_19ModulePageAllocatorELb1EE7destroyEv +_ZNK9oceanbase3sql18ObBasicSessionInfo27get_div_precision_incrementERl +_ZN9oceanbase6common13ObSEArrayImplINS_3sql13ObExprResTypeELl5ENS0_19ModulePageAllocatorELb1EE6assignERKNS0_8ObIArrayIS3_EE +_ZN9oceanbase3sql20ObNonTerminalRawExpr15set_input_typesERKNS_6common8ObIArrayINS0_13ObExprResTypeEEE +_ZN9oceanbase6common13ObSEArrayImplINS_3sql13ObExprResTypeELl5ENS0_19ModulePageAllocatorELb1EE16prepare_allocateEl +_ZN9oceanbase3sql10ObSQLUtils13init_type_ctxEPKNS0_16ObSQLSessionInfoERNS_6common13ObExprTypeCtxE +_ZN9oceanbase3sql19ObRawExprDeduceType17try_add_cast_exprINS0_11ObOpRawExprEEEiRT_lRKNS0_13ObExprResTypeERKm +_ZN9oceanbase3sql19ObRawExprDeduceType39try_add_cast_expr_above_for_deduce_typeERNS0_9ObRawExprERPS2_RKNS0_13ObExprResTypeERKm +_ZN9oceanbase3sql14ObRawExprUtils23try_add_cast_expr_aboveEPNS0_16ObRawExprFactoryEPKNS0_16ObSQLSessionInfoERNS0_9ObRawExprERKNS0_13ObExprResTypeERKmRPS7_ +_ZN9oceanbase3sql14ObRawExprUtils20check_need_cast_exprERKNS0_13ObExprResTypeES4_Rb +_ZN9oceanbase3sql19ObRawExprDeduceType28assign_var_exprs_result_typeERNS0_20ObNonTerminalRawExprERNS_6common8ObIArrayINS0_13ObExprResTypeEEE +_ZNK9oceanbase3sql14ObExprOperator18is_default_expr_cgEv +_ZN9oceanbase3sql19ObRawExprDeduceType30adjust_cast_as_signed_unsignedERNS0_15ObSysFunRawExprE +_ZN9oceanbase6common13ObSEArrayImplINS_3sql13ObExprResTypeELl5ENS0_19ModulePageAllocatorELb1EE5reuseEv +_ZNK9oceanbase3sql18ObBasicSessionInfo17get_int64_sys_varENS_5share17ObSysVarClassTypeERl +_ZNK9oceanbase3sql18ObBasicSessionInfo17inner_get_sys_varENS_5share17ObSysVarClassTypeERlRPNS2_13ObBasicSysVarE +_ZN9oceanbase6common13ObSEArrayImplINS_3sql13ObExprResTypeELl5ENS0_19ModulePageAllocatorELb1EE7reserveEl +_ZN9oceanbase3sql22ObRawExprInfoExtractor5visitERNS0_11ObOpRawExprE +_ZN9oceanbase3sql22ObRawExprInfoExtractor14add_calculableERNS0_11ObOpRawExprE +_ZN9oceanbase3sql19ObRawExprDeduceType5visitERNS0_11ObOpRawExprE +_ZN9oceanbase3sql14ObExprOperator15set_input_typesERKNS_6common8ObIArrayINS0_13ObExprResTypeEEE +_ZN9oceanbase3sql15ObFuncInputTypeD2Ev +_ZN9oceanbase6common16ObFixedArrayImplINS_3sql15ObFuncInputTypeENS0_12ObIAllocatorEE7destroyEv +_ZN9oceanbase6common7ObField19get_field_mb_lengthENS0_9ObObjTypeERKNS0_10ObAccuracyENS0_15ObCollationTypeERi +_ZNK9oceanbase3sql24ObRelationalExprOperator17calc_result_type2ERNS0_13ObExprResTypeES3_S3_RNS_6common13ObExprTypeCtxE +_ZNK9oceanbase3sql14ObExprOperator8get_typeEv +_ZN9oceanbase3sql24ObRelationalExprOperator15deduce_cmp_typeERKNS0_14ObExprOperatorERNS0_13ObExprResTypeES6_S6_RNS_6common13ObExprTypeCtxE +_ZN9oceanbase6common12ObDatumFuncs14is_string_typeENS0_9ObObjTypeE +_ZN9oceanbase6common16ObFixedArrayImplINS_3sql15ObFuncInputTypeENS0_12ObIAllocatorEE9push_backERKS3_ +_ZNK9oceanbase3sql10ObExprCast17calc_result_type2ERNS0_13ObExprResTypeES3_S3_RNS_6common13ObExprTypeCtxE +_ZN9oceanbase6common14cast_supportedENS0_9ObObjTypeENS0_15ObCollationTypeES1_S2_ +_ZNK9oceanbase3sql10ObExprCast20get_explicit_cast_cmERKNS0_13ObExprResTypeES4_RKNS0_16ObSQLSessionInfoERKNS0_9ObRawExprERm +_ZN9oceanbase3sql14ObExprOperator18get_calc_cast_typeENS_6common9ObObjTypeES3_ +_ZNK9oceanbase3sql10ObExprCast13get_cast_typeENS0_13ObExprResTypeERS2_ +_ZNK9oceanbase3sql23ObExprEffectiveTenantId17calc_result_type0ERNS0_13ObExprResTypeERNS_6common13ObExprTypeCtxE +_ZN9oceanbase6common16ObFixedArrayImplINS0_9ObObjMetaENS0_12ObIAllocatorEE9push_backERKS2_ +_ZNK9oceanbase3sql21ObBitwiseExprOperator17calc_result_type2ERNS0_13ObExprResTypeES3_S3_RNS_6common13ObExprTypeCtxE +_ZNK9oceanbase3sql14ObExprOperator14calc_cmp_type2ERNS0_13ObExprResTypeERKS2_S5_NS_6common15ObCollationTypeE +_ZN9oceanbase3sql11ObSqlBitSetILl96ENS0_14ObExprInfoFlagELb1EE13alloc_new_bufEl +_ZN9oceanbase3sql22ObRawExprInfoExtractor19visit_subquery_nodeERNS0_11ObOpRawExprE +_ZNK9oceanbase3sql10ObExprCase17calc_result_typeNERNS0_13ObExprResTypeEPS2_lRNS_6common13ObExprTypeCtxE +_ZN9oceanbase3sql21ObExprOperatorFactory5allocE10ObItemTypeRPNS0_14ObExprOperatorE +_ZN9oceanbase3sql21ObExprOperatorFactory5allocINS0_10ObExprCastEEEiRNS_6common12ObIAllocatorERPNS0_14ObExprOperatorE +_ZN9oceanbase3sql10ObExprCastC1ERNS_6common12ObIAllocatorE +_ZN9oceanbase3sql10ObExprCastC2ERNS_6common12ObIAllocatorE +_ZN9oceanbase3sql21ObExprOperatorFactory5allocINS0_9ObExprMulEEEiRNS_6common12ObIAllocatorERPNS0_14ObExprOperatorE +_ZN9oceanbase3sql19ObRawExprDeduceType23get_row_expr_param_typeERKNS0_9ObRawExprERNS_6common8ObIArrayINS0_13ObExprResTypeEEE +_ZN9oceanbase3sql11ObExprEqualC1ERNS_6common12ObIAllocatorE +_ZN9oceanbase3sql11ObExprEqualC2ERNS_6common12ObIAllocatorE +_ZNK9oceanbase3sql11ObExprEqual17calc_result_type2ERNS0_13ObExprResTypeES3_S3_RNS_6common13ObExprTypeCtxE +_ZN9oceanbase3sql24ObRelationalExprOperator20can_cmp_without_castENS0_13ObExprResTypeES2_NS_6common7ObCmpOpERKNS0_16ObSQLSessionInfoE +_ZN9oceanbase3sql20ObExprCmpFuncsHelper22get_eval_expr_cmp_funcENS_6common9ObObjTypeES3_NS2_7ObCmpOpEbNS2_15ObCollationTypeE +_ZNK9oceanbase3sql9ObExprAdd17calc_result_type2ERNS0_13ObExprResTypeES3_S3_RNS_6common13ObExprTypeCtxE +_ZN9oceanbase3sql21ObExprOperatorFactory5allocINS0_18ObExprOracleToCharEEEiRNS_6common12ObIAllocatorERPNS0_14ObExprOperatorE +_ZN9oceanbase3sql21ObExprOperatorFactory5allocINS0_18ObExprOracleDecodeEEEiRNS_6common12ObIAllocatorERPNS0_14ObExprOperatorE +_ZNK9oceanbase3sql9ObExprDiv17calc_result_type2ERNS0_13ObExprResTypeES3_S3_RNS_6common13ObExprTypeCtxE +_ZNK9oceanbase3sql19ObArithExprOperator17calc_result_type2ERNS0_13ObExprResTypeES3_S3_RNS_6common13ObExprTypeCtxE +_ZN9oceanbase3sql20ObExprResultTypeUtil19get_mul_result_typeERNS0_13ObExprResTypeERKS2_S5_ +_ZN9oceanbase3sql20ObExprResultTypeUtil19get_arith_calc_typeERNS_6common9ObObjTypeES4_S4_S3_S3_NS0_20ObArithResultTypeMap2OPE +_ZN9oceanbase3sql20ObExprResultTypeUtil19get_mul_result_typeERNS_6common9ObObjTypeES4_S4_S3_S3_ +_ZN9oceanbase3sql20ObExprResultTypeUtil19get_div_result_typeERNS_6common9ObObjTypeES4_S4_S3_S3_ +_ZNK9oceanbase3sql13ObExprArgCase17calc_result_typeNERNS0_13ObExprResTypeEPS2_lRNS_6common13ObExprTypeCtxE +_ZN9oceanbase6common16ObFixedArrayImplINS0_9ObObjMetaENS0_12ObIAllocatorEE4initEl +_ZNK9oceanbase3sql9ObExprNeg17calc_result_type1ERNS0_13ObExprResTypeES3_RNS_6common13ObExprTypeCtxE +_ZN9oceanbase6common16ObFixedArrayImplINS_3sql15ObFuncInputTypeENS0_12ObIAllocatorEE7reserveEl +_ZN9oceanbase6common16ObFixedArrayImplINS_3sql15ObFuncInputTypeENS0_12ObIAllocatorEE4initEl +_ZN9oceanbase3sql19ObRawExprDeduceType16check_expr_paramERNS0_11ObOpRawExprE +_ZN9oceanbase3sql19ObRawExprDeduceType23check_param_expr_op_rowEPNS0_9ObRawExprEl +_ZN9oceanbase3sql19ObRawExprDeduceType15check_row_paramERNS0_11ObOpRawExprE +_ZN9oceanbase3sql14ObExprOperator40aggregate_string_type_and_charset_oracleERKNS0_18ObBasicSessionInfoERKNS_6common8ObIArrayIPNS0_13ObExprResTypeEEERS7_l +_ZNK9oceanbase3sql10ObExprCast19get_cast_string_lenERNS0_13ObExprResTypeES3_RNS_6common13ObExprTypeCtxERiRsNS4_15ObCollationTypeEm +_ZNK9oceanbase3sql10ObExprLike17calc_result_type3ERNS0_13ObExprResTypeES3_S3_S3_RNS_6common13ObExprTypeCtxE +_ZN9oceanbase3sql19ObRawExprDeduceType5visitERNS0_15ObCaseOpRawExprE +_ZN9oceanbase3sql19ObRawExprDeduceType17add_implicit_castERNS0_15ObCaseOpRawExprERKm +_ZN9oceanbase3sql19ObRawExprDeduceType17try_add_cast_exprINS0_15ObCaseOpRawExprEEEiRT_lRKNS0_13ObExprResTypeERKm +_ZN9oceanbase6common16ObFixedArrayImplINS_3sql13ObExprResTypeENS0_12ObIAllocatorEE9push_backERKS3_ +_ZN9oceanbase6common16ObFixedArrayImplINS_3sql13ObExprResTypeENS0_12ObIAllocatorEE7reserveEl +_ZNK9oceanbase3sql18ObExprOracleDecode17calc_result_typeNERNS0_13ObExprResTypeEPS2_lRNS_6common13ObExprTypeCtxE +_ZN9oceanbase3sql19ObRawExprDeduceType5visitERNS0_15ObAggFunRawExprE +_ZN9oceanbase3sql19ObRawExprDeduceType22check_group_aggr_paramERNS0_15ObAggFunRawExprE +_ZN9oceanbase3sql13TriggerHandle18init_param_old_rowERNS0_9ObEvalCtxERKNS0_14ObTrigDMLCtDefERNS0_14ObTrigDMLRtDefE +_ZN9oceanbase6common13ObSEArrayImplIPNS_3sql15ObDatumObjParamELl1ENS0_18ObWrapperAllocatorELb0EED2Ev +_ZN9oceanbase6common13ObSEArrayImplINS_3sql12PCVSchemaObjELl4ENS0_19ModulePageAllocatorELb0EE9push_backERKS3_ +_ZN9oceanbase3lib20ObTenantCtxAllocator10free_chunkEPNS0_6AChunkERKNS0_9ObMemAttrE +_ZNK9oceanbase3lib25ObTenantResourceMgrHandle14get_memory_mgrEv +_ZN9oceanbase3lib17ObTenantMemoryMgr10free_chunkEPNS0_6AChunkERKNS0_9ObMemAttrE +_ZN9oceanbase3lib9AChunkMgr10free_chunkEPNS0_6AChunkE +_Ux86_64_get_accessors +_Ux86_64_get_accessors_int +_ZN9oceanbase6common12ObISQLClient10ReadResultC1Ev +_ZN9oceanbase6common12ObISQLClient10ReadResultC2Ev +_ZN9oceanbase6common4hash11ObHashTableIlNS1_11HashMapPairIlNS1_11HashNullObjEEENS1_9hash_funcIlEENS1_8equal_toIlEENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19ReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv +_ZN9oceanbase3sql22ObExprRelationAnalyzer10visit_exprERNS0_9ObRawExprEi +_ZN9oceanbase3sql22ObExprRelationAnalyzer14init_expr_infoERNS0_9ObRawExprE +_ZN9oceanbase3sql11ObSqlBitSetILl64ElLb1EE10add_memberEl +_ZN9oceanbase3sql11ObSqlBitSetILl64ElLb1EE11add_membersILl64ElLb1EEEiRKNS1_IXT_ET0_XT1_EEE +_ZN9oceanbase3sql11ObSqlBitSetILl8ElLb1EE11add_membersILl8ElLb1EEEiRKNS1_IXT_ET0_XT1_EEE +_ZN9oceanbase3sql15ObWinFunRawExpr14get_param_exprEl +_ZN9oceanbase3sql22ObExprRelationAnalyzer10visit_stmtEPNS0_9ObDMLStmtE +_ZN9oceanbase6common14ObMaxWaitGuardC1EPNS0_15ObWaitEventDescEPNS0_21ObDiagnoseSessionInfoE +_ZN9oceanbase6common14ObMaxWaitGuardC2EPNS0_15ObWaitEventDescEPNS0_21ObDiagnoseSessionInfoE +_ZN9oceanbase4palf17LogIOFlushLogTaskC1Ev +_ZN9oceanbase4palf17LogIOFlushLogTaskC2Ev +_ZN9oceanbase3sql12ObSqlPlanSet21calc_phy_plan_type_v2ERKNS_6common8ObIArrayINS0_15ObCandiTableLocEEERNS0_13ObPhyPlanTypeEb +_ZN9oceanbase3sql16ObSQLSessionInfo7destroyEb +_ZN9oceanbase3sql16ObSQLSessionInfo5resetEb +_ZN9oceanbase6common13ObSEArrayImplINS_5share6schema19ObSchemaGetterGuard9SchemaObjELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv +_ZN9oceanbase3sql18ObBasicSessionInfo5resetEb +_ZN9oceanbase5share15ObSysVarFactory7destroyEv +_ZN9oceanbase3sql15ObSessionValMap5reuseEv +_ZN9oceanbase6common13ObSEArrayImplINS_3sql18ObBasicSessionInfo13TableStmtTypeELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv +_ZN9oceanbase6common18ObDSSessionActions9clear_allEv +_ZN9oceanbase3sql18ObBasicSessionInfo26reset_session_changed_infoEv +_ZN9oceanbase10rootserver17ObUnitStatManager11gather_statEv +_ZN9oceanbase3sql9ObRawExprD2Ev +_ZNK6obutil5Mutex4lockEv +_ZN9oceanbase6common15ObKVCacheHandleC1ERKS1_ +_ZN9oceanbase6common15ObKVCacheHandleC2ERKS1_ +_ZNK9oceanbase3omt13ObMultiTenant10get_tenantEmRPNS0_8ObTenantE +_ZN9oceanbase3omt8ObTenant27calibrate_group_token_countEv +_ZN9oceanbase3omt15ObResourceGroup21calibrate_token_countEv +_ZN9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEED2Ev +_ZN9oceanbase6common13serialization6decodeIhLl512EEEiPKclRlRAT0__T_ +_ZN9oceanbase3sql16ObSQLSessionInfoD1Ev +_ZN9oceanbase3sql16ObSQLSessionInfoD2Ev +_ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImNS_5share15ObSequenceValueEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS6_EELi65ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv +_ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS_2pl16ObPLPackageStateEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv +_ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_PNS_3sql17ObInnerContextMapEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS8_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS8_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl2EE7destroyEv +_ZN9oceanbase3sql23ObEndTransAsyncCallbackD1Ev +_ZN9oceanbase3sql23ObEndTransAsyncCallbackD2Ev +_ZN9oceanbase6common11ObArrayImplINS0_22ObTZTransitionTypeInfoENS0_8ObMallocELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_17DefaultItemEncodeIS2_EEED2Ev +_ZN9oceanbase6common13ObSEArrayImplIlLl32ENS0_19ModulePageAllocatorELb0EED2Ev +_ZN9oceanbase3sql18ObBasicSessionInfo13SysVarIncInfoD1Ev +_ZN9oceanbase3sql18ObBasicSessionInfo13SysVarIncInfoD2Ev +_ZN9oceanbase6common13ObSEArrayImplINS0_8ObStringELl16ENS0_19ModulePageAllocatorELb0EED2Ev +_ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS0_8ObStringEmEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEED2Ev +_ZN9oceanbase5share17ObFeedbackManager5resetEv +_ZN9oceanbase6common13ObSEArrayImplINS_3sql18ObBasicSessionInfo10ChangedVarELl8ENS0_19ModulePageAllocatorELb0EED2Ev +_ZN9oceanbase8observer15ObSqlEndTransCbD1Ev +_ZN9oceanbase8observer15ObSqlEndTransCbD2Ev +_ZN9oceanbase3sql18ObBasicSessionInfoD1Ev +_ZN9oceanbase3sql18ObBasicSessionInfoD2Ev +_ZN9oceanbase5share15ObSysVarFactoryD1Ev +_ZN9oceanbase5share15ObSysVarFactoryD2Ev +_ZN9oceanbase6common12ObStringBufTINS0_19ModulePageAllocatorENS0_9PageArenaIcS2_EEED2Ev +_ZN9oceanbase6common11ObArrayImplINS0_18ObTZRevertTypeInfoENS0_8ObMallocELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_17DefaultItemEncodeIS2_EEED2Ev +_ZN9oceanbase6common18ObDSSessionActionsD1Ev +_ZN9oceanbase6common18ObDSSessionActionsD2Ev +_ZN9oceanbase6common13ObSEArrayImplINS_3sql18ObBasicSessionInfo13TableStmtTypeELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv +_ZN9oceanbase3sql18ObBasicSessionInfo7destroyEv +_ZN9oceanbase6common13ObSEArrayImplINS_5share21ObLabelSeSessionLabelELl4ENS0_19ModulePageAllocatorELb0EED2Ev +_ZN9oceanbase6common11ObArrayImplINS0_22ObTZTransitionTypeInfoENS0_8ObMallocELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_17DefaultItemEncodeIS2_EEE7destroyEv +_ZN9oceanbase3sql15ObSessionValMapD1Ev +_ZN9oceanbase3sql15ObSessionValMapD2Ev +_ZN9oceanbase6common4hash9ObHashMapINS0_8ObStringENS_3sql17ObSessionVariableENS1_19NoPthreadDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS0_17ObPooledAllocatorINS1_15ObHashTableNodeINS1_11HashMapPairIS3_S5_EEEENS0_18ObWrapperAllocatorENS0_10ObNullLockEEENS1_13NormalPointerESG_Ll1EED2Ev +_ZN9oceanbase6common12ObTimeoutCtx15set_abs_timeoutEl +_ZN9oceanbase6common14ObKVCacheStore18reuse_wash_structsEv +_ZN9oceanbase10rootserver26ObBackupTaskSchedulerQueue15dump_statisticsEv +_ZNK9oceanbase11transaction16ObTxKeepaliveMsg8is_validEv +_ZN9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE6revertEPNS0_12LinkHashNodeIS3_EE +_ZN9oceanbase5share6schema19ObSchemaGetterGuard18put_to_local_cacheINS1_8ObSchemaEEEiNS1_12ObSchemaTypeEmmRPKT_RNS_6common15ObKVCacheHandleE +_ZN9oceanbase6common15ObKVCacheHandleaSERKS1_ +_ZN9oceanbase6common13ObSEArrayImplINS_5share6schema19ObSchemaGetterGuard9SchemaObjELl2ENS0_19ModulePageAllocatorELb0EE7reserveEl +_ZN9oceanbase6common16ObArenaAllocator5allocElRKNS_3lib9ObMemAttrE +_ZN9oceanbase6common11ObArrayImplINS0_15ObWarningBuffer11WarningItemENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE7destroyEv +_ZN9oceanbase3omt8ObTenant18update_token_usageEv +_ZN9oceanbase6common22ADD_COLUMN_SCHEMA_FULLERNS_5share6schema13ObTableSchemaEPKcmlllNS0_9ObObjTypeEilssNS0_11ObOrderTypeEbbbb +_ZN9oceanbase5share6schema16ObColumnSchemaV2D1Ev +_ZN9oceanbase5share6schema16ObColumnSchemaV2D2Ev +_ZN9oceanbase5share6schema16ObColumnSchemaV2C1Ev +_ZN9oceanbase5share6schema16ObColumnSchemaV2C2Ev +_ZNK9oceanbase6common12ObRowkeyInfo10get_columnEl +_ZN9oceanbase5share6schema8ObSchema13deep_copy_strEPKcRNS_6common8ObStringE +_ZN9oceanbase5share6schema8ObSchema13get_allocatorEv +_ZN9oceanbase5share6schema13ObTableSchema10add_columnINS1_16ObColumnSchemaV2EEEiRKT_ +_ZNK9oceanbase5share6schema13ObTableSchema16check_row_lengthEbPKNS1_16ObColumnSchemaV2ES5_ +_ZNK9oceanbase5share6schema21ObSimpleTableSchemaV222is_storage_index_tableEv +_ZNK9oceanbase5share6schema21ObSimpleTableSchemaV214is_index_tableEv +_ZN9oceanbase6common16ob_obj_type_sizeENS0_9ObObjTypeE +_ZN9oceanbase5share6schema8ObSchema5allocEl +_ZN9oceanbase5share6schema8ObSchemaC1EPNS_6common12ObIAllocatorE +_ZN9oceanbase5share6schema8ObSchemaC2EPNS_6common12ObIAllocatorE +_ZN9oceanbase5share6schema13ObTableSchema25add_column_update_prev_idEPNS1_16ObColumnSchemaV2E +_ZNK9oceanbase5share6schema16ObColumnSchemaV215get_byte_lengthERlbb +_ZN9oceanbase6common9ObCharset20get_mbmaxlen_by_collENS0_15ObCollationTypeERl +_ZNK9oceanbase5share6schema21ObSimpleTableSchemaV227check_if_oracle_compat_modeERb +_ZN9oceanbase5share18ObCompatModeGetter21get_table_compat_modeEmlRNS_3lib6Worker10CompatModeE +_ZN9oceanbase5share6schema16ObColumnSchemaV2C1EPNS_6common12ObIAllocatorE +_ZN9oceanbase5share6schema16ObColumnSchemaV2C2EPNS_6common12ObIAllocatorE +_ZN9oceanbase5share6schema16ObColumnSchemaV25resetEv +_ZN9oceanbase6common9ObCharset19get_default_charsetEv +_ZN9oceanbase5share6schema8ObSchema5resetEv +_ZN9oceanbase5share6schema8ObSchema18reset_string_arrayERNS_6common13ObArrayHelperINS3_8ObStringEEE +_ZN9oceanbase5share6schema16ObColumnSchemaV2aSERKS2_ +_ZN9oceanbase5share6schema8ObSchema13deep_copy_objERKNS_6common5ObObjERS4_ +_ZN9oceanbase5share6schema8ObSchema13deep_copy_strERKNS_6common8ObStringERS4_ +_ZN9oceanbase5share6schema13ObTableSchema30construct_partition_key_columnERKNS1_16ObColumnSchemaV2ERNS_6common14ObRowkeyColumnE +_ZN9oceanbase5share6schema8ObSchema22deep_copy_string_arrayERKNS_6common8ObIArrayINS3_8ObStringEEERNS3_13ObArrayHelperIS5_EE +_ZN9oceanbase5share6schema13ObTableSchema23add_col_to_column_arrayEPNS1_16ObColumnSchemaV2E +_ZN9oceanbase5share6schema13ObTableSchema26add_col_to_name_hash_arrayEbPNS1_16ObColumnSchemaV2E +_ZN9oceanbase6common4hash18ObPointerHashArrayINS_5share6schema25ObColumnSchemaHashWrapperEPNS4_16ObColumnSchemaV2ENS4_14ObGetColumnKeyEE14set_refactoredERKS5_RKS7_RS7_i +_ZN9oceanbase6common4hash18ObPointerHashArrayINS_5share6schema25ObColumnSchemaHashWrapperEPNS4_16ObColumnSchemaV2ENS4_14ObGetColumnKeyEE9set_valueElRKS7_RS7_ +_ZNK9oceanbase6common4hash18ObPointerHashArrayINS_5share6schema25ObColumnSchemaHashWrapperEPNS4_16ObColumnSchemaV2ENS4_14ObGetColumnKeyEE27placement_hash_find_set_posERKS5_iRlRb +_ZN9oceanbase6common9ObCharset4hashENS0_15ObCollationTypeERKNS0_8ObStringEmPFmPKvmmE +_ZN9oceanbase5share6schema13ObTableSchema24add_col_to_id_hash_arrayEPNS1_16ObColumnSchemaV2E +_ZN9oceanbase6common4hash18ObPointerHashArrayINS_5share6schema13ObColumnIdKeyEPNS4_16ObColumnSchemaV2ENS4_14ObGetColumnKeyEE12find_set_posERKS5_RKS7_RlSE_Rbi +_ZN9oceanbase6common4hash18ObPointerHashArrayINS_5share6schema13ObColumnIdKeyEPNS4_16ObColumnSchemaV2ENS4_14ObGetColumnKeyEE9set_valueElRKS7_RS7_ +_ZN9oceanbase5share6schema13ObTableSchema15set_rowkey_infoERKNS1_16ObColumnSchemaV2E +_ZN9oceanbase6common12ObRowkeyInfo10set_columnElRKNS0_14ObRowkeyColumnE +parse_init +_ZN9oceanbase8observer16ObInnerSQLResultD1Ev +_ZN9oceanbase8observer16ObInnerSQLResultD2Ev +_ZN9oceanbase8observer16ObInnerSQLResult5closeEv +_ZN9oceanbase6common4hash9ObHashMapINS0_8ObStringElNS1_19NoPthreadDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_lEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev +_ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_lEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv +_ZN9oceanbase3sql8ObSqlCtxD2Ev +_ZN9oceanbase8observer16ObInnerSQLResult11inner_closeEv +_ZNSt14_Function_base13_Base_managerIZN9oceanbase5share25get_tenant_base_with_lockEmRNS1_6common10ObLDHandleERPNS2_12ObTenantBaseERSt8functionIFiS5_EEE4$_13E10_M_managerERSt9_Any_dataRKSF_St18_Manager_operation.dffa7baff4f06077efbca9bde9102f22 +_ZNK9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS_3sql12ObPsStmtInfoEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_23SpinReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE18foreach_refactoredINS4_19ObGetClosedStmtIdOpEEEiRT_ +_ZN9oceanbase6common23ObSingleConnectionProxyC1Ev +_ZN9oceanbase6common23ObSingleConnectionProxyC2Ev +_ZN9oceanbase6common11ObSqlString10assign_fmtEPKcz +_ZN9oceanbase7storage15ObMultipleMerge16read_lob_columnsERNS_12blocksstable10ObDatumRowE +_ZN9oceanbase10rootserver15ObServerManager13check_serversEv +_ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS0_6ObAddrENS1_11HashNullObjEEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEE4freeEPS8_ +_ZN9oceanbase6common21ObDiagnoseSessionInfo23get_local_diagnose_infoEv +_ZN9oceanbase10logservice13ObApplyStatus27get_min_unapplied_log_ts_nsERl +_ZN6obutil4Cond9broadcastEv +_ZN9oceanbase8observer20ObInnerSQLConnection8RefGuardD2Ev +_ZN9oceanbase8observer20ObInnerSQLConnection5unrefEv +_ZN9oceanbase8observer16ObQueryRetryCtrl26try_lock_row_conflict_procERNS0_12ObRetryParamE +_ZN9oceanbase3sql17ObLCObjectManager11common_freeEPNS0_17ObILibCacheObjectENS0_16CacheRefHandleIDE +_ZN9oceanbase7storage13ObTabletIDSet7foreachINS0_17ObLSTabletService22GetAllTabletIDOperatorEEEiRT_ +_ZN9oceanbase6common16ObFixedArrayImplINS_5share12AutoincParamENS0_12ObIAllocatorEED2Ev +_ZN9oceanbase3lib20ObTenantCtxAllocator9set_limitEl +_ZNK9oceanbase3lib25ObTenantResourceMgrHandle8is_validEv +_ZN9oceanbase6common8ObRandom3getEll +_ZNK9oceanbase5share6schema11ObSchemaMgr16get_table_schemaEmmmRKNS_6common8ObStringEbRPKNS1_21ObSimpleTableSchemaV2Eb +_ULx86_64_tdep_trace +_ZN9oceanbase3sql16ObTransformUtils26replace_with_groupby_exprsEPNS0_12ObSelectStmtERPNS0_9ObRawExprEbPNS0_16ObTransformerCtxEb +_ZN9oceanbase3sql20ObStmtCompareContext4initEPKNS_6common8ObIArrayINS0_18ObHiddenColumnItemEEE +_ZN9oceanbase3sql20ObStmtCompareContextC2Ev +_ZN9oceanbase6common13ObSEArrayImplINS_3sql23ObExprEqualCheckContext13ParamExprPairELl3ENS0_19ModulePageAllocatorELb1EE7destroyEv +_ZN9oceanbase3sql13ObStmtMapInfoC2Ev +_ZN9oceanbase3sql20ObStmtCompareContextD2Ev +_ZN9oceanbase3sql13ObStmtMapInfoD2Ev +_ZN9oceanbase6common13ObSEArrayImplINS0_9ObSEArrayIlLl4ENS0_19ModulePageAllocatorELb0EEELl4ES3_Lb0EE7destroyEv +_ZNK9oceanbase3sql18ObColumnRefRawExpr13inner_same_asERKNS0_9ObRawExprEPNS0_23ObExprEqualCheckContextE +_ZNK9oceanbase3sql9ObRawExpr7same_asERKS1_PNS0_23ObExprEqualCheckContextE +_ZN9oceanbase6common16ObClassAllocatorINS_11transaction16ObTsResponseTaskEE4freeEPS3_ +_ZNK6obutil9ObMonitorINS_5MutexEE10timed_waitERKNS_9ObSysTimeE +_ZN9oceanbase5share6schema27ObMultiVersionSchemaService10get_schemaEPKNS1_11ObSchemaMgrERKNS1_21ObRefreshSchemaStatusENS1_12ObSchemaTypeEmlRNS_6common15ObKVCacheHandleERPKNS1_8ObSchemaE +_ZN9oceanbase5share6schema13ObSchemaCache10get_schemaENS1_12ObSchemaTypeEmmlRNS_6common15ObKVCacheHandleERPKNS1_8ObSchemaE +_ZN9oceanbase6common9ObKVCacheINS_5share6schema16ObSchemaCacheKeyENS3_18ObSchemaCacheValueEE3getERKS4_RPKS5_RNS0_15ObKVCacheHandleE +_ZN9oceanbase6common4hash11ObHashTableINS_5share6schema16ObSchemaCacheKeyENS1_11HashMapPairIS5_PKNS4_18ObSchemaCacheValueEEENS1_9hash_funcIS5_EENS1_8equal_toIS5_EENS1_10pair_firstISA_EENS1_13SimpleAllocerINS1_15ObHashTableNodeISA_EELi76ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19ReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKS5_RSA_l +_ZN9oceanbase6common4hash11ObHashTableINS_5share6schema16ObSchemaCacheKeyENS1_11HashMapPairIS5_PKNS4_18ObSchemaCacheValueEEENS1_9hash_funcIS5_EENS1_8equal_toIS5_EENS1_10pair_firstISA_EENS1_13SimpleAllocerINS1_15ObHashTableNodeISA_EELi76ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19ReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE32internal_get_with_timeout_unsafeERNS1_17ObHashTableBucketISA_16pthread_rwlock_tNS1_5NCondEEERKS5_RPKSA_l +_ZN9oceanbase6common4hash11ObHashTableINS0_6ObAddrENS1_12ObReferedMapIS3_NS_10rootserver16DRServerStatInfoEE4ItemENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS8_6GetKeyENS1_13SimpleAllocerINS1_15ObHashTableNodeIS8_EELi76ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv +_ZN9oceanbase6common15ObLinearHashMapINS_12blocksstable12MacroBlockIdENS2_14ObBlockManager9BlockInfoENS0_14ShareMemMgrTagEE7do_get_ERKS3_RS5_ +_ZN9oceanbase6common15ObLinearHashMapINS_12blocksstable12MacroBlockIdENS2_14ObBlockManager9BlockInfoENS0_14ShareMemMgrTagEE16load_access_bkt_ERKS3_RmRPNS7_6BucketE +_ZZN9oceanbase5share6schema19ObSchemaGetterGuard20get_from_local_cacheINS1_13ObTableSchemaEEEiNS1_12ObSchemaTypeEmmRPKT_ENKUlPKcE1_clESB_ +_ZN9oceanbase7storage18ObLSTabletIterator15get_next_tabletERNS0_14ObTabletHandleE +_ZN9oceanbase7storage17ObLSTabletService10get_tabletERKNS_6common10ObTabletIDERNS0_14ObTabletHandleEl +_ZN9oceanbase6common11ObFifoArena10alloc_pageEl +_ZN9oceanbase3sql11ObPlanCache8ref_planEmRNS0_15ObCacheObjGuardE +_ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS_3sql17ObILibCacheObjectEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE6atomicINS4_18ObCacheObjAtomicOpENS1_8pre_procIS7_EEEEiRKmRT_RT0_ +_ZN9oceanbase3sql18ObCacheObjAtomicOpclERNS_6common4hash11HashMapPairImPNS0_17ObILibCacheObjectEEE +_ZN9oceanbase6common12ObLatchMutex4waitElj +_ZN9oceanbase6common5occam26ObOccamTimeGuardDetectHungD2Ev +_ZN9oceanbase3lib11ObLockGuardINS_6common12ObThreadCondEED2Ev +_ZN9oceanbase8observer16ObInnerSQLResult21MemEntifyDestroyGuardD2Ev +_ZN9oceanbase6common11ObArrayImplImNS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackImEENS0_17DefaultItemEncodeImEEE7destroyEv +_ZN9oceanbase5share19ObLSLocationService22renew_all_ls_locationsEv +_ZNK9oceanbase5share6ObLSID20is_valid_with_tenantEm +_ZN9oceanbase5share19ObLSLocationService12update_cacheElmRKNS0_6ObLSIDEbRKNS0_12ObLSLocationE +_ZN9oceanbase5share15ObLSLocationMap6updateERKNS0_20ObLSLocationCacheKeyERKNS0_12ObLSLocationE +_ZN9oceanbase5share11ObQSyncLock6wrlockEv +_ZNK9oceanbase5share20ObLSLocationCacheKey4hashEv +_ZN9oceanbase5share17ObLSTableOperator13get_by_tenantEmRNS_6common8ObIArrayINS0_8ObLSInfoEEE +_ZN9oceanbase5share19ObLSLocationService13fill_locationElRKNS0_8ObLSInfoERNS0_12ObLSLocationE +_ZN9oceanbase6common23ObReserveArenaAllocatorILl1024EE5allocElRKNS_3lib9ObMemAttrE +_ZN9oceanbase6common2SVINS0_12ObISQLClient10ReadResultELb0EED2Ev +_ZN9oceanbase6common16ObKVCacheInstMap18clean_garbage_instEv +_ZN9oceanbase5obrpc11ObRpcPacketC1Ev +_ZN9oceanbase5obrpc11ObRpcPacketC2Ev +_ZN9oceanbase3sql9ObDMLStmt14formalize_stmtEPNS0_16ObSQLSessionInfoE +_ZN9oceanbase3sql9ObDMLStmt24formalize_relation_exprsEPNS0_16ObSQLSessionInfoE +_ZN9oceanbase3sql9ObRawExpr12extract_infoEv +_ZN9oceanbase3sql9ObRawExpr27pull_relation_id_and_levelsEi +_ZN9oceanbase3sql9ObRawExpr9formalizeEPKNS0_16ObSQLSessionInfoE +_ZN9oceanbase3sql9ObRawExpr11deduce_typeEPKNS0_16ObSQLSessionInfoE +_ZN9oceanbase3sql19ObRawExprDeduceTypeD2Ev +_ZN9oceanbase3sql14ObSetOpRawExpr8do_visitERNS0_16ObRawExprVisitorE +_ZNK9oceanbase3sql12ObSelectStmt23get_from_subquery_stmtsERNS_6common8ObIArrayIPS1_EE +_ZN9oceanbase3sql22ObRawExprInfoExtractor5visitERNS0_14ObSetOpRawExprE +_ZN9oceanbase3sql18FastRelExprCheckerD1Ev +_ZN9oceanbase3sql18FastRelExprCheckerD2Ev +_ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImNS1_11HashNullObjEEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEED2Ev +_ZN9oceanbase6common11ObArrayImplIPNS_3sql12ObSelectStmtENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEED2Ev +_ZN9oceanbase6common11ObArrayImplIPNS_3sql12ObSelectStmtENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEE9push_backERKS4_ +_ZN9oceanbase3sql12ObSelectStmt24inner_get_relation_exprsERNS0_18RelExprCheckerBaseE +_ZN9oceanbase3sql18FastRelExprChecker8add_exprERPNS0_9ObRawExprE +_ZN9oceanbase6common13ObSEArrayImplIPNS_3sql9ObRawExprELl4ENS0_19ModulePageAllocatorELb0EE9push_backERKS4_ +_ZN9oceanbase3sql18RelExprCheckerBase9add_exprsERNS_6common8ObIArrayIPNS0_9ObRawExprEEE +_ZN9oceanbase3sql9ObDMLStmt24inner_get_relation_exprsERNS0_18RelExprCheckerBaseE +_ZN9oceanbase6common11ObArrayImplIPNS_3sql12ObSelectStmtENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEE6assignERKNS0_8ObIArrayIS4_EE +_ZNK9oceanbase3sql9ObDMLStmt23get_join_condition_exprERNS0_11JoinedTableERNS0_18RelExprCheckerBaseE +_ZN9oceanbase3sql9ObDMLStmt27adjust_subquery_exec_paramsEPNS0_16ObSQLSessionInfoE +_ZN9oceanbase3sql9ObDMLStmt18get_relation_exprsERNS_6common8ObIArrayINS0_16ObRawExprPointerEEEi +_ZN9oceanbase3sql18RelExprCheckerBaseD2Ev +_ZN9oceanbase4palf11LogIOWorker9run_loop_Ev +_ZNK9oceanbase4palf17LogIOFlushLogTask16get_io_task_typeEv +_ZN9oceanbase4palf11LogIOWorker15reduce_io_task_EPv +_ZN9oceanbase4palf11LogIOWorker25BatchLogIOFlushLogTaskMgr26find_usable_batch_io_task_ElRPNS0_22BatchLogIOFlushLogTaskE +_ZN9oceanbase4palf11LogIOWorker25BatchLogIOFlushLogTaskMgr6handleElPNS0_11PalfEnvImplE +_ZN9oceanbase4palf22BatchLogIOFlushLogTask7do_taskEiPNS0_11PalfEnvImplE +_ZNK9oceanbase4palf11LogWriteBuf14get_total_sizeEv +_ZN9oceanbase4palf22BatchLogIOFlushLogTask8do_task_EiPNS0_11PalfEnvImplE +_ZN9oceanbase4palf19PalfHandleImplGuardC1Ev +_ZN9oceanbase4palf19PalfHandleImplGuardC2Ev +_ZN9oceanbase4palf9LogEngine10append_logERKNS_6common12ObFixedArrayINS0_3LSNENS2_12ObIAllocatorEEERKNS3_IPNS0_11LogWriteBufES5_EERKNS3_IlS5_EE +_ZN9oceanbase4palf14PalfHandleImpl17advance_reuse_lsnERKNS0_3LSNE +_ZN9oceanbase4palf14LogGroupBuffer20inc_update_reuse_lsnERKNS0_3LSNE +_ZN9oceanbase4palf14PalfHandleImpl16inner_append_logERKNS_6common12ObFixedArrayINS0_3LSNENS2_12ObIAllocatorEEERKNS3_IPNS0_11LogWriteBufES5_EERKNS3_IlS5_EE +_ZN9oceanbase4palf22BatchLogIOFlushLogTask9push_backEPNS0_17LogIOFlushLogTaskE +_ZN9oceanbase4palf22BatchLogIOFlushLogTask29push_flush_cb_to_thread_pool_EiPNS0_11PalfEnvImplE +_ZZN9oceanbase4palf22BatchLogIOFlushLogTask9push_backEPNS0_17LogIOFlushLogTaskEENK5$_723clEPKc.1598dc2348996c1ae1caea6120522988 +_ZN9oceanbase4palf10LogStorage6writevERKNS_6common12ObFixedArrayINS0_3LSNENS2_12ObIAllocatorEEERKNS3_IPNS0_11LogWriteBufES5_EERKNS3_IlS5_EE +_ZN9oceanbase4palf10LogStorage6writevERKNS0_3LSNERKNS0_11LogWriteBufEl +_ZN9oceanbase4palf11LogBlockMgr6writevEmmRKNS0_11LogWriteBufE +_ZNK9oceanbase4palf11LogWriteBuf13get_buf_countEv +_ZZN9oceanbase4palf10LogStorage6writevERKNS0_3LSNERKNS0_11LogWriteBufElENK5$_494clEPKc.0e4bf25207570af14a78557c8489c4fc +_ZN9oceanbase4palf10LogStorage32update_log_tail_guarded_by_lock_El +_ZN9oceanbase4palf15LogBlockHandler18inner_writev_once_EmRKNS0_11LogWriteBufE +_ZN9oceanbase6common11lower_alignEll +_ZN9oceanbase4palf15LogBlockHandler17inner_write_once_EmPKcl +_ZN9oceanbase4palf16LogDIOAlignedBuf9align_bufEPKclRPcRlRm +_ZN9oceanbase4palf15LogBlockHandler17inner_write_impl_EiPKcll +_ZN9oceanbase6common9ob_pwriteEiPKcll +_ZZN9oceanbase4palf11LogBlockMgr6writevEmmRKNS0_11LogWriteBufEENK5$_114clEPKc.1598dc2348996c1ae1caea6120522988 +_ZN9oceanbase4palf29push_task_into_cb_thread_poolElPNS0_9LogIOTaskE +_ZN9oceanbase6common16ObFixedArrayImplINS_4palf3LSNENS0_12ObIAllocatorEE9push_backERKS3_ +_ZZN9oceanbase4palf16LogSlidingWindow17advance_reuse_lsnERKNS0_3LSNEENK5$_411clEPKc.0e4bf25207570af14a78557c8489c4fc +_ZZN9oceanbase4palf10LogStorage6writevERKNS_6common12ObFixedArrayINS0_3LSNENS2_12ObIAllocatorEEERKNS3_IPNS0_11LogWriteBufES5_EERKNS3_IlS5_EEENK5$_501clEPKc.0e4bf25207570af14a78557c8489c4fc +_ZZN9oceanbase4palf16LogDIOAlignedBuf12truncate_bufEvENK4$_59clEPKc.1598dc2348996c1ae1caea6120522988 +_ZZN9oceanbase4palf11LogIOWorker25BatchLogIOFlushLogTaskMgr26find_usable_batch_io_task_ElRPNS0_22BatchLogIOFlushLogTaskEENK5$_785clEPKc.1598dc2348996c1ae1caea6120522988 +_ZN9oceanbase6common16ObFixedArrayImplIlNS0_12ObIAllocatorEE9push_backERKl +_ZN9oceanbase6common16ObFixedArrayImplIPNS_4palf11LogWriteBufENS0_12ObIAllocatorEE9push_backERKS4_ +_ZZN9oceanbase4palf15LogBlockHandler6writevEmRKNS0_11LogWriteBufEENK4$_78clEPKc.1598dc2348996c1ae1caea6120522988 +_ZN9oceanbase6common16ObFixedArrayImplIPNS_4palf17LogIOFlushLogTaskENS0_12ObIAllocatorEE9push_backERKS4_ +_ZZN9oceanbase4palf14LogGroupBuffer20inc_update_reuse_lsnERKNS0_3LSNEENK5$_621clEPKc.1598dc2348996c1ae1caea6120522988 +_ZZN9oceanbase4palf14PalfHandleImpl17advance_reuse_lsnERKNS0_3LSNEENK6$_1145clEPKc.0e4bf25207570af14a78557c8489c4fc +_ZZN9oceanbase4palf11LogIOWorker15reduce_io_task_EPvENK5$_772clEPKc.1598dc2348996c1ae1caea6120522988 +_ZZN9oceanbase4palf11LogIOWorker25BatchLogIOFlushLogTaskMgr6handleElPNS0_11PalfEnvImplEENK5$_782clEPKc.1598dc2348996c1ae1caea6120522988 +_ZN9oceanbase4palf11LogWriteBuf5mergeERKS1_Rb +_ZN9oceanbase3sql18ObPlanCacheManager24get_or_create_plan_cacheEmRKNS0_14ObPCMemPctConfE +_ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS_3sql11ObPlanCacheEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE11read_atomicINS4_24ObPlanCacheManagerAtomicENS1_8pre_procIS7_EEEEiRKmRT_RT0_ +_ZN9oceanbase3sql24ObPlanCacheManagerAtomicclERNS_6common4hash11HashMapPairImPNS0_11ObPlanCacheEEE +_ZN9oceanbase8observer24ObInnerSQLConnectionPool7releaseEPNS_6common9sqlclient16ObISQLConnectionEbj +_ZN9oceanbase6common16ObCommonSqlProxy4readEPNS0_9sqlclient16ObISQLConnectionERNS0_12ObISQLClient10ReadResultEmPKc +_ZN9oceanbase8observer20ObInnerSQLConnection12execute_readElmPKcRNS_6common12ObISQLClient10ReadResultEbb +_ZN9oceanbase8observer20ObInnerSQLConnection19set_session_timeoutEll +_ZN9oceanbase5share13ObBasicSysVar9set_valueERKNS_6common5ObObjE +_ZN9oceanbase3sql18ObBasicSessionInfo19update_sys_variableENS_5share17ObSysVarClassTypeERKNS_6common5ObObjE +_ZN9oceanbase6common13ObSEArrayImplINS0_9ObDFMElemELl10ENS0_19ModulePageAllocatorELb0EE9push_backERKS2_ +_ZN9oceanbase6common9ObDFMUtil14check_semanticERKNS0_8ObIArrayINS0_9ObDFMElemEEERNS0_13ObFixedBitSetILl64EEEm +_ZN9oceanbase3sql18ObBasicSessionInfo21gen_sys_var_in_pc_strEv +_ZN9oceanbase6common19obj_print_plain_strILNS0_9ObObjTypeE5EEEiRKNS0_5ObObjEPclRlRKNS0_16ObObjPrintParamsE +_ZN9oceanbase3sql12ObSysVarInPC18serialize_sys_varsEPclRl +_ZNK9oceanbase6common5ObObj23print_plain_str_literalEPclRlRKNS0_16ObObjPrintParamsE +_ZNK9oceanbase3sql18ObBasicSessionInfo26get_influence_plan_sys_varERNS0_12ObSysVarInPCE +_ZN9oceanbase6common13ObSEArrayImplINS0_5ObObjELl32ENS0_19ModulePageAllocatorELb0EE7reserveEl +_ZN9oceanbase6common19obj_print_plain_strILNS0_9ObObjTypeE22EEEiRKNS0_5ObObjEPclRlRKNS0_16ObObjPrintParamsE +_ZN9oceanbase6common19obj_print_plain_strILNS0_9ObObjTypeE10EEEiRKNS0_5ObObjEPclRlRKNS0_16ObObjPrintParamsE +_ZN9oceanbase6common13ObSEArrayImplINS0_5ObObjELl32ENS0_19ModulePageAllocatorELb0EED2Ev +_ZN9oceanbase6common12ob_write_objINS0_9PageArenaIcNS0_19ModulePageAllocatorEEEEEiRT_RKNS0_5ObObjERS7_ +_ZN9oceanbase3sql18ObBasicSessionInfo22deep_copy_sys_variableERNS_5share13ObBasicSysVarENS2_17ObSysVarClassTypeERKNS_6common5ObObjE +_ZN9oceanbase8observer16ObInnerSQLResult4initEb +_ZN9oceanbase8observer20ObInnerSQLConnection18execute_read_innerElmPKcRNS_6common12ObISQLClient10ReadResultEbb +_ZN9oceanbase8observer29ObVirtualTableIteratorFactoryC1ERNS0_15ObVTIterCreatorE +_ZN9oceanbase8observer29ObVirtualTableIteratorFactoryC2ERNS0_15ObVTIterCreatorE +_ZN9oceanbase3sql18ObBasicSessionInfo13switch_tenantEm +_ZNK9oceanbase3omt13ObMultiTenant19is_available_tenantEm +_ZN9oceanbase3omt8ObTenant8get_unitEv +_ZN9oceanbase8observer20ObInnerSQLConnection5queryERNS_6common9sqlclient11ObIExecutorERNS0_16ObInnerSQLResultEPNS0_29ObVirtualTableIteratorFactoryEb +_ZN9oceanbase3sql18ObBasicSessionInfo20set_query_start_timeEl +_ZN9oceanbase8observer20ObInnerSQLConnection11set_timeoutERlb +_ZN9oceanbase6common12ObTimeoutCtx7get_ctxEv +_ZN9oceanbase8observer20ObInnerSQLConnection8do_queryERNS_6common9sqlclient11ObIExecutorERNS0_16ObInnerSQLResultE +_ZN9oceanbase8observer20ObInnerSQLConnection18ObSqlQueryExecutor7executeERNS_3sql5ObSqlERNS3_8ObSqlCtxERNS3_11ObResultSetE +_ZN9oceanbase8observer14ObReqTimeGuardC2Eb +_ZN9oceanbase8observer16ObInnerSQLResult4openEv +_ZN9oceanbase3sql18ObBasicSessionInfo18store_query_stringERKNS_6common8ObStringE +_ZN9oceanbase3sql18ObBasicSessionInfo19store_query_string_ERKNS_6common8ObStringE +_ZN9oceanbase6common9ob_mallocElRKNS_3lib7ObLabelE +_ZN9oceanbase8observer20ObInnerSQLConnection12TimeoutGuardC1ERS1_ +_ZN9oceanbase8observer20ObInnerSQLConnection12TimeoutGuardC2ERS1_ +_ZN9oceanbase8observer20ObInnerSQLConnection11init_resultERNS0_16ObInnerSQLResultEPNS0_29ObVirtualTableIteratorFactoryElRNS_5share6schema19ObSchemaGetterGuardEPNS_2pl11ObPLBlockNSEbbbbbb +_ZN9oceanbase5share6schema19ObSchemaGetterGuard15get_tenant_infoEmRPKNS1_14ObTenantSchemaE +_ZN9oceanbase8observer20ObInnerSQLConnection12TimeoutGuardD1Ev +_ZN9oceanbase8observer20ObInnerSQLConnection12TimeoutGuardD2Ev +_ZN9oceanbase3sql18ObBasicSessionInfo20set_session_in_retryENS0_20ObSessionRetryStatusE +_ZN9oceanbase8observer20ObInnerSQLConnection13process_finalINS_6common9sqlclient11ObIExecutorEEEiRKT_RNS0_16ObInnerSQLResultEi +_ZN9oceanbase5share6schema19ObSchemaGetterGuard10get_schemaINS1_14ObTenantSchemaEEEiNS1_12ObSchemaTypeEmmRPKT_l +_ZN9oceanbase5share6schema19ObSchemaGetterGuard20get_from_local_cacheINS1_14ObTenantSchemaEEEiNS1_12ObSchemaTypeEmmRPKT_ +_ZN9oceanbase5share6schema27ObMultiVersionSchemaService23get_tenant_schema_guardEmRNS1_19ObSchemaGetterGuardEllNS2_17RefreshSchemaModeE +_ZN9oceanbase5share6schema17is_tenant_restoreERNS1_14ObTenantStatusE +_ZN9oceanbase5share6schema16ObSchemaStoreMap3getEm +_ZN9oceanbase5share6schema17ObSchemaMgrHandleD1Ev +_ZN9oceanbase5share6schema17ObSchemaMgrHandleD2Ev +_ZN9oceanbase5share6schema15ObSchemaMgrInfoD1Ev +_ZN9oceanbase5share6schema15ObSchemaMgrInfoD2Ev +_ZN9oceanbase5share6schema17ObSchemaMgrHandle5resetEv +_ZN9oceanbase5share6schema27ObMultiVersionSchemaService19add_schema_mgr_infoERNS1_19ObSchemaGetterGuardEPNS1_13ObSchemaStoreERKNS1_21ObRefreshSchemaStatusEmllNS2_17RefreshSchemaModeE +_ZN9oceanbase5share6schema17ObSchemaMgrHandleC1ENS1_15ObSchemaMgrItem3ModE +_ZN9oceanbase5share6schema17ObSchemaMgrHandleC2ENS1_15ObSchemaMgrItem3ModE +_ZN9oceanbase5share6schema17ObSchemaMgrHandleC1ERKS2_ +_ZN9oceanbase5share6schema17ObSchemaMgrHandleC2ERKS2_ +_ZN9oceanbase6common13ObSEArrayImplINS_5share6schema15ObSchemaMgrInfoELl2ENS0_19ModulePageAllocatorELb0EE9push_backERKS4_ +_ZN9oceanbase5share6schema17ObSchemaMgrHandleaSERKS2_ +_ZN9oceanbase5share6schema15ObSchemaMgrInfoC1ERKS2_ +_ZN9oceanbase5share6schema15ObSchemaMgrInfoC2ERKS2_ +_ZN9oceanbase5share6schema17ObSchemaMgrHandleC1Ev +_ZN9oceanbase5share6schema17ObSchemaMgrHandleC2Ev +_ZN9oceanbase5share6schema16ObSchemaMgrCache3getElRPKNS1_11ObSchemaMgrERNS1_17ObSchemaMgrHandleE +_ZN9oceanbase5share6schema27ObMultiVersionSchemaService27get_baseline_schema_versionEmbRl +_ZN9oceanbase5share11ObLSReplica15set_member_listERKNS_6common9ObSEArrayINS0_12SimpleMemberELl7ENS2_15ObNullAllocatorELb0EEE +_ZN9oceanbase6common10HazardList7move_toERS1_ +_ZN9oceanbase3sql16ObRawExprPointer3getERPNS0_9ObRawExprE +_ZN9oceanbase6common13ObSEArrayImplINS0_15ObWarningBuffer11WarningItemELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv +_ZN9oceanbase6common14SpinRLockGuardC2ERKNS0_10SpinRWLockE +easy_fetch_mod_stat +_ZN9oceanbase5share17ObTenantDagWorker4run1Ev +_ZN9oceanbase6common12ObThreadCond7wait_usEm +_ZN9oceanbase3sql14ObRawExprUtils27erase_operand_implicit_castEPNS0_9ObRawExprERS3_ +_ZN9oceanbase6common8ObMalloc5allocElRKNS_3lib9ObMemAttrE +_ZN9oceanbase3omt15ObResourceGroup18check_worker_countERNS0_10ObThWorkerE +_ZN9oceanbase6common22ObVirtualTableIterator12get_next_rowEv +_ZN9oceanbase6common22ObVirtualTableIterator12get_next_rowERPNS0_8ObNewRowE +_ZNK9oceanbase5share6schema13ObTableSchema17get_column_schemaEm +_ZNK9oceanbase6common4hash18ObPointerHashArrayINS_5share6schema13ObColumnIdKeyEPNS4_16ObColumnSchemaV2ENS4_14ObGetColumnKeyEE14get_refactoredERKS5_RS7_ +_ZN9oceanbase6common7ObDatum8from_objERKNS0_5ObObjENS0_17ObObjDatumMapTypeE +_ZN9oceanbase6common22ObVirtualTableIterator18convert_output_rowERPNS0_8ObNewRowE +_ZN9oceanbase8observer14ObTableColumns18inner_get_next_rowERPNS_6common8ObNewRowE +_ZN9oceanbase6common10ObRowStore7add_rowERKNS0_8ObNewRowEb +_ZN9oceanbase8observer14ObTableColumns18calc_show_table_idERm +_ZN9oceanbase8observer14ObTableColumns14fill_row_cellsEmmPKNS_3sql12ObSelectStmtERKNS2_10SelectItemE +_ZN9oceanbase8observer14ObTableColumns24deduce_column_attributesEbPKNS_3sql12ObSelectStmtERKNS2_10SelectItemEPNS_5share6schema19ObSchemaGetterGuardEPNS2_16ObSQLSessionInfoEPclRNS1_16ColumnAttributesE +_ZN9oceanbase3sql14ObRawExprUtils18skip_implicit_castEPKNS0_9ObRawExprE +_ZN9oceanbase8observer14ObTableColumns42set_null_and_default_according_binary_exprEmPKNS_3sql12ObSelectStmtEPKNS2_9ObRawExprEPNS_5share6schema19ObSchemaGetterGuardERbSD_ +_ZNK9oceanbase3sql9ObDMLStmt20get_table_item_by_idEm +_ZN9oceanbase6common10ObRowStore20add_row_by_projectorERKNS0_8ObNewRowERPKNS1_9StoredRowEl +_ZN9oceanbase6common10ObRowStore9BlockInfo10append_rowERKNS0_8ObIArrayIlEERKNS0_8ObNewRowElRPNS1_9StoredRowE +_ZN9oceanbase6common12ObCellWriter6appendEmRKNS0_5ObObjEPS2_ +_ZN9oceanbase6common12ObCellWriter9write_intERKNS0_5ObObjENS0_9ObObjTypeEl +_ZN9oceanbase6common10ObRowStore8Iterator12get_next_rowERNS0_8ObNewRowEPNS0_8ObStringEPPNS1_9StoredRowE +_ZN9oceanbase6common9ObRowUtil7convertEPKclRNS0_8ObNewRowE +_ZN9oceanbase6common12ObCellReader9next_cellEv +_ZN9oceanbase6common12ObCellReader5parseEPm +_ZN9oceanbase8observer14ObTableColumns23resolve_view_definitionEPNS_6common12ObIAllocatorEPNS_3sql16ObSQLSessionInfoEPNS_5share6schema19ObSchemaGetterGuardERKNS9_13ObTableSchemaERPNS5_12ObSelectStmtERNS5_16ObRawExprFactoryERNS5_13ObStmtFactoryEb +_ZN9oceanbase6common11ObArrayImplIPKNS_3sql9TableItemENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEED2Ev +_ZZN9oceanbase5share6schema19ObSchemaGetterGuard19get_database_schemaEmmRPKNS1_16ObDatabaseSchemaEENK5$_258clEPKc.bfa63f0f3456173f564c7cf65584fc48 +_ZN9oceanbase3sql16ObSelectResolverC1ERNS0_16ObResolverParamsE +_ZN9oceanbase3sql16ObSelectResolverC2ERNS0_16ObResolverParamsE +_ZN9oceanbase3sql13ObDMLResolverC2ERNS0_16ObResolverParamsE +_ZN9oceanbase3sql22ObStandardGroupCheckerC2Ev +_ZN9oceanbase3sql16ObSelectResolver7resolveERK10_ParseNode +_ZN9oceanbase3sql14ObStmtResolver11create_stmtINS0_12ObSelectStmtEEEPT_v +_ZN9oceanbase3sql16ObSelectResolver20resolve_normal_queryERK10_ParseNode +_ZN9oceanbase3sql10SelectItemC2ERKS1_ +_ZN9oceanbase6common8ObBitSetILl256ENS0_19ModulePageAllocatorELb0EEC2ERKS3_ +_ZN9oceanbase6common13ObSEArrayImplIlLl64ENS0_19ModulePageAllocatorELb0EE7reserveEl +_ZN9oceanbase6common4hash11ObHashTableIlNS1_11HashMapPairIlNS1_11HashNullObjEEENS1_9hash_funcIlEENS1_8equal_toIlEENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19ReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE6createElPSH_PSK_ +_ZN9oceanbase3sql16ObSelectResolver20resolve_group_clauseEPK10_ParseNode +_ZN9oceanbase3sql16ObSelectResolver32recursive_check_grouping_columnsEPNS0_12ObSelectStmtEPNS0_9ObRawExprE +_ZN9oceanbase3sql16ObSelectResolver18resolve_field_listERK10_ParseNode +_ZN9oceanbase6common11ObArrayImplINS_3sql14ObSubQueryInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEED2Ev +_ZN9oceanbase6common11ObArrayImplIPNS_3sql15ObWinFunRawExprENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEED2Ev +_ZN9oceanbase3sql22ObStandardGroupChecker18add_unsettled_exprEPKNS0_9ObRawExprE +_ZN9oceanbase3sql19ObViewTableResolver15set_select_itemERNS0_10SelectItemEb +_ZN9oceanbase3sql12ObSelectStmt15add_select_itemERNS0_10SelectItemE +_ZN9oceanbase3sql10ObSQLUtils17check_column_nameENS_6common15ObCollationTypeERNS2_8ObStringE +_ZN9oceanbase6common9ObCharset8is_spaceENS0_15ObCollationTypeEc +_ZN9oceanbase6common9ObCharset5usembENS0_15ObCollationTypeE +_ZN9oceanbase6common9ObCharset9is_mbcharENS0_15ObCollationTypeEPKcS4_ +_ZN9oceanbase6common11ObArrayImplINS0_8ObStringENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_22NotImplementItemEncodeIS2_EEE9push_backERKS2_ +_ZN9oceanbase6common11ObArrayImplINS_3sql22ObStandardGroupChecker19ObUnsettledExprItemENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEE9push_backERKS4_ +_ZN9oceanbase3sql13ObDMLResolver16resolve_sql_exprERK10_ParseNodeRPNS0_9ObRawExprEPNS_6common7ObArrayINS0_15ObQualifiedNameENS8_19ModulePageAllocatorELb0ENS8_22ObArrayDefaultCallBackISA_EENS8_22NotImplementItemEncodeISA_EEEE +_ZN9oceanbase3sql21ObRawExprResolverImplC1ERNS0_16ObResolveContextINS0_16ObRawExprFactoryEEE +_ZN9oceanbase3sql21ObRawExprResolverImplC2ERNS0_16ObResolveContextINS0_16ObRawExprFactoryEEE +_ZN9oceanbase6common11ObArrayImplIPNS_3sql11ObOpRawExprENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEED2Ev +_ZN9oceanbase3sql13ObDMLResolver25resolve_outer_join_symbolENS0_11ObStmtScopeERPNS0_9ObRawExprE +_ZN9oceanbase6common11ObArrayImplINS_3sql15ObQualifiedNameENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEED2Ev +_ZN9oceanbase3sql15ObQualifiedNameD2Ev +_ZN9oceanbase3sql13ObDMLResolver15resolve_columnsERPNS0_9ObRawExprERNS_6common7ObArrayINS0_15ObQualifiedNameENS5_19ModulePageAllocatorELb0ENS5_22ObArrayDefaultCallBackIS7_EENS5_22NotImplementItemEncodeIS7_EEEE +_ZNK9oceanbase3sql15ObAggFunRawExpr15get_param_countEv +_ZN9oceanbase6common11ObArrayImplIPNS_3sql9ObRawExprENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEE9push_backERKS4_ +_ZN9oceanbase6common11ObArrayImplIPNS_3sql9ObRawExprENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEE10extend_bufEv +_ZN9oceanbase6common13ObSEArrayImplINS_3sql16ObObjAccessIdentELl4ENS0_19ModulePageAllocatorELb1EED2Ev +_ZN9oceanbase6common11ObArrayImplINS_3sql9ObUDFInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE7destroyEv +_ZN9oceanbase3sql13ObDMLResolver20resolve_special_exprERPNS0_9ObRawExprENS0_11ObStmtScopeE +_ZN9oceanbase3sql14ObRawExprUtils20check_composite_castERPNS0_9ObRawExprERNS0_15ObSchemaCheckerE +_ZN9oceanbase6common11ObArrayImplIPNS_3sql15ObAggFunRawExprENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEED2Ev +_ZN9oceanbase3sql15ObSchemaChecker12get_udt_infoEmmRPKNS_5share6schema13ObUDTTypeInfoE +_ZN9oceanbase6common9ObCharset15charset_convertERNS0_12ObIAllocatorERKNS0_8ObStringENS0_15ObCollationTypeES7_RS4_lPl +_ZN9oceanbase6common11ObArrayImplINS_3sql14ObSubQueryInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE7destroyEv +_ZN9oceanbase3sql21ObRawExprResolverImpl7resolveEPK10_ParseNodeRPNS0_9ObRawExprERNS_6common8ObIArrayINS0_15ObQualifiedNameEEERNS9_INS0_9ObVarInfoEEERNS9_INS0_14ObSubQueryInfoEEERNS9_IPNS0_15ObAggFunRawExprEEERNS9_IPNS0_15ObWinFunRawExprEEERNS9_INS0_9ObUDFInfoEEERNS9_IPNS0_11ObOpRawExprEEERNS9_IPNS0_21ObUserVarIdentRawExprEEE +_ZN9oceanbase3sql21ObRawExprResolverImpl17recursive_resolveEPK10_ParseNodeRPNS0_9ObRawExprE +_ZN9oceanbase3sql13ObDMLResolver28resolve_qualified_identifierERNS0_15ObQualifiedNameERNS_6common8ObIArrayIS2_EERNS5_IPNS0_9ObRawExprEEERS9_ +_ZN9oceanbase3sql15ObQualifiedName27replace_access_ident_paramsEPNS0_9ObRawExprES3_ +_ZN9oceanbase3sql16ObSelectResolver23resolve_column_ref_exprERKNS0_15ObQualifiedNameERPNS0_9ObRawExprE +_ZN9oceanbase3sql16ObSelectResolver35resolve_column_ref_in_all_namespaceERKNS0_15ObQualifiedNameERPNS0_9ObRawExprE +_ZN9oceanbase3sql16ObSelectResolver30resolve_column_ref_table_firstERKNS0_15ObQualifiedNameERPNS0_9ObRawExprEb +_ZN9oceanbase3sql16ObSelectResolver24resolve_table_column_refERKNS0_15ObQualifiedNameERPNS0_9ObRawExprE +_ZN9oceanbase3sql13ObDMLResolver25resolve_table_column_exprERKNS0_15ObQualifiedNameERPNS0_9ObRawExprE +_ZN9oceanbase3sql24ObColumnNamespaceChecker28check_table_column_namespaceERKNS0_15ObQualifiedNameERPKNS0_9TableItemE +_ZN9oceanbase3sql24ObColumnNamespaceChecker38check_column_existence_in_using_clauseEmRKNS_6common8ObStringE +_ZN9oceanbase3sql24ObColumnNamespaceChecker27find_column_in_joined_tableERKNS0_11JoinedTableERKNS0_15ObQualifiedNameERPKNS0_9TableItemERb +_ZN9oceanbase6common11ObArrayImplIPKNS_3sql9ObRawExprENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEE9push_backERKS5_ +_ZN9oceanbase3sql24ObColumnNamespaceChecker27find_column_in_single_tableERKNS0_9TableItemERKNS0_15ObQualifiedNameERb +_ZN9oceanbase3sql15ObResolverUtils13name_case_cmpEPKNS0_16ObSQLSessionInfoERKNS_6common8ObStringES8_NS0_15ObNameTypeClassERb +_ZN9oceanbase3sql15ObResolverUtils27get_collation_type_of_namesEPKNS0_16ObSQLSessionInfoENS0_15ObNameTypeClassERNS_6common15ObCollationTypeE +_ZNK9oceanbase3sql18ObBasicSessionInfo18get_name_case_modeERNS_6common14ObNameCaseModeE +_ZN9oceanbase3sql13ObDMLResolver32resolve_single_table_column_itemERKNS0_9TableItemERKNS_6common8ObStringEbRPNS0_10ColumnItemE +_ZN9oceanbase3sql18ObColumnRefRawExpr15set_column_attrERKNS_6common8ObStringES5_ +_ZN9oceanbase3sql13ObDMLResolver25resolve_basic_column_itemERKNS0_9TableItemERKNS_6common8ObStringEbRPNS0_10ColumnItemEPNS0_9ObDMLStmtE +_ZN9oceanbase3sql9ObDMLStmt15get_column_itemEmRKNS_6common8ObStringE +_Z19ob_strnncoll_mb_binPK13ObCharsetInfoPKhmS3_mb +_ZN9oceanbase6common9ObCharset6strcmpENS0_15ObCollationTypeERKNS0_8ObStringES5_ +_ZN9oceanbase3sql14ObRawExprUtils17build_column_exprERNS0_16ObRawExprFactoryERKNS_5share6schema16ObColumnSchemaV2ERPNS0_18ObColumnRefRawExprE +_ZN9oceanbase3sql14ObStmtResolver17get_column_schemaEmRKNS_6common8ObStringERPKNS_5share6schema16ObColumnSchemaV2Ebb +_ZNK9oceanbase3sql15ObSchemaChecker16get_table_schemaEmmRPKNS_5share6schema13ObTableSchemaEb +_ZNK9oceanbase3sql15ObSchemaChecker22get_table_schema_innerEmmRPKNS_5share6schema13ObTableSchemaE +_ZN9oceanbase3sql14ObRawExprUtils16init_column_exprERKNS_5share6schema16ObColumnSchemaV2ERNS0_18ObColumnRefRawExprE +_ZZN9oceanbase3sql24ObColumnNamespaceChecker27find_column_in_single_tableERKNS0_9TableItemERKNS0_15ObQualifiedNameERbENK4$_98clEPKc.298e7263bb6dddc28979ac49c665f42c +_ZN9oceanbase6common13ObSEArrayImplINS_3sql10SelectItemELl16ENS0_19ModulePageAllocatorELb1EE7reserveEl +_ZN9oceanbase6common13ObSEArrayImplINS_3sql10SelectItemELl16ENS0_19ModulePageAllocatorELb1EE16internal_malloc_El +_ZN9oceanbase3sql13ObDMLResolver20resolve_where_clauseEPK10_ParseNode +_ZN9oceanbase3sql24ObColumnNamespaceChecker38check_column_existence_in_using_clauseEmRKNS_6common8ObStringERKNS0_9TableItemERb +_ZN9oceanbase3sql15ObSchemaChecker17get_column_schemaEmmRKNS_6common8ObStringERPKNS_5share6schema16ObColumnSchemaV2Ebb +_ZN9oceanbase3sql13ObDMLResolver16check_expr_paramERKNS0_9ObRawExprE +_ZN9oceanbase3sql21ObRawExprResolverImpl20do_recursive_resolveEPK10_ParseNodeRPNS0_9ObRawExprE +_ZN9oceanbase3sql16ObRawExprFactory21create_raw_expr_innerINS0_14ObConstRawExprEEEi10ObItemTypeRPT_ +_ZN9oceanbase3sql14ObConstRawExprC1ERNS_6common12ObIAllocatorE +_ZN9oceanbase3sql21ObRawExprResolverImpl23process_column_ref_nodeEPK10_ParseNodeRPNS0_9ObRawExprE +_ZN9oceanbase3sql16ObObjAccessIdentD2Ev +_ZN9oceanbase6common11ObArrayImplIPNS_3sql9ObRawExprENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEED2Ev +_ZN9oceanbase3sql16ObRawExprFactory21create_raw_expr_innerINS0_18ObColumnRefRawExprEEEi10ObItemTypeRPT_ +_ZN9oceanbase3sql18ObColumnRefRawExprC1ERNS_6common12ObIAllocatorE +_ZN9oceanbase3sql9ObRawExprC2ERNS_6common12ObIAllocatorE10ObItemType +_ZN9oceanbase3sql11ObSqlBitSetILl64ElLb1EEC2Ev +_ZN9oceanbase3sql11ObSqlBitSetILl96ENS0_14ObExprInfoFlagELb1EEC2Ev +_ZN9oceanbase3sql11ObSqlBitSetILl8ElLb1EEC2Ev +_ZN9oceanbase6common11ObArrayImplINS_3sql15ObQualifiedNameENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE9push_backERKS3_ +_ZN9oceanbase6common13ObSEArrayImplINS_3sql16ObObjAccessIdentELl4ENS0_19ModulePageAllocatorELb1EE5reuseEv +_ZN9oceanbase6common13ObSEArrayImplINS_3sql16ObObjAccessIdentELl4ENS0_19ModulePageAllocatorELb1EE6assignERKNS0_8ObIArrayIS3_EE +_ZN9oceanbase6common11ObArrayImplINS0_8ObStringENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_22NotImplementItemEncodeIS2_EEE5resetEv +_ZN9oceanbase6common11ObArrayImplIPNS_3sql9ObRawExprENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEE5resetEv +_ZN9oceanbase6common13ObSEArrayImplISt4pairIPNS_3sql9ObRawExprElELl4ENS0_19ModulePageAllocatorELb1EE6assignERKNS0_8ObIArrayIS6_EE +_ZN9oceanbase6common13ObSEArrayImplISt4pairIPNS_3sql9ObRawExprElELl4ENS0_19ModulePageAllocatorELb1EE7reserveEl +_ZN9oceanbase6common11ObArrayImplIPNS_3sql9ObRawExprENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEEaSERKSA_ +_ZN9oceanbase6common11ObArrayImplIPNS_3sql9ObRawExprENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEE7destroyEv +_ZN9oceanbase6common11ObArrayImplIPNS_3sql9ObRawExprENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEE7reserveEl +_ZN9oceanbase3sql15ObResolverUtils18resolve_column_refEPK10_ParseNodeNS_6common14ObNameCaseModeERNS0_15ObQualifiedNameE +_ZN9oceanbase3sql11ObSqlBitSetILl96ENS0_14ObExprInfoFlagELb1EEaSERKS3_ +_ZN9oceanbase3sql21ObRawExprResolverImpl21process_operator_nodeEPK10_ParseNodeRPNS0_9ObRawExprE +_ZN9oceanbase3sql11ObOpRawExpr15set_param_exprsEPNS0_9ObRawExprES3_ +_ZN9oceanbase6common11ObArrayImplINS_3sql15ObQualifiedNameENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE10extend_bufEl +_ZN9oceanbase3sql21ObRawExprResolverImpl32process_datatype_or_questionmarkERK10_ParseNodeRPNS0_9ObRawExprE +_ZN9oceanbase3sql21ObRawExprResolverImpl23process_obj_access_nodeERK10_ParseNodeRPNS0_9ObRawExprE +_ZN9oceanbase6common11ObArrayImplINS0_8ObStringENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_22NotImplementItemEncodeIS2_EEED2Ev +_ZN9oceanbase3sql16ObRawExprFactory15create_raw_exprINS0_11ObOpRawExprEEEi10ObItemTypeRPT_ +_ZN9oceanbase3sql15ObQualifiedName21format_qualified_nameENS_6common14ObNameCaseModeE +_ZN9oceanbase3sql16ObRawExprFactory21create_raw_expr_innerINS0_11ObOpRawExprEEEi10ObItemTypeRPT_ +_ZN9oceanbase3sql11ObOpRawExprC1ERNS_6common12ObIAllocatorE +_ZN9oceanbase3sql21ObRawExprResolverImpl17process_case_nodeEPK10_ParseNodeRPNS0_9ObRawExprE +_ZN9oceanbase3sql14ObRawExprUtils17try_add_bool_exprEPNS0_15ObCaseOpRawExprERNS0_16ObRawExprFactoryE +_ZN9oceanbase3sql15ObSysFunRawExpr15check_param_numEv +_ZN9oceanbase3sql21ObRawExprResolverImpl20process_fun_sys_nodeEPK10_ParseNodeRPNS0_9ObRawExprE +_ZN9oceanbase3sql21ObExprOperatorFactory16get_type_by_nameERKNS_6common8ObStringE +_ZN9oceanbase3sql15ObSysFunRawExpr24check_param_num_internalEii10ObItemType +_ZN9oceanbase3sql21ObRawExprResolverImpl22process_sub_query_nodeEPK10_ParseNodeRPNS0_9ObRawExprE +_ZN9oceanbase3sql14ObRawExprUtils14function_aliasERNS0_16ObRawExprFactoryERPNS0_15ObSysFunRawExprE +_ZNK9oceanbase5share6schema13ObTableSchema20is_unique_key_columnERNS1_19ObSchemaGetterGuardEmRb +_ZN9oceanbase3sql13ObDMLResolver13resolve_hintsEPK10_ParseNode +_ZN9oceanbase3sql21ObRawExprResolverImpl23process_pos_or_neg_nodeEPK10_ParseNodeRPNS0_9ObRawExprE +_ZN9oceanbase3sql12ObSelectStmtC1Ev +_ZN9oceanbase3sql12ObSelectStmtC2Ev +_ZN9oceanbase6common13ObSEArrayImplINS_3sql16ObObjAccessIdentELl4ENS0_19ModulePageAllocatorELb1EE7reserveEl +_ZN9oceanbase3sql13ObDMLResolver22deduce_generated_exprsERNS_6common8ObIArrayIPNS0_9ObRawExprEEE +_ZN9oceanbase3sql9ObDMLStmtC1ENS0_4stmt8StmtTypeE +_ZN9oceanbase3sql9ObDMLStmtC2ENS0_4stmt8StmtTypeE +_ZN9oceanbase6common9ObRowDescC1Ev +_ZN9oceanbase6common9ObRowDescC2Ev +_ZN9oceanbase3sql16ObSelectResolver14check_group_byEv +_ZN9oceanbase3sql16ObTransformUtils36replace_stmt_expr_with_groupby_exprsEPNS0_12ObSelectStmtEPNS0_16ObTransformerCtxE +_ZN9oceanbase3sql21ObRawExprResolverImpl25resolve_obj_access_identsERK10_ParseNodeRNS0_15ObQualifiedNameE +_ZN9oceanbase6common13ObSEArrayImplINS_3sql16ObObjAccessIdentELl4ENS0_19ModulePageAllocatorELb1EE9push_backERKS3_ +_ZN9oceanbase6common13ObSEArrayImplISt4pairIPNS_3sql9ObRawExprElELl4ENS0_19ModulePageAllocatorELb1EE5reuseEv +_ZN9oceanbase6common8ObLogger14set_trace_modeEb +_ZN9oceanbase6common11ObArrayImplINS0_8ObStringENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_22NotImplementItemEncodeIS2_EEEaSERKS8_ +_ZN9oceanbase6common11ObArrayImplINS0_8ObStringENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_22NotImplementItemEncodeIS2_EEE7reserveEl +_ZN9oceanbase6common11ObArrayImplINS0_8ObStringENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_22NotImplementItemEncodeIS2_EEE7destroyEv +_ZN9oceanbase3sql16ObSelectResolver19resolve_with_clauseEPK10_ParseNodeb +_ZN9oceanbase3sql21ObRawExprResolverImpl23convert_any_or_all_exprERPNS0_9ObRawExprERb +_ZN9oceanbase3sql16ObSelectResolver12resolve_starEPK10_ParseNode +_ZN9oceanbase3sql16ObSelectResolver29resolve_star_for_table_groupsEv +_ZN9oceanbase6common13ObSEArrayImplIlLl64ENS0_19ModulePageAllocatorELb0EE5reuseEv +_ZN9oceanbase3sql16ObSelectResolver18expand_target_listERKNS0_9TableItemERNS_6common8ObIArrayINS0_10SelectItemEEE +_ZN9oceanbase6common11ObArrayImplINS_3sql10ColumnItemENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE9push_backERKS3_ +_ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb0EE7reserveEl +_ZN9oceanbase3sql16ObSelectResolver35resolve_all_generated_table_columnsERKNS0_9TableItemEPNS_6common8ObIArrayINS0_10ColumnItemEEE +_ZN9oceanbase3sql13ObDMLResolver35resolve_generated_table_column_itemERKNS0_9TableItemERKNS_6common8ObStringERPNS0_10ColumnItemEPNS0_9ObDMLStmtEmlb +_ZN9oceanbase3sql9ObDMLStmt15add_column_itemERNS0_10ColumnItemE +_ZNK9oceanbase6common9ObRowDesc7get_idxEmm +_ZN9oceanbase3sql15ObResolverUtils47resolve_default_value_and_expr_from_select_itemERKNS0_10SelectItemERNS0_10ColumnItemEPKNS0_12ObSelectStmtE +_ZNK9oceanbase3sql9ObDMLStmt21get_column_item_by_idEmm +_ZN9oceanbase3sql24ObColumnNamespaceChecker19check_column_existsERKNS0_9TableItemERKNS_6common8ObStringERbb +_ZN9oceanbase6common9ObCharset22case_compat_mode_equalERKNS0_8ObStringES4_ +_ZN9oceanbase6common9ObCharset6strcmpENS0_15ObCollationTypeEPKclS4_l +_ZN9oceanbase3sql15ObSchemaChecker19check_column_existsEmmRKNS_6common8ObStringERbb +_ZNK9oceanbase3sql15ObSchemaChecker23get_column_schema_innerEmmRKNS_6common8ObStringERPKNS_5share6schema16ObColumnSchemaV2Eb +_ZNK9oceanbase5share6schema13ObTableSchema17get_column_schemaERKNS_6common8ObStringE +_ZN9oceanbase5share6schema19ObSchemaGetterGuard17get_column_schemaEmmRKNS_6common8ObStringERPKNS1_16ObColumnSchemaV2E +_ZNK9oceanbase5share6schema13ObTableSchema34get_column_schema_by_name_internalERKNS_6common8ObStringE +_ZNK9oceanbase6common4hash18ObPointerHashArrayINS_5share6schema25ObColumnSchemaHashWrapperEPNS4_16ObColumnSchemaV2ENS4_14ObGetColumnKeyEE21placement_hash_searchERKS5_Rl +_ZN9oceanbase5share6schema25ObCompareNameWithTenantID7compareERKNS_6common8ObStringES6_ +_ZL20ob_strnncoll_utf8mb4PK13ObCharsetInfoPKhmS3_mb.5aa8bf9a2f1d92c2672c2bb9fbfc2e97 +_ZNK9oceanbase3sql13ObDMLResolver43erase_redundant_generated_table_column_flagERKNS0_12ObSelectStmtEPKNS0_9ObRawExprERNS0_18ObColumnRefRawExprE +_ZN9oceanbase6common11ObArrayImplINS_3sql10SelectItemENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE9push_backERKS3_ +_ZN9oceanbase6common11ObArrayImplINS_3sql10SelectItemENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE10extend_bufEl +_ZN9oceanbase3sql10SelectItemD2Ev +_ZN9oceanbase5share6schema24ObColumnIterByPrevNextID4nextERPKNS1_16ObColumnSchemaV2E +_ZN9oceanbase6common12ObTimeoutCtxC1Ev +_ZN9oceanbase6common12ObTimeoutCtxC2Ev +_ZNK9oceanbase3sql12PCVSchemaObjeqERKS1_ +_ZN9oceanbase5share6schema19ObSchemaGetterGuard18get_schema_versionENS1_12ObSchemaTypeEmmRl +_ZNK9oceanbase5share6schema11ObSchemaMgr17get_tenant_schemaEmRPKNS1_20ObSimpleTenantSchemaE +_ZZN9oceanbase5share6schema19ObSchemaGetterGuard18get_schema_versionENS1_12ObSchemaTypeEmmRlENK5$_597clEPKc.bfa63f0f3456173f564c7cf65584fc48 +_ZNK9oceanbase5share6schema11ObSchemaMgr19get_database_schemaEmmRPKNS1_22ObSimpleDatabaseSchemaE +_ZN9oceanbase8observer20ObInnerSQLConnection13execute_writeEmPKcRlb +_ZN9oceanbase11transaction14ObPartTransCtxC2Ev +_ZN9oceanbase11transaction9ObTxLogCbC2Ev +_ZN9oceanbase11transaction9ObTxLogCb5resetEv +_ZN9oceanbase11transaction13ObTxBaseLogCbC2Ev +_ZN9oceanbase8memtable13ObMemtableCtxC1Ev +_ZN9oceanbase8memtable13ObMemtableCtxC2Ev +_ZN9oceanbase8memtable16ObTxCallbackListC1ERNS0_18ObTransCallbackMgrE +_ZN9oceanbase8memtable16ObTxCallbackListC2ERNS0_18ObTransCallbackMgrE +_ZN9oceanbase11transaction12ObTxExecInfoC2ERNS0_24TransModulePageAllocatorE +_ZNK6obutil9ObMonitorINS_5MutexEE6unlockEv +_ZN9oceanbase6common16ObFixedArrayImplINS_3sql15ObTableRowCountENS0_12ObIAllocatorEED2Ev +_ZN9oceanbase10compaction22ObPartitionMergePolicy30cal_hist_minor_merge_thresholdEv +_ZN9oceanbase3sql15ObSQLSessionMgr19CheckSessionFunctorclENS0_14SessionInfoKeyEPNS0_16ObSQLSessionInfoE +_ZN9oceanbase5share6schema19ObSchemaGetterGuard5resetEv +_ZN9oceanbase3sql18ObBasicSessionInfo19is_trx_idle_timeoutERb +_ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16free_large_pagesEv +_ZN9oceanbase3sql18ObBasicSessionInfo10is_timeoutERb +_ZN9oceanbase3sql18ObBasicSessionInfo14try_lock_queryEv +_ZNK9oceanbase7storage13ObITableArray14get_all_tablesERNS_6common8ObIArrayIPNS0_8ObITableEEE +_ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl64ENS0_19ModulePageAllocatorELb0EE9push_backERKS4_ +_ZNK9oceanbase5share6schema11ObSchemaMgr14get_udt_schemaEmmRPKNS1_17ObSimpleUDTSchemaE +_ZN9oceanbase6common6number8ObNumber4fromINS0_12ObIAllocatorEEEiPKclRT_PsS9_b +_ZN9oceanbase6common13ObSharedGuardINS_7storage12ObLSIteratorEE5resetEv +_ZN9oceanbase6common11ObArrayImplIPNS_7storage4ObLSENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEED2Ev +_ZN9oceanbase10rootserver16ObRootInspection15calc_diff_namesEmPKcRKNS_6common8ObIArrayIS3_EERKNS4_11ObSqlStringERNS5_INS4_19ObFixedLengthStringILl64EEEEESF_SF_ +_ZN9oceanbase6common19ObFixedLengthStringILl64EEC2EPKc +_ZN9oceanbase6common14ObTimerMonitor12get_instanceEv +_ZNK9oceanbase6common4hash18ObPointerHashArrayINS_5share6schema25ObOutlineSqlIdHashWrapperEPNS4_21ObSimpleOutlineSchemaENS4_17ObGetOutlineKeyV3EE21placement_hash_searchERKS5_Rl +_ZNK9oceanbase5share6schema11ObSchemaMgr16get_table_schemaEmmmRKNS_6common8ObStringERPKNS1_21ObSimpleTableSchemaV2E +_ZNK9oceanbase6common4hash18ObPointerHashArrayINS_5share6schema24ObTableSchemaHashWrapperEPNS4_21ObSimpleTableSchemaV2ENS4_13GetTableKeyV2EE21placement_hash_searchERKS5_Rl +_ZN9oceanbase6common7do_hashINS_5share6schema24ObTableSchemaHashWrapperEEEmRKT_ +_ZN9oceanbase6common9ObCharset4hashENS0_15ObCollationTypeERKNS0_8ObStringEmbPFmPKvmmE +_ZN9oceanbase5share6schema8ObSchema25get_cs_type_with_cmp_modeENS_6common14ObNameCaseModeE +_ZN9oceanbase5share6schema17ObSysTableChecker20check_sys_table_nameEmmRKNS_6common8ObStringERb +_ZZN9oceanbase5share6schema17ObSysTableChecker20check_sys_table_nameEmmRKNS_6common8ObStringERbENK4$_24clEPKc.238ab44b22ba0c710eddc3a8b49e8eb3 +_ZN9oceanbase3lib17ObMallocAllocator27with_resource_handle_invokeEmSt8functionIFiPNS0_17ObTenantMemoryMgrEEE +_ZN9oceanbase12blocksstable18ObBloomFilterCache14inc_empty_readEmmRKNS0_12MacroBlockIdEl +easy_sprintf_num.d385e87c688932a1c661f7dac1e442c1 +_ZN9oceanbase10rootserver16ObRootInspection18check_table_schemaERKNS_5share6schema13ObTableSchemaES6_ +_ZNK9oceanbase5share6schema21ObSimpleTableSchemaV214get_table_typeEv +_ZNK9oceanbase5share6schema8ObSchema8is_validEv +_ZNK9oceanbase5share6schema8ObSchema11extract_strERKNS_6common8ObStringE +_ZNK9oceanbase5share6schema13ObTableSchema17get_column_schemaEPKc +_ZNK9oceanbase5share6schema13ObTableSchema8is_validEv +_ZN9oceanbase10rootserver16ObRootInspection19check_column_schemaERKNS_6common8ObStringERKNS_5share6schema16ObColumnSchemaV2ESA_b +_ZN9oceanbase6common13ObObjCmpFuncs21compare_oper_nullsafeERKNS0_5ObObjES4_NS0_15ObCollationTypeENS0_7ObCmpOpE +_ZN9oceanbase6common13ObObjCmpFuncs11cmp_op_funcILNS0_14ObObjTypeClassE1ELS3_1ELNS0_7ObCmpOpE5EEEiRKNS0_5ObObjES7_RKNS0_12ObCompareCtxE +_ZN9oceanbase6common13ObObjCmpFuncs11cmp_op_funcILNS0_14ObObjTypeClassE10ELS3_10ELNS0_7ObCmpOpE5EEEiRKNS0_5ObObjES7_RKNS0_12ObCompareCtxE +_ZN9oceanbase3sql16ObFastParserBase31process_identifier_begin_with_tERb +_ZN9oceanbase3sql16ObFastParserBase8ObRawSql11strncasecmpEPKcl +_ZZN9oceanbase7storage14ObLSWRSHandler29generate_weak_read_timestamp_ERNS0_4ObLSElRlENK5$_192clEPKc.d95568170f20f515ba23d039c2565689 +_ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImNS1_11HashNullObjEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv +_ZNK9oceanbase3sql18ObBasicSessionInfo16get_sys_variableENS_5share17ObSysVarClassTypeERNS_6common5ObObjE +_ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE22for_each_in_one_bucketINS0_23GetMinStartLogTsFunctorEEEiRT_l +_ZN9oceanbase6common7ObDListINS0_15ObTimeWheelTaskEE9add_firstEPS2_ +_ZNK9oceanbase7storage19ObTabletMemtableMgr19get_active_memtableERNS0_15ObTableHandleV2E +current_time +_ZN9oceanbase3sql16AllocInputHelperILi34EE5allocERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecERPNS0_9ObOpInputE +_ZN9oceanbase6common9Ob2DArrayINS_3sql15ObDatumObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS3_Ll1ES4_Lb0EEEED2Ev +_ZN9oceanbase6common9Ob2DArrayINS_3sql15ObDatumObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS3_Ll1ES4_Lb0EEEE7destroyEv +_ZN9oceanbase8observer16ObInnerSQLResultC1ERNS_3sql16ObSQLSessionInfoE +_ZN9oceanbase8observer16ObInnerSQLResultC2ERNS_3sql16ObSQLSessionInfoE +_ZN9oceanbase6common9sqlclient13ObMySQLResultC2Ev +_ZN9oceanbase8observer24ObInnerSQLConnectionPool9free_connEPNS0_20ObInnerSQLConnectionE +_ZN9oceanbase8observer16ObQueryRetryCtrlD1Ev +_ZN9oceanbase8observer16ObQueryRetryCtrlD2Ev +_ZN9oceanbase6common7ObDListINS_8observer24ObInnerSQLConnectionPool8LinkNodeEE8add_lastEPS4_ +_ZN9oceanbase10logservice11coordinator20ElectionPriorityImpl7refreshEv +_ZN9oceanbase6common11ObArrayImplIPNS_3sql9TableItemENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEE9push_backERKS4_ +_ZN9oceanbase6common11ObArrayImplIPNS_3sql9TableItemENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEE10extend_bufEv +_ZN9oceanbase6common6QClock13try_quiescentERm +_ZNSt17_Function_handlerIFiRN9oceanbase3lib7ObLabelEPNS0_6common9LabelItemEEZNKS1_20ObTenantCtxAllocator11print_usageEvE4$_60E9_M_invokeERKSt9_Any_dataS3_OS6_.a1b49044713ee2b295a5be406ce610bf +_ZN9oceanbase4palf10PalfHandle23unregister_file_size_cbEv +_ZZN9oceanbase4palf10PalfHandle23unregister_file_size_cbEvENK5$_765clEPKc.0e4bf25207570af14a78557c8489c4fc +_ZN9oceanbase10rootserver16ObRootInspection15check_sys_view_EmRKNS_5share6schema13ObTableSchemaE +_ZN9oceanbase8observer16ObInnerSQLResult4nextEv +_ZN9oceanbase3lib2_SILNS0_13ContextSourceE0EED2Ev +_ZN9oceanbase3lib17ObMallocAllocator17get_tenant_remainEm +_ZN9oceanbase3sql26ObRawExprCanonicalizerImpl17pull_similar_exprERPNS0_9ObRawExprE +_ZN9oceanbase3sql11ObPlanCache13dec_ref_countEv +_ZNK9oceanbase11transaction33ObTenantWeakReadClusterVersionMgr10ServerInfo5matchERKNS_6common6ObAddrE +_ZN9oceanbase3sql13ObDMLResolver23convert_udf_to_agg_exprERPNS0_9ObRawExprES3_RNS0_16ObResolveContextINS0_16ObRawExprFactoryEEEb +_ZN9oceanbase5share6schema13ObTableSchema22set_compress_func_nameEPKc +access_mem +_ZNK9oceanbase6common12ObRowkeyInfo13get_column_idElRm +_ZN9oceanbase6common11ObArrayImplINS_3sql13ObDMLResolver17GenColumnExprInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEED2Ev +_ZN9oceanbase6common11ObArrayImplINS_5share6schema21ObRefreshSchemaStatusENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEED2Ev +_ZN9oceanbase3lib9AChunkMgr9low_allocEmbRb +obsql_oracle_utf8_yy_scan_bytes +_ZN9oceanbase6common13ObSEArrayImplINS_3sql12PCVSchemaObjELl4ENS0_19ModulePageAllocatorELb0EE7destroyEv +_ZN9oceanbase5share6schema17ObSysTableChecker17is_sys_table_nameEmmRKNS_6common8ObStringERb +_ZN9oceanbase5share6schema19ObSchemaGetterGuard23get_simple_table_schemaEmmRKNS_6common8ObStringEbRPKNS1_21ObSimpleTableSchemaV2Eb +_ZNK9oceanbase6common4hash16ObPointerHashMapINS_5share6schema24ObTableSchemaHashWrapperEPNS4_21ObSimpleTableSchemaV2ENS4_13GetTableKeyV2ELl8064ENS0_19ModulePageAllocatorEE14get_refactoredERKS5_RS7_ +_ZN9oceanbase6common17ObKVStoreMemBlockD1Ev +_ZN9oceanbase6common17ObKVStoreMemBlockD2Ev +_ZN9oceanbase3sql14ObRawExprUtils15need_extra_castERKNS0_13ObExprResTypeES4_RbS5_ +_ZN9oceanbase3sql18ObBasicSessionInfo19update_sys_variableERKNS_6common8ObStringES5_ +_ZN9oceanbase6common13ObSEArrayImplINS_5share17ObSysVarClassTypeELl64ENS0_19ModulePageAllocatorELb0EE9push_backERKS3_ +_ZN9oceanbase6common20DefaultPageAllocator5allocElRKNS_3lib9ObMemAttrE +_ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImNS_5share15ObSequenceValueEEEEELi65ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEED2Ev +_ZN9oceanbase6common16ObAsyncIOChannel14on_full_returnERNS0_11ObIORequestE +_ZN9oceanbase3sql15ObOptimizerUtil15find_equal_exprERKNS_6common8ObIArrayIPNS0_9ObRawExprEEEPKS4_Rl +_ZN9oceanbase6common14ob_varchar_strEPclRllllNS0_15ObCollationTypeE +_ZN9oceanbase6common11ObSqlString6appendERKNS0_8ObStringE +_ZN9oceanbase5share20ObLSLocationCacheKey4initElmNS0_6ObLSIDE +_ZN9oceanbase4palf7PalfEnv5closeERNS0_10PalfHandleE +_ZN9oceanbase4palf10PalfHandle21unregister_rebuild_cbEv +_ZN9oceanbase6common14ObKVCacheStore14alloc_mbhandleERNS0_13ObKVCacheInstENS0_15ObKVCachePolicyElRPNS0_18ObKVMemBlockHandleE +_ZN9oceanbase3lib17ObTenantMemoryMgr14alloc_cache_mbEl +_ZN9oceanbase6common17ObAtomicReference11inc_ref_cntEv +_ZN9oceanbase3sql18ObBasicSessionInfo20update_timezone_infoEv +_ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScanner19cache_cur_micro_rowEbb +_ZN9oceanbase10rootserver8DRLSInfo12fill_serversEv +_ZNK9oceanbase5share6schema13ObTableSchema22is_multiple_key_columnERNS1_19ObSchemaGetterGuardEmRb +_ZN9oceanbase8memtable22ObMemtableRowCompactor36try_cleanout_tx_node_during_compact_ERNS_7storage14ObTxTableGuardEPNS0_15ObMvccTransNodeE +_ZN9oceanbase6common13ObSEArrayImplINS_3sql16ResolverJoinInfoELl1ENS0_19ModulePageAllocatorELb1EE7destroyEv +_ZN9oceanbase6common11ObArrayImplINS_3sql10SelectItemENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE7destroyEv +_ZN9oceanbase4palf10PalfHandle25unregister_role_change_cbEv +_ZZN9oceanbase4palf10PalfHandle25unregister_role_change_cbEvENK5$_770clEPKc.0e4bf25207570af14a78557c8489c4fc +_ZN9oceanbase6common6future22DefaultFutureAllocator5allocEl +_ZN9oceanbase3sql29ObTenantCachedSchemaGuardInfo27refresh_tenant_schema_guardEm +_ZN9oceanbase5share6schema19ObSchemaGetterGuard4initEb +_ZN9oceanbase6common16ObClockGenerator4run1Ev +_ZN9oceanbase11transaction24GetObsoleteTenantFunctorclERKNS_6common9ObIntWarpEPNS0_14ObTsSourceInfoE +_ZN9oceanbase11transaction18ObTimestampService14handle_requestERKNS0_12ObGtsRequestERNS_5obrpc14ObGtsRpcResultE +_ZNK9oceanbase6common6ObAddreqERKS1_ +_ZN9oceanbase11transaction16ObTransStatistic27add_gts_request_total_countEml +_ZN9oceanbase6common4hash9ObHashMapIlPNS_2pl14ObPLCursorInfoENS1_19NoPthreadDefendModeENS1_9hash_funcIlEENS1_8equal_toIlEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIlS5_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev +_ZNK9oceanbase6common15ObLinearHashMapINS_12blocksstable12MacroBlockIdENS2_14ObBlockManager9BlockInfoENS0_14ShareMemMgrTagEE15get_load_factorEv +_ZNK9oceanbase3sql14VirtualSvrPair26get_all_part_and_tablet_idERNS_6common8ObIArrayImEERNS3_INS2_10ObTabletIDEEE +_ZN9oceanbase5share17MonitorEntryStack29check_and_handle_timeout_taskEl +_ZN9oceanbase6common15ObLinearHashMapINS_5share14ObCascadMemberENS2_15ObDstServerInfoENS0_14ShareMemMgrTagEE16do_foreach_scan_INS2_17ObServerBlacklist19ObMapSendReqFunctorENS6_14DoForeachOnBktIS9_EEEEbmmRT_RT0_ +_ZN9oceanbase6common15ObLinearHashMapINS_5share14ObCascadMemberENS2_15ObDstServerInfoENS0_14ShareMemMgrTagEE16load_access_bkt_EmRPNS6_6BucketE +_ZN9oceanbase6common5occam16ObOccamTimerTask11TaskWrapperclEv +_ZN9oceanbase6common5occam26ObOccamTimeGuardDetectHungC2EjjPKcS4_S4_t +_ZTWN9oceanbase6common5occam20ObThreadHungDetector15click_point_idxE +_ZNK9oceanbase6common10ObFunctionIFbvEE7DerivedIZNS_4palf8election16ElectionProposer26register_renew_lease_task_EvE4$_94E6invokeEv.04e71024b39a6e507691a8fa38de0e88 +_ZN9oceanbase3sql14ObRawExprUtils20check_need_bool_exprEPKNS0_9ObRawExprERb +easy_hash_add +_ZN9oceanbase3sql17ObTableInsertUpOp27calc_upd_new_row_tablet_locERKNS0_10ObUpdCtDefERNS0_10ObUpdRtDefERPNS0_14ObDASTabletLocE +_ZN9oceanbase3sql17ObConflictChecker28get_next_row_from_data_tableERNS0_15DASOpResultIterERPNS0_17ObChunkDatumStore9StoredRowE +_ZNK9oceanbase5share6schema11ObSchemaMgr20get_drop_tenant_infoEmRNS1_16ObDropTenantInfoE +_ZN9oceanbase8observer14ObSrvRpcXlator9translateERNS_3rpc9ObRequestERPNS2_5frame14ObReqProcessorE +_ZN9oceanbase6common9ObSEArrayINS_11transaction9tablelock13ObTableLockOpELl10ENS2_24TransModulePageAllocatorELb0EEC2Ev +_ZSt16__insertion_sortIPPN9oceanbase3sql17ObChunkDatumStore9StoredRowEN9__gnu_cxx5__ops15_Iter_comp_iterINS1_12ObSortOpImpl16CopyableComparerEEEEvT_SC_T0_ +_ZN9oceanbase3sql27ObTransformSubqueryCoalesce23get_same_classify_exprsERNS_6common8ObIArrayIPNS0_9ObRawExprEEES7_10ObItemTypeNS0_14ObExprInfoFlagE +_ZN9oceanbase6common11ObArrayImplINS_5share16ObCoreTableProxy3RowENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEED2Ev +_ZN9oceanbase7storage8ObTablet26check_has_effective_ddl_kvERb +_ZN9oceanbase7storage16ObTabletDDLKvMgr26check_has_effective_ddl_kvERb +_ZN9oceanbase10logservice18ObLogReplayService28get_min_unreplayed_log_ts_nsERKNS_5share6ObLSIDERl +_ZN9oceanbase10logservice18ObLogReplayService18get_replay_status_ERKNS_5share6ObLSIDERNS0_19ObReplayStatusGuardE +_ZN9oceanbase6common9SCondTempILi3EE6signalEji +_ZNK9oceanbase3lib17ObMallocAllocator19get_tenant_ctx_holdEmm +_ZN9oceanbase6common11ObArrayImplIPKNS_3sql9TableItemENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEE9push_backERKS5_ +_ZN9oceanbase3omt17ObMultiLevelQueue10pop_timeupERPNS_6common6ObLinkEil +_ZNK9oceanbase6common10ObFunctionIFvvEE7DerivedIZNS0_5occam17ObOccamThreadPool11commit_taskILNS5_13TASK_PRIORITYE1ERNS5_16ObOccamTimerTask11TaskWrapperEJEEEiRNS0_8ObFutureINSt9result_ofIFT0_DpT1_EE4typeEEEOSE_DpOSF_EUlvE_E4copyERNS0_12ObIAllocatorEPv +_ZN9oceanbase6common12ObDedupQueue4run1Ev +_ZN9oceanbase6common12ObDedupQueue3gc_Ev +_ZN9oceanbase3sql16ObPlanCacheValue19get_outline_versionERNS_5share6schema19ObSchemaGetterGuardEmRNS3_18ObSchemaObjVersionE +_ZNK9oceanbase5share6schema12ObOutlineMgr33get_outline_schema_with_signatureEmmRKNS_6common8ObStringERPKNS1_21ObSimpleOutlineSchemaE +_ZNK9oceanbase6common4hash18ObPointerHashArrayINS_5share6schema29ObOutlineSignatureHashWrapperEPNS4_21ObSimpleOutlineSchemaENS4_17ObGetOutlineKeyV3EE21placement_hash_searchERKS5_Rl +_ZN9oceanbase5share6schema19ObSchemaGetterGuard28get_outline_info_with_sql_idEmmRKNS_6common8ObStringERPKNS1_13ObOutlineInfoE +_ZN9oceanbase5share6schema19ObSchemaGetterGuard31get_outline_info_with_signatureEmmRKNS_6common8ObStringERPKNS1_13ObOutlineInfoE +_ZNK9oceanbase5share6schema19ObSchemaGetterGuard25check_tenant_schema_guardEm +_ZN9oceanbase5share6schema19ObSchemaGetterGuard23get_sys_variable_schemaEmRPKNS1_19ObSysVariableSchemaE +_ZN9oceanbase5share6schema19ObSchemaGetterGuard10get_schemaINS1_19ObSysVariableSchemaEEEiNS1_12ObSchemaTypeEmmRPKT_l +_ZN9oceanbase5share6schema19ObSchemaGetterGuard20get_from_local_cacheINS1_19ObSysVariableSchemaEEEiNS1_12ObSchemaTypeEmmRPKT_ +_ZZN9oceanbase5share6schema19ObSchemaGetterGuard20get_from_local_cacheINS1_19ObSysVariableSchemaEEEiNS1_12ObSchemaTypeEmmRPKT_ENKUlPKcE1_clESB_ +_ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImmEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS4_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14set_refactoredERKmRKS4_iii +_ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImNS0_8ObStringEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv +_ZN9oceanbase6common4hash11ObHashTableINS_12blocksstable12MacroBlockIdENS1_11HashMapPairIS4_NS1_11HashNullObjEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi89ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19ReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv +_ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImlEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS4_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv +_ZN9oceanbase3sql20ObExprResultTypeUtil21get_round_result_typeERNS_6common9ObObjTypeERKS3_ +_ZN9oceanbase6common16ObKVCacheInstMap20print_all_cache_infoEv +_ZN9oceanbase6common16ObKVCacheInstMap23print_tenant_cache_infoEm +_ZN9oceanbase3sql26ObRawExprCanonicalizerImpl8push_notERPNS0_9ObRawExprE +_ZN9oceanbase6common15ObLinearHashMapINS_5share6ObLSIDEPNS_10logservice14ObReplayStatusENS0_14ShareMemMgrTagEE16load_access_bkt_ERKS3_RmRPNS8_6BucketE +_ZN9oceanbase6common13ObExternalRef7acquireEPPv +_ZN9oceanbase5share6schema19ObSchemaGetterGuard15get_tenant_infoEmRPKNS1_20ObSimpleTenantSchemaE +_ZZN9oceanbase5share6schema19ObSchemaGetterGuard15get_tenant_infoEmRPKNS1_20ObSimpleTenantSchemaEENK5$_249clEPKc.bfa63f0f3456173f564c7cf65584fc48 +_ZN9oceanbase6common23ObSingleConnectionProxy4readERNS0_12ObISQLClient10ReadResultEmPKc +_ZN9oceanbase3sql17ObPredicateDeduce6deduceERNS_6common8ObIArrayIhEE +_ZN9oceanbase6common8ObBitSetILl256ENS0_19ModulePageAllocatorELb1EE10add_memberEl +_ZN9oceanbase11transaction10ObTransCtxC2EPKcl +_ZN9oceanbase6common15ObLinearHashMapINS_5share14ObCascadMemberENS2_15ObDstServerInfoENS0_14ShareMemMgrTagEE20unset_foreach_L_lmt_Em +_ZN9oceanbase11transaction16ObTransStatistic27add_gts_acquire_total_countEml +_ZN9oceanbase4palf8election12ElectionImpl14handle_messageERKNS1_24ElectionAcceptRequestMsgE +_ZN9oceanbase4palf8election16ElectionProposer42reschedule_or_register_prepare_task_after_El +_ZN9oceanbase4palf8election16ElectionAcceptor17on_accept_requestERKNS1_24ElectionAcceptRequestMsgEPl +_ZN9oceanbase4palf8election25ElectionAcceptResponseMsg12set_acceptedElPKNS1_16ElectionPriorityE +_ZN9oceanbase6common5occam26ObOccamTimeGuardDetectHung5clickEt +_ZNK9oceanbase10logservice11coordinator20ElectionPriorityImpl9serializeEPclRl +_ZN9oceanbase6common26ObOccamTimerTaskRAIIHandle27remove_task_from_timewheel_Ev +_ZN9oceanbase6common26ObOccamTimerTaskRAIIHandle16reschedule_afterEl +_ZN9oceanbase10rootserver16ObRootInspection24check_sys_table_schemas_Em +_ZN9oceanbase5share6schema13ObSchemaUtils33construct_tenant_space_full_tableEmRNS1_13ObTableSchemaE +_ZN9oceanbase5share6schema13ObTableSchema24get_column_schema_by_idxEl +_ZN9oceanbase5share6schema13ObSchemaUtils35construct_tenant_space_simple_tableEmRNS1_21ObSimpleTableSchemaV2E +_ZN9oceanbase5share6schema17ObSysTableChecker23check_inner_table_existEmRKNS1_21ObSimpleTableSchemaV2ERb +_ZN9oceanbase5share6schema17ObSysTableChecker27check_tenant_space_table_idEmRb +_ZN9oceanbase5share6schema17ObSysTableChecker31is_cluster_private_tenant_tableEm +_ZN9oceanbase5share18ObInnerTableSchema42all_virtual_sub_part_real_agent_ora_schemaERNS0_6schema13ObTableSchemaE +_ZN9oceanbase3sql18ObExprCurTimestamp18eval_cur_timestampERKNS0_6ObExprERNS0_9ObEvalCtxERNS_6common7ObDatumE +_ZN9oceanbase10logservice11coordinator14RefeshPriorityclINS1_10PriorityV0EEEiRT_ +_ZN9oceanbase6common11ObArrayImplIPNS_3sql15ObAggFunRawExprENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEE10extend_bufEv +_ZN9oceanbase11transaction14ObTxLoopWorker14do_keep_alive_EPNS_7storage4ObLSE +_ZN9oceanbase3sql10ObOperator10filter_rowERNS0_9ObEvalCtxERKNS_6common8ObIArrayIPNS0_6ObExprEEERb +_ZN9oceanbase3sql24def_relational_eval_funcINS0_18ObRelationalTCFuncILb1ELNS_6common14ObObjTypeClassE1ELS4_1ELNS3_7ObCmpOpE0EE8DatumCmpEEEiRKNS0_6ObExprERNS0_9ObEvalCtxERNS3_7ObDatumE +_ZN9oceanbase3sql24def_relational_eval_funcINS0_18ObRelationalTCFuncILb1ELNS_6common14ObObjTypeClassE1ELS4_1ELNS3_7ObCmpOpE1EE8DatumCmpEEEiRKNS0_6ObExprERNS0_9ObEvalCtxERNS3_7ObDatumE +_ZN9oceanbase3sql24def_relational_eval_funcINS0_18ObRelationalTCFuncILb1ELNS_6common14ObObjTypeClassE2ELS4_1ELNS3_7ObCmpOpE0EE8DatumCmpEEEiRKNS0_6ObExprERNS0_9ObEvalCtxERNS3_7ObDatumE +_ZNK9oceanbase3sql12ObQueryRange28generate_true_or_false_rangeEPKNS0_9ObKeyPartERNS_6common12ObIAllocatorERPNS5_10ObNewRangeE +_ZN9oceanbase5share11ObLSReplica6assignERKS1_ +_ZN9oceanbase5obrpc29ObVirtualRpcProtocolProcessor25decode_raw_net_rpc_packetERNS_6common11ObTimeGuardEP14easy_message_tlRPNS0_11ObRpcPacketE +_ZN9oceanbase5obrpc17ObRpcPacketHeader11deserializeEPKclRl +_ZN9oceanbase5obrpc13ObRpcCostTime11deserializeEPKclRl +_ZN9oceanbase5share6schema15ObBasePartition6assignERKS2_ +_ZN9oceanbase6common12ob_write_objINS0_12ObIAllocatorEEEiRT_RKNS0_5ObObjERS5_ +_ZN9oceanbase5share6schema11ObPartition5resetEv +_ZN9oceanbase6common4hash11ObHashTableIlNS1_11HashMapPairIllEENS1_9hash_funcIlEENS1_8equal_toIlEENS1_10pair_firstIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS4_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKlRS4_l +_ZN9oceanbase3sql10ObSQLUtils28check_and_convert_table_nameENS_6common15ObCollationTypeEbRNS2_8ObStringENS0_4stmt8StmtTypeEb +_ZN9oceanbase3sql10ObSQLUtils16check_ident_nameENS_6common15ObCollationTypeERNS2_8ObStringEbl +_ZN9oceanbase3sql23ObPxTenantTargetMonitor29check_dummy_location_credibleERb +_ZN9oceanbase3sql23ObPxTenantTargetMonitor8get_roleERNS_6common6ObRoleE +_ZN9oceanbase10logservice12ObLogService9open_palfERKNS_5share6ObLSIDERNS_4palf15PalfHandleGuardE +_ZN9oceanbase4palf7PalfEnv4openElRNS0_10PalfHandleE +_ZN9oceanbase3sql13ObDMLResolver34resolve_columns_for_partition_exprERPNS0_9ObRawExprERNS_6common8ObIArrayINS0_15ObQualifiedNameEEERKNS0_9TableItemEb +_ZN9oceanbase5obrpc10ObRpcProxy17calc_payload_sizeEl +_ZZN9oceanbase3sql12ObQueryRange17get_tablet_rangesERNS_6common9ObSEArrayIPNS2_10ObNewRangeELl1ENS2_19ModulePageAllocatorELb0EEERNS3_IbLl2ES6_Lb1EEERKNS2_20ObDataTypeCastParamsEENK6$_1001clEPKc.a7064153cc2a2b2be136079a26b00277 +_ZN9oceanbase6common13ObSEArrayImplINS_7storage20ObRow2ExprsProjector4ItemELl4ENS0_19ModulePageAllocatorELb0EE7reserveEl +_ZN9oceanbase6common15ObLinearHashMapINS_5share6ObLSIDEPNS_10logservice14ObReplayStatusENS0_14ShareMemMgrTagEE16load_access_bkt_EmRPNS8_6BucketE +_ZN9oceanbase10logservice11coordinator17ObFailureDetector25get_specified_level_eventENS1_12FailureLevelERNS_6common8ObIArrayINS1_12FailureEventEEE +_ZNK9oceanbase6common4hash11ObHashTableINS_7storage14ObTabletMapKeyENS1_11HashMapPairIS4_PNS3_20ObResourceValueStoreINS3_13ObMetaPointerINS3_8ObTabletEEEEEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstISC_EENS1_13SimpleAllocerINS1_15ObHashTableNodeISC_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE18foreach_refactoredINS3_23ObITenantTabletIterator17FetchTabletItemOpEEEiRT_ +_ZNK9oceanbase3lib16ObRuntimeContext10serialize_EPclRl +_ZN9oceanbase7storage4ObLS31try_update_uppder_trans_versionEv +_ZN9oceanbase6common11ObArrayImplINS0_6ObAddrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_22NotImplementItemEncodeIS2_EEE10extend_bufEv +_ZN9oceanbase3sql11ObOpRawExprD2Ev +_ZN9oceanbase11transaction23ObTenantWeakReadService15do_thread_task_ElRl +_ZN9oceanbase11transaction23ObTenantWeakReadService12scan_all_ls_EPNS_7storage11ObLSServiceE +_ZN9oceanbase11transaction23ObTenantWeakReadService25generate_cluster_version_Ev +_ZNK9oceanbase11transaction33ObTenantWeakReadClusterVersionMgr11get_versionElRlb +_ZN9oceanbase7storage23ObTenantTabletScheduler17schedule_ls_mergeERlRNS0_4ObLSERbS5_ +_ZN9oceanbase7storage23ObTenantTabletScheduler27schedule_tablet_minor_mergeENS_5share6ObLSIDERNS0_8ObTabletE +_ZN9oceanbase7storage19ObTablesHandleArrayC1Ev +_ZN9oceanbase7storage19ObTablesHandleArrayC2Ev +_ZN9oceanbase7storage19ObFastFreezeChecker22check_need_fast_freezeERKNS0_8ObTabletERb +_ZN9oceanbase10compaction22ObPartitionMergePolicy27check_need_mini_minor_mergeERKNS_7storage8ObTabletERb +_ZNK9oceanbase7storage18ObTabletTableStore23get_mini_minor_sstablesERNS0_19ObTablesHandleArrayE +_ZN9oceanbase7storage19ObTablesHandleArray9add_tableEPNS0_8ObITableE +_ZN9oceanbase7storage23ObTenantTabletScheduler27schedule_tablet_major_mergeERlRNS0_4ObLSERNS0_8ObTabletERbRNS1_20ObScheduleStatisticsEb +_ZNK9oceanbase5obrpc16ObTransRpcResult18get_serialize_sizeEv +_ZZN9oceanbase6common16ObCommonSqlProxy4readEPNS0_9sqlclient16ObISQLConnectionERNS0_12ObISQLClient10ReadResultEmPKcENK5$_247clES9_.3b9eb7bac0c1e969a148d6b2684be9fe +_ZNK9oceanbase12blocksstable18ObMicroBlockHeader20check_and_get_recordEPKclsRS3_Rl +_ZN9oceanbase6common13ObSEArrayImplIPPNS_3sql9ObRawExprELl1ENS0_19ModulePageAllocatorELb0EE7reserveEl +unw_init_local_common +_ZZN9oceanbase5share6schema19ObSchemaGetterGuard15get_tenant_infoEmRPKNS1_14ObTenantSchemaEENK5$_245clEPKc.bfa63f0f3456173f564c7cf65584fc48 +_ZN9oceanbase3sql19ObDASLocationRouter18get_vt_ls_locationEmRKNS_6common10ObTabletIDERNS_5share12ObLSLocationE +_ZN9oceanbase5share12ObLSLocation20add_replica_locationERKNS0_19ObLSReplicaLocationE +_ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImlEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS4_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE6createElPSG_PSJ_ +_ZNK9oceanbase3sql15ObSchemaChecker15get_database_idEmRKNS_6common8ObStringERm +_ZN9oceanbase5share6schema19ObSchemaGetterGuard15get_database_idEmRKNS_6common8ObStringERm +_ZN9oceanbase6common13ObObjFreeList13free_to_chunkEPNS0_13ObThreadCacheEPv +_ZN9oceanbase3sql14ObRawExprUtils16clear_exprs_flagERKNS_6common8ObIArrayIPNS0_9ObRawExprEEENS0_14ObExprInfoFlagE +_ZN9oceanbase8observer20ObInnerSQLConnection20set_session_variableERKNS_6common8ObStringEl +_ZN9oceanbase3sql20ObRawExprWrapEnumSet16wrap_target_listERNS0_12ObSelectStmtE +_ZN9oceanbase6common14ObKVCacheStore17retire_mb_handlesERNS0_10HazardListE +_ZN9oceanbase6common11ObArrayImplINS_10rootserver13ObUnitManager10ObUnitLoadENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEE10extend_bufEl +_ZN9oceanbase3sql12ObExprConcatC1ERNS_6common12ObIAllocatorE +_ZN9oceanbase3sql12ObExprConcatC2ERNS_6common12ObIAllocatorE +_ZN9oceanbase5share19ObPersistentLSTable19construct_ls_infos_ERNS_6common9sqlclient13ObMySQLResultERNS2_8ObIArrayINS0_8ObLSInfoEEE +_ZNK9oceanbase8observer16ObInnerSQLResult13get_timestampEPKcPKNS_6common14ObTimeZoneInfoERl +_ZN9oceanbase5share8ObLSInfo21update_replica_statusEv +_ZN9oceanbase5share19ObPersistentLSTable20construct_ls_replicaERNS_6common9sqlclient13ObMySQLResultERNS0_11ObLSReplicaE +_ZN9oceanbase6common13ObSEArrayImplINS_5share12SimpleMemberELl7ENS0_15ObNullAllocatorELb0EE7destroyEv +_ZN9oceanbase5share12SimpleMember4initElPc +_ZNK9oceanbase8observer16ObInnerSQLResult13get_timestampElPKNS_6common14ObTimeZoneInfoERl +_ZN9oceanbase6common20ObSQLClientRetryWeak31read_without_check_sys_variableERNS0_23ObSingleConnectionProxyERNS0_12ObISQLClient10ReadResultEmPKc +_ZN9oceanbase3omt13ObMultiTenant19set_group_sug_tokenEv +_ZN9oceanbase3sql9TableItemD2Ev +_ZNK9oceanbase3sql13ObExprResType4hashEm +_ZNK9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS_3sql11ObPlanCacheEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE18foreach_refactoredINS4_18ObPlanCacheManager18ObGetAllCacheKeyOpEEEiRT_ +_ZN9oceanbase6common15ObLinearHashMapINS_12blocksstable12MacroBlockIdEbNS0_14ShareMemMgrTagEE16load_access_bkt_ERKS3_RmRPNS5_6BucketE +_ZN9oceanbase6common4hash19ObArrayIndexHashSetIPNS0_9ObRowDesc4DescES4_Lm733EE9set_indexEm +_ZN9oceanbase7storage8ObTablet28get_kept_multi_version_startERlS2_ +_ZN9oceanbase7storageL17get_not_exist_rowERKNS_12blocksstable13ObDatumRowkeyERNS1_10ObDatumRowERPKS5_.60e5f1555e1608e51e89c573dc1497ed +_ZN9oceanbase6common13ObSEArrayImplINS_5share6schema9ObColDescELl32ENS0_19ModulePageAllocatorELb0EE7reserveEl +_ZN9oceanbase3sql18ObBasicSessionInfo13set_time_zoneERKNS_6common8ObStringEbb +_ZN9oceanbase5share6schema22ObSchemaServiceSQLImpl18fetch_trigger_listERKNS1_21ObRefreshSchemaStatusEmmlRNS_6common12ObISQLClientERNS1_13ObTableSchemaE +_ZN9oceanbase6common11ObSqlString10append_fmtEPKcz +_ZN9oceanbase6common11ObSqlString7vappendEPKcP13__va_list_tag +_ZN9oceanbase6common11ObSqlString6extendEl +_ZN9oceanbase5share6schema21ObSchemaRetrieveUtils21retrieve_trigger_listINS_6common9sqlclient13ObMySQLResultEEEimRT_RNS4_8ObIArrayImEE +_ZN9oceanbase5share11ObShareUtil23set_default_timeout_ctxERNS_6common12ObTimeoutCtxEl +_ZNK9oceanbase4palf12LSNAllocator14get_max_log_tsEv +_ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS0_8ObStringElEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEE5allocIJEEEPS7_DpRT_ +_ZN9oceanbase11transaction14ObWeakReadUtil35max_stale_time_for_weak_consistencyEml +_ZN9oceanbase5trace4UUID11deserializeEPKclRl +_ZZN9oceanbase4palf13LogNetService23post_request_to_server_INS0_8election25ElectionAcceptResponseMsgEEEiRKNS_6common6ObAddrERKT_ENKUlPKcE0_clESD_ +_ZN9oceanbase6common15ObLinearHashMapINS_12blocksstable12MacroBlockIdENS2_14ObBlockManager9BlockInfoENS0_14ShareMemMgrTagEE16do_foreach_scan_INS4_26GetPendingFreeBlockFunctorENS7_14DoForeachOnBktIS9_EEEEbmmRT_RT0_ +_ZN9oceanbase6common15ObLinearHashMapINS_12blocksstable12MacroBlockIdENS2_14ObBlockManager9BlockInfoENS0_14ShareMemMgrTagEE16do_foreach_scan_INS4_25GetOldestHoldBlockFunctorENS7_14DoForeachOnBktIS9_EEEEbmmRT_RT0_ +_ZN9oceanbase7storage16ObTxCtxTableInfoD2Ev +_ZZN9oceanbase5share19ObLSLocationService22renew_all_ls_locationsEvENK5$_281clEPKc.db28c62327e16d3ae5c8a88acfd53bbb +_ZN9oceanbase6common12ob_write_objINS0_16ObArenaAllocatorEEEiRT_RKNS0_5ObObjERS5_ +_ZN9oceanbase12blocksstable19ObStorageDatumUtils32transform_multi_version_col_descERKNS_6common8ObIArrayINS_5share6schema9ObColDescEEElRS7_ +_ZN9oceanbase3sql16ObSQLSessionInfo17close_all_ps_stmtEv +_ZNK9oceanbase5share6schema13ObTableSchema16get_convert_sizeEv +_ZNK9oceanbase5share6schema16ObColumnSchemaV216get_convert_sizeEv +_ZNK9oceanbase4palf8election25ElectionAcceptResponseMsg10serialize_EPclRl +_ZNK9oceanbase4palf16LogConfigVersion9serializeEPclRl +_ZN9oceanbase5obrpc22ObRpcProtocolProcessor19resolve_packet_typeERNS_6common11ObTimeGuardEP14easy_message_tRbRlS8_ +_ZNK9oceanbase6common4hash16ObPointerHashMapImPNS_5share6schema17ObSimpleUDTSchemaENS4_11ObGetUDTKeyELl8064ENS0_19ModulePageAllocatorEE14get_refactoredERKmRS6_ +_ZN9oceanbase3sql3dtl22ObDtlChannelMemManager17auto_free_on_timeEl +_ZN9oceanbase3sql3dtl22ObDtlChannelMemManager19get_max_mem_percentEv +_ZZN9oceanbase10logservice12ObLogHandler25get_max_decided_log_ts_nsERlENK5$_278clEPKc.1291a23568de5f940ae06fb9e7354412 +_ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImNS_3lib6Worker10CompatModeEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_23SpinReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKmRS7_l +_ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImNS_3lib6Worker10CompatModeEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_23SpinReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE32internal_get_with_timeout_unsafeERNS1_17ObHashTableBucketIS7_NS0_10SpinRWLockENS1_5NCondEEERKmRPKS7_l +_ZNK9oceanbase5share6schema21ObSimpleTableSchemaV28is_validEv +_ZN9oceanbase6common10ObIOSender15dequeue_requestERPNS0_11ObIORequestE +_ZN9oceanbase6common13ObMClockQueue3popERPNS0_11ObIORequestERl +_ZN9oceanbase11transaction11ObGtsSource7get_gtsEPNS0_10ObTsCbTaskERl +_ZN9oceanbase6common4hash9ObHashMapINS0_6ObAddrElNS1_24LatchReadWriteDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_lEEEELi89ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv +_ZN9oceanbase5share6schema21ObSimpleTableSchemaV2C1Ev +_ZN9oceanbase5share6schema21ObSimpleTableSchemaV2C2Ev +_ZN9oceanbase3sql23ObTransformSimplifyExpr18transform_one_stmtERNS_6common8ObIArrayINS0_15ObParentDMLStmtEEERPNS0_9ObDMLStmtERb +_ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE10ELS3_10EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE +_ZNK9oceanbase6common4hash18ObPointerHashArrayINS_5share6schema27ObDatabaseSchemaHashWrapperEPNS4_22ObSimpleDatabaseSchemaENS4_13GetTableKeyV2EE21placement_hash_searchERKS5_Rl +_ZN9oceanbase3sql14ObRawExprUtils21create_real_cast_exprERNS0_16ObRawExprFactoryEPNS0_9ObRawExprERKNS0_13ObExprResTypeERPNS0_15ObSysFunRawExprEPKNS0_16ObSQLSessionInfoE +_ZN9oceanbase3sql16ObRawExprFactory21create_raw_expr_innerINS0_15ObSysFunRawExprEEEi10ObItemTypeRPT_ +_ZN9oceanbase3sql15ObSysFunRawExprC1ERNS_6common12ObIAllocatorE +_ZNK9oceanbase3sql9ObDMLStmt14get_table_itemEPKNS0_16ObSQLSessionInfoERKNS_6common8ObStringES8_RPKNS0_9TableItemE +_ZN9oceanbase5share8ObLSInfo11add_replicaERKNS0_11ObLSReplicaE +_ZN9oceanbase5share6schema19ObReferenceObjTable23get_or_add_def_obj_itemEmmNS1_12ObObjectTypeERPNS2_19ObDependencyObjItemERNS_6common12ObIAllocatorE +_ZN9oceanbase6common4hash11ObHashTableINS_5share6schema19ObReferenceObjTable18ObDependencyObjKeyENS1_11HashMapPairIS6_PNS5_19ObDependencyObjItemEEENS1_9hash_funcIS6_EENS1_8equal_toIS6_EENS1_10pair_firstISA_EENS1_13SimpleAllocerINS1_15ObHashTableNodeISA_EELi89ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKS6_RSA_l +_ZN9oceanbase6common4hash11ObHashTableINS_5share6schema19ObReferenceObjTable18ObDependencyObjKeyENS1_11HashMapPairIS6_PNS5_19ObDependencyObjItemEEENS1_9hash_funcIS6_EENS1_8equal_toIS6_EENS1_10pair_firstISA_EENS1_13SimpleAllocerINS1_15ObHashTableNodeISA_EELi89ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14set_refactoredERKS6_RKSA_iii +_ZN9oceanbase6common39ADD_COLUMN_SCHEMA_TS_WITH_DEFAULT_VALUEERNS_5share6schema13ObTableSchemaEPKcmlllNS0_9ObObjTypeEilssNS0_11ObOrderTypeEbbbRNS0_5ObObjESA_bb +_ZN9oceanbase5share6schema12ObViewSchemaD1Ev +_ZN9oceanbase5share6schema12ObViewSchemaD2Ev +_ZN9oceanbase5share6schema13ObSynonymInfoD1Ev +_ZN9oceanbase5share6schema13ObSynonymInfoD2Ev +_ZN9oceanbase5share6schema15ObContextSchemaD1Ev +_ZN9oceanbase5share6schema15ObContextSchemaD2Ev +_ZN9oceanbase5share6schema15ObProfileSchemaD1Ev +_ZN9oceanbase5share6schema15ObProfileSchemaD2Ev +_ZN9oceanbase5share6schema16ObDatabaseSchemaD1Ev +_ZN9oceanbase5share6schema16ObDatabaseSchemaD2Ev +_ZN9oceanbase5share6schema16ObKeystoreSchemaD1Ev +_ZN9oceanbase5share6schema16ObKeystoreSchemaD2Ev +_ZN9oceanbase5share6schema16ObSequenceSchemaD1Ev +_ZN9oceanbase5share6schema16ObSequenceSchemaD2Ev +_ZN9oceanbase5share6schema17ObDirectorySchemaD1Ev +_ZN9oceanbase5share6schema17ObDirectorySchemaD2Ev +_ZN9oceanbase5share6schema17ObPartitionOptionD1Ev +_ZN9oceanbase5share6schema17ObPartitionOptionD2Ev +_ZN9oceanbase5share6schema18ObTablespaceSchemaD1Ev +_ZN9oceanbase5share6schema18ObTablespaceSchemaD2Ev +_ZN9oceanbase5share6schema20ObLabelSeLabelSchemaD1Ev +_ZN9oceanbase5share6schema20ObLabelSeLabelSchemaD2Ev +_ZN9oceanbase5share6schema21ObLabelSePolicySchemaD1Ev +_ZN9oceanbase5share6schema21ObLabelSePolicySchemaD2Ev +_ZN9oceanbase5share6schema24ObLabelSeComponentSchemaD1Ev +_ZN9oceanbase5share6schema24ObLabelSeComponentSchemaD2Ev +_ZN9oceanbase5share6schema24ObLabelSeUserLevelSchemaD1Ev +_ZN9oceanbase5share6schema24ObLabelSeUserLevelSchemaD2Ev +_ZN9oceanbase5share6schema31ObSimpleMockFKParentTableSchemaD1Ev +_ZN9oceanbase5share6schema31ObSimpleMockFKParentTableSchemaD2Ev +_ZN9oceanbase5share6schema8ObSchemaD1Ev +_ZN9oceanbase5share6schema8ObSchemaD2Ev +_ZN9oceanbase5share6schema21ObSimpleTableSchemaV2C1EPNS_6common12ObIAllocatorE +_ZN9oceanbase5share6schema21ObSimpleTableSchemaV2C2EPNS_6common12ObIAllocatorE +_ZN9oceanbase5share6schema17ObPartitionSchemaC2EPNS_6common12ObIAllocatorE +_ZN9oceanbase5obrpc10ObRpcProxy18fill_extra_payloadERNS_3rpc5frame14ObReqTransport7RequestElRl +_Z16ob_strntoll_8bitPK13ObCharsetInfoPKcmiPPcPi +_ZNK9oceanbase3sql16ObSqlSchemaGuard16get_table_schemaEmRPKNS_5share6schema13ObTableSchemaEb +_ZN9oceanbase12blocksstable11ObRowWriter20append_row_and_indexINS0_14ObStorageDatumENS0_20ObColClusterInfoMaskEEEiPKT_lllbRT0_ +_ZN9oceanbase12blocksstable11ObRowWriter21append_8_bytes_columnERKNS0_14ObStorageDatumE +_ZN9oceanbase12blocksstable11ObRowWriter22append_flat_cell_arrayINS0_14ObStorageDatumEEEiPKT_lll +_ZN9oceanbase3sql17ObFastParserMysql23process_zero_identifierEv +_ZN9oceanbase10logservice11coordinator16SerializeFunctorclINS1_10PriorityV1EEEiRKT_ +_ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS0_9ObSEArrayINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EEENS0_14ShareMemMgrTagEE16load_access_bkt_EmRPNS9_6BucketE +easy_vsnprintf +_ZN9oceanbase5share6schema11ObPartitionC1Ev +_ZN9oceanbase5share6schema11ObPartitionC2Ev +_ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScanner27inner_get_next_row_directlyERPKNS0_10ObDatumRowERbS6_ +_ZN9oceanbase11transaction14ObTxLoopWorker21update_max_commit_ts_EPNS_7storage4ObLSE +_ZN9oceanbase3sql15ObCaseOpRawExprD2Ev +_ZNK9oceanbase5obrpc9ObTxRPCCBILNS0_15ObRpcPacketCodeE1626EE5cloneERKNS_3rpc5frame7SPAllocE +_ZN9oceanbase6common15ObBaseLogWriter12do_flush_logEv +_ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImNS1_11HashNullObjEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14set_refactoredERKmRKS5_iii +_ZN9oceanbase5share6schema21ObSchemaRetrieveUtils21retrieve_table_schemaINS_6common9sqlclient13ObMySQLResultEEEimbRT_RNS4_12ObIAllocatorERPNS1_13ObTableSchemaE +_ZN9oceanbase6common13ObStoreFormat22find_store_format_typeERKNS0_8ObStringERNS0_17ObStoreFormatTypeE +_ZNK9oceanbase8observer16ObInnerSQLResult8get_boolEPKcRb +_ZN9oceanbase5share6schema13ObTableSchema5resetEv +_ZN9oceanbase5share6schema8ObSchema12reset_stringERNS_6common8ObStringE +_ZN9oceanbase5share6schema17ObPartitionSchema5resetEv +_ZN9oceanbase5share6schema17ObPartitionOption5resetEv +_ZN9oceanbase6common11ObArrayImplINS_5share6schema22ObSimpleConstraintInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEE7destroyEv +_ZN9oceanbase6common11ObArrayImplINS_5share6schema18ObAuxTableMetaInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_17DefaultItemEncodeIS4_EEE7destroyEv +_ZN9oceanbase5share6schema12ObViewSchema5resetEv +_ZN9oceanbase6common12ObRowkeyInfo5resetEv +_ZN9oceanbase5share6schema21ObSimpleTableSchemaV25resetEv +_ZN9oceanbase6common11ObArrayImplINS_5share6schema22ObSimpleForeignKeyInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEE7destroyEv +_ZN9oceanbase5share6schema21ObSchemaRetrieveUtils17fill_table_schemaINS_6common9sqlclient13ObMySQLResultEEEimbRT_RNS1_13ObTableSchemaERb +_ZN9oceanbase6common13ObStoreFormat22find_store_format_typeERKNS0_8ObStringENS0_17ObStoreFormatTypeES5_RS5_ +_ZN9oceanbase10rootserver14ObThreadIdling4idleEl +_ZN9oceanbase3sql14ObRawExprUtils20try_create_bool_exprEPNS0_9ObRawExprERS3_RNS0_16ObRawExprFactoryE +_ZN9oceanbase3sql9ObExprDivC1ERNS_6common12ObIAllocatorE10ObItemType +_ZN9oceanbase3sql9ObExprDivC2ERNS_6common12ObIAllocatorE10ObItemType +_ZN9oceanbase7storage11ObLSService11get_ls_iterERNS_6common13ObSharedGuardINS0_12ObLSIteratorEEENS0_10ObLSGetModE +_ZN9oceanbase6common16ObFixedArrayImplINS_3sql15ObTableRowCountENS0_12ObIAllocatorEE9push_backERKS3_ +_ZN9oceanbase6common16ObFixedArrayImplINS_3sql15ObTableRowCountENS0_12ObIAllocatorEE7reserveEl +_ZN9oceanbase6common16ObFixedArrayImplINS_3sql15ObTableRowCountENS0_12ObIAllocatorEE4initEl +_ZN9oceanbase3sql15ObOptimizerUtil30try_add_cast_to_set_child_listEPNS_6common12ObIAllocatorEPNS0_16ObSQLSessionInfoEPNS0_16ObRawExprFactoryEbRNS2_8ObIArrayIPNS0_12ObSelectStmtEEESD_PNS9_INS0_13ObExprResTypeEEEb +_ZN9oceanbase6common13ObSEArrayImplINS_3sql13ObExprResTypeELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv +_ZN9oceanbase3sql15ObOptimizerUtil17get_set_res_typesEPNS_6common12ObIAllocatorEPNS0_16ObSQLSessionInfoERNS2_8ObIArrayIPNS0_12ObSelectStmtEEERNS7_INS0_13ObExprResTypeEEE +_ZN9oceanbase3sql15ObOptimizerUtil21is_table_on_null_sideEPKNS0_9ObDMLStmtEmRb +_ZN9oceanbase3sql15ObOptimizerUtil20add_cast_to_set_listEPNS0_16ObSQLSessionInfoEPNS0_16ObRawExprFactoryERNS_6common8ObIArrayIPNS0_12ObSelectStmtEEERKNS0_13ObExprResTypeEl +_ZN9oceanbase3sql14ObRawExprUtils23try_add_cast_expr_aboveEPNS0_16ObRawExprFactoryEPKNS0_16ObSQLSessionInfoERNS0_9ObRawExprERKNS0_13ObExprResTypeERPS7_ +_ZN9oceanbase3sql14ObExprOperator26is_same_kind_type_for_caseERKNS0_13ObExprResTypeES4_Rb +_ZN9oceanbase5obrpc15ObRpcResultCode11deserializeEPKclRl +_ZN9oceanbase11transaction14ObTransService25ls_rollback_to_savepoint_ERKNS0_9ObTransIDERKNS_5share6ObLSIDElllRlPKNS0_8ObTxDescEl +_ZN9oceanbase11transaction7ObTsMgr22is_external_consistentEm +_ZN9oceanbase10rootserver16ObServerBalancer20distribute_by_tenantEmRKNS_6common7ObArrayIPNS_5share14ObResourcePoolENS2_19ModulePageAllocatorELb0ENS2_22ObArrayDefaultCallBackIS6_EENS2_22NotImplementItemEncodeIS6_EEEE +_ZN9oceanbase7storage18ObTenantMetaMemMgr18gc_tables_in_queueERb +_ZN9oceanbase12blocksstable20ObStorageDatumBuffer7reserveElb +_ZN9oceanbase3sql15ObCaseOpRawExprC1ERNS_6common12ObIAllocatorE +_ZN9oceanbase11transaction14ObTxLoopWorker4run1Ev +_ZN9oceanbase6common13ObLinkHashMapINS0_9ObIntWarpENS_11transaction14ObTsSourceInfoENS3_19ObTsSourceInfoAllocENS0_9RefHandleELl8EE3mapINS7_8HandleOnINS3_18CheckTenantFunctorEEEEEiRT_ +_ZN9oceanbase6common4hash11ObHashTableINS_3omt10ObTenantIDENS1_11HashMapPairIS4_PNS3_14ObTenantConfigEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS8_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS8_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE32internal_get_with_timeout_unsafeERNS1_17ObHashTableBucketIS8_NS1_5NLockENS1_5NCondEEERKS4_RPKS8_l +_ZN9oceanbase12blocksstable11ObRowWriter13build_clusterINS0_14ObStorageDatumEEEilPKT_ +_ZN9oceanbase3sql12ObQueryRange5resetEv +_ZN9oceanbase6common25ADD_COLUMN_SCHEMA_TS_FULLERNS_5share6schema13ObTableSchemaEPKcmlllNS0_9ObObjTypeEilssNS0_11ObOrderTypeEbbbbb +_ZN9oceanbase5share6schema21ObSchemaRetrieveUtils18fill_column_schemaINS_6common9sqlclient13ObMySQLResultEEEimbRT_RNS1_16ObColumnSchemaV2ERb +_ZNK9oceanbase8observer16ObInnerSQLResult11get_varcharEPKcRNS_6common8ObStringE +_ZNK9oceanbase8observer16ObInnerSQLResult11get_varcharElRNS_6common8ObStringE +_ZN9oceanbase5share18ObCompatModeGetter34check_is_oracle_mode_with_table_idEmlRb +_ZN9oceanbase5share6schema13ObSchemaUtils25cascaded_generated_columnERNS1_13ObTableSchemaERNS1_16ObColumnSchemaV2Eb +_ZN9oceanbase6common11ObArrayImplINS_5share11ObLSReplicaENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE10extend_bufEl +_ZNK9oceanbase5share16ObAliveServerMap8is_aliveERKNS_6common6ObAddrERbRl +_ZN9oceanbase5share6schema27ObMultiVersionSchemaService24get_cluster_schema_guardERNS1_19ObSchemaGetterGuardENS2_17RefreshSchemaModeE +_ZN9oceanbase6common11ObArrayImplIPKNS_5share6schema20ObSimpleTenantSchemaENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS6_EENS0_22NotImplementItemEncodeIS6_EEED2Ev +_ZNK9oceanbase5share6schema11ObSchemaMgr18get_tenant_schemasERNS_6common8ObIArrayIPKNS1_20ObSimpleTenantSchemaEEE +_ZNK9oceanbase5share6schema19ObSchemaGetterGuard14get_tenant_idsERNS_6common8ObIArrayImEE +_ZNK9oceanbase5share6schema11ObSchemaMgr14get_tenant_idsERNS_6common8ObIArrayImEE +_ZNK9oceanbase5share6schema14ObSysVarSchema9get_valueEPNS_6common12ObIAllocatorERKNS3_20ObDataTypeCastParamsERNS3_5ObObjE +_ZN9oceanbase4palf8election28get_sorted_majority_one_descIlEEiRKNS_6common7ObArrayIT_NS3_19ModulePageAllocatorELb0ENS3_22ObArrayDefaultCallBackIS5_EENS3_22NotImplementItemEncodeIS5_EEEERS5_ +_ZN9oceanbase6common36ADD_COLUMN_SCHEMA_WITH_DEFAULT_VALUEERNS_5share6schema13ObTableSchemaEPKcmlllNS0_9ObObjTypeEilssNS0_11ObOrderTypeEbbRNS0_5ObObjESA_bb +_ZN9oceanbase7storage13ObTxDataTable25DEBUG_calc_with_row_iter_EPNS0_18ObStoreRowIteratorElRl +easy_session_process_low_level +_Z8async_cbP14easy_request_t +_ZN9oceanbase5obrpc10ObRpcProxy7AsyncCBINS0_13LogRpcProxyV25ObRpcILNS0_15ObRpcPacketCodeE5386EvEEE6decodeEPv +_ZN9oceanbase11transaction14ObTransService25handle_trans_msg_callbackERKNS_5share6ObLSIDES5_RKNS0_9ObTransIDEsiRKNS_6common6ObAddrEll +_ZN9oceanbase5obrpc9ObTxRPCCBILNS0_15ObRpcPacketCodeE1626EE7processEv +_ZN9oceanbase11transaction14ObPartTransCtx22tx_keepalive_response_El +_ZZN9oceanbase11transaction14ObTransService25handle_trans_msg_callbackERKNS_5share6ObLSIDES5_RKNS0_9ObTransIDEsiRKNS_6common6ObAddrEllENK6$_1152clEPKc.93feb755617c21c32b229b78773c290c +_ZN9oceanbase11transaction14ObWeakReadUtil30generate_min_weak_read_versionEm +_ZN9oceanbase3sql14ObExprOperator31aggregate_result_type_for_mergeERNS0_13ObExprResTypeEPKS2_lNS_6common15ObCollationTypeEbsPKNS0_16ObSQLSessionInfoEbbb +_ZN9oceanbase3sql14ObExprOperator36aggregate_numeric_accuracy_for_mergeERNS0_13ObExprResTypeEPKS2_lb +_ZN9oceanbase3sql14ObExprOperator18aggregate_charsetsERNS_6common9ObObjMetaEPKNS0_13ObExprResTypeEljNS2_15ObCollationTypeE +_ZN9oceanbase3sql14ObExprOperator20aggregate_collationsERNS_6common9ObObjMetaEPKS3_ljNS2_15ObCollationTypeE +_ZN9oceanbase6common9ObCharset19aggregate_collationENS0_16ObCollationLevelENS0_15ObCollationTypeES2_S3_RS2_RS3_ +_ZN9oceanbase3sql14ObExprOperator38aggregate_max_length_for_string_resultERNS0_13ObExprResTypeEPKS2_lbsbbb +easy_connection_session_build +_ZN9oceanbase4easy13get_packet_idEP17easy_connection_tPv +_ZN9oceanbase3sql21ObRawExprResolverImpl13not_row_checkEPKNS0_9ObRawExprE +_ZN9oceanbase11transaction11ObGtsSource10query_gts_ERKNS_6common6ObAddrE +_ZN9oceanbase11transaction15ObGtsRequestRpc4postEmRKNS_6common6ObAddrERKNS0_12ObGtsRequestE +_ZN9oceanbase5obrpc10ObGtsRPCCBILNS0_15ObRpcPacketCodeE1808EE8process_ERKNS0_14ObGtsRpcResultERKNS_6common6ObAddrERNS0_15ObRpcResultCodeE +_ZN9oceanbase11transaction23ObTsResponseTaskFactory5allocEv +_ZN9oceanbase6common16ObClassAllocatorINS_11transaction16ObTsResponseTaskEE5allocEv +_ZN9oceanbase7storage8ObLSLock4lockEll +_ZN9oceanbase7storage15ObLobDataReader18read_lob_data_implERNS_12blocksstable14ObStorageDatumENS_6common15ObCollationTypeE +_ZN9oceanbase7storage12ObLobManager5queryERNS0_16ObLobAccessParamERNS_6common8ObStringE +_ZN9oceanbase6common11ObArrayImplINS0_14ObStringHolderENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_22NotImplementItemEncodeIS2_EEE9push_backERKS2_ +_ZN9oceanbase6common9ObScannerD1Ev +_ZN9oceanbase6common9ObScannerD2Ev +_ZN9oceanbase4palf14PalfHandleImpl23handle_election_messageERKNS0_8election25ElectionAcceptResponseMsgE +_ZNK9oceanbase10logservice12ObLogHandler13get_max_ts_nsERl +_ZN9oceanbase8memtable10ObMemtable4lockERNS_7storage10ObStoreCtxEmRKNS2_15ObTableReadInfoERKNS_6common8ObNewRowE +_ZN9oceanbase6common4hash11ObHashTableINS_12blocksstable12MacroBlockIdENS1_11HashMapPairIS4_NS1_11HashNullObjEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi89ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19ReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE32internal_get_with_timeout_unsafeERNS1_17ObHashTableBucketIS7_16pthread_rwlock_tNS1_5NCondEEERKS4_RPKS7_l +_ZN9oceanbase6common9ObScannerC1EPKcPNS0_12ObIAllocatorElmb +_ZN9oceanbase6common9ObScannerC2EPKcPNS0_12ObIAllocatorElmb +_ZN9oceanbase3sql15ObSessionValMapC1Ev +_ZN9oceanbase3sql15ObSessionValMapC2Ev +_ZN9oceanbase8observer19ObTenantMetaChecker14check_ls_tableEv +_ZN9oceanbase5share11ObLSReplicaD1Ev +_ZN9oceanbase5share11ObLSReplicaD2Ev +_ZN9oceanbase5share23ObLSReplicaFilterHolder19set_reserved_serverERKNS_6common6ObAddrE +_ZNK9oceanbase10rootserver19ObFreezeInfoManager32get_min_freeze_info_to_broadcastERNS_5share20ObSimpleFrozenStatusE +easy_connection_rearm_failure_detection_timer.8d7a091449e6908669a41293537a4cf4 +_ZNK9oceanbase10logservice11coordinator19ObLeaderCoordinator30get_ls_election_reference_infoERKNS_5share6ObLSIDERNS_6common7ObTupleIJllbNS8_IJbNS7_14ObStringHolderEEEEbbEEE +_ZN9oceanbase6common12ObBucketLock12try_lock_allEb +_ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImlEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS4_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14set_refactoredERKmRKS4_iii +_ZN9oceanbase6common13ObLinkHashMapINS_11transaction9tablelock8ObLockIDENS3_9ObOBJLockENS3_14ObOBJLockAllocENS0_9RefHandleELl8EE14insert_and_getERKS4_PS5_ +_ZN9oceanbase6common15ObLinearHashMapINS_5share6ObLSIDEPNS_10logservice13ObApplyStatusENS0_14ShareMemMgrTagEE11do_operate_INS4_17ObLogApplyService21GetApplyStatusFunctorEEEiRKS3_RT_ +_ZN9oceanbase6common15ObLinearHashMapINS_5share6ObLSIDEPNS_10logservice13ObApplyStatusENS0_14ShareMemMgrTagEE16load_access_bkt_ERKS3_RmRPNS8_6BucketE +_ZN9oceanbase6common13ObSEArrayImplINS_3sql13ObExprResTypeELl64ENS0_19ModulePageAllocatorELb1EE9push_backERKS3_ +_ZN9oceanbase6common13ObSEArrayImplISt4pairImlELl10ENS0_19ModulePageAllocatorELb0EE11deserializeEPKclRl +_ZN9oceanbase6common19ObTableAccessHelper12AccessHelperILi0ELi4EJlNS0_14ObStringHolderES3_S3_EE28get_values_to_tuple_from_rowEPNS0_9sqlclient13ObMySQLResultERA4_PKcRNS0_7ObTupleIJlS3_S3_S3_EEE +_ZN9oceanbase6common5occam17ObOccamThreadPool30keep_fetching_task_until_stop_Em +_ZN9oceanbase6common5occam17ObOccamThreadPool14InnerTaskQueue8pop_taskERNS0_10ObFunctionIFvvEEEl +_ZN9oceanbase10logservice11coordinator19ObLeaderCoordinator7refreshEv +_ZN9oceanbase10logservice11coordinator33AllLsElectionReferenceInfoFactory10create_newEv +_ZN9oceanbase10logservice11coordinator13TableAccessor34get_all_ls_election_reference_infoERNS_6common8ObIArrayINS3_7ObTupleIJllbNS5_IJbNS3_14ObStringHolderEEEEbbEEEEE +_ZN9oceanbase10logservice11coordinator13TableAccessor20get_zone_stop_statusERNS_6common14ObStringHolderERb +_ZN9oceanbase6common19ObTableAccessHelper15read_single_rowILi1EJlEEEimRAT__PKcRKNS0_8ObStringES9_DpRT0_ +_ZN9oceanbase6common19ObTableAccessHelper18get_my_sql_result_ILi1EEEPNS0_9sqlclient13ObMySQLResultERAT__PKcRKNS0_8ObStringESC_RNS0_12ObISQLClientEmRNSD_10ReadResultE +_ZN9oceanbase6common19ObTableAccessHelper14read_multi_rowILi4EJlNS0_14ObStringHolderES3_S3_EEEimRAT__PKcRKNS0_8ObStringESA_RNS0_8ObIArrayINS0_7ObTupleIJDpT0_EEEEE +_ZN9oceanbase6common19ObTableAccessHelper12AccessHelperILi3ELi4EJlNS0_14ObStringHolderES3_S3_EE28get_values_to_tuple_from_rowEPNS0_9sqlclient13ObMySQLResultERA4_PKcRNS0_7ObTupleIJlS3_S3_S3_EEE +_ZN9oceanbase6common19ObTableAccessHelper34get_signle_column_from_signle_row_EPNS0_9sqlclient13ObMySQLResultEPKcRNS0_14ObStringHolderE +_ZN9oceanbase6common14ObKVCacheStore13refresh_scoreEv +_ZN9oceanbase6common16ObKVCacheInstMap13refresh_scoreEv +_ZN9oceanbase12blocksstable14ObBlockManager18mark_tablet_blocksERNS_6common15ObLinearHashMapINS0_12MacroBlockIdEbNS2_14ShareMemMgrTagEEERNS_7storage14ObTabletHandleERNS2_4hash9ObHashSetIS4_NSB_19ReadWriteDefendModeENSB_9hash_funcIS4_EENSB_8equal_toIS4_EENSB_13SimpleAllocerINSB_15ObHashTableNodeINSB_11HashMapPairIS4_NSB_11HashNullObjEEEEELi89ENSB_19SpinMutexDefendModeENSB_29DefaultSimpleAllocerAllocatorEEENSB_13NormalPointerENS2_8ObMallocELl1EEE +_ZN9oceanbase6common4hash11ObHashTableINS_12blocksstable12MacroBlockIdENS1_11HashMapPairIS4_NS1_11HashNullObjEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi89ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19ReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14set_refactoredERKS4_RKS7_iii +_ZN9oceanbase7storage16ObMetaPointerMapINS0_14ObTabletMapKeyENS0_8ObTabletEE26try_get_in_memory_meta_objERKS2_RbRNS0_14ObMetaObjGuardIS3_EE +_ZN9oceanbase7storage13ObResourceMapINS0_14ObTabletMapKeyENS0_13ObMetaPointerINS0_8ObTabletEEEE16get_without_lockINS0_25ObResourceDefaultCallbackIS2_S5_EEEEiRKS2_RNS0_16ObResourceHandleIS5_EET_ +obsql_oracle_utf8_yyparse +setup_token_pos_info_and_dup_string +str_toupper +nodename_equal +obsql_oracle_utf8_yylex +ob_strntoll +parse_strdup +window_function_name_compare +_ZN9oceanbase6common15ObLinearHashMapINS_5share6ObLSIDEPNS_10logservice14ObReplayStatusENS0_14ShareMemMgrTagEE7shrink_Ev +_ZN9oceanbase3sql11ObDASLockOp7open_opEv +_ZNK9oceanbase3sql20ObVectorExprOperator17calc_result_typeNERNS0_13ObExprResTypeEPS2_lRNS_6common13ObExprTypeCtxE +_ZNK9oceanbase3sql20ObVectorExprOperator18calc_result_type2_ERNS0_13ObExprResTypeES3_S3_RNS_6common13ObExprTypeCtxE +_ZN9oceanbase3sql24ObTenantSqlMemoryManager38count_profile_into_work_area_intervalsEPNS0_21ObSqlWorkAreaIntervalERlS4_ +_ZN9oceanbase3sql16ObStaticEngineCG22check_expr_columnlizedEPKNS0_9ObRawExprE +_ZN9oceanbase3sql13ObDMLResolver34resolve_table_relation_recursivelyEmRmRNS_6common8ObStringES5_RNS0_16ObSynonymCheckerEb +_ZNK9oceanbase3sql18ObBasicSessionInfo23is_select_index_enabledERb +_ZN9oceanbase3sql13ObDMLResolver24check_table_exist_or_notEmRmRNS_6common8ObStringES5_ +_ZN9oceanbase7storage14ObLSWRSHandler38generate_ls_weak_read_snapshot_versionERNS0_4ObLSERbS4_Rll +_ZN9oceanbase3sql10ObEqualSetIPKNS0_9ObRawExprES4_EC2Ev +_ZNK9oceanbase10rootserver20ObRsMasterKeyManager25get_all_tenant_master_keyERKNS_6common19ObFixedLengthStringILl128EEERNS2_8ObIArrayISt4pairImNS_5share15ObLeaseResponse14TLRpKeyVersionEEEE +_ZN9oceanbase5obrpc18ObRpcProcessorBase3runEv +_ZN9oceanbase4palf25ElectionAcceptRequestMsgP7processEv +_ZN9oceanbase5obrpc18ObRpcProcessorBase13after_processEi +_ZN9oceanbase3sql16ObTransformUtils22is_null_propagate_exprEPKNS0_9ObRawExprERKNS_6common8ObIArrayIS4_EERb +_ZN9oceanbase3sql24ObAggrExprPushUpAnalyzer23analyze_aggr_param_exprERPNS0_9ObRawExprE +_ZN9oceanbase11transaction30ObTenantWeakReadClusterService24persist_version_if_need_EllllbRl +_ZN9oceanbase3sql13ObDMLResolver26resolve_and_split_sql_exprERK10_ParseNodeRNS_6common8ObIArrayIPNS0_9ObRawExprEEE +_ZN9oceanbase3sql16ObSelectResolver19resolve_basic_tableERK10_ParseNodeRPNS0_9TableItemE +_ZN9oceanbase3sql13ObDMLResolver37resolve_table_relation_factor_wrapperEPK10_ParseNodeRmS5_RNS_6common8ObStringES8_S8_S8_S8_RbS9_ +_ZN9oceanbase3sql13ObDMLResolver29resolve_table_relation_factorEPK10_ParseNodemRmS5_RNS_6common8ObStringES8_S8_S8_S8_Rb +_ZN9oceanbase3sql13ObDMLResolver19resolve_basic_tableERK10_ParseNodeRPNS0_9TableItemE +_ZN9oceanbase3sql13ObDMLResolver34resolve_generated_column_expr_tempEPNS0_9TableItemERKNS_5share6schema13ObTableSchemaE +_ZN9oceanbase3sql13ObDMLResolver39resolve_base_or_alias_table_item_normalEmRKNS_6common8ObStringERKbS5_S5_S5_S5_RPNS0_9TableItemEb +_ZN9oceanbase3sql6ObStmt27add_global_dependency_tableERKNS_5share6schema18ObSchemaObjVersionE +_ZN9oceanbase5share6schema19ObSchemaGetterGuard16get_table_schemaEmmRKNS_6common8ObStringEbRPKNS1_13ObTableSchemaEb +_ZN9oceanbase3sql13ObDMLResolver11expand_viewERNS0_9TableItemE +_ZN9oceanbase6common11ObArrayImplINS_3sql22ObStandardGroupChecker19ObUnsettledExprItemENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEED2Ev +_ZN9oceanbase3sql15ObSchemaChecker16get_table_schemaEmmRKNS_6common8ObStringEbbbRPKNS_5share6schema13ObTableSchemaE +_ZN9oceanbase3sql13ObDMLResolver36resolve_table_check_constraint_itemsEPKNS0_9TableItemEPKNS_5share6schema13ObTableSchemaE +_ZN9oceanbase3sql13ObDMLResolver28resolve_table_partition_exprERKNS0_9TableItemERKNS_5share6schema13ObTableSchemaE +_ZN9oceanbase3sql13ObDMLResolver31generate_check_constraint_exprsEPKNS0_9TableItemEPKNS_5share6schema13ObTableSchemaERNS_6common8ObIArrayIPNS0_9ObRawExprEEEPNSB_IlEE +_ZN9oceanbase3sql12ObSelectStmtD1Ev +_ZN9oceanbase3sql12ObSelectStmtD2Ev +_ZN9oceanbase6common6ObAddr11deserializeEPKclRl +_ZN9oceanbase6common6ObAddr21deserialize_dispatch_EPKclRlSt17integral_constantIbLb0EE +_ZN9oceanbase6common6ObAddr12deserialize_EPKclRl +_ZN9oceanbase3sql13ObPxTargetMgr4run1Ev +_ZNK9oceanbase6common8ObMember9serializeEPclRl +_ZN9oceanbase3sql9ObDMLStmt27set_sharable_expr_referenceERNS0_9ObRawExprE +_ZN9oceanbase3sql17ObFastParserMysql31process_identifier_begin_with_nEv +_ZN9oceanbase7storage15ObTableReadInfo4initERNS_6common12ObIAllocatorEllbRKNS2_8ObIArrayINS_5share6schema9ObColDescEEEbPKNS5_IiEEPKNS5_IPNS7_13ObColumnParamEEEb +_ZN9oceanbase8memtable22ObMemtableRowCompactor23construct_compact_node_ElPNS0_15ObMvccTransNodeE +_ZN9oceanbase5share6schema22ObSchemaServiceSQLImpl17fetch_column_infoERKNS1_21ObRefreshSchemaStatusEmmlRNS_6common12ObISQLClientERPNS1_13ObTableSchemaE +_ZN9oceanbase5obrpc10ObRpcProxy8rpc_postINS0_13LogRpcProxyV25ObRpcILNS0_15ObRpcPacketCodeE5386EvEEEEiRKNT_7RequestEPNS1_7AsyncCBIS7_EERKNS0_9ObRpcOptsE +_ZNK9oceanbase3lib16ObRuntimeContext18get_serialize_sizeEv +_ZNK9oceanbase3rpc5frame14ObReqTransport12post_sessionEP14easy_session_t +_ZN9oceanbase3sql9ObDMLStmt26do_remove_const_exec_paramERPNS0_9ObRawExprERb +_ZN9oceanbase6common15ObLinearHashMapINS_12blocksstable12MacroBlockIdEbNS0_14ShareMemMgrTagEE16load_access_bkt_EmRPNS5_6BucketE +_ZN9oceanbase3sql12ObSqlPlanSet8add_planERNS0_14ObPhysicalPlanERNS0_14ObPlanCacheCtxEl +_ZN9oceanbase6common19ObTableAccessHelper20split_string_by_charERKNS0_14ObStringHolderEcRNS0_8ObIArrayIS2_EE +_ZN9oceanbase3sql15ObEqualAnalysis19get_or_add_expr_idxEPKNS0_9ObRawExprE +_ZNK9oceanbase11transaction7ObTxMsg19get_serialize_size_Ev +_ZN9oceanbase11transaction10ObTransRpc5post_ERKNS_6common6ObAddrERNS0_7ObTxMsgE +_ZN9oceanbase5obrpc15ObTransRpcProxy19post_keep_alive_msgERKNS_11transaction16ObTxKeepaliveMsgEPNS0_10ObRpcProxy7AsyncCBINS1_5ObRpcILNS0_15ObRpcPacketCodeE1626EvEEEERKNS0_9ObRpcOptsE +_ZN9oceanbase5obrpc9ObTxRPCCBILNS0_15ObRpcPacketCodeE1626EE8set_argsERKNS_11transaction16ObTxKeepaliveMsgE +_ZN9oceanbase5obrpc10ObRpcProxy14create_requestENS0_15ObRpcPacketCodeERKNS_3rpc5frame14ObReqTransportERNS5_7RequestERKNS_6common6ObAddrEllSD_bjRKNSA_8ObStringEPKNS5_7AsyncCBE +_ZNK9oceanbase11transaction16ObTxKeepaliveMsg9serializeEPclRl +_ZNK9oceanbase11transaction7ObTxMsg9serializeEPclRl +_ZN9oceanbase5obrpc10ObRpcProxy8rpc_postINS0_15ObTransRpcProxy5ObRpcILNS0_15ObRpcPacketCodeE1626EvEEEEiRKNT_7RequestEPNS1_7AsyncCBIS7_EERKNS0_9ObRpcOptsE +_ZNK9oceanbase3rpc5frame14ObReqTransport4postERKNS2_7RequestE +_ZN9oceanbase3sql27ObTransformSimplifySubquery35recursive_add_limit_for_exists_exprEPNS0_9ObRawExprERb +_ZN9oceanbase6common16ObFixedArrayImplImNS0_12ObIAllocatorEE9push_backERKm +_ZN9oceanbase3sql21ObRawExprResolverImpl22process_sort_list_nodeEPK10_ParseNodeRNS_6common8ObIArrayINS0_9OrderItemEEE +_ZN9oceanbase6common11ObArrayImplINS_3sql16ObRawExprPointerENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE9push_backERKS3_ +_ZN9oceanbase11transaction14ObTransService9commit_txERNS0_8ObTxDescElPKNS_6common8ObStringE +easy_connection_do_response.8d7a091449e6908669a41293537a4cf4 +_ZN9oceanbase6common22ObVirtualTableIterator16init_convert_ctxEv +_ZN9oceanbase6common16ObTenantIOConfig21parse_category_configEPKc +_ZN9oceanbase6common13ObSEArrayImplINS_5share19ObLSReplicaLocationELl3ENS0_19ModulePageAllocatorELb0EE6assignERKNS0_8ObIArrayIS3_EE +_ZN9oceanbase10rootserver19ObTableGroupChecker8inspect_EmRb +_ZN9oceanbase4palf8election20MemberListWithStates16record_accept_okERKNS1_25ElectionAcceptResponseMsgE +_ZN9oceanbase5share6schema22ObSchemaServiceSQLImpl21fetch_constraint_infoERKNS1_21ObRefreshSchemaStatusEmmlRNS_6common12ObISQLClientERPNS1_13ObTableSchemaE +_ZN9oceanbase3sql12ObQueryRange23definite_in_range_graphERNS0_13ObExecContextERPNS0_9ObKeyPartERbRKNS_6common20ObDataTypeCastParamsE +_ZN9oceanbase3sql26ObRawExprCanonicalizerImpl14cluster_and_orERPNS0_9ObRawExprE +_ZN9oceanbase6common16ObLatchWaitQueue4waitINS0_7ObLatch12LowTryRDLockEEEiRNS0_10ObWaitProcEjjRT_S8_l +_ZN9oceanbase3sql9ObDMLStmtD1Ev +_ZN9oceanbase3sql9ObDMLStmtD2Ev +_ZN9oceanbase3sql14ObPhysicalPlan20init_params_info_strEv +_ZN9oceanbase3sql16ObSQLSessionInfo16drop_temp_tablesEbb +_ZN9oceanbase10rootserver20ObRsMasterKeyManager19update_response_mapERKNS_6common8ObIArrayImEERNS2_4hash9ObHashMapImNS1_14VersionCounterENS7_24LatchReadWriteDefendModeENS7_9hash_funcImEENS7_8equal_toImEENS7_13SimpleAllocerINS7_15ObHashTableNodeINS7_11HashMapPairImS9_EEEELi98ENS7_19SpinMutexDefendModeENS7_29DefaultSimpleAllocerAllocatorEEENS7_13NormalPointerENS2_8ObMallocELl1EEE +_ZN9oceanbase3sql13ObDMLResolver25resolve_joined_table_itemERK10_ParseNodeRPNS0_11JoinedTableE +_ZN9oceanbase6common13ObSEArrayImplINS_3sql13ObExprResTypeELl2ENS0_19ModulePageAllocatorELb0EE7reserveEl +_ZN9oceanbase5share23ObVTableLocationService10vtable_getEmmlRbRNS_6common8ObIArrayINS3_6ObAddrEEE +_ZN9oceanbase3sql14ObExprOperator41deduce_string_param_calc_type_and_charsetERKNS0_18ObBasicSessionInfoERKNS0_13ObExprResTypeERNS_6common8ObIArrayIPS5_EEs +_ZN9oceanbase3sql20ObExprResultTypeUtil31deduce_max_string_length_oracleERKNS_6common20ObDataTypeCastParamsERKNS0_13ObExprResTypeES8_Ris +_ZN9oceanbase10rootserver10ObDRWorker17LocalityAlignment51try_get_readonly_all_server_locality_alignment_taskERNS1_12UnitProviderERPKNS1_6LATaskE +_ZN9oceanbase5obrpc13LogRpcProxyV211post_packetERKNS_6common6ObAddrERKNS_4palf16LogRpcPacketImplINS6_8election25ElectionAcceptResponseMsgEEEl +_ZN9oceanbase5obrpc13LogRpcProxyV211post_packetERKNS_6common6ObAddrERKNS_4palf16LogRpcPacketImplINS6_8election24ElectionAcceptRequestMsgEEEl +_ZNK9oceanbase5share15ObLSLocationMap3getERKNS0_20ObLSLocationCacheKeyERNS0_12ObLSLocationE +_ZN9oceanbase5share6schema13ObTableSchema6assignERKS2_ +_ZN9oceanbase3sql21ObTransformExprPullup18transform_one_stmtERNS_6common8ObIArrayINS0_15ObParentDMLStmtEEERPNS0_9ObDMLStmtERb +_ZN9oceanbase3sql17ObPredicateDeduce18choose_input_predsERNS_6common8ObIArrayIhEERNS3_IPNS0_9ObRawExprEEE +_ZN9oceanbase5share24ObZoneMergeTableOperator26construct_zone_merge_info_ERNS_6common9sqlclient13ObMySQLResultEbRNS2_8ObIArrayINS0_15ObZoneMergeInfoEEE +_ZN9oceanbase5obrpc10ObRpcProxy8rpc_postINS0_13LogRpcProxyV25ObRpcILNS0_15ObRpcPacketCodeE5387EvEEEEiRKNT_7RequestEPNS1_7AsyncCBIS7_EERKNS0_9ObRpcOptsE +_ZNK9oceanbase5obrpc10ObRpcProxy8init_pktEPNS0_11ObRpcPacketENS0_15ObRpcPacketCodeERKNS0_9ObRpcOptsEb +easy_client_dispatch +_ZN9oceanbase6common22ObVirtualTableIterator11convert_keyERKNS0_8ObRowkeyERS2_RNS0_8ObIArrayIPKNS_5share6schema16ObColumnSchemaV2EEE +_ZN9oceanbase3sql24ObTenantSqlMemoryManager22get_max_work_area_sizeERlb +_ZNK9oceanbase4palf8election24ElectionAcceptRequestMsg10serialize_EPclRl +_ZNK9oceanbase10logservice11coordinator10PriorityV110serialize_EPclRl +_ZNK9oceanbase6common11ObArrayImplINS_10logservice11coordinator12FailureEventENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_17DefaultItemEncodeIS4_EEE9serializeEPclRl +_ZN9oceanbase11transaction7ObTxMsg11deserializeEPKclRl +_ZN9oceanbase3lib16ObRuntimeContext11deserializeEPKclRl +_ZN9oceanbase5obrpc16ObTransRpcResult11deserializeEPKclRl +_ZN9oceanbase5share19ObPartitionLocation11deserializeEPKclRl +_ZN9oceanbase6common17ObReplicaProperty11deserializeEPKclRl +_ZN9oceanbase5share6schema19ObSchemaGetterGuard10get_schemaINS1_16ObDatabaseSchemaEEEiNS1_12ObSchemaTypeEmmRPKT_l +_ZN9oceanbase11transaction7ObTxMsg12deserialize_EPKclRl +_ZNK9oceanbase4palf8election15ElectionMsgBase10serialize_EPclRl +_ZN9oceanbase8memtable10ObMemtable3setERNS_7storage10ObStoreCtxEmRKNS2_15ObTableReadInfoERKNS_6common8ObIArrayINS_5share6schema9ObColDescEEERKNS9_IlEERKNS2_10ObStoreRowESL_ +_ZN9oceanbase3sql14ObTscCgService18generate_tsc_ctdefERNS0_14ObLogTableScanERNS0_16ObTableScanCtDefE +_ZNK9oceanbase11transaction7ObTxMsg10serialize_EPclRl +_ZN9oceanbase6common19ObOptStatSqlService32generate_specified_keys_list_strEmRNS0_8ObIArrayINS0_18ObOptKeyColumnStatEEERNS0_11ObSqlStringE +_ZN9oceanbase3sql21ObTransformPreProcess20add_rowid_constraintERNS0_9ObDMLStmtE +_ZN9oceanbase6common19ObTableAccessHelper15read_single_rowILi1EJNS0_14ObStringHolderEEEEimRAT__PKcRKNS0_8ObStringESA_DpRT0_ +_ZN9oceanbase3sql21ObWhereSubQueryPullup26transform_single_set_queryEPNS0_9ObDMLStmtERNS_6common8ObIArrayIPNS0_12ObSelectStmtEEERb +_ZN9oceanbase3sql21ObSqlParameterization14transform_treeERNS0_16TransformTreeCtxERKNS0_16ObSQLSessionInfoE +easy_connection_on_timeout_conn.8d7a091449e6908669a41293537a4cf4 +_ZN9oceanbase8observer20ObInnerSQLConnection23start_transaction_innerERKmb +_ZN9oceanbase3sql27ObTransformSubqueryCoalesce27coalesce_same_any_all_exprsEPNS0_9ObDMLStmtE10ObItemTypeRNS_6common8ObIArrayIPNS0_9ObRawExprEEERb +_ZN9oceanbase8observer20ObInnerSQLConnection19execute_write_innerEmPKcRlb +_ZN9oceanbase3sql11ObJoinOrder12fill_filtersERKNS_6common8ObIArrayIPNS0_9ObRawExprEEEPKNS0_12ObQueryRangeERNS0_19ObCostTableScanInfoERbb +_ZN9oceanbase8observer9ObMPQuery24process_with_tmp_contextERNS_3sql16ObSQLSessionInfoEbbRbS5_ +_ZN9oceanbase3sql14ObRawExprUtils29resolve_op_expr_implicit_castERNS0_16ObRawExprFactoryEPKNS0_16ObSQLSessionInfoE10ObItemTypeRPNS0_9ObRawExprESA_ +_ZN9oceanbase8observer15ObVTIterCreator14create_vt_iterERNS_6common17ObVTableScanParamERPNS2_22ObVirtualTableIteratorE diff --git a/observer.prof b/observer.prof new file mode 100644 index 0000000000000000000000000000000000000000..f7e0f6e7d801b1e86d79a0c9f5748be6df5a5121 --- /dev/null +++ b/observer.prof @@ -0,0 +1,209731 @@ +_ZL20ob_hash_sort_utf8mb4PK13ObCharsetInfoPKhmPmS4_bPFmPKvmmE.5aa8bf9a2f1d92c2672c2bb9fbfc2e97:403170803:25361 + 2: 24551 + 5: 24551 + 6: 24551 + 13: 24551 + 14: 24543 + 14.1: 24543 + 14.2: 24543 + 14.3: 24543 + 18: 24933 + 19.1: 8377 _ZL16ob_mb_wc_utf8mb4PK13ObCharsetInfoPmPKhS4_.5aa8bf9a2f1d92c2672c2bb9fbfc2e97:98 + 22: 8371 + 23: 8371 + 24: 8371 + 33: 8281 + 35: 8375 + 38.1: 3303416 _ZL16ob_mb_wc_utf8mb4PK13ObCharsetInfoPmPKhS4_.5aa8bf9a2f1d92c2672c2bb9fbfc2e97:2996961 + 42: 2971201 + 42.1: 2949070 + 44: 50793 _ZN9oceanbase6common12ObMurmurHash4hashEPKvmm:25387 + 48: 2978979 + 49: 2978979 + 51: 8270 + 53: 2990682 + 55: 30634 + 56: 33783 _ZN9oceanbase6common12ObMurmurHash4hashEPKvmm:22398 + 59: 34025 + 21: _ZL17ob_tosort_unicodeP13ObUnicaseInfoPmj:717866 + 2: 8381 + 5: 8371 + 6: 8371 + 6.3: 8371 + 12: 8281 + 22: _ZL11ob_hash_addPmS_j:343211 + 2: 8371 + 3: 8371 + 23: _ZL11ob_hash_addPmS_j:376695 + 2: 8371 + 3: 8371 + 33: _ZL11ob_hash_addPmS_j:331240 + 2: 8281 + 3: 8281 + 40: _ZL17ob_tosort_unicodeP13ObUnicaseInfoPmj:181649162 + 2: 3307958 + 5: 2971201 + 6: 2971201 + 6.3: 2971201 + 12: 25298 +_ZN9oceanbase12blocksstable11ObRowReader8read_rowEPKclPKNS_7storage15ObTableReadInfoERNS0_10ObDatumRowE:187461186:100736 + 5: 99591 + 6: 99591 + 8: 104719 + 8.1: 103205 _ZNK9oceanbase7storage15ObTableReadInfo8is_validEv:113224 + 8.2: 112273 + 9: 0 + 10.1: 0 + 11.1: 112061 _ZN9oceanbase12blocksstable11ObRowReader9setup_rowEPKcl:117293 + 12.1: 0 + 15: 104719 + 16: 104719 + 17: 544 + 22: 110756 + 23: 110756 _ZN9oceanbase12blocksstable10ObDatumRow7reserveElb:113663 + 24.1: 0 + 26.1: 705 + 27.1: 648 + 29: 0 + 30: 101460 + 30.1: 101460 + 31: 101460 + 33: 101460 + 34: 101460 + 36.1: 106898 + 36.2: 207364 + 36.6: 106898 + 37: 97895 + 38.1: 1451 + 41.1: 97895 + 41.6: 97515 + 42: 98587 + 44.1: 97515 + 45.1: 1153 + 55: 108176 + 56: 101940 + 58.1: 101940 + 58.2: 106398 + 58.3: 106398 + 58.4: 106398 + 59: 101905 + 60: 101905 + 60.1: 101905 + 61: 2111 + 62.1: 106398 + 63.1: 1451 + 70: 105005 + 17: _ZNK9oceanbase12blocksstable11ObRowHeader16get_column_countEv:5984 + 0: 544 + 19: _ZNK9oceanbase7storage15ObTableReadInfo25get_seq_read_column_countEv:1197999 + 1: 108909 + 20: _ZNK9oceanbase7storage15ObTableReadInfo17get_request_countEv:1635467 + 1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:1635467 + 0: 108909 + 22: _ZNK9oceanbase12blocksstable10ObDatumRow8is_validEv:2437127 + 0: 110811 + 0.1: 110756 + 26.1: _ZN9oceanbase12blocksstable10ObDatumRow4initEl:23688 + 2: 703 + 7.1: 703 + 7.3: 703 + 8: 0 + 9.1: 0 + 11: 705 _ZN9oceanbase12blocksstable10ObDatumRow4initERNS_6common12ObIAllocatorEl:58 + 14: 0 + 30: _ZNK9oceanbase12blocksstable11ObRowHeader12get_row_flagEv:304380 + 2: 101460 + 30.3: _ZN9oceanbase12blocksstable12ObDmlRowFlagaSERKS1_:3246720 + 3: 101460 + 2: _ZNK9oceanbase12blocksstable12ObDmlRowFlag8is_validEv:2536500 + 2: 101460 + 30.4: _ZNK9oceanbase12blocksstable11ObRowHeader17get_mvcc_row_flagEv:304380 + 0: 101460 + 30.5: _ZNK9oceanbase12blocksstable11ObRowHeader12get_trans_idEv:405840 + 0: 101460 + 30.6: _ZN9oceanbase11transaction9ObTransIDaSERKl:710220 + 1: 101460 + 36.2: _ZNK9oceanbase12blocksstable11ObRowHeader15get_cluster_cntEv:2175210 + 3: 207364 + 6: 1451 + 6: _ZN9oceanbase12blocksstable11ObRowHeader16calc_cluster_cntEll:89962 + 2: 1451 + 3: 1451 + 2: _ZN9oceanbase12blocksstable11ObRowHeader31need_rowkey_independent_clusterEl:11608 + 2: 1451 + 3: _ZN9oceanbase12blocksstable11ObRowHeader33calc_cluster_cnt_by_row_col_countEl:26118 + 2: 1451 + 4: _ZN9oceanbase12blocksstable11ObRowHeader33calc_cluster_cnt_by_row_col_countEl:33373 + 2: 1451 + 37: _ZN9oceanbase12blocksstable11ObRowReader28analyze_info_and_init_readerEl:29184770 + 2: 100601 + 3: 100601 + 3.1: 100601 + 3.2: 100601 + 4: 1451 + 5.1: 1451 + 6.1: 100601 + 9: 102997 + 10: 104660 + 10.3: 104660 _ZN9oceanbase12blocksstable21ObClusterColumnReader4initEPKcmmRKNS0_20ObColClusterInfoMaskE:106757 + 15.1: 1451 + 18: 97895 + 23: 97895 + 7: _ZN9oceanbase12blocksstable21ObClusterColumnReader5resetEv:6861499 + 2: 100601 + 3: 100601 + 4: 100601 + 7: 100601 + 8: _ZNK9oceanbase12blocksstable11ObRowReader18get_cluster_offsetEl:2532202 + 2: 100601 + 2.1: 102997 _ZN9oceanbase12blocksstableL12get_offset_8EPKvl.8f1e732d6655d093e942b32e16c602d8:105102 + 2: _ZNK9oceanbase12blocksstable11ObRowHeader15get_offset_typeEv:301803 + 0: 100601 + 10: _ZNK9oceanbase12blocksstable11ObRowReader19get_cluster_end_posEl:5361658 + 2: 102997 + 2.1: 102997 + 3: 102997 + 3.1: 306 + 2.1: _ZNK9oceanbase12blocksstable11ObRowHeader19get_offset_type_lenEv:1544955 + 0.1: _ZN9oceanbase12blocksstable20ObColClusterInfoMask18get_bytes_type_lenENS1_9BYTES_LENE:1544955 + 5: 102997 + 3: _ZNK9oceanbase12blocksstable11ObRowHeader15get_offset_typeEv:514985 + 0: 102997 + 10.1: _ZNK9oceanbase12blocksstable11ObRowHeader16get_column_countEv:418640 + 0: 104660 + 10.2: _ZNK9oceanbase12blocksstable20ObColClusterInfoMask16get_column_countEv:14510 + 0: 1451 + 10.4: _ZNK9oceanbase12blocksstable11ObRowHeader17is_single_clusterEv:314898 + 0: 104660 + 40: _ZNK9oceanbase12blocksstable21ObClusterColumnReader16get_column_countEv:1566320 + 0: 97895 + 42: _ZNK9oceanbase12blocksstable11ObRowHeader16get_column_countEv:394348 + 0: 98587 + 43: _ZN9oceanbase12blocksstable14ObStorageDatum7set_nopEv:46120 + 0: _ZN9oceanbase12blocksstable14ObStorageDatum13set_ext_valueEl:46120 + 1: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:10377 + 0: 1153 + 1.1: _ZN9oceanbase6common11ObDatumDesc7set_extEv:10377 + 0: 1153 + 1.3: _ZN9oceanbase6common5ObObj7set_extEl:25366 + 4: 1153 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:9224 + 0: 1153 + 44.1: _ZN9oceanbase12blocksstable21ObClusterColumnReader19sequence_read_datumElRNS0_14ObStorageDatumE:48806778 + 2: 98587 + 3: 98587 + 4: 1153 + 5.1: 1153 + 6.2: 98587 + 6.3: 98587 + 7: 1153 + 8.1: 1153 + 10: 98587 + 11: 98587 + 12: 1153 + 13: 1504 + 14: 1504 + 18: 98587 + 20: 1504 + 22.1: 1504 + 23: 97515 + 24.1: 1153 + 27.1: 1504 + 30: 97515 + 21: _ZN9oceanbase12blocksstable14ObStorageDatum7set_nopEv:43814 + 0: _ZN9oceanbase12blocksstable14ObStorageDatum13set_ext_valueEl:43814 + 1: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:11530 + 0: 1153 + 1.1: _ZN9oceanbase6common11ObDatumDesc7set_extEv:9224 + 0: 1153 + 1.3: _ZN9oceanbase6common5ObObj7set_extEl:23060 + 4: 1153 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:8071 + 0: 1153 + 23: _ZN9oceanbase12blocksstable21ObClusterColumnReader10read_datumElRNS0_14ObStorageDatumE:40068287 + 2: 98587 + 3: 98587 + 4: 98587 + 8.1: 98506 + 8.3: 98506 + 10: 1153 + 11.1: 1153 + 13: 98506 + 14: 102474 _ZN9oceanbase12blocksstableL12get_offset_8EPKvl.8f1e732d6655d093e942b32e16c602d8:99965 _ZN9oceanbase12blocksstableL13get_offset_16EPKvl.8f1e732d6655d093e942b32e16c602d8:12 + 15: 102474 + 15.3: 102474 + 16: 102313 _ZN9oceanbase12blocksstableL12get_offset_8EPKvl.8f1e732d6655d093e942b32e16c602d8:102175 _ZN9oceanbase12blocksstableL13get_offset_16EPKvl.8f1e732d6655d093e942b32e16c602d8:11 + 18: 1307 + 20: 97443 + 21.1: 1153 + 24: 97515 + 3: _ZN9oceanbase12blocksstable21ObClusterColumnReader18read_special_valueEl:3351958 + 2: 98587 + 4: 98587 + 5: _ZN9oceanbase12blocksstable14ObStorageDatum7set_nopEv:54523 + 0: _ZN9oceanbase12blocksstable14ObStorageDatum13set_ext_valueEl:54523 + 1: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:15015 + 0: 1365 + 1.1: _ZN9oceanbase6common11ObDatumDesc7set_extEv:12285 + 0: 1365 + 1.3: _ZN9oceanbase6common5ObObj7set_extEl:27223 + 4: 1365 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:12285 + 0: 1365 + 7: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:18863 + 0: 1451 + 20: _ZN9oceanbase12blocksstable21ObClusterColumnReader20read_column_from_bufEllNS0_11ObRowHeader11SPECIAL_VALERNS0_14ObStorageDatumE:17494228 + 6: 95443 + 7: 95443 + 8: 95443 + 9: 95443 + 10: 97052 + 11.1: 1504 + 13.1: 1684 + 14.1: 1504 + 16: 1153 + 10: _ZN9oceanbase12blocksstable21ObClusterColumnReader19read_8_bytes_columnEPKclRNS0_14ObStorageDatumE:10828574 + 5: 95045 + 7: 95045 + 7.2: 95045 + 8: 1504 + 9.1: 1504 + 11: 95045 + 13: 1385 + 16: 7567 + 19: 91596 + 22: 1153 + 23.1: 1153 + 26: 97052 + 27: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:1067572 + 0: 97052 + 28: _ZN9oceanbase6common7ObDatum8set_uintEm:1358728 + 0: 97052 + 13.1: _ZN9oceanbase12blocksstable14ObStorageDatum16from_buf_enhanceEPKcl:252804 + 2: 1684 + 4: 1684 + 4.2: 1684 + 5: 1504 + 6.1: 1504 + 9: 1684 + 10: 1684 + 11: 1684 + 16: 1504 + 8: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:31996 + 0: 1684 + 59: _ZNK9oceanbase6common12ObIArrayWrapIiE2atEl:713335 + 6: 101905 + 60.1: _ZNK9oceanbase12blocksstable11ObRowHeader16get_column_countEv:407620 + 0: 101905 + 61: _ZN9oceanbase12blocksstable14ObStorageDatum7set_nopEv:80218 + 0: _ZN9oceanbase12blocksstable14ObStorageDatum13set_ext_valueEl:80218 + 1: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:31665 + 0: 2111 + 1.1: _ZN9oceanbase6common11ObDatumDesc7set_extEv:16888 + 0: 2111 + 1.3: _ZN9oceanbase6common5ObObj7set_extEl:31665 + 4: 2111 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:14777 + 0: 2111 + 62.1: _ZN9oceanbase12blocksstable11ObRowReader31read_specific_column_in_clusterElRNS0_14ObStorageDatumE:16063372 + 4: 101905 + 5: 101905 + 6: 101905 + 7: 101905 + 10.1: 1504 + 11: 1504 + 12: 1504 + 13.1: 2164 + 18: 2164 + 19: 2164 + 22: 102793 + 23.1: 1451 + 25.1: 106398 _ZN9oceanbase12blocksstable21ObClusterColumnReader18read_storage_datumElRNS0_14ObStorageDatumE:108182 + 26.1: 1451 + 29: 1451 + 7: _ZNK9oceanbase12blocksstable11ObRowHeader17is_single_clusterEv:407620 + 0: 101905 + 11: _ZN9oceanbase12blocksstable11ObRowHeader16calc_cluster_idxEl:10528 + 2: 1504 + 12: _ZN9oceanbase12blocksstable11ObRowHeader26calc_column_idx_in_clusterEl:4512 + 2: 1504 + 13.1: _ZNK9oceanbase12blocksstable11ObRowHeader16get_rowkey_countEv:8656 + 0: 2164 + 18: _ZN9oceanbase12blocksstable11ObRowHeader16calc_cluster_idxEl:15148 + 2: 2164 + 19: _ZN9oceanbase12blocksstable11ObRowHeader26calc_column_idx_in_clusterEl:6492 + 2: 2164 + 22: _ZN9oceanbase12blocksstable11ObRowReader28analyze_info_and_init_readerEl:6061863 + 2: 102634 + 3: 102634 + 3.1: 102634 + 3.2: 102634 + 4: 1451 + 5.1: 1451 + 6.1: 102634 + 9: 2164 + 10: 2164 + 10.3: 2164 + 15.1: 1451 + 18: 2164 + 23: 101751 + 7: _ZN9oceanbase12blocksstable21ObClusterColumnReader5resetEv:101708 + 2: 2164 + 3: 2164 + 4: 2164 + 7: 2164 + 8: _ZNK9oceanbase12blocksstable11ObRowReader18get_cluster_offsetEl:60592 + 2: 2164 + 2.1: 2164 + 2: _ZNK9oceanbase12blocksstable11ObRowHeader15get_offset_typeEv:6492 + 0: 2164 + 10: _ZNK9oceanbase12blocksstable11ObRowReader19get_cluster_end_posEl:160136 + 2: 2164 + 2.1: 2164 + 3: 2164 + 3.1: 2164 + 2.1: _ZNK9oceanbase12blocksstable11ObRowHeader19get_offset_type_lenEv:32460 + 0.1: _ZN9oceanbase12blocksstable20ObColClusterInfoMask18get_bytes_type_lenENS1_9BYTES_LENE:32460 + 5: 2164 + 3: _ZNK9oceanbase12blocksstable11ObRowHeader15get_offset_typeEv:10820 + 0: 2164 + 10.1: _ZNK9oceanbase12blocksstable11ObRowHeader16get_column_countEv:8656 + 0: 2164 + 10.2: _ZNK9oceanbase12blocksstable20ObColClusterInfoMask16get_column_countEv:14510 + 0: 1451 + 10.4: _ZNK9oceanbase12blocksstable11ObRowHeader17is_single_clusterEv:12984 + 0: 2164 + 69: _ZN9oceanbase12blocksstable11ObRowReader5resetEv:8190390 + 3: 105005 + 9: 105005 + 11: 105005 + 8: _ZN9oceanbase12blocksstable21ObClusterColumnReader5resetEv:4200200 + 3: 105005 + 4: 105005 + 7: 105005 +_ZL22ob_strnncollsp_utf8mb4PK13ObCharsetInfoPKhmS3_mb.5aa8bf9a2f1d92c2672c2bb9fbfc2e97:175125270:417328 + 4: 393744 + 7: 393744 + 8: 393744 + 9: 393744 + 10: 393744 + 14.1: 393744 + 14.3: 393744 + 16: 627461 _ZL16ob_mb_wc_utf8mb4PK13ObCharsetInfoPmPKhS4_.5aa8bf9a2f1d92c2672c2bb9fbfc2e97:619332 + 17: 627461 _ZL16ob_mb_wc_utf8mb4PK13ObCharsetInfoPmPKhS4_.5aa8bf9a2f1d92c2672c2bb9fbfc2e97:650468 + 18: 630291 + 23: 630291 + 25: 610550 + 27: 412377 + 29: 203514 + 30: 203514 + 32: 569 + 33: 569 + 34: 569 + 35: 569 + 36: 571 _Z27ob_strnncollsp_utf8mb4_helpPPKhmS1_mS1_S1_bPiS2_:7 + 41: 571 + 42.1: 412386 + 21: _ZL14bincmp_utf8mb4PKhS0_S0_S0_:23604 + 3: 562 + 4: 562 + 5: 562 + 6: 562 + 23: _ZL17ob_tosort_unicodeP13ObUnicaseInfoPmj:37558296 + 2: 630291 + 5: 600122 + 6: 600122 + 6.3: 600122 + 12: 699 + 24: _ZL17ob_tosort_unicodeP13ObUnicaseInfoPmj:36564255 + 2: 600122 + 5: 610550 + 6: 610550 + 6.3: 610550 + 12: 699 +_ZN9oceanbase7storage19ObMultipleScanMerge18inner_get_next_rowERNS_12blocksstable10ObDatumRowE:161515899:107558 + 1: 98359 + 2: 98359 + 5: 98359 + 8: 98359 + 9: 875 + 11.1: 1762 + 15: 98359 + 17: 98359 + 20: 98359 + 20.1: 601 + 21: 601 + 23: 601 + 24: 587 + 25.1: 587 + 26.1: 601 + 27: 601 + 29: 587 + 30: 587 + 32.1: 587 + 34.1: 601 + 34.2: 601 + 35: 601 + 36: 601 + 37.1: 587 + 38.1: 601 + 39.1: 587 + 41: 601 + 43: 601 + 45.1: 587 + 46.1: 579 + 47.2: 587 + 50: 587 + 51: 587 + 52: 587 + 57: 587 + 58: 587 + 64: 98359 + 65.1: 98578 + 67.1: 875 + 69.1: 97648 + 70.1: 875 + 73.1: 1762 + 75: 96256 + 79: 1762 + 80: 1762 + 80.1: 1762 + 81: 1762 + 81.1: 1762 + 82.1: 867 + 91.1: 96256 + 92: 96256 + 95: 97277 + 3: _ZN9oceanbase7storage24ObScanMergeLoserTreeItemC2Ev:1876537 + 0: 98359 + 18: _ZN9oceanbase12blocksstable12ObDmlRowFlag8set_flagENS0_9ObDmlFlagE:786872 + 3: 98359 + 20: _ZNK9oceanbase7storage16ObTableIterParam19enable_pd_blockscanEv:393436 + 1: 98359 + 23: _ZN9oceanbase6common12ObIArrayWrapIPNS_7storage18ObStoreRowIteratorEE2atEl:4207 + 6: 601 + 26.1: _ZNK9oceanbase7storage18ObStoreRowIterator13can_blockscanEv:29449 + 2: 601 + 2.2: 601 + 3: 601 + 3.1: _ZNK9oceanbase7storage15ObBlockRowStore13can_blockscanEv:2404 + 0: 601 + 34.1: _ZNK9oceanbase7storage18ObStoreRowIterator13can_blockscanEv:18030 + 2: 601 + 2.2: 601 + 3: 601 + 3.1: _ZNK9oceanbase7storage15ObBlockRowStore13can_blockscanEv:2404 + 0: 601 + 47.1: _ZNK9oceanbase12blocksstable12ObDmlRowFlag23is_exist_without_deleteEv:18197 + 2: 587 + 2: _ZNK9oceanbase12blocksstable12ObDmlRowFlag8is_existEv:15262 + 2: _ZNK9oceanbase12blocksstable12ObDmlRowFlag8is_validEv:15262 + 2: 587 + 3.1: 587 + 65.1: _ZN9oceanbase7storage19ObMultipleScanMerge14supply_consumeEv:60106195 + 2: 98359 + 4.1: 150460 + 4.2: 246480 + 4.3: 246480 + 4.5: 150460 + 5: 135092 + 6: 135092 + 7: 135092 + 8: 1683 + 9.1: 1683 + 10.1: 138456 + 13.1: 587 + 16: 2983 + 18.1: 136320 + 19: 876 + 20.1: 876 + 22: 136320 + 23: 136320 + 24: 71118 + 25.1: 875 + 28: 76702 _ZN9oceanbase7storage18ObSimpleRowsMergerINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpEE4pushERKS2_:74034 + 29.1: 867 + 35: 147429 + 35.1: 38814 + 35.2: 109300 + 41: 98609 + 42: 1530 + 43.1: 97640 + 44.1: 579 + 46: 97640 + 49: 579 + 3: _ZN9oceanbase7storage24ObScanMergeLoserTreeItemC2Ev:1573744 + 0: 98359 + 6: _ZN9oceanbase6common12ObIArrayWrapIPNS_7storage18ObStoreRowIteratorEE2atEl:945644 + 6: 135092 + 10.1: _ZN9oceanbase7storage18ObStoreRowIterator16get_next_row_extERPKNS_12blocksstable10ObDatumRowERh:2988966 + 1: 148943 _ZN9oceanbase7storage18ObStoreRowIterator12get_next_rowERPKNS_12blocksstable10ObDatumRowE:99777 _ZN9oceanbase8memtable23ObIMemtableScanIterator12get_next_rowERPKNS_12blocksstable10ObDatumRowE:35693 + 2: 148943 _ZN9oceanbase7storage18ObStoreRowIterator13get_iter_flagEv:112978 _ZN9oceanbase8memtable22ObMemtableScanIterator13get_iter_flagEv:39957 + 24: _ZN9oceanbase7storage18ObSimpleRowsMergerINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpEE8push_topERKS2_:17580561 + 2: 62762 + 2: _ZN9oceanbase7storage18ObSimpleRowsMergerINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpEE4pushERKS2_:16508396 + 2: 62762 + 3: 62762 + 4: 875 + 5.1: 875 + 6.1: 62762 + 7: 922 + 8.1: 922 + 10: 62762 + 11: 2064 + 16.1: 61486 + 16.3: 61486 + 17: 61486 _ZN9oceanbase7storage23ObScanMergeLoserTreeCmpclERKNS0_24ObScanMergeLoserTreeItemES4_:63336 + 18: 66983 + 19: 587 + 20.1: 587 + 22: 66983 + 23: 45284 + 24.1: 23652 + 26: 23652 + 32: 24504 + 40: 24504 + 41: 68135 + 42: 68135 + 44: 913 + 50: 71118 + 51: 71118 + 18: _ZNK9oceanbase7storage23ObScanMergeLoserTreeCmp14get_error_codeEv:200949 + 0: 66983 + 41: _ZNK9oceanbase7storage18ObSimpleRowsMergerINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpEE5emptyEv:493045 + 2: 98609 + 69.1: _ZN9oceanbase7storage19ObMultipleScanMerge15inner_merge_rowERNS_12blocksstable10ObDatumRowE:72121472 + 2: 97648 + 3: 97648 + 4: 97648 + 6: 97648 + 8: 97648 + 10.1: 75786 + 10.2: 168174 + 10.3: 168174 + 10.5: 168174 + 11: 132296 + 12: 132296 + 13.1: 875 + 14.1: 132296 + 14.2: 132296 + 15: 1763 + 16.1: 1763 + 22: 132296 + 24: 132296 + 25: 107465 + 26: 111010 _ZN9oceanbase7storage9ObRowFuse8fuse_rowERKNS_12blocksstable10ObDatumRowERS3_RNS0_8ObNopPosERbPNS_6common12ObIAllocatorE:106819 + 27.1: 875 + 29.1: 111010 + 30: 12545 + 34: 875 + 36: 136539 + 37: 136539 + 41: 74081 + 45: 74081 + 45.1: 38522 _ZN9oceanbase7storage18ObSimpleRowsMergerINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpEE3popEv:37006 + 46.1: 587 + 54: 97158 + 55: 97158 + 56.1: 875 + 60: 875 + 61: 97092 + 61.1: 1763 + 62: 1763 + 63: 1763 + 64: 1763 + 65.1: 1763 + 66.1: 1683 + 67: 889 + 68.1: 889 + 73: 97092 + 9: _ZN9oceanbase12blocksstable12ObDmlRowFlag8set_flagENS0_9ObDmlFlagE:1074128 + 3: 97648 + 10.2: _ZNK9oceanbase7storage18ObSimpleRowsMergerINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpEE5emptyEv:840870 + 2: 168174 + 11: _ZNK9oceanbase7storage18ObSimpleRowsMergerINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpEE18is_unique_championEv:4641940 + 3: 132296 + 4: 132296 + 5: 132296 + 3: _ZNK9oceanbase7storage18ObSimpleRowsMergerINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpEE5emptyEv:661480 + 2: 132296 + 12: _ZN9oceanbase7storage18ObSimpleRowsMergerINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpEE3topERPKS2_:5866765 + 2: 132296 + 3: 132296 + 4: 579 + 5.1: 579 + 7: 132296 + 9: 579 + 3: _ZNK9oceanbase7storage18ObSimpleRowsMergerINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpEE5emptyEv:661480 + 2: 132296 + 55: _ZN9oceanbase7storage18ObSimpleRowsMergerINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpEE3popEv:8130416 + 2: 97158 + 3: 97158 + 4: 875 + 5.1: 875 + 6.1: 97158 + 7: 579 + 8.1: 579 + 10.1: 97158 + 11: 62568 + 13: 97092 + 15: 97092 + 6.1: _ZNK9oceanbase7storage18ObSimpleRowsMergerINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpEE5emptyEv:680106 + 2: 97158 + 61: _ZNK9oceanbase7storage16ObTableIterParam19enable_pd_blockscanEv:388368 + 1: 97092 + 62: _ZN9oceanbase6common12ObIArrayWrapIPNS_7storage18ObStoreRowIteratorEE2atEl:12341 + 6: 1763 + 67: _ZN9oceanbase7storage19ObMultipleScanMerge17prepare_blockscanERNS0_18ObStoreRowIteratorE:626791 + 2: 1683 + 3: 1683 + 5: 1683 + 6: 1683 + 6.1: 1683 + 7: 1683 + 7.1: 1683 + 12.1: 889 + 12.2: 889 + 13.1: 922 + 14.1: 889 + 14.2: 889 + 15: 601 + 16.1: 601 + 17.1: 889 + 17.2: 889 + 18.1: 889 + 20: 889 + 21.1: 889 + 21.2: 889 + 22.1: 601 + 24: 601 + 4: _ZN9oceanbase12blocksstable13ObDatumRowkeyC2Ev:43758 + 0.4: _ZN9oceanbase12blocksstable13ObDatumRowkey5resetEv:43758 + 0: 1683 + 5: _ZNK9oceanbase7storage16ObTableIterParam23get_schema_rowkey_countEv:26928 + 2: 1683 + 2.1: _ZNK9oceanbase7storage15ObTableReadInfo23get_schema_rowkey_countEv:5049 + 1: 1683 + 7: _ZNK9oceanbase6common11ObQueryFlag15is_reverse_scanEv:15147 + 0: 1683 + 8: _ZN9oceanbase12blocksstable13ObDatumRowkey14set_min_rowkeyEv:55539 + 0: 1683 + 10: _ZN9oceanbase12blocksstable13ObDatumRowkey14set_max_rowkeyEv:24892 + 0: 889 + 17.1: _ZN9oceanbase12blocksstable13ObDatumRowkey6assignEPNS0_14ObStorageDatumEi:111261 + 2: 889 + 4: 889 + 4.2: 889 + 5: 922 + 6.1: 922 + 9: 889 + 10: 889 + 13: 922 + 8: _ZN9oceanbase12blocksstable13ObDatumRowkey5resetEv:23114 + 0: 889 + 73: _ZNK9oceanbase12blocksstable12ObDmlRowFlag23is_exist_without_deleteEv:2469588 + 2: 97092 + 2: _ZNK9oceanbase12blocksstable12ObDmlRowFlag8is_existEv:1879988 + 2: _ZNK9oceanbase12blocksstable12ObDmlRowFlag8is_validEv:1879988 + 2: 97092 + 3.1: 1762 + 65534: 1762 + 80.1: _ZNK9oceanbase6common11ObQueryFlag14is_daily_mergeEv:7048 + 0: 1762 + 81: _ZN9oceanbase3lib6Worker4selfEv:77080 + 3: 1762 + 4: 867 + 92: _ZNK9oceanbase12blocksstable12ObDatumRange13get_group_idxEv:385024 + 0: 96256 +_ZL16ob_mb_wc_utf8mb4PK13ObCharsetInfoPmPKhS4_.5aa8bf9a2f1d92c2672c2bb9fbfc2e97:135163021:4291976 + 2: 4238464 + 4: 4238464 + 6: 4212080 + 7: 4212080 + 9: 4212080 + 12: 0 + 14: 0 + 16: 0 + 18: 0 + 20: 0 + 23: 0 + 25: 0 + 27: 0 + 27.1: 0 + 28: 0 + 30: 0 + 31: 0 + 32: 0 + 35: 0 + 37: 0 + 57: 0 + 58: 0 + 59: 0 + 60: 0 + 61: 0 + 63: 0 + 64: 0 + 65: 0 + 66: 0 + 70: 4212080 +_ZN9oceanbase12blocksstable11ObRowReader17read_memtable_rowEPKclRKNS_7storage15ObTableReadInfoERNS0_10ObDatumRowERNS_8memtable11ObNopBitMapERb:105422259:45098 + 7: 42897 + 8: 42897 + 9: 42897 + 9.1: 42897 + 10: 1 + 11.1: 1 + 12.1: 42897 + 13.1: 0 + 15: 42897 + 16: 42897 + 18.1: 96819 + 18.2: 142637 + 18.3: 142637 + 18.5: 96819 + 19: 95724 + 21: 88692 + 22: 88692 + 22.1: 84599 + 23.1: 84599 + 24.1: 0 + 25.1: 84380 + 32: 46739 + 34: 46739 + 34.1: 19928 + 35: 19928 + 36: 27333 + 39: 46738 + 9: _ZNK9oceanbase7storage15ObTableReadInfo8is_validEv:3045687 + 2: 42897 + 3: 42897 + 3.1: 42897 + 4: 42897 + 5.1: 42897 + 6: 42897 + 7: 42897 + 7.1: 42897 + 3.1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:300279 + 0: 42897 + 6.1: _ZNK9oceanbase12blocksstable19ObStorageDatumUtils8is_validEv:343176 + 0: 42897 + 12.1: _ZN9oceanbase12blocksstable11ObRowReader9setup_rowEPKcl:9437340 + 4: 42897 + 5: 42897 + 5.2: 42897 + 6: 0 + 7.1: 0 + 10: 42897 + 11: 42897 + 12: 42897 + 13: 42897 + 14.1: 0 + 16: 42897 + 20: 42897 + 13: _ZN9oceanbase12blocksstable11ObRowReader18analyze_row_headerEv:5619507 + 2: 42897 + 3: 42897 + 4: 42897 + 5: 0 + 6.1: 0 + 7.1: 42897 + 8.1: 0 + 11: 0 + 4: _ZNK9oceanbase12blocksstable11ObRowHeader8is_validEv:686352 + 2: 42897 + 2.1: 42897 + 7.1: _ZN9oceanbase12blocksstable11ObRowReader20analyze_cluster_infoEv:3903627 + 2: 42897 + 3: 42897 + 4: 42897 + 5: 42897 + 6: 42897 + 7: 0 + 8.1: 0 + 9: 0 + 11: 42897 + 16: 0 + 3: _ZNK9oceanbase12blocksstable11ObRowHeader30has_rowkey_independent_clusterEv:171588 + 2: _ZN9oceanbase12blocksstable11ObRowHeader31need_rowkey_independent_clusterEl:171588 + 2: 42897 + 4: _ZNK9oceanbase12blocksstable11ObRowHeader15get_cluster_cntEv:428970 + 3: 42897 + 6: 0 + 6: _ZN9oceanbase12blocksstable11ObRowHeader16calc_cluster_cntEll:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase12blocksstable11ObRowHeader31need_rowkey_independent_clusterEl:0 + 2: 0 + 3: _ZN9oceanbase12blocksstable11ObRowHeader33calc_cluster_cnt_by_row_col_countEl:0 + 2: 0 + 4: _ZN9oceanbase12blocksstable11ObRowHeader33calc_cluster_cnt_by_row_col_countEl:0 + 2: 0 + 5: _ZNK9oceanbase12blocksstable11ObRowHeader19get_offset_type_lenEv:772146 + 0: _ZNK9oceanbase12blocksstable11ObRowHeader15get_offset_typeEv:128691 + 0: 42897 + 0.1: _ZN9oceanbase12blocksstable20ObColClusterInfoMask18get_bytes_type_lenENS1_9BYTES_LENE:643455 + 5: 42897 + 15: _ZNK9oceanbase7storage15ObTableReadInfo17get_request_countEv:343176 + 1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:343176 + 0: 42897 + 19: _ZN9oceanbase8memtable11ObNopBitMap4testEl:3828960 + 2: 95724 + 21: _ZNK9oceanbase6common12ObIArrayWrapIiE2atEl:620844 + 6: 88692 + 22.1: _ZNK9oceanbase12blocksstable11ObRowHeader16get_column_countEv:338396 + 0: 84599 + 23.1: _ZN9oceanbase12blocksstable11ObRowReader31read_specific_column_in_clusterElRNS0_14ObStorageDatumE:68413539 + 4: 84599 + 5: 84599 + 6: 84599 + 7: 84599 + 10.1: 1 + 11: 1 + 12: 1 + 13.1: 1 + 18: 1 + 19: 1 + 22: 85879 + 23.1: 0 + 25.1: 85879 + 26.1: 0 + 29: 0 + 7: _ZNK9oceanbase12blocksstable11ObRowHeader17is_single_clusterEv:338396 + 0: 84599 + 11: _ZN9oceanbase12blocksstable11ObRowHeader16calc_cluster_idxEl:7 + 2: 1 + 12: _ZN9oceanbase12blocksstable11ObRowHeader26calc_column_idx_in_clusterEl:3 + 2: 1 + 13.1: _ZNK9oceanbase12blocksstable11ObRowHeader16get_rowkey_countEv:4 + 0: 1 + 18: _ZN9oceanbase12blocksstable11ObRowHeader16calc_cluster_idxEl:7 + 2: 1 + 19: _ZN9oceanbase12blocksstable11ObRowHeader26calc_column_idx_in_clusterEl:4 + 2: 1 + 22: _ZN9oceanbase12blocksstable11ObRowReader28analyze_info_and_init_readerEl:24024959 + 2: 84599 + 3: 84599 + 3.1: 84599 + 3.2: 84599 + 4: 0 + 5.1: 0 + 6.1: 84599 + 9: 45774 + 10: 47121 + 10.3: 44541 + 15.1: 0 + 18: 44541 + 23: 85879 + 7: _ZN9oceanbase12blocksstable21ObClusterColumnReader5resetEv:2892429 + 2: 43287 + 3: 43287 + 4: 43287 + 7: 43287 + 8: _ZNK9oceanbase12blocksstable11ObRowReader18get_cluster_offsetEl:787692 + 2: 43287 + 2.1: 45774 _ZN9oceanbase12blocksstableL12get_offset_8EPKvl.8f1e732d6655d093e942b32e16c602d8:44556 + 2: _ZNK9oceanbase12blocksstable11ObRowHeader15get_offset_typeEv:129861 + 0: 43287 + 10: _ZNK9oceanbase12blocksstable11ObRowReader19get_cluster_end_posEl:2432057 + 2: 45774 + 2.1: 45774 + 3: 45774 + 3.1: 355 + 2.1: _ZNK9oceanbase12blocksstable11ObRowHeader19get_offset_type_lenEv:411966 + 0.1: _ZN9oceanbase12blocksstable20ObColClusterInfoMask18get_bytes_type_lenENS1_9BYTES_LENE:411966 + 5: 45774 + 3: _ZNK9oceanbase12blocksstable11ObRowHeader15get_offset_typeEv:228870 + 0: 45774 + 10.1: _ZNK9oceanbase12blocksstable11ObRowHeader16get_column_countEv:235605 + 0: 47121 + 10.2: _ZNK9oceanbase12blocksstable20ObColClusterInfoMask16get_column_countEv:0 + 0: 0 + 10.3: _ZN9oceanbase12blocksstable21ObClusterColumnReader4initEPKcmmRKNS0_20ObColClusterInfoMaskE:8382238 + 6: 47121 + 7: 47121 + 11: 46328 + 11.2: 46328 + 12: 0 + 13.1: 0 + 14.1: 46328 + 15.1: 43864 + 16: 0 + 17.1: 0 + 19: 43864 + 20: 43864 + 21: 43864 + 23: 43864 + 24: 43864 + 25: 43864 + 26: 43864 + 27: 43864 + 28: 355 + 29: 355 + 30: 355 + 31: 355 + 32: 355 + 34: 44541 + 38: 44541 + 8: _ZN9oceanbase12blocksstable21ObClusterColumnReader5resetEv:16685 + 2: 355 + 3: 355 + 4: 355 + 7: 355 + 11.1: _ZNK9oceanbase12blocksstable20ObColClusterInfoMask8is_validEv:138984 + 4.1: 46328 + 14.1: _ZNK9oceanbase12blocksstable20ObColClusterInfoMask13is_sparse_rowEv:694920 + 0: 46328 + 14.2: _ZNK9oceanbase12blocksstable20ObColClusterInfoMask23get_sparse_column_countEv:2840 + 0: 355 + 15.1: _ZNK9oceanbase12blocksstable20ObColClusterInfoMask20get_total_array_sizeEl:1240554 + 3.3: 46328 + 4: 43864 + 3: _ZNK9oceanbase12blocksstable20ObColClusterInfoMask19get_offset_type_lenEv:350912 + 0: _ZNK9oceanbase12blocksstable20ObColClusterInfoMask15get_offset_typeEv:131592 + 0: 43864 + 0.1: _ZN9oceanbase12blocksstable20ObColClusterInfoMask18get_bytes_type_lenENS1_9BYTES_LENE:219320 + 5: 43864 + 3.1: _ZNK9oceanbase12blocksstable20ObColClusterInfoMask23get_column_idx_type_lenEv:4615 + 0: _ZNK9oceanbase12blocksstable20ObColClusterInfoMask19get_column_idx_typeEv:2840 + 0: 355 + 0.1: _ZN9oceanbase12blocksstable20ObColClusterInfoMask18get_bytes_type_lenENS1_9BYTES_LENE:1775 + 5: 355 + 4: _ZNK9oceanbase12blocksstable20ObColClusterInfoMask28get_special_value_array_sizeEl:307048 + 2: 43864 + 23: _ZNK9oceanbase12blocksstable20ObColClusterInfoMask19get_offset_type_lenEv:526368 + 0: _ZNK9oceanbase12blocksstable20ObColClusterInfoMask15get_offset_typeEv:131592 + 0: 43864 + 0.1: _ZN9oceanbase12blocksstable20ObColClusterInfoMask18get_bytes_type_lenENS1_9BYTES_LENE:394776 + 5: 43864 + 26: _ZNK9oceanbase12blocksstable20ObColClusterInfoMask15get_offset_typeEv:307048 + 0: 43864 + 27: _ZNK9oceanbase12blocksstable20ObColClusterInfoMask13is_sparse_rowEv:175456 + 0: 43864 + 29: _ZNK9oceanbase12blocksstable20ObColClusterInfoMask23get_sparse_column_countEv:3550 + 0: 355 + 30: _ZNK9oceanbase12blocksstable20ObColClusterInfoMask19get_column_idx_typeEv:3550 + 0: 355 + 31: _ZNK9oceanbase12blocksstable20ObColClusterInfoMask23get_column_idx_type_lenEv:5325 + 0: _ZNK9oceanbase12blocksstable20ObColClusterInfoMask19get_column_idx_typeEv:2130 + 0: 355 + 0.1: _ZN9oceanbase12blocksstable20ObColClusterInfoMask18get_bytes_type_lenENS1_9BYTES_LENE:3195 + 5: 355 + 10.4: _ZNK9oceanbase12blocksstable11ObRowHeader17is_single_clusterEv:474760 + 0: 47121 + 25.1: _ZN9oceanbase12blocksstable21ObClusterColumnReader18read_storage_datumElRNS0_14ObStorageDatumE:34796468 + 2: 85879 + 3: 85879 + 4: 0 + 5.1: 0 + 6.1: 85879 + 6.2: 85879 + 6.3: 85879 + 7: 0 + 8.1: 0 + 10: 85879 + 10.3: 85879 + 15: 84380 + 16.1: 0 + 24: 84380 + 10.1: _ZN9oceanbase12blocksstable21ObClusterColumnReader18get_sparse_col_idxEl:0 + 4.1: 0 + 5: 0 + 6: 0 + 9: 0 + 13: _ZN9oceanbase12blocksstable14ObStorageDatum7set_nopEv:0 + 0: _ZN9oceanbase12blocksstable14ObStorageDatum13set_ext_valueEl:0 + 1: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:0 + 0: 0 + 1.1: _ZN9oceanbase6common11ObDatumDesc7set_extEv:0 + 0: 0 + 1.3: _ZN9oceanbase6common5ObObj7set_extEl:0 + 4: 0 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:0 + 0: 0 + 15: _ZN9oceanbase12blocksstable21ObClusterColumnReader10read_datumElRNS0_14ObStorageDatumE:28033013 + 2: 85879 + 3: 85879 + 4: 85879 + 8.1: 66992 + 8.3: 66992 + 10: 0 + 11.1: 0 + 13: 66992 + 14: 67593 _ZN9oceanbase12blocksstableL12get_offset_8EPKvl.8f1e732d6655d093e942b32e16c602d8:67853 + 15: 67593 + 15.3: 67593 + 16: 66877 _ZN9oceanbase12blocksstableL12get_offset_8EPKvl.8f1e732d6655d093e942b32e16c602d8:68303 + 18: 683 + 20: 64895 + 21.1: 0 + 24: 84380 + 3: _ZN9oceanbase12blocksstable21ObClusterColumnReader18read_special_valueEl:2919886 + 2: 85879 + 4: 85879 + 5: _ZN9oceanbase12blocksstable14ObStorageDatum7set_nopEv:1042919 + 0: _ZN9oceanbase12blocksstable14ObStorageDatum13set_ext_valueEl:1042919 + 1: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:216381 + 0: 19671 + 1.1: _ZN9oceanbase6common11ObDatumDesc7set_extEv:177039 + 0: 19671 + 1.3: _ZN9oceanbase6common5ObObj7set_extEl:649499 + 4: 19671 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:177039 + 0: 19671 + 7: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:0 + 0: 0 + 20: _ZN9oceanbase12blocksstable21ObClusterColumnReader20read_column_from_bufEllNS0_11ObRowHeader11SPECIAL_VALERNS0_14ObStorageDatumE:11686493 + 6: 65156 + 7: 65156 + 8: 65156 + 9: 65156 + 10: 44166 + 11.1: 0 + 13.1: 21691 + 14.1: 0 + 16: 0 + 10: _ZN9oceanbase12blocksstable21ObClusterColumnReader19read_8_bytes_columnEPKclRNS0_14ObStorageDatumE:4728322 + 5: 44641 + 7: 44641 + 7.2: 44641 + 8: 0 + 9.1: 0 + 11: 44641 + 13: 377 + 16: 3265 + 19: 42818 + 22: 1 + 23.1: 1 + 26: 44166 + 27: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:485826 + 0: 44166 + 28: _ZN9oceanbase6common7ObDatum8set_uintEm:750822 + 0: 44166 + 13.1: _ZN9oceanbase12blocksstable14ObStorageDatum16from_buf_enhanceEPKcl:2104027 + 2: 21691 + 4: 21691 + 4.2: 21691 + 5: 0 + 6.1: 0 + 9: 21691 + 10: 21691 + 11: 21691 + 16: 0 + 8: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:412129 + 0: 21691 + 25.1: _ZNK9oceanbase6common7ObDatum6is_nopEv:849271 + 0: 84380 + 0.1: 19864 + 0: _ZNK9oceanbase6common11ObDatumDesc6is_extEv:421900 + 0: 84380 + 0.1: _ZNK9oceanbase6common5ObObj12is_nop_valueEv:198640 + 2: 19864 + 2.1: 19864 + 26: _ZN9oceanbase8memtable11ObNopBitMap9set_falseEl:1817060 + 2: 64895 + 3: 64895 + 33.1: _ZN9oceanbase8memtable11ObNopBitMap8is_emptyEv:233695 + 2: 46739 + 34.1: _ZNK9oceanbase12blocksstable11ObRowHeader12get_row_flagEv:59784 + 2: 19928 + 34.2: _ZNK9oceanbase12blocksstable12ObDmlRowFlag9is_deleteEv:59784 + 2: 19928 +_ZN9oceanbase7storage9ObRowFuse8fuse_rowERKNS_12blocksstable10ObDatumRowERS3_RNS0_8ObNopPosERbPNS_6common12ObIAllocatorE:92539690:113794 + 5: 109865 + 6: 109865 + 7: 109865 + 7.1: 109865 + 7.3: 109865 + 8: 1313 + 9.1: 1313 + 10.1: 109865 + 10.2: 109865 + 13: 108165 + 14: 108165 + 17: 12008 + 25: 97186 + 26: 846 + 28: 846 + 29.1: 846 + 29.2: 846 + 29.3: 846 + 30: 846 + 32.1: 846 + 33.1: 0 + 38.2: 108046 + 38.3: 0 + 38.4: 0 + 42: 0 + 43.1: 0 + 46: 108046 + 50.1: 252159 + 50.3: 252159 + 50.5: 252159 + 51: 232600 + 51.2: 16815 + 51.3: 233269 + 52: 233269 + 53: 16719 + 54: 16719 + 56: 16719 + 58.1: 233728 + 60.1: 233728 + 61.1: 876 + 64: 116475 + 65: 116475 + 66: 116475 + 69: 1313 + 70.1: 1313 + 73: 118379 + 7: _ZNK9oceanbase12blocksstable10ObDatumRow8is_validEv:2417030 + 0: 109865 + 0.1: 109865 + 7.1: _ZNK9oceanbase12blocksstable10ObDatumRow8is_validEv:2417030 + 0: 109865 + 0.1: 109865 + 7.2: _ZNK9oceanbase7storage8ObNopPos8is_validEv:769055 + 2: 109865 + 10.1: _ZNK9oceanbase12blocksstable12ObDmlRowFlag9is_deleteEv:1208515 + 2: 109865 + 10.2: _ZNK9oceanbase12blocksstable12ObDmlRowFlag12is_not_existEv:878920 + 2: 109865 + 14.1: _ZNK9oceanbase12blocksstable12ObDmlRowFlag12is_not_existEv:96064 + 2: 12008 + 18: _ZN9oceanbase7storage8ObNopPos5resetEv:777488 + 2: 97186 + 19: _ZN9oceanbase12blocksstable12ObDmlRowFlagaSERKS1_:3693068 + 3: 97186 + 2: _ZNK9oceanbase12blocksstable12ObDmlRowFlag8is_validEv:3012766 + 2: 97186 + 25: _ZNK9oceanbase12blocksstable12ObDmlRowFlag9is_deleteEv:1419522 + 2: 97186 + 31: _ZN9oceanbase12blocksstable14ObStorageDatumaSERKS1_:0 + 2: 0 + 4: 0 + 5: 0 + 7.1: 0 + 8: 0 + 9: 0 + 10: 0 + 12: 0 + 3: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:0 + 0: 0 + 5: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:0 + 0: 0 + 7.1: _ZNK9oceanbase12blocksstable14ObStorageDatum12is_local_bufEv:0 + 0: 0 + 32.1: _ZN9oceanbase12blocksstable14ObStorageDatum9deep_copyERKS1_RNS_6common12ObIAllocatorE:110826 + 2: 846 + 5: 846 + 6: 846 + 7.1: 846 + 8.1: 846 + 10: 846 + 11: 846 + 13: 846 + 14: 846 + 15: 0 + 16.1: 0 + 18: 846 + 20: 846 + 23: 0 + 4: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:15228 + 0: 846 + 6: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:1692 + 0: 846 + 8.1: _ZNK9oceanbase12blocksstable14ObStorageDatum12is_local_bufEv:10152 + 0: 846 + 37.1: _ZNK9oceanbase12blocksstable12ObDmlRowFlag23is_exist_without_deleteEv:1944828 + 2: _ZNK9oceanbase12blocksstable12ObDmlRowFlag8is_existEv:1944828 + 2: _ZNK9oceanbase12blocksstable12ObDmlRowFlag8is_validEv:1944828 + 2: 108046 + 38: _ZNK9oceanbase12blocksstable12ObDmlRowFlag23is_exist_without_deleteEv:3997702 + 2: _ZNK9oceanbase12blocksstable12ObDmlRowFlag8is_existEv:3997702 + 2: _ZNK9oceanbase12blocksstable12ObDmlRowFlag8is_validEv:3997702 + 2: 108046 + 52: _ZNK9oceanbase6common7ObDatum6is_nopEv:3722107 + 0: 233269 + 0.1: 16719 + 0: _ZNK9oceanbase6common11ObDatumDesc6is_extEv:2099421 + 0: 233269 + 0.1: _ZNK9oceanbase6common5ObObj12is_nop_valueEv:234066 + 2: 16719 + 2.1: 16719 + 59: _ZN9oceanbase12blocksstable14ObStorageDatumaSERKS1_:27232498 + 2: 235776 + 4: 235776 + 5: 235776 + 7.1: 235765 + 8: 148903 + 9: 148903 + 10: 160044 + 12: 86614 + 3: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:4715520 + 0: 235776 + 5: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:471552 + 0: 235776 + 7.1: _ZNK9oceanbase12blocksstable14ObStorageDatum12is_local_bufEv:3300710 + 0: 235765 + 60.1: _ZN9oceanbase12blocksstable14ObStorageDatum9deep_copyERKS1_RNS_6common12ObIAllocatorE:285972 + 2: 988 + 5: 988 + 6: 988 + 7.1: 1313 + 8.1: 1313 + 10: 1313 + 11: 1313 + 13: 1313 + 14: 1313 + 15: 876 + 16.1: 876 + 18: 1313 + 20: 1313 + 23: 988 + 4: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:20748 + 0: 988 + 6: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:1976 + 0: 988 + 8.1: _ZNK9oceanbase12blocksstable14ObStorageDatum12is_local_bufEv:17069 + 0: 1313 +_ZN9oceanbase12blocksstable10ObDatumRowD2Ev:77976567:26333 + 1: 25386 + 3: 23824 + 3.1: 41 + 3.2: 41 + 3.7: 41 + 3.10: 41 + 2: _ZN9oceanbase12blocksstable10ObDatumRow5resetEv:38394541 + 2: 25386 _ZN9oceanbase6common8ObNewRow5resetEv:26439 + 4: 23979 + 6: 24643 + 13: 24643 + 3: _ZN9oceanbase7storage13ObObjBufArray5resetEv:1602827 + 2: 24488 + 2.1: 15577 + 3: 41 + 5: 23979 + 6: 23979 + 7: 23979 + 8: 23979 + 5: _ZN9oceanbase12blocksstable20ObStorageDatumBuffer5resetEv:34074916 + 2: 23979 + 2.1: 41 + 3: 41 + 5: 23979 + 6: 23979 + 7: 23979 + 8.1: 750814 + 8.3: 750814 + 9: 750814 + 11: 24643 + 9: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:14761560 + 0: 750814 + 12: _ZN9oceanbase12blocksstable12ObDmlRowFlag5resetEv:221787 + 2: 24643 + 14: _ZN9oceanbase6common16ObArenaAllocator5resetEv:1211812 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:1211812 + 4.1: 24643 + 6: 41 + 7: 41 + 13: 24643 + 14: 24643 + 15: 24643 + 18: 24643 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:533 + 0: 41 + 5.1: _ZL12abort_unlessb:287 + 5: 41 + 6: 41 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:2624 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:2624 + 0: 41 + 0.2: 41 + 0.1: _ZN9oceanbase6common7ob_freeEPv:1886 + 2: 41 + 3: 41 + 4: 41 + 5: 41 + 4: _ZL12abort_unlessb:369 + 5: 41 + 6: 41 + 3: _ZN9oceanbase7storage13ObObjBufArrayD2Ev:1381730 + 2.1: 41 + 2: _ZN9oceanbase7storage13ObObjBufArray5resetEv:1381402 + 2: 24643 + 2.1: 41 + 3: 41 + 5: 24643 + 6: 24643 + 7: 24643 + 8: 24643 + 3.3: _ZN9oceanbase12blocksstable20ObStorageDatumBufferD2Ev:35235805 + 0.2: 41 + 0: _ZN9oceanbase12blocksstable20ObStorageDatumBuffer5resetEv:35235477 + 2: 24643 + 2.1: 41 + 3: 41 + 5: 24643 + 6: 24643 + 7: 24643 + 8.1: 801834 + 8.3: 801834 + 9: 801834 + 11: 23824 + 9: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:14925872 + 0: 801834 + 3.4: _ZN9oceanbase11transaction9ObTransIDD2Ev:262064 + 0: 23824 + 3.6: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:1815093 + 0: 23824 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEED2Ev:1481557 + 0: 23824 + 0.3: 41 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:1123869 + 4.1: 23824 + 6: 41 + 7: 41 + 13: 23824 + 14: 23824 + 15: 23824 + 18: 23824 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:123 + 0: 41 + 5.1: _ZL12abort_unlessb:451 + 5: 41 + 6: 41 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:2419 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:2419 + 0: 41 + 0.2: 41 + 0.1: _ZN9oceanbase6common7ob_freeEPv:1681 + 2: 41 + 3: 41 + 4: 41 + 5: 41 + 4: _ZL12abort_unlessb:369 + 5: 41 + 6: 41 + 3.8: _ZN9oceanbase11transaction9ObTransIDD2Ev:451 + 0: 41 +_ZN9oceanbase12blocksstable10ObDatumRowD1Ev:77976567:26333 + 1: 25386 + 3: 23824 + 3.1: 41 + 3.2: 41 + 3.7: 41 + 3.10: 41 + 2: _ZN9oceanbase12blocksstable10ObDatumRow5resetEv:38394541 + 2: 25386 _ZN9oceanbase6common8ObNewRow5resetEv:26439 + 4: 23979 + 6: 24643 + 13: 24643 + 3: _ZN9oceanbase7storage13ObObjBufArray5resetEv:1602827 + 2: 24488 + 2.1: 15577 + 3: 41 + 5: 23979 + 6: 23979 + 7: 23979 + 8: 23979 + 5: _ZN9oceanbase12blocksstable20ObStorageDatumBuffer5resetEv:34074916 + 2: 23979 + 2.1: 41 + 3: 41 + 5: 23979 + 6: 23979 + 7: 23979 + 8.1: 750814 + 8.3: 750814 + 9: 750814 + 11: 24643 + 9: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:14761560 + 0: 750814 + 12: _ZN9oceanbase12blocksstable12ObDmlRowFlag5resetEv:221787 + 2: 24643 + 14: _ZN9oceanbase6common16ObArenaAllocator5resetEv:1211812 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:1211812 + 4.1: 24643 + 6: 41 + 7: 41 + 13: 24643 + 14: 24643 + 15: 24643 + 18: 24643 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:533 + 0: 41 + 5.1: _ZL12abort_unlessb:287 + 5: 41 + 6: 41 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:2624 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:2624 + 0: 41 + 0.2: 41 + 0.1: _ZN9oceanbase6common7ob_freeEPv:1886 + 2: 41 + 3: 41 + 4: 41 + 5: 41 + 4: _ZL12abort_unlessb:369 + 5: 41 + 6: 41 + 3: _ZN9oceanbase7storage13ObObjBufArrayD2Ev:1381730 + 2.1: 41 + 2: _ZN9oceanbase7storage13ObObjBufArray5resetEv:1381402 + 2: 24643 + 2.1: 41 + 3: 41 + 5: 24643 + 6: 24643 + 7: 24643 + 8: 24643 + 3.3: _ZN9oceanbase12blocksstable20ObStorageDatumBufferD2Ev:35235805 + 0.2: 41 + 0: _ZN9oceanbase12blocksstable20ObStorageDatumBuffer5resetEv:35235477 + 2: 24643 + 2.1: 41 + 3: 41 + 5: 24643 + 6: 24643 + 7: 24643 + 8.1: 801834 + 8.3: 801834 + 9: 801834 + 11: 23824 + 9: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:14925872 + 0: 801834 + 3.4: _ZN9oceanbase11transaction9ObTransIDD2Ev:262064 + 0: 23824 + 3.6: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:1815093 + 0: 23824 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEED2Ev:1481557 + 0: 23824 + 0.3: 41 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:1123869 + 4.1: 23824 + 6: 41 + 7: 41 + 13: 23824 + 14: 23824 + 15: 23824 + 18: 23824 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:123 + 0: 41 + 5.1: _ZL12abort_unlessb:451 + 5: 41 + 6: 41 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:2419 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:2419 + 0: 41 + 0.2: 41 + 0.1: _ZN9oceanbase6common7ob_freeEPv:1681 + 2: 41 + 3: 41 + 4: 41 + 5: 41 + 4: _ZL12abort_unlessb:369 + 5: 41 + 6: 41 + 3.8: _ZN9oceanbase11transaction9ObTransIDD2Ev:451 + 0: 41 +_ZN9oceanbase8observer13ObQueryDriver21response_query_resultERNS_3sql11ObResultSetEbbRbl:77661728:3724 + 5: 3702 + 6: 3702 + 8: 3430 + 10: 3430 + 13: 3430 + 14: 3430 + 15: 3430 + 17: 3430 + 17.1: 3430 + 21.1: 3430 + 21.6: 21 + 25.1: 3430 + 26: 3430 + 27: 21 + 28.1: 21 + 31.1: 81059 + 31.3: 86742 _ZN9oceanbase3sql11ObResultSet12get_next_rowERPKNS_6common8ObNewRowE:86955 + 31.4: 84914 + 31.5: 84914 + 32: 81146 + 33: 81146 + 38: 77105 + 40: 3622 + 41: 3622 + 41.1: 3519 + 42.1: 21 + 45.1: 83159 + 45.2: 161233 + 45.3: 161233 + 45.4: 161233 + 45.6: 83159 + 47.1: 76764 + 48.1: 21 + 48.3: 21 + 50.2: 21 + 50.3: 21 + 54.1: 21 + 59: 81642 + 60.2: 81642 + 61: 591 + 61.2: 81642 + 62.1: 81642 + 62.3: 82936 + 62.5: 21 + 63.2: 21 + 64: 259 + 64.2: 21 + 65.1: 21 + 67: 246 + 67.2: 21 + 68: 83159 + 68.2: 21 + 69.2: 21 + 70.1: 21 + 75: 76516 + 76.1: 77022 _ZN9oceanbase6common7ObSMRowC1ENS_7obmysql19MYSQL_PROTOCOL_TYPEERKNS0_8ObNewRowERKNS0_20ObDataTypeCastParamsEPKNS0_8ObIArrayINS0_7ObFieldEEEPNS_5share6schema19ObSchemaGetterGuardEm:77804 + 78: 76516 + 81: 77022 _ZN9oceanbase7obmysql7OMPKRowC1ERKNS0_10ObMySQLRowE:81843 + 83: 80654 + 83.1: 80654 + 83.2: 81059 + 84.1: 21 + 90: 21 + 91: 81059 + 95: 3649 + 96.1: 21 + 96.2: 21 + 96.3: 21 + 96.4: 21 + 100: 3692 + 101: 3572 + 103.1: 21 + 105: 3572 + 107: 33 + 108: 33 + 108.1: 33 + 109.1: 21 + 113: 21 + 114.24: 3484 + 7: _ZN9oceanbase5trace16__ObFLTSpanGuardC2Ejh:100856 + 2: 3702 _ZN9oceanbase5trace7ObTrace12get_instanceEv:3723 + 2.1: 3714 _ZN9oceanbase5trace7ObTrace10begin_spanEjhb:3790 + 11: _ZNK9oceanbase3sql11ObResultSet17get_has_top_limitEv:24010 + 2: 3430 + 12: _ZNK9oceanbase3sql11ObResultSet18is_calc_found_rowsEv:83196 + 2: 3649 + 17: _ZNK9oceanbase3sql18ObBasicSessionInfo20get_sql_select_limitERl:133770 + 2: 3430 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache20get_sql_select_limitEv:99470 + 0: 3430 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache20get_sql_select_limitEb:75460 + 0: 3430 + 21: _ZN9oceanbase3sql11ObResultSet17get_physical_planEv:24010 + 2: _ZNK9oceanbase3sql15ObCacheObjGuard13get_cache_objEv:24010 + 2: 3430 + 21.3: _ZNK9oceanbase3sql14ObPhysicalPlan9is_packedEv:34300 + 0: 3430 + 25: _ZNK9oceanbase3sql11ObResultSet17get_field_columnsEv:24010 + 2: 3430 + 41: _ZN9oceanbase8observer13ObQueryDriver21response_query_headerERNS_3sql11ObResultSetEbbb:3871500 + 5: 3622 + 7: 3622 _ZNK9oceanbase3sql11ObResultSet13get_field_cntEv:3657 + 8.1: 21 + 10.1: 3541 + 13.1: 3541 + 14: 3541 _ZN9oceanbase7obmysql13OMPKResheaderC1Ev:3607 + 15: 3624 _ZNK9oceanbase3sql11ObResultSet13get_field_cntEv:3974 + 16: 3640 + 16.1: 3640 + 16.2: 3711 + 17.1: 21 + 19: 3711 _ZN9oceanbase7obmysql13OMPKResheaderD1Ev:3880 + 19.1: 21 + 20: 3807 + 22: 3807 + 23: 21 + 26.1: 3500 + 26.2: 7572 _ZNK9oceanbase3sql11ObResultSet13get_field_cntEv:7800 + 26.3: 7572 + 28: 3797 _ZN9oceanbase7obmysql12ObMySQLFieldC1Ev:3842 + 30: 3461 + 30.1: 3611 + 35.1: 21 + 36.1: 21 + 39.1: 3850 + 40.1: 3850 _ZN9oceanbase3sql11ObResultSet16replace_lob_typeERKNS0_16ObSQLSessionInfoERKNS_6common7ObFieldERNS_7obmysql12ObMySQLFieldE:3907 + 41.1: 3790 + 42.1: 21 + 44: 3790 + 45: 3790 + 46: 3790 _ZN9oceanbase7obmysql9OMPKFieldC1ERNS0_12ObMySQLFieldE:3919 + 47: 3726 + 47.1: 3726 + 47.2: 3500 + 48.1: 21 + 55: 3755 + 56: 3755 _ZN9oceanbase7obmysql7OMPKEOFC1Ev:3991 + 60: 3598 _ZNK9oceanbase3sql18ObBasicSessionInfo31is_server_status_in_transactionEv:3616 + 60.1: 3148 + 62: 3148 + 63: 3148 + 64: 3148 + 64.1: 3148 + 66.2: 3148 + 70: 3148 + 70.1: 3148 + 70.2: 3607 + 71.1: 21 + 73: 3607 _ZN9oceanbase7obmysql7OMPKEOFD1Ev:3621 + 73.2: 21 + 74: 3519 + 10.1: _ZNK9oceanbase3sql18ObBasicSessionInfo14get_autocommitERb:109771 + 2: 3541 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache14get_autocommitEv:88525 + 0: 3541 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache14get_autocommitEb:53115 + 0: 3541 + 15.1: _ZN9oceanbase7obmysql13OMPKResheader15set_field_countEm:25480 + 2: 3640 + 16: _ZN9oceanbase3sql11ObResultSet11get_sessionEv:25480 + 0: 3640 + 16.1: _ZThn56_N9oceanbase8observer8ObMPBase15response_packetERNS_7obmysql13ObMySQLPacketEPNS_3sql16ObSQLSessionInfoE:29120 + 2: 3640 _ZN9oceanbase8observer16ObMPPacketSender15response_packetERNS_7obmysql13ObMySQLPacketEPNS_3sql16ObSQLSessionInfoE:3692 + 24: _ZN9oceanbase3sql11ObResultSet11set_errcodeEi:252 + 2: 21 + 29: _ZNK9oceanbase3sql11ObResultSet17get_field_columnsEv:24227 + 2: 3461 + 29.1: _ZNK9oceanbase6common12ObIArrayWrapINS0_7ObFieldEE2atEl:13844 + 6: 3461 + 30: _ZN9oceanbase8observer13ObQueryDriver36is_com_filed_list_match_wildcard_strERNS_3sql11ObResultSetERKNS_6common15ObCollationTypeERKNS5_8ObStringERb:71503 + 5: 3461 + 7: 3461 + 13: 21 + 14: 21 + 14.3: 21 + 19.1: 21 + 22: 21 + 24: 21 + 25: 21 + 26: 21 + 26.4: 21 + 33.1: 21 + 34.1: 21 + 39: 21 + 7: _ZN9oceanbase3sql11ObResultSet21get_is_com_filed_listEv:27688 + 0: 3461 + 7.1: _ZN9oceanbase3sql11ObResultSet19get_wildcard_stringEv:147 + 11: _ZN9oceanbase3sql11ObResultSet12get_mem_poolEv:147 + 0: 21 + 12: _ZN9oceanbase6common8ObStringC2Ev:210 + 1: 21 + 13: _ZN9oceanbase3sql11ObResultSet11get_sessionEv:147 + 0: 21 + 13.1: _ZNK9oceanbase3sql18ObBasicSessionInfo17get_nls_collationEv:840 + 2: 21 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache17get_nls_collationEv:798 + 0: 21 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache17get_nls_collationEb:315 + 0: 21 + 26: _ZNK9oceanbase6common8ObString3ptrEv:105 + 0: 21 + 26.1: _ZNK9oceanbase6common8ObString6lengthEv:105 + 0: 21 + 26.2: _ZN9oceanbase6common8ObString3ptrEv:147 + 0: 21 + 26.3: _ZNK9oceanbase6common8ObString6lengthEv:231 + 0: 21 + 39: _ZN9oceanbase8observer16ObMySQLResultSet14to_mysql_fieldERKNS_6common7ObFieldERNS_7obmysql12ObMySQLFieldE:1531331 + 2: 3611 + 3: 3611 + 4: 3611 + 5: 3611 + 6: 3611 + 7: 3611 + 16: 3611 + 17: 3611 + 18: 3611 + 21: 3611 + 22.1: 3463 + 23: 249 + 23.1: 3370 _ZN9oceanbase6common9ObCharset18is_valid_collationEl:3449 + 24: 3607 + 24.1: 3607 _ZN9oceanbase6common9ObCharset11is_bin_sortENS0_15ObCollationTypeE:3644 + 25: 21 + 28: 3712 + 31: 21 + 33: 3795 + 33.1: 3712 _ZN9oceanbase6common9ObSMUtils14get_mysql_typeENS0_9ObObjTypeERNS_7obmysql15EMySQLFieldTypeERtRs:3860 + 36: 3795 + 37: 3795 + 38: 3795 + 39: 3795 + 41: 3795 + 41.1: 3795 + 45: 21 + 47: 21 + 49: 21 + 49.1: 3795 + 50: 3795 + 54: 21 + 56: 3794 + 57: 21 + 60.1: 3794 _ZZN9oceanbase8observer16ObMySQLResultSet14to_mysql_fieldERKNS_6common7ObFieldERNS_7obmysql12ObMySQLFieldEENK4$_58clEPKc.aab76b6a44351831e19725958b59fc25:3951 + 61: 3850 + 10: _ZN9oceanbase6common10ObAccuracyaSERKS1_:108330 + 2: 3611 + 3: 3611 + 22: _ZNK9oceanbase6common5ObObj8get_typeEv:36110 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:36110 + 0: 3611 + 22.2: _ZN9oceanbase6common17ob_is_string_typeENS0_9ObObjTypeE:111515 + 0: 3611 + 0: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:47722 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:47722 + 2: 3611 + 64574.1: 8 + 28: _ZNK9oceanbase6common10ObAccuracy9get_scaleEv:25984 + 0: 3712 + 30: _ZNK9oceanbase6common8ObString12case_compareEPKc:52997 + 8: _ZNK9oceanbase6common8ObString12case_compareERKS1_:52997 + 3: 3712 + 10: 21 + 10.1: 21 + 11: 21 + 10: _ZSt3minIiERKT_S2_S2_:105 + 5: 21 + 33: _ZNK9oceanbase6common5ObObj8get_typeEv:22272 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:22272 + 0: 3712 + 38: _ZN9oceanbase6common10ObAccuracy9set_scaleEs:26565 + 0: 3795 + 41.2: _ZNK9oceanbase6common8ObString5emptyEv:483 + 2: 21 + 46: _ZNK9oceanbase6common5ObObj8get_typeEv:189 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:189 + 0: 21 + 40: _ZN9oceanbase3sql11ObResultSet11get_sessionEv:26950 + 0: 3850 + 41: _ZN9oceanbase3sql11ObResultSet21get_is_com_filed_listEv:30320 + 0: 3790 + 42: _ZNK9oceanbase6common5ObObj7get_extEv:630 + 3: 21 + 4: 21 + 44: _ZN9oceanbase3sql11ObResultSet11set_errcodeEi:26530 + 2: 3790 + 47: _ZN9oceanbase3sql11ObResultSet11get_sessionEv:26082 + 0: 3726 + 47.1: _ZThn56_N9oceanbase8observer8ObMPBase15response_packetERNS_7obmysql13ObMySQLPacketEPNS_3sql16ObSQLSessionInfoE:44744 + 2: 3726 _ZN9oceanbase8observer16ObMPPacketSender15response_packetERNS_7obmysql13ObMySQLPacketEPNS_3sql16ObSQLSessionInfoE:3739 + 57: _ZN9oceanbase7obmysql7OMPKEOF17set_warning_countEt:32382 + 0: 3598 + 58: _ZNK9oceanbase7obmysql7OMPKEOF17get_server_statusEv:25186 + 0: 3598 + 64: _ZNK9oceanbase3sql18ObBasicSessionInfo15is_obproxy_modeEv:22036 + 0: 3148 + 68: _ZN9oceanbase7obmysql7OMPKEOF17set_server_statusENS0_19ObServerStatusFlagsE:22036 + 0: 3148 + 70: _ZN9oceanbase3sql11ObResultSet11get_sessionEv:22036 + 0: 3148 + 70.1: _ZThn56_N9oceanbase8observer8ObMPBase15response_packetERNS_7obmysql13ObMySQLPacketEPNS_3sql16ObSQLSessionInfoE:25216 + 2: 3148 _ZN9oceanbase8observer16ObMPPacketSender15response_packetERNS_7obmysql13ObMySQLPacketEPNS_3sql16ObSQLSessionInfoE:3476 + 45.2: _ZNK9oceanbase6common8ObNewRow9get_countEv:2810020 + 0: 161233 + 0.2: 161233 + 0.3: 161233 + 46: _ZN9oceanbase6common8ObNewRow8get_cellEl:2382813 + 2: 76764 + 3: 76764 + 4: 21 + 4.1: 21 + 5.1: 21 + 6: 21 + 8: 21 + 11: 76764 + 12.1: 21 + 13: 21 + 15: 76764 + 47: _ZNK9oceanbase3sql11ObResultSet14is_ps_protocolEv:1381752 + 0: 76764 + 48: _ZNK9oceanbase6common5ObObj8get_typeEv:105 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:105 + 0: 21 + 48.1: _ZNK9oceanbase6common12ObIArrayWrapINS0_7ObFieldEE2atEl:84 + 6: 21 + 48.2: _ZNK9oceanbase6common5ObObj8get_typeEv:231 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:231 + 0: 21 + 49: _ZN9oceanbase3sql11ObResultSet12get_mem_poolEv:147 + 0: 21 + 49.1: _ZN9oceanbase6common15ObObjCastParamsC2EPNS0_12ObIAllocatorEPKNS0_20ObDataTypeCastParamsEmNS0_15ObCollationTypeEPNS0_10ObAccuracyE:5229 + 3: 21 + 4: 21 + 5: 21 + 7: 21 + 8: 21 + 13: 21 + 12: _ZN9oceanbase6common20ObDataTypeCastParamsC2Ev:504 + 4: 21 + 6: 21 + 16: _ZN9oceanbase6common15ObObjCastParams24set_compatible_cast_modeEv:2772 + 2: 21 + 2: _ZN9oceanbase3lib14is_oracle_modeEv:2079 + 2: 21 + 2: _ZN9oceanbase3lib15get_compat_modeEv:2016 + 2: 21 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:1680 + 2: 21 + 2.1: 21 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:462 + 1: 21 + 50: _ZNK9oceanbase6common12ObIArrayWrapINS0_7ObFieldEE2atEl:84 + 6: 21 + 50.1: _ZNK9oceanbase6common5ObObj8get_typeEv:126 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:126 + 0: 21 + 60: _ZNK9oceanbase6common5ObObj8get_typeEv:690876 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:690876 + 0: 76764 + 60.1: _ZN9oceanbase6common17ob_is_string_typeENS0_9ObObjTypeE:1613817 + 0: 76764 + 0: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:461766 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:461766 + 2: 76764 + 62.2: _ZN9oceanbase8observer13ObQueryDriver28convert_string_value_charsetERNS_6common5ObObjERNS_3sql11ObResultSetE:10853180 + 2: 81642 + 3: 81642 + 5: 81642 + 6: 81099 + 6.1: 83250 _ZN9oceanbase3sql13ObExecContext29get_convert_charset_allocatorERPNS_6common16ObArenaAllocatorE:87302 + 7.1: 21 + 8.1: 81099 + 9: 21 + 10.1: 21 + 11.1: 81099 _ZNK9oceanbase3sql18ObBasicSessionInfo25get_character_set_resultsERNS_6common13ObCharsetTypeE:85874 + 12.1: 21 + 14.1: 80893 + 14.2: 82936 _ZN9oceanbase6common5ObObj28convert_string_value_charsetENS0_13ObCharsetTypeERNS0_12ObIAllocatorE:82347 + 14.4: 21 + 16: 21 + 4: _ZN9oceanbase3sql11ObResultSet11get_sessionEv:571494 + 0: 81642 + 6: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:898408 + 0: 81642 + 63.1: _ZNK9oceanbase6common5ObObj15is_clob_locatorEv:3885 + 0: _ZNK9oceanbase6common9ObObjMeta15is_clob_locatorEv:3885 + 0: 259 + 64.1: _ZN9oceanbase8observer13ObQueryDriver25convert_lob_value_charsetERNS_6common5ObObjERNS_3sql11ObResultSetE:5397 + 2: 21 + 4: 21 + 6: 21 + 7: 21 + 7.1: 21 + 8.1: 21 + 9.1: 21 + 10: 21 + 11.1: 21 + 12.1: 21 + 13.1: 21 + 14.1: 21 + 15.1: 21 + 17: 21 + 5: _ZN9oceanbase3sql11ObResultSet11get_sessionEv:147 + 0: 21 + 7: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:252 + 0: 21 + 67.1: _ZN9oceanbase3lib14is_oracle_modeEv:3909586 + 2: 83159 + 2: _ZN9oceanbase3lib15get_compat_modeEv:3660109 + 2: 83159 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:2080088 + 2: 83159 + 2.1: 21 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:462 + 1: 21 + 68.1: _ZNK9oceanbase6common5ObObj6is_lobEv:315 + 0: _ZNK9oceanbase6common9ObObjMeta6is_lobEv:315 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:189 + 0: 21 + 0.1: _ZN9oceanbase6common13ob_is_text_tcENS0_9ObObjTypeE:126 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:126 + 2: 21 + 69.1: _ZN9oceanbase8observer13ObQueryDriver31convert_lob_locator_to_longtextERNS_6common5ObObjERNS_3sql11ObResultSetE:3990 + 3: 21 + 4: 21 + 4.1: 21 + 5.1: 21 + 6.1: 21 + 7: 21 + 8.1: 21 + 9.1: 21 + 9.2: 21 + 12.1: 21 + 14: 21 + 4: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:336 + 0: 21 + 9.1: _ZNK9oceanbase3sql18ObBasicSessionInfo25is_client_use_lob_locatorEv:252 + 2: 21 + 75.2: _ZN9oceanbase3sql18ObBasicSessionInfo17create_dtc_paramsEPKS1_:18518069 + 2: 76516 + 2.1: _ZNK9oceanbase3sql18ObBasicSessionInfo14get_dtc_paramsEv:18057776 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo17get_timezone_infoEv:535612 + 0: _ZNK9oceanbase6common18ObTimeZoneInfoWrap18get_time_zone_infoEv:535612 + 0: 76516 + 2.1: _ZN9oceanbase6common20ObDataTypeCastParamsC2EPKNS0_14ObTimeZoneInfoENS0_8ObStringES5_S5_NS0_15ObCollationTypeES6_S6_b:4055348 + 8: 76516 + 10: 76516 + 11: 76516 + 12: 76516 + 13: 76516 + 15: 76516 + 16: 76516 + 17: 76516 + 3: _ZNK9oceanbase3sql18ObBasicSessionInfo25get_local_nls_date_formatEv:3825800 + 2: 76516 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache19get_nls_date_formatEv:2754576 + 0: 76516 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache19get_nls_date_formatEb:1071224 + 0: 76516 + 4: _ZNK9oceanbase3sql18ObBasicSessionInfo30get_local_nls_timestamp_formatEv:1836384 + 2: 76516 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_nls_timestamp_formatEv:765160 + 0: 76516 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_nls_timestamp_formatEb:535612 + 0: 76516 + 5: _ZNK9oceanbase3sql18ObBasicSessionInfo33get_local_nls_timestamp_tz_formatEv:2065932 + 2: 76516 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache27get_nls_timestamp_tz_formatEv:994708 + 0: 76516 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache27get_nls_timestamp_tz_formatEb:535612 + 0: 76516 + 6: _ZNK9oceanbase3sql18ObBasicSessionInfo17get_nls_collationEv:1989416 + 2: 76516 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache17get_nls_collationEv:1836384 + 0: 76516 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache17get_nls_collationEb:1377288 + 0: 76516 + 7: _ZNK9oceanbase3sql18ObBasicSessionInfo24get_nls_collation_nationEv:1989416 + 2: 76516 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_nls_nation_collationEv:1836384 + 0: 76516 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_nls_nation_collationEb:1377288 + 0: 76516 + 8: _ZNK9oceanbase3sql18ObBasicSessionInfo30get_local_collation_connectionEv:1759868 + 2: 76516 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_collation_connectionEv:1606836 + 0: 76516 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_collation_connectionEb:1377288 + 0: 76516 + 3: _ZN9oceanbase6common20ObDataTypeCastParamsC2Ev:1197 + 4: 21 + 6: 21 + 2.1: _ZN9oceanbase6common8ObStringC2Ev:588 + 1: 21 + 77: _ZNK9oceanbase3sql11ObResultSet17get_field_columnsEv:535612 + 2: 76516 + 80: _ZN9oceanbase7obmysql10ObMySQLRow10set_packedEb:462132 + 0: 77022 + 82: _ZN9oceanbase7obmysql13ObMySQLPacket13set_is_packedEb:241962 + 0: 80654 + 83: _ZN9oceanbase3sql11ObResultSet11get_sessionEv:564578 + 0: 80654 + 83.1: _ZThn56_N9oceanbase8observer8ObMPBase15response_packetERNS_7obmysql13ObMySQLPacketEPNS_3sql16ObSQLSessionInfoE:726734 + 2: 80654 _ZN9oceanbase8observer16ObMPPacketSender15response_packetERNS_7obmysql13ObMySQLPacketEPNS_3sql16ObSQLSessionInfoE:81253 + 114.24: _ZN9oceanbase5trace16__ObFLTSpanGuardD2Ev:16076 + 0: 3575 + 0.1: 33 + 0.2: 33 + 0.4: 21 + 0.5: 33 + 0.7: 33 + 0.8: 33 + 0.12: 21 + 0.3: _ZNK9oceanbase5trace4UUID9is_initedEv:336 + 0: 33 + 0.1: 21 + 0.6: _ZN9oceanbase5trace7ObTrace13is_auto_flushEv:231 + 0: 33 + 114.29: _ZN9oceanbase5trace16__ObFLTSpanGuardD2Ev:1512 + 0: 21 + 0.1: 21 + 0.2: 21 + 0.4: 21 + 0.5: 21 + 0.7: 21 + 0.8: 21 + 0.12: 21 + 0.3: _ZNK9oceanbase5trace4UUID9is_initedEv:252 + 0: 21 + 0.1: 21 + 0.6: _ZN9oceanbase5trace7ObTrace13is_auto_flushEv:147 + 0: 21 +_ZN9oceanbase7obmysql14ObProto20Utils16do_packet_encodeERNS0_18ObProtoEncodeParamE:72475756:93991 + 0: 90845 + 1: 90845 + 2: 90845 + 3: 0 + 4.1: 0 + 6: 90845 + 7: 0 + 8.1: 0 + 14: 90845 + 14.2: 90845 + 21: 95780 + 22: 95780 + 24: 0 + 25: 0 + 26: 0 + 30: 95780 + 2: _ZNK9oceanbase7obmysql18ObProtoEncodeParam8is_validEv:2725350 + 1: 90845 + 1.1: 90845 + 1.2: 90845 + 6: _ZNK9oceanbase7obmysql16ObProto20Context15is_proto20_usedEv:363380 + 0: 90845 + 14: _ZNK9oceanbase7obmysql12ObEasyBuffer4lastEv:363380 + 0: 90845 + 14.1: _ZNK9oceanbase7obmysql12ObEasyBuffer16write_avail_sizeEv:1271830 + 0: 90845 + 14.2: _ZN9oceanbase7obmysql13ObMySQLPacket6encodeEPclRl:59014986 + 2: 90845 + 3: 90845 + 4: 95780 + 6.1: 0 + 8.1: 95780 + 9: 0 + 10.1: 0 + 13: 95780 + 16: 95780 + 4: _ZNK9oceanbase7obmysql13ObMySQLPacket6encodeEPclRlS3_:52851426 + 2: 90845 + 3: 90845 + 3.2: 90845 + 4: 0 + 5.1: 0 + 6.1: 90845 + 10: 90845 + 12: 90845 + 14: 93239 _ZNK9oceanbase7obmysql7OMPKRow9serializeEPclRl:80212 _ZNK9oceanbase7obmysql7OMPKEOF9serializeEPclRl:7120 _ZNK9oceanbase7obmysql13OMPKResheader9serializeEPclRl:3634 _ZNK9oceanbase7obmysql9OMPKField9serializeEPclRl:3576 _ZNK9oceanbase7obmysql6OMPKOK9serializeEPclRl:1481 + 23: 93239 + 24: 93239 + 25: 93239 + 27: 93239 + 28: 93239 + 29: 0 + 30.1: 0 + 32: 93239 + 35: 93239 + 37: 93239 + 39: 0 + 40.1: 0 + 43: 0 + 44: 0 + 49: 93239 + 51.1: 95098 + 52: 93239 + 54: 93239 + 55.1: 0 + 56.1: 93239 + 57.1: 0 + 59: 93239 + 60: 0 + 62: 95098 + 63: 95098 + 67: 99721 + 73: 95780 + 74: 95780 + 79: 0 + 82: 0 + 38.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib7ObLabelE:0 + 3: 0 + 2.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 4: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 9: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 9: _ZSt3maxIlERKT_S2_S2_:0 + 5: 0 + 54: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int3EPcliRl:5780818 + 2: 93239 + 3: 93239 + 4: 0 + 5.1: 0 + 5.2: 0 + 5.5: 0 + 5.8: 0 + 7: 93239 + 8.1: 93239 + 9: 93239 + 11: 0 + 14: 0 + 5.2: _ZN9oceanbase6common7ObLogKVIPKvLb1EEC2EPKcOKS3_:0 + 0: 0 + 5.7: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 56.1: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int1EPclaRl:4009277 + 2: 93239 + 3: 93239 + 4: 0 + 5.1: 0 + 5.2: 0 + 5.5: 0 + 5.8: 0 + 7: 93239 + 8.1: 93239 + 9: 93239 + 11: 0 + 14: 0 + 5.2: _ZN9oceanbase6common7ObLogKVIPKvLb1EEC2EPKcOKS3_:0 + 0: 0 + 5.7: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 68: _ZN9oceanbase6common7ob_freeEPv:0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 22: _ZN9oceanbase7obmysql12ObEasyBuffer5writeEl:383120 + 0: 95780 +_ZN9oceanbase12blocksstable10ObDatumRowC2Ev:65729701:24154 + 15: 23959 + 1.1: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:2531256 + 4: 22204 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:2220400 + 2: 22204 + 3: 22204 + 4: 22204 + 5: 22204 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:932568 + 0: 22204 + 7: _ZN9oceanbase11transaction9ObTransIDC2Ev:555100 + 0: 22204 + 12: _ZN9oceanbase12blocksstable20ObStorageDatumBufferC2EPNS_6common12ObIAllocatorE:61550901 + 1: 22204 + 2: 22204 + 2.1: 729860 + 3: 22755 + 4: 22755 + 5: 22755 + 2.1: _ZN9oceanbase12blocksstable14ObStorageDatumC2Ev:51997692 + 0.1: _ZN9oceanbase12blocksstable14ObStorageDatum7set_nopEv:51997692 + 0: _ZN9oceanbase12blocksstable14ObStorageDatum13set_ext_valueEl:51997692 + 1: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:13315112 + 0: 729860 + 65354: 22204 + 1.1: _ZN9oceanbase6common11ObDatumDesc7set_extEv:13137480 + 0: 729860 + 1.3: _ZN9oceanbase6common5ObObj7set_extEl:25545100 + 4: 729860 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:13137480 + 0: 729860 + 13: _ZN9oceanbase6common8ObNewRowC2Ev:546120 + 1: 22755 + 14: _ZN9oceanbase7storage13ObObjBufArrayC2Ev:409590 + 3: 22755 +_ZN9oceanbase12blocksstable10ObDatumRowC1Ev:65729701:24154 + 15: 23959 + 1.1: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:2531256 + 4: 22204 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:2220400 + 2: 22204 + 3: 22204 + 4: 22204 + 5: 22204 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:932568 + 0: 22204 + 7: _ZN9oceanbase11transaction9ObTransIDC2Ev:555100 + 0: 22204 + 12: _ZN9oceanbase12blocksstable20ObStorageDatumBufferC2EPNS_6common12ObIAllocatorE:61550901 + 1: 22204 + 2: 22204 + 2.1: 729860 + 3: 22755 + 4: 22755 + 5: 22755 + 2.1: _ZN9oceanbase12blocksstable14ObStorageDatumC2Ev:51997692 + 0.1: _ZN9oceanbase12blocksstable14ObStorageDatum7set_nopEv:51997692 + 0: _ZN9oceanbase12blocksstable14ObStorageDatum13set_ext_valueEl:51997692 + 1: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:13315112 + 0: 729860 + 65354: 22204 + 1.1: _ZN9oceanbase6common11ObDatumDesc7set_extEv:13137480 + 0: 729860 + 1.3: _ZN9oceanbase6common5ObObj7set_extEl:25545100 + 4: 729860 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:13137480 + 0: 729860 + 13: _ZN9oceanbase6common8ObNewRowC2Ev:546120 + 1: 22755 + 14: _ZN9oceanbase7storage13ObObjBufArrayC2Ev:409590 + 3: 22755 +_ZN9oceanbase8memtable12ObMvccEngine4scanERNS0_15ObMvccAccessCtxERKNS_6common11ObQueryFlagERKNS0_15ObMvccScanRangeERNS0_17ObMvccRowIteratorE:64690745:1015 + 5: 954 + 6: 954 + 7: 954 + 8.1: 2 + 9: 2 + 10.1: 954 + 11.1: 2 + 12: 2 + 13.1: 980 + 17.1: 2 + 21: 2 + 22.1: 2 + 24: 980 + 10.1: _ZNK9oceanbase8memtable15ObMvccScanRange8is_validEv:6678 + 2: 954 + 13.1: _ZN9oceanbase8memtable17ObMvccRowIterator4initERNS0_13ObQueryEngineERNS0_15ObMvccAccessCtxERKNS0_15ObMvccScanRangeERKNS_6common11ObQueryFlagE:64572293 + 6: 954 + 7: 954 + 8: 2 + 10: 980 + 15.1: 2 + 17: 980 + 18: 980 + 19: 980 + 20: 980 + 21: 980 + 23: 980 + 10: _ZNK9oceanbase6common12ObBorderFlag15inclusive_startEv:5724 + 0: 954 + 10.2: _ZN9oceanbase8memtable13ObQueryEngine4scanEPKNS0_13ObMemtableKeyEbS4_blRPNS0_22ObIQueryEngineIteratorE:64440353 + 3: 954 + 4: 954 + 6: 954 + 7.1: 2 + 8: 2 + 9.1: 995 + 10.1: 2 + 11: 2 + 12.1: 995 + 14: 2 + 16: 995 + 17: 995 + 18: 995 + 19: 1033 + 20.1: 1033 + 20.3: 1058 + 23: 0 + 24.1: 0 + 30: 0 + 31.1: 2 + 35: 2 + 37: 980 + 39: 2 + 9.1: _ZN9oceanbase8memtable13ObQueryEngine13IteratorAllocINS_8keybtree13BtreeIteratorEE5allocEv:60491041 + 0: 954 + 0.1: 954 + 0: _ZN9oceanbase3lib7ObLabelC2IPKcEERKT_:13356 + 2: _ZN9oceanbase3lib7ObLabelaSIPKcvEERS1_T_:13356 + 2: 954 + 0.1: _ZN9oceanbase6common16ObClassAllocatorINS_8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorEEEE5allocEv:60411573 + 4: 954 + 4.1: 1006 _ZN9oceanbase6common13ObObjFreeList5allocEv:979 + 6: _ZN9oceanbase6common18ObClassConstructorINS_8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorEEEEclEPv:60389163 + 3: _ZN9oceanbase6common18ObClassConstructorINS_8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorEEEE11ConstructorIS7_Lb1EEclEPv:60389163 + 2: _ZN9oceanbase8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorEEC2Ev:60389163 + 0: 1006 + 0.2: 995 + 0.7: _ZN9oceanbase8keybtree13BtreeIteratorC2Ev:60347219 + 4: 1006 + 6: 1006 + 2: _ZN9oceanbase8memtable20ObStoreRowkeyWrapperC2Ev:15090 + 0: 1006 + 9: _ZN9oceanbase8keybtree13BtreeIterator7KVQueueC2Ev:60321063 + 0: 1006 + 0.2: 230550 + 0.1: _ZN9oceanbase8keybtree7BtreeKVC2Ev:57642530 + 0: _ZN9oceanbase8memtable20ObStoreRowkeyWrapperC2Ev:57642530 + 0: 230550 + 65354: 1006 + 0.3: _ZN9oceanbase6common16ObClassAllocatorINS_8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorEEEE3getElNS0_14ObMemCacheTypeERKNS_3lib7ObLabelElb:28906 + 7.1: 954 + 8: 2 + 9: 2 + 11: 0 + 11.1: 0 + 13.1: 0 + 14.1: 0 + 18: 0 + 26: 954 + 9.1: _ZN9oceanbase6common16ObClassAllocatorINS_8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorEEEEC2Ev:0 + 0: 0 + 12.1: _ZNK9oceanbase8memtable13ObQueryEngine15get_table_indexERPNS1_10TableIndexE:38831 + 3: 995 + 4.1: 2 + 8.1: 995 + 9: 995 + 12.1: 995 + 14: 2 + 16: _ZNK9oceanbase8memtable13ObMemtableKey10get_rowkeyEv:6965 + 0: 995 + 17: _ZNK9oceanbase8memtable13ObMemtableKey10get_rowkeyEv:6965 + 0: 995 + 18: _ZN9oceanbase8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorEE5resetEv:55675 + 4: 1033 + 6: 1033 + 2: _ZN9oceanbase8keybtree13BtreeIterator5resetEv:29850 + 4: 995 + 6: 995 + 10: 995 + 12: 0 + 2: _ZN9oceanbase8keybtree13BtreeIterator7KVQueue5resetEv:6965 + 3: 995 + 7: _ZN9oceanbase8memtable20ObStoreRowkeyWrapperC2Ev:3980 + 0: 995 + 11: _ZN9oceanbase8keybtree8Iterator5resetEv:0 + 3: 0 + 4: 0 + 11: 0 + 2: _ZN9oceanbase8keybtree10ScanHandle5resetEv:0 + 2: _ZN9oceanbase8keybtree10BaseHandle11release_refEv:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase6common6QClock14leave_criticalEm:0 + 1: 0 + 2: _ZN9oceanbase6common6QClock6locateEm:0 + 0: 0 + 2.1: _ZN9oceanbase6common6QClock9ClockSlot11clear_clockEv:0 + 0: 0 + 3: _ZN9oceanbase8keybtree4Path5resetEv:0 + 2: 0 + 3: 0 + 5: _ZN9oceanbase8memtable20ObStoreRowkeyWrapperC2Ev:0 + 0: 0 + 19: _ZNK9oceanbase8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorEE7get_keyEv:6198 + 0: 1033 + 19.1: _ZN9oceanbase8memtable13ObMemtableKey6encodeEPKNS_6common13ObStoreRowkeyE:7231 + 3: 1033 + 20: _ZN9oceanbase8memtable13ObQueryEngine10TableIndex12get_keybtreeEv:3952 + 0: 988 + 20.2: _ZN9oceanbase8keybtree10ObKeyBtree13set_key_rangeERNS0_13BtreeIteratorENS_8memtable20ObStoreRowkeyWrapperEbS5_bl:3674843 + 4: _ZN9oceanbase8keybtree13BtreeIterator4initERNS0_10ObKeyBtreeE:3327854 + 3: 1033 + 6: 988 + 6: _ZN9oceanbase8keybtree8IteratorC2ERNS0_10ObKeyBtreeE:3310788 + 0: 988 + 1: 988 + 1.1: 988 + 3: 988 + 0: _ZN9oceanbase8keybtree10ScanHandleC2ERNS0_10ObKeyBtreeE:3257436 + 0.1: 988 + 0: _ZN9oceanbase8keybtree10ObKeyBtree10get_qclockEv:17784 + 2: 988 + 2.1: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common6QClockC2Ev:0 + 0: 0 + 0.1: _ZN9oceanbase6common6QClock9ClockSlotC2Ev:0 + 0: 0 + 0.4: _ZN9oceanbase8keybtree10BaseHandleC2ERNS_6common6QClockE:31616 + 0: 988 + 0: _ZN9oceanbase8keybtree11MultibitSetC2Ev:6916 + 0: 988 + 0.5: _ZN9oceanbase8keybtree4PathC2Ev:3199144 + 0: 988 + 0.3: 988 + 0.1: _ZN9oceanbase8keybtree4Path4ItemC2Ev:3177408 + 0: 15808 + 1: _ZN9oceanbase8keybtree10BaseHandle8get_compEv:6916 + 0: 988 + 2.1: _ZN9oceanbase8memtable20ObStoreRowkeyWrapperC2Ev:12844 + 0: 988 + 6.1: _ZN9oceanbase8keybtree13BtreeIterator13set_key_rangeENS_8memtable20ObStoreRowkeyWrapperEbS3_bl:346989 + 6: 1058 + 7: 1058 + 8: 1058 + 9: 1058 + 10: 1058 + 11: 1058 + 12: 1058 + 5.3: _ZNK9oceanbase8keybtree10CompHelper7compareENS_8memtable20ObStoreRowkeyWrapperES3_Ri:263858 + 2: _ZNK9oceanbase8memtable20ObStoreRowkeyWrapper7compareERKS1_Ri:263858 + 0.1: _ZNK9oceanbase6common13ObStoreRowkey7compareERKS1_Ri:263858 + 0: _ZNK9oceanbase6common8ObRowkey7compareERKS1_Ri:263858 + 3: 988 + 4: 988 + 5: 0 + 8: 1058 + 9: 2 + 7: _ZNK9oceanbase6common8ObRowkey14compare_prefixERKS1_Ri:225384 + 5: 988 + 8: 988 + 11: 988 + 13: 988 + 14.1: 993 + 16: 979 _ZNK9oceanbase6common5ObObj32check_collation_free_and_compareERKS1_Ri:977 + 19: 0 + 7: _ZNK9oceanbase6common8ObRowkey10is_min_rowEv:39520 + 4: 988 + 4.1: 988 + 5: 0 + 9: 988 + 5: _ZNK9oceanbase6common5ObObj12is_min_valueEv:9880 + 2: 988 + 2.1: 0 + 8: _ZNK9oceanbase6common8ObRowkey10is_max_rowEv:24700 + 4: 0 + 4.1: 988 + 4.2: 0 + 5: 0 + 9: 988 + 5: _ZNK9oceanbase6common5ObObj12is_max_valueEv:8892 + 2: 988 + 2.1: 0 + 9: _ZNK9oceanbase6common8ObRowkey10is_min_rowEv:49400 + 4: 988 + 4.1: 988 + 5: 0 + 9: 988 + 5: _ZNK9oceanbase6common5ObObj12is_min_valueEv:9880 + 2: 988 + 2.1: 0 + 10: _ZNK9oceanbase6common8ObRowkey10is_max_rowEv:18772 + 4: 0 + 4.1: 988 + 4.2: 0 + 5: 0 + 9: 988 + 5: _ZNK9oceanbase6common5ObObj12is_max_valueEv:8892 + 2: 988 + 2.1: 0 + 13: _ZSt3minIlERKT_S2_S2_:13832 + 5: 988 + 20: _ZN9oceanbase8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorEE11set_versionEl:6860 + 0: 980 +_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherC2Ev:58283649:1069 + 0: 1040 _ZN9oceanbase7storage21ObIndexTreePrefetcherC2Ev:1139 + 0.5: 47840 _ZN9oceanbase7storage22ObMicroBlockDataHandleC1Ev:1190 + 0.7: 372 + 0.8: 372 + 1: 990 + 2: 990 + 4: 990 + 6: 1055 + 8: 990 + 12: 990 + 14: 990 + 19: 1040 + 19.1: 1450 + 19.7: 372 + 19.8: 372 + 19.10: 372 + 0.2: _ZN9oceanbase12blocksstable16ObMicroIndexInfoC2Ev:38399008 + 2: 38176 + 7: 38176 _ZN9oceanbase12blocksstable12MacroBlockIdC1Ev:1049 + 17: _ZN9oceanbase7storage23ObReallocatedFixedArrayINS0_19ObSSTableReadHandleEEC2Ev:17820 + 0: 990 + 18: _ZN9oceanbase7storage23ObReallocatedFixedArrayINS0_30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandleEEC2Ev:42570 + 0: 990 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS_7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandleENS0_12ObIAllocatorEEC2EPS5_l:24750 + 1: _ZN9oceanbase6common8ObIArrayINS_7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandleEEC2Ev:24750 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandleEEC2Ev:24750 + 0: 990 +_ZN9oceanbase3sql10ObOperator12get_next_rowEv:54572080:189727 + 1: 179169 + 2: 179169 + 4: 179169 + 5: 188199 _ZN9oceanbase3sql10ObOperator28try_register_rt_monitor_nodeEl:191233 + 7: 212486 + 8: 460 + 9.1: 210218 + 12: 1886 + 16: 210218 + 17: 1886 + 18: 1886 + 19.1: 1426 + 21: 1886 + 22: 1426 + 24: 1886 + 29.1: 1426 + 30: 210218 _ZN9oceanbase3sql13ObTableScanOp18inner_get_next_rowEv:122749 _ZN9oceanbase3sql8ObSortOp18inner_get_next_rowEv:56960 _ZN9oceanbase3sql16ObHashDistinctOp18inner_get_next_rowEv:29512 _ZN9oceanbase3sql14ObExprValuesOp18inner_get_next_rowEv:610 _ZN9oceanbase3sql17ObMergeDistinctOp18inner_get_next_rowEv:608 _ZN9oceanbase3sql19ObScalarAggregateOp18inner_get_next_rowEv:592 _ZN9oceanbase3sql15ObTableUpdateOp18inner_get_next_rowEv:556 _ZN9oceanbase3sql15ObTableDeleteOp18inner_get_next_rowEv:277 _ZN9oceanbase3sql15ObTableInsertOp18inner_get_next_rowEv:266 + 32.1: 1886 + 36: 191482 + 37: 5607 + 38: 5607 + 39.1: 1886 + 41: 5607 + 50: 199053 + 51: 199053 + 52: 199053 + 53: 7659 + 54: 7659 + 57: 12167 + 58: 12167 _ZN9oceanbase3sql10ObOperator10drain_exchEv:6774 + 59: 12131 + 60.1: 1958 + 62: 12131 + 63: 11036 + 67: 194466 + 68: 7149 + 70: 187963 + 71: 2881 + 72.1: 2881 + 72.5: 1426 + 72.6: 1426 + 72.7: 1426 + 72.9: 1426 + 72.10: 1426 + 72.12: 1426 + 73: 1426 + 74.1: 1426 + 76: 1426 + 82: 185420 + 3: _ZN9oceanbase3sql10ObOperator23begin_cpu_time_countingEv:2866704 + 2: 179169 + 2: _ZL5rdtscv:1612521 + 3: 179169 + 4: 179169 + 4: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:1254183 + 2: 179169 + 4.1: _ZNK9oceanbase3sql16ObSQLSessionInfo15is_user_sessionEv:1254183 + 0: 179169 + 9.1: _ZNK9oceanbase3sql10ObOperator8get_specEv:840872 + 0: 210218 + 9.2: _ZNK9oceanbase3sql8ObOpSpec13is_vectorizedEv:1681744 + 0: 210218 + 18: _ZN9oceanbase3sql10ObOperator14startup_filterERb:24518 + 0: 1886 + 0: _ZN9oceanbase3sql10ObOperator6filterERKNS_6common8ObIArrayIPNS0_6ObExprEEERb:16974 + 2: 1886 + 36: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE5emptyEv:1531856 + 0: 191482 + 38: _ZN9oceanbase3sql10ObOperator10filter_rowERb:1782670 + 0: 5607 + 0: _ZN9oceanbase3sql10ObOperator6filterERKNS_6common8ObIArrayIPNS0_6ObExprEEERb:1743421 + 2: 5607 + 53: _ZN9oceanbase6common16ObClockGenerator8getClockEv:197915 + 4: 7659 + 5.1: 1426 + 8: 7659 + 6: _ZN9oceanbase6common16ObClockGenerator6get_usEv:14260 + 2: 1426 + 63: _ZN9oceanbase6common16ObClockGenerator8getClockEv:280792 + 4: 11036 + 5.1: 1886 + 8: 11036 + 6: _ZN9oceanbase6common16ObClockGenerator6get_usEv:18860 + 2: 1886 + 70: _ZNK9oceanbase3sql8ObOpSpec12get_phy_planEv:751852 + 0: 187963 + 70.1: _ZNK9oceanbase3sql14ObPhysicalPlan13is_vectorizedEv:1503704 + 0: 187963 + 72.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE5countEv:11524 + 0: 2881 + 72.2: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:11524 + 6: 2881 + 72.9: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE5countEv:5704 + 0: 1426 + 73: _ZNK9oceanbase3sql6ObExpr4evalERNS0_9ObEvalCtxERPNS_6common7ObDatumE:198214 + 4: 1426 + 6: 1426 + 7: 1426 + 9: 1426 + 10: 1426 + 10.1: 1426 + 11: 1426 + 13: 1426 + 15.1: 1426 + 15.2: 1426 + 17: 1426 + 18: 1426 + 20: 1426 + 21: 1426 + 22: 1426 + 24: 1426 + 9: _ZNK9oceanbase3sql6ObExpr15is_batch_resultEv:5704 + 0: 1426 + 11: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:5704 + 0: 1426 + 24: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:9982 + 0: 1426 + 76: _ZNK9oceanbase3sql6ObExpr13get_eval_infoERNS0_9ObEvalCtxE:19964 + 2: 1426 + 81: _ZN9oceanbase3sql10ObOperator21end_cpu_time_countingEv:6118860 + 2: 185420 + 2: _ZL5rdtscv:1668780 + 3: 185420 + 4: 185420 +_ZN9oceanbase6common9ObCharset8strcmpspENS0_15ObCollationTypeEPKclS4_lb:47931765:411355 + 6: 402501 + 9: 403043 + 12: 403043 _ZL22ob_strnncollsp_utf8mb4PK13ObCharsetInfoPKhmS3_mb.5aa8bf9a2f1d92c2672c2bb9fbfc2e97:417328 + 19: 0 + 8: _ZN9oceanbase6common9ObCharset17is_argument_validENS0_15ObCollationTypeEPKclS4_l:2820759 + 3: 403043 + 4: 0 + 4.2: 0 + 5: 0 + 8: 0 + 9: 0 + 11.2: 0 + 18: 0 + 19: 0 + 19.1: 0 + 21.2: 0 + 3: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:2014673 + 2: 402501 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:414067 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:1612172 + 2: 403043 +_ZN9oceanbase6common12ObMurmurHash4hashEPKvmm:47659376:47785 + 1: 46731 + 2: 47615 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:46815566 + 5: 46731 + 8: 46731 + 10: 46731 + 10.1: 635412 + 11: 21408 + 13: 635412 + 14: 635412 + 15: 635412 + 17: 635412 + 18: 635412 + 23: 44018 + 25: 0 + 27: 22399 + 29: 22399 + 31: 22399 + 33: 22399 + 35: 22399 + 37: 22399 + 38: 22399 + 41: 47615 + 42: 47615 + 43: 47615 +_ZN9oceanbase3sql13ObTableScanOp21get_next_row_with_dasEv:46547807:118739 + 1: 110910 + 2: 110910 + 4: 110910 + 7: 107514 + 7.1: 1271 + 7.2: 1271 + 8: 1271 + 11.1: 223390 + 11.3: 223390 + 13: 113448 _ZN9oceanbase3sql15DASOpResultIter12get_next_rowEv:115506 + 13.1: 120654 + 15: 5489 _ZN9oceanbase3sql15DASOpResultIter11next_resultEv:4551 + 15.1: 5753 + 17.1: 1252 + 19.1: 1266 + 19.2: 1266 + 20.1: 1266 + 23.1: 1271 + 26: 115951 + 27: 115951 + 27.1: 3209 + 30: 112853 + 36.4: 102639 + 36.5: 1252 + 4: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:776370 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:776370 + 0: 110910 + 4.2: _ZN9oceanbase3lib15get_compat_modeEv:5046084 + 2: 110610 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:2828800 + 2: 110610 + 2.1: 1271 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:27962 + 1: 1271 + 4.3: _ZN9oceanbase3lib15CompatModeGuardC2ENS0_6Worker10CompatModeE:11525376 + 2: 107514 + 2: _ZN9oceanbase3lib6Worker4selfEv:3051064 + 3: 107514 + 4: 1271 + 2.1: _ZN9oceanbase3lib6Worker22get_compatibility_modeEv:4689194 + 2: _ZN9oceanbase3lib15get_compat_modeEv:4689194 + 2: 107514 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:2753942 + 2: 107514 + 2.1: 1271 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:27962 + 1: 1271 + 3: _ZN9oceanbase3lib6Worker4selfEv:1001943 + 3: 107514 + 4: 1271 + 3.1: _ZN9oceanbase3lib6Worker22set_compatibility_modeENS1_10CompatModeE:2460633 + 2: _ZN9oceanbase3lib15set_compat_modeENS0_6Worker10CompatModeE:2460633 + 2: 107514 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:95325 + 2: 1271 + 2.1: 1271 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:27962 + 1: 1271 + 12: _ZN9oceanbase3sql10ObOperator20clear_evaluated_flagEv:1061688 + 2.1: 111290 + 2.3: 1527 + 3: 1527 + 2.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql10ObEvalInfoEE5countEv:564085 + 0: 111290 + 3: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql10ObEvalInfoEE2atEl:7635 + 6: 1527 + 3.1: _ZN9oceanbase3sql10ObEvalInfo20clear_evaluated_flagEv:18324 + 2: 1527 + 4: 1527 + 36.4: _ZN9oceanbase3lib15CompatModeGuardD2Ev:7504246 + 2.1: 102639 + 2.2: 1252 + 2: _ZN9oceanbase3lib6Worker4selfEv:2709286 + 3: 102639 + 4: 1271 + 2.1: _ZN9oceanbase3lib6Worker22set_compatibility_modeENS1_10CompatModeE:4477027 + 2: _ZN9oceanbase3lib15set_compat_modeENS0_6Worker10CompatModeE:4477027 + 2: 102639 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:2629525 + 2: 102639 + 2.1: 1271 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:27962 + 1: 1271 +_ZN9oceanbase3sql12ObSortOpImpl7CompareclEPKNS0_17ObChunkDatumStore9StoredRowES6_:46411663:217700 + 3: 190674 + 6: 190674 + 8.1: 190674 + 9: 494 + 10.1: 494 + 11.1: 190674 + 12.1: 494 + 14: 494 + 15: 494 + 17: 190674 + 17.2: 190674 + 17.3: 190674 + 17.5: 494 + 18: 190674 + 19: 190674 + 20: 190674 + 20.1: 190674 _ZN9oceanbase6common21ObNullSafeDatumStrCmpILNS0_15ObCollationTypeE45ELb0ELb1EE3cmpERKNS0_7ObDatumES6_:195962 + 21: 209500 + 22: 124123 + 23.1: 85605 + 24: 85605 + 28: 210492 + 8.1: _ZNK9oceanbase3sql12ObSortOpImpl7Compare9is_initedEv:1338670 + 0: 190674 + 11.1: _ZN9oceanbase3sql12ObSortOpImpl7Compare17fast_check_statusEv:10883034 + 3: 190674 + 4: 494 + 4: _ZN9oceanbase3sql13ObExecContext12check_statusEv:5542186 + 2: 494 + 3: 494 + 4: 494 + 5.1: 494 + 6.1: 494 + 7: 494 + 8.1: 494 + 9.1: 494 + 10: 494 + 11.1: 494 + 13.1: 494 + 14.1: 494 + 16: 494 + 17.1: 494 + 18.1: 494 + 18.2: 494 + 19: 494 + 21: 494 + 22: 494 + 23.1: 494 + 24: 494 + 25: 494 + 28: 494 + 6.1: _ZNK9oceanbase3sql17ObPhysicalPlanCtx10is_timeoutEPl:26676 + 10: 494 + 2: _ZN9oceanbase6common16ObClockGenerator8getClockEv:23218 + 4: 494 + 5.1: 494 + 8: 494 + 6: _ZN9oceanbase6common16ObClockGenerator6get_usEv:4940 + 2: 494 + 12.1: _ZNK9oceanbase3sql16ObSQLSessionInfo12is_terminateERi:45448 + 3: 494 + 5.1: 494 + 9: 494 + 12.1: 494 + 16: 494 + 19: 494 + 3: _ZNK9oceanbase3sql18ObBasicSessionInfo17get_session_stateEv:2964 + 0: 494 + 14.1: _ZN9oceanbase6common14IS_INTERRUPTEDEv:2607826 + 6.1: 494 + 2: _ZN9oceanbase6common11get_checkerEv:2595970 + 2: 494 + 2.1: 494 + 2.2: 494 + 2.1: _ZN9oceanbase6common18ObInterruptCheckerC2Ev:2549534 + 0.1: _ZN9oceanbase6common15ObInterruptCodeC2Ev:2482844 + 0: 7904 + 0: _ZN9oceanbase5obrpc20ObInterruptStackInfoC2Ev:1620320 + 0: 7904 + 2: 7904 + 0.2: _Z9ob_gettidv:66690 + 3: 494 + 4: 494 + 2: _Z13get_tid_cachev:34580 + 7: 494 + 7.1: 494 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:11362 + 0: 494 + 15: _ZN9oceanbase6common18GET_INTERRUPT_CODEEv:2648334 + 2: 494 + 2.1: 494 + 2.3: 494 + 7.1: 494 + 2.2: _ZN9oceanbase6common15ObInterruptCodeC2Ei:13832 + 0: 494 + 0: _ZN9oceanbase5obrpc20ObInterruptStackInfoC2Ev:7410 + 0: 494 + 2: 494 + 3: _ZN9oceanbase6common11get_checkerEv:2595970 + 2: 494 + 2.1: 494 + 2.2: 494 + 2.1: _ZN9oceanbase6common18ObInterruptCheckerC2Ev:2549534 + 0.1: _ZN9oceanbase6common15ObInterruptCodeC2Ev:2482844 + 0: 7904 + 0: _ZN9oceanbase5obrpc20ObInterruptStackInfoC2Ev:1620320 + 0: 7904 + 2: 7904 + 0.2: _Z9ob_gettidv:66690 + 3: 494 + 4: 494 + 2: _Z13get_tid_cachev:34580 + 7: 494 + 7.1: 494 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:11362 + 0: 494 + 18.1: _ZN9oceanbase3lib6Worker4selfEv:29640 + 3: 494 + 4: 494 + 22: _ZN9oceanbase3sql13ObExecContext18check_extra_statusEv:55328 + 3: 494 + 4: 494 + 5.1: 494 + 5.3: 494 + 5.5: 494 + 6: 494 + 7.1: 494 + 11: 494 + 3: _ZNK9oceanbase6common7ObDListINS_3sql19ObIExtraStatusCheckEE8is_emptyEv:4940 + 0: 494 + 5.5: _ZN9oceanbase6common11ObDLinkBaseINS_3sql19ObIExtraStatusCheckEE8get_nextEv:1976 + 0: 494 + 18: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql20ObSortFieldCollationEE2atEl:762696 + 6: 190674 + 20: _ZNK9oceanbase6common12ObIArrayWrapINS0_9ObCmpFuncEE2atEl:762696 + 6: 190674 +_ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScanner18inner_get_next_rowERPKNS0_10ObDatumRowE:45661558:111584 + 1: 102305 + 2: 102305 + 4: 102305 + 5: 102 _ZN9oceanbase12blocksstable23ObIMicroBlockRowScanner18inner_get_next_rowERPKNS0_10ObDatumRowE:102 + 7.1: 0 + 12: 99210 + 14.1: 0 + 18: 99174 + 11: _ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScanner19reuse_cur_micro_rowEv:2657408 + 2: _ZN9oceanbase12blocksstable12ObDmlRowFlag8set_flagENS0_9ObDmlFlagE:1430912 + 3: 102208 + 3: _ZN9oceanbase7storage8ObNopPos5resetEv:1226496 + 2: 102208 + 12: _ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScanner23inner_get_next_row_implERPKNS0_10ObDatumRowE:36110526 + 2: 102208 + 4: 102208 + 6: 102208 + 7: 102208 + 8: 102208 + 9: 102208 + 11.1: 232 + 12: 102763 + 13: 102763 + 14: 108876 _ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScanner21locate_cursor_to_readERb:104434 + 16.1: 0 + 22.1: 108906 + 23: 106082 + 24: 106082 + 25: 106082 + 26: 106319 _ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScanner27inner_get_next_row_directlyERPKNS0_10ObDatumRowERbS6_:107199 + 28.1: 11 + 31.1: 13 _ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScanner24inner_inner_get_next_rowERPKNS0_10ObDatumRowERbS6_S6_:2 + 33.1: 11 + 36: 106651 + 39.1: 106411 _ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScanner10do_compactEPKNS0_10ObDatumRowERS2_Rb:107249 + 40.1: 11 + 42: 99811 + 43: 99811 + 45: 99811 + 54: 103496 + 55: 104427 + 56: 104427 _ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScanner19cache_cur_micro_rowEbb:107931 + 57.1: 0 + 67: 0 + 67.1: 103350 + 68: 103113 + 70.1: 103113 + 74: 11 + 76: 96445 + 81: 99185 + 82: 96445 + 83.1: 16 + 86: 96445 + 87: 96445 + 91: 16 + 46: _ZN9oceanbase12blocksstable10ObDatumRow23set_have_uncommited_rowEb:108 + 0: 12 + 68: _ZNK9oceanbase12blocksstable23ObIMicroBlockRowScanner12is_row_emptyERKNS0_10ObDatumRowE:928017 + 1: _ZNK9oceanbase12blocksstable12ObDmlRowFlag12is_not_existEv:928017 + 2: 103113 + 70.1: _ZNK9oceanbase12blocksstable23ObIMicroBlockRowScanner12is_row_emptyERKNS0_10ObDatumRowE:928017 + 1: _ZNK9oceanbase12blocksstable12ObDmlRowFlag12is_not_existEv:928017 + 2: 103113 + 75: _ZN9oceanbase12blocksstable21ObMultiVersionRowFlag19set_uncommitted_rowEb:675115 + 2: 96445 + 76: _ZN9oceanbase11transaction9ObTransID5resetEv:1253785 + 0: 96445 + 82: _ZNK9oceanbase12blocksstable10ObDatumRow8is_validEv:1736010 + 0: 96445 + 0.1: 96445 +_ZN9oceanbase8observer16ObMPPacketSender15response_packetERNS_7obmysql13ObMySQLPacketEPNS_3sql16ObSQLSessionInfoE:45660915:97471 + 1: 91890 + 2: 91890 + 3: 91890 + 4: 91890 + 5: 91890 + 6: 219 + 7.1: 219 + 8.1: 91890 + 10.1: 91890 + 10.2: 219 + 11: 219 + 12: 219 + 12.2: 219 + 15.1: 216 + 16.1: 91890 + 16.2: 219 + 17: 219 + 18: 219 + 18.2: 219 + 21.1: 219 + 27: 88405 + 28.1: 216 + 30: 92153 + 31: 92153 + 32: 96253 _ZN9oceanbase8observer16ObMPPacketSender15try_encode_withERNS_7obmysql13ObMySQLPacketElRll:93224 + 36.1: 216 + 39: 96253 + 40.1: 97176 + 40.2: 219 + 40.3: 219 + 40.4: 219 + 40.6: 219 + 40.7: 219 + 41.1: 94437 + 41.2: 219 + 41.3: 219 + 41.4: 219 + 41.6: 219 + 41.7: 219 + 45: 94437 + 49: 94437 + 49.1: 94437 + 51: 94437 + 3: _ZN9oceanbase6common13ObSEArrayImplINS_7obmysql10ObCommonKVINS0_5ObObjES4_EELl4ENS0_19ModulePageAllocatorELb0EE5resetEv:7544916 + 0: 91890 + 0: _ZN9oceanbase6common13ObSEArrayImplINS_7obmysql10ObCommonKVINS0_5ObObjES4_EELl4ENS0_19ModulePageAllocatorELb0EE7destroyEv:5336100 + 9: 91890 + 11: 216 + 13: 91890 + 15: 91890 + 24: 91890 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_7obmysql10ObCommonKVINS0_5ObObjES4_EELl4ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:3888 + 4: 216 + 4: _ZN9oceanbase6common13ObSEArrayImplIPNS_7obmysql12Obp20EncoderELl4ENS0_19ModulePageAllocatorELb0EE5resetEv:7545348 + 0: 91890 + 0: _ZN9oceanbase6common13ObSEArrayImplIPNS_7obmysql12Obp20EncoderELl4ENS0_19ModulePageAllocatorELb0EE7destroyEv:5336532 + 9: 91890 + 11: 216 + 13: 91890 + 15: 91890 + 24: 91890 + 10: _ZN9oceanbase6common13ObSEArrayImplIPNS_7obmysql12Obp20EncoderELl4ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:4320 + 4: 216 + 10.1: _ZNK9oceanbase7obmysql22ObProxyCapabilityFlags26is_full_link_trace_supportEv:2205360 + 0: 91890 + 1: 91890 + 12: _ZN9oceanbase3sql18ObBasicSessionInfo20get_extra_info_allocEv:1533 + 0: 219 + 12.1: _ZNK9oceanbase7obmysql22ObProxyCapabilityFlags25is_new_extra_info_supportEv:2847 + 0: 219 + 16.1: _ZNK9oceanbase8observer14ObSMConnection24is_support_sessinfo_syncEv:1289088 + 1: 219 + 2: 91890 + 18: _ZN9oceanbase3sql18ObBasicSessionInfo20get_extra_info_allocEv:1533 + 0: 219 + 18.1: _ZNK9oceanbase7obmysql22ObProxyCapabilityFlags25is_new_extra_info_supportEv:3723 + 1: 219 + 27: _ZN9oceanbase8observer16ObMPPacketSender11alloc_ezbufEv:2048820 + 2: 91890 + 5: 91890 + 6: 3709 + 7: 216 + 8.1: 216 + 9.1: 3934 + 10: 216 + 11.1: 216 + 14: 3934 + 15: 3934 + 19: 3934 + 9.1: _ZN9oceanbase3rpc20ObSqlRequestOperator25alloc_sql_response_bufferEPNS0_9ObRequestEl:100568 + 1: 3897 _ZN9oceanbase3rpc20ObSqlRequestOperator12get_operatorEPKNS0_9ObRequestE:3547 + 1.1: 3897 _ZN9oceanbase7obmysql24ObEasySqlRequestOperator25alloc_sql_response_bufferEPNS_3rpc9ObRequestEl:3797 + 15: _ZN9oceanbase6common13init_easy_bufEP10easy_buf_tPcP14easy_request_tm:173096 + 3: 3934 + 4: 3934 + 5: 3934 + 6: 3934 + 10: 3934 + 11.1: 3934 + 31: _ZN9oceanbase7obmysql13ObMySQLPacket7set_seqEh:368612 + 2: 92153 + 39: _ZNK9oceanbase7obmysql13ObMySQLPacket7get_seqEv:385012 + 2: 96253 + 40.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:485833 + 2: 96253 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:99151 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:388704 + 2: 97176 + 41.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:475800 + 2: 97176 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:98968 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:377748 + 2: 94437 + 49: _ZN9oceanbase3sql18ObBasicSessionInfo20get_extra_info_allocEv:661059 + 0: 94437 + 49.1: _ZN9oceanbase6common16ObArenaAllocator5resetEv:4679712 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:4679712 + 4.1: 94437 + 6: 216 + 7: 219 + 13: 94437 + 14: 94437 + 15: 94437 + 18: 94437 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:1314 + 0: 219 + 5.1: _ZL12abort_unlessb:4788 + 5: 219 + 6: 216 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:32016 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:32016 + 0: 219 + 0.2: 219 + 0.1: _ZN9oceanbase6common7ob_freeEPv:22380 + 2: 219 + 3: 219 + 4: 219 + 5: 219 + 4: _ZL12abort_unlessb:6930 + 5: 219 + 6: 216 +_ZN9oceanbase7storage23ObScanMergeLoserTreeCmp14compare_rowkeyERKNS_12blocksstable10ObDatumRowES5_Ri:41454894:100026 + 1: 95642 + 2: 95642 + 3: 95642 + 3.1: 95642 + 3.2: 95642 + 3.3: 95642 + 4: 0 + 5.1: 0 + 6.1: 95642 + 6.2: 95642 + 6.3: 95642 + 7: 0 + 8.1: 0 + 12.1: 95642 + 13.1: 0 + 14.1: 95642 + 14.2: 95642 + 15.1: 0 + 16.1: 95642 _ZNK9oceanbase12blocksstable13ObDatumRowkey7compareERKS1_RKNS0_19ObStorageDatumUtilsERi:99892 + 16.2: 100227 + 17.1: 0 + 20: 100227 + 3: _ZNK9oceanbase12blocksstable10ObDatumRow8is_validEv:2295408 + 0: 95642 + 0.1: 95642 + 3.1: _ZNK9oceanbase12blocksstable10ObDatumRow8is_validEv:2295408 + 0: 95642 + 0.1: 95642 + 6.1: _ZNK9oceanbase12blocksstable10ObDatumRow16get_column_countEv:669494 + 0: 95642 + 6.2: _ZNK9oceanbase12blocksstable10ObDatumRow16get_column_countEv:860778 + 0: 95642 + 10: _ZN9oceanbase12blocksstable13ObDatumRowkeyC2Ev:2486692 + 0.4: _ZN9oceanbase12blocksstable13ObDatumRowkey5resetEv:2486692 + 0: 95642 + 11: _ZN9oceanbase12blocksstable13ObDatumRowkeyC2Ev:3730038 + 0.4: _ZN9oceanbase12blocksstable13ObDatumRowkey5resetEv:3730038 + 0: 95642 + 12: _ZN9oceanbase12blocksstable13ObDatumRowkey6assignEPNS0_14ObStorageDatumEi:4782100 + 2: 95642 + 4: 95642 + 4.2: 95642 + 5: 0 + 6.1: 0 + 9: 95642 + 10: 95642 + 13: 0 + 8: _ZN9oceanbase12blocksstable13ObDatumRowkey5resetEv:2199766 + 0: 95642 + 14.1: _ZN9oceanbase12blocksstable13ObDatumRowkey6assignEPNS0_14ObStorageDatumEi:7077508 + 2: 95642 + 4: 95642 + 4.2: 95642 + 5: 0 + 6.1: 0 + 9: 95642 + 10: 95642 + 13: 0 + 8: _ZN9oceanbase12blocksstable13ObDatumRowkey5resetEv:3347470 + 0: 95642 +_ZN9oceanbase8memtable22ObMemtableScanIterator18inner_get_next_rowERPKNS_12blocksstable10ObDatumRowE:41356298:34720 + 1: 34335 + 2: 34335 + 3: 34335 + 4: 34335 + 6: 34335 + 7.1: 0 + 8: 0 + 9.1: 38716 _ZN9oceanbase8memtable22ObMemtableScanIterator12prepare_scanEv:38852 + 10.1: 0 + 11.1: 38716 _ZN9oceanbase8memtable17ObMvccRowIterator12get_next_rowERPKNS0_13ObMemtableKeyERPNS0_19ObMvccValueIteratorERhb:38751 + 12: 36539 + 13: 974 + 14.1: 0 + 16: 0 + 16.3: 974 + 19: 35533 + 24.1: 35533 + 25: 35533 + 28: 35533 + 29.1: 456 + 32: 37293 + 35: 456 + 36.1: 456 + 38.1: 456 + 38.3: 456 + 39: 456 + 40: 456 + 41: 456 + 48: 37293 + 49: 37293 + 50: 37293 + 55: 37293 + 56: 974 + 58: 38269 + 21: _ZNK9oceanbase8memtable13ObMemtableKey10get_rowkeyERPKNS_6common13ObStoreRowkeyE:497462 + 0: 35533 + 24.1: _ZNK9oceanbase8memtable19ObMvccValueIterator14get_trans_nodeEv:142132 + 0: 35533 + 25.2: _ZNK9oceanbase8memtable15ObMvccTransNode12is_committedEv:639594 + 0: 35533 + 28: _ZN9oceanbase8memtable9ObReadRow11iterate_rowERKNS_7storage15ObTableReadInfoERKNS_6common13ObStoreRowkeyERNS6_12ObIAllocatorERNS0_20ObIMvccValueIteratorERNS_12blocksstable10ObDatumRowERNS0_11ObNopBitMapERl:28759803 + 9: 35533 + 11: 39771 + 12.1: 456 + 13.1: 37140 + 14.1: 456 + 16: 37140 + 17: 10863 + 22: 11054 + 10: _ZN9oceanbase8memtable11ObNopBitMap5reuseEv:1599216 + 2: 35533 + 3: 35544 + 11: _ZN9oceanbase8memtable9ObReadRow15iterate_row_keyERKNS_6common13ObStoreRowkeyERNS_12blocksstable10ObDatumRowE:8598418 + 2: 35544 + 4.1: 37860 + 4.2: 72397 + 4.3: 72397 + 4.5: 37860 + 5: 36645 + 6.1: 456 + 7.1: 36645 + 8: 456 + 9.1: 456 + 3: _ZNK9oceanbase6common13ObStoreRowkey11get_obj_ptrEv:106632 + 0: _ZNK9oceanbase6common8ObRowkey11get_obj_ptrEv:106632 + 0: 35544 + 5: _ZN9oceanbase12blocksstable14ObStorageDatum16from_obj_enhanceERKNS_6common5ObObjE:3646160 + 2: 34548 + 5: 34548 + 7.1: 36645 + 8.1: 456 + 12: 456 + 4: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:725508 + 0: 34548 + 5: _ZNK9oceanbase6common5ObObj6is_extEv:172740 + 0: _ZNK9oceanbase6common9ObObjMeta6is_extEv:172740 + 0: 34548 + 6: _ZNK9oceanbase6common5ObObj7get_extEv:2280 + 4: 456 + 6.1: _ZN9oceanbase12blocksstable14ObStorageDatum13set_ext_valueEl:20064 + 1: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:4104 + 0: 456 + 1.1: _ZN9oceanbase6common11ObDatumDesc7set_extEv:3192 + 0: 456 + 1.3: _ZN9oceanbase6common5ObObj7set_extEl:12768 + 3: 456 + 4: 456 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:6840 + 0: 456 + 0: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:3192 + 0: 456 + 0.2: _ZN9oceanbase6common9ObObjMeta15set_extend_typeEh:2280 + 0: 456 + 7.1: _ZN9oceanbase6common7ObDatum8from_objERKNS0_5ObObjE:1835309 + 2: 34548 + 3: 34548 + 83: 434 + 84.1: 434 + 88: 36645 + 3: _ZNK9oceanbase6common5ObObj7is_nullEv:310932 + 0: _ZNK9oceanbase6common9ObObjMeta7is_nullEv:310932 + 0: 34548 + 4: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:5472 + 0: 456 + 26: _ZN9oceanbase6common7ObDatum9obj2datumILNS0_17ObObjDatumMapTypeE1EEEvRKNS0_5ObObjE:0 + 2: 0 + 3: 0 + 32: _ZN9oceanbase6common7ObDatum9obj2datumILNS0_17ObObjDatumMapTypeE2EEEvRKNS0_5ObObjE:52186 + 2: 434 + 3: 434 + 4: 434 + 5: 456 + 7: 456 + 9: 456 + 10: 456 + 55: _ZN9oceanbase6common7ObDatum9obj2datumILNS0_17ObObjDatumMapTypeE3EEEvRKNS0_5ObObjE:549675 + 2: 36645 + 3: 36645 + 61: _ZN9oceanbase6common7ObDatum9obj2datumILNS0_17ObObjDatumMapTypeE4EEEvRKNS0_5ObObjE:8246 + 2: 434 + 3: 434 + 65: _ZN9oceanbase6common7ObDatum9obj2datumILNS0_17ObObjDatumMapTypeE5EEEvRKNS0_5ObObjE:8680 + 2: 434 + 3: 434 + 70: _ZN9oceanbase6common7ObDatum9obj2datumILNS0_17ObObjDatumMapTypeE6EEEvRKNS0_5ObObjE:12586 + 2: 434 + 3: 434 + 4: 434 + 75: _ZN9oceanbase6common7ObDatum9obj2datumILNS0_17ObObjDatumMapTypeE7EEEvRKNS0_5ObObjE:13454 + 2: 434 + 3: 434 + 4: 434 + 79: _ZN9oceanbase6common7ObDatum9obj2datumILNS0_17ObObjDatumMapTypeE8EEEvRKNS0_5ObObjE:8680 + 2: 434 + 3: _ZN9oceanbase6common11ObDatumDesc7set_extEv:5208 + 0: 434 + 7.1: _ZNK9oceanbase12blocksstable14ObStorageDatum12is_nop_valueEv:403095 + 0: _ZNK9oceanbase6common7ObDatum6is_nopEv:403095 + 0: 36645 + 0.1: 0 + 0: _ZNK9oceanbase6common11ObDatumDesc6is_extEv:366450 + 0: 36645 + 0.1: _ZNK9oceanbase6common5ObObj12is_nop_valueEv:0 + 2: 0 + 2.1: 0 + 13.1: _ZN9oceanbase8memtable9ObReadRow18iterate_row_value_ERKNS_7storage15ObTableReadInfoERNS_6common12ObIAllocatorERNS0_20ObIMvccValueIteratorERNS_12blocksstable10ObDatumRowERNS0_11ObNopBitMapERl:14636773 + 8: 39771 + 9: 39771 + 11: 39771 + 12: 39771 _ZN9oceanbase12blocksstable11ObRowReaderC1Ev:40729 + 13: 456 + 15: 35512 + 16.1: 35512 + 16.2: 52905 _ZN9oceanbase8memtable19ObMvccValueIterator13get_next_nodeERPKv:53590 + 16.3: 53026 + 16.4: 53026 + 17: 41957 + 18: 434 + 19.1: 434 + 25: 41957 + 25.1: 41957 + 25.3: 41957 + 26.1: 41957 + 27: 35355 + 33.1: 41980 + 34: 41980 + 39: 41980 _ZN9oceanbase12blocksstable11ObRowReader17read_memtable_rowEPKclRKNS_7storage15ObTableReadInfoERNS0_10ObDatumRowERNS_8memtable11ObNopBitMapERb:42987 + 39.1: 44569 + 40.1: 434 + 41.1: 44569 + 42: 37786 + 44: 434 + 44.1: 44604 + 51: 11250 + 51.3: 37800 + 14: _ZN9oceanbase12blocksstable12ObDmlRowFlag8set_flagENS0_9ObDmlFlagE:284096 + 3: 35512 + 24: _ZNK9oceanbase8memtable15ObMvccTransNode12is_committedEv:736020 + 0: 41957 + 26: _ZNK9oceanbase12blocksstable12ObDmlRowFlag12is_not_existEv:419570 + 2: 41957 + 28: _ZN9oceanbase12blocksstable12ObDmlRowFlag8set_flagENS0_9ObDmlFlagE:70710 + 3: 35355 + 33: _ZSt3maxIlERKT_S2_S2_:419800 + 5: 41980 + 35: _ZN9oceanbase12blocksstable10ObDatumRow23set_have_uncommited_rowEb:4340 + 0: 434 + 53.6: _ZN9oceanbase12blocksstable11ObRowReaderD2Ev:988184 + 0: 37800 _ZN9oceanbase12blocksstable11ObRowReader5resetEv:38023 + 0.2: 456 + 53.7: _ZN9oceanbase12blocksstable11ObRowReaderD2Ev:19152 + 0: 456 + 0.2: 456 + 16: _ZN9oceanbase8memtable11ObNopBitMap8is_emptyEv:445680 + 2: 37140 + 17: _ZN9oceanbase8memtable11ObNopBitMap14set_nop_datumsEPNS_12blocksstable14ObStorageDatumE:2117462 + 2: 10863 + 3: 10863 + 5: 10863 + 7: 10863 + 8.1: 11054 + 8.3: 11054 + 9: 10863 + 12.1: 10863 + 13: 10863 + 14: 10863 + 15: 10863 + 14: _ZN9oceanbase12blocksstable14ObStorageDatum7set_nopEv:504776 + 0: _ZN9oceanbase12blocksstable14ObStorageDatum13set_ext_valueEl:504776 + 1: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:188216 + 0: 10863 + 1.1: _ZN9oceanbase6common11ObDatumDesc7set_extEv:105672 + 0: 10863 + 1.3: _ZN9oceanbase6common5ObObj7set_extEl:210888 + 4: 10863 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:105216 + 0: 10863 + 34: _ZNK9oceanbase7storage16ObTableIterParam17get_out_col_descsEv:5928 + 2: 456 + 38.1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:6384 + 0: 456 + 39: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE2atEl:4560 + 6: 456 + 40: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:8208 + 0: 456 + 41: _ZN9oceanbase6common7ObDatum7set_intEl:7296 + 0: 456 + 50: _ZNK9oceanbase6common11ObQueryFlag20iter_uncommitted_rowEv:372930 + 0: 37293 + 51: _ZN9oceanbase12blocksstable12ObDmlRowFlag8set_flagENS0_9ObDmlFlagE:10488 + 3: 456 +_ZSt22__final_insertion_sortIPPN9oceanbase3sql17ObChunkDatumStore9StoredRowEN9__gnu_cxx5__ops15_Iter_comp_iterINS1_12ObSortOpImpl16CopyableComparerEEEEvT_SC_T0_:41299777:491 + 2: 462 + 3: 462 + 5: 473 + 10: 0 + 11: 503 + 5: _ZSt16__insertion_sortIPPN9oceanbase3sql17ObChunkDatumStore9StoredRowEN9__gnu_cxx5__ops15_Iter_comp_iterINS1_12ObSortOpImpl16CopyableComparerEEEEvT_SC_T0_:6597446 + 5.1: 7669 + 5.3: 7669 + 7: 7347 + 10: 7347 + 7: _ZN9__gnu_cxx5__ops15_Iter_comp_iterIN9oceanbase3sql12ObSortOpImpl16CopyableComparerEEclIPPNS3_17ObChunkDatumStore9StoredRowESB_EEbT_T0_:1393797 + 1: 7416 + 1: _ZN9oceanbase3sql12ObSortOpImpl16CopyableComparerclEPKNS0_17ObChunkDatumStore9StoredRowES6_:1276551 + 2: _ZN9oceanbase3sql12ObSortOpImpl7CompareclEPKNS0_17ObChunkDatumStore9StoredRowES6_:1276551 + 6: 7416 + 8.1: 7416 + 9: 0 + 10.1: 0 + 11.1: 7416 + 12.1: 0 + 14: 0 + 15: 0 + 17: 7416 + 17.2: 7416 + 17.3: 7416 + 17.5: 0 + 18: 7416 + 19: 7416 + 20: 7416 + 20.1: 7416 _ZN9oceanbase6common21ObNullSafeDatumStrCmpILNS0_15ObCollationTypeE45ELb0ELb1EE3cmpERKNS0_7ObDatumES6_:7922 + 21: 7931 + 22: 1386 + 23.1: 6432 + 24: 6432 + 28: 7347 + 8.1: _ZNK9oceanbase3sql12ObSortOpImpl7Compare9is_initedEv:51912 + 0: 7416 + 11.1: _ZN9oceanbase3sql12ObSortOpImpl7Compare17fast_check_statusEv:207648 + 3: 7416 + 4: 0 + 4: _ZN9oceanbase3sql13ObExecContext12check_statusEv:0 + 2: 0 + 3: 0 + 4: 0 + 5.1: 0 + 6.1: 0 + 7: 0 + 8.1: 0 + 9.1: 0 + 10: 0 + 11.1: 0 + 13.1: 0 + 14.1: 0 + 16: 0 + 17.1: 0 + 18.1: 0 + 18.2: 0 + 19: 0 + 21: 0 + 22: 0 + 23.1: 0 + 24: 0 + 25: 0 + 28: 0 + 6.1: _ZNK9oceanbase3sql17ObPhysicalPlanCtx10is_timeoutEPl:0 + 10: 0 + 2: _ZN9oceanbase6common16ObClockGenerator8getClockEv:0 + 4: 0 + 5.1: 0 + 8: 0 + 6: _ZN9oceanbase6common16ObClockGenerator6get_usEv:0 + 2: 0 + 12.1: _ZNK9oceanbase3sql16ObSQLSessionInfo12is_terminateERi:0 + 3: 0 + 5.1: 0 + 9: 0 + 12.1: 0 + 16: 0 + 19: 0 + 3: _ZNK9oceanbase3sql18ObBasicSessionInfo17get_session_stateEv:0 + 0: 0 + 14.1: _ZN9oceanbase6common14IS_INTERRUPTEDEv:0 + 6.1: 0 + 2: _ZN9oceanbase6common11get_checkerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.1: _ZN9oceanbase6common18ObInterruptCheckerC2Ev:0 + 0.1: _ZN9oceanbase6common15ObInterruptCodeC2Ev:0 + 0: 0 + 0: _ZN9oceanbase5obrpc20ObInterruptStackInfoC2Ev:0 + 0: 0 + 2: 0 + 0.2: _Z9ob_gettidv:0 + 3: 0 + 4: 0 + 2: _Z13get_tid_cachev:0 + 7: 0 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 + 15: _ZN9oceanbase6common18GET_INTERRUPT_CODEEv:0 + 2: 0 + 2.1: 0 + 2.3: 0 + 7.1: 0 + 2.2: _ZN9oceanbase6common15ObInterruptCodeC2Ei:0 + 0: 0 + 0: _ZN9oceanbase5obrpc20ObInterruptStackInfoC2Ev:0 + 0: 0 + 2: 0 + 3: _ZN9oceanbase6common11get_checkerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.1: _ZN9oceanbase6common18ObInterruptCheckerC2Ev:0 + 0.1: _ZN9oceanbase6common15ObInterruptCodeC2Ev:0 + 0: 0 + 0: _ZN9oceanbase5obrpc20ObInterruptStackInfoC2Ev:0 + 0: 0 + 2: 0 + 0.2: _Z9ob_gettidv:0 + 3: 0 + 4: 0 + 2: _Z13get_tid_cachev:0 + 7: 0 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 + 18.1: _ZN9oceanbase3lib6Worker4selfEv:0 + 3: 0 + 4: 0 + 22: _ZN9oceanbase3sql13ObExecContext18check_extra_statusEv:0 + 3: 0 + 4: 0 + 5.1: 0 + 5.3: 0 + 5.5: 0 + 6: 0 + 7.1: 0 + 11: 0 + 3: _ZNK9oceanbase6common7ObDListINS_3sql19ObIExtraStatusCheckEE8is_emptyEv:0 + 0: 0 + 5.5: _ZN9oceanbase6common11ObDLinkBaseINS_3sql19ObIExtraStatusCheckEE8get_nextEv:0 + 0: 0 + 18: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql20ObSortFieldCollationEE2atEl:29664 + 6: 7416 + 20: _ZNK9oceanbase6common12ObIArrayWrapINS0_9ObCmpFuncEE2atEl:29664 + 6: 7416 + 11: _ZSt13move_backwardIPPN9oceanbase3sql17ObChunkDatumStore9StoredRowES5_ET0_T_S7_S6_:47365 + 10.1: _ZSt23__copy_move_backward_a2ILb1EPPN9oceanbase3sql17ObChunkDatumStore9StoredRowES5_ET1_T0_S7_S6_:47365 + 2: _ZSt22__copy_move_backward_aILb1EPPN9oceanbase3sql17ObChunkDatumStore9StoredRowES5_ET1_T0_S7_S6_:47365 + 10: _ZNSt20__copy_move_backwardILb1ELb1ESt26random_access_iterator_tagE13__copy_move_bIPN9oceanbase3sql17ObChunkDatumStore9StoredRowEEEPT_PKS8_SB_S9_:47365 + 7: 1396 + 9: 1396 + 15: _ZSt25__unguarded_linear_insertIPPN9oceanbase3sql17ObChunkDatumStore9StoredRowEN9__gnu_cxx5__ops14_Val_comp_iterINS1_12ObSortOpImpl16CopyableComparerEEEEvT_T0_:4739537 + 7.1: 23602 + 9: 17228 + 7.1: _ZN9__gnu_cxx5__ops14_Val_comp_iterIN9oceanbase3sql12ObSortOpImpl16CopyableComparerEEclIPNS3_17ObChunkDatumStore9StoredRowEPSA_EEbRT_T0_:4457515 + 1: 17228 + 1: _ZN9oceanbase3sql12ObSortOpImpl16CopyableComparerclEPKNS0_17ObChunkDatumStore9StoredRowES6_:4179235 + 2: _ZN9oceanbase3sql12ObSortOpImpl7CompareclEPKNS0_17ObChunkDatumStore9StoredRowES6_:4179235 + 6: 17228 + 8.1: 22124 + 9: 0 + 10.1: 0 + 11.1: 22124 + 12.1: 0 + 14: 0 + 15: 0 + 17: 22124 + 17.2: 22124 + 17.3: 22124 + 17.5: 0 + 18: 22124 + 19: 22124 + 20: 22124 + 20.1: 22124 _ZN9oceanbase6common21ObNullSafeDatumStrCmpILNS0_15ObCollationTypeE45ELb0ELb1EE3cmpERKNS0_7ObDatumES6_:23355 + 21: 24338 + 22: 17228 + 23.1: 6290 + 24: 6290 + 28: 23602 + 8.1: _ZNK9oceanbase3sql12ObSortOpImpl7Compare9is_initedEv:154868 + 0: 22124 + 11.1: _ZN9oceanbase3sql12ObSortOpImpl7Compare17fast_check_statusEv:708045 + 3: 22124 + 4: 0 + 4: _ZN9oceanbase3sql13ObExecContext12check_statusEv:77 + 2: 0 + 3: 0 + 4: 0 + 5.1: 0 + 6.1: 0 + 7: 0 + 8.1: 0 + 9.1: 0 + 10: 0 + 11.1: 0 + 13.1: 0 + 14.1: 0 + 16: 0 + 17.1: 0 + 18.1: 0 + 18.2: 0 + 19: 0 + 21: 0 + 22: 0 + 23.1: 0 + 24: 0 + 25: 0 + 28: 0 + 6.1: _ZNK9oceanbase3sql17ObPhysicalPlanCtx10is_timeoutEPl:0 + 10: 0 + 2: _ZN9oceanbase6common16ObClockGenerator8getClockEv:0 + 4: 0 + 5.1: 0 + 8: 0 + 6: _ZN9oceanbase6common16ObClockGenerator6get_usEv:0 + 2: 0 + 12.1: _ZNK9oceanbase3sql16ObSQLSessionInfo12is_terminateERi:0 + 3: 0 + 5.1: 0 + 9: 0 + 12.1: 0 + 16: 0 + 19: 0 + 3: _ZNK9oceanbase3sql18ObBasicSessionInfo17get_session_stateEv:0 + 0: 0 + 14.1: _ZN9oceanbase6common14IS_INTERRUPTEDEv:0 + 6.1: 0 + 2: _ZN9oceanbase6common11get_checkerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.1: _ZN9oceanbase6common18ObInterruptCheckerC2Ev:0 + 0.1: _ZN9oceanbase6common15ObInterruptCodeC2Ev:0 + 0: 0 + 0: _ZN9oceanbase5obrpc20ObInterruptStackInfoC2Ev:0 + 0: 0 + 2: 0 + 0.2: _Z9ob_gettidv:0 + 3: 0 + 4: 0 + 2: _Z13get_tid_cachev:0 + 7: 0 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 + 15: _ZN9oceanbase6common18GET_INTERRUPT_CODEEv:0 + 2: 0 + 2.1: 0 + 2.3: 0 + 7.1: 0 + 2.2: _ZN9oceanbase6common15ObInterruptCodeC2Ei:0 + 0: 0 + 0: _ZN9oceanbase5obrpc20ObInterruptStackInfoC2Ev:0 + 0: 0 + 2: 0 + 3: _ZN9oceanbase6common11get_checkerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.1: _ZN9oceanbase6common18ObInterruptCheckerC2Ev:0 + 0.1: _ZN9oceanbase6common15ObInterruptCodeC2Ev:0 + 0: 0 + 0: _ZN9oceanbase5obrpc20ObInterruptStackInfoC2Ev:0 + 0: 0 + 2: 0 + 0.2: _Z9ob_gettidv:0 + 3: 0 + 4: 0 + 2: _Z13get_tid_cachev:0 + 7: 0 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 + 18.1: _ZN9oceanbase3lib6Worker4selfEv:0 + 3: 0 + 4: 0 + 22: _ZN9oceanbase3sql13ObExecContext18check_extra_statusEv:77 + 3: 0 + 4: 0 + 5.1: 1 + 5.3: 1 + 5.5: 1 + 6: 1 + 7.1: 1 + 11: 1 + 3: _ZNK9oceanbase6common7ObDListINS_3sql19ObIExtraStatusCheckEE8is_emptyEv:0 + 0: 0 + 5.5: _ZN9oceanbase6common11ObDLinkBaseINS_3sql19ObIExtraStatusCheckEE8get_nextEv:4 + 0: 1 + 18: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql20ObSortFieldCollationEE2atEl:88496 + 6: 22124 + 20: _ZNK9oceanbase6common12ObIArrayWrapINS0_9ObCmpFuncEE2atEl:88496 + 6: 22124 + 6: _ZSt26__unguarded_insertion_sortIPPN9oceanbase3sql17ObChunkDatumStore9StoredRowEN9__gnu_cxx5__ops15_Iter_comp_iterINS1_12ObSortOpImpl16CopyableComparerEEEEvT_SC_T0_:34668274 + 3.1: 40815 + 3.3: 40340 + 4: _ZSt25__unguarded_linear_insertIPPN9oceanbase3sql17ObChunkDatumStore9StoredRowEN9__gnu_cxx5__ops14_Val_comp_iterINS1_12ObSortOpImpl16CopyableComparerEEEEvT_T0_:33978949 + 4: 40289 + 7.1: 160660 + 9: 118174 + 13: 40340 + 7.1: _ZN9__gnu_cxx5__ops14_Val_comp_iterIN9oceanbase3sql12ObSortOpImpl16CopyableComparerEEclIPNS3_17ObChunkDatumStore9StoredRowEPSA_EEbRT_T0_:31199100 + 1: 118174 + 1: _ZN9oceanbase3sql12ObSortOpImpl16CopyableComparerclEPKNS0_17ObChunkDatumStore9StoredRowES6_:29619856 + 2: _ZN9oceanbase3sql12ObSortOpImpl7CompareclEPKNS0_17ObChunkDatumStore9StoredRowES6_:29619856 + 6: 118174 + 8.1: 152952 + 9: 0 + 10.1: 0 + 11.1: 152952 + 12.1: 0 + 14: 152952 + 15: 0 + 17: 152952 + 17.2: 152952 + 17.3: 152952 + 17.5: 0 + 18: 152952 + 19: 152952 + 20: 152952 + 20.1: 152952 _ZN9oceanbase6common21ObNullSafeDatumStrCmpILNS0_15ObCollationTypeE45ELb0ELb1EE3cmpERKNS0_7ObDatumES6_:162328 + 21: 165709 + 22: 118174 + 23.1: 42281 + 24: 42281 + 28: 160660 + 8.1: _ZNK9oceanbase3sql12ObSortOpImpl7Compare9is_initedEv:1070664 + 0: 152952 + 11.1: _ZN9oceanbase3sql12ObSortOpImpl7Compare17fast_check_statusEv:5353320 + 3: 152952 + 4: 0 + 4: _ZN9oceanbase3sql13ObExecContext12check_statusEv:0 + 2: 0 + 3: 0 + 4: 0 + 5.1: 0 + 6.1: 0 + 7: 0 + 8.1: 0 + 9.1: 0 + 10: 0 + 11.1: 0 + 13.1: 0 + 14.1: 0 + 16: 0 + 17.1: 0 + 18.1: 0 + 18.2: 0 + 19: 0 + 21: 0 + 22: 0 + 23.1: 0 + 24: 0 + 25: 0 + 28: 0 + 6.1: _ZNK9oceanbase3sql17ObPhysicalPlanCtx10is_timeoutEPl:0 + 10: 0 + 2: _ZN9oceanbase6common16ObClockGenerator8getClockEv:0 + 4: 0 + 5.1: 0 + 8: 0 + 6: _ZN9oceanbase6common16ObClockGenerator6get_usEv:0 + 2: 0 + 12.1: _ZNK9oceanbase3sql16ObSQLSessionInfo12is_terminateERi:0 + 3: 0 + 5.1: 0 + 9: 0 + 12.1: 0 + 16: 0 + 19: 0 + 3: _ZNK9oceanbase3sql18ObBasicSessionInfo17get_session_stateEv:0 + 0: 0 + 14.1: _ZN9oceanbase6common14IS_INTERRUPTEDEv:0 + 6.1: 0 + 2: _ZN9oceanbase6common11get_checkerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.1: _ZN9oceanbase6common18ObInterruptCheckerC2Ev:0 + 0.1: _ZN9oceanbase6common15ObInterruptCodeC2Ev:0 + 0: 0 + 0: _ZN9oceanbase5obrpc20ObInterruptStackInfoC2Ev:0 + 0: 0 + 2: 0 + 0.2: _Z9ob_gettidv:0 + 3: 0 + 4: 0 + 2: _Z13get_tid_cachev:0 + 7: 0 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 + 15: _ZN9oceanbase6common18GET_INTERRUPT_CODEEv:0 + 2: 0 + 2.1: 0 + 2.3: 0 + 7.1: 0 + 2.2: _ZN9oceanbase6common15ObInterruptCodeC2Ei:0 + 0: 0 + 0: _ZN9oceanbase5obrpc20ObInterruptStackInfoC2Ev:0 + 0: 0 + 2: 0 + 3: _ZN9oceanbase6common11get_checkerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.1: _ZN9oceanbase6common18ObInterruptCheckerC2Ev:0 + 0.1: _ZN9oceanbase6common15ObInterruptCodeC2Ev:0 + 0: 0 + 0: _ZN9oceanbase5obrpc20ObInterruptStackInfoC2Ev:0 + 0: 0 + 2: 0 + 0.2: _Z9ob_gettidv:0 + 3: 0 + 4: 0 + 2: _Z13get_tid_cachev:0 + 7: 0 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 + 18.1: _ZN9oceanbase3lib6Worker4selfEv:0 + 3: 0 + 4: 0 + 22: _ZN9oceanbase3sql13ObExecContext18check_extra_statusEv:0 + 3: 0 + 4: 0 + 5.1: 0 + 5.3: 0 + 5.5: 0 + 6: 0 + 7.1: 0 + 11: 0 + 65033: 0 + 3: _ZNK9oceanbase6common7ObDListINS_3sql19ObIExtraStatusCheckEE8is_emptyEv:0 + 0: 0 + 5.5: _ZN9oceanbase6common11ObDLinkBaseINS_3sql19ObIExtraStatusCheckEE8get_nextEv:0 + 0: 0 + 18: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql20ObSortFieldCollationEE2atEl:611808 + 6: 152952 + 20: _ZNK9oceanbase6common12ObIArrayWrapINS0_9ObCmpFuncEE2atEl:611808 + 6: 152952 +_ZN9oceanbase3sql8ObParser19split_multiple_stmtERKNS_6common8ObStringERNS2_8ObIArrayIS3_EERNS0_13ObMPParseStatEbb:40334577:5251 + 5: 5103 + 6: 5103 + 8: 0 + 11.1: 0 + 12: 0 + 13: 0 + 21: 0 + 22: 0 + 26.1: 0 + 26.2: 0 + 27: 0 + 31: 0 + 34.1: 0 + 34.2: 0 + 35: 0 + 35.2: 0 + 36: 0 + 42: 0 + 47.1: 0 + 47.3: 0 + 50: 0 + 51: 0 + 52: 0 + 57: 0 + 59: 0 + 59.3: 0 + 60.1: 0 + 63: 0 + 63.1: 0 + 67: 0 + 69: 0 + 70: 0 + 71: 0 + 73: 0 + 76: 0 + 76.1: 0 + 76.3: 0 + 77: 0 + 77.1: 0 + 78: 0 + 79: 0 + 82.1: 0 + 83: 0 + 83.1: 0 + 86: 0 + 87: 0 + 88: 0 + 88.2: 0 + 89.1: 0 + 93: 0 + 93.1: 0 + 94: 0 + 94.1: 0 + 95: 0 + 96: 0 + 97.1: 0 + 98: 0 + 100.1: 0 + 102: 0 + 106: 4975 + 8: _ZN9oceanbase3sql8ObParser14is_single_stmtERKNS_6common8ObStringE:39749432 + 5.1: 5103 + 5.2: 5199 + 8: 5279 + 8.1: 19664 + 8.3: 248136 + 9: 248136 + 13: 4939 + 13.2: 0 + 4: _ZNK9oceanbase6common8ObString6lengthEv:35721 + 0: 5103 + 5.2: _ZNK9oceanbase6common8ObStringixEl:51510 + 0: 5199 + 9: _ZNK9oceanbase6common8ObStringixEl:10050820 + 0: 248136 + 2: 4406 + 9.2: _ZN9oceanbase6common8ObStringC2ElPKc:154143 + 1: 4671 + 2: 4671 + 3: 4671 + 5: 4671 + 12: _ZN9oceanbase3lib13is_mysql_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 15: _ZNK9oceanbase6common8ObString6lengthEv:0 + 0: 0 + 15.1: _ZNK9oceanbase6common8ObString3ptrEv:0 + 0: 0 + 15.2: _ZN9oceanbase6common8ObStringC2ElPKc:0 + 1: 0 + 2: 0 + 3: 0 + 5: 0 + 22: _ZNK9oceanbase6common8ObString6lengthEv:0 + 0: 0 + 24: _ZN9oceanbase3sql13ObMPParseStat5resetEv:0 + 2: 0 + 3: 0 + 4: 0 + 26.2: _ZNK9oceanbase6common8ObStringixEl:0 + 0: 0 + 34.2: _ZNK9oceanbase6common8ObStringixEl:0 + 0: 0 + 35: _ZN9oceanbase3lib13is_mysql_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 41: _ZN9oceanbase6common8ObStringC2Ev:0 + 1: 0 + 48: _ZN9oceanbase3lib4Flow11current_ctxEv:0 + 2: _ZN9oceanbase3lib4Flow12current_flowEv:0 + 3: 0 + 8: 0 + 12: 0 + 8.1: _ZN9oceanbase3lib4FlowC2ERNS0_13MemoryContextE:0 + 1: 0 + 3: 0 + 10: _ZN9oceanbase3lib4Flow4initEv:0 + 4: 0 + 7: 0 + 8: 0 + 9: 0 + 12: 0 + 7: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 48.1: _ZNK9oceanbase3lib13MemoryContextptEv:0 + 1: 0 + 48.2: _ZN9oceanbase3lib17__MemoryContext__20get_malloc_allocatorEv:0 + 0: 0 + 48.3: _ZN9oceanbase6common16ObArenaAllocatorC2ERNS0_12ObIAllocatorEl:0 + 1: 0 + 1.2: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 49.1: _ZN9oceanbase6common16ObArenaAllocator9set_labelERKNS_3lib7ObLabelE:0 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9set_labelERKNS_3lib7ObLabelE:0 + 0: _ZN9oceanbase6common19ModulePageAllocator9set_labelERKNS_3lib7ObLabelE:0 + 0: 0 + 60: _ZNK9oceanbase6common8ObString3ptrEv:0 + 0: 0 + 60.1: _ZN9oceanbase6common8ObStringC2ElPKc:0 + 1: 0 + 2: 0 + 3: 0 + 5: 0 + 6: 0 + 61.1: _ZN9oceanbase6common8ObStringC2ElPKc:0 + 1: 0 + 2: 0 + 3: 0 + 72: _ZNK9oceanbase6common8ObString3ptrEv:0 + 0: 0 + 72.1: _ZN9oceanbase6common8ObStringC2ElPKc:0 + 1: 0 + 2: 0 + 3: 0 + 5: 0 + 6: 0 + 76.2: _ZN9oceanbase3lib13is_mysql_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 77: _ZNK9oceanbase6common8ObString3ptrEv:0 + 0: 0 + 77.1: _ZN9oceanbase6common8ObStringC2ElPKc:0 + 1: 0 + 2: 0 + 3: 0 + 5: 0 + 6: 0 + 82: _ZNK9oceanbase6common8ObString3ptrEv:0 + 0: 0 + 82.1: _ZN9oceanbase6common8ObStringC2ElPKc:0 + 1: 0 + 2: 0 + 3: 0 + 5: 0 + 6: 0 + 88.1: _ZNK9oceanbase6common8ObString6lengthEv:0 + 0: 0 + 93: _ZNK9oceanbase6common8ObString3ptrEv:0 + 0: 0 + 93.1: _ZN9oceanbase6common8ObStringC2ElPKc:0 + 1: 0 + 2: 0 + 3: 0 + 5: 0 + 6: 0 + 97: _ZNK9oceanbase6common12ObIArrayWrapINS0_8ObStringEE5countEv:0 + 0: 0 + 103: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:0 + 0: 0 + 103.4: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:0 + 0: 0 +_ZN9oceanbase8memtable17ObMvccRowIterator12get_next_rowERPKNS0_13ObMemtableKeyERPNS0_19ObMvccValueIteratorERhb:40205170:38751 + 5: 35406 + 6: 35406 + 9: 35406 + 10: 35406 + 11.1: 26 + 12: 26 + 14.1: 1024 + 16: 35407 + 17: 35407 + 19.1: 3 + 21: 1001 + 22.1: 33870 + 23.1: 3 + 25.1: 33870 + 26.1: 27 + 28.1: 38944 + 33.1: 26 + 35: 29 _ZNK9oceanbase8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorEE13get_iter_flagEv:1 + 38: 36691 + 39: 36691 + 40: 36691 + 45: 37681 + 65309: 30 + 17: _ZN9oceanbase8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorEE4nextEb:7607994 + 3.1: 37257 + 3.2: 35804 + 4: 36838 + 4.1: 35804 + 3.1: _ZN9oceanbase8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorEE13next_internalEb:6078177 + 2: 37257 + 4: 37257 _ZN9oceanbase8keybtree13BtreeIterator8get_nextERNS_8memtable20ObStoreRowkeyWrapperERPNS2_9ObMvccRowE:37356 + 4.1: 36790 + 6.1: 27 + 10.1: 35742 + 11: 35742 + 12: 35742 + 13: 35742 + 14: 27 + 16.1: 35742 + 16.2: 26 + 17: 28 + 21: 35803 + 24: 27 + 3: _ZNK9oceanbase8memtable13ObMemtableKey10get_rowkeyEv:260799 + 0: 37257 + 3.1: _ZN9oceanbase8memtable20ObStoreRowkeyWrapperC2EPKNS_6common13ObStoreRowkeyE:260799 + 0: 37257 + 10.1: _ZN9oceanbase8memtable13ObMemtableKey6encodeEPKNS_6common13ObStoreRowkeyE:250194 + 3: 35742 + 16.1: _ZNK9oceanbase8memtable9ObMvccRow10is_partialEl:997259 + 5: 35742 + 7: 35742 + 11.1: 33869 + 12.2: 33867 + 21.1: 26 + 22: _ZN9oceanbase8keybtree13BtreeIterator5resetEv:144368 + 4: 1037 + 6: 1037 + 10: 1037 + 12: 1030 + 2: _ZN9oceanbase8keybtree13BtreeIterator7KVQueue5resetEv:4148 + 3: 1037 + 7: _ZN9oceanbase8memtable20ObStoreRowkeyWrapperC2Ev:4148 + 0: 1037 + 11: _ZN9oceanbase8keybtree8Iterator5resetEv:92470 + 3: 1030 + 4: 1030 + 11: 1030 + 2: _ZN9oceanbase8keybtree10ScanHandle5resetEv:38910 + 2: _ZN9oceanbase8keybtree10BaseHandle11release_refEv:23460 + 2: 1037 + 3: 1030 + 2: _ZN9oceanbase6common6QClock14leave_criticalEm:5779 + 1: 1037 + 2: _ZN9oceanbase6common6QClock6locateEm:162 + 0: 27 + 2.1: _ZN9oceanbase6common6QClock9ClockSlot11clear_clockEv:405 + 0: 27 + 3: _ZN9oceanbase8keybtree4Path5resetEv:15450 + 2: 1030 + 3: 1030 + 5: _ZN9oceanbase8memtable20ObStoreRowkeyWrapperC2Ev:20600 + 0: 1030 + 4.1: _ZNK9oceanbase8memtable9ObMvccRow8is_emptyEv:250628 + 0: 35804 + 22.1: _ZNK9oceanbase8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorEE7get_keyEv:474180 + 0: 33870 + 25.1: _ZNK9oceanbase8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorEE9get_valueEv:237090 + 0: 33870 + 28.1: _ZN9oceanbase8memtable19ObMvccValueIterator4initERNS0_15ObMvccAccessCtxEPKNS0_13ObMemtableKeyEPNS0_9ObMvccRowERKNS_6common11ObQueryFlagEb:18973508 + 6: 33870 + 7: 33870 + 8: 33870 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:37779 + 11: 38102 + 12: 38102 + 13: 26 + 14.1: 38102 + 17.1: 38102 + 19: 27 + 20: 27 + 23: 39623 + 24.1: 26 + 35.1: 39623 _ZZN9oceanbase8memtable19ObMvccValueIterator4initERNS0_15ObMvccAccessCtxEPKNS0_13ObMemtableKeyEPNS0_9ObMvccRowERKNS_6common11ObQueryFlagEbENK5$_110clEPKc.0340b0f4925be2641495b31f3f56bf33:39904 + 43: 38944 + 9: _ZN9oceanbase8memtable19ObMvccValueIterator5resetEv:4587868 + 2: 38102 + 3: 38102 + 6: 38102 + 10: _ZN9oceanbase6common16ObClockGenerator8getClockEv:534182 + 4: 38102 + 5.1: 26 + 8: 38102 + 6: _ZN9oceanbase6common16ObClockGenerator6get_usEv:260 + 2: 26 + 17.1: _ZNK9oceanbase6common11ObQueryFlag20iter_uncommitted_rowEv:304816 + 0: 38102 + 20: _ZNK9oceanbase8memtable9ObMvccRow13get_list_headEv:108 + 0: 27 + 23: _ZN9oceanbase8memtable19ObMvccValueIterator14lock_for_read_ERKNS_6common11ObQueryFlagE:6738216 + 2: 38102 + 5: 38102 + 7: 38102 + 10.1: 37695 + 10.3: 78153 + 10.4: 78153 + 11: 37692 + 12.1: 27 + 17: 39623 + 5: _ZNK9oceanbase8memtable9ObMvccRow13get_list_headEv:152408 + 0: 38102 + 8: _ZNK9oceanbase8memtable19ObMvccValueIterator10lock_beginERl:350316 + 2: 38952 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:38160 + 3.1: 7 + 3: _ZN9oceanbase6common14ObTscTimestamp12get_instanceEv:374 + 2: 7 + 2.1: 3 + 2.3: 3 + 2.6: 3 + 2.2: _ZN9oceanbase6common14ObTscTimestampC2Ev:57 + 1: 3 + 11: _ZN9oceanbase8memtable19ObMvccValueIterator20lock_for_read_inner_ERKNS_6common11ObQueryFlagERPNS0_15ObMvccTransNodeE:2368438 + 15: 36675 + 20: 36675 + 22: 36675 + 28.1: 36675 + 28.5: 21 + 31: 23 + 32.1: 23 + 34: 23 + 37: 36907 + 37.1: 36907 + 40: 36907 + 47.2: 9 + 53: 9 + 53.2: 9 + 58.2: 9 + 59: 9 + 72.1: 27 + 82: 9 + 83: 9 + 84: 9 + 87: 9 + 87.1: 9 + 88: 31 + 92: 9 + 92.1: 9 _ZN9oceanbase6common8function24DefaultFunctionAllocator21get_default_allocatorEv:2 + 96: 8 + 101: 10 _ZN9oceanbase7storage9ObTxTable13lock_for_readERKNS_11transaction16ObLockForReadArgElRbRlS6_RKNS_6common10ObFunctionIFiRKNS0_8ObTxDataEPNS0_9ObTxCCCtxEEEERKNS9_IFbvEEE:1 + 101.1: 10 + 108.1: 26 + 109.1: 31 + 112: 31 + 116: 34 + 118.2: 3 + 118.4: 3 + 118.6: 11 _ZN9oceanbase6common10ObFunctionIFbvEED2Ev:4 + 118.7: 10 _ZN9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEED2Ev:3 + 17: _ZNK9oceanbase8memtable15ObMvccTransNode9get_tx_idEv:146700 + 0: 36675 + 19: _ZNK9oceanbase8memtable15ObMvccTransNode10get_seq_noEv:146700 + 0: 36675 + 24: _ZNK9oceanbase6common11ObQueryFlag14is_read_latestEv:330171 + 0: 36675 + 30.1: _ZNK9oceanbase8memtable15ObMvccTransNode19is_delayed_cleanoutEv:184 + 2: 23 + 32: _ZNK9oceanbase11transaction9ObTransIDeqERKS1_:92 + 1: 23 + 34.1: _ZNK9oceanbase11transaction9ObTransIDeqERKS1_:84 + 1: 21 + 37: _ZNK9oceanbase8memtable15ObMvccTransNode12is_committedEv:147628 + 0: 36907 + 47.1: _ZNK9oceanbase8memtable15ObMvccTransNode10is_abortedEv:90 + 0: 9 + 65510.1: 9 + 53.1: _ZNK9oceanbase11transaction9ObTransIDeqERKS1_:36 + 1: 9 + 58.1: _ZNK9oceanbase11transaction9ObTransIDeqERKS1_:36 + 1: 9 + 86: _ZN9oceanbase6common8function24DefaultFunctionAllocator21get_default_allocatorEv:462 + 1: 9 + 1.1: 3 + 1.3: 3 + 86.1: _ZN9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEEC2ERNS0_12ObIAllocatorE:198 + 1: 9 + 87: _ZNK9oceanbase8memtable15ObMvccTransNode19is_delayed_cleanoutEv:54 + 2: 9 + 88.1: _ZN9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEEaSINS2_25ObCleanoutTxNodeOperationELb1EEERS9_OT_:3968 + 4.1: _ZN9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEE6assignINS2_25ObCleanoutTxNodeOperationELb1EEEiOT_:3968 + 5: _ZN9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEE5resetEv:2542 + 1: 31 + 2: 31 + 3: 31 + 4: 31 + 6: 31 + 3: _ZN9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEE13is_local_obj_Ev:217 + 1: 31 + 12.1: _ZN9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEE7DerivedINS2_25ObCleanoutTxNodeOperationEEC2ISB_EEOT_:1209 + 0: 31 + 90.1: _ZN9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEEaSINS2_26ObCleanoutNothingOperationELb1EEERS9_OT_:2247 + 4.1: _ZN9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEE6assignINS2_26ObCleanoutNothingOperationELb1EEEiOT_:2247 + 5: _ZN9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEE5resetEv:1727 + 1: 33 + 2: 31 + 3: 31 + 4: 31 + 6: 31 + 3: _ZN9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEE13is_local_obj_Ev:217 + 1: 31 + 12.1: _ZN9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEE7DerivedINS2_26ObCleanoutNothingOperationEEC2ISB_EEOT_:289 + 0: 33 + 92.2: _ZN9oceanbase6common10ObFunctionIFbvEEC2INS_7storage38ObReCheckTxNodeForLockForReadOperationELb1EEEOT_RNS0_12ObIAllocatorE:680 + 2: 8 + 6.1: _ZN9oceanbase6common10ObFunctionIFbvEE6assignINS_7storage38ObReCheckTxNodeForLockForReadOperationELb1EEEiOT_:568 + 12: 8 + 12.1: _ZN9oceanbase6common10ObFunctionIFbvEE7DerivedINS_7storage38ObReCheckTxNodeForLockForReadOperationEEC2IS6_EEOT_:400 + 0: 8 + 96: _ZN9oceanbase11transaction16ObLockForReadArgC2ERNS_8memtable15ObMvccAccessCtxENS0_9ObTransIDElb:328 + 4: 8 + 5: 8 + 6: 8 + 7: 8 + 16: _ZNK9oceanbase8memtable19ObMvccValueIterator17lock_for_read_endEll:438459 + 2: 30 + 3: 43053 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:43597 + 4.1: 30 + 5.1: 30 + 5.2: 30 + 5.3: 31 + 5.4: 31 + 5.6: 30 + 5.7: 31 + 6: 30 + 7.1: 26 + 7.2: 26 + 7.3: 26 + 7.4: 26 + 7.6: 26 + 7.7: 26 + 9.1: 30 + 9.2: 30 + 9.3: 31 + 9.4: 31 + 9.6: 30 + 9.7: 30 + 65520: 7 + 4: _ZN9oceanbase6common14ObTscTimestamp12get_instanceEv:768 + 2: 30 + 2.1: 3 + 2.3: 3 + 2.6: 3 + 2.2: _ZN9oceanbase6common14ObTscTimestampC2Ev:60 + 1: 3 + 5.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:270 + 2: 30 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:120 + 2: 30 + 34.1: _ZN9oceanbase8memtable19ObMvccValueIterator8is_existEv:233970 + 2: 38944 + 40: _ZNK9oceanbase8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorEE13get_iter_flagEv:293528 + 0: 36691 +_ZN9oceanbase12blocksstable21ObClusterColumnReader18read_storage_datumElRNS0_14ObStorageDatumE:38836284:108184 + 1: 97349 + 2: 97349 + 3: 97349 + 4: 0 + 5.1: 0 + 6.1: 97349 + 6.2: 97349 + 6.3: 97349 + 7: 0 + 8.1: 0 + 10: 97349 + 10.3: 97349 + 15: 92574 + 16.1: 0 + 24: 92574 + 10.1: _ZN9oceanbase12blocksstable21ObClusterColumnReader18get_sparse_col_idxEl:0 + 4.1: 0 + 5: 0 + 6: 0 + 9: 0 + 13: _ZN9oceanbase12blocksstable14ObStorageDatum7set_nopEv:0 + 0: _ZN9oceanbase12blocksstable14ObStorageDatum13set_ext_valueEl:0 + 1: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:0 + 0: 0 + 1.1: _ZN9oceanbase6common11ObDatumDesc7set_extEv:0 + 0: 0 + 1.3: _ZN9oceanbase6common5ObObj7set_extEl:0 + 4: 0 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:0 + 0: 0 + 15: _ZN9oceanbase12blocksstable21ObClusterColumnReader10read_datumElRNS0_14ObStorageDatumE:27307204 + 2: 97349 + 3: 97349 + 4: 97349 + 8.1: 97343 + 8.3: 97343 + 10: 0 + 11.1: 0 + 13: 97343 + 14: 97823 _ZN9oceanbase12blocksstableL12get_offset_8EPKvl.8f1e732d6655d093e942b32e16c602d8:98244 _ZN9oceanbase12blocksstableL13get_offset_16EPKvl.8f1e732d6655d093e942b32e16c602d8:35 + 15: 97823 + 15.3: 97823 + 16: 97820 _ZN9oceanbase12blocksstableL12get_offset_8EPKvl.8f1e732d6655d093e942b32e16c602d8:100030 _ZN9oceanbase12blocksstableL13get_offset_16EPKvl.8f1e732d6655d093e942b32e16c602d8:34 + 18: 2 + 20: 92569 + 21.1: 0 + 24: 92574 + 3: _ZN9oceanbase12blocksstable21ObClusterColumnReader18read_special_valueEl:3212517 + 2: 97349 + 4: 97349 + 5: _ZN9oceanbase12blocksstable14ObStorageDatum7set_nopEv:0 + 0: _ZN9oceanbase12blocksstable14ObStorageDatum13set_ext_valueEl:0 + 1: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:0 + 0: 0 + 1.1: _ZN9oceanbase6common11ObDatumDesc7set_extEv:0 + 0: 0 + 1.3: _ZN9oceanbase6common5ObObj7set_extEl:0 + 4: 0 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:0 + 0: 0 + 7: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:48 + 0: 6 + 20: _ZN9oceanbase12blocksstable21ObClusterColumnReader20read_column_from_bufEllNS0_11ObRowHeader11SPECIAL_VALERNS0_14ObStorageDatumE:10824399 + 6: 94705 + 7: 94705 + 8: 94705 + 9: 94705 + 10: 23202 + 11.1: 0 + 13.1: 71228 + 14.1: 0 + 16: 0 + 10: _ZN9oceanbase12blocksstable21ObClusterColumnReader19read_8_bytes_columnEPKclRNS0_14ObStorageDatumE:1509576 + 5: 23387 + 7: 23387 + 7.2: 23387 + 8: 0 + 9.1: 0 + 11: 23387 + 13: 17 + 16: 1508 + 19: 22734 + 22: 0 + 23.1: 0 + 26: 23202 + 27: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:162414 + 0: 23202 + 28: _ZN9oceanbase6common7ObDatum8set_uintEm:278424 + 0: 23202 + 13.1: _ZN9oceanbase12blocksstable14ObStorageDatum16from_buf_enhanceEPKcl:4914724 + 2: 71228 + 4: 71228 + 4.2: 71228 + 5: 0 + 6.1: 0 + 9: 71228 + 10: 71228 + 11: 71226 + 16: 0 + 8: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:1068420 + 0: 71228 +_ZN9oceanbase7storage15ObMultipleMerge16process_fuse_rowEbRNS_12blocksstable10ObDatumRowERPS3_:38791284:116648 + 3: 113514 + 4: 113514 + 6: 113514 + 7: 113514 + 9: 113514 + 9.1: 0 + 9.2: 113529 _ZN9oceanbase7storage15ObMultipleMerge20project2output_exprsERNS_12blocksstable10ObDatumRowES4_:114168 + 9.3: 115591 + 15.1: 377 + 16.1: 115591 + 16.2: 117693 + 16.3: 176 + 17.1: 377 + 18.1: 176 + 18.2: 176 + 18.3: 890 + 22.1: 116972 + 22.2: 115021 + 23.1: 377 + 24.1: 115021 + 24.2: 176 + 25.1: 377 + 26.1: 103647 + 26.2: 377 + 27.1: 377 + 30: 103647 + 32: 103647 + 33: 377 + 34.1: 103648 + 35.1: 176 + 37: 103648 + 40.1: 103647 + 40.2: 176 + 41: 103647 + 41.1: 176 + 43: 176 + 44: 176 + 46: 176 + 48: 102514 + 49: 102514 + 53: 105958 + 22.2: _ZN9oceanbase7storage15ObMultipleMerge16fill_lob_locatorERNS_12blocksstable10ObDatumRowEbRb:3331536 + 2: 116972 + 3: 116972 + 3.1: 890 + 4: 890 + 5: 176 + 6.1: 176 + 8.1: 890 + 10.1: 377 + 13: 115021 + 4: _ZNK9oceanbase7storage18ObLobLocatorHelper8is_validEv:6230 + 0: 890 + 34.1: _ZN9oceanbase7storage15ObMultipleMerge14check_filteredERKNS_12blocksstable10ObDatumRowERb:10090954 + 2: 103647 + 4: 103647 + 4.1: 176 + 5: 176 + 5.1: 176 + 6.1: 176 + 9: 176 + 9.1: 177 + 10: 176 + 10.1: 103647 + 11: 103647 + 14: 177 + 15.1: 176 + 18: 176 + 4.1: _ZNK9oceanbase6common11ObQueryFlag14is_daily_mergeEv:704 + 0: 176 + 5: _ZN9oceanbase3lib6Worker4selfEv:9856 + 3: 176 + 4: 176 + 11.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE5emptyEv:885 + 0: 177 + 14: _ZN9oceanbase3sql18ObPushdownOperator18filter_row_outsideERKNS_6common8ObIArrayIPNS0_6ObExprEEERb:5488 + 3: 177 _ZN9oceanbase3sql10ObOperator10filter_rowERNS0_9ObEvalCtxERKNS_6common8ObIArrayIPNS0_6ObExprEEERb:1 + 7: 178 + 8: 177 _ZN9oceanbase3sql18ObPushdownOperator21clear_datum_eval_flagEv:1 +_ZN9oceanbase7storage15ObMultipleMerge12get_next_rowERPNS_12blocksstable10ObDatumRowE:37923236:115352 + 1: 111809 + 2: 111809 + 3: 111809 + 4: 941 + 5.1: 941 + 6.1: 111809 + 7: 935 + 9: 111809 + 10: 111809 + 11: 935 + 13.1: 935 + 14: 111809 + 15: 935 + 16.1: 114408 _ZN9oceanbase7storage15ObMultipleMerge23refresh_table_on_demandEv:121453 + 17.1: 941 + 19: 114002 _ZN9oceanbase7storage19ObMultipleScanMerge18inner_get_next_rowERNS_12blocksstable10ObDatumRowE:107558 _ZN9oceanbase7storage13ObSingleMerge18inner_get_next_rowERNS_12blocksstable10ObDatumRowE:6959 + 21: 905 + 24.1: 905 + 26.1: 528 + 27: 528 + 28.1: 905 + 31: 905 + 32: 102308 + 36: 941 + 37: 102308 + 38: 101508 + 40: 114765 + 41.1: 905 + 42.1: 114765 _ZN9oceanbase7storage15ObMultipleMerge16process_fuse_rowEbRNS_12blocksstable10ObDatumRowERPS3_:116648 + 43.1: 905 + 44.1: 100458 + 50: 905 + 52: 5434 + 54: 5434 + 55: 100457 + 56: 100457 + 60: 941 + 60.1: 100457 + 61: 106530 _ZN9oceanbase12blocksstable10ObDatumRow15prepare_new_rowERKNS_6common8ObIArrayINS_5share6schema9ObColDescEEE:103855 + 62.1: 905 + 66: 110893 + 6.1: _ZNK9oceanbase7storage16ObTableIterParam19enable_pd_aggregateEv:447236 + 1: 111809 + 14: _ZNK9oceanbase7storage20ObTableAccessContext12is_limit_endEv:894472 + 1: 111809 + 1.1: 0 + 1.2: 0 + 26.1: _ZN9oceanbase7storage15ObMultipleMerge21need_read_lob_columnsERKNS_12blocksstable10ObDatumRowE:810152 + 2: 99157 + 2.1: _ZNK9oceanbase12blocksstable12ObDmlRowFlag8is_existEv:16368 + 2: _ZNK9oceanbase12blocksstable12ObDmlRowFlag8is_validEv:16368 + 2: 528 + 40: _ZN9oceanbase7storage15ObMultipleMerge22fill_group_idx_if_needERNS_12blocksstable10ObDatumRowE:3348752 + 2: 100230 + 3: 100230 + 4: 1179 + 5.1: 1179 + 6: 941 + 7.1: 941 + 9: 1179 + 10: 1179 + 14: 1179 + 3: _ZNK9oceanbase7storage16ObTableIterParam19need_fill_group_idxEv:1703910 + 1: _ZNK9oceanbase7storage16ObTableIterParam23get_group_idx_col_indexEv:1703910 + 2: 100230 + 2.1: 100230 + 2.1: _ZNK9oceanbase7storage15ObTableReadInfo23get_group_idx_col_indexEv:400920 + 1: 100230 + 5.1: _ZNK9oceanbase12blocksstable10ObDatumRow16get_column_countEv:8253 + 0: 1179 + 9: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:27117 + 0: 1179 + 10: _ZN9oceanbase6common7ObDatum7set_intEl:17685 + 0: 1179 + 51: _ZN9oceanbase7storage15ObMultipleMerge27update_and_report_scan_statEv:1845303 + 2.1: 5507 + 2.2: 971 + 2.3: 941 + 2.4: 941 + 2.6: 971 + 2.7: 971 + 3: 5252 + 4: 5252 + 5: 5252 + 6: 5252 + 7: 5252 + 8: 5252 + 9: 5252 + 10: 5252 + 11: 5252 + 12: 5252 + 13: 5252 + 14: 5252 + 15: 5252 + 2.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:31334 + 2: 5422 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:4523 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:22028 + 2: 5507 + 9: _ZNK9oceanbase7storage16ObTableStoreStat18get_empty_read_cntEv:110292 + 2: 5252 + 17: _ZN9oceanbase7storage15ObMultipleMerge23report_table_store_statEv:225422 + 2: 5252 + 3: 5677 + 5: 971 + 7: 971 + 7.1: 971 + 8.1: 905 + 11: 5687 _ZN9oceanbase7storage16ObTableStoreStat5reuseEv:4939 + 3: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:31844 + 2: 5252 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:4353 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:22708 + 2: 5677 +_ZN9oceanbase11transaction8ObTxDescC2Ev:37848892:286 + 2: 265 + 4: 265 + 5: 265 + 8: 265 + 9: 256 + 11: 256 + 13: 256 + 15: 256 + 16: 256 + 17: 256 + 19: 256 + 22: 256 + 23: 256 + 25: 256 + 26: 255 + 29: 237 + 30: 237 + 31: 226 + 32: 226 + 33: 226 + 34: 226 + 37: 239 + 42: 265 + 42.1: 263 + 42.20: 0 + 42.22: 0 + 42.23: 0 + 42.24: 0 + 0: _ZN9oceanbase11transaction15ObTransHashLinkINS0_8ObTxDescEEC2Ev:5975 + 0: 265 + 0.1: _ZN9oceanbase6common10ObSpinLockC2Ej:6660 + 0: 237 _ZN9oceanbase6common12ObLatchMutexC1Ev:248 + 1: 239 + 0.2: _ZN9oceanbase11transaction15ObTransTraceLogC2Ev:37530635 + 1: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EEC2Ebj:37530635 + 2: 263 + 0: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EEC2Ev:37524020 + 1: 268 + 2: 268 + 0.1: _ZN9oceanbase6common12ObTraceEventC2Ev:37520000 + 3: 26800 + 1: _ZN9oceanbase3lib7ObMutexC2Ej:4774 + 1: 268 _ZN9oceanbase6common12ObLatchMutexC1Ev:269 + 3: _ZN9oceanbase11transaction11ObTraceInfoC2Ev:12455 + 1: 265 + 2: 265 + 1: _ZN9oceanbase6common8ObStringC2EiiPc:4770 + 1: 265 + 2: _ZN9oceanbase6common8ObStringC2EiiPc:4770 + 1: 265 + 6: _ZN9oceanbase6common6ObAddrC2Ev:5035 + 1: 265 + 7: _ZN9oceanbase11transaction9ObTransIDC2Ev:1855 + 0: 265 + 8: _ZN9oceanbase11transaction11ObXATransIDC2Ev:4505 + 0.2: 265 _ZN9oceanbase11transaction11ObXATransID5resetEv:272 + 0: _ZN9oceanbase6common8ObStringC2Ev:2120 + 1: 265 + 0.1: _ZN9oceanbase6common8ObStringC2Ev:2120 + 1: 265 + 25: _ZN9oceanbase6common9ObSEArrayINS_11transaction8ObTxPartELl4ENS0_19ModulePageAllocatorELb0EEC2Ev:37230 + 0.1: 255 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction8ObTxPartELl4ENS0_19ModulePageAllocatorELb0EEC2ElRKS4_:32640 + 5: 255 + 6: 255 + 8: 255 + 17.1: 255 + 2: _ZN9oceanbase6common8ObIArrayINS_11transaction8ObTxPartEEC2EPS3_l:4845 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_11transaction8ObTxPartEEC2EPS3_l:4845 + 0: 255 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:13515 + 0: 255 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:5355 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:5355 + 2: 255 + 8: 255 + 26: _ZN9oceanbase6common9ObSEArrayINS_11transaction13ObTxSavePointELl4ENS0_19ModulePageAllocatorELb0EEC2Ev:30336 + 0.1: 237 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction13ObTxSavePointELl4ENS0_19ModulePageAllocatorELb0EEC2ElRKS4_:26070 + 5: 237 + 6: 237 + 8: 237 + 17.1: 237 + 2: _ZN9oceanbase6common8ObIArrayINS_11transaction13ObTxSavePointEEC2EPS3_l:3318 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_11transaction13ObTxSavePointEEC2EPS3_l:3318 + 0: 237 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:8295 + 0: 237 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:4977 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:4977 + 2: 237 + 8: 237 + 27: _ZN9oceanbase6common7ObArrayINS_11transaction16ObTransIDAndAddrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEEC2Ev:20145 + 0.1: 237 + 0.5: _ZN9oceanbase6common11ObArrayImplINS_11transaction16ObTransIDAndAddrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEEC2ElRKS4_:15879 + 3: 237 + 4: 237 + 7.1: 237 + 2: _ZN9oceanbase6common8ObIArrayINS_11transaction16ObTransIDAndAddrEEC2Ev:1659 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_11transaction16ObTransIDAndAddrEEC2Ev:1659 + 0: 237 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:8295 + 0: 237 + 28: _ZN9oceanbase5share6ObLSIDC2Ev:3318 + 0: 237 + 30: _ZN9oceanbase6common9ObSEArrayINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EEC2Ev:31039 + 0.1: 226 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EEC2ElRKS4_:26971 + 2: 237 + 5: 226 + 6: 226 + 8: 226 + 17.1: 226 + 2: _ZN9oceanbase6common8ObIArrayINS_5share6ObLSIDEEC2EPS3_l:3164 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_5share6ObLSIDEEC2EPS3_l:3164 + 0: 226 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:7910 + 0: 226 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:4746 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:4746 + 2: 226 + 8: 226 + 35: _ZN9oceanbase6common10ObSpinLockC2Ej:4856 + 0: 226 _ZN9oceanbase6common12ObLatchMutexC1Ev:238 + 1: 237 + 38: _ZN9oceanbase6common10ObMaskSet2INS_11transaction6ObPairINS_5share6ObLSIDElEEEC2Ev:40630 + 0: 239 + 0.5: _ZN9oceanbase6common8ObBitSetILl256ENS0_19ModulePageAllocatorELb0EEC2ERKS2_:38957 + 2: 239 + 1: _ZN9oceanbase6common9ObSEArrayIjLl8ENS0_19ModulePageAllocatorELb0EECI2NS0_13ObSEArrayImplIjLl8ES2_Lb0EEEElRKS2_:34655 + 0: 239 + 0: _ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb0EEC2ElRKS2_:30353 + 2: 239 + 5: 239 + 6: 239 + 8: 239 + 17.1: 239 + 2: _ZN9oceanbase6common8ObIArrayIjEC2EPjl:3346 + 0: _ZN9oceanbase6common12ObIArrayWrapIjEC2EPjl:3346 + 0: 239 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:10038 + 0: 239 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:5019 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:5019 + 2: 239 + 8: 239 + 39: _ZN9oceanbase11transaction11ObTransCondC2Ev:8822 + 0.4: 302 _ZN9oceanbase11transaction11ObTransCond5resetEv:306 + 0: _ZN6obutil9ObMonitorINS_5MutexEEC2Ev:8520 + 1: 302 + 65512: 261 _ZN6obutil4CondC1Ev:239 + 65512.1: 261 _ZN6obutil5MutexC1Ev:261 + 40: _ZN9oceanbase11transaction15ObTxTimeoutTaskC2Ev:28140 + 0: 268 + 0: _ZN9oceanbase11transaction14ObITimeoutTaskC2Ev:17688 + 0: 268 + 0: _ZN9oceanbase6common15ObTimeWheelTaskC2Ev:14204 + 0.1: _ZN9oceanbase6common15ObTimeWheelTask5resetEv:11792 + 3: 268 + 6: 268 + 8: _ZN9oceanbase6common11ObDLinkBaseINS0_15ObTimeWheelTaskEE5resetEv:3216 + 0: 268 + 0.7: _ZN9oceanbase6common15ObSmallSpinLockIhLl0ELl500ELl100EEC2Ev:2412 + 0: _ZN9oceanbase6common15ObSmallSpinLockIhLl0ELl500ELl100EE4initEv:2412 + 2: 268 + 42.15: _ZN9oceanbase6common15ObTimeWheelTaskD2Ev:0 + 0: 0 + 42.17: _ZN9oceanbase6common10ObMaskSet2INS_11transaction6ObPairINS_5share6ObLSIDElEEED2Ev:0 + 0: _ZN9oceanbase6common8ObBitSetILl256ENS0_19ModulePageAllocatorELb0EED2Ev:0 + 0: 0 + 0: _ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb0EED2Ev:0 + 1: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb0EE7destroyEv:0 + 9: 0 + 11: 0 + 13: 0 + 15: 0 + 24: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 42.18: _ZN9oceanbase6common10ObSpinLockD2Ev:0 + 2: 0 + 42.19: _ZN9oceanbase6common10ObSpinLockD2Ev:0 + 2: 0 + 42.21: _ZN9oceanbase5share6ObLSIDD2Ev:0 + 0: _ZN9oceanbase5share6ObLSID5resetEv:0 + 0: 0 + 42.25: _ZN9oceanbase11transaction11ObXATransIDD2Ev:0 + 0: _ZN9oceanbase11transaction11ObXATransID7destroyEv:0 + 0: 0 + 42.26: _ZN9oceanbase11transaction9ObTransIDD2Ev:0 + 0: 0 + 42.28: _ZN9oceanbase11transaction15ObTransHashLinkINS0_8ObTxDescEED2Ev:0 + 2: 0 + 3: 0 +_ZN9oceanbase11transaction8ObTxDescC1Ev:37848892:286 + 2: 265 + 4: 265 + 5: 265 + 8: 265 + 9: 256 + 11: 256 + 13: 256 + 15: 256 + 16: 256 + 17: 256 + 19: 256 + 22: 256 + 23: 256 + 25: 256 + 26: 255 + 29: 237 + 30: 237 + 31: 226 + 32: 226 + 33: 226 + 34: 226 + 37: 239 + 42: 265 + 42.1: 263 + 42.20: 0 + 42.22: 0 + 42.23: 0 + 42.24: 0 + 0: _ZN9oceanbase11transaction15ObTransHashLinkINS0_8ObTxDescEEC2Ev:5975 + 0: 265 + 0.1: _ZN9oceanbase6common10ObSpinLockC2Ej:6660 + 0: 237 _ZN9oceanbase6common12ObLatchMutexC1Ev:248 + 1: 239 + 0.2: _ZN9oceanbase11transaction15ObTransTraceLogC2Ev:37530635 + 1: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EEC2Ebj:37530635 + 2: 263 + 0: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EEC2Ev:37524020 + 1: 268 + 2: 268 + 0.1: _ZN9oceanbase6common12ObTraceEventC2Ev:37520000 + 3: 26800 + 1: _ZN9oceanbase3lib7ObMutexC2Ej:4774 + 1: 268 _ZN9oceanbase6common12ObLatchMutexC1Ev:269 + 3: _ZN9oceanbase11transaction11ObTraceInfoC2Ev:12455 + 1: 265 + 2: 265 + 1: _ZN9oceanbase6common8ObStringC2EiiPc:4770 + 1: 265 + 2: _ZN9oceanbase6common8ObStringC2EiiPc:4770 + 1: 265 + 6: _ZN9oceanbase6common6ObAddrC2Ev:5035 + 1: 265 + 7: _ZN9oceanbase11transaction9ObTransIDC2Ev:1855 + 0: 265 + 8: _ZN9oceanbase11transaction11ObXATransIDC2Ev:4505 + 0.2: 265 _ZN9oceanbase11transaction11ObXATransID5resetEv:272 + 0: _ZN9oceanbase6common8ObStringC2Ev:2120 + 1: 265 + 0.1: _ZN9oceanbase6common8ObStringC2Ev:2120 + 1: 265 + 25: _ZN9oceanbase6common9ObSEArrayINS_11transaction8ObTxPartELl4ENS0_19ModulePageAllocatorELb0EEC2Ev:37230 + 0.1: 255 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction8ObTxPartELl4ENS0_19ModulePageAllocatorELb0EEC2ElRKS4_:32640 + 5: 255 + 6: 255 + 8: 255 + 17.1: 255 + 2: _ZN9oceanbase6common8ObIArrayINS_11transaction8ObTxPartEEC2EPS3_l:4845 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_11transaction8ObTxPartEEC2EPS3_l:4845 + 0: 255 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:13515 + 0: 255 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:5355 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:5355 + 2: 255 + 8: 255 + 26: _ZN9oceanbase6common9ObSEArrayINS_11transaction13ObTxSavePointELl4ENS0_19ModulePageAllocatorELb0EEC2Ev:30336 + 0.1: 237 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction13ObTxSavePointELl4ENS0_19ModulePageAllocatorELb0EEC2ElRKS4_:26070 + 5: 237 + 6: 237 + 8: 237 + 17.1: 237 + 2: _ZN9oceanbase6common8ObIArrayINS_11transaction13ObTxSavePointEEC2EPS3_l:3318 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_11transaction13ObTxSavePointEEC2EPS3_l:3318 + 0: 237 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:8295 + 0: 237 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:4977 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:4977 + 2: 237 + 8: 237 + 27: _ZN9oceanbase6common7ObArrayINS_11transaction16ObTransIDAndAddrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEEC2Ev:20145 + 0.1: 237 + 0.5: _ZN9oceanbase6common11ObArrayImplINS_11transaction16ObTransIDAndAddrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEEC2ElRKS4_:15879 + 3: 237 + 4: 237 + 7.1: 237 + 2: _ZN9oceanbase6common8ObIArrayINS_11transaction16ObTransIDAndAddrEEC2Ev:1659 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_11transaction16ObTransIDAndAddrEEC2Ev:1659 + 0: 237 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:8295 + 0: 237 + 28: _ZN9oceanbase5share6ObLSIDC2Ev:3318 + 0: 237 + 30: _ZN9oceanbase6common9ObSEArrayINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EEC2Ev:31039 + 0.1: 226 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EEC2ElRKS4_:26971 + 2: 237 + 5: 226 + 6: 226 + 8: 226 + 17.1: 226 + 2: _ZN9oceanbase6common8ObIArrayINS_5share6ObLSIDEEC2EPS3_l:3164 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_5share6ObLSIDEEC2EPS3_l:3164 + 0: 226 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:7910 + 0: 226 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:4746 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:4746 + 2: 226 + 8: 226 + 35: _ZN9oceanbase6common10ObSpinLockC2Ej:4856 + 0: 226 _ZN9oceanbase6common12ObLatchMutexC1Ev:238 + 1: 237 + 38: _ZN9oceanbase6common10ObMaskSet2INS_11transaction6ObPairINS_5share6ObLSIDElEEEC2Ev:40630 + 0: 239 + 0.5: _ZN9oceanbase6common8ObBitSetILl256ENS0_19ModulePageAllocatorELb0EEC2ERKS2_:38957 + 2: 239 + 1: _ZN9oceanbase6common9ObSEArrayIjLl8ENS0_19ModulePageAllocatorELb0EECI2NS0_13ObSEArrayImplIjLl8ES2_Lb0EEEElRKS2_:34655 + 0: 239 + 0: _ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb0EEC2ElRKS2_:30353 + 2: 239 + 5: 239 + 6: 239 + 8: 239 + 17.1: 239 + 2: _ZN9oceanbase6common8ObIArrayIjEC2EPjl:3346 + 0: _ZN9oceanbase6common12ObIArrayWrapIjEC2EPjl:3346 + 0: 239 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:10038 + 0: 239 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:5019 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:5019 + 2: 239 + 8: 239 + 39: _ZN9oceanbase11transaction11ObTransCondC2Ev:8822 + 0.4: 302 _ZN9oceanbase11transaction11ObTransCond5resetEv:306 + 0: _ZN6obutil9ObMonitorINS_5MutexEEC2Ev:8520 + 1: 302 + 65512: 261 _ZN6obutil4CondC1Ev:239 + 65512.1: 261 _ZN6obutil5MutexC1Ev:261 + 40: _ZN9oceanbase11transaction15ObTxTimeoutTaskC2Ev:28140 + 0: 268 + 0: _ZN9oceanbase11transaction14ObITimeoutTaskC2Ev:17688 + 0: 268 + 0: _ZN9oceanbase6common15ObTimeWheelTaskC2Ev:14204 + 0.1: _ZN9oceanbase6common15ObTimeWheelTask5resetEv:11792 + 3: 268 + 6: 268 + 8: _ZN9oceanbase6common11ObDLinkBaseINS0_15ObTimeWheelTaskEE5resetEv:3216 + 0: 268 + 0.7: _ZN9oceanbase6common15ObSmallSpinLockIhLl0ELl500ELl100EEC2Ev:2412 + 0: _ZN9oceanbase6common15ObSmallSpinLockIhLl0ELl500ELl100EE4initEv:2412 + 2: 268 + 42.15: _ZN9oceanbase6common15ObTimeWheelTaskD2Ev:0 + 0: 0 + 42.17: _ZN9oceanbase6common10ObMaskSet2INS_11transaction6ObPairINS_5share6ObLSIDElEEED2Ev:0 + 0: _ZN9oceanbase6common8ObBitSetILl256ENS0_19ModulePageAllocatorELb0EED2Ev:0 + 0: 0 + 0: _ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb0EED2Ev:0 + 1: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb0EE7destroyEv:0 + 9: 0 + 11: 0 + 13: 0 + 15: 0 + 24: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 42.18: _ZN9oceanbase6common10ObSpinLockD2Ev:0 + 2: 0 + 42.19: _ZN9oceanbase6common10ObSpinLockD2Ev:0 + 2: 0 + 42.21: _ZN9oceanbase5share6ObLSIDD2Ev:0 + 0: _ZN9oceanbase5share6ObLSID5resetEv:0 + 0: 0 + 42.25: _ZN9oceanbase11transaction11ObXATransIDD2Ev:0 + 0: _ZN9oceanbase11transaction11ObXATransID7destroyEv:0 + 0: 0 + 42.26: _ZN9oceanbase11transaction9ObTransIDD2Ev:0 + 0: 0 + 42.28: _ZN9oceanbase11transaction15ObTransHashLinkINS0_8ObTxDescEED2Ev:0 + 2: 0 + 3: 0 +_ZN9oceanbase8keybtree8Iterator8get_nextERNS_8memtable20ObStoreRowkeyWrapperERPNS2_9ObMvccRowE:36937883:40070 + 1: 37475 + 5.1: 35855 + 7: 981 + 7.1: 981 + 8: 1015 + 8.1: 1015 + 8.2: 373 + 13: 35872 + 17: 36845 + 3: _ZN9oceanbase8keybtree8Iterator9iter_nextERNS_8memtable20ObStoreRowkeyWrapperERPNS2_9ObMvccRowE:33287998 + 5: 37475 + 7.1: 37512 + 11: 36603 + 13.1: 36603 + 15.1: 36026 + 16: 35675 + 18: 1 + 21: 352 + 22: 352 + 7.1: _ZN9oceanbase8keybtree10ScanHandle3getERNS_8memtable20ObStoreRowkeyWrapperERPNS2_9ObMvccRowEbRPS3_:16268567 + 9: 37134 + 10: 37134 + 11: 37134 + 11.2: 37513 + 11.3: 37513 + 12: 35297 + 13: 3861 + 5: _ZN9oceanbase8keybtree4Path3topERPNS0_9BtreeNodeERi:1002618 + 3: 37134 + 8: 37134 + 9: 37134 + 9: _ZN9oceanbase8keybtree9BtreeNode7get_keyEiPNS0_11MultibitSetE:3193538 + 2: 37134 + 2: _ZNK9oceanbase8keybtree9BtreeNode12get_real_posEiPNS0_11MultibitSetE:2970734 + 2: 37134 + 2: _ZNK9oceanbase8keybtree9BtreeNode7is_leafEv:482742 + 0: 37134 + 3.1: _ZNK9oceanbase8keybtree11MultibitSet2atEi:2413724 + 5: 37134 + 5.2: 37134 + 5.3: 1 + 7: 37134 + 8: 37134 + 4: _ZN9oceanbase8keybtree11MultibitSet4loadERKS1_:111402 + 0: 37134 + 10: _ZNK9oceanbase8keybtree9BtreeNode16get_val_with_tagEilPNS0_11MultibitSetE:3824850 + 1: 37134 + 1.1: _ZNK9oceanbase8keybtree9BtreeNode16get_val_with_tagEiPNS0_11MultibitSetE:2933600 + 2: 37134 + 2: _ZNK9oceanbase8keybtree9BtreeNode12get_real_posEiPNS0_11MultibitSetE:2487992 + 2: 37134 + 3.1: _ZNK9oceanbase8keybtree11MultibitSet2atEi:2413724 + 5: 37134 + 5.2: 37134 + 5.3: 1 + 7: 37134 + 8: 37134 + 4: _ZN9oceanbase8keybtree11MultibitSet4loadERKS1_:111402 + 0: 37134 + 1.2: _ZNK9oceanbase8keybtree9BtreeNode7get_valEiPNS0_11MultibitSetE:334240 + 2: 1 + 2: _ZNK9oceanbase8keybtree9BtreeNode16get_val_with_tagEiPNS0_11MultibitSetE:334223 + 2: 1 + 2: _ZNK9oceanbase8keybtree9BtreeNode12get_real_posEiPNS0_11MultibitSetE:334211 + 2: 1 + 2: _ZNK9oceanbase8keybtree9BtreeNode7is_leafEv:334209 + 0: 37134 + 3.1: _ZNK9oceanbase8keybtree11MultibitSet2atEi:0 + 5: 0 + 5.2: 0 + 5.3: 0 + 7: 0 + 8: 0 + 4: _ZN9oceanbase8keybtree11MultibitSet4loadERKS1_:0 + 0: 0 + 11.1: _ZN9oceanbase8keybtree9BtreeNode7get_keyEiPNS0_11MultibitSetE:22 + 2: _ZNK9oceanbase8keybtree9BtreeNode12get_real_posEiPNS0_11MultibitSetE:22 + 2: 0 + 3.1: _ZNK9oceanbase8keybtree11MultibitSet2atEi:22 + 5.1: 1 + 5.2: 1 + 5.3: 0 + 7: 1 + 4: _ZN9oceanbase8keybtree11MultibitSet4loadERKS1_:3 + 0: 1 + 11.2: _ZNK9oceanbase8keybtree9BtreeNode4sizeEPNS0_11MultibitSetE:898038 + 2: 37513 + 2.4: 37513 + 2: _ZNK9oceanbase8keybtree9BtreeNode7is_leafEv:335343 + 0: 37513 + 11.4: _ZN9oceanbase8keybtree9BtreeNode7get_keyEiPNS0_11MultibitSetE:3113593 + 2: 37513 + 2: _ZNK9oceanbase8keybtree9BtreeNode12get_real_posEiPNS0_11MultibitSetE:3001054 + 2: 37513 + 2: _ZNK9oceanbase8keybtree9BtreeNode7is_leafEv:262591 + 0: 37513 + 3.1: _ZNK9oceanbase8keybtree11MultibitSet2atEi:2663437 + 5: 37513 + 5.2: 37513 + 5.3: 1 + 7: 37513 + 8: 37513 + 4: _ZN9oceanbase8keybtree11MultibitSet4loadERKS1_:112539 + 0: 37513 + 12: _ZN9oceanbase8keybtree10ScanHandle13maybe_big_gapEb:2576461 + 6: 37512 + 7: 1 + 13: 37512 + 5: _ZN9oceanbase8keybtree4Path5top_kEiRPNS0_9BtreeNodeERi:862785 + 3: 37513 + 8: 37512 + 9: 37512 + 13: _ZNK9oceanbase8keybtree9BtreeNode4sizeEPNS0_11MultibitSetE:712728 + 2: 37512 + 2.4: 37512 + 2: _ZNK9oceanbase8keybtree9BtreeNode7is_leafEv:187560 + 0: 37512 + 11: _ZN9oceanbase8keybtree8Iterator4compERNS_8memtable20ObStoreRowkeyWrapperEPS3_Ri:2094905 + 3: 39256 + 6.1: 39256 + 9: 4422 + 9.1: 4422 + 9.3: 4422 + 10: 4910 + 13: 39368 + 14: 6012 + 14.1: 1 + 14.3: 6012 + 16.1: _ZN9oceanbase8keybtree10ScanHandle13scan_backwardEbPl:144419 + 10.1: 9 + 14: 9 + 18: 9 + 8: _ZN9oceanbase8keybtree4Path3popERPNS0_9BtreeNodeERi:142979 + 3: 35675 + 8: 9 + 9: 9 + 10: 9 + 13: _ZN9oceanbase8keybtree4Path4pushEPNS0_9BtreeNodeEi:225 + 3: 9 + 6: 9 + 7: 9 + 8: 9 + 14: _ZNK9oceanbase8keybtree9BtreeNode7is_leafEv:90 + 0: 9 + 17: _ZNK9oceanbase8keybtree9BtreeNode7get_valEiPNS0_11MultibitSetE:135 + 2: 9 + 2: _ZNK9oceanbase8keybtree9BtreeNode16get_val_with_tagEiPNS0_11MultibitSetE:99 + 2: 9 + 18: _ZNK9oceanbase8keybtree9BtreeNode7is_leafEv:45 + 0: 9 + 19.1: _ZN9oceanbase8keybtree11MultibitSet4loadERKS1_:63 + 0: 9 + 21: _ZNK9oceanbase8keybtree9BtreeNode4sizeEPNS0_11MultibitSetE:225 + 2: 9 + 2.3: 9 + 2.4: 9 + 2: _ZNK9oceanbase8keybtree9BtreeNode7is_leafEv:72 + 0: 9 + 21.1: _ZN9oceanbase8keybtree4Path4pushEPNS0_9BtreeNodeEi:405 + 3: 9 + 6: 9 + 7: 9 + 8: 9 + 17: _ZN9oceanbase8keybtree10ScanHandle12scan_forwardEbPl:11205851 + 9.1: 43218 + 13: 39329 + 17: 3684 + 7: _ZN9oceanbase8keybtree4Path3popERPNS0_9BtreeNodeERi:1209460 + 3: 43195 + 8: 43195 + 9: 43195 + 10: 43195 + 9.1: _ZN9oceanbase8keybtree9BtreeNode21get_next_active_childEilPlPNS0_11MultibitSetE:6235332 + 2: 43195 + 3: 1 + 5: 43195 + 5.1: 43195 + 6: 39330 + 5.1: _ZNK9oceanbase8keybtree9BtreeNode4sizeEPNS0_11MultibitSetE:1079875 + 2: 43195 + 2.4: 43195 + 2: _ZNK9oceanbase8keybtree9BtreeNode7is_leafEv:302365 + 0: 43195 + 6: _ZNK9oceanbase8keybtree9BtreeNode7get_tagEiPNS0_11MultibitSetE:3348228 + 2: 39330 + 2: _ZNK9oceanbase8keybtree9BtreeNode12get_real_posEiPNS0_11MultibitSetE:2915598 + 2: 39409 + 3.3: 35514 + 2: _ZNK9oceanbase8keybtree9BtreeNode7is_leafEv:354681 + 0: 39409 + 3.1: _ZNK9oceanbase8keybtree11MultibitSet2atEi:2379452 + 5: 35514 + 5.2: 35514 + 5.3: 1 + 7: 35514 + 4: _ZN9oceanbase8keybtree11MultibitSet4loadERKS1_:106542 + 0: 35514 + 9.2: _ZNK9oceanbase8keybtree9BtreeNode4sizeEPNS0_11MultibitSetE:1296540 + 2: 43218 + 2.4: 43218 + 2: _ZNK9oceanbase8keybtree9BtreeNode7is_leafEv:475398 + 0: 43218 + 12: _ZN9oceanbase8keybtree4Path4pushEPNS0_9BtreeNodeEi:983225 + 3: 39329 + 6: 39329 + 7: 39329 + 8: 39329 + 13: _ZNK9oceanbase8keybtree9BtreeNode7is_leafEv:275303 + 0: 39329 + 16: _ZNK9oceanbase8keybtree9BtreeNode7get_valEiPNS0_11MultibitSetE:58944 + 2: 3684 + 2: _ZNK9oceanbase8keybtree9BtreeNode16get_val_with_tagEiPNS0_11MultibitSetE:44208 + 2: 3684 + 17: _ZNK9oceanbase8keybtree9BtreeNode7is_leafEv:18420 + 0: 3684 + 18.1: _ZN9oceanbase8keybtree11MultibitSet4loadERKS1_:23135 + 0: 3305 + 20: _ZN9oceanbase8keybtree4Path4pushEPNS0_9BtreeNodeEi:166348 + 3: 3696 + 6: 3696 + 7: 3696 + 8: 3696 + 7.1: _ZNK9oceanbase8keybtree10CompHelper7compareENS_8memtable20ObStoreRowkeyWrapperES3_Ri:10231 + 2: _ZNK9oceanbase8memtable20ObStoreRowkeyWrapper7compareERKS1_Ri:10231 + 0.1: _ZNK9oceanbase6common13ObStoreRowkey7compareERKS1_Ri:10231 + 0: _ZNK9oceanbase6common8ObRowkey7compareERKS1_Ri:10231 + 3: 981 + 4: 981 + 5: 1 + 7: _ZNK9oceanbase6common8ObRowkey14compare_prefixERKS1_Ri:398 + 5: 1 + 8: 1 + 11: 1 + 13: 1 + 14.1: 1 + 16: 1 + 7: _ZNK9oceanbase6common8ObRowkey10is_min_rowEv:31 + 4: 1 + 4.1: 1 + 5: 0 + 9: 1 + 5: _ZNK9oceanbase6common5ObObj12is_min_valueEv:10 + 2: 1 + 2.1: 0 + 8: _ZNK9oceanbase6common8ObRowkey10is_max_rowEv:93 + 4: 0 + 4.1: 1 + 4.2: 3 + 5: 3 + 9: 1 + 5: _ZNK9oceanbase6common5ObObj12is_max_valueEv:22 + 2: 1 + 2.1: 3 + 9: _ZNK9oceanbase6common8ObRowkey10is_min_rowEv:39 + 4: 1 + 4.1: 1 + 5: 0 + 9: 1 + 5: _ZNK9oceanbase6common5ObObj12is_min_valueEv:10 + 2: 1 + 2.1: 0 + 10: _ZNK9oceanbase6common8ObRowkey10is_max_rowEv:90 + 4: 0 + 4.1: 1 + 4.2: 3 + 5: 3 + 9: 1 + 5: _ZNK9oceanbase6common5ObObj12is_max_valueEv:21 + 2: 1 + 2.1: 3 + 13: _ZSt3minIlERKT_S2_S2_:10 + 5: 1 + 7.3: _ZNK9oceanbase8keybtree10CompHelper7compareENS_8memtable20ObStoreRowkeyWrapperES3_Ri:191901 + 2: _ZNK9oceanbase8memtable20ObStoreRowkeyWrapper7compareERKS1_Ri:191901 + 0.1: _ZNK9oceanbase6common13ObStoreRowkey7compareERKS1_Ri:191901 + 0: _ZNK9oceanbase6common8ObRowkey7compareERKS1_Ri:191901 + 4: 963 + 5: 963 + 7: _ZNK9oceanbase6common8ObRowkey14compare_prefixERKS1_Ri:175526 + 5: 963 + 8: 963 + 11: 963 + 13: 963 + 14.1: 1021 + 16: 995 _ZNK9oceanbase6common5ObObj32check_collation_free_and_compareERKS1_Ri:1037 + 7: _ZNK9oceanbase6common8ObRowkey10is_min_rowEv:29853 + 4: 963 + 4.1: 963 + 5: 0 + 9: 963 + 5: _ZNK9oceanbase6common5ObObj12is_min_valueEv:9630 + 2: 963 + 2.1: 0 + 8: _ZNK9oceanbase6common8ObRowkey10is_max_rowEv:22218 + 4: 0 + 4.1: 963 + 4.2: 3 + 5: 3 + 9: 963 + 5: _ZNK9oceanbase6common5ObObj12is_max_valueEv:8679 + 2: 963 + 2.1: 3 + 9: _ZNK9oceanbase6common8ObRowkey10is_min_rowEv:37557 + 4: 963 + 4.1: 963 + 5: 0 + 9: 963 + 5: _ZNK9oceanbase6common5ObObj12is_min_valueEv:9630 + 2: 963 + 2.1: 0 + 10: _ZNK9oceanbase6common8ObRowkey10is_max_rowEv:21255 + 4: 0 + 4.1: 963 + 4.2: 3 + 5: 3 + 9: 963 + 5: _ZNK9oceanbase6common5ObObj12is_max_valueEv:9642 + 2: 963 + 2.1: 3 + 13: _ZSt3minIlERKT_S2_S2_:9630 + 5: 963 + 9: _ZN9oceanbase8keybtree8Iterator9iter_nextERNS_8memtable20ObStoreRowkeyWrapperERPNS2_9ObMvccRowE:551107 + 5: 641 + 7.1: 641 + 11: 618 + 13.1: 618 + 15.1: 618 + 16: 618 + 18: 5 + 21: 5 + 22: 5 + 7.1: _ZN9oceanbase8keybtree10ScanHandle3getERNS_8memtable20ObStoreRowkeyWrapperERPNS2_9ObMvccRowEbRPS3_:274308 + 9: 641 + 10: 641 + 11: 641 + 11.2: 636 + 11.3: 636 + 12: 589 + 13: 64 + 5: _ZN9oceanbase8keybtree4Path3topERPNS0_9BtreeNodeERi:17307 + 3: 641 + 8: 641 + 9: 641 + 9: _ZN9oceanbase8keybtree9BtreeNode7get_keyEiPNS0_11MultibitSetE:52632 + 2: 641 + 2: _ZNK9oceanbase8keybtree9BtreeNode12get_real_posEiPNS0_11MultibitSetE:48786 + 2: 641 + 2: _ZNK9oceanbase8keybtree9BtreeNode7is_leafEv:5769 + 0: 641 + 3.1: _ZNK9oceanbase8keybtree11MultibitSet2atEi:41735 + 5: 641 + 5.2: 641 + 5.3: 5 + 7: 641 + 8: 641 + 4: _ZN9oceanbase8keybtree11MultibitSet4loadERKS1_:1923 + 0: 641 + 10: _ZNK9oceanbase8keybtree9BtreeNode16get_val_with_tagEilPNS0_11MultibitSetE:63921 + 1: 641 + 1.1: _ZNK9oceanbase8keybtree9BtreeNode16get_val_with_tagEiPNS0_11MultibitSetE:50709 + 2: 641 + 2: _ZNK9oceanbase8keybtree9BtreeNode12get_real_posEiPNS0_11MultibitSetE:43017 + 2: 641 + 3.1: _ZNK9oceanbase8keybtree11MultibitSet2atEi:41735 + 5: 641 + 5.2: 641 + 5.3: 5 + 7: 641 + 8: 641 + 4: _ZN9oceanbase8keybtree11MultibitSet4loadERKS1_:1923 + 0: 641 + 1.2: _ZNK9oceanbase8keybtree9BtreeNode7get_valEiPNS0_11MultibitSetE:6161 + 2: 5 + 2: _ZNK9oceanbase8keybtree9BtreeNode16get_val_with_tagEiPNS0_11MultibitSetE:6076 + 2: 5 + 2: _ZNK9oceanbase8keybtree9BtreeNode12get_real_posEiPNS0_11MultibitSetE:6016 + 2: 5 + 2: _ZNK9oceanbase8keybtree9BtreeNode7is_leafEv:5784 + 0: 641 + 3.1: _ZNK9oceanbase8keybtree11MultibitSet2atEi:222 + 5: 3 + 5.2: 3 + 5.3: 3 + 7: 3 + 8: 3 + 4: _ZN9oceanbase8keybtree11MultibitSet4loadERKS1_:9 + 0: 3 + 11.1: _ZN9oceanbase8keybtree9BtreeNode7get_keyEiPNS0_11MultibitSetE:201 + 2: _ZNK9oceanbase8keybtree9BtreeNode12get_real_posEiPNS0_11MultibitSetE:201 + 2: 0 + 3.1: _ZNK9oceanbase8keybtree11MultibitSet2atEi:201 + 5.1: 5 + 5.2: 5 + 5.3: 3 + 7: 5 + 4: _ZN9oceanbase8keybtree11MultibitSet4loadERKS1_:15 + 0: 5 + 11.2: _ZNK9oceanbase8keybtree9BtreeNode4sizeEPNS0_11MultibitSetE:15294 + 2: 636 + 2.4: 636 + 2: _ZNK9oceanbase8keybtree9BtreeNode7is_leafEv:5754 + 0: 641 + 11.4: _ZN9oceanbase8keybtree9BtreeNode7get_keyEiPNS0_11MultibitSetE:52858 + 2: 636 + 2: _ZNK9oceanbase8keybtree9BtreeNode12get_real_posEiPNS0_11MultibitSetE:50950 + 2: 636 + 2: _ZNK9oceanbase8keybtree9BtreeNode7is_leafEv:4452 + 0: 636 + 3.1: _ZNK9oceanbase8keybtree11MultibitSet2atEi:45226 + 5: 636 + 5.2: 636 + 5.3: 5 + 7: 636 + 8: 636 + 4: _ZN9oceanbase8keybtree11MultibitSet4loadERKS1_:1908 + 0: 636 + 12: _ZN9oceanbase8keybtree10ScanHandle13maybe_big_gapEb:43742 + 6: 636 + 7: 5 + 13: 636 + 5: _ZN9oceanbase8keybtree4Path5top_kEiRPNS0_9BtreeNodeERi:14628 + 3: 636 + 8: 636 + 9: 636 + 13: _ZNK9oceanbase8keybtree9BtreeNode4sizeEPNS0_11MultibitSetE:12084 + 2: 636 + 2.4: 636 + 2: _ZNK9oceanbase8keybtree9BtreeNode7is_leafEv:3180 + 0: 636 + 11: _ZN9oceanbase8keybtree8Iterator4compERNS_8memtable20ObStoreRowkeyWrapperEPS3_Ri:30304 + 3: 646 + 6.1: 646 + 9: 62 + 9.1: 62 + 9.3: 62 + 10: 70 + 13: 644 + 14: 5 + 14.1: 5 + 14.3: 5 + 16.1: _ZN9oceanbase8keybtree10ScanHandle13scan_backwardEbPl:3372 + 10.1: 5 + 14: 5 + 18: 5 + 8: _ZN9oceanbase8keybtree4Path3popERPNS0_9BtreeNodeERi:2627 + 3: 618 + 8: 5 + 9: 5 + 10: 5 + 13: _ZN9oceanbase8keybtree4Path4pushEPNS0_9BtreeNodeEi:120 + 3: 5 + 6: 5 + 7: 5 + 8: 5 + 14: _ZNK9oceanbase8keybtree9BtreeNode7is_leafEv:45 + 0: 5 + 17: _ZNK9oceanbase8keybtree9BtreeNode7get_valEiPNS0_11MultibitSetE:75 + 2: 5 + 2: _ZNK9oceanbase8keybtree9BtreeNode16get_val_with_tagEiPNS0_11MultibitSetE:55 + 2: 5 + 18: _ZNK9oceanbase8keybtree9BtreeNode7is_leafEv:25 + 0: 5 + 19.1: _ZN9oceanbase8keybtree11MultibitSet4loadERKS1_:35 + 0: 5 + 21: _ZNK9oceanbase8keybtree9BtreeNode4sizeEPNS0_11MultibitSetE:125 + 2: 5 + 2.3: 5 + 2.4: 5 + 2: _ZNK9oceanbase8keybtree9BtreeNode7is_leafEv:40 + 0: 5 + 21.1: _ZN9oceanbase8keybtree4Path4pushEPNS0_9BtreeNodeEi:200 + 3: 5 + 6: 5 + 7: 5 + 8: 5 + 17: _ZN9oceanbase8keybtree10ScanHandle12scan_forwardEbPl:196730 + 9.1: 772 + 13: 699 + 17: 82 + 7: _ZN9oceanbase8keybtree4Path3popERPNS0_9BtreeNodeERi:21532 + 3: 769 + 8: 769 + 9: 769 + 10: 769 + 9.1: _ZN9oceanbase8keybtree9BtreeNode21get_next_active_childEilPlPNS0_11MultibitSetE:110168 + 2: 769 + 3: 5 + 5: 769 + 5.1: 769 + 6: 699 + 5.1: _ZNK9oceanbase8keybtree9BtreeNode4sizeEPNS0_11MultibitSetE:19225 + 2: 769 + 2.4: 769 + 2: _ZNK9oceanbase8keybtree9BtreeNode7is_leafEv:5383 + 0: 769 + 6: _ZNK9oceanbase8keybtree9BtreeNode7get_tagEiPNS0_11MultibitSetE:58739 + 2: 699 + 2: _ZNK9oceanbase8keybtree9BtreeNode12get_real_posEiPNS0_11MultibitSetE:51050 + 2: 696 + 3.3: 620 + 2: _ZNK9oceanbase8keybtree9BtreeNode7is_leafEv:6264 + 0: 696 + 3.1: _ZNK9oceanbase8keybtree11MultibitSet2atEi:41610 + 5: 620 + 5.2: 620 + 5.3: 5 + 7: 620 + 4: _ZN9oceanbase8keybtree11MultibitSet4loadERKS1_:1860 + 0: 620 + 9.2: _ZNK9oceanbase8keybtree9BtreeNode4sizeEPNS0_11MultibitSetE:23160 + 2: 772 + 2.4: 772 + 2: _ZNK9oceanbase8keybtree9BtreeNode7is_leafEv:8492 + 0: 772 + 12: _ZN9oceanbase8keybtree4Path4pushEPNS0_9BtreeNodeEi:17475 + 3: 699 + 6: 699 + 7: 699 + 8: 699 + 13: _ZNK9oceanbase8keybtree9BtreeNode7is_leafEv:4893 + 0: 699 + 16: _ZNK9oceanbase8keybtree9BtreeNode7get_valEiPNS0_11MultibitSetE:1312 + 2: 82 + 2: _ZNK9oceanbase8keybtree9BtreeNode16get_val_with_tagEiPNS0_11MultibitSetE:984 + 2: 82 + 17: _ZNK9oceanbase8keybtree9BtreeNode7is_leafEv:410 + 0: 82 + 18.1: _ZN9oceanbase8keybtree11MultibitSet4loadERKS1_:525 + 0: 75 + 20: _ZN9oceanbase8keybtree4Path4pushEPNS0_9BtreeNodeEi:3628 + 3: 82 + 6: 82 + 7: 82 + 8: 82 + 15: _ZN9oceanbase8keybtree10BaseHandle11release_refEv:36468 + 2: 848 + 3: 848 + 2: _ZN9oceanbase6common6QClock14leave_criticalEm:22048 + 1: 848 + 2: _ZN9oceanbase6common6QClock6locateEm:10176 + 0: 848 + 2.1: _ZN9oceanbase6common6QClock9ClockSlot11clear_clockEv:6784 + 0: 848 +_ZN9oceanbase3omt10ObThWorker6workerERlS2_Ri:36667876:0 + 1: 0 + 2: 0 + 4: 0 + 11.1: 18 + 11.2: 0 + 11.3: 0 + 11.4: 18 + 11.6: 0 + 11.8: 18 + 12.1: 0 + 13.1: 0 + 16.2: 5561 + 18.1: 5709 + 19: 5709 + 20.1: 5709 + 22.1: 5709 + 24.1: 5709 + 25.1: 18 + 27: 5709 + 28.1: 5709 + 29.1: 0 + 32.1: 5816 _ZN9oceanbase6common13ObPageManager14set_tenant_ctxEmm:5803 + 32.2: 5606 + 36.1: 5106 _ZN9oceanbase3omt10ObThWorker25set_th_worker_thread_nameEm:5945 + 39: 5388 + 40.1: 5388 + 44: 5388 + 44.1: 18 + 44.5: 18 + 44.6: 5388 _ZN9oceanbase3lib11DynamicInfoC2Ev:5482 + 44.7: 5557 _ZN9oceanbase3lib2_SILNS0_13ContextSourceE1EEC2IJNS0_11DynamicInfoERNS0_12ContextParamEPNS0_10StaticInfoEEEEbDpOT_:5584 + 44.9: 5719 + 44.10: 11040 + 44.11: 11040 + 44.12: 5251 _ZN9oceanbase3lib2_SILNS0_13ContextSourceE1EED2Ev:5278 + 44.16: 5719 + 44.18: 5332 + 60: 5719 + 60.2: 5719 + 60.5: 0 + 60.8: 5675 + 62.2: 5825 + 62.3: 11241 + 62.4: 11241 + 62.5: 5685 _ZN9oceanbase5share2_SILNS0_12ObEntityTypeE1ELNS0_12EntitySourceE2EED2Ev:6030 + 62.7: 5528 + 62.9: 5825 + 63: 5528 + 63.3: 5461 + 63.4: 10741 + 63.5: 10741 + 63.8: 5387 + 63.10: 5461 + 64: 5387 + 65: 5184 + 68: 5647 + 69: 5647 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:5540 + 73: 5569 _ZN9oceanbase6common16ObWaitEventGuardC1Elmlllb:5510 + 74: 4845 + 74.1: 5689 + 75: 5689 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:5572 + 76: 5554 _ZN9oceanbase6common16ObWaitEventGuardD1Ev:5769 + 76.1: 18 + 78: 5536 + 79: 5234 + 80.1: 5234 + 81.2: 5367 + 81.3: 124 + 81.4: 124 + 81.5: 124 + 81.6: 124 + 81.7: 124 + 81.11: 124 + 81.12: 124 + 81.13: 124 + 81.14: 124 + 82: 5468 + 83: 5468 + 84.1: 5468 + 85: 5468 + 86: 5468 + 89: 5055 + 91: 9 + 92.1: 9 + 98: 310 + 100: 5353 + 101.1: 5353 + 101.3: 5353 + 102: 5353 + 103: 5353 + 104.2: 5353 + 105: 0 + 115.26: 18 + 8: _ZN9oceanbase3omt10ObThWorker10th_createdEv:0 + 2: _ZN9oceanbase3omt17ObWorkerProcessor10th_createdEv:0 + 2: 0 + 11: _ZN9oceanbase5share2_SILNS0_12ObEntityTypeE1ELNS0_12EntitySourceE2EEC2IJRKmEEEbDpOT_:432 + 1: 0 + 5: 0 + 9: 0 + 10: 0 + 13: 0 + 17: 0 + 1: _ZN9oceanbase5share6_SBaseC2Ev:0 + 1: 0 + 6: _ZN9oceanbase5share13create_entityINS0_15ObResourceOwnerEJRKmEEEiRT_DpOT0_:0 + 6: 0 + 5: _ZN9oceanbase5share15ObResourceOwnerC2Em:0 + 1: 0 + 10: _ZN9oceanbase5share5GuardILNS0_12ObEntityTypeE1EEC2ERNS0_15ObResourceOwnerE:0 + 1: 0 + 3: 0 + 11: _ZN9oceanbase5share5GuardILNS0_12ObEntityTypeE1EE4initEv:432 + 4: 0 + 7: 0 + 8: 18 + 9: 0 + 12: 0 + 7: _ZL12abort_unlessb:90 + 5: 0 + 6: 18 + 11.5: _ZNK9oceanbase5share6_SBase7get_retEv:0 + 2: 0 + 11.9: _ZN9oceanbase5share2_SILNS0_12ObEntityTypeE1ELNS0_12EntitySourceE2EED2Ev:4464 + 2: 18 + 6: 18 + 3: _ZN9oceanbase5share5GuardILNS0_12ObEntityTypeE1EE6deinitEv:1602 + 5: 18 + 7: 18 + 8: 18 + 9: 18 + 12: 18 + 13: 18 + 7: _ZL12abort_unlessb:126 + 5: 18 + 6: 18 + 7: _ZN9oceanbase5share14destroy_entityINS0_15ObResourceOwnerEEEvPT_:540 + 3: 18 + 6: 18 + 7: 18 + 7.1: _ZNK9oceanbase3lib13MemoryContextptEv:72 + 1: 18 + 7.2: _ZN9oceanbase3lib17__MemoryContext__4freeEPv:288 + 2: 18 + 9.1: _ZN9oceanbase5share6_SBaseD2Ev:1890 + 2: 18 + 3.1: 18 + 3.2: 18 + 3.3: 18 + 3.4: 18 + 3.8: 18 + 12: _ZN9oceanbase6common13ObPageManager21thread_local_instanceEv:0 + 0: 0 + 14: _ZN9oceanbase3lib6Worker16set_worker_levelEi:0 + 0: 0 + 17: _ZN9oceanbase3omt10ObThWorker11wait_activeEv:1732911 + 5.1: 5410 + 6: 18 + 7: 18 + 10: 18 + 11: 18 + 12: 18 + 12.4: 18 + 13: 18 + 15: 18 + 18: 5410 + 21: 5410 + 22.1: 5410 + 22.5: 5410 + 23.1: 18 + 24: 18 + 26: 5410 + 26.3: 5410 + 27: 18 + 30.3: 18 + 3: _ZN9oceanbase6common13ObPageManager21thread_local_instanceEv:59731 + 0: 5561 _ZTWN9oceanbase6common13ObPageManager12tl_instance_E:6157 + 4: _ZN9oceanbase3lib11ObLockGuardINS_6common12ObThreadCondEEC2ERS3_:468288 + 1: 5417 + 2: 5417 + 4: 5410 + 5.1: 18 + 4: _ZN9oceanbase6common12ObThreadCond4lockEv:310609 + 2: 5417 + 3: 5417 + 4: 5417 + 5: 18 + 6.1: 18 + 7.1: 5417 + 8: 18 + 9.1: 18 + 11: 5410 + 12.2: _ZNK9oceanbase5share12ObTenantBase2idEv:126 + 0: 18 + 14: _ZN9oceanbase6common12ObThreadCond4waitEm:126 + 2: 18 + 22.2: _ZNK9oceanbase5share12ObTenantBase2idEv:37870 + 0: 5410 + 22.3: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:93104 + 2: 5410 + 2.1: 18 + 2.2: 18 + 26: _ZNK9oceanbase5share12ObTenantBase2idEv:37996 + 0: 5410 + 26.1: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:1728 + 2: 18 + 2.1: 18 + 2.2: 18 + 30.2: _ZN9oceanbase3lib11ObLockGuardINS_6common12ObThreadCondEED2Ev:440508 + 2: 5410 + 3: 5410 + 3.1: 5709 + 3.2: 18 + 4.1: 18 + 4.5: 18 + 3: _ZN9oceanbase6common12ObThreadCond6unlockEv:262230 + 2: 5410 + 3: 5410 + 4: 5410 + 5: 18 + 6.1: 18 + 7.1: 5709 + 8: 18 + 9.1: 18 + 11: 5709 + 18: _ZNK9oceanbase3lib6Worker16get_worker_levelEv:57090 + 0: 5709 + 20: _ZNK9oceanbase5share12ObTenantBase2idEv:79926 + 0: 5709 + 32: _ZNK9oceanbase5share12ObTenantBase2idEv:40712 + 0: 5816 + 35: _ZN9oceanbase6common19CLEAR_INTERRUPTABLEEv:327546 + 5.1: 5188 _ZN9oceanbase6common18ObInterruptChecker22clear_interrupt_statusEv:5308 + 2: _ZN9oceanbase6common11get_checkerEv:223786 + 2: 5188 + 2.1: 18 + 2.2: 18 + 2.1: _ZN9oceanbase6common18ObInterruptCheckerC2Ev:92898 + 0.1: _ZN9oceanbase6common15ObInterruptCodeC2Ev:90468 + 0: 288 + 0: _ZN9oceanbase5obrpc20ObInterruptStackInfoC2Ev:59040 + 0: 288 + 2: 288 + 0.2: _Z9ob_gettidv:2430 + 3: 18 + 4: 18 + 2: _Z13get_tid_cachev:1260 + 7: 18 + 7.1: 18 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:414 + 0: 18 + 37: _ZN9oceanbase3lib17ContextTLOptGuardC2Eb:54588 + 1: 5616 _ZTWN9oceanbase3lib17ContextTLOptGuard13enable_tl_optE:5664 + 3: 5468 _ZTWN9oceanbase3lib17ContextTLOptGuard13enable_tl_optE:5857 + 38: _ZN9oceanbase3lib12ContextParamC2Ev:75432 + 5: 5388 + 39: _ZNK9oceanbase5share12ObTenantBase2idEv:37716 + 0: 5388 + 39.1: _ZN9oceanbase3lib12ContextParam12set_mem_attrIJmRA12_KcNS_6common8ObCtxIds11ObCtxIdEnumEEEERS1_DpOT_:226296 + 2: 5388 + 40: _ZN9oceanbase3lib12is_mini_modeEv:53880 + 2: 5388 + 40.1: _ZN9oceanbase3lib12ContextParam13set_page_sizeEl:37716 + 2: 5388 + 42: _ZN9oceanbase3lib12ContextParam14set_propertiesEl:59268 + 2: 5388 + 43: _ZN9oceanbase3lib12ContextParam15set_ablock_sizeEj:53880 + 2: 5388 + 44.15: _ZNK9oceanbase3lib6_SBase7get_retEv:34314 + 2: 5719 + 44.19: _ZN9oceanbase3lib2_SILNS0_13ContextSourceE1EED2Ev:5274 + 2: 18 + 6.1: 18 + 9: 18 + 3: _ZN9oceanbase3lib4Flow6deinitEv:1602 + 2: 18 + 4: 18 + 5: 18 + 6: 18 + 9: 18 + 10: 18 + 4: _ZL12abort_unlessb:126 + 5: 18 + 6: 18 + 6: _ZN9oceanbase3libneERKNS0_13MemoryContextEDn:180 + 1: 18 + 1: _ZNK9oceanbase3lib13MemoryContext11ref_contextEv:126 + 1: 18 + 7: _ZN9oceanbase3lib17__MemoryContext__15destory_contextERNS0_13MemoryContextE:1098 + 3: 18 + 4: 18 + 5: 18 + 6: 18 + 2: _ZNK9oceanbase3lib13MemoryContext16check_magic_codeEv:126 + 0: 18 + 2.1: _ZL12abort_unlessb:126 + 5: 18 + 6: 18 + 5: _ZL12abort_unlessb:126 + 5: 18 + 6: 18 + 9.1: _ZN9oceanbase3lib6_SBaseD2Ev:1890 + 2: 18 + 3.1: 18 + 3.2: 18 + 3.3: 18 + 3.4: 18 + 3.8: 18 + 58: _ZZN9oceanbase3omt10ObThWorker6workerERlS2_RiEN14AllocatorGuardC2EPPNS_6common12ObIAllocatorE:278076 + 3: 5719 + 3: _ZN9oceanbase3lib4Flow11current_ctxEv:163696 + 2: _ZN9oceanbase3lib4Flow12current_flowEv:163696 + 3: 5719 + 8: 18 + 12: 18 + 8.1: _ZN9oceanbase3lib4FlowC2ERNS0_13MemoryContextE:738 + 1: 18 + 3: 18 + 10: _ZN9oceanbase3lib4Flow4initEv:2250 + 4: 18 + 7: 18 + 8: 18 + 9: 18 + 12: 18 + 7: _ZL12abort_unlessb:198 + 5: 18 + 6: 18 + 60: _ZNK9oceanbase5share12ObTenantBase2idEv:40033 + 0: 5719 + 60.1: _ZN9oceanbase6common20is_virtual_tenant_idEm:62909 + 2: 5719 + 62: _ZN9oceanbase5share2_SILNS0_12ObEntityTypeE1ELNS0_12EntitySourceE2EEC2IJRKmEEEbDpOT_:925673 + 1: 5675 + 9: 5675 + 13: 5675 + 17: 5675 + 1: _ZN9oceanbase5share6_SBaseC2Ev:119175 + 1: 5675 + 6: _ZN9oceanbase5share13create_entityINS0_15ObResourceOwnerEJRKmEEEiRT_DpOT0_:119175 + 6: 5675 + 5: _ZN9oceanbase5share15ObResourceOwnerC2Em:39725 + 1: 5675 + 10: _ZN9oceanbase5share5GuardILNS0_12ObEntityTypeE1EEC2ERNS0_15ObResourceOwnerE:96475 + 1: 5675 + 3: 5675 + 11: _ZN9oceanbase5share5GuardILNS0_12ObEntityTypeE1EE4initEv:437623 + 4: 5675 + 7: 5675 + 8: 5675 + 9: 5675 + 12: 5675 + 7: _ZL12abort_unlessb:34140 + 5: 5675 + 6: 18 + 62.6: _ZNK9oceanbase5share6_SBase7get_retEv:33168 + 2: 5528 + 62.10: _ZN9oceanbase5share2_SILNS0_12ObEntityTypeE1ELNS0_12EntitySourceE2EED2Ev:4464 + 2: 18 + 6: 18 + 3: _ZN9oceanbase5share5GuardILNS0_12ObEntityTypeE1EE6deinitEv:1602 + 5: 18 + 7: 18 + 8: 18 + 9: 18 + 12: 18 + 13: 18 + 7: _ZL12abort_unlessb:126 + 5: 18 + 6: 18 + 7: _ZN9oceanbase5share14destroy_entityINS0_15ObResourceOwnerEEEvPT_:540 + 3: 18 + 6: 18 + 7: 18 + 7.1: _ZNK9oceanbase3lib13MemoryContextptEv:72 + 1: 18 + 7.2: _ZN9oceanbase3lib17__MemoryContext__4freeEPv:288 + 2: 18 + 9.1: _ZN9oceanbase5share6_SBaseD2Ev:1890 + 2: 18 + 3.1: 18 + 3.2: 18 + 3.3: 18 + 3.4: 18 + 3.8: 18 + 63: _ZN9oceanbase3omt8ObTenant3ctxEv:38696 + 2: 5528 + 63.1: _ZN9oceanbase5share2_SILNS0_12ObEntityTypeE0ELNS0_12EntitySourceE0EEC2EbPNS0_13ObTenantSpaceE:873060 + 1: 5528 + 4: 5528 + 8.1: 5387 + 10: 5387 + 13: 5387 + 1: _ZN9oceanbase5share6_SBaseC2Ev:60808 + 1: 5528 + 7: _ZN9oceanbase5share5GuardILNS0_12ObEntityTypeE0EEC2ERNS0_13ObTenantSpaceE:149256 + 1: 5528 + 3: 5528 + 8: _ZN9oceanbase5share5GuardILNS0_12ObEntityTypeE0EE4initEv:381044 + 4: 5528 + 7: 112 + 8: 112 + 9: 112 + 12: 5689 + 13: 5689 _ZN9oceanbase5share13ObTenantSpace13guard_init_cbERKS1_PcRb:5596 + 7: _ZL12abort_unlessb:672 + 5: 112 + 6: 0 + 14: _ZN9oceanbase5share6_SBaseD2Ev:3690 + 2: 18 + 3.2: 18 + 3.3: 18 + 3.4: 18 + 3.1: _ZN9oceanbase6common8ObLogger10get_loggerEv:1674 + 2: 18 + 2.1: 18 + 2.2: 18 + 2.3: 18 + 2.4: 18 + 2.6: 18 + 63.6: _ZN9oceanbase5share2_SILNS0_12ObEntityTypeE0ELNS0_12EntitySourceE0EED2Ev:507010 + 2: 5979 + 3: _ZN9oceanbase5share5GuardILNS0_12ObEntityTypeE0EE6deinitEv:389159 + 2: 5979 + 3: 5979 _ZN9oceanbase5share13ObTenantSpace15guard_deinit_cbERKS1_Pc:5892 + 5: 5539 + 7: 5539 + 8: 5539 + 9: 5539 + 12: 9 + 13: 9 + 7: _ZL12abort_unlessb:11123 + 5: 5539 + 6: 9 + 6.1: _ZN9oceanbase5share6_SBaseD2Ev:46085 + 2: 5539 + 3.1: 9 + 3.2: 9 + 3.3: 9 + 3.4: 18 + 3.8: 18 + 63.7: _ZNK9oceanbase5share6_SBase7get_retEv:32322 + 2: 5387 + 63.11: _ZN9oceanbase5share2_SILNS0_12ObEntityTypeE0ELNS0_12EntitySourceE0EED2Ev:4266 + 2: 18 + 3: _ZN9oceanbase5share5GuardILNS0_12ObEntityTypeE0EE6deinitEv:2088 + 2: 18 + 3: 18 + 5: 18 + 7: 18 + 8: 18 + 9: 18 + 12: 18 + 13: 18 + 7: _ZL12abort_unlessb:126 + 5: 18 + 6: 18 + 6.1: _ZN9oceanbase5share6_SBaseD2Ev:1890 + 2: 18 + 3.1: 18 + 3.2: 18 + 3.3: 18 + 3.4: 18 + 3.8: 18 + 64: _ZNK9oceanbase5share12ObTenantBase2idEv:37709 + 0: 5387 + 64.1: _ZN9oceanbase6common20ObTenantStatEstGuardC2Em:150987 + 3: 5184 + 4: 0 + 5: 0 + 7: 0 + 8: 0 + 3: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:88779 + 2: 5387 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:5414 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:20736 + 2: 5184 + 6: _ZN9oceanbase6common17ObSessionDIBuffer13get_tenant_idEv:0 + 3: 0 + 4: 0 + 65: _ZNK9oceanbase3omt8ObTenant15get_compat_modeEv:1574553 + 2: 5184 + 3: 5647 + 2: _ZN9oceanbase6common12TCRLockGuardC2ERKNS0_8TCRWLockE:1080929 + 1: 5184 + 3: 5647 + 4.1: 0 + 3: _ZN9oceanbase6common8TCRWLock6rdlockElRl:894859 + 3.1: 9 + 4: 9 + 5: 9 + 3.2: _ZN9oceanbase6common8TCRWLock10try_rdlockERl:894364 + 3: 5184 + 5: 5647 + 8: 9 + 4: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:36288 + 0: 5184 + 4.1: _ZN9oceanbase6common5TCRef7inc_refEPiRl:669632 + 2: 5184 + 4: 5184 + 5.1: 5184 + 5.2: 112 + 7: 5184 + 7.1: 5184 + 8: 5647 + 12: 5647 + 2: _ZN9oceanbase6common8get_itidEv:145782 + 4: 5184 + 5: 9 + 6: 9 + 8: 9 + 13: _ZN9oceanbase6common5TCRef5xref_EPii:90 + 0: 9 + 8: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:63 + 0: 9 + 8.1: _ZN9oceanbase6common5TCRef7dec_refEPil:270 + 2: 9 + 2.1: 9 + 3: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 9: _ZN9oceanbase6common9LWaitCond6signalEv:90 + 2: 9 + 2.1: 0 + 3: 0 + 4: _ZN9oceanbase6common12TCRLockGuardD2Ev:417807 + 2: 0 + 3: 5647 + 3.1: 5647 + 3.2: 18 + 3: _ZN9oceanbase6common8TCRWLock8rdunlockEl:299076 + 3: 5647 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:22588 + 0: 5647 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPil:170378 + 2: 5647 + 2.1: 5647 + 3: _ZN9oceanbase6common5TCRef5xref_EPii:968 + 0: 121 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:66085 + 2: 5647 + 2.1: 124 + 3: 124 + 65.1: _ZN9oceanbase3lib6Worker22set_compatibility_modeENS1_10CompatModeE:254518 + 2: _ZN9oceanbase3lib15set_compat_modeENS0_6Worker10CompatModeE:254518 + 2: 5647 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:147225 + 2: 5647 + 2.1: 121 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:2662 + 1: 121 + 74: _ZN9oceanbase3omt8ObTenant15get_new_requestERNS0_10ObThWorkerElRPNS_3rpc9ObRequestE:22896607 + 0: 4845 + 5: 4845 + 7: 4845 + 9: 4845 + 10: 4845 + 14: 0 + 16.1: 0 + 16.2: 0 + 16.3: 0 + 16.4: 0 + 16.6: 0 + 16.7: 0 + 17: 0 + 18: 0 + 18.3: 0 + 28: 4845 + 29: 0 + 30.1: 0 + 31.1: 4845 + 32: 0 + 33: 0 + 34: 0 + 37: 0 + 38.1: 0 + 39: 0 + 39.3: 0 + 40.1: 0 + 42.1: 0 + 44.1: 4845 + 45: 0 + 48: 4845 + 48.1: 172 + 50.1: 201 + 53: 4834 + 55: 42390 + 56: 42390 + 57: 0 + 65: 4832 + 68: 54 _ZN9oceanbase6common16ObPriorityQueue2ILi1ELi2ELi3EE13pop_high_highERPNS0_6ObLinkEl:45 + 69.1: 4786 + 72: 77 + 76.1: 4710 + 77: 4710 + 78: 0 + 82: 4710 + 83: 4513 + 85: 4513 + 87: 112 + 92: 112 + 99: 4745 + 100.1: 5348 + 100.2: 121 + 100.3: 121 + 100.4: 121 + 100.6: 121 + 100.7: 121 + 101: 5348 + 102: 5348 + 102.3: 5348 + 104.1: 5348 + 112: 5689 + 113: 121 + 121: 5689 + 10: _ZN9oceanbase3omt10ObThWorker9get_groupEv:33915 + 0: 4845 + 14.1: _ZN9oceanbase6common16ObPriorityQueue2ILi0ELi1ELi0EE3popERPNS0_6ObLinkEl:0 + 2: 0 + 15: _ZN9oceanbase3omt10ObThWorker9get_groupEv:0 + 0: 0 + 15.1: _ZN9oceanbase3omt15ObResourceGroup18atomic_inc_pop_cntEv:0 + 0.1: 0 + 16.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:0 + 2: 0 + 19: _ZNK9oceanbase3rpc9ObRequest16large_retry_flagEv:0 + 0: 0 + 20: _ZN9oceanbase3omt10ObThWorker15set_large_queryEb:0 + 0: 0 + 48: _ZNK9oceanbase3lib6Worker8get_tidxEv:33915 + 2: 4845 + 55: _ZN9oceanbase3omt17ObMultiLevelQueue7try_popERPNS_6common6ObLinkEi:6104160 + 6.1: 42390 + 7: 0 + 6.1: _ZNK9oceanbase6common15ObPriorityQueueILi1EE4sizeEv:2670570 + 0: 42390 + 72: _ZN9oceanbase6common16ObPriorityQueue2ILi1ELi2ELi3EE8pop_highERPNS0_6ObLinkEl:1191 + 2: 77 _ZN9oceanbase6common16ObPriorityQueue2ILi1ELi2ELi3EE6do_popERPNS0_6ObLinkEll:68 + 77: _ZNK9oceanbase6common11ObLinkQueue4sizeEv:89490 + 2: 4710 + 3: 4710 + 4: 4710 + 78: _ZNK9oceanbase3omt10ObThWorker12has_lq_tokenEv:0 + 0: 0 + 79: _ZN9oceanbase3omt8ObTenant16acquire_lq_tokenEv:0 + 3: 0 + 4: 0 + 5.1: 0 + 80: _ZN9oceanbase3omt10ObThWorker12set_lq_tokenEb:0 + 0: 0 + 83: _ZN9oceanbase6common16ObPriorityQueue2ILi1ELi2ELi3EE3popERPNS0_6ObLinkEl:7931543 + 2: _ZN9oceanbase6common16ObPriorityQueue2ILi1ELi2ELi3EE6do_popERPNS0_6ObLinkEll:7931543 + 7.1: 115 + 21: 234 + 23: 4391 + 12: _ZN9oceanbase6common9SCondTempILi3EE7prepareEi:367380 + 3: 4710 + 4: 4710 + 2: _ZN9oceanbase6common9SCondTempILi3EE7get_keyEiRj:221370 + 0: _ZN9oceanbase6common16SCondSimpleIdGen4nextEv:146010 + 0: _ZN9oceanbase6common7icpu_idEv:146010 + 2: _ZN9oceanbase6common12sched_getcpuEv:146010 + 0: 4710 + 0: _ZN9oceanbase6common8get_itidEv:131880 + 4: 4710 + 5: 0 + 6: 0 + 8: 0 + 0.1: _ZN9oceanbase6common10SimpleCond7get_keyEv:75360 + 0: 4710 + 0: _ZN9oceanbase3lib7ObFutex4uvalEv:37680 + 0: 4710 + 15: _ZN9oceanbase6common11ObLinkQueue3popERPNS0_6ObLinkE:7507402 + 5: 33960 + 7: 33960 + 9: 4647 + 4: _ZN9oceanbase6commonL11faa_boundedEPmS1_Rm:4141028 + 2: 33960 + 3: 33960 + 4: 33960 + 5: 29358 + 6: 29358 + 8: 780 + 11: 744 + 12: 744 + 15: 744 + 160: 112 + 9: _ZN9oceanbase6common11ObLinkQueue3idxEl:33258 + 0: 4647 + 65318: 672 + 10.1: _ZN9oceanbase6common13ObSpLinkQueue3popERPNS0_6ObLinkE:939264 + 3.2: 8861 + 3.3: 8861 + 7: 3586 + 3.1: _ZN9oceanbase6common13ObSpLinkQueue6do_popERPNS0_6ObLinkE:739835 + 4.1: 12326 + 5: 10936 + 7: 12326 + 9: 3586 + 12.1: 8860 + 13: 4545 + 15: 8861 + 16: 8861 + 4: _ZN9oceanbase6common13ObSpLinkQueue4pushEPNS0_6ObLinkE:80302 + 7: 4455 + 8: 4455 + 9: 4455 + 87: _ZN9oceanbase6common11ObLinkQueue3popERPNS0_6ObLinkE:3696 + 5: 115 + 7: 112 + 9: 0 + 10.1: 0 + 4: _ZN9oceanbase6commonL11faa_boundedEPmS1_Rm:2340 + 2: 117 + 3: 117 + 4: 117 + 5: 0 + 6: 0 + 8: 0 + 11: 0 + 12: 0 + 15: 0 + 9: _ZN9oceanbase6common11ObLinkQueue3idxEl:0 + 0: 0 + 88: _ZN9oceanbase3omt10ObThWorker15set_large_queryEb:0 + 0: 0 + 92: _ZN9oceanbase6common16ObPriorityQueue2ILi1ELi2ELi3EE3popERPNS0_6ObLinkEl:1789 + 2: 112 _ZN9oceanbase6common16ObPriorityQueue2ILi1ELi2ELi3EE6do_popERPNS0_6ObLinkEll:112 + 100.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:26296 + 2: 4408 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:4513 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:21392 + 2: 5348 + 107: _ZNK9oceanbase3rpc9ObRequest10get_packetEv:0 + 2: 0 + 108: _ZNK9oceanbase5obrpc11ObRpcPacket17get_request_levelEv:0 + 2: 0 + 108.1: _ZN9oceanbase3lib6Worker22set_curr_request_levelEi:0 + 0: 0 + 112: _ZNK9oceanbase3omt10ObThWorker12has_lq_tokenEv:39823 + 0: 5689 + 115: _ZN9oceanbase3omt8ObTenant16release_lq_tokenEv:1573 + 2.1: 121 + 117: _ZN9oceanbase3omt10ObThWorker12set_lq_tokenEb:1452 + 0: 121 + 80: _ZNK9oceanbase3rpc9ObRequest21get_receive_timestampEv:73276 + 2: 5234 + 81.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:27198 + 2: 5234 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:5137 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:21468 + 2: 5367 + 82: _ZN9oceanbase3rpc9ObRequest17set_push_pop_diffEl:125764 + 2: 5468 + 84: _ZNK9oceanbase3rpc9ObRequest21get_enqueue_timestampEv:38276 + 2: 5468 + 86: _ZN9oceanbase3lib6Worker16set_rpc_stat_srvEPv:38276 + 0: 5468 + 87: _ZN9oceanbase3omt10ObThWorker15process_requestERNS_3rpc9ObRequestE:1359963 + 3: 5468 + 5: 5468 + 6: 5468 + 8: 5468 + 11: 5560 _ZTWN9oceanbase8memtable33TLOCAL_NEED_WAIT_IN_LOCK_WAIT_MGRE:5444 + 12: 5538 _ZN9oceanbase5share11ObTenantEnv3mtlIPNS_8memtable13ObLockWaitMgrEEET_v:5629 + 13: 5183 _ZN9oceanbase3omt17ObWorkerProcessor7processERNS_3rpc9ObRequestE:5235 + 13.1: 5268 + 14.1: 9 + 16: 5268 _ZN9oceanbase5share11ObTenantEnv3mtlIPNS_8memtable13ObLockWaitMgrEEET_v:5152 + 16.1: 5306 _ZN9oceanbase8memtable13ObLockWaitMgr12post_processEbRb:5410 + 19: 5324 + 21: 124 + 22: 124 + 23: 124 + 24: 124 + 24.1: 124 + 25.1: 0 + 28.1: 124 + 30.1: 124 + 32: 124 + 33.1: 124 + 34.1: 124 + 35: 124 + 35.1: 124 + 38.4: 124 + 38.5: 124 + 39.1: 0 + 43: 124 + 44: 0 + 46: 0 + 46.1: 0 + 47.1: 18 + 52: 5415 _ZN9oceanbase6common14ObTscTimestamp12get_instanceEv:5424 + 52.1: 5265 _ZN9oceanbase6common14ObTscTimestamp12current_timeEv:5391 + 52.2: 5055 + 52.3: 9 + 52.6: 9 + 54: 9 + 54.4: 9 + 55.1: 9 + 7: _ZN9oceanbase3lib6Worker35reset_sql_throttle_current_priorityEv:60148 + 1: _ZN9oceanbase3lib6Worker33set_sql_throttle_current_priorityEl:60148 + 1: 5468 + 8.1: _ZNK9oceanbase5share12ObTenantBase2idEv:76552 + 0: 5468 + 8.3: _ZN17ObDiagTenantGuardC2ERN9oceanbase3omt10ObThWorkerEm:43856 + 1: 5468 + 3.1: 124 + 2: _ZN9oceanbase3lib6Worker14set_rpc_tenantEm:1364 + 0: 124 + 9: _ZN9oceanbase3lib6Worker12set_req_flagEb:22240 + 2: 5560 + 12.1: _ZN9oceanbase3rpc9ObRequest18get_lock_wait_nodeEv:20732 + 0: 5183 + 12.2: _ZNK9oceanbase3rpc9ObRequest21get_receive_timestampEv:36281 + 2: 5183 + 12.3: _ZN9oceanbase8memtable13ObLockWaitMgr5setupERNS_3rpc14ObLockWaitNodeEl:342078 + 3: 5183 + 4: 5183 + 5: 5183 + 6: 5183 + 2: _ZN9oceanbase3rpc14ObLockWaitNode15reset_need_waitEv:25915 + 0: 5183 + 20: _ZNK9oceanbase3rpc9ObRequest15get_retry_timesEv:868 + 2: 124 + 21: _ZN9oceanbase3rpc9ObRequest15set_retry_timesEi:868 + 2: 124 + 34: _ZN9oceanbase6common3minEmm:1984 + 2: 124 + 35: _ZN9oceanbase3omt8ObTenant16push_retry_queueERNS_3rpc9ObRequestEm:10044 + 2: _ZN9oceanbase3omt12ObRetryQueue4pushERNS_3rpc9ObRequestEm:10044 + 2: 124 + 3: 124 + 4: 124 + 2: _ZN9oceanbase6common3maxEmm:868 + 2: 124 + 4.2: _ZN9oceanbase6common13ObSpLinkQueue4pushEPNS0_6ObLinkE:3224 + 7: 124 + 8: 124 + 9: 124 + 53: _ZN9oceanbase6common13ObPageManager21thread_local_instanceEv:72 + 0: 9 + 54.1: _ZNK9oceanbase6common13ObPageManager8get_holdEv:63 + 2: _ZNK9oceanbase3lib8BlockSet14get_total_holdEv:63 + 2: 9 + 62: _ZN9oceanbase3lib6Worker12set_req_flagEb:20220 + 2: 5055 + 63.16: _ZN17ObDiagTenantGuardD2Ev:55605 + 1: _ZN9oceanbase3lib6Worker16reset_rpc_tenantEv:55605 + 0: 5055 + 63.18: _ZN17ObDiagTenantGuardD2Ev:198 + 1: _ZN9oceanbase3lib6Worker16reset_rpc_tenantEv:198 + 0: 18 + 100: _ZN9oceanbase3omt8ObTenant13add_idle_timeEl:42824 + 2: 5353 + 102: _ZN9oceanbase3omt8ObTenant18check_worker_countERNS0_10ObThWorkerE:176649 + 3: 5353 + 3.1: 0 + 4.1: 0 + 6: 0 + 7: 0 + 7.1: 0 + 7.3: 0 + 8: 0 + 11: 0 + 14.1: 0 + 16: 5353 + 16.1: 0 + 17: 0 + 18: 0 + 19: 0 + 22: 0 + 23: 0 + 24: 0 + 26: 0 + 27.1: 0 + 27.2: 0 + 33: 0 + 35: 0 + 40: 0 + 40.1: 0 + 41: 0 + 41.1: 0 + 41.2: 0 + 42.1: 0 + 3.1: _ZN9oceanbase3lib7ObMutex7trylockEv:0 + 0: 0 + 13: _ZN9oceanbase3lib7ObMutex6unlockEv:0 + 0: 0 + 17: _ZN9oceanbase3lib7ObMutex7trylockEv:0 + 0: 0 + 35: _ZNK9oceanbase3omt10ObThWorker12has_lq_tokenEv:0 + 0: 0 + 36: _ZN9oceanbase3omt8ObTenant16release_lq_tokenEv:0 + 2.1: 0 + 38: _ZN9oceanbase3omt10ObThWorker12set_lq_tokenEb:0 + 0: 0 + 39: _ZN9oceanbase3omt10ObThWorker12set_inactiveEv:0 + 2: 0 + 3: 0 + 40: _ZN9oceanbase5share12ObCgroupCtrl8is_validEv:0 + 0: 0 + 41.1: _ZNK9oceanbase3lib7Threads7get_tidEv:0 + 3: 0 + 3: _ZNK9oceanbase3lib6Thread7get_tidEv:0 + 2: 0 + 45: _ZN9oceanbase3lib7ObMutex6unlockEv:0 + 0: 0 + 103: _ZN9oceanbase3omt8ObTenant19check_paused_workerERNS0_10ObThWorkerE:69769 + 7: 5353 + 7.1: 0 + 7.2: 0 + 8: 0 + 11: 0 + 11.1: 0 + 12: 0 + 16.1: 0 + 28: 0 + 28.1: 18 + 7.2: _ZN9oceanbase3omt10ObThWorker9is_activeEv:0 + 0: 0 + 8: _ZNK9oceanbase3omt10ObThWorker12has_lq_tokenEv:0 + 0: 0 + 8.1: _ZN9oceanbase3omt8ObTenant16acquire_lq_tokenEv:0 + 3: 0 + 4: 0 + 5.1: 0 + 9: _ZN9oceanbase3omt10ObThWorker12set_lq_tokenEb:0 + 0: 0 + 11: _ZNK9oceanbase3omt10ObThWorker12has_lq_tokenEv:0 + 0: 0 + 11.1: _ZNK9oceanbase6common16ObPriorityQueue2ILi1ELi2ELi3EE4sizeEv:0 + 0: 0 + 13: _ZN9oceanbase6common7ObDListINS0_11ObDLinkNodeIPNS_3lib6WorkerEEEE12remove_firstEv:0 + 2: 0 + 2: _ZN9oceanbase6common7ObDListINS0_11ObDLinkNodeIPNS_3lib6WorkerEEEE6removeEPS6_:0 + 3: 0 + 7: 0 + 6: _ZN9oceanbase6common11ObDLinkBaseINS0_11ObDLinkNodeIPNS_3lib6WorkerEEEE6unlinkEv:0 + 2: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 17: _ZNK9oceanbase3omt10ObThWorker12has_lq_tokenEv:0 + 0: 0 + 17.1: _ZN9oceanbase3omt10ObThWorker12set_lq_tokenEb:0 + 0: 0 + 18: _ZN9oceanbase3omt8ObTenant9resume_itERNS0_10ObThWorkerE:0 + 2: 0 + 3: 0 + 21: _ZN9oceanbase3omt10ObThWorker12set_lq_tokenEb:0 + 0: 0 + 22: _ZN9oceanbase3omt10ObThWorker12set_inactiveEv:0 + 2: 0 + 3: 0 + 104.1: _ZN9oceanbase3omt10ObThWorker9get_groupEv:37471 + 0: 5353 + 107: _ZN9oceanbase6common20ObTenantStatEstGuardD2Ev:41934 + 2: 5353 + 3.1: 18 + 3: _ZN9oceanbase6common17ObSessionDIBuffer13switch_tenantEm:8680 + 3: 124 + 4: 124 + 6: 124 + 8: 124 + 10: 124 + 107.2: _ZN9oceanbase6common20ObTenantStatEstGuardD2Ev:1854 + 2: 18 + 3.1: 18 + 3: _ZN9oceanbase6common17ObSessionDIBuffer13switch_tenantEm:1512 + 3: 18 + 4: 18 + 6: 18 + 8: 18 + 10: 18 + 109: _ZZN9oceanbase3omt10ObThWorker6workerERlS2_RiEN14AllocatorGuardD2Ev:42656 + 2: 5332 + 109.1: _ZZN9oceanbase3omt10ObThWorker6workerERlS2_RiEN14AllocatorGuardD2Ev:144 + 2: 18 + 110: _ZN9oceanbase3lib17ContextTLOptGuardD2Ev:34329 + 2: 5724 _ZTWN9oceanbase3lib17ContextTLOptGuard13enable_tl_optE:5746 + 110.1: _ZN9oceanbase3lib17ContextTLOptGuardD2Ev:180 + 2: 18 + 114: _ZN9oceanbase3omt10ObThWorker10th_destroyEv:234 + 2: _ZN9oceanbase3omt17ObWorkerProcessor10th_destroyEv:234 + 2: 18 +_ZN9oceanbase12blocksstable10ObDatumRow15prepare_new_rowERKNS_6common8ObIArrayINS_5share6schema9ObColDescEEE:36515375:103855 + 1: 99910 + 2: 99910 + 4: 99910 + 5.1: 0 + 6.1: 99910 + 7: 0 + 8.1: 0 + 9.1: 99910 + 10.1: 0 + 12: 99910 + 13: 99910 + 15: 99910 + 16.1: 100485 + 16.5: 100485 + 17: 100485 + 18.1: 0 + 23: 102707 + 4: _ZNK9oceanbase12blocksstable10ObDatumRow8is_validEv:2198020 + 0: 99910 + 0.1: 99910 + 9.1: _ZN9oceanbase7storage13ObObjBufArray7reserveEl:3696670 + 2: 99910 + 3: 99910 + 4: 0 + 5.1: 0 + 6.1: 99910 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 13: 0 + 14: 0 + 15: 0 + 17: 0 + 18.1: 0 + 21: 99910 + 12: _ZN9oceanbase7storage13ObObjBufArray8get_dataEv:699370 + 0: 99910 + 17: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE2atEl:401940 + 6: 100485 + 17.1: _ZNK9oceanbase12blocksstable14ObStorageDatum14to_obj_enhanceERNS_6common5ObObjERKNS2_9ObObjMetaE:7837830 + 2: 100485 + 3: 100485 + 4: 0 + 5.1: 0 + 6.1: 100485 + 8.1: 0 + 9.1: 0 + 12: 100485 + 3: _ZNK9oceanbase6common11ObDatumDesc9is_outrowEv:803880 + 0: 100485 + 6.1: _ZNK9oceanbase6common11ObDatumDesc6is_extEv:401940 + 0: 100485 + 7: _ZNK9oceanbase6common7ObDatum7get_extEv:1607760 + 0: 100485 + 0: _ZNK9oceanbase6common5ObObj7get_extEv:1306305 + 3: 100485 + 4: 100485 + 7.1: _ZN9oceanbase6common5ObObj7set_extEl:3215520 + 3: 100485 + 4: 100485 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:1808730 + 0: 100485 + 0: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:803880 + 0: 100485 + 0.2: _ZN9oceanbase6common9ObObjMeta15set_extend_typeEh:602910 + 0: 100485 +_ZNK9oceanbase12blocksstable13ObDatumRowkey7compareERKS1_RKNS0_19ObStorageDatumUtilsERi:34039760:134559 + 1: 128377 + 2: 128377 + 4: 128377 + 4.1: 128377 + 4.3: 128377 + 5: 0 + 6.1: 0 + 8: 128377 + 8.3: 128377 + 9: 128377 + 10: 0 + 11.1: 0 + 14: 128377 + 15.1: 0 + 15.2: 137115 + 15.6: 137115 + 16: 137115 + 17.1: 0 + 20: 138573 + 21: 35279 + 26: 138596 + 4: _ZNK9oceanbase12blocksstable13ObDatumRowkey8is_validEv:2439163 + 0: 128377 + 0.1: 128377 + 4.1: _ZNK9oceanbase12blocksstable13ObDatumRowkey8is_validEv:2054032 + 0: 128377 + 0.1: 128377 + 4.2: _ZNK9oceanbase12blocksstable19ObStorageDatumUtils8is_validEv:1155393 + 0: 128377 + 16.1: _ZNK9oceanbase12blocksstable21ObStorageDatumCmpFunc7compareERKNS0_14ObStorageDatumES4_Ri:5778495 + 2: 128411 + 2.2: 128411 _ZN9oceanbase12blocksstableL21nonext_nonext_compareERKNS0_14ObStorageDatumES3_RKNS_6common9ObCmpFuncERi.8f1e732d6655d093e942b32e16c602d8:132191 _ZN9oceanbase12blocksstableL18nonext_ext_compareERKNS0_14ObStorageDatumES3_RKNS_6common9ObCmpFuncERi.8f1e732d6655d093e942b32e16c602d8:32 +_ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScanner21locate_cursor_to_readERb:32311409:104434 + 1: 98966 + 2: 98966 + 4: 98966 + 8: 98966 + 9: 104151 + 13.1: 104151 + 14: 104019 + 17: 95079 + 22: 0 + 23: 0 + 24.1: 0 + 25: 0 + 37: 102418 + 38: 9093 + 40.1: 9485 + 41: 18729 + 45: 0 + 47: 0 + 48: 0 + 49: 0 + 50: 0 + 51: 0 + 57.1: 18780 _ZThn320_N9oceanbase12blocksstable18ObMicroBlockReader14get_row_headerElRPKNS0_11ObRowHeaderE:20503 + 58.1: 0 + 60: 18780 + 61: 18780 + 62: 9349 + 63: 9349 + 64: 9349 + 65: 9349 + 68: 9485 + 68.3: 9485 + 73: 106121 + 9: _ZNK9oceanbase12blocksstable23ObIMicroBlockRowScanner12end_of_blockEv:1513764 + 3: 100753 + 7: 100741 + 19: _ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScanner20reuse_prev_micro_rowEv:14903219 + 2.1: 209820 + 2.3: 209820 + 3: 209820 + 3: _ZN9oceanbase12blocksstable14ObStorageDatum7set_nopEv:7343700 + 0: _ZN9oceanbase12blocksstable14ObStorageDatum13set_ext_valueEl:7343700 + 1: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:1888380 + 0: 209820 + 1.1: _ZN9oceanbase6common11ObDatumDesc7set_extEv:1888380 + 0: 209820 + 1.3: _ZN9oceanbase6common5ObObj7set_extEl:3566940 + 4: 209820 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:1678560 + 0: 209820 + 26: _ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScanner20reuse_prev_micro_rowEv:0 + 2.1: 0 + 2.3: 0 + 3: 0 + 3: _ZN9oceanbase12blocksstable14ObStorageDatum7set_nopEv:0 + 0: _ZN9oceanbase12blocksstable14ObStorageDatum13set_ext_valueEl:0 + 1: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:0 + 0: 0 + 1.1: _ZN9oceanbase6common11ObDatumDesc7set_extEv:0 + 0: 0 + 1.3: _ZN9oceanbase6common5ObObj7set_extEl:0 + 4: 0 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:0 + 0: 0 + 41: _ZNK9oceanbase12blocksstable23ObIMicroBlockRowScanner12end_of_blockEv:697034 + 3: 18639 + 6: 18639 + 7: 18819 + 11: 13 + 11.1: 13 + 61: _ZNK9oceanbase12blocksstable21ObMultiVersionRowFlag25is_last_multi_version_rowEv:75120 + 0: 18780 +_ZN9oceanbase3sql15ObExecuteResult12get_next_rowERNS0_13ObExecContextERPKNS_6common8ObNewRowE:31777712:86908 + 1: 82420 + 2: 82420 + 3: 82420 + 4: 82420 + 5: 82420 + 5.1: 81433 + 6: 3634 _ZN9oceanbase3sql13ObExecContext13get_allocatorEv:3760 + 6.2: 3492 + 8: 569 + 9.1: 569 + 11.1: 3518 + 12: 26 + 14: 3669 + 16: 3669 + 19: 82615 + 20.1: 82615 + 23: 81185 + 24.1: 90712 + 24.2: 172745 + 24.3: 172745 + 24.5: 90712 + 25: 81906 + 26: 81906 + 27: 83718 + 28.1: 565 + 29.1: 90712 _ZNK9oceanbase6common7ObDatum6to_objERNS0_5ObObjERKNS0_9ObObjMetaENS0_17ObObjDatumMapTypeE:83093 + 31.1: 565 + 36: 0 + 37: 0 + 39.1: 569 + 39.2: 0 + 39.3: 0 + 39.5: 0 + 40: 0 + 43: 0 + 43.3: 0 + 44: 569 + 46.1: 569 + 51: 94970 + 4: _ZNK9oceanbase3sql10ObOperator8get_specEv:329680 + 0: 82420 + 6.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE5countEv:13968 + 0: 3492 + 6.2: _ZN9oceanbase6common16ObArenaAllocator5allocEl:1019604 + 0: 3492 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13alloc_alignedEll:1002144 + 3: 3492 + 6: 3492 + 7: 3492 + 8: 3492 + 10: 3492 + 11: 3492 + 12: 3492 + 13: 3492 + 15.1: 565 + 16: 565 + 18: 565 + 20: 565 + 24: 565 + 28: 565 + 35: 3492 + 36: 3492 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE15ensure_cur_pageEv:343743 + 2: 3492 + 3: 569 + 5.1: 569 + 8: 569 + 9: 569 + 10: 569 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:198970 + 5: 569 + 6: 569 + 8: 569 + 9: 569 + 11.1: 565 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:145055 + 2: 569 + 3: 569 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:9104 + 5: 569 + 7: 569 + 8: 569 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:102420 + 2: 569 + 2.2: 569 + 2.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:87057 + 3: 569 + 4: 569 + 5: 569 + 6: 569 + 7: 569 + 8: 569 + 9: 569 + 10: 569 + 11: 569 + 13: 569 + 14.1: 569 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:3983 + 2: 569 + 9: _ZSt3maxIlERKT_S2_S2_:6828 + 5: 569 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:13656 + 1: 569 + 3: 569 + 8: _ZL12abort_unlessb:10194 + 5: 569 + 6: 565 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:4552 + 0: 569 + 7: _ZN9oceanbase6common16get_align_offsetEPvl:45396 + 3: 3492 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:24444 + 0: 3492 + 11: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:24444 + 7: 3492 + 15.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE18is_normal_overflowEl:2825 + 2: 565 + 16: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11extend_pageEl:39550 + 4: 565 + 5: 565 + 8: 565 + 9: 565 + 10.1: 565 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:4520 + 2: 565 + 12: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_tailEPNS3_4PageE:11865 + 2: 565 + 3: 565 + 5: 565 + 23.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16lookup_next_pageEl:24295 + 3.1: 565 + 4.1: 565 + 5: 565 + 5.1: 565 + 7: 565 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page10reuse_sizeEv:6215 + 0: 565 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:2260 + 2: 565 + 32: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9alloc_bigEl:92178 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:71694 + 3: 569 + 5: 569 + 6: 569 + 8: 569 + 9: 569 + 11.1: 569 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:26743 + 2: 569 + 3: 569 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:8535 + 5: 569 + 7: 569 + 8: 569 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:13656 + 1: 569 + 3: 569 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_headEPNS3_4PageE:15363 + 4: 569 + 5: 569 + 7: 569 + 7: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:5121 + 3: 569 + 11.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE5countEv:28040 + 0: 3518 + 12: _ZN9oceanbase6common5ObObjC2Ev:45734 + 2: _ZN9oceanbase6common5ObObj5resetEv:45734 + 6: 3518 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:14072 + 0: 3518 + 20.1: _ZNK9oceanbase3sql8ObOpSpec13is_vectorizedEv:660920 + 0: 82615 + 21: _ZNK9oceanbase3sql15ObExecuteResult12get_next_rowEv:5634462 + 2: 80572 + 4: 80572 + 5: 569 + 6.1: 569 + 9.1: 5163 + 9.3: 5163 + 10: 85944 _ZN9oceanbase3sql10ObOperator12get_next_rowEv:81435 + 12: 5163 + 13: 5163 + 13.1: 565 + 14: 5163 + 14.1: 565 + 18: 565 + 20.1: 565 + 26.1: 565 + 12: _ZN9oceanbase3sql10ObOperator12get_exec_ctxEv:20652 + 0: 5163 + 12.1: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:36141 + 2: 5163 + 13: _ZNK9oceanbase3sql17ObPhysicalPlanCtx20get_bind_array_countEv:36141 + 0: 5163 + 14.1: _ZNK9oceanbase3sql17ObPhysicalPlanCtx18get_bind_array_idxEv:3955 + 0: 565 + 17: _ZN9oceanbase3sql17ObPhysicalPlanCtx18inc_bind_array_idxEv:5650 + 0: 565 + 26: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:327624 + 6: 81906 + 27: _ZN9oceanbase3sql10ObOperator12get_eval_ctxEv:327624 + 0: 81906 + 27.1: _ZNK9oceanbase3sql6ObExpr4evalERNS0_9ObEvalCtxERPNS_6common7ObDatumE:3597417 + 4: 81906 + 6: 81906 + 7: 81906 + 9: 81906 + 10: 565 + 10.1: 565 + 11: 565 + 13: 565 + 15.1: 81906 + 15.2: 819 + 17: 819 + 18: 819 + 20: 819 + 21: 819 + 22: 819 + 24: 569 + 64669.1: 565 + 9: _ZNK9oceanbase3sql6ObExpr15is_batch_resultEv:327624 + 0: 81906 + 11: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:2260 + 0: 565 + 24: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:3983 + 0: 569 + 38: _ZNK9oceanbase3sql14ObBatchRowIter7cur_idxEv:0 + 0: 0 + 40: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:0 + 6: 0 + 42: _ZNK9oceanbase3sql6ObExpr19locate_batch_datumsERNS0_9ObEvalCtxE:0 + 2: 0 + 43.4: _ZNK9oceanbase3sql6ObExpr15is_batch_resultEv:0 + 0: 0 + 44: _ZNK9oceanbase6common7ObDatum6to_objERNS0_5ObObjERKNS0_9ObObjMetaENS0_17ObObjDatumMapTypeE:119490 + 3: 0 + 4: 0 + 7: 0 + 8: 0 + 19: 569 + 20.1: 569 + 24: 569 + 10: _ZNK9oceanbase6common7ObDatum9datum2objILNS0_17ObObjDatumMapTypeE1EEEvRNS0_5ObObjE:7397 + 2: 569 + 11: _ZNK9oceanbase6common7ObDatum9datum2objILNS0_17ObObjDatumMapTypeE2EEEvRNS0_5ObObjE:0 + 2: 0 + 3: 0 + 12: _ZNK9oceanbase6common7ObDatum9datum2objILNS0_17ObObjDatumMapTypeE3EEEvRNS0_5ObObjE:0 + 3: 0 + 13: _ZNK9oceanbase6common7ObDatum9datum2objILNS0_17ObObjDatumMapTypeE4EEEvRNS0_5ObObjE:12518 + 3: 569 + 4: 569 + 14: _ZNK9oceanbase6common7ObDatum9datum2objILNS0_17ObObjDatumMapTypeE5EEEvRNS0_5ObObjE:12518 + 2: 569 + 3: 569 + 15: _ZNK9oceanbase6common7ObDatum9datum2objILNS0_17ObObjDatumMapTypeE6EEEvRNS0_5ObObjE:12518 + 2: 569 + 3: 569 + 16: _ZNK9oceanbase6common7ObDatum9datum2objILNS0_17ObObjDatumMapTypeE7EEEvRNS0_5ObObjE:18777 + 3: 569 + 4: 569 + 5: 569 + 17: _ZNK9oceanbase6common7ObDatum9datum2objILNS0_17ObObjDatumMapTypeE8EEEvRNS0_5ObObjE:10811 + 2: 569 +_ZN9oceanbase3sql13ObTableScanOp18inner_get_next_rowEv:30540887:122749 + 0: 153 + 1: 112708 + 2: 112708 + 3: 112708 + 6.1: 115410 _ZN9oceanbase3sql13ObTableScanOp22do_init_before_get_rowEv:114385 + 7.1: 161 + 8.1: 115410 + 12.1: 115410 + 12.2: 161 + 13: 115410 + 13.1: 161 + 14.1: 161 + 15.1: 115410 _ZN9oceanbase3sql13ObTableScanOp21get_next_row_with_dasEv:118739 + 17.1: 153 + 21: 4563 + 21.1: 2993 + 22: 153 + 23: 153 + 24: 153 + 25.1: 153 + 25.2: 153 + 25.4: 153 + 25.5: 153 + 25.7: 153 + 25.8: 153 + 25.9: 153 + 25.10: 153 + 25.17: 153 + 25.18: 153 + 25.20: 153 + 25.22: 153 + 25.24: 153 + 25.26: 153 + 27: 153 + 32: 95600 + 32.2: 4727 + 32.3: 170 + 32.5: 170 + 32.6: 170 + 32.13: 170 + 33: 95438 + 33.1: 179 + 34: 95438 + 34.1: 179 + 34.4: 179 + 37.1: 179 + 40: 99872 + 43: 103154 _ZN9oceanbase3sql13ObTableScanOp23add_ddl_column_checksumEv:101441 + 44.1: 161 + 47: 4560 + 47.2: 4441 + 55.1: 4441 + 55.2: 4441 + 56: 4624 + 58: 4624 + 58.1: 170 + 63: 4651 + 64: 4651 _ZN9oceanbase3sql13ObTableScanOp26report_ddl_column_checksumEv:4695 + 65.1: 153 + 67: 4632 + 70: 107800 + 21: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:18252 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:18252 + 0: 4563 + 24: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:1071 + 2: 153 + 25.1: _ZN9oceanbase3lib20is_trace_log_enabledEv:1836 + 2: 153 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:1071 + 2: 153 + 25.4: _ZN9oceanbase3lib20is_trace_log_enabledEv:1836 + 2: 153 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:1071 + 2: 153 + 25.19: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl189ELl1600EE10check_lockEv:6120 + 2: 153 + 3: _ZN9oceanbase3lib7ObMutex4lockEv:4743 + 0: 153 + 25.23: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl189ELl1600EE10get_bufferEv:1071 + 0: 153 + 25.25: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl189ELl1600EE14get_buffer_posEv:459 + 0: 153 + 25.29: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl189ELl1600EE12check_unlockEv:3519 + 2: 153 + 3: _ZN9oceanbase3lib7ObMutex6unlockEv:2142 + 0: 153 + 27: _ZN9oceanbase3sql17ObPhysicalPlanCtx14set_found_rowsEl:1836 + 2: 153 + 32: _Z17CHECK_TRACE_TIMESmPKm:8682255 + 9: 95600 + 10.1: 95600 + 11.1: 95600 + 12: 95600 + 13: 91108 + 14: 91108 + 18: 4657 + 19: 4657 + 20: 4657 + 32.2: _ZN9oceanbase3lib20is_trace_log_enabledEv:38462 + 2: 4657 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:4608 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:33089 + 2: 4727 + 32.5: _ZN9oceanbase3lib20is_trace_log_enabledEv:2040 + 2: 170 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:1190 + 2: 170 + 32.14: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:4420 + 0: 170 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:850 + 2: 170 + 33: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:381752 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:381752 + 0: 95438 + 34.2: _ZNK9oceanbase3sql16ObTableScanCtDef20get_das_output_exprsEv:5012 + 2: 179 + 47.1: _ZNK9oceanbase3sql8ObDASRef8has_taskEv:35528 + 0: _ZNK9oceanbase6common10ObObjStoreIPNS_3sql12ObIDASTaskOpERNS0_12ObIAllocatorELb0EE5emptyEv:35528 + 0: 4441 + 55: _ZN9oceanbase3sql8ObDASRef15begin_task_iterEv:31087 + 0: _ZN9oceanbase6common10ObObjStoreIPNS_3sql12ObIDASTaskOpERNS0_12ObIAllocatorELb0EE5beginEv:31087 + 0: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql12ObIDASTaskOpEEEE9get_firstEv:31087 + 0: 4441 + 55.1: _ZN9oceanbase3sql12ObIDASTaskOp8get_typeEv:13323 + 0: 4441 + 55.11: _ZN9oceanbase3sql11ObDASScanOp14get_scan_paramEv:46240 + 0: 4624 + 56: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:32368 + 2: 4624 + 57: _ZNK9oceanbase3sql13ObTableScanOp20fill_table_scan_statERKNS_6common20ObTableScanStatisticERNS0_15ObTableScanStatE:647360 + 3: 4624 + 4: 4624 + 5: 4624 + 6: 4624 + 7: 4624 + 8: 4624 + 58: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:18496 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:18496 + 0: 4624 + 58.2: _ZNK9oceanbase3sql15ObTableScanSpec17should_scan_indexEv:64736 + 0: 4624 + 59: _ZNK9oceanbase3sql13ObTableScanOp20fill_table_scan_statERKNS_6common20ObTableScanStatisticERNS0_15ObTableScanStatE:14280 + 3: 170 + 4: 170 + 5: 170 + 6: 170 + 7: 170 + 8: 170 + 61: _ZN9oceanbase6common20ObTableScanStatistic16reset_cache_statEv:97671 + 3: 4651 + 4: 4651 + 62: _ZN9oceanbase6common20ObTableScanStatistic16reset_cache_statEv:130228 + 3: 4651 + 4: 4651 +_ZN9oceanbase6common21ObNullSafeDatumStrCmpILNS0_15ObCollationTypeE45ELb0ELb1EE3cmpERKNS0_7ObDatumES6_:29109001:402112 + 0: 393758 + 2: 393758 + 2.1: 6433 + 6.1: 393758 + 11: 424052 + 2: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:1181274 + 0: 393758 + 9: _ZN9oceanbase6common9datum_cmp13ObDatumStrCmpILNS0_15ObCollationTypeE45ELb0EE3cmpERKNS0_7ObDatumES7_:20263510 + 2: 393758 _ZN9oceanbase6common9ObCharset8strcmpspENS0_15ObCollationTypeEPKclS4_lb:410794 + 3: 393758 + 4: 424052 +_ZN9oceanbase3lib11ObLibConfig12get_instanceEv:28624757:1259949 + 1: 1243223 + 2: 1243223 + 2.1: 494 + 2.6: 494 + 3: 1243223 + 2.2: _ZN9oceanbase3lib11ObLibConfigC2Ev:15808 + 1: 494 + 2: 494 + 3: 494 +_ZN9oceanbase6common8ObLogger13need_to_printEmmi:28521150:188248 + 2: 177150 + 3: 177150 + 3: _ZNK9oceanbase6common8ObLogger13get_log_levelEmm:21789450 + 3: 177150 + 8: 177150 + 11: 177150 + 13.1: 177150 + 18: 177150 + 6: _ZNK9oceanbase6common15ObLogIdLevelMap9get_levelEmm:6554550 + 2: 177150 + 3: 177150 + 9: _ZN9oceanbase6common21ObThreadLogLevelUtils3getEv:7086000 + 5: 177150 + 3: _ZN9oceanbase6common21ObThreadLogLevelUtils20get_thread_log_levelEv:3720150 + 3: _ZN9oceanbase6common15get_local_storeEv:3720150 + 3: 177150 + 3.1: 0 + 3.1: _ZN9oceanbase6common12ObLocalStoreC2Ev:0 + 1: 0 + 0: _ZN9oceanbase6common16ObThreadLogLevelC2Ev:0 + 0: 0 + 12: _ZNK9oceanbase6common15ObLogIdLevelMap9get_levelEmm:0 + 2: 0 + 3: 0 +_ZN9oceanbase3lib8BlockSet10free_blockEPNS0_6ABlockE:27978401:17467 + 1: 16732 + 2: 16732 + 8: 16869 + 11: 16869 + 12: 12 + 14: 17699 _ZTWN9oceanbase3lib15malloc_callbackE:17547 + 15: 7722 _ZTWN9oceanbase3lib15malloc_callbackE:8109 + 15.1: 7714 _ZN9oceanbase8observer23ObProcessMallocCallbackclERKNS_3lib9ObMemAttrEl:8033 + 16: 8216 _ZTWN9oceanbase3lib15malloc_callbackE:8114 + 16.1: 8216 _ZTWN9oceanbase3lib15malloc_callbackE:8687 + 17: 12 + 27: 8356 + 28: 3412 + 35: 17920 + 37: 12574 + 44: 11838 + 44.1: 8562 + 48: 17792 + 52: 17792 + 54: 9345 + 57: 9516 + 59: 9516 + 68: 18211 + 5: _ZNK9oceanbase3lib6ABlock8is_validEv:184052 + 2: 16732 + 5.1: _ZL12abort_unlessb:100596 + 5: 16732 + 6: 12 + 7: _ZNK9oceanbase3lib6ABlock4holdEPm:5347936 + 5: 16732 + 5.1: 16732 + 5.2: 8981 + 8: 12091 + 2: _ZNK9oceanbase3lib6ABlock5chunkEv:167320 + 2: _ZN9oceanbase3lib6AChunk9ptr2chunkEPKv:167320 + 2: 16732 + 3: _ZNK9oceanbase3lib6AChunk10blk_offsetEPKNS0_6ABlockE:1204908 + 2: 16732 + 3: 16732 + 3.2: _ZL12abort_unlessb:100596 + 5: 16732 + 6: 12 + 5.1: _ZNK9oceanbase3lib6AChunk19is_first_blk_offsetEiPi:50196 + 2: 16732 + 5.2: _ZNK9oceanbase3lib6AChunk18is_last_blk_offsetEiPi:1290893 + 4: 8981 + 4: _ZNK9oceanbase3lib6AChunk17min_blk_offset_geEi:1263950 + 2: _ZNK9oceanbase3lib13ASimpleBitSetILi256EE10min_bit_geEi:1263950 + 8: 34460 + 9: 34460 + 12: 8981 + 8: _ZN9oceanbase3lib13ASimpleBitSetILi256EE10min_bit_geEmi:324068 + 3: 4212 + 4: 34460 + 6: _ZNK9oceanbase3lib6AChunk4holdEPm:249304 + 2: 4785 + 2: _ZN9oceanbase3lib6AChunk9calc_holdEllPm:201454 + 3: 4785 + 3.2: 12 + 5.1: 4785 + 2: _ZN9oceanbase3lib9align_up2Emm:90915 + 2: 4785 + 3.4: _ZN9oceanbase3lib9align_up2Emm:264 + 2: 12 + 8: _ZNK9oceanbase3lib6AChunk11blk_nblocksEPKNS0_6ABlockE:2041923 + 4.3: 12091 + 2: _ZNK9oceanbase3lib6AChunk10blk_offsetEPKNS0_6ABlockE:109158 + 3.2: _ZL12abort_unlessb:109158 + 5: 12106 + 6: 12 + 4: _ZNK9oceanbase3lib6AChunk18is_last_blk_offsetEiPi:1860219 + 4: 12106 + 4: _ZNK9oceanbase3lib6AChunk17min_blk_offset_geEi:1715067 + 2: _ZNK9oceanbase3lib13ASimpleBitSetILi256EE10min_bit_geEi:1715067 + 2: 12106 + 7: 12106 + 8: 60530 + 9: 60530 + 11.1: 3000 + 12: 12091 + 8: _ZN9oceanbase3lib13ASimpleBitSetILi256EE10min_bit_geEmi:626097 + 2: 60530 + 3: 12047 + 4: 60530 + 10: _ZNK9oceanbase3lib6AChunk8is_validEv:151821 + 2: 16869 + 10.1: _ZL12abort_unlessb:101370 + 5: 16869 + 6: 12 + 23: _ZNK9oceanbase3lib6AChunk10blk_offsetEPKNS0_6ABlockE:165360 + 3.2: _ZL12abort_unlessb:165360 + 5: 18360 + 6: 12 + 25: _ZNK9oceanbase3lib6AChunk19is_first_blk_offsetEiPi:763538 + 2: 18360 + 3: 18360 + 4: 8452 + 4: _ZNK9oceanbase3lib6AChunk17max_blk_offset_leEi:614030 + 2: _ZNK9oceanbase3lib13ASimpleBitSetILi256EE10max_bit_leEi:614030 + 2: 8452 + 3: 8452 + 7: 8452 + 9: 9621 + 11.1: 1233 + 12: 8356 + 8: _ZN9oceanbase3lib13ASimpleBitSetILi256EE10max_bit_leEmi:213693 + 2: 9621 + 3: 8356 + 4: 9621 + 26: _ZNK9oceanbase3lib6AChunk10offset2blkEi:91916 + 2: 8356 + 28: _ZN9oceanbase3lib8BlockSet19take_off_free_blockEPNS0_6ABlockEiPNS0_6AChunkE:264212 + 8: 3412 + 9: 1672 + 10: 1672 + 11: 1672 + 12: 973 + 16: 1832 + 15: _ZN9oceanbase3lib7ABitSet5unsetEi:115323 + 2: 1812 + 5: 1812 + 7: 1812 + 8: 1812 + 10: 157 + 11: 157 + 12: 157 + 12.1: 12 + 13: 12 + 29: _ZN9oceanbase3lib6ABlock16clear_magic_codeEv:42324 + 2: 3527 + 30: _ZN9oceanbase3lib6AChunk21unmark_blk_offset_bitEi:95245 + 2: _ZN9oceanbase3lib13ASimpleBitSetILi256EE5unsetEi:95245 + 2: 3527 + 4: 3527 + 35: _ZNK9oceanbase3lib6AChunk18is_last_blk_offsetEiPi:4306772 + 4: 17920 + 4: _ZNK9oceanbase3lib6AChunk17min_blk_offset_geEi:4164036 + 2: _ZNK9oceanbase3lib13ASimpleBitSetILi256EE10min_bit_geEi:4164036 + 2: 17764 + 7: 17764 + 8: 88820 + 9: 88820 + 11.1: 28200 + 12: 17920 + 8: _ZN9oceanbase3lib13ASimpleBitSetILi256EE10min_bit_geEmi:1122797 + 2: 88820 + 3: 12574 + 4: 88820 + 36: _ZNK9oceanbase3lib6AChunk10offset2blkEi:88018 + 2: 12574 + 38: _ZNK9oceanbase3lib6AChunk11blk_nblocksEPKNS0_6ABlockE:3006042 + 4.3: 6053 + 2: _ZNK9oceanbase3lib6AChunk10blk_offsetEPKNS0_6ABlockE:274530 + 2: 6094 + 3: 6094 + 3.2: _ZL12abort_unlessb:109992 + 5: 6094 + 6: 12 + 4: _ZNK9oceanbase3lib6AChunk18is_last_blk_offsetEiPi:2670982 + 4: 6094 + 4: _ZNK9oceanbase3lib6AChunk17min_blk_offset_geEi:2598182 + 2: _ZNK9oceanbase3lib13ASimpleBitSetILi256EE10min_bit_geEi:2598182 + 2: 6094 + 7: 6094 + 8: 30470 + 9: 30470 + 11.1: 23025 + 12: 6053 + 8: _ZN9oceanbase3lib13ASimpleBitSetILi256EE10min_bit_geEmi:470696 + 2: 30470 + 3: 1910 + 4: 30470 + 38.1: _ZN9oceanbase3lib8BlockSet19take_off_free_blockEPNS0_6ABlockEiPNS0_6AChunkE:736406 + 2.1: 6053 + 8: 6053 + 9: 1071 + 10: 1071 + 11: 1071 + 12: 474 + 16: 5041 + 2.2: _ZL12abort_unlessb:36666 + 5: 6053 + 6: 12 + 15: _ZN9oceanbase3lib7ABitSet5unsetEi:450266 + 2: 5031 + 5: 5031 + 7: 5031 + 8: 5031 + 10: 3998 + 11: 3998 + 12: 3998 + 12.1: 12 + 13: 12 + 39: _ZN9oceanbase3lib6ABlock16clear_magic_codeEv:60960 + 2: 6096 + 40: _ZN9oceanbase3lib6AChunk21unmark_blk_offset_bitEi:158496 + 2: _ZN9oceanbase3lib13ASimpleBitSetILi256EE5unsetEi:158496 + 2: 6096 + 4: 6096 + 50: _ZNK9oceanbase3lib6AChunk10blk_offsetEPKNS0_6ABlockE:558295 + 2: 3537 + 3: 17792 + 3.2: _ZL12abort_unlessb:106956 + 5: 17792 + 6: 12 + 55: _ZN9oceanbase3lib13ASimpleBitSetILi256EE7combineIZNS0_8BlockSet10free_blockEPNS0_6ABlockEE3$_1EEvRKS2_OT_:1046640 + 4: 37380 + 4: _ZZN9oceanbase3lib8BlockSet10free_blockEPNS0_6ABlockEENK3$_1clEll:299040 + 0: 37380 + 57: _ZNK9oceanbase3lib13ASimpleBitSetILi256EE10min_bit_geEi:1873718 + 8: 37380 + 9: 37380 + 12: 9516 + 8: _ZN9oceanbase3lib13ASimpleBitSetILi256EE10min_bit_geEmi:470856 + 3: 513 + 4: 37380 + 60: _ZN9oceanbase3lib8BlockSet10free_chunkEPNS0_6AChunkE:2808312 + 2: 9147 + 4: 9147 + 5: 9147 + 6: 9147 + 8: 9147 + 9: 5206 + 12: 9381 + 13: 5206 + 15: 4071 + 16: 4071 + 21: 8999 + 25: 8976 + 26: 37 + 28: 37 + 29: 37 + 30: 37 + 31: 12 + 33: 37 _ZN9oceanbase3lib20ObTenantCtxAllocator10free_chunkEPNS0_6AChunkERKNS0_9ObMemAttrE:25 + 2: _ZL12abort_unlessb:55050 + 5: 9147 + 6: 12 + 3: _ZNK9oceanbase3lib6AChunk8is_validEv:82323 + 2: 9147 + 3.1: _ZL12abort_unlessb:55050 + 5: 9147 + 6: 12 + 4: _ZL12abort_unlessb:55050 + 5: 9147 + 6: 12 + 5: _ZL12abort_unlessb:55050 + 5: 9147 + 6: 12 + 6: _ZL12abort_unlessb:54990 + 5: 9147 + 6: 12 + 19: _ZN9oceanbase3lib9AChunkMgr7alignedEm:98989 + 2: _ZN9oceanbase3lib6AChunk7alignedEl:98989 + 2: _ZN9oceanbase3lib9align_up2Emm:98989 + 2: 8999 + 22: _ZN9oceanbase3lib8BlockSet9LockGuardC2ERNS1_4LockE:477691 + 0: _ZN9oceanbase3lib8BlockSet4Lock4lockEv:477691 + 2: 8999 + 3.1: 8999 + 4: 12 + 2: _ZN9oceanbase6common8get_itidEv:252524 + 4: 8999 + 5: 12 + 6: 12 + 8: 12 + 23: _ZN9oceanbase3lib10AChunkList4pushEPNS0_6AChunkE:953072 + 3: 8999 + 4: 8976 + 7: 8976 + 8: 8976 + 9: 8976 + 10: 8976 + 13: 8976 + 3: _ZNK9oceanbase3lib10AChunkList5countEv:152983 + 2: 8999 + 5: _ZN9oceanbase3lib7ObMutex4lockEv:384 + 0: 12 + 7: _ZNK9oceanbase3lib10AChunkList5countEv:300 + 2: 12 + 14: _ZN9oceanbase3lib7ObMutex6unlockEv:204 + 0: 12 + 24: _ZN9oceanbase3lib8BlockSet9LockGuardD2Ev:63091 + 0: _ZN9oceanbase3lib8BlockSet4Lock6unlockEv:63091 + 0: 8976 + 24.1: _ZN9oceanbase3lib8BlockSet9LockGuardD2Ev:180 + 0: _ZN9oceanbase3lib8BlockSet4Lock6unlockEv:180 + 0: 12 + 28: _ZNK9oceanbase3lib6AChunk4holdEPm:2037 + 2: 37 + 2: _ZN9oceanbase3lib6AChunk9calc_holdEllPm:1667 + 3: 37 + 3.2: 12 + 4: 37 + 2: _ZN9oceanbase3lib9align_up2Emm:703 + 2: 37 + 3.4: _ZN9oceanbase3lib9align_up2Emm:264 + 2: 12 + 31: _ZN9oceanbase3lib20ObTenantCtxAllocator16update_wash_statElll:348 + 2: 12 + 3: 12 + 4: 12 + 62: _ZNK9oceanbase3lib6AChunk11blk_nblocksEPKNS0_6ABlockE:1638220 + 2: _ZNK9oceanbase3lib6AChunk10blk_offsetEPKNS0_6ABlockE:78207 + 3.2: _ZL12abort_unlessb:78207 + 5: 8667 + 6: 12 + 4: _ZNK9oceanbase3lib6AChunk18is_last_blk_offsetEiPi:1534147 + 4: 8667 + 4: _ZNK9oceanbase3lib6AChunk17min_blk_offset_geEi:1430503 + 2: _ZNK9oceanbase3lib13ASimpleBitSetILi256EE10min_bit_geEi:1430503 + 2: 8667 + 7: 8667 + 8: 43335 + 9: 43335 + 11.1: 10825 + 12: 8622 + 8: _ZN9oceanbase3lib13ASimpleBitSetILi256EE10min_bit_geEmi:475641 + 2: 43335 + 3: 8196 + 4: 43335 + 63: _ZN9oceanbase3lib8BlockSet14add_free_blockEPNS0_6ABlockEiPNS0_6AChunkE:1402314 + 2.1: 8622 + 9: 8622 + 10: 8622 + 11: 3851 + 12: 3851 + 13: 3851 + 14: 3851 + 15: 3851 + 17: 4751 + 18: 4751 + 2.3: _ZL12abort_unlessb:204 + 6: 12 + 3: _ZNK9oceanbase3lib6AChunk10blk_offsetEPKNS0_6ABlockE:77802 + 3.2: _ZL12abort_unlessb:77802 + 5: 8622 + 6: 12 + 3.1: _ZN9oceanbase3lib6AChunk19mark_blk_offset_bitEi:206928 + 2: _ZN9oceanbase3lib13ASimpleBitSetILi256EE3setEi:206928 + 2: 8622 + 4: 8622 + 10: _ZN9oceanbase3lib7ABitSet5issetEi:275904 + 3: 8622 + 6: 8622 + 9: 8622 + 19: _ZN9oceanbase3lib7ABitSet3setEi:370578 + 2: 4751 + 5: 4751 + 7: 4751 + 10: 4751 + 11: 4751 + 13: 4751 +_ZN9oceanbase8observer16ObMPPacketSender15try_encode_withERNS_7obmysql13ObMySQLPacketElRll:26598862:93224 + 4: 89831 + 5: 89831 + 7: 89831 + 8: 89831 + 10: 348 + 11.1: 348 + 12.1: 89831 + 13: 348 + 14.1: 348 + 15.1: 89831 + 16: 348 + 17.1: 348 + 18.1: 89831 + 19: 348 + 20.1: 348 + 21.2: 89831 + 23.1: 89831 _ZN9oceanbase7obmysql14ObProto20Utils16do_packet_encodeERNS0_18ObProtoEncodeParamE:93991 + 23.2: 96459 + 24.1: 348 + 26: 96459 + 28: 348 + 32: 348 + 32.1: 348 + 33.1: 348 + 35: 348 + 38: 348 + 39: 348 + 40.1: 348 + 44: 348 + 45: 348 + 46.1: 348 + 48: 348 + 48.1: 348 + 49.1: 348 + 51: 348 + 60: 96459 + 61.13: 96459 + 6: _ZN9oceanbase7obmysql18ObProtoEncodeParamC2Ev:4491550 + 1: 89831 + 4: 89831 + 21.1: _ZN9oceanbase8observer16ObMPPacketSender19build_encode_param_ERNS_7obmysql18ObProtoEncodeParamEPNS2_13ObMySQLPacketEb:6647494 + 7: 89831 + 9: 89831 + 11: 89831 + 12: 89831 + 4: _ZN9oceanbase7obmysql18ObProtoEncodeParam11build_paramERS1_PNS0_13ObMySQLPacketER10easy_buf_tjbRNS0_16ObProto20ContextEPNS_3rpc9ObRequestEPNS_6common8ObIArrayINS0_10ObCommonKVINSC_5ObObjESF_EEEEPNSD_IPNS0_12Obp20EncoderEEE:4132226 + 6: 89831 + 7: 89831 + 8: 89831 + 9: 89831 + 10: 89831 + 11: 89831 + 12: 89831 + 13: 89831 + 30: _ZNK9oceanbase8observer16ObMPPacketSender17need_flush_bufferEv:17748 + 4: 348 + 4.1: 348 + 5: 348 + 5.1: 348 + 5: _ZNK9oceanbase7obmysql20ObCompressionContext23is_proxy_compress_basedEv:1392 + 0: _ZNK9oceanbase7obmysql20ObCompressionContext17is_proxy_checksumEv:1392 + 0: 348 + 61.13: _ZN9oceanbase7obmysql18ObProtoEncodeParamD2Ev:892143 + 0.2: 348 + 0: _ZN9oceanbase7obmysql18ObProtoEncodeParam5resetEv:889359 + 1: 96459 + 3: 348 + 2: _ZN9oceanbase6common7ob_freeEPv:17748 + 2: 348 + 3: 348 + 4: 348 + 5: 348 + 4: _ZL12abort_unlessb:5568 + 5: 348 + 6: 348 + 61.14: _ZN9oceanbase7obmysql18ObProtoEncodeParamD2Ev:26100 + 0.2: 348 + 0: _ZN9oceanbase7obmysql18ObProtoEncodeParam5resetEv:20532 + 1: 348 + 3: 348 + 2: _ZN9oceanbase6common7ob_freeEPv:14616 + 2: 348 + 3: 348 + 4: 348 + 5: 348 + 4: _ZL12abort_unlessb:2436 + 5: 348 + 6: 348 +_ZN9oceanbase12blocksstable10ObDatumRow7reserveElb:24598715:230289 + 1: 215777 + 2: 215777 + 5: 215777 + 6.1: 0 + 7.1: 215777 + 7.3: 215777 + 8.1: 0 + 9.1: 215777 + 11.1: 1 + 12.1: 0 + 14: 1 + 15: 1 _ZN9oceanbase6common8ObNewRow5resetEv:1 + 18: 215778 + 24: 215778 + 28: 215778 + 5: _ZNK9oceanbase12blocksstable10ObDatumRow8is_validEv:4315540 + 0: 215777 + 0.1: 215777 + 0.1: _ZNK9oceanbase12blocksstable10ObDatumRow12get_capacityEv:1510439 + 0: _ZNK9oceanbase12blocksstable20ObStorageDatumBuffer12get_capacityEv:1510439 + 0: 215777 + 14: _ZN9oceanbase12blocksstable20ObStorageDatumBuffer10get_datumsEv:7 + 0: 1 + 16: _ZN9oceanbase7storage13ObObjBufArray5resetEv:61 + 2: 1 + 2.1: 1 + 3: 0 + 5: 1 + 6: 1 + 7: 1 + 8: 1 + 19: _ZN9oceanbase12blocksstable21ObMultiVersionRowFlag5resetEv:1510446 + 0: 215778 + 20: _ZN9oceanbase11transaction9ObTransID5resetEv:3668226 + 0: 215778 +_ZN9oceanbase12blocksstable11ObRowReader9setup_rowEPKcl:24400135:131139 + 3: 113489 + 4: 113489 + 5: 113489 + 5.2: 113489 + 6: 0 + 7.1: 0 + 10: 113489 + 11: 113489 + 12: 113489 + 13: 113489 + 14.1: 0 + 16: 113489 + 20: 113489 + 13: _ZN9oceanbase12blocksstable11ObRowReader18analyze_row_headerEv:13391702 + 2: 113489 + 3: 113489 + 4: 113489 + 5: 0 + 6.1: 0 + 7.1: 113489 + 8.1: 0 + 11: 0 + 4: _ZNK9oceanbase12blocksstable11ObRowHeader8is_validEv:1361868 + 2: 113489 + 2.1: 113489 + 7.1: _ZN9oceanbase12blocksstable11ObRowReader20analyze_cluster_infoEv:9760054 + 2: 113489 + 3: 113489 + 4: 113489 + 5: 113489 + 6: 113489 + 7: 0 + 8.1: 0 + 9: 0 + 11: 113489 + 16: 0 + 3: _ZNK9oceanbase12blocksstable11ObRowHeader30has_rowkey_independent_clusterEv:453956 + 2: _ZN9oceanbase12blocksstable11ObRowHeader31need_rowkey_independent_clusterEl:453956 + 2: 113489 + 4: _ZNK9oceanbase12blocksstable11ObRowHeader15get_cluster_cntEv:1134890 + 3: 113489 + 6: 0 + 6: _ZN9oceanbase12blocksstable11ObRowHeader16calc_cluster_cntEll:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase12blocksstable11ObRowHeader31need_rowkey_independent_clusterEl:0 + 2: 0 + 3: _ZN9oceanbase12blocksstable11ObRowHeader33calc_cluster_cnt_by_row_col_countEl:0 + 2: 0 + 4: _ZN9oceanbase12blocksstable11ObRowHeader33calc_cluster_cnt_by_row_col_countEl:0 + 2: 0 + 5: _ZNK9oceanbase12blocksstable11ObRowHeader19get_offset_type_lenEv:2042802 + 0: _ZNK9oceanbase12blocksstable11ObRowHeader15get_offset_typeEv:340467 + 0: 113489 + 0.1: _ZN9oceanbase12blocksstable20ObColClusterInfoMask18get_bytes_type_lenENS1_9BYTES_LENE:1702335 + 5: 113489 +_ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScanner27inner_get_next_row_directlyERPKNS0_10ObDatumRowERbS6_:23785034:107199 + 4: 101324 + 5: 101324 + 6: 101324 + 7: 101324 + 9: 101324 + 10: 107371 + 15: 107371 + 18: 227 + 21: 105937 _ZThn320_N9oceanbase12blocksstable18ObMicroBlockReader7get_rowElRNS0_10ObDatumRowE:106511 + 22.1: 0 + 23.1: 105937 + 24: 0 + 25.1: 0 + 27.1: 105937 + 28.1: 0 + 30: 0 + 34: 105937 + 35: 105937 + 38: 105189 + 39: 105189 + 40: 105189 + 42: 105189 + 45: 105413 + 10: _ZNK9oceanbase12blocksstable23ObIMicroBlockRowScanner12end_of_blockEv:3267479 + 3: 101324 + 6: 101324 + 7: 107548 + 11: 0 + 11.1: 0 + 15: _ZNK9oceanbase12blocksstable23ObIMicroBlockRowScanner12is_row_emptyERKNS0_10ObDatumRowE:751597 + 1: _ZNK9oceanbase12blocksstable12ObDmlRowFlag12is_not_existEv:751597 + 2: 107371 + 18: _ZNK9oceanbase12blocksstable10ObDatumRow12get_capacityEv:1589 + 0: _ZNK9oceanbase12blocksstable20ObStorageDatumBuffer12get_capacityEv:1589 + 0: 227 + 23.1: _ZNK9oceanbase12blocksstable21ObMultiVersionRowFlag18is_uncommitted_rowEv:1059370 + 0: 105937 + 27.1: _ZN9oceanbase12blocksstable14ObGhostRowUtil12is_ghost_rowERKNS0_21ObMultiVersionRowFlagERb:1165307 + 4: 105937 + 6: 105937 + 8: 0 + 9: 0 + 10.1: 0 + 10.2: 0 + 10.6: 0 + 13: 0 + 6: _ZNK9oceanbase12blocksstable21ObMultiVersionRowFlag12is_ghost_rowEv:211874 + 0: 105937 + 8: _ZNK9oceanbase12blocksstable21ObMultiVersionRowFlag25is_last_multi_version_rowEv:0 + 0: 0 + 31: _ZN9oceanbase12blocksstable12ObDmlRowFlag8set_flagENS0_9ObDmlFlagE:0 + 3: 0 + 39: _ZNK9oceanbase12blocksstable21ObMultiVersionRowFlag25is_last_multi_version_rowEv:631134 + 0: 105189 +_ZN9oceanbase7storage20ObRow2ExprsProjector7projectERKNS_6common8ObIArrayIPNS_3sql6ObExprEEEPKNS_12blocksstable14ObStorageDatumEPsRl:22954468:107275 + 4: 101005 + 6: 101005 + 7: 101005 + 12: 108651 + 12.1: 146 + 12.2: 108651 + 12.3: 108651 + 12.5: 146 + 14: 146 + 15: 146 + 15.1: 146 + 15.2: 146 + 17: 0 + 18: 0 + 19.1: 146 + 24: 146 + 25: 0 + 27: 146 + 27.1: 146 + 28.1: 0 + 42: 0 + 42.1: 0 + 42.2: 0 + 42.3: 0 + 42.5: 0 + 44: 0 + 45: 0 + 46: 0 + 46.1: 0 + 46.2: 0 + 48: 146 + 49: 146 + 50.1: 0 + 54: 0 + 54.1: 0 + 56.1: 146 + 65: 112577 + 7: _ZNK9oceanbase3sql18ObPushdownOperator13is_vectorizedEv:1717085 + 0: 101005 + 8: _ZNK9oceanbase6common12ObIArrayWrapINS_7storage20ObRow2ExprsProjector4ItemEE8get_dataEv:412824 + 0: 103206 + 8.1: _ZNK9oceanbase7storage20ObRow2ExprsProjector10MapConvertILNS_6common17ObObjDatumMapTypeE2ELb1EE7projectEPKNS1_4ItemEPKNS_12blocksstable14ObStorageDatumEPsRl:1444884 + 5: 103206 + 5.1: 103206 + 5.3: 0 + 7: 0 + 8: 0 + 9: 0 + 10.1: 0 + 14: 0 + 15: 0 + 18: 0 + 8: _ZNK9oceanbase6common7ObDatum6is_nopEv:0 + 0: 0 + 0.1: 0 + 0: _ZNK9oceanbase6common11ObDatumDesc6is_extEv:0 + 0: 0 + 0.1: _ZNK9oceanbase6common5ObObj12is_nop_valueEv:0 + 2: 0 + 2.1: 0 + 10.1: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:0 + 0: 0 + 11: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:0 + 0: 0 + 18: _ZN9oceanbase6common7ObDatum11datum2datumILNS0_17ObObjDatumMapTypeE2EEEvRKS1_:0 + 2: 0 + 3: 0 + 9: _ZNK9oceanbase6common12ObIArrayWrapINS_7storage20ObRow2ExprsProjector4ItemEE8get_dataEv:0 + 0: 0 + 9.1: _ZNK9oceanbase7storage20ObRow2ExprsProjector10MapConvertILNS_6common17ObObjDatumMapTypeE1ELb0EE7projectEPKNS1_4ItemEPKNS_12blocksstable14ObStorageDatumEPsRl:6856999 + 5: 103206 + 5.1: 103206 + 5.3: 74334 + 7: 74334 + 8: 74334 + 9: 0 + 10.1: 74334 + 8: _ZNK9oceanbase6common7ObDatum6is_nopEv:1115120 + 0: 74334 + 0.1: 0 + 0: _ZNK9oceanbase6common11ObDatumDesc6is_extEv:669096 + 0: 74334 + 0.1: _ZNK9oceanbase6common5ObObj12is_nop_valueEv:0 + 2: 0 + 2.1: 0 + 10.1: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:148688 + 0: 74334 + 11: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:64 + 0: 8 + 18: _ZN9oceanbase6common7ObDatum11datum2datumILNS0_17ObObjDatumMapTypeE1EEEvRKS1_:817707 + 2: 74334 + 3: 74334 + 10: _ZNK9oceanbase6common12ObIArrayWrapINS_7storage20ObRow2ExprsProjector4ItemEE8get_dataEv:371680 + 0: 74336 + 10.1: _ZNK9oceanbase7storage20ObRow2ExprsProjector10MapConvertILNS_6common17ObObjDatumMapTypeE3ELb1EE7projectEPKNS1_4ItemEPKNS_12blocksstable14ObStorageDatumEPsRl:3586789 + 5: 107508 + 5.1: 107508 + 5.3: 24609 + 7: 24609 + 8: 24609 + 9: 0 + 10.1: 24609 + 14: 24609 + 15: 0 + 18: 0 + 8: _ZNK9oceanbase6common7ObDatum6is_nopEv:375210 + 0: 24609 + 0.1: 0 + 0: _ZNK9oceanbase6common11ObDatumDesc6is_extEv:225126 + 0: 24609 + 0.1: _ZNK9oceanbase6common5ObObj12is_nop_valueEv:0 + 2: 0 + 2.1: 0 + 10.1: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:50028 + 0: 24609 + 11: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:56 + 0: 7 + 18: _ZN9oceanbase6common7ObDatum11datum2datumILNS0_17ObObjDatumMapTypeE3EEEvRKS1_:475152 + 2: 24609 + 3: 24609 + 13: _ZN9oceanbase6common12ObIArrayWrapINS_7storage20ObRow2ExprsProjector4ItemEE2atEl:1168 + 6: 146 + 15.1: _ZNK9oceanbase6common7ObDatum6is_nopEv:3650 + 0: 146 + 0.1: 146 + 0: _ZNK9oceanbase6common11ObDatumDesc6is_extEv:1460 + 0: 146 + 0.1: _ZNK9oceanbase6common5ObObj12is_nop_valueEv:1460 + 2: 146 + 2.1: 146 + 19.1: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:292 + 0: 146 + 20: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:0 + 0: 0 + 27: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:584 + 6: 146 + 37: _ZN9oceanbase3sql18ObPushdownOperator12get_eval_ctxEv:0 + 0: 0 + 37.1: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 38: _ZNK9oceanbase6common12ObIArrayWrapINS_7storage20ObRow2ExprsProjector4ItemEE8get_dataEv:0 + 0: 0 + 38.1: _ZNK9oceanbase7storage20ObRow2ExprsProjector10MapConvertILNS_6common17ObObjDatumMapTypeE2ELb1EE19project_batch_datumEPKNS1_4ItemEPKNS_12blocksstable14ObStorageDatumEPsRll:6570 + 5: 0 + 5.1: 0 + 5.3: 0 + 7: 0 + 8: 0 + 9: 146 + 10.1: 0 + 8: _ZNK9oceanbase6common7ObDatum6is_nopEv:0 + 0: 0 + 0.1: 0 + 0: _ZNK9oceanbase6common11ObDatumDesc6is_extEv:0 + 0: 0 + 0.1: _ZNK9oceanbase6common5ObObj12is_nop_valueEv:0 + 2: 0 + 2.1: 0 + 10.1: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:0 + 0: 0 + 11: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:2044 + 0: 146 + 13: _ZN9oceanbase6common7ObDatum11datum2datumILNS0_17ObObjDatumMapTypeE2EEEvRKS1_:0 + 2: 0 + 3: 0 + 39: _ZNK9oceanbase6common12ObIArrayWrapINS_7storage20ObRow2ExprsProjector4ItemEE8get_dataEv:0 + 0: 0 + 39.1: _ZNK9oceanbase7storage20ObRow2ExprsProjector10MapConvertILNS_6common17ObObjDatumMapTypeE1ELb0EE19project_batch_datumEPKNS1_4ItemEPKNS_12blocksstable14ObStorageDatumEPsRll:6570 + 5: 0 + 5.1: 0 + 5.3: 0 + 7: 0 + 8: 0 + 9: 146 + 10.1: 0 + 8: _ZNK9oceanbase6common7ObDatum6is_nopEv:0 + 0: 0 + 0.1: 0 + 0: _ZNK9oceanbase6common11ObDatumDesc6is_extEv:0 + 0: 0 + 0.1: _ZNK9oceanbase6common5ObObj12is_nop_valueEv:0 + 2: 0 + 2.1: 0 + 10.1: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:0 + 0: 0 + 11: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:2044 + 0: 146 + 13: _ZN9oceanbase6common7ObDatum11datum2datumILNS0_17ObObjDatumMapTypeE1EEEvRKS1_:0 + 2: 0 + 3: 0 + 40: _ZNK9oceanbase6common12ObIArrayWrapINS_7storage20ObRow2ExprsProjector4ItemEE8get_dataEv:0 + 0: 0 + 40.1: _ZNK9oceanbase7storage20ObRow2ExprsProjector10MapConvertILNS_6common17ObObjDatumMapTypeE3ELb1EE19project_batch_datumEPKNS1_4ItemEPKNS_12blocksstable14ObStorageDatumEPsRll:6716 + 5: 0 + 5.1: 0 + 5.3: 0 + 7: 0 + 8: 0 + 9: 146 + 10.1: 0 + 8: _ZNK9oceanbase6common7ObDatum6is_nopEv:0 + 0: 0 + 0.1: 0 + 0: _ZNK9oceanbase6common11ObDatumDesc6is_extEv:0 + 0: 0 + 0.1: _ZNK9oceanbase6common5ObObj12is_nop_valueEv:0 + 2: 0 + 2.1: 0 + 10.1: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:0 + 0: 0 + 11: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:1898 + 0: 146 + 13: _ZN9oceanbase6common7ObDatum11datum2datumILNS0_17ObObjDatumMapTypeE3EEEvRKS1_:0 + 2: 0 + 3: 0 + 43: _ZN9oceanbase6common12ObIArrayWrapINS_7storage20ObRow2ExprsProjector4ItemEE2atEl:0 + 6: 0 + 46.1: _ZNK9oceanbase6common7ObDatum6is_nopEv:0 + 0: 0 + 0.1: 0 + 0: _ZNK9oceanbase6common11ObDatumDesc6is_extEv:0 + 0: 0 + 0.1: _ZNK9oceanbase6common5ObObj12is_nop_valueEv:0 + 2: 0 + 2.1: 0 + 49: _ZN9oceanbase3sql11ObBitVector5unsetEl:1314 + 3: 146 + 50.1: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:0 + 0: 0 + 51: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:2482 + 0: 146 + 54: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:0 + 6: 0 + 59: _ZN9oceanbase3sql11ObBitVector3setEl:0 +_ZN9oceanbase3sql17ObChunkDatumStore9StoredRow8do_buildILb0EEEiRPS2_RKNS_6common8ObIArrayIPNS0_6ObExprEEERNS0_9ObEvalCtxEPclj:22848424:74839 + 6: 72313 + 7: 72313 + 8: 72313 + 9: 72313 + 10: 72313 + 11: 1872 + 13: 72313 + 15.1: 75906 + 16: 72484 + 17: 72484 + 18: 72484 + 21.1: 75892 + 22.1: 1872 + 24: 75906 + 26: 75892 + 29: 81066 + 30: 79080 + 34: 79080 + 9: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE5countEv:289252 + 0: 72313 + 16: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:289936 + 6: 72484 + 20: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:0 + 0: 0 + 21.1: _ZNK9oceanbase3sql6ObExpr4evalERNS0_9ObEvalCtxERPNS_6common7ObDatumE:2856167 + 4: 72484 + 6: 72484 + 7: 72484 + 9: 72484 + 10: 447 + 10.1: 1872 + 11: 447 + 13: 1872 + 15.1: 76315 + 15.2: 3 + 17: 0 + 18: 0 + 20: 0 + 21: 0 + 22: 0 + 24: 0 + 9: _ZNK9oceanbase3sql6ObExpr15is_batch_resultEv:289936 + 0: 72484 + 11: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:1788 + 0: 447 + 24: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:0 + 0: 0 + 26: _ZN9oceanbase6common7ObDatum9deep_copyERKS1_PclRl:6536366 + 3: 75892 + 4: 75892 + 5: 75892 + 8: 75892 + 9: 75906 + 10: 75906 +_ZN9oceanbase8observer9ObMPQuery19process_single_stmtERKNS_3sql15ObMultiStmtItemERNS2_16ObSQLSessionInfoEbbRbS8_:22658567:5448 + 6: 5051 + 7: 5051 + 12: 5476 _ZN9oceanbase3sql16ObSQLSessionInfo20get_raw_audit_recordEv:5647 + 12.1: 5433 + 14: 5433 _ZN9oceanbase3sql16ObSQLSessionInfo20get_raw_audit_recordEv:5460 + 14.1: 4927 + 15: 4927 _ZN9oceanbase3lib21ObMallocCallbackGuardC1ERNS0_16ObMallocCallbackE:4998 + 23.1: 5139 + 23.3: 5139 _ZN9oceanbase6common21ObSessionStatEstGuardC1Emmb:5545 + 24: 5275 + 24.1: 4905 + 25.1: 0 + 27: 4905 + 29: 0 + 33.3: 4429 + 36.1: 0 + 40: 4429 + 41: 4429 + 43: 4736 + 44: 4736 + 52.1: 4736 + 53.1: 4736 + 55.1: 5686 + 60: 5686 _ZN9oceanbase3sql8ObSqlCtx5clearEv:5887 + 62: 0 + 62.1: 0 + 70.3: 5271 + 77: 5095 + 80: 5486 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:5486 + 81: 4889 + 83: 0 + 84: 0 + 84.2: 0 + 84.3: 0 + 85: 0 + 86.1: 0 + 94: 4863 _ZNK9oceanbase8observer8ObMPBase16do_after_processERNS_3sql16ObSQLSessionInfoEbRNS2_8ObSqlCtxEb:4894 + 99.1: 5195 + 100: 4966 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:5182 + 107: 5178 + 107.3: 8 + 108: 8 + 110: 5422 _ZN9oceanbase3sql8ObSqlCtx5resetEv:5486 + 112: 5042 + 113.13: 5278 _ZN9oceanbase6common21ObSessionStatEstGuardD1Ev:5483 + 113.14: 0 + 113.16: 0 + 113.21: 5229 _ZN9oceanbase3lib21ObMallocCallbackGuardD1Ev:5276 + 113.22: 5351 _ZN9oceanbase5trace16__ObFLTSpanGuardD2Ev:5472 + 65121.1: 0 + 8: _ZN9oceanbase5trace16__ObFLTSpanGuardC2Ejh:140687 + 2: 5154 _ZN9oceanbase5trace7ObTrace12get_instanceEv:5121 + 2.1: 5256 _ZN9oceanbase5trace7ObTrace10begin_spanEjhb:5272 + 11: _ZN9oceanbase3lib20is_trace_log_enabledEv:163108 + 2: 5154 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:5367 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:157954 + 2: 5476 + 13.1: _ZN9oceanbase8observer23ObProcessMallocCallbackC2ElRl:394160 + 1: 4927 + 2: 4927 + 2.3: 4927 + 0: _ZN9oceanbase3lib16ObMallocCallbackC2Ev:68978 + 0: 4927 + 17: _ZN9oceanbase8observer8ObMPBase8setup_wbERNS_3sql16ObSQLSessionInfoE:415822 + 3: _ZN9oceanbase3sql16ObSQLSessionInfo18reset_warnings_bufEv:357198 + 3: 4827 _ZN9oceanbase6common11ObSqlString5resetEv:4883 + 2: _ZN9oceanbase6common15ObWarningBuffer5resetEv:318582 + 2: 4827 + 5: 4827 + 4: _ZN9oceanbase6common15ObWarningBuffer11WarningItem5resetEv:212388 + 2: 4827 + 3: 4827 + 5: 4827 + 8: 4827 + 5: _ZN9oceanbase3sql16ObSQLSessionInfo19get_warnings_bufferEv:37464 + 0: 5352 + 5.1: _ZN9oceanbase6common27ob_setup_tsi_warning_bufferEPNS0_15ObWarningBufferE:21160 + 2: 5352 + 2: _ZN9oceanbase6common25ob_get_tsi_warning_bufferEv:5104 + 2: 5104 _ZTWN9oceanbase6common16g_warning_bufferE:5169 + 20: _ZN9oceanbase3sql18ObBasicSessionInfo33set_curr_trans_last_stmt_end_timeEl:58872 + 0: 5352 + 23: _ZNK9oceanbase8observer8ObMPBase8get_connEv:112392 + 2: _ZNK9oceanbase8observer16ObMPPacketSender8get_connEv:112392 + 3: 5352 + 4.1: 0 + 6: 5352 _ZN9oceanbase3rpc20ObSqlRequestOperator15get_sql_sessionEPNS0_9ObRequestE:5381 + 23.1: _ZNK9oceanbase5share12ObTenantBase2idEv:35973 + 0: 5139 + 23.2: _ZNK9oceanbase3sql18ObBasicSessionInfo10get_sessidEv:71946 + 0: 5139 + 24: _ZNK9oceanbase8observer8ObMPBase16init_process_varERNS_3sql8ObSqlCtxERKNS2_15ObMultiStmtItemERNS2_16ObSQLSessionInfoERb:1351033 + 6: 5275 + 8.1: 5275 + 9: 0 + 10.1: 0 + 12: 5275 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:5324 + 14: 4876 + 15: 0 + 15.2: 0 + 16: 0 + 17.1: 0 + 22: 4876 + 26: 4876 + 26.1: 4876 + 29: 285 + 29.1: 0 + 29.2: 285 + 31.1: 4867 _ZZNK9oceanbase8observer8ObMPBase16init_process_varERNS_3sql8ObSqlCtxERKNS2_15ObMultiStmtItemERNS2_16ObSQLSessionInfoERbENK5$_268clEPKc.aab76b6a44351831e19725958b59fc25:4926 + 33: 4905 + 6: _ZNK9oceanbase3sql18ObBasicSessionInfo16is_use_trace_logERb:254355 + 2: 5275 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache23get_ob_enable_trace_logEv:121325 + 0: 5275 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache23get_ob_enable_trace_logEb:63300 + 0: 5275 + 8.1: _ZNK9oceanbase8observer16ObMPPacketSender13is_conn_validEv:42200 + 0: 5275 + 15.1: _ZN9oceanbase3sql18ObBasicSessionInfo22get_debug_sync_actionsEv:0 + 0: 0 + 21: _ZN9oceanbase3sql15ObMultiStmtItemaSERKS1_:282808 + 0: 4876 + 23: _ZN9oceanbase3lib6Worker4selfEv:136528 + 3: 4876 + 4: 0 + 23.1: _ZNK9oceanbase3lib6Worker14get_rpc_tenantEv:34132 + 0: 4876 + 23.2: _ZN9oceanbase3sql18ObBasicSessionInfo17set_rpc_tenant_idEm:34132 + 0: 4876 + 26.1: _ZNK9oceanbase3sql18ObBasicSessionInfo17is_in_transactionEv:112148 + 0: 4876 + 0.1: _ZNK9oceanbase11transaction8ObTxDesc8is_in_txEv:34132 + 0: 4876 + 29: _ZNK9oceanbase7obmysql16ObMySQLRawPacket15can_reroute_pktEv:1140 + 2: 285 + 29.3: _ZNK9oceanbase8observer14ObSMConnection24is_support_proxy_rerouteEv:0 + 2: 0 + 29.1: _ZN9oceanbase6common21ObThreadLogLevelUtils4initEPKNS0_15ObLogIdLevelMapE:0 + 4: 0 + 5: 0 + 5.3: 0 + 6: 0 + 2: _ZN9oceanbase6common21ObThreadLogLevelUtils20get_thread_log_levelEv:0 + 3: _ZN9oceanbase6common15get_local_storeEv:0 + 3: 0 + 3.1: 0 + 3.1: _ZN9oceanbase6common12ObLocalStoreC2Ev:0 + 1: 0 + 0: _ZN9oceanbase6common16ObThreadLogLevelC2Ev:0 + 0: 0 + 33: _ZNK9oceanbase3sql18ObBasicSessionInfo19get_login_tenant_idEv:34335 + 0: 4905 + 33.1: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:68670 + 0: 4905 + 33.2: _ZN9oceanbase8observer8ObMPBase24check_and_refresh_schemaEmmPNS_3sql16ObSQLSessionInfoE:712861 + 4: 4905 + 5: 4905 + 6: 4905 + 8: 4905 + 11.1: 4905 + 12: 0 + 13.1: 0 + 27: 4905 _ZNK9oceanbase5share6schema27ObMultiVersionSchemaService35get_tenant_refreshed_schema_versionEmRlb:4916 + 28.1: 0 + 29.1: 4429 + 31.1: 4429 + 33.1: 0 + 34.1: 0 + 41: 0 + 29.1: _ZN9oceanbase3sql18ObBasicSessionInfo26get_ob_last_schema_versionERl:177160 + 2: 4429 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache26get_ob_last_schema_versionEv:66435 + 0: 4429 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache26get_ob_last_schema_versionEb:31003 + 0: 4429 + 41: _ZN9oceanbase8observer16ObQueryRetryCtrl17reset_retry_timesEv:75293 + 0: 4429 + 51.1: _ZN9oceanbase8observer16ObQueryRetryCtrl29clear_state_before_each_retryERNS_3sql16ObQueryRetryInfoE:151990 + 2: 4736 + 4: _ZN9oceanbase3sql16ObQueryRetryInfo29clear_state_before_each_retryEv:37888 + 2: 4736 + 52: _ZN9oceanbase3sql18ObBasicSessionInfo15get_is_in_retryEv:37888 + 1: 4736 + 53: _ZNK9oceanbase3sql15ObMultiStmtItem21is_part_of_multi_stmtEv:28416 + 0: 4736 + 55: _ZN9oceanbase8observer9ObMPQuery10do_processERNS_3sql16ObSQLSessionInfoEbbRbS5_:14903132 + 6: 4736 + 13: 5589 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:5602 + 15: 5340 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:5581 + 24: 5577 + 25: 5577 + 29: 5007 + 29.2: 4944 _ZN9oceanbase6common8precheckINS_8observer16ObMySQLResultSetEEEibRb:5656 + 29.4: 5423 + 29.6: 5300 _ZN9oceanbase6common2SVINS_8observer16ObMySQLResultSetELb0EEC2IZNS2_9ObMPQuery10do_processERNS_3sql16ObSQLSessionInfoEbbRbSA_EUlPvE_EEibOT_:5238 + 29.7: 5219 + 29.9: 5219 _ZN9oceanbase3lib4Flow11current_ctxEv:5558 + 29.12: 5094 + 29.13: 5101 + 29.16: 5101 + 30.2: 5609 + 35.1: 0 + 36.1: 5609 _ZN9oceanbase3sql18ObBasicSessionInfo38update_query_sensitive_system_variableERNS_5share6schema19ObSchemaGetterGuardE:5553 + 36.2: 5478 + 37.1: 0 + 38.1: 5478 _ZN9oceanbase8observer8ObMPBase33update_transmission_checksum_flagERKNS_3sql16ObSQLSessionInfoE:5551 + 38.2: 5372 + 39.1: 0 + 40.1: 5372 + 41: 0 + 42.1: 0 + 44: 5372 _ZN9oceanbase8observer14global_contextEv:5375 + 44.1: 4779 + 46: 5000 + 47: 5000 + 48: 5000 + 54: 5305 + 55: 5305 + 56: 62 + 58.3: 5490 _ZN9oceanbase6common14ObMaxWaitGuardC1EPNS0_15ObWaitEventDescEPNS0_21ObDiagnoseSessionInfoE:5640 + 59.3: 5577 _ZN9oceanbase6common16ObTotalWaitGuardC1EPNS0_15ObWaitEventStatEPNS0_21ObDiagnoseSessionInfoE:5550 + 60: 5320 + 61: 66 + 65: 4974 + 68: 4974 _ZN9oceanbase6common16ObClusterVersion12get_instanceEv:5213 + 69.1: 5141 + 72: 5141 + 74.1: 5141 + 75: 0 + 76.1: 0 + 77.1: 5141 + 77.2: 4998 + 78.1: 0 + 79.1: 4998 _ZN9oceanbase3sql5ObSql10stmt_queryERKNS_6common8ObStringERNS0_8ObSqlCtxERNS0_11ObResultSetE:5134 + 79.2: 5072 + 80: 0 + 80.1: 0 + 81.1: 0 + 81.2: 0 + 83: 0 + 84: 0 + 88.1: 0 + 91: 0 + 92: 0 + 101.1: 0 + 105: 5072 + 107: 66 + 107.1: 66 + 114.2: 5186 + 118.1: 5186 + 120: 21 + 124: 5186 + 129.2: 5169 + 132.2: 0 + 133: 0 + 134.1: 0 + 136: 0 + 137.1: 0 + 144: 5169 + 145: 5169 _ZN9oceanbase3sql11ObResultSet41check_and_nonblock_refresh_location_cacheEv:5240 + 145.1: 4855 + 146.1: 0 + 152.3: 4855 _ZNK9oceanbase6common9EventItem4callEv:4924 + 152.4: 5083 + 153: 5083 + 154.1: 85 + 158: 5340 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:5464 + 158.1: 5123 + 159: 5123 + 160: 85 + 162: 5196 + 164.1: 85 + 167: 85 + 175: 85 + 177.1: 85 + 187.1: 4900 + 192: 4876 + 196: 225 _ZN9oceanbase3sql16ObSQLSessionInfo24update_show_warnings_bufEv:234 + 198: 4731 _ZN9oceanbase3sql16ObSQLSessionInfo21set_show_warnings_bufEi:5012 + 201: 5139 + 201.4: 0 + 201.6: 0 + 201.7: 0 + 202: 0 + 205.1: 0 + 211: 0 + 212.1: 0 + 212.2: 0 + 213: 0 + 214.1: 0 + 218: 5460 _ZN9oceanbase6common16ObTotalWaitGuardD1Ev:5713 + 218.3: 0 + 218.4: 0 + 218.6: 5413 _ZN9oceanbase6common14ObMaxWaitGuardD1Ev:5404 + 220: 4999 + 221.1: 4999 + 222.2: 4999 _ZN9oceanbase3sql6ObStmt13is_write_stmtENS0_4stmt8StmtTypeEb:4995 + 222.3: 5471 + 230: 5179 + 230.4: 5179 + 232: 5179 + 233: 21 + 234.1: 21 + 237.2: 21 + 238: 21 + 239: 21 + 240.1: 21 + 241.1: 21 + 242.1: 21 + 243.1: 21 + 245.1: 21 + 246.1: 21 + 247.1: 21 + 249: 21 + 250.1: 21 + 253.1: 21 + 257: 21 + 259.1: 21 + 260.1: 21 + 261.1: 21 + 264: 21 + 267.1: 21 + 271: 4806 + 272: 0 + 273: 4806 + 276: 5038 + 280.1: 5038 + 282: 5038 + 283: 4532 + 283.1: 4532 + 284.1: 4686 _ZN9oceanbase3sql14ObPhysicalPlan16update_plan_statERKNS0_17ObAuditRecordDataEbbPKNS_6common8ObIArrayINS0_15ObTableRowCountEEE:4890 + 289.2: 0 + 290.1: 0 + 294: 0 + 299: 5042 + 300: 4794 _ZN9oceanbase8observer8ObMPBase16clear_wb_contentERNS_3sql16ObSQLSessionInfoE:4914 + 303.2: 5091 + 304: 5190 + 304.1: 23 + 304.2: 23 + 305: 23 + 306.1: 23 + 308.1: 5091 _ZNK9oceanbase3omt10ObThWorker10need_retryEv:5247 + 308.2: 5435 + 309.1: 5435 + 310: 5435 _ZN9oceanbase3sql10ObSQLUtils19handle_audit_recordEbNS0_13ObExecuteModeERNS0_16ObSQLSessionInfoEb:5609 + 311: 5435 + 314.1: 4804 _ZN9oceanbase3sql20ObSecurityAuditUtils21handle_security_auditERNS0_11ObResultSetEPNS_5share6schema19ObSchemaGetterGuardEPKNS0_6ObStmtERKNS_6common8ObStringEi:4881 + 315: 4804 + 316: 4804 + 317.1: 4804 + 318: 4804 + 321: 5333 + 322.48: 0 + 322.52: 5080 _ZN9oceanbase6common24ObFatalErrExtraInfoGuardD2Ev:5067 + 64905: 8 + 7: _ZN9oceanbase3sql16ObSQLSessionInfo16get_audit_recordEv:99894 + 2: 4736 + 10: _ZNK9oceanbase3sql15ObMultiStmtItem7get_sqlEv:62006 + 11: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:111178 + 2: 4736 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:5011 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:106442 + 2: 5589 + 13.1: _ZNK9oceanbase3sql18ObBasicSessionInfo29get_local_ob_enable_sql_auditEv:0 + 2: 0 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache23get_ob_enable_sql_auditEv:0 + 0: 0 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache23get_ob_enable_sql_auditEb:0 + 20: _ZN9oceanbase8observer14ObReqTimeGuardC2Eb:712459 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS_8observer13ObReqTimeInfoELm0EEEPT_v:147700 + 7: 5275 + 8: 0 + 8.1: 0 + 5: _ZN9oceanbase8observer13ObReqTimeInfo17update_start_timeEv:564759 + 2: 5275 + 5: 5475 + 6.1: 0 + 9: 5308 + 11: 5577 + 1192.1: 66 + 9: _ZN9oceanbase6common13ObTimeUtility22current_monotonic_timeEv:352763 + 9: _ZN9oceanbase6common13ObTimeUtility23current_monotonic_time_Ev:352763 + 7: 5475 + 8: 0 + 11: 0 + 11.2: 5308 + 12: 5308 + 23: _ZN9oceanbase3sql16ObSQLSessionInfo28get_cached_schema_guard_infoEv:62006 + 26: _ZN9oceanbase3sql27ObSqlFatalErrExtraInfoGuardC2Ev:230107 + 0: 5577 _ZN9oceanbase6common24ObFatalErrExtraInfoGuardC2Ev:5519 + 0.1: _ZN9oceanbase3sql27ObSqlFatalErrExtraInfoGuard5resetEv:115161 + 2: _ZN9oceanbase6common8ObString5resetEv:115161 + 3: 5007 + 27: _ZN9oceanbase3sql27ObSqlFatalErrExtraInfoGuard11set_cur_sqlERKNS_6common8ObStringE:40056 + 0: 5007 + 28: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:35049 + 0: 5007 + 28.1: _ZN9oceanbase3sql27ObSqlFatalErrExtraInfoGuard13set_tenant_idEm:35049 + 0: 5007 + 29.12: _ZN9oceanbase8observer16ObMySQLResultSetC2ERNS_3sql16ObSQLSessionInfoERNS_6common12ObIAllocatorE:372572 + 1: 5094 _ZN9oceanbase3sql11ObResultSetC2ERNS0_16ObSQLSessionInfoERNS_6common12ObIAllocatorE:5037 + 1.1: 5101 + 2.1: 5101 + 3: 5101 + 0: _ZN9oceanbase6common11ObDLinkBaseINS_8observer16ObMySQLResultSetEEC2Ev:86717 + 1: 5101 + 29.15: _ZN9oceanbase6common2SVINS_8observer16ObMySQLResultSetELb0EE3getEv:1054 + 2: 62 + 596.16: 62 + 30: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:68866 + 0: 4919 + 30.1: _ZN9oceanbase8observer9ObMPQuery23get_tenant_schema_info_EmPNS_3sql29ObTenantCachedSchemaGuardInfoERPNS_5share6schema19ObSchemaGetterGuardERlSA_:1229521 + 6: 4919 + 10: 4919 + 13.1: 4918 + 17: 4918 + 18: 4918 + 19: 5730 _ZNK9oceanbase5share6schema27ObMultiVersionSchemaService35get_tenant_refreshed_schema_versionEmRlb:4886 + 20.1: 0 + 21.1: 5730 _ZNK9oceanbase5share6schema19ObSchemaGetterGuard18get_schema_versionEmRl:5668 + 22.1: 0 + 23.1: 5043 + 26.1: 5043 _ZNK9oceanbase5share6schema27ObMultiVersionSchemaService35get_tenant_refreshed_schema_versionEmRlb:4982 + 27.1: 0 + 28.1: 5385 _ZNK9oceanbase5share6schema19ObSchemaGetterGuard18get_schema_versionEmRl:5109 + 29.1: 0 + 30.1: 5385 + 37: 5385 + 38: 5385 + 41.1: 63 _ZN9oceanbase3sql29ObTenantCachedSchemaGuardInfo27refresh_tenant_schema_guardEm:1 + 42.1: 0 + 46: 63 _ZNK9oceanbase5share6schema19ObSchemaGetterGuard18get_schema_versionEmRl:1 + 47.1: 0 + 48.1: 64 _ZNK9oceanbase5share6schema19ObSchemaGetterGuard18get_schema_versionEmRl:2 + 49.1: 0 + 56: 0 + 10: _ZNK9oceanbase5share6schema19ObSchemaGetterGuard9is_initedEv:39352 + 0: 4919 + 44.1: _ZN9oceanbase3sql5ObSql16get_execution_idEv:86022 + 0: 4779 + 44.2: _ZN9oceanbase3sql18ObBasicSessionInfo24set_current_execution_idEl:33453 + 0: 4779 + 45: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:57906 + 0: 4779 + 0.2: 62 + 45.1: _ZN9oceanbase3sql13ObExecContext19set_need_disconnectEb:35000 + 0: 5000 + 47: _ZN9oceanbase8observer16ObQueryRetryCtrl31set_tenant_local_schema_versionEl:35000 + 2: 5000 + 48: _ZN9oceanbase8observer16ObQueryRetryCtrl28set_sys_local_schema_versionEl:35000 + 2: 5000 + 49: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:60558 + 0: 5000 + 0.2: 62 + 49.1: _ZN9oceanbase3sql27ObSqlFatalErrExtraInfoGuard16set_exec_contextEPNS0_13ObExecContextE:37135 + 0: 5305 + 52: _ZN9oceanbase6common15ObWaitEventStatC2Ev:122015 + 1: 5305 + 63: _ZN9oceanbase8observer16ObMySQLResultSet19set_has_more_resultEb:43680 + 2: 5460 + 64: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:66114 + 0: 5460 + 0.2: 66 + 66: _ZNK9oceanbase8observer16ObQueryRetryCtrl31get_tenant_local_schema_versionEv:34818 + 2: 4974 + 66.1: _ZN9oceanbase3sql17ObTaskExecutorCtx37set_query_tenant_begin_schema_versionEl:34818 + 2: 4974 + 67: _ZNK9oceanbase8observer16ObQueryRetryCtrl28get_sys_local_schema_versionEv:34818 + 2: 4974 + 67.1: _ZN9oceanbase3sql17ObTaskExecutorCtx34set_query_sys_begin_schema_versionEl:34818 + 2: 4974 + 68.1: _ZN9oceanbase6common16ObClusterVersion19get_cluster_versionEv:20564 + 0: 5141 + 68.2: _ZN9oceanbase3sql17ObTaskExecutorCtx23set_min_cluster_versionEm:35987 + 2: 5141 + 69: _ZNK9oceanbase8observer16ObQueryRetryCtrl15get_retry_timesEv:35987 + 2: 5141 + 77.1: _ZNK9oceanbase8observer8ObMPBase18set_session_activeERKNS_6common8ObStringERNS_3sql16ObSQLSessionInfoElNS_7obmysql10ObMySQLCmdE:128789 + 5.1: 5141 _ZN9oceanbase3sql18ObBasicSessionInfo18set_session_activeERKNS_6common8ObStringEllNS_7obmysql10ObMySQLCmdE:5107 + 5: _ZNK9oceanbase3rpc5frame14ObReqProcessor21get_receive_timestampEv:92538 + 2: 5141 + 81: _ZN9oceanbase3lib6Worker4selfEv:0 + 3: 0 + 4: 0 + 83: _ZN9oceanbase8observer16ObQueryRetryCtrl25test_and_save_retry_stateERKNS0_15ObGlobalContextERKNS_3sql8ObSqlCtxERNS5_11ObResultSetEiRibbb:0 + 9: 0 + 10: 0 + 11: 0 + 15: 0 + 17.1: 0 + 18.1: 0 + 21.1: 0 + 22.1: 0 + 23: 0 + 24.1: 0 + 29.3: 0 + 31: 0 + 39: 0 + 47: 0 + 48: 0 + 53: 0 + 56: 0 + 60: 0 + 14: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:0 + 0: 0 + 14.1: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:0 + 2: 0 + 18.1: _ZN9oceanbase8observer16ObQueryRetryCtrl8get_funcEibRPFvRNS0_12ObRetryParamEE:0 + 4: _ZNK9oceanbase6common4hash9ObHashMapIiSt4pairIPFvRNS_8observer12ObRetryParamEES8_ENS1_19NoPthreadDefendModeENS1_9hash_funcIiEENS1_8equal_toIiEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIiS9_EEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKiRS9_l:0 + 7: _ZN9oceanbase6common4hash11ObHashTableIiNS1_11HashMapPairIiSt4pairIPFvRNS_8observer12ObRetryParamEES9_EEENS1_9hash_funcIiEENS1_8equal_toIiEENS1_10pair_firstISB_EENS1_13SimpleAllocerINS1_15ObHashTableNodeISB_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKiRSB_l:0 + 5: 0 + 6.1: 0 + 10: 0 + 19: 0 + 5: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairIiSt4pairIPFvRNS_8observer12ObRetryParamEESA_EEENS1_5NLockENS1_5NCondEEEEEbRKT_:0 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairIiSt4pairIPFvRNS_8observer12ObRetryParamEESA_EEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:0 + 2: 0 + 18: _ZN9oceanbase6common4hash11ObHashTableIiNS1_11HashMapPairIiSt4pairIPFvRNS_8observer12ObRetryParamEES9_EEENS1_9hash_funcIiEENS1_8equal_toIiEENS1_10pair_firstISB_EENS1_13SimpleAllocerINS1_15ObHashTableNodeISB_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE32internal_get_with_timeout_unsafeERNS1_17ObHashTableBucketISB_NS1_5NLockENS1_5NCondEEERKiRPKSB_l:0 + 6: _ZNK9oceanbase6common4hash11ObHashTableIiNS1_11HashMapPairIiSt4pairIPFvRNS_8observer12ObRetryParamEES9_EEENS1_9hash_funcIiEENS1_8equal_toIiEENS1_10pair_firstISB_EENS1_13SimpleAllocerINS1_15ObHashTableNodeISB_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE12internal_getERKNS1_17ObHashTableBucketISB_NS1_5NLockENS1_5NCondEEERKiRPKSB_Rb:0 + 6: 0 + 8.1: 0 + 10: 0 + 14: 0 + 16: 0 + 9: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_11HashMapPairIiSt4pairIPFvRNS_8observer12ObRetryParamEES9_EEEE16check_magic_codeEv:0 + 0: 0 + 903.1: 0 + 9.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 10.1: _ZNK9oceanbase6common4hash8equal_toIiEclERKiS5_:0 + 2: 0 + 21: _ZN9oceanbase6common11copy_assignINS0_4hash11HashMapPairIiSt4pairIPFvRNS_8observer12ObRetryParamEES9_EEEEEiRT_RKSC_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapINS0_4hash11HashMapPairIiSt4pairIPFvRNS_8observer12ObRetryParamEES9_EEEEEiRT_RKSC_NS0_8BoolTypeILb1EEE:0 + 2: _ZN9oceanbase6common4hash11HashMapPairIiSt4pairIPFvRNS_8observer12ObRetryParamEES8_EE6assignERKSA_:0 + 5.1: _ZN9oceanbase6common11copy_assignISt4pairIPFvRNS_8observer12ObRetryParamEES7_EEEiRT_RKS9_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapISt4pairIPFvRNS_8observer12ObRetryParamEES7_EEEiRT_RKS9_NS0_8BoolTypeILb0EEE:0 + 2: _ZNSt4pairIPFvRN9oceanbase8observer12ObRetryParamEES5_EaSERKS6_:0 + 2: 0 + 30: _ZN9oceanbase8observer12ObRetryParamC2ERKNS_3sql8ObSqlCtxERNS2_11ObResultSetERNS2_16ObSQLSessionInfoEllllbbblliRNS0_16ObQueryRetryTypeERi:0 + 16: 0 + 19: 0 + 20: 0 + 21: 0 + 22: 0 + 26: 0 + 27: 0 + 28: 0 + 29: 0 + 30: 0 + 44: _ZN9oceanbase8observer16ObQueryRetryCtrl11before_funcERNS0_12ObRetryParamE:0 + 8: _ZN9oceanbase8observer24ObBeforeRetryCheckPolicyC2Ev:0 + 0: 0 + 9: _ZN9oceanbase8observer21ObStmtTypeRetryPolicyC2Ev:0 + 0: 0 + 10: _ZN9oceanbase8observer13ObRetryObject4testERKNS0_13ObRetryPolicyE:0 + 5: 0 + 10.1: _ZN9oceanbase8observer13ObRetryObject4testERKNS0_13ObRetryPolicyE:0 + 2: 0 + 5: 0 + 51: _ZN9oceanbase8observer16ObQueryRetryCtrl10after_funcERNS0_12ObRetryParamE:0 + 2: 0 + 4.1: 0 + 6: 0 + 7: 0 + 9: 0 + 10.1: 0 + 13: 0 + 14.1: 0 + 7.1: _ZN9oceanbase3sql16ObQueryRetryInfo24set_last_query_retry_errEi:0 + 2: 0 + 8.1: _ZN9oceanbase3sql16ObQueryRetryInfo13inc_retry_cntEv:0 + 0: 0 + 101.1: _ZN9oceanbase3sql16ObQueryRetryInfo24set_last_query_retry_errEi:0 + 2: 0 + 102.1: _ZN9oceanbase3sql16ObQueryRetryInfo13inc_retry_cntEv:0 + 0: 0 + 108: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:1386 + 0: 66 + 0.2: 66 + 108.1: _ZN9oceanbase3sql13ObExecContext19set_plan_start_timeEl:924 + 0: 66 + 0: _ZN9oceanbase3sql17ObPhysicalPlanCtx19set_plan_start_timeEl:462 + 0: 66 + 113: _ZNK9oceanbase3sql11ObResultSet21get_literal_stmt_typeEv:41488 + 2: 5186 + 113.1: _ZN9oceanbase3sql6ObStmt18is_diagnostic_stmtENS0_4stmt8StmtTypeE:93348 + 2: 5186 + 114.1: _ZN9oceanbase3sql6ObStmt18is_show_trace_stmtENS0_4stmt8StmtTypeE:15558 + 2: 5186 + 115: _ZN9oceanbase3sql11ObResultSet17get_physical_planEv:62232 + 2: _ZNK9oceanbase3sql15ObCacheObjGuard13get_cache_objEv:62232 + 2: 5186 + 116: _ZN9oceanbase3sql27ObSqlFatalErrExtraInfoGuard12set_cur_planEPKNS0_14ObPhysicalPlanE:36302 + 0: 5186 + 118: _ZNK9oceanbase8observer9ObMPQuery21get_is_com_filed_listEv:41488 + 0: 5186 + 119: _ZN9oceanbase3sql11ObResultSet21set_is_com_filed_listEv:189 + 0: 21 + 120: _ZN9oceanbase3sql11ObResultSet19set_wildcard_stringENS_6common8ObStringE:315 + 0: 21 + 129.1: _ZN9oceanbase8observer9ObMPQuery15response_resultERNS0_16ObMySQLResultSetEbRb:1830917 + 4: 5186 + 10: 5078 _ZNK9oceanbase3sql11ObResultSet23need_end_trans_callbackEv:5111 + 10.1: 5016 + 13.1: 5016 + 14: 4439 + 15: 66 + 18.1: 66 + 19.1: 0 + 20.1: 66 + 20.2: 66 + 21.1: 0 + 26: 4696 + 27: 4696 _ZN9oceanbase8observer16ObSyncPlanDriver15response_resultERNS0_16ObMySQLResultSetE:4714 + 27.1: 4724 + 30: 581 + 32: 323 + 33.1: 282 + 34.1: 0 + 35.1: 282 _ZN9oceanbase8observer16ObAsyncCmdDriver15response_resultERNS0_16ObMySQLResultSetE:289 + 35.2: 239 + 36.1: 0 + 40: 275 + 43: 275 _ZN9oceanbase8observer15ObSyncCmdDriver15response_resultERNS0_16ObMySQLResultSetE:281 + 43.1: 273 + 48: 300 + 5: _ZN9oceanbase5trace16__ObFLTSpanGuardC2Ejh:89602 + 2: 5186 _ZN9oceanbase5trace7ObTrace12get_instanceEv:5294 + 2.1: 5243 _ZN9oceanbase5trace7ObTrace10begin_spanEjhb:5276 + 7: _ZN9oceanbase3sql11ObResultSet11get_sessionEv:40624 + 0: 5078 + 15: _ZN9oceanbase8observer17ObAsyncPlanDriverC2ERKNS0_15ObGlobalContextERKNS_3sql8ObSqlCtxERNS5_16ObSQLSessionInfoERNS0_16ObQueryRetryCtrlERNS0_17ObIMPPacketSenderEb:5082 + 7: 66 + 6: _ZN9oceanbase8observer13ObQueryDriverC2ERKNS0_15ObGlobalContextERKNS_3sql8ObSqlCtxERNS5_16ObSQLSessionInfoERNS0_16ObQueryRetryCtrlERNS0_17ObIMPPacketSenderEb:4620 + 6: 66 + 7: 66 + 8: 66 + 9: 66 + 10: 66 + 11: 66 + 18: _ZN9oceanbase8observer15ObSqlEndTransCb4initERNS0_16ObMPPacketSenderEPNS_3sql16ObSQLSessionInfoEim:7194 + 5: 66 + 6: 66 + 7: 66 + 8: 66 + 8: _ZN9oceanbase8observer16ObMPPacketSender10clone_fromERS1_:4884 + 3: 66 + 4.1: 0 + 6: 66 + 7: 66 + 9: 0 + 26: _ZN9oceanbase8observer16ObSyncPlanDriverC2ERKNS0_15ObGlobalContextERKNS_3sql8ObSqlCtxERNS5_16ObSQLSessionInfoERNS0_16ObQueryRetryCtrlERNS0_17ObIMPPacketSenderEbi:408552 + 8: 4696 + 9: 4696 + 7: _ZN9oceanbase8observer13ObQueryDriverC2ERKNS0_15ObGlobalContextERKNS_3sql8ObSqlCtxERNS5_16ObSQLSessionInfoERNS0_16ObQueryRetryCtrlERNS0_17ObIMPPacketSenderEb:328720 + 6: 4696 + 7: 4696 + 8: 4696 + 9: 4696 + 10: 4696 + 11: 4696 + 32: _ZN9oceanbase8observer16ObAsyncCmdDriverC2ERKNS0_15ObGlobalContextERKNS_3sql8ObSqlCtxERNS5_16ObSQLSessionInfoERNS0_16ObQueryRetryCtrlERNS0_17ObIMPPacketSenderEb:24871 + 7: 323 + 6: _ZN9oceanbase8observer13ObQueryDriverC2ERKNS0_15ObGlobalContextERKNS_3sql8ObSqlCtxERNS5_16ObSQLSessionInfoERNS0_16ObQueryRetryCtrlERNS0_17ObIMPPacketSenderEb:22610 + 6: 323 + 7: 323 + 8: 323 + 9: 323 + 10: 323 + 11: 323 + 33: _ZN9oceanbase8observer15ObSqlEndTransCb4initERNS0_16ObMPPacketSenderEPNS_3sql16ObSQLSessionInfoEim:32398 + 5: 323 + 6: 323 + 7: 323 + 8: 323 + 8: _ZN9oceanbase8observer16ObMPPacketSender10clone_fromERS1_:21093 + 3: 323 _ZN9oceanbase8observer16ObMPPacketSender7do_initEPNS_3rpc9ObRequestEhbbl:327 + 4.1: 0 + 6: 282 + 7: 282 + 9: 0 + 40: _ZN9oceanbase8observer15ObSyncCmdDriverC2ERKNS0_15ObGlobalContextERKNS_3sql8ObSqlCtxERNS5_16ObSQLSessionInfoERNS0_16ObQueryRetryCtrlERNS0_17ObIMPPacketSenderEb:23100 + 7: 275 + 6: _ZN9oceanbase8observer13ObQueryDriverC2ERKNS0_15ObGlobalContextERKNS_3sql8ObSqlCtxERNS5_16ObSQLSessionInfoERNS0_16ObQueryRetryCtrlERNS0_17ObIMPPacketSenderEb:19250 + 6: 275 + 7: 275 + 8: 275 + 9: 275 + 10: 275 + 11: 275 + 41: _ZN9oceanbase3sql16ObSQLSessionInfo19set_pl_query_senderEPNS_8observer13ObQueryDriverE:1925 + 0: 275 + 42: _ZNK9oceanbase3sql11ObResultSet14is_ps_protocolEv:2475 + 0: 275 + 42.1: _ZN9oceanbase3sql16ObSQLSessionInfo15set_ps_protocolEb:1925 + 0: 275 + 44: _ZN9oceanbase3sql16ObSQLSessionInfo19set_pl_query_senderEPNS_8observer13ObQueryDriverE:3276 + 0: 273 + 49.15: _ZN9oceanbase5trace16__ObFLTSpanGuardD2Ev:25551 + 0: 5297 + 0.1: 85 + 0.2: 85 + 0.4: 23 + 0.5: 85 + 0.7: 85 + 0.8: 85 + 0.12: 0 + 0.3: _ZNK9oceanbase5trace4UUID9is_initedEv:1050 + 0: 85 + 0.1: 23 + 0.6: _ZN9oceanbase5trace7ObTrace13is_auto_flushEv:595 + 0: 85 + 49.17: _ZN9oceanbase5trace16__ObFLTSpanGuardD2Ev:0 + 0: 0 + 0.1: 0 + 0.2: 0 + 0.4: 0 + 0.5: 0 + 0.7: 0 + 0.8: 0 + 0.12: 0 + 0.3: _ZNK9oceanbase5trace4UUID9is_initedEv:0 + 0: 0 + 0.1: 0 + 0.6: _ZN9oceanbase5trace7ObTrace13is_auto_flushEv:0 + 0: 0 + 132: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:0 + 0: 0 + 0.2: 0 + 132.1: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:0 + 2: 0 + 152: _ZN9oceanbase6common9EventItemC2Ev:111665 + 2: 4855 + 152.1: _ZN9oceanbase6common10EventTable8instanceEv:82535 + 2: 4855 + 2.1: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common10EventTableC2Ev:0 + 0: 0 + 2: 0 + 152.2: _ZN9oceanbase6common10EventTable9get_eventEl:145650 + 1.4: 4855 + 164: _ZNK9oceanbase3sql11ObResultSet13get_stmt_typeEv:680 + 2: 85 + 174: _ZNK9oceanbase8observer16ObQueryRetryCtrl10need_retryEv:20545 + 3: 5030 + 188.1: _ZN9oceanbase3sql18ObPartitionHitInfo6freezeEv:35424 + 0: 4428 + 201.3: _ZNK9oceanbase8observer8ObMPBase13is_conn_validEv:0 + 0: _ZNK9oceanbase8observer16ObMPPacketSender13is_conn_validEv:0 + 0: 0 + 201.5: _ZN9oceanbase3lib6Worker4selfEv:0 + 3: 0 + 4: 0 + 211: _ZN9oceanbase3sql18ObBasicSessionInfo27get_err_final_partition_hitEi:0 + 3: 0 + 5.2: 0 + 6: 0 + 2.1: _ZN9oceanbase3sql18ObPartitionHitInfo8get_boolEv:0 + 0: 0 + 3: _ZN9oceanbase3sql18ObBasicSessionInfo29is_proxy_refresh_location_retEi:0 + 1: 0 + 5.1: _ZN9oceanbase3sql18ObBasicSessionInfo15get_is_in_retryEv:0 + 1: 0 + 6.2: _ZN9oceanbase3sql18ObBasicSessionInfo29is_proxy_refresh_location_retEi:0 + 1: 0 + 212: _ZN9oceanbase3sql8ObSqlCtx16get_reroute_infoEv:0 + 2: 0 + 3: 0 + 3.1: 0 + 3.2: 0 + 3.3: 0 + 3: _ZN9oceanbase3lib7ObLabelC2IPKcEERKT_:0 + 2: _ZN9oceanbase3lib7ObLabelaSIPKcvEERS1_T_:0 + 2: 0 + 221: _ZNK9oceanbase3sql18ObBasicSessionInfo18get_in_transactionEv:94981 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo17is_in_transactionEv:94981 + 0: 4999 + 0.1: _ZNK9oceanbase11transaction8ObTxDesc8is_in_txEv:34993 + 0: 4999 + 222: _ZNK9oceanbase3sql11ObResultSet13get_stmt_typeEv:39992 + 2: 4999 + 222.1: _ZNK9oceanbase3sql11ObResultSet19has_global_variableEv:44991 + 0: 4999 + 223: _ZN9oceanbase3sql18ObBasicSessionInfo23set_has_exec_write_stmtEb:9687 + 0: _ZN9oceanbase3sql18ObBasicSessionInfo10TransFlags23set_has_exec_write_stmtEb:9687 + 0: _ZN9oceanbase3sql18ObBasicSessionInfo10TransFlags8set_flagEbm:9687 + 3: 1074 + 226: _ZN9oceanbase3sql18ObBasicSessionInfo23set_has_exec_write_stmtEb:357 + 0: _ZN9oceanbase3sql18ObBasicSessionInfo10TransFlags23set_has_exec_write_stmtEb:357 + 0: _ZN9oceanbase3sql18ObBasicSessionInfo10TransFlags8set_flagEbm:357 + 3: 21 + 234: _ZNK9oceanbase3sql18ObBasicSessionInfo24get_current_execution_idEv:147 + 0: 21 + 235.1: _ZN9oceanbase6common6ObAddraSERKS1_:125020 + 1: 21 + 2: 21 + 3: 21 + 236.1: _ZN9oceanbase6common6ObAddraSERKS1_:125062 + 1: 21 + 2: 21 + 3: 21 + 237: _ZN9oceanbase3lib6Worker4selfEv:588 + 3: 21 + 4: 0 + 237.1: _ZNK9oceanbase3lib6Worker12get_group_idEv:126 + 0: 21 + 240: _ZNK9oceanbase3sql14ObPhysicalPlan13get_plan_typeEv:126 + 0: 21 + 241: _ZNK9oceanbase3sql14ObPhysicalPlan18contain_table_scanEv:126 + 0: 21 + 242: _ZN9oceanbase3sql14ObPhysicalPlan11get_plan_idEv:84 + 0: _ZNK9oceanbase3sql17ObILibCacheObject13get_object_idEv:84 + 0: 21 + 243: _ZNK9oceanbase3sql14ObPhysicalPlan19get_plan_hash_valueEv:147 + 0: 21 + 245: _ZNK9oceanbase3sql11ObResultSet17get_affected_rowsEv:168 + 2: 21 + 246: _ZNK9oceanbase3sql11ObResultSet15get_return_rowsEv:168 + 0: 21 + 247: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:441 + 0: 21 + 0.2: 21 + 248: _ZN9oceanbase3sql13ObExecContext11get_das_ctxEv:147 + 0: 21 + 250: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:441 + 0: 21 + 0.2: 21 + 252: _ZNK9oceanbase3sql17ObTaskExecutorCtx23get_expected_worker_cntEv:147 + 0: 21 + 253: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:441 + 0: 21 + 0.2: 21 + 255: _ZNK9oceanbase3sql17ObTaskExecutorCtx24get_allocated_worker_cntEv:147 + 0: 21 + 259: _ZNK9oceanbase3sql11ObResultSet22get_is_from_plan_cacheEv:168 + 0: 21 + 260: _ZNK9oceanbase3sql18ObBasicSessionInfo14get_capabilityEv:147 + 0: 21 + 261: _ZNK9oceanbase3sql15ObMultiStmtItem21is_batched_multi_stmtEv:962 + 3: 21 + 4: 21 + 6: 23 + 65383: 23 + 263: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:441 + 0: 21 + 0.2: 21 + 263.1: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:147 + 2: 21 + 267: _ZNK9oceanbase3sql17ObPhysicalPlanCtx21get_consistency_levelEv:63 + 2: 21 + 271.1: _ZNK9oceanbase3sql17ObAuditRecordData10is_timeoutEv:0 + 1: 0 + 272.1: _ZNK9oceanbase3sql18ObBasicSessionInfo30get_local_ob_enable_plan_cacheEv:124956 + 2: 4806 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_ob_enable_plan_cacheEv:38448 + 0: 4806 + 273.1: _ZNK9oceanbase8observer16ObQueryRetryCtrl10need_retryEv:19329 + 3: 4806 + 275: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:59595 + 0: 4949 + 0.2: 23 + 275.1: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:35266 + 2: 5038 + 279: _ZN9oceanbase3sql17ObPhysicalPlanCtx24get_table_row_count_listEv:35266 + 0: 5038 + 286: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:54573 + 0: 4532 + 0.2: 21 + 286.1: _ZNK9oceanbase3sql13ObExecContext16get_is_evolutionEv:84348 + 0: 4686 + 288: _ZN9oceanbase3sql14ObPhysicalPlan24update_cache_access_statERKNS0_15ObTableScanStatE:646358 + 2: _ZN9oceanbase3sql10ObPlanStat17update_cache_statERKNS0_15ObTableScanStatE:646358 + 2: 4874 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:4996 + 3: 4422 + 4: 4422 + 5: 4422 + 6: 4422 + 7: 4422 + 8: 4422 + 9: 4422 + 10: 4422 + 11: 4422 + 12: 0 + 13: 0 + 14: 0 + 20: 0 + 21: 0 + 22: 0 + 23: 0 + 29: 0 + 30: 0 + 31: 0 + 32: 0 + 45: 0 + 292: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:0 + 0: 0 + 0.2: 0 + 292.1: _ZNK9oceanbase3sql13ObExecContext16get_is_evolutionEv:0 + 0: 0 + 303: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:67677 + 0: 5190 + 0.2: 23 + 303.1: _ZNK9oceanbase3sql13ObExecContext15need_disconnectEv:36491 + 0: 5190 + 304.1: _ZN9oceanbase6common22is_query_killed_returnEi:483 + 3: 23 + 4: 23 + 308: _ZN9oceanbase3lib6Worker4selfEv:142548 + 3: 5091 + 4: 0 + 313: _ZNK9oceanbase8observer16ObQueryRetryCtrl10need_retryEv:86564 + 3: 5110 + 322.42: _ZN9oceanbase6common2SVINS_8observer16ObMySQLResultSetELb0EED2Ev:228603 + 2: 5333 + 4: 5333 _ZN9oceanbase8observer16ObMySQLResultSetD2Ev:5362 + 5: 5080 + 6: 0 + 6.1: 0 + 8: 5080 + 322.45: _ZN9oceanbase6common2SVINS_8observer16ObMySQLResultSetELb0EED2Ev:0 + 2: 0 + 4: 0 + 5: 0 + 6: 0 + 6.1: 0 + 8: 0 + 322.50: _ZN9oceanbase8observer14ObReqTimeGuardD2Ev:0 + 8.2: 0 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS_8observer13ObReqTimeInfoELm0EEEPT_v:0 + 7: 0 + 8: 0 + 8.1: 0 + 6: _ZN9oceanbase8observer13ObReqTimeInfo15update_end_timeEv:0 + 2: 0 + 3: 0 + 5: 0 + 6.1: 0 + 9: 0 + 9: _ZN9oceanbase6common13ObTimeUtility22current_monotonic_timeEv:0 + 9: _ZN9oceanbase6common13ObTimeUtility23current_monotonic_time_Ev:0 + 7: 0 + 8: 0 + 11: 0 + 11.2: 0 + 12: 0 + 322.53: _ZN9oceanbase8observer14ObReqTimeGuardD2Ev:644793 + 8.2: 0 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS_8observer13ObReqTimeInfoELm0EEEPT_v:131516 + 7: 4697 + 8: 0 + 8.1: 0 + 6: _ZN9oceanbase8observer13ObReqTimeInfo15update_end_timeEv:513277 + 2: 4697 + 3: 4697 + 5: 5427 + 6.1: 0 + 9: 5815 + 12.1: 99 + 9: _ZN9oceanbase6common13ObTimeUtility22current_monotonic_timeEv:379142 + 9: _ZN9oceanbase6common13ObTimeUtility23current_monotonic_time_Ev:379142 + 7: 5815 + 8: 0 + 11: 0 + 11.2: 5815 + 12: 5815 + 69: _ZNK9oceanbase8observer16ObQueryRetryCtrl10need_retryEv:49302 + 3: 5478 + 4: 0 + 69.1: _ZN9oceanbase3sql18ObBasicSessionInfo20set_session_in_retryENS0_20ObSessionRetryStatusE:1844824 + 3: 4974 + 2: _ZN9oceanbase3lib11ObLockGuardINS_6common16ObRecursiveMutexEEC2ERS3_:876801 + 1: 5478 + 2: 5478 + 4: 4974 + 5.1: 0 + 4: _ZN9oceanbase6common16ObRecursiveMutex4lockEv:714039 + 2: 5478 + 3: 5478 + 6: 5411 _ZN9oceanbase6common7ObLatch6wrlockEjlPKj:5314 + 7.1: 0 + 12: 4974 + 3: _ZNK9oceanbase6common7ObLatch14is_wrlocked_byEPKj:367026 + 3: 5478 + 4: 5478 + 2.1: _Z9ob_gettidv:290334 + 3: 5478 + 4: 0 + 2: _Z13get_tid_cachev:136950 + 7: 5478 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 + 12: _ZN9oceanbase3lib11ObLockGuardINS_6common16ObRecursiveMutexEED2Ev:702628 + 2: 0 + 3: 4974 + 3.1: 5392 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase6common16ObRecursiveMutex6unlockEv:608102 + 2: 4974 + 3: 4974 + 4: 0 + 5.1: 0 + 6.1: 4974 + 7: 5392 _ZN9oceanbase6common7ObLatch6unlockEPKj:4951 + 8.1: 0 + 11: 0 + 3: _ZNK9oceanbase6common7ObLatch14is_wrlocked_byEPKj:303414 + 3: 4974 + 4: 4974 + 2.1: _Z9ob_gettidv:263622 + 3: 4974 + 4: 0 + 2: _Z13get_tid_cachev:124350 + 7: 4974 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 + 78: _ZN9oceanbase6common21ObThreadLogLevelUtils5clearEv:384 + 4: 8 + 5: 8 + 2: _ZN9oceanbase6common21ObThreadLogLevelUtils20get_thread_log_levelEv:168 + 3: _ZN9oceanbase6common15get_local_storeEv:168 + 3: 8 + 3.1: 0 + 3.1: _ZN9oceanbase6common12ObLocalStoreC2Ev:0 + 1: 0 + 0: _ZN9oceanbase6common16ObThreadLogLevelC2Ev:0 + 0: 0 + 84.1: _ZN9oceanbase3sql18ObBasicSessionInfo22get_debug_sync_actionsEv:0 + 0: 0 + 99: _ZNK9oceanbase3sql18ObBasicSessionInfo18get_in_transactionEv:98705 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo17is_in_transactionEv:98705 + 0: 5195 + 0.1: _ZNK9oceanbase11transaction8ObTxDesc8is_in_txEv:36365 + 0: 5195 + 100.1: _ZN9oceanbase3sql18ObBasicSessionInfo33set_curr_trans_last_stmt_end_timeEl:34678 + 0: 4954 + 107.2: _ZNK9oceanbase8observer8ObMPBase13is_conn_validEv:64 + 0: _ZNK9oceanbase8observer16ObMPPacketSender13is_conn_validEv:64 + 0: 8 + 113.19: _ZN9oceanbase5trace16__ObFLTSpanGuardD2Ev:0 + 0: 0 + 0.1: 0 + 0.2: 0 + 0.3: 0 + 0.4: 0 + 0.5: 0 + 0.7: 0 + 0.8: 0 + 0.12: 0 + 0.3: _ZNK9oceanbase5trace4UUID9is_initedEv:0 + 0: 0 + 0.1: 0 + 0.6: _ZN9oceanbase5trace7ObTrace13is_auto_flushEv:0 + 0: 0 +_ZN9oceanbase3sql11ObResultSet12get_next_rowERPKNS_6common8ObNewRowE:21840938:86960 + 1: 85589 + 2: 85589 + 4: 86389 + 2: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:941479 + 0: 85589 + 0.2: 0 + 2.1: _ZN9oceanbase3sql16LinkExecCtxGuardC2ERNS0_16ObSQLSessionInfoERNS0_13ObExecContextE:6059065 + 6: _ZN9oceanbase3sql16LinkExecCtxGuard20link_current_contextEv:5642477 + 3: 82090 + 10: 82090 + 12: 341 + 17: 341 + 21: 341 + 22: 341 + 3: _ZN9oceanbase3sql16ObSQLSessionInfo16get_cur_exec_ctxEv:574630 + 0: 82090 + 9: _ZN9oceanbase3sql13ObExecContext14set_parent_ctxEPS1_:656720 + 0: 82090 + 12: _ZNK9oceanbase3sql13ObExecContext16get_nested_levelEv:2387 + 0: 341 + 12.1: _ZN9oceanbase3sql13ObExecContext16set_nested_levelEl:4433 + 0: 341 + 15: _ZN9oceanbase3sql16ObSQLSessionInfo16set_cur_exec_ctxEPNS0_13ObExecContextE:574630 + 0: 82090 + 17: _ZN9oceanbase3sql10ObSQLUtils13is_nested_sqlEPNS0_13ObExecContextE:1997781 + 2: 341 + 2: _ZN9oceanbase3sql10ObSQLUtils16is_pl_nested_sqlEPNS0_13ObExecContextE:1985846 + 3.1: 82090 + 6: 341 + 6.2: 341 + 7: 341 + 7.1: 341 + 8: 341 + 8.2: 341 + 3.1: _ZN9oceanbase3sql13ObExecContext14get_parent_ctxEv:1231350 + 0: 82090 + 6: _ZN9oceanbase3sql13ObExecContext11get_sql_ctxEv:2387 + 0: 341 + 7.1: _ZN9oceanbase3sql13ObExecContext16get_pl_stack_ctxEv:2387 + 0: 341 + 2.1: _ZN9oceanbase3sql10ObSQLUtils16is_fk_nested_sqlEPNS0_13ObExecContextE:9207 + 4: 341 + 5: 341 + 4: _ZN9oceanbase3sql13ObExecContext14get_parent_ctxEv:2728 + 0: 341 + 21: _ZNK9oceanbase3sql18ObBasicSessionInfo14get_autocommitERb:11935 + 2: 341 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache14get_autocommitEv:8866 + 0: 341 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache14get_autocommitEb:6138 + 0: 341 + 3: _ZN9oceanbase3sql11ObResultSet18inner_get_next_rowERPKNS_6common8ObNewRowE:6320463 + 2: 82090 + 5: 82090 + 6: 82090 + 7: 379 + 8.1: 379 + 9.1: 86491 + 9.2: 82664 _ZN9oceanbase3sql15ObExecuteResult12get_next_rowERNS0_13ObExecContextERPKNS_6common8ObNewRowE:85869 + 11.1: 341 + 16: 82612 + 18.1: 379 + 19: 379 + 20: 379 + 21: 379 + 23: 341 + 24: 341 + 27: 341 + 28.1: 341 + 31.1: 341 + 32: 341 + 35: 86389 + 3: _ZNK9oceanbase3sql15ObCacheObjGuard13get_cache_objEv:328360 + 2: 82090 + 9.1: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:902990 + 0: 82090 + 0.2: 0 + 13: _ZN9oceanbase3sql14ObPhysicalPlan21set_is_last_exec_succEb:4433 + 0: 341 + 19.1: _ZNK9oceanbase3sql11ObResultSet10is_pl_stmtENS0_4stmt8StmtTypeE:3032 + 3: 379 + 23: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:6479 + 0: 341 + 0.2: 341 + 23.1: _ZN9oceanbase3sql13ObExecContext14get_output_rowEv:2387 + 0: 341 + 4: _ZN9oceanbase3sql16LinkExecCtxGuardD2Ev:4094042 + 2.1: 341 + 2: _ZN9oceanbase3sql16LinkExecCtxGuard22unlink_current_contextEv:4091314 + 7: 86389 + 8: 341 + 10: 341 + 8: _ZN9oceanbase3sql10ObSQLUtils13is_nested_sqlEPNS0_13ObExecContextE:2268961 + 2: 341 + 2: _ZN9oceanbase3sql10ObSQLUtils16is_pl_nested_sqlEPNS0_13ObExecContextE:2259413 + 3: 86389 + 3.1: 86389 + 6: 341 + 6.2: 341 + 7: 341 + 7.1: 341 + 8: 341 + 8.2: 341 + 3.1: _ZN9oceanbase3sql13ObExecContext14get_parent_ctxEv:691112 + 0: 86389 + 6: _ZN9oceanbase3sql13ObExecContext11get_sql_ctxEv:2387 + 0: 341 + 7.1: _ZN9oceanbase3sql13ObExecContext16get_pl_stack_ctxEv:2387 + 0: 341 + 2.1: _ZN9oceanbase3sql10ObSQLUtils16is_fk_nested_sqlEPNS0_13ObExecContextE:8184 + 4: 341 + 5: 341 + 4: _ZN9oceanbase3sql13ObExecContext14get_parent_ctxEv:2728 + 0: 341 + 12: _ZN9oceanbase3sql13ObExecContext14get_parent_ctxEv:691112 + 0: 86389 + 12.1: _ZN9oceanbase3sql16ObSQLSessionInfo16set_cur_exec_ctxEPNS0_13ObExecContextE:604723 + 0: 86389 + 4.1: _ZN9oceanbase3sql16LinkExecCtxGuardD2Ev:49445 + 2.1: 341 + 2: _ZN9oceanbase3sql16LinkExecCtxGuard22unlink_current_contextEv:46717 + 7: 341 + 8: 341 + 10: 341 + 8: _ZN9oceanbase3sql10ObSQLUtils13is_nested_sqlEPNS0_13ObExecContextE:27621 + 2: 341 + 2: _ZN9oceanbase3sql10ObSQLUtils16is_pl_nested_sqlEPNS0_13ObExecContextE:19437 + 3: 341 + 3.1: 341 + 6: 341 + 6.2: 341 + 7: 341 + 7.1: 341 + 8: 341 + 8.2: 341 + 3.1: _ZN9oceanbase3sql13ObExecContext14get_parent_ctxEv:2728 + 0: 341 + 6: _ZN9oceanbase3sql13ObExecContext11get_sql_ctxEv:2387 + 0: 341 + 7.1: _ZN9oceanbase3sql13ObExecContext16get_pl_stack_ctxEv:2387 + 0: 341 + 2.1: _ZN9oceanbase3sql10ObSQLUtils16is_fk_nested_sqlEPNS0_13ObExecContextE:6820 + 4: 341 + 5: 341 + 4: _ZN9oceanbase3sql13ObExecContext14get_parent_ctxEv:2728 + 0: 341 + 12: _ZN9oceanbase3sql13ObExecContext14get_parent_ctxEv:4092 + 0: 341 + 12.1: _ZN9oceanbase3sql16ObSQLSessionInfo16set_cur_exec_ctxEPNS0_13ObExecContextE:2387 + 0: 341 +_ZN9oceanbase12blocksstable21ObClusterColumnReader4initEPKcmmRKNS0_20ObColClusterInfoMaskE:21557309:120948 + 5: 116896 + 6: 116896 + 7: 116896 + 11: 117943 + 11.2: 117943 + 12: 0 + 13.1: 0 + 14.1: 117943 + 15.1: 107330 + 16: 0 + 17.1: 0 + 19: 107330 + 20: 107330 + 21: 107330 + 23: 107330 + 24: 107330 + 25: 107330 + 26: 107330 + 27: 107330 + 28: 0 + 29: 0 + 30: 0 + 31: 0 + 32: 0 + 34: 116917 + 38: 116917 + 8: _ZN9oceanbase12blocksstable21ObClusterColumnReader5resetEv:0 + 2: 0 + 3: 0 + 4: 0 + 7: 0 + 11.1: _ZNK9oceanbase12blocksstable20ObColClusterInfoMask8is_validEv:471772 + 4.1: 117943 + 14.1: _ZNK9oceanbase12blocksstable20ObColClusterInfoMask13is_sparse_rowEv:1061487 + 0: 117943 + 14.2: _ZNK9oceanbase12blocksstable20ObColClusterInfoMask23get_sparse_column_countEv:0 + 0: 0 + 15.1: _ZNK9oceanbase12blocksstable20ObColClusterInfoMask20get_total_array_sizeEl:3541890 + 3.3: 107330 + 4: 107330 + 3: _ZNK9oceanbase12blocksstable20ObColClusterInfoMask19get_offset_type_lenEv:1717280 + 0: _ZNK9oceanbase12blocksstable20ObColClusterInfoMask15get_offset_typeEv:429320 + 0: 107330 + 0.1: _ZN9oceanbase12blocksstable20ObColClusterInfoMask18get_bytes_type_lenENS1_9BYTES_LENE:1287960 + 5: 107330 + 3.1: _ZNK9oceanbase12blocksstable20ObColClusterInfoMask23get_column_idx_type_lenEv:0 + 0: _ZNK9oceanbase12blocksstable20ObColClusterInfoMask19get_column_idx_typeEv:0 + 0: 0 + 0.1: _ZN9oceanbase12blocksstable20ObColClusterInfoMask18get_bytes_type_lenENS1_9BYTES_LENE:0 + 5: 0 + 4: _ZNK9oceanbase12blocksstable20ObColClusterInfoMask28get_special_value_array_sizeEl:751310 + 2: 107330 + 23: _ZNK9oceanbase12blocksstable20ObColClusterInfoMask19get_offset_type_lenEv:1395290 + 0: _ZNK9oceanbase12blocksstable20ObColClusterInfoMask15get_offset_typeEv:321990 + 0: 107330 + 0.1: _ZN9oceanbase12blocksstable20ObColClusterInfoMask18get_bytes_type_lenENS1_9BYTES_LENE:1073300 + 5: 107330 + 26: _ZNK9oceanbase12blocksstable20ObColClusterInfoMask15get_offset_typeEv:858640 + 0: 107330 + 27: _ZNK9oceanbase12blocksstable20ObColClusterInfoMask13is_sparse_rowEv:536650 + 0: 107330 + 29: _ZNK9oceanbase12blocksstable20ObColClusterInfoMask23get_sparse_column_countEv:0 + 0: 0 + 30: _ZNK9oceanbase12blocksstable20ObColClusterInfoMask19get_column_idx_typeEv:0 + 0: 0 + 31: _ZNK9oceanbase12blocksstable20ObColClusterInfoMask23get_column_idx_type_lenEv:0 + 0: _ZNK9oceanbase12blocksstable20ObColClusterInfoMask19get_column_idx_typeEv:0 + 0: 0 + 0.1: _ZN9oceanbase12blocksstable20ObColClusterInfoMask18get_bytes_type_lenENS1_9BYTES_LENE:0 + 5: 0 +_ZN9oceanbase6common5ObObj28convert_string_value_charsetENS0_13ObCharsetTypeERNS0_12ObIAllocatorE:21277753:82347 + 1: 76882 + 2: 76882 + 4: 76882 + 5.1: 606 + 6.1: 76882 + 7: 82217 _ZN9oceanbase6common9ObCharset21get_default_collationENS0_13ObCharsetTypeE:80627 + 8.1: 82217 _ZN9oceanbase6common9ObCharset11get_charsetENS0_15ObCollationTypeE:82664 + 9: 78614 _ZN9oceanbase6common9ObCharset11get_charsetENS0_15ObCollationTypeE:78903 + 10: 75239 + 11: 606 + 12.1: 606 + 13.1: 75239 + 14: 606 + 15.1: 606 + 16.1: 75239 + 16.3: 80010 + 17.1: 80010 + 19: 606 + 20: 606 + 21: 606 + 23.1: 606 + 25: 606 + 26.1: 606 + 28: 606 + 28.2: 606 + 29: 606 + 30: 606 + 33: 606 + 34.1: 606 + 34.2: 606 + 34.3: 606 + 35.1: 606 + 36: 606 + 37: 606 + 39: 606 + 39.1: 606 + 40: 606 + 42: 606 + 43: 606 + 44: 606 + 46: 606 + 47: 606 + 48: 606 + 50: 606 + 55: 606 + 56.1: 606 + 58: 606 + 59: 606 + 60.1: 606 + 64: 606 + 65: 606 + 71: 80010 + 3: _ZN9oceanbase6common8ObStringC2Ev:538174 + 1: 76882 + 4: _ZNK9oceanbase6common5ObObj10get_stringERNS0_8ObStringE:7125500 + 2: 76882 + 3: 606 + 4: 76882 + 5: 606 + 6: 606 + 7.1: 606 + 7.5: 606 + 7.7: 606 + 8.1: 606 + 9.1: 606 + 9.2: 606 + 9.5: 606 + 9.9: 606 + 12: 76882 + 16: 606 + 17: 606 + 3: _ZNK9oceanbase6common9ObObjMeta29is_string_or_lob_locator_typeEv:2164210 + 1: 76882 + 1.1: 606 + 1: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:538174 + 0: 76882 + 1.4: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:232464 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:232464 + 2: 76882 + 7.6: _ZN9oceanbase6common7ObLogKVIRKNS0_5ObObjELb0EEC2EPKcS4_:22422 + 0: 606 + 9.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:24846 + 0: 606 + 9.7: _ZN9oceanbase6common20ObLogPrintPointerCntIKPKNS0_12ObLobLocatorEEC2ES4_:1818 + 0: 606 + 9.8: _ZN9oceanbase6common7ObLogKVINS0_20ObLogPrintPointerCntIKPKNS0_12ObLobLocatorEEELb1EEC2EPKcOKS7_:21816 + 0: 606 + 12: _ZN9oceanbase6common8ObString10assign_ptrEPKci:1768286 + 2: 76882 + 3: 76882 + 5: 76882 + 16: _ZN9oceanbase6common8ObString10assign_ptrEPKci:16362 + 2: 606 + 3: 606 + 5: 606 + 19: _ZN9oceanbase6common8ObString10assign_ptrEPKci:7272 + 3: 606 + 8: _ZNK9oceanbase6common5ObObj18get_collation_typeEv:328868 + 0: _ZNK9oceanbase6common9ObObjMeta18get_collation_typeEv:328868 + 0: 82217 + 13.1: _ZNK9oceanbase6common5ObObj18get_collation_typeEv:225717 + 0: _ZNK9oceanbase6common9ObObjMeta18get_collation_typeEv:225717 + 0: 75239 + 19: _ZNK9oceanbase6common8ObString6lengthEv:4242 + 0: 606 + 28: _ZNK9oceanbase6common5ObObj18get_collation_typeEv:2424 + 0: _ZNK9oceanbase6common9ObObjMeta18get_collation_typeEv:2424 + 0: 606 + 28.1: _ZN9oceanbase6common8ObString3ptrEv:2424 + 0: 606 + 33: _ZN9oceanbase6common14ObCharsetUtils13get_const_strENS0_15ObCollationTypeEi:39390 + 3.2: 606 + 4.1: 606 + 5: 606 + 6: 606 + 34.1: _ZNK9oceanbase6common8ObString6lengthEv:3636 + 0: 606 + 35: _ZNK9oceanbase6common5ObObj18get_collation_typeEv:3636 + 0: _ZNK9oceanbase6common9ObObjMeta18get_collation_typeEv:3636 + 0: 606 + 39: _ZNK9oceanbase6common5ObObj18get_collation_typeEv:7878 + 0: _ZNK9oceanbase6common9ObObjMeta18get_collation_typeEv:7878 + 0: 606 + 65: _ZNK9oceanbase6common5ObObj8get_typeEv:1212 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:1212 + 0: 606 + 65.1: _ZN9oceanbase6common5ObObj10set_stringENS0_9ObObjTypeEPKci:77568 + 4: 606 + 5: 606 + 2: _ZN9oceanbase6common9ObObjMeta8set_typeERKNS0_9ObObjTypeE:68478 + 3: 606 + 13: 606 + 4: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:3636 + 0: 606 + 8: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:4848 + 0: 606 + 11: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:3636 + 0: 606 + 12.1: _ZN9oceanbase6common17ob_is_string_typeENS0_9ObObjTypeE:11514 + 0: 606 + 0: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:5454 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:5454 + 2: 606 + 17: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:4848 + 0: 606 + 3: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:2424 + 0: 606 + 66: _ZN9oceanbase6common5ObObj18set_collation_typeERKNS0_15ObCollationTypeE:8484 + 0: 606 + 0: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:4848 + 0: 606 +_ZN9oceanbase6common7ObLatch6rdlockEjl:21046884:56767 + 3: 53898 + 4: 53898 + 7: 53898 + 7.1: 0 + 7.3: 0 + 8: 53898 + 8.1: 0 + 8.3: 0 + 9: 55012 + 9.3: 62410 + 17.1: 8 + 21: 62410 + 7.2: _ZN9oceanbase6common7ObLatch12LowTryRDLockC2Eb:0 + 0: 0 + 8.2: _ZN9oceanbase6common7ObLatch12LowTryRDLockC2Eb:0 + 0: 0 + 9.3: _ZN9oceanbase6common7ObLatch8low_lockINS1_12LowTryRDLockEEEijljjRT_S5_:12739018 + 8: 53898 + 16: 53898 + 17: 53898 + 22: 0 + 23.1: 0 + 25.1: 0 + 27.1: 1111 + 27.2: 53898 + 27.3: 53898 + 28: 55108 + 29: 55282 + 33: 1111 + 35: 1111 + 37: 57106 + 41.1: 57106 + 43: 57105 + 45: 1 + 47: 0 + 48: 0 + 53: 1 _ZN9oceanbase6common16ObWaitEventGuardC1Elmlllb:1 + 54: 1 + 57: 1 + 60.1: 0 + 60.2: 0 + 68.1: 0 + 73.3: 0 + 73.4: 0 + 76.1: 62410 _ZN9oceanbase6common20ObDiagnoseTenantInfo23get_local_diagnose_infoEv:60966 + 76.2: 0 + 76.3: 0 + 76.4: 0 + 76.6: 0 + 76.14: 0 + 78: 62410 + 29: _ZN9oceanbase6common7ObLatch12LowTryRDLockclEPVjjjRb:3065609 + 4: 55108 + 7: 55108 + 7.1: 55012 + 8: 53989 + 10: 53989 + 15: 0 + 16.1: 0 + 21: 1095 + 59: _ZN9oceanbase6common10ObWaitProcC2ERNS0_7ObLatchEj:0 + 1: 0 + 2: 0 + 3: 0 + 4: 0 + 0: _ZN9oceanbase6common11ObDLinkBaseINS0_10ObWaitProcEEC2Ev:0 + 1: 0 + 60: _ZN9oceanbase6common16ObLatchWaitQueue12get_instanceEv:0 + 2: 0 + 2.1: 0 + 2.3: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common16ObLatchWaitQueueC2Ev:0 + 1.2: 0 + 2: 0 + 1.1: _ZN9oceanbase6common16ObLatchWaitQueue13ObLatchBucketC2Ev:0 + 0: _ZN9oceanbase6common7ObDListINS0_10ObWaitProcEEC2Ev:0 + 2: 0 + 3: 0 + 4: 0 + 65463: _ZN9oceanbase6common11ObDLinkBaseINS0_10ObWaitProcEEC2Ev:0 + 2: 0 + 0.1: _ZN9oceanbase6common12ObLatchMutexC2Ev:0 + 1: 0 + 1: _ZN9oceanbase3lib7ObFutexC2Ev:0 + 1: 0 +_ZN9oceanbase7storage19ObSSTableRowScanner18inner_get_next_rowERPKNS_12blocksstable10ObDatumRowE:20037059:101699 + 1: 98975 + 2: 98975 + 3: 98975 + 4: 1216 + 5.1: 1216 + 7.1: 2183 + 8: 111081 _ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher8prefetchEv:102384 + 9.1: 1220 + 10.1: 111081 + 11: 1317 + 12: 1317 + 13: 1317 + 17: 1220 + 18.1: 1220 + 20.1: 332 + 22: 106596 + 22.1: 98863 _ZN9oceanbase7storage19ObSSTableRowScanner9fetch_rowERNS0_19ObSSTableReadHandleERPKNS_12blocksstable10ObDatumRowE:99566 + 24: 2228 + 24.1: 2183 + 25: 2183 + 27: 2183 + 29.1: 1216 + 36.1: 106770 + 38: 106770 + 38.1: 1216 + 39: 106770 + 40: 1216 + 41.1: 1216 + 43.1: 111780 + 43.2: 1216 + 43.3: 1216 + 43.4: 1216 + 43.6: 1216 + 43.7: 1216 + 48: 112484 + 50: 319 + 14: _ZN9oceanbase7storage15ObBlockRowStore15reset_blockscanEv:1914 + 0: 319 + 20.1: _ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher9read_waitEv:156079 + 2: 110061 + 3: 332 + 4: 332 + 5: 332 + 3: _ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher21prefetching_range_idxEv:26853 + 2: 332 + 2.1: 319 + 3: _ZN9oceanbase6common16ObFixedArrayImplINS_7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandleENS0_12ObIAllocatorEEixEl:2324 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandleEE2atEl:2324 + 6: 332 + 3.1: _ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandle25current_block_read_handleEv:14276 + 2: 332 + 3: 332 + 3.2: _ZNK9oceanbase12blocksstable16ObMicroIndexInfo9range_idxEv:4980 + 2: 332 + 4: _ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher19current_read_handleEv:6308 + 1: 332 + 1: _ZN9oceanbase6common16ObFixedArrayImplINS_7storage19ObSSTableReadHandleENS0_12ObIAllocatorEEixEl:2324 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_7storage19ObSSTableReadHandleEE2atEl:2324 + 6: 332 + 22: _ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher19current_read_handleEv:2672621 + 1: 98863 + 65522.1: 332 + 1: _ZN9oceanbase6common16ObFixedArrayImplINS_7storage19ObSSTableReadHandleENS0_12ObIAllocatorEEixEl:1482945 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_7storage19ObSSTableReadHandleEE2atEl:1482945 + 6: 98863 + 24: _ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher21prefetching_range_idxEv:130563 + 2: 2228 + 2.1: 2183 + 3: _ZN9oceanbase6common16ObFixedArrayImplINS_7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandleENS0_12ObIAllocatorEEixEl:8540 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandleEE2atEl:8540 + 6: 1220 + 3.1: _ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandle25current_block_read_handleEv:53680 + 2: 1220 + 3: 1220 + 3.2: _ZNK9oceanbase12blocksstable16ObMicroIndexInfo9range_idxEv:20740 + 2: 1220 + 38: _ZNK9oceanbase12blocksstable12ObDmlRowFlag12is_not_existEv:747390 + 2: 106770 + 43.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:560544 + 2: 108560 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:112626 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:447120 + 2: 111780 +_ZN9oceanbase3sql17ObFastParserMysql18process_identifierEb:19870722:33047 + 1: 31431 + 2: 31431 + 3: 31431 + 4: 31431 + 6: 31431 + 7: 31431 + 8: 31431 + 11.2: 1 _ZN9oceanbase3sql16ObFastParserBase31process_identifier_begin_with_tERb:1 + 11.4: 0 + 18: 1 + 19: 1 + 20.2: 1 + 20.4: 1 + 27.2: 0 + 27.4: 0 + 34.2: 0 + 34.4: 0 + 36.2: 265 + 36.4: 0 + 36.10: 260 _ZN9oceanbase3sql16ObFastParserBase12process_hintEv:284 + 42.2: 3598 + 42.4: 0 + 47.2: 526 + 47.4: 0 + 47.10: 505 _ZN9oceanbase3sql16ObFastParserBase12process_hintEv:511 + 52.2: 247 + 52.4: 0 + 52.10: 227 _ZN9oceanbase3sql16ObFastParserBase12process_hintEv:228 + 57.1: 1 _ZN9oceanbase3sql16ObFastParserBase8ObRawSql11strncasecmpEPKcl:1 + 57.2: 0 + 57.4: 0 + 57.10: 0 + 62.1: 0 + 62.2: 0 + 62.4: 0 + 62.10: 0 + 67.2: 2 _ZN9oceanbase3sql16ObFastParserBase31process_identifier_begin_with_lERb:2 + 67.4: 0 + 72: 1436 + 73: 1436 + 73.1: 0 + 74.1: 0 + 80: 0 + 81: 0 + 81.1: 0 + 82.1: 0 + 91: 30996 + 92: 30996 + 93: 30996 + 94: 30996 + 95.1: 2 + 96: 80423 + 100: 32967 + 7: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:911499 + 2: 31431 + 2.1: 31431 + 5: 31431 + 16: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql11strncasecmpEPKcl:400022 + 2: 3699 + 2: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql11strncasecmpElPKcl:377828 + 6: 14796 + 9: 14796 + 4: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:51786 + 2: 3699 + 5: 3699 + 12: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:168 + 2: 4 + 5: 4 + 17: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:20 + 2: 1 + 3: 1 + 32: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql11strncasecmpEPKcl:49793 + 2: 493 + 2: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql11strncasecmpElPKcl:45356 + 6: 1479 + 9: 1479 + 4: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:5423 + 2: 493 + 5: 493 + 12: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:0 + 2: 0 + 5: 0 + 33: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:0 + 2: 0 + 3: 0 + 36.1: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql11strncasecmpEPKcl:285593 + 2: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql11strncasecmpElPKcl:285593 + 6: 2465 + 9: 2465 + 4: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:5423 + 2: 493 + 5: 493 + 12: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:72800 + 2: 1300 + 5: 1300 + 36.2: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:4420 + 2: 260 + 3: 0 + 42.1: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql11strncasecmpEPKcl:4330051 + 2: 8689 + 2: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql11strncasecmpElPKcl:4277917 + 6: 43445 + 9: 43445 + 4: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:121646 + 2: 8689 + 5: 8689 + 12: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:1032220 + 2: 20285 + 5: 20285 + 42.2: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:60571 + 2: 3563 + 3: 0 + 42.10: _ZN9oceanbase3sql16ObFastParserBase12process_hintEv:659444 + 2: 3563 + 7: 0 + 9: 0 + 12.1: 0 + 17: 0 + 21: 0 + 22.1: 0 + 26: 3598 + 4: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:81949 + 2: 3563 + 2.1: 3563 + 5: 3563 + 5: _ZN9oceanbase3sql16ObFastParserBase19is_multi_byte_spaceEPKcllRl:114016 + 0: 3563 + 0.2: 3563 + 0.4: 0 + 0.5: 0 + 0.7: 0 + 0.14: 0 + 0.2: _ZN9oceanbase3sql16ObFastParserBase8is_spaceEc:81949 + 2: 3563 + 2.1: 3563 + 2: _ZN9oceanbase3sql16ObFastParserBase13is_valid_charEc:10689 + 2: 3563 + 0.8: _ZN9oceanbase3sql16ObFastParserBase24is_utf8_multi_byte_spaceEPKcl:0 + 3: 0 + 4: 0 + 5: 0 + 0.15: _ZN9oceanbase3sql16ObFastParserBase23is_gbk_multi_byte_spaceEPKcl:0 + 3: 0 + 4: 0 + 6: _ZN9oceanbase3sql16ObFastParserBase13is_hint_beginEl:427744 + 3: 3563 + 6: 3564 + 9: 3620 + 10.1: 3620 + 10.3: 3620 + 11: 0 + 12: 0 + 13.1: 0 + 14: 0 + 16: 0 + 17: 0 + 18.1: 0 + 19: 0 + 26: 0 + 31: 0 + 33: 0 + 33.1: 0 + 38: 0 + 39.1: 0 + 40: 0 + 43: 0 + 5.1: _ZN9oceanbase3sql16ObFastParserBase19is_multi_byte_spaceEPKcllRl:241001 + 0: 3564 + 0.2: 7215 + 0.3: 3564 + 0.4: 3620 + 0.5: 0 + 0.7: 0 + 0.8: 0 + 0.9: 0 + 0.14: 0 + 0.15: 0 + 0.16: 0 + 0.2: _ZN9oceanbase3sql16ObFastParserBase8is_spaceEc:43290 + 2: 7215 + 2.1: 7215 + 0.8: _ZN9oceanbase3sql16ObFastParserBase24is_utf8_multi_byte_spaceEPKcl:0 + 4: 0 + 5: 0 + 0.15: _ZN9oceanbase3sql16ObFastParserBase23is_gbk_multi_byte_spaceEPKcl:0 + 4: 0 + 8: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:32580 + 2: 3620 + 9: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:18100 + 2: 0 + 2.1: 3620 + 11: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:0 + 2.1: 0 + 26: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql13is_search_endEv:0 + 2: 0 + 2.1: 0 + 30: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:0 + 2.1: 0 + 5: 0 + 31: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:0 + 2.1: 0 + 5: 0 + 34: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:0 + 2: 0 + 2.1: 0 + 5: 0 + 35: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:0 + 2: 0 + 2.1: 0 + 5: 0 + 42: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:0 + 2: 0 + 2.1: 0 + 5: 0 + 43: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:0 + 2: 0 + 2.1: 0 + 10: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4peekEv:0 + 2: 0 + 5: 0 + 11: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:0 + 2: 0 + 12.3: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql13is_search_endEv:0 + 2: 0 + 13: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEv:0 + 0: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:0 + 2: 0 + 3: 0 + 4: 0 + 7: 0 + 8: 0 + 14: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4peekEv:0 + 2: 0 + 5: 0 + 16: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql13is_search_endEv:0 + 2: 0 + 18: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEv:0 + 0: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:0 + 2: 0 + 3: 0 + 19: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEv:0 + 0: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:0 + 2: 0 + 3: 0 + 4: 0 + 7: 0 + 47.1: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql11strncasecmpEPKcl:551965 + 2: 505 + 2: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql11strncasecmpElPKcl:548935 + 6: 2525 + 9: 2525 + 4: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:6565 + 2: 505 + 5: 505 + 12: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:141400 + 2: 2525 + 5: 2525 + 47.2: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:8585 + 2: 505 + 3: 0 + 52.1: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql11strncasecmpEPKcl:998326 + 2: 4988 + 2: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql11strncasecmpElPKcl:968398 + 6: 24940 + 9: 24940 + 4: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:69832 + 2: 4988 + 5: 4988 + 12: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:81270 + 2: 2400 + 5: 2400 + 52.2: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:3859 + 2: 227 + 3: 0 + 57.2: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:0 + 2: 0 + 3: 0 + 62.2: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:0 + 2: 0 + 3: 0 + 72: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:31592 + 2: 1436 + 5: 1436 + 80: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:0 + 2: 0 + 91: _ZN9oceanbase3sql16ObFastParserBase14is_valid_tokenEv:123984 + 2: 30996 + 95.1: _ZN9oceanbase3sql16ObFastParserBase19is_identifier_flagsEl:6095474 + 4: 111982 + 5: 80423 + 6.1: 31983 + 11.1: 4452 + 3: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:2973310 + 2: 112495 + 2.1: 112495 + 5: 111982 + 4: _ZN9oceanbase3sql16ObFastParserBase18is_identifier_charEc:1903694 + 3: 111982 + 4: 111982 + 4.1: 0 + 4.2: 111982 + 6.1: _ZN9oceanbase3sql16ObFastParserBase8is_spaceEc:159935 + 2.1: 31983 + 1824: 2 + 12: _ZN9oceanbase3sql16ObFastParserBase12is_utf8_charEl:330104 + 3: 4548 + 4: 0 + 5: 0 + 12: 4048 + 14: 0 + 22.1: 4048 + 32.1: 4554 + 34: 6 + 5: _ZN9oceanbase3sql16ObFastParserBase24is_utf8_multi_byte_spaceEPKcl:0 + 3: 0 + 4: 0 + 5: 0 + 6: _ZN9oceanbase3sql16ObFastParserBase24is_utf8_multi_byte_commaEPKcl:0 + 4: 0 + 5: 0 + 8: _ZN9oceanbase3sql16ObFastParserBase36is_utf8_multi_byte_right_parenthesisEPKcl:0 + 6: 0 + 12: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:90008 + 2: 4548 + 2.1: 4548 + 5: 4048 + 14: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:0 + 2.1: 0 + 5: 0 + 14.1: _ZN9oceanbase3sql16ObFastParserBase4is_uEc:0 + 2: 0 + 3.1: 0 + 24: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:0 + 2: 0 + 5: 0 + 24.1: _ZN9oceanbase3sql16ObFastParserBase4is_uEc:0 + 2: 0 + 34: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:486 + 2: 6 + 2.1: 6 + 5: 6 + 34.1: _ZN9oceanbase3sql16ObFastParserBase4is_uEc:54 + 2: 6 + 14: _ZN9oceanbase3sql16ObFastParserBase11is_gbk_charEl:274 + 3: 2 + 4: 2 + 5: 2 + 6: 2 + 10.1: 2 + 10.2: 2 + 5: _ZN9oceanbase3sql16ObFastParserBase23is_gbk_multi_byte_spaceEPKcl:28 + 3: 2 + 6: _ZN9oceanbase3sql16ObFastParserBase23is_gbk_multi_byte_commaEPKcl:28 + 4: 2 + 10.1: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:52 + 2: 2 + 2.1: 2 + 5: 2 + 10.2: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:28 + 2.1: 2 + 5: 2 + 10.3: _ZN9oceanbase3sql16ObFastParserBase6is_gb1Ec:6 + 2: _ZN9oceanbase3sql16ObFastParserBase13is_valid_charEc:6 + 2: 2 + 10.4: _ZN9oceanbase3sql16ObFastParserBase6is_gb2Ec:18 + 2: _ZN9oceanbase3sql16ObFastParserBase13is_valid_charEc:18 + 2: 2 +_ZN9oceanbase8keybtree13BtreeIterator8get_nextERNS_8memtable20ObStoreRowkeyWrapperERPNS2_9ObMvccRowE:19796211:37356 + 1: 36053 + 2: 36053 + 4: 36053 + 6.2: 34142 + 8.2: 975 + 13: 1 + 14: 35112 + 15: 35112 + 17.1: 32 + 18: 32 + 21.2: 36096 + 6.1: _ZN9oceanbase8keybtree13BtreeIterator7KVQueue3popERNS0_7BtreeKVE:2475423 + 3: 36053 + 6: 34142 + 6: _ZN9oceanbase8keybtree13BtreeIterator7KVQueue3idxEl:1024260 + 0: 34142 + 8.1: _ZN9oceanbase8keybtree13BtreeIterator10scan_batchEv:14361444 + 3: 1933 + 5.1: 947 + 5.2: 905 + 11: 39665 _ZN9oceanbase8keybtree8Iterator8get_nextERNS_8memtable20ObStoreRowkeyWrapperERPNS2_9ObMvccRowE:40070 + 11.1: 38911 + 12: 975 + 13.1: 975 + 20: 37883 + 21: 37883 + 24: 975 + 26: 975 + 27: 1006 + 5.1: _ZN9oceanbase8keybtree8Iterator13set_key_rangeENS_8memtable20ObStoreRowkeyWrapperEbS3_bl:9842698 + 4: 947 + 7.1: 947 + 11: 905 + 12: 905 + 13: 905 + 14: 905 + 15: 905 + 16: 905 + 17: 905 + 5: _ZN9oceanbase8keybtree10BaseHandle11acquire_refEv:87339 + 3: 947 + 3: _ZN9oceanbase6common6QClock14enter_criticalEv:73134 + 2: 947 + 3.1: 947 + 4: 1 + 5: 1 + 6: 1 + 7: 1 + 7.1: 1 + 7.3: 1 + 7.4: 1 + 8.1: 1 + 1: _ZN9oceanbase6common6QClock11get_slot_idEv:33204 + 0: _ZN9oceanbase6common8get_itidEv:33204 + 4: 947 + 5: 1 + 6: 1 + 8: 1 + 3.1: _ZN9oceanbase6common6QClock6locateEm:8523 + 0: 947 + 3.3: _ZN9oceanbase6common6QClock9get_clockEv:2844 + 0: 947 + 3.4: _ZN9oceanbase6common6QClock9ClockSlot9set_clockEm:16124 + 0: 947 + 7.1: _ZN9oceanbase8keybtree10ScanHandle9find_pathEPNS0_9BtreeNodeENS_8memtable20ObStoreRowkeyWrapperEl:9397862 + 8: 947 + 9.1: 4563 + 9.3: 4563 + 10: 5486 + 12.2: 5596 + 15: 5625 + 21.1: 5625 + 22: 1045 + 25: 1043 + 7: _ZN9oceanbase8keybtree11MultibitSet5resetEv:7576 + 0: 947 + 12.4: _ZN9oceanbase8keybtree9BtreeNode8find_posERNS0_10CompHelperENS_8memtable20ObStoreRowkeyWrapperERbRiPNS0_11MultibitSetE:8606136 + 2: 5459 + 2: _ZN9oceanbase8keybtree9BtreeNode25binary_search_upper_boundERNS0_10CompHelperENS_8memtable20ObStoreRowkeyWrapperERbRiPNS0_11MultibitSetE:8567923 + 9: 5459 + 16.1: 20945 + 17: 19235 + 18: 19235 + 19: 19235 + 19.1: 19118 + 19.2: 20725 + 20.1: 1 + 20.5: 1 + 20.10: 1 + 21.1: 20725 + 23: 20725 + 24.1: 21065 + 9: _ZNK9oceanbase8keybtree9BtreeNode7is_leafEv:38213 + 0: 5459 + 10: _ZN9oceanbase8keybtree11MultibitSet4loadERKS1_:9603 + 0: 873 + 13: _ZNK9oceanbase8keybtree9BtreeNode4sizeEPNS0_11MultibitSetE:31090 + 2.3: 5181 + 19: _ZN9oceanbase8keybtree9BtreeNode7get_keyEiPNS0_11MultibitSetE:547970 + 2: 19118 + 2: _ZNK9oceanbase8keybtree9BtreeNode12get_real_posEiPNS0_11MultibitSetE:509734 + 2: 19235 + 3.3: 3075 + 2: _ZNK9oceanbase8keybtree9BtreeNode7is_leafEv:192350 + 0: 19235 + 3.1: _ZNK9oceanbase8keybtree11MultibitSet2atEi:206035 + 5: 3075 + 5.2: 3075 + 5.3: 1 + 7: 3075 + 4: _ZN9oceanbase8keybtree11MultibitSet4loadERKS1_:9225 + 0: 3075 + 19.1: _ZNK9oceanbase8keybtree10CompHelper7compareENS_8memtable20ObStoreRowkeyWrapperES3_Ri:4722092 + 2: _ZNK9oceanbase8memtable20ObStoreRowkeyWrapper7compareERKS1_Ri:4722092 + 0.1: _ZNK9oceanbase6common13ObStoreRowkey7compareERKS1_Ri:4722092 + 0: _ZNK9oceanbase6common8ObRowkey7compareERKS1_Ri:4722092 + 3: 19118 + 4: 19118 + 5: 1 + 8: 20462 + 9: 418 + 43.1: 169 + 7: _ZNK9oceanbase6common8ObRowkey14compare_prefixERKS1_Ri:3970022 + 5: 19118 + 8: 19118 + 11: 19118 + 13: 19118 + 14.1: 19118 + 16: 19752 _ZNK9oceanbase6common5ObObj32check_collation_free_and_compareERKS1_Ri:21097 + 19: 1 + 7: _ZNK9oceanbase6common8ObRowkey10is_min_rowEv:802993 + 4: 19118 + 4.1: 19118 + 9: 19118 + 5: _ZNK9oceanbase6common5ObObj12is_min_valueEv:191195 + 2: 19118 + 2.1: 1 + 8: _ZNK9oceanbase6common8ObRowkey10is_max_rowEv:440511 + 4: 1 + 4.1: 19118 + 4.2: 32 + 5: 32 + 9: 19118 + 5: _ZNK9oceanbase6common5ObObj12is_max_valueEv:172205 + 2: 19118 + 2.1: 32 + 9: _ZNK9oceanbase6common8ObRowkey10is_min_rowEv:745650 + 4: 19118 + 4.1: 19118 + 5: 1 + 9: 19118 + 5: _ZNK9oceanbase6common5ObObj12is_min_valueEv:191184 + 2: 19118 + 2.1: 1 + 10: _ZNK9oceanbase6common8ObRowkey10is_max_rowEv:364055 + 4: 1 + 4.1: 19118 + 4.2: 32 + 5: 32 + 9: 19118 + 5: _ZNK9oceanbase6common5ObObj12is_max_valueEv:172206 + 2: 19118 + 2.1: 32 + 13: _ZSt3minIlERKT_S2_S2_:191180 + 5: 19118 + 20.1: _ZN9oceanbase6common8ObLogger10get_loggerEv:548 + 2: 1 + 2.1: 1 + 2.2: 1 + 2.3: 1 + 2.4: 32 + 2.6: 1 + 20.6: _ZN9oceanbase6common7ObLogKVIRKNS_8memtable20ObStoreRowkeyWrapperELb0EEC2EPKcS5_:35 + 0: 1 + 20.7: _ZN9oceanbase8keybtree9BtreeNode7get_keyEiPNS0_11MultibitSetE:128 + 2: 1 + 2: _ZNK9oceanbase8keybtree9BtreeNode12get_real_posEiPNS0_11MultibitSetE:103 + 2: 1 + 3.3: 1 + 2: _ZNK9oceanbase8keybtree9BtreeNode7is_leafEv:7 + 0: 1 + 3.1: _ZNK9oceanbase8keybtree11MultibitSet2atEi:81 + 5: 1 + 5.2: 1 + 5.3: 1 + 7: 1 + 4: _ZN9oceanbase8keybtree11MultibitSet4loadERKS1_:3 + 0: 1 + 20.9: _ZN9oceanbase6common7ObLogKVIRKNS_8memtable20ObStoreRowkeyWrapperELb0EEC2EPKcS5_:28 + 0: 1 + 19: _ZN9oceanbase8keybtree4Path4pushEPNS0_9BtreeNodeEi:180000 + 3: 5625 + 6: 5625 + 7: 5625 + 8: 5625 + 21.1: _ZNK9oceanbase8keybtree9BtreeNode7is_leafEv:39375 + 0: 5625 + 22: _ZNK9oceanbase8keybtree11MultibitSet4sizeEv:3135 + 0: 1045 + 23.1: _ZN9oceanbase8keybtree11MultibitSet4loadERKS1_:238 + 0: 26 + 25: _ZN9oceanbase8keybtree4Path12set_is_foundEb:6258 + 0: 1043 + 28: _ZNK9oceanbase8keybtree9BtreeNode7get_valEiPNS0_11MultibitSetE:50193 + 2: _ZNK9oceanbase8keybtree9BtreeNode16get_val_with_tagEiPNS0_11MultibitSetE:50193 + 2: 4563 + 10: _ZNK9oceanbase8keybtree10CompHelper7compareENS_8memtable20ObStoreRowkeyWrapperES3_Ri:244822 + 2: _ZNK9oceanbase8memtable20ObStoreRowkeyWrapper7compareERKS1_Ri:244822 + 0.1: _ZNK9oceanbase6common13ObStoreRowkey7compareERKS1_Ri:244822 + 0: _ZNK9oceanbase6common8ObRowkey7compareERKS1_Ri:244822 + 3: 1043 + 4: 1043 + 5: 1043 + 8: 905 + 9: 32 + 7: _ZNK9oceanbase6common8ObRowkey14compare_prefixERKS1_Ri:182720 + 5: 1043 + 8: 1043 + 11: 1043 + 13: 1043 + 14.1: 1043 + 16: 1054 _ZNK9oceanbase6common5ObObj32check_collation_free_and_compareERKS1_Ri:1120 + 19: 1 + 7: _ZNK9oceanbase6common8ObRowkey10is_min_rowEv:32365 + 4: 1043 + 4.1: 1043 + 5: 1 + 9: 1043 + 5: _ZNK9oceanbase6common5ObObj12is_min_valueEv:10434 + 2: 1043 + 2.1: 1 + 8: _ZNK9oceanbase6common8ObRowkey10is_max_rowEv:25825 + 4: 1 + 4.1: 1043 + 4.2: 32 + 5: 32 + 9: 1043 + 5: _ZNK9oceanbase6common5ObObj12is_max_valueEv:9530 + 2: 1043 + 2.1: 32 + 9: _ZNK9oceanbase6common8ObRowkey10is_min_rowEv:40722 + 4: 1043 + 4.1: 1043 + 5: 1 + 9: 1043 + 5: _ZNK9oceanbase6common5ObObj12is_min_valueEv:10434 + 2: 1043 + 2.1: 1 + 10: _ZNK9oceanbase6common8ObRowkey10is_max_rowEv:20624 + 4: 1 + 4.1: 1043 + 4.2: 32 + 5: 32 + 9: 1043 + 5: _ZNK9oceanbase6common5ObObj12is_max_valueEv:9531 + 2: 1043 + 2.1: 32 + 13: _ZSt3minIlERKT_S2_S2_:10430 + 5: 1043 + 9: _ZN9oceanbase8keybtree7BtreeKVC2Ev:9955 + 0: _ZN9oceanbase8memtable20ObStoreRowkeyWrapperC2Ev:9955 + 0: 905 + 13: _ZNK9oceanbase8keybtree13BtreeIterator7KVQueue4sizeEv:311288 + 0: 38911 + 17: _ZN9oceanbase8keybtree13BtreeIterator7KVQueue4pushERKNS0_7BtreeKVE:2651810 + 3: 37883 + 6: 37883 + 6: _ZN9oceanbase8keybtree13BtreeIterator7KVQueue3idxEl:1136490 + 0: 37883 + 24: _ZN9oceanbase8keybtree8Iterator5resetEv:87735 + 3: 975 + 4: 975 + 11: 975 + 2: _ZN9oceanbase8keybtree10ScanHandle5resetEv:37035 + 2: _ZN9oceanbase8keybtree10BaseHandle11release_refEv:22410 + 2: 975 + 3: 975 + 2: _ZN9oceanbase6common6QClock14leave_criticalEm:10582 + 1: 975 + 2: _ZN9oceanbase6common6QClock6locateEm:416 + 0: 32 + 2.1: _ZN9oceanbase6common6QClock9ClockSlot11clear_clockEv:416 + 0: 32 + 3: _ZN9oceanbase8keybtree4Path5resetEv:14625 + 2: 975 + 3: 975 + 5: _ZN9oceanbase8memtable20ObStoreRowkeyWrapperC2Ev:19500 + 0: 975 + 10.1: _ZN9oceanbase8keybtree13BtreeIterator7KVQueue3popERNS0_7BtreeKVE:60450 + 3: 975 + 6: 975 + 6: _ZN9oceanbase8keybtree13BtreeIterator7KVQueue3idxEl:29250 + 0: 975 +_ZN9oceanbase3sql17ObFastParserMysql16parse_next_tokenEv:18348476:4649 + 1: 4571 + 2: 4571 + 3.1: 48588 + 3.3: 46413 + 5: 1 + 6: 46543 + 7: 46543 + 9.2: 0 + 9.4: 0 + 13.2: 6584 _ZN9oceanbase3sql16ObFastParserBase14process_numberEb:6609 + 13.4: 0 + 17: 0 + 18.2: 0 + 18.4: 0 + 20: 0 + 27.2: 787 + 27.4: 17 + 31.2: 0 + 31.4: 0 + 38: 0 + 38.1: 0 + 40: 0 + 43.1: 0 + 43.3: 0 + 47.2: 0 + 47.4: 0 + 53: 1 + 55.1: 19 + 61: 0 + 63: 0 + 64: 0 + 65: 0 + 73.2: 0 + 73.4: 0 + 76: 0 + 82: 1 + 82.1: 0 + 83: 0 + 84: 0 + 87: 1 + 94: 0 + 96: 0 + 99: 0 + 103.2: 0 + 103.4: 0 + 108: 0 + 110.2: 0 + 110.4: 0 + 112: 0 + 120: 0 + 120.1: 0 + 123.2: 0 + 123.3: 0 + 124: 0 + 139: 1 + 140: 32240 + 141: 32240 + 142.2: 32240 + 142.3: 0 + 142.5: 33557 _ZN9oceanbase3sql17ObFastParserMysql18process_identifierEb:33047 + 142.7: 0 + 144.1: 7257 + 145: 7257 + 148: 0 + 149: 0 + 150.1: 0 + 155: 7220 + 160: 4406 + 164: 4447 + 3.2: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql13is_search_endEv:1091666 + 2: 50558 + 2.1: 46413 + 4: _ZN9oceanbase3sql16ObFastParserBase21process_leading_spaceEv:3532668 + 3.3: 1 + 4: 30349 + 5: 30349 + 75.4: 271 + 3.2: _ZN9oceanbase3sql16ObFastParserBase19is_multi_byte_spaceEPKcllRl:2330159 + 0.2: 76403 + 0.4: 46484 + 0.5: 1 + 0.7: 1 + 0.8: 1 + 0.14: 1 + 0.15: 1 + 0.2: _ZN9oceanbase3sql16ObFastParserBase8is_spaceEc:993239 + 2: 76403 + 2.1: 76403 + 0.8: _ZN9oceanbase3sql16ObFastParserBase24is_utf8_multi_byte_spaceEPKcl:11 + 4: 1 + 6: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:516148 + 2: 30349 + 3: 1 + 5: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:1166023 + 2: 46543 + 2.1: 46543 + 5: 46543 + 17: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4peekEv:0 + 2: 0 + 5: 0 + 17.1: _ZN9oceanbase3sql16ObFastParserBase8is_digitEc:0 + 2: 0 + 2.1: 0 + 21: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEv:0 + 0: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:0 + 2: 0 + 3: 0 + 27.2: _ZN9oceanbase3sql17ObFastParserMysql14process_stringEc:3401673 + 2: 752 + 7: 752 + 8: 752 + 8.1: 513 + 9: 513 _ZN9oceanbase6common16ObArenaAllocator5allocEl:501 + 10: 0 + 11.1: 0 + 13.1: 0 + 13.3: 747 + 16.1: 77132 + 19: 733 + 20: 779 + 21: 779 + 22: 780 + 24: 780 + 27: 0 + 29: 0 + 30: 0 + 31: 0 + 31.1: 0 + 32: 0 + 34: 0 + 36.1: 780 + 37: 780 + 39: 0 + 43: 781 + 49: 0 + 50: 0 + 52: 0 + 53: 0 + 54: 0 + 55.1: 0 + 60: 0 + 62: 0 + 63: 0 + 64: 0 + 66: 0 + 72: 785 + 74: 786 + 75: 0 + 76: 0 + 77.1: 0 + 80: 786 + 82: 786 + 83: 786 + 84: 786 + 86: 786 _ZN9oceanbase6common16ObArenaAllocator5allocEl:781 + 87: 0 + 88.1: 0 + 91: 759 + 92: 0 + 93: 0 + 95: 759 + 96: 759 + 97: 759 + 98: 759 + 99: 782 + 102: 782 + 103: 782 + 109: 787 + 13.2: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql13is_search_endEv:16434 + 2: 747 + 2.1: 747 + 14: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEv:14940 + 0: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:14940 + 2: 747 + 3: 0 + 4: 0 + 7: 747 + 8: 747 + 17: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEv:699637 + 0: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:699637 + 2: 77132 + 3: 22 + 4: 22 + 7: 77132 + 21: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql3ptrEl:22591 + 2: 779 + 5: 779 + 37: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4peekEv:21060 + 2: 780 + 5: 780 + 38: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEv:0 + 0: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:0 + 2: 0 + 3: 0 + 42: _ZN9oceanbase3sql16ObFastParserBase13is_whitespaceEl:87510 + 3: 780 + 6: 252 + 8: 0 + 11.1: 548 + 13: 0 + 13.1: 0 + 19: 0 + 20: 0 + 21: 0 + 22: 0 + 23.1: 0 + 24: 0 + 27.1: 0 + 28: 0 + 4: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:23400 + 2: 780 + 2.1: 780 + 5: 780 + 5: _ZN9oceanbase3sql16ObFastParserBase19is_multi_byte_spaceEPKcllRl:29711 + 0: 780 + 0.2: 780 + 0.3: 252 + 0.4: 548 + 0.5: 0 + 0.7: 0 + 0.9: 0 + 0.14: 0 + 0.16: 0 + 0.2: _ZN9oceanbase3sql16ObFastParserBase8is_spaceEc:14820 + 2: 780 + 2.1: 780 + 2: _ZN9oceanbase3sql16ObFastParserBase13is_valid_charEc:2340 + 2: 780 + 0.8: _ZN9oceanbase3sql16ObFastParserBase24is_utf8_multi_byte_spaceEPKcl:0 + 4: 0 + 7.1: _ZN9oceanbase3sql16ObFastParserBase19is_multi_byte_spaceEPKcllRl:12600 + 0: 252 + 0.2: 252 + 0.3: 0 + 0.4: 252 + 0.5: 0 + 0.7: 0 + 0.8: 0 + 0.9: 0 + 0.14: 0 + 0.15: 0 + 0.16: 0 + 0.2: _ZN9oceanbase3sql16ObFastParserBase8is_spaceEc:3276 + 2: 252 + 2.1: 252 + 0.8: _ZN9oceanbase3sql16ObFastParserBase24is_utf8_multi_byte_spaceEPKcl:0 + 4: 0 + 5: 0 + 0.15: _ZN9oceanbase3sql16ObFastParserBase23is_gbk_multi_byte_spaceEPKcl:0 + 4: 0 + 12: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:0 + 2: 0 + 5: 0 + 14: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:0 + 2: 0 + 5: 0 + 18: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:0 + 2: 0 + 26: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:0 + 2: 0 + 2.1: 0 + 5: 0 + 28: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:0 + 2: 0 + 2.1: 0 + 5: 0 + 43: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:4810 + 2: 252 + 2.1: 252 + 5: 252 + 61: _ZN9oceanbase3sql16ObFastParserBase8new_nodeERPc10ObItemType:0 + 4: 0 + 3: _ZN9oceanbase3sql16ObFastParserBase17reset_parser_nodeEP10_ParseNode:0 + 4: 0 + 15: 0 + 16: 0 + 18: 0 + 24: 0 + 64: _ZN9oceanbase3sql16ObFastParserBase13parse_strndupEPKcmPc:0 + 2: 0 + 3: 0 + 73: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEv:18853 + 0: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:18853 + 2: 785 + 3: 1 + 90: _ZN9oceanbase3sql16ObFastParserBase8new_nodeERPc10ObItemType:47058 + 4: 759 + 3: _ZN9oceanbase3sql16ObFastParserBase17reset_parser_nodeEP10_ParseNode:38709 + 4: 759 + 15: 759 + 16: 759 + 18: 759 + 24: 759 + 97: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql3ptrEl:16698 + 2: 759 + 2.1: 759 + 5: 759 + 99: _ZN9oceanbase3sql16ObFastParserBase13parse_strndupEPKcmPc:16314 + 2: 759 + 3: 782 + 104: _ZN9oceanbase3sql16ObFastParserBase15lex_store_paramEP10_ParseNodePc:84094 + 3: 782 + 4: 782 + 5: 782 + 8: 536 + 10: 787 + 11: 787 + 31.2: _ZN9oceanbase3sql16ObFastParserBase16process_backtickEv:684 + 2: 0 + 3: 0 + 5.1: 19 + 5.3: 19 + 8: 0 + 9: 0 + 10.1: 0 + 15: 0 + 4: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEv:0 + 0: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:0 + 2: 0 + 7: 0 + 8: 0 + 5.1: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql13is_search_endEv:0 + 2: 0 + 6: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEv:285 + 0: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:285 + 2: 19 + 7: 19 + 2103.5: 19 + 13: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEv:0 + 0: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:0 + 2: 0 + 3: 0 + 37: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEv:0 + 0: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:0 + 2: 0 + 3: 0 + 4: 0 + 7: 0 + 38.1: _ZN9oceanbase3sql16ObFastParserBase19is_multi_byte_spaceEPKcllRl:0 + 0: 0 + 0.2: 0 + 0.4: 0 + 0.5: 0 + 0.7: 0 + 0.14: 0 + 0.2: _ZN9oceanbase3sql16ObFastParserBase8is_spaceEc:0 + 2: 0 + 2.1: 0 + 0.8: _ZN9oceanbase3sql16ObFastParserBase24is_utf8_multi_byte_spaceEPKcl:0 + 4: 0 + 5: 0 + 0.15: _ZN9oceanbase3sql16ObFastParserBase23is_gbk_multi_byte_spaceEPKcl:0 + 4: 0 + 42: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:0 + 2: 0 + 43.1: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql13is_search_endEv:0 + 2: 0 + 44: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEv:0 + 0: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:0 + 2: 0 + 7: 0 + 8: 0 + 54: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEv:8 + 0: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:8 + 2: 1 + 56: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEv:342 + 0: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:342 + 2: 19 + 1215.3: 19 + 61: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4peekEv:0 + 2: 0 + 62: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEv:0 + 0: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:0 + 2: 0 + 3: 0 + 63: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4peekEv:0 + 2: 0 + 66: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:0 + 2: 0 + 3: 0 + 68: _ZN9oceanbase3sql16ObFastParserBase22is_n_continuous_digitsEPKclll:0 + 3: 0 + 6: 0 + 69: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:0 + 7: 0 + 71: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:0 + 2: 0 + 3: 0 + 77: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEv:0 + 0: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:0 + 2: 0 + 85: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:0 + 2: 0 + 88: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEv:3 + 0: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:3 + 2: 1 + 95: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEv:0 + 0: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:0 + 2: 0 + 3: 0 + 97: _ZN9oceanbase3sql16ObFastParserBase27remove_multi_stmt_end_spaceEv:1197 + 6.1: 19 + 6.2: 19 + 6.3: 19 + 6.5: 19 + 8: 0 + 10: 0 + 11: 0 + 6.2: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:380 + 2.1: 19 + 5: 19 + 6.6: _ZN9oceanbase3sql16ObFastParserBase8is_spaceEc:323 + 2: 19 + 2.1: 19 + 9: _ZN9oceanbase3sql16ObFastParserBase19append_no_param_sqlEv:0 + 2: 0 + 4: 0 + 5: 0 + 2: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql3ptrEl:0 + 2: 0 + 108: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4peekEv:0 + 2: 0 + 5: 0 + 108.1: _ZN9oceanbase3sql16ObFastParserBase8is_digitEc:0 + 2: 0 + 2.1: 0 + 109: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEv:0 + 0: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:0 + 2: 0 + 3: 0 + 113: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEv:0 + 0: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:0 + 2: 0 + 3: 0 + 4: 0 + 7: 0 + 118: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4peekEv:0 + 2: 0 + 5: 0 + 120.1: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:0 + 2.1: 0 + 5: 0 + 120.2: _ZN9oceanbase3sql16ObFastParserBase21is_sys_var_first_charEc:0 + 2: 0 + 2.1: 0 + 121: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:0 + 122: _ZN9oceanbase3sql16ObFastParserBase23process_system_variableEb:0 + 2: 0 + 10: 0 + 10.1: 0 + 3: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEv:0 + 0: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:0 + 2: 0 + 4: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:0 + 5: 0 + 10.1: _ZN9oceanbase3sql16ObFastParserBase15is_sys_var_charEc:0 + 2: 0 + 2.1: 0 + 2: _ZN9oceanbase3sql16ObFastParserBase13is_valid_charEc:0 + 2: 0 + 11: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEv:0 + 0: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:0 + 2: 0 + 7: 0 + 8: 0 + 124: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:0 + 2.1: 0 + 5: 0 + 124.1: _ZN9oceanbase3sql16ObFastParserBase21is_sys_var_first_charEc:0 + 2: 0 + 2.1: 0 + 125: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:0 + 127: _ZN9oceanbase3sql16ObFastParserBase23process_system_variableEb:0 + 2: 0 + 6.1: 0 + 6.3: 0 + 3: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEv:0 + 0: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:0 + 2: 0 + 6.1: _ZN9oceanbase3sql16ObFastParserBase15is_sys_var_charEc:0 + 2: 0 + 2.1: 0 + 2: _ZN9oceanbase3sql16ObFastParserBase13is_valid_charEc:0 + 2: 0 + 7: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEv:0 + 0: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:0 + 2: 0 + 130: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEv:0 + 0: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:0 + 2: 0 + 3: 0 + 133: _ZN9oceanbase3sql16ObFastParserBase21process_user_variableEb:0 + 2: 0 + 5: 0 + 6.1: 0 + 10: 0 + 10.1: 0 + 3: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEv:0 + 0: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:0 + 2: 0 + 3: 0 + 4: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:0 + 2: 0 + 5: 0 + 6.1: _ZN9oceanbase3sql16ObFastParserBase16is_user_var_charEc:0 + 3: 0 + 4: 0 + 5: 0 + 5.2: 0 + 4: _ZN9oceanbase3sql16ObFastParserBase13is_valid_charEc:0 + 2: 0 + 7: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEv:0 + 0: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:0 + 2: 0 + 3: 0 + 4: 0 + 7: 0 + 8: 0 + 10.1: _ZN9oceanbase3sql16ObFastParserBase30is_user_var_char_without_quotaEc:0 + 2: 0 + 2.1: 0 + 2: _ZN9oceanbase3sql16ObFastParserBase13is_valid_charEc:0 + 2: 0 + 11: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEv:0 + 0: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:0 + 2: 0 + 7: 0 + 8: 0 + 138: _ZN9oceanbase3sql16ObFastParserBase19is_identifier_flagsEl:2534442 + 4: 39278 + 5: 32240 + 6.1: 7439 + 11.1: 4002 + 3: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:510614 + 5: 39278 + 4: _ZN9oceanbase3sql16ObFastParserBase18is_identifier_charEc:1099784 + 3: 39278 + 4: 39278 + 4.1: 0 + 4.2: 39278 + 6.1: _ZN9oceanbase3sql16ObFastParserBase8is_spaceEc:79849 + 2.1: 7259 + 12: _ZN9oceanbase3sql16ObFastParserBase12is_utf8_charEl:307451 + 3: 3988 + 4: 0 + 5: 0 + 12: 3988 + 14: 0 + 22.1: 3988 + 32.1: 3988 + 34: 3 + 5: _ZN9oceanbase3sql16ObFastParserBase24is_utf8_multi_byte_spaceEPKcl:0 + 3: 0 + 4: 0 + 5: 0 + 6: _ZN9oceanbase3sql16ObFastParserBase24is_utf8_multi_byte_commaEPKcl:0 + 4: 0 + 5: 0 + 8: _ZN9oceanbase3sql16ObFastParserBase36is_utf8_multi_byte_right_parenthesisEPKcl:0 + 6: 0 + 9: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:0 + 7: 0 + 12: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:63808 + 2: 3988 + 5: 3988 + 14: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:0 + 2.1: 0 + 5: 0 + 14.1: _ZN9oceanbase3sql16ObFastParserBase4is_uEc:0 + 2: 0 + 3.1: 0 + 24: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:0 + 2: 0 + 5: 0 + 24.1: _ZN9oceanbase3sql16ObFastParserBase4is_uEc:0 + 2: 0 + 34: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:225 + 2: 3 + 5: 3 + 34.1: _ZN9oceanbase3sql16ObFastParserBase4is_uEc:18 + 2: 3 + 14: _ZN9oceanbase3sql16ObFastParserBase11is_gbk_charEl:78 + 3: 1 + 4: 1 + 5: 1 + 6: 0 + 10.1: 0 + 10.2: 0 + 5: _ZN9oceanbase3sql16ObFastParserBase23is_gbk_multi_byte_spaceEPKcl:21 + 3: 1 + 6: _ZN9oceanbase3sql16ObFastParserBase23is_gbk_multi_byte_commaEPKcl:0 + 4: 0 + 9: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:9 + 7: 1 + 10.1: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:0 + 2: 0 + 5: 0 + 10.2: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:0 + 2.1: 0 + 5: 0 + 10.3: _ZN9oceanbase3sql16ObFastParserBase6is_gb1Ec:0 + 2: _ZN9oceanbase3sql16ObFastParserBase13is_valid_charEc:0 + 2: 0 + 10.4: _ZN9oceanbase3sql16ObFastParserBase6is_gb2Ec:0 + 2: _ZN9oceanbase3sql16ObFastParserBase13is_valid_charEc:0 + 2: 0 + 144.1: _ZN9oceanbase3sql16ObFastParserBase14is_normal_charEc:181425 + 2: 7257 + 2: _ZN9oceanbase3sql16ObFastParserBase13is_valid_charEc:29028 + 2: 7257 + 146: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEv:124182 + 0: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:124182 + 2: 7257 + 3: 276 + 155.1: _ZN9oceanbase3sql16ObFastParserBase13process_tokenEv:1815146 + 2: 48689 + 3: 41537 + 5: 7255 + 8: 7051 + 10: 7051 + 11: 7051 + 12: 7051 + 15: 7051 + 16: 7051 + 6: _ZN9oceanbase3sql16ObFastParserBase19append_no_param_sqlEv:394944 + 2: 7255 + 4: 7051 + 5: 7051 + 2: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql3ptrEl:159617 + 2: 7255 + 2.1: 7255 + 5: 7255 + 161: _ZN9oceanbase3sql16ObFastParserBase19append_no_param_sqlEv:44973 + 2: 803 + 4: 832 + 5: 832 + 2: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql3ptrEl:17666 + 2: 803 + 2.1: 803 + 5: 803 +_ZN9oceanbase6common7ObLatch6wrlockEjlPKj:17399016:52453 + 4: 48712 + 5: 48712 + 6: 48712 + 6.2: 0 + 9: 54916 + 17.1: 0 + 21: 54916 + 6.1: _Z9ob_gettidv:2581736 + 3: 48712 + 4: 0 + 2: _Z13get_tid_cachev:1217800 + 7: 48712 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 + 7: _ZN9oceanbase6common7ObLatch12LowTryWRLockC2Eb:194848 + 0: 48712 + 8: _ZN9oceanbase6common7ObLatch12LowTryWRLockC2Eb:535832 + 0: 48712 + 9: _ZN9oceanbase6common7ObLatch8low_lockINS1_12LowTryWRLockEEEijljjRT_S5_:10110844 + 8: 48712 + 16: 48712 + 17: 48712 + 22: 0 + 23.1: 0 + 25.1: 0 + 27.1: 3434 + 27.2: 48712 + 27.3: 48712 + 28: 52149 + 29: 52149 + 33: 3434 + 35: 3434 + 37: 48713 + 41.1: 48713 + 43: 48713 + 45: 0 + 47: 0 + 48: 0 + 53: 0 + 54: 0 + 57: 0 + 60: 0 + 60.1: 0 + 60.2: 0 + 68.1: 0 + 73.3: 0 + 73.4: 0 + 76.1: 54916 _ZN9oceanbase6common20ObDiagnoseTenantInfo23get_local_diagnose_infoEv:49844 + 76.2: 0 + 76.3: 0 + 76.4: 0 + 76.6: 0 + 76.14: 0 + 78: 54916 + 29: _ZN9oceanbase6common7ObLatch12LowTryWRLockclEPVjjjRb:1722863 + 6: 52149 + 6.1: 3772 + 8: 48715 + 59: _ZN9oceanbase6common10ObWaitProcC2ERNS0_7ObLatchEj:0 + 1: 0 + 2: 0 + 3: 0 + 4: 0 + 0: _ZN9oceanbase6common11ObDLinkBaseINS0_10ObWaitProcEEC2Ev:0 + 1: 0 +_ZN9oceanbase6common9ObSMUtils8cell_strEPclRKNS0_5ObObjENS_7obmysql19MYSQL_PROTOCOL_TYPEERllS2_RKNS0_20ObDataTypeCastParamsEPKNS0_7ObFieldEPNS_5share6schema19ObSchemaGetterGuardEm:17275886:79655 + 9: 75315 + 10: 75315 + 13: 75315 + 17: 75315 + 18: 0 + 19: 0 + 21: 0 + 25: 75315 + 26: 75315 + 27: 75315 + 31: 75315 + 33: 0 + 36.2: 0 + 39.2: 0 + 42.1: 0 + 45.1: 0 + 48: 238 + 48.1: 238 _ZN9oceanbase7obmysql11ObMySQLUtil15number_cell_strEPclRKNS_6common6number8ObNumberERlsbi:243 + 51: 0 + 51.3: 0 + 54.1: 0 + 57.1: 0 + 60.1: 0 + 63.1: 0 + 71: 76415 + 71.1: 76415 _ZN9oceanbase7obmysql11ObMySQLUtil16varchar_cell_strEPclRKNS_6common8ObStringEbRl:77318 + 75: 0 + 75.1: 0 + 80: 0 + 83: 0 + 84.1: 0 + 86.1: 0 + 91: 0 + 92: 0 + 94: 0 + 95: 0 + 96: 0 + 97: 0 + 98.1: 0 + 98.2: 0 + 98.3: 0 + 98.6: 0 + 99.2: 0 + 100: 0 + 101.1: 0 + 101.2: 0 + 101.3: 0 + 101.6: 0 + 102.2: 0 + 102.4: 0 + 103: 0 + 103.1: 0 + 105: 0 + 107: 0 + 107.1: 0 + 108.2: 0 + 108.3: 0 + 117.1: 0 + 117.2: 0 + 117.3: 0 + 117.5: 0 + 117.12: 0 + 124: 0 + 129: 0 + 129.1: 0 + 131: 0 + 132.1: 0 + 132.2: 0 + 132.3: 0 + 132.6: 0 + 133.1: 0 + 134: 0 + 135.1: 0 + 135.2: 0 + 135.3: 0 + 135.6: 0 + 137.1: 0 + 138.2: 0 + 139.1: 0 + 140.1: 0 + 140.2: 0 + 142.1: 0 + 142.2: 0 + 142.3: 0 + 142.6: 0 + 147: 0 + 148.1: 0 + 148.2: 0 + 148.3: 0 + 148.4: 0 + 148.8: 0 + 151: 0 + 151.1: 0 + 152.1: 0 + 152.2: 0 + 152.3: 0 + 152.6: 0 + 153.1: 0 + 153.2: 0 + 155.1: 0 + 155.2: 0 + 155.3: 0 + 155.8: 0 + 157: 0 + 159: 0 + 159.1: 0 + 159.2: 0 + 160: 0 + 160.1: 0 + 160.2: 0 + 161: 0 + 161.1: 0 + 164.1: 0 + 164.2: 0 + 164.3: 0 + 164.8: 0 + 167: 0 + 168: 0 + 169.1: 0 + 169.2: 0 + 169.3: 0 + 169.6: 0 + 172: 0 + 173.1: 0 + 173.2: 0 + 174.1: 0 + 174.2: 0 + 174.3: 0 + 174.6: 0 + 175.1: 0 + 176: 0 + 177.1: 0 + 177.2: 0 + 177.3: 0 + 177.6: 0 + 178.1: 0 + 178.2: 0 + 179.1: 0 + 179.2: 0 + 179.3: 0 + 179.6: 0 + 185: 0 + 186.1: 0 + 187.1: 0 + 191: 0 + 192: 0 + 192.1: 0 + 194: 0 + 195.1: 0 + 195.5: 0 + 195.7: 0 + 200.1: 0 + 201: 0 + 205: 80096 + 18: _ZNK9oceanbase6common5ObObj15is_invalid_typeEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta10is_invalidEv:0 + 0: 0 + 21.1: _ZNK9oceanbase6common10ObAccuracy9get_scaleEv:0 + 0: 0 + 24: _ZNK9oceanbase6common10ObAccuracy9get_scaleEv:602520 + 0: 75315 + 25: _ZNK9oceanbase6common10ObAccuracy13get_precisionEv:602520 + 0: 75315 + 31: _ZNK9oceanbase6common5ObObj14get_type_classEv:1882875 + 0: _ZNK9oceanbase6common9ObObjMeta14get_type_classEv:1882875 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:677835 + 0: 75315 + 0.1: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:1205040 + 2: 75315 + 2.1: 75315 + 36: _ZNK9oceanbase6common5ObObj7get_intEv:0 + 0: 0 + 39: _ZNK9oceanbase6common5ObObj7get_intEv:0 + 0: 0 + 42: _ZNK9oceanbase6common5ObObj9get_floatEv:0 + 0: 0 + 45: _ZNK9oceanbase6common5ObObj10get_doubleEv:0 + 0: 0 + 48: _ZNK9oceanbase6common5ObObj10get_numberEv:3570 + 0: 238 + 51: _ZNK9oceanbase6common5ObObj12get_datetimeEv:0 + 0: 0 + 51.4: _ZNK9oceanbase6common5ObObj12is_timestampEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta12is_timestampEv:0 + 0: 0 + 54: _ZNK9oceanbase6common5ObObj8get_dateEv:0 + 0: 0 + 57: _ZNK9oceanbase6common5ObObj8get_timeEv:0 + 0: 0 + 60: _ZNK9oceanbase6common5ObObj8get_yearEv:0 + 0: 0 + 63: _ZNK9oceanbase6common5ObObj20get_otimestamp_valueEv:0 + 0: 0 + 0: _ZN9oceanbase6common16ObOTimestampDataC2ElNS1_10UnionTZCtxE:0 + 1: 0 + 71: _ZNK9oceanbase6common5ObObj10get_stringEv:687735 + 1: 76415 + 1: _ZN9oceanbase6common8ObStringC2ElPKc:229245 + 5: 76415 + 75: _ZNK9oceanbase6common5ObObj10get_stringEv:0 + 1: 0 + 1: _ZN9oceanbase6common8ObStringC2ElPKc:0 + 5: 0 + 86: _ZNK9oceanbase6common5ObObj7get_bitEv:0 + 0: 0 + 90.1: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:0 + 4: 0 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 93: _ZN9oceanbase6common5ObObjC2ERKS1_:0 + 2: 0 + 98.5: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 101.5: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 102.1: _ZNK9oceanbase6common8ObString5emptyEv:0 + 2: 0 + 2.1: 0 + 102.3: _ZNK9oceanbase6common8ObString5emptyEv:0 + 2: 0 + 2.1: 0 + 104: _ZNK9oceanbase6common5ObObj7get_intEv:0 + 0: 0 + 108.1: _ZNK9oceanbase2pl14ObPLCursorInfo6get_idEv:0 + 0: 0 + 117.4: _ZNK9oceanbase2pl14ObPLCursorInfo6get_idEv:0 + 0: 0 + 117.6: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 117.7: _ZN9oceanbase6common8ObStringC2ElPKc:0 + 1: 0 + 2: 0 + 3: 0 + 5: 0 + 6: 0 + 117.9: _ZN9oceanbase6common7ObLogKVIRKNS0_8ObStringELb0EEC2EPKcS4_:0 + 0: 0 + 117.11: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 123.2: _ZNK9oceanbase6common5ObObj12is_pl_extendEv:0 + 3: 0 + 4: 0 + 5: 0 + 2: _ZNK9oceanbase6common5ObObj6is_extEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta6is_extEv:0 + 0: 0 + 3.1: _ZNK9oceanbase6common5ObObj7get_extEv:0 + 4: 0 + 3.2: _ZN9oceanbase6common5ObObj10is_ext_valEl:0 + 3: 0 + 4.1: _ZNK9oceanbase6common9ObObjMeta15get_extend_typeEv:0 + 0: 0 + 128: _ZN9oceanbase2pl12ObPLDataTypeC2Ev:0 + 1: 0 + 3: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 4: _ZN9oceanbase6common10ObDataTypeC2Ev:0 + 3: 0 + 4: 0 + 1: _ZN9oceanbase6common9ObObjMetaC2Ev:0 + 1: 0 + 2: _ZN9oceanbase6common10ObAccuracyC2Ev:0 + 0: _ZN9oceanbase6common10ObAccuracy5resetEv:0 + 0: 0 + 8: _ZN9oceanbase6common7ObArrayINS0_8ObStringENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_22NotImplementItemEncodeIS2_EEEC2Ev:0 + 0.1: 0 + 0.5: _ZN9oceanbase6common11ObArrayImplINS0_8ObStringENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_22NotImplementItemEncodeIS2_EEEC2ElRKS3_:0 + 7.1: 0 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 132.5: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 135.5: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 136.1: _ZN9oceanbase2pl17ObNestedTableTypeC2Ev:0 + 1: 0 + 138.1: _ZNK9oceanbase2pl14ObPLCollection16get_element_typeEv:0 + 0: 0 + 142.5: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 146: _ZN9oceanbase2pl12ObPLDataTypeD2Ev:0 + 0: 0 + 146.1: _ZN9oceanbase2pl12ObPLDataTypeD2Ev:0 + 0: 0 + 148.4: _ZN9oceanbase6common20ObLogPrintPointerCntIPKNS0_7ObFieldEEC2ES4_:0 + 0: 0 + 148.5: _ZN9oceanbase6common7ObLogKVINS0_20ObLogPrintPointerCntIPKNS0_7ObFieldEEELb1EEC2EPKcOKS6_:0 + 0: 0 + 148.7: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 152.5: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 155.5: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 155.7: _ZN9oceanbase6common7ObLogKVIRKPKNS0_7ObFieldELb0EEC2EPKcS6_:0 + 0: 0 + 164.5: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 164.7: _ZN9oceanbase6common7ObLogKVIRKPKNS0_7ObFieldELb0EEC2EPKcS6_:0 + 0: 0 + 169.5: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 174.5: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 177.5: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 179.5: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 183: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:0 + 0: 0 + 183.2: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:0 + 0: 0 + 185: _ZNK9oceanbase6common5ObObj14is_interval_ymEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta14is_interval_ymEv:0 + 0: 0 + 186: _ZNK9oceanbase6common5ObObj15get_interval_ymEv:0 + 0: 0 + 187: _ZNK9oceanbase6common5ObObj15get_interval_dsEv:0 + 0: 0 + 0: _ZN9oceanbase6common17ObIntervalDSValueC2Eli:0 + 1: 0 + 2: 0 + 191: _ZNK9oceanbase6common5ObObj9is_urowidEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta9is_urowidEv:0 + 0: 0 + 192: _ZNK9oceanbase6common5ObObj10get_urowidEv:0 + 2: 0 + 195.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase6common13ObObjCmpFuncs7compareERKNS0_5ObObjES4_NS0_15ObCollationTypeERi:17210929:41742 + 4: 39779 + 7: 39779 + 8: 37273 + 13.1: 20 + 16: 37273 _ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE10ELS3_10EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE:3 _ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE11ELS3_11EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE:3 _ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE11ELS3_23EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE:2 + 18.1: 20 + 21: 37273 + 8.2: _ZN9oceanbase6common13ObObjCmpFuncs20can_cmp_without_castERKNS0_9ObObjMetaES4_NS0_7ObCmpOpERPFiRKNS0_5ObObjES8_RKNS0_12ObCompareCtxEE:8271117 + 12.1: 20 + 13: 40421 + 15.1: 42296 + 16.1: 42661 + 18.1: 37271 + 18.2: 93 + 18.4: 95 + 25: 37273 + 6: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:318232 + 0: 39779 + 7: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:119337 + 0: 39779 + 8: _ZNK9oceanbase6common9ObObjMeta14get_type_classEv:1228757 + 0.1: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:1228757 + 2: 43702 + 2.1: 39779 + 2.3: 39779 + 9: _ZNK9oceanbase6common9ObObjMeta14get_type_classEv:684057 + 0.1: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:684057 + 2: 39779 + 2.1: 40421 + 12: _ZN9oceanbase6common13ObObjCmpFuncs25is_datetime_timestamp_cmpENS0_9ObObjTypeES2_:360799 + 2: 39779 + 3.1: 40421 + 13.1: _ZN9oceanbase6common13ObObjCmpFuncs17is_otimestamp_cmpENS0_9ObObjTypeES2_:1080692 + 2: 41542 + 2.2: 20 + 3.1: 41542 + 3.3: 20 + 18.1: _ZN9oceanbase6common17ob_is_string_typeENS0_9ObObjTypeE:786731 + 0: 43702 + 0: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:393318 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:393318 + 2: 43702 + 18.2: _ZN9oceanbase6common17ob_is_string_typeENS0_9ObObjTypeE:399308 + 0: 95 + 0: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:398360 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:398360 + 2: 39779 + 22.1: _ZN9oceanbase6common13ObObjCmpFuncs12get_cmp_funcENS0_14ObObjTypeClassES2_NS0_7ObCmpOpERPFiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxEE:1677253 + 7: 37271 + 13: 37273 + 15: _ZN9oceanbase3lib14is_oracle_modeEv:2088388 + 2: _ZN9oceanbase3lib15get_compat_modeEv:2088388 + 2: 37273 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:1492020 + 2: 37273 + 2.1: 20 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:440 + 1: 20 + 15.1: _ZN9oceanbase6common12ObCompareCtxC2ENS0_9ObObjTypeENS0_15ObCollationTypeEblNS0_12ObCmpNullPosE:931825 + 5: 37273 + 6: 37273 + 7: 37273 + 8: 37273 + 9: 37273 + 16: _ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE1ELS3_1EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE:2870762 + 0: 37266 + 0.2: 20 + 0.3: 20 + 0.4: 37266 + 0.6: 20 + 0.7: 20 + 0.8: 37266 + 0.4: _ZNK9oceanbase6common5ObObj14get_type_classEv:149244 + 0: _ZNK9oceanbase6common9ObObjMeta14get_type_classEv:149244 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:180 + 0: 20 + 0.1: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:149064 + 2: 37266 + 0.8: _ZNK9oceanbase6common5ObObj7get_intEv:149064 + 0: 37266 +_ZNK9oceanbase6common7ObSMRow11encode_cellElPclRlS2_:16598806:85920 + 3: 80392 + 4: 80392 + 5: 80392 + 6: 0 + 7.1: 80392 + 8: 0 + 10: 0 + 11: 0 + 12.1: 0 + 13.1: 0 + 14: 0 + 16: 0 + 17: 0 + 20: 80392 + 20.3: 80392 + 21: 0 + 23: 78648 + 25: 78648 + 26: 0 + 29: 78648 + 30: 78648 + 34: 80259 + 5: _ZNK9oceanbase6common7ObSMRow13get_cells_cntEv:1527448 + 2: 80392 + 2.3: 80392 + 10: _ZNK9oceanbase6common5ObObj14get_string_lenEv:0 + 0: 0 + 16: _ZNK9oceanbase6common5ObObj14get_string_ptrEv:0 + 0: 0 + 17: _ZNK9oceanbase6common5ObObj14get_string_lenEv:0 + 0: 0 + 30: _ZNK9oceanbase6common12ObIArrayWrapINS0_7ObFieldEE2atEl:865128 + 6: 78648 +_ZN9oceanbase12blocksstable18ObMicroBlockReader7get_rowElRNS0_10ObDatumRowE:16349983:106939 + 1: 99053 + 2: 99053 + 3: 99053 + 4: 344 + 5.1: 344 + 6.1: 99053 + 6.2: 99053 + 6.4: 99053 + 6.6: 99053 + 10: 344 + 11.1: 344 + 12.1: 104925 _ZN9oceanbase12blocksstable11ObRowReader8read_rowEPKclPKNS_7storage15ObTableReadInfoERNS0_10ObDatumRowE:100589 + 17.1: 344 + 20: 104925 + 24: 104925 + 6.5: _ZNK9oceanbase12blocksstable10ObDatumRow8is_validEv:1782954 + 0: 99053 + 0.1: 99053 +_ZN9oceanbase3sql12ObSortOpImpl12get_next_rowERKNS_6common8ObIArrayIPNS0_6ObExprEEERPKNS0_17ObChunkDatumStore9StoredRowE:16163475:57532 + 1: 51523 + 2: 51523 + 3: 51523 + 5.1: 48787 + 7.1: 0 + 9.1: 48787 + 10: 0 + 11.1: 0 + 12.1: 48787 + 13.1: 0 + 15: 48787 + 17: 49311 + 5.1: _ZN9oceanbase3sql12ObSortOpImpl12get_next_rowERPKNS0_17ObChunkDatumStore9StoredRowE:3229193 + 2: 51523 + 3: 51523 + 4: 0 + 5.1: 0 + 8: 51523 + 8.1: 0 + 8.3: 54622 _ZN9oceanbase3sql12ObSortOpImpl21array_next_stored_rowERPKNS0_17ObChunkDatumStore9StoredRowE:54839 + 9: 49260 + 9.1: 445 + 10: 445 _ZN9oceanbase3sql12ObSortOpImpl5reuseEv:451 + 13: 0 + 3: _ZNK9oceanbase3sql12ObSortOpImpl9is_initedEv:206092 + 0: 51523 + 7: _ZN9oceanbase3sql17ObChunkDatumStore12IterationAge3incEv:412184 + 0: 51523 + 12.1: _ZNK9oceanbase3sql17ObChunkDatumStore9StoredRow7to_exprILb0EEEiRKNS_6common8ObIArrayIPNS0_6ObExprEEERNS0_9ObEvalCtxE:7269263 + 3: 48787 + 4: 48787 + 5: 0 + 6.1: 0 + 8.1: 48787 + 8.3: 48787 + 9: 48787 + 17: 48787 + 24: 48787 + 9: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:731805 + 6: 48787 + 1115.1: 48787 + 16: _ZNK9oceanbase3sql6ObExpr17locate_expr_datumERNS0_9ObEvalCtxE:1463610 + 3: 48787 + 3: _ZNK9oceanbase3sql6ObExpr13get_datum_idxERNS0_9ObEvalCtxE:536657 + 2: 48787 + 2: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:195148 + 0: 48787 + 19: _ZNK9oceanbase3sql6ObExpr23set_evaluated_projectedERNS0_9ObEvalCtxE:1756332 + 2: 48787 + 3: 48787 + 2: _ZNK9oceanbase3sql6ObExpr13get_eval_infoERNS0_9ObEvalCtxE:683018 + 2: 48787 + 3: _ZNK9oceanbase3sql6ObExpr13get_eval_infoERNS0_9ObEvalCtxE:683018 + 2: 48787 +_ZN9oceanbase6common7ObLatch6unlockEPKj:16117896:113546 + 1: 107037 + 2: 107037 + 3: 107037 + 5: 107037 + 6: 52513 + 6.2: 0 + 6.3: 52513 + 7: 52513 + 8: 52513 + 9: 0 + 10.1: 0 + 12: 50745 + 14.1: 55106 + 15: 55106 + 17: 0 + 18.1: 0 + 20: 107791 + 21: 1 + 21.1: 0 + 22.1: 0 + 26: 107791 + 6.1: _Z9ob_gettidv:2783189 + 3: 52513 + 4: 0 + 2: _Z13get_tid_cachev:1312825 + 7: 52513 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 +_ZN9oceanbase3lib9ObjectSet14do_free_objectEPNS0_7AObjectE:15770148:20301 + 1: 19432 + 3: 19307 + 5: 19307 + 6: 19307 + 8: 19307 + 9: 19307 + 17: 20499 + 17.1: 12258 + 18: 12258 + 18.1: 253 + 19: 12258 + 19.1: 253 + 20: 253 + 23: 271 + 25.1: 8682 + 25.2: 8682 + 26: 247 + 27: 247 + 28: 247 + 32: 3 + 34: 268 + 36: 268 + 38: 21052 + 2: _ZNK9oceanbase3lib7AObject4holdEj:5041998 + 2: 19432 + 2.1: 9112 + 4: 9122 + 2.1: _ZNK9oceanbase3lib7AObject7is_lastEj:109344 + 2: 9112 + 3: _ZNK9oceanbase3lib7AObject5blockEv:1459454 + 2: _ZN9oceanbase3lib6AChunk9ptr2chunkEPKv:157485 + 2: 10499 + 3: _ZNK9oceanbase3lib6AChunk8is_validEv:73493 + 2: 10499 + 3.1: _ZL12abort_unlessb:63024 + 5: 10499 + 6: 3 + 4: _ZNK9oceanbase3lib6AChunk7ptr2blkEPKv:1165452 + 2: 10499 + 4: 10499 + 3: _ZNK9oceanbase3lib6AChunk17max_blk_offset_leEi:640502 + 2: _ZNK9oceanbase3lib13ASimpleBitSetILi256EE10max_bit_leEi:640502 + 2: 10499 + 3: 10499 + 7: 10499 + 9: 10499 + 11.1: 3 + 12: 10499 + 8: _ZN9oceanbase3lib13ASimpleBitSetILi256EE10max_bit_leEmi:241477 + 2: 10499 + 3: 10499 + 4: 10499 + 3.1: _ZNK9oceanbase3lib6ABlock4holdEPm:3124084 + 5: 10499 + 5.1: 10499 + 5.2: 5329 + 8: 5870 + 3: _ZNK9oceanbase3lib6AChunk10blk_offsetEPKNS0_6ABlockE:629970 + 2: 10499 + 3: 10499 + 3.2: _ZL12abort_unlessb:63024 + 5: 10499 + 6: 3 + 5.1: _ZNK9oceanbase3lib6AChunk19is_first_blk_offsetEiPi:31497 + 2: 10499 + 5.2: _ZNK9oceanbase3lib6AChunk18is_last_blk_offsetEiPi:967413 + 4: 5329 + 4: _ZNK9oceanbase3lib6AChunk17min_blk_offset_geEi:951426 + 2: _ZNK9oceanbase3lib13ASimpleBitSetILi256EE10min_bit_geEi:951426 + 8: 19712 + 9: 19712 + 12: 5329 + 8: _ZN9oceanbase3lib13ASimpleBitSetILi256EE10min_bit_geEmi:251100 + 3: 160 + 4: 19712 + 6: _ZNK9oceanbase3lib6AChunk4holdEPm:222348 + 2: 5169 + 2: _ZN9oceanbase3lib6AChunk9calc_holdEllPm:180996 + 3: 5169 + 3.2: 3 + 4: 5169 + 2: _ZN9oceanbase3lib9align_up2Emm:98211 + 2: 5169 + 3.4: _ZN9oceanbase3lib9align_up2Emm:66 + 2: 3 + 8: _ZNK9oceanbase3lib6AChunk11blk_nblocksEPKNS0_6ABlockE:1002517 + 4.3: 5870 + 2: _ZNK9oceanbase3lib6AChunk10blk_offsetEPKNS0_6ABlockE:52860 + 3.2: _ZL12abort_unlessb:52860 + 5: 5870 + 6: 3 + 4: _ZNK9oceanbase3lib6AChunk18is_last_blk_offsetEiPi:914437 + 4: 5870 + 4: _ZNK9oceanbase3lib6AChunk17min_blk_offset_geEi:843997 + 2: _ZNK9oceanbase3lib13ASimpleBitSetILi256EE10min_bit_geEi:843997 + 2: 5870 + 7: 5870 + 8: 29350 + 9: 29350 + 11.1: 1855 + 12: 5870 + 8: _ZN9oceanbase3lib13ASimpleBitSetILi256EE10min_bit_geEmi:305964 + 2: 29350 + 3: 5854 + 4: 29350 + 10: _ZN9oceanbase3lib9ObjectSet18free_normal_objectEPNS0_7AObjectE:4862161 + 5: 8260 + 6: 8260 + 9: 8553 _ZN9oceanbase6common13ObPageManager24get_tenant_ctx_allocatorEv:4981 _ZN9oceanbase3lib12SubObjectMgr24get_tenant_ctx_allocatorEv:623 + 10: 5362 _ZN9oceanbase6common13ObPageManager24get_tenant_ctx_allocatorEv:4743 _ZN9oceanbase3lib12SubObjectMgr24get_tenant_ctx_allocatorEv:618 + 11: 8004 + 12: 5871 + 13: 5871 + 15.1: 2081 + 16: 706 + 3: _ZNK9oceanbase3lib7AObject8is_validEv:107380 + 2: 8260 + 3.1: _ZL12abort_unlessb:49590 + 5: 8260 + 6: 3 + 8: _ZN9oceanbase3lib9ObjectSet9merge_objEPNS0_7AObjectE:2079618 + 9: 8260 + 10: 2019 + 12: 2019 + 13: 233 + 14.1: 1785 + 19: 8361 + 22: 8189 + 23: 4775 + 24.1: 3503 + 29.1: 8347 + 30: 7124 + 36: 8552 + 36.1: 2103 + 36.4: 7526 + 37: 8558 + 37.1: 8368 + 37.4: 1452 + 39: 8534 + 40: 8534 + 41: 1294 + 43: 7280 + 3: _ZNK9oceanbase3lib7AObject8is_validEv:107380 + 2: 8260 + 3.1: _ZL12abort_unlessb:49590 + 5: 8260 + 6: 3 + 10: _ZNK9oceanbase3lib7AObject8phy_nextEi:26247 + 2: 2019 + 11: _ZNK9oceanbase3lib7AObject8is_validEv:28266 + 2: 2019 + 11.1: _ZL12abort_unlessb:12144 + 5: 2019 + 6: 3 + 15: _ZN9oceanbase3lib9ObjectSet20take_off_free_objectEPNS0_7AObjectE:30959 + 5: 804 + 5.1: 77 + 6.1: 77 + 7.1: 77 + 8.1: 77 + 11: 14 + 12: 14 + 13: 12 + 15: 14 + 16: 14 + 3: _ZNK9oceanbase3lib7AObject8is_validEv:9648 + 2: 804 + 3.1: _ZL12abort_unlessb:4824 + 5: 804 + 6: 0 + 9: _ZN9oceanbase3lib7ABitSet5unsetEi:5363 + 2: 66 + 5: 66 + 7: 66 + 8: 66 + 10: 29 + 11: 29 + 12: 29 + 12.1: 28 + 13: 28 + 19: _ZNK9oceanbase3lib7AObject7is_lastEj:158859 + 2: 8361 + 20: _ZNK9oceanbase3lib7AObject8phy_nextEi:90079 + 2: 8189 + 21: _ZNK9oceanbase3lib7AObject8is_validEv:114646 + 2: 8189 + 21.1: _ZL12abort_unlessb:49164 + 5: 8189 + 6: 3 + 25: _ZN9oceanbase3lib9ObjectSet20take_off_free_objectEPNS0_7AObjectE:318303 + 5: 2307 + 5.1: 2307 + 6.1: 2307 + 7.1: 2307 + 8.1: 2277 + 11: 1569 + 12: 1569 + 13: 33 + 15: 1568 + 16: 1568 + 3: _ZNK9oceanbase3lib7AObject8is_validEv:29991 + 2: 2307 + 3.1: _ZL12abort_unlessb:13872 + 5: 2307 + 6: 3 + 9: _ZN9oceanbase3lib7ABitSet5unsetEi:81307 + 2: 757 + 5: 757 + 7: 757 + 8: 757 + 10: 746 + 11: 746 + 12: 746 + 12.1: 743 + 13: 484 + 30: _ZNK9oceanbase3lib7AObject7is_lastEj:149604 + 2: 7124 + 31: _ZNK9oceanbase3lib7AObject8phy_nextEi:164 + 2: 41 + 32: _ZNK9oceanbase3lib7AObject8is_validEv:451 + 2: 41 + 32.1: _ZL12abort_unlessb:246 + 5: 41 + 6: 0 + 14: _ZNK9oceanbase3lib7AObject5blockEv:852007 + 2: _ZN9oceanbase3lib6AChunk9ptr2chunkEPKv:88065 + 2: 5871 + 3: _ZNK9oceanbase3lib6AChunk8is_validEv:52839 + 2: 5871 + 3.1: _ZL12abort_unlessb:35256 + 5: 5871 + 6: 3 + 4: _ZNK9oceanbase3lib6AChunk7ptr2blkEPKv:675847 + 2: 5871 + 4: 5871 + 3: _ZNK9oceanbase3lib6AChunk17max_blk_offset_leEi:358813 + 2: _ZNK9oceanbase3lib13ASimpleBitSetILi256EE10max_bit_leEi:358813 + 2: 5871 + 3: 5871 + 7: 5871 + 9: 5871 + 11.1: 22 + 12: 5871 + 8: _ZN9oceanbase3lib13ASimpleBitSetILi256EE10max_bit_leEmi:135033 + 2: 5871 + 3: 5871 + 4: 5871 + 14.1: _ZN9oceanbase3lib9ObjectSet10free_blockEPNS0_6ABlockE:817176 + 5: 5871 + 6: 768 + 7: 768 + 12: 5871 + 13: 5871 + 16: 5871 _ZN9oceanbase6common13ObPageManager10free_blockEPNS_3lib6ABlockE:3742 _ZN9oceanbase3lib12SubObjectMgr10free_blockEPNS0_6ABlockE:39 + 3: _ZNK9oceanbase3lib6ABlock8is_validEv:76323 + 2: 5871 + 3.1: _ZL12abort_unlessb:35256 + 5: 5871 + 6: 3 + 16: _ZN9oceanbase3lib9ObjectMgr10free_blockEPNS0_6ABlockE:337600 + 5: 2379 + 7: 2379 + 9: 2538 _ZN9oceanbase3lib8BlockSet10free_blockEPNS0_6ABlockE:2575 + 3: _ZNK9oceanbase3lib6ABlock8is_validEv:19032 + 2: 2379 + 3.1: _ZL12abort_unlessb:14304 + 5: 2379 + 6: 3 + 5: _ZL12abort_unlessb:14304 + 5: 2379 + 6: 3 + 6: _ZNK9oceanbase3lib6AChunk8is_validEv:16653 + 2: 2379 + 6.1: _ZL12abort_unlessb:14304 + 5: 2379 + 6: 3 + 8: _ZN9oceanbase3lib8BlockSet4lockEv:111957 + 2: 2379 + 2: _ZN9oceanbase3lib9SetLocker4lockEv:50103 + 2: 2379 + 2: _ZN9oceanbase3lib7ObMutex4lockEv:40587 + 0: 2379 _ZN9oceanbase6common12ObLatchMutex4lockEjl:2472 + 10: _ZN9oceanbase3lib8BlockSet6unlockEv:83935 + 2: 2535 + 2: _ZN9oceanbase3lib9SetLocker6unlockEv:15490 + 2: 2535 + 2: _ZN9oceanbase3lib7ObMutex6unlockEv:5350 + 0: 2535 _ZN9oceanbase6common12ObLatchMutex6unlockEv:2543 + 18: _ZN9oceanbase3lib9ObjectSet15add_free_objectEPNS0_7AObjectE:114331 + 5: 1382 + 5.1: 617 + 6.1: 617 + 7: 617 + 8: 617 + 9: 197 + 10: 197 + 11: 197 + 12: 197 + 16: 439 + 17: 439 + 3: _ZNK9oceanbase3lib7AObject8is_validEv:16584 + 2: 1382 + 3.1: _ZL12abort_unlessb:8292 + 5: 1382 + 6: 0 + 8: _ZN9oceanbase3lib7ABitSet5issetEi:24063 + 3: 617 + 6: 617 + 9: 617 + 15: _ZN9oceanbase3lib7ABitSet3setEi:16682 + 7: 439 + 10: 439 + 11: 439 + 13: 439 + 12: _ZN9oceanbase3lib9ObjectSet15free_big_objectEPNS0_7AObjectE:2941035 + 6: 10743 + 3: _ZNK9oceanbase3lib7AObject5blockEv:322320 + 2: _ZN9oceanbase3lib6AChunk9ptr2chunkEPKv:161145 + 2: 10743 + 3: _ZNK9oceanbase3lib6AChunk8is_validEv:96687 + 2: 10743 + 3.1: _ZL12abort_unlessb:64488 + 5: 10743 + 6: 3 + 4: _ZNK9oceanbase3lib7AObject8is_validEv:139659 + 2: 10743 + 4.1: _ZL12abort_unlessb:64488 + 5: 10743 + 6: 3 + 8: _ZNK9oceanbase3lib7AObject5blockEv:1353711 + 3: _ZNK9oceanbase3lib6AChunk8is_validEv:96687 + 2: 10743 + 3.1: _ZL12abort_unlessb:64488 + 5: 10743 + 6: 3 + 4: _ZNK9oceanbase3lib6AChunk7ptr2blkEPKv:1192536 + 2: 10743 + 4: 10743 + 3: _ZNK9oceanbase3lib6AChunk17max_blk_offset_leEi:655386 + 2: _ZNK9oceanbase3lib13ASimpleBitSetILi256EE10max_bit_leEi:655386 + 2: 10743 + 3: 10743 + 7: 10743 + 9: 10743 + 11.1: 3 + 12: 10743 + 8: _ZN9oceanbase3lib13ASimpleBitSetILi256EE10max_bit_leEmi:247089 + 2: 10743 + 3: 10743 + 4: 10743 + 8.1: _ZN9oceanbase3lib9ObjectSet10free_blockEPNS0_6ABlockE:781539 + 5: 10743 + 6: 5537 + 7: 5537 + 12: 10730 + 13: 10730 + 16: 10730 _ZN9oceanbase3lib12SubObjectMgr10free_blockEPNS0_6ABlockE:5170 _ZN9oceanbase6common13ObPageManager10free_blockEPNS_3lib6ABlockE:4955 _ZN9oceanbase3lib9ObjectMgr10free_blockEPNS0_6ABlockE:728 + 3: _ZNK9oceanbase3lib6ABlock8is_validEv:139659 + 2: 10743 + 3.1: _ZL12abort_unlessb:64488 + 5: 10743 + 6: 3 + 22: _ZN9oceanbase3lib9ObjectSet16build_free_listsEv:644491 + 4: 253 + 5: 253 + 7: 253 + 8: 253 + 15: 237 + 16: 237 + 17: 237 _ZN9oceanbase3lib7ABitSetC1EiPc:256 + 18: 237 + 22.1: 2109 + 23: 2109 + 29: 1837 + 31.1: 4404 + 31.3: 2502 + 32: 2502 + 33: 2502 + 37: 2502 + 38: 1906 + 40: 1906 _ZN9oceanbase3lib9ObjectSet15add_free_objectEPNS0_7AObjectE:1944 + 48.1: 0 + 48.3: 0 + 52: 0 + 53: 0 + 57: 0 + 58: 0 + 3.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:6831 + 5: 253 + 7: 253 + 4: _ZN9oceanbase3lib9ObjectMgr24get_tenant_ctx_allocatorEv:1012 + 2: 253 + 4.1: _ZN9oceanbase3lib20ObTenantCtxAllocator13get_tenant_idEv:1012 + 2: 253 + 5: _ZN9oceanbase3lib9ObjectMgr24get_tenant_ctx_allocatorEv:1012 + 2: 253 + 5.1: _ZN9oceanbase3lib20ObTenantCtxAllocator10get_ctx_idEv:1012 + 2: 253 + 6: _ZN9oceanbase3lib7ObLabelaSILm13EEERS1_RAT__Kc:2783 + 4: 253 + 7: _ZN9oceanbase3lib9ObjectSet11alloc_blockEmRKNS0_9ObMemAttrE:31017 + 2: 253 _ZN9oceanbase3lib9ObjectMgr11alloc_blockEmRKNS0_9ObMemAttrE:252 + 4: 237 + 5: 237 + 6: 237 + 7: 237 + 8: 237 + 9: 237 + 11: 0 + 12: 0 + 14: 237 + 15: 237 + 16: 237 + 17: 237 + 8: _ZN9oceanbase3lib7ABitSet7buf_lenEl:10120 + 2: 253 + 3: 253 + 2: _ZN9oceanbase3lib7ABitSet14n_second_levelEl:1771 + 2: 253 + 3: _ZN9oceanbase3lib7ABitSet13n_first_levelEl:1518 + 2: 253 + 14: _ZNK9oceanbase3lib6ABlock4dataEv:16116 + 2: _ZNK9oceanbase3lib6ABlock5chunkEv:3555 + 2: _ZN9oceanbase3lib6AChunk9ptr2chunkEPKv:3555 + 2: 237 + 3: _ZNK9oceanbase3lib6AChunk8is_validEv:1659 + 2: 237 + 3.1: _ZL12abort_unlessb:1422 + 5: 237 + 6: 0 + 4: _ZNK9oceanbase3lib6AChunk8blk_dataEPKNS0_6ABlockE:9480 + 2: 237 + 3: 237 + 4: 237 + 25: _ZNK9oceanbase3lib6ABlock4dataEv:124916 + 2: _ZNK9oceanbase3lib6ABlock5chunkEv:22044 + 2: _ZN9oceanbase3lib6AChunk9ptr2chunkEPKv:22044 + 2: 1837 + 3: _ZNK9oceanbase3lib6AChunk8is_validEv:22044 + 2: 1837 + 3.1: _ZL12abort_unlessb:11022 + 5: 1837 + 6: 0 + 4: _ZNK9oceanbase3lib6AChunk8blk_dataEPKNS0_6ABlockE:69806 + 2: 1837 + 3: 1837 + 4: 1837 + 26: _ZNK9oceanbase3lib7AObject8is_validEv:25718 + 2: 1837 + 26.1: _ZL12abort_unlessb:11022 + 5: 1837 + 6: 0 + 32: _ZNK9oceanbase3lib7AObject8phy_nextEi:10008 + 2: 2502 + 35: _ZNK9oceanbase3lib7AObject8is_validEv:35028 + 2: 2502 + 35.1: _ZL12abort_unlessb:15012 + 5: 2502 + 6: 0 + 37: _ZNK9oceanbase3lib7AObject7is_lastEj:74432 + 2: 2502 + 46: _ZNK9oceanbase3lib7AObject8phy_nextEi:0 + 2: 0 + 47: _ZNK9oceanbase3lib7AObject8is_validEv:0 + 2: 0 + 47.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 49: _ZNK9oceanbase3lib7AObject8phy_nextEi:0 + 2: 0 + 50: _ZNK9oceanbase3lib7AObject8is_validEv:0 + 2: 0 + 50.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 52: _ZNK9oceanbase3lib7AObject7is_lastEj:0 + 2: 0 + 54: _ZN9oceanbase3lib9ObjectSet15add_free_objectEPNS0_7AObjectE:0 + 5: 0 + 5.1: 0 + 6.1: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 12: 0 + 16: 0 + 17: 0 + 3: _ZNK9oceanbase3lib7AObject8is_validEv:0 + 2: 0 + 3.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 8: _ZN9oceanbase3lib7ABitSet5issetEi:0 + 3: 0 + 6: 0 + 9: 0 + 15: _ZN9oceanbase3lib7ABitSet3setEi:0 + 7: 0 + 10: 0 + 11: 0 + 13: 0 + 59: _ZN9oceanbase3lib9ObjectSet15add_free_objectEPNS0_7AObjectE:0 + 5: 0 + 5.1: 0 + 6.1: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 12: 0 + 16: 0 + 17: 0 + 3: _ZNK9oceanbase3lib7AObject8is_validEv:0 + 2: 0 + 3.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 8: _ZN9oceanbase3lib7ABitSet5issetEi:0 + 3: 0 + 6: 0 + 9: 0 + 15: _ZN9oceanbase3lib7ABitSet3setEi:0 + 7: 0 + 10: 0 + 11: 0 + 13: 0 + 26: _ZL12abort_unlessb:1512 + 5: 247 + 6: 3 + 27: _ZL12abort_unlessb:1512 + 5: 247 + 6: 3 + 30: _ZN9oceanbase3lib6AChunk9ptr2chunkEPKv:2964 + 2: 247 + 31: _ZNK9oceanbase3lib6AChunk8is_validEv:1729 + 2: 247 + 31.1: _ZL12abort_unlessb:1497 + 5: 247 + 6: 3 + 32: _ZNK9oceanbase3lib6AChunk7ptr2blkEPKv:29074 + 2: 247 + 4: 247 + 3: _ZNK9oceanbase3lib6AChunk17max_blk_offset_leEi:16724 + 2: _ZNK9oceanbase3lib13ASimpleBitSetILi256EE10max_bit_leEi:16724 + 2: 247 + 3: 247 + 7: 247 + 9: 247 + 11.1: 7 + 12: 247 + 8: _ZN9oceanbase3lib13ASimpleBitSetILi256EE10max_bit_leEmi:8892 + 2: 247 + 3: 247 + 4: 247 + 65506: 247 + 33: _ZN9oceanbase3lib9ObjectSet10free_blockEPNS0_6ABlockE:20298 + 5: 247 + 6: 247 + 7: 247 + 12: 247 + 13: 247 + 16: 247 _ZN9oceanbase3lib9ObjectMgr10free_blockEPNS0_6ABlockE:253 + 3: _ZNK9oceanbase3lib6ABlock8is_validEv:3211 + 2: 247 + 3.1: _ZL12abort_unlessb:1512 + 5: 247 + 6: 3 +_ZN9oceanbase8observer9ObMPQuery7processEv:15762489:4910 + 1: 4580 + 2: 4580 + 13: 4580 + 14: 4580 + 17: 4580 + 18: 4580 + 20: 4580 + 21: 4644 + 23: 4644 + 24: 4644 + 25: 4644 + 26: 12 + 27: 12 + 28.1: 12 + 31: 12 + 34: 12 + 36.1: 4644 + 36.2: 4644 + 37: 81 + 38.1: 81 + 39.2: 4644 + 40: 81 + 41.1: 81 + 42.1: 4644 + 43: 81 + 44.1: 81 + 45.2: 5368 + 46.1: 81 + 47.1: 5368 + 48: 81 + 49.1: 81 + 50.1: 5368 _ZN9oceanbase8observer14global_contextEv:5752 + 50.2: 5304 + 50.3: 5476 _ZN9oceanbase8observer14global_contextEv:5635 + 50.4: 5524 + 50.5: 5524 + 50.6: 81 + 51: 81 + 51.2: 81 + 51.3: 81 + 52.1: 81 + 54: 4989 + 56.1: 4989 + 61: 4853 + 62: 4853 + 62.1: 12 + 63.1: 12 + 64: 12 + 64.1: 12 + 65.1: 12 + 65.2: 12 + 66: 12 + 67.1: 12 + 68: 12 + 69.1: 4853 + 69.2: 4853 + 70.1: 4853 + 71.1: 4853 _ZN9oceanbase3omt10ObThWorker20check_qtime_throttleEv:5027 + 71.2: 5368 + 72: 12 + 73.1: 12 + 74: 12 + 81: 5368 + 83: 5368 + 84: 5368 + 86: 5368 + 88: 5368 _ZN9oceanbase3rpc9ObRequest15set_trace_pointEi:5385 + 89.1: 4990 + 90: 81 + 91.1: 81 + 92.2: 4990 + 94: 81 + 95.1: 81 + 97.2: 4990 + 99: 81 + 100: 81 + 101.1: 81 + 102.1: 4990 _ZN9oceanbase3sql18ObBasicSessionInfo25check_and_init_retry_infoERKNS_6common12ObCurTraceId7TraceIdERKNS2_8ObStringE:5006 + 102.2: 4901 + 104.1: 81 + 105.2: 4901 + 107.1: 4901 + 107.2: 4901 _ZNK9oceanbase5share6schema27ObMultiVersionSchemaService37get_tenant_received_broadcast_versionEmRlb:4929 + 107.3: 5209 + 109.1: 81 + 110.1: 5209 _ZNK9oceanbase5share6schema27ObMultiVersionSchemaService37get_tenant_received_broadcast_versionEmRlb:5371 + 110.2: 5400 + 112.1: 81 + 113.2: 12 + 114: 5400 + 114.2: 12 + 114.3: 12 + 116.1: 12 + 117.3: 12 + 118: 5400 + 118.3: 12 + 118.4: 12 + 120.1: 12 + 121.2: 5286 + 121.3: 5286 _ZN9oceanbase8observer9ObMPUtils13init_flt_infoENS_7obmysql13Ob20ExtraInfoERNS_3sql16ObSQLSessionInfoEb:5541 + 121.4: 5096 + 123.1: 81 + 124.1: 5096 _ZN9oceanbase3sql18ObBasicSessionInfo21gen_configs_in_pc_strEv:5162 + 124.2: 5402 + 125.1: 81 + 128: 5370 _ZN9oceanbase5trace7ObTrace12get_instanceEv:5455 + 128.4: 4892 + 134.2: 5071 + 135: 5071 + 136: 5071 + 139: 5071 + 145.1: 5071 _ZN9oceanbase3lib6Worker23get_sql_arena_allocatorEv:5201 + 145.2: 5058 _ZN9oceanbase3sql8ObParserC1ERNS_6common12ObIAllocatorEmNS2_15ObCollationTypeE:5203 + 151: 4956 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:5202 + 151.2: 5020 + 153: 5020 _ZN9oceanbase3sql8ObParser9pre_parseERKNS_6common8ObStringERNS0_14PreParseResultE:5163 + 153.1: 5324 + 154.1: 81 + 156: 5324 + 163: 5136 + 165.1: 5136 _ZN9oceanbase3sql8ObParser19split_multiple_stmtERKNS_6common8ObStringERNS2_8ObIArrayIS3_EERNS0_13ObMPParseStatEbb:5251 + 165.2: 5150 + 169.1: 5150 + 169.2: 81 + 170: 81 + 170.1: 81 + 171.1: 81 + 172.2: 5150 + 173: 12 + 175.1: 12 + 176.1: 5150 + 177: 73 + 178.1: 73 + 185.1: 12 + 186.1: 73 + 188.1: 81 + 188.2: 81 + 195.3: 4875 + 212: 5008 + 213: 5008 + 214.1: 5008 + 214.2: 0 + 215: 5008 + 215.1: 0 + 215.2: 0 + 222.1: 0 + 223.1: 0 + 223.2: 0 + 224: 0 + 225: 5223 + 225.1: 0 + 226: 0 + 226.2: 0 + 227: 0 + 227.3: 0 + 228: 0 + 230.1: 0 + 231.1: 5179 + 232.2: 5179 + 232.4: 5179 + 235: 5179 + 236: 0 + 237: 0 + 237.1: 0 + 239: 5555 + 241: 5555 + 241.2: 0 + 241.3: 0 + 248: 0 + 252.1: 5235 + 256.1: 5235 + 257.2: 5235 _ZN9oceanbase8observer9ObMPQuery19process_single_stmtERKNS_3sql15ObMultiStmtItemERNS2_16ObSQLSessionInfoEbbRbS8_:5448 + 257.3: 5043 + 267.2: 5335 + 267.3: 0 + 267.4: 0 + 267.5: 0 + 267.6: 0 + 267.10: 0 + 267.11: 0 + 267.12: 0 + 269.1: 5020 + 270.2: 5337 + 270.3: 0 + 270.4: 0 + 270.5: 0 + 270.6: 0 + 270.10: 0 + 270.11: 0 + 270.12: 0 + 273.1: 12 + 274: 0 + 275: 0 + 277.1: 0 + 279.2: 12 + 279.3: 12 + 279.4: 12 + 279.5: 12 + 279.6: 12 + 279.10: 12 + 279.11: 12 + 279.12: 12 + 281.1: 12 + 281.2: 12 + 289: 4961 + 290: 81 + 292: 4961 _ZN9oceanbase6common13ObSEArrayImplINS0_8ObStringELl1ENS0_19ModulePageAllocatorELb0EED2Ev:5100 + 292.2: 0 + 292.3: 0 + 292.4: 0 + 292.9: 5605 _ZN9oceanbase6common13ObSEArrayImplINS0_8ObStringELl1ENS0_19ModulePageAllocatorELb0EED2Ev:5699 + 292.10: 5519 _ZN9oceanbase3sql8ObParserD1Ev:5606 + 295: 5160 + 295.1: 5160 _ZNK9oceanbase3omt10ObThWorker10need_retryEv:5391 + 297.1: 5033 + 299: 73 + 299.1: 73 + 301: 5129 _ZN9oceanbase3lib11ObLockGuardINS_6common16ObRecursiveMutexEED2Ev:5141 + 301.2: 0 + 301.6: 5589 _ZN9oceanbase3lib15CompatModeGuardD2Ev:5524 + 303: 5117 + 303.3: 12 + 304: 12 + 305: 12 + 306: 12 + 308: 12 + 309.1: 12 + 311: 5317 + 311.3: 0 + 312: 0 + 313.1: 0 + 317.1: 5006 _ZNK9oceanbase3omt10ObThWorker10need_retryEv:5096 + 317.2: 5181 + 318: 5347 + 319: 233 + 321.2: 4692 + 322: 0 + 323.1: 0 + 324.1: 4692 _ZN9oceanbase8observer8ObMPBase12flush_bufferEb:4744 + 324.2: 4894 + 325.1: 0 + 328: 73 + 335: 5166 + 339: 5198 + 340.67: 5198 + 20: _ZN9oceanbase6common12ObCurTraceId12get_trace_idEv:118874 + 5: 4580 + 5.1: 81 + 5.1: _ZN9oceanbase6common12ObCurTraceId7TraceIdC2Ev:2106 + 0: 81 + 21: _ZNK9oceanbase8observer8ObMPBase8get_connEv:174445 + 2: _ZNK9oceanbase8observer16ObMPPacketSender8get_connEv:174445 + 3: 4580 + 4.1: 81 + 5.1: 4580 + 6: 4580 _ZN9oceanbase3rpc20ObSqlRequestOperator15get_sql_sessionEPNS0_9ObRequestE:5110 + 39.1: _ZN9oceanbase8observer14ObSMConnection18is_in_authed_phaseEv:18576 + 0: 4644 + 45.1: _ZN9oceanbase8observer8ObMPBase11get_sessionERPNS_3sql16ObSQLSessionInfoE:55728 + 2: 4644 _ZN9oceanbase8observer16ObMPPacketSender11get_sessionERPNS_3sql16ObSQLSessionInfoE:4741 + 50.4: _ZN9oceanbase5share12ObCgroupCtrl8is_validEv:22096 + 0: 5524 + 51: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:567 + 0: 81 + 51.1: _ZNK9oceanbase3sql18ObBasicSessionInfo11get_user_idEv:567 + 0: 81 + 54: _ZNK9oceanbase3sql18ObBasicSessionInfo22get_compatibility_modeEv:169626 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12get_sql_modeEv:169626 + 0: 4989 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache12get_sql_modeEv:159648 + 0: 4989 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache12get_sql_modeEb:109758 + 0: 4989 + 54.1: _ZN9oceanbase3lib15CompatModeGuardC2ENS0_6Worker10CompatModeE:518955 + 2: 4989 + 2: _ZN9oceanbase3lib6Worker4selfEv:142284 + 3: 4989 + 4: 81 + 2.1: _ZN9oceanbase3lib6Worker22get_compatibility_modeEv:218739 + 2: _ZN9oceanbase3lib15get_compat_modeEv:218739 + 2: 4989 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:128937 + 2: 4989 + 2.1: 81 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:1782 + 1: 81 + 3: _ZN9oceanbase3lib6Worker4selfEv:47088 + 3: 4989 + 4: 81 + 3.1: _ZN9oceanbase3lib6Worker22set_compatibility_modeENS1_10CompatModeE:95877 + 2: _ZN9oceanbase3lib15set_compat_modeENS0_6Worker10CompatModeE:95877 + 2: 4989 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:6075 + 2: 81 + 2.1: 81 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:1782 + 1: 81 + 56: _ZN9oceanbase3lib6Worker4selfEv:47493 + 3: 4989 + 4: 81 + 56.1: _ZN9oceanbase3lib6Worker11set_sessionEPNS_3sql16ObSQLSessionInfoE:34923 + 2: 4989 + 58: _ZN9oceanbase3sql18ObBasicSessionInfo14get_query_lockEv:34923 + 0: 4989 + 58.1: _ZN9oceanbase3lib11ObLockGuardINS_6common16ObRecursiveMutexEEC2ERS3_:782402 + 1: 4989 + 2: 4989 + 4: 4853 + 5.1: 81 + 4: _ZN9oceanbase6common16ObRecursiveMutex4lockEv:628027 + 2: 4989 + 3: 4989 + 4: 12 + 6: 5365 _ZN9oceanbase6common7ObLatch6wrlockEjlPKj:5370 + 7.1: 81 + 9: 4853 + 12: 4853 + 3: _ZNK9oceanbase6common7ObLatch14is_wrlocked_byEPKj:311214 + 3: 4989 + 4: 4989 + 2.1: _Z9ob_gettidv:271302 + 3: 4989 + 4: 81 + 2: _Z13get_tid_cachev:128451 + 7: 4989 + 7.1: 81 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:1863 + 0: 81 + 59: _ZN9oceanbase6common12ObCurTraceId12get_trace_idEv:125699 + 5: 4853 + 5.1: 81 + 5.1: _ZN9oceanbase6common12ObCurTraceId7TraceIdC2Ev:2106 + 0: 81 + 59.1: _ZN9oceanbase3sql18ObBasicSessionInfo20set_current_trace_idEPNS_6common12ObCurTraceId7TraceIdE:189267 + 4: 4853 + 61: _ZNK9oceanbase3sql18ObBasicSessionInfo11get_user_idEv:33971 + 0: 4853 + 61.1: _ZN9oceanbase6common12is_root_userEm:102480 + 2: 4853 + 63: _ZNK9oceanbase3sql16ObSQLSessionInfo8is_innerEv:84 + 2: 12 + 65: _ZN9oceanbase3lib6Worker4selfEv:336 + 3: 12 + 4: 0 + 69.1: _ZN9oceanbase3sql18ObBasicSessionInfo33get_sql_throttle_current_priorityERl:155296 + 2: 4853 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache33get_sql_throttle_current_priorityEv:140737 + 0: 4853 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache33get_sql_throttle_current_priorityEb:106766 + 0: 4853 + 70: _ZN9oceanbase3lib6Worker4selfEv:138638 + 3: 4853 + 4: 81 + 70.4: _ZN9oceanbase3lib6Worker33set_sql_throttle_current_priorityEl:34538 + 1: 4853 + 71: _ZN9oceanbase3lib6Worker4selfEv:3321 + 3: 81 + 4: 81 + 85: _Z9ob_gettidv:291389 + 3: 5368 + 4: 81 + 2: _Z13get_tid_cachev:137926 + 7: 5368 + 7.1: 81 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:1863 + 0: 81 + 85.1: _ZN9oceanbase3sql18ObBasicSessionInfo13set_thread_idEl:59048 + 0: 5368 + 86: _ZNK9oceanbase3rpc9ObRequest10get_packetEv:37576 + 2: 5368 + 87: _ZNK9oceanbase7obmysql16ObMySQLRawPacket8get_clenEv:21472 + 2: 5368 + 92.1: _ZNK9oceanbase3sql18ObBasicSessionInfo9is_zombieEv:39920 + 0: 4990 + 105.1: _ZNK9oceanbase3sql18ObBasicSessionInfo17get_query_timeoutERl:210743 + 2: 4901 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache20get_ob_query_timeoutEv:161733 + 0: 4901 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache20get_ob_query_timeoutEb:112723 + 0: 4901 + 107.1: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:34307 + 0: 4901 + 113.1: _ZNK9oceanbase7obmysql16ObMySQLRawPacket16exist_trace_infoEv:21600 + 0: 5400 + 114.1: _ZNK9oceanbase7obmysql16ObMySQLRawPacket14get_trace_infoEv:48 + 0: 12 + 117.2: _ZNK9oceanbase7obmysql13Ob20ExtraInfo20exist_sync_sess_infoEv:27000 + 0: _ZNK9oceanbase6common8ObString5emptyEv:27000 + 2: 5400 + 118.2: _ZNK9oceanbase7obmysql13Ob20ExtraInfo18get_sync_sess_infoEv:48 + 0: 12 + 121.2: _ZNK9oceanbase7obmysql22ObProxyCapabilityFlags26is_full_link_trace_supportEv:111006 + 1: 5286 + 127: _ZN9oceanbase5trace16__ObFLTSpanGuardC2Ejh:116002 + 2: 5402 _ZN9oceanbase5trace7ObTrace12get_instanceEv:5467 + 2.1: 5570 _ZN9oceanbase5trace7ObTrace10begin_spanEjhb:5769 + 128.1: _ZN9oceanbase6common12ObCurTraceId16get_trace_id_strEv:1468732 + 2: _ZN9oceanbase6common12ObCurTraceId12get_trace_idEv:135049 + 5: 5227 + 5.1: 81 + 5.1: _ZN9oceanbase6common12ObCurTraceId7TraceIdC2Ev:2106 + 0: 81 + 2.1: _ZN9oceanbase6common10to_cstringINS0_12ObCurTraceId7TraceIdEEEPKcRKT_:1333683 + 2: _ZN9oceanbase6common10to_cstringINS0_12ObCurTraceId7TraceIdEEEPKcRKT_NS0_8BoolTypeILb0EEE:1333683 + 7: 5227 + 8.1: 12 + 12: 4892 + 13: 4892 + 15: 81 + 4: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_13CStringBufMgrELm0EEEPT_v:149596 + 7: 5227 + 8: 81 + 8.1: 81 + 5: _ZN9oceanbase6common13CStringBufMgr9inc_levelEv:57497 + 0: 5227 + 6: _ZN9oceanbase6common13CStringBufMgr7acquireEv:439672 + 3: 5227 + 5: 12 + 6: 5227 + 10.1: 81 + 11: 81 + 12: 81 + 18.1: 81 + 18.2: 81 + 18.4: 81 + 19: 81 + 20: 81 + 21: 81 + 4: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_13CStringBufMgr8BufArrayELm0EEEPT_v:146776 + 7: 5227 + 8: 12 + 8.1: 12 + 18.1: _ZN9oceanbase3lib7ObLabelC2IA13_cEERKT_:1377 + 2: _ZN9oceanbase3lib7ObLabelaSILm13EEERS1_RAT__Kc:1377 + 4: 81 + 11: _ZN9oceanbase6common9to_stringINS0_12ObCurTraceId7TraceIdEEElRKT_Pcl:384453 + 2: _ZNK9oceanbase6common12ObCurTraceId7TraceId9to_stringEPcl:384453 + 2: 5227 + 3: 5227 _ZN9oceanbase6common15databuff_printfEPclRlPKcz:5257 + 5: 4892 + 18: _ZN9oceanbase6common13CStringBufMgr14try_clear_listEv:102732 + 2: 4892 + 3.1: 4892 + 5: 0 + 6.2: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 19: _ZN9oceanbase6common13CStringBufMgr9dec_levelEv:58704 + 0: 4892 + 128.2: _ZNK9oceanbase3rpc5frame14ObReqProcessor21get_receive_timestampEv:19568 + 2: 4892 + 128.6: _ZNK9oceanbase3sql18ObBasicSessionInfo10get_sessidEv:215248 + 0: 4892 + 128.7: _ZN9oceanbase5trace7ObTrace7set_tagIPKcJ9ObTagTypelS5_NS_6common8ObStringES5_S7_S5_S7_S5_jEEEvS5_RKT_DpT0_:101841 + 2.1: 0 + 3: 5030 + 3.1: 57 + 4: 57 + 4.1: 0 + 6: 81 + 9.10: 0 + 2: _ZNK9oceanbase5trace4UUID9is_initedEv:54787 + 0: 4892 + 0.1: 5030 + 5: _ZN9oceanbase5trace7ObTrace10append_tagIPKcLb1EEEb9ObTagTypeRKT_:243 + 3: 81 + 6: 0 + 7: 0 + 10: 0 + 11: 0 + 12: 0 + 13: 0 + 14: 0 + 10: _ZN9oceanbase5trace8ObTagCtxIPvEC2Ev:0 + 0: 0 + 7: _ZN9oceanbase5trace7ObTrace10append_tagIPKcLb1EEEb9ObTagTypeRKT_:10530 + 3: 81 + 6: 81 + 7: 81 + 10: 81 + 11: 81 + 12: 81 + 13: 81 + 14: 81 + 10: _ZN9oceanbase5trace8ObTagCtxIPvEC2Ev:1539 + 0: 81 + 134: _ZN9oceanbase3lib6Worker4selfEv:144580 + 3: 5071 + 4: 81 + 134.2: _ZN9oceanbase3lib6Worker14set_timeout_tsEl:35497 + 0: 5071 + 135: _ZN9oceanbase8observer16ObQueryRetryCtrl32set_tenant_global_schema_versionEl:35497 + 2: 5071 + 136: _ZN9oceanbase8observer16ObQueryRetryCtrl29set_sys_global_schema_versionEl:35497 + 2: 5071 + 137.1: _ZN9oceanbase3sql18ObPartitionHitInfo5resetEv:50710 + 0: 5071 + 138: _ZN9oceanbase3sql16ObSQLSessionInfo16set_pl_can_retryEb:40568 + 0: 5071 + 140: _ZNK9oceanbase3sql18ObBasicSessionInfo10get_sessidEv:65923 + 0: 5071 + 140.1: _ZN9oceanbase3rpc14ObLockWaitNode16set_session_infoEj:111108 + 1: 5071 + 2: 5071 + 3: 81 + 4.1: 81 + 6: 5071 + 145: _ZN9oceanbase3lib6Worker4selfEv:50175 + 3: 5071 + 4: 81 + 146: _ZNK9oceanbase3sql18ObBasicSessionInfo12get_sql_modeEv:268074 + 0: 5058 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache12get_sql_modeEv:252900 + 0: 5058 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache12get_sql_modeEb:126450 + 0: 5058 + 146.1: _ZNK9oceanbase3sql18ObBasicSessionInfo30get_local_collation_connectionEv:156798 + 2: 5058 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_collation_connectionEv:111276 + 0: 5058 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_collation_connectionEb:91044 + 0: 5058 + 148: _ZN9oceanbase6common9ObSEArrayINS0_8ObStringELl1ENS0_19ModulePageAllocatorELb0EEC2Ev:827652 + 0.1: 4956 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS0_8ObStringELl1ENS0_19ModulePageAllocatorELb0EEC2ElRKS3_:738444 + 2: 4956 + 5: 4956 + 6: 4956 + 8: 4956 + 17.1: 4956 + 2: _ZN9oceanbase6common8ObIArrayINS0_8ObStringEEC2EPS2_l:89208 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_8ObStringEEC2EPS2_l:89208 + 0: 4956 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:282492 + 0: 4956 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:123900 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:123900 + 2: 4956 + 8: 4956 + 149: _ZN9oceanbase6common9ObSEArrayINS0_8ObStringELl1ENS0_19ModulePageAllocatorELb0EEC2Ev:579852 + 0.1: 4956 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS0_8ObStringELl1ENS0_19ModulePageAllocatorELb0EEC2ElRKS3_:545160 + 2: 4956 + 5: 4956 + 6: 4956 + 8: 4956 + 17.1: 4956 + 2: _ZN9oceanbase6common8ObIArrayINS0_8ObStringEEC2EPS2_l:89208 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_8ObStringEEC2EPS2_l:89208 + 0: 4956 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:158592 + 0: 4956 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:89208 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:89208 + 2: 4956 + 8: 4956 + 150: _ZN9oceanbase3sql13ObMPParseStatC2Ev:138768 + 0: 4956 + 152: _ZN9oceanbase3sql14PreParseResultC2Ev:105420 + 0: _ZN9oceanbase6common8ObStringC2Ev:105420 + 1: 5020 + 156: _ZN9oceanbase3sql18ObBasicSessionInfo16set_app_trace_idENS_6common8ObStringE:155480 + 1.2: _ZN9oceanbase6common8ObString10assign_ptrEPKci:155480 + 2: 5324 + 3: 5324 + 5: 5324 + 162: _ZN9oceanbase3sql16ObSQLSessionInfo33is_enable_batched_multi_statementEv:70828 + 2: 5476 _ZN9oceanbase3sql16ObSQLSessionInfo24ObCachedTenantConfigInfo7refreshEv:5564 + 3: _ZNK9oceanbase3sql16ObSQLSessionInfo24ObCachedTenantConfigInfo34get_enable_batched_multi_statementEv:10300 + 0: 5150 + 172.1: _ZNK9oceanbase6common12ObIArrayWrapINS0_8ObStringEE5countEv:36050 + 0: 5150 + 178: _ZN9oceanbase8observer9ObMPQuery35try_batched_multi_stmt_optimizationERNS_3sql16ObSQLSessionInfoERNS_6common8ObIArrayINS5_8ObStringEEERKNS2_13ObMPParseStatERbSD_SD_b:24811 + 8: 73 + 11: 73 + 13: 73 + 14: 73 + 14.2: 73 + 15: 73 + 21.2: 73 + 21.4: 73 + 28: 12 + 29.1: 12 + 31.1: 12 + 34: 73 + 36.1: 73 + 38: 73 + 11: _ZN9oceanbase3sql16ObSQLSessionInfo33is_enable_batched_multi_statementEv:1095 + 2: 73 + 3: _ZNK9oceanbase3sql16ObSQLSessionInfo24ObCachedTenantConfigInfo34get_enable_batched_multi_statementEv:511 + 0: 73 + 12: _ZNK9oceanbase3sql18ObBasicSessionInfo30get_local_ob_enable_plan_cacheEv:2263 + 2: 73 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_ob_enable_plan_cacheEv:1314 + 0: 73 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_ob_enable_plan_cacheEb:511 + 0: 73 + 15.1: _ZN9oceanbase6common16ObClusterVersion19get_cluster_versionEv:292 + 0: 73 + 21.1: _ZN9oceanbase3sql15ObMultiStmtItemC2EblRKNS_6common8ObStringEPKNS2_8ObIArrayIS3_EEb:6424 + 5: 73 + 6: 73 + 7: 73 + 8: 73 + 9: 73 + 11: 73 + 12: 73 + 188: _ZN9oceanbase3sql15ObMultiStmtItemC2EblRKNS_6common8ObStringE:6885 + 1: 81 + 2: 81 + 3: 81 + 4: 81 + 5: 81 + 7: 81 + 8: 81 + 224.1: _ZN9oceanbase3sql16ObSQLSessionInfo33is_enable_batched_multi_statementEv:77725 + 2: 5068 _ZN9oceanbase3sql16ObSQLSessionInfo24ObCachedTenantConfigInfo7refreshEv:5176 + 3: _ZNK9oceanbase3sql16ObSQLSessionInfo24ObCachedTenantConfigInfo34get_enable_batched_multi_statementEv:36561 + 0: 5223 + 226.1: _ZN9oceanbase6common12ObIArrayWrapINS0_8ObStringEE2atEl:0 + 6: 0 + 232: _ZNK9oceanbase6common12ObIArrayWrapINS0_8ObStringEE5countEv:88043 + 0: 5179 + 252: _ZNK9oceanbase6common12ObIArrayWrapINS0_8ObStringEE5countEv:36645 + 0: 5235 + 257: _ZN9oceanbase6common12ObIArrayWrapINS0_8ObStringEE2atEl:36645 + 6: 5235 + 257.1: _ZN9oceanbase3sql15ObMultiStmtItemC2EblRKNS_6common8ObStringE:335040 + 1: 5235 + 2: 5235 + 3: 5235 + 4: 5235 + 5: 5235 + 7: 5235 + 8: 5235 + 267.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:26382 + 2: 5042 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:5049 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:21340 + 2: 5335 + 270.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:26368 + 2: 5020 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:5040 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:21348 + 2: 5337 + 279.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:108 + 2: 12 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:48 + 2: 12 + 281: _ZN9oceanbase3sql15ObMultiStmtItemC2EblRKNS_6common8ObStringE:720 + 1: 12 + 2: 12 + 3: 12 + 4: 12 + 5: 12 + 7: 12 + 8: 12 + 290.1: _ZN9oceanbase5trace7ObTrace7set_tagIiJEEEv9ObTagTypeRKT_DpT0_:11289 + 2.1: 81 + 3.1: 81 + 4: 81 + 4.1: 81 + 6: 0 + 2: _ZNK9oceanbase5trace4UUID9is_initedEv:1083 + 0: 81 + 0.1: 12 + 5: _ZN9oceanbase5trace7ObTrace10append_tagIiLb1EEEb9ObTagTypeRKT_:1458 + 3: 81 + 7: _ZN9oceanbase5trace7ObTrace10append_tagIiLb1EEEb9ObTagTypeRKT_:0 + 3: 0 + 292.7: _ZN9oceanbase5trace16__ObFLTSpanGuardD2Ev:0 + 0: 0 + 0.1: 0 + 0.2: 0 + 0.4: 0 + 0.5: 0 + 0.7: 0 + 0.8: 0 + 0.12: 0 + 0.3: _ZNK9oceanbase5trace4UUID9is_initedEv:0 + 0: 0 + 0.1: 0 + 0.6: _ZN9oceanbase5trace7ObTrace13is_auto_flushEv:0 + 0: 0 + 292.11: _ZN9oceanbase5trace16__ObFLTSpanGuardD2Ev:38001 + 0: 5497 + 0.1: 73 + 0.2: 73 + 0.4: 81 + 0.5: 73 + 0.7: 73 + 0.8: 73 + 0.12: 0 + 0.3: _ZNK9oceanbase5trace4UUID9is_initedEv:1208 + 0: 73 + 0.1: 81 + 0.6: _ZN9oceanbase5trace7ObTrace13is_auto_flushEv:511 + 0: 73 + 295: _ZN9oceanbase3lib6Worker4selfEv:147072 + 3: 5160 + 4: 81 + 295.2: _ZN9oceanbase3sql18ObBasicSessionInfo26check_and_reset_retry_infoERKNS_6common12ObCurTraceId7TraceIdEb:128081 + 7: 5606 + 8: 5606 _ZN9oceanbase3sql16ObQueryRetryInfo5resetEv:5695 + 10: 5475 _ZN9oceanbase6common12ObCurTraceId7TraceId3setERKS2_:5550 + 296: _ZN9oceanbase6common12ObCurTraceId12get_trace_idEv:130199 + 5: 5033 + 5.1: 81 + 5.1: _ZN9oceanbase6common12ObCurTraceId7TraceIdC2Ev:2106 + 0: 81 + 296.1: _ZN9oceanbase3sql18ObBasicSessionInfo17set_last_trace_idEPNS_6common12ObCurTraceId7TraceIdE:196287 + 4: 5033 + 297: _ZNK9oceanbase3sql18ObBasicSessionInfo18get_in_transactionEv:95627 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo17is_in_transactionEv:95627 + 0: 5033 + 0.1: _ZNK9oceanbase11transaction8ObTxDesc8is_in_txEv:35231 + 0: 5033 + 301.4: _ZN9oceanbase3lib15CompatModeGuardD2Ev:0 + 2.1: 0 + 2.2: 0 + 2: _ZN9oceanbase3lib6Worker4selfEv:0 + 3: 0 + 4: 0 + 2.1: _ZN9oceanbase3lib6Worker22set_compatibility_modeENS1_10CompatModeE:0 + 2: _ZN9oceanbase3lib15set_compat_modeENS0_6Worker10CompatModeE:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 303.2: _ZNK9oceanbase8observer8ObMPBase13is_conn_validEv:84 + 0: _ZNK9oceanbase8observer16ObMPPacketSender13is_conn_validEv:84 + 0: 12 + 311.2: _ZNK9oceanbase8observer8ObMPBase13is_conn_validEv:0 + 0: _ZNK9oceanbase8observer16ObMPPacketSender13is_conn_validEv:0 + 0: 0 + 317: _ZN9oceanbase3lib6Worker4selfEv:142760 + 3: 5006 + 4: 81 + 320: _ZN9oceanbase8observer16ObMPPacketSender16disable_responseEv:1679 + 0: 233 + 321.1: _ZNK9oceanbase8observer8ObMPBase13is_conn_validEv:32844 + 0: _ZNK9oceanbase8observer16ObMPPacketSender13is_conn_validEv:32844 + 0: 4692 + 333: _ZN9oceanbase3lib6Worker4selfEv:147240 + 3: 5166 + 4: 81 + 333.1: _ZN9oceanbase3lib6Worker11set_sessionEPNS_3sql16ObSQLSessionInfoE:56826 + 2: 5166 + 336: _ZN9oceanbase8observer8ObMPBase14revert_sessionEPNS_3sql16ObSQLSessionInfoE:5506 + 2: 5166 _ZN9oceanbase8observer16ObMPPacketSender14revert_sessionEPNS_3sql16ObSQLSessionInfoE:5480 + 340.67: _ZN9oceanbase6common12ScopedLambdaIZNS_8observer9ObMPQuery7processEvE5$_674ED2Ev:25840 + 1.1: _ZZN9oceanbase8observer9ObMPQuery7processEvEN5$_674clEv:25840 + 0: 4998 + 0.1: 85 + 340.68: _ZN9oceanbase6common12ScopedLambdaIZNS_8observer9ObMPQuery7processEvE5$_674ED2Ev:0 + 1.1: _ZZN9oceanbase8observer9ObMPQuery7processEvEN5$_674clEv:0 + 0: 0 + 0.1: 0 +_ZN9oceanbase6common14ObServerConfig12get_instanceEv:15373860:529289 + 1: 512462 + 2: 512462 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 3: 512462 +_ZN9oceanbase7storage15ObMultipleMerge20project2output_exprsERNS_12blocksstable10ObDatumRowES4_:15347971:114168 + 1: 103643 + 5: 103643 + 8: 114932 _ZN9oceanbase7storage20ObRow2ExprsProjector7projectERKNS_6common8ObIArrayIPNS_3sql6ObExprEEEPKNS_12blocksstable14ObStorageDatumEPsRl:107275 + 11.1: 89 + 15: 114932 + 3: _ZN9oceanbase7storage8ObNopPos5resetEv:1865574 + 2: 103643 + 7: _ZN9oceanbase12blocksstable12ObDmlRowFlagaSERKS1_:3834791 + 3: 103643 + 2: _ZNK9oceanbase12blocksstable12ObDmlRowFlag8is_validEv:3109290 + 2: 103643 +_ZN9oceanbase7storage19ObSSTableRowScanner9fetch_rowERNS0_19ObSSTableReadHandleERPKNS_12blocksstable10ObDatumRowE:15161178:99566 + 1: 97031 + 2: 97031 + 3: 97031 + 4: 502 + 5.1: 502 + 6.1: 97031 + 12: 97030 + 12.1: 95991 + 13: 95991 + 16: 1033 + 20: 1033 _ZN9oceanbase7storage19ObSSTableRowScanner19open_cur_data_blockERNS0_19ObSSTableReadHandleE:1101 + 22.1: 502 + 24.1: 0 + 25: 502 + 26.1: 502 + 31.1: 101673 + 32: 103377 _ZN9oceanbase12blocksstable23ObIMicroBlockRowScanner12get_next_rowERPKNS0_10ObDatumRowE:109931 + 34.1: 502 + 35.1: 3152 + 39.1: 2164 + 40.1: 2183 _ZN9oceanbase7storage19ObSSTableRowScanner19open_cur_data_blockERNS0_19ObSSTableReadHandleE:1744 + 42.1: 502 + 44.1: 518 + 45: 502 + 46.1: 502 + 50: 104904 + 55: 106092 + 24.1: _ZNK9oceanbase7storage19ObSSTableRowScanner13can_vectorizeEv:15360 + 2: 1024 + 2.1: 1024 + 3: 0 + 2.1: _ZNK9oceanbase7storage16ObTableIterParam19enable_pd_aggregateEv:4096 + 1: 1024 + 3.1: _ZNK9oceanbase7storage15ObBlockRowStore14filter_appliedEv:0 + 0: 0 + 44.1: _ZNK9oceanbase7storage19ObSSTableRowScanner13can_vectorizeEv:39997 + 2: 2183 + 2.1: 2183 + 3: 518 + 2.1: _ZNK9oceanbase7storage16ObTableIterParam19enable_pd_aggregateEv:8732 + 1: 2183 + 3.1: _ZNK9oceanbase7storage15ObBlockRowStore14filter_appliedEv:2072 + 0: 518 +_ZN9oceanbase3sql11ObPlanCache13get_cache_objERNS0_14ObILibCacheCtxEPNS0_14ObILibCacheKeyERNS0_15ObCacheObjGuardE:14843535:4799 + 3: 4582 + 4: 4582 + 5: 4582 + 6: 4582 + 9: 4582 + 10: 0 + 11.1: 0 + 12.2: 4577 + 13: 0 + 15.1: 4577 + 16: 0 + 20: 4577 + 20.1: 4612 + 21.1: 0 + 22.1: 4612 + 22.2: 4409 + 27: 4409 + 31: 4409 + 32: 4409 + 33.2: 4161 + 33.4: 0 + 33.7: 0 + 36: 4161 + 37.3: 4161 + 8: _ZN9oceanbase3sql21ObLibCacheRlockAndRefC2ENS0_16CacheRefHandleIDE:137460 + 2: 4582 + 1: _ZN9oceanbase3sql18ObLibCacheAtomicOpC2ENS0_16CacheRefHandleIDE:68730 + 1: 4582 + 12.1: _ZN9oceanbase3sql11ObPlanCache9get_valueEPNS0_14ObILibCacheKeyERPNS0_15ObILibCacheNodeERNS0_18ObLibCacheAtomicOpE:12256198 + 4: 4582 + 7: 4577 + 10: 4577 + 20.1: 0 + 25: 0 + 6: _ZN9oceanbase6common4hash9ObHashMapIPNS_3sql14ObILibCacheKeyEPNS3_15ObILibCacheNodeENS1_24LatchReadWriteDefendModeENS1_9hash_funcIS5_EENS1_8equal_toIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS5_S7_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE11read_atomicINS3_18ObLibCacheAtomicOpEEEiRKS5_RT_:10974603 + 2: _ZN9oceanbase6common4hash11ObHashTableIPNS_3sql14ObILibCacheKeyENS1_11HashMapPairIS5_PNS3_15ObILibCacheNodeEEENS1_9hash_funcIS5_EENS1_8equal_toIS5_EENS1_10pair_firstIS9_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS9_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE11read_atomicINS3_18ObLibCacheAtomicOpEEEiRKS5_RT_:10974603 + 2: _ZN9oceanbase6common4hash11ObHashTableIPNS_3sql14ObILibCacheKeyENS1_11HashMapPairIS5_PNS3_15ObILibCacheNodeEEENS1_9hash_funcIS5_EENS1_8equal_toIS5_EENS1_10pair_firstIS9_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS9_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE11read_atomicINS3_18ObLibCacheAtomicOpENS1_8pre_procIS9_EEEEiRKS5_RT_RT0_:10974603 + 4: 4582 + 4.1: 4582 + 5.1: 0 + 9: 4704 + 10: 0 + 15.1: 4547 + 17.1: 4567 + 17.2: 0 + 4: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairIPNS_3sql14ObILibCacheKeyEPNS5_15ObILibCacheNodeEEENS0_7ObLatchENS1_5NCondEEEEEbRKT_:45820 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairIPNS_3sql14ObILibCacheKeyEPNS5_15ObILibCacheNodeEEENS0_7ObLatchENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:45820 + 2: 4582 + 8: _ZNK9oceanbase6common4hash9hash_funcIPNS_3sql14ObILibCacheKeyEEclES5_:8746925 + 2: 4582 + 2: _ZNK9oceanbase3sql14ObPlanCacheKey4hashEv:8563645 + 2: _ZNK9oceanbase6common8ObString4hashEm:1468323 + 2: 4582 + 2.1: 4582 + 4: 4738 + 3: _ZN9oceanbase6common10murmurhashEPKvim:1307485 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:1307485 + 8: 4582 + 10.1: 4582 + 11: 4582 + 13: 4582 + 14: 4582 + 15: 4582 + 17: 4582 + 23: 4657 + 25: 407 + 27: 576 + 29: 576 + 31: 940 + 33: 1276 + 35: 1680 + 37: 3590 + 38: 3590 + 41: 4738 + 42: 4738 + 43: 4738 + 3: _ZN9oceanbase6common10murmurhashEPKvim:236900 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:236900 + 13: 4738 + 14: 4738 + 15: 4738 + 17: 4738 + 18: 4738 + 41: 4738 + 42: 4738 + 43: 4738 + 4: _ZN9oceanbase6common10murmurhashEPKvim:217948 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:217948 + 5: 4738 + 13: 4738 + 14: 4738 + 15: 4738 + 17: 4738 + 18: 4738 + 41: 4738 + 42: 4738 + 43: 4738 + 5: _ZN9oceanbase6common10murmurhashEPKvim:175306 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:175306 + 31: 4738 + 33: 4738 + 35: 4738 + 37: 4738 + 38: 4738 + 41: 4738 + 42: 4738 + 43: 4738 + 6: _ZN9oceanbase6common10murmurhashEPKvim:180044 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:180044 + 5: 4738 + 37: 4738 + 38: 4738 + 41: 4738 + 42: 4738 + 43: 4738 + 7: _ZNK9oceanbase6common8ObString4hashEm:5270083 + 2: 4738 + 2.1: 4738 + 3: _ZN9oceanbase6common10murmurhashEPKvim:5146895 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:5146895 + 5: 4738 + 8: 4738 + 10: 4815 + 10.1: 75796 + 11: 0 + 13: 75796 + 14: 75796 + 15: 75796 + 17: 75796 + 18: 75796 + 23: 4781 + 25: 1 + 27: 1 + 29: 1 + 31: 1 + 33: 1 + 35: 1 + 37: 1 + 38: 1 + 41: 4741 + 42: 4741 + 43: 4741 + 8: _ZNK9oceanbase6common8ObString4hashEm:505381 + 2: 4741 + 2.1: 3103 + 3: _ZN9oceanbase6common10murmurhashEPKvim:442629 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:442629 + 5: 3103 + 8: 3103 + 10.1: 3103 + 11: 3000 + 13: 3000 + 14: 3000 + 15: 3000 + 17: 3000 + 18: 3000 + 23: 3131 + 25: 6 + 27: 6 + 29: 6 + 31: 6 + 33: 3131 + 35: 3131 + 37: 3131 + 38: 3131 + 41: 3131 + 42: 3131 + 43: 3131 + 9: _ZN9oceanbase6common10murmurhashEPKvim:333984 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:333984 + 5: 4704 + 31: 4704 + 33: 4704 + 35: 4704 + 37: 4704 + 38: 4704 + 41: 4704 + 42: 4704 + 43: 4704 + 12: _ZN9oceanbase6common4hash16ObBucketLockCondINS1_11HashMapPairIPNS_3sql14ObILibCacheKeyEPNS4_15ObILibCacheNodeEEENS1_24LatchReadWriteDefendModeEE4lockEv:84672 + 2: 4704 + 12.1: _ZN9oceanbase6common4hash15LatchReadLockerC2ERNS0_7ObLatchE:92377 + 3: 4704 _ZN9oceanbase6common7ObLatch6rdlockEjl:4809 + 4.1: 0 + 16: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_11HashMapPairIPNS_3sql14ObILibCacheKeyEPNS4_15ObILibCacheNodeEEEE16check_magic_codeEv:13701 + 0: 4567 + 16.1: _ZL12abort_unlessb:27402 + 5: 4567 + 6: 0 + 17.1: _ZNK9oceanbase6common4hash8equal_toIPNS_3sql14ObILibCacheKeyEEclES5_S5_:1247532 + 2: 4567 + 2: _ZNK9oceanbase3sql14ObILibCacheKeyeqERKS1_:1174460 + 3: 4567 + 6: 4567 + 6: _ZNK9oceanbase3sql14ObPlanCacheKey8is_equalERKNS0_14ObILibCacheKeyE:1032883 + 3: 6 + 4: 4825 + 5: 4825 + 6: 4825 + 7: 4825 + 8: 17 + 9: 1583 + 3: _ZNK9oceanbase6common8ObStringeqERKS1_:272585 + 2: 6 + 2: _ZNK9oceanbase6common8ObString7compareERKS1_:272567 + 3: 4567 + 5.1: 4589 + 7.1: 4842 + 7.2: 4589 + 65406: 25 + 7.1: _ZSt3minIiERKT_S2_S2_:64917 + 5: 4842 + 8: _ZNK9oceanbase6common8ObStringeqERKS1_:262524 + 2: 17 + 2: _ZNK9oceanbase6common8ObString7compareERKS1_:262473 + 3: 4825 + 5.1: 4770 + 7.1: 4770 + 7.2: 4770 + 7.1: _ZSt3minIiERKT_S2_S2_:66517 + 5: 4825 + 9: _ZNK9oceanbase6common8ObStringeqERKS1_:220778 + 2: 1583 + 2: _ZNK9oceanbase6common8ObString7compareERKS1_:216029 + 3: 4599 + 5.1: 2948 + 7.1: 3085 + 7.2: 2948 + 7.1: _ZSt3minIiERKT_S2_S2_:48287 + 5: 4599 + 18.1: _ZN9oceanbase3sql18ObLibCacheAtomicOpclERNS_6common4hash11HashMapPairIPNS0_14ObILibCacheKeyEPNS0_15ObILibCacheNodeEEE:231138 + 2: 4462 + 3: 4462 + 4: 4135 + 3: _ZN9oceanbase3sql15ObILibCacheNode13inc_ref_countENS0_16CacheRefHandleIDE:126666 + 2: 4462 + 3: 4462 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:4545 + 4: 0 + 5: 0 + 6.1: 0 + 11: 4135 + 8.1: _ZN9oceanbase3sql19ObCacheRefHandleMgr13record_ref_opENS0_16CacheRefHandleIDE:0 + 3: 0 + 5.1: 0 + 25: _ZN9oceanbase6common4hash15LatchReadLockerD2Ev:0 + 2: 0 + 3: 0 + 3.1: 0 + 25.1: _ZN9oceanbase6common4hash15LatchReadLockerD2Ev:33080 + 2: 4135 + 3: 4135 _ZN9oceanbase6common7ObLatch6unlockEPKj:4851 + 3.1: 0 + 10: _ZN9oceanbase3sql18ObLibCacheAtomicOp9get_valueERPNS0_15ObILibCacheNodeE:1093903 + 3: 4577 + 4: 4577 + 6.1: 0 + 7.1: 4577 + 8: 4577 + 10: 0 + 11: 0 + 7.1: _ZN9oceanbase3sql21ObLibCacheRlockAndRef4lockERNS0_15ObILibCacheNodeE:869630 + 2: 4577 + 2: _ZN9oceanbase3sql15ObILibCacheNode4lockEb:778090 + 6: 0 + 7: 0 + 5: _ZN9oceanbase6common8TCRWLock10try_rdlockEv:778090 + 3: 4577 + 5: 4577 + 8.1: 0 + 4: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:18308 + 0: 4577 + 4.1: _ZN9oceanbase6common5TCRef7inc_refEPi:590433 + 2: 4577 + 4.1: 4577 + 4.2: 0 + 6: 4577 + 6.1: 4577 + 10: 4577 + 2: _ZN9oceanbase6common8get_itidEv:128156 + 4: 4577 + 5: 0 + 6: 0 + 8: 0 + 11: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 8: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:0 + 0: 0 + 9: _ZN9oceanbase6common9LWaitCond6signalEv:0 + 2: 0 + 2.1: 0 + 3: 0 + 20: _ZN9oceanbase3sql15ObILibCacheNode16update_node_statERNS0_14ObILibCacheCtxE:78369 + 3: 4612 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:4591 + 4.1: 4612 + 22.1: _ZN9oceanbase3sql15ObILibCacheNode13get_cache_objERNS0_14ObILibCacheCtxEPNS0_14ObILibCacheKeyERPNS0_17ObILibCacheObjectE:474858 + 4: 4612 + 5: 4612 + 6: 0 + 7.1: 0 + 8.1: 4612 _ZN9oceanbase3sql8ObPCVSet19inner_get_cache_objERNS0_14ObILibCacheCtxEPNS0_14ObILibCacheKeyERPNS0_17ObILibCacheObjectE:4952 + 9.1: 0 + 11: 4118 + 12: 4118 + 16: 4409 + 11: _ZNK9oceanbase3sql17ObILibCacheObject22get_dynamic_ref_handleEv:16472 + 0: 4118 + 13: _ZN9oceanbase3sql17ObILibCacheObject13inc_ref_countENS0_16CacheRefHandleIDE:116715 + 2: 4118 + 3: 4409 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:4717 + 4: 0 + 5: 0 + 6.1: 0 + 11: 4409 + 8.1: _ZN9oceanbase3sql19ObCacheRefHandleMgr13record_ref_opENS0_16CacheRefHandleIDE:0 + 3: 0 + 5.1: 0 + 31: _ZN9oceanbase3sql15ObILibCacheNode6unlockEv:762757 + 0: _ZN9oceanbase6common8TCRWLock6unlockEv:762757 + 2: 4409 + 3: _ZN9oceanbase6common8TCRWLock8wrunlockEv:0 + 3: 0 + 4: 0 + 5: _ZN9oceanbase6common8TCRWLock8rdunlockEv:696622 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:17636 + 0: 4409 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPi:581988 + 2: 4409 + 4.1: 4409 + 4.2: 0 + 6: 4409 + 6.1: 4409 + 10: 4409 + 2: _ZN9oceanbase6common8get_itidEv:123452 + 4: 4409 + 5: 0 + 6: 0 + 8: 0 + 11: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:66135 + 2: 4409 + 2.1: 0 + 3: 0 + 32: _ZN9oceanbase3sql15ObILibCacheNode13dec_ref_countENS0_16CacheRefHandleIDE:224746 + 2: 4409 + 3: 4409 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:4416 + 4: 0 + 5: 0 + 6.1: 0 + 11: 4119 + 12: 4119 + 14.1: 0 + 16: 0 + 17.1: 0 + 20: 0 + 21.1: 0 + 25: 0 + 26: 0 + 29.1: 0 + 8.1: _ZN9oceanbase3sql19ObCacheRefHandleMgr15record_deref_opENS0_16CacheRefHandleIDE:0 + 3: 0 + 4.1: 0 + 25.1: _ZN9oceanbase3sql11ObPlanCache12dec_mem_usedEm:0 + 3: 0 + 33.1: _ZN9oceanbase3lib20is_trace_log_enabledEv:33246 + 2: 4119 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:4126 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:29127 + 2: 4161 + 33.3: _ZN9oceanbase6common18get_trace_recorderEv:0 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:0 + 7: 0 + 8: 0 + 8.1: 0 + 33.6: _ZN9oceanbase3lib20is_trace_log_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:0 + 2: 0 + 33.8: _ZN9oceanbase6common18get_trace_recorderEv:0 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:0 + 7: 0 + 8: 0 + 8.1: 0 + 33.9: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl189ELl1600EE9add_eventEv:0 + 2: 0 + 3.1: 0 + 6: 0 + 10: 0 + 11: 0 + 12: 0 + 33.10: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:0 + 0: 0 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 +_ZN9oceanbase7storage19ObTableScanIterator12get_next_rowERPNS_6common8ObNewRowE:14806257:117209 + 1: 113303 + 2: 113303 + 3: 113303 + 5: 113303 + 6: 1164 + 7.1: 1164 + 8.1: 113303 + 9: 1164 + 11: 113303 + 12: 113303 _ZN9oceanbase3sql18ObPushdownOperator21clear_datum_eval_flagEv:116973 + 14: 109973 _ZN9oceanbase7storage15ObMultipleMerge12get_next_rowERPNS_12blocksstable10ObDatumRowE:115352 + 16.1: 1140 + 20: 105359 + 23: 1164 + 25: 114994 _ZN9oceanbase7storage19ObTableScanIterator37check_txn_status_if_read_uncommitted_Ev:111479 + 26: 1164 + 29: 114994 + 20: _ZN9oceanbase12blocksstable10ObDatumRow11get_new_rowEv:421436 + 0: 105359 +_ZN9oceanbase7obmysql11ObMySQLUtil16varchar_cell_strEPclRKNS_6common8ObStringEbRl:14370231:77318 + 0: 72192 + 2: 72192 + 3: 72192 + 4: 72192 + 5: 0 + 6.1: 0 + 8: 72192 + 10: 72192 + 12: 72192 + 14: 72192 + 16: 72192 + 17: 0 + 17.2: 0 + 18: 0 + 19.1: 0 + 22: 72192 + 23: 79259 + 26: 0 + 34: 79259 + 12: _ZN9oceanbase7obmysql11ObMySQLUtil12store_lengthEPclmRl:4764672 + 3: 72192 + 3.1: 72192 + 11: 72192 + 15: 0 + 23.1: 0 + 26: 0 + 27: 0 + 28: 0 + 31.1: 0 + 39.1: 0 + 12: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int1EPclaRl:866304 + 8.1: 72192 + 9: 72192 + 16: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int1EPclaRl:0 + 8.1: 0 + 9: 0 + 18: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int2EPclsRl:0 + 7: 0 + 8.1: 0 + 9: 0 + 24: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int1EPclaRl:0 + 8.1: 0 + 9: 0 + 32: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int1EPclaRl:0 + 8.1: 0 + 9: 0 + 34: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int8EPcllRl:0 + 7: 0 + 8.1: 0 + 9: 0 + 40: _ZN9oceanbase7obmysql11ObMySQLUtil10store_nullEPclRl:0 + 2: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int1EPclaRl:0 + 8.1: 0 + 9: 0 + 17.1: _ZNK9oceanbase6common8ObString6lengthEv:0 + 0: 0 + 22: _ZNK9oceanbase6common8ObString3ptrEv:288768 + 0: 72192 +_ZN9oceanbase12blocksstable11ObRowReader19compare_meta_rowkeyERKNS0_13ObDatumRowkeyERKNS_7storage15ObTableReadInfoEPKclRi:13766778:13890 + 6: 13253 + 7: 13253 + 8: 13253 + 8.1: 13253 + 9: 17 + 10.1: 17 + 13: 13253 + 14: 13253 + 16: 13253 + 17: 17 + 18.1: 17 + 19.1: 13886 _ZN9oceanbase12blocksstable11ObRowReader9setup_rowEPKcl:13844 + 20.1: 17 + 21.1: 13886 + 22: 17 + 23.1: 17 + 27: 13886 + 28.1: 14021 + 29: 13886 + 29.2: 14087 + 29.3: 14021 + 30: 13759 + 31: 13876 + 32.1: 0 + 35.1: 13876 + 36: 15436 + 36.3: 13876 + 37: 15436 + 38: 16035 _ZN9oceanbase12blocksstable21ObClusterColumnReader19sequence_read_datumElRNS0_14ObStorageDatumE:16333 + 39.1: 17 + 40.1: 15436 + 41.1: 17 + 50: 13177 + 8: _ZNK9oceanbase12blocksstable13ObDatumRowkey8is_validEv:344578 + 0: 13253 + 0.1: 13253 + 8.1: _ZNK9oceanbase7storage15ObTableReadInfo8is_validEv:848192 + 2: 13253 + 3: 13253 + 3.1: 13253 + 4: 13253 + 5.1: 13253 + 6: 13253 + 7: 13253 + 3.1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:92771 + 0: 13253 + 6.1: _ZNK9oceanbase12blocksstable19ObStorageDatumUtils8is_validEv:106024 + 0: 13253 + 14: _ZNK9oceanbase12blocksstable13ObDatumRowkey13get_datum_cntEv:53012 + 0: 13253 + 21.1: _ZNK9oceanbase12blocksstable11ObRowHeader16get_rowkey_countEv:55544 + 0: 13886 + 25: _ZN9oceanbase12blocksstable14ObStorageDatumC2Ev:652642 + 0.1: _ZN9oceanbase12blocksstable14ObStorageDatum7set_nopEv:652642 + 0: _ZN9oceanbase12blocksstable14ObStorageDatum13set_ext_valueEl:652642 + 1: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:194404 + 0: 13886 + 1.1: _ZN9oceanbase6common11ObDatumDesc7set_extEv:152746 + 0: 13886 + 1.3: _ZN9oceanbase6common5ObObj7set_extEl:305492 + 4: 13886 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:152746 + 0: 13886 + 29.2: _ZNK9oceanbase12blocksstable11ObRowHeader15get_cluster_cntEv:69760 + 3: 13952 + 6: 0 + 6: _ZN9oceanbase12blocksstable11ObRowHeader16calc_cluster_cntEll:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase12blocksstable11ObRowHeader31need_rowkey_independent_clusterEl:0 + 2: 0 + 3: _ZN9oceanbase12blocksstable11ObRowHeader33calc_cluster_cnt_by_row_col_countEl:0 + 2: 0 + 4: _ZN9oceanbase12blocksstable11ObRowHeader33calc_cluster_cnt_by_row_col_countEl:0 + 2: 0 + 31: _ZN9oceanbase12blocksstable11ObRowReader28analyze_info_and_init_readerEl:3380913 + 2: 14021 + 3: 14021 + 3.1: 14021 + 3.2: 14021 + 4: 17 + 5.1: 17 + 6.1: 14021 + 9: 13778 + 10: 13959 + 10.3: 14052 _ZN9oceanbase12blocksstable21ObClusterColumnReader4initEPKcmmRKNS0_20ObColClusterInfoMaskE:14189 + 15.1: 17 + 18: 13876 + 23: 0 + 7: _ZN9oceanbase12blocksstable21ObClusterColumnReader5resetEv:797692 + 2: 13678 + 3: 13678 + 4: 13678 + 7: 13678 + 8: _ZNK9oceanbase12blocksstable11ObRowReader18get_cluster_offsetEl:397362 + 2: 13678 + 2.1: 13778 _ZN9oceanbase12blocksstableL12get_offset_8EPKvl.8f1e732d6655d093e942b32e16c602d8:14101 + 2: _ZNK9oceanbase12blocksstable11ObRowHeader15get_offset_typeEv:41034 + 0: 13678 + 10: _ZNK9oceanbase12blocksstable11ObRowReader19get_cluster_end_posEl:716456 + 2: 13778 + 2.1: 13778 + 3: 13778 + 3.1: 0 + 2.1: _ZNK9oceanbase12blocksstable11ObRowHeader19get_offset_type_lenEv:220448 + 0: _ZNK9oceanbase12blocksstable11ObRowHeader15get_offset_typeEv:68890 + 0: 13778 + 0.1: _ZN9oceanbase12blocksstable20ObColClusterInfoMask18get_bytes_type_lenENS1_9BYTES_LENE:151558 + 5: 13778 + 10.1: _ZNK9oceanbase12blocksstable11ObRowHeader16get_column_countEv:56208 + 0: 14052 + 10.2: _ZNK9oceanbase12blocksstable20ObColClusterInfoMask16get_column_countEv:0 + 0: 0 + 10.4: _ZNK9oceanbase12blocksstable11ObRowHeader17is_single_clusterEv:55836 + 0: 13959 + 34: _ZNK9oceanbase12blocksstable21ObClusterColumnReader16get_column_countEv:55504 + 0: 13876 + 40.3: _ZNK9oceanbase12blocksstable21ObStorageDatumCmpFunc7compareERKNS0_14ObStorageDatumES4_Ri:891917 + 2: 15377 + 2.2: 15377 _ZN9oceanbase12blocksstableL21nonext_nonext_compareERKNS0_14ObStorageDatumES3_RKNS_6common9ObCmpFuncERi.8f1e732d6655d093e942b32e16c602d8:13778 _ZN9oceanbase12blocksstableL18nonext_ext_compareERKNS0_14ObStorageDatumES3_RKNS_6common9ObCmpFuncERi.8f1e732d6655d093e942b32e16c602d8:2223 + 49: _ZN9oceanbase12blocksstable11ObRowReader5resetEv:948744 + 3: 13177 + 9: 13177 + 11: 13177 + 8: _ZN9oceanbase12blocksstable21ObClusterColumnReader5resetEv:421664 + 3: 13177 + 4: 13177 + 7: 13177 +easy_request_wakeup:13392408:4845 + 1: 4521 + 3: 4521 + 4: 4521 + 5: 4521 + 6: 0 + 7.1: 0 + 7.2: 0 + 7.3: 0 + 7.4: 0 + 14: 4521 + 15: 4682 + 16: 4682 + 17: 4682 ev_async_send:4720 + 19: 0 + 14: easy_spin_lock:12789692 + 5: 4847 + 5.1: 4679 + 11.1: 440110 + 13: 440110 + 21: 1920 + 21.1: 480 + 26: 6 + 5.1: easy_atomic_cmp_set:32753 + 2: 4679 + 21.1: easy_atomic_cmp_set:7630 + 2: 480 + 15: easy_list_add_tail:126414 + 2: 4682 + 2: __easy_list_add:93640 + 3: 4682 + 4: 4682 + 5: 4682 + 6: 4682 +_ZN9oceanbase3sql17ObChunkDatumStore5Block10append_rowERKNS_6common8ObIArrayIPNS0_6ObExprEEEPNS0_9ObEvalCtxEPNS1_11BlockBufferElPPNS1_9StoredRowEb:13111094:76919 + 3: 70662 + 4: 70662 + 5: 70662 + 6: 812 + 7.1: 812 + 9: 70662 + 10: 73363 + 13.1: 812 + 15.1: 73363 + 16.1: 812 + 18: 73363 + 19: 73363 + 20: 73363 + 24: 73363 + 5: _ZNK9oceanbase3sql17ObChunkDatumStore11BlockBuffer9is_initedEv:423972 + 0: 70662 + 10: _ZNK9oceanbase3sql17ObChunkDatumStore11BlockBuffer4headEv:494634 + 0: 70662 + 10.1: _ZNK9oceanbase3sql17ObChunkDatumStore11BlockBuffer6remainEv:777282 + 0: 70662 + 10.2: _ZN9oceanbase3sql17ObChunkDatumStore9StoredRow5buildERPS2_RKNS_6common8ObIArrayIPNS0_6ObExprEEERNS0_9ObEvalCtxEPcljb:644078 + 8: 70662 + 9: 812 + 10: 70662 _ZN9oceanbase3sql17ObChunkDatumStore9StoredRow8do_buildILb0EEEiRPS2_RKNS_6common8ObIArrayIPNS0_6ObExprEEERNS0_9ObEvalCtxEPclj:74269 + 15.1: _ZN9oceanbase3sql17ObChunkDatumStore11BlockBuffer7advanceEl:2546310 + 3: 73363 + 6.1: 812 + 7.1: 73363 + 9.1: 812 + 11: 73363 + 7.1: _ZNK9oceanbase3sql17ObChunkDatumStore11BlockBuffer6remainEv:513541 + 0: 73363 +_ZN9oceanbase3lib9ObjectSet12alloc_objectEmRKNS0_9ObMemAttrE:12572973:14322 + 2: 13571 + 6: 13571 + 8: 0 + 9: 0 + 12: 13990 + 15: 13990 _ZN9oceanbase6common13ObPageManager24get_tenant_ctx_allocatorEv:9740 _ZN9oceanbase3lib9ObjectMgr24get_tenant_ctx_allocatorEv:3862 _ZN9oceanbase3lib12SubObjectMgr24get_tenant_ctx_allocatorEv:828 + 16: 14166 + 17: 14166 + 22: 14166 + 25: 46 + 26: 46 + 27.1: 14166 + 28: 7998 + 31: 8334 + 32: 8334 + 43: 13905 + 44: 13905 + 46: 13905 + 47: 13905 + 48: 15341 + 50: 46 + 52: 15341 + 52.1: 47 + 53: 47 + 54: 46 + 56: 14846 + 58: 14846 + 59: 14846 + 60: 14357 + 63: 14357 + 4: _ZN9oceanbase6common16ObMemLeakChecker12get_instanceEv:300355 + 2: 13571 + 2.1: 46 + 2.3: 46 + 2.4: 46 + 2.6: 46 + 2.2: _ZN9oceanbase6common16ObMemLeakCheckerC2Ev:11270 + 2: 46 + 3: 46 + 4: 46 + 5: 46 + 6: 46 + 7: 46 + 0: _ZN9oceanbase6common4hash9ObHashMapINS0_16ObMemLeakChecker6PtrKeyENS3_4InfoENS1_24LatchReadWriteDefendModeENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS4_S5_EEEELi13ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev:9890 + 0: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS0_16ObMemLeakChecker6PtrKeyENS5_4InfoEEEEELi13ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEC2Ev:4324 + 0: 46 + 0.1: _ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocatorC2EmRKNS_3lib7ObLabelE:1702 + 3: 46 + 4: 46 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:828 + 7: 46 + 2: _ZN9oceanbase6common4hash10SpinIniterC2ERVi:1840 + 2: 46 + 3.1: 46 + 0.1: _ZN9oceanbase6common4hash11ObHashTableINS0_16ObMemLeakChecker6PtrKeyENS1_11HashMapPairIS4_NS3_4InfoEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi13ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev:3128 + 0: 46 + 1: 46 + 0: _ZN9oceanbase6common8ObMallocC2Ev:1840 + 0: 46 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:966 + 5: 46 + 7: 46 + 8: _ZN9oceanbase6common4hash9constructIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_16ObMemLeakChecker6PtrKeyENS5_4InfoEEENS0_7ObLatchENS1_5NCondEEEEEvRT_:644 + 2: _ZN9oceanbase6common4hash12do_constructIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_16ObMemLeakChecker6PtrKeyENS5_4InfoEEENS0_7ObLatchENS1_5NCondEEEEEvRT_NS1_16NormalPointerTagE:644 + 2: 46 + 0.2: _ZN9oceanbase6common8ObMallocC2Ev:828 + 0: 46 + 4: _ZN9oceanbase6common8ObMalloc8set_attrERKNS_3lib9ObMemAttrE:1610 + 0: 46 + 8: _ZNK9oceanbase6common16ObMemLeakChecker13get_static_idEv:0 + 0: 0 + 15.1: _ZN9oceanbase3lib20ObTenantCtxAllocator10get_ctx_idEv:56664 + 2: 14166 + 16: _ZL12abort_unlessb:85456 + 5: 14166 + 6: 46 + 18: _ZN9oceanbase3lib9ObjectSet18do_free_dirty_listEv:5152 + 2: 46 + 5: 46 + 6: 46 + 8: 46 + 9: 46 + 10.1: 46 + 12: 46 + 13: 46 + 29: _ZN9oceanbase3lib9ObjectSet19alloc_normal_objectEjRKNS0_9ObMemAttrE:3152923 + 5: 7998 + 5.1: 585 + 6: 7998 + 6.1: 585 + 7: 585 + 8: 265 + 9: 265 _ZN9oceanbase3lib9ObjectSet20take_off_free_objectEPNS0_7AObjectE:234 + 10: 286 + 14: 286 + 14.1: 7757 + 15: 3355 + 22.1: 6344 + 22.2: 137 + 23: 137 _ZN9oceanbase3lib9ObjectSet15get_free_objectEj:91 + 24: 161 + 35: 79 + 35.1: 79 + 36: 79 + 36.1: 79 + 37: 79 + 37.1: 79 + 39: 74 + 40: 80 _ZN9oceanbase3lib9ObjectSet9merge_objEPNS0_7AObjectE:31 + 43: 6295 + 45: 6230 + 49: 6230 + 51: 6229 + 53: 6229 + 7.1: _ZN9oceanbase3lib7ABitSet5issetEi:21060 + 3: 585 + 6: 585 + 9: 585 + 16: _ZN9oceanbase3lib9ObjectSet9split_objEPNS0_7AObjectEjRS3_:242296 + 4: 1794 + 6.1: 1794 + 9: 1734 + 10: 1734 + 11: 1734 + 12: 1734 + 13: 1734 + 16: 1734 + 19: 86 + 9: _ZNK9oceanbase3lib7AObject8phy_nextEi:22542 + 2: 1734 + 9.1: _ZN9oceanbase3lib7AObjectC2Ev:46818 + 1: 1734 + 2: 1734 + 3: 1734 + 16: _ZNK9oceanbase3lib7AObject7is_lastEj:32946 + 2: 1734 + 18: _ZNK9oceanbase3lib7AObject8is_validEv:1204 + 2: 86 + 18.1: _ZL12abort_unlessb:746 + 5: 86 + 6: 46 + 40.1: _ZN9oceanbase3lib9ObjectSet15add_free_objectEPNS0_7AObjectE:13925 + 2: 80 + 5: 80 + 5.1: 80 + 6.1: 80 + 7: 61 + 8: 61 + 9: 51 + 10: 51 + 11: 51 + 12: 51 + 16: 56 + 17: 56 + 2: _ZL12abort_unlessb:940 + 5: 80 + 6: 46 + 3: _ZNK9oceanbase3lib7AObject8is_validEv:880 + 2: 80 + 3.1: _ZL12abort_unlessb:940 + 5: 80 + 6: 46 + 8: _ZN9oceanbase3lib7ABitSet5issetEi:2440 + 3: 61 + 6: 61 + 9: 61 + 15: _ZN9oceanbase3lib7ABitSet3setEi:2128 + 7: 56 + 10: 56 + 11: 56 + 13: 56 + 43: _ZN9oceanbase3lib9ObjectSet11alloc_blockEmRKNS0_9ObMemAttrE:717185 + 2: 6295 _ZN9oceanbase6common13ObPageManager11alloc_blockEmRKNS_3lib9ObMemAttrE:4075 _ZN9oceanbase3lib9ObjectMgr11alloc_blockEmRKNS0_9ObMemAttrE:2172 _ZN9oceanbase3lib12SubObjectMgr11alloc_blockEmRKNS0_9ObMemAttrE:43 + 4: 6255 + 5: 6255 + 6: 5986 + 7: 5986 + 8: 5986 + 9: 5986 + 11: 315 + 12: 315 + 14: 6230 + 15: 6230 + 16: 6230 + 17: 6230 + 48: _ZNK9oceanbase3lib6ABlock4dataEv:411640 + 2: _ZNK9oceanbase3lib6ABlock5chunkEv:93450 + 2: _ZN9oceanbase3lib6AChunk9ptr2chunkEPKv:93450 + 2: 6230 + 3: _ZNK9oceanbase3lib6AChunk8is_validEv:49840 + 2: 6230 + 3.1: _ZL12abort_unlessb:37840 + 5: 6230 + 6: 46 + 4: _ZNK9oceanbase3lib6AChunk8blk_dataEPKNS0_6ABlockE:230510 + 2: 6230 + 3: 6230 + 4: 6230 + 48.1: _ZN9oceanbase3lib7AObjectC2Ev:286580 + 1: 6230 + 2: 6230 + 3: 6230 + 50: _ZN9oceanbase3lib9ObjectSet9split_objEPNS0_7AObjectEjRS3_:818169 + 6.1: 6230 + 10: 6229 + 11: 6229 + 12: 6229 + 13: 6229 + 16: 6229 + 19: 46 + 9: _ZNK9oceanbase3lib7AObject8phy_nextEi:80977 + 2: 6229 + 9.1: _ZN9oceanbase3lib7AObjectC2Ev:205557 + 1: 6229 + 2: 6229 + 3: 6229 + 16: _ZNK9oceanbase3lib7AObject7is_lastEj:130809 + 2: 6229 + 18: _ZNK9oceanbase3lib7AObject8is_validEv:644 + 2: 46 + 18.1: _ZL12abort_unlessb:506 + 5: 46 + 6: 46 + 35: _ZN9oceanbase3lib9ObjectSet16alloc_big_objectEmRKNS0_9ObMemAttrE:1214180 + 3: 6359 + 9: 5777 + 3: _ZN9oceanbase3lib9ObjectSet11alloc_blockEmRKNS0_9ObMemAttrE:489267 + 2: 6359 _ZN9oceanbase6common13ObPageManager11alloc_blockEmRKNS_3lib9ObMemAttrE:5446 _ZN9oceanbase3lib9ObjectMgr11alloc_blockEmRKNS0_9ObMemAttrE:785 _ZN9oceanbase3lib12SubObjectMgr11alloc_blockEmRKNS0_9ObMemAttrE:237 + 4: 6289 + 5: 6289 + 6: 454 + 7: 454 + 8: 454 + 9: 454 + 11: 5367 + 12: 5367 + 14: 5777 + 15: 5777 + 16: 5777 + 17: 5777 + 6: _ZNK9oceanbase3lib6ABlock4dataEv:364411 + 2: _ZNK9oceanbase3lib6ABlock5chunkEv:69324 + 2: _ZN9oceanbase3lib6AChunk9ptr2chunkEPKv:69324 + 2: 5777 + 3: _ZNK9oceanbase3lib6AChunk8is_validEv:46216 + 2: 5777 + 3.1: _ZL12abort_unlessb:35122 + 5: 5777 + 6: 46 + 4: _ZNK9oceanbase3lib6AChunk8blk_dataEPKNS0_6ABlockE:213749 + 2: 5777 + 3: 5777 + 4: 5777 + 6.1: _ZN9oceanbase3lib7AObjectC2Ev:265742 + 1: 5777 + 2: 5777 + 3: 5777 + 40: _ZL12abort_unlessb:153415 + 5: 13905 + 6: 46 + 41: _ZNK9oceanbase3lib7AObject8is_validEv:180765 + 2: 13905 + 41.1: _ZL12abort_unlessb:83890 + 5: 13905 + 6: 46 + 52.1: _ZNK9oceanbase6common16ObMemLeakChecker11is_wildcardEv:188 + 0: 47 + 52.2: _ZN9oceanbase6common16ObMemLeakChecker11label_matchERNS_3lib7AObjectE:846 + 2: 47 + 60: _ZNK9oceanbase3lib7AObject4holdEj:3225839 + 2: 14846 + 2.1: 8753 + 4: 8747 + 2.1: _ZNK9oceanbase3lib7AObject7is_lastEj:122542 + 2: 8753 + 3: _ZNK9oceanbase3lib7AObject5blockEv:814770 + 2: _ZN9oceanbase3lib6AChunk9ptr2chunkEPKv:83520 + 2: 5568 + 3: _ZNK9oceanbase3lib6AChunk8is_validEv:38976 + 2: 5568 + 3.1: _ZL12abort_unlessb:33868 + 5: 5568 + 6: 46 + 4: _ZNK9oceanbase3lib6AChunk7ptr2blkEPKv:658406 + 2: 5568 + 4: 5743 + 3: _ZNK9oceanbase3lib6AChunk17max_blk_offset_leEi:388167 + 2: _ZNK9oceanbase3lib13ASimpleBitSetILi256EE10max_bit_leEi:388167 + 2: 5568 + 3: 5568 + 7: 5568 + 9: 5568 + 11.1: 47 + 12: 5743 + 8: _ZN9oceanbase3lib13ASimpleBitSetILi256EE10max_bit_leEmi:190537 + 2: 5568 + 3: 5743 + 4: 5568 + 65506: 5568 + 3.1: _ZNK9oceanbase3lib6ABlock4holdEPm:2037743 + 5: 5743 + 5.1: 5743 + 5.2: 5117 + 8: 1009 + 3: _ZNK9oceanbase3lib6AChunk10blk_offsetEPKNS0_6ABlockE:339297 + 2: 5743 + 3: 5743 + 3.2: _ZL12abort_unlessb:34918 + 5: 5743 + 6: 46 + 5.1: _ZNK9oceanbase3lib6AChunk19is_first_blk_offsetEiPi:17229 + 2: 5743 + 5.2: _ZNK9oceanbase3lib6AChunk18is_last_blk_offsetEiPi:1121946 + 4: 5117 + 4: _ZNK9oceanbase3lib6AChunk17min_blk_offset_geEi:1106595 + 2: _ZNK9oceanbase3lib13ASimpleBitSetILi256EE10min_bit_geEi:1106595 + 8: 20556 + 9: 20556 + 12: 5117 + 8: _ZN9oceanbase3lib13ASimpleBitSetILi256EE10min_bit_geEmi:263580 + 3: 116 + 4: 20556 + 6: _ZNK9oceanbase3lib6AChunk4holdEPm:206133 + 2: 5051 + 2: _ZN9oceanbase3lib6AChunk9calc_holdEllPm:165725 + 3: 5051 + 4: 4802 + 2: _ZN9oceanbase3lib9align_up2Emm:90918 + 2: 5051 + 3.2: _ZN9oceanbase3libL13get_page_sizeEv:3786 + 2: 62 + 2.1: 46 + 2.2: 46 + 2.3: 46 + 3: 62 + 3.4: _ZN9oceanbase3lib9align_up2Emm:558 + 2: 62 + 8: _ZNK9oceanbase3lib6AChunk11blk_nblocksEPKNS0_6ABlockE:189199 + 4: 1009 + 4.3: 1009 + 2: _ZNK9oceanbase3lib6AChunk10blk_offsetEPKNS0_6ABlockE:8516 + 3.2: _ZL12abort_unlessb:8516 + 5: 1007 + 6: 46 + 4: _ZNK9oceanbase3lib6AChunk18is_last_blk_offsetEiPi:174629 + 4: 1009 + 4: _ZNK9oceanbase3lib6AChunk17min_blk_offset_geEi:162529 + 2: _ZNK9oceanbase3lib13ASimpleBitSetILi256EE10min_bit_geEi:162529 + 2: 1007 + 7: 1007 + 8: 5035 + 9: 5035 + 11.1: 715 + 12: 1009 + 8: _ZN9oceanbase3lib13ASimpleBitSetILi256EE10min_bit_geEmi:54127 + 2: 5035 + 3: 1003 + 4: 5035 +_ZN9oceanbase3sql13ObExecContextC2ERNS_6common12ObIAllocatorE:12485110:5230 + 0.10: 4663 + 2: 5060 + 4: 5060 + 9: 5060 _ZN9oceanbase3sql17ObTaskExecutorCtxC1ERNS0_13ObExecContextE:5102 + 11: 4977 + 15: 4977 + 16: 4977 + 17: 4977 + 19: 4977 + 20: 4977 + 21: 4977 + 22: 4943 + 25: 4943 + 33: 4943 + 34: 4943 + 37: 4857 + 40: 4857 + 41: 4857 + 42: 4857 + 44: 4857 + 46: 4857 + 49: 4663 + 50: 4663 + 52: 4663 + 54: 5337 + 56: 5337 + 57: 5060 + 58: 5337 + 58.14: 24 + 58.15: 24 + 58.16: 24 + 58.17: 24 + 58.22: 24 + 58.25: 24 + 0: _ZN9oceanbase3sql19ObExecStatCollectorC2Ev:104517 + 0: 4977 + 0.1: _ZN9oceanbase3sql21ObPartIdRowMapManagerC2Ev:805947 + 1: 4943 + 1: _ZN9oceanbase6common9ObSEArrayINS_3sql21ObPartIdRowMapManager8MapEntryELl1ENS0_19ModulePageAllocatorELb0EEC2Ev:771346 + 0.1: 4943 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_3sql21ObPartIdRowMapManager8MapEntryELl1ENS0_19ModulePageAllocatorELb0EEC2ElRKS5_:682372 + 2: 4977 + 5: 4943 + 6: 4943 + 8: 4943 + 17.1: 4943 + 2: _ZN9oceanbase6common8ObIArrayINS_3sql21ObPartIdRowMapManager8MapEntryEEC2EPS4_l:93917 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_3sql21ObPartIdRowMapManager8MapEntryEEC2EPS4_l:93917 + 0: 4943 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:237264 + 0: 4943 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:118632 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:118632 + 2: 4943 + 8: 4943 + 0.2: _ZN9oceanbase3sql10TransStateC2Ev:103803 + 0: 4943 + 0.4: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:514842 + 4: 4857 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:461415 + 2: 4857 + 3: 4857 + 4: 4857 + 5: 4857 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:199137 + 0: 4857 + 0.6: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:412845 + 4: 4857 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:378846 + 2: 4857 + 3: 4857 + 4: 4857 + 5: 4857 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:135996 + 0: 4857 + 0.7: _ZN9oceanbase6common9ObSEArrayINS_3sql17ObSqlTempTableCtxELl2ENS0_19ModulePageAllocatorELb0EEC2Ev:616839 + 0.1: 4857 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_3sql17ObSqlTempTableCtxELl2ENS0_19ModulePageAllocatorELb0EEC2ElRKS4_:529413 + 2: 4857 + 5: 4857 + 6: 4857 + 8: 4857 + 17.1: 4857 + 2: _ZN9oceanbase6common8ObIArrayINS_3sql17ObSqlTempTableCtxEEC2EPS3_l:92283 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_3sql17ObSqlTempTableCtxEEC2EPS3_l:92283 + 0: 4857 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:150567 + 0: 4857 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:82569 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:82569 + 2: 4857 + 8: 4857 + 0.8: _ZN9oceanbase3sql15ObGIPruningInfoC2Ev:67998 + 0: 4857 + 0.9: _ZN9oceanbase6common9ObSEArrayINS_3sql15ObPxTabletRangeELl1ENS0_19ModulePageAllocatorELb0EEC2Ev:563412 + 0.1: 4857 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_3sql15ObPxTabletRangeELl1ENS0_19ModulePageAllocatorELb0EEC2ElRKS4_:475986 + 2: 4857 + 5: 4857 + 6: 4857 + 8: 4857 + 17.1: 4857 + 2: _ZN9oceanbase6common8ObIArrayINS_3sql15ObPxTabletRangeEEC2EPS3_l:67998 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_3sql15ObPxTabletRangeEEC2EPS3_l:67998 + 0: 4857 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:135996 + 0: 4857 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:67998 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:67998 + 2: 4857 + 8: 4857 + 0.10: _ZN9oceanbase6common7ObDListINS_3sql19ObIExtraStatusCheckEEC2Ev:181857 + 2: 4663 + 3: 4663 + 4: 4663 + 65463: _ZN9oceanbase6common11ObDLinkBaseINS_3sql19ObIExtraStatusCheckEEC2Ev:83934 + 2: 4663 + 1.1: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:655428 + 4: 5060 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:559288 + 2: 5060 + 3: 5060 + 4: 5060 + 5: 5060 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:192280 + 0: 5060 + 23: _ZN9oceanbase6common7ObArrayIPKNS0_8ObIArrayIlEENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEEC2Ev:321295 + 0.1: 4943 + 0.5: _ZN9oceanbase6common11ObArrayImplIPKNS0_8ObIArrayIlEENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEEC2ElRKS6_:232321 + 7.1: 4943 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:197720 + 0: 4943 + 35: _ZN9oceanbase3sql19ObJoinFilterDataCtxC2Ev:3871134 + 1.1: 4857 + 2: 4857 + 1: _ZN9oceanbase3sql20ObPxBloomFilterChSetC2Ev:776051 + 1: 4943 + 0: _ZN9oceanbase3sql3dtl10ObDtlChSetC2Ev:716735 + 0: _ZN9oceanbase6common6ObAddrC2Ev:118632 + 1: 4943 + 0.1: _ZN9oceanbase6common9ObSEArrayINS_3sql3dtl16ObDtlChannelInfoELl12ENS0_19ModulePageAllocatorELb0EEC2Ev:598103 + 0.1: 4943 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_3sql3dtl16ObDtlChannelInfoELl12ENS0_19ModulePageAllocatorELb0EEC2ElRKS5_:509129 + 2: 4943 + 5: 4943 + 6: 4943 + 8: 4943 + 17.1: 4943 + 2: _ZN9oceanbase6common8ObIArrayINS_3sql3dtl16ObDtlChannelInfoEEC2EPS4_l:69202 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_3sql3dtl16ObDtlChannelInfoEEC2EPS4_l:69202 + 0: 4943 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:153233 + 0: 4943 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:69202 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:69202 + 2: 4943 + 8: 4943 + 1.2: _ZN9oceanbase3sql21ObPxBloomFilterChInfoC2Ev:2988229 + 0: 4857 + 0: _ZN9oceanbase3sql3dtl16ObDtlChTotalInfoC2Ev:2929945 + 1: 4943 + 1: _ZN9oceanbase3sql3dtl15ObDtlExecServerC2Ev:1459419 + 1: 5133 + 1: _ZN9oceanbase6common9ObSEArrayINS0_6ObAddrELl8ENS0_19ModulePageAllocatorELb0EEC2Ev:712157 + 0.1: 5133 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS0_6ObAddrELl8ENS0_19ModulePageAllocatorELb0EEC2ElRKS3_:599231 + 2: 4943 + 5: 5133 + 6: 5133 + 8: 5133 + 17.1: 5133 + 2: _ZN9oceanbase6common8ObIArrayINS0_6ObAddrEEC2EPS2_l:71862 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_6ObAddrEEC2EPS2_l:71862 + 0: 5133 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:179655 + 0: 5133 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:107793 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:107793 + 2: 5133 + 8: 5133 + 1.1: _ZN9oceanbase6common9ObSEArrayIlLl8ENS0_19ModulePageAllocatorELb0EEC2Ev:595456 + 0.1: 4652 + 0.5: _ZN9oceanbase6common13ObSEArrayImplIlLl8ENS0_19ModulePageAllocatorELb0EEC2ElRKS2_:511720 + 5: 4652 + 6: 4652 + 8: 4652 + 17.1: 4652 + 2: _ZN9oceanbase6common8ObIArrayIlEC2EPll:65128 + 0: _ZN9oceanbase6common12ObIArrayWrapIlEC2EPll:65128 + 0: 4652 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:162820 + 0: 4652 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:97692 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:97692 + 2: 4652 + 8: 4652 + 1.1: _ZN9oceanbase3sql3dtl15ObDtlExecServerC2Ev:1435925 + 1: 4842 + 1: _ZN9oceanbase6common9ObSEArrayINS0_6ObAddrELl8ENS0_19ModulePageAllocatorELb0EEC2Ev:652340 + 0.1: 4842 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS0_6ObAddrELl8ENS0_19ModulePageAllocatorELb0EEC2ElRKS3_:618446 + 2: 4652 + 5: 4842 + 6: 4842 + 8: 4842 + 17.1: 4842 + 2: _ZN9oceanbase6common8ObIArrayINS0_6ObAddrEEC2EPS2_l:67788 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_6ObAddrEEC2EPS2_l:67788 + 0: 4842 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:203364 + 0: 4842 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:101682 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:101682 + 2: 4842 + 8: 4842 + 1.1: _ZN9oceanbase6common9ObSEArrayIlLl8ENS0_19ModulePageAllocatorELb0EEC2Ev:626553 + 0.1: 4857 + 0.5: _ZN9oceanbase6common13ObSEArrayImplIlLl8ENS0_19ModulePageAllocatorELb0EEC2ElRKS2_:592554 + 5: 4857 + 6: 4857 + 8: 4857 + 17.1: 4857 + 2: _ZN9oceanbase6common8ObIArrayIlEC2EPll:67998 + 0: _ZN9oceanbase6common12ObIArrayWrapIlEC2EPll:67998 + 0: 4857 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:203994 + 0: 4857 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:101997 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:101997 + 2: 4857 + 8: 4857 + 39: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:101997 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:101997 + 2: 4857 + 6: 4857 + 47: _ZN9oceanbase6common4hash9ObHashMapINS0_6ObAddrElNS1_24LatchReadWriteDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_lEEEELi89ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev:861496 + 0.1: 4589 + 0: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS0_6ObAddrElEEEELi89ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEC2Ev:287649 + 0: 4857 + 2: 4857 + 0.1: _ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocatorC2EmRKNS_3lib7ObLabelE:169995 + 3: 4857 + 4: 4857 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:67998 + 7: 4857 + 2: _ZN9oceanbase6common4hash10SpinIniterC2ERVi:44799 + 2: 5123 + 3.1: 12 + 0.1: _ZN9oceanbase6common4hash11ObHashTableINS0_6ObAddrENS1_11HashMapPairIS3_lEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi89ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev:298507 + 0: 4589 + 1: 4589 + 0: _ZN9oceanbase6common8ObMallocC2Ev:170015 + 0: 4589 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:137892 + 5: 4589 + 7: 4663 + 8: _ZN9oceanbase6common4hash9constructIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_6ObAddrElEENS0_7ObLatchENS1_5NCondEEEEEvRT_:64246 + 2: _ZN9oceanbase6common4hash12do_constructIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_6ObAddrElEENS0_7ObLatchENS1_5NCondEEEEEvRT_NS1_16NormalPointerTagE:64246 + 2: 4589 + 0.2: _ZN9oceanbase6common8ObMallocC2Ev:82602 + 0: 4589 + 4: _ZN9oceanbase6common8ObMalloc8set_attrERKNS_3lib9ObMemAttrE:160615 + 0: 4589 + 48: _ZN9oceanbase6common4hash9ObHashMapIllNS1_24LatchReadWriteDefendModeENS1_9hash_funcIlEENS1_8equal_toIlEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIllEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev:781435 + 0.1: 4663 + 0: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIllEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEC2Ev:268505 + 0: 4589 + 2: 4589 + 0.1: _ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocatorC2EmRKNS_3lib7ObLabelE:160615 + 3: 4589 + 4: 4589 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:64246 + 7: 4589 + 2: _ZN9oceanbase6common4hash10SpinIniterC2ERVi:43644 + 2: 5274 + 3.1: 12 + 0.1: _ZN9oceanbase6common4hash11ObHashTableIlNS1_11HashMapPairIllEENS1_9hash_funcIlEENS1_8equal_toIlEENS1_10pair_firstIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS4_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev:284443 + 0: 4663 + 1: 4663 + 0: _ZN9oceanbase6common8ObMallocC2Ev:153879 + 0: 4663 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:97923 + 5: 4663 + 7: 4663 + 8: _ZN9oceanbase6common4hash9constructIPNS1_17ObHashTableBucketINS1_11HashMapPairIllEENS0_7ObLatchENS1_5NCondEEEEEvRT_:65282 + 2: _ZN9oceanbase6common4hash12do_constructIPNS1_17ObHashTableBucketINS1_11HashMapPairIllEENS0_7ObLatchENS1_5NCondEEEEEvRT_NS1_16NormalPointerTagE:65282 + 2: 4663 + 0.2: _ZN9oceanbase6common8ObMallocC2Ev:32641 + 0: 4663 + 4: _ZN9oceanbase6common8ObMalloc8set_attrERKNS_3lib9ObMemAttrE:163205 + 0: 4663 + 52: _ZN9oceanbase3sql8ObDASCtxC2ERNS_6common12ObIAllocatorE:850944 + 2: 4663 + 3: 4663 _ZN9oceanbase3sql19ObDASLocationRouterC1ERNS_6common12ObIAllocatorE:5219 + 4: 5254 _ZN9oceanbase3sql16ObDASTaskFactoryC1ERNS_6common12ObIAllocatorE:5236 + 6: 4841 + 7: 4841 + 8: 4841 _ZN9oceanbase11transaction16ObTxReadSnapshotC1Ev:5135 + 10: 5337 + 13: 5337 + 14.5: 24 + 1: _ZN9oceanbase6common6ObListIPNS_3sql13ObDASTableLocENS0_12ObIAllocatorEEC2ERS5_:149216 + 0: 4663 + 2: 4663 + 3: 4663 + 5: _ZN9oceanbase3sql19DASRelatedTabletMapC2ERNS_6common12ObIAllocatorE:309824 + 2: 4841 + 3: 4841 + 1: _ZN9oceanbase6common6ObListINS_3sql19DASRelatedTabletMap8MapEntryENS0_12ObIAllocatorEEC2ERS5_:188799 + 0: 4841 + 2: 4841 + 3: 4841 + 14.4: _ZN9oceanbase3sql19DASRelatedTabletMapD2Ev:360 + 0: 24 + 14.6: _ZN9oceanbase3sql19ObDASLocationRouterD2Ev:1488 + 0: _ZN9oceanbase6common6ObListINS_3sql14VirtualSvrPairENS0_12ObIAllocatorEED2Ev:1488 + 2: _ZN9oceanbase6common6ObListINS_3sql14VirtualSvrPairENS0_12ObIAllocatorEE5resetEv:1488 + 2: _ZN9oceanbase6common6ObListINS_3sql14VirtualSvrPairENS0_12ObIAllocatorEE5clearEv:1488 + 2: 24 + 3.1: 24 + 4: 24 + 5: 24 + 8: 24 + 9: 24 + 10: 24 + 14.7: _ZN9oceanbase6common6ObListIPNS_3sql13ObDASTableLocENS0_12ObIAllocatorEED2Ev:1320 + 2: _ZN9oceanbase6common6ObListIPNS_3sql13ObDASTableLocENS0_12ObIAllocatorEE5resetEv:1320 + 2: _ZN9oceanbase6common6ObListIPNS_3sql13ObDASTableLocENS0_12ObIAllocatorEE5clearEv:1320 + 2: 24 + 3.1: 24 + 4: 24 + 5: 24 + 8: 24 + 9: 24 + 10: 24 + 58.18: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:528 + 0: 24 + 58.19: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:552 + 0: 24 + 58.20: _ZN9oceanbase3sql19ObJoinFilterDataCtxD2Ev:312 + 0: 24 + 0.1: 24 + 58.23: _ZN9oceanbase3sql21ObPartIdRowMapManagerD2Ev:216 + 0: 24 + 58.26: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:600 + 0: 24 +_ZN9oceanbase3sql13ObExecContextC1ERNS_6common12ObIAllocatorE:12485110:5230 + 0.10: 4663 + 2: 5060 + 4: 5060 + 9: 5060 _ZN9oceanbase3sql17ObTaskExecutorCtxC1ERNS0_13ObExecContextE:5102 + 11: 4977 + 15: 4977 + 16: 4977 + 17: 4977 + 19: 4977 + 20: 4977 + 21: 4977 + 22: 4943 + 25: 4943 + 33: 4943 + 34: 4943 + 37: 4857 + 40: 4857 + 41: 4857 + 42: 4857 + 44: 4857 + 46: 4857 + 49: 4663 + 50: 4663 + 52: 4663 + 54: 5337 + 56: 5337 + 57: 5060 + 58: 5337 + 58.14: 24 + 58.15: 24 + 58.16: 24 + 58.17: 24 + 58.22: 24 + 58.25: 24 + 0: _ZN9oceanbase3sql19ObExecStatCollectorC2Ev:104517 + 0: 4977 + 0.1: _ZN9oceanbase3sql21ObPartIdRowMapManagerC2Ev:805947 + 1: 4943 + 1: _ZN9oceanbase6common9ObSEArrayINS_3sql21ObPartIdRowMapManager8MapEntryELl1ENS0_19ModulePageAllocatorELb0EEC2Ev:771346 + 0.1: 4943 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_3sql21ObPartIdRowMapManager8MapEntryELl1ENS0_19ModulePageAllocatorELb0EEC2ElRKS5_:682372 + 2: 4977 + 5: 4943 + 6: 4943 + 8: 4943 + 17.1: 4943 + 2: _ZN9oceanbase6common8ObIArrayINS_3sql21ObPartIdRowMapManager8MapEntryEEC2EPS4_l:93917 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_3sql21ObPartIdRowMapManager8MapEntryEEC2EPS4_l:93917 + 0: 4943 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:237264 + 0: 4943 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:118632 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:118632 + 2: 4943 + 8: 4943 + 0.2: _ZN9oceanbase3sql10TransStateC2Ev:103803 + 0: 4943 + 0.4: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:514842 + 4: 4857 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:461415 + 2: 4857 + 3: 4857 + 4: 4857 + 5: 4857 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:199137 + 0: 4857 + 0.6: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:412845 + 4: 4857 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:378846 + 2: 4857 + 3: 4857 + 4: 4857 + 5: 4857 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:135996 + 0: 4857 + 0.7: _ZN9oceanbase6common9ObSEArrayINS_3sql17ObSqlTempTableCtxELl2ENS0_19ModulePageAllocatorELb0EEC2Ev:616839 + 0.1: 4857 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_3sql17ObSqlTempTableCtxELl2ENS0_19ModulePageAllocatorELb0EEC2ElRKS4_:529413 + 2: 4857 + 5: 4857 + 6: 4857 + 8: 4857 + 17.1: 4857 + 2: _ZN9oceanbase6common8ObIArrayINS_3sql17ObSqlTempTableCtxEEC2EPS3_l:92283 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_3sql17ObSqlTempTableCtxEEC2EPS3_l:92283 + 0: 4857 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:150567 + 0: 4857 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:82569 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:82569 + 2: 4857 + 8: 4857 + 0.8: _ZN9oceanbase3sql15ObGIPruningInfoC2Ev:67998 + 0: 4857 + 0.9: _ZN9oceanbase6common9ObSEArrayINS_3sql15ObPxTabletRangeELl1ENS0_19ModulePageAllocatorELb0EEC2Ev:563412 + 0.1: 4857 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_3sql15ObPxTabletRangeELl1ENS0_19ModulePageAllocatorELb0EEC2ElRKS4_:475986 + 2: 4857 + 5: 4857 + 6: 4857 + 8: 4857 + 17.1: 4857 + 2: _ZN9oceanbase6common8ObIArrayINS_3sql15ObPxTabletRangeEEC2EPS3_l:67998 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_3sql15ObPxTabletRangeEEC2EPS3_l:67998 + 0: 4857 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:135996 + 0: 4857 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:67998 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:67998 + 2: 4857 + 8: 4857 + 0.10: _ZN9oceanbase6common7ObDListINS_3sql19ObIExtraStatusCheckEEC2Ev:181857 + 2: 4663 + 3: 4663 + 4: 4663 + 65463: _ZN9oceanbase6common11ObDLinkBaseINS_3sql19ObIExtraStatusCheckEEC2Ev:83934 + 2: 4663 + 1.1: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:655428 + 4: 5060 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:559288 + 2: 5060 + 3: 5060 + 4: 5060 + 5: 5060 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:192280 + 0: 5060 + 23: _ZN9oceanbase6common7ObArrayIPKNS0_8ObIArrayIlEENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEEC2Ev:321295 + 0.1: 4943 + 0.5: _ZN9oceanbase6common11ObArrayImplIPKNS0_8ObIArrayIlEENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEEC2ElRKS6_:232321 + 7.1: 4943 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:197720 + 0: 4943 + 35: _ZN9oceanbase3sql19ObJoinFilterDataCtxC2Ev:3871134 + 1.1: 4857 + 2: 4857 + 1: _ZN9oceanbase3sql20ObPxBloomFilterChSetC2Ev:776051 + 1: 4943 + 0: _ZN9oceanbase3sql3dtl10ObDtlChSetC2Ev:716735 + 0: _ZN9oceanbase6common6ObAddrC2Ev:118632 + 1: 4943 + 0.1: _ZN9oceanbase6common9ObSEArrayINS_3sql3dtl16ObDtlChannelInfoELl12ENS0_19ModulePageAllocatorELb0EEC2Ev:598103 + 0.1: 4943 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_3sql3dtl16ObDtlChannelInfoELl12ENS0_19ModulePageAllocatorELb0EEC2ElRKS5_:509129 + 2: 4943 + 5: 4943 + 6: 4943 + 8: 4943 + 17.1: 4943 + 2: _ZN9oceanbase6common8ObIArrayINS_3sql3dtl16ObDtlChannelInfoEEC2EPS4_l:69202 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_3sql3dtl16ObDtlChannelInfoEEC2EPS4_l:69202 + 0: 4943 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:153233 + 0: 4943 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:69202 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:69202 + 2: 4943 + 8: 4943 + 1.2: _ZN9oceanbase3sql21ObPxBloomFilterChInfoC2Ev:2988229 + 0: 4857 + 0: _ZN9oceanbase3sql3dtl16ObDtlChTotalInfoC2Ev:2929945 + 1: 4943 + 1: _ZN9oceanbase3sql3dtl15ObDtlExecServerC2Ev:1459419 + 1: 5133 + 1: _ZN9oceanbase6common9ObSEArrayINS0_6ObAddrELl8ENS0_19ModulePageAllocatorELb0EEC2Ev:712157 + 0.1: 5133 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS0_6ObAddrELl8ENS0_19ModulePageAllocatorELb0EEC2ElRKS3_:599231 + 2: 4943 + 5: 5133 + 6: 5133 + 8: 5133 + 17.1: 5133 + 2: _ZN9oceanbase6common8ObIArrayINS0_6ObAddrEEC2EPS2_l:71862 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_6ObAddrEEC2EPS2_l:71862 + 0: 5133 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:179655 + 0: 5133 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:107793 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:107793 + 2: 5133 + 8: 5133 + 1.1: _ZN9oceanbase6common9ObSEArrayIlLl8ENS0_19ModulePageAllocatorELb0EEC2Ev:595456 + 0.1: 4652 + 0.5: _ZN9oceanbase6common13ObSEArrayImplIlLl8ENS0_19ModulePageAllocatorELb0EEC2ElRKS2_:511720 + 5: 4652 + 6: 4652 + 8: 4652 + 17.1: 4652 + 2: _ZN9oceanbase6common8ObIArrayIlEC2EPll:65128 + 0: _ZN9oceanbase6common12ObIArrayWrapIlEC2EPll:65128 + 0: 4652 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:162820 + 0: 4652 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:97692 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:97692 + 2: 4652 + 8: 4652 + 1.1: _ZN9oceanbase3sql3dtl15ObDtlExecServerC2Ev:1435925 + 1: 4842 + 1: _ZN9oceanbase6common9ObSEArrayINS0_6ObAddrELl8ENS0_19ModulePageAllocatorELb0EEC2Ev:652340 + 0.1: 4842 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS0_6ObAddrELl8ENS0_19ModulePageAllocatorELb0EEC2ElRKS3_:618446 + 2: 4652 + 5: 4842 + 6: 4842 + 8: 4842 + 17.1: 4842 + 2: _ZN9oceanbase6common8ObIArrayINS0_6ObAddrEEC2EPS2_l:67788 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_6ObAddrEEC2EPS2_l:67788 + 0: 4842 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:203364 + 0: 4842 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:101682 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:101682 + 2: 4842 + 8: 4842 + 1.1: _ZN9oceanbase6common9ObSEArrayIlLl8ENS0_19ModulePageAllocatorELb0EEC2Ev:626553 + 0.1: 4857 + 0.5: _ZN9oceanbase6common13ObSEArrayImplIlLl8ENS0_19ModulePageAllocatorELb0EEC2ElRKS2_:592554 + 5: 4857 + 6: 4857 + 8: 4857 + 17.1: 4857 + 2: _ZN9oceanbase6common8ObIArrayIlEC2EPll:67998 + 0: _ZN9oceanbase6common12ObIArrayWrapIlEC2EPll:67998 + 0: 4857 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:203994 + 0: 4857 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:101997 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:101997 + 2: 4857 + 8: 4857 + 39: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:101997 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:101997 + 2: 4857 + 6: 4857 + 47: _ZN9oceanbase6common4hash9ObHashMapINS0_6ObAddrElNS1_24LatchReadWriteDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_lEEEELi89ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev:861496 + 0.1: 4589 + 0: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS0_6ObAddrElEEEELi89ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEC2Ev:287649 + 0: 4857 + 2: 4857 + 0.1: _ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocatorC2EmRKNS_3lib7ObLabelE:169995 + 3: 4857 + 4: 4857 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:67998 + 7: 4857 + 2: _ZN9oceanbase6common4hash10SpinIniterC2ERVi:44799 + 2: 5123 + 3.1: 12 + 0.1: _ZN9oceanbase6common4hash11ObHashTableINS0_6ObAddrENS1_11HashMapPairIS3_lEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi89ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev:298507 + 0: 4589 + 1: 4589 + 0: _ZN9oceanbase6common8ObMallocC2Ev:170015 + 0: 4589 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:137892 + 5: 4589 + 7: 4663 + 8: _ZN9oceanbase6common4hash9constructIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_6ObAddrElEENS0_7ObLatchENS1_5NCondEEEEEvRT_:64246 + 2: _ZN9oceanbase6common4hash12do_constructIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_6ObAddrElEENS0_7ObLatchENS1_5NCondEEEEEvRT_NS1_16NormalPointerTagE:64246 + 2: 4589 + 0.2: _ZN9oceanbase6common8ObMallocC2Ev:82602 + 0: 4589 + 4: _ZN9oceanbase6common8ObMalloc8set_attrERKNS_3lib9ObMemAttrE:160615 + 0: 4589 + 48: _ZN9oceanbase6common4hash9ObHashMapIllNS1_24LatchReadWriteDefendModeENS1_9hash_funcIlEENS1_8equal_toIlEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIllEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev:781435 + 0.1: 4663 + 0: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIllEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEC2Ev:268505 + 0: 4589 + 2: 4589 + 0.1: _ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocatorC2EmRKNS_3lib7ObLabelE:160615 + 3: 4589 + 4: 4589 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:64246 + 7: 4589 + 2: _ZN9oceanbase6common4hash10SpinIniterC2ERVi:43644 + 2: 5274 + 3.1: 12 + 0.1: _ZN9oceanbase6common4hash11ObHashTableIlNS1_11HashMapPairIllEENS1_9hash_funcIlEENS1_8equal_toIlEENS1_10pair_firstIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS4_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev:284443 + 0: 4663 + 1: 4663 + 0: _ZN9oceanbase6common8ObMallocC2Ev:153879 + 0: 4663 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:97923 + 5: 4663 + 7: 4663 + 8: _ZN9oceanbase6common4hash9constructIPNS1_17ObHashTableBucketINS1_11HashMapPairIllEENS0_7ObLatchENS1_5NCondEEEEEvRT_:65282 + 2: _ZN9oceanbase6common4hash12do_constructIPNS1_17ObHashTableBucketINS1_11HashMapPairIllEENS0_7ObLatchENS1_5NCondEEEEEvRT_NS1_16NormalPointerTagE:65282 + 2: 4663 + 0.2: _ZN9oceanbase6common8ObMallocC2Ev:32641 + 0: 4663 + 4: _ZN9oceanbase6common8ObMalloc8set_attrERKNS_3lib9ObMemAttrE:163205 + 0: 4663 + 52: _ZN9oceanbase3sql8ObDASCtxC2ERNS_6common12ObIAllocatorE:850944 + 2: 4663 + 3: 4663 _ZN9oceanbase3sql19ObDASLocationRouterC1ERNS_6common12ObIAllocatorE:5219 + 4: 5254 _ZN9oceanbase3sql16ObDASTaskFactoryC1ERNS_6common12ObIAllocatorE:5236 + 6: 4841 + 7: 4841 + 8: 4841 _ZN9oceanbase11transaction16ObTxReadSnapshotC1Ev:5135 + 10: 5337 + 13: 5337 + 14.5: 24 + 1: _ZN9oceanbase6common6ObListIPNS_3sql13ObDASTableLocENS0_12ObIAllocatorEEC2ERS5_:149216 + 0: 4663 + 2: 4663 + 3: 4663 + 5: _ZN9oceanbase3sql19DASRelatedTabletMapC2ERNS_6common12ObIAllocatorE:309824 + 2: 4841 + 3: 4841 + 1: _ZN9oceanbase6common6ObListINS_3sql19DASRelatedTabletMap8MapEntryENS0_12ObIAllocatorEEC2ERS5_:188799 + 0: 4841 + 2: 4841 + 3: 4841 + 14.4: _ZN9oceanbase3sql19DASRelatedTabletMapD2Ev:360 + 0: 24 + 14.6: _ZN9oceanbase3sql19ObDASLocationRouterD2Ev:1488 + 0: _ZN9oceanbase6common6ObListINS_3sql14VirtualSvrPairENS0_12ObIAllocatorEED2Ev:1488 + 2: _ZN9oceanbase6common6ObListINS_3sql14VirtualSvrPairENS0_12ObIAllocatorEE5resetEv:1488 + 2: _ZN9oceanbase6common6ObListINS_3sql14VirtualSvrPairENS0_12ObIAllocatorEE5clearEv:1488 + 2: 24 + 3.1: 24 + 4: 24 + 5: 24 + 8: 24 + 9: 24 + 10: 24 + 14.7: _ZN9oceanbase6common6ObListIPNS_3sql13ObDASTableLocENS0_12ObIAllocatorEED2Ev:1320 + 2: _ZN9oceanbase6common6ObListIPNS_3sql13ObDASTableLocENS0_12ObIAllocatorEE5resetEv:1320 + 2: _ZN9oceanbase6common6ObListIPNS_3sql13ObDASTableLocENS0_12ObIAllocatorEE5clearEv:1320 + 2: 24 + 3.1: 24 + 4: 24 + 5: 24 + 8: 24 + 9: 24 + 10: 24 + 58.18: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:528 + 0: 24 + 58.19: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:552 + 0: 24 + 58.20: _ZN9oceanbase3sql19ObJoinFilterDataCtxD2Ev:312 + 0: 24 + 0.1: 24 + 58.23: _ZN9oceanbase3sql21ObPartIdRowMapManagerD2Ev:216 + 0: 24 + 58.26: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:600 + 0: 24 +_ZN9oceanbase3sql5ObSql10stmt_queryERKNS_6common8ObStringERNS0_8ObSqlCtxERNS0_11ObResultSetE:12375947:5138 + 1: 5055 + 2: 5055 + 14.1: 5151 + 15.1: 4 + 16.2: 5407 + 18.1: 4 + 24: 5399 + 24.1: 4 + 25: 5399 + 25.2: 4 + 28.1: 5399 + 30: 4856 _ZN9oceanbase5trace7ObTrace12get_instanceEv:4920 + 30.3: 4825 _ZN9oceanbase5trace7ObTrace7set_tagImJEEEv9ObTagTypeRKT_DpT0_:5016 + 32: 5510 _ZN9oceanbase5trace7ObTrace12get_instanceEv:5454 + 32.3: 5159 _ZN9oceanbase5trace7ObTrace7set_tagImJ9ObTagTypePcEEEvS3_RKT_DpT0_:5198 + 35: 5515 + 36.5: 5515 _ZN9oceanbase5trace16__ObFLTSpanGuardD2Ev:5509 + 36.10: 5565 _ZN9oceanbase3sql16LinkExecCtxGuardD2Ev:5765 + 3: _ZN9oceanbase3sql11ObResultSet11get_sessionEv:35385 + 0: 5055 + 3.1: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:55605 + 0: 5055 + 3.2: _ZN9oceanbase3sql16LinkExecCtxGuardC2ERNS0_16ObSQLSessionInfoERNS0_13ObExecContextE:345628 + 1: 4792 + 2: 4792 + 3: 4792 + 6: _ZN9oceanbase3sql16LinkExecCtxGuard20link_current_contextEv:264164 + 3: 4792 + 10: 4792 + 12: 4 + 16: 4792 + 17: 4 + 21: 4 + 22: 4 + 3: _ZN9oceanbase3sql16ObSQLSessionInfo16get_cur_exec_ctxEv:33544 + 0: 4792 + 9: _ZN9oceanbase3sql13ObExecContext14set_parent_ctxEPS1_:33544 + 0: 4792 + 12: _ZNK9oceanbase3sql13ObExecContext16get_nested_levelEv:28 + 0: 4 + 12.1: _ZN9oceanbase3sql13ObExecContext16set_nested_levelEl:48 + 0: 4 + 15: _ZN9oceanbase3sql16ObSQLSessionInfo16set_cur_exec_ctxEPNS0_13ObExecContextE:33544 + 0: 4792 + 17: _ZN9oceanbase3sql10ObSQLUtils13is_nested_sqlEPNS0_13ObExecContextE:76952 + 2: 4 + 2: _ZN9oceanbase3sql10ObSQLUtils16is_pl_nested_sqlEPNS0_13ObExecContextE:76836 + 3.1: 4792 + 6: 4 + 6.2: 4 + 7: 4 + 7.1: 4 + 8: 4 + 8.2: 4 + 3.1: _ZN9oceanbase3sql13ObExecContext14get_parent_ctxEv:33544 + 0: 4792 + 6: _ZN9oceanbase3sql13ObExecContext11get_sql_ctxEv:32 + 0: 4 + 7.1: _ZN9oceanbase3sql13ObExecContext16get_pl_stack_ctxEv:32 + 0: 4 + 2.1: _ZN9oceanbase3sql10ObSQLUtils16is_fk_nested_sqlEPNS0_13ObExecContextE:92 + 4: 4 + 5: 4 + 4: _ZN9oceanbase3sql13ObExecContext14get_parent_ctxEv:28 + 0: 4 + 21: _ZNK9oceanbase3sql18ObBasicSessionInfo14get_autocommitERb:148 + 2: 4 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache14get_autocommitEv:128 + 0: 4 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache14get_autocommitEb:92 + 0: 4 + 4: _ZN9oceanbase5trace16__ObFLTSpanGuardC2Ejh:114016 + 2: 5330 _ZN9oceanbase5trace7ObTrace12get_instanceEv:4999 + 2.1: 5494 _ZN9oceanbase5trace7ObTrace10begin_spanEjhb:5509 + 5: _ZN9oceanbase6common17ObTruncatedStringC2ERKNS0_8ObStringE:113541 + 2: 5330 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:5675 + 3: 4 + 2.5: _ZNK9oceanbase6common8ObString6lengthEv:20604 + 0: 5151 + 14: _ZN9oceanbase3sql5ObSql12sanity_checkERNS0_8ObSqlCtxE:237190 + 2: 5151 + 3: 5151 + 4.1: 4 + 5.1: 5151 + 5.2: 5151 + 6: 5151 + 6.1: 5151 + 7: 4 + 8.1: 4 + 15: 5151 + 16.1: _ZN9oceanbase3sql5ObSql17handle_text_queryERKNS_6common8ObStringERNS0_8ObSqlCtxERNS0_11ObResultSetE:10327466 + 2: 5151 + 4: 5254 + 5: 5254 + 6: 5254 _ZN9oceanbase5trace7ObTrace12get_instanceEv:5792 + 9: 4975 + 10.1: 4 + 11.1: 4975 + 12: 35 + 13.1: 35 + 14.1: 35 + 14.11: 35 + 14.12: 35 + 14.13: 35 + 14.14: 35 + 14.15: 35 + 14.16: 35 + 20.1: 5144 _ZN9oceanbase3lib6Worker23get_sql_arena_allocatorEv:5296 + 24: 5121 + 25: 5121 + 26: 5121 + 29: 5121 + 36: 5121 + 43: 5121 + 45: 310 + 45.2: 292 + 46: 310 + 48: 313 + 48.2: 279 + 49: 313 + 51: 310 + 57: 5220 + 59.1: 5220 + 59.4: 5220 + 64.1: 5220 + 65: 36 + 65.1: 1 + 66: 96 + 67.1: 96 + 71: 5382 + 71.1: 4634 + 71.2: 4853 _ZN9oceanbase3sql5ObSql27pc_get_plan_and_fill_resultERNS0_14ObPlanCacheCtxERNS0_11ObResultSetERiRb:5066 + 77: 96 + 78: 96 + 78.1: 4915 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:4717 + 79: 4915 + 80.1: 23 + 80.2: 23 + 86: 5183 + 86.1: 5710 + 87: 670 _ZN9oceanbase3sql5ObSql20handle_physical_planERKNS_6common8ObStringERNS0_8ObSqlCtxERNS0_11ObResultSetERNS0_14ObPlanCacheCtxEib:573 + 91.1: 96 + 100: 5636 + 101.1: 4788 + 102.1: 4788 + 102.3: 5636 _ZN9oceanbase3sql5ObSql14after_get_planERNS0_14ObPlanCacheCtxERNS0_16ObSQLSessionInfoEPNS0_14ObPhysicalPlanEbPKNS_6common9Ob2DArrayINS8_10ObObjParamELi2079744ENS8_18ObWrapperAllocatorELb0ENS8_9ObSEArrayIPSA_Ll1ESB_Lb0EEEEE:5736 + 104.1: 4 + 107: 4788 + 108: 4788 _ZN9oceanbase3sql14ObPlanCacheCtxD2Ev:5038 + 110: 5407 + 4: _ZN9oceanbase6common8ObString4trimEv:475504 + 3: 5151 + 5: 5151 + 6: 5151 + 6.1: 5151 + 6.2: 5154 + 6.3: 5141 + 7: 7 + 9: 5138 + 9.1: 5139 + 9.2: 5255 + 9.3: 5255 + 12: 5254 + 14: 5254 + 6.1: _ZN9oceanbase5trace7ObTrace7set_tagINS_6common8ObStringEJEEEv9ObTagTypeRKT_DpT0_:98834 + 2.1: 0 + 3: 5378 + 3.1: 70 + 4: 70 + 4.1: 0 + 6: 4 + 2: _ZNK9oceanbase5trace4UUID9is_initedEv:60576 + 0: 5556 + 0.1: 5378 + 5: _ZN9oceanbase5trace7ObTrace10append_tagINS_6common8ObStringELb1EEEb9ObTagTypeRKT_:0 + 3: 0 + 7: 0 + 6: _ZNK9oceanbase6common8ObString6lengthEv:0 + 0: 0 + 7: _ZN9oceanbase5trace7ObTrace10append_tagINS_6common8ObStringELb1EEEb9ObTagTypeRKT_:168 + 3: 4 + 7: 4 + 6: _ZNK9oceanbase6common8ObString6lengthEv:16 + 0: 4 + 9: _ZN9oceanbase3sql5ObSql15init_result_setERNS0_8ObSqlCtxERNS0_11ObResultSetE:628194 + 2: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:61657 + 0: 5602 + 2.1: _ZN9oceanbase3sql5ObSql17init_exec_contextERKNS0_8ObSqlCtxERNS0_13ObExecContextE:566292 + 4: 5567 + 5: 5567 _ZN9oceanbase3sql13ObExecContext24create_physical_plan_ctxEv:5626 + 6.1: 4 + 8: 4975 + 10: 4975 + 14: 4975 + 17: 4 + 4: _ZN9oceanbase3sql17ObTaskExecutorCtx15set_retry_timesEl:38969 + 2: 5567 + 8: _ZN9oceanbase3sql13ObExecContext14set_my_sessionEPNS0_16ObSQLSessionInfoE:34825 + 2: 4975 + 9: _ZN9oceanbase3sql13ObExecContext11set_sql_ctxEPNS0_8ObSqlCtxE:34825 + 0: 4975 + 10: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:34825 + 2: 4975 + 12: _ZNK9oceanbase3sql18ObBasicSessionInfo17get_query_timeoutERl:164175 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache20get_ob_query_timeoutEv:164175 + 0: 4975 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache20get_ob_query_timeoutEb:89550 + 0: 4975 + 13.1: _ZN9oceanbase3sql17ObPhysicalPlanCtx21set_timeout_timestampEl:19900 + 2: 4975 + 14: _ZNK9oceanbase3sql18ObBasicSessionInfo20get_query_start_timeEv:34825 + 0: 4975 + 11.1: _ZNK9oceanbase6common8ObString5emptyEv:54725 + 2: 4975 + 2.1: 4975 + 14.1: _ZN9oceanbase3lib14is_oracle_modeEv:1853 + 2: _ZN9oceanbase3lib15get_compat_modeEv:1853 + 2: 35 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:1293 + 2: 35 + 2.1: 4 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:88 + 1: 4 + 16: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:420 + 0: 35 + 16.1: _ZN9oceanbase3sql13ObExecContext19set_need_disconnectEb:245 + 0: 35 + 20: _ZN9oceanbase3lib6Worker4selfEv:144160 + 3: 5144 + 4: 4 + 21: _ZN9oceanbase3sql11ObResultSet11get_sessionEv:38409 + 0: 5487 + 23: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:60392 + 0: 5487 + 26: _ZNK9oceanbase3sql18ObBasicSessionInfo30get_local_ob_enable_plan_cacheEv:204840 + 2: 5121 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_ob_enable_plan_cacheEv:168993 + 0: 5121 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_ob_enable_plan_cacheEb:133146 + 0: 5121 + 37: _ZN9oceanbase3sql14ObPlanCacheCtxC2ERKNS_6common8ObStringEbRNS2_12ObIAllocatorERNS0_8ObSqlCtxERNS0_13ObExecContextEm:7010649 + 6: 5121 + 7: 5121 + 8: 5121 + 9: 5121 + 10: 5121 + 11: 5121 + 15: 5121 + 16: 5121 + 18: 5121 + 22: 5121 + 23: 5121 + 25: 5121 + 27: 5121 + 29: 5121 + 30: 5121 + 31: 5121 + 0: _ZN9oceanbase3sql14ObILibCacheCtxC2Ev:56331 + 1: 5121 + 0.3: _ZN9oceanbase6common8ObBitSetILl256ENS0_19ModulePageAllocatorELb1EEC2ERKS2_:855207 + 2: 5121 + 1: _ZN9oceanbase6common9ObSEArrayIjLl8ENS0_19ModulePageAllocatorELb1EECI2NS0_13ObSEArrayImplIjLl8ES2_Lb1EEEElRKS2_:763029 + 0: 5121 + 0: _ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb1EEC2ElRKS2_:670851 + 2: 5121 + 5: 5121 + 6: 5121 + 8: 5121 + 17.1: 5121 + 2: _ZN9oceanbase6common8ObIArrayIjEC2EPjl:92178 + 0: _ZN9oceanbase6common12ObIArrayWrapIjEC2EPjl:92178 + 0: 5121 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:199719 + 0: 5121 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:128025 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:128025 + 2: 5121 + 8: 5121 + 0.6: _ZN9oceanbase6common8ObBitSetILl256ENS0_19ModulePageAllocatorELb1EEC2ERKS2_:635004 + 2: 5121 + 1: _ZN9oceanbase6common9ObSEArrayIjLl8ENS0_19ModulePageAllocatorELb1EECI2NS0_13ObSEArrayImplIjLl8ES2_Lb1EEEElRKS2_:599157 + 0: 5121 + 0: _ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb1EEC2ElRKS2_:563310 + 2: 5121 + 5: 5121 + 6: 5121 + 8: 5121 + 17.1: 5121 + 2: _ZN9oceanbase6common8ObIArrayIjEC2EPjl:92178 + 0: _ZN9oceanbase6common12ObIArrayWrapIjEC2EPjl:92178 + 0: 5121 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:163872 + 0: 5121 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:92178 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:92178 + 2: 5121 + 8: 5121 + 0.8: _ZN9oceanbase6common9ObSEArrayINS0_8ObStringELl1ENS0_19ModulePageAllocatorELb1EEC2Ev:727182 + 0.1: 5121 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS0_8ObStringELl1ENS0_19ModulePageAllocatorELb1EEC2ElRKS3_:635004 + 2: 5121 + 5: 5121 + 6: 5121 + 8: 5121 + 17.1: 5121 + 2: _ZN9oceanbase6common8ObIArrayINS0_8ObStringEEC2EPS2_l:92178 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_8ObStringEEC2EPS2_l:92178 + 0: 5121 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:199719 + 0: 5121 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:92178 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:92178 + 2: 5121 + 8: 5121 + 0.9: _ZN9oceanbase3sql11ObSqlTraitsC2Ev:174114 + 1: 5121 + 5: 5121 + 7: 5121 + 11: _ZN9oceanbase3sql18ObFastParserResultC2Ev:1305855 + 4: 5121 + 0: _ZN9oceanbase3sql14ObPlanCacheKeyC2Ev:414801 + 2: 5121 + 3: 5121 + 4: 5121 + 4.1: 5121 + 0: _ZN9oceanbase3sql14ObILibCacheKeyC2Ev:51210 + 0: 5121 + 0.1: _ZN9oceanbase6common8ObStringC2Ev:71694 + 1: 5121 + 0.3: _ZN9oceanbase6common8ObStringC2Ev:51210 + 1: 5121 + 1.1: _ZN9oceanbase6common19ModulePageAllocatorC2ERKNS_3lib7ObLabelEll:291897 + 3: 5121 + 4: 5121 + 5: 5121 + 6: 5121 + 2: _ZN9oceanbase6common12ObFixedArrayIPNS_3sql9ObPCParamENS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplIS4_S5_EEEPS5_l:271413 + 0: 5121 + 0: _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql9ObPCParamENS0_12ObIAllocatorEEC2EPS5_l:179235 + 2: 5121 + 3: 5121 + 6: 5121 + 1: _ZN9oceanbase6common8ObIArrayIPNS_3sql9ObPCParamEEC2Ev:35847 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql9ObPCParamEEC2Ev:35847 + 0: 5121 + 3: _ZN9oceanbase6common12ObFixedArrayIPKNS0_10ObObjParamENS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplIS4_S5_EEEPS5_l:271413 + 0: 5121 + 0: _ZN9oceanbase6common16ObFixedArrayImplIPKNS0_10ObObjParamENS0_12ObIAllocatorEEC2EPS5_l:179235 + 2: 5121 + 3: 5121 + 6: 5121 + 1: _ZN9oceanbase6common8ObIArrayIPKNS0_10ObObjParamEEC2Ev:35847 + 0: _ZN9oceanbase6common12ObIArrayWrapIPKNS0_10ObObjParamEEC2Ev:35847 + 0: 5121 + 12: _ZN9oceanbase6common12ObFixedArrayINS_3sql12NotParamInfoENS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplIS3_S4_EEERS4_l:271413 + 0: 5121 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS_3sql12NotParamInfoENS0_12ObIAllocatorEEC2ERS4_l:179235 + 2: 5121 + 3: 5121 + 4: 5121 + 1: _ZN9oceanbase6common8ObIArrayINS_3sql12NotParamInfoEEC2Ev:35847 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_3sql12NotParamInfoEEC2Ev:35847 + 0: 5121 + 13: _ZN9oceanbase6common12ObFixedArrayINS_3sql14PsNotParamInfoENS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplIS3_S4_EEERS4_l:317502 + 0: 5121 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS_3sql14PsNotParamInfoENS0_12ObIAllocatorEEC2ERS4_l:225324 + 2: 5121 + 3: 5121 + 4: 5121 + 6: 5121 + 1: _ZN9oceanbase6common8ObIArrayINS_3sql14PsNotParamInfoEEC2Ev:35847 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_3sql14PsNotParamInfoEEC2Ev:35847 + 0: 5121 + 14: _ZN9oceanbase6common12ObFixedArrayINS0_13ObCharsetTypeENS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplIS2_S3_EEERS3_l:317502 + 0: 5121 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS0_13ObCharsetTypeENS0_12ObIAllocatorEEC2ERS3_l:225324 + 2: 5121 + 3: 5121 + 4: 5121 + 6: 5121 + 1: _ZN9oceanbase6common8ObIArrayINS0_13ObCharsetTypeEEC2Ev:35847 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_13ObCharsetTypeEEC2Ev:35847 + 0: 5121 + 17: _ZN9oceanbase6common12ObFixedArrayINS_3sql19SelectItemParamInfoENS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplIS3_S4_EEERS4_l:317502 + 0: 5121 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS_3sql19SelectItemParamInfoENS0_12ObIAllocatorEEC2ERS4_l:225324 + 2: 5121 + 3: 5121 + 4: 5121 + 6: 5121 + 1: _ZN9oceanbase6common8ObIArrayINS_3sql19SelectItemParamInfoEEC2Ev:35847 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_3sql19SelectItemParamInfoEEC2Ev:35847 + 0: 5121 + 20.2: _ZN9oceanbase6common8ObBitSetILl256ENS0_19ModulePageAllocatorELb1EEC2ERKS2_:635004 + 2: 5121 + 1: _ZN9oceanbase6common9ObSEArrayIjLl8ENS0_19ModulePageAllocatorELb1EECI2NS0_13ObSEArrayImplIjLl8ES2_Lb1EEEElRKS2_:599157 + 0: 5121 + 0: _ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb1EEC2ElRKS2_:563310 + 2: 5121 + 5: 5121 + 6: 5121 + 8: 5121 + 17.1: 5121 + 2: _ZN9oceanbase6common8ObIArrayIjEC2EPjl:92178 + 0: _ZN9oceanbase6common12ObIArrayWrapIjEC2EPjl:92178 + 0: 5121 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:163872 + 0: 5121 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:92178 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:92178 + 2: 5121 + 8: 5121 + 21: _ZN9oceanbase6common12ObFixedArrayINS_3sql18ObFastParserResultENS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplIS3_S4_EEERS4_l:317502 + 0: 5121 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS_3sql18ObFastParserResultENS0_12ObIAllocatorEEC2ERS4_l:225324 + 2: 5121 + 3: 5121 + 4: 5121 + 6: 5121 + 1: _ZN9oceanbase6common8ObIArrayINS_3sql18ObFastParserResultEEC2Ev:35847 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_3sql18ObFastParserResultEEC2Ev:35847 + 0: 5121 + 26: _ZN9oceanbase6common12ObFixedArrayIlNS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplIlS2_EEERS2_l:317502 + 0: 5121 + 0: _ZN9oceanbase6common16ObFixedArrayImplIlNS0_12ObIAllocatorEEC2ERS2_l:225324 + 2: 5121 + 3: 5121 + 4: 5121 + 6: 5121 + 1: _ZN9oceanbase6common8ObIArrayIlEC2Ev:35847 + 0: _ZN9oceanbase6common12ObIArrayWrapIlEC2Ev:35847 + 0: 5121 + 43: _ZNK9oceanbase6common8ObString6lengthEv:15363 + 0: 5121 + 45: _ZN9oceanbase6common8ObString3ptrEv:1168 + 0: 292 + 46.1: _ZNK9oceanbase3sql15ObMultiStmtItem21is_batched_multi_stmtEv:8680 + 3: 310 + 48: _ZN9oceanbase6common8ObString3ptrEv:1116 + 0: 279 + 49.1: _ZNK9oceanbase3sql15ObMultiStmtItem21is_batched_multi_stmtEv:8288 + 3: 296 + 53: _ZN9oceanbase3sql14ObPlanCacheCtx21set_begin_commit_stmtEv:6368 + 0: 568 + 57: _ZNK9oceanbase3sql18ObBasicSessionInfo15get_database_idERm:36540 + 0: 5220 + 65: _ZNK9oceanbase3sql15ObMultiStmtItem21is_batched_multi_stmtEv:437 + 3: 36 + 4: 36 + 6: 1 + 80.1: _ZN9oceanbase3sql13ObExecContext30get_need_disconnect_for_updateEv:161 + 0: 23 + 86.1: _ZNK9oceanbase3sql11ObResultSet22get_is_from_plan_cacheEv:45680 + 0: 5710 + 102.1: _ZN9oceanbase3sql11ObResultSet17get_physical_planEv:22544 + 2: _ZNK9oceanbase3sql15ObCacheObjGuard13get_cache_objEv:22544 + 2: 5636 + 102.2: _ZNK9oceanbase3sql11ObResultSet22get_is_from_plan_cacheEv:67632 + 0: 5636 + 21: _ZN9oceanbase3sql11ObResultSet11get_sessionEv:37849 + 0: 5407 + 21.1: _ZN9oceanbase3sql18ObBasicSessionInfo28set_exec_min_cluster_versionEv:65184 + 0: 5407 _ZN9oceanbase6common16ObClusterVersion12get_instanceEv:5451 + 0.1: _ZN9oceanbase6common16ObClusterVersion19get_cluster_versionEv:21596 + 0: 5399 + 26: _ZN9oceanbase3sql11ObResultSet11set_errcodeEi:48 + 2: 4 + 30.1: _ZN9oceanbase3sql11ObResultSet17get_physical_planEv:19300 + 2: _ZNK9oceanbase3sql15ObCacheObjGuard13get_cache_objEv:19300 + 2: 4825 + 30.2: _ZNK9oceanbase3sql14ObPhysicalPlan19get_plan_hash_valueEv:33775 + 0: 4825 + 32.1: _ZN9oceanbase3sql11ObResultSet11get_sessionEv:36113 + 0: 5159 + 32.2: _ZNK9oceanbase3sql18ObBasicSessionInfo15get_database_idEv:36113 + 0: 5159 + 36.7: _ZN9oceanbase5trace16__ObFLTSpanGuardD2Ev:284 + 0: 4 + 0.1: 4 + 0.2: 4 + 0.3: 4 + 0.4: 4 + 0.5: 4 + 0.7: 4 + 0.8: 4 + 0.12: 4 + 0.3: _ZNK9oceanbase5trace4UUID9is_initedEv:48 + 0: 4 + 0.1: 4 + 0.6: _ZN9oceanbase5trace7ObTrace13is_auto_flushEv:28 + 0: 4 + 36.8: _ZN9oceanbase3sql16LinkExecCtxGuardD2Ev:52 + 2: 4 + 2.1: 4 +_ZN9oceanbase11transaction9tablelock14ObLockMemtable5lock_ERKNS1_11ObLockParamERNS_7storage10ObStoreCtxERNS1_13ObTableLockOpE:12242477:1044 + 4: 1015 + 5: 1015 + 6: 1015 + 8: 1015 + 9: 1015 + 17: 1015 _ZN9oceanbase8memtable16ObMvccWriteGuard10write_authERNS_7storage10ObStoreCtxE:1029 + 17.1: 1059 + 18.1: 13 + 19.1: 1059 + 20.1: 1059 _ZNK9oceanbase8memtable13ObMemtableCtx16check_lock_existERKNS_11transaction9tablelock8ObLockIDERKlhRbRh:1097 + 20.2: 1119 + 25.1: 13 + 26.1: 1119 + 29.1: 770 _ZN9oceanbase11transaction9tablelock12ObOBJLockMap4lockERKNS1_11ObLockParamERNS_7storage10ObStoreCtxERKNS1_13ObTableLockOpERKhRNS_6common4hash19ObIteratableHashSetINS0_9ObTransIDELm16EEE:819 + 29.2: 892 + 36.1: 13 + 39.1: 892 _ZN9oceanbase8memtable13ObMemtableCtx15add_lock_recordERKNS_11transaction9tablelock13ObTableLockOpE:910 + 39.2: 752 + 40.1: 13 + 42: 13 + 45: 13 + 49: 13 + 50: 13 + 54.1: 13 + 79.1: 13 + 79.2: 13 + 79.3: 13 + 83.1: 13 + 88: 13 + 89.12: 1067 _ZN9oceanbase8memtable16ObMvccWriteGuardD1Ev:1078 + 89.13: 13 + 11: _ZN9oceanbase6common4hash19ObIteratableHashSetINS_11transaction9ObTransIDELm16EEC2Ev:6921285 + 0: 1015 + 0: _ZN9oceanbase6common4hash18ObPlacementHashSetINS0_11ObDLinkNodeINS_11transaction9ObTransIDEEELm16ELb0EEC2Ev:6853280 + 0.2: _ZN9oceanbase6common11ObDLinkNodeINS_11transaction9ObTransIDEEC2Ev:6658400 + 0: 16240 + 0: _ZN9oceanbase6common11ObDLinkBaseINS0_11ObDLinkNodeINS_11transaction9ObTransIDEEEEC2Ev:1867600 + 1: 16240 + 0.4: _ZN9oceanbase11transaction9ObTransIDC2Ev:2793280 + 0: 16240 + 0.11: _ZN9oceanbase6common8ObBitSetILl16ENS0_19ModulePageAllocatorELb0EEC2ERKS2_:194880 + 2: 1015 + 1: _ZN9oceanbase6common9ObSEArrayIjLl1ENS0_19ModulePageAllocatorELb0EECI2NS0_13ObSEArrayImplIjLl1ES2_Lb0EEEElRKS2_:169505 + 0: 1015 + 0: _ZN9oceanbase6common13ObSEArrayImplIjLl1ENS0_19ModulePageAllocatorELb0EEC2ElRKS2_:151235 + 2: 1015 + 5: 1015 + 6: 1015 + 8: 1015 + 17.1: 1015 + 2: _ZN9oceanbase6common8ObIArrayIjEC2EPjl:18270 + 0: _ZN9oceanbase6common12ObIArrayWrapIjEC2EPjl:18270 + 0: 1015 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:57855 + 0: 1015 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:25375 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:25375 + 2: 1015 + 8: 1015 + 0.4: _ZN9oceanbase6common7ObDListINS0_11ObDLinkNodeINS_11transaction9ObTransIDEEEEC2Ev:42630 + 2: 1015 + 3: 1015 + 4: 1015 + 65463: _ZN9oceanbase6common11ObDLinkBaseINS0_11ObDLinkNodeINS_11transaction9ObTransIDEEEEC2Ev:18270 + 2: 1015 + 12: _ZN9oceanbase8memtable16ObMvccWriteGuardC2Eb:32480 + 1: 1015 + 2: 1015 + 3: 1015 + 28.1: _ZN9oceanbase11transaction9tablelockL12lock_upgradeERKhRNS1_13ObTableLockOpE:15405 + 3: 793 + 3.1: 13 + 5: 13 + 6: 13 + 8: 13 + 9: 13 + 54: _ZNK9oceanbase11transaction9tablelock13ObTableLockOp14is_dml_lock_opEv:143 + 2: _ZN9oceanbase11transaction9tablelockL28is_in_trans_dml_lock_op_typeENS1_17ObTableLockOpTypeE:143 + 2: 13 + 58: _ZN9oceanbase6common8function24DefaultFunctionAllocator21get_default_allocatorEv:702 + 1: 13 + 1.1: 13 + 1.3: 13 + 58.1: _ZN9oceanbase6common10ObFunctionIFiRbEEC2IZNS_11transaction9tablelock14ObLockMemtable5lock_ERKNS7_11ObLockParamERNS_7storage10ObStoreCtxERNS7_13ObTableLockOpEE3$_9Lb1EEEOT_RNS0_12ObIAllocatorE:689 + 2: 13 + 6.1: _ZN9oceanbase6common10ObFunctionIFiRbEE6assignIZNS_11transaction9tablelock14ObLockMemtable5lock_ERKNS7_11ObLockParamERNS_7storage10ObStoreCtxERNS7_13ObTableLockOpEE3$_9Lb1EEEiOT_:546 + 7: 13 + 12: 13 + 12.1: _ZN9oceanbase6common10ObFunctionIFiRbEE7DerivedIZNS_11transaction9tablelock14ObLockMemtable5lock_ERKNS7_11ObLockParamERNS_7storage10ObStoreCtxERNS7_13ObTableLockOpEE3$_9EC2ISH_EEOT_:442 + 0: 13 + 81: _ZNK9oceanbase6common4hash19ObIteratableHashSetINS_11transaction9ObTransIDELm16EE5beginEv:91 + 2: _ZNK9oceanbase6common7ObDListINS0_11ObDLinkNodeINS_11transaction9ObTransIDEEEE9get_firstEv:91 + 0: 13 + 81.1: _ZNK9oceanbase6common4hash32ObIteratableHashSetConstIteratorINS1_19ObIteratableHashSetINS_11transaction9ObTransIDELm16EEEEdeEv:104 + 2: _ZNK9oceanbase6common11ObDLinkNodeINS_11transaction9ObTransIDEE8get_dataEv:104 + 0: 13 + 87: _ZN9oceanbase6common10ObFunctionIFiRbEED2Ev:650 + 0.2: 13 + 0: _ZN9oceanbase6common10ObFunctionIFiRbEE5resetEv:546 + 1: 13 + 2: 13 + 3: 13 + 4: 13 + 6: 13 + 3: _ZN9oceanbase6common10ObFunctionIFiRbEE13is_local_obj_Ev:91 + 1: 13 + 87.1: _ZN9oceanbase6common10ObFunctionIFiRbEED2Ev:676 + 0.2: 13 + 0: _ZN9oceanbase6common10ObFunctionIFiRbEE5resetEv:572 + 1: 13 + 2: 13 + 3: 13 + 4: 13 + 6: 13 + 3: _ZN9oceanbase6common10ObFunctionIFiRbEE13is_local_obj_Ev:91 + 1: 13 + 89.14: _ZN9oceanbase6common4hash19ObIteratableHashSetINS_11transaction9ObTransIDELm16EED2Ev:63167 + 0.1: _ZN9oceanbase6common4hash18ObPlacementHashSetINS0_11ObDLinkNodeINS_11transaction9ObTransIDEEELm16ELb0EED2Ev:63167 + 0.1: _ZN9oceanbase6common11ObDLinkNodeINS_11transaction9ObTransIDEED2Ev:61360 + 0: 208 + 0: _ZN9oceanbase11transaction9ObTransIDD2Ev:38064 + 0: 208 + 0.2: _ZN9oceanbase6common8ObBitSetILl16ENS0_19ModulePageAllocatorELb0EED2Ev:1807 + 0: 13 + 0: _ZN9oceanbase6common13ObSEArrayImplIjLl1ENS0_19ModulePageAllocatorELb0EED2Ev:1716 + 1: 13 + 3.2: 13 + 2: _ZN9oceanbase6common13ObSEArrayImplIjLl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:1274 + 9: 13 + 11: 13 + 10: _ZN9oceanbase6common13ObSEArrayImplIjLl1ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:845 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:845 + 0: 13 + 0.2: 13 + 0.1: _ZN9oceanbase6common7ob_freeEPv:572 + 2: 13 + 3: 13 + 4: 13 + 5: 13 + 4: _ZL12abort_unlessb:91 + 5: 13 + 6: 13 + 89.16: _ZN9oceanbase6common4hash19ObIteratableHashSetINS_11transaction9ObTransIDELm16EED2Ev:4988031 + 0.1: _ZN9oceanbase6common4hash18ObPlacementHashSetINS0_11ObDLinkNodeINS_11transaction9ObTransIDEEELm16ELb0EED2Ev:4988031 + 0.1: _ZN9oceanbase6common11ObDLinkNodeINS_11transaction9ObTransIDEED2Ev:4941840 + 0: 16752 + 0: _ZN9oceanbase11transaction9ObTransIDD2Ev:3065616 + 0: 16752 + 0.2: _ZN9oceanbase6common8ObBitSetILl16ENS0_19ModulePageAllocatorELb0EED2Ev:46191 + 0: 1047 + 0: _ZN9oceanbase6common13ObSEArrayImplIjLl1ENS0_19ModulePageAllocatorELb0EED2Ev:38862 + 1: 1047 + 3.2: 13 + 2: _ZN9oceanbase6common13ObSEArrayImplIjLl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:19912 + 9: 1047 + 11: 13 + 10: _ZN9oceanbase6common13ObSEArrayImplIjLl1ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:962 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:962 + 0: 13 + 0.2: 13 + 0.1: _ZN9oceanbase6common7ob_freeEPv:663 + 2: 13 + 3: 13 + 4: 13 + 5: 13 + 4: _ZL12abort_unlessb:208 + 5: 13 + 6: 13 +_ZN9oceanbase3sql8ObSortOp12process_sortEv:12179075:569 + 1: 514 + 2: 514 + 3: 514 + 5.1: 542 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10.1: 117 + 12: 0 + 13: 0 + 14: 117 + 18: 117 + 18.1: 0 + 19.1: 0 + 19.3: 0 + 21: 0 + 22.1: 0 + 23.1: 0 + 25.1: 0 + 28: 0 + 29.2: 0 + 29.4: 0 + 29.10: 0 + 32: 117 + 33: 0 + 35.2: 117 + 35.4: 117 + 37.1: 509 + 39.1: 54235 + 41: 57405 + 42.1: 117 + 43.1: 52863 _ZN9oceanbase3sql10ObOperator12get_next_rowEv:53813 + 45.1: 117 + 48: 51404 + 49.2: 53024 + 49.4: 117 + 50: 53024 + 50.1: 117 + 55: 117 + 55.2: 117 + 55.3: 117 + 56: 117 + 56.1: 117 + 58.1: 117 + 61: 117 + 62: 646 + 64.2: 637 _ZN9oceanbase3sql12ObSortOpImpl4sortEv:524 + 64.4: 117 + 66: 117 + 67.1: 117 + 70: 618 + 12: _ZN9oceanbase3sql22ObInMemoryTopnSortImpl8set_topnEl:0 + 0: 0 + 20: _ZN9oceanbase3sql10ObOperator20clear_evaluated_flagEv:0 + 2.1: 0 + 2.3: 0 + 3: 0 + 2.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql10ObEvalInfoEE5countEv:0 + 0: 0 + 3: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql10ObEvalInfoEE2atEl:0 + 6: 0 + 3.1: _ZN9oceanbase3sql10ObEvalInfo20clear_evaluated_flagEv:0 + 2: 0 + 4: 0 + 21: _ZN9oceanbase3sql10ObOperator16try_check_statusEv:0 + 2: 0 + 64901: 0 + 3: _ZN9oceanbase3sql10ObOperator12check_statusEv:0 + 2: 0 + 64566: 0 + 40: _ZN9oceanbase3sql10ObOperator20clear_evaluated_flagEv:497202 + 2.1: 54759 + 2.3: 93 + 3: 93 + 2.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql10ObEvalInfoEE5countEv:274446 + 0: 54759 + 3: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql10ObEvalInfoEE2atEl:465 + 6: 93 + 3.1: _ZN9oceanbase3sql10ObEvalInfo20clear_evaluated_flagEv:1209 + 2: 93 + 4: 93 + 41: _ZN9oceanbase3sql10ObOperator16try_check_statusEv:1552911 + 2: 57405 + 64901: 93 + 3: _ZN9oceanbase3sql10ObOperator12check_statusEv:2046 + 2: 93 + 64586: 93 + 49.10: _ZN9oceanbase3sql12ObSortOpImpl7add_rowERKNS_6common8ObIArrayIPNS0_6ObExprEEERb:5876683 + 2: 51404 + 3: _ZN9oceanbase3sql12ObSortOpImpl7add_rowERKNS_6common8ObIArrayIPNS0_6ObExprEEERPKNS0_17ObChunkDatumStore9StoredRowERb:5465451 + 6: 51404 _ZN9oceanbase3sql12ObSortOpImpl7add_rowERKNS_6common8ObIArrayIPNS0_6ObExprEEERPKNS0_17ObChunkDatumStore9StoredRowE:52654 + 7.1: 117 + 11: 117 + 9: _ZN9oceanbase3sql12ObSortOpImpl9need_dumpEv:4527742 + 2: 47615 + 3: 47615 + 3.1: 53024 + 2: _ZNK9oceanbase3sql20ObSqlMemMgrProcessor13get_data_sizeEv:1047530 + 0: 47615 + 2.2: _ZNK9oceanbase3sql20ObSqlMemMgrProcessor13get_mem_boundEv:958408 + 1: 47615 + 3.1: _ZNK9oceanbase3lib13MemoryContextptEv:380920 + 1: 47615 + 3.2: _ZNK9oceanbase3lib17__MemoryContext__4usedEv:1266521 + 2: 53024 + 2: _ZNK9oceanbase3lib17__MemoryContext__11malloc_usedEv:895353 + 2: 53024 _ZNK9oceanbase6common11ObAllocator4usedEv:48595 + 50.1: _ZN9oceanbase3sql11get_my_specINS0_8ObSortOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:585 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:585 + 0: 117 + 55.2: _ZN9oceanbase3sql11get_my_specINS0_8ObSortOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:585 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:585 + 0: 117 +_ZN9oceanbase7storage18ObSimpleRowsMergerINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpEE4pushERKS2_:11960364:74034 + 1: 71381 + 2: 71381 + 3: 71381 + 4: 147 + 5.1: 147 + 6.1: 71381 + 7: 147 + 8.1: 147 + 10: 71381 + 11: 36607 + 16.1: 35172 + 16.3: 35172 + 17: 35172 _ZN9oceanbase7storage23ObScanMergeLoserTreeCmpclERKNS0_24ObScanMergeLoserTreeItemES4_:35865 + 18: 37290 + 19: 0 + 20.1: 0 + 22: 37290 + 23: 24310 + 24.1: 13607 + 26: 12928 + 32: 12326 + 40: 12326 + 41: 35769 + 42: 35769 + 44: 446 + 50: 73275 + 51: 73275 + 53: 73275 + 18: _ZNK9oceanbase7storage23ObScanMergeLoserTreeCmp14get_error_codeEv:111870 + 0: 37290 +_ZN9oceanbase3lib8BlockSet11alloc_blockEmRKNS0_9ObMemAttrE:11792479:9122 + 1: 8698 + 7: 8698 + 10: 0 + 11: 0 + 12.1: 8698 + 14.1: 8698 + 18: 0 + 19: 0 + 20: 0 + 28: 8565 + 31: 8734 + 32: 9087 _ZTWN9oceanbase3lib15malloc_callbackE:9021 + 33: 3859 _ZTWN9oceanbase3lib15malloc_callbackE:3868 + 33.1: 3802 _ZN9oceanbase8observer23ObProcessMallocCallbackclERKNS_3lib9ObMemAttrEl:3814 + 34: 4065 _ZTWN9oceanbase3lib15malloc_callbackE:3950 + 34.1: 4219 _ZTWN9oceanbase3lib15malloc_callbackE:4275 + 35: 0 + 40: 9536 + 16: _ZN9oceanbase3lib8BlockSet14get_free_blockEiRKNS0_9ObMemAttrE:7605293 + 5: 9074 + 6: 8640 + 8: 8640 + 9: 0 + 10: 0 + 11: 0 + 16: 8640 + 21: 8640 + 25: 3604 + 27: 3604 + 4: _ZNK9oceanbase3lib7ABitSet22find_first_significantEi:1286812 + 3: 17567 + 6: 12741 + 9: 17567 + 10: 17567 + 12: 4979 + 13.1: 12741 + 16: 3739 + 19: 7658 + 20: 7658 + 22: 3890 + 23: 3890 + 25.1: 3739 + 27.1: 4 + 28: 4 + 29: 4 + 32: 4 + 33: 4 + 36: 4 + 37: 4 + 44: 8640 + 9: _ZN9oceanbase3lib7ABitSet6myffslEmi:124805 + 3: 4979 + 4: 17567 + 19: _ZN9oceanbase3lib7ABitSet6myffslEmi:84482 + 2: 7658 + 3: 3890 + 4: 7658 + 23: _ZN9oceanbase3lib7ABitSet6myffslEmi:38900 + 3: 3890 + 4: 3890 + 28: _ZN9oceanbase3lib7ABitSet6myffslEmi:52 + 2: 4 + 4: 4 + 32: _ZN9oceanbase3lib7ABitSet6myffslEmi:28 + 3: 4 + 4: 4 + 37: _ZN9oceanbase3lib7ABitSet6myffslEmi:80 + 3: 4 + 4: 4 + 13: _ZN9oceanbase3lib7ABitSet5unsetEi:725760 + 2: 8640 + 5: 8640 + 7: 8640 + 8: 8640 + 10: 8640 + 11: 8640 + 12: 8640 + 12.1: 0 + 13: 0 + 22: _ZNK9oceanbase3lib6ABlock5chunkEv:36040 + 2: _ZN9oceanbase3lib6AChunk9ptr2chunkEPKv:36040 + 2: 3604 + 24: _ZNK9oceanbase3lib6AChunk10blk_offsetEPKNS0_6ABlockE:158576 + 2: 3604 + 3: 3604 + 3.2: _ZL12abort_unlessb:64872 + 5: 3604 + 6: 0 + 25: _ZNK9oceanbase3lib6AChunk10offset2blkEi:50456 + 2: 3604 + 25.1: _ZN9oceanbase3lib6ABlockC2Ev:129744 + 1: 3604 + 2: 3604 + 3: 3604 + 4: 3604 + 27: _ZN9oceanbase3lib8BlockSet14add_free_blockEPNS0_6ABlockEiPNS0_6AChunkE:699176 + 9: 3604 + 10: 3604 + 11: 0 + 12: 0 + 13: 0 + 14: 0 + 15: 0 + 17: 3604 + 18: 3604 + 3: _ZNK9oceanbase3lib6AChunk10blk_offsetEPKNS0_6ABlockE:122536 + 2: 3604 + 3: 3604 + 3.2: _ZL12abort_unlessb:64872 + 5: 3604 + 6: 0 + 3.1: _ZN9oceanbase3lib6AChunk19mark_blk_offset_bitEi:79288 + 2: _ZN9oceanbase3lib13ASimpleBitSetILi256EE3setEi:79288 + 2: 3604 + 4: 3604 + 10: _ZN9oceanbase3lib7ABitSet5issetEi:118932 + 3: 3604 + 6: 3604 + 9: 3604 + 19: _ZN9oceanbase3lib7ABitSet3setEi:291924 + 2: 3604 + 5: 3604 + 7: 3604 + 10: 3604 + 11: 3604 + 13: 3604 + 31: _ZN9oceanbase3lib8BlockSet9add_chunkERKNS0_9ObMemAttrE:3964032 + 4: 8677 + 2: _ZN9oceanbase3lib8BlockSet11alloc_chunkEmRKNS0_9ObMemAttrE:2471212 + 3: 8701 + 5.1: 8701 + 9: 8701 + 10: 0 + 11: 0 + 13: 0 + 14: 0 + 18: 8701 + 19: 3744 + 20: 3744 + 21: 3744 + 22: 3744 + 24: 4964 + 27: 8677 + 5.1: _ZNK9oceanbase3lib10AChunkList5countEv:60907 + 2: 8701 + 6: _ZN9oceanbase3lib8BlockSet9LockGuardC2ERNS1_4LockE:617771 + 0: _ZN9oceanbase3lib8BlockSet4Lock4lockEv:617771 + 2: 8701 + 3.1: 8701 + 4: 0 + 2: _ZN9oceanbase6common8get_itidEv:243628 + 4: 8701 + 5: 0 + 6: 0 + 8: 0 + 7: _ZN9oceanbase3lib10AChunkList3popEv:687379 + 3: 8701 + 4: 8701 + 7: 0 + 9: 8701 + 10: 8701 + 12: 8701 + 5: _ZN9oceanbase3lib7ObMutex4lockEv:0 + 0: 0 + 13: _ZN9oceanbase3lib7ObMutex6unlockEv:0 + 0: 0 + 8: _ZN9oceanbase3lib8BlockSet9LockGuardD2Ev:78309 + 0: _ZN9oceanbase3lib8BlockSet4Lock6unlockEv:78309 + 0: 8701 + 8.1: _ZN9oceanbase3lib8BlockSet9LockGuardD2Ev:0 + 0: _ZN9oceanbase3lib8BlockSet4Lock6unlockEv:0 + 0: 0 + 13: _ZNK9oceanbase3lib6AChunk4holdEPm:0 + 2: 0 + 2: _ZN9oceanbase3lib6AChunk9calc_holdEllPm:0 + 3: 0 + 3.2: 0 + 4: 0 + 5.1: 0 + 2: _ZN9oceanbase3lib9align_up2Emm:0 + 2: 0 + 3.4: _ZN9oceanbase3lib9align_up2Emm:0 + 2: 0 + 4: _ZN9oceanbase3lib6ABlockC2Ev:364434 + 1: 8677 + 2: 8677 + 3: 8677 + 4: 8677 + 5: _ZN9oceanbase3lib8BlockSet14add_free_blockEPNS0_6ABlockEiPNS0_6AChunkE:1067647 + 10: 8677 + 11: 4 + 12: 4 + 13: 4 + 14: 4 + 15: 4 + 17: 8677 + 18: 8677 + 3.1: _ZN9oceanbase3lib6AChunk19mark_blk_offset_bitEi:34708 + 2: _ZN9oceanbase3lib13ASimpleBitSetILi256EE3setEi:34708 + 4: 8677 + 10: _ZN9oceanbase3lib7ABitSet5issetEi:295018 + 3: 8677 + 9: 8677 + 19: _ZN9oceanbase3lib7ABitSet3setEi:503362 + 2: 8677 + 7: 8677 + 11: 8677 + 13: 8677 + 20: _ZN9oceanbase3lib6ABlockC2Ev:0 + 1: 0 + 2: 0 + 3: 0 + 4: 0 + 23.1: _ZN9oceanbase3lib6AChunk19mark_blk_offset_bitEi:0 + 2: _ZN9oceanbase3lib13ASimpleBitSetILi256EE3setEi:0 + 4: 0 + 30: _ZNK9oceanbase3lib6ABlock4holdEPm:2860791 + 5: 8565 + 5.1: 8565 + 5.2: 8985 + 8: 3686 + 3: _ZNK9oceanbase3lib6AChunk10blk_offsetEPKNS0_6ABlockE:471075 + 2: 8565 + 3: 8565 + 3.2: _ZL12abort_unlessb:51390 + 5: 8565 + 6: 0 + 5.1: _ZNK9oceanbase3lib6AChunk19is_first_blk_offsetEiPi:17130 + 2: 8565 + 5.2: _ZNK9oceanbase3lib6AChunk18is_last_blk_offsetEiPi:1281777 + 4: 8985 + 4: _ZNK9oceanbase3lib6AChunk17min_blk_offset_geEi:1254822 + 2: _ZNK9oceanbase3lib13ASimpleBitSetILi256EE10min_bit_geEi:1254822 + 8: 35464 + 9: 35464 + 12: 8985 + 8: _ZN9oceanbase3lib13ASimpleBitSetILi256EE10min_bit_geEmi:342172 + 3: 3963 + 4: 35464 + 6: _ZNK9oceanbase3lib6AChunk4holdEPm:266166 + 2: 5022 + 2: _ZN9oceanbase3lib6AChunk9calc_holdEllPm:225990 + 3: 5022 + 5.1: 5022 + 2: _ZN9oceanbase3lib9align_up2Emm:90396 + 2: 5022 + 3.2: _ZN9oceanbase3libL13get_page_sizeEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 3: 0 + 3.4: _ZN9oceanbase3lib9align_up2Emm:0 + 2: 0 + 8: _ZNK9oceanbase3lib6AChunk11blk_nblocksEPKNS0_6ABlockE:593446 + 4.3: 3686 + 2: _ZNK9oceanbase3lib6AChunk10blk_offsetEPKNS0_6ABlockE:33174 + 3.2: _ZL12abort_unlessb:33174 + 5: 3686 + 6: 0 + 4: _ZNK9oceanbase3lib6AChunk18is_last_blk_offsetEiPi:541842 + 4: 3686 + 4: _ZNK9oceanbase3lib6AChunk17min_blk_offset_geEi:501296 + 2: _ZNK9oceanbase3lib13ASimpleBitSetILi256EE10min_bit_geEi:501296 + 2: 3686 + 7: 3686 + 8: 18430 + 9: 18430 + 11.1: 0 + 12: 3686 + 8: _ZN9oceanbase3lib13ASimpleBitSetILi256EE10min_bit_geEmi:187986 + 2: 18430 + 3: 3686 + 4: 18430 +_ZN9oceanbase3sql12ObSortOpImpl14before_add_rowEv:11728178:54823 + 1: 52680 + 2: 52680 + 3: 52680 + 4: 89 + 5.1: 89 + 6.1: 52680 + 7: 1846 + 8.1: 1341 + 10: 1846 + 11: 1846 + 11.2: 1846 + 12: 1870 + 12.2: 1846 _ZN9oceanbase3sql20ObSqlMemMgrProcessor4initEPNS_6common12ObIAllocatorEmlNS0_17ObPhyOperatorTypeEmPNS0_13ObExecContextE:528 + 16.1: 1341 + 20: 1870 + 25: 52704 + 25.1: 52704 + 26: 51862 + 27: 51862 + 27.1: 58963 _ZNSt14_Function_baseD2Ev:55590 + 27.2: 1341 + 27.5: 51862 _ZN9oceanbase3sql20ObSqlMemMgrProcessor42update_max_available_mem_size_periodicallyEPNS_6common12ObIAllocatorESt8functionIFblEERb:52061 + 31.1: 1341 + 32.1: 58963 + 32.2: 841 + 32.4: 841 + 34.1: 58585 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:58066 + 35: 50876 + 37: 1350 + 38.1: 1350 + 40.1: 54324 _ZN9oceanbase3sql12ObSortOpImpl9need_dumpEv:56603 + 41: 1430 + 42: 1430 + 43.1: 1341 + 44.1: 1430 + 44.2: 1430 + 45.1: 1341 + 49: 54689 + 51: 54689 + 51.1: 53878 + 52: 1350 + 53: 1350 + 54.1: 1350 + 56: 1350 + 58: 1350 + 58.1: 1350 + 59: 1350 + 60.1: 1350 + 65: 53878 + 3: _ZNK9oceanbase3sql12ObSortOpImpl9is_initedEv:210720 + 0: 52680 + 7: _ZN9oceanbase3sql12ObSortOpImpl7Compare4initEPKNS_6common8ObIArrayINS0_20ObSortFieldCollationEEEPKNS4_INS3_9ObCmpFuncEEEPNS0_13ObExecContextE:263528 + 5: 1846 + 6: 1846 + 7: 1341 + 8.1: 1341 + 9.1: 1846 + 10: 1341 + 11.1: 1341 + 14: 1846 + 15: 1846 + 16: 1846 + 17: 1846 + 18: 1846 + 19: 1846 + 21: 1846 + 17: _ZNK9oceanbase6common12ObIArrayWrapINS0_9ObCmpFuncEE5countEv:7384 + 0: 1846 + 19: _ZNK9oceanbase6common12ObIArrayWrapINS0_9ObCmpFuncEE5countEv:7384 + 0: 1846 + 12: _ZNK9oceanbase3lib13MemoryContextptEv:7384 + 1: 1846 + 12.1: _ZN9oceanbase3lib17__MemoryContext__20get_malloc_allocatorEv:12922 + 0: 1846 + 18: _ZN9oceanbase3sql20ObSqlMemMgrProcessor10get_dir_idEv:67997 + 2: 1870 + 3.1: 1341 + 5: 1341 + 18.1: _ZN9oceanbase3sql17ObChunkDatumStore10set_dir_idEl:13090 + 0: 1870 + 19: _ZN9oceanbase3sql17ObChunkDatumStore12set_callbackEPNS0_19ObSqlMemoryCallbackE:13090 + 0: 1870 + 20: _ZN9oceanbase3sql17ObChunkDatumStore21set_io_event_observerEPNS0_17ObIOEventObserverE:20324 + 2: 1870 + 25.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql17ObChunkDatumStore9StoredRowEE5emptyEv:421632 + 0: 52704 + 27: _ZNK9oceanbase3lib13MemoryContextptEv:207448 + 1: 51862 + 27.3: _ZN9oceanbase3lib17__MemoryContext__20get_malloc_allocatorEv:570482 + 0: 51862 + 27.4: _ZNSt8functionIFblEEC2IZN9oceanbase3sql12ObSortOpImpl14before_add_rowEvE5$_970vEET_:1296550 + 8: 51862 + 9: 51862 + 7.1: _ZNSt14_Function_base13_Base_managerIZN9oceanbase3sql12ObSortOpImpl14before_add_rowEvE5$_970E15_M_init_functorERSt9_Any_dataOS4_:155586 + 1.1: _ZNSt14_Function_base13_Base_managerIZN9oceanbase3sql12ObSortOpImpl14before_add_rowEvE5$_970E15_M_init_functorERSt9_Any_dataOS4_St17integral_constantIbLb1EE:155586 + 1: 51862 + 32.2: _ZNK9oceanbase3lib13MemoryContextptEv:3364 + 1: 841 + 32.3: _ZNK9oceanbase3lib17__MemoryContext__4usedEv:22707 + 2: 841 + 2: _ZNK9oceanbase3lib17__MemoryContext__11malloc_usedEv:16820 + 2: 841 + 34.2: _ZNK9oceanbase6common14ObServerConfig28is_sql_operator_dump_enabledEv:356132 + 0: 50876 + 58: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql17ObChunkDatumStore9StoredRowEE5emptyEv:13500 + 0: 1350 + 0: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql17ObChunkDatumStore9StoredRowEE5countEv:9450 + 0: 1350 + 58.2: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql17ObChunkDatumStore9StoredRowEE2atEl:9450 + 6: 1350 +_ZN9oceanbase7storage19ObSSTableRowScannerD2Ev:11725245:1014 + 1: 936 + 2.1: 936 + 2.2: 986 _ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScannerD2Ev:968 + 2.3: 986 + 2.4: 986 + 2.5: 986 _ZN9oceanbase6common18ObWrapperAllocator4freeEPv:997 + 2.7: 971 + 3: 462 + 3.1: 980 _ZN9oceanbase12blocksstable18ObMacroBlockReaderD1Ev:982 + 3.2: 462 + 3.3: 462 + 3.5: _ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherD2Ev:11617864 + 1: 980 + 1.1: 49280 _ZN9oceanbase7storage22ObMicroBlockDataHandleD1Ev:1119 + 1.2: 1540 _ZN9oceanbase6common16ObFixedArrayImplINS_7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandleENS0_12ObIAllocatorEED2Ev:1087 + 1.3: 1458 _ZN9oceanbase6common16ObFixedArrayImplINS_7storage19ObSSTableReadHandleENS0_12ObIAllocatorEED2Ev:1017 + 1.5: 1509 _ZN9oceanbase7storage21ObIndexTreePrefetcherD2Ev:1049 +_ZN9oceanbase7storage19ObSSTableRowScannerD1Ev:11725245:1014 + 1: 936 + 2.1: 936 + 2.2: 986 _ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScannerD2Ev:968 + 2.3: 986 + 2.4: 986 + 2.5: 986 _ZN9oceanbase6common18ObWrapperAllocator4freeEPv:997 + 2.7: 971 + 3: 462 + 3.1: 980 _ZN9oceanbase12blocksstable18ObMacroBlockReaderD1Ev:982 + 3.2: 462 + 3.3: 462 + 3.5: _ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherD2Ev:11617864 + 1: 980 + 1.1: 49280 _ZN9oceanbase7storage22ObMicroBlockDataHandleD1Ev:1119 + 1.2: 1540 _ZN9oceanbase6common16ObFixedArrayImplINS_7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandleENS0_12ObIAllocatorEED2Ev:1087 + 1.3: 1458 _ZN9oceanbase6common16ObFixedArrayImplINS_7storage19ObSSTableReadHandleENS0_12ObIAllocatorEED2Ev:1017 + 1.5: 1509 _ZN9oceanbase7storage21ObIndexTreePrefetcherD2Ev:1049 +_ZN9oceanbase7storage23ObScanMergeLoserTreeCmpclERKNS0_24ObScanMergeLoserTreeItemES4_:11591459:99201 + 3: 94162 + 4: 94162 + 5: 94162 + 6: 94162 + 7: 865 + 8.1: 865 + 9.1: 94162 + 9.2: 94162 + 9.3: 94162 + 9.4: 94162 + 10: 865 + 11.1: 865 + 13: 94162 + 14: 94162 + 15: 103567 _ZN9oceanbase7storage23ObScanMergeLoserTreeCmp14compare_rowkeyERKNS_12blocksstable10ObDatumRowES5_Ri:100026 + 16.1: 865 + 17.1: 103567 + 18: 865 + 22: 104866 +_ZN9oceanbase7storage15ObMultipleMerge4initERKNS0_18ObTableAccessParamERNS0_20ObTableAccessContextERKNS0_15ObGetTableParamE:10924679:4548 + 4: 4404 + 5: 4404 + 6: 4404 + 7: 0 + 8.1: 0 + 9.2: 12 + 10: 4404 + 11: 4404 + 12: 12 + 13.1: 12 + 14.1: 4709 + 14.2: 4404 _ZN9oceanbase12blocksstable10ObDatumRow4initERNS_6common12ObIAllocatorEl:4515 + 15.1: 12 + 16.1: 4709 + 16.2: 4709 _ZN9oceanbase12blocksstable10ObDatumRow4initERNS_6common12ObIAllocatorEl:4765 + 17.1: 12 + 18.1: 4449 + 18.2: 4449 _ZN9oceanbase12blocksstable10ObDatumRow4initERNS_6common12ObIAllocatorEl:4539 + 19.1: 12 + 20.1: 4442 + 20.2: 4364 _ZN9oceanbase7storage8ObNopPos4initERNS_6common12ObIAllocatorEl:4389 + 21.1: 12 + 22.1: 4442 + 22.2: 4442 + 22.3: 4442 + 22.4: 4380 + 23: 4442 + 23.1: 4442 _ZN9oceanbase7storage20ObRow2ExprsProjector4initERKNS_6common8ObIArrayIPNS_3sql6ObExprEEERNS4_18ObPushdownOperatorERKNS3_IiEE:4685 + 28: 12 + 29.1: 12 + 31.1: 12 + 33.1: 4170 + 34.1: 12 + 36: 12 + 37: 4172 + 38: 4172 + 39: 4172 + 40: 4172 + 40.2: 4172 + 42: 4172 + 43: 4172 + 45: 4172 + 46: 4172 + 47: 4172 + 48: 4172 + 48.1: 7637 + 48.3: 3406 + 49: 3406 + 51: 4203 + 52: 4203 + 53: 4203 + 54: 3819 + 55: 3819 + 56: 3819 + 57: 0 + 58.1: 0 + 60.1: 4282 + 60.2: 8625 + 60.3: 8625 + 60.5: 4282 + 61: 4282 + 62.1: 0 + 67: 0 + 68.1: 4193 + 69.1: 12 + 70.1: 4385 + 71.1: 12 + 72.1: 4385 + 72.2: 12 + 73.1: 12 + 75: 4385 + 76: 4385 + 77: 4385 + 78.1: 4385 _ZZN9oceanbase7storage15ObMultipleMerge4initERKNS0_18ObTableAccessParamERNS0_20ObTableAccessContextERKNS0_15ObGetTableParamEENK5$_483clEPKc.60e5f1555e1608e51e89c573dc1497ed:4506 + 82: 4485 + 9.1: _ZNK9oceanbase7storage18ObTableAccessParam8is_validEv:1286160 + 0: 4404 + 0.1: _ZNK9oceanbase7storage16ObTableIterParam8is_validEv:1224504 + 2: 4404 + 3: 12 + 3.1: 4404 + 4: 4404 + 4.1: 4404 + 2.1: _ZNK9oceanbase6common10ObTabletID8is_validEv:60 + 0: 12 + 3.2: _ZNK9oceanbase7storage15ObTableReadInfo8is_validEv:308280 + 2: 4404 + 3: 4404 + 3.1: 4404 + 4: 4404 + 5.1: 4404 + 6: 4404 + 7: 4404 + 7.1: 4404 + 3.1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:30828 + 0: 4404 + 6.1: _ZNK9oceanbase12blocksstable19ObStorageDatumUtils8is_validEv:30828 + 0: 4404 + 4.2: _ZNK9oceanbase7storage15ObTableReadInfo23is_valid_full_read_infoEv:713448 + 3: 4404 + 3.1: 4404 + 4: 4404 + 2: _ZNK9oceanbase7storage15ObTableReadInfo8is_validEv:308280 + 2: 4404 + 3: 4404 + 3.1: 4404 + 4: 4404 + 5.1: 4404 + 6: 4404 + 7: 4404 + 7.1: 4404 + 3.1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:30828 + 0: 4404 + 6.1: _ZNK9oceanbase12blocksstable19ObStorageDatumUtils8is_validEv:30828 + 0: 4404 + 4.1: _ZNK9oceanbase7storage15ObTableReadInfo8is_validEv:308280 + 2: 4404 + 3: 4404 + 3.1: 4404 + 4: 4404 + 5.1: 4404 + 6: 4404 + 7: 4404 + 7.1: 4404 + 3.1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:30828 + 0: 4404 + 6.1: _ZNK9oceanbase12blocksstable19ObStorageDatumUtils8is_validEv:30828 + 0: 4404 + 10.1: _ZNK9oceanbase7storage20ObTableAccessContext8is_validEv:176160 + 1: 4404 + 2: 4404 + 2.1: 4404 + 3: 4404 + 3.1: 4404 + 4: 4404 + 4.1: 4404 + 11.1: _ZNK9oceanbase7storage15ObGetTableParam8is_validEv:96948 + 0: _ZNK9oceanbase7storage21ObTabletTableIterator8is_validEv:96948 + 0: 4404 + 0: _ZNK9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE8is_validEv:22020 + 2: 4404 + 0.1: _ZNK9oceanbase7storage20ObTableStoreIterator8is_validEv:60 + 0: 12 + 14.1: _ZNK9oceanbase7storage18ObTableAccessParam19get_max_out_col_cntEv:96888 + 0: _ZNK9oceanbase7storage16ObTableIterParam19get_max_out_col_cntEv:96888 + 2: 4404 + 2: _ZNK9oceanbase7storage16ObTableIterParam20get_full_out_col_cntEv:26424 + 2: 4404 + 2.1: _ZNK9oceanbase7storage16ObTableIterParam20get_full_out_col_cntEv:30828 + 2.1: _ZNK9oceanbase7storage15ObTableReadInfo17get_request_countEv:30828 + 1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:30828 + 0: 4404 + 16.1: _ZNK9oceanbase7storage18ObTableAccessParam15get_out_col_cntEv:94180 + 0: _ZNK9oceanbase7storage16ObTableIterParam15get_out_col_cntEv:94180 + 2: 4709 + 2.1: _ZNK9oceanbase7storage15ObTableReadInfo17get_request_countEv:32963 + 1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:32963 + 0: 4709 + 18.1: _ZNK9oceanbase7storage18ObTableAccessParam19get_max_out_col_cntEv:276138 + 0: _ZNK9oceanbase7storage16ObTableIterParam19get_max_out_col_cntEv:276138 + 2: 4449 + 2.3: 12 + 2: _ZNK9oceanbase7storage16ObTableIterParam20get_full_out_col_cntEv:102327 + 2: 4449 + 2.1: _ZNK9oceanbase7storage15ObTableReadInfo17get_request_countEv:31143 + 1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:31143 + 0: 4449 + 2.1: _ZNK9oceanbase7storage16ObTableIterParam20get_full_out_col_cntEv:57837 + 2: 4449 + 2.1: _ZNK9oceanbase7storage15ObTableReadInfo17get_request_countEv:31143 + 1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:31143 + 0: 4449 + 2.2: _ZNK9oceanbase7storage16ObTableIterParam15get_out_col_cntEv:0 + 2.1: _ZNK9oceanbase7storage15ObTableReadInfo17get_request_countEv:0 + 1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:0 + 0: 0 + 2.4: _ZNK9oceanbase7storage16ObTableIterParam15get_out_col_cntEv:58077 + 2: 4449 + 20.1: _ZNK9oceanbase7storage18ObTableAccessParam19get_max_out_col_cntEv:270712 + 0: _ZNK9oceanbase7storage16ObTableIterParam19get_max_out_col_cntEv:270712 + 2: 4364 + 2.3: 0 + 2: _ZNK9oceanbase7storage16ObTableIterParam20get_full_out_col_cntEv:100372 + 2: 4364 + 2.1: _ZNK9oceanbase7storage15ObTableReadInfo17get_request_countEv:30548 + 1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:30548 + 0: 4364 + 2.1: _ZNK9oceanbase7storage16ObTableIterParam20get_full_out_col_cntEv:56732 + 2: 4364 + 2.1: _ZNK9oceanbase7storage15ObTableReadInfo17get_request_countEv:30548 + 1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:30548 + 0: 4364 + 2.2: _ZNK9oceanbase7storage16ObTableIterParam15get_out_col_cntEv:144 + 2.1: _ZNK9oceanbase7storage15ObTableReadInfo17get_request_countEv:144 + 1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:144 + 0: 12 + 2.4: _ZNK9oceanbase7storage16ObTableIterParam15get_out_col_cntEv:56732 + 2: 4364 + 33.1: _ZN9oceanbase7storage15ObMultipleMerge15init_lob_readerERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextE:1096657 + 4: 4380 + 5: 4380 + 6: 4380 + 8.1: 4380 + 9.1: 12 + 10.1: 4172 + 11: 14 _ZN9oceanbase7storage15ObLobDataReader5resetEv:2 + 12: 15 _ZN9oceanbase7storage15ObLobDataReader4initERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextE:2 + 13.1: 12 + 16: 4170 + 6: _ZNK9oceanbase6common11ObQueryFlag16is_skip_read_lobEv:21900 + 0: 4380 + 8.1: _ZNK9oceanbase7storage16ObTableIterParam18has_lob_column_outEbRb:833280 + 2: 4380 + 4: 4380 + 5: 4380 + 6: 12 + 7.1: 12 + 10.1: 8520 + 10.2: 8692 + 10.3: 8692 + 11: 8520 + 14: 12 + 5: _ZNK9oceanbase7storage16ObTableIterParam13get_read_infoEb:65700 + 2.3: 4380 + 11: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE2atEl:59640 + 6: 8520 + 11.1: _ZNK9oceanbase6common9ObObjMeta9is_lob_v2Ev:247080 + 0: 8520 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:127800 + 0: 8520 + 0.3: _ZN9oceanbase6common16ob_is_large_textENS0_9ObObjTypeE:93720 + 0: 8520 + 40.1: _ZNK9oceanbase7storage20ObRow2ExprsProjector11has_virtualEv:12516 + 0: 4172 + 41: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage18ObStoreRowIteratorELl8ENS0_19ModulePageAllocatorELb0EE5reuseEv:100128 + 8: 4172 + 9: 4172 + 44: _ZN9oceanbase7storage9ObRowStat5resetEv:150192 + 0: 4172 + 45: _ZNK9oceanbase6common12ObIArrayWrapIiE5countEv:16688 + 0: 4172 + 48.1: _ZNK9oceanbase7storage18ObTableAccessParam15get_out_col_cntEv:165433 + 0: _ZNK9oceanbase7storage16ObTableIterParam15get_out_col_cntEv:165433 + 2: 7637 + 2.3: 12 + 2.1: _ZNK9oceanbase7storage15ObTableReadInfo17get_request_countEv:53459 + 1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:53459 + 0: 7637 + 49: _ZN9oceanbase12blocksstable14ObStorageDatum7set_nopEv:119210 + 0: _ZN9oceanbase12blocksstable14ObStorageDatum13set_ext_valueEl:119210 + 1: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:30654 + 0: 3406 + 1.1: _ZN9oceanbase6common11ObDatumDesc7set_extEv:30654 + 0: 3406 + 1.3: _ZN9oceanbase6common5ObObj7set_extEl:57902 + 4: 3406 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:27248 + 0: 3406 + 51: _ZNK9oceanbase7storage18ObTableAccessParam19get_max_out_col_cntEv:231165 + 0: _ZNK9oceanbase7storage16ObTableIterParam19get_max_out_col_cntEv:231165 + 2: 4203 + 2.3: 0 + 2: _ZNK9oceanbase7storage16ObTableIterParam20get_full_out_col_cntEv:96669 + 2: 4203 + 2.1: _ZNK9oceanbase7storage15ObTableReadInfo17get_request_countEv:29421 + 1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:29421 + 0: 4203 + 2.1: _ZNK9oceanbase7storage16ObTableIterParam20get_full_out_col_cntEv:54639 + 2: 4203 + 2.1: _ZNK9oceanbase7storage15ObTableReadInfo17get_request_countEv:29421 + 1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:29421 + 0: 4203 + 2.2: _ZNK9oceanbase7storage16ObTableIterParam15get_out_col_cntEv:0 + 2.1: _ZNK9oceanbase7storage15ObTableReadInfo17get_request_countEv:0 + 1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:0 + 0: 0 + 2.4: _ZNK9oceanbase7storage16ObTableIterParam15get_out_col_cntEv:25218 + 2: 4203 + 53: _ZN9oceanbase7storage15ObGetTableParamaSERKS1_:689248 + 0: 4203 + 0: _ZN9oceanbase7storage21ObTabletTableIteratoraSERKS1_:516925 + 0: 4203 _ZN9oceanbase7storage14ObTabletHandleaSERKS1_:4281 + 0.1: _ZN9oceanbase7storage20ObTableStoreIteratoraSERKS1_:428022 + 0: 3819 + 0: _ZN9oceanbase6common9ObSEArrayIPNS_7storage8ObITableELl16ENS0_19ModulePageAllocatorELb0EEaSERKS6_:298176 + 0: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl16ENS0_19ModulePageAllocatorELb0EEaSERKS6_:263272 + 4: 4363 + 5: 4363 _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl16ENS0_19ModulePageAllocatorELb0EE5reuseEv:4380 + 7: 4350 _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl16ENS0_19ModulePageAllocatorELb0EE7reserveEl:4362 + 8.1: 3819 + 8.3: 3819 + 8.5: 0 + 9: 0 + 13: 3819 + 14: 3819 + 15: 3819 + 6: _ZNK9oceanbase6common12ObIArrayWrapIPNS_7storage8ObITableEE5countEv:17400 + 0: 4350 + 9: _ZN9oceanbase6common16construct_assignIPNS_7storage8ObITableEEEiRT_RKS5_:0 + 2: _ZN9oceanbase6common21construct_assign_wrapIPNS_7storage8ObITableEEEiRT_RKS5_NS0_8BoolTypeILb0EEE:0 + 2: 0 + 55: _ZNK9oceanbase7storage16ObTableIterParam13get_read_infoEb:15276 + 2.2: 3819 + 61.1: _ZNK9oceanbase6common12ObIArrayWrapIiE2atEl:17128 + 6: 4282 + 61.2: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE2atEl:29974 + 6: 4282 + 61.3: _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema9ObColDescELl32ENS0_19ModulePageAllocatorELb0EE9push_backERKS4_:445532 + 5: 4282 + 6: 0 + 12: 0 + 15: 0 + 15.1: 4282 + 16: 4282 + 15.1: _ZN9oceanbase6common9ObClassOpINS_5share6schema9ObColDescELb0EE20construct_and_assignERKS4_RS4_:244074 + 3: _ZN9oceanbase6common16construct_assignINS_5share6schema9ObColDescEEEiRT_RKS5_:244074 + 2: _ZN9oceanbase6common21construct_assign_wrapINS_5share6schema9ObColDescEEEiRT_RKS5_NS0_8BoolTypeILb1EEE:244074 + 2: _ZN9oceanbase5share6schema9ObColDescC2Ev:119896 + 0: _ZN9oceanbase6common9ObObjMetaC2Ev:119896 + 1: 4282 + 2: 4282 + 4: 4282 + 3: _ZN9oceanbase5share6schema9ObColDesc6assignERKS2_:124178 + 3: 4282 + 4: 4282 + 5: 4282 + 6: 4282 + 68.1: _ZN9oceanbase7storage15ObMultipleMerge19prepare_read_tablesEb:2651102 + 2: 4206 + 4: 12 + 4.1: 4206 + 4.2: 4206 + 4.3: 4206 + 5: 12 + 6.1: 12 + 8.1: 4206 + 8.2: 4206 + 8.3: 4206 + 10: 12 + 11.1: 12 + 12.2: 4206 + 13: 0 + 14.1: 0 + 16.1: 4250 _ZN9oceanbase7storage20ObTableStoreIterator5resetEv:4507 + 19: 4513 _ZNK9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE8is_validEv:4593 + 20: 12 + 21.1: 12 + 22.1: 4513 + 23: 12 + 24: 12 + 25.1: 12 + 26.1: 12 + 26.2: 12 + 27.1: 12 + 29.1: 4513 _ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE7get_objEv:4514 + 29.2: 4116 + 29.4: 4563 _ZN9oceanbase7storage8ObTablet15get_read_tablesElRNS0_21ObTabletTableIteratorEb:4235 + 33.1: 12 + 36: 12 + 37: 4563 _ZN9oceanbase7storage15ObMultipleMerge28prepare_tables_from_iteratorERNS0_20ObTableStoreIteratorEPKNS_6common10SampleInfoE:4665 + 38.1: 12 + 43: 12 + 3: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl8ENS0_19ModulePageAllocatorELb0EE5resetEv:387348 + 0: 4206 + 0: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl8ENS0_19ModulePageAllocatorELb0EE7destroyEv:282114 + 9: 4206 + 11: 12 + 13: 4206 + 15: 4206 + 24: 4206 + 10: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl8ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:156 + 4: 12 + 4: _ZNK9oceanbase7storage15ObGetTableParam8is_validEv:143112 + 0: _ZNK9oceanbase7storage21ObTabletTableIterator8is_validEv:143112 + 0: 4206 + 0: _ZNK9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE8is_validEv:117768 + 2: 4206 + 2.1: 4206 + 0.1: _ZNK9oceanbase7storage20ObTableStoreIterator8is_validEv:108 + 0: 12 + 4.1: _ZNK9oceanbase7storage18ObTableAccessParam8is_validEv:1211520 + 0: 4206 + 0.1: _ZNK9oceanbase7storage16ObTableIterParam8is_validEv:1156842 + 2: 4206 + 3: 12 + 3.1: 4206 + 4: 4206 + 4.1: 4206 + 2.1: _ZNK9oceanbase6common10ObTabletID8is_validEv:60 + 0: 12 + 3.2: _ZNK9oceanbase7storage15ObTableReadInfo8is_validEv:294420 + 2: 4206 + 3: 4206 + 3.1: 4206 + 4: 4206 + 5.1: 4206 + 6: 4206 + 7: 4206 + 7.1: 4206 + 3.1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:29442 + 0: 4206 + 6.1: _ZNK9oceanbase12blocksstable19ObStorageDatumUtils8is_validEv:29442 + 0: 4206 + 4.2: _ZNK9oceanbase7storage15ObTableReadInfo23is_valid_full_read_infoEv:681372 + 3: 4206 + 3.1: 4206 + 4: 4206 + 2: _ZNK9oceanbase7storage15ObTableReadInfo8is_validEv:294420 + 2: 4206 + 3: 4206 + 3.1: 4206 + 4: 4206 + 5.1: 4206 + 6: 4206 + 7: 4206 + 7.1: 4206 + 3.1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:29442 + 0: 4206 + 6.1: _ZNK9oceanbase12blocksstable19ObStorageDatumUtils8is_validEv:29442 + 0: 4206 + 4.1: _ZNK9oceanbase7storage15ObTableReadInfo8is_validEv:294420 + 2: 4206 + 3: 4206 + 3.1: 4206 + 4: 4206 + 5.1: 4206 + 6: 4206 + 7: 4206 + 7.1: 4206 + 3.1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:29442 + 0: 4206 + 6.1: _ZNK9oceanbase12blocksstable19ObStorageDatumUtils8is_validEv:29442 + 0: 4206 + 8.1: _ZNK9oceanbase6common11ObQueryFlag19is_whole_macro_scanEv:16824 + 0: 4206 + 12.2: _ZNK9oceanbase7storage20ObTableStoreIterator8is_validEv:37854 + 0: 4206 + 23: _ZNK9oceanbase6common10SampleInfo12is_no_sampleEv:108 + 0: 12 + 29.2: _ZNK9oceanbase8memtable15ObMvccAccessCtx20get_snapshot_versionEv:20583 + 1: 4116 + 29.5: _ZNK9oceanbase6common10SampleInfo12is_no_sampleEv:37044 + 0: 4116 + 70.1: _ZN9oceanbase7storage15ObMultipleMerge15alloc_row_storeERNS0_20ObTableAccessContextERKNS0_18ObTableAccessParamE:260021 + 2: 4193 + 4: 4193 + 5: 12 + 6: 12 + 7.1: 12 + 9.1: 12 + 10: 12 + 11: 12 + 14.1: 4193 + 15: 12 + 16: 12 + 17.1: 12 + 19: 12 + 20: 12 + 24.1: 4193 + 25: 12 + 26: 12 + 27.1: 12 + 29: 12 + 32: 4193 + 32.1: 4193 + 33: 12 + 34.1: 12 + 37: 12 + 4: _ZNK9oceanbase7storage16ObTableIterParam19enable_pd_aggregateEv:25158 + 1: 4193 + 10.1: _ZNK9oceanbase3sql18ObPushdownOperator14get_batch_sizeEv:96 + 0: 12 + 11: _ZN9oceanbase3sql18ObPushdownOperator12get_eval_ctxEv:48 + 0: 12 + 20: _ZNK9oceanbase3sql18ObPushdownOperator14get_batch_sizeEv:96 + 0: 12 + 21: _ZN9oceanbase3sql18ObPushdownOperator12get_eval_ctxEv:48 + 0: 12 + 24.1: _ZNK9oceanbase7storage16ObTableIterParam19enable_pd_blockscanEv:8386 + 1: 4193 + 29: _ZN9oceanbase7storage15ObBlockRowStoreC2ERNS0_20ObTableAccessContextE:696 + 1: 12 + 2: 12 + 3: 12 + 5: 12 + 6: 12 + 0: _ZN9oceanbase7storage18PushdownFilterInfoC2Ev:312 + 1: 12 + 3: 12 + 5: 12 + 72.1: _ZNK9oceanbase7storage16ObTableIterParam16is_use_iter_poolEv:21925 + 1: 4385 + 72.2: _ZN9oceanbase7storage15ObMultipleMerge15alloc_iter_poolERNS_6common12ObIAllocatorE:2004 + 2: 12 + 3: 12 + 5: 12 + 6: 12 + 7.1: 12 + 9: 12 + 12: 12 + 9: _ZN9oceanbase7storage18ObStoreRowIterPoolC2ERNS_6common12ObIAllocatorE:1128 + 1: 12 + 2: _ZN9oceanbase6common9ObSEArrayIPNS_7storage15TableTypedItersELl8ERNS0_12ObIAllocatorELb0EECI2NS0_13ObSEArrayImplIS4_Ll8ES6_Lb0EEEElS6_:1092 + 0: 12 + 0: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage15TableTypedItersELl8ERNS0_12ObIAllocatorELb0EEC2ElS6_:912 + 2: 12 + 5: 12 + 6: 12 + 7: 12 + 8: 12 + 17.1: 12 + 2: _ZN9oceanbase6common8ObIArrayIPNS_7storage15TableTypedItersEEC2EPS4_l:120 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_7storage15TableTypedItersEEC2EPS4_l:120 + 0: 12 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:252 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:252 + 2: 12 + 8: 12 +_ZNK9oceanbase7obmysql10ObMySQLRow9serializeEPclRl:10827791:83660 + 1: 79315 + 2: 79315 + 3: 79315 + 5: 83907 _ZNK9oceanbase6common7ObSMRow13get_cells_cntEv:82956 + 7: 83907 + 9: 83907 + 9.1: 461 + 12: 461 + 13: 461 + 14: 461 + 16: 461 + 17: 461 + 20: 461 + 21: 461 + 22: 461 + 26.1: 82195 + 33: 83907 _ZNK9oceanbase6common7ObSMRow11encode_cellElPclRlS2_:85920 + 38: 461 + 39.1: 461 + 42: 80944 + 43: 461 + 44.2: 461 + 45.1: 461 + 48: 80944 +_ZN9oceanbase3sql17ObPhysicalPlanCtx22init_datum_param_storeEv:10809708:5374 + 1: 5151 + 2: 5151 + 3: 5151 + 5: 5151 + 6: 4842 + 7.1: 0 + 10.1: 7016 + 10.2: 11814 + 10.3: 11814 + 10.5: 7016 + 12: 6574 + 13.1: 0 + 14.1: 7016 + 14.2: 7016 _ZN9oceanbase3sql15ObDatumObjParam13from_objparamERKNS_6common10ObObjParamEPNS2_12ObIAllocatorE:6930 + 15.1: 0 + 21: 5009 + 22.1: 0 + 27: 5009 + 3: _ZN9oceanbase6common9Ob2DArrayINS_3sql15ObDatumObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS3_Ll1ES4_Lb0EEEE5reuseEv:56661 + 0: _ZN9oceanbase6common9Ob2DArrayINS_3sql15ObDatumObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS3_Ll1ES4_Lb0EEEE13destruct_objsEv:56661 + 11: 5151 + 4: _ZN9oceanbase6common13ObSEArrayImplIPcLl1ENS0_19ModulePageAllocatorELb1EE5reuseEv:108171 + 8: 5151 + 9: 5151 + 6: _ZNK9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE5countEv:36057 + 0: 5151 + 6.1: _ZN9oceanbase6common9Ob2DArrayINS_3sql15ObDatumObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS3_Ll1ES4_Lb0EEEE16prepare_allocateEl:2624011 + 4: 5151 + 5: 4523 + 7: 4523 + 11: 4600 + 11.1: 4924 + 11.3: 4390 + 15: 4847 + 16: 4310 + 3: _ZNK9oceanbase6common9Ob2DArrayINS_3sql15ObDatumObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS3_Ll1ES4_Lb0EEEE12get_capacityEv:36057 + 2: 5151 + 5: _ZN9oceanbase6common9Ob2DArrayINS_3sql15ObDatumObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS3_Ll1ES4_Lb0EEEE7reserveEl:1316193 + 0: 4523 + 2: 4523 + 4: 4523 + 7: 4523 + 8: 4523 + 9.1: 0 + 12: 0 + 13.1: 0 + 17: 0 + 18: 0 + 19.1: 0 + 20: 0 + 23: 0 + 25: 0 + 27: 0 + 27.1: 0 + 27.3: 0 + 28: 0 + 29.1: 0 + 36: 4523 + 8: _ZN9oceanbase6common9Ob2DArrayINS_3sql15ObDatumObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS3_Ll1ES4_Lb0EEEE9new_blockEl:1108135 + 5: 4523 + 7: 0 + 8.1: 0 + 10.1: 0 + 11.1: 0 + 15: 4523 + 17: 0 + 6: _ZN9oceanbase6common9Ob2DArrayINS_3sql15ObDatumObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS3_Ll1ES4_Lb0EEEE11alloc_blockEl:859370 + 1: 4523 + 1: _ZN9oceanbase6common18ObWrapperAllocator5allocEl:841278 + 0: 4523 + 0: _ZN9oceanbase6common18ObWrapperAllocator5allocElRKNS_3lib9ObMemAttrE:732726 + 2: 4523 + 2.2: 4523 + 2.2: _ZN9oceanbase6common16ObArenaAllocator5allocElRKNS_3lib9ObMemAttrE:569898 + 3: _ZN9oceanbase6common16ObArenaAllocator5allocEl:569898 + 0: 4523 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13alloc_alignedEll:551806 + 3: 4523 + 6: 4523 + 7: 4523 + 8: 4523 + 10: 4523 + 11: 4523 + 12: 4523 + 13: 4523 + 15.1: 0 + 16: 0 + 18: 0 + 20: 0 + 24: 0 + 28: 0 + 35: 4523 + 36: 4523 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE15ensure_cur_pageEv:58799 + 2: 4523 + 3: 0 + 5.1: 0 + 8: 0 + 9: 0 + 10: 0 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:0 + 2: 0 + 2.2: 0 + 2.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 9: _ZSt3maxIlERKT_S2_S2_:0 + 5: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 8: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:0 + 0: 0 + 7: _ZN9oceanbase6common16get_align_offsetEPvl:63322 + 3: 4523 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:31661 + 0: 4523 + 11: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:31661 + 7: 4523 + 15.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE18is_normal_overflowEl:0 + 2: 0 + 16: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11extend_pageEl:0 + 4: 0 + 5: 0 + 8: 0 + 9: 0 + 10.1: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 12: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_tailEPNS3_4PageE:0 + 2: 0 + 3: 0 + 5: 0 + 23.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16lookup_next_pageEl:0 + 3.1: 0 + 4.1: 0 + 5: 0 + 5.1: 0 + 7: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page10reuse_sizeEv:0 + 0: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 32: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9alloc_bigEl:0 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 3: 0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_headEPNS3_4PageE:0 + 4: 0 + 5: 0 + 7: 0 + 7: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:0 + 3: 0 + 10.1: _ZN9oceanbase6common13ObSEArrayImplIPNS_3sql15ObDatumObjParamELl1ENS0_18ObWrapperAllocatorELb0EE9push_backERKS4_:171874 + 5: 4523 + 6: 0 + 12: 0 + 15: 0 + 15.1: 4523 + 16: 4523 + 15.1: _ZN9oceanbase6common9ObClassOpIPNS_3sql15ObDatumObjParamELb1EE20construct_and_assignERKS4_RS4_:18092 + 2: 4523 + 12: _ZN9oceanbase6common9Ob2DArrayINS_3sql15ObDatumObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS3_Ll1ES4_Lb0EEEE10free_blockES6_:0 + 0: _ZN9oceanbase6common18ObWrapperAllocator4freeEPv:0 + 2: 0 + 3: 0 + 26: _ZNK9oceanbase6common9Ob2DArrayINS_3sql15ObDatumObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS3_Ll1ES4_Lb0EEEE15get_block_countEv:0 + 0: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql15ObDatumObjParamEE5countEv:0 + 0: 0 + 12: _ZNK9oceanbase6common9Ob2DArrayINS_3sql15ObDatumObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS3_Ll1ES4_Lb0EEEE11get_obj_posEl:298659 + 4: 4390 + 5: 4390 + 4: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql15ObDatumObjParamEE2atEl:47320 + 6: 4390 + 12.1: _ZN9oceanbase3sql15ObDatumObjParamC2Ev:557722 + 0: 4390 + 0: _ZN9oceanbase3sql10ObDatumObjC2Ev:329004 + 0: _ZN9oceanbase3sql11ObDatumMetaC2Ev:218268 + 0: 4390 + 1: 4390 + 0.1: _ZN9oceanbase6common7ObDatumC2Ev:110736 + 0: _ZN9oceanbase6common10ObDatumPtrC2Ev:58748 + 0: 4390 + 0.1: _ZN9oceanbase6common11ObDatumDescC2Ev:51988 + 0: 4390 + 0.1: _ZN9oceanbase6common10ObAccuracyC2Ev:60840 + 0: _ZN9oceanbase6common10ObAccuracy5resetEv:60840 + 0: 4390 + 0.2: _ZN9oceanbase6common9ParamFlagC2Ev:115890 + 7: 4390 + 8: 4390 + 11: _ZN9oceanbase6common9Ob2DArrayINS_3sql15ObDatumObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS3_Ll1ES4_Lb0EEEE2atEl:449604 + 2: 6516 + 2.1: 6516 + 2.2: 6516 + 3.1: 0 + 5: 6516 + 5: _ZNK9oceanbase6common9Ob2DArrayINS_3sql15ObDatumObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS3_Ll1ES4_Lb0EEEE11get_obj_posEl:286704 + 4: 6516 + 5: 6516 + 4: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql15ObDatumObjParamEE2atEl:45612 + 6: 6516 + 12: _ZN9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE2atEl:397476 + 2: 6516 + 2.1: 6516 + 2.2: 6516 + 3.1: 0 + 5: 0 + 5: _ZNK9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE11get_obj_posEl:254124 + 4: 6516 + 5: 6516 + 4: _ZNK9oceanbase6common12ObIArrayWrapIPNS0_10ObObjParamEE2atEl:26064 + 6: 6516 + 12.1: _ZN9oceanbase3sql15ObDatumObjParam25alloc_datum_reserved_buffINS_6common9ObObjMetaEEEiRKT_RNS3_12ObIAllocatorE:1490667 + 2: 6516 + 3: 0 + 3.3: 6516 + 4: 6516 _ZN9oceanbase6common7ObDatum22get_obj_datum_map_typeENS0_9ObObjTypeE:6573 + 5: 6569 + 6: 6574 _ZN9oceanbase6common7ObDatum17get_reserved_sizeENS0_17ObObjDatumMapTypeE:6930 + 7: 6574 + 8: 0 + 9.1: 0 + 12: 6574 + 3: _ZNK9oceanbase6common9ObObjMeta16is_ext_sql_arrayEv:110772 + 0: 6516 + 0.1: 0 + 0: _ZNK9oceanbase6common9ObObjMeta6is_extEv:71676 + 0: 6516 + 7: _ZN9oceanbase6common16ObArenaAllocator5allocEl:900638 + 0: 6574 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13alloc_alignedEll:874342 + 3: 6574 + 6: 6574 + 7: 6574 + 8: 6574 + 10: 6574 + 11: 6574 + 12: 6574 + 13: 6574 + 15.1: 0 + 16: 0 + 18: 0 + 20: 0 + 28: 0 + 35: 6574 + 36: 6574 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE15ensure_cur_pageEv:85462 + 2: 6574 + 3: 0 + 5.1: 0 + 8: 0 + 9: 0 + 10: 0 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:0 + 2: 0 + 2.2: 0 + 2.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 9: _ZSt3maxIlERKT_S2_S2_:0 + 5: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 8: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:0 + 0: 0 + 7: _ZN9oceanbase6common16get_align_offsetEPvl:85462 + 3: 6574 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:46018 + 0: 6574 + 11: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:46018 + 7: 6574 + 15.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE18is_normal_overflowEl:0 + 2: 0 + 16: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11extend_pageEl:0 + 4: 0 + 5: 0 + 8: 0 + 9: 0 + 10.1: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 12: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_tailEPNS3_4PageE:0 + 2: 0 + 3: 0 + 5: 0 + 23.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16lookup_next_pageEl:0 + 3.1: 0 + 4.1: 0 + 5: 0 + 5.1: 0 + 7: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page10reuse_sizeEv:0 + 0: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 32: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9alloc_bigEl:0 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 3: 0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_headEPNS3_4PageE:0 + 4: 0 + 5: 0 + 7: 0 + 7: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:0 + 3: 0 + 14.1: _ZN9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE2atEl:420736 + 2: 6574 + 2.1: 6574 + 2.2: 6574 + 3.1: 0 + 5: 0 + 5: _ZNK9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE11get_obj_posEl:276108 + 5: 6574 + 4: _ZNK9oceanbase6common12ObIArrayWrapIPNS0_10ObObjParamEE2atEl:26296 + 6: 6574 + 21: _ZN9oceanbase3sql17ObPhysicalPlanCtx18extend_param_frameEl:3909938 + 2: 5244 + 6.1: 4468 + 7.1: 0 + 9.1: 6655 + 9.3: 6655 + 13: 6655 + 14: 6655 + 17: 5009 + 6.1: _ZNK9oceanbase6common9Ob2DArrayINS_3sql15ObDatumObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS3_Ll1ES4_Lb0EEEE5countEv:73416 + 0: 5244 + 6.2: _ZN9oceanbase3sql17ObPhysicalPlanCtx19reserve_param_frameEl:2191990 + 2: 5244 + 3: 5244 + 8: 4699 + 9: 4699 + 10: 0 + 11.1: 0 + 15.1: 4705 + 16: 4465 + 17: 4465 + 18: 0 + 18.2: 0 + 18.3: 0 + 19: 4465 + 19.1: 4465 + 20: 4804 + 20.1: 4804 + 21.1: 4644 + 21.2: 4705 _ZN9oceanbase6common13ObSEArrayImplIPcLl1ENS0_19ModulePageAllocatorELb1EE9push_backERKS2_:4890 + 21.4: 0 + 24: 4468 + 24.1: 4468 + 29: 0 + 30: 4468 + 33: 0 + 36: 0 + 39: 0 + 43: 0 + 46: 0 + 50.1: 0 + 50.3: 0 + 51: 0 + 52: 0 + 53: 0 + 53.2: 0 + 53.3: 0 + 54: 0 + 56: 0 + 57: 0 + 59: 0 + 60: 0 + 61: 0 + 63: 0 + 63.1: 0 + 64.1: 0 + 64.2: 0 + 64.4: 0 + 68: 0 + 69: 0 + 17: _ZN9oceanbase6common16ObArenaAllocator5allocEl:558125 + 0: 4465 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13alloc_alignedEll:540265 + 3: 4465 + 6: 4465 + 7: 4465 + 8: 4465 + 10: 4465 + 11: 4465 + 12: 4465 + 13: 4465 + 15.1: 0 + 16: 0 + 18: 0 + 20: 0 + 28: 0 + 35: 4465 + 36: 4465 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE15ensure_cur_pageEv:58045 + 2: 4465 + 3: 0 + 5.1: 0 + 8: 0 + 9: 0 + 10: 0 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:0 + 2: 0 + 2.2: 0 + 2.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 9: _ZSt3maxIlERKT_S2_S2_:0 + 5: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 8: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:0 + 0: 0 + 7: _ZN9oceanbase6common16get_align_offsetEPvl:58045 + 3: 4465 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:31255 + 0: 4465 + 11: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:31255 + 7: 4465 + 15.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE18is_normal_overflowEl:0 + 2: 0 + 16: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11extend_pageEl:0 + 4: 0 + 5: 0 + 8: 0 + 9: 0 + 10.1: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 12: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_tailEPNS3_4PageE:0 + 2: 0 + 3: 0 + 5: 0 + 23.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16lookup_next_pageEl:0 + 3.1: 0 + 4.1: 0 + 5: 0 + 5.1: 0 + 7: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page10reuse_sizeEv:0 + 0: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 32: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9alloc_bigEl:0 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 3: 0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_headEPNS3_4PageE:0 + 4: 0 + 5: 0 + 7: 0 + 7: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:0 + 5.1: 0 + 7: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:0 + 0: 0 + 20.1: _ZN9oceanbase3sql17ObPhysicalPlanCtx17reset_datum_frameEPcl:368840 + 3.1: 6932 + 3.3: 0 + 5: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:97524 + 0: 6932 + 304.1: 4661 + 32: _ZZN9oceanbase3sql17ObPhysicalPlanCtx19reserve_param_frameElENK5$_299clEl:0 + 0: 0 + 36: _ZN9oceanbase6common9next_pow2El:0 + 2: 0 + 36.1: _ZSt3minIlERKT_S2_S2_:0 + 5: 0 + 40: _ZZN9oceanbase3sql17ObPhysicalPlanCtx19reserve_param_frameElENK5$_299clEl:0 + 0: 0 + 44: _ZZN9oceanbase3sql17ObPhysicalPlanCtx19reserve_param_frameElENK5$_299clEl:0 + 0: 0 + 60: _ZN9oceanbase6common12ObIArrayWrapIPcE2atEl:0 + 6: 0 + 61: _ZN9oceanbase6common12ObIArrayWrapIPcE2atEl:0 + 6: 0 + 63.1: _ZN9oceanbase3sql17ObPhysicalPlanCtx17reset_datum_frameEPcl:0 + 3.1: 0 + 3.3: 0 + 5: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:0 + 0: 0 + 9.1: _ZNK9oceanbase6common9Ob2DArrayINS_3sql15ObDatumObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS3_Ll1ES4_Lb0EEEE5countEv:81606 + 0: 6655 + 12: _ZN9oceanbase3sql17ObPhysicalPlanCtx20get_param_frame_infoElRPNS_6common7ObDatumERPNS0_10ObEvalInfoE:652190 + 6: 6655 + 7: 6655 + 8: 6655 + 9: 6655 + 10: 0 + 12: 6655 + 12: _ZN9oceanbase6common12ObIArrayWrapIPcE2atEl:46585 + 6: 6655 + 13: _ZN9oceanbase6common9Ob2DArrayINS_3sql15ObDatumObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS3_Ll1ES4_Lb0EEEE2atEl:359370 + 2: 6655 + 3.1: 0 + 5: 6655 + 5: _ZNK9oceanbase6common9Ob2DArrayINS_3sql15ObDatumObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS3_Ll1ES4_Lb0EEEE11get_obj_posEl:279510 + 4: 6655 + 5: 6655 + 4: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql15ObDatumObjParamEE2atEl:46585 + 6: 6655 +_ZN9oceanbase6common13ObTimeUtility12current_timeEv:10512145:273281 + 1: 269478 + 4: 269478 + 5.1: 0 + 6: 0 + 8: 258799 +_ZN9oceanbase8memtable19ObMvccValueIterator13get_next_nodeERPKv:10045353:58777 + 1: 56378 + 2: 56378 + 4: 56378 + 5.1: 0 + 6: 0 + 8: 56378 + 9.1: 56813 + 11: 56378 + 12: 13688 + 13.1: 43088 + 14.1: 37 + 15.1: 43088 + 17.2: 1140 + 18: 43088 + 19.1: 43088 + 20: 43088 + 20.1: 1140 + 21: 43137 + 28: 58850 + 13.1: _ZN9oceanbase8memtable19ObMvccValueIterator21try_cleanout_tx_node_EPNS0_15ObMvccTransNodeE:696693 + 2: 43085 + 5: 43085 + 5.2: 40 + 7: 274 + 7.1: 40 + 12.1: 37 + 15: 43088 + 27.1: 40 + 6.1: _ZNK9oceanbase8memtable15ObMvccTransNode19is_delayed_cleanoutEv:1644 + 2: 274 + 15.1: _ZNK9oceanbase8memtable15ObMvccTransNode12is_lock_nodeERb:258528 + 7.1: 43088 + 24: _ZN9oceanbase8memtable19ObMvccValueIterator18move_to_next_node_Ev:1174080 + 2: 43137 + 3.1: 43137 + 4: 1141 + 7: 1141 +_ZN9oceanbase3sql12ObSortOpImpl13after_add_rowEPNS0_17ObChunkDatumStore9StoredRowE:9786578:51639 + 1: 47490 + 2: 47490 + 3: 47490 + 4: 47490 + 4.1: 0 + 4.2: 0 + 5: 0 + 5.2: 0 + 6: 0 + 7: 0 + 8.1: 0 + 9.1: 0 + 11: 0 + 12.1: 0 + 16: 47490 + 17: 47524 + 18.1: 0 + 21: 47524 + 4.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql17ObChunkDatumStore9StoredRowEE5countEv:0 + 0: 0 + 4.3: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql17ObChunkDatumStore9StoredRowEE2atEl:0 + 6: 0 + 17: _ZN9oceanbase6common11ObArrayImplIPNS_3sql17ObChunkDatumStore9StoredRowENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEE9push_backERKS5_:5749112 + 2: 47490 + 3: 47490 + 4: 0 + 5.1: 0 + 6.1: 47490 + 7: 512 + 9: 512 + 9.1: 47524 + 10: 47524 + 17: 47524 + 20: 47524 + 21: 47524 + 28.1: 0 + 32: 0 + 7: _ZN9oceanbase6common11ObArrayImplIPNS_3sql17ObChunkDatumStore9StoredRowENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEE10extend_bufEv:75066 + 2: 486 + 3: _ZN9oceanbase6common11ObArrayImplIPNS_3sql17ObChunkDatumStore9StoredRowENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEE10extend_bufEl:66804 + 4: 486 + 5: 554 + 6: 554 + 8.2: 2 + 8.3: 2 + 8.5: 2 + 9: 2 + 18: 2 + 19: 2 + 36: 512 + 37: 512 + 40.1: 0 + 4: _ZN9oceanbase6common19ModulePageAllocator5allocEl:43948 + 2: 486 + 3: 486 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:7776 + 5: 486 + 7: 486 + 8: 486 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:13126 + 2: 486 + 2.2: 486 _ZN9oceanbase6common11ObAllocator5allocElRKNS_3lib9ObMemAttrE:504 + 2.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 9: _ZSt3maxIlERKT_S2_S2_:0 + 5: 0 + 9: _ZN9oceanbase6common16construct_assignIPNS_3sql17ObChunkDatumStore9StoredRowEEEiRT_RKS6_:32 + 2: _ZN9oceanbase6common21construct_assign_wrapIPNS_3sql17ObChunkDatumStore9StoredRowEEEiRT_RKS6_NS0_8BoolTypeILb0EEE:32 + 2: 2 + 17: _ZN9oceanbase6common16construct_assignIPNS_3sql17ObChunkDatumStore9StoredRowEEEiRT_RKS6_:190096 + 2: _ZN9oceanbase6common21construct_assign_wrapIPNS_3sql17ObChunkDatumStore9StoredRowEEEiRT_RKS6_NS0_8BoolTypeILb0EEE:190096 + 2: 47524 +_ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE36do_insert_row_with_unique_hash_tableERKNS_6common8ObIArrayIPNS0_6ObExprEEEmRbSC_:9726806:25281 + 2: 25179 + 3: 25179 + 5: 25179 + 7: 25179 + 8: 25179 + 8.1: 27427 _ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE30update_mem_status_periodicallyEv:25755 + 9.1: 424 + 10.1: 27427 _ZNK9oceanbase3sql30ObHashPartitionExtendHashTableINS0_14ObHashPartColsEE3getEmRKS2_RPS4_:28466 + 11.1: 424 + 13: 26718 + 16: 26718 + 17: 26718 + 18: 26718 + 20: 27467 + 22: 27467 + 23: 28303 _ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE12process_dumpEbRb:28071 + 24.1: 418 + 25.1: 27798 + 27: 424 + 28.1: 424 + 30.1: 26922 _ZN9oceanbase3sql17ObChunkDatumStore7add_rowERKNS_6common8ObIArrayIPNS0_6ObExprEEEPNS0_9ObEvalCtxEPPNS1_9StoredRowE:27483 + 31.1: 418 + 32.1: 24398 _ZN9oceanbase6common16ObArenaAllocator5allocEl:25679 + 33: 418 + 34.1: 418 + 38: 24398 + 40: 24398 + 41: 25370 _ZN9oceanbase3sql30ObHashPartitionExtendHashTableINS0_14ObHashPartColsEE3setERS2_:24201 + 42.1: 418 + 44: 25370 + 50: 424 + 51.1: 424 + 56: 415 + 60: 25169 + 4: _ZN9oceanbase3sql14ObHashPartColsC2Ev:377685 + 0: 25179 + 2: 25179 + 36: _ZN9oceanbase3sql14ObHashPartColsC2Ev:146388 + 0: 24398 + 39: _ZN9oceanbase3sql14ObHashPartCols14set_hash_valueEm:1049114 + 3: 24398 + 6: 24398 + 4: _ZN9oceanbase3sql19ObHashPartStoredRow14set_hash_valueEm:487960 + 1: 24398 + 1: _ZN9oceanbase3sql19ObHashPartStoredRow14get_extra_infoEv:146388 + 4: _ZNK9oceanbase3sql17ObChunkDatumStore9StoredRow17get_extra_payloadEv:146388 + 1: 24398 + 40: _ZN9oceanbase3sql19ObHashPartStoredRow12set_is_matchEb:512358 + 0: 24398 + 0: _ZN9oceanbase3sql19ObHashPartStoredRow14get_extra_infoEv:146388 + 4: _ZNK9oceanbase3sql17ObChunkDatumStore9StoredRow17get_extra_payloadEv:146388 + 1: 24398 +_ZN9oceanbase3sql17ObChunkDatumStore7add_rowERKNS_6common8ObIArrayIPNS0_6ObExprEEEPNS0_9ObEvalCtxEPPNS1_9StoredRowE:9714242:82256 + 2: 72504 + 3: 72504 + 4: 72504 + 5: 125 + 6.1: 125 + 8: 72504 + 10: 727 + 11: 748 + 12.1: 749 + 13.1: 123 + 15: 749 + 17: 745 + 20: 123 + 21: 73230 _ZN9oceanbase3sql17ObChunkDatumStore5Block10append_rowERKNS_6common8ObIArrayIPNS0_6ObExprEEEPNS0_9ObEvalCtxEPNS1_11BlockBufferElPPNS1_9StoredRowEb:76919 + 25: 125 + 26.1: 125 + 28.1: 123 + 30.1: 125 + 39.1: 123 + 49: 72034 + 4: _ZNK9oceanbase3sql17ObChunkDatumStore9is_initedEv:290016 + 0: 72504 + 11: _ZN9oceanbase3sql17ObChunkDatumStore5Block12min_buf_sizeERKNS_6common8ObIArrayIPNS0_6ObExprEEElRNS0_9ObEvalCtxERl:57944 + 5: 727 + 7: 748 + 8.1: 123 + 10: 748 + 12: 123 + 7: _ZN9oceanbase3sql17ObChunkDatumStore5Block14row_store_sizeERKNS_6common8ObIArrayIPNS0_6ObExprEEERNS0_9ObEvalCtxERlj:33846 + 7: 727 + 8: 748 _ZN9oceanbase3sql17ObChunkDatumStore13row_copy_sizeERKNS_6common8ObIArrayIPNS0_6ObExprEEERNS0_9ObEvalCtxERl:753 + 9.1: 123 + 11: 748 + 13: 123 + 12.1: _ZN9oceanbase3sql17ObChunkDatumStore18alloc_block_bufferERPNS1_5BlockElb:13464 + 3: 748 _ZN9oceanbase3sql17ObChunkDatumStore18alloc_block_bufferERPNS1_5BlockEllb:764 + 15: _ZN9oceanbase3sql17ObChunkDatumStore9use_blockEPNS1_5BlockE:30709 + 2: 749 + 3: 749 + 5: 749 + 3: _ZN9oceanbase3sql17ObChunkDatumStore5Block10get_bufferEv:5243 + 3: 749 + 4: _ZNK9oceanbase3sql17ObChunkDatumStore11BlockBuffer8capacityEv:3745 + 0: 749 + 16: _ZN9oceanbase3sql17ObChunkDatumStore9BlockList8add_lastEPNS1_5BlockE:19394 + 2: 749 + 3: 745 + 4: 745 + 5: 745 + 7: 0 + 8: 0 + 9: 0 + 11: 745 + 25: _ZN9oceanbase3sql17ObChunkDatumStore5Block12min_buf_sizeERKNS_6common8ObIArrayIPNS0_6ObExprEEElRNS0_9ObEvalCtxERl:16626 + 5: 125 + 7: 125 + 8.1: 123 + 10: 125 + 12: 123 + 7: _ZN9oceanbase3sql17ObChunkDatumStore5Block14row_store_sizeERKNS_6common8ObIArrayIPNS0_6ObExprEEERNS0_9ObEvalCtxERlj:8579 + 7: 125 + 8: 125 + 9.1: 123 + 11: 125 + 13: 123 +_ZN9oceanbase3sql10ObOperator28try_register_rt_monitor_nodeEl:9691578:191233 + 1: 190542 + 2: 190542 + 3: 201813 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:199221 + 5.1: 0 + 5.2: 0 + 9: 0 + 12: 0 + 13: 0 + 13.1: 0 + 15.1: 0 + 15.2: 0 + 16.1: 0 + 18: 0 + 22: 209460 + 5.1: _ZN9oceanbase3sql13ObExecContext29is_rt_monitor_node_registeredEv:0 + 0: 0 + 6: _ZN9oceanbase3sql10ObOperator26match_rt_monitor_conditionEl:0 + 3: 0 + 4.1: 0 + 6.1: 0 + 9: 0 + 10: 0 + 11: 0 + 13: 0 + 12: _ZN9oceanbase6common16ObClockGenerator8getClockEv:0 + 4: 0 + 5.1: 0 + 8: 0 + 6: _ZN9oceanbase6common16ObClockGenerator6get_usEv:0 + 2: 0 + 13: _ZNK9oceanbase3sql13ObExecContext19get_plan_start_timeEv:0 + 0: 0 + 7: _ZN9oceanbase5share11ObTenantEnv3mtlIPNS_3sql21ObPlanMonitorNodeListEEET_v:0 + 2: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.1: _ZN9oceanbase5share12ObTenantBase3getIPNS_3sql21ObPlanMonitorNodeListEEET_v:0 + 0: _ZN9oceanbase5share12ObTenantBase9inner_getENS1_8IdentityIPNS_3sql21ObPlanMonitorNodeListEEE:0 + 0: 0 + 12: _ZNK9oceanbase3sql13ObExecContext16get_operator_kitEm:0 + 2: _ZNK9oceanbase3sql12ObOpKitStore16get_operator_kitEm:0 + 2: 0 + 2.1: 0 + 15.1: _ZN9oceanbase3sql10ObOperator16get_monitor_infoEv:0 + 0: 0 + 18: _ZN9oceanbase3sql13ObExecContext18set_register_op_idEl:0 + 0: 0 +_ZN9oceanbase6common12ObKVCacheMap3getElRKNS0_13ObIKVCacheKeyERPKNS0_15ObIKVCacheValueERPNS0_18ObKVMemBlockHandleE:9011666:13059 + 5: 12579 + 6: 12579 + 7: 12579 + 10: 12579 + 11: 2 + 12.1: 2 + 13.1: 12579 _ZNK9oceanbase6common13ObIKVCacheKey4hashERm:9633 _ZNK9oceanbase12blocksstable17ObFuseRowCacheKey4hashERm:3224 + 14.1: 2 + 16: 12578 + 17: 12578 + 19: 12578 + 20: 12578 + 26: 12578 + 27.1: 12412 + 28.1: 2 + 30: 12412 + 31: 12412 + 32: 12412 + 33.1: 12412 + 34: 12955 + 34.1: 13540 + 35: 13540 + 36: 12782 _ZNK9oceanbase6common13ObIKVCacheKey5equalERKS1_Rb:9770 _ZNK9oceanbase12blocksstable17ObFuseRowCacheKey5equalERKNS_6common13ObIKVCacheKeyERb:3243 + 36.1: 12776 + 37.1: 2 + 38.1: 12776 + 39: 12776 + 40: 12776 + 42: 12776 + 43: 12776 + 44: 12776 + 45: 12776 + 46: 12776 + 47: 12776 + 52: 766 _ZN9oceanbase6common14ObKVCacheStore13de_handle_refEPNS0_18ObKVMemBlockHandleE:798 + 54: 12776 + 57: 12788 + 58.1: 12938 + 59: 171 + 61: 12776 + 61.2: 520 + 62: 479 + 63: 479 + 64.1: 449 + 65.1: 2 + 67: 449 + 68: 449 + 69: 449 + 70.1: 449 + 71: 461 _ZN9oceanbase6common14ObKVCacheStore14add_handle_refEPNS0_18ObKVMemBlockHandleEj:481 + 71.1: 477 + 72: 477 + 73: 470 _ZNK9oceanbase12blocksstable17ObFuseRowCacheKey5equalERKNS_6common13ObIKVCacheKeyERb:496 + 73.1: 466 + 74.1: 2 + 75.1: 466 + 76: 445 + 77: 445 _ZN9oceanbase6common12ObKVCacheMap18internal_data_moveERPNS1_4NodeES4_S4_NS0_15ObKVCachePolicyE:443 + 77.1: 459 + 78.1: 2 + 80: 461 _ZN9oceanbase6common14ObKVCacheStore13de_handle_refEPNS0_18ObKVMemBlockHandleE:466 + 84: 11 _ZN9oceanbase6common14ObKVCacheStore13de_handle_refEPNS0_18ObKVMemBlockHandleE:7 + 86: 445 + 87: 445 + 93: 13467 _ZN9oceanbase6common24GlobalHazardVersionGuardD1Ev:13842 + 93.1: 2 + 95: 13844 + 26: _ZN9oceanbase6common24GlobalHazardVersionGuardC2ERNS0_19GlobalHazardVersionE:1500318 + 1: 12578 + 2: 12578 + 4: 12412 + 5.1: 2 + 4: _ZN9oceanbase6common19GlobalHazardVersion7acquireEv:1112686 + 2: 12578 + 5: 12578 + 6: 2 + 7.1: 2 + 8.1: 12411 + 9.1: 2 + 11: 12411 + 12.1: 12411 + 17: 12412 + 8.1: _ZN9oceanbase6common19GlobalHazardVersion16get_thread_storeERPNS0_24KVCacheHazardThreadStoreE:338784 + 2: 12578 + 4: 12578 + 5: 12411 + 6: 2 + 7: 2 + 11: 2 + 12: 2 + 13.1: 2 + 13.3: 2 + 14.1: 2 + 15: 2 + 15.1: 2 + 17: 2 + 19.1: 2 + 21.1: 2 + 22: 2 + 23.1: 2 + 33: 2 + 33.1: 2 + 36: 2 + 37: 2 + 38: 2 + 39: 2 + 40.1: 2 + 43: 2 + 44.1: 2 + 45.1: 2 + 46: 2 + 47.1: 2 + 49: 2 + 50: 2 + 51: 2 + 52: 2 + 53: 2 + 55: 2 + 62: 2 + 14: _ZNK9oceanbase6common24KVCacheHazardThreadStore9is_initedEv:6 + 0: 2 + 24: _ZN9oceanbase6common24KVCacheHazardThreadStore8set_exitEv:58 + 2: 2 + 3: 2 + 4: 2 + 5: 2 + 30: _ZNK9oceanbase6common24KVCacheHazardThreadStore8get_nextEv:8 + 0: 2 + 42: _ZN9oceanbase6common24KVCacheHazardThreadStoreC2Ev:52 + 1: 2 + 3: 2 + 6: 2 + 7: 2 + 50: _ZN9oceanbase6common24KVCacheHazardThreadStore8set_nextEPS1_:8 + 0: 2 + 27: _ZNK9oceanbase6common24GlobalHazardVersionGuard7get_retEv:6 + 0: 2 + 30: _ZN9oceanbase6common12ObKVCacheMap15get_bucket_nodeEl:508892 + 2: 12412 + 3: 12412 + 34: _ZN9oceanbase6common14ObKVCacheStore14add_handle_refEPNS0_18ObKVMemBlockHandleEj:273225 + 3: 12955 + 4: 13540 _ZN9oceanbase6common17ObAtomicReference29check_seq_num_and_inc_ref_cntEj:13361 + 46: _ZN9oceanbase6common9ObCounterILl32ENS0_33ObCounterSlotPickerByCPUNonAtomicEE3incEl:562276 + 2: 12776 + 2: _ZN9oceanbase6common33ObCounterSlotPickerByCPUNonAtomic9get_my_idEv:396188 + 0: _ZN9oceanbase6common7icpu_idEv:396188 + 2: _ZN9oceanbase6common12sched_getcpuEv:396188 + 0: 12776 + 0: _ZN9oceanbase6common8get_itidEv:357860 + 4: 12776 + 5: 2 + 6: 2 + 8: 2 + 2.1: _ZN9oceanbase6common33ObCounterSlotPickerByCPUNonAtomic9add_valueEPll:114984 + 0: 12776 + 61.1: _ZNK9oceanbase6common12ObKVCacheMap17need_modify_cacheElll:5720 + 4: 520 + 5: 520 + 63: _ZN9oceanbase6common18ObBucketWLockGuardC2ERNS0_12ObBucketLockEm:17872 + 1: 479 + 2: 479 + 3: 479 + 4: 479 + 6: 536 _ZN9oceanbase6common12ObBucketLock6wrlockEm:481 + 7.1: 2 + 9: 536 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:552 + 64: _ZNK9oceanbase6common18ObBucketWLockGuard7get_retEv:1347 + 0: 449 + 90: _ZN9oceanbase6common18ObBucketWLockGuardD2Ev:21615 + 2: 466 + 3: 466 _ZN9oceanbase6common12ObBucketLock6unlockEm:501 + 3.1: 467 + 4.1: 2 + 6: 467 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:463 + 6.1: 463 + 7: 463 + 8.1: 3 + 90.1: _ZN9oceanbase6common18ObBucketWLockGuardD2Ev:230 + 2: 2 + 3: 2 + 3.1: 2 + 4.1: 2 + 6: 2 + 6.1: 2 + 7: 2 + 8.1: 2 +_ZN9oceanbase12blocksstable23ObIMicroBlockRowScanner12get_next_rowERPKNS0_10ObDatumRowE:8953287:109931 + 1: 109217 + 2: 109217 + 3: 109217 + 4: 0 + 5.1: 0 + 6.1: 110430 + 6.2: 109217 _ZN9oceanbase12blocksstable10ObDatumRow7reserveElb:113739 + 7.1: 0 + 8.1: 110430 _ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScanner18inner_get_next_rowERPKNS0_10ObDatumRowE:111584 + 10: 100394 + 6.1: _ZNK9oceanbase7storage15ObTableReadInfo17get_request_countEv:764519 + 1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:764519 + 0: 109217 +_ZN9oceanbase3sql13ObTableScanOp22do_init_before_get_rowEv:8953057:114385 + 1: 110559 + 2: 110559 + 3: 110559 + 5: 4341 + 8: 4341 + 10: 0 + 10.1: 0 + 11.1: 0 + 12.1: 0 + 12.2: 0 + 13.1: 0 + 16: 0 + 18.1: 4279 + 19.1: 0 + 20.1: 4508 + 22.1: 0 + 27: 114407 + 8: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:17364 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:17364 + 0: 4341 + 9: _ZN9oceanbase3sql17ObGranuleTaskInfoC2Ev:0 + 1: 0 + 3: 0 + 4: 0 + 1: _ZN9oceanbase6common9ObSEArrayINS0_10ObNewRangeELl1ENS0_19ModulePageAllocatorELb0EEC2Ev:0 + 0.1: 0 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObNewRangeELl1ENS0_19ModulePageAllocatorELb0EEC2ElRKS3_:0 + 5: 0 + 6: 0 + 8: 0 + 17.1: 0 + 2: _ZN9oceanbase6common8ObIArrayINS0_10ObNewRangeEEC2EPS2_l:0 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_10ObNewRangeEEC2EPS2_l:0 + 0: 0 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:0 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:0 + 2: 0 + 8: 0 + 15: _ZN9oceanbase3sql17ObGranuleTaskInfoD2Ev:0 + 0: 0 + 15.1: _ZN9oceanbase3sql17ObGranuleTaskInfoD2Ev:0 + 0: 0 + 18.1: _ZN9oceanbase3sql13ObTableScanOp21prepare_all_das_tasksEv:968430 + 2: 4318 + 3: 4318 + 5: 0 + 6: 0 + 7: 0 + 8.1: 0 + 12: 0 + 13: 4346 + 13.1: 0 + 14: 0 + 15.1: 0 + 18: 4358 + 18.1: 0 + 19.1: 4222 + 19.3: 4222 + 19.5: 4222 + 20: 4533 + 21: 0 + 22: 0 + 24: 4679 _ZN9oceanbase3sql13ObTableScanOp25prepare_single_scan_rangeEl:4558 + 25.1: 0 + 26.1: 4679 _ZN9oceanbase3sql13ObTableScanOp16prepare_das_taskEv:4784 + 27.1: 0 + 34: 4478 + 3: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:17272 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:17272 + 0: 4318 + 5: _ZN9oceanbase6common12ObIArrayWrapISt4pairIlPNS_3sql13ObSqlArrayObjEEE2atEl:0 + 6: 0 + 13: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:0 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:0 + 0: 0 + 13.1: _ZN9oceanbase3sql12get_my_inputINS0_13ObTableScanOpEEERNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE5InputERKS5_:0 + 7: _ZNK9oceanbase3sql10ObOperator9get_inputEv:0 + 0: 0 + 13.2: _ZNK9oceanbase6common12ObIArrayWrapINS0_10ObNewRangeEE5emptyEv:0 + 0: 0 + 20: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:0 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:0 + 0: 0 + 29: _ZN9oceanbase3sql12get_my_inputINS0_13ObTableScanOpEEERNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE5InputERKS5_:29554 + 7: _ZNK9oceanbase3sql10ObOperator9get_inputEv:29554 + 0: 4222 + 29.1: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObNewRangeELl1ENS0_19ModulePageAllocatorELb0EE5reuseEv:422200 + 4.1: 4222 + 4.3: 4222 + 5: 4222 + 8: 4222 + 9: 4222 + 5: _ZN9oceanbase6common10ObNewRangeD2Ev:135104 + 2: _ZN9oceanbase6common10ObNewRange5resetEv:135104 + 2: 4222 + 3: _ZN9oceanbase6common12ObBorderFlag8set_dataEa:21110 + 0: 4222 + 4: _ZN9oceanbase6common8ObRowkey6assignEPNS0_5ObObjEl:75996 + 2: 4222 + 35: _ZN9oceanbase3sql13ObTableScanOp15set_group_rangeEll:53736 + 3: 4478 + 4.2: 0 + 5.1: 0 + 3: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:17912 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:17912 + 0: 4478 + 6: _ZN9oceanbase3sql16ObDASGroupScanOp15set_group_rangeEll:0 + 2: _ZN9oceanbase3sql15ObGroupScanIter15set_group_rangeEll:0 + 3: 0 + 4: 0 + 20.1: _ZN9oceanbase3sql13ObTableScanOp13do_table_scanEv:1471689 + 2: 4279 + 3: 4279 + 4: 4279 + 5.1: 4279 + 8.1: 4318 + 10.1: 4318 _ZN9oceanbase3sql8ObDASRef16execute_all_taskEv:4463 + 10.2: 4260 + 11.1: 0 + 13: 0 + 15: 4260 _ZN9oceanbase3sql8ObDASRef17begin_result_iterEv:4402 + 15.1: 4083 + 16: 4083 _ZN9oceanbase3sql13ObTableScanOp23update_output_tablet_idEv:4240 + 16.1: 4508 + 17.1: 0 + 21: 0 + 23: 0 + 4: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:0 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:0 + 0: 0 + 4.2: _ZN9oceanbase3lib15get_compat_modeEv:188276 + 2: 4279 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:106975 + 2: 4279 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 4.3: _ZN9oceanbase3lib15CompatModeGuardC2ENS0_6Worker10CompatModeE:427900 + 2: _ZN9oceanbase3lib6Worker4selfEv:119812 + 3: 4279 + 4: 0 + 2.1: _ZN9oceanbase3lib6Worker22get_compatibility_modeEv:188276 + 2: _ZN9oceanbase3lib15get_compat_modeEv:188276 + 2: 4279 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:106975 + 2: 4279 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 3: _ZN9oceanbase3lib6Worker4selfEv:38511 + 3: 4279 + 4: 0 + 3.1: _ZN9oceanbase3lib6Worker22set_compatibility_modeENS1_10CompatModeE:81301 + 2: _ZN9oceanbase3lib15set_compat_modeENS0_6Worker10CompatModeE:81301 + 2: 4279 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 5: _ZNK9oceanbase3sql8ObDASRef8has_taskEv:38511 + 0: _ZNK9oceanbase6common10ObObjStoreIPNS_3sql12ObIDASTaskOpERNS0_12ObIAllocatorELb0EE5emptyEv:38511 + 0: 4279 + 0: _ZNK9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql12ObIDASTaskOpEEEE8get_sizeEv:29953 + 0: 4279 + 8: _ZN9oceanbase3sql13ObTableScanOp28prepare_pushdown_limit_paramEv:38511 + 3: 4279 + 5.1: 0 + 7: 0 + 8: 0 + 10.1: 0 + 10.2: 0 + 23: 0 + 3: _ZNK9oceanbase6common12ObLimitParam8is_validEv:34232 + 0: 4279 + 5.1: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:0 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:0 + 0: 0 + 10.1: _ZNK9oceanbase3sql16ObTableScanRtDef16has_lookup_limitEv:0 + 1: 0 + 24: _ZN9oceanbase3sql16ObTableScanRtDef30prepare_multi_part_limit_paramEv:0 + 12: 0 + 14: 0 + 15: 0 + 16: 0 + 17: 0 + 19: 0 + 20: 0 + 24.5: _ZN9oceanbase3lib15CompatModeGuardD2Ev:315560 + 2.2: 0 + 2: _ZN9oceanbase3lib6Worker4selfEv:117208 + 3: 4508 + 4: 0 + 2.1: _ZN9oceanbase3lib6Worker22set_compatibility_modeENS1_10CompatModeE:198352 + 2: _ZN9oceanbase3lib15set_compat_modeENS0_6Worker10CompatModeE:198352 + 2: 4508 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:112700 + 2: 4508 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 24.6: _ZN9oceanbase3lib15CompatModeGuardD2Ev:0 + 2.2: 0 + 2: _ZN9oceanbase3lib6Worker4selfEv:0 + 3: 0 + 4: 0 + 2.1: _ZN9oceanbase3lib6Worker22set_compatibility_modeENS1_10CompatModeE:0 + 2: _ZN9oceanbase3lib15set_compat_modeENS0_6Worker10CompatModeE:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 +_ZN9oceanbase7storage22ObMicroBlockDataHandleC2Ev:8603796:47929 + 1: 45829 + 2: 45829 _ZN9oceanbase12blocksstable12MacroBlockIdC1Ev:47976 + 3: 43836 + 9: 44402 + 12: 44469 + 13: 45829 + 14: 44469 + 15: 44469 + 5: _ZN9oceanbase12blocksstable16ObMicroBlockInfoC2Ev:1008228 + 0: 43836 + 6: _ZN9oceanbase12blocksstable19ObMicroBlockDesMetaC2Ev:1141434 + 1: 44402 + 8: _ZN9oceanbase12blocksstable24ObMicroBlockBufferHandleC2Ev:350852 + 0: 43836 _ZN9oceanbase6common15ObKVCacheHandleC1Ev:45129 + 9: _ZN9oceanbase12blocksstable18ObMacroBlockHandleC2Ev:720188 + 0: 45338 _ZN9oceanbase12blocksstable12MacroBlockIdC1Ev:44984 + 0.1: 45338 _ZN9oceanbase6common10ObIOHandleC1Ev:47849 + 11: _ZN9oceanbase12blocksstable16ObMicroBlockDataC2Ev:1067256 + 0: 44469 + 15.3: _ZN9oceanbase12blocksstable24ObMicroBlockBufferHandleD2Ev:5904 + 0: 369 +_ZN9oceanbase7storage22ObMicroBlockDataHandleC1Ev:8603796:47929 + 1: 45829 + 2: 45829 _ZN9oceanbase12blocksstable12MacroBlockIdC1Ev:47976 + 3: 43836 + 9: 44402 + 12: 44469 + 13: 45829 + 14: 44469 + 15: 44469 + 5: _ZN9oceanbase12blocksstable16ObMicroBlockInfoC2Ev:1008228 + 0: 43836 + 6: _ZN9oceanbase12blocksstable19ObMicroBlockDesMetaC2Ev:1141434 + 1: 44402 + 8: _ZN9oceanbase12blocksstable24ObMicroBlockBufferHandleC2Ev:350852 + 0: 43836 _ZN9oceanbase6common15ObKVCacheHandleC1Ev:45129 + 9: _ZN9oceanbase12blocksstable18ObMacroBlockHandleC2Ev:720188 + 0: 45338 _ZN9oceanbase12blocksstable12MacroBlockIdC1Ev:44984 + 0.1: 45338 _ZN9oceanbase6common10ObIOHandleC1Ev:47849 + 11: _ZN9oceanbase12blocksstable16ObMicroBlockDataC2Ev:1067256 + 0: 44469 + 15.3: _ZN9oceanbase12blocksstable24ObMicroBlockBufferHandleD2Ev:5904 + 0: 369 +_ZN9oceanbase3sql16ObPlanCacheValue15resolver_paramsERNS0_14ObPlanCacheCtxENS0_4stmt8StmtTypeERKNS_6common8ObIArrayINS6_13ObCharsetTypeEEERKNS6_8ObBitSetILl256ENS6_19ModulePageAllocatorELb0EEESG_SG_RNS7_IPNS0_9ObPCParamEEEPNS6_9Ob2DArrayINS6_10ObObjParamELi2079744ENS6_18ObWrapperAllocatorELb0ENS6_9ObSEArrayIPSM_Ll1ESN_Lb0EEEEE:8494603:4868 + 8: 4540 + 9: 4540 + 10: 4540 + 11: 4540 + 13: 4540 + 14: 0 + 15.1: 0 + 16.1: 4540 + 19.1: 4540 + 20: 4540 + 21: 4515 + 21.1: 4515 + 22: 0 + 23.1: 0 + 27.1: 6815 + 27.3: 6815 + 27.5: 6815 + 28: 6786 _ZN9oceanbase6common10ObObjParam5resetEv:6922 + 29: 6778 + 29.1: 6778 + 30: 0 + 31.1: 0 + 32.2: 6778 + 33: 0 + 34.1: 0 + 35.2: 6 + 36: 0 + 36.1: 2 + 41: 0 + 41.1: 0 + 42.1: 0 + 45: 7073 + 46.1: 7073 + 46.2: 7073 + 46.3: 6866 + 49.1: 0 + 54: 6866 + 55: 6866 + 55.1: 6866 + 56: 0 + 56.1: 0 + 57: 0 + 58: 0 + 58.2: 0 + 58.3: 0 + 59: 0 + 59.1: 0 + 59.2: 0 + 59.4: 0 + 59.5: 0 + 59.6: 0 + 60: 0 + 60.1: 0 + 60.2: 0 + 62: 0 + 63.2: 6866 + 63.3: 0 + 64: 0 + 64.1: 0 + 65.1: 0 + 66.1: 6866 + 66.4: 6866 + 66.5: 6866 _ZN9oceanbase3sql15ObResolverUtils13resolve_constEPK10_ParseNodeNS0_4stmt8StmtTypeERNS_6common12ObIAllocatorENS7_15ObCollationTypeESA_PKNS7_14ObTimeZoneInfoERNS7_10ObObjParamEbRNS7_8ObStringEsSA_PNS0_11ObSqlBitSetILl96ENS0_14ObExprInfoFlagELb1EEEmb:7066 + 66.6: 6744 + 78.1: 0 + 79.1: 6744 + 83.1: 6744 + 83.2: 6744 + 84.1: 0 + 85.3: 6744 + 86: 6024 + 86.1: 0 + 88: 0 + 89: 0 + 95: 0 + 95.2: 0 + 96: 0 + 121: 0 + 122.18: 4543 + 10: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:31780 + 2: 4540 + 12: _ZN9oceanbase6common10ObObjParamC2Ev:390440 + 0: 4540 + 1: 4540 + 0: _ZN9oceanbase6common5ObObjC2Ev:104420 + 2: _ZN9oceanbase6common5ObObj5resetEv:104420 + 6: 4540 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:31780 + 0: 4540 + 0.1: _ZN9oceanbase6common9ObObjMetaC2Ev:45400 + 1: 4540 + 0.3: _ZN9oceanbase6common9ParamFlagC2Ev:145280 + 7: 4540 + 8: 4540 + 18: _ZNK9oceanbase3sql18ObBasicSessionInfo30get_local_collation_connectionEv:199760 + 2: 4540 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_collation_connectionEv:163440 + 0: 4540 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_collation_connectionEb:95340 + 0: 4540 + 19: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql9ObPCParamEE5countEv:18160 + 0: 4540 + 20: _ZN9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE7reserveEl:1444654 + 0: 4513 + 2: 4540 + 3: 4540 + 4: 4513 + 7: 4513 + 8: 4513 + 9.1: 0 + 12: 0 + 13.1: 0 + 17: 0 + 18: 0 + 19.1: 0 + 20: 0 + 23: 0 + 25: 0 + 27: 0 + 27.1: 0 + 27.3: 0 + 28: 0 + 29.1: 0 + 3: _ZNK9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE12get_capacityEv:31780 + 2: 4540 + 8: _ZN9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE9new_blockEl:1209484 + 5: 4513 + 7: 0 + 8.1: 0 + 10.1: 0 + 11.1: 0 + 15: 4513 + 17: 0 + 6: _ZN9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE11alloc_blockEl:1010912 + 1: 4513 + 1: _ZN9oceanbase6common18ObWrapperAllocator5allocEl:979321 + 0: 4513 + 0: _ZN9oceanbase6common18ObWrapperAllocator5allocElRKNS_3lib9ObMemAttrE:884548 + 2: 4513 + 2.2: 4513 + 2.2: _ZN9oceanbase6common16ObArenaAllocator5allocElRKNS_3lib9ObMemAttrE:699515 + 3: _ZN9oceanbase6common16ObArenaAllocator5allocEl:699515 + 0: 4513 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13alloc_alignedEll:631820 + 3: 4513 + 6: 4513 + 7: 4513 + 8: 4513 + 10: 4513 + 11: 4513 + 12: 4513 + 13: 4513 + 15.1: 0 + 16: 0 + 18: 0 + 20: 0 + 28: 0 + 35: 4513 + 36: 4513 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE15ensure_cur_pageEv:94773 + 2: 4513 + 3: 0 + 5.1: 0 + 8: 0 + 9: 0 + 10: 0 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:0 + 2: 0 + 2.2: 0 + 2.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 9: _ZSt3maxIlERKT_S2_S2_:0 + 5: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 8: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:0 + 0: 0 + 7: _ZN9oceanbase6common16get_align_offsetEPvl:63182 + 3: 4513 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:31591 + 0: 4513 + 11: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:31591 + 7: 4513 + 15.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE18is_normal_overflowEl:0 + 2: 0 + 16: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11extend_pageEl:0 + 4: 0 + 5: 0 + 8: 0 + 9: 0 + 10.1: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 12: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_tailEPNS3_4PageE:0 + 2: 0 + 3: 0 + 5: 0 + 23.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16lookup_next_pageEl:0 + 3.1: 0 + 4.1: 0 + 5: 0 + 5.1: 0 + 7: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page10reuse_sizeEv:0 + 0: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 32: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9alloc_bigEl:0 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 3: 0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_headEPNS3_4PageE:0 + 4: 0 + 5: 0 + 7: 0 + 7: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:0 + 3: 0 + 10.1: _ZN9oceanbase6common13ObSEArrayImplIPNS0_10ObObjParamELl1ENS0_18ObWrapperAllocatorELb0EE9push_backERKS3_:121851 + 5: 4513 + 6: 0 + 12: 0 + 15: 0 + 15.1: 4513 + 16: 4513 + 15.1: _ZN9oceanbase6common9ObClassOpIPNS0_10ObObjParamELb1EE20construct_and_assignERKS3_RS3_:18052 + 2: 4513 + 12: _ZN9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE10free_blockES5_:0 + 0: _ZN9oceanbase6common18ObWrapperAllocator4freeEPv:0 + 2: 0 + 3: 0 + 26: _ZNK9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE15get_block_countEv:0 + 0: _ZNK9oceanbase6common12ObIArrayWrapIPNS0_10ObObjParamEE5countEv:0 + 0: 0 + 29: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql9ObPCParamEE2atEl:54224 + 6: 6778 + 35.1: _ZNK9oceanbase6common8ObBitSetILl256ENS0_19ModulePageAllocatorELb0EE10has_memberEl:142470 + 3: 6778 + 4.1: 0 + 6.1: 6778 + 9: 6 + 10: 6 + 6.1: _ZNK9oceanbase6common8ObBitSetILl256ENS0_19ModulePageAllocatorELb0EE9bit_countEv:54224 + 0: 6778 + 0: _ZNK9oceanbase6common8ObBitSetILl256ENS0_19ModulePageAllocatorELb0EE17bitset_word_countEv:27112 + 0: _ZNK9oceanbase6common12ObIArrayWrapIjE5countEv:27112 + 0: 6778 + 9: _ZNK9oceanbase6common12ObIArrayWrapIjE2atEl:24 + 6: 6 + 36: _ZNK9oceanbase6common8ObBitSetILl256ENS0_19ModulePageAllocatorELb0EE10has_memberEl:83856 + 3: 0 + 4.1: 0 + 6.1: 6985 + 9: 2 + 10: 2 + 6.1: _ZNK9oceanbase6common8ObBitSetILl256ENS0_19ModulePageAllocatorELb0EE9bit_countEv:55880 + 0: 6985 + 0: _ZNK9oceanbase6common8ObBitSetILl256ENS0_19ModulePageAllocatorELb0EE17bitset_word_countEv:27940 + 0: _ZNK9oceanbase6common12ObIArrayWrapIjE5countEv:27940 + 0: 6985 + 9: _ZNK9oceanbase6common12ObIArrayWrapIjE2atEl:8 + 6: 2 + 46.1: _ZNK9oceanbase6common12ObIArrayWrapINS0_13ObCharsetTypeEE2atEl:28292 + 6: 7073 + 46.2: _ZN9oceanbase3sql16ObPlanCacheValue22handle_varchar_charsetENS_6common13ObCharsetTypeERNS2_12ObIAllocatorERP10_ParseNode:7101 + 6: 7073 + 7: 0 + 8: 0 + 10: 0 + 14: 0 + 19: 0 + 20: 0 + 23: 0 + 24: 0 + 25: 0 + 26: 0 + 28: 0 + 51: _ZN9oceanbase6common8ObStringC2Ev:82392 + 1: 6866 + 56: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:0 + 2: 0 + 60.1: _ZN9oceanbase3sql17ObPhysicalPlanCtx26get_param_store_for_updateEv:0 + 0: 0 + 60.2: _ZN9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE2atEl:0 + 2: 0 + 2.2: 0 + 3.1: 0 + 5: 0 + 5: _ZNK9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE11get_obj_posEl:0 + 4: 0 + 5: 0 + 4: _ZNK9oceanbase6common12ObIArrayWrapIPNS0_10ObObjParamEE2atEl:0 + 6: 0 + 60.3: _ZNK9oceanbase6common10ObObjParam10is_booleanEv:0 + 0: 0 + 60.4: _ZN9oceanbase6common10ObObjParam14set_is_booleanEb:0 + 0: 0 + 63.1: _ZN9oceanbase3lib14is_oracle_modeEv:302104 + 2: 6866 + 2: _ZN9oceanbase3lib15get_compat_modeEv:281506 + 2: 6866 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:171650 + 2: 6866 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 66.1: _ZNK9oceanbase3sql18ObBasicSessionInfo24get_nls_collation_nationEv:254042 + 2: 6866 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_nls_nation_collationEv:233444 + 0: 6866 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_nls_nation_collationEb:75526 + 0: 6866 + 66.2: _ZNK9oceanbase3sql18ObBasicSessionInfo17get_timezone_infoEv:48062 + 0: _ZNK9oceanbase6common18ObTimeZoneInfoWrap18get_time_zone_infoEv:48062 + 0: 6866 + 66.3: _ZNK9oceanbase3sql18ObBasicSessionInfo31get_actual_nls_length_semanticsEv:240310 + 2: 6866 + 3: 6866 + 2.4: _ZN9oceanbase6common25is_oracle_sys_database_idEl:75526 + 2: 6866 + 3: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_nls_length_semanticsEv:96124 + 0: 6866 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_nls_length_semanticsEb:75526 + 0: 6866 + 66.4: _ZNK9oceanbase3sql18ObBasicSessionInfo12get_sql_modeEv:89258 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache12get_sql_modeEv:89258 + 0: 6866 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache12get_sql_modeEb:68660 + 0: 6866 + 79.1: _ZN9oceanbase6common10ObObjParam17set_raw_text_infoEii:107904 + 2: 6744 + 3: 6744 + 83.1: _ZN9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE9push_backERKS2_:1294848 + 2: 6744 + 3: 6744 + 4: 0 + 5: 0 + 6.1: 0 + 8.1: 0 + 10: 0 + 11: 0 + 12.1: 0 + 15: 0 + 16.1: 0 + 20: 0 + 21: 6744 + 22: 0 + 25: 6744 + 28: 6744 + 24: _ZNK9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE11get_obj_posEl:263016 + 4: 6744 + 5: 6744 + 4: _ZNK9oceanbase6common12ObIArrayWrapIPNS0_10ObObjParamEE2atEl:26976 + 6: 6744 + 25: _ZN9oceanbase6common16construct_assignINS0_10ObObjParamEEEiRT_RKS3_:606960 + 2: _ZN9oceanbase6common21construct_assign_wrapINS0_10ObObjParamEEEiRT_RKS3_NS0_8BoolTypeILb0EEE:606960 + 2: _ZN9oceanbase6common10ObObjParamC2ERKS1_:606960 + 0: 6744 + 0: _ZN9oceanbase6common5ObObjC2ERKS1_:161856 + 2: 6744 + 0: _ZN9oceanbase6common9ObObjMetaC2Ev:74184 + 1: 6744 + 0.1: _ZN9oceanbase6common10ObAccuracyC2ERKS1_:80928 + 0: 6744 + 0.2: _ZN9oceanbase6common9ParamFlagC2ERKS1_:148368 + 0: 6744 + 85.1: _ZNK9oceanbase6common5ObObj8get_typeEv:47208 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:47208 + 0: 6744 + 85.2: _ZN9oceanbase6common18ob_is_numeric_typeENS0_9ObObjTypeE:33720 + 0: 6744 + 86: _ZNK9oceanbase6common8ObBitSetILl256ENS0_19ModulePageAllocatorELb0EE10has_memberEl:168672 + 3: 6024 + 4.1: 0 + 6.1: 6024 + 9: 0 + 10: 0 + 6.1: _ZNK9oceanbase6common8ObBitSetILl256ENS0_19ModulePageAllocatorELb0EE9bit_countEv:48192 + 0: 6024 + 0: _ZNK9oceanbase6common8ObBitSetILl256ENS0_19ModulePageAllocatorELb0EE17bitset_word_countEv:24096 + 0: _ZNK9oceanbase6common12ObIArrayWrapIjE5countEv:24096 + 0: 6024 + 9: _ZNK9oceanbase6common12ObIArrayWrapIjE2atEl:0 + 6: 0 + 87: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 88.1: _ZNK9oceanbase6common5ObObj18is_negative_numberEv:0 + 0: _ZN9oceanbase6common6number8ObNumber18is_negative_numberERK12ObNumberDesc:0 + 2: 0 + 89.1: _ZNK9oceanbase6common5ObObj14is_zero_numberEv:0 + 0: _ZN9oceanbase6common6number8ObNumber14is_zero_numberERK12ObNumberDesc:0 + 2: 0 + 94.1: _ZNK9oceanbase6common5ObObj15is_integer_typeEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta15is_integer_typeEv:0 + 0.1: _ZN9oceanbase6common18ob_is_integer_typeENS0_9ObObjTypeE:0 + 0: 0 +_ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScanner10do_compactEPKNS0_10ObDatumRowERS2_Rb:8492930:107249 + 4: 104709 + 5: 104709 + 6: 104709 + 7: 0 + 8.1: 0 + 9.1: 104709 + 10: 104709 + 15.1: 10 + 15.3: 10 + 16: 10 + 17: 2 + 20: 1 + 21: 1 + 25.1: 0 + 26.1: 0 + 29: 104697 + 30: 104697 + 30.1: 1 + 31: 105459 + 34: 105460 + 10: _ZNK9oceanbase12blocksstable21ObMultiVersionRowFlag30is_compacted_multi_version_rowEv:732963 + 0: 104709 + 13: _ZN9oceanbase7storage8ObNopPos5resetEv:11 + 2: 1 + 16: _ZNK9oceanbase6common7ObDatum6is_nopEv:92 + 0: 10 + 0.1: 2 + 0: _ZNK9oceanbase6common11ObDatumDesc6is_extEv:50 + 0: 10 + 0.1: _ZNK9oceanbase6common5ObObj12is_nop_valueEv:20 + 2: 2 + 2.1: 2 +_ZN9oceanbase7storage15ObMultipleMerge23refresh_table_on_demandEv:8027096:121453 + 1: 113094 + 2: 113094 + 4: 113094 + 5: 0 + 6.1: 0 + 7.1: 113094 + 9.1: 108607 + 11.1: 108607 + 12: 0 + 13.1: 0 + 14: 0 + 17.1: 0 + 18.1: 0 + 19.1: 0 + 20.1: 0 + 21.1: 0 + 22.1: 0 + 23.1: 0 + 24.1: 0 + 25.1: 0 + 26.1: 0 + 27: 0 + 29.1: 0 + 32: 113191 + 9.1: _ZN9oceanbase7storage15ObMultipleMerge24check_need_refresh_tableERb:1737723 + 3: _ZNK9oceanbase7storage20ObTableStoreIterator18check_store_expireEv:1737723 + 0: 108608 + 0.2: 108607 + 15: _ZN9oceanbase7storage15ObBlockRowStore7disableEv:0 + 0: 0 +_ZN9oceanbase3sql15DASOpResultIter12get_next_rowEv:8015208:115506 + 1: 105559 + 2: 105559 + 3: 105559 + 4: 105559 + 5: 105559 + 6: 0 + 7.1: 0 + 9: 117116 _ZN9oceanbase3sql11ObDASScanOp22get_output_result_iterEv:106766 + 9.1: 101760 _ZN9oceanbase7storage19ObTableScanIterator12get_next_rowEv:111063 + 12: 0 + 14: 118667 + 3: _ZNK9oceanbase6common10ObObjStoreIPNS_3sql12ObIDASTaskOpERNS0_12ObIAllocatorELb0EE8Iterator6is_endEv:633354 + 0: 105559 + 4.5: _ZN9oceanbase3sql12ObIDASTaskOp8get_typeEv:316677 + 0: 105559 +_ZN9oceanbase6common16ObArenaAllocator5allocEl:7952439:53678 + 0: 50395 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13alloc_alignedEll:5837537 + 3: 50331 + 6: 50392 + 7: 50392 + 8: 50392 + 10: 50392 + 11: 50391 + 12: 50391 + 13: 50391 + 15.1: 1 + 16: 1 + 18: 0 + 20: 0 + 28: 0 + 35: 50395 + 36: 50395 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE15ensure_cur_pageEv:795481 + 2: 50331 + 3: 484 + 5.1: 484 + 8: 515 + 9: 515 + 10: 515 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:62715 + 5: 484 + 6: 484 + 8: 484 + 9: 484 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:36095 + 2: 450 + 3: 450 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:7200 + 5: 450 + 7: 450 + 8: 450 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:11345 + 2: 450 + 2.2: 448 _ZN9oceanbase6common11ObAllocator5allocElRKNS_3lib9ObMemAttrE:464 + 2.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:109 + 3: 3 _ZN9oceanbase3lib17ObMallocAllocator12get_instanceEv:3 + 4: 3 + 5: 3 _ZN9oceanbase3lib17ObMallocAllocator5allocElRKNS0_9ObMemAttrE:4 + 6: 7 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 9: _ZSt3maxIlERKT_S2_S2_:0 + 5: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:11616 + 1: 484 + 3: 484 + 8: _ZL12abort_unlessb:3090 + 5: 515 + 6: 0 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:4120 + 0: 515 + 7: _ZN9oceanbase6common16get_align_offsetEPvl:655096 + 3: 50392 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:352744 + 0: 50392 + 11: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:352737 + 7: 50391 + 15.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE18is_normal_overflowEl:5 + 2: 1 + 16: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11extend_pageEl:12 + 4: 1 + 5: 1 + 8: 1 _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:1 + 9: 0 + 10.1: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 12: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_tailEPNS3_4PageE:0 + 2: 0 + 3: 0 + 5: 0 + 23.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16lookup_next_pageEl:0 + 3.1: 0 + 4.1: 0 + 5: 0 + 5.1: 0 + 7: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page10reuse_sizeEv:0 + 0: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 32: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9alloc_bigEl:1449 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:1176 + 3: 10 + 5: 12 + 6: 12 + 8: 12 + 9: 12 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:478 + 2: 10 + 3: 10 _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:1 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:160 + 5: 10 + 7: 10 + 8: 10 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:288 + 1: 12 + 3: 12 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_headEPNS3_4PageE:213 + 4: 12 + 5: 9 + 7: 12 + 7: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:60 + 3: 12 +_ZSt16__introsort_loopIPPN9oceanbase3sql17ObChunkDatumStore9StoredRowElN9__gnu_cxx5__ops15_Iter_comp_iterINS1_12ObSortOpImpl16CopyableComparerEEEEvT_SC_T0_T1_:7829281:5296 + 3: 5112 + 4.1: 5112 + 6: 4691 + 11: 4671 + 14: 4671 _ZSt16__introsort_loopIPPN9oceanbase3sql17ObChunkDatumStore9StoredRowElN9__gnu_cxx5__ops15_Iter_comp_iterINS1_12ObSortOpImpl16CopyableComparerEEEEvT_SC_T0_T1_:4765 + 17: 6382 + 8: _ZSt14__partial_sortIPPN9oceanbase3sql17ObChunkDatumStore9StoredRowEN9__gnu_cxx5__ops15_Iter_comp_iterINS1_12ObSortOpImpl16CopyableComparerEEEEvT_SC_SC_T0_:1077553 + 63825.1: 1199 + 5: _ZSt13__heap_selectIPPN9oceanbase3sql17ObChunkDatumStore9StoredRowEN9__gnu_cxx5__ops15_Iter_comp_iterINS1_12ObSortOpImpl16CopyableComparerEEEEvT_SC_SC_T0_:501889 + 4: _ZSt11__make_heapIPPN9oceanbase3sql17ObChunkDatumStore9StoredRowEN9__gnu_cxx5__ops15_Iter_comp_iterINS1_12ObSortOpImpl16CopyableComparerEEEEvT_SC_T0_:501889 + 12: 1208 + 15: 1208 + 18: 1208 + 16.1: _ZSt13__adjust_heapIPPN9oceanbase3sql17ObChunkDatumStore9StoredRowElS4_N9__gnu_cxx5__ops15_Iter_comp_iterINS1_12ObSortOpImpl16CopyableComparerEEEEvT_T0_SD_T1_T2_:435449 + 5.1: 1208 + 7: 1208 + 8: 1208 + 9: 1208 + 11: 1208 + 14: 1208 + 17: 1208 + 8: _ZN9__gnu_cxx5__ops15_Iter_comp_iterIN9oceanbase3sql12ObSortOpImpl16CopyableComparerEEclIPPNS3_17ObChunkDatumStore9StoredRowESB_EEbT_T0_:83127 + 1: 1208 + 1: _ZN9oceanbase3sql12ObSortOpImpl16CopyableComparerclEPKNS0_17ObChunkDatumStore9StoredRowES6_:33752 + 2: 1208 + 21: _ZSt11__push_heapIPPN9oceanbase3sql17ObChunkDatumStore9StoredRowElS4_N9__gnu_cxx5__ops14_Iter_comp_valINS1_12ObSortOpImpl16CopyableComparerEEEEvT_T0_SD_T1_T2_:105096 + 5.1: 1208 + 5.3: 1208 + 7: 1208 + 11: 1208 + 5.2: _ZN9__gnu_cxx5__ops14_Iter_comp_valIN9oceanbase3sql12ObSortOpImpl16CopyableComparerEEclIPPNS3_17ObChunkDatumStore9StoredRowESA_EEbT_RT0_:19328 + 1: 1208 + 1: _ZN9oceanbase3sql12ObSortOpImpl16CopyableComparerclEPKNS0_17ObChunkDatumStore9StoredRowES6_:9664 + 2: 1208 + 6: _ZSt11__sort_heapIPPN9oceanbase3sql17ObChunkDatumStore9StoredRowEN9__gnu_cxx5__ops15_Iter_comp_iterINS1_12ObSortOpImpl16CopyableComparerEEEEvT_SC_T0_:551648 + 3.1: 1208 + 5: 1199 + 6: _ZSt10__pop_heapIPPN9oceanbase3sql17ObChunkDatumStore9StoredRowEN9__gnu_cxx5__ops15_Iter_comp_iterINS1_12ObSortOpImpl16CopyableComparerEEEEvT_SC_SC_T0_:483197 + 8: 1199 + 9: 1199 + 11: 1199 + 10: _ZSt13__adjust_heapIPPN9oceanbase3sql17ObChunkDatumStore9StoredRowElS4_N9__gnu_cxx5__ops15_Iter_comp_iterINS1_12ObSortOpImpl16CopyableComparerEEEEvT_T0_SD_T1_T2_:454421 + 5.1: 1199 + 7: 1199 + 8: 1199 + 9: 1199 + 11: 1199 + 14: 1199 + 14.1: 1199 + 16: 1199 + 17: 1199 + 8: _ZN9__gnu_cxx5__ops15_Iter_comp_iterIN9oceanbase3sql12ObSortOpImpl16CopyableComparerEEclIPPNS3_17ObChunkDatumStore9StoredRowESB_EEbT_T0_:77935 + 1: 1199 + 1: _ZN9oceanbase3sql12ObSortOpImpl16CopyableComparerclEPKNS0_17ObChunkDatumStore9StoredRowES6_:26378 + 2: 1199 + 21: _ZSt11__push_heapIPPN9oceanbase3sql17ObChunkDatumStore9StoredRowElS4_N9__gnu_cxx5__ops14_Iter_comp_valINS1_12ObSortOpImpl16CopyableComparerEEEEvT_T0_SD_T1_T2_:95920 + 5.1: 1199 + 5.3: 1199 + 7: 1199 + 11: 1199 + 5.2: _ZN9__gnu_cxx5__ops14_Iter_comp_valIN9oceanbase3sql12ObSortOpImpl16CopyableComparerEEclIPPNS3_17ObChunkDatumStore9StoredRowESA_EEbT_RT0_:17985 + 1: 1199 + 1: _ZN9oceanbase3sql12ObSortOpImpl16CopyableComparerclEPKNS0_17ObChunkDatumStore9StoredRowES6_:13189 + 2: 1199 + 13: _ZSt27__unguarded_partition_pivotIPPN9oceanbase3sql17ObChunkDatumStore9StoredRowEN9__gnu_cxx5__ops15_Iter_comp_iterINS1_12ObSortOpImpl16CopyableComparerEEEET_SC_SC_T0_:6168219 + 3: 4691 + 4: 4691 _ZSt22__move_median_to_firstIPPN9oceanbase3sql17ObChunkDatumStore9StoredRowEN9__gnu_cxx5__ops15_Iter_comp_iterINS1_12ObSortOpImpl16CopyableComparerEEEEvT_SC_SC_SC_T0_:4916 + 6: _ZSt21__unguarded_partitionIPPN9oceanbase3sql17ObChunkDatumStore9StoredRowEN9__gnu_cxx5__ops15_Iter_comp_iterINS1_12ObSortOpImpl16CopyableComparerEEEET_SC_SC_SC_T0_:6004687 + 6.1: 44711 + 7: 44711 + 9: 13189 + 9.1: 45826 + 11: 46780 + 6.1: _ZN9__gnu_cxx5__ops15_Iter_comp_iterIN9oceanbase3sql12ObSortOpImpl16CopyableComparerEEclIPPNS3_17ObChunkDatumStore9StoredRowESB_EEbT_T0_:1522021 + 1: 44877 + 1794: 4835 + 1: _ZN9oceanbase3sql12ObSortOpImpl16CopyableComparerclEPKNS0_17ObChunkDatumStore9StoredRowES6_:316429 + 2: 44877 _ZN9oceanbase3sql12ObSortOpImpl7CompareclEPKNS0_17ObChunkDatumStore9StoredRowES6_:42256 + 9.1: _ZN9__gnu_cxx5__ops15_Iter_comp_iterIN9oceanbase3sql12ObSortOpImpl16CopyableComparerEEclIPPNS3_17ObChunkDatumStore9StoredRowESB_EEbT_T0_:1445225 + 1: 46016 + 1: _ZN9oceanbase3sql12ObSortOpImpl16CopyableComparerclEPKNS0_17ObChunkDatumStore9StoredRowES6_:329243 + 2: 46016 _ZN9oceanbase3sql12ObSortOpImpl7CompareclEPKNS0_17ObChunkDatumStore9StoredRowES6_:40342 + 13: _ZSt9iter_swapIPPN9oceanbase3sql17ObChunkDatumStore9StoredRowES5_EvT_T0_:627915 + 28: _ZSt4swapIPN9oceanbase3sql17ObChunkDatumStore9StoredRowEEvRT_S6_:627915 + 9: 41545 + 10: 41545 + 11: 41545 +_ZN9oceanbase6common16ObArenaAllocator5reuseEv:7706829:111482 + 0: 105573 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE5reuseEv:4328493 + 2: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16free_large_pagesEv:1794741 + 3.1: 105573 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 13: 0 + 14: 0 + 18: 0 + 19: 105573 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:0 + 0: 0 + 5.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 6: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13is_large_pageEPKNS3_4PageE:0 + 2.2: 0 + 2.2: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page8raw_sizeEv:0 + 0: 0 + 9: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page8raw_sizeEv:0 + 0: 0 + 10: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:0 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE10fast_reuseEv:2533752 + 2: 105573 + 3: 105573 + 7: 105573 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 +_ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScanner19cache_cur_micro_rowEbb:7643148:107931 + 1: 102958 + 2: 102958 + 4: 102958 + 6: 104606 + 6.1: 104383 + 9.1: 219 + 10: 0 + 12: 0 + 17.1: 0 + 17.2: 0 + 17.3: 0 + 19: 0 + 20: 0 + 21: 0 + 22.1: 0 + 23.1: 0 + 31: 233 + 36: 0 + 37: 0 + 39.1: 0 + 41: 0 + 43: 0 + 43.1: 0 + 44.1: 0 + 44.3: 0 + 45: 0 + 46: 0 + 47: 0 + 48.1: 0 + 52.1: 0 + 54: 0 + 55: 0 + 56: 0 + 56.1: 0 + 56.3: 0 + 57: 0 + 59.1: 0 + 60.1: 0 + 60.2: 0 + 60.3: 0 + 60.5: 0 + 61: 0 + 62: 0 + 63: 0 + 64.1: 0 + 68.1: 0 + 68.2: 0 + 68.3: 0 + 68.5: 0 + 69: 0 + 70: 0 + 71: 0 + 71.1: 0 + 72.1: 0 + 82: 107166 + 64894: 0 + 6.1: _ZNK9oceanbase12blocksstable23ObIMicroBlockRowScanner12is_row_emptyERKNS0_10ObDatumRowE:730681 + 1: _ZNK9oceanbase12blocksstable12ObDmlRowFlag12is_not_existEv:730681 + 2: 104383 + 9.1: _ZNK9oceanbase12blocksstable23ObIMicroBlockRowScanner12is_row_emptyERKNS0_10ObDatumRowE:3066 + 1: _ZNK9oceanbase12blocksstable12ObDmlRowFlag12is_not_existEv:3066 + 2: 219 + 10: _ZNK9oceanbase12blocksstable23ObIMicroBlockRowScanner12is_row_emptyERKNS0_10ObDatumRowE:0 + 1: _ZNK9oceanbase12blocksstable12ObDmlRowFlag12is_not_existEv:0 + 2: 0 + 11: _ZN9oceanbase12blocksstable12ObDmlRowFlagaSERKS1_:0 + 3: 0 + 2: _ZNK9oceanbase12blocksstable12ObDmlRowFlag8is_validEv:0 + 2: 0 + 20: _ZNK9oceanbase6common7ObDatum6is_nopEv:0 + 0: 0 + 0.1: 0 + 0: _ZNK9oceanbase6common11ObDatumDesc6is_extEv:0 + 0: 0 + 0.1: _ZNK9oceanbase6common5ObObj12is_nop_valueEv:0 + 2: 0 + 2.1: 0 + 21: _ZN9oceanbase12blocksstable14ObStorageDatum9deep_copyERKS1_RNS_6common12ObIAllocatorE:0 + 2: 0 + 5: 0 + 6: 0 + 7.1: 0 + 8.1: 0 + 10: 0 + 13: 0 + 14: 0 + 15: 0 + 16.1: 0 + 18: 0 + 23: 0 + 4: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:0 + 0: 0 + 6: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:0 + 0: 0 + 8.1: _ZNK9oceanbase12blocksstable14ObStorageDatum12is_local_bufEv:0 + 0: 0 + 24: _ZNK9oceanbase6common7ObDatum6is_nopEv:0 + 0: 0 + 0.1: 0 + 0: _ZNK9oceanbase6common11ObDatumDesc6is_extEv:0 + 0: 0 + 0.1: _ZNK9oceanbase6common5ObObj12is_nop_valueEv:0 + 2: 0 + 2.1: 0 + 36: _ZNK9oceanbase12blocksstable23ObIMicroBlockRowScanner12is_row_emptyERKNS0_10ObDatumRowE:0 + 1: _ZNK9oceanbase12blocksstable12ObDmlRowFlag12is_not_existEv:0 + 2: 0 + 39.1: _ZNK9oceanbase12blocksstable23ObIMicroBlockRowScanner12is_row_emptyERKNS0_10ObDatumRowE:0 + 1: _ZNK9oceanbase12blocksstable12ObDmlRowFlag12is_not_existEv:0 + 2: 0 + 40: _ZN9oceanbase12blocksstable12ObDmlRowFlagaSERKS1_:0 + 3: 0 + 2: _ZNK9oceanbase12blocksstable12ObDmlRowFlag8is_validEv:0 + 2: 0 + 43: _ZNK9oceanbase12blocksstable12ObDmlRowFlag9is_deleteEv:0 + 2: 0 + 43.1: _ZNK9oceanbase7storage15ObTableReadInfo23get_schema_rowkey_countEv:0 + 1: 0 + 47: _ZN9oceanbase12blocksstable14ObStorageDatum9deep_copyERKS1_RNS_6common12ObIAllocatorE:0 + 2: 0 + 5: 0 + 6: 0 + 7.1: 0 + 8.1: 0 + 10: 0 + 11: 0 + 13: 0 + 14: 0 + 15: 0 + 16.1: 0 + 18: 0 + 20: 0 + 23: 0 + 4: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:0 + 0: 0 + 6: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:0 + 0: 0 + 8.1: _ZNK9oceanbase12blocksstable14ObStorageDatum12is_local_bufEv:0 + 0: 0 + 52.1: _ZNK9oceanbase12blocksstable23ObIMicroBlockRowScanner12is_row_emptyERKNS0_10ObDatumRowE:0 + 1: _ZNK9oceanbase12blocksstable12ObDmlRowFlag12is_not_existEv:0 + 2: 0 + 53: _ZN9oceanbase12blocksstable12ObDmlRowFlagaSERKS1_:0 + 3: 0 + 2: _ZNK9oceanbase12blocksstable12ObDmlRowFlag8is_validEv:0 + 2: 0 + 55: _ZNK9oceanbase12blocksstable12ObDmlRowFlag9is_deleteEv:0 + 2: 0 + 56: _ZNK9oceanbase7storage15ObTableReadInfo23get_schema_rowkey_countEv:0 + 1: 0 + 57: _ZN9oceanbase12blocksstable14ObStorageDatum7set_nopEv:0 + 0: _ZN9oceanbase12blocksstable14ObStorageDatum13set_ext_valueEl:0 + 1: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:0 + 0: 0 + 1.1: _ZN9oceanbase6common11ObDatumDesc7set_extEv:0 + 0: 0 + 1.3: _ZN9oceanbase6common5ObObj7set_extEl:0 + 4: 0 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:0 + 0: 0 + 63: _ZN9oceanbase12blocksstable14ObStorageDatum9deep_copyERKS1_RNS_6common12ObIAllocatorE:0 + 2: 0 + 5: 0 + 6: 0 + 7.1: 0 + 8.1: 0 + 10: 0 + 13: 0 + 14: 0 + 15: 0 + 16.1: 0 + 18: 0 + 23: 0 + 4: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:0 + 0: 0 + 6: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:0 + 0: 0 + 8.1: _ZNK9oceanbase12blocksstable14ObStorageDatum12is_local_bufEv:0 + 0: 0 + 71: _ZNK9oceanbase6common7ObDatum6is_nopEv:0 + 0: 0 + 0.1: 0 + 0: _ZNK9oceanbase6common11ObDatumDesc6is_extEv:0 + 0: 0 + 0.1: _ZNK9oceanbase6common5ObObj12is_nop_valueEv:0 + 2: 0 + 2.1: 0 + 71.1: _ZN9oceanbase12blocksstable14ObStorageDatum9deep_copyERKS1_RNS_6common12ObIAllocatorE:0 + 2: 0 + 5: 0 + 6: 0 + 7.1: 0 + 8.1: 0 + 10: 0 + 13: 0 + 14: 0 + 15: 0 + 16.1: 0 + 18: 0 + 23: 0 + 733: 0 + 4: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:0 + 0: 0 + 6: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:0 + 0: 0 + 8.1: _ZNK9oceanbase12blocksstable14ObStorageDatum12is_local_bufEv:0 + 0: 0 +_ZN9oceanbase3sql12ObSqlPlanSet15get_plan_normalERNS0_14ObPlanCacheCtxERPNS0_14ObPhysicalPlanE:7640162:4314 + 2: 4288 + 3: 4288 + 4: 4288 + 5: 4288 + 6: 4288 + 7: 23 + 8.1: 23 + 11: 23 + 12: 23 + 13: 4288 + 17: 4288 + 37: 23 + 41: 4288 + 41.3: 4245 + 41.5: 4245 + 41.7: 4213 + 41.10: 4229 + 42: 4229 + 55: 4187 + 55.1: 23 + 56: 4062 + 58: 23 + 64: 4187 + 64.1: 4187 + 65.2: 4239 + 65.4: 23 + 65.7: 23 + 67: 4239 + 69.1: 4239 + 70: 23 + 71: 23 + 72: 23 + 74.2: 4119 + 79: 23 + 80: 23 + 81: 23 + 85.1: 23 + 89.1: 23 + 96: 4119 + 97: 23 + 103: 3839 + 13: _ZN9oceanbase3sql13ObExecContext21set_direct_local_planEb:30016 + 0: 4288 + 41.2: _ZN9oceanbase6common8precheckINS0_9ObSEArrayINS_3sql15ObCandiTableLocELl4ENS0_19ModulePageAllocatorELb0EEEEEibRb:271562 + 6: _ZN9oceanbase6common15check_from_heapEiRb:271562 + 4: 4288 + 5: 4288 + 6: 4426 _ZN9oceanbase6common23get_reserved_stack_sizeEv:4422 + 6.1: 4426 _ZN9oceanbase6common20check_stack_overflowERblPl:4587 + 10: 4245 + 10.2: 4245 + 41.5: _ZN9oceanbase6common2SVINS0_9ObSEArrayINS_3sql15ObCandiTableLocELl4ENS0_19ModulePageAllocatorELb0EEELb0EEC2IZNS3_12ObSqlPlanSet15get_plan_normalERNS3_14ObPlanCacheCtxERPNS3_14ObPhysicalPlanEE5$_650EEibOT_:4245 + 3: 4245 + 5: 0 + 6: 0 + 9: _ZZN9oceanbase3sql12ObSqlPlanSet15get_plan_normalERNS0_14ObPlanCacheCtxERPNS0_14ObPhysicalPlanEENK5$_650clEPv:0 + 0: 0 + 0: _ZN9oceanbase6common9ObSEArrayINS_3sql15ObCandiTableLocELl4ENS0_19ModulePageAllocatorELb0EEC2Ev:0 + 0.1: 0 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_3sql15ObCandiTableLocELl4ENS0_19ModulePageAllocatorELb0EEC2ElRKS4_:0 + 5: 0 + 6: 0 + 8: 0 + 17.1: 0 + 2: _ZN9oceanbase6common8ObIArrayINS_3sql15ObCandiTableLocEEC2EPS3_l:0 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_3sql15ObCandiTableLocEEC2EPS3_l:0 + 0: 0 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:0 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:0 + 2: 0 + 8: 0 + 41.7: _ZN9oceanbase6common9ObSEArrayINS_3sql15ObCandiTableLocELl4ENS0_19ModulePageAllocatorELb0EEC2Ev:659724 + 0.1: 4229 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_3sql15ObCandiTableLocELl4ENS0_19ModulePageAllocatorELb0EEC2ElRKS4_:600518 + 2: 4229 + 5: 4229 + 6: 4229 + 8: 4229 + 17.1: 4229 + 2: _ZN9oceanbase6common8ObIArrayINS_3sql15ObCandiTableLocEEC2EPS3_l:50748 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_3sql15ObCandiTableLocEEC2EPS3_l:50748 + 0: 4229 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:241053 + 0: 4229 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:105725 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:105725 + 2: 4229 + 8: 4229 + 43: _ZN9oceanbase3sql12ObSqlPlanSet17get_physical_planENS0_13ObPhyPlanTypeERNS0_14ObPlanCacheCtxERPNS0_14ObPhysicalPlanE:3565 + 4: 23 + 5: 23 + 6: 23 + 10.1: 23 + 10.2: 23 + 10.3: 23 + 12: 23 + 13: 23 + 14.1: 23 + 18: 23 + 22: 23 + 10.2: _ZNK9oceanbase3sql15ObEvolutionPlan20get_is_evolving_flagEv:161 + 0: 23 + 11: _ZN9oceanbase3sql13ObSpmCacheCtx24force_get_evolution_planEv:276 + 2: 23 + 46.1: _ZN9oceanbase3sql12ObSqlPlanSet13get_plan_typeERKNS_6common8ObIArrayINS0_15ObTableLocationEEEbRNS0_14ObPlanCacheCtxERNS3_INS0_15ObCandiTableLocEEERNS0_13ObPhyPlanTypeE:4259849 + 6: 4229 + 7: 4229 + 8: 4229 + 10: 4172 + 14.1: 23 + 15.1: 4381 + 18.1: 25 + 32: 4062 + 8: _ZN9oceanbase6common13ObSEArrayImplINS_3sql15ObCandiTableLocELl4ENS0_19ModulePageAllocatorELb0EE5reuseEv:128388 + 4.1: 4229 + 4.3: 23 + 5: 23 + 8: 4229 + 9: 4229 + 10: _ZN9oceanbase3sql12ObSqlPlanSet17get_phy_locationsERKNS_6common8ObIArrayINS0_15ObTableLocationEEERNS0_14ObPlanCacheCtxERNS3_INS0_15ObCandiTableLocEEERb:1422901 + 5: 4229 + 6: 4229 + 7: 4229 + 8: 4274 _ZN9oceanbase3sql19ObPhyLocationGetter17get_phy_locationsERKNS_6common8ObIArrayINS0_15ObTableLocationEEERKNS0_14ObPlanCacheCtxERNS3_INS0_15ObCandiTableLocEEERb:4370 + 12.1: 23 + 13.1: 4274 + 16.1: 23 + 18: 23 + 7: _ZN9oceanbase3sql13ObExecContext11get_das_ctxEv:29603 + 0: 4229 + 7.1: _ZN9oceanbase3sql8ObDASCtx23clear_all_location_infoEv:394355 + 2: _ZN9oceanbase6common6ObListIPNS_3sql13ObDASTableLocENS0_12ObIAllocatorEE5clearEv:173895 + 2: 4229 + 3.1: 4229 + 4: 23 + 5: 23 + 8: 4229 + 9: 4229 + 10: 4229 + 3: _ZN9oceanbase3sql19DASRelatedTabletMap5clearEv:220391 + 0: 4229 + 0: _ZN9oceanbase6common6ObListINS_3sql19DASRelatedTabletMap8MapEntryENS0_12ObIAllocatorEE5clearEv:190788 + 2: 4229 + 3.1: 4229 + 4: 23 + 5: 23 + 8: 4229 + 9: 4229 + 10: 4229 + 13.1: _ZN9oceanbase3sql13ObExecContext11get_das_ctxEv:29918 + 0: 4274 + 13.2: _ZN9oceanbase3sql19ObPhyLocationGetter16build_table_locsERNS0_8ObDASCtxERKNS_6common8ObIArrayINS0_15ObTableLocationEEERKNS5_INS0_15ObCandiTableLocEEE:658303 + 5: 4274 + 5.1: 4274 + 5.2: 23 + 5.3: 23 + 5.5: 23 + 6.1: 4338 + 6.2: 8613 + 6.3: 8613 + 6.5: 4338 + 7: 4338 + 7.3: 4298 _ZN9oceanbase3sql8ObDASCtx19add_candi_table_locERKNS0_17ObDASTableLocMetaERKNS0_15ObCandiTableLocE:4486 + 8.1: 23 + 15: 23 + 5.1: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql15ObTableLocationEE5countEv:29918 + 0: 4274 + 7: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql15ObTableLocationEE2atEl:30086 + 6: 4298 + 7.1: _ZNK9oceanbase3sql15ObTableLocation12get_loc_metaEv:77364 + 0: 4298 + 7.2: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql15ObCandiTableLocEE2atEl:64470 + 6: 4298 + 12: _ZN9oceanbase3sql8ObDASCtx23clear_all_location_infoEv:2231 + 2: _ZN9oceanbase6common6ObListIPNS_3sql13ObDASTableLocENS0_12ObIAllocatorEE5clearEv:575 + 2: 0 + 3.1: 0 + 4: 0 + 5: 0 + 8: 23 + 9: 23 + 10: 23 + 3: _ZN9oceanbase3sql19DASRelatedTabletMap5clearEv:1656 + 0: 23 + 0: _ZN9oceanbase6common6ObListINS_3sql19DASRelatedTabletMap8MapEntryENS0_12ObIAllocatorEE5clearEv:1495 + 2: 23 + 3.1: 23 + 4: 23 + 5: 23 + 8: 23 + 9: 23 + 10: 23 + 15.1: _ZN9oceanbase3sql12ObSqlPlanSet21calc_phy_plan_type_v2ERKNS_6common8ObIArrayINS0_15ObCandiTableLocEEERNS0_13ObPhyPlanTypeEb:2462869 + 4: 4172 + 6: 4172 + 12: 23 + 12.1: 4402 + 12.3: 4402 + 13: 4402 + 16: 4402 + 20: 4403 + 24: 4403 _ZN9oceanbase8observer14global_contextEv:4592 + 26: 4381 + 29.1: 4145 + 32.1: 23 + 36: 4145 + 37: 4145 + 51: 23 + 5: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql15ObCandiTableLocEE5countEv:70924 + 0: 4172 + 13: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql15ObCandiTableLocEE2atEl:17608 + 13.1: _ZNK9oceanbase3sql15ObCandiTableLoc17get_partition_cntEv:17777 + 0: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql16ObCandiTabletLocEE5countEv:17777 + 0: 4402 + 25: _ZN9oceanbase6common6ObAddrC2Ev:166478 + 1: 4381 + 29.1: _ZN9oceanbase3sql12ObSqlPlanSet27is_partition_in_same_serverERKNS_6common8ObIArrayINS0_15ObCandiTableLocEEERbRNS2_6ObAddrE:1435320 + 4: 4381 + 6: 4381 + 8: 4381 _ZN9oceanbase5share19ObLSReplicaLocationC1Ev:4372 + 9.1: 4281 + 9.6: 4145 + 11: 4281 + 12.1: 4282 + 13: 4281 _ZN9oceanbase5share19ObLSReplicaLocation5resetEv:4314 + 15: 4444 _ZNK9oceanbase3sql16ObCandiTabletLoc20get_selected_replicaERNS_5share19ObLSReplicaLocationE:4436 + 15.1: 4732 + 16.1: 33 + 17.1: 4732 _ZNK9oceanbase5share19ObLSReplicaLocation8is_validEv:4713 + 17.2: 4282 + 18.1: 33 + 20: 4282 + 33: 33 + 34.1: 33 + 40.1: 23 + 5: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql15ObCandiTableLocEE5countEv:48191 + 0: 4381 + 10: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql15ObCandiTableLocEE2atEl:17124 + 6: 4281 + 10.1: _ZNK9oceanbase3sql15ObCandiTableLoc17get_partition_cntEv:81339 + 0: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql16ObCandiTabletLocEE5countEv:81339 + 0: 4281 + 14: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql15ObCandiTableLocEE2atEl:17776 + 6: 4444 + 14.2: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql16ObCandiTabletLocEE2atEl:84436 + 6: 4444 + 22.1: _ZN9oceanbase6common6ObAddraSERKS1_:269766 + 1: 4282 + 2: 4282 + 3: 4282 + 27.1: _ZNK9oceanbase6common6ObAddreqERKS1_:1683 + 2: 33 + 2.2: 33 + 37: _ZNK9oceanbase6common6ObAddreqERKS1_:256990 + 2: 4145 + 2.1: 4145 + 2.2: 4145 + 57.1: _ZNK9oceanbase3sql18ObBasicSessionInfo18get_in_transactionEv:529 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo17is_in_transactionEv:529 + 0: 23 + 0.1: _ZNK9oceanbase11transaction8ObTxDesc8is_in_txEv:161 + 0: 23 + 58.1: _ZN9oceanbase3sql18ObBasicSessionInfo15get_is_in_retryEv:161 + 1: 23 + 61: _ZN9oceanbase3sql18ObBasicSessionInfo25set_has_remote_plan_in_txEb:276 + 0: _ZN9oceanbase3sql18ObBasicSessionInfo10TransFlags19set_has_remote_planEb:276 + 0: _ZN9oceanbase3sql18ObBasicSessionInfo10TransFlags8set_flagEbm:276 + 3: 23 + 65.1: _ZN9oceanbase3lib20is_trace_log_enabledEv:33892 + 2: 4187 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:4539 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:29673 + 2: 4239 + 65.3: _ZN9oceanbase6common18get_trace_recorderEv:1403 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:1403 + 7: 23 + 8: 23 + 8.1: 23 + 65.6: _ZN9oceanbase3lib20is_trace_log_enabledEv:276 + 2: 23 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:161 + 2: 23 + 65.8: _ZN9oceanbase6common18get_trace_recorderEv:1564 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:1564 + 7: 23 + 8: 23 + 8.1: 23 + 65.9: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl189ELl1600EE9add_eventEv:2346 + 2: 23 + 3.1: 23 + 6: 23 + 10: 23 + 11: 23 + 12: 23 + 65.10: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:598 + 0: 23 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:115 + 2: 23 + 69: _ZNK9oceanbase3sql9ObPlanSet18is_multi_stmt_planEv:50868 + 0: _ZNK9oceanbase6common12ObIArrayWrapIlE5emptyEv:50868 + 0: 4239 + 71: _ZN9oceanbase3sql17ObILibCacheObject22set_dynamic_ref_handleENS0_16CacheRefHandleIDE:69 + 2: 23 + 74.1: _ZN9oceanbase3sql12ObSqlPlanSet17get_physical_planENS0_13ObPhyPlanTypeERNS0_14ObPlanCacheCtxERPNS0_14ObPhysicalPlanE:316614 + 4: 4239 + 5: 4239 + 6: 4239 + 10.1: 4239 + 10.2: 23 + 10.3: 4239 + 12: 4145 + 13: 4145 + 14.1: 23 + 18: 8 + 22: 4145 + 10.2: _ZNK9oceanbase3sql15ObEvolutionPlan20get_is_evolving_flagEv:138 + 0: 23 + 11: _ZN9oceanbase3sql13ObSpmCacheCtx24force_get_evolution_planEv:50868 + 2: 4239 + 80: _ZN9oceanbase3sql17ObILibCacheObject22set_dynamic_ref_handleENS0_16CacheRefHandleIDE:69 + 2: 23 + 85: _ZN9oceanbase3sql12ObSqlPlanSet17get_physical_planENS0_13ObPhyPlanTypeERNS0_14ObPlanCacheCtxERPNS0_14ObPhysicalPlanE:3312 + 4: 23 + 5: 23 + 6: 23 + 10.1: 23 + 10.2: 23 + 10.3: 23 + 12: 23 + 13: 23 + 14.1: 23 + 18: 23 + 22: 23 + 10.2: _ZNK9oceanbase3sql15ObEvolutionPlan20get_is_evolving_flagEv:138 + 0: 23 + 11: _ZN9oceanbase3sql13ObSpmCacheCtx24force_get_evolution_planEv:276 + 2: 23 + 101: _ZN9oceanbase6common2SVINS0_9ObSEArrayINS_3sql15ObCandiTableLocELl4ENS0_19ModulePageAllocatorELb0EEELb0EED2Ev:541720 + 2: 4119 + 5: 3839 + 6: 23 + 6.1: 23 + 4: _ZN9oceanbase6common13ObSEArrayImplINS_3sql15ObCandiTableLocELl4ENS0_19ModulePageAllocatorELb0EED2Ev:480902 + 1: 4119 + 3.2: 23 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_3sql15ObCandiTableLocELl4ENS0_19ModulePageAllocatorELb0EE7destroyEv:423052 + 4.1: 4119 + 4.3: 3839 + 5: 4119 _ZN9oceanbase3sql15ObCandiTableLocD1Ev:4206 + 9: 3839 + 11: 23 + 13: 3839 + 15: 3839 + 24: 3839 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_3sql15ObCandiTableLocELl4ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:1702 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:1702 + 0: 23 + 0.2: 23 + 0.1: _ZN9oceanbase6common7ob_freeEPv:1219 + 2: 23 + 3: 23 + 4: 23 + 5: 23 + 4: _ZL12abort_unlessb:368 + 5: 23 + 6: 23 + 101.3: _ZN9oceanbase6common2SVINS0_9ObSEArrayINS_3sql15ObCandiTableLocELl4ENS0_19ModulePageAllocatorELb0EEELb0EED2Ev:897 + 2: 23 + 4: 23 + 5: 23 + 6: 23 + 6.1: 23 +_ZN9oceanbase3sql13ObExecContext29get_convert_charset_allocatorERPNS_6common16ObArenaAllocatorE:7614897:87302 + 1: 81415 + 2: 81415 + 3: 81415 + 4: 81415 + 5: 3033 + 6: 0 + 7.1: 0 + 14: 3243 + 14.1: 0 + 14.5: 0 + 14.6: 3383 _ZN9oceanbase3lib17__MemoryContext__14create_contextIJRNS0_12ContextParamEPNS0_10StaticInfoEEEEiRNS0_13MemoryContextERKNS0_11DynamicInfoEDpOT_:3260 + 15.1: 0 + 19: 81796 + 20: 81796 + 23: 81796 + 4: _ZN9oceanbase3libeqEDnRKNS0_13MemoryContextE:651320 + 1: 81415 + 9: _ZN9oceanbase3lib12ContextParamC2Ev:66726 + 3: 3033 + 4: 3033 + 10: _ZN9oceanbase3lib12ContextParam14set_propertiesEl:33363 + 2: 3033 + 11: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:21231 + 0: 3033 + 11.1: _ZN9oceanbase3lib12ContextParam12set_mem_attrIJmRA12_KcNS_6common8ObCtxIds11ObCtxIdEnumEEEERS1_DpOT_:90990 + 2: 3033 + 14: _ZN9oceanbase3lib4Flow11current_ctxEv:84924 + 2: _ZN9oceanbase3lib4Flow12current_flowEv:84924 + 3: 3033 + 8: 0 + 12: 0 + 8.1: _ZN9oceanbase3lib4FlowC2ERNS0_13MemoryContextE:0 + 1: 0 + 3: 0 + 10: _ZN9oceanbase3lib4Flow4initEv:0 + 4: 0 + 7: 0 + 8: 0 + 9: 0 + 12: 0 + 7: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 14.7: _ZNK9oceanbase3lib13MemoryContextptEv:12132 + 1: 3033 + 14.8: _ZN9oceanbase3lib11DynamicInfoC2Ev:213174 + 1: 3033 + 2: 3243 + 1: _Z9ob_gettidv:160749 + 3: 3033 + 4: 0 + 2: _Z13get_tid_cachev:75825 + 7: 3033 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:3057 + 2: 3033 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:3050 + 20.1: _ZN9oceanbase3lib17__MemoryContext__19get_arena_allocatorEv:572572 + 0: 81796 +_ZN9oceanbase3sql13ObExecContextD2Ev:7326914:5340 + 1: 5125 + 2: 5125 + 6: 5253 + 6.3: 5119 + 7: 101 _ZN9oceanbase3sql17ObPhysicalPlanCtxD1Ev:2 + 9: 5146 + 11: 5146 + 12: 27 + 13: 27 + 15: 5298 + 16: 27 + 17: 27 + 19: 5479 + 20: 27 + 21: 27 + 23: 5562 + 24: 27 + 25: 27 + 27: 5575 + 28: 27 + 29: 27 + 31: 5656 + 32: 27 + 33: 27 + 36: 5194 + 37.1: 5194 + 42.1: 5163 + 45.2: 71 + 48.1: 71 + 52: 5163 + 53.3: 5329 + 53.4: 71 + 53.5: 71 + 53.9: 4950 _ZN9oceanbase6common13ObSEArrayImplINS_3sql15ObPxTabletRangeELl1ENS0_19ModulePageAllocatorELb0EED2Ev:4906 + 53.15: 5537 _ZN9oceanbase6common11ObArrayImplIPKNS0_8ObIArrayIlEENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEED2Ev:5511 + 53.18: 5329 _ZN9oceanbase3sql17ObTaskExecutorCtxD1Ev:5516 + 53.21: 71 + 53.22: 71 + 53.23: 71 + 53.24: 71 + 53.25: 71 + 53.26: 71 + 53.27: 71 + 53.29: 71 + 53.30: 71 + 53.32: 71 + 53.33: 71 + 2: _ZN9oceanbase6common11ObArrayImplIPKNS0_8ObIArrayIlEENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEE5resetEv:417610 + 0: 5125 + 0: _ZN9oceanbase6common11ObArrayImplIPKNS0_8ObIArrayIlEENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEE7destroyEv:253113 + 2: 5125 + 6: 71 + 7: 71 + 9: 5125 + 11: 5125 + 3: _ZN9oceanbase3sql13ObExecContext22destroy_eval_allocatorEv:732965 + 2: _ZN9oceanbase6common16ObArenaAllocator5resetEv:374241 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:374241 + 4.1: 5125 + 6: 71 + 7: 71 + 13: 5125 + 14: 5125 + 15: 5125 + 18: 5125 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:213 + 0: 71 + 5.1: _ZL12abort_unlessb:781 + 5: 71 + 6: 71 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:5680 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:5680 + 0: 71 + 0.2: 71 + 0.1: _ZN9oceanbase6common7ob_freeEPv:3905 + 2: 71 + 3: 71 + 4: 71 + 5: 71 + 4: _ZL12abort_unlessb:1136 + 5: 71 + 6: 71 + 3: _ZN9oceanbase6common16ObArenaAllocator5resetEv:357517 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:357517 + 4.1: 5125 + 6: 71 + 7: 71 + 13: 5125 + 14: 5125 + 15: 5125 + 18: 5125 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:213 + 0: 71 + 5.1: _ZL12abort_unlessb:781 + 5: 71 + 6: 71 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:5680 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:5680 + 0: 71 + 0.2: 71 + 0.1: _ZN9oceanbase6common7ob_freeEPv:3905 + 2: 71 + 3: 71 + 4: 71 + 5: 71 + 4: _ZL12abort_unlessb:1136 + 5: 71 + 6: 71 + 4: _ZN9oceanbase3sql13ObExecContext12reset_op_ctxEv:573714 + 2: _ZN9oceanbase3sql13ObExecContext13reset_expr_opEv:87183 + 2: 5125 + 4: 71 + 5: 71 + 5.1: 71 + 6: 71 + 7: 71 + 10: 71 + 11: 71 + 3: _ZN9oceanbase3sql12ObOpKitStore7destroyEv:486531 + 2: 5125 + 3.1: 6964 + 4: 2156 + 5: 6739 + 6: 6739 _ZN9oceanbase3sql13ObTableScanOp7destroyEv:4483 _ZN9oceanbase3sql15ObTableModifyOp7destroyEv:1067 _ZN9oceanbase3sql8ObSortOp7destroyEv:514 _ZN9oceanbase3sql14ObExprValuesOp7destroyEv:279 _ZN9oceanbase3sql19ObScalarAggregateOp7destroyEv:246 _ZN9oceanbase3sql16ObHashDistinctOp7destroyEv:245 _ZN9oceanbase3sql12ObMaterialOp7destroyEv:2 _ZN9oceanbase3sql13ObTableLockOp7destroyEv:1 _ZN9oceanbase3sql17ObMergeDistinctOp7destroyEv:1 + 8: 6762 + 9: 5414 _ZN9oceanbase3sql18ObTableScanOpInputD1Ev:4345 _ZN9oceanbase3sql9ObOpInputD2Ev:1039 + 6.1: _ZN9oceanbase3lib6Worker4selfEv:145604 + 3: 5119 + 4: 71 + 6.2: _ZN9oceanbase3lib6Worker12has_req_flagEv:20476 + 2: 5119 + 35: _ZN9oceanbase3sql13ObExecContext17clean_resolve_ctxEv:281369 + 2: 5579 + 4: 577 + 6: 5585 + 8: 536 + 11: 5194 + 3: _ZN9oceanbase3sql16ObRawExprFactoryD2Ev:45707 + 4.2: 577 + 4.3: 71 + 5: 71 _ZN9oceanbase3sql16ObRawExprFactory7destoryEv:1 + 7: 71 + 7.2: 71 + 4: _ZN9oceanbase3lib6Worker4selfEv:18428 + 3: 577 + 4: 71 + 4.1: _ZN9oceanbase3lib6Worker12has_req_flagEv:2308 + 2: 577 + 7.1: _ZN9oceanbase6common10ObObjStoreIPNS_3sql9ObRawExprERNS0_12ObIAllocatorELb1EED2Ev:16072 + 0.3: 71 + 0: _ZN9oceanbase6common10ObObjStoreIPNS_3sql9ObRawExprERNS0_12ObIAllocatorELb1EE7destroyEv:15504 + 2.1: 27 + 4: 71 + 5: 71 + 2: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql9ObRawExprEEEE12remove_firstEv:8729 + 2: 578 + 2: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql9ObRawExprEEEE6removeEPS6_:4683 + 3: 578 + 7: 27 + 6: _ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql9ObRawExprEEEE6unlinkEv:1053 + 2: 27 + 4: 27 + 5: 27 + 6: 27 + 7: 27 + 2.5: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql9ObRawExprEEEE12remove_firstEv:4970 + 2: 71 + 2: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql9ObRawExprEEEE6removeEPS6_:4473 + 3: 71 + 7: 71 + 6: _ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql9ObRawExprEEEE6unlinkEv:2769 + 2: 71 + 4: 71 + 5: 71 + 6: 71 + 7: 71 + 7: _ZN9oceanbase3sql13ObStmtFactoryD2Ev:40019 + 0: 577 _ZN9oceanbase3sql13ObStmtFactory7destoryEv:565 + 0.2: 71 + 0.3: 71 + 0.5: 71 + 0.1: _ZN9oceanbase6common10ObObjStoreIPNS_3sql12ObSelectStmtERNS0_12ObIAllocatorELb1EED2Ev:15747 + 0.3: 71 + 0: _ZN9oceanbase6common10ObObjStoreIPNS_3sql12ObSelectStmtERNS0_12ObIAllocatorELb1EE7destroyEv:15179 + 2.1: 27 + 4: 71 + 5: 71 + 2: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql12ObSelectStmtEEEE12remove_firstEv:8404 + 2: 553 + 2: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql12ObSelectStmtEEEE6removeEPS6_:4533 + 3: 553 + 7: 27 + 6: _ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql12ObSelectStmtEEEE6unlinkEv:1053 + 2: 27 + 4: 27 + 5: 27 + 6: 27 + 7: 27 + 2.5: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql12ObSelectStmtEEEE12remove_firstEv:4970 + 2: 71 + 2: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql12ObSelectStmtEEEE6removeEPS6_:4473 + 3: 71 + 7: 71 + 6: _ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql12ObSelectStmtEEEE6unlinkEv:2769 + 2: 71 + 4: 71 + 5: 71 + 6: 71 + 7: 71 + 0.4: _ZN9oceanbase6common10ObObjStoreIPNS_3sql6ObStmtERNS0_12ObIAllocatorELb1EED2Ev:15461 + 0.3: 71 + 0: _ZN9oceanbase6common10ObObjStoreIPNS_3sql6ObStmtERNS0_12ObIAllocatorELb1EE7destroyEv:14893 + 2.1: 27 + 4: 71 + 5: 71 + 2: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql6ObStmtEEEE12remove_firstEv:8118 + 2: 531 + 2: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql6ObStmtEEEE6removeEPS6_:4401 + 3: 531 + 7: 27 + 6: _ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql6ObStmtEEEE6unlinkEv:1053 + 2: 27 + 4: 27 + 5: 27 + 6: 27 + 7: 27 + 2.5: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql6ObStmtEEEE12remove_firstEv:4970 + 2: 71 + 2: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql6ObStmtEEEE6removeEPS6_:4473 + 3: 71 + 7: 71 + 6: _ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql6ObStmtEEEE6unlinkEv:2769 + 2: 71 + 4: 71 + 5: 71 + 6: 71 + 7: 71 + 37: _ZN9oceanbase3libneEDnRKNS0_13MemoryContextE:51940 + 1: 5194 + 1: _ZNK9oceanbase3lib13MemoryContext11ref_contextEv:36358 + 1: 5194 + 38: _ZN9oceanbase3lib17__MemoryContext__15destory_contextERNS0_13MemoryContextE:116564 + 3: 71 + 4: 71 + 5: 3350 + 6: 3350 _ZN9oceanbase3lib17__MemoryContext__15destory_contextEPS1_:3405 + 2: _ZNK9oceanbase3lib13MemoryContext16check_magic_codeEv:23450 + 0: 3350 + 2.1: _ZL12abort_unlessb:20455 + 5: 3350 + 6: 71 + 5: _ZL12abort_unlessb:20810 + 5: 3350 + 6: 71 + 39: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:84188 + 2: 3238 + 8: 3238 + 41: _ZN9oceanbase6common4hash9ObHashMapINS0_6ObAddrElNS1_24LatchReadWriteDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_lEEEELi89ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv:242034 + 2: _ZN9oceanbase6common4hash11ObHashTableINS0_6ObAddrENS1_11HashMapPairIS3_lEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi89ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv:62800 + 3: 5003 + 3.1: 27 + 6.1: 27 + 6.3: 27 + 8: 27 + 9.1: 27 + 11: 27 + 12: 27 + 15: 27 + 19: 99 + 22: 27 + 24: 27 + 3: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_6ObAddrElEENS0_7ObLatchENS1_5NCondEEEEEbRKT_:50030 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_6ObAddrElEENS0_7ObLatchENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:50030 + 2: 5003 + 10: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_11HashMapPairINS0_6ObAddrElEEE16check_magic_codeEv:216 + 0: 27 + 762: 27 + 10.1: _ZL12abort_unlessb:243 + 5: 27 + 6: 27 + 22: _ZN9oceanbase6common4hash7destroyIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_6ObAddrElEENS0_7ObLatchENS1_5NCondEEENS0_8ObMallocEEEvRT_RT0_:783 + 2: _ZN9oceanbase6common4hash10do_destroyIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_6ObAddrElEENS0_7ObLatchENS1_5NCondEEENS0_8ObMallocEEEvRT_NS1_16NormalPointerTagERT0_:783 + 2: 27 + 3: 27 + 4: 27 + 3: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS0_6ObAddrElEEEELi89ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEE5clearEv:143093 + 2: 5163 + 3.1: 5163 + 4: 71 + 5: 71 + 6.1: 71 + 15: 5163 + 10: _ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocator4freeEPv:497 + 3: 71 + 42: _ZNK9oceanbase6common4hash9ObHashMapIllNS1_24LatchReadWriteDefendModeENS1_9hash_funcIlEENS1_8equal_toIlEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIllEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE7createdEv:51630 + 2: _ZNK9oceanbase6common4hash11ObHashTableIlNS1_11HashMapPairIllEENS1_9hash_funcIlEENS1_8equal_toIlEENS1_10pair_firstIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS4_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE7createdEv:51630 + 2: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairIllEENS0_7ObLatchENS1_5NCondEEEEEbRKT_:51630 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairIllEENS0_7ObLatchENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:51630 + 2: 5163 + 45: _ZN9oceanbase6common4hash9ObHashMapIllNS1_24LatchReadWriteDefendModeENS1_9hash_funcIlEENS1_8equal_toIlEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIllEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE5beginEv:5325 + 2: _ZN9oceanbase6common4hash11ObHashTableIlNS1_11HashMapPairIllEENS1_9hash_funcIlEENS1_8equal_toIlEENS1_10pair_firstIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS4_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE5beginEv:5325 + 5.1: 71 + 6.1: 71 + 8.1: 71 + 8.2: 71 + 8.3: 71 + 9: 71 + 10: 71 + 47: _ZN9oceanbase6common4hash19ObHashTableIteratorIlNS1_11HashMapPairIllEENS1_9hash_funcIlEENS1_8equal_toIlEENS1_10pair_firstIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS4_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEppEv:5183 + 4.2: 71 + 7: 71 + 7.1: 71 + 8: 71 + 50: _ZN9oceanbase6common4hash9ObHashMapIllNS1_24LatchReadWriteDefendModeENS1_9hash_funcIlEENS1_8equal_toIlEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIllEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv:2067 + 2: 71 + 3: 72 _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIllEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEE5clearEv:1 + 53.3: _ZN9oceanbase3sql8ObDASCtxD2Ev:1163088 + 2: 5163 + 2.1: 5163 + 3: 71 + 4: 71 + 6: 5439 _ZN9oceanbase11transaction16ObTxReadSnapshotD1Ev:5145 + 6.2: 5439 _ZN9oceanbase3sql16ObDASTaskFactoryD1Ev:5404 + 6.1: _ZN9oceanbase3sql19DASRelatedTabletMapD2Ev:361246 + 0: 5439 + 0: _ZN9oceanbase6common6ObListINS_3sql19DASRelatedTabletMap8MapEntryENS0_12ObIAllocatorEED2Ev:225271 + 2.1: 71 + 2: _ZN9oceanbase6common6ObListINS_3sql19DASRelatedTabletMap8MapEntryENS0_12ObIAllocatorEE5resetEv:224703 + 2: _ZN9oceanbase6common6ObListINS_3sql19DASRelatedTabletMap8MapEntryENS0_12ObIAllocatorEE5clearEv:224703 + 2: 5439 + 3.1: 5439 + 4: 71 + 5: 71 + 8: 5439 + 9: 5439 + 10: 5439 + 6.3: _ZN9oceanbase3sql19ObDASLocationRouterD2Ev:247792 + 0: 5115 + 0: _ZN9oceanbase6common6ObListINS_3sql14VirtualSvrPairENS0_12ObIAllocatorEED2Ev:211987 + 2.1: 71 + 2: _ZN9oceanbase6common6ObListINS_3sql14VirtualSvrPairENS0_12ObIAllocatorEE5resetEv:211419 + 2: _ZN9oceanbase6common6ObListINS_3sql14VirtualSvrPairENS0_12ObIAllocatorEE5clearEv:211419 + 2: 5115 + 3.1: 5115 + 4: 71 + 5: 71 + 8: 5115 + 9: 5115 + 10: 5115 + 6.4: _ZN9oceanbase6common6ObListIPNS_3sql13ObDASTableLocENS0_12ObIAllocatorEED2Ev:333193 + 2.1: 71 + 2: _ZN9oceanbase6common6ObListIPNS_3sql13ObDASTableLocENS0_12ObIAllocatorEE5resetEv:332625 + 2: _ZN9oceanbase6common6ObListIPNS_3sql13ObDASTableLocENS0_12ObIAllocatorEE5clearEv:332625 + 2: 5115 + 3.1: 5115 + 4: 4509 + 5: 4509 + 8: 4950 + 9: 4950 + 10: 4950 + 53.7: _ZN9oceanbase6common4hash9ObHashMapIllNS1_24LatchReadWriteDefendModeENS1_9hash_funcIlEENS1_8equal_toIlEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIllEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:239750 + 2: _ZN9oceanbase6common4hash11ObHashTableIlNS1_11HashMapPairIllEENS1_9hash_funcIlEENS1_8equal_toIlEENS1_10pair_firstIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS4_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:71572 + 2.1: 4950 + 2.2: 71 + 3: 71 + 5.2: 71 + 2: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairIllEENS0_7ObLatchENS1_5NCondEEEEEbRKT_:39600 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairIllEENS0_7ObLatchENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:39600 + 2: 4950 + 2.2: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIllEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEED2Ev:133031 + 2.1: 71 + 2: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIllEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEE5clearEv:132463 + 2: 4950 + 3.1: 4950 + 4: 71 + 5: 71 + 6.1: 71 + 15: 4950 + 10: _ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocator4freeEPv:497 + 3: 71 + 53.8: _ZN9oceanbase6common4hash9ObHashMapINS0_6ObAddrElNS1_24LatchReadWriteDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_lEEEELi89ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:193871 + 2: _ZN9oceanbase6common4hash11ObHashTableINS0_6ObAddrENS1_11HashMapPairIS3_lEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi89ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:71572 + 2.1: 4950 + 2.2: 71 + 3: 71 + 5.2: 71 + 2: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_6ObAddrElEENS0_7ObLatchENS1_5NCondEEEEEbRKT_:39600 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_6ObAddrElEENS0_7ObLatchENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:39600 + 2: 4950 + 2.2: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS0_6ObAddrElEEEELi89ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEED2Ev:121802 + 2.1: 71 + 2: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS0_6ObAddrElEEEELi89ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEE5clearEv:121234 + 2: 4950 + 3.1: 4950 + 4: 71 + 5: 71 + 6.1: 71 + 15: 4950 + 10: _ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocator4freeEPv:3834 + 3: _ZN9oceanbase6common7ob_freeEPv:3834 + 2: 71 + 3: 71 + 4: 71 + 5: 71 + 4: _ZL12abort_unlessb:1420 + 5: 71 + 6: 71 + 53.10: _ZN9oceanbase6common13ObSEArrayImplINS_3sql17ObSqlTempTableCtxELl2ENS0_19ModulePageAllocatorELb0EED2Ev:427806 + 1: 4559 + 3.2: 71 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_3sql17ObSqlTempTableCtxELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv:345176 + 4.1: 4559 + 4.3: 71 + 5: 71 + 9: 4559 + 11: 71 + 13: 4559 + 15: 4559 + 24: 4559 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_3sql17ObSqlTempTableCtxELl2ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:852 + 4: 71 + 53.11: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:480937 + 0: 4559 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEED2Ev:398875 + 0: 4559 + 0.3: 71 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:316245 + 4.1: 4559 + 6: 71 + 7: 71 + 13: 4559 + 14: 4559 + 15: 4559 + 18: 4559 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:213 + 0: 71 + 5.1: _ZL12abort_unlessb:781 + 5: 71 + 6: 71 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:6106 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:6106 + 0: 71 + 0.2: 71 + 0.1: _ZN9oceanbase6common7ob_freeEPv:4331 + 2: 71 + 3: 71 + 4: 71 + 5: 71 + 4: _ZL12abort_unlessb:1420 + 5: 71 + 6: 71 + 53.12: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:364477 + 0: 4559 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEED2Ev:332564 + 0: 4559 + 0.3: 71 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:300083 + 4.1: 4559 + 6: 71 + 7: 71 + 13: 4559 + 14: 4559 + 15: 4559 + 18: 4559 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:923 + 0: 71 + 5.1: _ZL12abort_unlessb:497 + 5: 71 + 6: 71 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:4757 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:4757 + 0: 71 + 0.2: 71 + 0.1: _ZN9oceanbase6common7ob_freeEPv:3266 + 2: 71 + 3: 71 + 4: 71 + 5: 71 + 4: _ZL12abort_unlessb:639 + 5: 71 + 6: 71 + 53.13: _ZN9oceanbase3sql19ObJoinFilterDataCtxD2Ev:111853 + 0: 4559 _ZN9oceanbase3sql3dtl16ObDtlChTotalInfoD2Ev:4847 + 0.1: 5226 _ZN9oceanbase3sql3dtl10ObDtlChSetD2Ev:5311 + 53.16: _ZN9oceanbase3sql21ObPartIdRowMapManagerD2Ev:42812 + 0: 5311 _ZN9oceanbase6common13ObSEArrayImplINS_3sql21ObPartIdRowMapManager8MapEntryELl1ENS0_19ModulePageAllocatorELb0EED2Ev:5323 + 53.19: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:332949 + 0: 5057 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEED2Ev:312721 + 0: 5057 + 0.3: 71 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:291925 + 4.1: 5057 + 6: 71 + 7: 71 + 13: 5057 + 14: 5057 + 15: 5057 + 18: 5057 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:213 + 0: 71 + 5.1: _ZL12abort_unlessb:781 + 5: 71 + 6: 71 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:5467 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:5467 + 0: 71 + 0.2: 71 + 0.1: _ZN9oceanbase6common7ob_freeEPv:3905 + 2: 71 + 3: 71 + 4: 71 + 5: 71 + 4: _ZL12abort_unlessb:1136 + 5: 71 + 6: 71 +_ZN9oceanbase3sql13ObExecContextD1Ev:7326914:5340 + 1: 5125 + 2: 5125 + 6: 5253 + 6.3: 5119 + 7: 101 _ZN9oceanbase3sql17ObPhysicalPlanCtxD1Ev:2 + 9: 5146 + 11: 5146 + 12: 27 + 13: 27 + 15: 5298 + 16: 27 + 17: 27 + 19: 5479 + 20: 27 + 21: 27 + 23: 5562 + 24: 27 + 25: 27 + 27: 5575 + 28: 27 + 29: 27 + 31: 5656 + 32: 27 + 33: 27 + 36: 5194 + 37.1: 5194 + 42.1: 5163 + 45.2: 71 + 48.1: 71 + 52: 5163 + 53.3: 5329 + 53.4: 71 + 53.5: 71 + 53.9: 4950 _ZN9oceanbase6common13ObSEArrayImplINS_3sql15ObPxTabletRangeELl1ENS0_19ModulePageAllocatorELb0EED2Ev:4906 + 53.15: 5537 _ZN9oceanbase6common11ObArrayImplIPKNS0_8ObIArrayIlEENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEED2Ev:5511 + 53.18: 5329 _ZN9oceanbase3sql17ObTaskExecutorCtxD1Ev:5516 + 53.21: 71 + 53.22: 71 + 53.23: 71 + 53.24: 71 + 53.25: 71 + 53.26: 71 + 53.27: 71 + 53.29: 71 + 53.30: 71 + 53.32: 71 + 53.33: 71 + 2: _ZN9oceanbase6common11ObArrayImplIPKNS0_8ObIArrayIlEENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEE5resetEv:417610 + 0: 5125 + 0: _ZN9oceanbase6common11ObArrayImplIPKNS0_8ObIArrayIlEENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEE7destroyEv:253113 + 2: 5125 + 6: 71 + 7: 71 + 9: 5125 + 11: 5125 + 3: _ZN9oceanbase3sql13ObExecContext22destroy_eval_allocatorEv:732965 + 2: _ZN9oceanbase6common16ObArenaAllocator5resetEv:374241 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:374241 + 4.1: 5125 + 6: 71 + 7: 71 + 13: 5125 + 14: 5125 + 15: 5125 + 18: 5125 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:213 + 0: 71 + 5.1: _ZL12abort_unlessb:781 + 5: 71 + 6: 71 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:5680 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:5680 + 0: 71 + 0.2: 71 + 0.1: _ZN9oceanbase6common7ob_freeEPv:3905 + 2: 71 + 3: 71 + 4: 71 + 5: 71 + 4: _ZL12abort_unlessb:1136 + 5: 71 + 6: 71 + 3: _ZN9oceanbase6common16ObArenaAllocator5resetEv:357517 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:357517 + 4.1: 5125 + 6: 71 + 7: 71 + 13: 5125 + 14: 5125 + 15: 5125 + 18: 5125 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:213 + 0: 71 + 5.1: _ZL12abort_unlessb:781 + 5: 71 + 6: 71 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:5680 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:5680 + 0: 71 + 0.2: 71 + 0.1: _ZN9oceanbase6common7ob_freeEPv:3905 + 2: 71 + 3: 71 + 4: 71 + 5: 71 + 4: _ZL12abort_unlessb:1136 + 5: 71 + 6: 71 + 4: _ZN9oceanbase3sql13ObExecContext12reset_op_ctxEv:573714 + 2: _ZN9oceanbase3sql13ObExecContext13reset_expr_opEv:87183 + 2: 5125 + 4: 71 + 5: 71 + 5.1: 71 + 6: 71 + 7: 71 + 10: 71 + 11: 71 + 3: _ZN9oceanbase3sql12ObOpKitStore7destroyEv:486531 + 2: 5125 + 3.1: 6964 + 4: 2156 + 5: 6739 + 6: 6739 _ZN9oceanbase3sql13ObTableScanOp7destroyEv:4483 _ZN9oceanbase3sql15ObTableModifyOp7destroyEv:1067 _ZN9oceanbase3sql8ObSortOp7destroyEv:514 _ZN9oceanbase3sql14ObExprValuesOp7destroyEv:279 _ZN9oceanbase3sql19ObScalarAggregateOp7destroyEv:246 _ZN9oceanbase3sql16ObHashDistinctOp7destroyEv:245 _ZN9oceanbase3sql12ObMaterialOp7destroyEv:2 _ZN9oceanbase3sql13ObTableLockOp7destroyEv:1 _ZN9oceanbase3sql17ObMergeDistinctOp7destroyEv:1 + 8: 6762 + 9: 5414 _ZN9oceanbase3sql18ObTableScanOpInputD1Ev:4345 _ZN9oceanbase3sql9ObOpInputD2Ev:1039 + 6.1: _ZN9oceanbase3lib6Worker4selfEv:145604 + 3: 5119 + 4: 71 + 6.2: _ZN9oceanbase3lib6Worker12has_req_flagEv:20476 + 2: 5119 + 35: _ZN9oceanbase3sql13ObExecContext17clean_resolve_ctxEv:281369 + 2: 5579 + 4: 577 + 6: 5585 + 8: 536 + 11: 5194 + 3: _ZN9oceanbase3sql16ObRawExprFactoryD2Ev:45707 + 4.2: 577 + 4.3: 71 + 5: 71 _ZN9oceanbase3sql16ObRawExprFactory7destoryEv:1 + 7: 71 + 7.2: 71 + 4: _ZN9oceanbase3lib6Worker4selfEv:18428 + 3: 577 + 4: 71 + 4.1: _ZN9oceanbase3lib6Worker12has_req_flagEv:2308 + 2: 577 + 7.1: _ZN9oceanbase6common10ObObjStoreIPNS_3sql9ObRawExprERNS0_12ObIAllocatorELb1EED2Ev:16072 + 0.3: 71 + 0: _ZN9oceanbase6common10ObObjStoreIPNS_3sql9ObRawExprERNS0_12ObIAllocatorELb1EE7destroyEv:15504 + 2.1: 27 + 4: 71 + 5: 71 + 2: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql9ObRawExprEEEE12remove_firstEv:8729 + 2: 578 + 2: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql9ObRawExprEEEE6removeEPS6_:4683 + 3: 578 + 7: 27 + 6: _ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql9ObRawExprEEEE6unlinkEv:1053 + 2: 27 + 4: 27 + 5: 27 + 6: 27 + 7: 27 + 2.5: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql9ObRawExprEEEE12remove_firstEv:4970 + 2: 71 + 2: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql9ObRawExprEEEE6removeEPS6_:4473 + 3: 71 + 7: 71 + 6: _ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql9ObRawExprEEEE6unlinkEv:2769 + 2: 71 + 4: 71 + 5: 71 + 6: 71 + 7: 71 + 7: _ZN9oceanbase3sql13ObStmtFactoryD2Ev:40019 + 0: 577 _ZN9oceanbase3sql13ObStmtFactory7destoryEv:565 + 0.2: 71 + 0.3: 71 + 0.5: 71 + 0.1: _ZN9oceanbase6common10ObObjStoreIPNS_3sql12ObSelectStmtERNS0_12ObIAllocatorELb1EED2Ev:15747 + 0.3: 71 + 0: _ZN9oceanbase6common10ObObjStoreIPNS_3sql12ObSelectStmtERNS0_12ObIAllocatorELb1EE7destroyEv:15179 + 2.1: 27 + 4: 71 + 5: 71 + 2: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql12ObSelectStmtEEEE12remove_firstEv:8404 + 2: 553 + 2: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql12ObSelectStmtEEEE6removeEPS6_:4533 + 3: 553 + 7: 27 + 6: _ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql12ObSelectStmtEEEE6unlinkEv:1053 + 2: 27 + 4: 27 + 5: 27 + 6: 27 + 7: 27 + 2.5: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql12ObSelectStmtEEEE12remove_firstEv:4970 + 2: 71 + 2: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql12ObSelectStmtEEEE6removeEPS6_:4473 + 3: 71 + 7: 71 + 6: _ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql12ObSelectStmtEEEE6unlinkEv:2769 + 2: 71 + 4: 71 + 5: 71 + 6: 71 + 7: 71 + 0.4: _ZN9oceanbase6common10ObObjStoreIPNS_3sql6ObStmtERNS0_12ObIAllocatorELb1EED2Ev:15461 + 0.3: 71 + 0: _ZN9oceanbase6common10ObObjStoreIPNS_3sql6ObStmtERNS0_12ObIAllocatorELb1EE7destroyEv:14893 + 2.1: 27 + 4: 71 + 5: 71 + 2: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql6ObStmtEEEE12remove_firstEv:8118 + 2: 531 + 2: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql6ObStmtEEEE6removeEPS6_:4401 + 3: 531 + 7: 27 + 6: _ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql6ObStmtEEEE6unlinkEv:1053 + 2: 27 + 4: 27 + 5: 27 + 6: 27 + 7: 27 + 2.5: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql6ObStmtEEEE12remove_firstEv:4970 + 2: 71 + 2: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql6ObStmtEEEE6removeEPS6_:4473 + 3: 71 + 7: 71 + 6: _ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql6ObStmtEEEE6unlinkEv:2769 + 2: 71 + 4: 71 + 5: 71 + 6: 71 + 7: 71 + 37: _ZN9oceanbase3libneEDnRKNS0_13MemoryContextE:51940 + 1: 5194 + 1: _ZNK9oceanbase3lib13MemoryContext11ref_contextEv:36358 + 1: 5194 + 38: _ZN9oceanbase3lib17__MemoryContext__15destory_contextERNS0_13MemoryContextE:116564 + 3: 71 + 4: 71 + 5: 3350 + 6: 3350 _ZN9oceanbase3lib17__MemoryContext__15destory_contextEPS1_:3405 + 2: _ZNK9oceanbase3lib13MemoryContext16check_magic_codeEv:23450 + 0: 3350 + 2.1: _ZL12abort_unlessb:20455 + 5: 3350 + 6: 71 + 5: _ZL12abort_unlessb:20810 + 5: 3350 + 6: 71 + 39: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:84188 + 2: 3238 + 8: 3238 + 41: _ZN9oceanbase6common4hash9ObHashMapINS0_6ObAddrElNS1_24LatchReadWriteDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_lEEEELi89ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv:242034 + 2: _ZN9oceanbase6common4hash11ObHashTableINS0_6ObAddrENS1_11HashMapPairIS3_lEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi89ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv:62800 + 3: 5003 + 3.1: 27 + 6.1: 27 + 6.3: 27 + 8: 27 + 9.1: 27 + 11: 27 + 12: 27 + 15: 27 + 19: 99 + 22: 27 + 24: 27 + 3: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_6ObAddrElEENS0_7ObLatchENS1_5NCondEEEEEbRKT_:50030 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_6ObAddrElEENS0_7ObLatchENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:50030 + 2: 5003 + 10: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_11HashMapPairINS0_6ObAddrElEEE16check_magic_codeEv:216 + 0: 27 + 762: 27 + 10.1: _ZL12abort_unlessb:243 + 5: 27 + 6: 27 + 22: _ZN9oceanbase6common4hash7destroyIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_6ObAddrElEENS0_7ObLatchENS1_5NCondEEENS0_8ObMallocEEEvRT_RT0_:783 + 2: _ZN9oceanbase6common4hash10do_destroyIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_6ObAddrElEENS0_7ObLatchENS1_5NCondEEENS0_8ObMallocEEEvRT_NS1_16NormalPointerTagERT0_:783 + 2: 27 + 3: 27 + 4: 27 + 3: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS0_6ObAddrElEEEELi89ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEE5clearEv:143093 + 2: 5163 + 3.1: 5163 + 4: 71 + 5: 71 + 6.1: 71 + 15: 5163 + 10: _ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocator4freeEPv:497 + 3: 71 + 42: _ZNK9oceanbase6common4hash9ObHashMapIllNS1_24LatchReadWriteDefendModeENS1_9hash_funcIlEENS1_8equal_toIlEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIllEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE7createdEv:51630 + 2: _ZNK9oceanbase6common4hash11ObHashTableIlNS1_11HashMapPairIllEENS1_9hash_funcIlEENS1_8equal_toIlEENS1_10pair_firstIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS4_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE7createdEv:51630 + 2: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairIllEENS0_7ObLatchENS1_5NCondEEEEEbRKT_:51630 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairIllEENS0_7ObLatchENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:51630 + 2: 5163 + 45: _ZN9oceanbase6common4hash9ObHashMapIllNS1_24LatchReadWriteDefendModeENS1_9hash_funcIlEENS1_8equal_toIlEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIllEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE5beginEv:5325 + 2: _ZN9oceanbase6common4hash11ObHashTableIlNS1_11HashMapPairIllEENS1_9hash_funcIlEENS1_8equal_toIlEENS1_10pair_firstIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS4_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE5beginEv:5325 + 5.1: 71 + 6.1: 71 + 8.1: 71 + 8.2: 71 + 8.3: 71 + 9: 71 + 10: 71 + 47: _ZN9oceanbase6common4hash19ObHashTableIteratorIlNS1_11HashMapPairIllEENS1_9hash_funcIlEENS1_8equal_toIlEENS1_10pair_firstIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS4_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEppEv:5183 + 4.2: 71 + 7: 71 + 7.1: 71 + 8: 71 + 50: _ZN9oceanbase6common4hash9ObHashMapIllNS1_24LatchReadWriteDefendModeENS1_9hash_funcIlEENS1_8equal_toIlEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIllEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv:2067 + 2: 71 + 3: 72 _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIllEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEE5clearEv:1 + 53.3: _ZN9oceanbase3sql8ObDASCtxD2Ev:1163088 + 2: 5163 + 2.1: 5163 + 3: 71 + 4: 71 + 6: 5439 _ZN9oceanbase11transaction16ObTxReadSnapshotD1Ev:5145 + 6.2: 5439 _ZN9oceanbase3sql16ObDASTaskFactoryD1Ev:5404 + 6.1: _ZN9oceanbase3sql19DASRelatedTabletMapD2Ev:361246 + 0: 5439 + 0: _ZN9oceanbase6common6ObListINS_3sql19DASRelatedTabletMap8MapEntryENS0_12ObIAllocatorEED2Ev:225271 + 2.1: 71 + 2: _ZN9oceanbase6common6ObListINS_3sql19DASRelatedTabletMap8MapEntryENS0_12ObIAllocatorEE5resetEv:224703 + 2: _ZN9oceanbase6common6ObListINS_3sql19DASRelatedTabletMap8MapEntryENS0_12ObIAllocatorEE5clearEv:224703 + 2: 5439 + 3.1: 5439 + 4: 71 + 5: 71 + 8: 5439 + 9: 5439 + 10: 5439 + 6.3: _ZN9oceanbase3sql19ObDASLocationRouterD2Ev:247792 + 0: 5115 + 0: _ZN9oceanbase6common6ObListINS_3sql14VirtualSvrPairENS0_12ObIAllocatorEED2Ev:211987 + 2.1: 71 + 2: _ZN9oceanbase6common6ObListINS_3sql14VirtualSvrPairENS0_12ObIAllocatorEE5resetEv:211419 + 2: _ZN9oceanbase6common6ObListINS_3sql14VirtualSvrPairENS0_12ObIAllocatorEE5clearEv:211419 + 2: 5115 + 3.1: 5115 + 4: 71 + 5: 71 + 8: 5115 + 9: 5115 + 10: 5115 + 6.4: _ZN9oceanbase6common6ObListIPNS_3sql13ObDASTableLocENS0_12ObIAllocatorEED2Ev:333193 + 2.1: 71 + 2: _ZN9oceanbase6common6ObListIPNS_3sql13ObDASTableLocENS0_12ObIAllocatorEE5resetEv:332625 + 2: _ZN9oceanbase6common6ObListIPNS_3sql13ObDASTableLocENS0_12ObIAllocatorEE5clearEv:332625 + 2: 5115 + 3.1: 5115 + 4: 4509 + 5: 4509 + 8: 4950 + 9: 4950 + 10: 4950 + 53.7: _ZN9oceanbase6common4hash9ObHashMapIllNS1_24LatchReadWriteDefendModeENS1_9hash_funcIlEENS1_8equal_toIlEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIllEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:239750 + 2: _ZN9oceanbase6common4hash11ObHashTableIlNS1_11HashMapPairIllEENS1_9hash_funcIlEENS1_8equal_toIlEENS1_10pair_firstIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS4_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:71572 + 2.1: 4950 + 2.2: 71 + 3: 71 + 5.2: 71 + 2: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairIllEENS0_7ObLatchENS1_5NCondEEEEEbRKT_:39600 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairIllEENS0_7ObLatchENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:39600 + 2: 4950 + 2.2: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIllEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEED2Ev:133031 + 2.1: 71 + 2: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIllEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEE5clearEv:132463 + 2: 4950 + 3.1: 4950 + 4: 71 + 5: 71 + 6.1: 71 + 15: 4950 + 10: _ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocator4freeEPv:497 + 3: 71 + 53.8: _ZN9oceanbase6common4hash9ObHashMapINS0_6ObAddrElNS1_24LatchReadWriteDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_lEEEELi89ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:193871 + 2: _ZN9oceanbase6common4hash11ObHashTableINS0_6ObAddrENS1_11HashMapPairIS3_lEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi89ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:71572 + 2.1: 4950 + 2.2: 71 + 3: 71 + 5.2: 71 + 2: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_6ObAddrElEENS0_7ObLatchENS1_5NCondEEEEEbRKT_:39600 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_6ObAddrElEENS0_7ObLatchENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:39600 + 2: 4950 + 2.2: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS0_6ObAddrElEEEELi89ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEED2Ev:121802 + 2.1: 71 + 2: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS0_6ObAddrElEEEELi89ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEE5clearEv:121234 + 2: 4950 + 3.1: 4950 + 4: 71 + 5: 71 + 6.1: 71 + 15: 4950 + 10: _ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocator4freeEPv:3834 + 3: _ZN9oceanbase6common7ob_freeEPv:3834 + 2: 71 + 3: 71 + 4: 71 + 5: 71 + 4: _ZL12abort_unlessb:1420 + 5: 71 + 6: 71 + 53.10: _ZN9oceanbase6common13ObSEArrayImplINS_3sql17ObSqlTempTableCtxELl2ENS0_19ModulePageAllocatorELb0EED2Ev:427806 + 1: 4559 + 3.2: 71 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_3sql17ObSqlTempTableCtxELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv:345176 + 4.1: 4559 + 4.3: 71 + 5: 71 + 9: 4559 + 11: 71 + 13: 4559 + 15: 4559 + 24: 4559 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_3sql17ObSqlTempTableCtxELl2ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:852 + 4: 71 + 53.11: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:480937 + 0: 4559 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEED2Ev:398875 + 0: 4559 + 0.3: 71 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:316245 + 4.1: 4559 + 6: 71 + 7: 71 + 13: 4559 + 14: 4559 + 15: 4559 + 18: 4559 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:213 + 0: 71 + 5.1: _ZL12abort_unlessb:781 + 5: 71 + 6: 71 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:6106 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:6106 + 0: 71 + 0.2: 71 + 0.1: _ZN9oceanbase6common7ob_freeEPv:4331 + 2: 71 + 3: 71 + 4: 71 + 5: 71 + 4: _ZL12abort_unlessb:1420 + 5: 71 + 6: 71 + 53.12: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:364477 + 0: 4559 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEED2Ev:332564 + 0: 4559 + 0.3: 71 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:300083 + 4.1: 4559 + 6: 71 + 7: 71 + 13: 4559 + 14: 4559 + 15: 4559 + 18: 4559 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:923 + 0: 71 + 5.1: _ZL12abort_unlessb:497 + 5: 71 + 6: 71 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:4757 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:4757 + 0: 71 + 0.2: 71 + 0.1: _ZN9oceanbase6common7ob_freeEPv:3266 + 2: 71 + 3: 71 + 4: 71 + 5: 71 + 4: _ZL12abort_unlessb:639 + 5: 71 + 6: 71 + 53.13: _ZN9oceanbase3sql19ObJoinFilterDataCtxD2Ev:111853 + 0: 4559 _ZN9oceanbase3sql3dtl16ObDtlChTotalInfoD2Ev:4847 + 0.1: 5226 _ZN9oceanbase3sql3dtl10ObDtlChSetD2Ev:5311 + 53.16: _ZN9oceanbase3sql21ObPartIdRowMapManagerD2Ev:42812 + 0: 5311 _ZN9oceanbase6common13ObSEArrayImplINS_3sql21ObPartIdRowMapManager8MapEntryELl1ENS0_19ModulePageAllocatorELb0EED2Ev:5323 + 53.19: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:332949 + 0: 5057 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEED2Ev:312721 + 0: 5057 + 0.3: 71 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:291925 + 4.1: 5057 + 6: 71 + 7: 71 + 13: 5057 + 14: 5057 + 15: 5057 + 18: 5057 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:213 + 0: 71 + 5.1: _ZL12abort_unlessb:781 + 5: 71 + 6: 71 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:5467 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:5467 + 0: 71 + 0.2: 71 + 0.1: _ZN9oceanbase6common7ob_freeEPv:3905 + 2: 71 + 3: 71 + 4: 71 + 5: 71 + 4: _ZL12abort_unlessb:1136 + 5: 71 + 6: 71 +_ZNK9oceanbase6common7ObDatum6to_objERNS0_5ObObjERKNS0_9ObObjMetaENS0_17ObObjDatumMapTypeE:7298698:83093 + 2: 82284 + 3: 82284 + 4: 82284 + 7: 82284 + 8: 82284 + 19: 0 + 20.1: 0 + 24: 88387 + 5: _ZN9oceanbase6common5ObObj8set_nullEv:0 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:0 + 0: 0 + 0.1: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:0 + 0: 0 + 9: _ZNK9oceanbase6common7ObDatum9datum2objILNS0_17ObObjDatumMapTypeE0EEEvRNS0_5ObObjE:4873 + 2: _ZN9oceanbase6common5ObObj8set_nullEv:4873 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4873 + 0: 443 + 0.1: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:2658 + 0: 443 + 10: _ZNK9oceanbase6common7ObDatum9datum2objILNS0_17ObObjDatumMapTypeE1EEEvRNS0_5ObObjE:840290 + 2: 84029 + 3: 84029 + 11: _ZNK9oceanbase6common7ObDatum9datum2objILNS0_17ObObjDatumMapTypeE2EEEvRNS0_5ObObjE:3975 + 2: 265 + 3: 265 + 12: _ZNK9oceanbase6common7ObDatum9datum2objILNS0_17ObObjDatumMapTypeE3EEEvRNS0_5ObObjE:3579 + 3: 448 + 13: _ZNK9oceanbase6common7ObDatum9datum2objILNS0_17ObObjDatumMapTypeE4EEEvRNS0_5ObObjE:0 + 3: 0 + 4: 0 + 14: _ZNK9oceanbase6common7ObDatum9datum2objILNS0_17ObObjDatumMapTypeE5EEEvRNS0_5ObObjE:0 + 2: 0 + 3: 0 + 15: _ZNK9oceanbase6common7ObDatum9datum2objILNS0_17ObObjDatumMapTypeE6EEEvRNS0_5ObObjE:0 + 2: 0 + 3: 0 + 16: _ZNK9oceanbase6common7ObDatum9datum2objILNS0_17ObObjDatumMapTypeE7EEEvRNS0_5ObObjE:0 + 3: 0 + 4: 0 + 5: 0 + 17: _ZNK9oceanbase6common7ObDatum9datum2objILNS0_17ObObjDatumMapTypeE8EEEvRNS0_5ObObjE:0 + 2: 0 +_ZNK9oceanbase3sql8ObOpSpec25create_operator_recursiveERNS0_13ObExecContextERPNS0_10ObOperatorE:7269389:7153 + 1: 6807 + 2: 6807 + 3: 6807 + 4: 6807 + 5: 6807 + 5.1: 6807 + 5.2: 2057 + 6: 7 + 7.1: 7 + 11: 6954 + 12.1: 6954 _ZZNK9oceanbase3sql8ObOpSpec25create_operator_recursiveERNS0_13ObExecContextERPNS0_10ObOperatorEENK5$_117clEPKc.68271ef948b9e29c783f97102b0c767d:7052 + 13.1: 6731 + 13.2: 8910 + 13.3: 8910 + 13.5: 2100 + 14: 2066 + 16: 7 + 17: 7 + 18.1: 7 + 20: 7 + 22.1: 2066 + 25: 7 + 31: 6496 + 33: 6496 + 33.1: 6496 + 34: 5280 + 36.1: 0 + 37.1: 5280 + 38: 0 + 39.1: 0 + 41.1: 5280 _ZZNK9oceanbase3sql8ObOpSpec25create_operator_recursiveERNS0_13ObExecContextERPNS0_10ObOperatorEENK5$_121clEPKc.68271ef948b9e29c783f97102b0c767d:5675 + 47: 6686 + 48: 6686 + 48.1: 6681 + 51: 6681 + 51.1: 6681 + 52.3: 0 + 53.1: 0 + 55: 6681 + 56: 6681 + 57: 6681 + 58: 6681 + 59: 6681 + 60: 6681 + 65: 6681 + 66: 6681 + 67.1: 1912 + 67.3: 1912 + 68: 2104 + 69: 2104 + 71: 0 + 72: 0 + 73.1: 0 + 75.1: 2104 _ZNK9oceanbase3sql8ObOpSpec25create_operator_recursiveERNS0_13ObExecContextERPNS0_10ObOperatorE:2237 + 76.1: 0 + 77.1: 1912 + 78.1: 0 + 81.1: 4562 + 82: 0 + 83.1: 0 + 88: 6576 + 3: _ZNK9oceanbase3sql13ObExecContext16get_operator_kitEm:265473 + 2: _ZNK9oceanbase3sql12ObOpKitStore16get_operator_kitEm:265473 + 2: 6807 + 33.1: _ZN9oceanbase3sql17ObOperatorFactory12has_op_inputENS0_17ObPhyOperatorTypeE:168896 + 2: 6496 + 2.2: 6496 + 34: _ZN9oceanbase3sql13ObExecContext13get_allocatorEv:36050 + 2: 5150 + 34.1: _ZN9oceanbase3sql17ObOperatorFactory14alloc_op_inputERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecERPNS0_9ObOpInputE:1061365 + 4: 5150 + 11.1: 5280 _ZN9oceanbase3sql16AllocInputHelperILi24EE5allocERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecERPNS0_9ObOpInputE:287 + 13.1: 0 + 15: 0 + 11.1: _ZN9oceanbase3sql16AllocInputHelperILi25EE5allocERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecERPNS0_9ObOpInputE:91224 + 3: 504 + 5: 504 + 6: 0 + 7: 0 + 8.1: 0 + 10: 504 + 12: 0 + 5: _ZN9oceanbase6common16ObArenaAllocator5allocEl:54936 + 0: 504 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13alloc_alignedEll:52920 + 3: 504 + 6: 0 + 7: 504 + 8: 504 + 10: 504 + 11: 504 + 12: 504 + 13: 504 + 15.1: 0 + 16: 0 + 18: 0 + 20: 0 + 28: 0 + 35: 504 + 36: 504 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE15ensure_cur_pageEv:6552 + 2: 504 + 3: 0 + 5.1: 0 + 8: 0 + 9: 0 + 10: 0 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:0 + 2: 0 + 2.2: 0 + 2.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 9: _ZSt3maxIlERKT_S2_S2_:0 + 5: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 8: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:0 + 0: 0 + 7: _ZN9oceanbase6common16get_align_offsetEPvl:5040 + 3: 504 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:3528 + 0: 504 + 11: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:3528 + 7: 504 + 15.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE18is_normal_overflowEl:0 + 2: 0 + 16: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11extend_pageEl:0 + 4: 0 + 5: 0 + 8: 0 + 9: 0 + 10.1: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 12: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_tailEPNS3_4PageE:0 + 2: 0 + 3: 0 + 5: 0 + 23.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16lookup_next_pageEl:0 + 3.1: 0 + 4.1: 0 + 5: 0 + 5.1: 0 + 7: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page10reuse_sizeEv:0 + 0: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 32: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9alloc_bigEl:0 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 3: 0 + 5: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_headEPNS3_4PageE:0 + 4: 0 + 5: 0 + 7: 0 + 7: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:0 + 5.1: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:0 + 0: 0 + 10: _ZN9oceanbase3sql20ObTableUpdateOpInputC2ERNS0_13ObExecContextERKNS0_8ObOpSpecE:15624 + 2: 504 + 1: _ZN9oceanbase3sql20ObTableModifyOpInputC2ERNS0_13ObExecContextERKNS0_8ObOpSpecE:8568 + 3: 504 + 1: _ZN9oceanbase3sql9ObOpInputC2ERNS0_13ObExecContextERKNS0_8ObOpSpecE:4032 + 0: 504 + 11.1: _ZN9oceanbase3sql16AllocInputHelperILi26EE5allocERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecERPNS0_9ObOpInputE:20991 + 3: 261 + 5: 261 _ZN9oceanbase6common16ObArenaAllocator5allocEl:271 + 6: 254 + 7: 0 + 8.1: 0 + 10: 254 + 12: 0 + 10: _ZN9oceanbase3sql20ObTableDeleteOpInputC2ERNS0_13ObExecContextERKNS0_8ObOpSpecE:8890 + 2: 254 + 1: _ZN9oceanbase3sql20ObTableModifyOpInputC2ERNS0_13ObExecContextERKNS0_8ObOpSpecE:5334 + 3: 254 + 1: _ZN9oceanbase3sql9ObOpInputC2ERNS0_13ObExecContextERKNS0_8ObOpSpecE:3048 + 0: 254 + 11.1: _ZN9oceanbase3sql16AllocInputHelperILi3EE5allocERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecERPNS0_9ObOpInputE:667376 + 3: 4116 + 5: 4116 + 6: 0 + 7: 0 + 8.1: 0 + 10: 4255 _ZN9oceanbase3sql18ObTableScanOpInputC1ERNS0_13ObExecContextERKNS0_8ObOpSpecE:4257 + 12: 0 + 5: _ZN9oceanbase6common16ObArenaAllocator5allocEl:473340 + 0: 4116 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13alloc_alignedEll:456876 + 3: 4116 + 6: 0 + 7: 4116 + 8: 4116 + 10: 4116 + 11: 4116 + 12: 4116 + 13: 4116 + 15.1: 0 + 16: 0 + 18: 0 + 20: 0 + 28: 0 + 35: 4116 + 36: 4116 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE15ensure_cur_pageEv:53508 + 2: 4116 + 3: 0 + 5.1: 0 + 8: 0 + 9: 0 + 10: 0 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:0 + 2: 0 + 2.2: 0 + 2.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 9: _ZSt3maxIlERKT_S2_S2_:0 + 5: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 8: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:0 + 0: 0 + 7: _ZN9oceanbase6common16get_align_offsetEPvl:41160 + 3: 4116 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:28812 + 0: 4116 + 11: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:28812 + 7: 4116 + 15.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE18is_normal_overflowEl:0 + 2: 0 + 16: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11extend_pageEl:0 + 4: 0 + 5: 0 + 8: 0 + 9: 0 + 10.1: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 12: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_tailEPNS3_4PageE:0 + 2: 0 + 3: 0 + 5: 0 + 23.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16lookup_next_pageEl:0 + 3.1: 0 + 4.1: 0 + 5: 0 + 5.1: 0 + 7: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page10reuse_sizeEv:0 + 0: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 32: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9alloc_bigEl:0 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 3: 0 + 5: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_headEPNS3_4PageE:0 + 4: 0 + 5: 0 + 7: 0 + 7: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:0 + 5.1: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:0 + 0: 0 + 48: _ZN9oceanbase3sql13ObExecContext13get_allocatorEv:46802 + 2: 6686 + 48.2: _ZN9oceanbase3sql17ObOperatorFactory14alloc_operatorERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputElRPNS0_10ObOperatorE:2081985 + 4: 6686 + 5: 6686 + 6: 6686 + 6.1: 6686 + 7: 0 + 8.1: 0 + 11.1: 6686 _ZN9oceanbase3sql13AllocOpHelperILi2EE5allocERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputElRPNS0_10ObOperatorE:559 _ZN9oceanbase3sql13AllocOpHelperILi25EE5allocERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputElRPNS0_10ObOperatorE:547 _ZN9oceanbase3sql13AllocOpHelperILi12EE5allocERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputElRPNS0_10ObOperatorE:294 _ZN9oceanbase3sql13AllocOpHelperILi24EE5allocERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputElRPNS0_10ObOperatorE:286 _ZN9oceanbase3sql13AllocOpHelperILi10EE5allocERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputElRPNS0_10ObOperatorE:281 _ZN9oceanbase3sql13AllocOpHelperILi26EE5allocERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputElRPNS0_10ObOperatorE:271 _ZN9oceanbase3sql13AllocOpHelperILi30EE5allocERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputElRPNS0_10ObOperatorE:266 _ZN9oceanbase3sql13AllocOpHelperILi11EE5allocERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputElRPNS0_10ObOperatorE:7 + 13.1: 0 + 16: 0 + 6.1: _ZN9oceanbase3sql17ObOperatorFactory13is_registeredENS0_17ObPhyOperatorTypeE:133720 + 2.2: 6686 + 11.1: _ZN9oceanbase3sql13AllocOpHelperILi3EE5allocERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputElRPNS0_10ObOperatorE:1300471 + 4: 4316 + 7: 4316 + 9: 0 + 10.1: 0 + 16: 4316 + 17: 4316 + 18: 0 + 19: 0 + 20.1: 0 + 22: 4316 + 23: 4531 _ZN9oceanbase3sql13ObTableScanOpC1ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE:4706 + 25.1: 4313 + 33: 4313 + 17: _ZN9oceanbase6common16ObArenaAllocator5allocEl:556764 + 0: 4316 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13alloc_alignedEll:539500 + 3: 4316 + 6: 4316 + 7: 4316 + 8: 4316 + 10: 4316 + 11: 4316 + 12: 4316 + 13: 4316 + 15.1: 0 + 16: 0 + 18: 0 + 20: 0 + 24: 0 + 28: 0 + 35: 4316 + 36: 4316 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE15ensure_cur_pageEv:56108 + 2: 4316 + 3: 0 + 5.1: 0 + 8: 0 + 9: 0 + 10: 0 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:0 + 2: 0 + 2.2: 0 + 2.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 9: _ZSt3maxIlERKT_S2_S2_:0 + 5: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 8: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:0 + 0: 0 + 7: _ZN9oceanbase6common16get_align_offsetEPvl:60424 + 3: 4316 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:30212 + 0: 4316 + 11: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:30212 + 7: 4316 + 15.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE18is_normal_overflowEl:0 + 2: 0 + 16: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11extend_pageEl:0 + 4: 0 + 5: 0 + 8: 0 + 9: 0 + 10.1: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 12: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_tailEPNS3_4PageE:0 + 2: 0 + 3: 0 + 5: 0 + 23.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16lookup_next_pageEl:0 + 3.1: 0 + 4.1: 0 + 5: 0 + 5.1: 0 + 7: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page10reuse_sizeEv:0 + 0: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 32: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9alloc_bigEl:0 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 3: 0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_headEPNS3_4PageE:0 + 4: 0 + 5: 0 + 7: 0 + 7: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:0 + 3: 0 + 24: _ZN9oceanbase3sql10ObOperator20set_children_pointerEPPS1_j:198398 + 7: 4313 + 8: 4313 + 9: 4313 + 10: 0 + 12: 4313 + 14: 0 + 15: 0 + 17: 4313 + 56.1: _ZN9oceanbase3sql13ObMonitorNode15set_operator_idEl:46767 + 0: 6681 + 57.1: _ZN9oceanbase3sql13ObMonitorNode17set_operator_typeENS0_17ObPhyOperatorTypeE:40086 + 0: 6681 + 58.1: _ZN9oceanbase3sql13ObMonitorNode14set_plan_depthEl:46767 + 0: 6681 + 59.1: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:46767 + 2: 6681 + 59.2: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:46767 + 0: 6681 + 59.3: _ZN9oceanbase3sql13ObMonitorNode13set_tenant_idEl:46767 + 0: 6681 + 60: _ZN9oceanbase6common16ObClockGenerator8getClockEv:140301 + 4: 6681 + 5.1: 0 + 8: 6681 + 6: _ZN9oceanbase6common16ObClockGenerator6get_usEv:0 + 2: 0 + 77.1: _ZN9oceanbase3sql10ObOperator9set_childEjPS1_:164432 + 2: 1912 + 3: 1912 + 4: 0 + 5.1: 0 + 7: 1912 + 8: 1912 + 9: 1912 + 12: 0 + 14: 1912 + 16: 0 +_ZN9oceanbase12blocksstableL12get_offset_8EPKvl.8f1e732d6655d093e942b32e16c602d8:7240920:732472 + 1: 724092 +_ZN9oceanbase7storage13ObSingleMerge18inner_get_next_rowERNS_12blocksstable10ObDatumRowE:7135166:6959 + 1: 6739 + 2: 6739 + 3: 6739 + 4: 6739 + 5: 14 + 6.1: 14 + 7.1: 6739 + 8: 3336 + 9: 3336 + 11: 3336 + 13: 3336 + 14: 3336 + 16: 3653 + 17: 3272 + 20: 3272 + 22: 3272 + 23: 3272 + 28: 3272 + 28.1: 10 + 28.2: 3542 + 29: 6753 + 30: 10 + 31.1: 10 + 32.1: 6872 _ZNK9oceanbase7storage8ObITable11is_memtableEv:6868 + 34: 3542 + 35.1: 10 + 38: 3686 + 40.1: 3686 + 41: 3531 _ZN9oceanbase7storage13ObSingleMerge22get_and_fuse_cache_rowEllRNS_12blocksstable10ObDatumRowERbS5_S5_:3760 + 47.1: 10 + 51.1: 14 + 51.2: 10 + 51.5: 14 + 52: 10 + 53.1: 14 + 58: 10 + 61: 28 + 63: 3333 + 64: 3333 + 65: 3333 + 65.3: 3415 + 66.1: 28 + 69: 3415 + 70.1: 3415 _ZZN9oceanbase7storage13ObSingleMerge18inner_get_next_rowERNS_12blocksstable10ObDatumRowEENK5$_451clEPKc.60e5f1555e1608e51e89c573dc1497ed:3473 + 72: 3498 + 73.3: 102 + 74.1: 102 + 77: 122 _ZN9oceanbase7storage21ObFuseRowCacheFetcher18put_fuse_row_cacheERKNS_12blocksstable13ObDatumRowkeyERNS2_10ObDatumRowEl:75 + 78.1: 22 + 80: 122 + 85: 3552 + 87: 3411 + 89: 6671 + 3: _ZNK9oceanbase7storage16ObTableIterParam13get_read_infoEb:26956 + 2.2: 6739 + 12: _ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE7get_objEv:23352 + 2: 3336 + 15: _ZNK9oceanbase7storage16ObTableIterParam21enable_fuse_row_cacheERKNS_6common11ObQueryFlagE:1074532 + 3: 3336 + 3.1: 3336 + 3.2: 3315 + 5.1: 20903 + 5.2: 24548 + 5.3: 24548 + 5.2: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:29835 + 6: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE2atEl:146321 + 6: 20903 + 6.1: _ZNK9oceanbase6common9ObObjMeta9is_lob_v2Ev:146321 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:146321 + 0: 20903 + 18: _ZN9oceanbase6common11ObQueryFlag21set_not_use_row_cacheEv:35992 + 0: 3272 + 19: _ZN9oceanbase7storage8ObNopPos5resetEv:35992 + 2: 3272 + 21: _ZN9oceanbase12blocksstable12ObDmlRowFlag8set_flagENS0_9ObDmlFlagE:26176 + 3: 3272 + 29: _ZN9oceanbase6common12ObIArrayWrapIPNS_7storage8ObITableEE2atEl:66903 + 6: 6753 + 34: _ZN9oceanbase7storage13ObSingleMerge13get_table_rowElRKNS_6common8ObIArrayIPNS0_8ObITableEEERNS_12blocksstable10ObDatumRowERbSC_:1273259 + 6: 3277 + 7: 3277 + 9: 3277 + 10: 3277 + 11: 3277 + 12.1: 10 + 13.1: 1 + 14: 10 + 15.1: 10 + 16.1: 3277 + 18: 3277 _ZN9oceanbase8memtable10ObMemtable3getERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS_12blocksstable13ObDatumRowkeyERPNS2_18ObStoreRowIteratorE:3300 + 19.1: 10 + 21.1: 3277 + 22: 10 + 23.1: 10 + 27: 10 + 28: 10 + 29.1: 10 + 33: 10 + 34: 3463 _ZN9oceanbase8memtable19ObIMemtableIterator12get_next_rowERPKNS_12blocksstable10ObDatumRowE:3326 + 35.1: 10 + 36.1: 3463 + 37: 10 + 38.1: 10 + 39.1: 3484 _ZN9oceanbase7storage9ObRowFuse8fuse_rowERKNS_12blocksstable10ObDatumRowERS3_RNS0_8ObNopPosERbPNS_6common12ObIAllocatorE:3557 + 40.1: 10 + 43: 3484 + 44: 3484 + 45: 1637 + 45.2: 1637 + 50: 3542 + 11: _ZNK9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl8ENS0_19ModulePageAllocatorELb0EE2atElRS4_:131080 + 3: 3277 + 3.1: 3277 + 3.2: 3277 + 6: 3277 + 6: _ZN9oceanbase6common9ObClassOpIPNS_7storage8ObITableELb1EE6assignERKS4_RS4_:36047 + 2: 3277 + 13.1: _ZNK9oceanbase7storage15ObMultipleMerge21get_actual_iter_paramEPKNS0_8ObITableE:65670 + 3: 3277 + 4.1: 10 + 6: 3277 + 16.2: _ZNK9oceanbase6common12ObIArrayWrapIPNS_7storage8ObITableEE5countEv:22939 + 0: 3277 + 21.1: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage18ObStoreRowIteratorELl8ENS0_19ModulePageAllocatorELb0EE9push_backERKS4_:141163 + 5: 3277 + 6: 10 + 12: 10 + 15: 10 + 15.1: 3277 + 16: 3277 + 15.1: _ZN9oceanbase6common9ObClassOpIPNS_7storage18ObStoreRowIteratorELb1EE20construct_and_assignERKS4_RS4_:26216 + 2: 3277 + 27.1: _ZN9oceanbase6common12ObIArrayWrapIPNS_7storage18ObStoreRowIteratorEE2atEl:70 + 6: 10 + 44: _ZNK9oceanbase12blocksstable12ObDmlRowFlag8is_existEv:111488 + 2: _ZNK9oceanbase12blocksstable12ObDmlRowFlag8is_validEv:104520 + 2: 3484 + 2.1: _ZNK9oceanbase12blocksstable12ObDmlRowFlag12is_not_existEv:6968 + 2: 3484 + 60: _ZNK9oceanbase12blocksstable12ObDmlRowFlag23is_exist_without_deleteEv:123321 + 2: _ZNK9oceanbase12blocksstable12ObDmlRowFlag8is_existEv:123321 + 2: _ZNK9oceanbase12blocksstable12ObDmlRowFlag8is_validEv:123321 + 2: 3333 + 63: _ZNK9oceanbase7storage15ObTableReadInfo17get_columns_indexEv:46662 + 1: 3333 + 64: _ZNK9oceanbase7storage15ObTableReadInfo17get_request_countEv:23331 + 1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:23331 + 0: 3333 + 65.3: _ZN9oceanbase7storage15ObMultipleMerge11project_rowERKNS_12blocksstable10ObDatumRowEPKNS_6common8ObIArrayIiEElRS3_:1909312 + 5: 3333 + 8: 3333 + 9: 3333 + 10: 3333 + 11: 3333 + 13.1: 6730 + 13.2: 10122 + 13.3: 10122 + 13.5: 6730 + 14: 6628 + 14.2: 6523 + 14.3: 6628 + 15: 6411 + 16: 14 + 17.1: 14 + 18.1: 6411 + 19: 6411 + 21: 6411 + 23: 6730 + 23.1: 6730 + 24: 14 + 7: _ZN9oceanbase12blocksstable12ObDmlRowFlagaSERKS1_:123321 + 3: 3333 + 2: _ZNK9oceanbase12blocksstable12ObDmlRowFlag8is_validEv:103323 + 2: 3333 + 12: _ZN9oceanbase7storage8ObNopPos5resetEv:106656 + 2: 3333 + 13.2: _ZNK9oceanbase12blocksstable10ObDatumRow16get_column_countEv:70854 + 0: 10122 + 14.2: _ZNK9oceanbase6common12ObIArrayWrapIiE2atEl:26092 + 6: 6523 + 15: _ZNK9oceanbase12blocksstable10ObDatumRow16get_column_countEv:51288 + 0: 6411 + 19: _ZN9oceanbase12blocksstable14ObStorageDatumaSERKS1_:572413 + 2: 6411 + 4: 6411 + 5: 6411 + 7.1: 6411 + 8: 3623 + 9: 3623 + 10: 3737 + 12: 2912 + 3: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:115398 + 0: 6411 + 5: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:12822 + 0: 6411 + 7.1: _ZNK9oceanbase12blocksstable14ObStorageDatum12is_local_bufEv:89754 + 0: 6411 + 21: _ZN9oceanbase12blocksstable14ObStorageDatum7set_nopEv:1470 + 0: _ZN9oceanbase12blocksstable14ObStorageDatum13set_ext_valueEl:1470 + 1: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:378 + 0: 42 + 1.1: _ZN9oceanbase6common11ObDatumDesc7set_extEv:378 + 0: 42 + 1.3: _ZN9oceanbase6common5ObObj7set_extEl:714 + 4: 42 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:336 + 0: 42 + 23.1: _ZNK9oceanbase6common7ObDatum6is_nopEv:81068 + 0: 6730 + 0.1: 14 + 0: _ZNK9oceanbase6common11ObDatumDesc6is_extEv:40380 + 0: 6730 + 0.1: _ZNK9oceanbase6common5ObObj12is_nop_valueEv:238 + 2: 14 + 2.1: 14 + 68: _ZN9oceanbase12blocksstable12ObDmlRowFlagaSERKS1_:126355 + 3: 3415 + 2: _ZNK9oceanbase12blocksstable12ObDmlRowFlag8is_validEv:105865 + 2: 3415 + 69: _ZNK9oceanbase12blocksstable13ObDatumRowkey13get_group_idxEv:13660 + 0: 3415 + 74.1: _ZNK9oceanbase7storage20ObTableAccessContext25enable_put_fuse_row_cacheEl:4080 + 1: 102 + 1.1: 102 + 1.2: 102 + 1: _ZNK9oceanbase6common11ObQueryFlag21is_use_fuse_row_cacheEv:714 + 0: 102 + 1.1: _ZNK9oceanbase7storage16ObTableStoreStat25enable_put_fuse_row_cacheEl:816 + 2: 102 + 1.3: _ZNK9oceanbase6common10ObTabletID18is_ls_inner_tabletEv:816 + 0: 102 +_ZN9oceanbase8memtable22ObMemtableScanIterator12prepare_scanEv:7124740:38852 + 1: 36906 + 2: 36906 + 7: 36906 + 8: 19 + 9.1: 36906 + 11.1: 1013 + 12: 19 + 13.1: 19 + 14.1: 1013 + 14.2: 1013 + 15.1: 7 + 16: 7 + 17.2: 1013 + 18: 7 + 19.1: 7 + 20.3: 1013 + 20.4: 987 + 22.1: 2 + 23.3: 987 + 23.4: 1003 + 25.1: 2 + 27: 1003 + 29.1: 1003 + 30: 1003 + 31: 1003 + 32: 1003 _ZN9oceanbase8memtable17ObMvccRowIterator5resetEv:1005 + 33: 1006 _ZN9oceanbase8memtable12ObMvccEngine4scanERNS0_15ObMvccAccessCtxERKNS_6common11ObQueryFlagERKNS0_15ObMvccScanRangeERNS0_17ObMvccRowIteratorE:1015 + 33.1: 970 + 37.1: 2 + 38.1: 970 + 38.4: 925 + 41: 925 + 42: 925 + 48: 36851 + 49: 7 + 51: 7 + 52.11: 39026 + 3: _ZN9oceanbase12blocksstable12ObDatumRangeC2Ev:2177454 + 0.7: _ZN9oceanbase12blocksstable13ObDatumRowkeyC2Ev:2177454 + 0: _ZN9oceanbase6common13ObStoreRowkeyC2Ev:2177454 + 0: 36906 + 11.1: _ZNK9oceanbase7storage16ObTableIterParam17get_out_col_descsEv:13169 + 2: 1013 + 14.1: _ZN9oceanbase8memtable22ObMemtableScanIterator14get_real_rangeERKNS_12blocksstable12ObDatumRangeERS3_:170623 + 2: 1013 + 4: 1013 + 5: 7 + 6.1: 7 + 8: 1013 + 9: 1013 + 10: 2 + 11: 2 + 12: 2 + 17: 2 + 25: 7 + 3: _ZNK9oceanbase6common11ObQueryFlag15is_reverse_scanEv:3039 + 0: 1013 + 4: _ZNK9oceanbase12blocksstable12ObDatumRange8is_validEv:45585 + 2: 1013 + 2: _ZNK9oceanbase12blocksstable13ObDatumRowkey8is_validEv:18234 + 0: 1013 + 0.1: 1013 + 2.1: _ZNK9oceanbase12blocksstable13ObDatumRowkey8is_validEv:21273 + 0: 1013 + 0.1: 1013 + 12.1: _ZNK9oceanbase6common12ObBorderFlag15inclusive_startEv:12 + 0: 2 + 13: _ZN9oceanbase6common12ObBorderFlag17set_inclusive_endEv:6 + 0: 2 + 17.1: _ZNK9oceanbase12blocksstable12ObDatumRange17is_memtable_validEv:94209 + 2: 1013 + 2: _ZNK9oceanbase12blocksstable13ObDatumRowkey17is_memtable_validEv:38494 + 0: 1013 + 0: _ZNK9oceanbase6common13ObStoreRowkey8is_validEv:8104 + 0: _ZNK9oceanbase6common8ObRowkey8is_validEv:8104 + 0: 1013 + 0.1: _ZNK9oceanbase12blocksstable13ObDatumRowkey8is_validEv:8104 + 0: 1013 + 2.1: _ZNK9oceanbase12blocksstable13ObDatumRowkey17is_memtable_validEv:36468 + 0: 1013 + 0: _ZNK9oceanbase6common13ObStoreRowkey8is_validEv:8104 + 0: _ZNK9oceanbase6common8ObRowkey8is_validEv:8104 + 0: 1013 + 0.1: _ZNK9oceanbase12blocksstable13ObDatumRowkey8is_validEv:8104 + 0: 1013 + 20.2: _ZNK9oceanbase12blocksstable13ObDatumRowkey16get_store_rowkeyEv:7091 + 0: 1013 + 20.3: _ZN9oceanbase8memtable13ObMemtableKey5buildINS_6common12ObIAllocatorEEEiRPS1_RKNS3_8ObIArrayINS_5share6schema9ObColDescEEEPKNS3_13ObStoreRowkeyERT_:745055 + 6: 1013 + 8.1: 1013 + 9.1: 2 + 10.2: 987 + 11.1: 2 + 15: 2 + 7: _ZN9oceanbase8memtable13ObMemtableKeyC2Ev:14182 + 0: 1013 + 8: _ZN9oceanbase8memtable13ObMemtableKey6encodeERKNS_6common8ObIArrayINS_5share6schema9ObColDescEEEPKNS2_13ObStoreRowkeyE:163511 + 3: 1013 + 8.1: 1013 + 9.1: 2 + 12: 2 + 14.2: 1014 + 14.3: 1014 + 14.5: 1014 + 15: 1014 + 16: 1014 + 17.1: 1013 + 18: 1014 + 19.1: 1013 + 20.1: 2 + 24: 2 + 25.2: 2 + 26: 1014 + 28: 2 + 29.1: 2 + 30.1: 2 + 15: _ZNK9oceanbase6common13ObStoreRowkey11get_obj_ptrEv:3042 + 0: _ZNK9oceanbase6common8ObRowkey11get_obj_ptrEv:3042 + 0: 1014 + 16: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE2atEl:7098 + 6: 1014 + 17: _ZNK9oceanbase6common5ObObj8get_typeEv:4056 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:4056 + 0: 1014 + 25.1: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:4056 + 0: 1014 + 29.1: _ZNK9oceanbase6common5ObObj18get_collation_typeEv:8 + 0: _ZNK9oceanbase6common9ObObjMeta18get_collation_typeEv:8 + 0: 2 + 36: _ZN9oceanbase8memtable13ObMemtableKey6encodeEPKNS_6common13ObStoreRowkeyE:7091 + 3: 1013 + 10.1: _ZNK9oceanbase8memtable13ObMemtableKey16dup_without_hashINS_6common12ObIAllocatorEEEiRPS1_RT_:542179 + 2: 1013 + 3: 1021 _ZN9oceanbase6common26ObWrapperAllocatorWithAttr5allocEl:1041 + 4: 1021 + 5: 2 + 6.1: 2 + 7.1: 1021 _ZN9oceanbase6common26ObWrapperAllocatorWithAttr5allocEl:1055 + 8: 995 + 9: 2 + 11: 2 + 12.1: 2 + 13.1: 995 + 14: 2 + 15: 2 + 16: 2 + 18.1: 2 + 20: 987 + 22: 987 + 4.1: _ZN9oceanbase8memtable13ObMemtableKeyC2Ev:11231 + 0: 1021 + 8.1: _ZN9oceanbase6common13ObStoreRowkeyC2Ev:9950 + 0: 995 + 13.1: _ZNK9oceanbase6common13ObStoreRowkey9deep_copyERS1_RNS0_12ObIAllocatorE:432400 + 2: 995 + 3: _ZNK9oceanbase6common8ObRowkey9deep_copyINS0_12ObIAllocatorEEEiRS1_RT_:417475 + 2: 995 + 4: 1014 + 6: 1014 + 8: 2 + 9.1: 1014 _ZN9oceanbase6common26ObWrapperAllocatorWithAttr5allocEl:1028 + 10: 2 + 11.1: 2 + 13.1: 987 + 14.1: 2 + 15: 2 + 17: 2 + 18: 2 + 22: 2 + 4: _ZNK9oceanbase6common8ObRowkey18get_deep_copy_sizeEv:158982 + 2: 995 + 3: 995 + 4: 1014 + 7: 2 + 8.1: 2 + 11: 19 + 11.1: 1028 + 12: 1028 + 6: _ZNK9oceanbase6common8ObRowkey8is_legalEv:13930 + 0: 995 + 12: _ZNK9oceanbase6common5ObObj18get_deep_copy_sizeEv:95624 + 3: 995 + 4: 19 + 5.1: 997 + 6: 2 + 3: _ZNK9oceanbase6common5ObObj14is_string_typeEv:45409 + 0: _ZNK9oceanbase6common9ObObjMeta14is_string_typeEv:45409 + 0: 995 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:8302 + 0: 995 + 0.3: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:26777 + 0: 995 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:5084 + 2: 997 + 5.2: _ZN9oceanbase6common15ob_is_number_tcENS0_9ObObjTypeE:16076 + 0: 997 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:2012 + 2: 997 + 13.1: _ZNK9oceanbase6common8ObRowkey9deep_copyERS1_Pcl:200953 + 2: 1008 + 5: 2 + 6: 2 + 7.1: 2 + 9.1: 1008 + 10: 987 + 11.1: 2 + 14: 987 + 19: 987 + 3: _ZN9oceanbase6common8ObRowkey5resetEv:13104 + 0: 1008 + 5: _ZNK9oceanbase6common8ObRowkey8is_legalEv:12096 + 0: 1008 + 10: _ZNK9oceanbase6common8ObRowkey9deep_copyEPcl:108852 + 2: 1008 + 4: 1008 + 5: 1008 + 6: 7 + 7.1: 7 + 14: 1008 + 16.1: 1022 + 16.3: 1022 + 16.5: 1022 + 17: 1022 _ZN9oceanbase6common5ObObj9deep_copyERKS1_PclRl:1022 + 18.1: 7 + 24: 7 + 14: _ZN9oceanbase6common8ObRowkey6assignEPNS0_5ObObjEl:6909 + 2: 987 + 3: 987 + 17: _ZN9oceanbase6common8ObRowkey6assignEPNS0_5ObObjEl:36 + 3: 2 + 23.3: _ZN9oceanbase8memtable13ObMemtableKey5buildINS_6common12ObIAllocatorEEEiRPS1_RKNS3_8ObIArrayINS_5share6schema9ObColDescEEEPKNS3_13ObStoreRowkeyERT_:764597 + 6: 987 + 8.1: 1000 + 9.1: 2 + 10.2: 1003 + 11.1: 2 + 15: 2 + 7: _ZN9oceanbase8memtable13ObMemtableKeyC2Ev:13818 + 0: 987 + 8: _ZN9oceanbase8memtable13ObMemtableKey6encodeERKNS_6common8ObIArrayINS_5share6schema9ObColDescEEEPKNS2_13ObStoreRowkeyE:199049 + 3: 987 + 5: 987 + 6: 7 + 7.1: 7 + 8.1: 987 + 9.1: 2 + 12: 2 + 14.1: 993 + 14.2: 1999 + 14.3: 1999 + 14.5: 993 + 15: 993 + 16: 993 + 17.1: 990 + 18: 993 + 19.1: 990 + 20.1: 2 + 24: 2 + 25.2: 2 + 26: 993 + 28: 3 + 29.1: 2 + 30.1: 2 + 5: _ZNK9oceanbase6common13ObStoreRowkey10is_regularEv:30597 + 0: _ZNK9oceanbase6common8ObRowkey8is_validEv:30597 + 0: 987 + 0.1: 987 + 15: _ZNK9oceanbase6common13ObStoreRowkey11get_obj_ptrEv:2979 + 0: _ZNK9oceanbase6common8ObRowkey11get_obj_ptrEv:2979 + 0: 993 + 16: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE2atEl:6951 + 6: 993 + 17: _ZNK9oceanbase6common5ObObj8get_typeEv:4965 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:4965 + 0: 993 + 25.1: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:2979 + 0: 993 + 29.1: _ZNK9oceanbase6common5ObObj18get_collation_typeEv:8 + 0: _ZNK9oceanbase6common9ObObjMeta18get_collation_typeEv:8 + 0: 2 + 36: _ZN9oceanbase8memtable13ObMemtableKey6encodeEPKNS_6common13ObStoreRowkeyE:7000 + 3: 1000 + 10.1: _ZNK9oceanbase8memtable13ObMemtableKey16dup_without_hashINS_6common12ObIAllocatorEEEiRPS1_RT_:523785 + 2: 1000 + 3: 1015 _ZN9oceanbase6common26ObWrapperAllocatorWithAttr5allocEl:1025 + 4: 1015 + 5: 2 + 6.1: 2 + 7.1: 1015 _ZN9oceanbase6common26ObWrapperAllocatorWithAttr5allocEl:1061 + 8: 960 + 9: 2 + 11: 2 + 12.1: 2 + 13.1: 1003 + 14: 2 + 15: 2 + 16: 2 + 18.1: 2 + 20: 1003 + 22: 1003 + 4.1: _ZN9oceanbase8memtable13ObMemtableKeyC2Ev:11165 + 0: 1015 + 8.1: _ZN9oceanbase6common13ObStoreRowkeyC2Ev:9600 + 0: 960 + 13.1: _ZNK9oceanbase6common13ObStoreRowkey9deep_copyERS1_RNS0_12ObIAllocatorE:419190 + 2: 960 + 3: _ZNK9oceanbase6common8ObRowkey9deep_copyINS0_12ObIAllocatorEEEiRS1_RT_:406710 + 2: 960 + 4: 913 + 6: 913 + 8: 2 + 9.1: 1025 _ZN9oceanbase6common26ObWrapperAllocatorWithAttr5allocEl:1047 + 10: 2 + 11.1: 2 + 13.1: 1003 + 14.1: 2 + 15: 2 + 17: 2 + 18: 2 + 22: 2 + 4: _ZNK9oceanbase6common8ObRowkey18get_deep_copy_sizeEv:149832 + 2: 960 + 3: 960 + 4: 912 + 7: 2 + 8.1: 2 + 11: 12 + 11.1: 960 + 12: 931 + 6: _ZNK9oceanbase6common8ObRowkey8is_legalEv:14400 + 0: 960 + 12: _ZNK9oceanbase6common5ObObj18get_deep_copy_sizeEv:87922 + 3: 960 + 4: 12 + 5.1: 933 + 6: 2 + 3: _ZNK9oceanbase6common5ObObj14is_string_typeEv:43284 + 0: _ZNK9oceanbase6common9ObObjMeta14is_string_typeEv:43284 + 0: 960 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:7914 + 0: 960 + 0.3: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:25510 + 0: 960 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:4804 + 2: 960 + 5.2: _ZN9oceanbase6common15ob_is_number_tcENS0_9ObObjTypeE:15074 + 0: 933 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:1888 + 2: 933 + 13.1: _ZNK9oceanbase6common8ObRowkey9deep_copyERS1_Pcl:201890 + 2: 1025 + 5: 2 + 6: 2 + 7.1: 2 + 9.1: 1025 + 10: 1003 + 11.1: 2 + 14: 1003 + 19: 1003 + 3: _ZN9oceanbase6common8ObRowkey5resetEv:10250 + 0: 1025 + 5: _ZNK9oceanbase6common8ObRowkey8is_legalEv:13325 + 0: 1025 + 10: _ZNK9oceanbase6common8ObRowkey9deep_copyEPcl:111301 + 2: 1025 + 4: 1025 + 5: 1025 + 6: 7 + 7.1: 7 + 14: 1025 + 16.1: 1033 + 16.3: 1033 + 16.5: 1033 + 17: 1033 _ZN9oceanbase6common5ObObj9deep_copyERKS1_PclRl:1042 + 18.1: 7 + 24: 7 + 14: _ZN9oceanbase6common8ObRowkey6assignEPNS0_5ObObjEl:7021 + 2: 1003 + 3: 1003 + 17: _ZN9oceanbase6common8ObRowkey6assignEPNS0_5ObObjEl:30 + 3: 2 + 27: _ZN9oceanbase8memtable10ObMemtable15get_mvcc_engineEv:7042 + 0: 1006 + 38.1: _ZNK9oceanbase7storage15ObTableReadInfo17get_request_countEv:6790 + 1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:6790 + 0: 970 + 38.2: _ZNK9oceanbase7storage15ObTableReadInfo23get_schema_rowkey_countEv:3880 + 1: 970 + 38.3: _ZN9oceanbase8memtable11ObNopBitMap4initEll:54356 + 2: 970 + 3: 970 + 4: 970 + 5: 970 + 6: 970 + 2: _ZN9oceanbase8memtable11ObNopBitMap8round_upEl:7760 + 2: 970 +_ZN9oceanbase6common20ObNullSafeDatumTCCmpILNS0_14ObObjTypeClassE1ELS2_1ELb1EE3cmpERKNS0_7ObDatumES6_:6950784:154414 + 0: 151104 + 2: 151104 + 2.1: 0 + 6.1: 151104 + 11: 151104 + 2: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:604416 + 0: 151104 + 9: _ZN9oceanbase6common9datum_cmp14ObTCPayloadCmpILNS0_14ObObjTypeClassE1EE3cmpERKNS0_7ObDatumES7_:4079808 + 2: 151104 + 2: _ZN9oceanbase6common14ObDatumPayloadILNS0_14ObObjTypeClassE1EE3getERKNS0_7ObDatumE:906624 + 0: 151104 + 2.4: _ZN9oceanbase6common14ObDatumPayloadILNS0_14ObObjTypeClassE1EE3getERKNS0_7ObDatumE:755520 + 0: 151104 +_ZN9oceanbase3lib2_SILNS0_13ContextSourceE1EEC2IJNS0_11DynamicInfoERNS0_12ContextParamEPNS0_10StaticInfoEEEEbDpOT_:6909476:5584 + 2: 4929 + 3: 4929 + 4: 4929 + 6.3: 5568 + 7.1: 1 + 7.2: 1 + 7.3: 1 + 7.6: 1 + 9: 5568 + 10.1: 5568 + 12: 5568 + 16: 5568 + 17.5: 5568 + 17.6: 1 + 0: _ZN9oceanbase3lib13MemoryContextC2Ev:128154 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:128154 + 2: 4929 + 8: 4929 + 1: _ZN9oceanbase3lib6_SBaseC2Ev:34503 + 1: 4929 + 6: _ZN9oceanbase3lib4Flow11current_ctxEv:138143 + 2: _ZN9oceanbase3lib4Flow12current_flowEv:138143 + 3: 4929 + 8: 1 + 10: 1 + 11: 1 + 12: 1 + 8.1: _ZN9oceanbase3lib4FlowC2ERNS0_13MemoryContextE:54 + 1: 1 + 3: 1 + 11: _ZL12abort_unlessb:16 + 5: 1 + 6: 1 + 6.1: _ZNK9oceanbase3lib13MemoryContextptEv:19716 + 1: 4929 + 6.2: _ZN9oceanbase3lib17__MemoryContext__14create_contextIJRNS0_12ContextParamERPNS0_10StaticInfoEEEEiRNS0_13MemoryContextERS1_RKNS0_11DynamicInfoEDpOT_:5319078 + 5: 4929 + 7: 4929 + 8: 5568 + 9.1: 1 + 9.2: 1 + 9.5: 1 + 9.7: 1 + 12: 1 + 14: 5568 + 15: 5568 + 19: 5568 + 7: _ZN9oceanbase3lib17__MemoryContext__C2EbRKNS0_11DynamicInfoEPS1_RNS0_12ContextParamEPKNS0_10StaticInfoE:1015374 + 3: 4929 + 4: 4929 + 5: 4929 + 6: 4929 + 7: 4929 + 8: 4929 + 9: 4929 + 10: 4929 + 11: 4929 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:152799 + 5: 4929 + 7: 4929 + 5.3: _ZN9oceanbase3lib8TreeNodeC2EPS1_b:167586 + 2: 4929 + 4: 4929 + 6: 4929 + 7: 4929 + 8: _ZN9oceanbase3lib17__MemoryContext__4initEv:3476341 + 5: 4929 + 6: 4929 _ZN9oceanbase3lib17ObMallocAllocator12get_instanceEv:5088 + 8: 5658 + 8.1: 5312 + 9: 5658 _ZNK9oceanbase3lib17ObMallocAllocator24get_tenant_ctx_allocatorEmm:5658 + 10: 5312 + 13: 5289 + 15: 5289 + 16: 5289 + 17: 5289 + 27: 5289 + 31: 5238 + 33: 5714 + 34: 5714 + 34.3: 5568 + 38: 1 + 2: _ZN9oceanbase3lib8TreeNode4initEv:315655 + 2: 4929 + 4: 4929 + 5: _ZN9oceanbase3lib8TreeNode9add_childERS1_:271294 + 2: 4929 + 3.1: 1 + 4: 1 + 7: 1 + 8: 4929 + 9: 4929 + 10: 4929 + 11: 4929 + 13: 1 + 14: 1 + 15: 1 + 17: 1 + 18: 1 + 20: 4929 + 21: 1 + 7.1: _ZL12abort_unlessb:10 + 6: 1 + 27: _ZN9oceanbase3lib17__MemoryContext__10init_allocERNS_6common11ObAllocatorEbj:1131208 + 3: 5289 + 4: 1 + 5: 1 + 6: 1 + 9: 1 + 10: 1 + 14: 5289 + 15: 5289 + 15.1: 5299 _ZTWN9oceanbase3lib17ContextTLOptGuard13enable_tl_optE:5888 + 18: 5238 + 19: 5238 + 4: _ZN9oceanbase6common11ObAllocatorC2EPNS_3lib17__MemoryContext__ERKNS2_9ObMemAttrEbj:196 + 2: 1 + 3: 1 + 4: 1 + 5: 1 + 6: 1 + 7: 1 + 9: 1 + 10: 1 + 11: 1 + 0.1: _ZN9oceanbase3lib18SetDoNothingLockerC2Ev:18 + 0: 1 + 7: _ZN9oceanbase3lib7ObMutexC2Ej:19 + 1: 1 + 8: _ZN9oceanbase3lib9SetLockerC2ERNS0_7ObMutexE:25 + 1: 1 + 12: _ZN9oceanbase3lib9ObjectSet16set_check_unfreeEb:8 + 0: 1 + 9: _ZN9oceanbase6common19ObParallelAllocatorC2ERNS0_11ObAllocatorEPNS_3lib17__MemoryContext__ERKNS4_9ObMemAttrEij:141 + 5: 1 + 6: 1 + 6.3: 1 + 7: 1 + 8: 1 + 9.1: 1 + 9.3: 1 + 10: 1 + 0.1: _ZN9oceanbase3lib7ObMutexC2Ej:25 + 1: 1 + 18: _ZN9oceanbase6common11ObAllocatorC2EPNS_3lib17__MemoryContext__ERKNS2_9ObMemAttrEbj:973374 + 2: 5198 + 3: 5198 + 4: 5198 + 5: 5198 + 6: 5198 + 7: 5198 + 9: 5596 _ZN9oceanbase3lib9ObjectSetC1EPNS0_17__MemoryContext__Ej:5789 + 10: 5238 + 11: 5198 + 0.1: _ZN9oceanbase3lib18SetDoNothingLockerC2Ev:93564 + 0: 5198 + 7: _ZN9oceanbase3lib7ObMutexC2Ej:82352 + 1: 5596 _ZN9oceanbase6common12ObLatchMutexC1Ev:5580 + 8: _ZN9oceanbase3lib9SetLockerC2ERNS0_7ObMutexE:139900 + 1: 5596 + 12: _ZN9oceanbase3lib9ObjectSet16set_check_unfreeEb:41904 + 0: 5238 + 31: _ZN9oceanbase6common16ObArenaAllocatorC2ERNS0_12ObIAllocatorEl:749059 + 1: 5238 + 1.2: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:633823 + 2: 5238 + 3: 5238 + 4: 5238 + 5: 5238 + 6: 5238 + 7.1: 1 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:209520 + 0: 5238 + 32: _ZN9oceanbase6common16ObArenaAllocator8set_attrERKNS_3lib9ObMemAttrE:191660 + 2: 5180 + 3: 5180 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE10set_ctx_idEl:36260 + 0: _ZN9oceanbase6common19ModulePageAllocator10set_ctx_idEl:36260 + 0: 5180 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9set_labelERKNS_3lib7ObLabelE:46620 + 0: _ZN9oceanbase6common19ModulePageAllocator9set_labelERKNS_3lib7ObLabelE:46620 + 0: 5180 + 33: _ZN9oceanbase6common20ObSafeArenaAllocatorC2ERNS0_16ObArenaAllocatorE:233798 + 1: 5180 + 3: 5180 + 2: _ZN9oceanbase6common10ObSpinLockC2Ej:104298 + 0: 5180 _ZN9oceanbase6common12ObLatchMutexC1Ev:5842 + 1: 5714 + 9.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:37 + 0: 1 + 15: _ZN9oceanbase3lib17__MemoryContext__10gen_seq_idEv:339711 + 3: 5568 + 3: _ZN9oceanbase6common8get_itidEv:172671 + 4: 5568 + 5: 1 + 6: 1 + 8: 1 + 16: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:172608 + 2: 5568 + 4: 5568 + 8: 5568 + 7.5: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:37 + 0: 1 + 9: _ZN9oceanbase3lib4FlowC2ERNS0_13MemoryContextE:250560 + 1: 5568 + 3: 5568 + 10: _ZN9oceanbase3lib4Flow4initEv:373085 + 4: 5568 + 7: 5568 + 8: 5568 + 9: 5568 + 12: 5568 + 7: _ZL12abort_unlessb:33413 + 5: 5568 + 6: 1 +_ZN9oceanbase3lib9ObjectMgr12alloc_objectEmRKNS0_9ObMemAttrE:6820231:5077 + 1: 4904 + 5.1: 5425 + 5.2: 4948 + 5.3: 4948 + 5.5: 5425 + 6: 4948 + 7: 4948 + 8: 4948 + 10.1: 5179 + 16: 0 + 17: 0 + 18: 0 + 19: 0 + 20: 0 + 22.1: 0 + 28: 0 + 34: 5392 + 3: _ZN9oceanbase6common8get_itidEv:171640 + 4: 4904 + 5: 0 + 6: 0 + 8: 0 + 10.1: _ZN9oceanbase3lib12SubObjectMgr7trylockEv:228994 + 0: 4948 + 0: _ZN9oceanbase3lib9SetLocker7trylockEv:95398 + 2: 5179 + 2: _ZN9oceanbase3lib7ObMutex7trylockEv:44532 + 0: 4948 _ZN9oceanbase6common12ObLatchMutex8try_lockEjPKj:5223 + 11: _ZN9oceanbase3lib12SubObjectMgr12alloc_objectEmRKNS0_9ObMemAttrE:5300856 + 2: _ZN9oceanbase3lib9ObjectSet12alloc_objectEmRKNS0_9ObMemAttrE:5223739 + 6: 5135 + 8: 0 + 9: 0 + 12: 5261 + 15: 5261 _ZN9oceanbase3lib12SubObjectMgr24get_tenant_ctx_allocatorEv:5288 + 16: 5171 + 17: 5171 + 22: 5115 + 25: 130 + 26: 130 + 27.1: 5115 + 28: 130 + 31: 130 + 32: 130 + 43: 4930 + 44: 4930 + 46: 4930 + 47: 4930 + 48: 5873 + 50: 0 + 52: 5873 + 52.1: 131 + 53: 131 + 54: 0 + 56: 5790 + 58: 5790 + 59: 5790 + 60: 5021 + 443: 130 + 4: _ZN9oceanbase6common16ObMemLeakChecker12get_instanceEv:87295 + 2: 5135 + 2.1: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common16ObMemLeakCheckerC2Ev:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 0: _ZN9oceanbase6common4hash9ObHashMapINS0_16ObMemLeakChecker6PtrKeyENS3_4InfoENS1_24LatchReadWriteDefendModeENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS4_S5_EEEELi13ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev:0 + 0: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS0_16ObMemLeakChecker6PtrKeyENS5_4InfoEEEEELi13ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEC2Ev:0 + 0: 0 + 0.1: _ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocatorC2EmRKNS_3lib7ObLabelE:0 + 3: 0 + 4: 0 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 7: 0 + 2: _ZN9oceanbase6common4hash10SpinIniterC2ERVi:0 + 2: 0 + 3.1: 0 + 0.1: _ZN9oceanbase6common4hash11ObHashTableINS0_16ObMemLeakChecker6PtrKeyENS1_11HashMapPairIS4_NS3_4InfoEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi13ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev:0 + 0: 0 + 1: 0 + 0: _ZN9oceanbase6common8ObMallocC2Ev:0 + 0: 0 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: _ZN9oceanbase6common4hash9constructIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_16ObMemLeakChecker6PtrKeyENS5_4InfoEEENS0_7ObLatchENS1_5NCondEEEEEvRT_:0 + 2: _ZN9oceanbase6common4hash12do_constructIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_16ObMemLeakChecker6PtrKeyENS5_4InfoEEENS0_7ObLatchENS1_5NCondEEEEEvRT_NS1_16NormalPointerTagE:0 + 2: 0 + 0.2: _ZN9oceanbase6common8ObMallocC2Ev:0 + 0: 0 + 4: _ZN9oceanbase6common8ObMalloc8set_attrERKNS_3lib9ObMemAttrE:0 + 0: 0 + 8: _ZNK9oceanbase6common16ObMemLeakChecker13get_static_idEv:0 + 0: 0 + 15.1: _ZN9oceanbase3lib20ObTenantCtxAllocator10get_ctx_idEv:41368 + 2: 5171 + 16: _ZL12abort_unlessb:32326 + 5: 5171 + 6: 130 + 18: _ZN9oceanbase3lib9ObjectSet18do_free_dirty_listEv:54576 + 2: 5437 + 5: 7 _ZN9oceanbase3lib11ObLockGuardINS0_7ObMutexEEC2ERS2_:8 + 6: 7 + 8: 7 + 9: 7 _ZN9oceanbase3lib11ObLockGuardINS0_7ObMutexEED2Ev:8 + 10.1: 144 + 12: 145 + 13: 145 _ZN9oceanbase3lib9ObjectSet14do_free_objectEPNS0_7AObjectE:14 + 65389: 131 + 29: _ZN9oceanbase3lib9ObjectSet19alloc_normal_objectEjRKNS0_9ObMemAttrE:159965 + 5: 130 + 6: 130 + 6.1: 130 + 7: 130 + 8: 130 + 9: 130 + 10: 130 + 14: 130 + 14.1: 131 + 15: 131 + 17: 130 + 22.1: 131 + 22.2: 131 + 23: 131 _ZN9oceanbase3lib9ObjectSet15get_free_objectEj:1 + 24: 131 + 25: 130 + 35: 131 + 35.1: 131 + 36: 131 + 36.1: 131 + 37: 131 + 37.1: 131 + 39: 131 + 40: 131 _ZN9oceanbase3lib9ObjectSet9merge_objEPNS0_7AObjectE:1 + 43: 131 + 45: 130 + 49: 130 + 51: 130 + 53: 130 + 7.1: _ZN9oceanbase3lib7ABitSet5issetEi:6110 + 3: 130 + 6: 130 + 9: 130 + 16: _ZN9oceanbase3lib9ObjectSet9split_objEPNS0_7AObjectEjRS3_:23790 + 4: 130 + 6.1: 130 + 9: 130 + 10: 130 + 11: 130 + 12: 130 + 13: 130 + 16: 130 + 19: 130 + 9: _ZNK9oceanbase3lib7AObject8phy_nextEi:1690 + 2: 130 + 9.1: _ZN9oceanbase3lib7AObjectC2Ev:3510 + 1: 130 + 2: 130 + 3: 130 + 16: _ZNK9oceanbase3lib7AObject7is_lastEj:2470 + 2: 130 + 18: _ZNK9oceanbase3lib7AObject8is_validEv:1820 + 2: 130 + 18.1: _ZL12abort_unlessb:780 + 5: 130 + 6: 0 + 40.1: _ZN9oceanbase3lib9ObjectSet15add_free_objectEPNS0_7AObjectE:29147 + 2: 131 + 5: 131 + 5.1: 131 + 6.1: 131 + 7: 131 + 8: 131 + 9: 131 + 10: 131 + 11: 131 + 12: 131 + 16: 130 + 17: 130 + 2: _ZL12abort_unlessb:786 + 5: 131 + 6: 0 + 3: _ZNK9oceanbase3lib7AObject8is_validEv:1703 + 2: 131 + 3.1: _ZL12abort_unlessb:786 + 5: 131 + 6: 0 + 8: _ZN9oceanbase3lib7ABitSet5issetEi:4323 + 3: 131 + 6: 131 + 9: 131 + 15: _ZN9oceanbase3lib7ABitSet3setEi:5590 + 7: 130 + 10: 130 + 11: 130 + 13: 130 + 43: _ZN9oceanbase3lib9ObjectSet11alloc_blockEmRKNS0_9ObMemAttrE:23165 + 2: 131 _ZN9oceanbase3lib12SubObjectMgr11alloc_blockEmRKNS0_9ObMemAttrE:1 + 4: 130 + 5: 130 + 6: 130 + 7: 130 + 8: 130 + 9: 130 + 11: 130 + 12: 130 + 14: 130 + 15: 130 + 16: 130 + 17: 130 + 48: _ZNK9oceanbase3lib6ABlock4dataEv:8840 + 2: _ZNK9oceanbase3lib6ABlock5chunkEv:1690 + 2: _ZN9oceanbase3lib6AChunk9ptr2chunkEPKv:1690 + 2: 130 + 3: _ZNK9oceanbase3lib6AChunk8is_validEv:1560 + 2: 130 + 3.1: _ZL12abort_unlessb:780 + 5: 130 + 6: 0 + 4: _ZNK9oceanbase3lib6AChunk8blk_dataEPKNS0_6ABlockE:4810 + 2: 130 + 3: 130 + 4: 130 + 48.1: _ZN9oceanbase3lib7AObjectC2Ev:5980 + 1: 130 + 2: 130 + 3: 130 + 50: _ZN9oceanbase3lib9ObjectSet9split_objEPNS0_7AObjectEjRS3_:21320 + 6.1: 130 + 10: 130 + 11: 130 + 12: 130 + 13: 130 + 16: 130 + 19: 130 + 9: _ZNK9oceanbase3lib7AObject8phy_nextEi:1690 + 2: 130 + 9.1: _ZN9oceanbase3lib7AObjectC2Ev:4290 + 1: 130 + 2: 130 + 3: 130 + 16: _ZNK9oceanbase3lib7AObject7is_lastEj:2730 + 2: 130 + 18: _ZNK9oceanbase3lib7AObject8is_validEv:1820 + 2: 130 + 18.1: _ZL12abort_unlessb:780 + 5: 130 + 6: 0 + 35: _ZN9oceanbase3lib9ObjectSet16alloc_big_objectEmRKNS0_9ObMemAttrE:1358569 + 3: 5115 + 9: 4930 + 3: _ZN9oceanbase3lib9ObjectSet11alloc_blockEmRKNS0_9ObMemAttrE:697209 + 2: 5115 _ZN9oceanbase3lib12SubObjectMgr11alloc_blockEmRKNS0_9ObMemAttrE:5138 + 4: 5114 + 5: 5114 + 6: 5114 + 7: 5114 + 8: 5114 + 9: 5114 + 11: 131 + 12: 131 + 14: 4930 + 15: 4930 + 16: 4930 + 17: 4930 + 166.1: 131 + 6: _ZNK9oceanbase3lib6ABlock4dataEv:320450 + 2: _ZNK9oceanbase3lib6ABlock5chunkEv:49300 + 2: _ZN9oceanbase3lib6AChunk9ptr2chunkEPKv:49300 + 2: 4930 + 3: _ZNK9oceanbase3lib6AChunk8is_validEv:59160 + 2: 4930 + 3.1: _ZL12abort_unlessb:29580 + 5: 4930 + 6: 0 + 4: _ZNK9oceanbase3lib6AChunk8blk_dataEPKNS0_6ABlockE:182410 + 2: 4930 + 3: 4930 + 4: 4930 + 6.1: _ZN9oceanbase3lib7AObjectC2Ev:226780 + 1: 4930 + 2: 4930 + 3: 4930 + 40: _ZL12abort_unlessb:54230 + 5: 4930 + 6: 0 + 41: _ZNK9oceanbase3lib7AObject8is_validEv:64090 + 2: 4930 + 41.1: _ZL12abort_unlessb:29580 + 5: 4930 + 6: 0 + 52.1: _ZNK9oceanbase6common16ObMemLeakChecker11is_wildcardEv:655 + 0: 131 + 52.2: _ZN9oceanbase6common16ObMemLeakChecker11label_matchERNS_3lib7AObjectE:2358 + 2: 131 + 60: _ZNK9oceanbase3lib7AObject4holdEj:2173973 + 2: 5790 + 2.1: 131 + 4: 130 + 2.1: _ZNK9oceanbase3lib7AObject7is_lastEj:1834 + 2: 131 + 3: _ZNK9oceanbase3lib7AObject5blockEv:701977 + 2: _ZN9oceanbase3lib6AChunk9ptr2chunkEPKv:63696 + 2: 5308 + 3: _ZNK9oceanbase3lib6AChunk8is_validEv:63696 + 2: 5308 + 3.1: _ZL12abort_unlessb:31848 + 5: 5308 + 6: 0 + 4: _ZNK9oceanbase3lib6AChunk7ptr2blkEPKv:542737 + 2: 5308 + 4: 5035 + 3: _ZNK9oceanbase3lib6AChunk17max_blk_offset_leEi:292594 + 2: _ZNK9oceanbase3lib13ASimpleBitSetILi256EE10max_bit_leEi:292594 + 2: 5308 + 3: 5308 + 7: 5308 + 9: 5308 + 11.1: 131 + 12: 5035 + 8: _ZN9oceanbase3lib13ASimpleBitSetILi256EE10max_bit_leEmi:126136 + 2: 5308 + 3: 5035 + 4: 5308 + 3.1: _ZNK9oceanbase3lib6ABlock4holdEPm:1407615 + 5: 5035 + 5.1: 5035 + 5.2: 219 + 8: 5026 + 3: _ZNK9oceanbase3lib6AChunk10blk_offsetEPKNS0_6ABlockE:312170 + 2: 5035 + 3: 5035 + 3.2: _ZL12abort_unlessb:30210 + 5: 5035 + 6: 0 + 5.1: _ZNK9oceanbase3lib6AChunk19is_first_blk_offsetEiPi:10070 + 2: 5035 + 5.2: _ZNK9oceanbase3lib6AChunk18is_last_blk_offsetEiPi:36527 + 4: 219 + 4: _ZNK9oceanbase3lib6AChunk17min_blk_offset_geEi:35870 + 2: _ZNK9oceanbase3lib13ASimpleBitSetILi256EE10min_bit_geEi:35870 + 8: 876 + 9: 876 + 12: 219 + 8: _ZN9oceanbase3lib13ASimpleBitSetILi256EE10min_bit_geEmi:10490 + 3: 219 + 4: 876 + 6: _ZNK9oceanbase3lib6AChunk4holdEPm:10400 + 2: 130 + 2: _ZN9oceanbase3lib6AChunk9calc_holdEllPm:9360 + 3: 130 + 4: 130 + 2: _ZN9oceanbase3lib9align_up2Emm:2470 + 2: 130 + 3.2: _ZN9oceanbase3libL13get_page_sizeEv:2730 + 2: 130 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 3: 130 + 3.4: _ZN9oceanbase3lib9align_up2Emm:1170 + 2: 130 + 8: _ZNK9oceanbase3lib6AChunk11blk_nblocksEPKNS0_6ABlockE:831142 + 4: 5026 + 4.3: 5026 + 2: _ZNK9oceanbase3lib6AChunk10blk_offsetEPKNS0_6ABlockE:45306 + 3.2: _ZL12abort_unlessb:45306 + 5: 5034 + 6: 0 + 4: _ZNK9oceanbase3lib6AChunk18is_last_blk_offsetEiPi:735576 + 4: 5034 + 4: _ZNK9oceanbase3lib6AChunk17min_blk_offset_geEi:705396 + 2: _ZNK9oceanbase3lib13ASimpleBitSetILi256EE10min_bit_geEi:705396 + 2: 5034 + 7: 5034 + 8: 25170 + 9: 25170 + 11.1: 2040 + 12: 5026 + 8: _ZN9oceanbase3lib13ASimpleBitSetILi256EE10min_bit_geEmi:258509 + 2: 25170 + 3: 5021 + 4: 25170 + 12: _ZN9oceanbase3lib12SubObjectMgr6unlockEv:161192 + 0: 5021 + 0: _ZN9oceanbase3lib9SetLocker6unlockEv:25625 + 2: 5021 + 2: _ZN9oceanbase3lib7ObMutex6unlockEv:5541 + 0: 5021 _ZN9oceanbase6common12ObLatchMutex6unlockEv:5528 + 16.1: _ZNK9oceanbase6common13ObCtxParallel15parallel_of_ctxEl:0 + 3: 0 + 4: 0 + 21: _ZN9oceanbase3lib12SubObjectMgr12alloc_objectEmRKNS0_9ObMemAttrE:0 + 2: 0 + 24: _ZN9oceanbase3lib9ObjectMgr15destroy_sub_mgrEPNS0_12SubObjectMgrE:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 3.1: _ZNK9oceanbase3lib17ObMallocAllocator24get_tenant_ctx_allocatorEmm:0 + 4: 0 + 7.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 29: _ZN9oceanbase3lib12SubObjectMgr4lockEv:0 + 0: 0 + 30: _ZN9oceanbase3lib12SubObjectMgr12alloc_objectEmRKNS0_9ObMemAttrE:0 + 2: 0 + 31: _ZN9oceanbase3lib12SubObjectMgr6unlockEv:0 + 0: 0 +_ZN9oceanbase12blocksstable10ObDatumRow5resetEv:6802204:4290 + 1: 4216 + 2: 4216 _ZN9oceanbase6common8ObNewRow5resetEv:4661 + 4: 4230 + 6: 3981 + 13: 3981 + 15: 3981 + 3: _ZN9oceanbase7storage13ObObjBufArray5resetEv:317250 + 2: 4230 + 2.1: 4230 + 3: 0 + 5: 4230 + 6: 4230 + 7: 4230 + 8: 4230 + 5: _ZN9oceanbase12blocksstable20ObStorageDatumBuffer5resetEv:5927958 + 2: 4230 + 2.1: 0 + 3: 0 + 5: 4230 + 6: 4230 + 7: 4230 + 8.1: 133800 + 8.3: 133800 + 9: 133800 + 11: 3981 + 9: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:2522610 + 0: 133800 + 12: _ZN9oceanbase12blocksstable12ObDmlRowFlag5resetEv:35829 + 2: 3981 + 14: _ZN9oceanbase6common16ObArenaAllocator5resetEv:179145 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:179145 + 4.1: 3981 + 6: 0 + 7: 0 + 13: 3981 + 14: 3981 + 15: 3981 + 18: 3981 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:0 + 0: 0 + 5.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:0 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase3sql20ObAggregateProcessor13inner_processERNS1_8GroupRowEllb:6799559:24859 + 2: 21759 + 3: 21759 + 8.1: 27915 + 8.3: 27915 + 9: 21759 + 10: 21759 + 11: 21759 + 12: 285 + 13.1: 285 + 14.1: 21759 + 15: 0 + 16: 0 + 17: 285 + 18.1: 285 + 19.1: 285 + 20.1: 285 + 30.1: 26681 _ZNK9oceanbase3sql10ObAggrInfo9eval_aggrERNS0_17ObChunkDatumStore15ShadowStoredRowERNS0_9ObEvalCtxE:25220 + 31.1: 285 + 33: 26681 + 36: 285 + 37.1: 285 + 40: 26681 + 40.1: 345 + 40.2: 335 _ZN9oceanbase3sql20ObAggregateProcessor19prepare_aggr_resultERKNS0_17ObChunkDatumStore9StoredRowEPKNS_6common8ObIArrayIPNS0_6ObExprEEERNS1_8AggrCellERKNS0_10ObAggrInfoE:265 + 43.1: 73 + 44.2: 28581 + 44.3: 26934 _ZN9oceanbase3sql20ObAggregateProcessor19process_aggr_resultERKNS0_17ObChunkDatumStore9StoredRowEPKNS_6common8ObIArrayIPNS0_6ObExprEEERNS1_8AggrCellERKNS0_10ObAggrInfoE:27939 + 47.1: 285 + 53: 28794 + 206: 0 + 9: _ZN9oceanbase6common12ObIArrayWrapINS_3sql10ObAggrInfoEE2atEl:239349 + 6: 21759 + 14.1: _ZNK9oceanbase3sql10ObAggrInfo22is_implicit_first_aggrEv:130554 + 0: 21759 + 15: _ZNK9oceanbase3sql20ObAggregateProcessor8AggrCell16get_is_evaluatedEv:0 + 0: 0 + 17: _ZNK9oceanbase3sql6ObExpr4evalERNS0_9ObEvalCtxERPNS_6common7ObDatumE:9461 + 4: 0 + 6: 0 + 7: 0 + 9: 0 + 10: 73 + 10.1: 73 + 11: 73 + 13: 285 + 15.1: 0 + 15.2: 0 + 17: 0 + 18: 0 + 20: 0 + 21: 0 + 22: 0 + 24: 285 + 9: _ZNK9oceanbase3sql6ObExpr15is_batch_resultEv:0 + 0: 0 + 11: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:292 + 0: 73 + 24: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:3420 + 0: 285 + 19.1: _ZN9oceanbase3sql20ObAggregateProcessor15clone_aggr_cellERNS1_8AggrCellERKNS_6common7ObDatumEb:266568 + 3: 73 + 5: 73 + 6: 285 + 7.1: 285 + 9: 73 + 10: 73 + 11: 73 + 13: 285 + 6: _ZN9oceanbase3sql20ObAggregateProcessor10clone_cellERNS1_8AggrCellElPNS_6common7ObDatumE:252689 + 5: 73 + 6: 285 + 7: 73 + 12: 73 + 12.1: 285 + 14: 73 + 16: 73 + 17: 73 + 23.1: 73 + 24: 285 + 25.1: 285 + 27.1: 73 + 28: 285 + 29.1: 285 + 32: 73 + 33: 73 + 35: 73 + 36: 285 + 37.1: 285 + 51: 285 + 52: 285 + 53.1: 285 + 63: 73 + 66: 73 + 12: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell7get_bufEv:584 + 0: 73 + 9: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell7get_bufEv:511 + 0: 73 + 22: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell16set_is_evaluatedEb:438 + 0: 73 + 34: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell9get_extraEv:1425 + 0: 285 + 36: _ZN9oceanbase3sql12ObSortOpImpl7add_rowERKNS_6common8ObIArrayIPNS0_6ObExprEEE:6555 + 2: 285 + 3: 285 +_ZN9oceanbase6common8ObLogger13need_to_printEmi:6780815:51975 + 1: 49495 + 2: 49495 + 2: _ZNK9oceanbase6common8ObLogger13get_log_levelEm:5295965 + 3: 49495 + 8: 49495 + 11: 49495 + 13.1: 49495 + 18: 49495 + 6: _ZNK9oceanbase6common15ObLogIdLevelMap9get_levelEm:1385860 + 2: 49495 + 3: 49495 + 9: _ZN9oceanbase6common21ObThreadLogLevelUtils3getEv:1979800 + 5: 49495 + 3: _ZN9oceanbase6common21ObThreadLogLevelUtils20get_thread_log_levelEv:1039395 + 3: _ZN9oceanbase6common15get_local_storeEv:1039395 + 3: 49495 + 3.1: 0 + 3.1: _ZN9oceanbase6common12ObLocalStoreC2Ev:0 + 1: 0 + 0: _ZN9oceanbase6common16ObThreadLogLevelC2Ev:0 + 0: 0 + 12: _ZNK9oceanbase6common15ObLogIdLevelMap9get_levelEm:0 + 2: 0 + 3: 0 +_ZN9oceanbase7storage14ObTabletHandleaSERKS1_:6766685:26353 + 1: 24773 + 2: 24773 + 3: 24773 + 5: 24994 + 7: 24994 + 3: _ZN9oceanbase7storage14ObTabletHandle5resetEv:1245325 + 2: 24773 + 3: 33 + 5: 25238 + 3: _ZNK9oceanbase7storage14ObTabletHandle15calc_wash_scoreENS0_18WashTabletPriorityE:1815 + 2: 33 + 4: 33 + 4.2: 33 + 6: 33 + 7.1: 33 + 11: 33 + 12: 33 + 3.1: _ZN9oceanbase7storage8ObTablet17update_wash_scoreEl:1683 + 3: 33 + 4: 33 + 5.1: 33 + 6: _ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE5resetEv:917288 + 2: 25238 + 3: 25800 + 2: _ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE9reset_objEv:205798 + 2: 25238 + 3: 33 + 4.1: 33 + 5: 33 + 7: 33 + 8: 33 + 9: 33 + 10.1: 33 + 11.1: 33 + 13: 33 + 7: _ZN9oceanbase7storage8ObTablet7dec_refEv:297 + 2: 33 + 4: _ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEEaSERKS3_:3334732 + 3: 25800 + 4: 24994 + 5: 24994 + 6: 24994 + 7.1: 33 + 8: 33 + 10: 24994 + 11: 24994 + 12: 24994 + 13.1: 33 + 3: _ZN9oceanbase7storage14ObTabletHandle5resetEv:1267124 + 2: 25800 + 3: 33 + 5: 25847 + 3: _ZNK9oceanbase7storage14ObTabletHandle15calc_wash_scoreENS0_18WashTabletPriorityE:1782 + 2: 33 + 4: 33 + 4.2: 33 + 6: 33 + 7.1: 33 + 11: 33 + 12: 33 + 3.1: _ZN9oceanbase7storage8ObTablet17update_wash_scoreEl:1650 + 3: 33 + 4: 33 + 5.1: 33 + 6: _ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE5resetEv:927892 + 2: 25847 + 3: 24994 + 2: _ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE9reset_objEv:210670 + 2: 25847 + 3: 33 + 4.1: 33 + 5: 33 + 7: 33 + 8: 33 + 9: 33 + 10.1: 33 + 11.1: 33 + 13: 33 + 7: _ZN9oceanbase7storage8ObTablet7dec_refEv:297 + 2: 33 + 11: _ZN9oceanbase7storage8ObTablet7inc_refEv:224946 + 2: 24994 + 12: _ZNK9oceanbase7storage8ObTablet7get_refEv:174958 + 0: 24994 +_ZN9oceanbase8observer16ObMPPacketSender11get_sessionERPNS_3sql16ObSQLSessionInfoE:6738688:4741 + 0: 0 + 1: 4698 + 2: 4698 + 3: 4698 + 3.1: 5268 _ZN9oceanbase8observer14global_contextEv:4742 + 4: 0 + 5.1: 0 + 6.1: 5268 _ZN9oceanbase8observer14global_contextEv:5332 + 7.1: 0 + 10.1: 5483 + 10.2: 0 + 10.4: 0 + 10.5: 0 + 10.7: 0 + 10.8: 0 + 10.9: 0 + 10.10: 0 + 10.17: 0 + 10.18: 0 + 10.20: 0 + 10.22: 0 + 10.24: 0 + 10.28: 0 + 13: 5483 + 6.2: _ZN9oceanbase3sql15ObSQLSessionMgr11get_sessionEjRPNS0_16ObSQLSessionInfoE:6036211 + 3: 5119 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:5084 + 4: 5119 + 5: 0 + 6: 0 + 2.1: _ZN9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE3getERKS3_RPS4_:5964598 + 3: 5258 + 5.2: 5180 + 8: 5066 + 12: 5066 + 4: _ZN9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE18get_retire_stationEv:126192 + 1: 5258 + 1.1: 0 + 1.2: 0 + 1.5: 0 + 1.7: 0 + 1.3: _ZN9oceanbase6common13RetireStationC2ERNS0_6QClockEl:0 + 0.2: 0 + 1: 0 + 0.1: _ZN9oceanbase6common13RetireStation10RetireListC2Ev:0 + 0: 0 + 0: _ZN9oceanbase6common10HazardListC2Ev:0 + 0: 0 + 0.4: _ZN9oceanbase6common10HazardListC2Ev:0 + 0: 0 + 4.1: _ZN9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE5GuardC2ERNS0_13RetireStationE:515284 + 0: _ZN9oceanbase6common9RefHandleC2ERNS0_13RetireStationE:89386 + 0: _ZN9oceanbase6common13BaseRefHandleC2ERNS0_13RetireStationE:89386 + 0: _ZN9oceanbase6common17get_global_qclockEv:89386 + 2: 5258 + 2.1: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common6QClockC2Ev:0 + 0: 0 + 0.1: _ZN9oceanbase6common6QClock9ClockSlotC2Ev:0 + 0: 0 + 0.4: _ZN9oceanbase6common13BaseRefHandle14enter_criticalEv:425898 + 0: _ZN9oceanbase6common6QClock14enter_criticalEv:425898 + 2: 5258 + 3.1: 5258 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 7.1: 0 + 7.3: 0 + 7.4: 0 + 8.1: 0 + 1: _ZN9oceanbase6common6QClock11get_slot_idEv:147224 + 0: _ZN9oceanbase6common8get_itidEv:147224 + 4: 5258 + 5: 0 + 6: 0 + 8: 0 + 3.1: _ZN9oceanbase6common6QClock6locateEm:31548 + 0: 5258 + 3.3: _ZN9oceanbase6common6QClock9get_clockEv:52580 + 0: 5258 + 3.4: _ZN9oceanbase6common6QClock9ClockSlot9set_clockEm:89386 + 0: 5258 + 5.1: _ZN9oceanbase6common6DCHashINS_3sql14SessionInfoKeyELl8EE3getERKS3_RPNS0_11KeyHashNodeIS3_EE:4550752 + 1: 5258 + 5.1: 5033 + 6.1: 5180 + 9.1: 0 + 3: _ZN9oceanbase6common11KeyHashNodeINS_3sql14SessionInfoKeyEEC2ERKS3_:941182 + 0: _ZN9oceanbase6common11KeyHashNodeINS_3sql14SessionInfoKeyEE9calc_hashERKS3_:941182 + 0: _ZNK9oceanbase3sql14SessionInfoKey4hashEv:446930 + 2: _ZN9oceanbase6common10murmurhashEPKvim:446930 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:446930 + 4: _ZN9oceanbase6common6DCHashINS_3sql14SessionInfoKeyELl8EE6HandleC2ERS4_Rii:325996 + 1: 5258 + 2: 5258 + 1: _ZN9oceanbase6common6DCHashINS_3sql14SessionInfoKeyELl8EE9get_qsyncEv:52580 + 1: 5258 + 1.1: 0 + 1.6: 0 + 1.2: _ZN9oceanbase6common7ObQSyncC2Ev:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ObQSync3RefC2Ev:0 + 0: 0 + 5: _ZN9oceanbase6common6DCHashINS_3sql14SessionInfoKeyELl8EE6Handle10search_preEmRPNS0_8HashNodeE:1566505 + 3: 5258 + 5.1: 0 + 2: _ZN9oceanbase6common6DCHashINS_3sql14SessionInfoKeyELl8EE6Handle11acquire_refEv:510026 + 0: 5258 + 0: _ZN9oceanbase6common7ObQSync11acquire_refEv:488994 + 2: 5258 + 3: 5258 + 4: 5258 + 5.1: 0 + 7: 5258 + 2: _ZN9oceanbase6common8get_itidEv:147224 + 4: 5258 + 5: 0 + 6: 0 + 8: 0 + 3: _ZN9oceanbase6common7ObQSync7add_refEll:105160 + 6: 5258 + 3: _ZN9oceanbase6common6DCHashINS_3sql14SessionInfoKeyELl8EE10search_preEmRPNS0_8HashNodeE:999541 + 2: 5033 + 2: _ZN9oceanbase6common6DCHashINS_3sql14SessionInfoKeyELl8EE24alloc_and_init_cur_arrayEv:783122 + 3: 5112 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 8.1: 0 + 9: 0 + 10: 0 + 12: 0 + 15: 0 + 15.1: 0 + 16.1: 5624 + 17.1: 0 + 20.4: 5599 _ZN9oceanbase6common11ObTimeGuardD2Ev:5602 + 20.5: 0 + 1: _ZN9oceanbase6common11ObTimeGuardC2EPKcl:572690 + 2: 5112 + 3: 5112 + 4: 5112 + 6: 5112 + 8: 5112 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:5258 + 2: 5258 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:5261 + 10: _ZN9oceanbase6common7DCArray4initEPNS0_8HashNodeES3_:0 + 2: 0 + 2.1: 0 + 2.3: 0 + 3: 0 + 7: 0 + 8: 0 + 244.2: 0 + 5: _ZN9oceanbase6common8HashNode10set_linkedEv:0 + 0: 0 + 0: _ZN9oceanbase6common8HashNode9load_hashEv:0 + 0: 0 + 11: _ZN9oceanbase6common11ObTimeGuard5clickEPKc:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 16: _ZNK9oceanbase6common11ObTimeGuard8get_diffEv:44480 + 2: 5624 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:5112 + 2: 5112 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:5122 + 3: _ZN9oceanbase6common7DCArray10locate_preEm:171122 + 2: 5033 + 4: 0 + 2: _ZN9oceanbase6common7DCArray12locate_prev_Em:140924 + 1: _ZN9oceanbase6common7DCArray6locateEm:90594 + 1: 5033 + 2.1: _ZN9oceanbase6common8HashNode9is_linkedEv:50330 + 0: 5033 + 5: _ZN9oceanbase6common7DCArray12locate_prev_Em:0 + 1: _ZN9oceanbase6common7DCArray6locateEm:0 + 1: 0 + 2.1: _ZN9oceanbase6common8HashNode9is_linkedEv:0 + 0: 0 + 6: _ZN9oceanbase6common6ol_getINS0_11KeyHashNodeINS_3sql14SessionInfoKeyEEEEEiPT_S7_RS7_:260145 + 4: 0 + 4: _ZN9oceanbase6common9ol_searchINS0_11KeyHashNodeINS_3sql14SessionInfoKeyEEEEEPT_S7_S7_RS7_:207475 + 4.1: 5033 + 5: 5033 + 4.1: _ZN9oceanbase6common9link_nextEPNS0_6ObLinkE:15283 + 2: 5033 + 5.1: _ZN9oceanbase6common11KeyHashNodeINS_3sql14SessionInfoKeyEE7compareEPS4_:161764 + 2: 5079 + 4.1: 5079 + 65458: 5033 + 7: _ZN9oceanbase3sql14SessionInfoKey7compareERKS1_:30186 + 3: 5031 + 5.1: _ZN9oceanbase6common11KeyHashNodeINS_3sql14SessionInfoKeyEE7compareEPS4_:52670 + 2: 5267 + 65439.1: 0 + 9.2: _ZN9oceanbase6common6DCHashINS_3sql14SessionInfoKeyELl8EE6HandleD2Ev:1243200 + 0: 5180 + 0.2: 0 + 0: _ZN9oceanbase6common6DCHashINS_3sql14SessionInfoKeyELl8EE6Handle6retireEil:1201760 + 1: 5180 + 2: 5180 + 4: 5180 + 6: 5180 + 7: 0 + 9: 0 + 10: 0 + 2: _ZN9oceanbase6common6DCHashINS_3sql14SessionInfoKeyELl8EE17change_node_countEl:512820 + 1: 5180 + 4: 5180 + 5: 5180 + 6: 5180 + 8: 5180 + 10: 0 + 11.1: 0 + 2: _ZN9oceanbase6common15ObSimpleCounter3incEl:41440 + 0: 5180 + 3: _ZNK9oceanbase6common15ObSimpleCounter5valueEv:36260 + 0: 5180 + 4: _ZSt3maxIlERKT_S2_S2_:51800 + 5: 5180 + 5: _ZSt3minIlERKT_S2_S2_:51800 + 5: 5180 + 10: _ZN9oceanbase6common6DCHashINS_3sql14SessionInfoKeyELl8EE6next2nEm:0 + 2: 0 + 4: _ZN9oceanbase6common6DCHashINS_3sql14SessionInfoKeyELl8EE15do_pending_taskEPNS0_7DCArrayE:212380 + 2: 5180 + 5: 5180 + 5.1: 0 + 6: 5180 + 7: 0 + 8: 0 + 10: 0 + 11: 0 + 3: _ZN9oceanbase6common7DCArray20copy_from_prev_arrayEPNS0_8HashNodeEl:77700 + 4: 5180 + 5: 0 + 5.1: 0 + 6: 0 + 6.1: 0 + 7.1: 0 + 7.3: 0 + 8: 0 + 10: 0 + 6.1: _ZN9oceanbase6common7DCArray17is_parent_retiredEv:0 + 0: 0 + 7: _ZN9oceanbase6common10ObSpinLock7trylockEv:0 + 2: 0 + 14: _ZN9oceanbase6common10ObSpinLock6unlockEv:0 + 2: 0 + 5: _ZN9oceanbase6common6DCHashINS_3sql14SessionInfoKeyELl8EE6Handle11release_refEv:310800 + 0: 5180 + 0: _ZN9oceanbase6common7ObQSync11release_refEl:233100 + 2: 5180 + 3: 5180 + 4.1: 0 + 2: _ZN9oceanbase6common7ObQSync7add_refEll:160580 + 3: 5180 + 6: 5180 + 7: _ZN9oceanbase6common7ObQSync4syncEv:0 + 2.1: 0 + 2.3: 0 + 5.1: 0 + 8: _ZN9oceanbase6common7DCArray13retire_parentEv:0 + 0: 0 + 9: _ZN9oceanbase6common7ObQSync4syncEv:0 + 2.1: 0 + 2.3: 0 + 5.1: 0 + 9: _ZN9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE11try_inc_refEPNS0_12LinkHashNodeIS3_EE:238102 + 6.1: 5066 + 4: _ZN9oceanbase6common9RefHandle3incEPNS0_7RefNodeE:182376 + 0: _ZN9oceanbase6common15faa_if_positiveEPii:182376 + 2: 5066 + 4.1: 5066 + 4.2: 5066 + 4.3: 5066 + 6.1: _ZN9oceanbase6common15is_last_bit_setEm:25330 + 2: 5066 + 7: _ZN9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE8dec_urefEPNS0_12LinkHashNodeIS3_EE:0 + 3: 0 + 4: 0 + 3: _ZN9oceanbase6common9RefHandle3decEPNS0_7RefNodeE:0 + 0: 0 + 16.2: _ZN9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE5GuardD2Ev:172244 + 0: _ZN9oceanbase6common13BaseRefHandle14leave_criticalEv:172244 + 0: _ZN9oceanbase6common6QClock14leave_criticalEm:172244 + 1: 5066 + 2: _ZN9oceanbase6common6QClock6locateEm:65858 + 0: 5066 + 2.1: _ZN9oceanbase6common6QClock9ClockSlot11clear_clockEv:75990 + 0: 5066 + 16.3: _ZN9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE5GuardD2Ev:0 + 0: _ZN9oceanbase6common13BaseRefHandle14leave_criticalEv:0 + 0: _ZN9oceanbase6common6QClock14leave_criticalEm:0 + 1: 0 + 2: _ZN9oceanbase6common6QClock6locateEm:0 + 0: 0 + 2.1: _ZN9oceanbase6common6QClock9ClockSlot11clear_clockEv:0 + 0: 0 + 10.1: _ZN9oceanbase3lib20is_trace_log_enabledEv:43500 + 2: 5119 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:5245 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:38381 + 2: 5483 + 10.4: _ZN9oceanbase3lib20is_trace_log_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:0 + 2: 0 + 10.19: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl189ELl1600EE10check_lockEv:0 + 2: 0 + 3: _ZN9oceanbase3lib7ObMutex4lockEv:0 + 0: 0 + 10.23: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl189ELl1600EE10get_bufferEv:0 + 0: 0 + 10.25: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl189ELl1600EE14get_buffer_posEv:0 + 0: 0 + 10.26: _ZNK9oceanbase3sql18ObBasicSessionInfo10get_sessidEv:0 + 0: 0 + 10.27: _ZNK9oceanbase3sql18ObBasicSessionInfo18get_priv_tenant_idEv:0 + 0: 0 + 10.31: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl189ELl1600EE12check_unlockEv:0 + 2: 0 + 3: _ZN9oceanbase3lib7ObMutex6unlockEv:0 + 0: 0 +_ZNK9oceanbase7storage15ObTableReadInfo8is_validEv:6666263:113224 + 1: 112617 + 2: 112617 + 2.1: 110686 + 3: 112617 + 3.1: 110686 + 4: 110686 + 5.1: 110686 + 6: 110686 + 7: 110686 + 7.1: 110686 + 3.1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:996174 + 0: 110686 + 6.1: _ZNK9oceanbase12blocksstable19ObStorageDatumUtils8is_validEv:774802 + 0: 110686 +_ZN9oceanbase5share6schema19ObSchemaGetterGuard10get_schemaINS1_13ObTableSchemaEEEiNS1_12ObSchemaTypeEmmRPKT_l:6628905:5006 + 6: 4726 + 7: 4726 + 8: 4726 + 9: 4726 + 10: 4726 + 11: 4726 _ZN9oceanbase6common15ObKVCacheHandleC1Ev:4864 + 13: 4673 + 15.1: 4673 + 16: 11 + 17.1: 11 + 18.1: 4673 + 18.3: 11 + 19: 11 + 20.1: 11 + 21.2: 11 + 22: 11 + 23.1: 11 + 25.1: 4673 _ZN9oceanbase5share6schema16is_normal_schemaENS1_12ObSchemaTypeE:4824 + 26: 4575 + 27: 11 + 28.1: 11 + 29.1: 4575 + 29.2: 4667 + 31.1: 11 + 33.1: 57 _ZNK9oceanbase5share6schema19ObSchemaGetterGuard14get_schema_mgrEmRPKNS1_11ObSchemaMgrE:46 + 33.2: 58 + 34.1: 11 + 35.1: 58 + 37: 58 + 38: 11 + 39.1: 11 + 41: 58 + 42: 11 + 43.1: 58 _ZN9oceanbase5share6schema19ObSchemaGetterGuard18get_schema_versionENS1_12ObSchemaTypeEmmRl:45 + 43.2: 68 + 47.1: 11 + 50: 11 + 51: 68 + 52.1: 11 + 53.1: 11 + 56.1: 68 _ZN9oceanbase5share6schema19ObSchemaGetterGuard17get_schema_statusEmRNS1_21ObRefreshSchemaStatusE:57 + 56.2: 63 + 57.1: 11 + 58.1: 63 _ZN9oceanbase5share6schema27ObMultiVersionSchemaService10get_schemaEPKNS1_11ObSchemaMgrERKNS1_21ObRefreshSchemaStatusENS1_12ObSchemaTypeEmlRNS_6common15ObKVCacheHandleERPKNS1_8ObSchemaE:50 + 58.2: 58 + 65.1: 11 + 67.1: 58 + 68: 11 + 69.1: 11 + 71.1: 58 _ZN9oceanbase5share6schema19ObSchemaGetterGuard18put_to_local_cacheINS1_8ObSchemaEEEiNS1_12ObSchemaTypeEmmRPKT_RNS_6common15ObKVCacheHandleE:48 + 71.2: 59 + 73.1: 11 + 83.1: 11 + 85: 11 + 86: 11 + 87.1: 11 + 89.2: 11 + 89.4: 11 + 92: 11 + 92.1: 11 + 93: 11 + 93.1: 11 + 94: 11 + 95.1: 11 + 96.1: 11 + 97: 11 + 98.1: 11 + 99.1: 11 + 99.2: 11 + 100.1: 11 + 103: 11 + 105: 11 + 106.1: 11 + 106.2: 11 + 107.1: 11 + 108.1: 11 + 108.2: 11 + 116.1: 11 + 118.1: 11 + 120.1: 11 + 120.2: 11 + 122.1: 11 + 130: 59 + 130.1: 11 + 131: 59 + 132.1: 11 + 133: 11 + 134: 11 + 135: 11 + 136.1: 11 + 138: 11 + 138.3: 11 + 140: 11 + 141: 11 + 141.1: 11 + 142: 11 + 143.1: 11 + 145.1: 11 + 146.1: 11 + 148: 11 + 152: 11 + 153.27: 4876 _ZN9oceanbase6common15ObKVCacheHandleD1Ev:4709 + 153.28: 11 + 12: _ZN9oceanbase5share6schema21ObRefreshSchemaStatusC2Ev:107479 + 0: 4673 + 2: 4673 + 15: _ZNK9oceanbase5share6schema19ObSchemaGetterGuard16check_inner_statEv:234321 + 2: 4673 + 3: 4673 + 4: 11 + 5.1: 11 + 6.1: 4673 + 6.2: 4673 + 7: 4673 + 7.1: 4673 + 8: 11 + 9.1: 11 + 11: 4673 + 18.2: _ZN9oceanbase6common13is_sys_tenantEm:55 + 2: 11 + 29.1: _ZN9oceanbase5share6schema19ObSchemaGetterGuard20get_from_local_cacheINS1_13ObTableSchemaEEEiNS1_12ObSchemaTypeEmmRPKT_:5334218 + 6: 4575 + 7: 4575 + 9: 4575 + 10: 11 + 11.1: 11 + 12.1: 4575 + 12.2: 4565 + 13: 4575 + 15.1: 4575 _ZN9oceanbase5share6schema16is_normal_schemaENS1_12ObSchemaTypeE:4728 + 16: 11 + 17.1: 11 + 21.1: 4565 + 21.4: 4561 + 21.5: 73094 + 21.6: 73117 + 21.7: 73117 + 21.9: 73094 + 21.10: 72863 + 21.12: 233 + 22: 73070 + 22.1: 73070 + 23: 73070 + 23.1: 73070 + 24: 73070 + 24.1: 73070 + 25: 4590 + 30: 57 + 31.1: 57 _ZZN9oceanbase5share6schema19ObSchemaGetterGuard20get_from_local_cacheINS1_13ObTableSchemaEEEiNS1_12ObSchemaTypeEmmRPKT_ENKUlPKcE1_clESB_:44 + 32.1: 4318 + 33: 11 + 34.1: 11 + 36: 4318 + 37.1: 4318 _ZZN9oceanbase5share6schema19ObSchemaGetterGuard20get_from_local_cacheINS1_13ObTableSchemaEEEiNS1_12ObSchemaTypeEmmRPKT_ENKUlPKcE3_clESB_:4559 + 41: 4667 + 9: _ZNK9oceanbase5share6schema19ObSchemaGetterGuard16check_inner_statEv:229421 + 2: 4575 + 3: 4575 + 4: 11 + 5.1: 11 + 6.1: 4575 + 6.2: 4575 + 7: 4575 + 7.1: 4575 + 8: 11 + 9.1: 11 + 11: 4575 + 21.1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema19ObSchemaGetterGuard9SchemaObjEE5countEv:31955 + 0: 4565 + 21.2: _ZN9oceanbase6common12ObIArrayWrapINS_5share6schema19ObSchemaGetterGuard9SchemaObjEE2atEl:31927 + 6: 4561 + 52: _ZN9oceanbase6common12is_cte_tableEm:110 + 2: 11 + 89.1: _ZN9oceanbase5share6schema19ObSchemaGetterGuard17use_schema_statusEv:242 + 0: 11 + 0: _ZN9oceanbase5share6schema19ObSchemaGetterGuard18is_standby_clusterEv:88 + 0: 11 + 0.1: _ZN9oceanbase5share6schema19ObSchemaGetterGuard20restore_tenant_existEv:88 + 0: 11 + 89.3: _ZN9oceanbase6common13is_sys_tenantEm:44 + 2: 11 +_ZN9oceanbase7storage18ObTabletTableStore15get_read_tablesElRNS0_20ObTableStoreIteratorEb:6534690:6002 + 4: 5662 + 5: 5662 + 8: 5662 + 9: 36 + 10.1: 36 + 11.1: 5662 + 11.2: 36 + 12: 36 + 13.1: 26 + 14.1: 36 + 15.1: 36 + 17.1: 5662 + 17.3: 5662 + 18: 36 + 19.1: 36 + 21: 0 + 22.1: 0 + 23.1: 5668 + 24: 26 + 25.1: 26 + 28: 5521 + 29.1: 36 + 32: 0 + 33: 5742 + 34.1: 26 + 37: 5742 + 6: _ZN9oceanbase7storage20ObTableStoreIterator5resetEv:589826 + 2: 5662 + 3: 5662 + 4: 5662 + 2: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl16ENS0_19ModulePageAllocatorELb0EE5resetEv:408642 + 0: 5662 + 0: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl16ENS0_19ModulePageAllocatorELb0EE7destroyEv:289402 + 9: 5662 + 10: 32 + 11: 32 + 13: 5662 + 15: 5662 + 24: 5662 + 11.1: _ZNK9oceanbase7storage13ObITableArray5emptyEv:39634 + 0: 5662 + 11.2: _ZNK9oceanbase7storage13ObITableArray5emptyEv:180 + 0: 36 + 12: _ZNK9oceanbase7storage15ObMemtableArray5emptyEv:756 + 0: _ZNK9oceanbase7storage15ObMemtableArray5countEv:756 + 0: 36 + 0.2: 36 + 20.1: _ZNK9oceanbase7storage18ObTabletTableStore8is_validEv:130226 + 2: 5662 + 3: 5662 + 3: _ZNK9oceanbase7storage18ObTabletTableStore15get_table_countEv:16986 + 0: 5662 + 24: _ZN9oceanbase7storage20ObTableStoreIterator4copyERKS1_:1592 + 6.1: 36 + 7.1: 26 + 9: 36 + 11: 26 + 28: _ZN9oceanbase7storage18ObTabletTableStore21calculate_read_tablesERNS0_20ObTableStoreIteratorElb:4045040 + 5: 5462 + 8: 5462 + 8.1: 0 + 9: 5462 + 9.1: 0 + 9.2: 0 + 11: 0 + 12.1: 36 + 14.1: 5397 + 15.1: 5397 + 15.3: 5397 + 16: 5767 + 16.1: 5397 _ZNK9oceanbase7storage8ObITable20get_snapshot_versionEv:5657 + 18: 5823 + 19.1: 26 + 25.1: 36 + 28: 36 + 29.1: 5759 + 30: 32 + 31.1: 32 + 32.1: 5759 + 35: 6002 _ZNK9oceanbase7storage8ObITable16is_major_sstableEv:6094 + 35.2: 36 + 36.1: 6002 + 36.2: 6002 + 36.3: 6002 + 36.5: 36 + 38: 6228 _ZNK9oceanbase7storage8ObITable16is_major_sstableEv:6410 + 38.1: 6012 _ZNK9oceanbase12blocksstable9ObSSTable23get_upper_trans_versionEv:5906 + 38.2: 36 + 38.3: 5956 _ZNK9oceanbase7storage8ObITable20get_snapshot_versionEv:5931 + 39: 6012 + 39.1: 36 + 44: 6450 + 44.2: 5758 + 45.1: 6450 _ZN9oceanbase7storage20ObTableStoreIterator10add_tablesEPPNS0_8ObITableEl:6427 + 46.1: 32 + 48: 5891 + 49.1: 36 + 52: 36 + 52.1: 5891 + 53: 36 + 54.1: 36 + 57: 32 + 57.1: 32 + 58: 32 + 59.1: 32 + 60.1: 32 + 60.2: 32 + 61.1: 26 + 63: 32 + 64.1: 32 + 69: 5521 + 8: _ZNK9oceanbase7storage13ObITableArrayixEl:131088 + 0: 5462 + 0.2: 5462 + 10: _ZNK9oceanbase7storage13ObITableArrayixEl:0 + 0: 0 + 0.2: 0 + 14.1: _ZNK9oceanbase7storage13ObITableArray5emptyEv:16367 + 0: 5397 + 16: _ZNK9oceanbase7storage13ObITableArrayixEl:48573 + 0.2: 5397 + 17: _ZNK9oceanbase7storage13ObITableArrayixEl:86505 + 0: 5767 + 0.2: 5767 + 18: _ZN9oceanbase7storage20ObTableStoreIterator10add_tablesEPPNS0_8ObITableEl:859984 + 2: 5767 + 3: 5767 + 4: 32 + 5.1: 32 + 7.1: 5767 + 7.3: 5767 + 7.5: 5767 + 8: 5767 + 9: 5767 + 10: 32 + 11.1: 32 + 12.1: 5767 + 13.1: 32 + 17: 32 + 12.1: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl16ENS0_19ModulePageAllocatorELb0EE9push_backERKS4_:174610 + 5: 5767 + 6: 32 + 12: 32 + 15: 32 + 15.1: 5767 + 16: 5767 + 15.1: _ZN9oceanbase6common9ObClassOpIPNS_7storage8ObITableELb1EE20construct_and_assignERKS4_RS4_:23796 + 2: 5767 + 37: _ZNK9oceanbase7storage13ObITableArrayixEl:93420 + 0.2: 6228 + 48: _ZN9oceanbase7storage18ObTabletTableStore24calculate_read_memtablesERKNS0_8ObTabletERNS0_20ObTableStoreIteratorE:701248 + 2: 5605 + 5: 5605 + 6: 5605 + 8: 5605 + 9.1: 6051 _ZNK9oceanbase7storage15ObMemtableArray4findEllRPNS0_8ObITableERl:5892 + 10.1: 32 + 11.1: 6051 + 12.1: 6051 _ZN9oceanbase7storage20ObTableStoreIterator10add_tablesERNS0_15ObMemtableArrayEl:6033 + 13.1: 36 + 15: 12 + 3: _ZNK9oceanbase7storage8ObTablet20get_snapshot_versionEv:39235 + 0: 5605 + 4: _ZNK9oceanbase7storage8ObTablet22get_clog_checkpoint_tsEv:39235 + 0: 5605 + 8: _ZNK9oceanbase7storage15ObMemtableArray5emptyEv:95285 + 0: _ZNK9oceanbase7storage15ObMemtableArray5countEv:95285 + 0: 5605 + 0.2: 5605 + 52.1: _ZN9oceanbase7storage18ObTabletTableStore17check_read_tablesERNS0_20ObTableStoreIteratorEl:500143 + 5: 5891 + 6.1: 32 + 7.1: 5891 + 8.1: 36 + 10: 5640 + 10.1: 5640 _ZNK9oceanbase7storage8ObITable16is_major_sstableEv:5653 + 11: 5275 + 11.1: 5226 _ZNK9oceanbase7storage8ObITable20get_snapshot_versionEv:5621 + 13: 5275 + 14: 5521 + 18: 5521 + 19.1: 36 + 5: _ZNK9oceanbase7storage20ObTableStoreIterator8is_validEv:41237 + 0: 5891 + 0: _ZNK9oceanbase6common12ObIArrayWrapIPNS_7storage8ObITableEE5countEv:23564 + 0: 5891 + 10: _ZN9oceanbase7storage20ObTableStoreIterator18get_boundary_tableEb:95978 + 7: 5891 + 7.3: 5640 + 11: _ZN9oceanbase7storage20ObTableStoreIterator18get_boundary_tableEb:86086 + 7: 5372 + 7.3: 5226 + 57.1: _ZNK9oceanbase7storage13ObITableArray5emptyEv:160 + 0: 32 + 60.1: _ZNK9oceanbase7storage13ObITableArray5emptyEv:224 + 0: 32 + 63: _ZN9oceanbase7storage18ObTabletTableStore24calculate_read_memtablesERKNS0_8ObTabletERNS0_20ObTableStoreIteratorE:5108 + 2: 32 + 5: 32 + 6: 32 + 8: 32 + 9.1: 26 + 10.1: 26 + 11.1: 26 + 12.1: 26 + 13.1: 26 + 15: 32 + 3: _ZNK9oceanbase7storage8ObTablet20get_snapshot_versionEv:224 + 0: 32 + 4: _ZNK9oceanbase7storage8ObTablet22get_clog_checkpoint_tsEv:224 + 0: 32 + 8: _ZNK9oceanbase7storage15ObMemtableArray5emptyEv:544 + 0: _ZNK9oceanbase7storage15ObMemtableArray5countEv:544 + 0: 32 + 0.2: 32 + 33: _ZN9oceanbase7storage20ObTableStoreIterator16set_retire_checkEv:828031 + 2: 5521 + 3: 5521 + 6.1: 5575 + 6.3: 5575 + 7: 11029 + 8: 36 + 9.1: 36 + 10.1: 11344 + 10.2: 11029 _ZNK9oceanbase7storage8ObITable16is_data_memtableEv:11259 + 11: 5575 + 17: 5742 + 19: 5742 + 6: _ZNK9oceanbase6common12ObIArrayWrapIPNS_7storage8ObITableEE5countEv:22084 + 0: 5521 + 7: _ZN9oceanbase6common12ObIArrayWrapIPNS_7storage8ObITableEE2atEl:44116 + 6: 11029 + 11: _ZN9oceanbase6common12ObIArrayWrapIPNS_7storage8ObITableEE2atEl:22300 + 6: 5575 + 19: _ZN9oceanbase8memtable10ObMemtable16get_read_barrierEv:40194 + 0: 5742 +_ZN9oceanbase6common7ObSMRowC2ENS_7obmysql19MYSQL_PROTOCOL_TYPEERKNS0_8ObNewRowERKNS0_20ObDataTypeCastParamsEPKNS0_8ObIArrayINS0_7ObFieldEEEPNS_5share6schema19ObSchemaGetterGuardEm:6500654:77804 + 7: 75589 + 8: 75589 + 9: 75589 + 10: 75589 + 11: 75589 + 12: 75589 + 13: 75589 + 6: _ZN9oceanbase7obmysql10ObMySQLRowC2ENS0_19MYSQL_PROTOCOL_TYPEE:529123 + 0: 75589 +_ZN9oceanbase6common7ObSMRowC1ENS_7obmysql19MYSQL_PROTOCOL_TYPEERKNS0_8ObNewRowERKNS0_20ObDataTypeCastParamsEPKNS0_8ObIArrayINS0_7ObFieldEEEPNS_5share6schema19ObSchemaGetterGuardEm:6500654:77804 + 7: 75589 + 8: 75589 + 9: 75589 + 10: 75589 + 11: 75589 + 12: 75589 + 13: 75589 + 6: _ZN9oceanbase7obmysql10ObMySQLRowC2ENS0_19MYSQL_PROTOCOL_TYPEE:529123 + 0: 75589 +_ZN9oceanbase3sql13ObExecContext24create_physical_plan_ctxEv:6457411:5626 + 1: 4854 + 4: 4854 + 6.1: 0 + 7.1: 4854 + 10.1: 0 + 12: 4853 + 15: 4664 + 7.1: _ZN9oceanbase6common16ObArenaAllocator5allocEl:582476 + 0: 4854 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13alloc_alignedEll:558206 + 3: 4854 + 6: 0 + 7: 4853 + 8: 4853 + 10: 4853 + 11: 4853 + 12: 4853 + 13: 4853 + 15.1: 0 + 16: 0 + 18: 0 + 20: 0 + 28: 0 + 35: 4853 + 36: 4853 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE15ensure_cur_pageEv:68031 + 2: 4854 + 3: 0 + 5.1: 0 + 8: 0 + 9: 0 + 10: 0 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:80 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:80 + 2: 1 + 3: 1 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:16 + 5: 1 + 7: 1 + 8: 1 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:25 + 2: 1 + 2.2: 1 _ZN9oceanbase6common11ObAllocator5allocElRKNS_3lib9ObMemAttrE:1 + 2.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 9: _ZSt3maxIlERKT_S2_S2_:0 + 5: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 8: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:0 + 0: 0 + 7: _ZN9oceanbase6common16get_align_offsetEPvl:48530 + 3: 4853 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:33971 + 0: 4853 + 11: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:33971 + 7: 4853 + 15.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE18is_normal_overflowEl:0 + 2: 0 + 16: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11extend_pageEl:0 + 4: 0 + 5: 0 + 8: 0 + 9: 0 + 10.1: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 12: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_tailEPNS3_4PageE:0 + 2: 0 + 3: 0 + 5: 0 + 23.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16lookup_next_pageEl:0 + 3.1: 0 + 4.1: 0 + 5: 0 + 5.1: 0 + 7: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page10reuse_sizeEv:0 + 0: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 32: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9alloc_bigEl:0 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 3: 0 + 5: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_headEPNS3_4PageE:0 + 4: 0 + 5: 0 + 7: 0 + 12: _ZN9oceanbase3sql17ObPhysicalPlanCtxC2ERNS_6common12ObIAllocatorE:5395432 + 0.1: 4853 + 0.3: 4853 _ZN9oceanbase11transaction9ObTxParamC1Ev:4903 + 1: 4853 + 2: 4853 + 6: 4853 + 7: 4853 + 9: 4853 + 10: 4853 + 11: 4853 + 13: 4853 + 15: 4853 + 17: 4853 + 19: 4664 + 20: 4664 + 21: 4664 + 23: 4664 + 25: 4664 + 31: 4664 + 40: 4664 + 44: 4664 + 45: 4664 + 47: 4664 + 49: 4664 + 50: 4664 + 51: 4664 + 52: 4664 + 53: 4853 + 54.14: 0 + 54.15: 0 + 54.17: 0 + 0: _ZN9oceanbase6common5ObObjC2Ev:58236 + 2: _ZN9oceanbase6common5ObObj5resetEv:58236 + 6: 4853 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:19412 + 0: 4853 + 0.1: _ZN9oceanbase6common9ObSEArrayIPcLl1ENS0_19ModulePageAllocatorELb1EEC2Ev:742509 + 0.1: 4853 + 0.5: _ZN9oceanbase6common13ObSEArrayImplIPcLl1ENS0_19ModulePageAllocatorELb1EEC2ElRKS3_:655155 + 2: 4853 + 5: 4853 + 6: 4853 + 8: 4853 + 17.1: 4853 + 2: _ZN9oceanbase6common8ObIArrayIPcEC2EPS2_l:87354 + 0: _ZN9oceanbase6common12ObIArrayWrapIPcEC2EPS2_l:87354 + 0: 4853 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:276621 + 0: 4853 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:87354 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:87354 + 2: 4853 + 8: 4853 + 0.2: _ZN9oceanbase5share20ObTabletAutoincParamC2Ev:67942 + 1: 4853 + 0.4: _ZN9oceanbase3sql15ObTableScanStatC2Ev:237864 + 2: 4664 + 5: 4664 + 0.5: _ZN9oceanbase3sql15ObRemoteSqlInfoC2Ev:107272 + 1: 4664 + 3: 4664 + 0.6: _ZN9oceanbase6common5ObObjC2Ev:149876 + 2: _ZN9oceanbase6common5ObObj5resetEv:149876 + 6: 4853 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:33971 + 0: 4853 + 6.4: _ZN9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEEC2ERKS3_:820157 + 1: 4853 + 5: 4853 + 6: 4853 + 2: _ZN9oceanbase6common18ObWrapperAllocatorC2ERKS1_:92207 + 0: 4853 + 3: _ZN9oceanbase6common9ObSEArrayIPNS0_10ObObjParamELl1ENS0_18ObWrapperAllocatorELb0EECI2NS0_13ObSEArrayImplIS3_Ll1ES4_Lb0EEEElRKS4_:572654 + 0: 4853 + 0: _ZN9oceanbase6common13ObSEArrayImplIPNS0_10ObObjParamELl1ENS0_18ObWrapperAllocatorELb0EEC2ElRKS4_:499859 + 2: 4853 + 5: 4853 + 6: 4853 + 8: 4853 + 17.1: 4853 + 2: _ZN9oceanbase6common8ObIArrayIPNS0_10ObObjParamEEC2EPS3_l:72795 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS0_10ObObjParamEEC2EPS3_l:72795 + 0: 4853 + 7: _ZN9oceanbase6common18ObWrapperAllocatorC2ERKS1_:67942 + 0: 4853 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:121325 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:121325 + 2: 4853 + 8: 4853 + 7.1: _ZN9oceanbase6common9Ob2DArrayINS_3sql15ObDatumObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS3_Ll1ES4_Lb0EEEEC2ERKS4_:825010 + 1: 4853 + 5: 4853 + 6: 4853 + 2: _ZN9oceanbase6common18ObWrapperAllocatorC2ERKS1_:67942 + 0: 4853 + 3: _ZN9oceanbase6common9ObSEArrayIPNS_3sql15ObDatumObjParamELl1ENS0_18ObWrapperAllocatorELb0EECI2NS0_13ObSEArrayImplIS4_Ll1ES5_Lb0EEEElRKS5_:587213 + 0: 4853 + 0: _ZN9oceanbase6common13ObSEArrayImplIPNS_3sql15ObDatumObjParamELl1ENS0_18ObWrapperAllocatorELb0EEC2ElRKS5_:499859 + 2: 4853 + 5: 4853 + 6: 4853 + 8: 4853 + 17.1: 4853 + 2: _ZN9oceanbase6common8ObIArrayIPNS_3sql15ObDatumObjParamEEC2EPS4_l:140737 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql15ObDatumObjParamEEC2EPS4_l:140737 + 0: 4853 + 7: _ZN9oceanbase6common18ObWrapperAllocatorC2ERKS1_:67942 + 0: 4853 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:87354 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:87354 + 2: 4853 + 8: 4853 + 11: _ZN9oceanbase6common12ObFixedArrayINS_5share12AutoincParamENS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplIS3_S4_EEERS4_l:300886 + 0: 4853 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS_5share12AutoincParamENS0_12ObIAllocatorEEC2ERS4_l:213532 + 2: 4853 + 3: 4853 + 4: 4853 + 6: 4853 + 1: _ZN9oceanbase6common8ObIArrayINS_5share12AutoincParamEEC2Ev:33971 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_5share12AutoincParamEEC2Ev:33971 + 0: 4853 + 41: _ZN9oceanbase6common12ObFixedArrayINS_3sql15ObTableRowCountENS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplIS3_S4_EEERS4_l:247192 + 0: 4664 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS_3sql15ObTableRowCountENS0_12ObIAllocatorEEC2ERS4_l:163240 + 2: 4664 + 3: 4664 + 4: 4664 + 1: _ZN9oceanbase6common8ObIArrayINS_3sql15ObTableRowCountEEC2Ev:32648 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_3sql15ObTableRowCountEEC2Ev:32648 + 0: 4664 + 42: _ZN9oceanbase6common12ObFixedArrayINS_3sql17PartParamIdxArrayENS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplIS3_S4_EEERS4_l:247192 + 0: 4664 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS_3sql17PartParamIdxArrayENS0_12ObIAllocatorEEC2ERS4_l:163240 + 2: 4664 + 3: 4664 + 4: 4664 + 1: _ZN9oceanbase6common8ObIArrayINS_3sql17PartParamIdxArrayEEC2Ev:32648 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_3sql17PartParamIdxArrayEEC2Ev:32648 + 0: 4664 + 43: _ZN9oceanbase6common12ObFixedArrayINS_3sql20ObImplicitCursorInfoENS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplIS3_S4_EEERS4_l:247192 + 0: 4664 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS_3sql20ObImplicitCursorInfoENS0_12ObIAllocatorEEC2ERS4_l:163240 + 2: 4664 + 3: 4664 + 4: 4664 + 1: _ZN9oceanbase6common8ObIArrayINS_3sql20ObImplicitCursorInfoEEC2Ev:32648 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_3sql20ObImplicitCursorInfoEEC2Ev:32648 + 0: 4664 + 54.16: _ZN9oceanbase6common9Ob2DArrayINS_3sql15ObDatumObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS3_Ll1ES4_Lb0EEEED2Ev:0 + 1: 0 + 2: 0 + 3: 0 + 3.1: 0 + 3.2: 0 + 13: _ZN9oceanbase3sql17ObPhysicalPlanCtx12set_exec_ctxEPKNS0_13ObExecContextE:41976 + 0: 4664 +_ZN9oceanbase3sql16ObHashDistinctOp19build_distinct_dataEb:6455294:28859 + 1: 26214 + 2: 26214 + 4: 26214 + 5: 26214 + 6: 26214 + 7.1: 239 + 8: 26085 + 10: 25429 _ZN9oceanbase3sql10ObOperator12get_next_rowEv:25532 + 12: 0 + 12.1: 0 + 14: 23793 + 15: 232 + 17: 232 _ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE17finish_insert_rowEv:238 + 18.1: 168 + 19.1: 217 + 20: 217 + 22: 0 + 23.1: 168 + 26: 217 + 27.1: 215 + 29.1: 168 + 31: 257 _ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE9end_roundEv:233 + 32.1: 168 + 33.1: 257 _ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE11start_roundEv:261 + 34.1: 168 + 35.1: 405 _ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE18get_next_partitionENS0_9InputSideE:252 + 37.1: 168 + 39.1: 0 + 40.1: 168 + 41.1: 168 + 43.1: 168 + 46.1: 23275 + 47.1: 168 + 48.1: 25832 + 49.1: 0 + 50.1: 23858 + 54: 22710 + 57: 22952 + 65400: 0 + 9: _ZN9oceanbase3sql10ObOperator20clear_evaluated_flagEv:226928 + 2.1: 28366 + 2.3: 0 + 3: 0 + 2.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql10ObEvalInfoEE5countEv:113464 + 0: 28366 + 3: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql10ObEvalInfoEE2atEl:0 + 6: 0 + 3.1: _ZN9oceanbase3sql10ObEvalInfo20clear_evaluated_flagEv:0 + 2: 0 + 4: 0 + 41.1: _ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE20get_cur_part_row_cntENS0_9InputSideE:1176 + 4: 0 + 4.2: _ZNK9oceanbase3sql17ObChunkDatumStore19get_row_cnt_on_diskEv:0 + 0: 0 + 41.2: _ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE6resizeEl:379596 + 2: 0 + 3: 0 + 3.1: 0 + 4: 168 + 5.1: 168 + 6.1: 0 + 6.2: 0 + 7.1: 168 + 9: 168 + 6.1: _ZN9oceanbase6common3maxEil:0 + 2: 0 + 46.1: _ZN9oceanbase3sql10ObOperator16try_check_statusEv:674975 + 2: 23275 + 3: 0 + 48.2: _ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE10insert_rowERKNS_6common8ObIArrayIPNS0_6ObExprEEERbSC_:1009194 + 4: 25832 + 5: _ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE24insert_row_on_hash_tableERKNS_6common8ObIArrayIPNS0_6ObExprEEERbSC_:802538 + 4: 25832 + 4.1: 0 + 4.3: 26026 _ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE33insert_row_with_unique_hash_tableERKNS_6common8ObIArrayIPNS0_6ObExprEEERbSC_:26310 +_ZN9oceanbase6common9ObCharset11get_charsetENS0_15ObCollationTypeE:6390080:166653 + 1: 159752 + 3: 159752 + 3.2: 159752 + 5.1: 0 + 8: 159752 + 10: 159752 +_ZN9oceanbase3sql8ObSortOp18inner_get_next_rowEv:6347027:56960 + 1: 52898 + 2: 52898 + 3: 52898 + 4: 62 + 5.1: 52898 + 9: 530 + 10: 530 + 11: 530 + 12: 530 + 13: 570 + 13.2: 530 _ZN9oceanbase3sql20ObPxEstimateSizeUtil11get_px_sizeEPNS0_13ObExecContextENS0_14PxOpSizeFactorElRl:554 + 15.1: 61 + 16.1: 570 + 16.2: 0 + 17.1: 61 + 18.1: 0 + 18.3: 570 + 19.1: 570 + 21.2: 0 + 21.4: 61 + 21.12: 0 + 24: 0 + 25: 0 + 26.1: 570 + 27.2: 0 + 27.4: 61 + 27.14: 0 + 30: 0 + 31: 0 + 32: 0 + 33: 0 + 34: 0 + 35: 0 + 37.2: 628 + 37.4: 61 + 37.14: 628 _ZN9oceanbase3sql12ObSortOpImpl4initEmPKNS_6common8ObIArrayINS0_20ObSortFieldCollationEEEPKNS3_INS2_9ObCmpFuncEEEPNS0_9ObEvalCtxEPNS0_13ObExecContextEbbblll:579 + 40: 615 + 41: 615 + 42: 615 + 43: 615 + 44: 615 + 45: 615 + 47: 550 + 48: 550 _ZN9oceanbase3sql8ObSortOp12process_sortEv:569 + 50.1: 62 + 56: 476 + 58: 54846 + 58.1: 0 + 58.3: 57123 _ZN9oceanbase3sql8ObSortOp14sort_impl_nextEv:58362 + 60.1: 61 + 62: 597 + 63: 597 _ZN9oceanbase3sql8ObSortOp5resetEv:542 + 66: 51567 + 70: 52090 + 10: _ZN9oceanbase3sql11get_my_specINS0_8ObSortOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:2650 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:2650 + 0: 530 + 11: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:3710 + 2: 530 + 11.1: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:3710 + 0: 530 + 16.1: _ZN9oceanbase3sql11get_my_specINS0_8ObSortOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:2850 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:2850 + 0: 570 + 18.1: _ZN9oceanbase3sql11get_my_specINS0_8ObSortOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:0 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:0 + 0: 0 + 24: _ZN9oceanbase3sql11get_my_specINS0_8ObSortOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:0 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:0 + 0: 0 + 24.1: _ZN9oceanbase3sql22ObInMemoryTopnSortImpl19set_fetch_with_tiesEb:0 + 1: 0 + 31: _ZN9oceanbase3sql12ObSortOpImpl14set_input_rowsEl:0 + 0: 0 + 32: _ZN9oceanbase3sql11get_my_specINS0_8ObSortOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:0 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:0 + 0: 0 + 32.1: _ZN9oceanbase3sql12ObSortOpImpl15set_input_widthEl:0 + 0: 0 + 33.1: _ZN9oceanbase3sql12ObSortOpImpl17set_operator_typeENS0_17ObPhyOperatorTypeE:0 + 0: 0 + 34.1: _ZN9oceanbase3sql12ObSortOpImpl15set_operator_idEm:0 + 0: 0 + 35: _ZN9oceanbase3sql12ObSortOpImpl21set_io_event_observerEPNS0_17ObIOEventObserverE:0 + 2: 0 + 41: _ZN9oceanbase3sql12ObSortOpImpl14set_input_rowsEl:4920 + 0: 615 + 42: _ZN9oceanbase3sql11get_my_specINS0_8ObSortOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:3075 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:3075 + 0: 615 + 42.1: _ZN9oceanbase3sql12ObSortOpImpl15set_input_widthEl:4920 + 0: 615 + 43.1: _ZN9oceanbase3sql12ObSortOpImpl17set_operator_typeENS0_17ObPhyOperatorTypeE:4920 + 0: 615 + 44.1: _ZN9oceanbase3sql12ObSortOpImpl15set_operator_idEm:4920 + 0: 615 + 45: _ZN9oceanbase3sql12ObSortOpImpl21set_io_event_observerEPNS0_17ObIOEventObserverE:5783 + 2: 615 + 57: _ZN9oceanbase3sql10ObOperator20clear_evaluated_flagEv:497457 + 2.1: 55273 + 2.3: 0 + 3: 0 + 2.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql10ObEvalInfoEE5countEv:276365 + 0: 55273 + 3: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql10ObEvalInfoEE2atEl:0 + 6: 0 + 3.1: _ZN9oceanbase3sql10ObEvalInfo20clear_evaluated_flagEv:0 + 2: 0 + 4: 0 +_ZN9oceanbase7storage22ObMicroBlockDataHandle5resetEv:6332759:50097 + 1: 46101 + 2: 46101 + 3: 48376 + 8: 48904 _ZN9oceanbase12blocksstable18ObMacroBlockHandle5resetEv:50741 + 10: 48376 + 11: 48376 + 4: _ZN9oceanbase12blocksstable12MacroBlockId5resetEv:507111 + 3: 46101 + 6: _ZN9oceanbase12blocksstable16ObMicroBlockInfo5resetEv:1060323 + 0: 46101 + 7: _ZN9oceanbase12blocksstable24ObMicroBlockBufferHandle5resetEv:737616 + 0: 46101 _ZN9oceanbase6common15ObKVCacheHandle5resetEv:47999 + 9: _ZN9oceanbase7storage22ObMicroBlockDataHandle30try_release_loaded_index_blockEv:803886 + 2: 50347 + 2.1: 801 + 2.2: 801 + 4: 801 + 6: 801 + 8: 801 + 9: 801 + 13: 48376 + 2.2: _ZNK9oceanbase12blocksstable16ObMicroBlockData8is_validEv:23229 + 0: 801 + 0.1: 801 + 0.2: 801 +_ZN9oceanbase12blocksstable21ObClusterColumnReader19sequence_read_datumElRNS0_14ObStorageDatumE:6274030:16333 + 1: 14946 + 2: 14946 + 3: 14946 + 4: 0 + 5.1: 0 + 6.1: 14946 + 6.2: 14946 + 6.3: 14946 + 7: 0 + 8.1: 0 + 10: 14946 + 11: 14946 + 12: 0 + 13: 0 + 14: 0 + 18: 14946 + 20: 0 + 22.1: 0 + 23: 15131 + 24.1: 0 + 27.1: 0 + 30: 15131 + 21: _ZN9oceanbase12blocksstable14ObStorageDatum7set_nopEv:0 + 0: _ZN9oceanbase12blocksstable14ObStorageDatum13set_ext_valueEl:0 + 1: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:0 + 0: 0 + 1.1: _ZN9oceanbase6common11ObDatumDesc7set_extEv:0 + 0: 0 + 1.3: _ZN9oceanbase6common5ObObj7set_extEl:0 + 4: 0 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:0 + 0: 0 + 23: _ZN9oceanbase12blocksstable21ObClusterColumnReader10read_datumElRNS0_14ObStorageDatumE:4310184 + 2: 14946 + 3: 14946 + 4: 14946 + 8.1: 14946 + 8.3: 14946 + 10: 0 + 11.1: 0 + 13: 14946 + 14: 15758 _ZN9oceanbase12blocksstableL12get_offset_8EPKvl.8f1e732d6655d093e942b32e16c602d8:16030 _ZN9oceanbase12blocksstableL13get_offset_16EPKvl.8f1e732d6655d093e942b32e16c602d8:4 + 15: 15758 + 15.3: 15758 + 16: 15758 _ZN9oceanbase12blocksstableL12get_offset_8EPKvl.8f1e732d6655d093e942b32e16c602d8:16112 _ZN9oceanbase12blocksstableL13get_offset_16EPKvl.8f1e732d6655d093e942b32e16c602d8:4 + 18: 0 + 20: 15131 + 21.1: 0 + 24: 15131 + 3: _ZN9oceanbase12blocksstable21ObClusterColumnReader18read_special_valueEl:493218 + 2: 14946 + 4: 14946 + 5: _ZN9oceanbase12blocksstable14ObStorageDatum7set_nopEv:0 + 0: _ZN9oceanbase12blocksstable14ObStorageDatum13set_ext_valueEl:0 + 1: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:0 + 0: 0 + 1.1: _ZN9oceanbase6common11ObDatumDesc7set_extEv:0 + 0: 0 + 1.3: _ZN9oceanbase6common5ObObj7set_extEl:0 + 4: 0 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:0 + 0: 0 + 7: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:0 + 0: 0 + 20: _ZN9oceanbase12blocksstable21ObClusterColumnReader20read_column_from_bufEllNS0_11ObRowHeader11SPECIAL_VALERNS0_14ObStorageDatumE:1789754 + 6: 15385 + 7: 15385 + 8: 15385 + 9: 15385 + 10: 12979 + 11.1: 0 + 13.1: 2182 + 14.1: 0 + 16: 0 + 10: _ZN9oceanbase12blocksstable21ObClusterColumnReader19read_8_bytes_columnEPKclRNS0_14ObStorageDatumE:902601 + 5: 13218 + 7: 13218 + 7.2: 13218 + 8: 0 + 9.1: 0 + 11: 13218 + 13: 21 + 16: 902 + 19: 12792 + 22: 0 + 23.1: 0 + 26: 12979 + 27: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:90853 + 0: 12979 + 28: _ZN9oceanbase6common7ObDatum8set_uintEm:155748 + 0: 12979 + 13.1: _ZN9oceanbase12blocksstable14ObStorageDatum16from_buf_enhanceEPKcl:154918 + 2: 2182 + 4: 2182 + 4.2: 2182 + 5: 0 + 6.1: 0 + 9: 2182 + 10: 2182 + 11: 2181 + 16: 0 + 8: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:30548 + 0: 2182 +_ZN9oceanbase6common18ObWrapperAllocator5allocElRKNS_3lib9ObMemAttrE:6226883:36258 + 1: 33839 + 2: 33839 + 2.2: 33839 + 2.3: 33842 + 2.2: _ZN9oceanbase6common16ObArenaAllocator5allocElRKNS_3lib9ObMemAttrE:3891947 + 3: _ZN9oceanbase6common16ObArenaAllocator5allocEl:3891947 + 0: 33839 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13alloc_alignedEll:3756591 + 3: 33839 + 6: 33841 + 7: 33841 + 8: 33841 + 10: 33841 + 11: 33841 + 12: 33841 + 13: 33841 + 15.1: 0 + 16: 0 + 18: 1 + 20: 0 + 28: 0 + 35: 33842 + 36: 33842 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE15ensure_cur_pageEv:440129 + 2: 33839 + 3: 2 + 5.1: 2 + 8: 2 + 9: 2 + 10: 2 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:116 + 5: 2 + 6: 2 + 8: 2 + 9: 2 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:12 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:12 + 2: 0 + 2.2: 0 + 2.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:12 + 3: 0 + 4: 0 + 5: 0 + 6: 3 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 9: _ZSt3maxIlERKT_S2_S2_:0 + 5: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:48 + 1: 2 + 3: 2 + 8: _ZL12abort_unlessb:12 + 5: 2 + 6: 0 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:16 + 0: 2 + 7: _ZN9oceanbase6common16get_align_offsetEPvl:439933 + 3: 33841 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:236887 + 0: 33841 + 11: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:236887 + 7: 33841 + 15.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE18is_normal_overflowEl:0 + 2: 0 + 16: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11extend_pageEl:26 + 4: 0 + 5: 0 + 8: 0 + 9: 1 + 10.1: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 12: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_tailEPNS3_4PageE:18 + 2: 1 + 3: 1 + 5: 1 + 23.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16lookup_next_pageEl:0 + 3.1: 0 + 4.1: 0 + 5: 0 + 5.1: 0 + 7: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page10reuse_sizeEv:0 + 0: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 32: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9alloc_bigEl:0 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 3: 0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_headEPNS3_4PageE:0 + 4: 0 + 5: 0 + 7: 0 + 7: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:0 + 3: 0 +_ZN9oceanbase3sql9ObPlanSet17match_params_infoEPKNS_6common9Ob2DArrayINS2_10ObObjParamELi2079744ENS2_18ObWrapperAllocatorELb0ENS2_9ObSEArrayIPS4_Ll1ES5_Lb0EEEEERNS0_14ObPlanCacheCtxElRb:6191377:4919 + 4: 4503 + 5: 4503 + 6: 4503 + 7: 4503 + 9: 4503 + 10: 4503 + 12.1: 4503 + 13: 0 + 14.1: 4503 + 20.1: 7175 + 21: 7175 + 25.1: 0 + 47: 4846 + 47.2: 4846 + 48: 0 + 49: 0 + 50.1: 0 + 52.1: 0 + 53: 22 + 54.1: 22 + 56.2: 0 + 58.1: 22 + 58.3: 0 + 58.4: 0 + 58.6: 22 + 59: 0 + 59.1: 0 + 60.1: 22 + 62: 0 + 69: 4589 + 73: 4589 + 74: 22 + 75.1: 22 + 76.1: 4589 + 77: 22 + 78.1: 22 + 79.1: 4589 + 79.2: 4589 _ZN9oceanbase6common16ObClockGenerator8getClockEv:4772 + 79.3: 4498 _ZN9oceanbase3sql17ObPhysicalPlanCtx12set_cur_timeERKlRKNS0_16ObSQLSessionInfoE:4766 + 82.1: 4412 + 83: 5 + 84.1: 5 + 87.1: 4412 + 87.2: 4412 + 88: 5 + 92.1: 22 + 93.1: 5 + 101.1: 6935 + 101.3: 11650 + 101.4: 11650 + 102: 7064 _ZN9oceanbase6common9Ob2DArrayINS_3sql11ObParamInfoELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS3_Ll64ES4_Lb0EEEE2atEl:7265 + 102.1: 7064 _ZNK9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE2atEl:7260 + 102.2: 7088 _ZNK9oceanbase3sql9ObPlanSet22match_param_bool_valueERKNS0_11ObParamInfoERKNS_6common10ObObjParamERb:7245 + 105.1: 22 + 111.1: 4818 _ZN9oceanbase3sql9ObPlanSet16match_constraintERKNS_6common9Ob2DArrayINS2_10ObObjParamELi2079744ENS2_18ObWrapperAllocatorELb0ENS2_9ObSEArrayIPS4_Ll1ES5_Lb0EEEEERb:4690 + 111.3: 22 + 114: 4758 + 115: 4758 _ZN9oceanbase3sql9ObPlanSet21match_multi_stmt_infoERKNS_6common9Ob2DArrayINS2_10ObObjParamELi2079744ENS2_18ObWrapperAllocatorELb0ENS2_9ObSEArrayIPS4_Ll1ES5_Lb0EEEEERKNS2_8ObIArrayIlEERb:4875 + 116.1: 22 + 117.1: 4624 + 118: 22 + 119.1: 22 + 122: 22 + 123: 22 + 127: 4624 + 8: _ZN9oceanbase3sql17ObSessionVariableC2Ev:148599 + 0: _ZN9oceanbase6common9ObObjMetaC2Ev:67545 + 1: 4503 + 0.1: _ZN9oceanbase6common5ObObjC2Ev:81054 + 2: _ZN9oceanbase6common5ObObj5resetEv:81054 + 6: 4503 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:31521 + 0: 4503 + 10: _ZN9oceanbase3sql9ObPlanSet22is_match_outline_paramEl:31521 + 2: 4503 + 14.1: _ZNK9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE5countEv:36024 + 0: 4503 + 14.2: _ZNK9oceanbase6common9Ob2DArrayINS_3sql11ObParamInfoELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS3_Ll64ES4_Lb0EEEE5countEv:31521 + 0: 4503 + 21: _ZN9oceanbase6common9Ob2DArrayINS_3sql11ObParamInfoELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS3_Ll64ES4_Lb0EEEE2atEl:455013 + 2.1: 6744 + 2.2: 6744 + 3.1: 0 + 5: 6744 + 5: _ZNK9oceanbase6common9Ob2DArrayINS_3sql11ObParamInfoELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS3_Ll64ES4_Lb0EEEE11get_obj_posEl:283248 + 4: 6744 + 5: 6744 + 4: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql11ObParamInfoEE2atEl:47208 + 6: 6744 + 21.1: _ZNK9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE2atEl:411384 + 2.1: 6744 + 2.2: 6744 + 3.1: 0 + 5: 0 + 5: _ZNK9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE11get_obj_posEl:323712 + 4: 6744 + 5: 6744 + 4: _ZNK9oceanbase6common12ObIArrayWrapIPNS0_10ObObjParamEE2atEl:26976 + 6: 6744 + 21.2: _ZNK9oceanbase3sql9ObPlanSet16match_param_infoERKNS0_11ObParamInfoERKNS_6common10ObObjParamERbb:1484642 + 5: 6744 + 6: 6744 + 12: 6744 + 12.1: 2 + 13: 6744 + 13.1: 1164 + 13.2: 1164 + 14: 2 + 14.1: 2 + 15: 5632 + 15.1: 2 + 17: 2 + 21.1: 5789 + 22.1: 97 + 27: 5789 + 29.1: 5789 + 31.1: 5789 + 33: 2 + 35.1: 2 + 35.2: 2 + 36.1: 0 + 37.2: 2 + 37.3: 2 + 38.1: 2 + 39: 2 + 44.2: 5857 + 46.1: 5939 _ZN9oceanbase3sql10ObSQLUtils22is_oracle_empty_stringERKNS_6common10ObObjParamE:6009 + 47: 6363 + 49.1: 6168 + 52: 6168 + 55: 7175 + 13.2: _ZN9oceanbase3lib14is_oracle_modeEv:51216 + 2: _ZN9oceanbase3lib15get_compat_modeEv:51216 + 2: 1164 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:32592 + 2: 1164 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 15: _ZN9oceanbase3lib14is_oracle_modeEv:298504 + 2: _ZN9oceanbase3lib15get_compat_modeEv:298504 + 2: 5632 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:180232 + 2: 5632 + 2.1: 0 + 65419.1: 2 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 16.1: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:33792 + 0: 5632 + 27: _ZNK9oceanbase6common5ObObj18get_collation_typeEv:57890 + 0: _ZNK9oceanbase6common9ObObjMeta18get_collation_typeEv:57890 + 0: 5789 + 29.2: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:57890 + 0: 5789 + 31.1: _ZNK9oceanbase6common5ObObj6is_extEv:28945 + 0: _ZNK9oceanbase6common9ObObjMeta6is_extEv:28945 + 0: 5789 + 32: _ZN9oceanbase6common10ObDataTypeC2Ev:80 + 3: 2 + 4: 2 + 1: _ZN9oceanbase6common9ObObjMetaC2Ev:20 + 1: 2 + 2: _ZN9oceanbase6common10ObAccuracyC2Ev:22 + 0: _ZN9oceanbase6common10ObAccuracy5resetEv:22 + 0: 2 + 37.1: _ZNK9oceanbase6common10ObDataType9get_scaleEv:22 + 0: _ZNK9oceanbase6common10ObAccuracy9get_scaleEv:22 + 0: 2 + 38: _ZNK9oceanbase6common10ObDataType12get_obj_typeEv:14 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:14 + 0: 2 + 49.1: _ZNK9oceanbase6common10ObObjParam10is_booleanEv:67848 + 0: 6168 + 52: _ZNK9oceanbase6common10ObObjParam9get_scaleEv:61680 + 0: _ZNK9oceanbase6common10ObAccuracy9get_scaleEv:61680 + 0: 6168 + 47.2: _ZNK9oceanbase6common12ObIArrayWrapINS0_8ObStringEE5countEv:33922 + 0: 4846 + 59: _ZN9oceanbase6common12ObIArrayWrapINS0_8ObStringEE2atEl:0 + 6: 0 + 62: _ZN9oceanbase6common12ObIArrayWrapINS0_9ObObjMetaEE2atEl:0 + 6: 0 + 62.1: _ZNK9oceanbase6common9ObObjMetaeqERKS1_:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 71: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:32123 + 2: 4589 + 82.1: _ZNK9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE5countEv:30884 + 0: 4412 + 87: _ZN9oceanbase6common7ObDListINS_3sql23ObPreCalcExprConstraintEE9get_firstEv:61768 + 0: 4412 + 87.6: _ZN9oceanbase6common11ObDLinkBaseINS_3sql23ObPreCalcExprConstraintEE8get_nextEv:176 + 0: 44 + 88: _ZN9oceanbase3sql17ObPlanCacheObject19check_pre_calc_consEbRbRNS0_23ObPreCalcExprConstraintERNS0_13ObExecContextE:217540 + 5: 5 + 6: 5 + 7: 5 + 9: 5 + 11: 5 + 12: 22 + 13.1: 22 + 15.1: 5 + 16: 5 + 16.1: 5 + 17.1: 5 + 19.1: 5 + 19.2: 5 + 20.1: 22 + 21: 22 + 22: 22 + 25.1: 5 + 25.4: 5 + 25.5: 5 + 26.1: 5 + 26.2: 5 + 26.3: 5 + 27.1: 22 + 28.1: 5 + 28.2: 5 + 29.1: 22 + 33: 5 + 34.8: 5 + 34.9: 22 + 7: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:35 + 2: 5 + 10: _ZN9oceanbase6common9ObSEArrayINS_3sql15ObDatumObjParamELl4ENS0_19ModulePageAllocatorELb0EEC2Ev:212486 + 0.1: 5 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_3sql15ObDatumObjParamELl4ENS0_19ModulePageAllocatorELb0EEC2ElRKS4_:212451 + 5: 5 + 6: 5 + 8: 5 + 17.1: 5 + 2: _ZN9oceanbase6common8ObIArrayINS_3sql15ObDatumObjParamEEC2EPS3_l:90 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_3sql15ObDatumObjParamEEC2EPS3_l:90 + 0: 5 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:230 + 0: 5 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:125 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:125 + 2: 5 + 8: 5 + 14.1: _ZN9oceanbase3sql17ObPhysicalPlanCtx15set_ignore_stmtEb:30 + 0: 5 + 24: _ZN9oceanbase6common10ObObjParamC2Ev:390 + 0: 5 + 1: 5 + 0: _ZN9oceanbase6common5ObObjC2Ev:130 + 2: _ZN9oceanbase6common5ObObj5resetEv:130 + 6: 5 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:60 + 0: 5 + 0.1: _ZN9oceanbase6common9ObObjMetaC2Ev:65 + 1: 5 + 0.3: _ZN9oceanbase6common9ParamFlagC2Ev:70 + 7: 5 + 8: 5 + 26: _ZN9oceanbase6common12ObIArrayWrapINS_3sql15ObDatumObjParamEE2atEl:55 + 6: 5 +_ZN9oceanbase3sql19ObPhyLocationGetter17get_phy_locationsERKNS_6common8ObIArrayINS0_15ObTableLocationEEERKNS0_14ObPlanCacheCtxERNS3_INS0_15ObCandiTableLocEEERb:6125422:4601 + 4: 4454 + 5: 4454 + 6: 4454 + 7: 4454 + 8: 4454 + 9: 4454 + 10: 4454 + 12: 4454 + 13: 4454 + 14: 4454 + 15: 26 + 16.1: 26 + 21: 4454 + 21.1: 4520 + 22.1: 26 + 24.1: 4520 + 24.3: 4520 + 24.5: 4228 + 27.2: 4325 + 27.3: 26 + 27.4: 26 + 27.7: 26 + 27.8: 26 + 27.9: 26 + 30.1: 4325 _ZNK9oceanbase3sql15ObTableLocation32calculate_candi_tablet_locationsERNS0_13ObExecContextERKNS_6common9Ob2DArrayINS4_10ObObjParamELi2079744ENS4_18ObWrapperAllocatorELb0ENS4_9ObSEArrayIPS6_Ll1ES7_Lb0EEEEERNS4_8ObIArrayINS0_16ObCandiTabletLocEEERKNS4_20ObDataTypeCastParamsEb:4453 + 30.2: 4501 + 35.1: 26 + 37.2: 4320 + 37.4: 26 + 37.7: 26 + 38.1: 4320 + 39: 26 + 42.1: 4587 _ZN9oceanbase3sql15ObCandiTableLoc22set_table_location_keyEmm:4603 + 46: 4228 + 47.1: 4228 + 48.1: 26 + 50.2: 4228 + 51.1: 26 + 53.2: 4228 + 54.1: 26 + 55.1: 4228 + 56.1: 26 + 62: 4461 + 63: 4461 _ZNK9oceanbase3sql13ObExecContext8get_addrEv:4756 + 63.1: 4904 _ZN9oceanbase3sql9ObLogPlan15select_replicasERNS0_13ObExecContextERKNS_6common8ObIArrayIPKNS0_15ObTableLocationEEERKNS4_6ObAddrERNS5_IPNS0_15ObCandiTableLocEEE:4911 + 63.2: 4841 + 66.1: 26 + 68.1: 4841 + 70.1: 26 + 70.2: 26 + 72.1: 26 + 73.1: 26 + 74: 26 + 76.1: 4841 _ZZN9oceanbase3sql19ObPhyLocationGetter17get_phy_locationsERKNS_6common8ObIArrayINS0_15ObTableLocationEEERKNS0_14ObPlanCacheCtxERNS3_INS0_15ObCandiTableLocEEERbENK5$_355clEPKc.08a2b9b0d59ff83413633eb11fd88a2d:4835 + 79: 4791 _ZN9oceanbase6common13ObSEArrayImplIPNS_3sql15ObCandiTableLocELl2ENS0_19ModulePageAllocatorELb0EED2Ev:5059 + 79.1: 26 + 79.2: 26 + 79.3: 4889 _ZN9oceanbase6common13ObSEArrayImplIPKNS_3sql15ObTableLocationELl2ENS0_19ModulePageAllocatorELb0EED2Ev:5117 + 81: 4765 + 8.2: _ZN9oceanbase3sql18ObBasicSessionInfo17create_dtc_paramsEPKS1_:1074896 + 2: 4454 + 2.1: _ZNK9oceanbase3sql18ObBasicSessionInfo14get_dtc_paramsEv:1046690 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo17get_timezone_infoEv:31178 + 0: _ZNK9oceanbase6common18ObTimeZoneInfoWrap18get_time_zone_infoEv:31178 + 0: 4454 + 2.1: _ZN9oceanbase6common20ObDataTypeCastParamsC2EPKNS0_14ObTimeZoneInfoENS0_8ObStringES5_S5_NS0_15ObCollationTypeES6_S6_b:236062 + 8: 4454 + 10: 4454 + 11: 4454 + 12: 4454 + 13: 4454 + 15: 4454 + 16: 4454 + 17: 4454 + 3: _ZNK9oceanbase3sql18ObBasicSessionInfo25get_local_nls_date_formatEv:222700 + 2: 4454 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache19get_nls_date_formatEv:129166 + 0: 4454 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache19get_nls_date_formatEb:31178 + 0: 4454 + 4: _ZNK9oceanbase3sql18ObBasicSessionInfo30get_local_nls_timestamp_formatEv:106896 + 2: 4454 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_nls_timestamp_formatEv:44540 + 0: 4454 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_nls_timestamp_formatEb:31178 + 0: 4454 + 5: _ZNK9oceanbase3sql18ObBasicSessionInfo33get_local_nls_timestamp_tz_formatEv:120258 + 2: 4454 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache27get_nls_timestamp_tz_formatEv:57902 + 0: 4454 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache27get_nls_timestamp_tz_formatEb:31178 + 0: 4454 + 6: _ZNK9oceanbase3sql18ObBasicSessionInfo17get_nls_collationEv:115804 + 2: 4454 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache17get_nls_collationEv:106896 + 0: 4454 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache17get_nls_collationEb:80172 + 0: 4454 + 7: _ZNK9oceanbase3sql18ObBasicSessionInfo24get_nls_collation_nationEv:115804 + 2: 4454 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_nls_nation_collationEv:106896 + 0: 4454 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_nls_nation_collationEb:80172 + 0: 4454 + 8: _ZNK9oceanbase3sql18ObBasicSessionInfo30get_local_collation_connectionEv:97988 + 2: 4454 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_collation_connectionEv:89080 + 0: 4454 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_collation_connectionEb:75718 + 0: 4454 + 3: _ZN9oceanbase6common20ObDataTypeCastParamsC2Ev:1482 + 4: 26 + 6: 26 + 2.1: _ZN9oceanbase6common8ObStringC2Ev:806 + 1: 26 + 9: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:31178 + 2: 4454 + 10: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql15ObTableLocationEE5countEv:17816 + 0: 4454 + 18: _ZN9oceanbase6common9ObSEArrayIPKNS_3sql15ObTableLocationELl2ENS0_19ModulePageAllocatorELb0EEC2Ev:743818 + 0.1: 4454 + 0.5: _ZN9oceanbase6common13ObSEArrayImplIPKNS_3sql15ObTableLocationELl2ENS0_19ModulePageAllocatorELb0EEC2ElRKS6_:663646 + 2: 4454 + 5: 4454 + 6: 4454 + 8: 4454 + 17.1: 4454 + 2: _ZN9oceanbase6common8ObIArrayIPKNS_3sql15ObTableLocationEEC2EPS5_l:80172 + 0: _ZN9oceanbase6common12ObIArrayWrapIPKNS_3sql15ObTableLocationEEC2EPS5_l:80172 + 0: 4454 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:253878 + 0: 4454 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:111350 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:111350 + 2: 4454 + 8: 4454 + 19: _ZN9oceanbase6common9ObSEArrayIPNS_3sql15ObCandiTableLocELl2ENS0_19ModulePageAllocatorELb0EEC2Ev:570112 + 0.1: 4454 + 0.5: _ZN9oceanbase6common13ObSEArrayImplIPNS_3sql15ObCandiTableLocELl2ENS0_19ModulePageAllocatorELb0EEC2ElRKS5_:489940 + 2: 4454 + 5: 4454 + 6: 4454 + 8: 4454 + 17.1: 4454 + 2: _ZN9oceanbase6common8ObIArrayIPNS_3sql15ObCandiTableLocEEC2EPS4_l:80172 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql15ObCandiTableLocEEC2EPS4_l:80172 + 0: 4454 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:142528 + 0: 4454 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:80172 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:80172 + 2: 4454 + 8: 4454 + 21: _ZN9oceanbase6common13ObSEArrayImplINS_3sql15ObCandiTableLocELl2ENS0_19ModulePageAllocatorELb0EE16prepare_allocateEl:7503 + 4: 259 + 5: 26 + 7: 26 + 8: 259 + 9: _ZN9oceanbase6common9ObClassOpINS_3sql15ObCandiTableLocELb0EE23array_default_constructEPS3_l:1372 + 2.1: 28 + 3: 28 + 21: _ZN9oceanbase6common13ObSEArrayImplINS_3sql15ObCandiTableLocELl4ENS0_19ModulePageAllocatorELb0EE16prepare_allocateEl:263505 + 4: 4231 + 5: 26 + 7: 26 + 8: 4231 + 9: _ZN9oceanbase6common9ObClassOpINS_3sql15ObCandiTableLocELb0EE23array_default_constructEPS3_l:144595 + 2.1: 4288 + 3: 4231 _ZN9oceanbase3sql15ObCandiTableLocC1Ev:4379 + 25: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql15ObTableLocationEE2atEl:17156 + 6: 4289 + 26: _ZN9oceanbase6common12ObIArrayWrapINS_3sql15ObCandiTableLocEE2atEl:17156 + 6: 4289 + 27.1: _ZN9oceanbase3lib20is_trace_log_enabledEv:34588 + 2: 4289 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:4431 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:30275 + 2: 4325 + 27.6: _ZN9oceanbase3lib20is_trace_log_enabledEv:312 + 2: 26 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:182 + 2: 26 + 27.10: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:676 + 0: 26 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:130 + 2: 26 + 30: _ZN9oceanbase3sql15ObCandiTableLoc37get_phy_part_loc_info_list_for_updateEv:34600 + 2: 4325 + 37.1: _ZN9oceanbase3lib20is_trace_log_enabledEv:34765 + 2: 4501 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:4746 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:30240 + 2: 4320 + 37.3: _ZN9oceanbase6common18get_trace_recorderEv:1716 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:1716 + 7: 26 + 8: 26 + 8.1: 26 + 37.6: _ZN9oceanbase3lib20is_trace_log_enabledEv:312 + 2: 26 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:182 + 2: 26 + 37.8: _ZN9oceanbase6common18get_trace_recorderEv:1898 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:1898 + 7: 26 + 8: 26 + 8.1: 26 + 37.9: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl189ELl1600EE9add_eventEv:2574 + 2: 26 + 3.1: 26 + 6: 26 + 10: 26 + 11: 26 + 12: 26 + 37.10: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:780 + 0: 26 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:130 + 2: 26 + 38: _ZNK9oceanbase3sql15ObTableLocation29is_duplicate_table_not_in_dmlEv:102831 + 1: 4587 + 41: _ZNK9oceanbase3sql15ObTableLocation18get_duplicate_typeEv:64218 + 0: _ZN9oceanbase3sql26loc_meta_to_duplicate_typeERKNS0_17ObDASTableLocMetaE:64218 + 3: 4587 + 41.1: _ZN9oceanbase3sql15ObCandiTableLoc18set_duplicate_typeENS0_15ObDuplicateTypeE:36696 + 0: 4587 + 43: _ZNK9oceanbase3sql15ObTableLocation12get_table_idEv:36696 + 0: 4587 + 43.1: _ZNK9oceanbase3sql15ObTableLocation16get_ref_table_idEv:68805 + 0: 4587 + 47: _ZN9oceanbase6common13ObSEArrayImplIPKNS_3sql15ObTableLocationELl2ENS0_19ModulePageAllocatorELb0EE9push_backERKS5_:212440 + 5: 4228 + 6: 26 + 12: 26 + 15: 26 + 15.1: 4228 + 16: 4228 + 15.1: _ZN9oceanbase6common9ObClassOpIPKNS_3sql15ObTableLocationELb1EE20construct_and_assignERKS5_RS5_:16912 + 2: 4228 + 50.1: _ZN9oceanbase6common13ObSEArrayImplIPNS_3sql15ObCandiTableLocELl2ENS0_19ModulePageAllocatorELb0EE9push_backERKS4_:195528 + 5: 4228 + 6: 26 + 12: 26 + 15: 26 + 15.1: 4228 + 16: 4228 + 15.1: _ZN9oceanbase6common9ObClassOpIPNS_3sql15ObCandiTableLocELb1EE20construct_and_assignERKS4_RS4_:16912 + 2: 4228 + 53.1: _ZNK9oceanbase3sql14ObPlanCacheCtx20is_retry_for_dup_tblERb:169978 + 2: 4228 + 4: 4228 + 5: 26 + 6.1: 26 + 11: 26 + 8: _ZN9oceanbase3sql18ObBasicSessionInfo27get_is_in_retry_for_dup_tblEv:38052 + 1: 4228 +_ZN9oceanbase3sql21ObSqlParameterization11fast_parserERNS_6common12ObIAllocatorEmNS2_15ObCollationTypeERKNS2_8ObStringEbRNS0_18ObFastParserResultE:6072314:4578 + 6: 4568 + 8: 4568 + 9: 4568 + 10: 4568 + 11: 4568 + 12: 4568 + 13: 4568 + 14: 4568 + 14.1: 4926 + 14.3: 4568 + 15: 4926 + 16: 0 + 16.1: 1158 _ZN9oceanbase3sql8ObParser10is_pl_stmtERKNS_6common8ObStringEPbS6_:1179 + 18.1: 4887 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:5099 + 19: 4685 _ZN9oceanbase3sql12ObFastParser5parseERKNS_6common8ObStringEbRPcRlRP10_ParamListS8_NS2_15ObCollationTypeERNS2_12ObIAllocatorEm:4792 + 21.1: 0 + 24: 0 + 25: 4517 + 26: 4517 + 28: 4517 + 30: 4517 + 31: 4517 + 32: 0 + 33.1: 0 + 35.1: 7032 + 35.2: 11769 + 35.6: 7032 + 36: 6880 + 37: 6880 + 38: 6880 + 39: 7032 + 40.1: 0 + 42: 7032 + 48: 3 + 49: 3 + 49.4: 3 + 49.6: 3 + 49.12: 3 + 50: 3 + 50.1: 3 + 51.1: 0 + 53: 3 + 54: 3 + 56: 3 + 57: 3 + 58: 3 + 59: 3 + 59.1: 3 + 62: 3 + 63: 0 + 64.1: 0 + 67: 3 + 67.1: 3 + 68: 3 + 69: 3 + 69.1: 3 + 70: 3 + 71: 3 + 72: 3 + 72.1: 3 + 73.1: 0 + 75: 3 + 81.4: 0 + 81.5: 3 + 82: 4907 + 14: _ZNK9oceanbase6common8ObString6lengthEv:36544 + 0: 4568 + 14.1: _ZNK9oceanbase6common8ObString3ptrEv:18272 + 0: 4568 + 15.1: _ZN9oceanbase3sql21ObSqlParameterization16need_fast_parserERKNS_6common8ObStringE:54431 + 6.1: 3 + 6.2: 1158 + 6.3: 1158 + 7: 0 + 9: 1158 + 11: 1158 + 11.1: 1158 + 11.3: 0 + 12: 0 + 17: _ZNK9oceanbase6common8ObString3ptrEv:12 + 0: 3 + 17.1: _ZNK9oceanbase6common8ObString6lengthEv:12 + 0: 3 + 17.2: _ZN9oceanbase6common8ObString10assign_ptrEPKci:75 + 2: 3 + 3: 3 + 5: 3 + 25: _ZN9oceanbase6common8ObString10assign_ptrEPKci:112925 + 2: 4517 + 3: 4517 + 5: 4517 + 28: _ZN9oceanbase6common16ObArenaAllocator5allocEl:539311 + 0: 4517 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13alloc_alignedEll:521243 + 3: 4517 + 6: 4517 + 7: 4517 + 8: 4517 + 10: 4517 + 11: 4517 + 12: 4517 + 13: 4517 + 15.1: 0 + 16: 0 + 18: 0 + 20: 0 + 28: 0 + 35: 4517 + 36: 4517 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE15ensure_cur_pageEv:59822 + 2: 4517 + 3: 3 + 5.1: 3 + 8: 3 + 9: 3 + 10: 3 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:879 + 5: 3 + 6: 3 + 8: 3 + 9: 3 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:693 + 2: 3 + 3: 3 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:48 + 5: 3 + 7: 3 + 8: 3 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:537 + 2: 3 + 2.2: 3 + 2.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:459 + 3: 3 + 4: 3 + 5: 3 + 6: 3 + 7: 3 + 8: 3 + 9: 3 + 10: 3 + 11: 3 + 13: 3 + 14.1: 3 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:21 + 2: 3 + 9: _ZSt3maxIlERKT_S2_S2_:36 + 5: 3 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:72 + 1: 3 + 3: 3 + 8: _ZL12abort_unlessb:18 + 5: 3 + 6: 0 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:24 + 0: 3 + 7: _ZN9oceanbase6common16get_align_offsetEPvl:58721 + 3: 4517 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:31619 + 0: 4517 + 11: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:31619 + 7: 4517 + 15.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE18is_normal_overflowEl:0 + 2: 0 + 16: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11extend_pageEl:0 + 4: 0 + 5: 0 + 8: 0 + 9: 0 + 10.1: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 12: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_tailEPNS3_4PageE:0 + 2: 0 + 3: 0 + 5: 0 + 23.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16lookup_next_pageEl:0 + 3.1: 0 + 4.1: 0 + 5: 0 + 5.1: 0 + 7: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page10reuse_sizeEv:0 + 0: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 32: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9alloc_bigEl:591 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:408 + 3: 3 + 5: 3 + 6: 3 + 8: 3 + 9: 3 + 11.1: 3 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:141 + 2: 3 + 3: 3 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:45 + 5: 3 + 7: 3 + 8: 3 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:72 + 1: 3 + 3: 3 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_headEPNS3_4PageE:63 + 4: 3 + 5: 3 + 7: 3 + 7: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:120 + 3: 3 + 5.1: 3 + 7: 3 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:33 + 0: 3 + 29: _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql9ObPCParamENS0_12ObIAllocatorEE13set_allocatorEPS5_:31619 + 0: 4517 + 30: _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql9ObPCParamENS0_12ObIAllocatorEE12set_capacityEj:31619 + 0: 4517 + 36: _ZN9oceanbase3sql9ObPCParamC2Ev:103200 + 0: 6880 + 39: _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql9ObPCParamENS0_12ObIAllocatorEE9push_backERKS4_:2771950 + 2: 6880 + 3: 6880 + 4: 6880 + 5: 4595 + 6.1: 0 + 6.5: 0 + 6.7: 0 + 9: 0 + 10.1: 0 + 10.5: 0 + 10.9: 0 + 12.1: 2368 + 13: 0 + 14.1: 0 + 14.5: 0 + 14.11: 0 + 16: 2368 + 17: 7032 + 23: 7032 + 26: 7032 + 5: _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql9ObPCParamENS0_12ObIAllocatorEE7reserveEl:1401475 + 2: 4595 + 7: 4595 + 8.1: 0 + 8.5: 0 + 8.9: 0 + 11: 0 + 11.1: 4595 + 12: 0 + 13.1: 0 + 13.5: 0 + 13.11: 0 + 17: 4595 + 7: _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql9ObPCParamENS0_12ObIAllocatorEE4initEl:1213080 + 2: 4595 + 9.1: 4595 + 10: 0 + 11.1: 0 + 11.5: 0 + 11.9: 0 + 16: 4595 + 17: 0 + 18: 0 + 19.1: 0 + 21: 4595 + 22: 4595 + 23: 4595 + 26: 4595 + 11.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 11.8: _ZN9oceanbase6common7ObLogKVIRKPNS0_12ObIAllocatorELb0EEC2EPKcS5_:0 + 0: 0 + 16: _ZN9oceanbase6common16ObArenaAllocator5allocEl:776555 + 0: 4595 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13alloc_alignedEll:680060 + 3: 4595 + 6: 0 + 7: 4595 + 8: 4595 + 10: 4595 + 11: 4595 + 12: 4595 + 13: 4595 + 15.1: 0 + 16: 0 + 18: 0 + 20: 0 + 24: 0 + 28: 0 + 35: 4595 + 36: 4595 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE15ensure_cur_pageEv:73520 + 2: 4595 + 3: 0 + 5.1: 0 + 8: 0 + 9: 0 + 10: 0 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:0 + 2: 0 + 2.2: 0 + 2.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 9: _ZSt3maxIlERKT_S2_S2_:0 + 5: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 8: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:0 + 0: 0 + 7: _ZN9oceanbase6common16get_align_offsetEPvl:91900 + 3: 4595 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:32165 + 0: 4595 + 11: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:32165 + 7: 4595 + 15.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE18is_normal_overflowEl:0 + 2: 0 + 16: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11extend_pageEl:0 + 4: 0 + 5: 0 + 8: 0 + 9: 0 + 10.1: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 12: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_tailEPNS3_4PageE:0 + 2: 0 + 3: 0 + 5: 0 + 23.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16lookup_next_pageEl:0 + 3.1: 0 + 4.1: 0 + 5: 0 + 5.1: 0 + 7: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page10reuse_sizeEv:0 + 0: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 32: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9alloc_bigEl:0 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 3: 0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_headEPNS3_4PageE:0 + 4: 0 + 5: 0 + 7: 0 + 7: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:0 + 5.1: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:0 + 0: 0 + 8.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 8.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 13.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 13.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 13.10: _ZN9oceanbase6common7ObLogKVIRKjLb0EEC2EPKcS3_:0 + 0: 0 + 6.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 10.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 10.8: _ZN9oceanbase6common7ObLogKVIRKjLb0EEC2EPKcS3_:0 + 0: 0 + 14.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 14.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 14.10: _ZN9oceanbase6common7ObLogKVIRKjLb0EEC2EPKcS3_:0 + 0: 0 + 26: _ZN9oceanbase6common11copy_assignIPNS_3sql9ObPCParamEEEiRT_RKS5_:28128 + 2: _ZN9oceanbase6common16copy_assign_wrapIPNS_3sql9ObPCParamEEEiRT_RKS5_NS0_8BoolTypeILb0EEE:28128 + 2: 7032 + 49.2: _ZN9oceanbase6common8precheckI11ParseResultEEibRb:237 + 6: _ZN9oceanbase6common15check_from_heapEiRb:237 + 4: 3 + 5: 3 + 6: 3 + 6.1: 3 + 10: 3 + 10.2: 3 + 49.6: _ZN9oceanbase6common2SVI11ParseResultLb0EEC2IZNS_3sql21ObSqlParameterization11fast_parserERNS0_12ObIAllocatorEmNS0_15ObCollationTypeERKNS0_8ObStringEbRNS5_18ObFastParserResultEE5$_938EEibOT_:129 + 3: 3 + 4: 3 + 5: 3 + 6: 3 + 53: _ZN9oceanbase6common8ObString10assign_ptrEPKci:81 + 2: 3 + 3: 3 + 5: 3 + 60: _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql9ObPCParamENS0_12ObIAllocatorEE13set_allocatorEPS5_:21 + 0: 3 + 61: _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql9ObPCParamENS0_12ObIAllocatorEE12set_capacityEj:21 + 0: 3 + 69: _ZN9oceanbase3sql9ObPCParamC2Ev:42 + 0: 3 + 81: _ZN9oceanbase6common2SVI11ParseResultLb0EED2Ev:57 + 5: 3 + 6: 3 + 6.1: 0 + 81.2: _ZN9oceanbase6common2SVI11ParseResultLb0EED2Ev:0 + 2: 0 + 6: 0 + 6.1: 0 +_ZNK9oceanbase7obmysql12ObMySQLField15serialize_pro41EPclRl:6060886:3847 + 1: 3649 + 2: 3649 + 6: 3649 + 9.1: 0 + 11.1: 3558 + 14.1: 0 + 16.1: 3586 + 19.1: 0 + 21.1: 3498 + 24.1: 0 + 26.1: 3683 + 29.1: 0 + 31.1: 3650 + 34.1: 0 + 36.1: 3650 + 38.1: 0 + 40.1: 3650 + 42.1: 0 + 44.1: 3650 + 46.1: 0 + 48.1: 3650 + 50.1: 0 + 52.1: 3650 + 54.1: 0 + 56.1: 3650 + 58.1: 0 + 61: 3650 + 63: 3650 + 64: 0 + 66.1: 0 + 68.1: 0 + 70.1: 0 + 74: 0 + 76.1: 0 + 81: 3650 + 83.1: 3650 + 84: 0 + 84.2: 0 + 87.1: 0 + 89.1: 0 + 89.3: 0 + 92.1: 0 + 94.1: 0 + 96.1: 0 + 98.2: 0 + 99: 0 + 99.1: 0 + 101.1: 0 + 107: 3650 + 107.1: 0 + 108: 3650 + 108.1: 3650 + 109: 3650 + 109.1: 0 + 111: 0 + 113.1: 0 + 115.1: 0 + 117.1: 0 + 121: 3650 + 3: _ZNK9oceanbase6common10ObAccuracy9get_scaleEv:32841 + 0: 3649 + 4: _ZNK9oceanbase6common10ObAccuracy13get_precisionEv:36490 + 0: 3649 + 6: _ZN9oceanbase7obmysql11ObMySQLUtil9store_strEPclPKcRl:738865 + 2: 3649 + 3: _ZN9oceanbase7obmysql11ObMySQLUtil11store_str_vEPclPKcmRl:623505 + 3: 3732 + 4: 3732 + 6: 3732 + 7: 0 + 8.1: 0 + 10: 3732 + 11.1: 3732 + 12: 3732 + 13: 3834 + 14: 3513 + 16: 0 + 17.1: 0 + 20.1: 0 + 21: 0 + 22: 0 + 25: 3513 + 10: _ZN9oceanbase7obmysql11ObMySQLUtil12store_lengthEPclmRl:264972 + 3: 3732 + 3.1: 3732 + 9: 3732 + 11: 3732 + 15: 0 + 23.1: 0 + 26: 0 + 27: 0 + 28: 0 + 31.1: 0 + 39.1: 0 + 12: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int1EPclaRl:44784 + 8.1: 3732 + 9: 3732 + 16: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int1EPclaRl:0 + 8.1: 0 + 9: 0 + 18: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int2EPclsRl:0 + 7: 0 + 8.1: 0 + 9: 0 + 24: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int1EPclaRl:0 + 8.1: 0 + 9: 0 + 32: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int1EPclaRl:0 + 8.1: 0 + 9: 0 + 34: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int8EPcllRl:0 + 7: 0 + 8.1: 0 + 9: 0 + 40: _ZN9oceanbase7obmysql11ObMySQLUtil10store_nullEPclRl:0 + 2: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int1EPclaRl:0 + 8.1: 0 + 9: 0 + 11.1: _ZNK9oceanbase6common8ObString3ptrEv:14052 + 0: 3513 + 11.2: _ZNK9oceanbase6common8ObString6lengthEv:80799 + 0: 3513 + 11.3: _ZN9oceanbase7obmysql11ObMySQLUtil11store_str_vEPclPKcmRl:522875 + 3: 3513 + 4: 3513 + 6: 3513 + 7: 0 + 8.1: 0 + 10: 3513 + 11.1: 3513 + 12: 3513 + 13: 3539 + 14: 3558 + 16: 0 + 17.1: 0 + 20.1: 0 + 21: 0 + 22: 0 + 25: 3558 + 10: _ZN9oceanbase7obmysql11ObMySQLUtil12store_lengthEPclmRl:245910 + 3: 3513 + 3.1: 3513 + 9: 3513 + 11: 3513 + 15: 0 + 23.1: 0 + 26: 0 + 27: 0 + 28: 0 + 31.1: 0 + 39.1: 0 + 12: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int1EPclaRl:42156 + 8.1: 3513 + 9: 3513 + 16: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int1EPclaRl:0 + 8.1: 0 + 9: 0 + 18: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int2EPclsRl:0 + 7: 0 + 8.1: 0 + 9: 0 + 24: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int1EPclaRl:0 + 8.1: 0 + 9: 0 + 32: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int1EPclaRl:0 + 8.1: 0 + 9: 0 + 34: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int8EPcllRl:0 + 7: 0 + 8.1: 0 + 9: 0 + 40: _ZN9oceanbase7obmysql11ObMySQLUtil10store_nullEPclRl:0 + 2: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int1EPclaRl:0 + 8.1: 0 + 9: 0 + 16.1: _ZNK9oceanbase6common8ObString3ptrEv:14232 + 0: 3558 + 16.2: _ZNK9oceanbase6common8ObString6lengthEv:81834 + 0: 3558 + 16.3: _ZN9oceanbase7obmysql11ObMySQLUtil11store_str_vEPclPKcmRl:528955 + 3: 3558 + 4: 3558 + 6: 3558 + 7: 0 + 8.1: 0 + 10: 3558 + 11.1: 3558 + 12: 3558 + 13: 3528 + 14: 3586 + 16: 0 + 17.1: 0 + 20.1: 0 + 21: 0 + 22: 0 + 25: 3586 + 10: _ZN9oceanbase7obmysql11ObMySQLUtil12store_lengthEPclmRl:249060 + 3: 3558 + 3.1: 3558 + 9: 3558 + 11: 3558 + 15: 0 + 23.1: 0 + 26: 0 + 27: 0 + 28: 0 + 31.1: 0 + 39.1: 0 + 12: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int1EPclaRl:42696 + 8.1: 3558 + 9: 3558 + 16: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int1EPclaRl:0 + 8.1: 0 + 9: 0 + 18: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int2EPclsRl:0 + 7: 0 + 8.1: 0 + 9: 0 + 24: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int1EPclaRl:0 + 8.1: 0 + 9: 0 + 32: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int1EPclaRl:0 + 8.1: 0 + 9: 0 + 34: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int8EPcllRl:0 + 7: 0 + 8.1: 0 + 9: 0 + 40: _ZN9oceanbase7obmysql11ObMySQLUtil10store_nullEPclRl:0 + 2: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int1EPclaRl:0 + 8.1: 0 + 9: 0 + 21.1: _ZNK9oceanbase6common8ObString3ptrEv:14344 + 0: 3586 + 21.2: _ZNK9oceanbase6common8ObString6lengthEv:82478 + 0: 3586 + 21.3: _ZN9oceanbase7obmysql11ObMySQLUtil11store_str_vEPclPKcmRl:533133 + 3: 3586 + 4: 3586 + 6: 3586 + 7: 0 + 8.1: 0 + 10: 3586 + 11.1: 3586 + 12: 3586 + 13: 3655 + 14: 3498 + 16: 0 + 17.1: 0 + 20.1: 0 + 21: 0 + 22: 0 + 25: 3498 + 10: _ZN9oceanbase7obmysql11ObMySQLUtil12store_lengthEPclmRl:251020 + 3: 3586 + 3.1: 3586 + 9: 3586 + 11: 3586 + 15: 0 + 23.1: 0 + 26: 0 + 27: 0 + 28: 0 + 31.1: 0 + 39.1: 0 + 12: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int1EPclaRl:43032 + 8.1: 3586 + 9: 3586 + 16: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int1EPclaRl:0 + 8.1: 0 + 9: 0 + 18: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int2EPclsRl:0 + 7: 0 + 8.1: 0 + 9: 0 + 24: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int1EPclaRl:0 + 8.1: 0 + 9: 0 + 32: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int1EPclaRl:0 + 8.1: 0 + 9: 0 + 34: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int8EPcllRl:0 + 7: 0 + 8.1: 0 + 9: 0 + 40: _ZN9oceanbase7obmysql11ObMySQLUtil10store_nullEPclRl:0 + 2: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int1EPclaRl:0 + 8.1: 0 + 9: 0 + 26.1: _ZNK9oceanbase6common8ObString3ptrEv:13992 + 0: 3498 + 26.2: _ZNK9oceanbase6common8ObString6lengthEv:80454 + 0: 3498 + 26.3: _ZN9oceanbase7obmysql11ObMySQLUtil11store_str_vEPclPKcmRl:520069 + 3: 3498 + 4: 3498 + 6: 3498 + 7: 0 + 8.1: 0 + 10: 3498 + 11.1: 3498 + 12: 3498 + 13: 3605 + 14: 3683 + 16: 0 + 17.1: 0 + 20.1: 0 + 21: 0 + 22: 0 + 25: 3683 + 10: _ZN9oceanbase7obmysql11ObMySQLUtil12store_lengthEPclmRl:244860 + 3: 3498 + 3.1: 3498 + 9: 3498 + 11: 3498 + 15: 0 + 23.1: 0 + 26: 0 + 27: 0 + 28: 0 + 31.1: 0 + 39.1: 0 + 12: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int1EPclaRl:41976 + 8.1: 3498 + 9: 3498 + 16: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int1EPclaRl:0 + 8.1: 0 + 9: 0 + 18: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int2EPclsRl:0 + 7: 0 + 8.1: 0 + 9: 0 + 24: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int1EPclaRl:0 + 8.1: 0 + 9: 0 + 32: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int1EPclaRl:0 + 8.1: 0 + 9: 0 + 34: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int8EPcllRl:0 + 7: 0 + 8.1: 0 + 9: 0 + 40: _ZN9oceanbase7obmysql11ObMySQLUtil10store_nullEPclRl:0 + 2: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int1EPclaRl:0 + 8.1: 0 + 9: 0 + 31.1: _ZNK9oceanbase6common8ObString3ptrEv:14732 + 0: 3683 + 31.2: _ZNK9oceanbase6common8ObString6lengthEv:84709 + 0: 3683 + 31.3: _ZN9oceanbase7obmysql11ObMySQLUtil11store_str_vEPclPKcmRl:547951 + 3: 3683 + 4: 3683 + 6: 3683 + 7: 0 + 8.1: 0 + 10: 3683 + 11.1: 3683 + 12: 3683 + 13: 3748 + 14: 3650 + 16: 0 + 17.1: 0 + 20.1: 0 + 21: 0 + 22: 0 + 25: 3650 + 10: _ZN9oceanbase7obmysql11ObMySQLUtil12store_lengthEPclmRl:257810 + 3: 3683 + 3.1: 3683 + 9: 3683 + 11: 3683 + 15: 0 + 23.1: 0 + 26: 0 + 27: 0 + 28: 0 + 31.1: 0 + 39.1: 0 + 12: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int1EPclaRl:44196 + 8.1: 3683 + 9: 3683 + 16: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int1EPclaRl:0 + 8.1: 0 + 9: 0 + 18: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int2EPclsRl:0 + 7: 0 + 8.1: 0 + 9: 0 + 24: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int1EPclaRl:0 + 8.1: 0 + 9: 0 + 32: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int1EPclaRl:0 + 8.1: 0 + 9: 0 + 34: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int8EPcllRl:0 + 7: 0 + 8.1: 0 + 9: 0 + 40: _ZN9oceanbase7obmysql11ObMySQLUtil10store_nullEPclRl:0 + 2: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int1EPclaRl:0 + 8.1: 0 + 9: 0 + 36.1: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int1EPclaRl:156950 + 2: 3650 + 3: 3650 + 4: 0 + 5.1: 0 + 5.2: 0 + 5.5: 0 + 5.8: 0 + 7: 3650 + 8.1: 3650 + 9: 3650 + 14: 0 + 5.2: _ZN9oceanbase6common7ObLogKVIPKvLb1EEC2EPKcOKS3_:0 + 0: 0 + 5.7: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 40.1: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int2EPclsRl:135050 + 2: 3650 + 4: 0 + 5.1: 0 + 5.2: 0 + 5.5: 0 + 5.8: 0 + 7: 3650 + 8.1: 3650 + 9: 3650 + 14: 0 + 5.2: _ZN9oceanbase6common7ObLogKVIPKvLb1EEC2EPKcOKS3_:0 + 0: 0 + 5.7: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 44.1: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int4EPcliRl:131400 + 2: 3650 + 4: 0 + 5.1: 0 + 5.2: 0 + 5.5: 0 + 5.8: 0 + 7: 3650 + 8.1: 3650 + 9: 3650 + 14: 0 + 5.2: _ZN9oceanbase6common7ObLogKVIPKvLb1EEC2EPKcOKS3_:0 + 0: 0 + 5.7: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 48.1: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int1EPclaRl:116800 + 2: 3650 + 4: 0 + 5.1: 0 + 5.2: 0 + 5.5: 0 + 5.8: 0 + 7: 3650 + 8.1: 3650 + 9: 3650 + 14: 0 + 5.2: _ZN9oceanbase6common7ObLogKVIPKvLb1EEC2EPKcOKS3_:0 + 0: 0 + 5.7: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 52.1: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int2EPclsRl:135050 + 2: 3650 + 4: 0 + 5.1: 0 + 5.2: 0 + 5.5: 0 + 5.8: 0 + 7: 3650 + 8.1: 3650 + 9: 3650 + 14: 0 + 5.2: _ZN9oceanbase6common7ObLogKVIPKvLb1EEC2EPKcOKS3_:0 + 0: 0 + 5.7: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 56.1: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int1EPclaRl:120450 + 2: 3650 + 4: 0 + 5.1: 0 + 5.2: 0 + 5.5: 0 + 5.8: 0 + 7: 3650 + 8.1: 3650 + 9: 3650 + 11: 0 + 14: 0 + 5.2: _ZN9oceanbase6common7ObLogKVIPKvLb1EEC2EPKcOKS3_:0 + 0: 0 + 5.7: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 63: _ZN9oceanbase3lib14is_oracle_modeEv:160600 + 2: 3650 + 2: _ZN9oceanbase3lib15get_compat_modeEv:149650 + 2: 3650 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:91250 + 2: 3650 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 64: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int1EPclaRl:0 + 2: 0 + 3: 0 + 4: 0 + 5.1: 0 + 5.2: 0 + 5.5: 0 + 5.8: 0 + 7: 0 + 8.1: 0 + 9: 0 + 14: 0 + 5.2: _ZN9oceanbase6common7ObLogKVIPKvLb1EEC2EPKcOKS3_:0 + 0: 0 + 5.7: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 68.1: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int1EPclaRl:0 + 2: 0 + 4: 0 + 5.1: 0 + 5.2: 0 + 5.5: 0 + 5.8: 0 + 7: 0 + 8.1: 0 + 9: 0 + 14: 0 + 5.2: _ZN9oceanbase6common7ObLogKVIPKvLb1EEC2EPKcOKS3_:0 + 0: 0 + 5.7: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 74: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int2EPclsRl:160600 + 2: 3650 + 3: 3650 + 4: 0 + 5.1: 0 + 5.2: 0 + 5.5: 0 + 5.8: 0 + 7: 3650 + 8.1: 3650 + 9: 3650 + 14: 0 + 5.2: _ZN9oceanbase6common7ObLogKVIPKvLb1EEC2EPKcOKS3_:0 + 0: 0 + 5.7: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 84: _ZNK9oceanbase6common8ObString3ptrEv:0 + 0: 0 + 84.1: _ZNK9oceanbase6common8ObString6lengthEv:0 + 0: 0 + 89.1: _ZNK9oceanbase6common8ObString3ptrEv:0 + 0: 0 + 89.2: _ZNK9oceanbase6common8ObString6lengthEv:0 + 0: 0 + 94.1: _ZN9oceanbase7obmysql11ObMySQLUtil12store_lengthEPclmRl:0 + 2: 0 + 3: 0 + 3.1: 0 + 5.1: 0 + 6: 0 + 7.1: 0 + 46: 0 + 40: _ZN9oceanbase7obmysql11ObMySQLUtil10store_nullEPclRl:0 + 2: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int1EPclaRl:0 + 8.1: 0 + 9: 0 + 98.1: _ZNK9oceanbase6common8ObString5emptyEv:0 + 2: 0 + 2.1: 0 + 99.1: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int1EPclaRl:0 + 2: 0 + 3: 0 + 4: 0 + 5.1: 0 + 5.2: 0 + 5.5: 0 + 5.8: 0 + 7: 0 + 8.1: 0 + 9: 0 + 11: 0 + 14: 0 + 5.2: _ZN9oceanbase6common7ObLogKVIPKvLb1EEC2EPKcOKS3_:0 + 0: 0 + 5.7: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 111: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int2EPclsRl:0 + 2: 0 + 3: 0 + 4: 0 + 5.1: 0 + 5.2: 0 + 5.5: 0 + 5.8: 0 + 7: 0 + 8.1: 0 + 9: 0 + 14: 0 + 5.2: _ZN9oceanbase6common7ObLogKVIPKvLb1EEC2EPKcOKS3_:0 + 0: 0 + 5.7: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 115.1: _ZN9oceanbase7obmysql11ObMySQLUtil14store_obstr_ztEPclNS_6common8ObStringERl:0 + 2.2: _ZN9oceanbase7obmysql11ObMySQLUtil13store_str_vztEPclPKcmRl:0 + 3: 0 + 5: 0 + 6.1: 0 + 8: 0 + 8.1: 0 + 12: 0 + 22: 0 +_ZN9oceanbase3sql20ObSqlMemMgrProcessor42update_max_available_mem_size_periodicallyEPNS_6common12ObIAllocatorESt8functionIFblEERb:6010063:77626 + 4: 75182 + 5: 75182 + 6: 75182 + 7: 78583 + 8: 903 + 9.1: 903 + 11: 903 + 12: 903 + 13: 903 + 14: 903 + 15.1: 903 + 17.1: 903 + 21: 78583 + 7: _ZNKSt8functionIFblEEclEl:2109611 + 2: 75182 + 3: 903 + 4.1: 75182 _ZNSt17_Function_handlerIFblEZN9oceanbase3sql12ObSortOpImpl14before_add_rowEvE5$_970E9_M_invokeERKSt9_Any_dataOl.68271ef948b9e29c783f97102b0c767d:51303 _ZNSt17_Function_handlerIFblEZN9oceanbase3sql24ObHashPartInfrastructureINS2_14ObHashPartColsENS2_19ObHashPartStoredRowEE30update_mem_status_periodicallyEvEUllE_E9_M_invokeERKSt9_Any_dataOl:25650 + 2: _ZNKSt14_Function_base8_M_emptyEv:375910 + 0: 75182 + 8: _ZN9oceanbase3sql20ObSqlMemMgrProcessor26get_max_available_mem_sizeEPNS_6common12ObIAllocatorE:65016 + 2: 903 + 3: 903 + 4.1: 903 + 5: 903 + 6.1: 903 + 8.1: 903 + 12: 903 + 3: _ZNK9oceanbase3sql20ObSqlMemMgrProcessor11is_auto_mgrEv:3612 + 0: 903 +_ZN9oceanbase6common12ObLatchMutex4lockEjl:5924885:21689 + 3: 20612 + 4: 20612 + 9: 20612 + 12: 20612 + 15: 50 + 16.1: 50 + 18.1: 50 + 20: 20612 + 21: 20607 + 23: 20607 + 25: 20597 + 27: 60 + 28: 50 + 29: 50 + 35: 9 _ZN9oceanbase6common16ObWaitEventGuardC1Elmlllb:9 + 36: 9 + 37: 9 + 39: 9 + 42: 8 _ZN9oceanbase6common12ObLatchMutex4waitElj:8 + 42.1: 5 + 44.1: 0 + 49.1: 5 _ZN9oceanbase6common16ObWaitEventGuardD1Ev:5 + 49.2: 0 + 51.1: 20601 + 51.2: 19146 _ZN9oceanbase6common20ObDiagnoseTenantInfo23get_local_diagnose_infoEv:17130 + 51.3: 0 + 51.4: 0 + 51.5: 0 + 51.7: 0 + 51.16: 0 + 54: 23579 + 9: _Z9ob_gettidv:1096686 + 3: 20612 + 4: 50 + 2: _Z13get_tid_cachev:517600 + 7: 20612 + 7.1: 50 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:1150 + 0: 50 + 20: _ZN9oceanbase6common12ObLatchMutex12low_try_lockElj:1028677 + 3.1: 20612 + 3.2: 20028 + 4: 41826 + 5: 20638 + 9: 20028 +_ZN9oceanbase12blocksstable10ObDatumRow4initERNS_6common12ObIAllocatorEl:5882697:21880 + 1: 21158 + 2: 21158 + 3: 0 + 4: 0 + 5.1: 0 + 6.1: 21428 + 7.1: 111 + 8.1: 22612 + 9.1: 0 + 10.1: 21429 + 11.1: 0 + 13: 21429 + 14: 21429 + 18: 21429 + 3: _ZNK9oceanbase12blocksstable10ObDatumRow8is_validEv:296212 + 0: 21158 + 0.1: 0 + 6.1: _ZN9oceanbase7storage13ObObjBufArray4initEPNS_6common12ObIAllocatorE:1323946 + 2: 21158 + 3: 21158 + 4: 0 + 5.1: 0 + 10: 21428 + 11: 21428 + 12: 21428 + 13: 21428 + 15: 0 + 8.1: _ZN9oceanbase12blocksstable20ObStorageDatumBuffer4initERNS_6common12ObIAllocatorE:759530 + 2: 21954 + 4: 21954 + 5: 53 + 6.1: 53 + 9: 22612 + 10: 22612 + 13: 53 + 10.1: _ZN9oceanbase12blocksstable20ObStorageDatumBuffer7reserveElb:923520 + 2: 21429 + 5: 21429 + 6: 0 + 7.1: 0 + 8.1: 21429 + 9: 0 + 10.1: 0 + 11.1: 21429 + 12.1: 1 _ZN9oceanbase6common26ObWrapperAllocatorWithAttr5allocEl:1 + 13: 0 + 14.1: 0 + 16.1: 1 + 16.2: 40 + 22: 1 + 23: 0 + 25: 1 + 26: 1 + 29: 21429 + 16.2: _ZN9oceanbase12blocksstable14ObStorageDatumC2Ev:1591 + 0.1: _ZN9oceanbase12blocksstable14ObStorageDatum7set_nopEv:1591 + 0: _ZN9oceanbase12blocksstable14ObStorageDatum13set_ext_valueEl:1591 + 1: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:607 + 0: 40 + 1.1: _ZN9oceanbase6common11ObDatumDesc7set_extEv:328 + 0: 40 + 1.3: _ZN9oceanbase6common5ObObj7set_extEl:656 + 4: 40 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:328 + 0: 40 + 13: _ZN9oceanbase12blocksstable20ObStorageDatumBuffer10get_datumsEv:171432 + 0: 21429 +_ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE15calc_hash_valueERKNS_6common8ObIArrayIPNS0_6ObExprEEERm:5843674:25694 + 3: 22927 + 4: 22927 + 5: 22927 + 6: 22927 + 6.1: 22927 + 7: 95 + 8.1: 95 + 9.1: 22927 + 10: 22927 + 11.1: 26993 + 12: 22927 + 13: 23175 + 14.1: 95 + 16: 26993 + 16.1: 23175 _ZN9oceanbase6common11DefHashFuncINS0_22DatumStrHashCalculatorILNS0_15ObCollationTypeE45ELb0ENS0_12ObMurmurHashELb0EEEE4hashERKNS0_7ObDatumEm:26076 + 20: 26621 + 21: 26621 + 9.1: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql20ObSortFieldCollationEE5countEv:91708 + 0: 22927 + 12: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql20ObSortFieldCollationEE2atEl:91708 + 6: 22927 + 13: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:91708 + 6: 22927 + 13.1: _ZNK9oceanbase3sql6ObExpr4evalERNS0_9ObEvalCtxERPNS_6common7ObDatumE:873126 + 4: 22927 + 6: 22927 + 7: 22927 + 9: 22927 + 10: 0 + 10.1: 0 + 11: 0 + 13: 95 + 15.1: 22927 + 15.2: 0 + 17: 0 + 18: 0 + 20: 0 + 21: 0 + 22: 0 + 24: 95 + 9: _ZNK9oceanbase3sql6ObExpr15is_batch_resultEv:91708 + 0: 22927 + 11: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 24: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:665 + 0: 95 + 16: _ZNK9oceanbase6common12ObIArrayWrapINS0_10ObHashFuncEE2atEl:92700 + 6: 23175 +_ZN9oceanbase8memtable10ObMemtable3getERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS_12blocksstable13ObDatumRowkeyERNS8_10ObDatumRowE:5749506:3309 + 5: 3245 + 6: 3245 + 12: 3245 + 13.1: 0 + 14: 0 + 15.1: 3245 _ZNK9oceanbase7storage16ObTableIterParam8is_validEv:3314 + 15.3: 3124 + 16: 3124 + 17: 3124 + 18: 0 + 19.1: 0 + 20.1: 3124 + 20.2: 3124 + 21: 0 + 22.1: 0 + 25.2: 3124 + 26.1: 0 + 27.1: 3124 _ZN9oceanbase8memtable12ObMvccEngine3getERNS0_15ObMvccAccessCtxERKNS_6common11ObQueryFlagEbPKNS0_13ObMemtableKeyEPS8_RNS0_19ObMvccValueIteratorE:3171 + 27.2: 3338 + 33.1: 0 + 35.1: 3338 + 36: 0 + 36.1: 0 + 36.2: 0 + 37.1: 0 + 40: 0 + 42.1: 3338 + 49.3: 3611 + 51.2: 3597 + 52.1: 16 + 54: 3581 + 55.2: 16 + 55.5: 16 + 56.1: 16 + 57: 16 + 66: 3560 + 67.1: 0 + 73: 0 + 74.17: 3560 + 7: _ZN9oceanbase8memtable13ObMemtableKeyC2Ev:32450 + 0: 3245 + 8: _ZN9oceanbase8memtable13ObMemtableKeyC2Ev:22715 + 0: 3245 + 9: _ZN9oceanbase8memtable19ObMvccValueIteratorC2Ev:197945 + 1: 3245 + 2: 3245 + 5: 3245 + 6: 3245 + 7: 3245 + 16.1: _ZNK9oceanbase7storage20ObTableAccessContext8is_validEv:118712 + 1: 3124 + 2: 3124 + 2.1: 3124 + 3: 3124 + 3.1: 3124 + 4: 3124 + 4.1: 3124 + 17.1: _ZNK9oceanbase12blocksstable13ObDatumRowkey17is_memtable_validEv:99968 + 0: 3124 + 0: _ZNK9oceanbase6common13ObStoreRowkey8is_validEv:18744 + 0: _ZNK9oceanbase6common8ObRowkey8is_validEv:18744 + 0: 3124 + 0.1: _ZNK9oceanbase12blocksstable13ObDatumRowkey8is_validEv:18744 + 0: 3124 + 20.1: _ZNK9oceanbase7storage16ObTableIterParam13get_read_infoEb:46860 + 2: 3124 + 2.3: 3124 + 24: _ZNK9oceanbase7storage15ObTableReadInfo16get_columns_descEv:0 + 1: 0 + 25: _ZNK9oceanbase12blocksstable13ObDatumRowkey16get_store_rowkeyEv:37488 + 0: 3124 + 25.1: _ZN9oceanbase8memtable13ObMemtableKey6encodeERKNS_6common8ObIArrayINS_5share6schema9ObColDescEEEPKNS2_13ObStoreRowkeyE:534416 + 3: 3124 + 8.1: 3124 + 9.1: 0 + 12: 0 + 14.2: 3126 + 14.3: 3126 + 14.5: 3126 + 15: 3126 + 16: 3126 + 17.1: 3126 + 18: 3126 + 19.1: 3126 + 20.1: 0 + 24: 0 + 25.2: 1 + 26: 3126 + 28: 1 + 29.1: 1 + 30.1: 0 + 15: _ZNK9oceanbase6common13ObStoreRowkey11get_obj_ptrEv:9378 + 0: _ZNK9oceanbase6common8ObRowkey11get_obj_ptrEv:9378 + 0: 3126 + 16: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE2atEl:21882 + 6: 3126 + 17: _ZNK9oceanbase6common5ObObj8get_typeEv:12504 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:12504 + 0: 3126 + 25.1: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:12504 + 0: 3126 + 29.1: _ZNK9oceanbase6common5ObObj18get_collation_typeEv:4 + 0: _ZNK9oceanbase6common9ObObjMeta18get_collation_typeEv:4 + 0: 1 + 36: _ZN9oceanbase8memtable13ObMemtableKey6encodeEPKNS_6common13ObStoreRowkeyE:21868 + 3: 3124 + 35: _ZNK9oceanbase12blocksstable10ObDatumRow8is_validEv:73436 + 0: 3338 + 0.1: 3338 + 36: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:0 + 0: 0 + 42: _ZNK9oceanbase8memtable13ObMemtableKey10get_rowkeyEv:23366 + 0: 3338 + 47: _ZN9oceanbase8memtable11ObNopBitMapC2Ev:81525 + 1: 3261 + 49: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:22827 + 0: 3261 + 49.1: _ZNK9oceanbase6common13ObStoreRowkey11get_obj_cntEv:13044 + 0: _ZNK9oceanbase6common8ObRowkey11get_obj_cntEv:13044 + 0: 3261 + 49.2: _ZN9oceanbase8memtable11ObNopBitMap4initEll:182616 + 2: 3261 + 3: 3261 + 4: 3261 + 5: 3261 + 6: 3261 + 2: _ZN9oceanbase8memtable11ObNopBitMap8round_upEl:29349 + 2: 3261 + 51.1: _ZN9oceanbase8memtable9ObReadRow11iterate_rowERKNS_7storage15ObTableReadInfoERKNS_6common13ObStoreRowkeyERNS6_12ObIAllocatorERNS0_20ObIMvccValueIteratorERNS_12blocksstable10ObDatumRowERNS0_11ObNopBitMapERl:3428489 + 9: 3611 + 11: 3508 + 12.1: 16 + 13.1: 3575 + 14.1: 16 + 16: 3575 + 17: 3475 + 22: 3597 + 10: _ZN9oceanbase8memtable11ObNopBitMap5reuseEv:82129 + 2: 3611 + 3: 3527 + 11: _ZN9oceanbase8memtable9ObReadRow15iterate_row_keyERKNS_6common13ObStoreRowkeyERNS_12blocksstable10ObDatumRowE:780488 + 2: 3527 + 4.1: 3593 + 4.2: 6990 + 4.3: 6990 + 4.5: 3593 + 5: 3513 + 6.1: 16 + 7.1: 3513 + 8: 16 + 9.1: 16 + 65047.17: 13 + 3: _ZNK9oceanbase6common13ObStoreRowkey11get_obj_ptrEv:10581 + 0: _ZNK9oceanbase6common8ObRowkey11get_obj_ptrEv:10581 + 0: 3527 + 5: _ZN9oceanbase12blocksstable14ObStorageDatum16from_obj_enhanceERKNS_6common5ObObjE:378042 + 2: 3415 + 5: 3415 + 7.1: 3513 + 8.1: 16 + 12: 16 + 4: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:71715 + 0: 3415 + 5: _ZNK9oceanbase6common5ObObj6is_extEv:20490 + 0: _ZNK9oceanbase6common9ObObjMeta6is_extEv:20490 + 0: 3415 + 6: _ZNK9oceanbase6common5ObObj7get_extEv:80 + 4: 16 + 6.1: _ZN9oceanbase12blocksstable14ObStorageDatum13set_ext_valueEl:608 + 1: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:96 + 0: 16 + 1.1: _ZN9oceanbase6common11ObDatumDesc7set_extEv:144 + 0: 16 + 1.3: _ZN9oceanbase6common5ObObj7set_extEl:368 + 3: 16 + 4: 16 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:240 + 0: 16 + 0: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:96 + 0: 16 + 0.2: _ZN9oceanbase6common9ObObjMeta15set_extend_typeEh:64 + 0: 16 + 7.1: _ZN9oceanbase6common7ObDatum8from_objERKNS0_5ObObjE:200995 + 2: 3415 + 3: 3415 + 83: 13 + 84.1: 13 + 88: 3513 + 3: _ZNK9oceanbase6common5ObObj7is_nullEv:27320 + 0: _ZNK9oceanbase6common9ObObjMeta7is_nullEv:27320 + 0: 3415 + 4: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:224 + 0: 16 + 26: _ZN9oceanbase6common7ObDatum9obj2datumILNS0_17ObObjDatumMapTypeE1EEEvRKNS0_5ObObjE:298 + 2: 15 + 3: 15 + 32: _ZN9oceanbase6common7ObDatum9obj2datumILNS0_17ObObjDatumMapTypeE2EEEvRKNS0_5ObObjE:1429 + 2: 13 + 3: 13 + 4: 13 + 5: 13 + 7: 16 + 9: 16 + 10: 16 + 55: _ZN9oceanbase6common7ObDatum9obj2datumILNS0_17ObObjDatumMapTypeE3EEEvRKNS0_5ObObjE:63198 + 2: 3511 + 3: 3511 + 61: _ZN9oceanbase6common7ObDatum9obj2datumILNS0_17ObObjDatumMapTypeE4EEEvRKNS0_5ObObjE:299 + 2: 13 + 3: 13 + 65: _ZN9oceanbase6common7ObDatum9obj2datumILNS0_17ObObjDatumMapTypeE5EEEvRKNS0_5ObObjE:299 + 2: 13 + 3: 13 + 70: _ZN9oceanbase6common7ObDatum9obj2datumILNS0_17ObObjDatumMapTypeE6EEEvRKNS0_5ObObjE:429 + 2: 13 + 3: 13 + 4: 13 + 75: _ZN9oceanbase6common7ObDatum9obj2datumILNS0_17ObObjDatumMapTypeE7EEEvRKNS0_5ObObjE:455 + 2: 13 + 3: 13 + 4: 13 + 79: _ZN9oceanbase6common7ObDatum9obj2datumILNS0_17ObObjDatumMapTypeE8EEEvRKNS0_5ObObjE:299 + 2: 13 + 3: _ZN9oceanbase6common11ObDatumDesc7set_extEv:182 + 0: 13 + 7.1: _ZNK9oceanbase12blocksstable14ObStorageDatum12is_nop_valueEv:39085 + 0: _ZNK9oceanbase6common7ObDatum6is_nopEv:39085 + 0: 3513 + 0.1: 13 + 0: _ZNK9oceanbase6common11ObDatumDesc6is_extEv:35130 + 0: 3513 + 0.1: _ZNK9oceanbase6common5ObObj12is_nop_valueEv:325 + 2: 13 + 2.1: 13 + 13.1: _ZN9oceanbase8memtable9ObReadRow18iterate_row_value_ERKNS_7storage15ObTableReadInfoERNS_6common12ObIAllocatorERNS0_20ObIMvccValueIteratorERNS_12blocksstable10ObDatumRowERNS0_11ObNopBitMapERl:1030587 + 8: 3508 + 9: 3508 + 11: 3508 + 12: 3508 _ZN9oceanbase12blocksstable11ObRowReaderC1Ev:3595 + 13: 16 + 15: 3334 + 16.1: 3334 + 16.2: 4744 _ZN9oceanbase8memtable19ObMvccValueIterator13get_next_nodeERPKv:4931 + 16.3: 4806 + 16.4: 4806 + 17: 2000 + 18: 13 + 19.1: 13 + 25: 2000 + 25.1: 2000 + 25.3: 2000 + 26.1: 2000 + 27: 1555 + 33.1: 2024 + 34: 2024 + 39: 2024 _ZN9oceanbase12blocksstable11ObRowReader17read_memtable_rowEPKclRKNS_7storage15ObTableReadInfoERNS0_10ObDatumRowERNS_8memtable11ObNopBitMapERb:2111 + 39.1: 2136 + 40.1: 13 + 41.1: 2136 + 42: 1637 + 44: 13 + 44.1: 2118 + 51: 2860 + 51.3: 3528 + 14: _ZN9oceanbase12blocksstable12ObDmlRowFlag8set_flagENS0_9ObDmlFlagE:26672 + 3: 3334 + 24: _ZNK9oceanbase8memtable15ObMvccTransNode12is_committedEv:48008 + 0: 2000 + 26: _ZNK9oceanbase12blocksstable12ObDmlRowFlag12is_not_existEv:20000 + 2: 2000 + 28: _ZN9oceanbase12blocksstable12ObDmlRowFlag8set_flagENS0_9ObDmlFlagE:3110 + 3: 1555 + 33: _ZSt3maxIlERKT_S2_S2_:20240 + 5: 2024 + 35: _ZN9oceanbase12blocksstable10ObDatumRow23set_have_uncommited_rowEb:130 + 0: 13 + 53.6: _ZN9oceanbase12blocksstable11ObRowReaderD2Ev:91780 + 0: 3528 _ZN9oceanbase12blocksstable11ObRowReader5resetEv:3542 + 0.2: 0 + 53.7: _ZN9oceanbase12blocksstable11ObRowReaderD2Ev:0 + 0: 0 + 0.2: 0 + 16: _ZN9oceanbase8memtable11ObNopBitMap8is_emptyEv:57200 + 2: 3575 + 17: _ZN9oceanbase8memtable11ObNopBitMap14set_nop_datumsEPNS_12blocksstable14ObStorageDatumE:1312969 + 2: 3475 + 3: 3475 + 5: 3475 + 7: 3475 + 8.1: 3597 + 8.3: 3597 + 9: 3475 + 12.1: 11111 + 13: 7343 + 14: 7343 + 15: 7343 + 14: _ZN9oceanbase12blocksstable14ObStorageDatum7set_nopEv:543134 + 0: _ZN9oceanbase12blocksstable14ObStorageDatum13set_ext_valueEl:543134 + 1: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:214395 + 0: 7343 + 1.1: _ZN9oceanbase6common11ObDatumDesc7set_extEv:114344 + 0: 7343 + 1.3: _ZN9oceanbase6common5ObObj7set_extEl:214395 + 4: 7343 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:100051 + 0: 7343 + 55.1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:224 + 0: 16 + 56: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE2atEl:256 + 6: 16 + 57: _ZN9oceanbase6common7ObDatum7set_intEl:240 + 0: 16 +_ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE22for_each_in_one_bucketINS0_31IterateMinPrepareVersionFunctorEEEiRT_l:5737993:13277 + 1: 11333 + 2: 11333 + 3: 11333 + 4: 17 + 7.1: 10615 + 8.1: 17 + 11.1: 10615 + 12: 71 + 12.2: 71 + 12.3: 69 + 13: 17 + 15.1: 59 + 15.2: 59 + 16.1: 17 + 21: 10608 _ZN9oceanbase6common13ObSEArrayImplIPNS_11transaction10ObTransCtxELl32ENS0_19ModulePageAllocatorELb0EED2Ev:11127 + 21.1: 17 + 22: 12332 + 6: _ZN9oceanbase6common9ObSEArrayIPNS_11transaction10ObTransCtxELl32ENS0_19ModulePageAllocatorELb0EEC2Ev:1858612 + 0.1: 11333 + 0.5: _ZN9oceanbase6common13ObSEArrayImplIPNS_11transaction10ObTransCtxELl32ENS0_19ModulePageAllocatorELb0EEC2ElRKS5_:1654618 + 2: 11333 + 5: 11333 + 6: 11333 + 8: 11333 + 17.1: 11333 + 2: _ZN9oceanbase6common8ObIArrayIPNS_11transaction10ObTransCtxEEC2EPS4_l:203994 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_11transaction10ObTransCtxEEC2EPS4_l:203994 + 0: 11333 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:645981 + 0: 11333 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:249326 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:249326 + 2: 11333 + 8: 11333 + 7: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE19generate_value_arr_ElRNS_6common9ObSEArrayIPS3_Ll32ENS6_19ModulePageAllocatorELb0EEE:2686876 + 2: 11333 + 5: 12144 + 7.1: 39 + 7.2: 12188 + 7.3: 12188 + 8: 43 + 9.1: 39 + 10.1: 0 + 13: 39 + 18.1: 17 + 18.3: 17 + 19.1: 17 + 22: 17 + 23.5: 17 + 4: _ZN9oceanbase6common8get_itidEv:318327 + 4: 11333 + 5: 17 + 6: 17 + 8: 17 + 4.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE16BucketRLockGuardC2ERKNS_6common10SpinRWLockEm:895702 + 1: 11333 + 3: 12144 + 4.1: 17 + 3: _ZN9oceanbase6common10SpinRWLock6rdlockEl:181328 + 0: 11333 _ZN9oceanbase6common7ObLatch6rdlockEjl:11388 + 6: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE15get_thread_nodeEv:304467 + 2: 12144 + 2.1: 17 + 2.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE4NodeC2Ev:391 + 0: 17 + 6.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE4Node13set_thread_idEl:230736 + 0: 12144 + 8: _ZN9oceanbase11transaction15ObTransHashLinkINS0_10ObTransCtxEE7inc_refEi:414 + 2: 43 + 3.1: 0 + 5: 39 + 9: _ZN9oceanbase6common13ObSEArrayImplIPNS_11transaction10ObTransCtxELl32ENS0_19ModulePageAllocatorELb0EE9push_backERKS4_:1569 + 5: 39 + 6: 0 + 12: 0 + 15: 0 + 15.1: 39 + 16: 39 + 15.1: _ZN9oceanbase6common9ObClassOpIPNS_11transaction10ObTransCtxELb1EE20construct_and_assignERKS4_RS4_:156 + 2: 39 + 11: _ZN9oceanbase11transaction15ObTransHashLinkINS0_10ObTransCtxEE7dec_refEi:0 + 2: 0 + 3: 0 + 4.1: 0 + 17: _ZNK9oceanbase6common12ObIArrayWrapIPNS_11transaction10ObTransCtxEE5countEv:119 + 0: 17 + 19: _ZN9oceanbase6common12ObIArrayWrapIPNS_11transaction10ObTransCtxEE2atEl:119 + 6: 17 + 19.1: _ZN9oceanbase11transaction15ObTransHashLinkINS0_10ObTransCtxEE7dec_refEi:544 + 2: 17 + 3: 17 + 4.1: 17 + 23.4: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE16BucketRLockGuardD2Ev:779428 + 2: 11656 + 3: 11656 + 3.1: 10615 + 3.2: 17 + 4.1: 17 + 4.5: 17 + 3: _ZN9oceanbase6common10SpinRWLock6unlockEv:34968 + 0: 11656 _ZN9oceanbase6common7ObLatch6unlockEPKj:11670 + 6: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE15get_thread_nodeEv:266242 + 2: 10615 + 2.1: 17 + 2.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE4NodeC2Ev:391 + 0: 17 + 6.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE4Node5resetEv:244145 + 0: 10615 + 10: _ZNK9oceanbase6common12ObIArrayWrapIPNS_11transaction10ObTransCtxEE5countEv:74305 + 0: 10615 + 12.1: _ZN9oceanbase6common12ObIArrayWrapIPNS_11transaction10ObTransCtxEE2atEl:497 + 6: 71 + 12.2: _ZN9oceanbase11transaction31IterateMinPrepareVersionFunctorclEPNS0_10ObTransCtxE:9048 + 0: 71 + 0.1: 71 __dynamic_cast:55 + 0.3: 66 + 0.7: _ZN9oceanbase11transaction31IterateMinPrepareVersionFunctor17internal_operatorERKNS0_9ObTransIDEPNS0_14ObPartTransCtxE:6791 + 2: 66 + 4: 66 + 5: 17 + 6.1: 17 + 8: 66 + 9: 66 + 10: 69 _ZN9oceanbase11transaction14ObPartTransCtx31get_prepare_version_if_preparedERbRl:50 + 11.1: 17 + 12.1: 69 + 12.2: 38 + 15: 17 + 18: 69 + 15: _ZN9oceanbase6common12ObIArrayWrapIPNS_11transaction10ObTransCtxEE2atEl:413 + 6: 59 + 15.1: _ZN9oceanbase11transaction15ObTransHashLinkINS0_10ObTransCtxEE7dec_refEi:1107 + 2: 59 + 3: 59 + 4.1: 17 + 16: _ZN9oceanbase6common12ObIArrayWrapIPNS_11transaction10ObTransCtxEE2atEl:119 + 6: 17 + 16.1: _ZN9oceanbase11transaction13TransCtxAlloc10free_valueEPNS0_10ObTransCtxE:204 + 2: 17 + 3: 17 +_ZN9oceanbase11transaction10ObTxCtxMgr17get_ls_tx_ctx_mgrERKNS_5share6ObLSIDERPNS0_12ObLSTxCtxMgrE:5737318:5781 + 1: 5214 + 2: 5214 + 4: 5214 + 5.1: 0 + 6: 0 + 7.1: 5214 + 8.1: 0 + 9: 0 + 10.1: 4455 + 12.1: 0 + 14.1: 0 + 16: 0 + 19: 4455 + 7.1: _ZNK9oceanbase5share6ObLSID8is_validEv:20856 + 0: 5214 + 10.1: _ZN9oceanbase6common13ObLinkHashMapINS_5share6ObLSIDENS_11transaction12ObLSTxCtxMgrENS4_17ObLSTxCtxMgrAllocENS0_9RefHandleELl8EE3getERKS3_RPS5_:5252152 + 3: 5214 + 5.2: 4421 + 8: 4457 + 12: 4455 + 4: _ZN9oceanbase6common13ObLinkHashMapINS_5share6ObLSIDENS_11transaction12ObLSTxCtxMgrENS4_17ObLSTxCtxMgrAllocENS0_9RefHandleELl8EE18get_retire_stationEv:109494 + 1: 5214 + 1.1: 0 + 1.2: 0 + 1.5: 0 + 1.7: 0 + 1.3: _ZN9oceanbase6common13RetireStationC2ERNS0_6QClockEl:0 + 0.2: 0 + 1: 0 + 0.1: _ZN9oceanbase6common13RetireStation10RetireListC2Ev:0 + 0: 0 + 0: _ZN9oceanbase6common10HazardListC2Ev:0 + 0: 0 + 0.4: _ZN9oceanbase6common10HazardListC2Ev:0 + 0: 0 + 4.1: _ZN9oceanbase6common13ObLinkHashMapINS_5share6ObLSIDENS_11transaction12ObLSTxCtxMgrENS4_17ObLSTxCtxMgrAllocENS0_9RefHandleELl8EE5GuardC2ERNS0_13RetireStationE:531828 + 0: _ZN9oceanbase6common9RefHandleC2ERNS0_13RetireStationE:88638 + 0: _ZN9oceanbase6common13BaseRefHandleC2ERNS0_13RetireStationE:88638 + 0: _ZN9oceanbase6common17get_global_qclockEv:88638 + 2: 5214 + 2.1: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common6QClockC2Ev:0 + 0: 0 + 0.1: _ZN9oceanbase6common6QClock9ClockSlotC2Ev:0 + 0: 0 + 0.4: _ZN9oceanbase6common13BaseRefHandle14enter_criticalEv:443190 + 0: _ZN9oceanbase6common6QClock14enter_criticalEv:443190 + 2: 5214 + 3.1: 5214 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 7.1: 0 + 7.3: 0 + 7.4: 0 + 8.1: 0 + 1: _ZN9oceanbase6common6QClock11get_slot_idEv:145992 + 0: _ZN9oceanbase6common8get_itidEv:145992 + 4: 5214 + 5: 0 + 6: 0 + 8: 0 + 3.1: _ZN9oceanbase6common6QClock6locateEm:31284 + 0: 5214 + 3.3: _ZN9oceanbase6common6QClock9get_clockEv:52140 + 0: 5214 + 3.4: _ZN9oceanbase6common6QClock9ClockSlot9set_clockEm:109494 + 0: 5214 + 5.1: _ZN9oceanbase6common6DCHashINS_5share6ObLSIDELl8EE3getERKS3_RPNS0_11KeyHashNodeIS3_EE:3736773 + 1: 5214 + 5.1: 4526 + 65349.1: 0 + 3: _ZN9oceanbase6common11KeyHashNodeINS_5share6ObLSIDEEC2ERKS3_:96092 + 0: _ZN9oceanbase6common11KeyHashNodeINS_5share6ObLSIDEE9calc_hashERKS3_:20856 + 0: 5214 _ZNK9oceanbase5share6ObLSID4hashEv:5276 + 0.5: _ZN9oceanbase5share6ObLSIDC2ERKS1_:75236 + 0: 5374 + 4: _ZN9oceanbase6common6DCHashINS_5share6ObLSIDELl8EE6HandleC2ERS4_Rii:386928 + 1: 5374 + 2: 5374 + 1: _ZN9oceanbase6common6DCHashINS_5share6ObLSIDELl8EE9get_qsyncEv:91358 + 1: 5374 + 1.1: 0 + 1.6: 0 + 1.2: _ZN9oceanbase6common7ObQSyncC2Ev:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ObQSync3RefC2Ev:0 + 0: 0 + 5: _ZN9oceanbase6common6DCHashINS_5share6ObLSIDELl8EE6Handle10search_preEmRPNS0_8HashNodeE:1627504 + 3: 5374 + 2: _ZN9oceanbase6common6DCHashINS_5share6ObLSIDELl8EE6Handle11acquire_refEv:537400 + 0: 5374 + 0: _ZN9oceanbase6common7ObQSync11acquire_refEv:499782 + 2: 5374 + 3: 5374 + 4: 5374 + 5.1: 0 + 7: 5374 + 2: _ZN9oceanbase6common8get_itidEv:150472 + 4: 5374 + 5: 0 + 6: 0 + 8: 0 + 3: _ZN9oceanbase6common7ObQSync7add_refEll:107480 + 6: 5374 + 3: _ZN9oceanbase6common6DCHashINS_5share6ObLSIDELl8EE10search_preEmRPNS0_8HashNodeE:998174 + 2: 4526 + 2: _ZN9oceanbase6common6DCHashINS_5share6ObLSIDELl8EE24alloc_and_init_cur_arrayEv:821660 + 3: 5451 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 8.1: 0 + 9: 0 + 10: 0 + 12: 0 + 15: 0 + 15.1: 0 + 16.1: 5369 + 17.1: 0 + 20.4: 5424 _ZN9oceanbase6common11ObTimeGuardD2Ev:5635 + 20.5: 0 + 65474.2: 0 + 1: _ZN9oceanbase6common11ObTimeGuardC2EPKcl:610435 + 2: 5451 + 3: 5451 + 4: 5451 + 6: 5451 + 8: 5451 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:5374 + 2: 5374 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:5376 + 10: _ZN9oceanbase6common7DCArray4initEPNS0_8HashNodeES3_:0 + 2: 0 + 2.1: 0 + 2.3: 0 + 3: 0 + 7: 0 + 8: 0 + 5: _ZN9oceanbase6common8HashNode10set_linkedEv:0 + 0: 0 + 0: _ZN9oceanbase6common8HashNode9load_hashEv:0 + 0: 0 + 11: _ZN9oceanbase6common11ObTimeGuard5clickEPKc:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 16: _ZNK9oceanbase6common11ObTimeGuard8get_diffEv:43034 + 2: 5369 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:5451 + 2: 5451 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:5626 + 3: _ZN9oceanbase6common7DCArray10locate_preEm:135780 + 2: 4526 + 4: 0 + 2: _ZN9oceanbase6common7DCArray12locate_prev_Em:63364 + 1: _ZN9oceanbase6common7DCArray6locateEm:63364 + 1: 4526 + 5: _ZN9oceanbase6common7DCArray12locate_prev_Em:0 + 1: _ZN9oceanbase6common7DCArray6locateEm:0 + 1: 0 + 6: _ZN9oceanbase6common6ol_getINS0_11KeyHashNodeINS_5share6ObLSIDEEEEEiPT_S7_RS7_:365821 + 4: _ZN9oceanbase6common9ol_searchINS0_11KeyHashNodeINS_5share6ObLSIDEEEEEPT_S7_S7_RS7_:315177 + 4.1: 9000 + 4.2: 4647 + 5: 9000 + 5.1: 4647 + 4.1: _ZN9oceanbase6common9link_nextEPNS0_6ObLinkE:27000 + 2: 9000 + 5.1: _ZN9oceanbase6common11KeyHashNodeINS_5share6ObLSIDEE7compareEPS4_:184236 + 2: 9000 + 4.1: 9000 + 7: _ZNK9oceanbase5share6ObLSID7compareERKS1_:44760 + 2: 4476 + 5.1: _ZN9oceanbase6common11KeyHashNodeINS_5share6ObLSIDEE7compareEPS4_:50644 + 2: 4604 + 7: _ZNK9oceanbase5share6ObLSID7compareERKS1_:27624 + 2: 4604 + 9.1: _ZN9oceanbase6common6DCHashINS_5share6ObLSIDELl8EE6HandleD2Ev:0 + 0: 0 + 9.2: _ZN9oceanbase6common6DCHashINS_5share6ObLSIDELl8EE6HandleD2Ev:1078724 + 0: 4421 + 0: _ZN9oceanbase6common6DCHashINS_5share6ObLSIDELl8EE6Handle6retireEil:1043356 + 1: 4421 + 2: 4421 + 4: 4421 + 6: 4421 + 7: 0 + 9: 0 + 10: 0 + 2: _ZN9oceanbase6common6DCHashINS_5share6ObLSIDELl8EE17change_node_countEl:437679 + 1: 4421 + 4: 4421 + 5: 4421 + 6: 4421 + 8: 4421 + 10: 0 + 11.1: 0 + 2: _ZN9oceanbase6common15ObSimpleCounter3incEl:35368 + 0: 4421 + 3: _ZNK9oceanbase6common15ObSimpleCounter5valueEv:30947 + 0: 4421 + 4: _ZSt3maxIlERKT_S2_S2_:44210 + 5: 4421 + 5: _ZSt3minIlERKT_S2_S2_:44210 + 5: 4421 + 10: _ZN9oceanbase6common6DCHashINS_5share6ObLSIDELl8EE6next2nEm:0 + 2: 0 + 4: _ZN9oceanbase6common6DCHashINS_5share6ObLSIDELl8EE15do_pending_taskEPNS0_7DCArrayE:185682 + 2: 4421 + 5: 4421 + 5.1: 0 + 6: 4421 + 7: 0 + 8: 0 + 10: 0 + 11: 0 + 3: _ZN9oceanbase6common7DCArray20copy_from_prev_arrayEPNS0_8HashNodeEl:70736 + 4: 4421 + 5: 0 + 5.1: 0 + 6: 0 + 6.1: 0 + 7.1: 0 + 7.3: 0 + 8: 0 + 10: 0 + 6.1: _ZN9oceanbase6common7DCArray17is_parent_retiredEv:0 + 0: 0 + 7: _ZN9oceanbase6common10ObSpinLock7trylockEv:0 + 2: 0 + 14: _ZN9oceanbase6common10ObSpinLock6unlockEv:0 + 2: 0 + 5: _ZN9oceanbase6common6DCHashINS_5share6ObLSIDELl8EE6Handle11release_refEv:278523 + 0: 4421 + 0: _ZN9oceanbase6common7ObQSync11release_refEl:198945 + 2: 4421 + 3: 4421 + 4.1: 0 + 2: _ZN9oceanbase6common7ObQSync7add_refEll:137051 + 3: 4421 + 6: 4421 + 7: _ZN9oceanbase6common7ObQSync4syncEv:0 + 2.1: 0 + 2.3: 0 + 5.1: 0 + 8: _ZN9oceanbase6common7DCArray13retire_parentEv:0 + 0: 0 + 9: _ZN9oceanbase6common7ObQSync4syncEv:0 + 2.1: 0 + 2.3: 0 + 5.1: 0 + 9: _ZN9oceanbase6common13ObLinkHashMapINS_5share6ObLSIDENS_11transaction12ObLSTxCtxMgrENS4_17ObLSTxCtxMgrAllocENS0_9RefHandleELl8EE11try_inc_refEPNS0_12LinkHashNodeIS3_EE:204815 + 6.1: 4455 + 7: 0 + 4: _ZN9oceanbase6common9RefHandle3incEPNS0_7RefNodeE:160265 + 0: _ZN9oceanbase6common15faa_if_positiveEPii:160265 + 2: 4457 + 4.1: 4635 + 4.2: 4635 + 4.3: 4635 + 6.1: _ZN9oceanbase6common15is_last_bit_setEm:17820 + 2: 4455 + 16.2: _ZN9oceanbase6common13ObLinkHashMapINS_5share6ObLSIDENS_11transaction12ObLSTxCtxMgrENS4_17ObLSTxCtxMgrAllocENS0_9RefHandleELl8EE5GuardD2Ev:151470 + 0: _ZN9oceanbase6common13BaseRefHandle14leave_criticalEv:151470 + 0: _ZN9oceanbase6common6QClock14leave_criticalEm:151470 + 1: 4455 + 2: _ZN9oceanbase6common6QClock6locateEm:57915 + 0: 4455 + 2.1: _ZN9oceanbase6common6QClock9ClockSlot11clear_clockEv:66825 + 0: 4455 + 16.3: _ZN9oceanbase6common13ObLinkHashMapINS_5share6ObLSIDENS_11transaction12ObLSTxCtxMgrENS4_17ObLSTxCtxMgrAllocENS0_9RefHandleELl8EE5GuardD2Ev:0 + 0: _ZN9oceanbase6common13BaseRefHandle14leave_criticalEv:0 + 0: _ZN9oceanbase6common6QClock14leave_criticalEm:0 + 1: 0 + 2: _ZN9oceanbase6common6QClock6locateEm:0 + 0: 0 + 2.1: _ZN9oceanbase6common6QClock9ClockSlot11clear_clockEv:0 + 0: 0 +_ZN9oceanbase7obmysql14ObMySQLHandler7processEP14easy_request_t:5693753:4784 + 1: 4688 + 3: 4688 + 4: 4688 + 4.1: 4688 + 5: 4688 _ZNK9oceanbase8observer11ObSMHandler10get_sessidEP17easy_connection_t:4738 + 8.1: 4634 + 9.1: 160 + 12: 4634 + 14: 4634 + 14.1: 4634 + 14.2: 4634 + 19: 4634 + 20: 4540 + 23.1: 160 + 24.1: 4540 + 25.1: 160 + 27.1: 4540 + 29.1: 4977 _ZNK9oceanbase8observer11ObSMHandler23is_in_ssl_connect_phaseEP17easy_connection_t:4799 + 31: 160 + 32: 160 + 33: 160 + 35.1: 160 + 44.1: 5234 + 45.1: 160 + 48: 5234 + 49: 4803 + 50: 4803 + 52: 4803 + 53: 4803 + 54: 4803 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:4816 + 55: 4957 _ZNK9oceanbase8observer11ObSMHandler20get_connection_phaseEP17easy_connection_t:4968 + 59: 4782 easy_request_sleeping:5236 + 60: 5246 _ZN9oceanbase8observer12ObSrvDeliver7deliverERNS_3rpc9ObRequestE:4894 + 61.1: 160 + 62: 160 + 65: 160 + 73.1: 160 + 78: 160 + 79: 160 + 79.1: 160 + 80: 160 + 80.1: 160 + 81: 160 + 82: 160 + 83.1: 160 + 86: 160 + 93.1: 160 + 96.1: 160 + 102: 5246 + 20: _ZN9oceanbase7obmysql14ObMySQLHandler22get_protocol_processorEP17easy_connection_t:144798 + 3: 4634 _ZNK9oceanbase8observer11ObSMHandler20get_cs_protocol_typeEP17easy_connection_t:4840 + 4: 4540 + 6: 4540 + 10: 160 + 14: 160 + 18.1: 160 + 24.1: _ZN9oceanbase7obmysql28ObVirtualCSProtocolProcessor7processEP14easy_request_tRb:2810020 + 0: 4540 + 0: _ZN9oceanbase7obmysql28ObVirtualCSProtocolProcessor12easy_processEP14easy_request_tRb:2715540 + 2: 4540 + 3: 4540 + 4: 4540 + 5: 4540 + 6.1: 4540 + 7: 160 + 8.1: 4540 + 8.2: 4540 + 9.1: 160 + 11: 160 + 4: _ZN15ObCSEasyMemPoolC2EP11easy_pool_t:113500 + 0: 4540 + 6: _ZN9oceanbase8observer14ObSMConnection18is_in_authed_phaseEv:18160 + 0: 4540 + 8.1: _ZN9oceanbase7obmysql24ObMysqlProtocolProcessor9do_spliceERNS_8observer14ObSMConnectionERNS0_12ObICSMemPoolERPvRb:2246120 + 2: 4540 + 3: 4540 + 4.1: 160 + 6: 160 + 3: _ZN9oceanbase7obmysql24ObMysqlProtocolProcessor20process_mysql_packetERNS0_17ObMysqlPktContextERNS0_12ObICSMemPoolERPvRb:2084180 + 5: 4540 + 6: 4540 + 8: 4540 + 9: 160 + 10.1: 160 + 12: 4540 + 13: 4540 + 14: 4540 + 16.1: 4540 + 17.1: 160 + 19: 4540 + 20: 160 + 21: 160 + 22.1: 160 + 24.1: 160 + 26.1: 160 + 29: 160 + 30: 160 + 38: 4540 + 12: _ZNK9oceanbase7obmysql16ObMySQLRawPacket8get_clenEv:13620 + 2: 4540 + 13: _ZNK9oceanbase7obmysql16ObMySQLRawPacket9get_cdataEv:18160 + 2: 4540 + 16.1: _ZN9oceanbase7obmysql24ObMysqlProtocolProcessor24process_one_mysql_packetERNS0_17ObMysqlPktContextERNS0_12ObICSMemPoolElRPvRb:757140 + 7: 4540 + 8: 4540 + 11: 4540 + 12: 160 + 13.1: 160 + 14.1: 4540 + 15: 160 + 16: 160 + 17: 160 + 18: 160 + 19.1: 160 + 23: 4540 + 24: 4540 + 26: 4540 + 28: 4540 + 29: 160 + 30.1: 160 + 31.1: 4540 + 32: 4540 + 33: 160 + 35: 160 + 36: 160 + 37.1: 160 + 39: 160 + 40: 160 + 43: 160 + 44: 160 + 45: 160 + 46.1: 160 + 49: 160 + 52: 160 + 58: 4540 + 59: 4540 + 63.1: 160 + 68: 160 + 71: 160 + 72.1: 160 + 76: 4540 + 15: _ZNK9oceanbase7obmysql13ObMySQLPacket7get_seqEv:640 + 2: 160 + 24: _ZNK9oceanbase7obmysql16ObMySQLRawPacket8get_clenEv:18160 + 2: 4540 + 25: _ZNK9oceanbase7obmysql16ObMySQLRawPacket9get_cdataEv:18160 + 2: 4540 + 26: _ZNK9oceanbase7obmysql13ObMySQLPacket7get_seqEv:18160 + 2: 4540 + 54: _ZN9oceanbase7obmysql11ObMySQLUtil9get_uint1ERPKcRh:104760 + 2: 4540 + 3.1: 160 + 3.2: 160 + 3.4: 160 + 3.5: 160 + 5: 4540 + 6: 4540 + 3.2: _ZN9oceanbase6common7ObLogKVIPKvLb1EEC2EPKcOKS3_:5280 + 0: 160 + 55: _ZN9oceanbase7obmysql16ObMySQLRawPacket7set_cmdENS0_10ObMySQLCmdE:18160 + 2: 4540 + 56: _ZN9oceanbase7obmysql13ObMySQLPacket11set_contentEPKcj:36320 + 2: 4540 + 3: 4540 + 34: _ZN9oceanbase7obmysql17ObMysqlPktContext5resetEv:934780 + 2: 4540 + 3: 4540 + 11: 4540 + 12: _ZN9oceanbase7obmysql16ObMySQLRawPacket5resetEv:408600 + 2: 4540 + 3: 4540 + 1: _ZN9oceanbase7obmysql13ObMySQLPacket5resetEv:127120 + 3: 4540 + 2: _ZN9oceanbase7obmysql19ObMySQLPacketHeader5resetEv:77180 + 1: 4540 + 2: 4540 + 4: _ZN9oceanbase7obmysql13Ob20ExtraInfo5resetEv:204300 + 1: 4540 + 2: 4540 + 3: _ZN9oceanbase6common8ObString5resetEv:127120 + 2: 4540 + 14: _ZN9oceanbase6common16ObArenaAllocator5resetEv:324660 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:324660 + 4.1: 4540 + 6: 160 + 7: 160 + 13: 4540 + 14: 4540 + 15: 4540 + 18: 4540 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:480 + 0: 160 + 5.1: _ZL12abort_unlessb:1760 + 5: 160 + 6: 160 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:12960 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:12960 + 0: 160 + 0.2: 160 + 0.1: _ZN9oceanbase6common7ob_freeEPv:8960 + 2: 160 + 3: 160 + 4: 160 + 5: 160 + 4: _ZL12abort_unlessb:2560 + 5: 160 + 6: 160 + 44.1: _ZNK9oceanbase7obmysql14ObMySQLHandler10easy_allocEP11easy_pool_tl:100820 + 3: 4977 + 4.1: 160 + 9: 4977 easy_pool_alloc_ex:5229 + 49: _ZN9oceanbase3rpc9ObRequestC2ENS1_4TypeEi:821914 + 0: 5234 + 0.2: 5234 _ZN9oceanbase3rpc14ObLockWaitNodeC1Ev:5239 + 1: 4803 + 2: 4803 + 3: 4803 + 7.1: 4803 + 8: 5234 + 0: _ZN9oceanbase6common6ObLinkC2Ev:41872 + 0: 5234 + 0.1: _ZN9oceanbase3rpc13ObReusableMemC2Ev:52833 + 0: 4803 + 7: _ZN9oceanbase6common12ObCurTraceId7TraceIdC2Ev:110469 + 0: 4803 + 9.5: _ZN9oceanbase6common6ObLinkD2Ev:2080 + 0: 160 + 50: _ZN9oceanbase3rpc9ObRequest10set_packetEPKNS0_8ObPacketE:33621 + 2: 4803 + 51: _ZN9oceanbase3rpc9ObRequest10set_ez_reqEP14easy_request_t:33621 + 2: 4803 + 54.1: _ZN9oceanbase3rpc9ObRequest21set_receive_timestampEl:34699 + 2: 4957 + 55.1: _ZN9oceanbase3rpc9ObRequest20set_connection_phaseENS0_19ConnectionPhaseEnumE:28692 + 0: 4782 + 63: _ZL15easy_atomic_decPVl:800 + 2: 160 + 65: _ZL15easy_atomic_decPVl:2400 + 2: 160 + 82: _Z9do_wakeupP14easy_request_t:7040 + 2: 160 + 3.1: 160 + 5: 160 + 6: 160 + 7: 160 + 8: 160 +_ZN9oceanbase3sql30ObHashPartitionExtendHashTableINS0_14ObHashPartColsEE3setERS2_:5675505:24201 + 1: 23991 + 2: 23991 + 4: 23991 + 4.1: 26104 + 6: 0 + 7: 0 + 8: 0 + 9.1: 0 + 9.2: 0 + 10.1: 0 + 11: 0 + 13: 0 + 14.1: 24856 + 15: 0 + 16.1: 0 + 17.1: 24856 + 18: 0 + 19.1: 0 + 21: 24856 + 22: 24856 + 23: 24856 + 24: 24856 + 26: 24856 + 4.1: _ZNK9oceanbase3sql30ObHashPartitionExtendHashTableINS0_14ObHashPartColsEE14get_bucket_numEv:678704 + 2: 26104 + 2.2: _ZNK9oceanbase6common9Ob2DArrayIPNS_3sql14ObHashPartColsELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS4_Ll64ES5_Lb0EEEE5countEv:182728 + 0: 26104 + 6: _ZNK9oceanbase3sql30ObHashPartitionExtendHashTableINS0_14ObHashPartColsEE14get_bucket_numEv:0 + 2.2: 0 + 6.1: _ZNK9oceanbase3sql20ObSqlMemMgrProcessor13get_mem_boundEv:0 + 1: 0 + 1.1: 0 + 1.2: 0 + 1.3: 0 + 1.1: _ZNK9oceanbase3sql20ObSqlWorkAreaProfile15get_expect_sizeEv:0 + 0: 0 + 6.2: _ZN9oceanbase3sql30ObHashPartitionExtendHashTableINS0_14ObHashPartColsEE19estimate_bucket_numElll:0 + 5: 0 + 8.1: 0 + 8.3: 0 + 12: 0 + 15: 0 + 63030: 0 + 6: _ZN9oceanbase6common9next_pow2El:0 + 2: 0 + 8: _ZNK9oceanbase3sql30ObHashPartitionExtendHashTableINS0_14ObHashPartColsEE14get_bucket_numEv:0 + 2: 0 + 2.2: _ZNK9oceanbase6common9Ob2DArrayIPNS_3sql14ObHashPartColsELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS4_Ll64ES5_Lb0EEEE5countEv:0 + 0: 0 + 9.1: _ZNK9oceanbase3sql30ObHashPartitionExtendHashTableINS0_14ObHashPartColsEE14get_bucket_numEv:0 + 2.2: 0 + 21.1: _ZNK9oceanbase3sql30ObHashPartitionExtendHashTableINS0_14ObHashPartColsEE14get_bucket_numEv:173992 + 2.2: _ZNK9oceanbase6common9Ob2DArrayIPNS_3sql14ObHashPartColsELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS4_Ll64ES5_Lb0EEEE5countEv:173992 + 0: 24856 + 21.2: _ZN9oceanbase6common9Ob2DArrayIPNS_3sql14ObHashPartColsELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS4_Ll64ES5_Lb0EEEE2atEl:1541072 + 2: 24856 + 3.1: 0 + 5: 0 + 5: _ZNK9oceanbase6common9Ob2DArrayIPNS_3sql14ObHashPartColsELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS4_Ll64ES5_Lb0EEEE11get_obj_posEl:969384 + 4: 24856 + 5: 24856 + 4: _ZNK9oceanbase6common12ObIArrayWrapIPPNS_3sql14ObHashPartColsEE2atEl:99424 + 6: 24856 +_ZN9oceanbase3sql11ObResultSet5closeEv:5617238:5168 + 1: 4958 + 2: 4958 + 3: 4958 + 6: 4843 + 8: 5351 + 9: 4391 + 9.1: 4391 _ZN9oceanbase3sql18ObBasicSessionInfo33reset_tx_variable_if_remote_transERKNS0_13ObPhyPlanTypeE:4521 + 9.2: 4620 + 11.1: 0 + 14: 4620 + 14.2: 4472 + 16.1: 0 + 18: 4472 + 19: 4472 + 21.1: 452 + 22: 452 + 30: 4947 + 31: 15 + 33: 5234 + 35: 5048 + 36: 0 + 37.1: 0 + 44: 4899 + 44.2: 4899 + 45.1: 3591 + 46.1: 0 + 50: 5128 + 51: 0 + 53: 0 + 55.2: 5183 _ZN9oceanbase3sql11ObResultSet20store_last_insert_idERNS0_13ObExecContextE:5436 + 55.3: 5300 + 56.1: 17 + 58: 5525 + 59: 5525 + 62: 5525 + 63: 5525 + 65.1: 17 + 66: 17 + 67: 17 + 68: 17 + 69: 17 + 70: 17 + 71.1: 5351 + 72.1: 4952 + 76: 5443 + 77.2: 5461 _ZN9oceanbase3sql8ObDASCtx16is_partition_hitEv:5485 + 77.3: 5397 + 78: 0 + 81: 5506 + 82.12: 5338 + 3: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:54538 + 0: 4958 + 0.2: 0 + 3.1: _ZN9oceanbase3sql16LinkExecCtxGuardC2ERNS0_16ObSQLSessionInfoERNS0_13ObExecContextE:154442 + 1: 4982 + 2: 4982 + 3: 4982 + 6: 4982 _ZN9oceanbase3sql16LinkExecCtxGuard20link_current_contextEv:5105 + 5: _ZN9oceanbase5trace16__ObFLTSpanGuardC2Ejh:117568 + 2: 5059 _ZN9oceanbase5trace7ObTrace12get_instanceEv:5203 + 2.1: 4913 _ZN9oceanbase5trace7ObTrace10begin_spanEjhb:5039 + 7: _ZNK9oceanbase3sql15ObCacheObjGuard13get_cache_objEv:24215 + 2: 4843 + 9: _ZNK9oceanbase3sql14ObPhysicalPlan13get_plan_typeEv:26346 + 0: 4391 + 14: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:55440 + 0: 4620 + 0.2: 0 + 14.1: _ZN9oceanbase3sql11ObResultSet13do_close_planEiRNS0_13ObExecContextE:1156654 + 2: 4725 + 3: 4725 + 5.1: 4713 + 5.2: 0 + 5.4: 0 + 7: 4661 + 16: 4661 + 17: 0 + 18.1: 0 + 19.1: 4709 _ZN9oceanbase3sql15ObExecuteResult5closeERNS0_13ObExecContextE:4821 + 20.1: 0 + 23: 4709 + 25: 4507 + 26: 0 + 27.1: 0 + 28.1: 4688 _ZN9oceanbase3sql10ObExecutor5closeERNS0_13ObExecContextE:4860 + 29.1: 0 + 36: 0 + 38.1: 0 + 40: 4604 + 42: 4604 + 43: 4509 + 44.1: 0 + 45: 0 + 46: 4738 + 46.2: 4738 _ZN9oceanbase3sql11ObResultSet8end_stmtEb:4752 + 49: 5041 + 50: 15 + 51.1: 4937 + 53.1: 4937 + 54: 15 + 55.1: 5180 + 56: 15 + 59: 0 + 63: 5064 _ZN9oceanbase3sql10ObExecutor5resetEv:5154 + 65: 4906 + 65.2: 4945 _ZN9oceanbase3sql13ObPxAdmission20exit_query_admissionERNS0_16ObSQLSessionInfoERNS0_13ObExecContextERNS0_14ObPhysicalPlanE:4952 + 67.1: 4574 + 67.2: 0 + 67.4: 15 + 68: 4472 + 5.1: _ZN9oceanbase3lib20is_trace_log_enabledEv:37716 + 2: 4725 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:4880 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:32991 + 2: 4713 + 5.2: _ZN9oceanbase6common18get_trace_recorderEv:0 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:0 + 7: 0 + 8: 0 + 8.1: 0 + 5.4: _ZN9oceanbase3lib20is_trace_log_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:0 + 2: 0 + 5.5: _ZN9oceanbase6common18get_trace_recorderEv:0 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:0 + 7: 0 + 8: 0 + 8.1: 0 + 5.11: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl189ELl1600EE9add_eventEv:0 + 2: 0 + 3.1: 0 + 6: 0 + 10: 0 + 11: 0 + 12: 0 + 5.12: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:0 + 0: 0 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 25: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:56508 + 0: 4709 + 0.2: 0 + 25.1: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:31549 + 2: 4507 + 40: _ZNK9oceanbase3sql17ObPhysicalPlanCtx16is_error_ignoredEv:27624 + 0: 4604 + 42: _ZNK9oceanbase3sql11ObResultSet13need_rollbackEiib:78094 + 3: 4604 + 3.1: 4582 + 4: 4604 + 4.1: 4604 + 65: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:59007 + 0: 4906 + 0.2: 15 + 65.1: _ZN9oceanbase3sql11ObResultSet17get_physical_planEv:24725 + 2: _ZNK9oceanbase3sql15ObCacheObjGuard13get_cache_objEv:24725 + 2: 4945 + 67.1: _ZN9oceanbase3lib20is_trace_log_enabledEv:36650 + 2: 4572 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:4629 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:32018 + 2: 4574 + 67.2: _ZN9oceanbase6common18get_trace_recorderEv:390 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:390 + 7: 15 + 8: 0 + 8.1: 0 + 67.4: _ZN9oceanbase3lib20is_trace_log_enabledEv:180 + 2: 15 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:105 + 2: 15 + 67.5: _ZN9oceanbase6common18get_trace_recorderEv:420 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:420 + 7: 15 + 8: 0 + 8.1: 0 + 67.11: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl189ELl1600EE9add_eventEv:1290 + 2: 15 + 3.1: 15 + 6: 15 + 10: 15 + 11: 15 + 12: 15 + 67.12: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:315 + 0: 15 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:75 + 2: 15 + 34: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:64227 + 0: 5341 + 0.2: 15 + 34.1: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:70672 + 2: 5048 + 39: _ZN9oceanbase3sql11ObResultSet19store_affected_rowsERNS0_17ObPhysicalPlanCtxE:486566 + 0: 17 + 2: 17 + 3.1: 485 + 4: 485 + 4.1: 485 + 6.1: 17 + 7: 3480 + 11.1: 5162 + 11.2: 0 + 11.4: 17 + 11.5: 17 + 11.7: 17 + 11.8: 17 + 11.9: 0 + 12: 4830 + 3: _ZNK9oceanbase3sql11ObResultSet13get_stmt_typeEv:40384 + 2: 5048 + 3.2: _ZN9oceanbase3sql6ObStmt11is_dml_stmtENS0_4stmt8StmtTypeE:62775 + 3: 5048 + 4.1: _ZN9oceanbase3lib14is_oracle_modeEv:21340 + 2: _ZN9oceanbase3lib15get_compat_modeEv:21340 + 2: 485 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:13580 + 2: 485 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 4.3: _ZNK9oceanbase3sql11ObResultSet10is_pl_stmtENS0_4stmt8StmtTypeE:4850 + 3: 485 + 7: _ZN9oceanbase3lib14is_oracle_modeEv:177480 + 2: _ZN9oceanbase3lib15get_compat_modeEv:177480 + 2: 3480 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:97440 + 2: 3480 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 7.1: _ZNK9oceanbase3sql17ObPhysicalPlanCtx17get_affected_rowsEv:180 + 2: 15 + 9: _ZNK9oceanbase3sql11ObResultSet17get_affected_rowsEv:7856 + 2: 982 + 11.1: _ZN9oceanbase3lib20is_trace_log_enabledEv:41463 + 2: 5261 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:5279 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:36134 + 2: 5162 + 11.2: _ZN9oceanbase6common18get_trace_recorderEv:442 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:442 + 7: 17 + 8: 0 + 8.1: 0 + 11.4: _ZN9oceanbase3lib20is_trace_log_enabledEv:204 + 2: 17 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:119 + 2: 17 + 11.5: _ZN9oceanbase6common18get_trace_recorderEv:476 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:476 + 7: 17 + 8: 0 + 8.1: 0 + 11.8: _ZN9oceanbase6common18get_trace_recorderEv:476 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:476 + 7: 17 + 8: 0 + 8.1: 0 + 11.9: _ZN9oceanbase6common18get_trace_recorderEv:0 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:0 + 7: 0 + 8: 0 + 8.1: 0 + 11.10: _ZN9oceanbase6common18get_trace_recorderEv:153 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:153 + 7: 17 + 8: 0 + 8.1: 0 + 11.17: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl189ELl1600EE9add_eventERb:1071 + 2: 17 + 3.1: 0 + 7: 17 + 12: 17 + 13: 17 + 14: 17 + 11.18: _ZN9oceanbase6common18get_trace_recorderEv:476 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:476 + 7: 17 + 8: 0 + 8.1: 0 + 11.19: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl189ELl1600EE10check_lockEv:714 + 2: 17 + 3: _ZN9oceanbase3lib7ObMutex4lockEv:544 + 0: 17 + 11.20: _ZN9oceanbase6common18get_trace_recorderEv:476 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:476 + 7: 17 + 8: 0 + 8.1: 0 + 11.22: _ZN9oceanbase6common18get_trace_recorderEv:0 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:0 + 7: 0 + 8: 0 + 8.1: 0 + 11.24: _ZN9oceanbase6common18get_trace_recorderEv:51 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:51 + 7: 0 + 8: 0 + 8.1: 0 + 10: 17 + 11.26: _ZN9oceanbase4yson24databuff_encode_elementsIlEEiPclRltRKT_:1547 + 0.1: _ZN9oceanbase4yson23databuff_encode_elementIlEEiPclRltRKT_:1547 + 3: 17 + 6: 17 + 7: 17 + 8: 17 + 9: 17 + 10: 17 + 11: 17 + 11.29: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl189ELl1600EE12check_unlockEv:408 + 2: 17 + 3: _ZN9oceanbase3lib7ObMutex6unlockEv:255 + 0: 17 + 12: _ZN9oceanbase3sql16ObSQLSessionInfo17set_affected_rowsEl:59666 + 2: 4830 + 3: 4830 + 4: _ZN9oceanbase3sql18ObBasicSessionInfo10TransFlags21set_has_hold_row_lockEb:5719 + 0: _ZN9oceanbase3sql18ObBasicSessionInfo10TransFlags8set_flagEbm:5719 + 3: 817 + 40: _ZN9oceanbase3sql11ObResultSet16store_found_rowsERNS0_17ObPhysicalPlanCtxE:290273 + 0: 17 + 2: 17 + 5: 4704 + 6: 3264 + 12: 3264 + 12.1: 3264 + 12.3: 3264 + 13: 3264 + 14.1: 3460 + 14.2: 0 + 14.4: 17 + 14.5: 17 + 14.7: 17 + 14.8: 17 + 14.9: 0 + 5: _ZNK9oceanbase3sql17ObPhysicalPlanCtx19is_affect_found_rowEv:32928 + 0: 4704 + 8: _ZN9oceanbase3sql16ObSQLSessionInfo14set_found_rowsEl:0 + 0: 0 + 11: _ZNK9oceanbase3sql17ObPhysicalPlanCtx14get_found_rowsEv:22848 + 2: 3264 + 13: _ZN9oceanbase3sql16ObSQLSessionInfo14set_found_rowsEl:22848 + 0: 3264 + 14.1: _ZN9oceanbase3lib20is_trace_log_enabledEv:27552 + 2: 3264 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:3347 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:24220 + 2: 3460 + 14.2: _ZN9oceanbase6common18get_trace_recorderEv:442 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:442 + 7: 17 + 8: 0 + 8.1: 0 + 14.4: _ZN9oceanbase3lib20is_trace_log_enabledEv:204 + 2: 17 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:119 + 2: 17 + 14.5: _ZN9oceanbase6common18get_trace_recorderEv:476 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:476 + 7: 17 + 8: 0 + 8.1: 0 + 14.8: _ZN9oceanbase6common18get_trace_recorderEv:476 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:476 + 7: 17 + 8: 0 + 8.1: 0 + 14.9: _ZN9oceanbase6common18get_trace_recorderEv:0 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:0 + 7: 0 + 8: 0 + 8.1: 0 + 14.10: _ZN9oceanbase6common18get_trace_recorderEv:153 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:153 + 7: 17 + 8: 0 + 8.1: 0 + 14.17: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl189ELl1600EE9add_eventERb:1071 + 2: 17 + 3.1: 0 + 7: 17 + 12: 17 + 13: 17 + 14: 17 + 14.18: _ZN9oceanbase6common18get_trace_recorderEv:476 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:476 + 7: 17 + 8: 0 + 8.1: 0 + 14.19: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl189ELl1600EE10check_lockEv:714 + 2: 17 + 3: _ZN9oceanbase3lib7ObMutex4lockEv:544 + 0: 17 + 14.20: _ZN9oceanbase6common18get_trace_recorderEv:476 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:476 + 7: 17 + 8: 0 + 8.1: 0 + 14.22: _ZN9oceanbase6common18get_trace_recorderEv:0 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:0 + 7: 0 + 8: 0 + 8.1: 0 + 14.24: _ZN9oceanbase6common18get_trace_recorderEv:51 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:51 + 7: 0 + 8: 0 + 8.1: 0 + 10: 17 + 14.26: _ZN9oceanbase4yson24databuff_encode_elementsIllEEiPclRltRKT_tRKT0_:3383 + 0.1: _ZN9oceanbase4yson23databuff_encode_elementIlEEiPclRltRKT_:1802 + 3: 17 + 6: 17 + 7: 17 + 8: 17 + 9: 17 + 10: 17 + 11: 17 + 0.3: _ZN9oceanbase4yson23databuff_encode_elementIlEEiPclRltRKT_:1581 + 3: 17 + 6: 17 + 7: 17 + 8: 17 + 9: 17 + 10: 17 + 11: 17 + 14.29: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl189ELl1600EE12check_unlockEv:408 + 2: 17 + 3: _ZN9oceanbase3lib7ObMutex6unlockEv:255 + 0: 17 + 45: _ZN9oceanbase3sql11ObResultSet25update_is_result_accurateEv:352698 + 2: 3435 + 6: 3591 + 7: 0 + 8.1: 0 + 9.1: 3591 + 15: 3591 + 18: 0 + 19.1: 0 + 24: 0 + 4: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:41373 + 0: 3435 + 0.2: 17 + 4.1: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:25137 + 2: 3591 + 9.1: _ZNK9oceanbase3sql18ObBasicSessionInfo22get_is_result_accurateERb:122094 + 2: 3591 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache22get_is_result_accurateEv:114912 + 0: 3591 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache22get_is_result_accurateEb:79002 + 0: 3591 + 12: _ZNK9oceanbase3sql17ObPhysicalPlanCtx18is_result_accurateEv:25137 + 0: 3591 + 52.1: _ZNK9oceanbase3sql11ObResultSet13get_stmt_typeEv:0 + 2: 0 + 55.1: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:61689 + 0: 5128 + 0.2: 17 + 66.2: _ZN9oceanbase3sql17ObSqlTransControl15clear_xa_branchERKNS_11transaction11ObXATransIDERPNS2_8ObTxDescE:697 + 2.1: 17 + 2: _ZN9oceanbase5share11ObTenantEnv3mtlIPNS_11transaction11ObXAServiceEEET_v:561 + 2: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:306 + 2: 17 + 2.1: 0 + 2.2: 0 + 2.1: _ZN9oceanbase5share12ObTenantBase3getIPNS_11transaction11ObXAServiceEEET_v:255 + 0: _ZN9oceanbase5share12ObTenantBase9inner_getENS1_8IdentityIPNS_11transaction11ObXAServiceEEE:255 + 0: 17 + 67: _ZN9oceanbase3sql18ObBasicSessionInfo30reset_first_need_txn_stmt_typeEv:170 + 0: 17 + 70: _ZN9oceanbase3sql18ObBasicSessionInfo15disassociate_xaEv:323 + 0: 17 + 72: _ZN9oceanbase3sql11ObResultSet19auto_end_plan_transERNS0_14ObPhysicalPlanEiRb:1021895 + 4.1: 4690 + 4.2: 0 + 4.4: 17 + 5: 4479 + 7: 4479 + 8: 4479 + 10: 4479 + 11.1: 4479 _ZZN9oceanbase3sql11ObResultSet19auto_end_plan_transERNS0_14ObPhysicalPlanEiRbENKUlPKcE_clES6_:4925 + 15: 5000 + 17: 3 + 18: 0 + 19.1: 0 + 22: 3 + 24: 3 + 24.1: 0 + 28: 1 + 28.1: 3 _ZN9oceanbase3sql17ObSqlTransControl18implicit_end_transERNS0_13ObExecContextEbPNS0_23ObEndTransAsyncCallbackE:3 + 31.1: 0 + 35: 1 + 44: 0 + 45.1: 0 + 47: 0 + 48: 0 + 49: 0 + 50: 0 + 54: 0 + 55: 0 + 56.1: 0 + 57: 0 + 65: 0 + 71.1: 4951 + 71.2: 0 + 71.4: 0 + 72.1: 4653 _ZZN9oceanbase3sql11ObResultSet19auto_end_plan_transERNS0_14ObPhysicalPlanEiRbENKUlPKcE3_clES6_:5094 + 76: 4952 + 4.1: _ZN9oceanbase3lib20is_trace_log_enabledEv:37717 + 2: 4819 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:4862 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:32830 + 2: 4690 + 4.2: _ZN9oceanbase6common18get_trace_recorderEv:442 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:442 + 7: 17 + 8: 0 + 8.1: 0 + 4.4: _ZN9oceanbase3lib20is_trace_log_enabledEv:204 + 2: 17 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:119 + 2: 17 + 4.5: _ZN9oceanbase6common18get_trace_recorderEv:476 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:476 + 7: 17 + 8: 0 + 8.1: 0 + 4.9: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl189ELl1600EE9add_eventEv:1122 + 2: 17 + 3.1: 0 + 6: 17 + 10: 17 + 11: 17 + 12: 17 + 4.10: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:0 + 0: 0 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 5: _ZNK9oceanbase3sql18ObBasicSessionInfo17is_in_transactionEv:102235 + 0: 4445 + 0.1: _ZNK9oceanbase11transaction8ObTxDesc8is_in_txEv:48895 + 0: 4445 + 7: _ZNK9oceanbase3sql18ObBasicSessionInfo24has_explicit_start_transEv:31353 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo10TransFlags24has_explicit_start_transEv:31353 + 0: 4479 + 9: _ZNK9oceanbase3sql18ObBasicSessionInfo14get_autocommitERb:170202 + 2: 4479 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache14get_autocommitEv:147807 + 0: 4479 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache14get_autocommitEb:103017 + 0: 4479 + 17: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:63 + 0: 3 + 0.2: 0 + 0.3: 3 + 17.1: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:21 + 2: 3 + 22: _ZNK9oceanbase3sql17ObPhysicalPlanCtx16is_error_ignoredEv:21 + 0: 3 + 22.1: _ZNK9oceanbase3sql11ObResultSet13need_rollbackEiib:12 + 3.1: 3 + 4.1: 3 + 24: _ZN9oceanbase3sql11ObResultSet18is_end_trans_asyncEv:33 + 2: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:12 + 0: 3 + 0.2: 0 + 0.3: 3 + 2.1: _ZN9oceanbase3sql13ObExecContext18is_end_trans_asyncEv:21 + 0: 3 + 28: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:3 + 0: 3 + 0.2: 0 + 43: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:0 + 0: 0 + 0.2: 0 + 43.1: _ZN9oceanbase3sql13ObExecContext11get_sql_ctxEv:0 + 0: 0 + 55.1: _ZN9oceanbase3sql19ObIEndTransCallback14set_last_errorEi:0 + 0: 0 + 56: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:0 + 0: 0 + 0.2: 0 + 58: _ZN9oceanbase3sql16ObSQLSessionInfo16get_end_trans_cbEv:0 + 0: 0 + 68: _ZN9oceanbase3sql11ObResultSet15get_trans_stateEv:12 + 0: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:12 + 0: 1 + 0.2: 0 + 68.1: _ZN9oceanbase3sql10TransState26clear_start_trans_executedEv:7 + 1: 1 + 71.1: _ZN9oceanbase3lib20is_trace_log_enabledEv:39671 + 2: 5014 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:5042 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:34657 + 2: 4951 + 71.2: _ZN9oceanbase6common18get_trace_recorderEv:0 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:0 + 7: 0 + 8: 0 + 8.1: 0 + 71.4: _ZN9oceanbase3lib20is_trace_log_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:0 + 2: 0 + 71.5: _ZN9oceanbase6common18get_trace_recorderEv:0 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:0 + 7: 0 + 8: 0 + 8.1: 0 + 71.11: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl189ELl1600EE9add_eventEv:0 + 2: 0 + 3.1: 0 + 6: 0 + 10: 0 + 11: 0 + 12: 0 + 71.12: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:0 + 0: 0 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 77: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:65316 + 0: 5443 + 0.2: 0 + 77.1: _ZN9oceanbase3sql13ObExecContext11get_das_ctxEv:38227 + 0: 5461 + 78.1: _ZN9oceanbase3sql18ObPartitionHitInfo12try_set_boolEb:0 + 0: 0 + 0.1: 0 + 82.12: _ZN9oceanbase5trace16__ObFLTSpanGuardD2Ev:22024 + 0: 5506 + 0.1: 0 + 0.2: 0 + 0.4: 0 + 0.5: 0 + 0.7: 0 + 0.8: 0 + 0.12: 0 + 0.3: _ZNK9oceanbase5trace4UUID9is_initedEv:0 + 0: 0 + 0.1: 0 + 0.6: _ZN9oceanbase5trace7ObTrace13is_auto_flushEv:0 + 0: 0 + 82.15: _ZN9oceanbase5trace16__ObFLTSpanGuardD2Ev:0 + 0: 0 + 0.1: 0 + 0.2: 0 + 0.4: 0 + 0.5: 0 + 0.7: 0 + 0.8: 0 + 0.12: 0 + 0.3: _ZNK9oceanbase5trace4UUID9is_initedEv:0 + 0: 0 + 0.1: 0 + 0.6: _ZN9oceanbase5trace7ObTrace13is_auto_flushEv:0 + 0: 0 + 82.16: _ZN9oceanbase3sql16LinkExecCtxGuardD2Ev:0 + 2: 0 + 2.1: 0 + 82.18: _ZN9oceanbase3sql16LinkExecCtxGuardD2Ev:5629 + 2: 5629 _ZN9oceanbase3sql16LinkExecCtxGuard22unlink_current_contextEv:5773 + 2.1: 0 +_ZNK9oceanbase3sql10ObAggrInfo9eval_aggrERNS0_17ObChunkDatumStore15ShadowStoredRowERNS0_9ObEvalCtxE:5454586:25220 + 2: 24801 + 3: 24801 + 4: 24801 + 4.1: 0 + 7: 24439 + 8: 24439 + 9: 0 + 10.1: 0 + 13: 24439 + 15: 24439 + 16.1: 24553 + 16.2: 24553 + 16.3: 24553 + 16.5: 24553 + 17: 24553 + 18.1: 0 + 20: 24553 + 25: 25023 + 4: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE5emptyEv:173607 + 0: 24801 + 0: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE5countEv:99204 + 0: 24801 + 4.1: _ZNK9oceanbase3sql10ObAggrInfo13get_expr_typeEv:0 + 1: 0 + 1.1: 0 + 1.4: 0 + 7: _ZNK9oceanbase3sql17ObChunkDatumStore15ShadowStoredRow13get_store_rowEv:97756 + 0: 24439 + 17: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:122195 + 6: 24439 + 17.1: _ZNK9oceanbase3sql6ObExpr4evalERNS0_9ObEvalCtxERPNS_6common7ObDatumE:953121 + 4: 24439 + 6: 24439 + 7: 24439 + 9: 24439 + 10: 0 + 10.1: 0 + 11: 0 + 13: 0 + 15.1: 24439 + 15.2: 0 + 17: 0 + 18: 0 + 20: 0 + 21: 0 + 22: 0 + 24: 0 + 9: _ZNK9oceanbase3sql6ObExpr15is_batch_resultEv:97756 + 0: 24439 + 11: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 24: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:0 + 0: 0 +_ZN9oceanbase3sql9ObLogPlan15select_replicasERNS0_13ObExecContextEbRKNS_6common6ObAddrERNS4_8ObIArrayIPNS0_15ObCandiTableLocEEE:5442851:4875 + 4: 4595 + 5: 4595 + 8: 4595 + 10: 4595 + 11: 4595 + 12: 4595 + 14: 4595 + 15: 18 + 16.1: 18 + 17.1: 4619 _ZNK9oceanbase3sql18ObBasicSessionInfo16get_sys_variableENS_5share17ObSysVarClassTypeERl:4625 + 18.1: 18 + 20: 4619 + 23: 4619 + 24.1: 4619 + 24.2: 256 + 25: 257 _ZN9oceanbase3sql9ObLogPlan20weak_select_replicasERKNS_6common6ObAddrENS0_17ObRoutePolicyTypeEbRNS2_8ObIArrayIPNS0_15ObCandiTableLocEEERbRNS_5share27ObFollowerFirstFeedbackTypeE:243 + 30.1: 18 + 32: 257 + 33: 257 + 34: 18 + 35.1: 18 + 36: 18 + 38: 18 + 40: 257 + 46: 257 + 47.1: 18 + 47.2: 18 + 47.3: 18 + 47.6: 18 + 48: 18 + 49: 18 + 50: 18 + 51.1: 18 + 54.1: 18 + 54.2: 18 + 54.3: 18 + 56.1: 18 + 56.4: 18 + 58.1: 18 + 67: 4370 + 68: 4278 + 69.1: 18 + 70: 18 + 71: 18 + 72.1: 18 + 75: 4278 + 79: 4522 + 8: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:32165 + 2: 4595 + 24.2: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:1792 + 2: 256 + 24.3: _ZN9oceanbase3sql18ObBasicSessionInfo15get_is_in_retryEv:1792 + 1: 256 + 32.1: _ZN9oceanbase3sql18ObPartitionHitInfo12try_set_boolEb:3855 + 0: 257 + 0.1: 257 + 34: _ZN9oceanbase3sql18ObBasicSessionInfo27set_follower_first_feedbackENS_5share27ObFollowerFirstFeedbackTypeE:1602 + 2: 18 + 3: 18 + 4: 18 + 5.1: 18 + 8: 18 + 3: _ZNK9oceanbase3sql18ObBasicSessionInfo28is_abundant_feedback_supportEv:288 + 2: 18 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo21is_track_session_infoEv:126 + 0: 18 + 2.1: _ZNK9oceanbase7obmysql22ObProxyCapabilityFlags28is_abundant_feedback_supportEv:126 + 0: 18 + 40: _ZN9oceanbase3sql17ObTaskExecutorCtx29set_need_renew_location_cacheEb:1799 + 2: 257 + 46: _ZNK9oceanbase3sql17ObTaskExecutorCtx28is_need_renew_location_cacheEv:514 + 0: 257 + 48: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql15ObCandiTableLocEE2atEl:72 + 6: 18 + 55: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql16ObCandiTabletLocEE2atEl:72 + 6: 18 + 56.3: _ZNK9oceanbase3sql14ObOptTabletLoc13get_tablet_idEv:198 + 0: _ZN9oceanbase6common10ObTabletIDC2ERKS1_:198 + 0: 18 + 67: _ZN9oceanbase3sql18ObBasicSessionInfo27get_is_in_retry_for_dup_tblEv:83086 + 1: 4378 + 68: _ZN9oceanbase3sql9ObLogPlan22strong_select_replicasERKNS_6common6ObAddrERNS2_8ObIArrayIPNS0_15ObCandiTableLocEEERbb:4344042 + 5: 4370 + 8: 4370 + 10.1: 4214 + 10.2: 8686 + 10.3: 8686 + 10.5: 4214 + 12: 4378 + 13: 4378 + 14: 4378 + 15: 18 + 16.1: 18 + 17.1: 4378 + 20: 4378 + 20.1: 4378 + 21: 18 + 22.1: 18 + 24.1: 18 + 27: 4214 + 28.1: 18 + 31: 4214 + 34: 4214 + 35: 4214 + 37.1: 18 + 48: 4278 + 48.1: 4278 + 49: 18 + 51: 4278 + 9: _ZN9oceanbase6common6ObAddrC2Ev:157320 + 1: 4370 + 11: _ZN9oceanbase6common6ObAddr5resetEv:30646 + 2: 4378 + 12: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql15ObCandiTableLocEE2atEl:17512 + 6: 4378 + 20.1: _ZNK9oceanbase3sql15ObCandiTableLoc29is_duplicate_table_not_in_dmlEv:35024 + 0: 4378 + 27: _ZN9oceanbase3sql15ObCandiTableLoc17all_select_leaderERbRNS_6common6ObAddrE:2806260 + 3: 4378 + 4: 4378 + 6: 4378 _ZN9oceanbase5share19ObLSReplicaLocationC1Ev:4404 + 7: 4237 + 8.1: 4497 + 8.3: 8609 + 8.4: 8609 + 8.6: 4497 + 9: 4241 _ZN9oceanbase5share19ObLSReplicaLocation5resetEv:4560 + 10: 4465 + 12.2: 4551 + 13.1: 30 + 15: 4551 + 17: 18 + 18.1: 18 + 19.1: 18 + 19.2: 4626 + 20.1: 18 + 22: 4626 + 25: 30 + 29: 4214 + 65277: 26 + 5: _ZN9oceanbase6common6ObAddrC2Ev:218700 + 1: 4378 + 11: _ZN9oceanbase6common12ObIArrayWrapINS_3sql16ObCandiTabletLocEE2atEl:84835 + 6: 4465 + 12.1: _ZNK9oceanbase3sql14ObOptTabletLoc17get_strong_leaderERNS_5share19ObLSReplicaLocationERl:988512 + 2: 4465 + 3: 4465 + 4: 18 + 5.1: 18 + 7.1: 4465 + 7.3: 4465 + 7.5: 18 + 8: 4546 + 10: 4551 + 15: 18 + 3: _ZNK9oceanbase3sql14ObOptTabletLoc8is_validEv:147345 + 3: 4465 + 3.1: 4465 + 4: 4465 + 4.1: 4465 + 7: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql13ObRoutePolicy16CandidateReplicaEE5countEv:22325 + 0: 4465 + 8: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql13ObRoutePolicy16CandidateReplicaEE2atEl:191995 + 6: 4465 + 8.1: _ZNK9oceanbase5share19ObLSReplicaLocation16is_strong_leaderEv:26910 + 0: 4465 _ZN9oceanbase6common16is_strong_leaderENS0_6ObRoleE:4571 + 9: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql13ObRoutePolicy16CandidateReplicaEE2atEl:18184 + 6: 4546 + 9.1: _ZN9oceanbase5share19ObLSReplicaLocationaSERKS1_:382019 + 0: 4546 + 0.1: 4546 _ZN9oceanbase5share17ObLSRestoreStatusaSERKS1_:4563 + 0: _ZN9oceanbase6common6ObAddraSERKS1_:177294 + 1: 4546 + 2: 4546 + 3: 4546 + 14.1: _ZNK9oceanbase3sql16ObCandiTabletLoc20has_selected_replicaEv:54612 + 0: 4551 + 19.1: _ZN9oceanbase3sql16ObCandiTabletLoc24set_selected_replica_idxEl:139536 + 2: 4626 + 3: 4626 + 3.1: 4626 + 3.2: 4626 + 6: 18 + 7.1: 18 + 10: 4626 + 12: 18 + 23.1: _ZN9oceanbase6common6ObAddraSERKS1_:214064 + 1: 4653 + 2: 4653 + 3: 4653 + 24.2: _ZNK9oceanbase6common6ObAddrneERKS1_:28932 + 2: _ZNK9oceanbase6common6ObAddreqERKS1_:28932 + 2: 4626 + 2.1: 18 + 2.2: 18 + 30: _ZN9oceanbase6common6ObAddraSERKS1_:109564 + 1: 4214 + 2: 4214 + 3: 4214 + 36: _ZN9oceanbase6common6ObAddraSERKS1_:160132 + 1: 4214 + 2: 4214 + 3: 4214 + 37.1: _ZNK9oceanbase6common6ObAddrneERKS1_:1116 + 2: _ZNK9oceanbase6common6ObAddreqERKS1_:1116 + 2: 18 + 2.1: 18 + 2.2: 18 + 48.1: _ZNK9oceanbase6common6ObAddrneERKS1_:248124 + 2: _ZNK9oceanbase6common6ObAddreqERKS1_:248124 + 2: 4278 + 2.1: 4278 + 2.2: 4278 + 75.1: _ZN9oceanbase3sql18ObPartitionHitInfo12try_set_boolEb:64170 + 0: 4278 + 0.1: 4278 + 76: _ZN9oceanbase3sql17ObTaskExecutorCtx29set_need_renew_location_cacheEb:34224 + 2: 4278 +_ZN9oceanbase3sql16ObFastParserBase14process_numberEb:5442754:6609 + 1: 6159 + 2: 6303 + 2.1: 6303 + 5: 6303 + 40: 6159 + 41: 6159 + 46.1: 32251 + 52: 2339 + 56: 30 + 56.1: 30 + 64: 2339 + 66: 30 + 70.1: 30 + 75: 30 + 76: 30 + 78: 30 + 81: 30 + 84: 30 + 85: 30 + 86: 30 + 87: 30 + 89: 30 + 90.2: 30 + 90.3: 30 + 90.5: 30 + 90.7: 30 + 100: 30 + 109: 30 + 117: 30 + 118.2: 30 + 120.18: 30 + 120.21: 30 + 120.22: 30 + 120.23: 30 + 120.26: 30 + 120.27: 30 + 120.29: 30 + 120.31: 30 + 125: 2339 + 126.1: 30 + 126.18: 30 + 128.1: 3960 + 128.18: 3960 + 128.21: 0 + 128.22: 0 + 128.23: 0 + 128.26: 0 + 128.27: 0 + 128.29: 0 + 128.31: 0 + 133: 6229 + 134: 6229 + 141: 6229 + 142: 30 + 145: 6303 _ZN9oceanbase6common16ObArenaAllocator5allocEl:6461 + 146: 30 + 147.1: 30 + 150: 6303 + 151: 6303 + 152: 6303 + 153: 6303 + 154: 6484 + 159: 6356 + 162: 6342 + 166: 6267 + 45: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:246360 + 2: 6159 + 2.1: 6159 + 5: 6159 + 46.1: _ZN9oceanbase3sql16ObFastParserBase8is_digitEc:523966 + 2: 32251 + 2.1: 32251 + 48: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEv:1060567 + 0: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:1060567 + 2: 36308 + 3: 3960 + 4: 3960 + 7: 32251 + 8: 32251 + 55: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEv:930 + 0: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:930 + 2: 30 + 7: 30 + 8: 30 + 56.1: _ZN9oceanbase3sql16ObFastParserBase8is_digitEc:540 + 2: 30 + 2.1: 30 + 2: _ZN9oceanbase3sql16ObFastParserBase13is_valid_charEc:120 + 2: 30 + 57: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEv:510 + 0: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:510 + 2: 30 + 7: 30 + 8: 30 + 65: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEv:1260 + 0: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:1260 + 2: 30 + 3: 30 + 4: 30 + 7: 30 + 8: 30 + 68: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEv:1350 + 0: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:1350 + 2: 30 + 3: 30 + 4: 30 + 7: 30 + 8: 30 + 70.1: _ZN9oceanbase3sql16ObFastParserBase8is_digitEc:930 + 2: 30 + 2.1: 30 + 2: _ZN9oceanbase3sql16ObFastParserBase13is_valid_charEc:120 + 2: 30 + 72: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEv:1410 + 0: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:1410 + 2: 30 + 3: 30 + 4: 30 + 7: 30 + 8: 30 + 82: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql12reverse_scanEv:1350 + 2: 30 + 3: 30 + 6: 30 + 94: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql12reverse_scanEv:780 + 2: 30 + 3: 30 + 6: 30 + 101: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql12reverse_scanEv:1110 + 2: 30 + 3: 30 + 6: 30 + 110: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql12reverse_scanEv:870 + 2: 30 + 3: 30 + 6: 30 + 113: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql12reverse_scanEv:90 + 2: 30 + 118.4: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEv:810 + 0: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:810 + 2: 30 + 3: 30 + 118.10: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEv:810 + 0: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:810 + 2: 30 + 3: 30 + 128.18: _ZN9oceanbase3sql16ObFastParserBase19is_identifier_flagsEl:566732 + 4: 2341 + 5: 0 + 6.1: 2328 + 11.1: 3927 + 3: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:151075 + 2: 6301 + 2.1: 6301 + 5: 2341 + 4: _ZN9oceanbase3sql16ObFastParserBase18is_identifier_charEc:39797 + 3: 2341 + 4.2: 2341 + 6.1: _ZN9oceanbase3sql16ObFastParserBase8is_spaceEc:46560 + 2.1: 2328 + 12: _ZN9oceanbase3sql16ObFastParserBase12is_utf8_charEl:129592 + 12: 36 + 14: 30 + 22.1: 36 + 32.1: 4100 + 34: 90 + 12: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:44363 + 2: 3997 + 2.1: 3997 + 5: 36 + 14: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:360 + 2.1: 30 + 5: 30 + 14.1: _ZN9oceanbase3sql16ObFastParserBase4is_uEc:630 + 2: 30 + 3.1: 30 + 24: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:1920 + 2: 60 + 5: 60 + 24.1: _ZN9oceanbase3sql16ObFastParserBase4is_uEc:2430 + 2: 60 + 34: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:7608 + 2: 93 + 2.1: 93 + 5: 90 + 34.1: _ZN9oceanbase3sql16ObFastParserBase4is_uEc:630 + 2: 90 + 14: _ZN9oceanbase3sql16ObFastParserBase11is_gbk_charEl:2190 + 10.1: 30 + 10.2: 30 + 10.1: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:810 + 2: 30 + 2.1: 30 + 5: 30 + 10.2: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:390 + 2.1: 30 + 5: 30 + 10.3: _ZN9oceanbase3sql16ObFastParserBase6is_gb1Ec:90 + 2: _ZN9oceanbase3sql16ObFastParserBase13is_valid_charEc:90 + 2: 30 + 10.4: _ZN9oceanbase3sql16ObFastParserBase6is_gb2Ec:240 + 2: _ZN9oceanbase3sql16ObFastParserBase13is_valid_charEc:240 + 2: 30 + 149: _ZN9oceanbase3sql16ObFastParserBase8new_nodeERPc10ObItemType:415998 + 4: 6303 + 3: _ZN9oceanbase3sql16ObFastParserBase17reset_parser_nodeEP10_ParseNode:403392 + 3: 6303 + 4: 6303 + 15: 6303 + 16: 6303 + 18: 6303 + 24: 6303 + 153: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql3ptrEl:151272 + 2: 6303 + 2.1: 6303 + 5: 6303 + 155.1: _ZN9oceanbase3sql16ObFastParserBase13parse_strndupEPKcmPc:156 + 2: 6 + 3: 6 + 160: _ZN9oceanbase3sql16ObFastParserBase13parse_integerEP10_ParseNode:457144 + 2: 6356 + 3: 6356 + 5: 30 + 7.1: 30 + 7.2: 30 + 7.3: 30 + 8: 30 + 10: 30 + 11: 30 + 12: 30 + 13: 30 + 17: 6356 + 18: 30 + 20: 6356 ob_strntoull:6480 + 22: 6362 + 23: 6362 + 24: 30 + 25.1: 6362 + 26: 30 + 162: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql3ptrEl:152208 + 2: 6342 + 2.1: 6342 + 5: 6342 + 163: _ZN9oceanbase3sql16ObFastParserBase15lex_store_paramEP10_ParseNodePc:253460 + 3: 6342 + 4: 6342 + 5: 6342 + 8: 1814 + 10: 6267 + 11: 6267 +_ZNK9oceanbase7storage19ObTabletMemtableMgr26get_multi_source_data_unitEPNS_8memtable22ObIMultiSourceDataUnitE:5397807:11752 + 2: 11505 + 3: 11505 + 4: 11505 _ZN9oceanbase7storage15ObTableHandleV2C1Ev:11963 + 6: 11495 _ZN9oceanbase7storage19ObTabletBindingInfo5resetEv:6519 _ZN9oceanbase7storage29ObTabletTxMultiSourceDataUnit5resetEv:5048 + 8: 11759 + 9: 63 + 10.1: 63 + 15: 11759 + 17.1: 11791 + 18: 9 + 21.1: 25279 + 21.3: 25455 + 21.4: 25455 + 22.1: 11791 _ZN9oceanbase7storage15ObTableHandleV2aSERKS1_:12074 + 24: 11423 _ZN9oceanbase8memtable10ObMemtable26get_multi_source_data_unitEPNS0_22ObIMultiSourceDataUnitEPNS_6common12ObIAllocatorE:11765 + 24.1: 12887 + 27.1: 5 + 29.1: 8 + 29.2: 8 + 35: 13817 _ZN9oceanbase6common12TCRLockGuardD2Ev:14074 + 37: 12579 + 38: 12804 + 39: 12804 _ZN9oceanbase7storage19ObTabletBindingInfo5resetEv:7383 _ZN9oceanbase7storage29ObTabletTxMultiSourceDataUnit5resetEv:5602 + 44: 13370 + 45.7: 13537 _ZN9oceanbase7storage15ObTableHandleV2D1Ev:14388 + 45.8: 5 + 15: _ZN9oceanbase6common12TCRLockGuardC2ERKNS0_8TCRWLockE:2447180 + 1: 11759 + 3: 11791 + 4.1: 63 + 3: _ZN9oceanbase6common8TCRWLock6rdlockElRl:2139269 + 3.1: 63 + 4: 63 + 5: 63 + 3.2: _ZN9oceanbase6common8TCRWLock10try_rdlockERl:2136308 + 3: 11759 + 5: 11791 + 8: 63 + 4: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:82313 + 0: 11759 + 4.1: _ZN9oceanbase6common5TCRef7inc_refEPiRl:1614573 + 2: 11759 + 4: 11759 + 5.1: 11759 + 5.2: 5118 + 7: 16602 + 7.1: 11643 + 8: 11791 + 12: 11791 + 2: _ZN9oceanbase6common8get_itidEv:333284 + 4: 11759 + 5: 63 + 6: 63 + 8: 63 + 13: _ZN9oceanbase6common5TCRef5xref_EPii:567 + 0: 63 + 8: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:441 + 0: 63 + 8.1: _ZN9oceanbase6common5TCRef7dec_refEPil:1935 + 2: 63 + 2.1: 63 + 3: _ZN9oceanbase6common5TCRef5xref_EPii:45 + 0: 5 + 9: _ZN9oceanbase6common9LWaitCond6signalEv:790 + 2: 63 + 2.1: 5 + 3: 5 + 17: _ZNK9oceanbase7storage14ObIMemtableMgr13has_memtable_Ev:176865 + 0: 11791 + 0: _ZNK9oceanbase7storage14ObIMemtableMgr19get_memtable_count_Ev:153283 + 0: 11791 + 22: _ZNK9oceanbase7storage14ObIMemtableMgr17get_memtable_idx_El:70746 + 0: 11791 + 23: _ZN9oceanbase7storage15ObTableHandleV29get_tableEv:45692 + 0: 11423 + 35.1: _ZN9oceanbase6common12TCRLockGuardD2Ev:500 + 2: 5 + 3: 5 + 3.1: 5 + 3.2: 5 + 3: _ZN9oceanbase6common8TCRWLock8rdunlockEl:355 + 3: 5 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:20 + 0: 5 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPil:130 + 2: 5 + 2.1: 5 + 3: _ZN9oceanbase6common5TCRef5xref_EPii:15 + 0: 5 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:170 + 2: 5 + 2.1: 5 + 3: 5 +_ZN9oceanbase3sql12ObSortOpImpl9need_dumpEv:5337732:56603 + 1: 50799 + 2: 50799 + 2.1: 52683 + 3: 50799 + 3.1: 52683 + 2: _ZNK9oceanbase3sql20ObSqlMemMgrProcessor13get_data_sizeEv:1219176 + 0: 50799 + 282: 50799 + 2.2: _ZNK9oceanbase3sql20ObSqlMemMgrProcessor13get_mem_boundEv:1219176 + 1: 50799 + 3.1: _ZNK9oceanbase3lib13MemoryContextptEv:203196 + 1: 50799 + 3.2: _ZNK9oceanbase3lib17__MemoryContext__4usedEv:1296351 + 2: 52683 + 2: _ZNK9oceanbase3lib17__MemoryContext__11malloc_usedEv:927570 + 2: 52683 _ZNK9oceanbase6common11ObAllocator4usedEv:53044 +_ZN9oceanbase3omt17ObWorkerProcessor7processERNS_3rpc9ObRequestE:5314590:5235 + 0: 34 + 1: 4972 + 2: 4972 + 4: 34 + 8.1: 4972 + 8.3: 0 + 10: 5315 + 11.1: 5369 + 11.2: 34 + 11.4: 34 + 11.5: 34 + 11.7: 34 + 11.8: 34 + 11.9: 34 + 11.10: 34 + 11.17: 34 + 11.18: 34 + 11.20: 34 + 11.22: 34 + 11.24: 34 + 11.28: 34 + 16: 5369 + 20.1: 34 + 20.2: 34 + 20.4: 34 + 20.5: 34 + 20.7: 34 + 20.8: 34 + 20.9: 34 + 20.10: 34 + 20.17: 34 + 20.18: 34 + 20.20: 34 + 20.22: 34 + 20.24: 34 + 20.28: 34 + 21: 34 + 22: 35 + 26.1: 5089 + 26.2: 34 + 26.4: 34 + 26.5: 34 + 26.7: 34 + 26.8: 34 + 26.9: 34 + 26.10: 34 + 26.17: 34 + 26.18: 34 + 26.20: 34 + 26.22: 34 + 26.24: 34 + 33.1: 5290 + 33.2: 34 + 33.4: 34 + 33.5: 34 + 33.7: 34 + 33.8: 34 + 33.9: 34 + 33.10: 34 + 33.17: 34 + 33.18: 34 + 33.20: 34 + 33.22: 34 + 33.24: 34 + 49: 5442 _ZTWN9oceanbase6common11in_try_stmtE:5573 + 50.1: 5460 + 51.1: 34 + 53: 5460 _ZTWN9oceanbase6common11in_try_stmtE:5573 + 54: 34 + 54.1: 34 + 55.1: 34 + 56: 34 + 57: 34 + 57.1: 34 + 57.3: 34 + 61: 4969 + 64: 5009 + 64.1: 34 + 64.2: 34 + 64.3: 34 + 64.6: 34 + 64.7: 34 + 67: 5009 + 4: _ZN9oceanbase6common18get_trace_recorderEv:140406 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:140406 + 7: 4972 + 8: 34 + 8.1: 34 + 5.1: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl189ELl1600EE5resetEv:114356 + 0: 4972 + 8.1: _ZN9oceanbase6common17get_perf_recorderEv:140576 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_19ObPerfEventRecorderELm0EEEPT_v:140576 + 7: 4972 + 8: 34 + 8.1: 34 + 8.6: _ZN9oceanbase6common19ObPerfEventRecorder5resetEv:0 + 3: 0 + 2: _ZN9oceanbase6common18ObSeqEventRecorderINS0_16ObTimestampEventELl500ELl8EE5resetEv:0 + 0: 0 + 9: _ZN9oceanbase3lib20is_trace_log_enabledEv:57691 + 2: 5369 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:5387 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:52322 + 2: 5315 + 10: _ZN9oceanbase3lib6Worker4selfEv:149908 + 3: 5315 + 4: 34 + 10.1: _ZNK9oceanbase3omt10ObThWorker20get_query_start_timeEv:37205 + 2: 5315 + 11.1: _ZN9oceanbase3lib20is_trace_log_enabledEv:64374 + 2: 5315 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:5337 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:59059 + 2: 5369 + 11.4: _ZN9oceanbase3lib20is_trace_log_enabledEv:408 + 2: 34 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:238 + 2: 34 + 11.19: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl189ELl1600EE10check_lockEv:1360 + 2: 34 + 3: _ZN9oceanbase3lib7ObMutex4lockEv:1054 + 0: 34 + 11.23: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl189ELl1600EE10get_bufferEv:238 + 0: 34 + 11.25: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl189ELl1600EE14get_buffer_posEv:238 + 0: 34 + 11.26: _ZNK9oceanbase3rpc9ObRequest21get_receive_timestampEv:476 + 2: 34 + 11.27: _ZNK9oceanbase3rpc9ObRequest21get_enqueue_timestampEv:374 + 2: 34 + 11.31: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl189ELl1600EE12check_unlockEv:782 + 2: 34 + 3: _ZN9oceanbase3lib7ObMutex6unlockEv:476 + 0: 34 + 15: _ZNK9oceanbase3rpc9ObRequest8get_typeEv:37583 + 0: 5369 + 19: _ZNK9oceanbase3rpc9ObRequest10get_packetEv:374 + 2: 34 + 20.1: _ZN9oceanbase3lib20is_trace_log_enabledEv:408 + 2: 34 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:238 + 2: 34 + 20.4: _ZN9oceanbase3lib20is_trace_log_enabledEv:408 + 2: 34 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:238 + 2: 34 + 20.19: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl189ELl1600EE10check_lockEv:1360 + 2: 34 + 3: _ZN9oceanbase3lib7ObMutex4lockEv:1054 + 0: 34 + 20.23: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl189ELl1600EE10get_bufferEv:340 + 0: 34 + 20.25: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl189ELl1600EE14get_buffer_posEv:102 + 0: 34 + 20.26: _ZN9oceanbase3rpc20ObRpcRequestOperator8get_peerEPKNS0_9ObRequestE:1428 + 1: 34 + 1.1: 34 + 20.27: _ZNK9oceanbase5obrpc11ObRpcPacket9get_pcodeEv:238 + 2: 34 + 20.31: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl189ELl1600EE12check_unlockEv:1088 + 2: 34 + 3: _ZN9oceanbase3lib7ObMutex6unlockEv:646 + 0: 34 + 21.1: _ZN9oceanbase6common12ObCurTraceId3setERKNS1_7TraceIdE:3947 + 4: 34 _ZN9oceanbase6common12ObCurTraceId7TraceId3setERKS2_:1 + 2: _ZN9oceanbase6common12ObCurTraceId12get_trace_idEv:2788 + 5: 34 + 5.1: 34 + 5.1: _ZN9oceanbase6common12ObCurTraceId7TraceIdC2Ev:986 + 0: 34 + 23.1: _ZN9oceanbase6common21ObThreadLogLevelUtils4initEa:4046 + 4: 34 + 2: _ZN9oceanbase6common21ObThreadLogLevelUtils20get_thread_log_levelEv:3026 + 3: _ZN9oceanbase6common15get_local_storeEv:3026 + 3: 34 + 3.1: 34 + 3.1: _ZN9oceanbase6common12ObLocalStoreC2Ev:1224 + 1: 34 + 0: _ZN9oceanbase6common16ObThreadLogLevelC2Ev:918 + 0: 34 + 26.1: _ZN9oceanbase3lib20is_trace_log_enabledEv:40992 + 2: 5369 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:5856 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:35623 + 2: 5089 + 26.4: _ZN9oceanbase3lib20is_trace_log_enabledEv:408 + 2: 34 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:238 + 2: 34 + 26.19: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl189ELl1600EE10check_lockEv:1360 + 2: 34 + 3: _ZN9oceanbase3lib7ObMutex4lockEv:1054 + 0: 34 + 26.23: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl189ELl1600EE10get_bufferEv:340 + 0: 34 + 26.25: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl189ELl1600EE14get_buffer_posEv:102 + 0: 34 + 26.26: _ZN9oceanbase3rpc20ObSqlRequestOperator8get_peerEPKNS0_9ObRequestE:1394 + 1: 34 + 1.1: 34 + 26.27: _ZN9oceanbase4yson24databuff_encode_elementsINS_6common6ObAddrEEEiPclRltRKT_:850 + 0.1: 34 + 26.30: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl189ELl1600EE12check_unlockEv:782 + 2: 34 + 3: _ZN9oceanbase3lib7ObMutex6unlockEv:476 + 0: 34 + 28: _ZN9oceanbase3rpc9ObRequest17generate_trace_idERKNS_6common6ObAddrE:1333057 + 2: 5089 + 3: 5089 + 3.1: 34 + 6: 34 + 12: 5089 + 2: _ZNK9oceanbase6common12ObCurTraceId7TraceId10is_invalidEv:76335 + 0: 5089 + 5: _ZNK9oceanbase5obrpc11ObRpcPacket12get_trace_idEv:136 + 2: 34 + 8: _ZNK9oceanbase6common12ObCurTraceId7TraceId10is_invalidEv:646 + 0: 34 + 9: _ZN9oceanbase6common12ObCurTraceId7TraceId4initERKNS0_6ObAddrE:939062 + 2: 5089 + 3: 5089 + 4: 5089 + 5: 5089 + 6: 5089 + 7: 5089 + 8: 34 + 9: 34 + 11: 5089 + 2: _ZN9oceanbase6common12ObCurTraceId12SeqGenerator7gen_seqEv:332043 + 2: 5089 + 3: 34 + 5: 5089 + 4: _ZNK9oceanbase6common6ObAddr10using_ipv6Ev:50890 + 0: 5089 + 6: _ZNK9oceanbase6common6ObAddr8get_portEv:30534 + 0: 5089 + 7: _ZNK9oceanbase6common6ObAddr10using_ipv6Ev:25445 + 0: 5089 + 11: _ZNK9oceanbase6common6ObAddr8get_ipv4Ev:76335 + 0: 5089 + 28.1: _ZN9oceanbase6common12ObCurTraceId3setERKNS1_7TraceIdE:445939 + 2: _ZN9oceanbase6common12ObCurTraceId12get_trace_idEv:129061 + 5: 5089 + 5.1: 34 + 5.1: _ZN9oceanbase6common12ObCurTraceId7TraceIdC2Ev:884 + 0: 34 + 4: _ZN9oceanbase6common12ObCurTraceId7TraceId3setERKS2_:316878 + 2: 5089 + 3: 5089 + 4: 5089 + 6: _ZN9oceanbase6common12ObCurTraceId7TraceId16check_ipv6_validEv:108229 + 1: 5089 + 2: 34 + 2.1: 34 + 31: _ZN9oceanbase6common16ObTraceIdAdaptorC2Ev:86768 + 0: _ZN9oceanbase6common16ObTraceIdAdaptor5resetEv:86768 + 3: 5090 + 32: _ZN9oceanbase6common12ObCurTraceId3getEv:128882 + 2: _ZN9oceanbase6common12ObCurTraceId12get_trace_idEv:128882 + 5: 5090 + 5.1: 34 + 5.1: _ZN9oceanbase6common12ObCurTraceId7TraceIdC2Ev:850 + 0: 34 + 32.1: _ZN9oceanbase6common16ObTraceIdAdaptor3setEPKm:224266 + 0: 5090 + 33.1: _ZN9oceanbase3lib20is_trace_log_enabledEv:42120 + 2: 5090 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:5279 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:37030 + 2: 5290 + 33.4: _ZN9oceanbase3lib20is_trace_log_enabledEv:408 + 2: 34 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:238 + 2: 34 + 33.19: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl189ELl1600EE10check_lockEv:1360 + 2: 34 + 3: _ZN9oceanbase3lib7ObMutex4lockEv:1054 + 0: 34 + 33.23: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl189ELl1600EE10get_bufferEv:238 + 0: 34 + 33.25: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl189ELl1600EE14get_buffer_posEv:340 + 0: 34 + 33.26: _ZN9oceanbase4yson24databuff_encode_elementsINS_6common16ObTraceIdAdaptorEEEiPclRltRKT_:612 + 0.1: 34 + 33.29: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl189ELl1600EE12check_unlockEv:782 + 2: 34 + 3: _ZN9oceanbase3lib7ObMutex6unlockEv:476 + 0: 34 + 41: _ZN9oceanbase6common35ob_setup_default_tsi_warning_bufferEv:171939 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_15ObWarningBufferELm0EEEPT_v:149480 + 7: 5290 + 8: 34 + 8.1: 34 + 3: _ZN9oceanbase6common27ob_setup_tsi_warning_bufferEPNS0_15ObWarningBufferE:22459 + 2: 5723 + 2: _ZN9oceanbase6common25ob_get_tsi_warning_bufferEv:5290 + 2: 5290 _ZTWN9oceanbase6common16g_warning_bufferE:5506 + 42: _ZN9oceanbase6common27ob_reset_tsi_warning_bufferEv:370337 + 2: 5442 + 3: 5442 + 2: _ZN9oceanbase6common25ob_get_tsi_warning_bufferEv:5723 + 2: 5723 _ZTWN9oceanbase6common16g_warning_bufferE:5895 + 4: _ZN9oceanbase6common15ObWarningBuffer5resetEv:321078 + 2: 5442 + 5: 5442 + 4: _ZN9oceanbase6common15ObWarningBuffer11WarningItem5resetEv:206796 + 2: 5442 + 3: 5442 + 5: 5442 + 8: 5442 + 50: _ZN9oceanbase3omt17ObWorkerProcessor11process_oneERNS_3rpc9ObRequestE:643506 + 3: 4993 + 5: 5078 _ZN9oceanbase3rpc5frame15ObReqTranslator9translateERNS0_9ObRequestERPNS1_14ObReqProcessorE:5151 + 6.1: 34 + 7: 34 + 8.1: 5078 + 9: 34 + 10.1: 34 + 12.1: 4998 + 12.2: 34 + 12.4: 34 + 12.5: 34 + 12.11: 34 + 14: 4998 _ZN9oceanbase3rpc9ObRequest15set_trace_pointEi:4973 + 15: 4992 _ZN9oceanbase3rpc5frame14ObSqlProcessor3runEv:4970 + 16.1: 34 + 18: 4992 _ZN9oceanbase8observer11ObSrvXlator7releaseEPNS_3rpc5frame14ObReqProcessorE:5009 + 21: 5460 + 12.1: _ZN9oceanbase3lib20is_trace_log_enabledEv:40200 + 2: 5078 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:5498 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:34986 + 2: 4998 + 12.4: _ZN9oceanbase3lib20is_trace_log_enabledEv:408 + 2: 34 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:238 + 2: 34 + 12.12: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:884 + 0: 34 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:170 + 2: 34 + 13: _ZN9oceanbase3rpc9ObRequest16on_process_beginEv:114954 + 0: _ZN9oceanbase3rpc13ObReusableMem5reuseEv:114954 + 0: 4998 + 60: _ZN9oceanbase6common12ObCurTraceId5resetEv:270264 + 2: _ZN9oceanbase6common12ObCurTraceId12get_trace_idEv:126163 + 5: 4969 + 5.1: 34 + 5.1: _ZN9oceanbase6common12ObCurTraceId7TraceIdC2Ev:986 + 0: 34 + 4: _ZN9oceanbase6common12ObCurTraceId7TraceId5resetEv:144101 + 0: 4969 + 62: _ZN9oceanbase6common21ObThreadLogLevelUtils5clearEv:3944 + 4: 34 + 5: 34 + 2: _ZN9oceanbase6common21ObThreadLogLevelUtils20get_thread_log_levelEv:3026 + 3: _ZN9oceanbase6common15get_local_storeEv:3026 + 3: 34 + 3.1: 34 + 3.1: _ZN9oceanbase6common12ObLocalStoreC2Ev:1224 + 1: 34 + 0: _ZN9oceanbase6common16ObThreadLogLevelC2Ev:918 + 0: 34 + 64.5: _ZN9oceanbase6common19ObPerfEventRecorder10need_writeEl:1598 + 3: 34 + 3.1: 34 + 4: 34 + 5: 34 +_ZNK9oceanbase3sql30ObHashPartitionExtendHashTableINS0_14ObHashPartColsEE3getEmRKS2_RPS4_:5276457:28466 + 2: 25373 + 3: 25373 + 4: 25373 + 5: 25373 + 9: 25373 + 10: 25373 + 11: 25373 + 12.1: 25373 + 12.3: 25373 + 13.1: 43 + 14: 0 + 14.1: 0 + 16.1: 0 + 17.1: 0 + 18: 0 + 22.1: 45 + 25: 25964 + 10: _ZNK9oceanbase3sql30ObHashPartitionExtendHashTableINS0_14ObHashPartColsEE14get_bucket_numEv:177611 + 2.2: _ZNK9oceanbase6common9Ob2DArrayIPNS_3sql14ObHashPartColsELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS4_Ll64ES5_Lb0EEEE5countEv:177611 + 0: 25373 + 10.1: _ZN9oceanbase6common9Ob2DArrayIPNS_3sql14ObHashPartColsELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS4_Ll64ES5_Lb0EEEE2atEl:1598499 + 2: 25373 + 3.1: 0 + 5: 0 + 5: _ZNK9oceanbase6common9Ob2DArrayIPNS_3sql14ObHashPartColsELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS4_Ll64ES5_Lb0EEEE11get_obj_posEl:989547 + 4: 25373 + 5: 25373 + 4: _ZNK9oceanbase6common12ObIArrayWrapIPPNS_3sql14ObHashPartColsEE2atEl:101492 + 6: 25373 + 11: _ZN9oceanbase3sql9ObEvalCtx19BatchInfoScopeGuardC2ERS1_:608952 + 2: 25373 + 3: 25373 + 4: 25373 + 24: _ZN9oceanbase3sql9ObEvalCtx19BatchInfoScopeGuardD2Ev:571208 + 2: 25964 + 3: 25964 + 24.1: _ZN9oceanbase3sql9ObEvalCtx19BatchInfoScopeGuardD2Ev:0 + 2: 0 + 3: 0 +_ZN9oceanbase5share19ObLSLocationService14get_from_cacheElmRKNS0_6ObLSIDERNS0_12ObLSLocationE:5264434:4821 + 5: 4391 + 6: 4391 + 9: 4391 + 10: 2 + 11.1: 2 + 12.2: 4391 + 13: 0 + 14.1: 0 + 15.2: 4391 + 16: 3 _ZNK9oceanbase5share15ObLSLocationMap3getERKNS0_20ObLSLocationCacheKeyERNS0_12ObLSLocationE:1 + 16.1: 2 + 18: 2 + 19.1: 2 + 21.1: 2 + 24.1: 2 + 27.1: 4491 + 29: 2 + 30.1: 2 + 32.1: 2 + 35.1: 4491 _ZZN9oceanbase5share19ObLSLocationService14get_from_cacheElmRKNS0_6ObLSIDERNS0_12ObLSLocationEENK5$_289clEPKc.db28c62327e16d3ae5c8a88acfd53bbb:4855 + 38: 4685 + 39.10: 4685 + 7: _ZN9oceanbase5share6ObLSIDC2ERKS1_:13173 + 0: 4391 + 7.3: _ZN9oceanbase5share20ObLSLocationCacheKeyC2ElmNS0_6ObLSIDE:171249 + 4: 4391 + 5: 4391 + 4: _ZN9oceanbase5share6ObLSIDC2ERKS1_:30737 + 0: 4391 + 8: _ZN9oceanbase5share12ObLSLocation5resetEv:593013 + 4: 4391 + 5: 4391 + 2: _ZN9oceanbase5share20ObLSLocationCacheKey5resetEv:96602 + 2: 4391 + 4: _ZN9oceanbase5share6ObLSID5resetEv:35128 + 0: 4391 + 5: _ZN9oceanbase6common13ObSEArrayImplINS_5share19ObLSReplicaLocationELl3ENS0_19ModulePageAllocatorELb0EE5resetEv:399809 + 0: 4391 + 0: _ZN9oceanbase6common13ObSEArrayImplINS_5share19ObLSReplicaLocationELl3ENS0_19ModulePageAllocatorELb0EE7destroyEv:307578 + 4.1: 4391 + 4.3: 2 + 5: 2 + 9: 4391 + 10: 2 + 11: 2 + 13: 4391 + 15: 4391 + 24: 4391 + 6: _ZN9oceanbase6common6ObLink5resetEv:35128 + 0: 4391 + 12.1: _ZNK9oceanbase5share20ObLSLocationCacheKey8is_validEv:193204 + 2: 4391 + 3: 4391 + 3.1: 4391 + 4: 4391 + 4.1: _ZNK9oceanbase5share6ObLSID8is_validEv:48301 + 0: 4391 + 15.1: _ZN9oceanbase6common13is_sys_tenantEm:35128 + 2: 4391 + 27: _ZNK9oceanbase5share15ObLSLocationMap3getERKNS0_20ObLSLocationCacheKeyERNS0_12ObLSLocationE:3589733 + 4: 4390 + 8: 4390 + 9: 2 + 10.1: 2 + 12: 4390 + 13: 4390 + 14: 4532 + 15.1: 4532 + 16.2: 4532 + 26.2: 4532 + 27: 2 + 31: 2 + 32: 4491 + 12: _ZNK9oceanbase5share20ObLSLocationCacheKey4hashEv:684840 + 3: _ZN9oceanbase6common10murmurhashEPKvim:245840 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:245840 + 13: 4390 + 14: 4390 + 15: 4390 + 17: 4390 + 18: 4390 + 41: 4390 + 42: 4390 + 43: 4390 + 4: _ZN9oceanbase6common10murmurhashEPKvim:215110 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:215110 + 5: 4390 + 13: 4390 + 14: 4390 + 15: 4390 + 17: 4390 + 18: 4390 + 41: 4390 + 42: 4390 + 43: 4390 + 5: _ZN9oceanbase6common10murmurhashEPKvim:223890 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:223890 + 5: 4390 + 13: 4390 + 14: 4390 + 15: 4390 + 17: 4390 + 18: 4390 + 41: 4390 + 42: 4390 + 43: 4390 + 13: _ZN9oceanbase5share20ObQSyncLockReadGuardC2ERNS0_11ObQSyncLockE:48290 + 0: 4390 + 1: 4390 _ZN9oceanbase5share11ObQSyncLock6rdlockEv:4563 + 16.1: _ZNK9oceanbase5share20ObLSLocationCacheKeyeqERKS1_:217536 + 4: 4532 + 5: 4532 + 5.1: 4532 + 6: 4532 + 6.1: _ZNK9oceanbase5share6ObLSIDeqERKS1_:54384 + 0: 4532 + 26: _ZN9oceanbase6common16ObClockGenerator8getClockEv:95224 + 4: 4532 + 5.1: 2 + 8: 4532 + 6: _ZN9oceanbase6common16ObClockGenerator6get_usEv:20 + 2: 2 + 27.1: _ZN9oceanbase5share12ObLSLocation18set_last_access_tsEl:20 + 0: 2 + 29: _ZN9oceanbase5share12ObLSLocation9deep_copyERKS1_:2031208 + 2: 4532 + 3: 4532 + 5: 4532 + 6: 4653 + 7.1: 2 + 10: 2 + 4: _ZN9oceanbase5share20ObLSLocationCacheKeyaSERKS1_:81576 + 0: 4532 + 0: _ZN9oceanbase5share6ObLSIDaSERKS1_:40788 + 0: 4532 + 6: _ZN9oceanbase6common13ObSEArrayImplINS_5share19ObLSReplicaLocationELl3ENS0_19ModulePageAllocatorELb0EE6assignERKNS0_8ObIArrayIS3_EE:1781041 + 0: 4744 + 1: 4744 + 2: 4744 + 3: 4744 + 3.1: 5056 + 3.3: 5056 + 4: 4744 + 5: 4744 + 6: 4744 + 7: 4744 + 8: 4744 + 9: 4744 _ZN9oceanbase5share17ObLSRestoreStatusaSERKS1_:4800 + 18: 4653 + 4: _ZN9oceanbase6common13ObSEArrayImplINS_5share19ObLSReplicaLocationELl3ENS0_19ModulePageAllocatorELb0EE5reuseEv:136110 + 4.1: 4532 + 4.3: 2 + 5: 2 + 8: 4532 + 9: 4532 + 5: _ZNK9oceanbase6common12ObIArrayWrapINS_5share19ObLSReplicaLocationEE5countEv:22660 + 0: 4532 + 6: _ZN9oceanbase6common13ObSEArrayImplINS_5share19ObLSReplicaLocationELl3ENS0_19ModulePageAllocatorELb0EE7reserveEl:100892 + 2: 4532 + 3: 4532 + 5: 2 + 6: 2 + 7: 2 + 7.3: 2 + 9: 2 + 10: 2 + 11: 2 + 12: 2 + 13: 2 + 15: 2 + 16: 2 + 23: 2 + 24.1: 2 + 27: 2 + 8: _ZN9oceanbase6common13ObSEArrayImplINS_5share19ObLSReplicaLocationELl3ENS0_19ModulePageAllocatorELb0EE16internal_malloc_El:186 + 2: 2 + 7: 2 + 13: 2 + 13: _ZN9oceanbase6common19ModulePageAllocator5allocEl:112 + 2: 2 + 3: 2 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:30 + 5: 2 + 7: 2 + 8: 2 + 10: _ZN9oceanbase6common9ObClassOpINS_5share19ObLSReplicaLocationELb0EE12array_expandEPKS3_PS3_l:530 + 4.1: 2 + 4.3: 2 + 18.1: 2 + 19: 2 + 5: _ZN9oceanbase6common16construct_assignINS_5share19ObLSReplicaLocationEEEiRT_RKS4_:320 + 2: _ZN9oceanbase6common21construct_assign_wrapINS_5share19ObLSReplicaLocationEEEiRT_RKS4_NS0_8BoolTypeILb1EEE:320 + 2: _ZN9oceanbase5share19ObLSReplicaLocationC2Ev:136 + 3: 2 + 4: 2 + 7: 2 + 1: _ZN9oceanbase6common6ObAddrC2Ev:64 + 1: 2 + 5: _ZN9oceanbase6common17ObReplicaPropertyC2Ev:16 + 0: 2 + 6: _ZN9oceanbase5share17ObLSRestoreStatusC2Ev:16 + 0: 2 + 3: _ZN9oceanbase5share19ObLSReplicaLocation6assignERKS1_:176 + 3: 2 + 5: 2 + 6: 2 + 7: 2 + 8: 2 + 9: 2 + 4: _ZN9oceanbase6common6ObAddraSERKS1_:46 + 1: 2 + 2: 2 + 3: 2 + 8: _ZNKSt9type_info9hash_codeEv:143232 + 3.2: 2 + 3.4: 4532 + 3.5: 4759 _ZSt11_Hash_bytesPKvmm:5177 + 3: _ZNKSt9type_info4nameEv:67980 + 1: 4532 + 8.1: _ZNKSt9type_info9hash_codeEv:86632 + 3.2: 2 + 3.5: 4812 _ZSt11_Hash_bytesPKvmm:4980 + 31.1: _ZN9oceanbase5share20ObQSyncLockReadGuardD2Ev:51263 + 1: 4653 _ZN9oceanbase5share11ObQSyncLock8rdunlockEv:4698 + 1.1: 2 +_ZN9oceanbase3sql12ObSortOpImpl7add_rowERKNS_6common8ObIArrayIPNS0_6ObExprEEERPKNS0_17ObChunkDatumStore9StoredRowE:5177620:52654 + 3: 52226 + 5: 52226 + 6: 53671 _ZN9oceanbase3sql12ObSortOpImpl14before_add_rowEv:54823 + 7.1: 490 + 8.1: 53671 _ZN9oceanbase3sql17ObChunkDatumStore7add_rowERKNS_6common8ObIArrayIPNS0_6ObExprEEEPNS0_9ObEvalCtxEPPNS1_9StoredRowE:54773 + 9.1: 490 + 10.1: 51058 _ZN9oceanbase3sql12ObSortOpImpl13after_add_rowEPNS0_17ObChunkDatumStore9StoredRowE:51639 + 11.1: 490 + 13: 48732 + 15: 48732 +_ZN9oceanbase8memtable12ObMvccEngine3getERNS0_15ObMvccAccessCtxERKNS_6common11ObQueryFlagEbPKNS0_13ObMemtableKeyEPS8_RNS0_19ObMvccValueIteratorE:5022852:3398 + 6: 3289 + 7: 3289 + 11: 3289 + 12.1: 7 + 14.1: 3289 + 15.1: 7 + 16: 7 + 17.1: 3289 + 20: 1838 + 22.1: 1944 + 22.2: 0 + 23: 0 + 24: 0 + 24.1: 0 + 25.1: 0 + 30: 1890 + 31: 3675 + 36.1: 0 + 39: 0 + 40.1: 7 + 42: 3675 + 17.1: _ZN9oceanbase8memtable13ObQueryEngine3getEPKNS0_13ObMemtableKeyERPNS0_9ObMvccRowEPS2_:3035881 + 2: 3289 + 4: 3289 + 5.1: 7 + 12: 3289 + 14: 7 + 19: 3289 + 21.2: 1931 + 23.1: 0 + 26.1: 1931 + 27: 7 + 28.1: 7 + 34: 0 + 12: _ZNK9oceanbase8memtable13ObQueryEngine15get_table_indexERPNS1_10TableIndexE:92169 + 8.1: 3289 + 9: 3289 + 12.1: 3289 + 14: 7 + 19: _ZNK9oceanbase8memtable13ObMemtableKey10get_rowkeyEv:9867 + 0: 3289 + 21.1: _ZN9oceanbase8memtable8ObMtHash3getEPKNS0_20ObStoreRowkeyWrapperERPNS0_9ObMvccRowERS4_:2669694 + 9: 3289 + 9: _ZNK9oceanbase8memtable8ObMtHash8is_emptyEv:36179 + 2: 3289 + 10: _ZN9oceanbase8memtable8ObMtHash6do_getEPKNS0_20ObStoreRowkeyWrapperERPNS0_9ObMvccRowERS4_:2613781 + 9: 3364 + 20.1: 3720 + 24: 1931 + 5: _ZNK9oceanbase8memtable20ObStoreRowkeyWrapper4hashEv:73723 + 0: _ZNK9oceanbase6common13ObStoreRowkey4hashEv:73723 + 2: 3289 + 3: 3484 + 3: _ZNK9oceanbase6common8ObRowkey4hashEv:19734 + 2: 3289 _ZNK9oceanbase6common8ObRowkey10murmurhashEm:3356 + 8: _ZN9oceanbase8memtable8ObMtHash9GenealogyC2Ev:27872 + 0.2: 3484 + 10: _ZN9oceanbase8memtable8ObMtHash15get_bucket_nodeElmRPNS0_10ObHashNodeERNS1_9GenealogyE:842756 + 14.1: 3364 + 14.3: 3364 + 17: 4400 + 19.1: 4400 + 25: 3468 + 6: _ZN9oceanbase6common9next_pow2El:117740 + 2: 3364 + 16: _ZN9oceanbase8memtable8ObMtHash11get_arr_idxEll:17600 + 3: 4400 + 23: _ZN9oceanbase8memtable9ObMtArray2atElRPNS0_10ObHashNodeE:369865 + 3: 3538 + 4: _ZN9oceanbase8memtable13ObMtArrayBaseILl8064EE2atElRPNS0_10ObHashNodeE:309719 + 5: 0 + 8: 3469 + 5: _ZN9oceanbase8memtable13ObMtArrayBaseILl8064EE8load_dirERPPNS0_10ObHashNodeE:49532 + 3: 3538 + 4: 3538 + 6.1: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 6.1: _ZN9oceanbase8memtable13ObMtArrayBaseILl8064EE8load_segEPPNS0_10ObHashNodeElRS4_:52071 + 3: 3469 + 4: 3469 + 6.1: 1 + 7: 1 + 8: 1 _ZN9oceanbase6common20ObGMemstoreAllocator11AllocHandle5allocEl:1 + 9: 0 + 10: 0 + 11: 0 + 6: _ZN9oceanbase8memtable13ObMtArrayBaseILl2079680EE2atElRPNS0_10ObHashNodeE:0 + 5: 0 + 6.1: 0 + 8: 0 + 5: _ZN9oceanbase8memtable13ObMtArrayBaseILl2079680EE8load_dirERPPNS0_10ObHashNodeE:0 + 3: 0 + 4: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 6.1: _ZN9oceanbase8memtable13ObMtArrayBaseILl2079680EE8load_segEPPNS0_10ObHashNodeElRS4_:0 + 3: 0 + 4: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 25: _ZNK9oceanbase8memtable10ObHashNode16is_bucket_filledEv:13872 + 2: 3468 + 27: _ZN9oceanbase8memtable8ObMtHash9Genealogy13append_parentEPNS0_10ObHashNodeEl:8320 + 3: 130 + 4.1: 0 + 6: 130 + 7: 130 + 9: 130 + 13: _ZN9oceanbase8memtable8ObMtHash11fill_bucketEPNS0_10ObHashNodeERNS1_9GenealogyE:102000 + 4: 3481 + 4.1: 3481 + 5: 127 + 6: 127 _ZN9oceanbase8memtable8ObMtHash9fill_pairEPNS0_10ObHashNodeES3_l:131 + 10: 3431 + 9: _ZN9oceanbase8memtable8ObMtHash9Genealogy9get_youngEv:15454 + 2: 3477 + 14: _ZN9oceanbase8memtable12ObMtHashNodeC2ERKNS0_20ObStoreRowkeyWrapperE:178412 + 0: 3431 + 3.2: 3431 + 0: _ZN9oceanbase8memtable10ObHashNodeC2Ev:34310 + 0: 3431 + 3: _ZNK9oceanbase8memtable20ObStoreRowkeyWrapper4hashEv:44603 + 0: _ZNK9oceanbase6common13ObStoreRowkey4hashEv:44603 + 2: 3431 + 3: 0 + 3: _ZNK9oceanbase6common8ObRowkey4hashEv:0 + 2: 0 + 3.1: _ZN9oceanbase8memtableL9mark_hashEm:13724 + 2: 3431 + 18: _ZN9oceanbase8memtable8ObMtHash21search_sub_range_listEPNS0_10ObHashNodeES3_RS3_S4_Ri:635317 + 7: 3431 + 11.1: 5326 + 11.2: 5496 + 12: 5326 + 12.1: 5496 + 13: 5496 + 13.1: 5496 + 11.1: _ZN9oceanbase8memtable8ObMtHash19not_reach_list_tailEPKNS0_10ObHashNodeE:15978 + 2: 5326 + 12.1: _ZN9oceanbase8memtableL12compare_nodeEPKNS0_10ObHashNodeES3_Ri:459623 + 2: 5326 + 4: 5326 + 5: 5326 + 6: 5326 + 7: 5326 + 8: 1809 + 9.1: 3530 + 10: 1715 + 11.1: 1783 + 13.1: 1892 + 14.1: 7 + 15.1: 1892 + 16: 1892 + 17.1: 7 + 18.1: 7 + 22: 5496 + 11.1: _ZNK9oceanbase8memtable10ObHashNode14is_bucket_nodeEv:16047 + 2: 1783 + 13.1: _ZNK9oceanbase8memtable20ObStoreRowkeyWrapper5equalERKS1_Rb:153496 + 0: 1783 + 0: _ZNK9oceanbase8memtable20ObStoreRowkeyWrapper10get_rowkeyEv:5349 + 0: 1783 + 0.1: _ZNK9oceanbase6common13ObStoreRowkey5equalERKS1_Rb:135666 + 2: 1783 + 3: 1783 + 4: 0 + 5.1: 1892 _ZNK9oceanbase6common8ObRowkey5equalERKS1_Rb:1846 + 6.1: 7 + 10: 7 + 3: _ZNK9oceanbase6common13ObStoreRowkey4hashEv:30311 + 2: 1783 + 3: 0 + 3: _ZNK9oceanbase6common8ObRowkey4hashEv:0 + 2: 0 + 3.1: _ZNK9oceanbase6common13ObStoreRowkey4hashEv:23179 + 2: 1783 + 3: 0 + 3: _ZNK9oceanbase6common8ObRowkey4hashEv:0 + 2: 0 + 30: _ZNK9oceanbase8memtable20ObStoreRowkeyWrapper10get_rowkeyEv:21241 + 0: 1931 + 30.1: _ZN9oceanbase8memtable13ObMemtableKey6encodeEPKNS_6common13ObStoreRowkeyE:5793 + 3: 1931 + 22.1: _ZNK9oceanbase6common11ObQueryFlag10is_prewarmEv:7776 + 0: 1944 + 22.2: _ZN9oceanbase8memtable9ObMvccRow12need_compactEbb:41850 + 3: 1944 + 4.4: 1890 + 5: 1944 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:2014 + 14.1: 1890 + 15: 0 + 24: _ZNK9oceanbase8memtable15ObMvccAccessCtx20get_snapshot_versionEv:0 + 1: 0 + 31: _ZN9oceanbase8memtable19ObMvccValueIterator4initERNS0_15ObMvccAccessCtxEPKNS0_13ObMemtableKeyEPNS0_9ObMvccRowERKNS_6common11ObQueryFlagEb:1325434 + 6: 3730 + 7: 3730 + 8: 3730 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:3771 + 11: 3606 + 12: 3606 + 13: 0 + 14.1: 3606 + 17.1: 1820 + 19: 0 + 20: 0 + 23: 1988 + 24.1: 0 + 35.1: 3766 _ZZN9oceanbase8memtable19ObMvccValueIterator4initERNS0_15ObMvccAccessCtxEPKNS0_13ObMemtableKeyEPNS0_9ObMvccRowERKNS_6common11ObQueryFlagEbENK5$_110clEPKc.0340b0f4925be2641495b31f3f56bf33:3826 + 43: 3675 + 9: _ZN9oceanbase8memtable19ObMvccValueIterator5resetEv:97362 + 2: 3606 + 3: 3606 + 6: 3606 + 10: _ZN9oceanbase6common16ObClockGenerator8getClockEv:75726 + 4: 3606 + 5.1: 0 + 8: 3606 + 6: _ZN9oceanbase6common16ObClockGenerator6get_usEv:0 + 2: 0 + 17.1: _ZNK9oceanbase6common11ObQueryFlag20iter_uncommitted_rowEv:10920 + 0: 1820 + 20: _ZNK9oceanbase8memtable9ObMvccRow13get_list_headEv:0 + 0: 0 + 23: _ZN9oceanbase8memtable19ObMvccValueIterator14lock_for_read_ERKNS_6common11ObQueryFlagE:569249 + 2: 1820 + 5: 1820 + 7: 1820 + 10.1: 1972 + 10.3: 3769 + 10.4: 3769 + 11: 1972 + 12.1: 0 + 17: 1988 + 5: _ZNK9oceanbase8memtable9ObMvccRow13get_list_headEv:7280 + 0: 1820 + 8: _ZNK9oceanbase8memtable19ObMvccValueIterator10lock_beginERl:17212 + 2: 1924 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:1882 + 3.1: 0 + 3: _ZN9oceanbase6common14ObTscTimestamp12get_instanceEv:0 + 2: 0 + 2.1: 0 + 2.3: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common14ObTscTimestampC2Ev:0 + 1: 0 + 11: _ZN9oceanbase8memtable19ObMvccValueIterator20lock_for_read_inner_ERKNS_6common11ObQueryFlagERPNS0_15ObMvccTransNodeE:180745 + 15: 1791 + 20: 1791 + 22: 1791 + 28.1: 1791 + 28.5: 236 + 31: 236 + 32.1: 236 + 34: 236 + 37: 1808 + 37.1: 1808 + 40: 1574 + 42: 1643 + 47.2: 236 + 53: 236 + 53.2: 236 + 58.2: 1 + 59: 1 + 68: 0 + 72.1: 0 + 82: 0 + 83: 0 + 84: 0 + 87: 0 + 87.1: 0 + 88: 0 + 92: 0 + 92.1: 0 + 96: 0 + 101: 0 + 101.1: 0 + 108.1: 0 + 109.1: 0 + 112: 0 + 116: 0 + 118.2: 0 + 118.4: 0 + 118.6: 0 + 118.7: 0 + 17: _ZNK9oceanbase8memtable15ObMvccTransNode9get_tx_idEv:7164 + 0: 1791 + 19: _ZNK9oceanbase8memtable15ObMvccTransNode10get_seq_noEv:21492 + 0: 1791 + 24: _ZNK9oceanbase6common11ObQueryFlag14is_read_latestEv:20034 + 0: 1791 + 30.1: _ZNK9oceanbase8memtable15ObMvccTransNode19is_delayed_cleanoutEv:2124 + 2: 236 + 32: _ZNK9oceanbase11transaction9ObTransIDeqERKS1_:944 + 1: 236 + 34.1: _ZNK9oceanbase11transaction9ObTransIDeqERKS1_:944 + 1: 236 + 37: _ZNK9oceanbase8memtable15ObMvccTransNode12is_committedEv:7232 + 0: 1808 + 47.1: _ZNK9oceanbase8memtable15ObMvccTransNode10is_abortedEv:722 + 0: 236 + 65510.1: 1 + 53.1: _ZNK9oceanbase11transaction9ObTransIDeqERKS1_:944 + 1: 236 + 58.1: _ZNK9oceanbase11transaction9ObTransIDeqERKS1_:4 + 1: 1 + 86: _ZN9oceanbase6common8function24DefaultFunctionAllocator21get_default_allocatorEv:0 + 1: 0 + 1.1: 0 + 1.3: 0 + 86.1: _ZN9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEEC2ERNS0_12ObIAllocatorE:0 + 1: 0 + 87: _ZNK9oceanbase8memtable15ObMvccTransNode19is_delayed_cleanoutEv:0 + 2: 0 + 88.1: _ZN9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEEaSINS2_25ObCleanoutTxNodeOperationELb1EEERS9_OT_:0 + 4.1: _ZN9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEE6assignINS2_25ObCleanoutTxNodeOperationELb1EEEiOT_:0 + 5: _ZN9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEE5resetEv:0 + 1: 0 + 2: 0 + 3: 0 + 4: 0 + 6: 0 + 3: _ZN9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEE13is_local_obj_Ev:0 + 1: 0 + 12.1: _ZN9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEE7DerivedINS2_25ObCleanoutTxNodeOperationEEC2ISB_EEOT_:0 + 0: 0 + 90.1: _ZN9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEEaSINS2_26ObCleanoutNothingOperationELb1EEERS9_OT_:0 + 4.1: _ZN9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEE6assignINS2_26ObCleanoutNothingOperationELb1EEEiOT_:0 + 5: _ZN9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEE5resetEv:0 + 1: 0 + 2: 0 + 3: 0 + 4: 0 + 6: 0 + 3: _ZN9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEE13is_local_obj_Ev:0 + 1: 0 + 12.1: _ZN9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEE7DerivedINS2_26ObCleanoutNothingOperationEEC2ISB_EEOT_:0 + 0: 0 + 92.2: _ZN9oceanbase6common10ObFunctionIFbvEEC2INS_7storage38ObReCheckTxNodeForLockForReadOperationELb1EEEOT_RNS0_12ObIAllocatorE:0 + 2: 0 + 6.1: _ZN9oceanbase6common10ObFunctionIFbvEE6assignINS_7storage38ObReCheckTxNodeForLockForReadOperationELb1EEEiOT_:0 + 12: 0 + 12.1: _ZN9oceanbase6common10ObFunctionIFbvEE7DerivedINS_7storage38ObReCheckTxNodeForLockForReadOperationEEC2IS6_EEOT_:0 + 0: 0 + 96: _ZN9oceanbase11transaction16ObLockForReadArgC2ERNS_8memtable15ObMvccAccessCtxENS0_9ObTransIDElb:0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 16: _ZNK9oceanbase8memtable19ObMvccValueIterator17lock_for_read_endEll:34680 + 2: 0 + 3: 2040 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:2059 + 4.1: 0 + 5.1: 0 + 5.2: 0 + 5.3: 0 + 5.4: 0 + 5.6: 0 + 5.7: 0 + 6: 0 + 7.1: 0 + 7.2: 0 + 7.3: 0 + 7.4: 0 + 7.6: 0 + 7.7: 0 + 9.1: 0 + 9.2: 0 + 9.3: 0 + 9.4: 0 + 9.6: 0 + 9.7: 0 + 4: _ZN9oceanbase6common14ObTscTimestamp12get_instanceEv:0 + 2: 0 + 2.1: 0 + 2.3: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common14ObTscTimestampC2Ev:0 + 1: 0 + 5.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:0 + 2: 0 +_ZN9oceanbase3sql8ObPCVSet19inner_get_cache_objERNS0_14ObILibCacheCtxEPNS0_14ObILibCacheKeyERPNS0_17ObILibCacheObjectE:5021069:4952 + 3: 4927 + 5: 4927 + 7: 4927 + 9: 4927 + 10: 2 + 11: 2 + 12.1: 2 + 16: 4927 + 17: 2 + 24: 2 + 25.1: 4927 _ZN9oceanbase6common16ObClusterVersion12get_instanceEv:5075 + 27.1: 4767 + 29: 2 + 30: 2 + 31.1: 2 + 32.1: 2 + 33: 2 + 36: 4767 + 37.1: 4767 + 37.2: 4767 + 38: 4767 + 39: 2 + 40.1: 2 + 42.1: 4767 + 44.1: 4767 + 52: 4767 + 53: 4767 + 55: 4767 + 56: 4767 + 57.2: 2 + 57.4: 4767 + 58: 4767 + 60: 4767 + 60.2: 5433 + 68.1: 2 + 70.2: 5158 + 71.1: 2 + 72.1: 5255 + 77: 5294 _ZN9oceanbase3sql16ObPlanCacheValue11choose_planERNS0_14ObPlanCacheCtxERKNS_6common8ObIArrayINS0_12PCVSchemaObjEEERPNS0_17ObPlanCacheObjectE:5537 + 77.1: 4081 + 87: 4081 + 88: 4081 + 88.1: 4081 + 90.1: 4081 + 90.2: 4079 + 90.3: 4079 + 91.1: 4079 + 94: 4081 _ZN9oceanbase6common13ObSEArrayImplINS_3sql12PCVSchemaObjELl4ENS0_19ModulePageAllocatorELb0EED2Ev:4132 + 94.2: 2 + 95: 3769 + 96: 3769 + 97: 3769 + 98: 2 + 101: 3769 + 25.2: _ZN9oceanbase6common16ObClusterVersion19get_cluster_versionEv:19068 + 0: 4767 + 42.1: _ZNK9oceanbase3sql18ObBasicSessionInfo21get_use_plan_baselineERb:162078 + 2: 4767 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache36get_optimizer_use_sql_plan_baselinesEv:152544 + 0: 4767 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache36get_optimizer_use_sql_plan_baselinesEb:104874 + 0: 4767 + 48: _ZN9oceanbase6common9ObSEArrayINS_3sql12PCVSchemaObjELl4ENS0_19ModulePageAllocatorELb0EEC2Ev:805623 + 0.1: 4767 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_3sql12PCVSchemaObjELl4ENS0_19ModulePageAllocatorELb0EEC2ElRKS4_:719817 + 2: 4767 + 5: 4767 + 6: 4767 + 8: 4767 + 17.1: 4767 + 2: _ZN9oceanbase6common8ObIArrayINS_3sql12PCVSchemaObjEEC2EPS3_l:85806 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_3sql12PCVSchemaObjEEC2EPS3_l:85806 + 0: 4767 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:271719 + 0: 4767 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:119175 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:119175 + 2: 4767 + 8: 4767 + 52.1: _ZN9oceanbase5share6schema19ObSchemaGetterGuard14set_session_idEm:33369 + 0: 4767 + 53: _ZNK9oceanbase3sql18ObBasicSessionInfo20get_sessid_for_tableEv:162102 + 0: 4767 + 0.2: 4767 + 0.5: 4767 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo15is_obproxy_modeEv:33369 + 0: 4767 + 0.1: _ZNK9oceanbase3sql18ObBasicSessionInfo16get_proxy_sessidEv:24 + 0: 2 + 0.2: _ZNK9oceanbase3sql18ObBasicSessionInfo17is_master_sessionEv:33369 + 0: 4767 + 57: _ZN9oceanbase6common7ObDListINS_3sql16ObPlanCacheValueEE9get_firstEv:100107 + 0: 4767 + 57.8: _ZN9oceanbase6common11ObDLinkBaseINS_3sql16ObPlanCacheValueEE8get_nextEv:8 + 0: 2 + 60: _ZNK9oceanbase3sql18ObBasicSessionInfo15get_database_idEv:66738 + 0: 4767 + 60.1: _ZN9oceanbase3sql16ObPlanCacheValue18get_all_dep_schemaERNS0_14ObPlanCacheCtxEmRlRbRNS_6common8ObIArrayINS0_12PCVSchemaObjEEE:1108167 + 6: 4767 + 8: 5433 + 11.1: 2 + 12.1: 5433 + 14.1: 2 + 15: 2 + 16.1: 2 + 18: 2 + 19: 2 + 21: 2 + 22.1: 3 + 22.3: 3 + 22.4: 3 + 22.6: 3 + 23.2: 2 + 24: 2 + 25.1: 2 + 26: 2 + 27: 2 + 28.1: 2 + 29.1: 2 + 31: 2 + 32.1: 2 + 33: 2 + 34.2: 2 + 36: 2 + 36.1: 2 + 40.1: 2 + 43: 2 + 44: 2 + 45: 2 + 46: 2 + 46.1: 2 + 47.1: 2 + 52.3: 2 + 53: 2 + 55: 2 + 55.1: 2 + 57.1: 2 + 59.1: 2 + 59.2: 2 + 64.1: 2 + 65.1: 2 + 65.2: 2 + 65.3: 2 + 70.1: 2 + 75.1: 2 + 75.2: 4 + 80.1: 2 + 87: 2 + 89.1: 4 + 91.1: 4 + 92: 2 + 94.2: 3 + 96.1: 3 _ZN9oceanbase6common13ObSEArrayImplINS_3sql12PCVSchemaObjELl4ENS0_19ModulePageAllocatorELb0EE9push_backERKS3_:1 + 96.2: 3 + 97.1: 2 + 99: 3 + 103: 2 + 103.1: 3 _ZN9oceanbase3sql12PCVSchemaObjD1Ev:1 + 104: 3 + 8: _ZN9oceanbase3sql16ObPlanCacheValue25need_check_schema_versionERNS0_14ObPlanCacheCtxERlRb:956783 + 5: 4767 + 6: 4767 + 6.1: 4767 _ZNK9oceanbase5share6schema19ObSchemaGetterGuard18get_schema_versionEmRl:4823 + 8.1: 2 + 10: 4713 + 11: 4713 + 11.1: 5433 + 12: 4713 + 14.1: 5433 + 15.1: 0 + 15.2: 2 + 15.4: 2 + 15.5: 0 + 16.1: 2 + 21: 5433 + 6: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:33369 + 0: 4767 + 12.1: _ZNK9oceanbase3sql16ObPlanCacheValue18is_contain_tmp_tblEv:359472 + 4.1: 5109 + 4.2: 9450 + 4.3: 9450 + 4.5: 4713 + 5: 4713 + 5.1: 4713 + 6: 4713 + 6.1: 4713 + 4.2: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql12PCVSchemaObjEE5countEv:42417 + 5: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql12PCVSchemaObjEE2atEl:32991 + 6: 4713 + 13.1: _ZNK9oceanbase3sql16ObPlanCacheValue24is_contain_sys_pl_objectEv:238328 + 4.2: 5405 + 4.3: 5405 + 4.5: 5405 + 5: 5138 + 5.1: 0 + 6: 5138 + 6.1: 5138 + 7: 5138 + 8.1: 0 + 64168: 0 + 4.2: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql12PCVSchemaObjEE5countEv:0 + 0: 0 + 5: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql12PCVSchemaObjEE2atEl:35966 + 6: 5138 + 8.2: _ZN9oceanbase2pl26get_tenant_id_by_object_idEm:134 + 3: 0 + 4: 0 + 4: _ZN9oceanbase6common21is_inner_pl_object_idEm:0 + 3: 0 + 4.2: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:134 + 2: 0 + 2.1: 2 + 2.2: 2 + 15.1: _ZN9oceanbase6common14ObTscTimestamp12get_instanceEv:172 + 2: 0 + 2.1: 2 + 2.3: 2 + 2.6: 2 + 2.2: _ZN9oceanbase6common14ObTscTimestampC2Ev:40 + 1: 2 + 20: _ZN9oceanbase3sql12PCVSchemaObjC2Ev:136 + 2: 2 + 4: 2 + 5: 2 + 7: 2 + 9: 2 + 23: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:180 + 2: 2 + 2.1: 2 + 2.2: 2 + 23.1: _ZNK9oceanbase5share12ObTenantBase2idEv:16 + 0: 2 + 25: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql12PCVSchemaObjEE2atEl:28 + 6: 2 + 34.1: _ZN9oceanbase2pl26get_tenant_id_by_object_idEm:68 + 3: 2 + 4: 2 + 4: _ZN9oceanbase6common21is_inner_pl_object_idEm:24 + 3: 2 + 49: _ZN9oceanbase3sql12PCVSchemaObj5resetEv:218 + 3: 2 + 5: 2 + 6: 2 + 8: 2 + 9: 2 + 9.1: 2 + 10: 2 + 10.1: 2 + 12: 2 + 9.1: _ZN9oceanbase6common8ObString3ptrEv:14 + 0: 2 + 11: _ZN9oceanbase6common8ObString5resetEv:32 + 3: 2 + 52.2: _ZN9oceanbase3lib14is_oracle_modeEv:188 + 2: 2 + 2: _ZN9oceanbase3lib15get_compat_modeEv:182 + 2: 2 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:150 + 2: 2 + 2.1: 2 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:44 + 1: 2 + 90: _ZN9oceanbase3sql12PCVSchemaObj5resetEv:170 + 3: 2 + 5: 2 + 6: 2 + 8: 2 + 9: 2 + 9.1: 2 + 10: 2 + 10.1: 2 + 9.1: _ZN9oceanbase6common8ObString3ptrEv:14 + 0: 2 + 94.1: _ZN9oceanbase3sql12PCVSchemaObj22init_without_copy_nameEPKNS_5share6schema21ObSimpleTableSchemaV2E:524 + 8: 4 _ZNK9oceanbase5share6schema21ObSimpleTableSchemaV213get_tenant_idEv:2 + 9: 4 + 10: 4 _ZNK9oceanbase5share6schema21ObSimpleTableSchemaV212get_table_idEv:2 + 11: 4 _ZNK9oceanbase5share6schema21ObSimpleTableSchemaV218get_schema_versionEv:2 + 12: 4 + 13: 4 _ZNK9oceanbase5share6schema21ObSimpleTableSchemaV214get_table_typeEv:2 + 14: 3 + 16: 3 + 9: _ZNK9oceanbase5share6schema21ObSimpleTableSchemaV215get_database_idEv:28 + 0: 4 + 14: _ZNK9oceanbase5share6schema21ObSimpleTableSchemaV212is_tmp_tableEv:105 + 0: 3 + 100: _ZN9oceanbase3sql12PCVSchemaObj5resetEv:250 + 3: 3 + 5: 3 + 6: 3 + 8: 3 + 9: 3 + 9.1: 2 + 10: 2 + 10.1: 2 + 9.1: _ZN9oceanbase6common8ObString3ptrEv:14 + 0: 2 + 70.1: _ZN9oceanbase3sql16ObPlanCacheValue5matchERNS0_14ObPlanCacheCtxERKNS_6common8ObIArrayINS0_12PCVSchemaObjEEERb:667067 + 4: 5434 + 5: 5434 + 7: 5434 + 8: 5434 + 9: 2 + 10.1: 2 + 11: 2 + 13.1: 5434 _ZN9oceanbase3sql10ObSQLUtils13is_nested_sqlEPNS0_13ObExecContextE:5453 + 18.1: 5263 _ZN9oceanbase3sql10ObSQLUtils16is_batch_executeERNS0_8ObSqlCtxE:5153 + 21.1: 5263 + 23: 0 + 24.1: 5131 + 25: 2 + 26.1: 2 + 26.3: 2 + 26.4: 2 + 26.6: 2 + 27: 2 + 28: 2 + 29.1: 2 + 30.1: 2 + 31: 2 + 32.1: 2 + 33.1: 2 + 33.2: 2 + 35.1: 2 + 36.1: 2 + 36.2: 2 + 37: 2 + 37.1: 2 + 39.1: 2 + 40.1: 2 + 40.2: 2 + 42.1: 2 + 47: 5216 _ZN9oceanbase3sql16ObPlanCacheValue21check_not_param_valueERKNS0_18ObFastParserResultERKNS_6common8ObIArrayINS0_12NotParamInfoEEERb:5472 + 50.1: 2 + 55: 4955 + 55.2: 4955 + 56: 4 _ZN9oceanbase3sql16ObPlanCacheValue16match_dep_schemaERKNS0_14ObPlanCacheCtxERKNS_6common8ObIArrayINS0_12PCVSchemaObjEEERb:1 + 57.1: 2 + 60: 2 + 23: _ZNK9oceanbase6common8ObStringeqERKS1_:30 + 2: 0 + 2: _ZNK9oceanbase6common8ObString7compareERKS1_:30 + 3: 0 + 4: 2 + 5.1: 0 + 7.1: 0 + 7.2: 0 + 65444.1: 2 + 7.1: _ZSt3minIiERKT_S2_S2_:0 + 5: 0 + 28: _ZN9oceanbase6common13ObSEArrayImplINS_3sql14PsNotParamInfoELl4ENS0_19ModulePageAllocatorELb0EEixEl:138 + 2: 2 + 3.1: 2 + 5: 2 + 28.1: _ZNK9oceanbase6common16ObFixedArrayImplIPKNS0_10ObObjParamENS0_12ObIAllocatorEE2atElRS4_:74 + 3: 2 + 6: 2 + 6: _ZN9oceanbase6common11copy_assignIPKNS0_10ObObjParamEEEiRT_RKS5_:16 + 2: _ZN9oceanbase6common16copy_assign_wrapIPKNS0_10ObObjParamEEEiRT_RKS5_NS0_8BoolTypeILb0EEE:16 + 2: 2 + 33.1: _ZN9oceanbase6common13ObSEArrayImplINS_3sql14PsNotParamInfoELl4ENS0_19ModulePageAllocatorELb0EEixEl:154 + 2: 2 + 2.1: 2 + 2.2: 2 + 3.1: 2 + 5: 2 + 36.1: _ZN9oceanbase6common13ObSEArrayImplINS_3sql14PsNotParamInfoELl4ENS0_19ModulePageAllocatorELb0EEixEl:164 + 2: 2 + 2.1: 2 + 2.2: 2 + 3.1: 2 + 5: 2 + 36.3: _ZNK9oceanbase6common5ObObj14is_string_typeEv:94 + 0: _ZNK9oceanbase6common9ObObjMeta14is_string_typeEv:94 + 0: 2 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:26 + 0: 2 + 0.3: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:32 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:32 + 2: 2 + 37.1: _ZN9oceanbase6common13ObSEArrayImplINS_3sql14PsNotParamInfoELl4ENS0_19ModulePageAllocatorELb0EEixEl:164 + 2: 2 + 2.1: 2 + 2.2: 2 + 3.1: 2 + 5: 2 + 37.2: _ZNK9oceanbase6common5ObObj18get_collation_typeEv:16 + 0: _ZNK9oceanbase6common9ObObjMeta18get_collation_typeEv:16 + 0: 2 + 88: _ZN9oceanbase3sql16ObPlanCacheValue26lift_tenant_schema_versionEl:53077 + 3: 4081 + 6: 2 + 90.2: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:28553 + 2: 4079 + 91.1: _ZN9oceanbase3sql17ObPhysicalPlanCtx25set_tenant_schema_versionEl:28553 + 0: 4079 +_ZN9oceanbase3sql13ObTableScanOp23add_ddl_column_checksumEv:5019150:101441 + 1: 100383 + 2: 100383 + 3: 100383 + 4: 0 + 5: 0 + 6: 0 + 7.1: 0 + 11.1: 0 + 11.2: 0 + 11.3: 0 + 11.5: 0 + 12: 0 + 13: 0 + 14: 0 + 15: 0 + 16.1: 0 + 17.1: 0 + 18.1: 0 + 19.1: 0 + 25.1: 0 + 25.2: 0 + 26.1: 0 + 28: 0 + 39: 100383 + 4: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:0 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:0 + 0: 0 + 4.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE5countEv:0 + 0: 0 + 10: _ZN9oceanbase6common7ObDatumC2Ev:0 + 0: _ZN9oceanbase6common10ObDatumPtrC2Ev:0 + 0: 0 + 0.1: _ZN9oceanbase6common11ObDatumDescC2Ev:0 + 0: 0 + 11.2: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:0 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:0 + 0: 0 + 13.1: _ZNK9oceanbase6common16ObFixedArrayImplIPNS_3sql6ObExprENS0_12ObIAllocatorEEixEl:0 + 0: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:0 + 6: 0 + 17.1: _ZNK9oceanbase3sql6ObExpr4evalERNS0_9ObEvalCtxERPNS_6common7ObDatumE:0 + 4: 0 + 6: 0 + 7: 0 + 9: 0 + 10: 0 + 10.1: 0 + 11: 0 + 13: 0 + 15.1: 0 + 15.2: 0 + 17: 0 + 18: 0 + 20: 0 + 21: 0 + 22: 0 + 24: 0 + 9: _ZNK9oceanbase3sql6ObExpr15is_batch_resultEv:0 + 0: 0 + 11: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 24: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:0 + 0: 0 + 25.1: _ZN9oceanbase6common11ObArrayImplIbNS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIbEENS0_22NotImplementItemEncodeIbEEEixEl:0 + 0: _ZN9oceanbase6common12ObIArrayWrapIbE2atEl:0 + 6: 0 + 28: _ZNK9oceanbase6common7ObDatum8checksumEl:0 + 3: 0 + 4: 0 + 2: _ZN9oceanbase6common14ob_crc64_sse42EmPKvl:0 + 2: 0 + 4: _ZN9oceanbase6common14ob_crc64_sse42EmPKvl:0 + 2: 0 + 28.1: _ZN9oceanbase6common16ObFixedArrayImplImNS0_12ObIAllocatorEEixEl:0 + 0: _ZN9oceanbase6common12ObIArrayWrapImE2atEl:0 + 6: 0 + 37: _ZN9oceanbase3sql10ObOperator20clear_evaluated_flagEv:0 + 2.1: 0 + 2.3: 0 + 3: 0 + 2.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql10ObEvalInfoEE5countEv:0 + 0: 0 + 3: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql10ObEvalInfoEE2atEl:0 + 6: 0 + 3.1: _ZN9oceanbase3sql10ObEvalInfo20clear_evaluated_flagEv:0 + 2: 0 + 4: 0 +_ZN9oceanbase7storage19ObTableScanIterator37check_txn_status_if_read_uncommitted_Ev:4910415:111479 + 1: 107780 + 2: 107780 + 5: 107780 + 5.1: 107779 + 6: 1039 + 7: 0 + 8.1: 0 + 11: 112405 + 5: _ZNK9oceanbase11transaction9ObTransID8is_validEv:862240 + 0: 107780 + 6: _ZNK9oceanbase8memtable13ObMemtableCtx19is_trans_rollbackedEv:6234 + 2: _ZNK9oceanbase8memtable13ObMemtableCtx16get_trans_statusEv:6234 + 2: 1039 + 7: _ZNK9oceanbase8memtable13ObMemtableCtx16get_trans_statusEv:0 + 2: 0 +_ZN9oceanbase3sql17ObSqlTransControl10start_stmtERNS0_13ObExecContextE:4891238:4921 + 1: 4676 + 2: 4676 + 3: 4676 + 4: 4676 + 5: 4676 + 7: 4676 + 8: 4676 + 9.1: 4676 _ZN9oceanbase11transaction14ObTxExecResult5resetEv:4712 + 10.2: 4486 + 10.4: 4486 _ZN9oceanbase3sqlL14get_tx_serviceEPNS0_18ObBasicSessionInfoERPNS_11transaction14ObTransServiceE.2477d7488918a1107364fd115ff965f5:4487 + 10.6: 40 + 11.1: 40 + 11.2: 4263 + 11.4: 40 + 12.1: 40 + 12.2: 4761 + 12.4: 40 + 13.1: 40 + 13.2: 5038 + 13.4: 40 + 13.11: 4761 _ZN9oceanbase11transaction14ObTransService19sql_stmt_start_hookERKNS0_11ObXATransIDERNS0_8ObTxDescE:4748 + 14: 40 + 14.1: 4980 + 15: 40 + 15.1: 4980 + 15.2: 5038 _ZN9oceanbase11transaction11ObTxELRUtil28check_and_update_tx_elr_infoERNS0_8ObTxDescEb:5115 + 16: 5038 + 18.1: 49 + 20: 4980 + 21: 4980 + 22: 4980 + 23: 4993 + 24.2: 1117 + 24.4: 40 + 27.1: 3870 + 27.2: 5160 + 27.4: 40 + 29: 5160 + 29.1: 5160 _ZN9oceanbase3sql16ObSQLSessionInfo20get_raw_audit_recordEv:5254 + 29.2: 5145 + 32: 5145 + 33: 5255 _ZN9oceanbase3sql16ObSQLSessionInfo20get_raw_audit_recordEv:5453 + 36: 5255 + 37: 5255 + 38: 5255 + 39: 5255 _ZNK9oceanbase11transaction16ObTxReadSnapshot15get_source_nameEv:5287 + 41: 4690 + 41.1: 4690 + 42.2: 4809 _ZN9oceanbase3sql18ObBasicSessionInfo14set_start_stmtEv:4774 + 42.4: 30 + 49: 30 + 51: 30 + 53: 30 + 54: 30 + 55: 30 + 56: 30 + 57: 30 + 58: 30 + 59: 30 + 61: 30 + 62.1: 30 + 78: 4809 + 3: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:32732 + 2: 4676 + 4: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:32732 + 2: 4676 + 5: _ZNK9oceanbase3sql17ObPhysicalPlanCtx12get_phy_planEv:32732 + 2: 4676 + 8: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:32732 + 0: 4676 + 9: _ZN9oceanbase3sql18ObBasicSessionInfo16get_trans_resultEv:32732 + 0: 4676 + 11.2: _ZN9oceanbase3sql17ObSqlTransControl19acquire_tx_if_need_EPNS_11transaction14ObTransServiceERNS0_16ObSQLSessionInfoE:91873 + 2: 4263 + 3: 4263 + 4.2: 41 + 4.4: 40 + 4.11: 42 _ZN9oceanbase11transaction14ObTransService10acquire_txERPNS0_8ObTxDescEj:2 + 6: 40 + 3: _ZN9oceanbase3sql18ObBasicSessionInfo11get_tx_descEv:294 + 4.10: _ZNK9oceanbase3sql18ObBasicSessionInfo10get_sessidEv:252 + 0: 42 + 12.2: _ZN9oceanbase3sql17ObSqlTransControl18stmt_sanity_check_EPNS0_16ObSQLSessionInfoEPKNS0_14ObPhysicalPlanEPNS0_17ObPhysicalPlanCtxE:854180 + 4: 4262 + 5: 4262 + 6: 4262 + 6.2: 30 + 6.3: 30 + 7: 4262 + 9: 4285 + 9.1: 4285 + 14.1: 4637 + 16: 4636 + 17: 4636 + 18: 4636 + 20: 16 + 21: 49 + 22.1: 49 + 24.1: 49 + 24.11: 40 + 24.12: 40 + 24.13: 40 + 24.14: 49 + 24.15: 49 + 24.16: 49 + 32: 4827 + 32.1: 4828 + 34: 4827 + 35: 4827 + 36: 49 + 37.1: 49 + 39.1: 49 + 39.11: 40 + 39.14: 49 + 42: 4760 + 43: 4760 + 5: _ZNK9oceanbase3sql17ObPhysicalPlanCtx21get_consistency_levelEv:17048 + 2: 4262 + 7.1: _ZNK9oceanbase3sql14ObPhysicalPlan14has_for_updateEv:32780 + 0: 3278 + 10: _ZN9oceanbase3sql17ObPhysicalPlanCtx21set_consistency_levelENS_6common18ObConsistencyLevelE:390 + 2: 30 + 14.1: _ZNK9oceanbase3sql18ObBasicSessionInfo17is_in_transactionEv:88103 + 0: 4637 + 0.1: _ZNK9oceanbase11transaction8ObTxDesc8is_in_txEv:32459 + 0: 4637 + 15: _ZNK9oceanbase3sql17ObPhysicalPlanCtx21get_consistency_levelEv:18544 + 2: 4636 + 16: _ZNK9oceanbase3sql18ObBasicSessionInfo26get_last_consistency_levelEv:27816 + 0: 4636 + 24.1: _ZN9oceanbase3lib14is_oracle_modeEv:3604 + 2: _ZN9oceanbase3lib15get_compat_modeEv:3604 + 2: 49 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:2722 + 2: 49 + 2.1: 30 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:660 + 1: 30 + 26: _ZN9oceanbase3sql17ObPhysicalPlanCtx21set_consistency_levelENS_6common18ObConsistencyLevelE:64 + 2: 16 + 32.1: _ZNK9oceanbase3sql18ObBasicSessionInfo17is_in_transactionEv:91720 + 0: 4827 + 0.1: _ZNK9oceanbase11transaction8ObTxDesc8is_in_txEv:33796 + 0: 4828 + 33.1: _ZNK9oceanbase11transaction8ObTxDesc19get_isolation_levelEv:28962 + 0: 4827 + 34: _ZNK9oceanbase3sql17ObPhysicalPlanCtx21get_consistency_levelEv:19308 + 2: 4827 + 39.1: _ZN9oceanbase3lib14is_oracle_modeEv:3604 + 2: _ZN9oceanbase3lib15get_compat_modeEv:3604 + 2: 49 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:2722 + 2: 49 + 2.1: 30 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:660 + 1: 30 + 43: _ZNK9oceanbase3sql17ObPhysicalPlanCtx21get_consistency_levelEv:19044 + 2: 4761 + 43.1: _ZN9oceanbase3sql18ObBasicSessionInfo26set_last_consistency_levelENS_6common18ObConsistencyLevelE:38088 + 0: 4761 + 13.2: _ZNK9oceanbase3sql18ObBasicSessionInfo7get_xidEv:33327 + 0: 4761 + 15.1: _ZN9oceanbase11transaction14ObTransService15get_tx_elr_utilEv:35266 + 0: 5038 + 17: _ZNK9oceanbase3sql16ObSQLSessionInfo22get_early_lock_releaseEv:35266 + 0: 5038 + 20: _ZNK9oceanbase3sql18ObBasicSessionInfo10get_sessidEv:34860 + 0: 4980 + 22.1: _ZNK9oceanbase3sql14ObPhysicalPlan14has_for_updateEv:39010 + 0: 3901 + 24.2: _ZN9oceanbase3sql17ObSqlTransControl21stmt_setup_savepoint_EPNS0_16ObSQLSessionInfoERNS0_8ObDASCtxEPNS0_17ObPhysicalPlanCtxEPNS_11transaction14ObTransServiceE:255640 + 5: 1117 + 6: 1117 + 7: 1117 + 8.2: 49 + 8.4: 49 + 14: 1083 _ZNK9oceanbase3sql18ObBasicSessionInfo16get_tx_read_onlyEv:1046 + 15: 1047 _ZNK9oceanbase3sql18ObBasicSessionInfo16get_tx_isolationEv:1047 + 16: 1047 + 17: 1047 + 18: 1047 + 20: 1047 + 21: 1047 + 22.1: 1047 + 22.2: 1047 _ZN9oceanbase11transaction14ObTransService25create_implicit_savepointERNS0_8ObTxDescERKNS0_9ObTxParamERlb:1025 + 22.4: 30 + 23: 30 + 23.1: 992 + 7: _ZNK9oceanbase3sql18ObBasicSessionInfo17is_in_transactionEv:13404 + 0: 1117 + 0.1: _ZNK9oceanbase11transaction8ObTxDesc8is_in_txEv:7819 + 0: 1117 + 8.2: _ZN9oceanbase3sql17ObSqlTransControl19get_org_cluster_id_EPNS0_16ObSQLSessionInfoERl:5879 + 2: 48 + 4.1: 48 + 6: 48 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:2 + 12: 48 + 13: 49 + 14.1: 49 + 18: 49 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo21get_ob_org_cluster_idERl:1920 + 2: 48 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache21get_ob_org_cluster_idEv:1584 + 0: 48 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache21get_ob_org_cluster_idEb:1104 + 0: 48 + 11: _ZNK9oceanbase3sql18ObBasicSessionInfo14get_tx_timeoutERl:41154 + 2: 1083 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache18get_ob_trx_timeoutEv:37905 + 0: 1083 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache18get_ob_trx_timeoutEb:27075 + 0: 1083 + 18: _ZNK9oceanbase3sql18ObBasicSessionInfo20get_trx_lock_timeoutEv:35598 + 2: 1047 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache23get_ob_trx_lock_timeoutEv:32457 + 0: 1047 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache23get_ob_trx_lock_timeoutEb:18846 + 0: 1047 + 23.1: _ZN9oceanbase3sql8ObDASCtx13set_savepointEl:9920 + 0: 992 + 27.2: _ZN9oceanbase3sql17ObSqlTransControl20stmt_setup_snapshot_EPNS0_16ObSQLSessionInfoERNS0_8ObDASCtxEPKNS0_14ObPhysicalPlanEPKNS0_17ObPhysicalPlanCtxEPNS_11transaction14ObTransServiceE:908817 + 6: 4399 + 9: 4399 + 10.1: 76 + 11.1: 4399 + 12: 68 + 13: 68 + 14.1: 30 + 16: 68 + 20.2: 299 + 21: 4399 + 21.1: 307 _ZNK9oceanbase3sql18ObBasicSessionInfo16get_tx_isolationEv:242 + 22: 307 + 22.1: 307 _ZNK9oceanbase3sql18ObBasicSessionInfo16get_tx_isolationEv:238 + 25: 4174 + 29: 4174 + 29.2: 4714 + 30: 4714 + 30.1: 4714 _ZN9oceanbase3sql8ObDASCtx13has_same_lsidEPNS_5share6ObLSIDE:4655 + 31: 4444 + 31.2: 4444 + 32: 4425 + 32.1: 4639 _ZN9oceanbase11transaction14ObTransService20get_ls_read_snapshotERNS0_8ObTxDescENS0_18ObTxIsolationLevelERKNS_5share6ObLSIDElRNS0_16ObTxReadSnapshotE:4910 + 33: 4425 _ZNK9oceanbase3sql18ObBasicSessionInfo16get_tx_isolationEv:4642 + 38: 64 + 38.1: 64 + 39: 64 + 43: 4844 + 44.1: 76 + 47: 5160 + 7: _ZNK9oceanbase3sql17ObPhysicalPlanCtx21get_consistency_levelEv:13197 + 2: 4399 + 8: _ZN9oceanbase3sql8ObDASCtx12get_snapshotEv:35192 + 0: 4399 + 9: _ZN9oceanbase3sql18ObBasicSessionInfo25get_read_snapshot_versionEv:30793 + 0: 4399 + 20.1: _ZNK9oceanbase3sql14ObPhysicalPlan15is_plain_insertEv:35192 + 0: 4399 + 23: _ZN9oceanbase11transaction16ObTxReadSnapshot14init_none_readEv:6858 + 0: 299 + 26: _ZN9oceanbase3sql17ObSqlTransControl18get_stmt_expire_tsEPKNS0_17ObPhysicalPlanCtxERKNS0_16ObSQLSessionInfoE:118402 + 5.1: 4174 + 7: _ZNK9oceanbase3sql17ObPhysicalPlanCtx27get_trans_timeout_timestampEv:45914 + 2: 4174 + 11: _ZNK9oceanbase3sql18ObBasicSessionInfo17get_query_timeoutERl:1080 + 2: 30 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache20get_ob_query_timeoutEv:660 + 0: 30 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache20get_ob_query_timeoutEb:360 + 0: 30 + 15: _ZNK9oceanbase3sql18ObBasicSessionInfo20get_query_start_timeEv:450 + 0: 30 + 27: _ZN9oceanbase5share6ObLSIDC2Ev:33392 + 0: 4174 + 28: _ZNK9oceanbase3sql14ObPhysicalPlan13is_local_planEv:33392 + 0: 4174 + 29.1: _ZNK9oceanbase3sql14ObPhysicalPlan17get_location_typeEv:68079 + 2: 4174 + 3: 4720 _ZN9oceanbase6common16ObClusterVersion12get_instanceEv:4228 + 6: 61 + 3.2: _ZN9oceanbase6common16ObClusterVersion19get_cluster_versionEv:28320 + 0: 4720 + 31.1: _ZNK9oceanbase11transaction8ObTxDesc10is_can_elrEv:39996 + 0: 4444 + 29: _ZNK9oceanbase3sql18ObBasicSessionInfo9get_tx_idEv:118680 + 0: 5160 + 0.1: 5160 + 34: _ZN9oceanbase3sql8ObDASCtx12get_snapshotEv:42040 + 0: 5255 + 37: _ZNK9oceanbase11transaction9ObTransID6get_idEv:42040 + 0: 5255 + 41.1: _ZN9oceanbase3sql18ObBasicSessionInfo14has_start_stmtEv:37520 + 0: 4690 + 53: _ZNK9oceanbase3sql18ObBasicSessionInfo14get_autocommitERb:1080 + 2: 30 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache14get_autocommitEv:930 + 0: 30 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache14get_autocommitEb:690 + 0: 30 + 54: _ZNK9oceanbase3sql14ObPhysicalPlan17get_location_typeEv:1260 + 2: 30 + 3: 30 + 6: 30 + 3.2: _ZN9oceanbase6common16ObClusterVersion19get_cluster_versionEv:180 + 0: 30 + 55: _ZNK9oceanbase3sql17ObPlanCacheObject13get_stmt_typeEv:300 + 0: 30 + 56: _ZNK9oceanbase3sql14ObPhysicalPlan14has_for_updateEv:300 + 0: 30 + 57: _ZNK9oceanbase3sql14ObPhysicalPlan7use_dasEv:360 + 0: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql15ObTableLocationEE5emptyEv:360 + 0: 30 + 58: _ZN9oceanbase3sql18ObBasicSessionInfo16get_trans_resultEv:330 + 0: 30 + 59: _ZNK9oceanbase3sql18ObBasicSessionInfo20get_query_start_timeEv:210 + 0: 30 + 60: _ZN9oceanbase3sql8ObDASCtx12get_snapshotEv:330 + 0: 30 + 61: _ZNK9oceanbase3sql8ObDASCtx13get_savepointEv:240 + 0: 30 +_ZN9oceanbase6common16ObPriorityQueue2ILi1ELi2ELi3EE4pushEPNS0_6ObLinkEi:4838349:4404 + 1: 4228 + 3: 4228 + 5.1: 4228 + 5.2: 4228 + 7.1: 23 + 11: 4228 + 12: 23 + 13.1: 4228 + 14: 23 + 21: 23 + 23: 5245 + 8.1: _ZN9oceanbase6common11ObLinkQueue4pushEPNS0_6ObLinkE:236768 + 6: 4228 + 7: _ZN9oceanbase6common11ObLinkQueue3idxEl:25368 + 0: 4228 + 8.1: _ZN9oceanbase6common13ObSpLinkQueue4pushEPNS0_6ObLinkE:105700 + 7: 4228 + 8: 4228 + 9: 4228 + 16: _ZN9oceanbase6common9SCondTempILi3EE6signalEji:4081992 + 1.1: 5184 + 4: 5184 + 8.1: 5181 + 8.3: 343 + 2: _ZN9oceanbase6common16SCondSimpleIdGen3getEv:132126 + 0: _ZN9oceanbase6common7icpu_idEv:132126 + 2: _ZN9oceanbase6common12sched_getcpuEv:132126 + 0: 4228 + 0: _ZN9oceanbase6common8get_itidEv:119442 + 4: 4228 + 5: 23 + 6: 23 + 8: 23 + 2.1: _ZN9oceanbase6common10SimpleCond6signalEj:176571 + 2: 4228 + 3: 4228 + 4: 157 _ZN9oceanbase3lib7ObFutex4wakeEl:134 + 5: 1187 + 5: _ZN9oceanbase6common12SCondCounter3addEj:239039 + 0: 5173 + 0: _ZN9oceanbase6common7icpu_idEv:161444 + 2: _ZN9oceanbase6common12sched_getcpuEv:161444 + 0: 5173 + 0: _ZN9oceanbase6common8get_itidEv:145925 + 4: 5173 + 5: 23 + 6: 23 + 8: 23 + 6: _ZN9oceanbase6common14SCondReadyFlag9set_readyEv:56763 + 0: 5173 + 0.1: 372 + 8.2: _ZN9oceanbase6common14SCondReadyFlag4lockEv:49126 + 2: 5469 + 2.1: 343 + 9: _ZN9oceanbase6common9SCondTempILi3EE9do_wakeupEv:2944827 + 5.1: 260 + 5.3: 958 + 5.5: 958 + 6.1: 45696 + 6.3: 45696 + 7: 45696 + 3: _ZN9oceanbase6common12SCondCounter5fetchEv:1196164 + 2.1: 18052 + 3: 18052 + 5: 260 + 65504: 0 + 7: _ZN9oceanbase6common10SimpleCond6signalEj:644787 + 2: 44416 + 3: 44416 + 4: 459 _ZN9oceanbase3lib7ObFutex4wakeEl:450 + 10: _ZN9oceanbase6common14SCondReadyFlag6unlockEv:2106 + 0: 351 + 13: _ZN9oceanbase6common9SCondTempILi3EE9do_wakeupEv:267329 + 5.1: 42 + 5.3: 122 + 5.5: 122 + 6.1: 4319 + 6.3: 4319 + 7: 4319 + 3: _ZN9oceanbase6common12SCondCounter5fetchEv:115022 + 2.1: 1756 + 3: 1756 + 5: 42 + 7: _ZN9oceanbase6common10SimpleCond6signalEj:50884 + 2: 4170 + 3: 4170 + 4: 80 _ZN9oceanbase3lib7ObFutex4wakeEl:57 +_ZN9oceanbase3sql16ObPlanCacheValue11choose_planERNS0_14ObPlanCacheCtxERKNS_6common8ObIArrayINS0_12PCVSchemaObjEEERPNS0_17ObPlanCacheObjectE:4783865:5537 + 3: 4697 + 4: 4697 + 5: 4697 + 6: 4697 + 9: 4697 + 15: 4697 + 16: 4736 + 17: 4697 + 20: 4697 + 22: 4697 + 23: 0 + 24.1: 0 + 25.1: 4697 + 26.1: 4697 + 28.1: 4736 _ZNK9oceanbase3sql18ObBasicSessionInfo25get_capture_plan_baselineERb:4818 + 29.1: 0 + 30.1: 4736 + 31: 0 + 34.1: 0 + 37: 4736 + 39.1: 4736 + 40: 0 + 41.1: 0 + 42.1: 4736 _ZN9oceanbase3sql16ObPlanCacheValue27check_value_version_for_getEPNS_5share6schema19ObSchemaGetterGuardEbRKNS_6common8ObIArrayINS0_12PCVSchemaObjEEEmRb:4855 + 47.1: 0 + 48.1: 4623 + 49: 0 + 52: 0 + 55: 4623 + 57: 4877 + 58: 4802 _ZN9oceanbase3sql16ObPlanCacheValue15resolver_paramsERNS0_14ObPlanCacheCtxENS0_4stmt8StmtTypeERKNS_6common8ObIArrayINS6_13ObCharsetTypeEEERKNS6_8ObBitSetILl256ENS6_19ModulePageAllocatorELb0EEESG_SG_RNS7_IPNS0_9ObPCParamEEEPNS6_9Ob2DArrayINS6_10ObObjParamELi2079744ENS6_18ObWrapperAllocatorELb0ENS6_9ObSEArrayIPSM_Ll1ESN_Lb0EEEEE:4868 + 66.1: 0 + 68.1: 20 + 70.1: 20 + 73: 0 + 74: 4718 + 75: 4718 + 77: 4718 _ZN9oceanbase3sql17ObPhysicalPlanCtx22init_datum_param_storeEv:4797 + 78.1: 0 + 82: 0 + 84.1: 4489 + 86.1: 0 + 93: 4489 + 97.1: 0 + 97.2: 4489 + 98: 4489 + 99: 4489 + 100: 4522 + 101.1: 0 + 102.1: 4522 + 103.1: 0 + 105: 4522 + 107: 0 + 109.1: 0 + 115: 0 + 115.1: 0 + 116: 0 + 116.1: 0 + 117: 0 + 117.1: 0 + 118: 0 + 119: 0 + 120: 0 + 121.1: 0 + 123: 0 + 123.1: 0 + 123.3: 0 + 123.5: 0 + 124: 0 + 125: 0 + 125.1: 0 + 133: 4157 + 133.1: 0 + 137: 4157 + 138: 4157 + 139: 4157 + 141: 4157 + 16: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql12PCVSchemaObjEE5countEv:18788 + 0: 4697 + 22: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:32879 + 2: 4697 + 25.1: _ZN9oceanbase3sql18ObBasicSessionInfo13set_stmt_typeENS0_4stmt8StmtTypeE:32879 + 0: 4697 + 26.1: _ZNK9oceanbase3sql18ObBasicSessionInfo21get_use_plan_baselineERb:164395 + 2: 4697 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache36get_optimizer_use_sql_plan_baselinesEv:155001 + 0: 4697 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache36get_optimizer_use_sql_plan_baselinesEb:103334 + 0: 4697 + 39.1: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:33152 + 0: 4736 + 57: _ZNK9oceanbase3sql15ObMultiStmtItem21is_batched_multi_stmtEv:47500 + 3: 4623 + 4: 0 + 6: 4877 + 74: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:33026 + 2: 4718 + 76.1: _ZNK9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE5countEv:33026 + 0: 4718 + 76.2: _ZN9oceanbase3sql17ObPhysicalPlanCtx22set_original_param_cntEl:33026 + 0: 4718 + 84.1: _ZNK9oceanbase3sql16ObPlanCacheValue23get_outline_param_indexERNS0_13ObExecContextERl:197516 + 2: 4489 + 6: 4489 + 7.1: 4489 + 7.3: 4489 + 7.5: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 12.1: 0 + 13.1: 0 + 13.3: 0 + 14.1: 0 + 15.1: 0 + 15.2: 0 + 9.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_5share6schema20ObMaxConcurrentParamEE2atEl:0 + 6: 0 + 13.1: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:0 + 2: 0 + 13.2: _ZNK9oceanbase3sql17ObPhysicalPlanCtx15get_param_storeEv:0 + 0: 0 + 94: _ZNK9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE5countEv:31423 + 0: 4489 + 97: _ZN9oceanbase6common7ObDListINS_3sql9ObPlanSetEE9get_firstEv:628460 + 0: 4489 + 97.6: _ZN9oceanbase6common11ObDLinkBaseINS_3sql9ObPlanSetEE8get_nextEv:0 + 0: 0 + 100: _ZN9oceanbase3sql16ObPlanCacheValue21match_all_params_infoEPNS0_9ObPlanSetERNS0_14ObPlanCacheCtxElRb:282936 + 5: 4489 + 6: 4489 + 8: 4673 + 9: 9 + 13: 9 + 14: 9 + 15: 0 + 16.1: 0 + 18: 9 + 20.1: 9 + 20.3: 9 + 20.5: 9 + 23: 9 + 24: 9 + 24.1: 9 + 25.1: 0 + 26.1: 9 + 26.2: 9 + 27.1: 0 + 28.1: 9 + 28.2: 9 + 29.1: 0 + 30.1: 9 + 30.2: 9 + 31.1: 9 + 32.1: 9 + 33: 9 + 34.1: 9 + 38: 9 + 40: 9 + 41: 9 + 41.1: 9 + 42.1: 0 + 43.2: 9 + 43.3: 9 + 44.1: 0 + 45.1: 9 + 45.2: 9 + 46.1: 0 + 50: 4948 _ZN9oceanbase3sql9ObPlanSet17match_params_infoEPKNS_6common9Ob2DArrayINS2_10ObObjParamELi2079744ENS2_18ObWrapperAllocatorELb0ENS2_9ObSEArrayIPS4_Ll1ES5_Lb0EEEEERNS0_14ObPlanCacheCtxElRb:4919 + 51.1: 29 + 54: 9 + 6: _ZNK9oceanbase3sql15ObMultiStmtItem21is_batched_multi_stmtEv:40513 + 3: 4489 + 4: 9 + 6: 4490 + 7: _ZNK9oceanbase3sql15ObMultiStmtItem20get_batched_stmt_cntEv:18050 + 5.1: 4490 + 6: _ZNK9oceanbase6common12ObIArrayWrapINS0_8ObStringEE5countEv:40 + 0: 10 + 11.1: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:1116 + 4: 9 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:1053 + 2: 9 + 3: 9 + 4: 9 + 5: 9 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:387 + 0: 9 + 12.1: _ZN9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEEC2ERKS3_:1521 + 1: 9 + 5: 9 + 6: 9 + 2: _ZN9oceanbase6common18ObWrapperAllocatorC2ERKS1_:252 + 0: 9 + 3: _ZN9oceanbase6common9ObSEArrayIPNS0_10ObObjParamELl1ENS0_18ObWrapperAllocatorELb0EECI2NS0_13ObSEArrayImplIS3_Ll1ES4_Lb0EEEElRKS4_:1017 + 0: 9 + 0: _ZN9oceanbase6common13ObSEArrayImplIPNS0_10ObObjParamELl1ENS0_18ObWrapperAllocatorELb0EEC2ElRKS4_:954 + 5: 9 + 6: 9 + 8: 9 + 17.1: 9 + 2: _ZN9oceanbase6common8ObIArrayIPNS0_10ObObjParamEEC2EPS3_l:162 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS0_10ObObjParamEEC2EPS3_l:162 + 0: 9 + 7: _ZN9oceanbase6common18ObWrapperAllocatorC2ERKS1_:126 + 0: 9 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:225 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:225 + 2: 9 + 8: 9 + 18: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:63 + 2: 9 + 21: _ZN9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE5reuseEv:207 + 0: _ZN9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE13destruct_objsEv:207 + 11: 9 + 22: _ZN9oceanbase3sql17ObPhysicalPlanCtx23reset_datum_param_storeEv:594 + 5: 9 + 2: _ZN9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE5reuseEv:108 + 0: _ZN9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE13destruct_objsEv:108 + 11: 9 + 3: _ZN9oceanbase6common9Ob2DArrayINS_3sql15ObDatumObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS3_Ll1ES4_Lb0EEEE5reuseEv:108 + 0: _ZN9oceanbase6common9Ob2DArrayINS_3sql15ObDatumObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS3_Ll1ES4_Lb0EEEE13destruct_objsEv:108 + 11: 9 + 4: _ZN9oceanbase6common13ObSEArrayImplIPcLl1ENS0_19ModulePageAllocatorELb1EE5reuseEv:216 + 8: 9 + 9: 9 + 23: _ZNK9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE5countEv:63 + 0: 9 + 23.1: _ZN9oceanbase3sql17ObPhysicalPlanCtx22set_original_param_cntEl:72 + 0: 9 + 26.1: _ZN9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE6assignERKS7_:108 + 0: 9 + 39: _ZN9oceanbase3sql17ObPhysicalPlanCtx23reset_datum_param_storeEv:540 + 5: 9 + 2: _ZN9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE5reuseEv:108 + 0: _ZN9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE13destruct_objsEv:108 + 11: 9 + 3: _ZN9oceanbase6common9Ob2DArrayINS_3sql15ObDatumObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS3_Ll1ES4_Lb0EEEE5reuseEv:108 + 0: _ZN9oceanbase6common9Ob2DArrayINS_3sql15ObDatumObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS3_Ll1ES4_Lb0EEEE13destruct_objsEv:108 + 11: 9 + 4: _ZN9oceanbase6common13ObSEArrayImplIPcLl1ENS0_19ModulePageAllocatorELb1EE5reuseEv:216 + 8: 9 + 9: 9 + 40: _ZNK9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE5countEv:63 + 0: 9 + 40.1: _ZN9oceanbase3sql17ObPhysicalPlanCtx22set_original_param_cntEl:108 + 0: 9 + 43.1: _ZN9oceanbase3sql17ObPhysicalPlanCtx26get_param_store_for_updateEv:45 + 0: 9 + 43.2: _ZN9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE6assignERKS7_:45 + 0: 9 + 49: _ZN9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEED2Ev:1557 + 1: 9 + 2: _ZN9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE7destroyEv:1494 + 4.1: 9 + 4.3: 9 + 9: 9 + 2: _ZN9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE13destruct_objsEv:99 + 11: 9 + 3: _ZNK9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE15get_block_countEv:63 + 0: _ZNK9oceanbase6common12ObIArrayWrapIPNS0_10ObObjParamEE5countEv:63 + 0: 9 + 6: _ZN9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE10free_blockES5_:378 + 0: _ZN9oceanbase6common18ObWrapperAllocator4freeEPv:378 + 2: 9 + 3: 9 + 10: _ZN9oceanbase6common13ObSEArrayImplIPNS0_10ObObjParamELl1ENS0_18ObWrapperAllocatorELb0EE7destroyEv:585 + 9: 9 + 11: 9 + 10: _ZN9oceanbase6common13ObSEArrayImplIPNS0_10ObObjParamELl1ENS0_18ObWrapperAllocatorELb0EE14internal_free_EPv:252 + 4: _ZN9oceanbase6common18ObWrapperAllocator4freeEPv:252 + 2: 9 + 3: 9 + 49.2: _ZN9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEED2Ev:0 + 1: 0 + 2: _ZN9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE7destroyEv:0 + 4.1: 0 + 4.3: 0 + 9: 0 + 2: _ZN9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE13destruct_objsEv:0 + 11: 0 + 3: _ZNK9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE15get_block_countEv:0 + 0: _ZNK9oceanbase6common12ObIArrayWrapIPNS0_10ObObjParamEE5countEv:0 + 0: 0 + 6: _ZN9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE10free_blockES5_:0 + 0: _ZN9oceanbase6common18ObWrapperAllocator4freeEPv:0 + 2: 0 + 3: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplIPNS0_10ObObjParamELl1ENS0_18ObWrapperAllocatorELb0EE7destroyEv:0 + 9: 0 + 11: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplIPNS0_10ObObjParamELl1ENS0_18ObWrapperAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common18ObWrapperAllocator4freeEPv:0 + 2: 0 + 3: 0 + 49.3: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:0 + 0: 0 + 49.4: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:171 + 0: 9 + 105: _ZN9oceanbase3sql12ObSqlPlanSet11select_planERNS0_14ObPlanCacheCtxERPNS0_17ObPlanCacheObjectE:682858 + 2: 4522 + 3: 4522 + 4: 4522 + 5: 0 + 6.1: 0 + 7.1: 4522 + 7.2: 236 + 8: 4283 _ZN9oceanbase3sql12ObSqlPlanSet15get_plan_normalERNS0_14ObPlanCacheCtxERPNS0_14ObPhysicalPlanE:4314 + 12.1: 0 + 16: 236 _ZN9oceanbase3sql12ObSqlPlanSet16get_plan_specialERNS0_14ObPlanCacheCtxERPNS0_14ObPhysicalPlanE:236 + 20.1: 0 + 24: 4085 + 24.1: 4085 + 24.2: 4085 + 28: 0 + 28.1: 0 + 29.1: 0 + 30.1: 0 + 30.2: 0 + 32.1: 0 + 37: 4085 + 38.1: 4085 + 39: 0 + 41.1: 0 + 41.3: 0 + 41.7: 0 + 41.12: 0 + 41.14: 0 + 41.15: 0 + 41.17: 0 + 41.19: 0 + 41.20: 0 + 43.1: 0 + 48: 4085 + 49: 4085 + 7.2: _ZNK9oceanbase3sql9ObPlanSet18is_multi_stmt_planEv:2124 + 0: _ZNK9oceanbase6common12ObIArrayWrapIlE5emptyEv:2124 + 0: 236 + 24.2: _ZNK9oceanbase3sql14ObPhysicalPlan14is_remote_planEv:28595 + 0: 4085 + 26: _ZN9oceanbase6common8ObBitSetILl256ENS0_19ModulePageAllocatorELb1EE5resetEv:0 + 2: _ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb1EE5resetEv:0 + 0: 0 + 27: _ZN9oceanbase6common8ObBitSetILl256ENS0_19ModulePageAllocatorELb1EE5resetEv:0 + 2: _ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb1EE5resetEv:0 + 0: 0 + 28: _ZNK9oceanbase3sql16ObPlanCacheValue19get_not_param_indexEv:0 + 0: 0 + 30.1: _ZNK9oceanbase3sql16ObPlanCacheValue19get_neg_param_indexEv:0 + 0: 0 + 38.1: _ZNK9oceanbase3sql14ObPhysicalPlan25is_limited_concurrent_numEv:32680 + 0: 4085 + 41.1: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 41.13: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 41.18: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 117.1: _ZNK9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE5countEv:0 + 0: 0 + 118: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:0 + 2: 0 + 123: _ZNK9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE5countEv:0 + 0: 0 + 125: _ZN9oceanbase3sql17ObPhysicalPlanCtx21get_datum_param_storeEv:0 +_ZN9oceanbase3sql20ObAggregateProcessor19process_aggr_resultERKNS0_17ObChunkDatumStore9StoredRowEPKNS_6common8ObIArrayIPNS0_6ObExprEEERNS1_8AggrCellERKNS0_10ObAggrInfoE:4749525:27939 + 2: 25662 + 3: 25662 + 4: 25662 + 5: 25662 + 5.1: 25662 + 6: 0 + 15: 119 + 16.1: 119 + 19: 25662 + 22.1: 119 + 22.2: 119 + 22.3: 119 + 35: 119 + 36: 0 + 37.1: 0 + 38.1: 119 + 39: 119 + 39.1: 119 + 41: 119 + 47: 119 + 48: 0 + 49.1: 0 + 50.1: 119 + 51: 119 + 51.1: 119 + 53: 119 + 59: 119 + 60.1: 119 + 65: 24779 + 66: 0 + 67.1: 0 + 68.1: 24779 + 69: 24779 + 70: 27735 + 70.1: 27191 _ZN9oceanbase3sql20ObAggregateProcessor8add_calcERKNS_6common7ObDatumERNS1_8AggrCellERKNS0_10ObAggrInfoE:27185 + 72: 0 + 72.1: 24779 + 75: 119 + 76: 0 + 78: 119 + 101: 119 + 101.1: 119 + 106: 119 + 107: 0 + 108.1: 0 + 110: 0 + 133: 0 + 134: 0 + 135.1: 0 + 136.1: 0 + 136.2: 0 + 137.1: 0 + 138.2: 0 + 139.1: 0 + 147: 119 + 148: 0 + 149.1: 0 + 150.1: 119 + 150.2: 119 + 150.3: 119 + 150.4: 119 + 153: 0 + 154.1: 0 + 157: 119 + 157.2: 119 + 158.1: 0 + 159.1: 119 + 160.1: 119 + 166: 0 + 167.1: 0 + 168: 0 + 168.2: 0 + 168.3: 0 + 168.6: 0 + 170.1: 0 + 170.2: 0 + 170.4: 0 + 170.5: 0 + 170.7: 0 + 179: 0 + 180: 0 + 181.1: 0 + 182.1: 0 + 186: 0 + 187: 0 + 189: 0 + 191: 0 + 199.1: 119 + 203: 28084 + 4: _ZNK9oceanbase3sql10ObAggrInfo13get_expr_typeEv:769860 + 1: 25662 + 1.1: 25662 + 1.4: 25662 + 5.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE5emptyEv:128310 + 0: 25662 + 23.1: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:1071 + 0: 119 + 38.1: _ZNK9oceanbase3sql17ObChunkDatumStore9StoredRow5cellsEv:476 + 1: 119 + 38.2: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:595 + 0: 119 + 39: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell15get_iter_resultEv:476 + 0: 119 + 42: _ZNK9oceanbase3sql10ObAggrInfo9is_numberEv:3213 + 3: 119 + 4: 119 + 3: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:476 + 6: 119 + 50.1: _ZNK9oceanbase3sql17ObChunkDatumStore9StoredRow5cellsEv:476 + 1: 119 + 50.2: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:595 + 0: 119 + 51: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell15get_iter_resultEv:476 + 0: 119 + 54: _ZNK9oceanbase3sql10ObAggrInfo9is_numberEv:3213 + 3: 119 + 4: 119 + 3: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:476 + 6: 119 + 68.2: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:123895 + 0: 24779 + 95: _ZN9oceanbase3sql20ObAggregateProcessor19llc_calc_hash_valueERKNS0_17ObChunkDatumStore9StoredRowERKNS_6common8ObIArrayIPNS0_6ObExprEEERb:0 + 5.2: 0 + 5.3: 0 + 5.5: 0 + 6: 0 + 8: 0 + 11: 0 + 13: 0 + 6: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:0 + 6: 0 + 8: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:0 + 0: 0 + 4749: 0 + 101: _ZNK9oceanbase6common7ObDatum10get_stringEv:1547 + 0: 119 + 0: _ZN9oceanbase6common8ObStringC2ElPKc:357 + 5: 119 + 110.2: _ZN9oceanbase3sql20ObAggregateProcessor7llc_addERNS_6common7ObDatumERKS3_:31773 + 2: 119 + 4: 119 + 5: 119 + 6: 119 + 6.1: 119 + 7: 119 + 7.1: 119 + 8: 0 + 9.1: 0 + 12.1: 238 + 13: 238 + 17: 0 + 3: _ZNK9oceanbase6common7ObDatum10get_stringEv:1547 + 0: 119 + 0: _ZN9oceanbase6common8ObStringC2ElPKc:357 + 5: 119 + 5: _ZNK9oceanbase6common7ObDatum10get_stringEv:1547 + 0: 119 + 0: _ZN9oceanbase6common8ObStringC2ElPKc:357 + 5: 119 + 6: _ZNK9oceanbase6common8ObString6lengthEv:476 + 0: 119 + 13: _ZNK9oceanbase6common8ObStringixEl:2380 + 0: 238 + 4309: 119 + 13.1: _ZSt3maxIhERKT_S2_S2_:1666 + 5: 238 + 14: _ZNK9oceanbase6common8ObStringixEl:1904 + 0: 238 + 133: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell9get_extraEv:0 + 0: 0 + 136.2: _ZN9oceanbase3sql20ObAggregateProcessor22GroupConcatExtraResult7add_rowERKNS0_17ObChunkDatumStore9StoredRowE:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 3: 0 + 138.2: _ZN9oceanbase3sql20ObAggregateProcessor22GroupConcatExtraResult7add_rowERKNS_6common8ObIArrayIPNS0_6ObExprEEERNS0_9ObEvalCtxE:0 + 2: 0 + 2.2: 0 + 3: 0 + 2.1: _ZN9oceanbase3sql12ObSortOpImpl7add_rowERKNS_6common8ObIArrayIPNS0_6ObExprEEE:0 + 2: 0 + 3: 0 + 147: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell9get_extraEv:476 + 0: 119 + 150.3: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:476 + 6: 119 + 156: _ZN9oceanbase6common5ObObjC2Ev:1428 + 2: _ZN9oceanbase6common5ObObj5resetEv:1428 + 6: 119 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:476 + 0: 119 + 157: _ZNK9oceanbase3sql17ObChunkDatumStore9StoredRow5cellsEv:476 + 1: 119 + 166: _ZN9oceanbase3sql9ObEvalCtx14TempAllocGuardC2ERS1_:0 + 0: 0 + 3: 0 + 2: _ZN9oceanbase3sql9ObEvalCtx19get_reset_tmp_allocEv:0 + 7: 0 + 7.1: 0 + 11: 0 + 8: _ZN9oceanbase6common16ObArenaAllocator21reset_remain_one_pageEv:0 + 0: 0 + 167: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell9get_extraEv:0 + 0: 0 + 170.3: _ZNK9oceanbase3sql17ObChunkDatumStore9StoredRow5cellsEv:0 + 1: 0 + 175: _ZN9oceanbase3sql9ObEvalCtx14TempAllocGuardD2Ev:0 + 0: 0 + 175.1: _ZN9oceanbase3sql9ObEvalCtx14TempAllocGuardD2Ev:0 + 0: 0 + 182.2: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:0 + 0: 0 + 183: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell17get_tiny_num_uintEv:0 + 0: 0 + 184.1: _ZNK9oceanbase6common7ObDatum8get_uintEv:0 + 0: 0 + 193: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell17set_tiny_num_uintEm:0 + 0: 0 + 194: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell17set_tiny_num_usedEv:0 + 0: 0 +_ZNK9oceanbase12blocksstable20ObMicroBlockCacheKey4hashEv:4618831:5068 + 1: 4747 + 2: 4747 + 2: _ZN9oceanbase6common10murmurhashEPKvim:4528638 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:4528638 + 13: 28482 + 14: 28482 + 15: 28482 + 17: 28482 + 18: 28482 + 41: 4747 + 42: 4747 + 43: 4747 +_ZN9oceanbase7storage15ObAccessService10table_scanERNS_6common17ObVTableScanParamERPNS2_16ObNewRowIteratorE:4616306:4300 + 3: 4230 + 4: 4230 + 8: 4230 + 13: 4230 + 16.1: 4344 + 16.2: 19 + 16.4: 20 + 17: 4344 + 18: 20 + 19.1: 20 + 20.1: 4352 _ZNK9oceanbase7storage16ObTableScanParam8is_validEv:4581 + 21: 20 + 22.1: 20 + 24: 19 + 25.1: 19 + 26.1: 3970 + 32.1: 19 + 34.1: 3970 + 35: 19 + 36.1: 19 + 40.1: 4547 _ZN9oceanbase7storage17ObLSTabletService10table_scanERNS0_19ObTableScanIteratorERNS0_16ObTableScanParamERPNS_6common16ObNewRowIteratorE:3974 + 41.1: 19 + 43.1: 4615 + 43.2: 19 + 43.4: 20 + 45: 4615 + 46: 20 + 47.1: 20 + 49: 4615 + 11: _ZNK9oceanbase6common11ObQueryFlag14is_read_latestEv:97621 + 0: 4469 + 16.1: _ZN9oceanbase3lib20is_trace_log_enabledEv:65046 + 2: 4230 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:4643 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:60816 + 2: 4344 + 16.2: _ZN9oceanbase6common18get_trace_recorderEv:1299 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:1299 + 7: 20 + 8: 19 + 8.1: 19 + 16.4: _ZN9oceanbase3lib20is_trace_log_enabledEv:240 + 2: 20 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:140 + 2: 20 + 16.5: _ZN9oceanbase6common18get_trace_recorderEv:1320 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:1320 + 7: 20 + 8: 19 + 8.1: 19 + 16.11: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl189ELl1600EE9add_eventEv:1560 + 2: 20 + 3.1: 19 + 6: 20 + 10: 20 + 11: 20 + 16.12: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:900 + 0: 20 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:100 + 2: 20 + 23.1: _ZN9oceanbase6common18ObServerObjectPoolINS_7storage19ObTableScanIteratorEE12get_instanceEv:75029 + 1: 4352 + 1.1: 19 + 1.2: 19 + 1.6: 19 + 23.2: _ZN9oceanbase6common18ObServerObjectPoolINS_7storage19ObTableScanIteratorEE13borrow_objectEv:934055 + 2: 4352 + 3: 4352 + 6: 4380 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:4360 + 9: 4034 + 10: 4363 + 11: 4034 + 12: 4034 + 13: 4034 + 14: 4034 + 16: 20 + 17: 20 + 23: 4363 + 24: 20 + 26.1: 19 + 29: 20 + 30: 20 + 32: 20 + 33: 20 + 2: _ZN9oceanbase6common8get_itidEv:122896 + 4: 4352 + 5: 20 + 6: 20 + 8: 20 + 3: _ZN9oceanbase6common26ObCacheLineSegregatedArrayINS0_15ObPoolArenaHeadEE4sizeEv:52224 + 0: 4352 + 5: _ZN9oceanbase6common26ObCacheLineSegregatedArrayINS0_15ObPoolArenaHeadEEixEl:83220 + 1: 4352 + 2: 4352 + 4.1: 19 + 5: 19 + 8: _ZN9oceanbase6common13ObLatchWGuardC2ERNS0_7ObLatchEj:154434 + 1: 4380 + 4: 4380 _ZN9oceanbase6common7ObLatch6wrlockEjlPKj:4659 + 5.1: 20 + 19: _ZN9oceanbase6common13ObLatchWGuardD2Ev:113221 + 2: 4034 + 3: 4034 _ZN9oceanbase6common7ObLatch6unlockEPKj:4162 + 3.1: 4363 + 3.2: 19 + 4.1: 19 + 4.5: 19 + 24.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib7ObLabelE:4194 + 3: 20 + 2.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:460 + 5: 20 + 7: 20 + 4: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:3374 + 3: 20 + 4: 20 + 5: 20 + 6: 20 + 7: 19 + 8: 19 + 9: 19 + 10: 19 + 11: 19 + 13: 19 + 14.1: 19 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:133 + 2: 19 + 9: _ZSt3maxIlERKT_S2_S2_:228 + 5: 19 + 26.2: _ZN9oceanbase7storage15ObAccessService19check_read_allowed_ERKNS_5share6ObLSIDERKNS_6common10ObTabletIDENS0_17ObStoreAccessTypeERKNS0_16ObTableScanParamERNS1_15ObStoreCtxGuardEl:2496757 + 8: 4363 + 10: 3965 + 11.1: 19 + 12.1: 4469 + 13.1: 19 + 14.1: 4469 + 15: 19 + 16.1: 19 + 19: 4469 + 20: 4469 + 22: 4469 + 23: 20 + 26.1: 19 + 29: 4469 + 30: 4469 + 31: 3970 + 35.1: 19 + 36.1: 3970 + 37: 20 + 38: 20 + 39.1: 20 + 46: 3970 + 10: _ZN9oceanbase7storage15ObAccessService15ObStoreCtxGuard4initERKNS_5share6ObLSIDE:408360 + 2: 4363 + 3: 4363 + 4: 0 + 5.1: 0 + 6.1: 4143 + 7: 19 + 8.1: 19 + 12: 4143 + 13: 4143 + 15: 3965 + 6.1: _ZNK9oceanbase5share6ObLSID8is_validEv:29001 + 0: 4143 + 10: _ZN9oceanbase5share6ObLSIDaSERKS1_:29001 + 0: 4143 + 11: _ZN9oceanbase5share6ObLSIDaSERKS1_:41430 + 0: 4143 + 13: _ZN9oceanbase6common16ObClockGenerator8getClockEv:87497 + 4: 4143 + 5.1: 19 + 8: 4143 + 6: _ZN9oceanbase6common16ObClockGenerator6get_usEv:190 + 2: 19 + 12.2: _ZN9oceanbase7storage11ObLSService6get_lsERKNS_5share6ObLSIDERNS0_10ObLSHandleENS0_10ObLSGetModE:1390829 + 5: 3965 + 7: 3965 + 8: 19 + 9.1: 19 + 10.1: 3965 + 11: 19 + 12.1: 19 + 13.1: 3965 + 14: 19 + 15.1: 19 + 16.1: 4469 + 17.1: 19 + 20: 19 + 13.1: _ZNK9oceanbase5share6ObLSID8is_validEv:15860 + 0: 3965 + 16.1: _ZNK9oceanbase7storage7ObLSMap6get_lsERKNS_5share6ObLSIDERNS0_10ObLSHandleENS0_10ObLSGetModE:1147212 + 4: 3965 + 8: 3965 + 9: 19 + 10.1: 19 + 12: 4076 _ZNK9oceanbase5share6ObLSID4hashEv:4101 + 13: 4076 + 14: 4477 + 15.1: 4477 + 16.2: 4477 + 19: 19 + 24: 19 + 25.2: 4372 + 26.1: 20 + 28.1: 19 + 29: 4469 + 13: _ZN9oceanbase5share20ObQSyncLockReadGuardC2ERNS0_11ObQSyncLockE:32612 + 0: 4076 + 1: 4076 _ZN9oceanbase5share11ObQSyncLock6rdlockEv:4152 + 16.1: _ZNK9oceanbase5share6ObLSIDeqERKS1_:44770 + 0: 4477 + 25.1: _ZN9oceanbase7storage10ObLSHandle6set_lsERKNS0_7ObLSMapERNS0_4ObLSERKNS0_10ObLSGetModE:601229 + 5: 4372 + 6: 4372 + 7: 4372 + 3: _ZN9oceanbase7storage10ObLSHandle5resetEv:31482 + 2: 4477 + 2.1: 1 + 3: 1 + 5: 1 + 6: 1 + 3: _ZNK9oceanbase7storage7ObLSMap9revert_lsEPNS0_4ObLSENS0_10ObLSGetModE:82 + 3: 1 + 3.1: 1 + 4.1: 1 + 5: 1 + 3: _ZN9oceanbase7storage4ObLS11get_ref_mgrEv:7 + 0: 1 + 5: _ZNK9oceanbase7storage7ObLSMap7free_lsEPNS0_4ObLSE:24 + 3: 1 + 4: 1 + 4.1: _ZN9oceanbase6common16ObMultiModRefMgrINS_7storage10ObLSGetModEE3incES3_:447331 + 6.1: 4372 + 9: 4372 + 9: _ZN9oceanbase6common8get_itidEv:154407 + 4: 4372 + 5: 19 + 6: 19 + 8: 19 + 10: _ZN9oceanbase6common5ObRef3incEv:78696 + 1.1: 4372 + 28: _ZN9oceanbase5share20ObQSyncLockReadGuardD2Ev:35132 + 1: 4372 _ZN9oceanbase5share11ObQSyncLock8rdunlockEv:4439 + 1.1: 19 + 14.2: _ZN9oceanbase7storage10ObLSHandle6get_lsEv:31283 + 0: 4469 + 18: _ZN9oceanbase7storage15ObAccessService15ObStoreCtxGuard13get_store_ctxEv:31283 + 0: 4469 + 21: _ZN9oceanbase6common10ObTabletIDaSERKS1_:49159 + 0: 4469 + 23: _ZNK9oceanbase7storage4ObLS18get_read_store_ctxIJRlRKlRNS0_10ObStoreCtxEEEEiDpOT_:440 + 0: 20 + 0.3: 20 + 31: _ZNK9oceanbase7storage4ObLS18get_read_store_ctxIJRKNS_11transaction16ObTxReadSnapshotERbRKlRNS0_10ObStoreCtxEEEEiDpOT_:80446 + 0: 4469 + 0.4: 4469 _ZNK9oceanbase7storage13ObLSTxService18get_read_store_ctxERKNS_11transaction16ObTxReadSnapshotEblRNS0_10ObStoreCtxE:4737 + 37: _ZNK9oceanbase11transaction9ObTransID8is_validEv:200 + 0: 20 + 41: _ZN9oceanbase11transaction9ObTransIDaSERKS1_:228 + 1: 19 + 34.3: _ZN9oceanbase7storage10ObLSHandle6get_lsEv:27790 + 0: 3970 + 37.1: _ZN9oceanbase7storage4ObLS14get_tablet_svrEv:15880 + 0: 3970 + 43.1: _ZN9oceanbase3lib20is_trace_log_enabledEv:36932 + 2: 4547 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:4846 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:32305 + 2: 4615 + 43.2: _ZN9oceanbase6common18get_trace_recorderEv:1185 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:1185 + 7: 20 + 8: 19 + 8.1: 19 + 43.4: _ZN9oceanbase3lib20is_trace_log_enabledEv:240 + 2: 20 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:140 + 2: 20 + 43.5: _ZN9oceanbase6common18get_trace_recorderEv:1320 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:1320 + 7: 20 + 8: 19 + 8.1: 19 + 43.11: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl189ELl1600EE9add_eventEv:1520 + 2: 20 + 3.1: 20 + 6: 20 + 10: 20 + 11: 20 + 43.12: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:700 + 0: 20 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:100 + 2: 20 + 47: _ZN9oceanbase6common18ObServerObjectPoolINS_7storage19ObTableScanIteratorEE12get_instanceEv:1271 + 1: 20 + 1.1: 19 + 1.2: 19 + 1.6: 19 +_ZN9oceanbase7storage15ObMultipleMergeC2Ev:4578375:4635 + 0.1: 4593 _ZN9oceanbase12blocksstable10ObDatumRowC1Ev:4681 + 4: 4278 + 7: 4278 _ZN9oceanbase12blocksstable10ObDatumRowC1Ev:4418 + 8: 4483 _ZN9oceanbase12blocksstable10ObDatumRowC1Ev:4601 + 10: 4383 + 20: 4383 + 22: 4523 + 23: 4523 + 24: 4523 + 25: 4449 _ZN9oceanbase7storage15ObLobDataReaderC1Ev:4455 + 26: 4393 + 27: 4393 + 28: 4278 + 29: 4393 + 29.11: 47 + 29.15: 47 + 29.16: 47 + 29.17: 47 + 29.18: 47 + 29.19: 47 + 0: _ZN9oceanbase7storage18ObQueryRowIteratorC2Ev:29946 + 0: 4278 + 1.1: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:817098 + 4: 4278 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:752928 + 2: 4278 + 3: 4278 + 4: 4278 + 5: 4278 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:179676 + 0: 4278 + 2: _ZN9oceanbase6common9ObSEArrayIPNS_7storage18ObStoreRowIteratorELl8ENS0_19ModulePageAllocatorELb0EEC2Ev:667368 + 0.1: 4278 + 0.5: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage18ObStoreRowIteratorELl8ENS0_19ModulePageAllocatorELb0EEC2ElRKS5_:590364 + 2: 4278 + 5: 4278 + 6: 4278 + 8: 4278 + 17.1: 4278 + 2: _ZN9oceanbase6common8ObIArrayIPNS_7storage18ObStoreRowIteratorEEC2EPS4_l:77004 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_7storage18ObStoreRowIteratorEEC2EPS4_l:77004 + 0: 4278 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:196788 + 0: 4278 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:106950 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:106950 + 2: 4278 + 8: 4278 + 6: _ZN9oceanbase6common9ObSEArrayIPNS_7storage8ObITableELl8ENS0_19ModulePageAllocatorELb0EEC2Ev:547584 + 0.1: 4278 + 0.5: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl8ENS0_19ModulePageAllocatorELb0EEC2ElRKS5_:470580 + 2: 4278 + 5: 4278 + 6: 4278 + 8: 4278 + 17.1: 4278 + 2: _ZN9oceanbase6common8ObIArrayIPNS_7storage8ObITableEEC2EPS4_l:77004 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_7storage8ObITableEEC2EPS4_l:77004 + 0: 4278 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:136896 + 0: 4278 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:77004 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:77004 + 2: 4278 + 8: 4278 + 21: _ZN9oceanbase7storage15ObGetTableParamC2Ev:354963 + 0: 4383 + 0: _ZN9oceanbase6common10SampleInfoC2Ev:153405 + 0: _ZN9oceanbase6common10SampleInfo5resetEv:153405 + 3: 4383 + 5: 4383 + 6: 4383 + 0.1: _ZN9oceanbase7storage21ObTabletTableIteratorC2Ev:74283 + 0: 4567 _ZN9oceanbase7storage14ObTabletHandleC1Ev:4560 + 0.4: 4283 _ZN9oceanbase7storage20ObTableStoreIteratorC1Eb:4569 + 24: _ZN9oceanbase6common9ObSEArrayINS_5share6schema9ObColDescELl32ENS0_19ModulePageAllocatorELb0EEC2Ev:694562 + 0.1: 4449 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema9ObColDescELl32ENS0_19ModulePageAllocatorELb0EEC2ElRKS5_:614480 + 2: 4523 + 5: 4449 + 6: 4449 + 8: 4449 + 17.1: 4449 + 2: _ZN9oceanbase6common8ObIArrayINS_5share6schema9ObColDescEEC2EPS4_l:80082 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEEC2EPS4_l:80082 + 0: 4449 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:204654 + 0: 4449 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:111225 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:111225 + 2: 4449 + 8: 4449 + 29.12: _ZN9oceanbase7storage15ObGetTableParamD2Ev:6063 + 0.2: 47 + 0.3: 47 + 0: _ZN9oceanbase7storage15ObGetTableParam5resetEv:2679 + 2: 47 + 3: _ZN9oceanbase6common10SampleInfo5resetEv:1598 + 3: 47 + 5: 47 + 6: 47 + 4: _ZN9oceanbase7storage21ObTabletTableIterator5resetEv:752 + 2: 47 + 3: 47 + 0.1: _ZN9oceanbase7storage21ObTabletTableIteratorD2Ev:2491 + 0.1: 47 + 0.2: 47 + 0.3: 47 + 0.5: 47 + 0: _ZN9oceanbase7storage21ObTabletTableIterator5resetEv:752 + 2: 47 + 3: 47 + 29.13: _ZN9oceanbase7storage8ObNopPosD2Ev:611 + 2: 47 + 2.1: 47 + 29.20: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:1128 + 0: 47 +_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher8prefetchEv:4554101:103368 + 1: 99180 + 2: 99180 + 3: 99180 + 4: 2 + 5.1: 2 + 6.1: 99180 + 7.1: 1932 + 9.1: 2064 _ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher19prefetch_index_treeEv:1986 + 10.1: 2 + 11.1: 2198 _ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher19prefetch_micro_dataEv:2157 + 13: 1087 + 14: 1087 + 16.1: 0 + 19: 113906 +_ZN9oceanbase7storage16ObMetaPointerMapINS0_14ObTabletMapKeyENS0_8ObTabletEE12get_meta_objERKS2_RNS_6common12ObIAllocatorERNS0_14ObMetaObjGuardIS3_EE:4507291:5415 + 4: 5214 + 5: 5214 + 7: 5214 + 9: 5214 + 10.1: 5333 + 11: 3 + 12.1: 3 + 14: 5333 + 15.2: 5103 + 17.1: 3 + 19.2: 5103 + 20: 0 + 21.1: 0 + 22.3: 5103 + 23: 3 + 24.1: 3 + 27: 5103 + 27.1: 5103 _ZN9oceanbase7storage13ObMetaPointerINS0_8ObTabletEE17get_in_memory_objERNS0_14ObMetaObjGuardIS2_EE:5479 + 27.2: 5688 + 28.1: 0 + 33: 5854 + 34: 0 + 34.1: 0 + 35.1: 3 + 38: 3 + 39.9: 6005 _ZN9oceanbase7storage19ObMetaPointerHandleINS0_14ObTabletMapKeyENS0_8ObTabletEED2Ev:6116 + 6: _ZN9oceanbase7storage19ObMetaPointerHandleINS0_14ObTabletMapKeyENS0_8ObTabletEEC2ERNS0_16ObMetaPointerMapIS2_S3_EE:224202 + 2: 5214 + 3: 5214 + 1: _ZN9oceanbase7storage16ObResourceHandleINS0_13ObMetaPointerINS0_8ObTabletEEEEC2Ev:57354 + 1: 5214 + 9: _ZN9oceanbase7storage14ObTabletHandle5resetEv:278145 + 2: 5214 + 3: 0 + 5: 5693 + 3: _ZNK9oceanbase7storage14ObTabletHandle15calc_wash_scoreENS0_18WashTabletPriorityE:75 + 2: 0 + 4: 0 + 4.2: 0 + 6: 3 + 7.1: 3 + 11: 0 + 12: 0 + 3.1: _ZN9oceanbase7storage8ObTablet17update_wash_scoreEl:27 + 3: 3 + 4: 0 + 5.1: 0 + 6: _ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE5resetEv:207866 + 2: 5693 + 3: 5333 + 2: _ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE9reset_objEv:45619 + 2: 5693 + 3: 0 + 4.1: 3 + 5: 3 + 7: 0 + 8: 0 + 9: 0 + 10.1: 0 + 11.1: 0 + 13: 0 + 7: _ZN9oceanbase7storage8ObTablet7dec_refEv:0 + 2: 0 + 10: _ZNK9oceanbase7storage14ObTabletMapKey8is_validEv:37331 + 2: _ZNK9oceanbase5share6ObLSID8is_validEv:37331 + 0: 5333 + 14: _ZNK9oceanbase6common4hash9hash_funcINS_7storage14ObTabletMapKeyEEclERKS4_:522634 + 2: _ZNK9oceanbase7storage14ObTabletMapKey4hashEv:522634 + 4: _ZN9oceanbase6common10murmurhashEPKvim:181322 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:181322 + 43: 5333 + 14.1: _ZN9oceanbase6common22ObBucketHashRLockGuardC2ERNS0_12ObBucketLockEm:355885 + 1: _ZNK9oceanbase6common12ObBucketLock14get_bucket_idxEm:133325 + 3: 5333 + 4: 5333 + 1.1: _ZN9oceanbase6common18ObBucketRLockGuardC2ERNS0_12ObBucketLockEm:222560 + 1: 5333 + 2: 5333 + 3: 5333 + 4: 5333 + 6: 6171 _ZN9oceanbase6common12ObBucketLock6rdlockEm:5334 + 7.1: 3 + 9: 5114 + 9: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:6171 + 2: 6171 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:6171 + 15.1: _ZN9oceanbase7storage13ObResourceMapINS0_14ObTabletMapKeyENS0_13ObMetaPointerINS0_8ObTabletEEEE16get_without_lockINS0_25ObResourceDefaultCallbackIS2_S5_EEEEiRKS2_RNS0_16ObResourceHandleIS5_EET_:1636084 + 5: 5114 + 7: 5114 + 8: 3 + 9.1: 3 + 10.1: 3 + 12.1: 3 + 20.1: 5103 + 22.2: 5103 + 23.1: 3 + 25: 5103 + 28: 5103 + 10.1: _ZNK9oceanbase6common4hash9ObHashMapINS_7storage14ObTabletMapKeyEPNS3_20ObResourceValueStoreINS3_13ObMetaPointerINS3_8ObTabletEEEEENS1_19NoPthreadDefendModeENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS4_SA_EEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKS4_RSA_l:1038119 + 7: _ZN9oceanbase6common4hash11ObHashTableINS_7storage14ObTabletMapKeyENS1_11HashMapPairIS4_PNS3_20ObResourceValueStoreINS3_13ObMetaPointerINS3_8ObTabletEEEEEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstISC_EENS1_13SimpleAllocerINS1_15ObHashTableNodeISC_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKS4_RSC_l:1038119 + 5: 5114 + 5.1: 5114 + 6.1: 3 + 10: 5114 + 19: 5103 + 5: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_7storage14ObTabletMapKeyEPNS5_20ObResourceValueStoreINS5_13ObMetaPointerINS5_8ObTabletEEEEEEENS1_5NLockENS1_5NCondEEEEEbRKT_:56254 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_7storage14ObTabletMapKeyEPNS5_20ObResourceValueStoreINS5_13ObMetaPointerINS5_8ObTabletEEEEEEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:56254 + 2: 5114 + 9: _ZNK9oceanbase6common4hash9hash_funcINS_7storage14ObTabletMapKeyEEclERKS4_:552312 + 2: _ZNK9oceanbase7storage14ObTabletMapKey4hashEv:552312 + 3: _ZN9oceanbase6common10murmurhashEPKvim:286384 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:286384 + 11: 5114 + 13: 5114 + 14: 5114 + 15: 5114 + 17: 5114 + 18: 5114 + 41: 5114 + 42: 5114 + 43: 5114 + 4: _ZN9oceanbase6common10murmurhashEPKvim:265928 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:265928 + 5: 5114 + 13: 5114 + 14: 5114 + 15: 5114 + 17: 5114 + 18: 5114 + 41: 5114 + 42: 5114 + 43: 5114 + 18: _ZN9oceanbase6common4hash11ObHashTableINS_7storage14ObTabletMapKeyENS1_11HashMapPairIS4_PNS3_20ObResourceValueStoreINS3_13ObMetaPointerINS3_8ObTabletEEEEEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstISC_EENS1_13SimpleAllocerINS1_15ObHashTableNodeISC_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE32internal_get_with_timeout_unsafeERNS1_17ObHashTableBucketISC_NS1_5NLockENS1_5NCondEEERKS4_RPKSC_l:240353 + 6: _ZNK9oceanbase6common4hash11ObHashTableINS_7storage14ObTabletMapKeyENS1_11HashMapPairIS4_PNS3_20ObResourceValueStoreINS3_13ObMetaPointerINS3_8ObTabletEEEEEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstISC_EENS1_13SimpleAllocerINS1_15ObHashTableNodeISC_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE12internal_getERKNS1_17ObHashTableBucketISC_NS1_5NLockENS1_5NCondEEERKS4_RPKSC_Rb:240353 + 6: 5114 + 8.1: 5114 + 10: 5114 + 14: 5103 + 16: 0 + 9: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_11HashMapPairINS_7storage14ObTabletMapKeyEPNS4_20ObResourceValueStoreINS4_13ObMetaPointerINS4_8ObTabletEEEEEEEE16check_magic_codeEv:15342 + 0: 5114 + 9.1: _ZL12abort_unlessb:30699 + 5: 5114 + 6: 3 + 10.1: _ZNK9oceanbase6common4hash8equal_toINS_7storage14ObTabletMapKeyEEclERKS4_S7_:71620 + 2: _ZNK9oceanbase7storage14ObTabletMapKeyeqERKS1_:71620 + 2: 5114 + 2: _ZNK9oceanbase5share6ObLSIDeqERKS1_:20480 + 0: 5114 + 2.1: _ZNK9oceanbase6common10ObTabletIDeqERKS1_:40912 + 0: 5114 + 21: _ZN9oceanbase6common11copy_assignINS0_4hash11HashMapPairINS_7storage14ObTabletMapKeyEPNS4_20ObResourceValueStoreINS4_13ObMetaPointerINS4_8ObTabletEEEEEEEEEiRT_RKSD_:20412 + 2: _ZN9oceanbase6common16copy_assign_wrapINS0_4hash11HashMapPairINS_7storage14ObTabletMapKeyEPNS4_20ObResourceValueStoreINS4_13ObMetaPointerINS4_8ObTabletEEEEEEEEEiRT_RKSD_NS0_8BoolTypeILb1EEE:20412 + 2: _ZN9oceanbase6common4hash11HashMapPairINS_7storage14ObTabletMapKeyEPNS3_20ObResourceValueStoreINS3_13ObMetaPointerINS3_8ObTabletEEEEEE6assignERKSB_:20412 + 5.1: _ZN9oceanbase6common11copy_assignIPNS_7storage20ObResourceValueStoreINS2_13ObMetaPointerINS2_8ObTabletEEEEEEEiRT_RKS9_:20412 + 2: _ZN9oceanbase6common16copy_assign_wrapIPNS_7storage20ObResourceValueStoreINS2_13ObMetaPointerINS2_8ObTabletEEEEEEEiRT_RKS9_NS0_8BoolTypeILb0EEE:20412 + 2: 5103 + 22.1: _ZN9oceanbase7storage13ObResourceMapINS0_14ObTabletMapKeyENS0_13ObMetaPointerINS0_8ObTabletEEEE14inc_handle_refEPNS0_20ObResourceValueStoreIS5_EE:326934 + 2: 5103 + 3: 5103 + 4: 3 + 5.1: 3 + 6.1: 5103 + 7: 3 + 8.1: 3 + 9.1: 5103 + 10.1: 3 + 12: 3 + 9.1: _ZN9oceanbase7storage20ObResourceValueStoreINS0_13ObMetaPointerINS0_8ObTabletEEEE11inc_ref_cntEv:30618 + 3.1: 5103 + 19.1: _ZNK9oceanbase7storage16ObResourceHandleINS0_13ObMetaPointerINS0_8ObTabletEEEE16get_resource_ptrEv:81648 + 0: 5103 + 0.2: _ZNK9oceanbase7storage20ObResourceValueStoreINS0_13ObMetaPointerINS0_8ObTabletEEEE13get_value_ptrEv:20412 + 0: 5103 + 22.2: _ZNK9oceanbase7storage14ObMetaDiskAddr7is_noneEv:40824 + 0: 5103 + 26: _ZNK9oceanbase7storage13ObMetaPointerINS0_8ObTabletEE12is_in_memoryEv:25515 + 2: 5103 + 31: _ZN9oceanbase6common22ObBucketHashRLockGuardD2Ev:265298 + 0: _ZN9oceanbase6common18ObBucketRLockGuardD2Ev:265298 + 2: 5674 + 3: 5674 _ZN9oceanbase6common12ObBucketLock6unlockEm:5718 + 3.1: 5247 + 4.1: 3 + 6.1: 5854 + 7: 5854 + 8.1: 3 + 6: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:5247 + 2: 5247 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:5294 + 31.1: _ZN9oceanbase6common22ObBucketHashRLockGuardD2Ev:363 + 0: _ZN9oceanbase6common18ObBucketRLockGuardD2Ev:363 + 2: 3 + 3: 3 + 3.1: 3 + 4.1: 3 + 6.1: 3 + 7: 3 + 8.1: 3 + 6: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:15 + 2: 3 + 39.10: _ZN9oceanbase7storage19ObMetaPointerHandleINS0_14ObTabletMapKeyENS0_8ObTabletEED2Ev:1203 + 1: 3 + 2: _ZN9oceanbase7storage19ObMetaPointerHandleINS0_14ObTabletMapKeyENS0_8ObTabletEE5resetEv:1182 + 2: 3 + 3: 3 + 4: 3 + 5.1: 3 + 6.1: 3 + 7.1: 3 + 9: 3 + 6.1: _ZN9oceanbase7storage13ObResourceMapINS0_14ObTabletMapKeyENS0_13ObMetaPointerINS0_8ObTabletEEEE14dec_handle_refEPNS0_20ObResourceValueStoreIS5_EE:792 + 2: 3 + 3: 3 + 4: 3 + 5: 3 + 6.1: 3 + 10.1: 3 + 11.1: 3 + 12.1: 3 + 15: 3 + 10.1: _ZN9oceanbase7storage20ObResourceValueStoreINS0_13ObMetaPointerINS0_8ObTabletEEEE11dec_ref_cntERl:228 + 4: 3 + 6.1: 3 + 7: 3 + 8: 3 + 9: 3 + 13: _ZN9oceanbase7storage13ObResourceMapINS0_14ObTabletMapKeyENS0_13ObMetaPointerINS0_8ObTabletEEEE13free_resourceEPNS0_20ObResourceValueStoreIS5_EE:138 + 5: 3 + 7: 3 + 8: 3 + 11: 3 + 4: _ZNK9oceanbase7storage20ObResourceValueStoreINS0_13ObMetaPointerINS0_8ObTabletEEEE13get_value_ptrEv:12 + 0: 3 +_ZN9oceanbase3lib17__MemoryContext__14create_contextIJRNS0_12ContextParamEPNS0_10StaticInfoEEEEiRNS0_13MemoryContextERKNS0_11DynamicInfoEDpOT_:4426460:4062 + 3: 3925 + 4: 3925 + 10: 3970 + 11: 2 + 13: 3970 + 14: 4052 + 15.1: 0 + 15.2: 0 + 15.5: 0 + 15.7: 0 + 19: 0 + 21: 0 + 27: 4052 + 28: 4052 + 31: 4052 + 7.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:90275 + 5: 3925 + 7: 3925 + 8: _ZN9oceanbase3lib7ObLabelaSILm14EEERS1_RAT__Kc:43175 + 4: 3925 + 9: _ZN9oceanbase3lib17__MemoryContext__6allocfElRKNS0_9ObMemAttrE:78500 + 3: 3925 _ZN9oceanbase6common11ObAllocator5allocElRKNS_3lib9ObMemAttrE:4185 + 13: _ZN9oceanbase3lib17__MemoryContext__C2EbRKNS0_11DynamicInfoEPS1_RNS0_12ContextParamEPKNS0_10StaticInfoE:766210 + 3: 3970 + 4: 3970 + 5: 3970 + 6: 3970 + 7: 3970 + 8: 3970 + 9: 3970 + 10: 3970 + 11: 3970 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:115130 + 5: 3970 + 7: 3970 + 5.3: _ZN9oceanbase3lib8TreeNodeC2EPS1_b:127040 + 2: 3970 + 4: 3970 + 6: 3970 + 7: 3970 + 14: _ZN9oceanbase3lib17__MemoryContext__4initEv:2665887 + 5: 3971 + 6: 3971 _ZN9oceanbase3lib17ObMallocAllocator12get_instanceEv:4105 + 8: 4321 + 8.1: 4228 + 9: 4321 _ZNK9oceanbase3lib17ObMallocAllocator24get_tenant_ctx_allocatorEmm:4385 + 10: 4228 + 13: 4308 + 15: 4308 + 16: 4308 + 17: 4308 + 27: 4308 + 31: 4080 + 33: 4100 + 34: 4100 + 34.3: 4052 + 35: 8 + 38: 0 + 2: _ZN9oceanbase3lib8TreeNode4initEv:262961 + 4: 3970 + 5: _ZN9oceanbase3lib8TreeNode9add_childERS1_:231201 + 2: 3970 + 3.1: 2 + 4: 2 + 7: 2 + 8: 0 + 8.1: 3970 + 9: 3970 + 10: 3970 + 11: 3180 + 13: 765 + 14: 765 + 15: 252 + 17: 774 + 18: 774 + 20: 3971 + 21: 2 + 7.1: _ZL12abort_unlessb:23846 + 5: 3970 + 6: 2 + 27: _ZN9oceanbase3lib17__MemoryContext__10init_allocERNS_6common11ObAllocatorEbj:848373 + 3: 4308 + 4: 2 + 5: 2 + 6: 2 + 9: 2 + 10: 2 + 14: 4308 + 15: 4308 + 15.1: 4289 _ZTWN9oceanbase3lib17ContextTLOptGuard13enable_tl_optE:4489 + 18: 4080 + 19: 4080 + 4: _ZN9oceanbase6common11ObAllocatorC2EPNS_3lib17__MemoryContext__ERKNS2_9ObMemAttrEbj:374 + 2: 2 + 3: 2 + 4: 2 + 5: 2 + 6: 2 + 7: 2 + 9: 2 + 10: 2 + 11: 2 + 0.1: _ZN9oceanbase3lib18SetDoNothingLockerC2Ev:36 + 0: 2 + 7: _ZN9oceanbase3lib7ObMutexC2Ej:36 + 1: 2 + 8: _ZN9oceanbase3lib9SetLockerC2ERNS0_7ObMutexE:50 + 1: 2 + 12: _ZN9oceanbase3lib9ObjectSet16set_check_unfreeEb:14 + 0: 2 + 9: _ZN9oceanbase6common19ObParallelAllocatorC2ERNS0_11ObAllocatorEPNS_3lib17__MemoryContext__ERKNS4_9ObMemAttrEij:286 + 5: 2 + 6: 2 + 6.3: 2 + 7: 2 + 8: 2 + 9.1: 2 + 9.3: 2 + 10: 2 + 0.1: _ZN9oceanbase3lib7ObMutexC2Ej:52 + 1: 2 + 18: _ZN9oceanbase6common11ObAllocatorC2EPNS_3lib17__MemoryContext__ERKNS2_9ObMemAttrEbj:722482 + 2: 4049 + 3: 4049 + 4: 4049 + 5: 4049 + 6: 4049 + 7: 4049 + 9: 4302 _ZN9oceanbase3lib9ObjectSetC1EPNS0_17__MemoryContext__Ej:4442 + 10: 4080 + 11: 4049 + 0.1: _ZN9oceanbase3lib18SetDoNothingLockerC2Ev:72882 + 0: 4049 + 7: _ZN9oceanbase3lib7ObMutexC2Ej:59248 + 1: 4302 _ZN9oceanbase6common12ObLatchMutexC1Ev:4219 + 8: _ZN9oceanbase3lib9SetLockerC2ERNS0_7ObMutexE:107550 + 1: 4302 + 12: _ZN9oceanbase3lib9ObjectSet16set_check_unfreeEb:28560 + 0: 4080 + 31: _ZN9oceanbase6common16ObArenaAllocatorC2ERNS0_12ObIAllocatorEl:583480 + 1: 4080 + 1.2: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:493720 + 2: 4080 + 3: 4080 + 4: 4080 + 5: 4080 + 6: 4080 + 7.1: 2 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:159120 + 0: 4080 + 32: _ZN9oceanbase6common16ObArenaAllocator8set_attrERKNS_3lib9ObMemAttrE:142800 + 2: 4080 + 3: 4080 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE10set_ctx_idEl:28560 + 0: _ZN9oceanbase6common19ModulePageAllocator10set_ctx_idEl:28560 + 0: 4080 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9set_labelERKNS_3lib7ObLabelE:32640 + 0: _ZN9oceanbase6common19ModulePageAllocator9set_labelERKNS_3lib7ObLabelE:32640 + 0: 4080 + 33: _ZN9oceanbase6common20ObSafeArenaAllocatorC2ERNS0_16ObArenaAllocatorE:187912 + 1: 4080 + 3: 4080 + 2: _ZN9oceanbase6common10ObSpinLockC2Ej:85912 + 0: 4080 _ZN9oceanbase6common12ObLatchMutexC1Ev:4104 + 1: 4100 + 15.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 24: _ZN9oceanbase3lib17__MemoryContext__4freeEPv:0 + 2: 0 + 28: _ZN9oceanbase3lib17__MemoryContext__10gen_seq_idEv:235108 + 3: 4052 + 3: _ZN9oceanbase6common8get_itidEv:113548 + 4: 4052 + 5: 2 + 6: 2 + 8: 2 + 29: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:101300 + 2: 4052 + 4: 4052 + 8: 4052 +_ZN9oceanbase3sql11ObDASScanOp7open_opEv:4395647:4695 + 1: 4446 + 2: 4446 + 4: 4446 + 5: 4279 + 6.1: 1 + 7.1: 4494 _ZN9oceanbase7storage15ObAccessService10table_scanERNS_6common17ObVTableScanParamERPNS2_16ObNewRowIteratorE:4300 + 8.1: 1 + 9.1: 1 + 11: 1 + 13.1: 1 + 15.1: 1 + 16: 1 + 17.1: 1 + 20: 4494 + 3: _ZN9oceanbase3sql11ObDASScanOp15get_tsc_serviceEv:355766 + 2: 4446 + 2.3: 4446 + 3: 1 + 2: _ZN9oceanbase6common16is_virtual_tableEm:48906 + 2: 4446 + 3.1: _ZN9oceanbase5share11ObTenantEnv3mtlIPNS_7storage15ObAccessServiceEEET_v:106774 + 2: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:106774 + 2: 4446 + 2.1: 1 + 2.2: 1 + 4: _ZN9oceanbase3sql11ObDASScanOp23reset_access_datums_ptrEv:156630 + 2: 4446 + 3: 0 + 3.6: 0 + 4: 0 + 5: 0 + 6: 0 + 9: 1 + 9.1: 1 + 10: 1 + 10.4: 1 + 10.6: 1 + 10.9: 1 + 11: 1 + 12: 1 + 13: 1 + 14: 1 + 2: _ZNK9oceanbase3sql18ObPushdownOperator13is_vectorizedEv:40014 + 0: 4446 + 3.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:0 + 6: 0 + 3.7: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:0 + 6: 0 + 4: _ZNK9oceanbase3sql6ObExpr24locate_datums_for_updateERNS0_9ObEvalCtxEl:0 + 3: 0 + 5: 0 + 6: 0 + 8.1: 0 + 9: 0 + 10: 0 + 12: 0 + 13: 0 + 5: _ZNK9oceanbase3sql6ObExpr13get_eval_infoERNS0_9ObEvalCtxE:0 + 2: 0 + 9: _ZN9oceanbase3sql11ObDASScanOp16get_lookup_rtdefEv:62901 + 1: 4492 + 1.2: 1 + 1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql14ObDASBaseRtDefEE5emptyEv:35936 + 0: 4492 + 1.2: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql14ObDASBaseRtDefEE2atEl:7 + 6: 1 + 9.2: _ZNK9oceanbase3sql18ObPushdownOperator13is_vectorizedEv:9 + 0: 1 + 10: _ZNK9oceanbase3sql11ObDASScanOp16get_lookup_ctdefEv:14 + 1: 1 + 1: _ZNK9oceanbase6common12ObIArrayWrapIPKNS_3sql14ObDASBaseCtDefEE5emptyEv:8 + 0: 1 + 10.6: _ZNK9oceanbase3sql11ObDASScanOp16get_lookup_ctdefEv:15 + 1: 1 + 1: _ZNK9oceanbase6common12ObIArrayWrapIPKNS_3sql14ObDASBaseCtDefEE5emptyEv:8 + 0: 1 + 10.11: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:7 + 6: 1 + 10.14: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:15 + 6: 1 + 11: _ZN9oceanbase3sql11ObDASScanOp16get_lookup_rtdefEv:15 + 1.2: 1 + 1.2: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql14ObDASBaseRtDefEE2atEl:7 + 6: 1 + 11.1: _ZNK9oceanbase3sql6ObExpr24locate_datums_for_updateERNS0_9ObEvalCtxEl:148 + 3: 1 + 5: 1 + 6: 1 + 8.1: 2 + 9: 2 + 10: 2 + 12: 2 + 13: 2 + 13: _ZN9oceanbase3sql11ObDASScanOp16get_lookup_rtdefEv:10 + 1.2: 1 + 1.2: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql14ObDASBaseRtDefEE2atEl:7 + 6: 1 + 13.1: _ZNK9oceanbase3sql6ObExpr13get_eval_infoERNS0_9ObEvalCtxE:14 + 2: 1 + 5: _ZN9oceanbase3sql11ObDASScanOp15init_scan_paramEv:3352319 + 2: 4492 + 3: 4492 + 4: 4492 + 5: 4492 + 6: 4492 + 7: 4492 + 8: 4492 + 9: 4492 + 10: 4492 + 11: 4492 + 12: 4492 + 13: 4492 + 14: 4492 + 15: 4492 + 16: 4492 + 17: 4492 + 18: 4492 + 19: 4492 + 20: 4492 + 21: 4492 + 22: 4492 + 23: 4492 + 24: 4492 + 25: 4492 + 28: 4492 + 29: 1 + 31: 4492 + 34: 1 + 35.1: 1 + 39: 4353 + 44: 4353 + 45: 2 + 47: 4389 + 48: 4389 + 49.1: 1 + 52: 1 + 3: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:76427 + 2: 4492 + 2.1: 1 + 2.2: 1 + 3.1: _ZNK9oceanbase5share12ObTenantBase2idEv:67380 + 0: 4492 + 9: _ZNK9oceanbase6common12ObIArrayWrapImE5countEv:17968 + 0: 4492 + 27: _ZN9oceanbase6common10ObTabletIDaSERKS1_:71872 + 0: 4492 + 32: _ZN9oceanbase11transaction16ObTxReadSnapshotaSERKS1_:575368 + 0: 4574 _ZN9oceanbase11transaction12ObTxSnapshotaSERKS1_:4729 + 0.1: _ZN9oceanbase5share6ObLSIDaSERKS1_:54888 + 0: 4574 + 0.2: _ZN9oceanbase6common9ObSEArrayINS_11transaction6ObPairINS_5share6ObLSIDElEELl1ENS0_19ModulePageAllocatorELb0EEaSERKS8_:271452 + 0: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction6ObPairINS_5share6ObLSIDElEELl1ENS0_19ModulePageAllocatorELb0EEaSERKS8_:239434 + 4: 4574 + 5: 4574 _ZN9oceanbase6common13ObSEArrayImplINS_11transaction6ObPairINS_5share6ObLSIDElEELl1ENS0_19ModulePageAllocatorELb0EE5reuseEv:4616 + 7: 4446 _ZN9oceanbase6common13ObSEArrayImplINS_11transaction6ObPairINS_5share6ObLSIDElEELl1ENS0_19ModulePageAllocatorELb0EE7reserveEl:4564 + 8: 1 + 8.1: 4507 + 8.3: 4507 + 9: 520 + 13: 3838 + 14: 3838 + 15: 4353 + 6: _ZNK9oceanbase6common12ObIArrayWrapINS_11transaction6ObPairINS_5share6ObLSIDElEEE5countEv:22230 + 0: 4446 + 9: _ZN9oceanbase6common16construct_assignINS_11transaction6ObPairINS_5share6ObLSIDElEEEEiRT_RKS7_:7298 + 2: _ZN9oceanbase6common21construct_assign_wrapINS_11transaction6ObPairINS_5share6ObLSIDElEEEEiRT_RKS7_NS0_8BoolTypeILb0EEE:7298 + 2: _ZN9oceanbase11transaction6ObPairINS_5share6ObLSIDElEC2ERKS4_:7298 + 0: 520 + 0: _ZN9oceanbase5share6ObLSIDC2ERKS1_:3130 + 0: 520 + 40.1: _ZN9oceanbase11transaction9ObTransIDaSERKS1_:30471 + 1: 4353 + 42: _ZN9oceanbase11transaction9ObTransID5resetEv:30471 + 0: 4353 + 44: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE5emptyEv:34824 + 0: 4353 + 48: _ZN9oceanbase6common13ObSEArrayImplImLl4ENS0_19ModulePageAllocatorELb0EE6assignERKNS0_8ObIArrayImEE:823038 + 3: 4389 + 4: 4389 _ZN9oceanbase6common13ObSEArrayImplImLl4ENS0_19ModulePageAllocatorELb0EE5reuseEv:4528 + 6: 4742 _ZN9oceanbase6common13ObSEArrayImplImLl4ENS0_19ModulePageAllocatorELb0EE7reserveEl:4746 + 7: 4541 + 8: 4541 + 18: 4279 + 5: _ZNK9oceanbase6common12ObIArrayWrapImE5countEv:18968 + 0: 4742 + 8: _ZNKSt9type_info9hash_codeEv:144735 + 3.2: 1 + 3.4: 4541 + 3.5: 4870 _ZSt11_Hash_bytesPKvmm:4904 + 3: _ZNKSt9type_info4nameEv:68115 + 1: 4541 + 8.1: _ZNKSt9type_info9hash_codeEv:81336 + 3.2: 1 + 3.5: 4518 _ZSt11_Hash_bytesPKvmm:4553 + 9: _ZN9oceanbase6common9ObClassOpImLb1EE12array_assignEPKmPml:13 + 2: 1 + 13: _ZN9oceanbase6common9ObClassOpImLb0EE12array_assignEPKmPml:276644 + 3: 4414 + 3.1: 4399 + 3.3: 4965 + 3.5: 4965 + 4: _ZN9oceanbase6common16construct_assignImEEiRT_RKS2_:68858 + 2: _ZN9oceanbase6common21construct_assign_wrapImEEiRT_RKS2_NS0_8BoolTypeILb0EEE:68858 + 2: 4965 + 64695: 4399 + 15.1: _ZNK9oceanbase3sql11ObDASScanOp16get_lookup_ctdefEv:62927 + 1: 4494 + 1.2: 1 + 1: _ZNK9oceanbase6common12ObIArrayWrapIPKNS_3sql14ObDASBaseCtDefEE5emptyEv:35952 + 0: 4494 + 1.2: _ZNK9oceanbase6common12ObIArrayWrapIPKNS_3sql14ObDASBaseCtDefEE2atEl:7 + 6: 1 +_ZN9oceanbase3sql8ObSqlCtx5resetEv:4363608:10878 + 1: 10035 + 3: 10035 + 5: 10035 + 7: 10035 + 8: 10035 + 10: 10035 + 11: 10035 + 12: 10035 + 13: 10035 + 18: 10035 + 19: 10035 + 20: 10035 + 21: 10035 + 27: 10035 + 29: 10035 + 31: 0 + 31.1: 0 + 32: 0 + 35: 10563 + 36: 10563 + 37: 10563 + 39: 10563 + 2: _ZN9oceanbase3sql15ObMultiStmtItem5resetEv:190665 + 2: 10035 + 3: 10035 + 30: _ZN9oceanbase5share21ObFeedbackRerouteInfo5resetEv:0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 2: _ZN9oceanbase6common6ObAddr5resetEv:0 + 2: 0 + 31: _ZN9oceanbase3lib7ObLabelC2IPKcEERKT_:0 + 2: _ZN9oceanbase3lib7ObLabelaSIPKcvEERS1_T_:0 + 2: 0 + 31.3: _ZN9oceanbase6common16ObClassAllocatorINS_5share21ObFeedbackRerouteInfoEE3getElNS0_14ObMemCacheTypeERKNS_3lib7ObLabelElb:0 + 7.1: 0 + 8: 0 + 9: 0 + 13.1: 0 + 14.1: 0 + 18: 0 + 26: 0 + 9.1: _ZN9oceanbase6common16ObClassAllocatorINS_5share21ObFeedbackRerouteInfoEEC2Ev:0 + 0: 0 + 0: _ZN9oceanbase6common19ObFixedMemAllocatorC2Ev:0 + 0: 0 + 11.1: _ZN9oceanbase6common19ObFixedMemAllocator4initEPKclllNS0_14ObMemCacheTypeEbRKNS_3lib7ObLabelE:0 + 7: 0 + 7.1: _ZN9oceanbase6common19ObFixedMemAllocator4initERNS0_17ObObjFreeListListEPKclllNS0_14ObMemCacheTypeEbRKNS_3lib7ObLabelE:0 + 11: 0 + 14.1: 0 + 34: _ZN9oceanbase3sql8ObSqlCtx5clearEv:2332320 + 8: 10945 _ZN9oceanbase3sql13ObBaselineKey5resetEv:11052 + 2: _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql20ObTablePartitionInfoENS0_12ObIAllocatorEE5resetEv:359380 + 0: 10268 + 0: _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql20ObTablePartitionInfoENS0_12ObIAllocatorEE7destroyEv:112948 + 2: 10268 + 5: 0 + 9: 0 + 10: 0 + 12: 0 + 13: 0 + 15: 0 + 3: _ZN9oceanbase6common16ObFixedArrayImplINS0_8ObStringENS0_12ObIAllocatorEE5resetEv:372295 + 0: 10637 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS0_8ObStringENS0_12ObIAllocatorEE7destroyEv:117007 + 2: 10637 + 5: 0 + 9: 0 + 10: 0 + 12: 0 + 13: 0 + 15: 0 + 4: _ZN9oceanbase6common16ObFixedArrayImplINS_3sql18LocationConstraintENS0_12ObIAllocatorEE5resetEv:377580 + 0: 10788 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS_3sql18LocationConstraintENS0_12ObIAllocatorEE7destroyEv:118668 + 2: 10788 + 5: 0 + 9: 0 + 10: 0 + 12: 0 + 13: 0 + 15: 0 + 5: _ZN9oceanbase6common16ObFixedArrayImplIPNS0_9ObSEArrayIlLl4ENS0_19ModulePageAllocatorELb1EEENS0_12ObIAllocatorEE5resetEv:382550 + 0: 10930 + 0: _ZN9oceanbase6common16ObFixedArrayImplIPNS0_9ObSEArrayIlLl4ENS0_19ModulePageAllocatorELb1EEENS0_12ObIAllocatorEE7destroyEv:120230 + 2: 10930 + 5: 0 + 9: 0 + 10: 0 + 12: 0 + 13: 0 + 15: 0 + 6: _ZN9oceanbase6common16ObFixedArrayImplIPNS0_9ObSEArrayIlLl4ENS0_19ModulePageAllocatorELb1EEENS0_12ObIAllocatorEE5resetEv:382270 + 0: 10922 + 0: _ZN9oceanbase6common16ObFixedArrayImplIPNS0_9ObSEArrayIlLl4ENS0_19ModulePageAllocatorELb1EEENS0_12ObIAllocatorEE7destroyEv:120142 + 2: 10922 + 5: 0 + 9: 0 + 10: 0 + 12: 0 + 13: 0 + 15: 0 + 7: _ZN9oceanbase6common16ObFixedArrayImplIlNS0_12ObIAllocatorEE5resetEv:370685 + 0: 10591 + 0: _ZN9oceanbase6common16ObFixedArrayImplIlNS0_12ObIAllocatorEE7destroyEv:116501 + 2: 10591 + 5: 0 + 9: 0 + 10: 0 + 12: 0 + 13: 0 + 15: 0 +_ZN9oceanbase3sql13ObTableScanOp25prepare_single_scan_rangeEl:4353194:4558 + 1: 4252 + 2: 4252 + 5: 4252 + 6: 4252 + 7.1: 4252 _ZN9oceanbase3sql13ObExecContext13get_allocatorEv:4314 + 9.2: 4323 + 10.1: 2 + 11.4: 4323 + 14: 2 + 15: 2 + 15.1: 2 + 16: 2 + 17.1: 2 + 18.3: 2 + 18.4: 2 + 23.1: 2 + 26.1: 4323 + 28.2: 4323 + 28.3: 4595 + 28.4: 4595 + 28.6: 4595 _ZN9oceanbase3sql18ObBasicSessionInfo17create_dtc_paramsEPKS1_:4689 + 28.7: 4567 _ZN9oceanbase3sql10ObSQLUtils23extract_pre_query_rangeERKNS0_12ObQueryRangeERNS_6common12ObIAllocatorERNS0_13ObExecContextERNS5_9ObSEArrayIPNS5_10ObNewRangeELl1ENS5_19ModulePageAllocatorELb0EEENSA_IbLl2ESD_Lb1EEERKNS5_20ObDataTypeCastParamsE:4575 + 28.8: 4474 _ZN9oceanbase6common13ObSEArrayImplIbLl2ENS0_19ModulePageAllocatorELb1EED2Ev:4692 + 28.9: 2 + 35.1: 2 + 38.1: 4166 + 38.3: 8545 + 38.4: 8545 + 38.6: 4166 + 39.1: 4166 + 40.1: 4166 + 41: 4166 + 42.2: 4166 + 43.1: 2 + 46.2: 4447 + 47.2: 2 + 47.3: 2 + 47.4: 2 + 47.6: 2 + 49.1: 4370 _ZZN9oceanbase3sql13ObTableScanOp25prepare_single_scan_rangeElENK5$_224clEPKc.4dcb63e5b90b62777233554860a5c667:4582 + 50: 4741 + 51.15: 4741 _ZN9oceanbase6common13ObSEArrayImplIbLl2ENS0_19ModulePageAllocatorELb1EED2Ev:4894 + 51.19: 2 + 51.20: 2 + 51.22: 4813 _ZN9oceanbase6common13ObSEArrayImplIPNS0_10ObNewRangeELl1ENS0_19ModulePageAllocatorELb0EED2Ev:4979 + 3: _ZN9oceanbase6common9ObSEArrayIPNS0_10ObNewRangeELl1ENS0_19ModulePageAllocatorELb0EEC2Ev:710084 + 0.1: 4252 + 0.5: _ZN9oceanbase6common13ObSEArrayImplIPNS0_10ObNewRangeELl1ENS0_19ModulePageAllocatorELb0EEC2ElRKS4_:633548 + 2: 4252 + 5: 4252 + 6: 4252 + 8: 4252 + 17.1: 4252 + 2: _ZN9oceanbase6common8ObIArrayIPNS0_10ObNewRangeEEC2EPS3_l:76536 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS0_10ObNewRangeEEC2EPS3_l:76536 + 0: 4252 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:242364 + 0: 4252 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:106300 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:106300 + 2: 4252 + 8: 4252 + 4: _ZN9oceanbase6common9ObSEArrayIbLl2ENS0_19ModulePageAllocatorELb1EEC2Ev:574020 + 0.1: 4252 + 0.5: _ZN9oceanbase6common13ObSEArrayImplIbLl2ENS0_19ModulePageAllocatorELb1EEC2ElRKS2_:497484 + 2: 4252 + 5: 4252 + 6: 4252 + 8: 4252 + 17.1: 4252 + 2: _ZN9oceanbase6common8ObIArrayIbEC2EPbl:76536 + 0: _ZN9oceanbase6common12ObIArrayWrapIbEC2EPbl:76536 + 0: 4252 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:136064 + 0: 4252 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:76536 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:76536 + 2: 4252 + 8: 4252 + 5: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:29764 + 2: 4252 + 9: _ZNK9oceanbase3sql17ObPhysicalPlanCtx15get_param_storeEv:21615 + 0: 4323 + 9.1: _ZN9oceanbase3sql13ObTableScanOp28single_equal_scan_check_typeERKNS_6common9Ob2DArrayINS2_10ObObjParamELi2079744ENS2_18ObWrapperAllocatorELb0ENS2_9ObSEArrayIPS4_Ll1ES5_Lb0EEEEERb:173158 + 6.1: 2 + 6.3: 4323 + 6.4: 4323 + 8: 2 + 10.1: 2 + 10.2: 2 + 12.1: 2 + 14: 2 + 14.1: 2 + 14.2: 2 + 15: 2 + 15.1: 2 + 5: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:99429 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:99429 + 0: 4323 + 7: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql12ObQueryRange10ObEqualOffEE2atEl:14 + 6: 2 + 14.3: _ZNK9oceanbase6common5ObObj8get_typeEv:6 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:6 + 0: 2 + 15.2: _ZNK9oceanbase6common5ObObj7is_nullEv:12 + 0: _ZNK9oceanbase6common9ObObjMeta7is_nullEv:12 + 0: 2 + 11.3: _ZNK9oceanbase3sql12ObQueryRange16get_is_equal_andEv:38907 + 0: 4323 + 26: _ZNK9oceanbase3sql13ObTableScanOp18need_extract_rangeEv:56217 + 0: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:17310 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:17310 + 0: 4323 + 0.1: _ZNK9oceanbase3sql12ObQueryRange9has_rangeEv:38907 + 0: 4323 + 28.2: _ZN9oceanbase6common9ObSEArrayIbLl2ENS0_19ModulePageAllocatorELb1EEC2ERKS3_:881278 + 0: 4595 + 0: _ZN9oceanbase6common13ObSEArrayImplIbLl2ENS0_19ModulePageAllocatorELb1EEC2ERKS3_:830733 + 2: 4323 + 3: 4323 + 4: 4323 + 8: 4323 + 10: 4323 + 2: _ZN9oceanbase6common8ObIArrayIbEC2EPbl:30261 + 0: _ZN9oceanbase6common12ObIArrayWrapIbEC2EPbl:30261 + 0: 4323 + 7.1: _ZN9oceanbase6common19ModulePageAllocatorC2ERKNS_3lib7ObLabelEll:198858 + 3: 4323 + 4: 4323 + 5: 4323 + 6: 4323 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:82137 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:82137 + 2: 4323 + 8: 4323 + 16: _ZN9oceanbase6common13ObSEArrayImplIbLl2ENS0_19ModulePageAllocatorELb1EEaSERKS3_:260097 + 7: 4323 _ZN9oceanbase6common13ObSEArrayImplIbLl2ENS0_19ModulePageAllocatorELb1EE7reserveEl:4422 + 8: 0 + 8.1: 4567 + 8.3: 4558 + 8.5: 0 + 9: 0 + 13: 4567 + 14: 4567 + 15: 4595 + 5: _ZN9oceanbase6common13ObSEArrayImplIbLl2ENS0_19ModulePageAllocatorELb1EE5reuseEv:121044 + 8: 4323 + 9: 4323 + 6: _ZNK9oceanbase6common12ObIArrayWrapIbE5countEv:30261 + 0: 4323 + 9: _ZN9oceanbase6common16construct_assignIbEEiRT_RKS2_:0 + 2: _ZN9oceanbase6common21construct_assign_wrapIbEEiRT_RKS2_NS0_8BoolTypeILb0EEE:0 + 2: 0 + 28.3: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:32165 + 2: 4595 + 39: _ZN9oceanbase6common12ObIArrayWrapIPNS0_10ObNewRangeEE2atEl:29162 + 6: 4166 + 40: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:16664 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:16664 + 0: 4166 + 42: _ZN9oceanbase3sql12get_my_inputINS0_13ObTableScanOpEEERNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE5InputERKS5_:29162 + 7: _ZNK9oceanbase3sql10ObOperator9get_inputEv:29162 + 0: 4166 + 42.1: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObNewRangeELl1ENS0_19ModulePageAllocatorELb0EE9push_backERKS2_:250006 + 5: 4166 + 6: 2 + 12: 2 + 15: 2 + 15.1: 4166 + 16: 4166 + 15.1: _ZN9oceanbase6common9ObClassOpINS0_10ObNewRangeELb0EE20construct_and_assignERKS2_RS2_:154142 + 3: _ZN9oceanbase6common16construct_assignINS0_10ObNewRangeEEEiRT_RKS3_:154142 + 2: _ZN9oceanbase6common21construct_assign_wrapINS0_10ObNewRangeEEEiRT_RKS3_NS0_8BoolTypeILb0EEE:154142 + 2: 4166 + 46.1: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:17788 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:17788 + 0: 4447 + 47.2: _ZN9oceanbase3sql12get_my_inputINS0_13ObTableScanOpEEERNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE5InputERKS5_:14 + 7: _ZNK9oceanbase3sql10ObOperator9get_inputEv:14 + 0: 2 +_ZN9oceanbase3sql13ObTableScanOp21init_table_scan_rtdefEv:4340389:4613 + 1: 4150 + 2: 4150 + 3: 4150 + 11: 4150 + 13: 4117 + 14.1: 4117 + 15: 57 + 15.1: 57 + 16.1: 57 + 17.1: 57 + 18: 57 + 22: 57 + 22.1: 4117 + 23: 59 + 23.1: 59 + 24.1: 59 + 25.1: 59 + 26: 59 + 27.1: 59 + 28: 59 + 31: 59 + 32: 4020 + 34: 4020 + 36: 4509 + 37.1: 59 + 38.1: 4509 + 38.3: 4509 + 39: 4509 + 42: 59 + 42.1: 4509 + 44: 59 + 45: 59 + 46.1: 57 + 48: 59 + 49: 59 + 50.1: 57 + 54: 4509 + 3: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:29050 + 2: 4150 + 4: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:29050 + 2: 4150 + 7: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:29050 + 0: 4150 + 9: _ZN9oceanbase3sql8ObDASRef12set_mem_attrERKNS_3lib9ObMemAttrE:215800 + 0: _ZN9oceanbase6common26ObWrapperAllocatorWithAttr8set_attrERKNS_3lib9ObMemAttrE:215800 + 0: 4150 + 10: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:16600 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:16600 + 0: 4150 + 10.1: _ZN9oceanbase3sql14ObPhysicalPlan19get_expr_frame_infoEv:16600 + 0: 4150 + 10.2: _ZN9oceanbase3sql8ObDASRef19set_expr_frame_infoEPKNS0_15ObExprFrameInfoE:33200 + 0: 4150 + 11.1: _ZN9oceanbase3sql8ObDASRef20set_execute_directlyEb:112050 + 0: 4150 + 12: _ZNK9oceanbase3sql17ObPhysicalPlanCtx12get_phy_planEv:29050 + 2: 4150 + 12.1: _ZN9oceanbase3sql13ObTableScanOp14set_cache_statERKNS0_10ObPlanStatE:454597 + 4: 4150 + 5: 4150 + 9: 59 + 14: 59 + 21: 4150 + 22: 4150 + 23: 3283 + 6: _ZN9oceanbase6common11ObQueryFlag17set_use_row_cacheEv:33200 + 0: 4150 + 7: _ZN9oceanbase6common11ObQueryFlag25set_use_bloomfilter_cacheEv:29050 + 0: 4150 + 15: _ZN9oceanbase6common11ObQueryFlag17set_use_row_cacheEv:413 + 0: 59 + 17: _ZN9oceanbase6common11ObQueryFlag21set_not_use_row_cacheEv:531 + 0: 59 + 26: _ZN9oceanbase6common11ObQueryFlag26set_not_use_fuse_row_cacheEv:684 + 0: 57 + 22.1: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:20585 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:20585 + 0: 4117 + 32: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:20100 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:20100 + 0: 4020 + 36: _ZN9oceanbase3sql13ObTableScanOp19init_das_scan_rtdefERKNS0_14ObDASScanCtDefERNS0_14ObDASScanRtDefEPKNS0_17ObDASTableLocMetaE:2383758 + 4: 4020 + 6: 4020 + 7: 4020 + 9: 4020 + 12: 4020 + 13: 4020 + 14: 4020 + 15: 4020 + 16: 4020 + 17: 59 + 19: 4020 + 20: 4020 + 23: 4020 + 24: 4020 + 29: 4020 + 31: 4020 + 32: 4020 + 34: 4238 _ZN9oceanbase3sql14ObDASScanRtDef10init_pd_opERNS0_13ObExecContextERKNS0_14ObDASScanCtDefE:4333 + 35.1: 59 + 39: 59 + 41: 4238 + 44: 4238 + 45.1: 59 + 48: 4238 + 48.2: 6 + 49: 6 + 50.1: 6 + 52: 4450 + 53: 4450 + 54: 4509 + 54.1: 4450 _ZN9oceanbase3sql8ObDASCtx19get_table_loc_by_idEmm:4527 + 55: 4509 + 56: 59 + 57: 57 + 58.1: 57 + 60.1: 59 + 60.2: 59 + 61.1: 59 + 65: 4509 + 7.2: _ZNK9oceanbase3sql15ObTableScanSpec13is_index_backEv:12060 + 0: 4020 + 8.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE5emptyEv:969 + 0: 57 + 9: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:56280 + 2: 4020 + 10: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:28140 + 2: 4020 + 12: _ZNK9oceanbase3sql17ObPhysicalPlanCtx24get_ps_timeout_timestampEv:16080 + 2: 4020 + 13: _ZNK9oceanbase3sql18ObBasicSessionInfo20get_trx_lock_timeoutEv:156780 + 2: 4020 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache23get_ob_trx_lock_timeoutEv:144720 + 0: 4020 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache23get_ob_trx_lock_timeoutEb:92460 + 0: 4020 + 15: _ZNK9oceanbase3sql17ObPhysicalPlanCtx13get_show_seedEv:28140 + 0: 4020 + 20: _ZNK9oceanbase3sql18ObBasicSessionInfo12get_sql_modeEv:140700 + 0: 4020 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache12get_sql_modeEv:128640 + 0: 4020 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache12get_sql_modeEb:92460 + 0: 4020 + 21: _ZN9oceanbase3sql8ObDASRef13get_das_allocEv:32160 + 0: 4020 + 21.1: _ZN9oceanbase6common18ObWrapperAllocator9set_allocEPNS0_12ObIAllocatorE:60300 + 0: 4020 + 22.1: _ZN9oceanbase6common18ObWrapperAllocator9set_allocEPNS0_12ObIAllocatorE:32160 + 0: 4020 + 23: _ZN9oceanbase3sql10ObOperator12get_eval_ctxEv:36180 + 0: 4020 + 40: _ZNK9oceanbase3sql17ObTaskExecutorCtx37get_query_tenant_begin_schema_versionEv:29666 + 2: 4238 + 44: _ZNK9oceanbase3sql13FlashBackItem24set_flashback_query_infoERNS0_9ObEvalCtxERNS0_14ObDASScanRtDefE:382682 + 2: 4238 + 3: 4238 + 4: 4238 + 5: 4238 + 6: 4238 + 7: 4238 + 9.1: 57 + 10: 57 + 11.1: 57 + 12.1: 57 + 13.1: 57 + 14.1: 57 + 15: 57 + 16.1: 57 + 18: 57 + 19: 57 + 20: 57 + 21.1: 57 + 24: 57 + 25.1: 57 + 28: 57 + 29: 57 + 30.1: 57 + 32: 57 + 33.1: 57 + 37: 57 + 38: 57 + 44: 4238 + 45: 4238 + 46: 4238 + 47: 59 + 12.1: _ZNK9oceanbase3sql6ObExpr4evalERNS0_9ObEvalCtxERPNS_6common7ObDatumE:11571 + 4: 57 + 6: 57 + 7: 57 + 9: 57 + 10: 57 + 10.1: 57 + 11: 57 + 13: 57 + 15.1: 57 + 15.2: 57 + 17: 57 + 18: 57 + 20: 57 + 21: 57 + 22: 57 + 9: _ZNK9oceanbase3sql6ObExpr15is_batch_resultEv:285 + 0: 57 + 11: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:285 + 0: 57 + 24: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:399 + 0: 57 + 14.1: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:228 + 0: 57 + 24: _ZNK9oceanbase6common7ObDatum17get_otimestamp_tzEv:171 + 0: 57 + 32: _ZNK9oceanbase6common7ObDatum7get_intEv:570 + 0: 57 + 48.2: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:30 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:30 + 0: 6 + 53: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:22250 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:22250 + 0: 4450 + 53.1: _ZNK9oceanbase3sql15ObTableScanSpec16get_table_loc_idEv:31150 + 0: 4450 + 54: _ZN9oceanbase3sql13ObExecContext11get_das_ctxEv:22250 + 0: 4450 + 60.1: _ZN9oceanbase3sql13ObExecContext11get_das_ctxEv:295 + 0: 59 + 38.1: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:22545 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:22545 + 0: 4509 + 38.3: _ZNK9oceanbase3sql13ObDASTableLoc5emptyEv:22545 + 0: 4509 + 39: _ZN9oceanbase6common6ObListIPNS_3sql14ObDASTabletLocENS0_12ObIAllocatorEE9get_firstEv:18036 + 0: 4509 + 39.1: _ZN9oceanbase3sql12get_my_inputINS0_13ObTableScanOpEEERNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE5InputERKS5_:36072 + 7: _ZNK9oceanbase3sql10ObOperator9get_inputEv:36072 + 0: 4509 + 42.1: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:22545 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:22545 + 0: 4509 + 49: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:295 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:295 + 0: 59 + 49.1: _ZN9oceanbase3sql13ObTableScanOp19init_das_scan_rtdefERKNS0_14ObDASScanCtDefERNS0_14ObDASScanRtDefEPKNS0_17ObDASTableLocMetaE:43591 + 4: 59 + 6: 59 + 7: 59 + 9: 59 + 12: 59 + 13: 59 + 14: 59 + 15: 59 + 16: 59 + 17: 59 + 19: 59 + 20: 59 + 23: 59 + 24: 59 + 29: 59 + 31: 59 + 32: 59 + 34: 59 + 35.1: 57 + 39: 57 + 41: 59 + 44: 59 + 45.1: 57 + 48: 59 + 48.2: 59 + 49: 59 + 50.1: 59 + 52: 59 + 53: 59 + 54: 59 + 54.1: 59 + 55: 59 + 56: 57 + 57: 57 + 58.1: 57 + 60.1: 57 + 60.2: 57 + 61.1: 57 + 65: 59 + 7.2: _ZNK9oceanbase3sql15ObTableScanSpec13is_index_backEv:177 + 0: 59 + 8.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE5emptyEv:1003 + 0: 59 + 9: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:413 + 2: 59 + 10: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:826 + 2: 59 + 12: _ZNK9oceanbase3sql17ObPhysicalPlanCtx24get_ps_timeout_timestampEv:236 + 2: 59 + 13: _ZNK9oceanbase3sql18ObBasicSessionInfo20get_trx_lock_timeoutEv:2891 + 2: 59 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache23get_ob_trx_lock_timeoutEv:2714 + 0: 59 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache23get_ob_trx_lock_timeoutEb:1062 + 0: 59 + 14: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:295 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:295 + 0: 59 + 15: _ZNK9oceanbase3sql17ObPhysicalPlanCtx13get_show_seedEv:413 + 0: 59 + 19: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:295 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:295 + 0: 59 + 20: _ZNK9oceanbase3sql18ObBasicSessionInfo12get_sql_modeEv:2065 + 0: 59 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache12get_sql_modeEv:1888 + 0: 59 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache12get_sql_modeEb:1062 + 0: 59 + 21.1: _ZN9oceanbase6common18ObWrapperAllocator9set_allocEPNS0_12ObIAllocatorE:413 + 0: 59 + 22.1: _ZN9oceanbase6common18ObWrapperAllocator9set_allocEPNS0_12ObIAllocatorE:649 + 0: 59 + 31: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:295 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:295 + 0: 59 + 32: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:295 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:295 + 0: 59 + 40: _ZNK9oceanbase3sql17ObTaskExecutorCtx37get_query_tenant_begin_schema_versionEv:413 + 2: 59 + 48.2: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:295 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:295 + 0: 59 + 53: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:295 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:295 + 0: 59 + 53.1: _ZNK9oceanbase3sql15ObTableScanSpec16get_table_loc_idEv:413 + 0: 59 + 54: _ZN9oceanbase3sql13ObExecContext11get_das_ctxEv:295 + 0: 59 + 60.1: _ZN9oceanbase3sql13ObExecContext11get_das_ctxEv:285 + 0: 57 +_ZN9oceanbase3sql10ObOperator4openEv:4283765:6670 + 1: 6462 + 2: 6462 + 3: 6471 _ZNK9oceanbase3sql15ObTableModifyOp23get_operator_open_orderEv:1136 + 4: 6471 + 25: 6665 + 27: 6693 + 28.1: 13990 + 28.3: 13990 + 29: 13354 + 32.1: 7007 + 32.2: 9199 + 32.3: 9199 + 32.5: 2337 + 34: 2276 _ZN9oceanbase3sql10ObOperator4openEv:2148 + 36.1: 0 + 40: 7335 + 46: 5949 + 47.1: 0 + 48.1: 6789 + 49.1: 0 + 50.1: 6793 _ZN9oceanbase3sql13ObTableScanOp10inner_openEv:4568 _ZN9oceanbase3sql15ObTableUpdateOp10inner_openEv:551 _ZN9oceanbase3sql8ObSortOp10inner_openEv:544 _ZN9oceanbase3sql15ObTableDeleteOp10inner_openEv:288 _ZN9oceanbase3sql16ObHashDistinctOp10inner_openEv:285 _ZN9oceanbase3sql15ObTableInsertOp10inner_openEv:278 _ZN9oceanbase3sql14ObExprValuesOp10inner_openEv:267 _ZN9oceanbase3sql19ObScalarAggregateOp10inner_openEv:265 _ZN9oceanbase3sql17ObMergeDistinctOp10inner_openEv:5 + 52.1: 0 + 55: 6793 + 63: 0 + 64.1: 0 + 68: 6998 + 69: 6998 + 71: 6998 + 73: 52 + 74: 52 + 75: 52 + 81: 6928 + 4: _ZNK9oceanbase3sql8ObOpSpec13is_vectorizedEv:51768 + 0: 6471 + 23: _ZN9oceanbase3sql9ObEvalCtx13set_batch_idxEl:103060 + 5: 6433 + 25: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:46655 + 2: 6665 + 25.1: _ZNK9oceanbase3sql16ObSQLSessionInfo15is_user_sessionEv:46655 + 0: 6665 + 26: _ZN9oceanbase3sql10ObOperator28try_register_rt_monitor_nodeEl:115287 + 2: 6665 + 3: 6866 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:6782 + 5.1: 6 + 5.2: 0 + 9: 35 + 12: 35 + 13: 35 + 13.1: 35 + 15.1: 35 + 15.2: 35 + 16.1: 0 + 18: 35 + 5.1: _ZN9oceanbase3sql13ObExecContext29is_rt_monitor_node_registeredEv:48 + 0: 6 + 6: _ZN9oceanbase3sql10ObOperator26match_rt_monitor_conditionEl:1085 + 3: 35 + 4.1: 35 + 6.1: 0 + 10: 0 + 11: 0 + 13: 0 + 12: _ZN9oceanbase6common16ObClockGenerator8getClockEv:0 + 4: 0 + 5.1: 0 + 8: 0 + 6: _ZN9oceanbase6common16ObClockGenerator6get_usEv:0 + 2: 0 + 13: _ZNK9oceanbase3sql13ObExecContext19get_plan_start_timeEv:0 + 0: 0 + 7: _ZN9oceanbase5share11ObTenantEnv3mtlIPNS_3sql21ObPlanMonitorNodeListEEET_v:1120 + 2: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:595 + 2: 35 + 2.1: 0 + 2.2: 0 + 2.1: _ZN9oceanbase5share12ObTenantBase3getIPNS_3sql21ObPlanMonitorNodeListEEET_v:525 + 0: _ZN9oceanbase5share12ObTenantBase9inner_getENS1_8IdentityIPNS_3sql21ObPlanMonitorNodeListEEE:525 + 0: 35 + 12: _ZNK9oceanbase3sql13ObExecContext16get_operator_kitEm:700 + 2: _ZNK9oceanbase3sql12ObOpKitStore16get_operator_kitEm:700 + 2: 35 + 2.1: 35 + 15.1: _ZN9oceanbase3sql10ObOperator16get_monitor_infoEv:245 + 0: 35 + 18: _ZN9oceanbase3sql13ObExecContext18set_register_op_idEl:420 + 0: 35 + 46: _ZN9oceanbase3sql10ObOperator20init_evaluated_flagsEv:697521 + 2: 6667 + 3: 6667 + 4: 786 + 5.1: 0 + 7.1: 786 + 7.3: 31 + 8: 743 + 12: 0 + 3: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE5emptyEv:66670 + 0: 6667 + 0: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE5countEv:46669 + 0: 6667 + 4.1: _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql10ObEvalInfoENS0_12ObIAllocatorEE16prepare_allocateEl:369593 + 2: 759 + 3: 759 + 4: 0 + 5.1: 0 + 5.5: 0 + 5.9: 0 + 6.1: 759 + 7.1: 0 + 7.5: 0 + 7.9: 0 + 9: 0 + 10: 759 + 10.1: 773 + 10.3: 773 + 11: 773 + 14: 786 + 14.3: 786 + 15: 786 + 15.3: 786 + 5.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 5.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 6.1: _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql10ObEvalInfoENS0_12ObIAllocatorEE7reserveEl:221628 + 2: 759 + 6.1: 759 + 7: 759 + 8.1: 0 + 8.5: 0 + 8.9: 0 + 11: 0 + 11.1: 759 + 12: 0 + 13.1: 0 + 13.5: 0 + 13.11: 0 + 17: 759 + 7: _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql10ObEvalInfoENS0_12ObIAllocatorEE4initEl:187473 + 2: 759 + 9.1: 759 + 10: 0 + 11.1: 0 + 11.5: 0 + 11.9: 0 + 15: 759 + 16: 759 + 17: 0 + 18: 0 + 19.1: 0 + 21: 759 + 22: 759 + 23: 759 + 26: 759 + 11.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 11.8: _ZN9oceanbase6common7ObLogKVIRKPNS0_12ObIAllocatorELb0EEC2EPKcS5_:0 + 0: 0 + 16: _ZN9oceanbase6common16ObArenaAllocator5allocEl:97911 + 0: 759 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13alloc_alignedEll:94875 + 3: 759 + 6: 759 + 7: 759 + 8: 759 + 10: 759 + 11: 759 + 12: 759 + 13: 759 + 15.1: 0 + 16: 0 + 18: 0 + 20: 0 + 24: 0 + 28: 0 + 35: 759 + 36: 759 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE15ensure_cur_pageEv:12903 + 2: 759 + 3: 0 + 5.1: 0 + 8: 0 + 9: 0 + 10: 0 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:0 + 2: 0 + 2.2: 0 + 2.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 9: _ZSt3maxIlERKT_S2_S2_:0 + 5: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 8: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:0 + 0: 0 + 7: _ZN9oceanbase6common16get_align_offsetEPvl:9867 + 3: 759 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:5313 + 0: 759 + 11: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:5313 + 7: 759 + 15.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE18is_normal_overflowEl:0 + 2: 0 + 16: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11extend_pageEl:0 + 4: 0 + 5: 0 + 8: 0 + 9: 0 + 10.1: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 12: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_tailEPNS3_4PageE:0 + 2: 0 + 3: 0 + 5: 0 + 23.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16lookup_next_pageEl:0 + 3.1: 0 + 4.1: 0 + 5: 0 + 5.1: 0 + 7: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page10reuse_sizeEv:0 + 0: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 32: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9alloc_bigEl:0 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 3: 0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_headEPNS3_4PageE:0 + 4: 0 + 5: 0 + 7: 0 + 7: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:0 + 3: 0 + 8.1: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 8.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 8.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 13.1: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 13.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 13.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 13.10: _ZN9oceanbase6common7ObLogKVIRKjLb0EEC2EPKcS3_:0 + 0: 0 + 7.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 7.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 8: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:14322 + 6: 743 + 8.1: _ZNK9oceanbase3sql6ObExpr13get_eval_infoERNS0_9ObEvalCtxE:30690 + 2: 743 + 8.2: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql10ObEvalInfoEE2atEl:10230 + 6: 743 + 48.1: _ZN9oceanbase3sql10ObOperator16init_skip_vectorEv:203373 + 2: 6691 + 3: 6691 + 3.1: 15 + 5: 15 + 10: 15 + 10.2: 15 + 11: 0 + 12: 0 + 13.1: 0 + 15: 15 + 19: 6789 + 3: _ZNK9oceanbase3sql8ObOpSpec12get_phy_planEv:26764 + 0: 6691 + 3.2: _ZNK9oceanbase3sql14ObPhysicalPlan13is_vectorizedEv:53528 + 0: 6691 + 10: _ZN9oceanbase3sql13ObExecContext13get_allocatorEv:105 + 2: 15 + 10.1: _ZN9oceanbase3sql11ObBitVector11memory_sizeEl:345 + 2: 15 + 2: _ZN9oceanbase3sql11ObBitVector10word_countEl:285 + 2: 15 + 10.2: _ZN9oceanbase6common16ObArenaAllocator5allocEl:2025 + 0: 15 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13alloc_alignedEll:1965 + 3: 15 + 6: 15 + 7: 15 + 8: 15 + 10: 15 + 11: 15 + 12: 15 + 13: 15 + 15.1: 0 + 16: 0 + 18: 0 + 20: 0 + 28: 0 + 35: 15 + 36: 15 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE15ensure_cur_pageEv:195 + 2: 15 + 3: 0 + 5.1: 0 + 8: 0 + 9: 0 + 10: 0 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:0 + 2: 0 + 2.2: 0 + 2.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 9: _ZSt3maxIlERKT_S2_S2_:0 + 5: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 8: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:0 + 0: 0 + 7: _ZN9oceanbase6common16get_align_offsetEPvl:195 + 3: 15 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:105 + 0: 15 + 11: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:105 + 7: 15 + 15.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE18is_normal_overflowEl:0 + 2: 0 + 16: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11extend_pageEl:0 + 4: 0 + 5: 0 + 8: 0 + 9: 0 + 10.1: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 12: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_tailEPNS3_4PageE:0 + 2: 0 + 3: 0 + 5: 0 + 23.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16lookup_next_pageEl:0 + 3.1: 0 + 4.1: 0 + 5: 0 + 5.1: 0 + 7: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page10reuse_sizeEv:0 + 0: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 32: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9alloc_bigEl:0 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 3: 0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_headEPNS3_4PageE:0 + 4: 0 + 5: 0 + 7: 0 + 7: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:0 + 3: 0 + 16: _ZN9oceanbase3sql11ObBitVector4initEl:150 + 0: 15 + 70: _ZN9oceanbase3sql10ObOperator20clear_batch_end_flagEv:62982 + 0: 6998 + 71: _ZNK9oceanbase3sql8ObOpSpec13is_vectorizedEv:55984 + 0: 6998 + 72: _ZN9oceanbase3sql14ObBatchRowIter12set_operatorEPNS0_10ObOperatorE:416 + 0: 52 +_ZN9oceanbase7storage19ObTableScanIterator9open_iterEv:4263841:4684 + 1: 4420 + 2: 4420 + 4: 4420 + 5: 0 + 6.1: 0 + 7.1: 4420 + 10: 4420 + 11: 4420 + 12: 4420 + 13: 4420 + 14: 3354 + 15.1: 3354 + 15.2: 3268 + 15.4: 0 + 15.7: 3301 + 15.9: 0 + 15.12: 3301 + 16: 3301 + 17: 3301 + 20.1: 0 + 20.2: 0 + 20.4: 0 + 20.7: 0 + 20.9: 0 + 20.12: 0 + 20.15: 0 + 23: 1051 + 24: 1051 + 25: 0 + 25.1: 0 + 26.1: 0 + 27.1: 0 + 27.3: 0 + 31.1: 0 + 32.1: 0 + 33.1: 0 + 34.1: 0 + 35: 0 + 36: 0 + 37: 0 + 38.1: 0 + 40: 0 + 44: 0 + 45.1: 0 + 45.4: 0 + 50.1: 0 + 52: 0 + 53: 0 + 57.1: 1051 + 57.2: 906 + 57.4: 0 + 57.7: 1056 + 57.9: 0 + 57.12: 1056 + 60.1: 0 + 60.2: 0 + 60.4: 0 + 60.7: 0 + 60.9: 0 + 60.12: 0 + 60.15: 0 + 64: 4317 + 65: 4317 + 66: 0 + 67.1: 0 + 68: 0 + 69.1: 0 + 70.1: 0 + 70.3: 0 + 71.1: 0 + 73: 0 + 74: 0 + 76: 0 + 77.1: 0 + 78: 0 + 79: 0 + 80.1: 0 + 82: 0 + 85: 0 + 86.1: 0 + 89: 0 + 98: 4410 + 7.1: _ZNK9oceanbase7storage16ObTableScanRange8is_emptyEv:44200 + 0: 4420 + 13: _ZNK9oceanbase7storage16ObTableScanRange6is_getEv:13260 + 0: 4420 + 15.2: _ZN9oceanbase7storage19ObTableScanIterator14init_scan_iterINS0_13ObSingleMergeEEEiRPT_:397513 + 2: 3354 + 5: 3371 _ZN9oceanbase6common26ObWrapperAllocatorWithAttr5allocEl:3417 + 6: 0 + 7.1: 0 + 9: 3379 _ZN9oceanbase7storage13ObSingleMergeC1Ev:3479 + 10: 3379 _ZN9oceanbase7storage15ObMultipleMerge4initERKNS0_18ObTableAccessParamERNS0_20ObTableAccessContextERKNS0_15ObGetTableParamE:3496 + 11.1: 0 + 12: 0 + 12.1: 3268 + 12.2: 0 + 13: 3268 + 13.1: 0 + 14: 0 + 15: 0 + 17: 0 + 18: 0 + 19: 0 + 20: 0 + 24: 3268 + 12.1: _ZNK9oceanbase6common10SampleInfo12is_no_sampleEv:22876 + 0: 3268 + 14: _ZN9oceanbase7storage15ObMultipleMerge20disable_fill_defaultEv:0 + 0: 0 + 15: _ZN9oceanbase7storage15ObMultipleMerge27disable_output_row_with_nopEv:0 + 0: 0 + 15.15: _ZNK9oceanbase6common12ObIArrayWrapINS_12blocksstable13ObDatumRowkeyEE2atEl:26144 + 6: 3268 + 15.16: _ZN9oceanbase7storage13ObSingleMerge4openERKNS_12blocksstable13ObDatumRowkeyE:1034676 + 2: 3268 + 3: 3370 + 4.1: 0 + 5.1: 0 + 6: 0 + 7.1: 0 + 10: 3370 + 10.1: 3370 _ZN9oceanbase7storage21ObFuseRowCacheFetcher4initERKNS_6common10ObTabletIDEPKNS0_15ObTableReadInfoEl:3465 + 11.1: 0 + 13: 3301 + 17: 0 + 3: _ZN9oceanbase7storage15ObMultipleMerge4openEv:713112 + 2: 3268 + 3: 3268 + 4: 0 + 5.1: 0 + 7: 3268 + 7.1: 3268 + 8: 3268 + 8.1: 3268 + 9: 3268 + 9.1: 3268 + 10: 3268 + 11: 0 + 12.1: 0 + 13: 0 + 14: 0 + 17: 0 + 18: 3268 + 20: 3370 + 20.1: 0 + 21: 0 + 22.1: 0 + 24: 3370 + 28: 3370 + 10.1: _ZNK9oceanbase7storage16ObTableIterParam16is_use_iter_poolEv:13072 + 1: 3268 + 11: _ZN9oceanbase7storage15ObMultipleMerge15alloc_iter_poolERNS_6common12ObIAllocatorE:0 + 2: 0 + 3: 0 + 5: 0 + 6: 0 + 7.1: 0 + 9: 0 + 12: 0 + 9: _ZN9oceanbase7storage18ObStoreRowIterPoolC2ERNS_6common12ObIAllocatorE:0 + 1: 0 + 2: _ZN9oceanbase6common9ObSEArrayIPNS_7storage15TableTypedItersELl8ERNS0_12ObIAllocatorELb0EECI2NS0_13ObSEArrayImplIS4_Ll8ES6_Lb0EEEElS6_:0 + 0: 0 + 0: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage15TableTypedItersELl8ERNS0_12ObIAllocatorELb0EEC2ElS6_:0 + 2: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 17.1: 0 + 2: _ZN9oceanbase6common8ObIArrayIPNS_7storage15TableTypedItersEEC2EPS4_l:0 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_7storage15TableTypedItersEEC2EPS4_l:0 + 0: 0 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:0 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:0 + 2: 0 + 8: 0 + 19: _ZN9oceanbase7storage15ObMultipleMerge5reuseEv:344240 + 4: 3268 + 6: 3268 + 7: 0 + 9: 3278 _ZN9oceanbase7storage15ObLobDataReader5reuseEv:3624 + 10: 3370 + 2: _ZN9oceanbase7storage15ObMultipleMerge16reuse_iter_arrayEv:98040 + 3: 3268 + 4.1: 0 + 4.3: 0 + 5: 0 + 6: 0 + 7: 0 + 12.1: 3268 + 12.3: 0 + 13: 0 + 14: 0 + 4.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_7storage18ObStoreRowIteratorEE5countEv:0 + 0: 0 + 5: _ZN9oceanbase6common12ObIArrayWrapIPNS_7storage18ObStoreRowIteratorEE2atEl:0 + 6: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage18ObStoreRowIteratorELl8ENS0_19ModulePageAllocatorELb0EE5reuseEv:0 + 8: 0 + 9: 0 + 12.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_7storage18ObStoreRowIteratorEE5countEv:0 + 0: 0 + 13: _ZN9oceanbase6common12ObIArrayWrapIPNS_7storage18ObStoreRowIteratorEE2atEl:0 + 6: 0 + 3: _ZN9oceanbase7storage9ObRowStat5resetEv:91504 + 0: 3268 + 5: _ZN9oceanbase12blocksstable12ObDmlRowFlag5resetEv:22876 + 2: 3268 + 5.1: _ZNK9oceanbase7storage15ObGetTableParam8is_validEv:101100 + 0: _ZNK9oceanbase7storage21ObTabletTableIterator8is_validEv:101100 + 0: 3370 + 0: _ZNK9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE8is_validEv:80880 + 2: 3370 + 2.1: 3370 + 0.1: _ZNK9oceanbase7storage20ObTableStoreIterator8is_validEv:0 + 0: 0 + 10: _ZNK9oceanbase7storage16ObTableIterParam13get_read_infoEb:13480 + 2.2: 3370 + 17: _ZNK9oceanbase7storage15ObMultipleMerge21is_read_memtable_onlyEv:19806 + 0: 3301 + 24: _ZNK9oceanbase6common10SampleInfo15is_block_sampleEv:7357 + 0: 1051 + 27.1: _ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE7get_objEv:0 + 2: 0 + 27.2: _ZNK9oceanbase8memtable15ObMvccAccessCtx20get_snapshot_versionEv:0 + 1: 0 + 45.2: _ZNK9oceanbase6common12ObIArrayWrapINS_12blocksstable12ObDatumRangeEE2atEl:0 + 6: 0 + 45.3: _ZNK9oceanbase6common11ObQueryFlag15is_reverse_scanEv:0 + 0: 0 + 57.2: _ZN9oceanbase7storage19ObTableScanIterator14init_scan_iterINS0_19ObMultipleScanMergeEEEiRPT_:387436 + 2: 1051 + 5: 1077 _ZN9oceanbase6common26ObWrapperAllocatorWithAttr5allocEl:1079 + 6: 0 + 7.1: 0 + 9: 1026 + 10: 1026 + 11.1: 0 + 12: 0 + 12.1: 906 + 12.2: 0 + 13: 906 + 13.1: 0 + 14: 0 + 15: 0 + 17: 0 + 18: 0 + 19: 0 + 20: 0 + 24: 906 + 9: _ZN9oceanbase7storage19ObMultipleScanMergeC2Ev:119220 + 0: 1077 _ZN9oceanbase7storage15ObMultipleMergeC2Ev:1108 + 2: 1026 + 6: 1026 + 9: 1026 + 1: _ZN9oceanbase7storage23ObScanMergeLoserTreeCmpC2Ev:21546 + 2: 1026 + 10: _ZN9oceanbase7storage19ObMultipleScanMerge4initERKNS0_18ObTableAccessParamERNS0_20ObTableAccessContextERKNS0_15ObGetTableParamE:151832 + 6: 1026 _ZN9oceanbase7storage15ObMultipleMerge4initERKNS0_18ObTableAccessParamERNS0_20ObTableAccessContextERKNS0_15ObGetTableParamE:1052 + 7.1: 0 + 10: 984 + 11: 0 + 12.1: 0 + 13.1: 984 + 16.1: 0 + 19: 906 + 10: _ZNK9oceanbase7storage16ObTableIterParam13get_read_infoEb:3936 + 2.2: 984 + 13.1: _ZNK9oceanbase7storage16ObTableIterParam23get_schema_rowkey_countEv:3936 + 2.1: _ZNK9oceanbase7storage15ObTableReadInfo23get_schema_rowkey_countEv:3936 + 1: 984 + 13.3: _ZNK9oceanbase6common11ObQueryFlag15is_reverse_scanEv:15744 + 0: 984 + 13.4: _ZN9oceanbase7storage23ObScanMergeLoserTreeCmp4initElRKNS_12blocksstable19ObStorageDatumUtilsEb:63146 + 2: 984 + 3: 984 + 4: 0 + 5.1: 0 + 6.1: 932 + 6.2: 932 + 7: 0 + 8.1: 0 + 10: 932 + 11: 932 + 12: 932 + 13: 932 + 15: 906 + 6.2: _ZNK9oceanbase12blocksstable19ObStorageDatumUtils16get_rowkey_countEv:2796 + 0: 932 + 12.1: _ZNK9oceanbase6common10SampleInfo12is_no_sampleEv:6342 + 0: 906 + 14: _ZN9oceanbase7storage15ObMultipleMerge20disable_fill_defaultEv:0 + 0: 0 + 15: _ZN9oceanbase7storage15ObMultipleMerge27disable_output_row_with_nopEv:0 + 0: 0 + 57.15: _ZNK9oceanbase6common12ObIArrayWrapINS_12blocksstable12ObDatumRangeEE2atEl:7248 + 6: 906 + 57.16: _ZN9oceanbase7storage19ObMultipleScanMerge4openERKNS_12blocksstable12ObDatumRangeE:1112553 + 2: 906 + 4: 906 + 5.1: 0 + 6.1: 953 + 7.1: 0 + 9: 953 + 10: 1056 + 11.1: 0 + 15: 0 + 4: _ZNK9oceanbase12blocksstable12ObDatumRange8is_validEv:23556 + 2: 906 + 2: _ZNK9oceanbase12blocksstable13ObDatumRowkey8is_validEv:4530 + 0: 906 + 2.1: _ZNK9oceanbase12blocksstable13ObDatumRowkey8is_validEv:4530 + 0: 906 + 6.1: _ZN9oceanbase7storage15ObMultipleMerge4openEv:203501 + 2: 906 + 3: 906 + 4: 0 + 5.1: 0 + 7: 906 + 7.1: 906 + 8: 906 + 8.1: 906 + 9: 906 + 9.1: 906 + 10: 906 + 11: 0 + 12.1: 0 + 13: 0 + 14: 0 + 17: 0 + 18: 906 + 20: 953 + 20.1: 0 + 21: 0 + 22.1: 0 + 24: 953 + 28: 953 + 10.1: _ZNK9oceanbase7storage16ObTableIterParam16is_use_iter_poolEv:3624 + 1: 906 + 11: _ZN9oceanbase7storage15ObMultipleMerge15alloc_iter_poolERNS_6common12ObIAllocatorE:0 + 2: 0 + 3: 0 + 5: 0 + 6: 0 + 7.1: 0 + 9: 0 + 12: 0 + 9: _ZN9oceanbase7storage18ObStoreRowIterPoolC2ERNS_6common12ObIAllocatorE:0 + 1: 0 + 2: _ZN9oceanbase6common9ObSEArrayIPNS_7storage15TableTypedItersELl8ERNS0_12ObIAllocatorELb0EECI2NS0_13ObSEArrayImplIS4_Ll8ES6_Lb0EEEElS6_:0 + 0: 0 + 0: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage15TableTypedItersELl8ERNS0_12ObIAllocatorELb0EEC2ElS6_:0 + 2: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 17.1: 0 + 2: _ZN9oceanbase6common8ObIArrayIPNS_7storage15TableTypedItersEEC2EPS4_l:0 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_7storage15TableTypedItersEEC2EPS4_l:0 + 0: 0 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:0 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:0 + 2: 0 + 8: 0 + 19: _ZN9oceanbase7storage15ObMultipleMerge5reuseEv:99807 + 4: 906 + 6: 906 + 7: 0 + 9: 973 _ZN9oceanbase7storage15ObLobDataReader5reuseEv:1000 + 10: 953 + 2: _ZN9oceanbase7storage15ObMultipleMerge16reuse_iter_arrayEv:27180 + 3: 906 + 4.1: 0 + 4.3: 0 + 5: 0 + 6: 0 + 7: 0 + 12.1: 906 + 12.3: 0 + 13: 0 + 14: 0 + 4.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_7storage18ObStoreRowIteratorEE5countEv:0 + 0: 0 + 5: _ZN9oceanbase6common12ObIArrayWrapIPNS_7storage18ObStoreRowIteratorEE2atEl:0 + 6: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage18ObStoreRowIteratorELl8ENS0_19ModulePageAllocatorELb0EE5reuseEv:0 + 8: 0 + 9: 0 + 12.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_7storage18ObStoreRowIteratorEE5countEv:0 + 0: 0 + 13: _ZN9oceanbase6common12ObIArrayWrapIPNS_7storage18ObStoreRowIteratorEE2atEl:0 + 6: 0 + 3: _ZN9oceanbase7storage9ObRowStat5resetEv:27180 + 0: 906 + 5: _ZN9oceanbase12blocksstable12ObDmlRowFlag5resetEv:7248 + 2: 906 + 10: _ZN9oceanbase7storage19ObMultipleScanMerge15construct_itersEv:815922 + 2: 953 + 7.1: 2088 + 8: 0 + 9.1: 0 + 11.1: 953 + 12: 952 + 13: 952 + 14: 952 + 16: 952 + 18: 1015 + 19.1: 0 + 20: 0 + 22: 1015 + 23: 1015 + 23.1: 2120 + 23.3: 2120 + 23.5: 2120 + 24: 2088 + 25.1: 0 + 26.1: 2088 + 27: 0 + 28.1: 0 + 29.1: 2088 + 30: 2111 _ZN9oceanbase12blocksstable9ObSSTable4scanERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS0_12ObDatumRangeERPNS2_18ObStoreRowIteratorE:1083 _ZN9oceanbase8memtable10ObMemtable4scanERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS_12blocksstable12ObDatumRangeERPNS2_18ObStoreRowIteratorE:1020 + 31.1: 0 + 32.1: 2111 + 33: 0 + 34.1: 0 + 36.1: 0 + 37: 0 + 38.1: 0 + 39.1: 0 + 40.1: 0 + 43: 0 + 44: 2111 + 45.1: 2111 _ZZN9oceanbase7storage19ObMultipleScanMerge15construct_itersEvENK5$_637clEPKc.60e5f1555e1608e51e89c573dc1497ed:2114 + 49: 0 + 7.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_7storage18ObStoreRowIteratorEE5countEv:6671 + 0: 953 + 11.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_7storage8ObITableEE5countEv:9530 + 0: 953 + 18.1: _ZN9oceanbase7storage19ObMultipleScanMerge15set_rows_mergerEl:176266 + 2: 952 + 3: 952 + 5: 952 + 6: 952 + 6.1: 980 _ZN9oceanbase6common26ObWrapperAllocatorWithAttr5allocEl:976 + 6.2: 980 + 6.4: 980 + 7: 0 + 8.1: 0 + 11: 0 + 14: 0 + 14.1: 0 + 14.2: 0 + 14.4: 0 + 15: 0 + 16.1: 0 + 18: 0 + 21: 976 + 22: 1029 _ZNK9oceanbase7storage18ObSimpleRowsMergerINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpEE9is_initedEv:1008 + 23: 1017 _ZN9oceanbase7storage18ObSimpleRowsMergerINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpEE4initElRNS_6common12ObIAllocatorE:1059 + 24.1: 0 + 26.1: 0 + 27.1: 0 + 28.1: 0 + 31: 0 + 6.2: _ZN9oceanbase7storage18ObSimpleRowsMergerINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpEEC2ERS3_:32340 + 1: 980 + 2: 980 + 4: 980 + 6: 980 + 7: 980 + 14.2: _ZN9oceanbase7storage20ObScanMergeLoserTreeC2ERNS0_23ObScanMergeLoserTreeCmpE:0 + 1: 0 + 2: 0 + 1: _ZN9oceanbase6common11ObLoserTreeINS_7storage24ObScanMergeLoserTreeItemENS2_23ObScanMergeLoserTreeCmpELl80EEC2ERS4_:0 + 1: 0 + 3: 0 + 1.1: _ZN9oceanbase7storage24ObScanMergeLoserTreeItemC2Ev:0 + 0: 0 + 24: _ZNK9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl8ENS0_19ModulePageAllocatorELb0EE2atElRS4_:58464 + 3.1: 2088 + 3.2: 2088 + 6: 2088 + 6: _ZN9oceanbase6common9ObClassOpIPNS_7storage8ObITableELb1EE6assignERKS4_RS4_:16704 + 2: 2088 + 26.1: _ZNK9oceanbase7storage15ObMultipleMerge21get_actual_iter_paramEPKNS0_8ObITableE:41760 + 3: 2088 + 4.1: 0 + 6: 2088 + 32.1: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage18ObStoreRowIteratorELl8ENS0_19ModulePageAllocatorELb0EE9push_backERKS4_:90773 + 5: 2111 + 6: 0 + 12: 0 + 15: 0 + 15.1: 2111 + 16: 2111 + 15.1: _ZN9oceanbase6common9ObClassOpIPNS_7storage18ObStoreRowIteratorELb1EE20construct_and_assignERKS4_RS4_:16888 + 2: 2111 + 36.1: _ZN9oceanbase6common12ObIArrayWrapIPNS_7storage18ObStoreRowIteratorEE2atEl:0 + 6: 0 + 70.2: _ZNK9oceanbase6common12ObIArrayWrapINS_12blocksstable12ObDatumRangeEE2atEl:0 + 6: 0 + 82: _ZN9oceanbase7storage19ObRowSampleIteratorC2ERKNS_6common10SampleInfoE:0 + 3: 0 + 4: 0 + 1: _ZN9oceanbase7storage17ObISampleIteratorC2ERKNS_6common10SampleInfoE:0 + 1: 0 + 0: _ZN9oceanbase7storage18ObQueryRowIteratorC2Ev:0 + 0: 0 + 86.1: _ZN9oceanbase7storage19ObRowSampleIterator4openERNS0_18ObQueryRowIteratorE:0 + 3: 0 + 4: 0 + 94: _ZN9oceanbase7storage16ObTableScanRange9set_emptyEv:52920 + 0: 4410 +_ZN9oceanbase7storage21ObTabletBindingHelper23check_snapshot_readableERNS0_14ObTabletHandleEl:4229022:4255 + 1: 3891 + 2: 3891 + 3: 3891 + 7: 4290 + 7.1: 4345 + 8.1: 0 + 9.1: 4366 + 9.3: 4366 + 10: 0 + 11.1: 0 + 12.3: 4366 + 13: 0 + 14.1: 0 + 16: 4366 + 17.5: 4304 + 17.7: 0 + 3: _ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE7get_objEv:15564 + 2: 3891 + 4: _ZN9oceanbase7storage8ObTablet11get_rw_lockEv:108948 + 3: 3891 + 2: _ZNK9oceanbase7storage16ObResourceHandleINS0_13ObMetaPointerINS0_8ObTabletEEEE16get_resource_ptrEv:77820 + 0: 3891 + 0.2: _ZNK9oceanbase7storage20ObResourceValueStoreINS0_13ObMetaPointerINS0_8ObTabletEEEE13get_value_ptrEv:15564 + 0: 3891 + 5: _ZN9oceanbase6common12TCRLockGuardC2ERKNS0_8TCRWLockE:853446 + 1: 3891 + 3: 3825 + 4.1: 0 + 3: _ZN9oceanbase6common8TCRWLock6rdlockElRl:752742 + 3.1: 0 + 4: 0 + 5: 0 + 3.2: _ZN9oceanbase6common8TCRWLock10try_rdlockERl:752742 + 3: 3891 + 5: 3825 + 8: 0 + 4: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:31128 + 0: 3891 + 4.1: _ZN9oceanbase6common5TCRef7inc_refEPiRl:500883 + 2: 3891 + 4: 3891 + 5.1: 3891 + 5.2: 0 + 7: 3891 + 7.1: 3891 + 8: 3825 + 12: 3825 + 2: _ZN9oceanbase6common8get_itidEv:108948 + 4: 3891 + 5: 0 + 6: 0 + 8: 0 + 13: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 8: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:0 + 0: 0 + 8.1: _ZN9oceanbase6common5TCRef7dec_refEPil:0 + 2: 0 + 2.1: 0 + 3: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 9: _ZN9oceanbase6common9LWaitCond6signalEv:0 + 2: 0 + 2.1: 0 + 3: 0 + 6: _ZN9oceanbase7storage19ObTabletBindingInfoC2Ev:1000545 + 0.1: 3825 + 1: 3825 + 0: _ZN9oceanbase8memtable22ObIMultiSourceDataUnitC2Ev:72675 + 1: 3825 + 0: _ZN9oceanbase6common11ObDLinkBaseINS_8memtable22ObIMultiSourceDataUnitEEC2Ev:38250 + 1: 3825 + 0.1: _ZN9oceanbase6common9ObSEArrayINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EEC2Ev:646425 + 0.1: 3825 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EEC2ElRKS3_:577575 + 2: 3825 + 5: 3825 + 6: 3825 + 8: 3825 + 17.1: 3825 + 2: _ZN9oceanbase6common8ObIArrayINS0_10ObTabletIDEEC2EPS2_l:68850 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_10ObTabletIDEEC2EPS2_l:68850 + 0: 3825 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:218025 + 0: 3825 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:95625 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:95625 + 2: 3825 + 8: 3825 + 0.3: _ZN9oceanbase6common10ObTabletIDC2Em:26775 + 0: 3825 + 2: _ZN9oceanbase7storage19ObTabletBindingInfo5resetEv:159045 + 4: 3825 + 5: _ZN9oceanbase6common10ObTabletID5resetEv:42075 + 0: 3825 + 6: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EE5resetEv:15300 + 0: 3825 _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv:3882 + 8: _ZN9oceanbase6common10ObTabletID5resetEv:55770 + 0: 4290 + 7: _ZNK9oceanbase7storage8ObTablet12get_ddl_dataERNS0_19ObTabletBindingInfoE:1146016 + 2: 4290 + 3: 4290 + 4: 0 + 5.1: 0 + 6.1: 4586 _ZNK9oceanbase7storage19ObTabletMemtableMgr26get_multi_source_data_unitEPNS_8memtable22ObIMultiSourceDataUnitE:4291 + 9: 4540 + 10: 4345 + 11.1: 0 + 15: 0 + 10: _ZN9oceanbase7storage19ObTabletBindingInfo6assignERKS1_:842951 + 2: 4540 + 3: 4540 + 4.1: 0 + 6: 4345 + 7: 4345 + 13: 0 + 3: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EE6assignERKNS0_8ObIArrayIS2_EE:541196 + 0: 0 + 3: 4540 + 3.1: 4662 + 3.3: 4662 + 3.5: 0 + 4: 4540 _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EE5reuseEv:4686 + 6: 4258 _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EE7reserveEl:4522 + 7: 4397 + 8: 4397 + 18: 4345 + 5: _ZNK9oceanbase6common12ObIArrayWrapINS0_10ObTabletIDEE5countEv:29806 + 0: 4258 + 8: _ZNKSt9type_info9hash_codeEv:137747 + 3.2: 0 + 3.4: 4397 + 3.5: 4517 _ZSt11_Hash_bytesPKvmm:4674 + 3: _ZNKSt9type_info4nameEv:65955 + 1: 4397 + 8.1: _ZNKSt9type_info9hash_codeEv:99558 + 3.2: 0 + 3.5: 4495 _ZSt11_Hash_bytesPKvmm:4675 + 9: _ZN9oceanbase6common10ObTabletIDaSERKS1_:60830 + 0: 4345 + 10: _ZN9oceanbase6common10ObTabletIDaSERKS1_:73865 + 0: 4345 + 17.5: _ZN9oceanbase7storage19ObTabletBindingInfoD2Ev:254152 + 0: 4366 + 0.1: _ZN9oceanbase6common10ObTabletIDD2Ev:56758 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:56758 + 0: 4366 + 0.2: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EED2Ev:166832 + 1: 4366 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv:88244 + 4.1: 4366 + 4.3: 0 + 9: 4597 + 11: 0 + 5: _ZN9oceanbase6common10ObTabletIDD2Ev:0 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:0 + 0: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 17.6: _ZN9oceanbase7storage19ObTabletBindingInfoD2Ev:0 + 0: 0 + 17.9: _ZN9oceanbase6common12TCRLockGuardD2Ev:279760 + 2: 4304 + 3: 4304 + 3.1: 4304 + 3.2: 0 + 3: _ZN9oceanbase6common8TCRWLock8rdunlockEl:189376 + 3: 4304 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:17216 + 0: 4304 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPil:111904 + 2: 4304 + 2.1: 4304 + 3: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:30128 + 2: 4304 + 2.1: 0 + 3: 0 +_ZN9oceanbase7storage16ObTableScanParamC2Ev:4169547:4521 + 2: 4373 + 3: 4373 _ZN9oceanbase11transaction16ObTxReadSnapshotC1Ev:4454 + 6: 4358 + 7.3: 4358 + 8: 4358 + 9: 4358 + 10: 4358 + 12: 4373 + 12.1: 4358 + 12.5: 0 + 0: _ZN9oceanbase6common10SampleInfoC2Ev:174320 + 0: _ZN9oceanbase6common10SampleInfo5resetEv:174320 + 3: 4358 + 5: 4358 + 6: 4358 + 1: _ZN9oceanbase6common17ObVTableScanParamC2Ev:3257885 + 0.1: 4373 + 0.2: 4373 + 0.3: 4373 + 1: 4373 + 2: 4373 + 3: 4373 + 4: 4373 + 6: 4373 + 9: 4373 + 11: 4373 + 12.3: 4373 + 13: 4373 + 14: 4373 + 16: 4373 + 22: 4373 + 24: 4373 + 0.1: _ZN9oceanbase6common9ObSEArrayImLl4ENS0_19ModulePageAllocatorELb0EEC2Ev:625339 + 0.1: 4373 + 0.5: _ZN9oceanbase6common13ObSEArrayImplImLl4ENS0_19ModulePageAllocatorELb0EEC2ElRKS2_:559744 + 2: 4373 + 5: 4373 + 6: 4373 + 8: 4373 + 17.1: 4373 + 2: _ZN9oceanbase6common8ObIArrayImEC2EPml:52476 + 0: _ZN9oceanbase6common12ObIArrayWrapImEC2EPml:52476 + 0: 4373 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:236142 + 0: 4373 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:109325 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:109325 + 2: 4373 + 8: 4373 + 0.2: _ZN9oceanbase6common9ObSEArrayINS0_10ObNewRangeELl4ENS0_19ModulePageAllocatorELb0EEC2Ev:559744 + 0.1: 4373 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObNewRangeELl4ENS0_19ModulePageAllocatorELb0EEC2ElRKS3_:481030 + 2: 4373 + 5: 4373 + 6: 4373 + 8: 4373 + 17.1: 4373 + 2: _ZN9oceanbase6common8ObIArrayINS0_10ObNewRangeEEC2EPS2_l:78714 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_10ObNewRangeEEC2EPS2_l:78714 + 0: 4373 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:139936 + 0: 4373 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:78714 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:78714 + 2: 4373 + 8: 4373 + 0.3: _ZN9oceanbase6common9ObSEArrayIlLl4ENS0_19ModulePageAllocatorELb0EEC2Ev:559744 + 0.1: 4373 + 0.5: _ZN9oceanbase6common13ObSEArrayImplIlLl4ENS0_19ModulePageAllocatorELb0EEC2ElRKS2_:481030 + 2: 4373 + 5: 4373 + 6: 4373 + 8: 4373 + 17.1: 4373 + 2: _ZN9oceanbase6common8ObIArrayIlEC2EPll:78714 + 0: _ZN9oceanbase6common12ObIArrayWrapIlEC2EPll:78714 + 0: 4373 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:139936 + 0: 4373 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:78714 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:78714 + 2: 4373 + 8: 4373 + 0.5: _ZN9oceanbase6common12ObLimitParamC2Ev:109325 + 0: 4373 + 0.7: _ZN9oceanbase6common20ObTableScanStatisticC2Ev:419808 + 1: 4373 + 0.8: _ZN9oceanbase5share6ObLSIDC2Ev:34984 + 0: 4373 + 12: _ZN9oceanbase3lib4Flow11current_ctxEv:122444 + 2: _ZN9oceanbase3lib4Flow12current_flowEv:122444 + 3: 4373 + 8: 0 + 10: 0 + 11: 0 + 12: 0 + 8.1: _ZN9oceanbase3lib4FlowC2ERNS0_13MemoryContextE:0 + 1: 0 + 3: 0 + 11: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 4: _ZN9oceanbase11transaction9ObTransIDC2Ev:69728 + 0: 4358 + 7: _ZN9oceanbase3lib4Flow11current_ctxEv:122024 + 2: _ZN9oceanbase3lib4Flow12current_flowEv:122024 + 3: 4358 + 8: 0 + 12: 0 + 8.1: _ZN9oceanbase3lib4FlowC2ERNS0_13MemoryContextE:0 + 1: 0 + 3: 0 + 10: _ZN9oceanbase3lib4Flow4initEv:0 + 4: 0 + 7: 0 + 8: 0 + 9: 0 + 12: 0 + 7: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 12.4: _ZN9oceanbase11transaction9ObTransIDD2Ev:0 + 0: 0 + 12.6: _ZN9oceanbase6common17ObVTableScanParamD2Ev:0 + 1: 0 + 2: _ZN9oceanbase6common17ObVTableScanParam20destroy_schema_guardEv:0 + 2: _ZN9oceanbase6common9call_dtorINS_5share6schema19ObSchemaGetterGuardEEEvRPT_:0 + 2: 0 + 3: 0 + 4: 0 +_ZN9oceanbase3lib17__MemoryContext__15destory_contextEPS1_:4152941:9141 + 1: 8684 + 4: 8684 + 6.1: 8684 + 8: 122 + 10: 9073 + 11: 8684 + 12: 8684 + 14: 9073 + 18: 5182 + 2: _ZNK9oceanbase3lib17__MemoryContext__16check_magic_codeEv:26052 + 0: 8684 + 2.1: _ZL12abort_unlessb:53324 + 5: 8684 + 6: 122 + 7: _ZN9oceanbase3lib17__MemoryContext__12node2contextEPNS0_8TreeNodeE:488 + 4: 122 + 12: _ZL12abort_unlessb:53324 + 5: 8684 + 6: 122 + 13: _ZN9oceanbase3lib17__MemoryContext__6deinitEv:3150418 + 3: 8684 + 4: 8684 + 5: 8684 + 6: 9021 + 8: 9021 + 10: 9352 + 12: 9352 + 13: 122 + 14: 122 + 15: 122 + 16: 122 + 18: 9352 + 19: 9352 _ZN9oceanbase6common11ObAllocatorD2Ev:9873 + 20: 9116 + 5: _ZN9oceanbase6common20ObSafeArenaAllocatorD2Ev:164996 + 0: 8684 + 0: _ZN9oceanbase6common10ObSpinLockD2Ev:43420 + 2: 8684 _ZN9oceanbase6common12ObLatchMutexD1Ev:9054 + 9: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:941480 + 0: 9021 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEED2Ev:815186 + 0: 9021 + 0.3: 122 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:678895 + 4.1: 9021 + 6: 122 + 7: 4643 + 13: 9352 + 14: 9352 + 15: 9352 + 18: 9352 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:13929 + 0: 4643 + 5.1: _ZL12abort_unlessb:28468 + 5: 4643 + 6: 122 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:80910 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:80910 + 0: 4643 + 0.2: 4643 _ZN9oceanbase6common11ObAllocator4freeEPv:5554 + 0.1: _ZN9oceanbase6common7ob_freeEPv:6588 + 2: 122 + 3: 122 + 4: 122 + 5: 122 + 4: _ZL12abort_unlessb:2440 + 5: 122 + 6: 122 + 14: _ZL12abort_unlessb:854 + 5: 122 + 6: 122 + 22: _ZN9oceanbase3lib8TreeNode6deinitEv:924664 + 2: 9116 + 3: _ZN9oceanbase3lib8TreeNode9del_childERS1_:842620 + 2: 9116 + 3.1: 122 + 4: 122 + 7: 9116 + 8: 9116 + 9: 9116 + 10: 9116 + 11: 9116 + 12: 367 + 14: 9119 + 15: 628 + 17: 9084 + 18: 9084 + 20: 8845 + 22: 9073 + 23: 122 + 7: _ZL12abort_unlessb:55916 + 5: 9116 + 6: 122 + 19: _ZL12abort_unlessb:54290 + 5: 8845 + 6: 122 + 16: _ZN9oceanbase3lib17__MemoryContext__4freeEPv:128948 + 2: 3907 _ZN9oceanbase6common11ObAllocator4freeEPv:3907 +_ZN9oceanbase12blocksstable11ObRowReaderC2Ev:4139625:45495 + 2: 43575 + 8: 43575 + 10: 43575 + 12: 43575 + 13: 43575 + 7: _ZN9oceanbase12blocksstable21ObClusterColumnReaderC2Ev:784350 + 9: 43575 + 11: 43575 +_ZN9oceanbase12blocksstable11ObRowReaderC1Ev:4139625:45495 + 2: 43575 + 8: 43575 + 10: 43575 + 12: 43575 + 13: 43575 + 7: _ZN9oceanbase12blocksstable21ObClusterColumnReaderC2Ev:784350 + 9: 43575 + 11: 43575 +_ZN9oceanbase3sql20ObAggregateProcessor8add_calcERKNS_6common7ObDatumERNS1_8AggrCellERKNS0_10ObAggrInfoE:4071772:27185 + 2: 24775 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 3: 24775 + 4: 24775 + 6: 24775 + 10: 25213 + 11: 25213 + 16.1: 0 + 19: 0 + 21: 0 + 21.1: 0 + 22.1: 0 + 23.2: 0 + 24.1: 0 + 38: 0 + 39: 0 + 44.1: 0 + 47: 0 + 49: 0 + 49.1: 0 + 50.1: 0 + 51.2: 0 + 52.1: 0 + 64: 0 + 67: 0 + 68: 0 + 69: 0 + 69.1: 0 + 70: 0 + 71: 0 + 73: 0 + 74: 0 + 77: 0 + 78.1: 0 + 78.11: 0 + 78.14: 0 + 79.1: 0 + 87: 0 + 92: 0 + 98: 0 + 99: 0 + 103: 0 + 103.2: 0 + 108: 0 + 108.1: 0 + 109.1: 0 + 117: 0 + 118.1: 0 + 121: 26571 + 4: _ZNK9oceanbase3sql10ObAggrInfo20get_first_child_typeEv:247750 + 3: 24775 + 3: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:99100 + 6: 24775 + 4.1: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:470725 + 2: 24775 + 2.1: 24775 + 8: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell16get_tiny_num_intEv:100852 + 0: 25213 + 9: _ZNK9oceanbase6common7ObDatum7get_intEv:151278 + 0: 25213 + 11: _ZN9oceanbase3sql9ObExprAdd23is_int_int_out_of_rangeElll:428621 + 9: 25213 + 14: _ZN9oceanbase6common12ObDataBufferC2EPcl:0 + 1: 0 + 2: 0 + 15: _ZN9oceanbase6common6number8ObNumberC2Ev:0 + 0: 0 + 0: _ZN12ObNumberDescC2Ej:0 + 0: 0 + 16: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:0 + 0: 0 + 18: _ZNK9oceanbase6common7ObDatum10get_numberEv:0 + 0: 0 + 19: _ZN9oceanbase6common6number8ObNumber6assignEjPj:0 + 3: 0 + 4: 0 + 23.1: _ZN9oceanbase3sql20ObAggregateProcessor17clone_number_cellERKNS_6common6number8ObNumberERNS1_8AggrCellE:0 + 2: 0 + 5: 0 + 6.1: 0 + 11: 0 + 5: _ZN9oceanbase3sql20ObAggregateProcessor10clone_cellERNS1_8AggrCellElPNS_6common7ObDatumE:0 + 5: 0 + 7: 0 + 12: 0 + 12.1: 0 + 14: 0 + 16: 0 + 17: 0 + 23.1: 0 + 24: 0 + 25.1: 0 + 27.1: 0 + 28: 0 + 29.1: 0 + 32: 0 + 33: 0 + 35: 0 + 36: 0 + 37.1: 0 + 40: 0 + 51: 0 + 52: 0 + 53.1: 0 + 56: 0 + 63: 0 + 66: 0 + 12: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell7get_bufEv:0 + 0: 0 + 39: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell7set_bufEPc:0 + 0: 0 + 55: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell7set_bufEPc:0 + 0: 0 + 8.1: _ZN9oceanbase6common7ObDatum10set_numberERKNS0_6number8ObNumberE:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4.1: _ZNK9oceanbase6common6number8ObNumber10get_digitsEv:0 + 2: 0 + 36: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell17get_tiny_num_uintEv:0 + 0: 0 + 37: _ZNK9oceanbase6common7ObDatum8get_uintEv:0 + 0: 0 + 39: _ZN9oceanbase3sql9ObExprAdd25is_uint_uint_out_of_rangeEmmm:0 + 9: 0 + 42: _ZN9oceanbase6common12ObDataBufferC2EPcl:0 + 1: 0 + 2: 0 + 43: _ZN9oceanbase6common6number8ObNumberC2Ev:0 + 0: 0 + 0: _ZN12ObNumberDescC2Ej:0 + 0: 0 + 44: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:0 + 0: 0 + 46: _ZNK9oceanbase6common7ObDatum10get_numberEv:0 + 0: 0 + 47: _ZN9oceanbase6common6number8ObNumber6assignEjPj:0 + 3: 0 + 4: 0 + 51.1: _ZN9oceanbase3sql20ObAggregateProcessor17clone_number_cellERKNS_6common6number8ObNumberERNS1_8AggrCellE:0 + 2: 0 + 5: 0 + 6.1: 0 + 11: 0 + 5: _ZN9oceanbase3sql20ObAggregateProcessor10clone_cellERNS1_8AggrCellElPNS_6common7ObDatumE:0 + 5: 0 + 7: 0 + 12: 0 + 12.1: 0 + 14: 0 + 16: 0 + 17: 0 + 23.1: 0 + 24: 0 + 25.1: 0 + 27.1: 0 + 28: 0 + 29.1: 0 + 32: 0 + 33: 0 + 35: 0 + 36: 0 + 37.1: 0 + 40: 0 + 51: 0 + 52: 0 + 53.1: 0 + 56: 0 + 63: 0 + 66: 0 + 12: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell7get_bufEv:0 + 0: 0 + 39: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell7set_bufEPc:0 + 0: 0 + 55: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell7set_bufEPc:0 + 0: 0 + 8.1: _ZN9oceanbase6common7ObDatum10set_numberERKNS0_6number8ObNumberE:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4.1: _ZNK9oceanbase6common6number8ObNumber10get_digitsEv:0 + 2: 0 + 64: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:0 + 0: 0 + 67: _ZNK9oceanbase6common7ObDatum9get_floatEv:0 + 0: 0 + 68: _ZNK9oceanbase6common7ObDatum9get_floatEv:0 + 0: 0 + 69: _ZN9oceanbase3sql19ObArithExprOperator21is_float_out_of_rangeEf:0 + 2: 0 + 70.1: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 78.1: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 78.12: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 78.15: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 81: _ZN9oceanbase6common7ObDatum9set_floatEf:0 + 0: 0 + 87: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:0 + 0: 0 + 90: _ZNK9oceanbase6common7ObDatum10get_doubleEv:0 + 0: 0 + 91: _ZNK9oceanbase6common7ObDatum10get_doubleEv:0 + 0: 0 + 92: _ZN9oceanbase6common7ObDatum10set_doubleEd:0 + 0: 0 + 97: _ZNK9oceanbase6common7ObDatum10get_numberEv:0 + 0: 0 + 97.1: _ZN9oceanbase6common6number8ObNumberC2ERKNS1_15ObCompactNumberE:0 + 1: 0 + 1: _ZN12ObNumberDescC2Ej:0 + 0: 0 + 98: _ZNK9oceanbase6common6number8ObNumber25fast_sum_agg_may_overflowEv:0 + 2: _ZNK9oceanbase6common6number8ObNumber21get_max_format_lengthEv:0 + 3: 0 + 5: 0 + 6: 0 + 10: 0 + 3: _ZNK9oceanbase6common6number8ObNumber7is_zeroEv:0 + 2: 0 + 4: _ZN9oceanbase6common6number8ObNumber14get_decode_expERK12ObNumberDesc:0 + 2: 0 + 99: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:0 + 0: 0 + 100: _ZN9oceanbase3sql20ObAggregateProcessor15clone_aggr_cellERNS1_8AggrCellERKNS_6common7ObDatumEb:0 + 3: 0 + 6: 0 + 7.1: 0 + 13: 0 + 6: _ZN9oceanbase3sql20ObAggregateProcessor10clone_cellERNS1_8AggrCellElPNS_6common7ObDatumE:0 + 5: 0 + 7: 0 + 12: 0 + 12.1: 0 + 14: 0 + 16: 0 + 17: 0 + 23.1: 0 + 24: 0 + 25.1: 0 + 27.1: 0 + 28: 0 + 29.1: 0 + 32: 0 + 33: 0 + 35: 0 + 36: 0 + 37.1: 0 + 40: 0 + 51: 0 + 52: 0 + 53.1: 0 + 56: 0 + 63: 0 + 66: 0 + 12: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell7get_bufEv:0 + 0: 0 + 39: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell7set_bufEPc:0 + 0: 0 + 55: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell7set_bufEPc:0 + 0: 0 + 102: _ZNK9oceanbase6common7ObDatum10get_numberEv:0 + 0: 0 + 102.1: _ZN9oceanbase6common6number8ObNumberC2ERKNS1_15ObCompactNumberE:0 + 1: 0 + 1: _ZN12ObNumberDescC2Ej:0 + 0: 0 + 103.1: _ZNK9oceanbase6common6number8ObNumber25fast_sum_agg_may_overflowEv:0 + 2: _ZNK9oceanbase6common6number8ObNumber21get_max_format_lengthEv:0 + 3: 0 + 5: 0 + 6: 0 + 10: 0 + 3: _ZNK9oceanbase6common6number8ObNumber7is_zeroEv:0 + 2: 0 + 4: _ZN9oceanbase6common6number8ObNumber14get_decode_expERK12ObNumberDesc:0 + 2: 0 + 105: _ZN9oceanbase6common12ObDataBufferC2EPcl:0 + 1: 0 + 2: 0 + 107: _ZN9oceanbase6common6number8ObNumberC2Ev:0 + 0: 0 + 0: _ZN12ObNumberDescC2Ej:0 + 0: 0 + 111: _ZN9oceanbase3sql20ObAggregateProcessor17clone_number_cellERKNS_6common6number8ObNumberERNS1_8AggrCellE:0 + 2: 0 + 5: 0 + 6.1: 0 + 11: 0 + 5: _ZN9oceanbase3sql20ObAggregateProcessor10clone_cellERNS1_8AggrCellElPNS_6common7ObDatumE:0 + 5: 0 + 7: 0 + 12: 0 + 12.1: 0 + 14: 0 + 16: 0 + 17: 0 + 23.1: 0 + 24: 0 + 25.1: 0 + 27.1: 0 + 28: 0 + 29.1: 0 + 32: 0 + 33: 0 + 35: 0 + 36: 0 + 37.1: 0 + 40: 0 + 51: 0 + 52: 0 + 53.1: 0 + 56: 0 + 63: 0 + 66: 0 + 12: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell7get_bufEv:0 + 0: 0 + 39: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell7set_bufEPc:0 + 0: 0 + 55: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell7set_bufEPc:0 + 0: 0 + 8.1: _ZN9oceanbase6common7ObDatum10set_numberERKNS0_6number8ObNumberE:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4.1: _ZNK9oceanbase6common6number8ObNumber10get_digitsEv:0 + 2: 0 +_ZN9oceanbase6common11ObAllocator4freeEPv:4045224:14595 + 1: 13742 + 3: 13742 + 4: 0 + 6: 0 + 7: 13742 + 8: 13295 + 10: 13295 + 11: 13295 + 12: 0 + 18: 13295 + 19: 13295 + 20: 13295 _ZN9oceanbase3lib9ObjectSet11free_objectEPNS0_7AObjectE:13612 + 23: 15316 + 10.1: _ZL12abort_unlessb:79770 + 5: 13295 + 6: 0 + 12: _ZL12abort_unlessb:106360 + 5: 13295 + 6: 0 + 14: _ZN9oceanbase6common20get_mem_leak_checkerEv:226015 + 2: _ZN9oceanbase6common16ObMemLeakChecker12get_instanceEv:226015 + 2: 13295 + 2.1: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common16ObMemLeakCheckerC2Ev:0 + 0: 0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 14.1: _ZN9oceanbase6common16ObMemLeakChecker7on_freeERNS_3lib7AObjectE:226015 + 2: 13295 + 2.1: 0 + 3: 0 + 6: 0 + 8: 0 + 9: 0 + 9.1: 0 + 9.3: 0 + 9.4: 0 + 10.1: 0 + 2: _ZNK9oceanbase6common16ObMemLeakChecker14is_label_checkEv:146245 + 0: 13295 + 4: _ZN9oceanbase6common16ObMemLeakChecker11label_matchERNS_3lib7AObjectE:0 + 2: 0 + 8: _ZN9oceanbase6common4hash9ObHashMapINS0_16ObMemLeakChecker6PtrKeyENS3_4InfoENS1_24LatchReadWriteDefendModeENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS4_S5_EEEELi13ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE16erase_refactoredERKS4_PS5_:0 + 10: 0 + 15: _ZNK9oceanbase3lib7AObject5blockEv:1728520 + 2: _ZN9oceanbase3lib6AChunk9ptr2chunkEPKv:199425 + 2: 13295 + 3: _ZNK9oceanbase3lib6AChunk8is_validEv:119655 + 2: 13295 + 3.1: _ZL12abort_unlessb:79770 + 5: 13295 + 6: 0 + 4: _ZNK9oceanbase3lib6AChunk7ptr2blkEPKv:1329670 + 2: 13295 + 4: 13295 + 3: _ZNK9oceanbase3lib6AChunk17max_blk_offset_leEi:757985 + 2: _ZNK9oceanbase3lib13ASimpleBitSetILi256EE10max_bit_leEi:757985 + 2: 13295 + 3: 13295 + 7: 13295 + 9: 13300 + 11.1: 5 + 12: 13295 + 8: _ZN9oceanbase3lib13ASimpleBitSetILi256EE10max_bit_leEmi:305870 + 2: 13300 + 3: 13295 + 4: 13300 + 17: _ZNK9oceanbase3lib6ABlock8is_validEv:292490 + 2: 13295 + 17.1: _ZL12abort_unlessb:26590 + 5: 13295 + 6: 0 + 19: _ZL12abort_unlessb:26590 + 5: 13295 + 6: 0 +_ZN9oceanbase3sql11ObResultSetC2ERNS0_16ObSQLSessionInfoERNS_6common12ObIAllocatorE:4018818:5041 + 1: 4796 + 4: 4796 + 5: 4796 + 7: 4796 + 13: 4796 + 14: 4796 + 15: 4796 + 16: 4796 + 17: 4796 + 18: 4796 + 19: 4796 + 21: 4796 + 22: 4796 + 22.1: 4796 + 23: 4796 + 25: 4796 + 26: 4796 + 28: 4796 + 30: 4796 _ZN9oceanbase3sql13ObExecContextC1ERNS_6common12ObIAllocatorE:5230 + 30.1: 5196 + 31: 5196 + 33: 5196 + 38: 5196 + 42: 4796 + 43: 5196 + 44: 5196 + 44.6: 6 + 44.7: 6 + 44.8: 6 + 2: _ZN9oceanbase3sql15ObCacheObjGuardC2ENS0_16CacheRefHandleIDE:71940 + 1: 4796 + 2: 4796 + 3.1: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:556336 + 4: 4796 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:484396 + 2: 4796 + 3: 4796 + 4: 4796 + 5: 4796 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:230208 + 0: 4796 + 13: _ZN9oceanbase6common12ObFixedArrayINS0_7ObFieldENS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplIS2_S3_EEERS3_l:254188 + 0: 4796 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS0_7ObFieldENS0_12ObIAllocatorEEC2ERS3_l:167860 + 2: 4796 + 3: 4796 + 4: 4796 + 1: _ZN9oceanbase6common8ObIArrayINS0_7ObFieldEEC2Ev:33572 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_7ObFieldEEC2Ev:33572 + 0: 4796 + 14: _ZN9oceanbase6common12ObFixedArrayINS0_7ObFieldENS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplIS2_S3_EEERS3_l:220616 + 0: 4796 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS0_7ObFieldENS0_12ObIAllocatorEEC2ERS3_l:167860 + 2: 4796 + 3: 4796 + 4: 4796 + 1: _ZN9oceanbase6common8ObIArrayINS0_7ObFieldEEC2Ev:33572 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_7ObFieldEEC2Ev:33572 + 0: 4796 + 17: _ZN9oceanbase6common12ObFixedArrayINS0_7ObFieldENS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplIS2_S3_EEERS3_l:244596 + 0: 4796 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS0_7ObFieldENS0_12ObIAllocatorEEC2ERS3_l:211024 + 2: 4796 + 3: 4796 + 4: 4796 + 6: 4796 + 1: _ZN9oceanbase6common8ObIArrayINS0_7ObFieldEEC2Ev:33572 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_7ObFieldEEC2Ev:33572 + 0: 4796 + 22: _ZN9oceanbase3sql11ObResultSet20ExternalRetrieveInfoC2ERNS_6common12ObIAllocatorE:1069508 + 1: 4796 + 6: 4796 + 8: 4796 + 2: _ZN9oceanbase6common12ObFixedArrayIPNS_3sql9ObRawExprENS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplIS4_S5_EEERS5_l:297352 + 0: 4796 + 0: _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql9ObRawExprENS0_12ObIAllocatorEEC2ERS5_l:211024 + 2: 4796 + 3: 4796 + 4: 4796 + 6: 4796 + 1: _ZN9oceanbase6common8ObIArrayIPNS_3sql9ObRawExprEEC2Ev:33572 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql9ObRawExprEEC2Ev:33572 + 0: 4796 + 3: _ZN9oceanbase6common12ObFixedArrayIPNS_3sql9ObRawExprENS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplIS4_S5_EEERS5_l:244596 + 0: 4796 + 0: _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql9ObRawExprENS0_12ObIAllocatorEEC2ERS5_l:211024 + 2: 4796 + 3: 4796 + 4: 4796 + 6: 4796 + 1: _ZN9oceanbase6common8ObIArrayIPNS_3sql9ObRawExprEEC2Ev:33572 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql9ObRawExprEEC2Ev:33572 + 0: 4796 + 4: _ZN9oceanbase6common12ObFixedArrayINS_5share6schema18ObSchemaObjVersionENS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplIS4_S5_EEERS5_l:297352 + 0: 4796 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS_5share6schema18ObSchemaObjVersionENS0_12ObIAllocatorEEC2ERS5_l:211024 + 2: 4796 + 3: 4796 + 4: 4796 + 6: 4796 + 1: _ZN9oceanbase6common8ObIArrayINS_5share6schema18ObSchemaObjVersionEEC2Ev:33572 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_5share6schema18ObSchemaObjVersionEEC2Ev:33572 + 0: 4796 + 8.1: _ZN9oceanbase6common8ObStringC2Ev:33572 + 1: 4796 + 37: _ZN9oceanbase3sql10ObExecutorC2Ev:114312 + 2: 5196 + 3: 5196 + 40: _ZN9oceanbase6common8ObStringC2Ev:109116 + 1: 5196 + 44.9: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:78 + 0: 6 + 44.10: _ZN9oceanbase3sql15ObCacheObjGuardD2Ev:288 + 2: 6 + 5: 6 + 5.1: 6 + 6: 6 + 5: _ZN9oceanbase3sql20ObCacheObjectFactory4freeINS0_17ObILibCacheObjectEEEvRPT_NS0_16CacheRefHandleIDE:48 + 2: 6 + 3: 6 +_ZN9oceanbase12blocksstable18ObMacroBlockHandle14reset_macro_idEv:4004292:98634 + 1: 92909 + 2: 92909 + 3: 0 + 4: 0 + 4.1: 0 + 5.1: 0 + 6: 0 + 11: 94224 + 3: _ZNK9oceanbase12blocksstable12MacroBlockId8is_validEv:1858180 + 2: 92909 + 3: 92909 + 4.1: 92909 + 5.1: 0 + 4: _ZN9oceanbase12blocksstable20ObServerBlockManager12get_instanceEv:0 + 2: 0 + 2.1: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 2.2: _ZN9oceanbase12blocksstable20ObServerBlockManagerC2Ev:0 + 0: 0 + 7: _ZN9oceanbase12blocksstable12MacroBlockId5resetEv:0 + 2: 0 + 4: 0 + 10: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase7storage18ObSimpleRowsMergerINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpEE3popEv:3967477:37006 + 1: 36189 + 2: 36189 + 3: 36189 + 4: 164 + 5.1: 164 + 6.1: 36189 + 7: 0 + 8.1: 0 + 10.1: 37106 + 11: 37106 + 13: 37854 + 15: 37854 + 6.1: _ZNK9oceanbase7storage18ObSimpleRowsMergerINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpEE5emptyEv:253323 + 2: 36189 +_ZN9oceanbase12blocksstable22ObIndexBlockRowScanner12locate_rangeERKNS0_12ObDatumRangeEbb:3960125:3232 + 4: 3194 + 5: 3194 + 6: 3194 + 7: 3194 + 8: 3194 + 9: 3194 + 10: 3074 + 13: 3074 + 14: 3074 + 15: 3074 + 16: 152 + 18: 2991 + 19: 2991 + 20.1: 141 + 21.1: 3072 + 22: 141 + 23.1: 3123 + 24: 141 + 25: 141 + 25.2: 141 + 26.1: 232 + 27.1: 141 + 28: 141 + 29: 141 + 30: 141 + 34: 3039 + 35: 3039 + 38.1: 3051 _ZZN9oceanbase12blocksstable22ObIndexBlockRowScanner12locate_rangeERKNS0_12ObDatumRangeEbbENK5$_770clEPKc.79c84811dffcee7ee47b268264023dc2:3094 + 41: 3270 + 42.1: 3270 + 43: 151 + 46: 3424 + 52: 3317 + 53.1: 232 + 54: 232 + 54.1: 3317 + 57: 232 + 58: 3317 + 59: 3317 + 60: 232 + 61.1: 232 + 66.1: 3326 _ZZN9oceanbase12blocksstable22ObIndexBlockRowScanner12locate_rangeERKNS0_12ObDatumRangeEbbENK5$_773clEPKc.79c84811dffcee7ee47b268264023dc2:3169 + 68.1: 232 + 71.1: 232 + 74.1: 0 + 77: 3192 + 78: 3192 + 79: 3192 + 80: 3192 + 80.3: 3192 + 82: 3192 + 11: _ZNK9oceanbase7storage15ObTableReadInfo15get_datum_utilsEv:24592 + 0: 3074 + 15.2: _ZNK9oceanbase12blocksstable13ObDatumRowkey13is_min_rowkeyEv:138192 + 0.1: 3065 + 0.2: 3066 + 0.3: 3066 + 0: _ZNK9oceanbase12blocksstable13ObDatumRowkey8is_validEv:42910 + 0: 3065 + 0.1: 3065 + 0.5: _ZNK9oceanbase6common7ObDatum6is_minEv:18624 + 0: 3065 + 0.1: 13 + 0: _ZNK9oceanbase6common11ObDatumDesc6is_extEv:15325 + 0: 3065 + 0.1: _ZNK9oceanbase6common5ObObj12is_min_valueEv:169 + 2: 13 + 2.1: 13 + 18.1: _ZSt11lower_boundIPKN9oceanbase12blocksstable13ObDatumRowkeyES2_NS1_15ObDatumComparorIS2_EEET_S7_S7_RKT0_T1_:1039183 + 13: _ZSt13__lower_boundIPKN9oceanbase12blocksstable13ObDatumRowkeyES2_N9__gnu_cxx5__ops14_Iter_comp_valINS1_15ObDatumComparorIS2_EEEEET_SB_SB_RKT0_T1_:1039183 + 8.1: 16959 + 10: 17224 + 13: 17416 _ZN9__gnu_cxx5__ops14_Iter_comp_valIN9oceanbase12blocksstable15ObDatumComparorINS3_13ObDatumRowkeyEEEEclIPKS5_S9_EEbT_RT0_:17435 + 6: _ZSt8distanceIPKN9oceanbase12blocksstable13ObDatumRowkeyEENSt15iterator_traitsIT_E15difference_typeES6_S6_:80808 + 3: _ZSt10__distanceIPKN9oceanbase12blocksstable13ObDatumRowkeyEENSt15iterator_traitsIT_E15difference_typeES6_S6_St26random_access_iterator_tag:80808 + 6: 3108 + 12: _ZSt7advanceIPKN9oceanbase12blocksstable13ObDatumRowkeyElEvRT_T0_:258360 + 4.1: _ZSt9__advanceIPKN9oceanbase12blocksstable13ObDatumRowkeyElEvRT_T0_St26random_access_iterator_tag:258360 + 6: 17224 + 25.1: _ZNK9oceanbase7storage15ObTableReadInfo15get_datum_utilsEv:1692 + 0: 141 + 42.2: _ZNK9oceanbase12blocksstable12ObDatumRange11get_end_keyEv:13216 + 0: 3304 + 42.3: _ZNK9oceanbase12blocksstable13ObDatumRowkey13is_max_rowkeyEv:135027 + 0.1: 3304 + 0.2: 3305 + 0.3: 3305 + 0: _ZNK9oceanbase12blocksstable13ObDatumRowkey8is_validEv:42952 + 0: 3304 + 0.1: 3304 + 0.5: _ZNK9oceanbase6common7ObDatum6is_maxEv:22398 + 0: 3304 + 0.1: 143 + 0: _ZNK9oceanbase6common11ObDatumDesc6is_extEv:16520 + 0: 3304 + 0.1: _ZNK9oceanbase6common5ObObj12is_max_valueEv:1859 + 2: 143 + 2.1: 143 + 46.1: _ZNK9oceanbase6common12ObBorderFlag13inclusive_endEv:17120 + 0: 3424 + 47.1: _ZSt11upper_boundIPKN9oceanbase12blocksstable13ObDatumRowkeyES2_NS1_15ObDatumComparorIS2_EEET_S7_S7_RKT0_T1_:1042239 + 13: _ZSt13__upper_boundIPKN9oceanbase12blocksstable13ObDatumRowkeyES2_N9__gnu_cxx5__ops14_Val_comp_iterINS1_15ObDatumComparorIS2_EEEEET_SB_SB_RKT0_T1_:1042239 + 8.1: 17138 + 10: 16822 + 13: 17515 _ZN9__gnu_cxx5__ops14_Val_comp_iterIN9oceanbase12blocksstable15ObDatumComparorINS3_13ObDatumRowkeyEEEEclIKS5_PS9_EEbRT_T0_:16857 + 6: _ZSt8distanceIPKN9oceanbase12blocksstable13ObDatumRowkeyEENSt15iterator_traitsIT_E15difference_typeES6_S6_:82082 + 3: _ZSt10__distanceIPKN9oceanbase12blocksstable13ObDatumRowkeyEENSt15iterator_traitsIT_E15difference_typeES6_S6_St26random_access_iterator_tag:82082 + 6: 3157 + 12: _ZSt7advanceIPKN9oceanbase12blocksstable13ObDatumRowkeyElEvRT_T0_:201864 + 4.1: _ZSt9__advanceIPKN9oceanbase12blocksstable13ObDatumRowkeyElEvRT_T0_St26random_access_iterator_tag:201864 + 6: 16822 + 49.1: _ZSt11lower_boundIPKN9oceanbase12blocksstable13ObDatumRowkeyES2_NS1_15ObDatumComparorIS2_EEET_S7_S7_RKT0_T1_:21442 + 13: _ZSt13__lower_boundIPKN9oceanbase12blocksstable13ObDatumRowkeyES2_N9__gnu_cxx5__ops14_Iter_comp_valINS1_15ObDatumComparorIS2_EEEEET_SB_SB_RKT0_T1_:21442 + 8.1: 142 + 10: 142 + 13: 142 + 6: _ZSt8distanceIPKN9oceanbase12blocksstable13ObDatumRowkeyEENSt15iterator_traitsIT_E15difference_typeES6_S6_:3692 + 3: _ZSt10__distanceIPKN9oceanbase12blocksstable13ObDatumRowkeyEENSt15iterator_traitsIT_E15difference_typeES6_S6_St26random_access_iterator_tag:3692 + 6: 142 + 12: _ZSt7advanceIPKN9oceanbase12blocksstable13ObDatumRowkeyElEvRT_T0_:1704 + 4.1: _ZSt9__advanceIPKN9oceanbase12blocksstable13ObDatumRowkeyElEvRT_T0_St26random_access_iterator_tag:1704 + 6: 142 +_ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE12process_dumpEbRb:3947931:28071 + 1: 27242 + 2: 27242 + 3: 27242 + 4: 28060 + 5: 0 + 5.1: 0 + 5.2: 0 + 10.1: 0 + 11.1: 0 + 12: 0 + 13: 0 + 14: 0 + 15: 0 + 16: 0 + 17.1: 0 + 20: 0 + 21.1: 0 + 28: 28577 + 4: _ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE9need_dumpEv:2125111 + 2: 27242 + 3: 233 _ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE19est_partition_countEv:242 + 5: 28060 + 5: _ZNK9oceanbase3sql20ObSqlMemMgrProcessor13get_mem_boundEv:329835 + 1: 27663 + 1.1: 0 + 1.2: 27360 + 1.3: 27360 + 1.1: _ZNK9oceanbase3sql20ObSqlWorkAreaProfile15get_expect_sizeEv:0 + 0: 0 + 5.1: _ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE12get_mem_usedEv:910414 + 0: 27360 + 0: _ZN9oceanbase3libeqEDnRKNS0_13MemoryContextE:191520 + 1: 27360 + 1: _ZNK9oceanbase3lib13MemoryContext11ref_contextEv:109440 + 1: 27360 + 0.4: _ZNK9oceanbase3lib17__MemoryContext__4usedEv:691534 + 2: 28060 + 2: _ZNK9oceanbase3lib17__MemoryContext__11malloc_usedEv:495114 + 2: 28060 _ZNK9oceanbase6common11ObAllocator4usedEv:28570 + 5: _ZNSt8functionIFblEEC2IZN9oceanbase3sql24ObHashPartInfrastructureINS4_14ObHashPartColsENS4_19ObHashPartStoredRowEE12process_dumpEbRbEUllE_vEET_:0 + 8: 0 + 9: 0 + 7.1: _ZNSt14_Function_base13_Base_managerIZN9oceanbase3sql24ObHashPartInfrastructureINS2_14ObHashPartColsENS2_19ObHashPartStoredRowEE12process_dumpEbRbEUllE_E15_M_init_functorERSt9_Any_dataOS8_:0 + 1.1: _ZNSt14_Function_base13_Base_managerIZN9oceanbase3sql24ObHashPartInfrastructureINS2_14ObHashPartColsENS2_19ObHashPartStoredRowEE12process_dumpEbRbEUllE_E15_M_init_functorERSt9_Any_dataOS8_St17integral_constantIbLb1EE:0 + 1: 0 + 5.2: _ZNSt14_Function_baseD2Ev:0 + 2: 0 + 3: 0 + 3.2: 0 + 5.3: _ZNSt14_Function_baseD2Ev:0 + 2: 0 + 3: 0 + 3.2: 0 + 5.4: _ZNK9oceanbase3sql20ObSqlMemMgrProcessor13get_data_sizeEv:0 + 0: 0 +easy_connection_on_readable:3916031:4949 + 1: 4797 + 7: 4797 + 9: 4797 + 15: 4797 + 15.1: 4797 + 15.2: 4797 + 15.3: 4797 + 17: 0 + 18.1: 0 + 18.2: 0 + 18.3: 0 + 18.4: 0 + 18.7: 0 + 24: 4797 + 24.2: 0 + 27: 0 + 27.1: 0 + 28: 4797 easy_message_create:5106 + 29.1: 0 + 29.2: 0 + 29.3: 0 + 29.4: 0 + 29.7: 0 + 40: 1510 + 41: 1510 + 42: 1510 + 42.1: 0 + 43: 0 + 44: 0 + 45: 0 + 48: 1510 easy_buf_check_read_space:1568 + 49.1: 0 + 49.2: 0 + 49.3: 0 + 49.4: 0 + 57: 5283 easy_socket_read:1104 + 58: 0 + 59: 0 + 63: 0 + 64: 0 + 65.1: 0 + 65.2: 0 + 65.3: 0 + 65.4: 0 + 65.7: 0 + 67: 0 + 68: 0 + 69.2: 0 + 69.3: 0 + 69.4: 0 + 73: 0 + 74.1: 0 + 74.2: 0 + 74.3: 0 + 74.4: 0 + 80: 5283 ev_now:5283 + 81: 4516 + 82: 0 + 83.2: 0 + 83.3: 0 + 83.4: 0 + 83.7: 0 + 86.2: 0 + 86.3: 0 + 86.4: 0 + 86.7: 0 + 86.8: 0 + 91: 4516 + 92: 0 + 94: 4516 + 95: 4516 + 96: 4516 + 97: 4516 + 98.1: 4516 + 100: 5123 ev_now:4549 + 101: 5123 + 103: 5123 + 103.1: 0 + 104: 0 + 105: 0 + 108: 5123 + 109: 0 + 110.1: 0 + 110.2: 0 + 110.3: 0 + 110.4: 0 + 110.7: 0 + 116.1: 4 + 116.2: 4 + 116.3: 4 + 116.4: 4 + 116.7: 4 + 132: 4 + 133.2: 5115 + 24: easy_list_empty:33579 + 2: 4797 + 115: easy_connection_do_request:2073823 + 8: 5123 + 11.1: 5163 + 12: 5316 _ZN9oceanbase4easy6decodeEP14easy_message_t:5659 + 13: 4 + 18: 4 + 19: 4 + 20.1: 4 + 20.2: 4 + 20.3: 4 + 20.4: 0 + 20.7: 0 + 30: 4 + 30.1: 4 + 31: 4 + 36.1: 4 + 36.2: 4 + 36.3: 4 + 36.4: 4 + 36.7: 4 + 44: 5133 easy_pool_calloc:5150 + 45: 4963 + 46.1: 4 + 46.2: 4 + 46.3: 4 + 46.4: 4 + 46.7: 4 + 56: 4963 + 57: 4963 + 58: 4963 ev_now:4969 + 59: 5163 + 61: 5163 + 62: 4 + 65: 5163 + 66: 5163 + 67: 5163 + 75: 4 + 76: 5033 + 77: 5033 + 78: 5033 + 79: 5033 + 80: 5033 + 83: 5633 easy_connection_recycle_message.8d7a091449e6908669a41293537a4cf4:5460 + 87: 5633 + 88: 5633 + 89: 0 + 92: 5633 + 93.2: 0 + 93.3: 0 + 93.4: 0 + 98: 5619 + 98.1: 0 + 103: 0 + 104.2: 0 + 104.3: 0 + 104.4: 0 + 106: 0 + 108: 5930 easy_connection_process_request.8d7a091449e6908669a41293537a4cf4:5944 + 109: 5055 + 114: 5546 + 114.1: 0 + 115: 5546 + 115.1: 0 + 116: 0 + 116.1: 0 + 117: 0 + 117.1: 0 + 118: 0 + 118.1: 0 + 120.1: 0 + 120.2: 0 + 120.3: 0 + 120.4: 0 + 120.7: 0 + 123: 0 + 129: 0 + 130.1: 0 + 130.2: 0 + 130.3: 0 + 130.4: 0 + 130.7: 0 + 134: 0 + 136: 0 + 138: 0 + 139.1: 0 + 139.2: 0 + 139.3: 0 + 139.4: 0 + 139.7: 0 + 148: 0 + 149: 0 + 150.1: 0 + 150.2: 0 + 150.3: 0 + 150.4: 0 + 150.7: 0 + 151: 0 + 156: 5610 + 59: current_time:126870 + 3: 5228 + 4.2: 4 + 4.3: 4 + 4.4: 4 + 6: 5163 + 65: easy_list_add_tail:108423 + 2: 5163 + 2: __easy_list_add:82608 + 3: 5163 + 4: 5163 + 5: 5163 + 6: 5163 + 66: easy_list_add_tail:134238 + 2: 5163 + 2: __easy_list_add:108423 + 3: 5163 + 4: 5163 + 5: 5163 + 6: 5163 + 79: easy_atomic32_add:35231 + 2: 5033 + 123: easy_spinrwlock_rdlock:0 + 13: 0 + 15: 0 + 15.1: 0 + 16: 0 + 16.1: 0 + 17: 0 + 19: 0 + 26: 0 + 32: 0 + 35: 0 + 19: easy_atomic_cmp_set:0 + 2: 0 + 138: easy_spinrwlock_unlock:0 + 8: 0 + 10: 0 + 11: 0 + 16.3: 0 + 17: 0 + 144: easy_connection_evio_start:0 + 2: 0 + 3: 0 + 6: 0 + 7: 0 + 10: 0 + 11: 0 + 14: 0 + 157: easy_connection_evio_start:0 + 2: 0 + 3: 0 + 6: 0 + 7: 0 + 10: 0 + 11: 0 + 14: 0 + 160: easy_connection_redispatch_thread:33990 + 5: 5665 + 5.1: 0 + 5.2: 0 + 10: 0 + 11: 0 + 5.1: easy_list_empty:0 + 2: 0 + 5.2: easy_list_empty:0 + 2: 0 + 10: easy_thread_pool_hash:0 + 2: 0 + 3: 0 + 133.1: __mod_stat_cleanup:117645 + 2: 5115 +_ZNK9oceanbase3sql18ObBasicSessionInfo25get_character_set_resultsERNS_6common13ObCharsetTypeE:3876912:85874 + 1: 80769 + 2: 80769 + 3: 0 + 5: 80769 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache25get_character_set_resultsEv:2584608 + 0: 80769 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache25get_character_set_resultsEb:1776918 + 0: 80769 +_ZN9oceanbase6common12TCRLockGuardC2ERKNS0_8TCRWLockE:3875174:15793 + 1: 14386 + 2: 14386 + 3: 14682 + 4.1: 0 + 6: 14682 + 3: _ZN9oceanbase6common8TCRWLock6rdlockElRl:2962344 + 3.1: 0 + 4: 0 + 5: 0 + 3.2: _ZN9oceanbase6common8TCRWLock10try_rdlockERl:2962344 + 3: 14386 + 5: 14682 + 8: 0 + 4: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:57544 + 0: 14386 + 4.1: _ZN9oceanbase6common5TCRef7inc_refEPiRl:2282946 + 2: 14386 + 4: 14386 + 5.1: 18357 + 5.2: 18357 + 7: 31754 + 7.1: 14420 + 8: 14682 + 12: 14682 + 2: _ZN9oceanbase6common8get_itidEv:402808 + 4: 14386 + 5: 0 + 6: 0 + 8: 0 + 13: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 8: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:0 + 0: 0 + 8.1: _ZN9oceanbase6common5TCRef7dec_refEPil:0 + 2: 0 + 2.1: 0 + 3: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 9: _ZN9oceanbase6common9LWaitCond6signalEv:0 + 2: 0 + 2.1: 0 + 3: 0 +_ZN9oceanbase6common9ObCharset4hashENS0_15ObCollationTypeEPKclmbPFmPKvmmE:3804128:26350 + 6: 24866 + 7: 24866 + 15: 23191 + 16: 23191 + 17.1: 65 + 19: 25123 + 20: 25123 _ZL20ob_hash_sort_utf8mb4PK13ObCharsetInfoPKhmPmS4_bPFmPKvmmE.5aa8bf9a2f1d92c2672c2bb9fbfc2e97:25361 + 24: 27712 + 8: _ZN9oceanbase6common9ObCharset17is_argument_validENS0_15ObCollationTypeEPKclS4_l:160096 + 3: 25447 + 4: 0 + 4.2: 0 + 5: 0 + 8: 0 + 11.2: 65 + 18: 0 + 19: 0 + 19.1: 0 + 21.2: 65 + 3: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:126654 + 2: 24866 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:25174 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:101788 + 2: 25447 +_ZNK9oceanbase3sql15ObTableLocation32calculate_candi_tablet_locationsERNS0_13ObExecContextERKNS_6common9Ob2DArrayINS4_10ObObjParamELi2079744ENS4_18ObWrapperAllocatorELb0ENS4_9ObSEArrayIPS6_Ll1ES7_Lb0EEEEERNS4_8ObIArrayINS0_16ObCandiTabletLocEEERKNS4_20ObDataTypeCastParamsEb:3803450:4453 + 6: 4247 + 7: 4247 + 10: 4247 + 11: 47 + 12.1: 47 + 13.1: 4247 _ZNK9oceanbase3sql15ObTableLocation20calculate_tablet_idsERNS0_13ObExecContextERKNS_6common9Ob2DArrayINS4_10ObObjParamELi2079744ENS4_18ObWrapperAllocatorELb0ENS4_9ObSEArrayIPS6_Ll1ES7_Lb0EEEEERNS4_8ObIArrayINS4_10ObTabletIDEEERNSE_ImEERKNS4_20ObDataTypeCastParamsE:4412 + 13.2: 4185 + 18.1: 47 + 19.3: 4227 + 19.4: 4535 + 27.1: 47 + 30: 4535 + 31.5: 4535 _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl8ENS0_19ModulePageAllocatorELb0EED2Ev:4555 + 31.6: 47 + 31.7: 47 + 31.9: 4525 _ZN9oceanbase6common13ObSEArrayImplImLl8ENS0_19ModulePageAllocatorELb0EED2Ev:4606 + 8: _ZN9oceanbase6common9ObSEArrayImLl8ENS0_19ModulePageAllocatorELb0EEC2Ev:709249 + 0.1: 4247 + 0.5: _ZN9oceanbase6common13ObSEArrayImplImLl8ENS0_19ModulePageAllocatorELb0EEC2ElRKS2_:632803 + 2: 4247 + 5: 4247 + 6: 4247 + 8: 4247 + 17.1: 4247 + 2: _ZN9oceanbase6common8ObIArrayImEC2EPml:76446 + 0: _ZN9oceanbase6common12ObIArrayWrapImEC2EPml:76446 + 0: 4247 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:242079 + 0: 4247 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:106175 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:106175 + 2: 4247 + 8: 4247 + 9: _ZN9oceanbase6common9ObSEArrayINS0_10ObTabletIDELl8ENS0_19ModulePageAllocatorELb0EEC2Ev:543616 + 0.1: 4247 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl8ENS0_19ModulePageAllocatorELb0EEC2ElRKS3_:467170 + 2: 4247 + 5: 4247 + 6: 4247 + 8: 4247 + 17.1: 4247 + 2: _ZN9oceanbase6common8ObIArrayINS0_10ObTabletIDEEC2EPS2_l:76446 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_10ObTabletIDEEC2EPS2_l:76446 + 0: 4247 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:135904 + 0: 4247 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:76446 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:76446 + 2: 4247 + 8: 4247 + 19.2: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:29295 + 2: 4185 + 19.3: _ZNK9oceanbase3sql15ObTableLocation20get_tablet_locationsERNS0_8ObDASCtxEPNS0_16ObSQLSessionInfoEmRKNS_6common8ObIArrayINS6_10ObTabletIDEEERKNS7_ImEERNS7_INS0_16ObCandiTabletLocEEEbb:1744277 + 6: 4227 + 9: 4185 + 10: 4185 + 11: 47 + 12.1: 47 + 14.1: 3910 + 14.2: 47 + 14.4: 47 + 15: 3910 _ZN9oceanbase6common13ObSEArrayImplINS_3sql16ObCandiTabletLocELl2ENS0_19ModulePageAllocatorELb1EE5resetEv:4404 + 17: 4578 _ZN9oceanbase6common13ObSEArrayImplINS_3sql16ObCandiTabletLocELl2ENS0_19ModulePageAllocatorELb1EE16prepare_allocateEl:4505 + 18.1: 47 + 21: 4578 _ZN9oceanbase5share12ObLSLocationC1Ev:4572 + 22.1: 4625 + 22.3: 4625 + 22.5: 4625 + 23: 4511 _ZN9oceanbase5share12ObLSLocation5resetEv:4498 + 24: 4227 + 25: 4227 + 28: 47 + 28.1: 47 + 31.1: 4227 + 33.1: 4227 _ZN9oceanbase3sql19ObDASLocationRouter3getERKNS0_17ObDASTableLocMetaERKNS_6common10ObTabletIDERNS_5share12ObLSLocationE:4246 + 35.1: 47 + 37: 4450 + 39.1: 47 + 42: 4450 + 43: 47 + 44.1: 47 + 45.1: 4450 + 45.5: 4450 _ZN9oceanbase3sql16ObCandiTabletLoc39set_part_loc_with_only_readable_replicaERKmS3_RKNS_6common10ObTabletIDERKlRKNS_5share12ObLSLocationERKNS4_8ObIArrayINS4_6ObAddrEEE:4594 + 45.6: 4476 + 49.1: 47 + 53.1: 4476 _ZZNK9oceanbase3sql15ObTableLocation20get_tablet_locationsERNS0_8ObDASCtxEPNS0_16ObSQLSessionInfoEmRKNS_6common8ObIArrayINS6_10ObTabletIDEEERKNS7_ImEERNS7_INS0_16ObCandiTabletLocEEEbbENK6$_1111clEPKc.c0f3ebb58adf60d04e27c69da5b90c06:4909 + 58: 47 + 58.1: 4582 _ZN9oceanbase5share12ObLSLocationD1Ev:4562 + 61: 4535 + 14.1: _ZN9oceanbase3lib20is_trace_log_enabledEv:31555 + 2: 4185 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:4208 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:27370 + 2: 3910 + 14.2: _ZN9oceanbase6common18get_trace_recorderEv:2867 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:2867 + 7: 47 + 8: 47 + 8.1: 47 + 14.4: _ZN9oceanbase3lib20is_trace_log_enabledEv:564 + 2: 47 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:329 + 2: 47 + 14.5: _ZN9oceanbase6common18get_trace_recorderEv:3196 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:3196 + 7: 47 + 8: 47 + 8.1: 47 + 14.11: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl189ELl1600EE9add_eventEv:3760 + 2: 47 + 3.1: 47 + 6: 47 + 10: 47 + 11: 47 + 12: 47 + 14.12: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:1316 + 0: 47 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:235 + 2: 47 + 16: _ZNK9oceanbase6common12ObIArrayWrapINS0_10ObTabletIDEE5countEv:29652 + 0: 4236 + 24: _ZN9oceanbase6common12ObIArrayWrapINS_3sql16ObCandiTabletLocEE2atEl:50724 + 6: 4227 + 28: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:329 + 0: 47 + 45.1: _ZNK9oceanbase6common12ObIArrayWrapImE2atEl:62300 + 6: 4450 + 45.2: _ZNK9oceanbase6common12ObIArrayWrapINS0_10ObTabletIDEE2atEl:31150 + 6: 4450 + 45.4: _ZNK9oceanbase3sql16ObQueryRetryInfo19get_invalid_serversEv:26700 + 2: 4450 +_ZN9oceanbase7obmysql7OMPKRowC2ERKNS0_10ObMySQLRowE:3761316:81843 + 1: 80028 + 2: 80028 + 4: 80028 + 0: _ZN9oceanbase7obmysql13ObMySQLPacketC2Ev:1840644 + 1.1: 80028 + 1: _ZN9oceanbase7obmysql19ObMySQLPacketHeaderC2Ev:880308 + 1: 80028 +_ZN9oceanbase7obmysql7OMPKRowC1ERKNS0_10ObMySQLRowE:3761316:81843 + 1: 80028 + 2: 80028 + 4: 80028 + 0: _ZN9oceanbase7obmysql13ObMySQLPacketC2Ev:1840644 + 1.1: 80028 + 1: _ZN9oceanbase7obmysql19ObMySQLPacketHeaderC2Ev:880308 + 1: 80028 +_ZN9oceanbase6common26ObWrapperAllocatorWithAttr5allocEl:3758331:41765 + 0: 40316 + 0: _ZN9oceanbase6common18ObWrapperAllocator5allocElRKNS_3lib9ObMemAttrE:3261174 + 2: 40316 + 2.2: 40316 _ZN9oceanbase6common18ObWrapperAllocator5allocElRKNS_3lib9ObMemAttrE:36258 + 49: 40316 + 2.2: _ZN9oceanbase6common16ObArenaAllocator5allocElRKNS_3lib9ObMemAttrE:673555 + 3: _ZN9oceanbase6common16ObArenaAllocator5allocEl:673555 + 0: 5857 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13alloc_alignedEll:650127 + 3: 5857 + 6: 5857 + 7: 5857 + 8: 5857 + 10: 5857 + 11: 5857 + 12: 5857 + 13: 5857 + 15.1: 0 + 16: 0 + 18: 0 + 20: 0 + 28: 0 + 35: 5857 + 36: 5857 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE15ensure_cur_pageEv:76141 + 2: 5857 + 3: 0 + 5.1: 0 + 8: 0 + 9: 0 + 10: 0 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:0 + 2: 0 + 2.2: 0 + 2.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 9: _ZSt3maxIlERKT_S2_S2_:0 + 5: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 8: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:0 + 0: 0 + 7: _ZN9oceanbase6common16get_align_offsetEPvl:76141 + 3: 5857 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:40999 + 0: 5857 + 11: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:40999 + 7: 5857 + 15.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE18is_normal_overflowEl:0 + 2: 0 + 16: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11extend_pageEl:0 + 4: 0 + 5: 0 + 8: 0 + 9: 0 + 10.1: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 12: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_tailEPNS3_4PageE:0 + 2: 0 + 3: 0 + 5: 0 + 23.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16lookup_next_pageEl:0 + 3.1: 0 + 4.1: 0 + 5: 0 + 5.1: 0 + 7: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page10reuse_sizeEv:0 + 0: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 32: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9alloc_bigEl:0 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 3: 0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_headEPNS3_4PageE:0 + 4: 0 + 5: 0 + 7: 0 + 7: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:0 + 3: 0 +_ZN9oceanbase12blocksstable11ObRowReader5resetEv:3750948:49121 + 1: 46308 + 3: 46308 + 9: 46308 + 11: 46308 + 13: 46308 + 8: _ZN9oceanbase12blocksstable21ObClusterColumnReader5resetEv:1389240 + 3: 46308 + 4: 46308 + 7: 46308 +_ZNK9oceanbase3sql12ObQueryRange17get_tablet_rangesERNS_6common12ObIAllocatorERNS0_13ObExecContextERNS2_9ObSEArrayIPNS2_10ObNewRangeELl1ENS2_19ModulePageAllocatorELb0EEERNS7_IbLl2ESA_Lb1EEERKNS2_20ObDataTypeCastParamsE:3716503:4397 + 5: 4215 + 6: 4215 + 7: 4215 + 8: 3 + 9: 3 + 10: 3 + 11.1: 3 + 12.1: 3 + 13.1: 3 + 14.1: 3 + 15.1: 3 + 17.1: 4215 + 18: 2992 + 24.1: 3 + 27.2: 995 _ZNK9oceanbase3sql12ObQueryRange21gen_simple_scan_rangeERNS_6common12ObIAllocatorERNS0_13ObExecContextERNS2_9ObSEArrayIPNS2_10ObNewRangeELl1ENS2_19ModulePageAllocatorELb0EEERNS7_IbLl2ESA_Lb1EEERKNS2_20ObDataTypeCastParamsE:1040 + 27.4: 3 + 29: 3818 + 18: _ZNK9oceanbase3sql12ObQueryRange20gen_simple_get_rangeERKNS0_9ObKeyPartERNS_6common12ObIAllocatorERNS0_13ObExecContextERNS5_9ObSEArrayIPNS5_10ObNewRangeELl1ENS5_19ModulePageAllocatorELb0EEERNSA_IbLl2ESD_Lb1EEERKNS5_20ObDataTypeCastParamsE:3174950 + 7: 3259 + 10: 3259 + 11: 3259 + 13: 3259 + 14: 3259 + 16: 3405 + 17: 3259 + 18: 7 + 19.1: 7 + 21: 3259 + 22: 3259 + 23: 3259 + 25: 4 + 25.1: 3389 + 25.3: 5 + 32.1: 3503 + 32.4: 3406 + 32.5: 3406 + 33: 3406 + 34: 7 + 36: 3406 + 38: 3648 + 39.1: 7 + 40.1: 3648 + 43.1: 3648 + 43.3: 3648 _ZN9oceanbase3sql10ObSQLUtils24is_same_type_for_compareERKNS_6common9ObObjMetaES5_:3729 + 48.1: 3720 + 51: 7 + 53.1: 3259 + 57.1: 3 + 58.1: 3 + 59.1: 3 + 63: 3474 + 65.1: 7 + 65.3: 7 + 71: 3697 + 73.1: 7 + 73.3: 7 + 80: 3503 + 81: 3503 + 84: 3323 + 85: 3323 + 86: 3323 + 87: 3323 + 88: 3323 + 104: 3323 + 104.2: 3323 + 105: 3323 _ZN9oceanbase6common13ObSEArrayImplIPNS0_10ObNewRangeELl1ENS0_19ModulePageAllocatorELb0EE9push_backERKS3_:3317 + 106.1: 3 + 107.1: 3252 _ZN9oceanbase6common13ObSEArrayImplIbLl2ENS0_19ModulePageAllocatorELb1EE9push_backERKb:3246 + 108.1: 3 + 111: 3 + 17: _ZN9oceanbase6common16ObArenaAllocator5allocEl:412664 + 0: 3259 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13alloc_alignedEll:399628 + 3: 3259 + 6: 3259 + 7: 3259 + 8: 3259 + 10: 3259 + 11: 3259 + 12: 3259 + 13: 3259 + 15.1: 3 + 16: 3 + 18: 3 + 20: 3 + 28: 3 + 35: 3259 + 36: 3259 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE15ensure_cur_pageEv:45507 + 2: 3259 + 3: 7 + 5.1: 7 + 8: 7 + 9: 7 + 10: 7 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:2311 + 5: 7 + 6: 7 + 8: 7 + 9: 7 + 11.1: 3 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:1857 + 2: 7 + 3: 7 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:175 + 5: 7 + 7: 7 + 8: 7 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:1379 + 2: 7 + 2.2: 7 + 2.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:1176 + 3: 7 + 4: 7 + 5: 7 + 6: 7 + 7: 7 + 8: 7 + 9: 7 + 10: 7 + 11: 7 + 13: 7 + 14.1: 7 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:49 + 2: 7 + 9: _ZSt3maxIlERKT_S2_S2_:84 + 5: 7 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:168 + 1: 7 + 3: 7 + 8: _ZL12abort_unlessb:78 + 5: 7 + 6: 3 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:56 + 0: 7 + 7: _ZN9oceanbase6common16get_align_offsetEPvl:42367 + 3: 3259 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:22813 + 0: 3259 + 11: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:22813 + 7: 3259 + 15.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE18is_normal_overflowEl:12 + 2: 3 + 16: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11extend_pageEl:240 + 4: 3 + 5: 3 + 8: 3 + 9: 3 + 10.1: 3 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:24 + 2: 3 + 12: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_tailEPNS3_4PageE:69 + 2: 3 + 3: 3 + 5: 3 + 23.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16lookup_next_pageEl:135 + 3.1: 3 + 4.1: 3 + 5: 3 + 5.1: 3 + 7: 3 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page10reuse_sizeEv:33 + 0: 3 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:24 + 2: 3 + 32: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9alloc_bigEl:1078 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:868 + 3: 7 + 5: 7 + 6: 7 + 8: 7 + 9: 7 + 11.1: 7 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:329 + 2: 7 + 3: 7 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:105 + 5: 7 + 7: 7 + 8: 7 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:168 + 1: 7 + 3: 7 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_headEPNS3_4PageE:119 + 4: 7 + 5: 7 + 7: 7 + 7: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:91 + 3: 7 + 21: _ZN9oceanbase6common10ObNewRangeC2Ev:107547 + 2: _ZN9oceanbase6common10ObNewRange5resetEv:107547 + 2: 3259 + 3: _ZN9oceanbase6common12ObBorderFlag8set_dataEa:13036 + 0: 3259 + 4: _ZN9oceanbase6common8ObRowkey6assignEPNS0_5ObObjEl:71698 + 2: 3259 + 26: _ZN9oceanbase6common5ObObj13set_min_valueEv:54279 + 2: _ZN9oceanbase6common5ObObj7set_extEl:54279 + 4: 3389 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:27127 + 0: 3389 + 27: _ZN9oceanbase6common5ObObj13set_max_valueEv:125458 + 2: _ZN9oceanbase6common5ObObj7set_extEl:125458 + 3: 3389 + 4: 3389 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:64411 + 0: 3389 + 0: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:27112 + 0: 3389 + 0.2: _ZN9oceanbase6common9ObObjMeta15set_extend_typeEh:20334 + 0: 3389 + 37: _ZN9oceanbase6common5ObObjC2ERKS1_:74932 + 2: 3406 + 0: _ZN9oceanbase6common9ObObjMetaC2Ev:27248 + 1: 3406 + 38: _ZNK9oceanbase3sql12ObQueryRange27get_result_value_with_rowidERKNS0_9ObKeyPartERNS_6common5ObObjERNS0_13ObExecContextEPNS5_12ObIAllocatorE:161195 + 8: 3406 _ZNK9oceanbase3sql12ObQueryRange16get_result_valueERNS_6common5ObObjERNS0_13ObExecContextEPNS2_12ObIAllocatorE:3522 + 9.1: 7 + 10.1: 3326 + 10.2: 3725 + 14.1: 3 + 15.1: 3 + 17.1: 3 + 17.2: 3 + 18.1: 3 + 19.2: 7 + 20: 3 + 21.1: 3 + 23.1: 7 + 25: 3 + 25.2: 3 + 27: 3648 + 10.1: _ZNK9oceanbase6common5ObObj10is_unknownEv:19956 + 0: _ZNK9oceanbase6common9ObObjMeta10is_unknownEv:19956 + 0: 3326 + 13: _ZN9oceanbase6common7ObArrayINS0_5ObObjENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_22NotImplementItemEncodeIS2_EEEC2Ev:345 + 0.1: 3 + 0.5: _ZN9oceanbase6common11ObArrayImplINS0_5ObObjENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_22NotImplementItemEncodeIS2_EEEC2ElRKS3_:312 + 3: 3 + 4: 3 + 7.1: 3 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:144 + 0: 3 + 14: _ZNK9oceanbase6common5ObObj10get_urowidEv:30 + 2: 3 + 15: _ZNK9oceanbase6common12ObURowIDData17is_physical_rowidEv:48 + 2: 3 + 3: 3 + 19.1: _ZNK9oceanbase6common12ObURowIDData17get_real_pk_countERKNS0_8ObIArrayINS0_5ObObjEEE:432 + 3: 3 + 4: 3 + 7.1: 7 + 9: 7 + 10: 7 + 8: _ZNK9oceanbase6common12ObURowIDData21get_pk_version_offsetEv:91 + 2: 7 + 2: _ZNK9oceanbase6common12ObURowIDData17get_guess_dba_lenEv:70 + 4: 7 + 10.1: _ZN9oceanbase6common12ObURowIDData17get_real_pk_countEhl:105 + 3: 7 + 2: _ZN9oceanbase6common12ObURowIDData20get_part_gen_col_cntEh:63 + 2: 7 + 23: _ZN9oceanbase6common12ObIArrayWrapINS0_5ObObjEE2atEl:49 + 6: 7 + 40.1: _ZNK9oceanbase6common5ObObj10is_unknownEv:18240 + 0: _ZNK9oceanbase6common9ObObjMeta10is_unknownEv:18240 + 0: 3648 + 45: _ZNK9oceanbase6common9ObObjMeta18get_collation_typeEv:16 + 0: 4 + 45.1: _ZN9oceanbase6common5ObObj18set_collation_typeERKNS0_15ObCollationTypeE:8 + 0: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:8 + 0: 4 + 47: _ZN9oceanbase6common5ObObjC2ERKS1_:160 + 2: 4 + 0: _ZN9oceanbase6common9ObObjMetaC2Ev:36 + 1: 4 + 48.2: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:14880 + 0: 3720 + 51: _ZNK9oceanbase6common5ObObj10get_urowidEv:70 + 2: 7 + 51.1: _ZNK9oceanbase6common12ObURowIDData17is_physical_rowidEv:161 + 2: 7 + 3: 7 + 52: _ZN9oceanbase6common5ObObjC2ERKS1_:203 + 2: 7 + 0: _ZN9oceanbase6common9ObObjMetaC2Ev:63 + 1: 7 + 53.1: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:6712 + 0: 3356 + 53.2: _ZNK9oceanbase6common5ObObj19is_overflow_integerENS0_9ObObjTypeE:186313 + 11: 3356 + 13: 3 + 13.1: 3 + 13.4: 3 + 13.5: 3 + 17: 3 + 17.1: 3 + 17.4: 3 + 17.5: 3 + 21: 3 + 21.1: 3 + 21.4: 3 + 21.5: 3 + 25: 3259 + 25.1: 3259 + 25.4: 3 + 25.5: 3 + 29: 3 + 29.4: 3 + 33: 3 + 33.4: 3 + 37: 3 + 37.4: 3 + 41: 3 + 41.4: 3 + 45: 3 + 45.4: 3 + 49: 3 + 13: _ZNK9oceanbase6common5ObObj17is_signed_integerEv:18 + 0: _ZNK9oceanbase6common9ObObjMeta17is_signed_integerEv:18 + 3: 3 + 13.1: _ZNK9oceanbase6common5ObObj7get_intEv:15 + 0: 3 + 13.4: _ZNK9oceanbase6common5ObObj19is_unsigned_integerEv:12 + 0: _ZNK9oceanbase6common9ObObjMeta19is_unsigned_integerEv:12 + 3: 3 + 17: _ZNK9oceanbase6common5ObObj17is_signed_integerEv:18 + 0: _ZNK9oceanbase6common9ObObjMeta17is_signed_integerEv:18 + 3: 3 + 17.1: _ZNK9oceanbase6common5ObObj7get_intEv:15 + 0: 3 + 17.4: _ZNK9oceanbase6common5ObObj19is_unsigned_integerEv:12 + 0: _ZNK9oceanbase6common9ObObjMeta19is_unsigned_integerEv:12 + 3: 3 + 21: _ZNK9oceanbase6common5ObObj17is_signed_integerEv:18 + 0: _ZNK9oceanbase6common9ObObjMeta17is_signed_integerEv:18 + 3: 3 + 21.4: _ZNK9oceanbase6common5ObObj19is_unsigned_integerEv:12 + 0: _ZNK9oceanbase6common9ObObjMeta19is_unsigned_integerEv:12 + 3: 3 + 25: _ZNK9oceanbase6common5ObObj17is_signed_integerEv:19554 + 0: _ZNK9oceanbase6common9ObObjMeta17is_signed_integerEv:19554 + 3: 3259 + 25.1: _ZNK9oceanbase6common5ObObj7get_intEv:16295 + 0: 3259 + 25.4: _ZNK9oceanbase6common5ObObj19is_unsigned_integerEv:12 + 0: _ZNK9oceanbase6common9ObObjMeta19is_unsigned_integerEv:12 + 3: 3 + 29: _ZNK9oceanbase6common5ObObj17is_signed_integerEv:18 + 0: _ZNK9oceanbase6common9ObObjMeta17is_signed_integerEv:18 + 3: 3 + 29.4: _ZNK9oceanbase6common5ObObj19is_unsigned_integerEv:12 + 0: _ZNK9oceanbase6common9ObObjMeta19is_unsigned_integerEv:12 + 3: 3 + 33: _ZNK9oceanbase6common5ObObj17is_signed_integerEv:18 + 0: _ZNK9oceanbase6common9ObObjMeta17is_signed_integerEv:18 + 3: 3 + 33.4: _ZNK9oceanbase6common5ObObj19is_unsigned_integerEv:12 + 0: _ZNK9oceanbase6common9ObObjMeta19is_unsigned_integerEv:12 + 3: 3 + 37: _ZNK9oceanbase6common5ObObj17is_signed_integerEv:18 + 0: _ZNK9oceanbase6common9ObObjMeta17is_signed_integerEv:18 + 3: 3 + 37.4: _ZNK9oceanbase6common5ObObj19is_unsigned_integerEv:12 + 0: _ZNK9oceanbase6common9ObObjMeta19is_unsigned_integerEv:12 + 3: 3 + 41: _ZNK9oceanbase6common5ObObj17is_signed_integerEv:18 + 0: _ZNK9oceanbase6common9ObObjMeta17is_signed_integerEv:18 + 3: 3 + 41.4: _ZNK9oceanbase6common5ObObj19is_unsigned_integerEv:12 + 0: _ZNK9oceanbase6common9ObObjMeta19is_unsigned_integerEv:12 + 3: 3 + 45: _ZNK9oceanbase6common5ObObj17is_signed_integerEv:18 + 0: _ZNK9oceanbase6common9ObObjMeta17is_signed_integerEv:18 + 3: 3 + 45.4: _ZNK9oceanbase6common5ObObj19is_unsigned_integerEv:12 + 0: _ZNK9oceanbase6common9ObObjMeta19is_unsigned_integerEv:12 + 3: 3 + 49: _ZNK9oceanbase6common5ObObj17is_signed_integerEv:18 + 0: _ZNK9oceanbase6common9ObObjMeta17is_signed_integerEv:18 + 3: 3 + 49.4: _ZNK9oceanbase6common5ObObj19is_unsigned_integerEv:12 + 0: _ZNK9oceanbase6common9ObObjMeta19is_unsigned_integerEv:12 + 3: 3 + 55: _ZN9oceanbase6common5ObObj13set_meta_typeERKNS0_9ObObjMetaE:19554 + 0: 3259 + 66: _ZN9oceanbase6common5ObObj13set_max_valueEv:182 + 2: _ZN9oceanbase6common5ObObj7set_extEl:182 + 4: 7 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:119 + 0: 7 + 67: _ZN9oceanbase6common5ObObj13set_min_valueEv:126 + 2: _ZN9oceanbase6common5ObObj7set_extEl:126 + 4: 7 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:63 + 0: 7 + 74: _ZN9oceanbase6common5ObObj13set_min_valueEv:147 + 2: _ZN9oceanbase6common5ObObj7set_extEl:147 + 4: 7 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:84 + 0: 7 + 75: _ZN9oceanbase6common5ObObj13set_max_valueEv:126 + 2: _ZN9oceanbase6common5ObObj7set_extEl:126 + 4: 7 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:63 + 0: 7 + 86: _ZN9oceanbase6common8ObRowkey6assignEPNS0_5ObObjEl:26584 + 2: 3323 + 3: 3323 + 87: _ZN9oceanbase6common8ObRowkey6assignEPNS0_5ObObjEl:26584 + 2: 3323 + 3: 3323 + 89: _ZN9oceanbase6common12ObBorderFlag19set_inclusive_startEv:9969 + 0: 3323 +_ZN9oceanbase3sql5ObSql14after_get_planERNS0_14ObPlanCacheCtxERNS0_16ObSQLSessionInfoEPNS0_14ObPhysicalPlanEbPKNS_6common9Ob2DArrayINS8_10ObObjParamELi2079744ENS8_18ObWrapperAllocatorELb0ENS8_9ObSEArrayIPSA_Ll1ESB_Lb0EEEEE:3704232:5736 + 0: 0 + 2: 0 + 5: 5023 + 6: 5023 + 7: 5023 + 8: 5052 + 9: 5052 + 13: 5052 + 19: 5052 + 20: 5052 + 22.1: 4678 + 22.2: 0 + 22.4: 0 + 22.5: 0 + 22.7: 0 + 22.8: 0 + 22.9: 0 + 24: 4678 + 24.1: 0 + 24.2: 0 + 25: 4678 + 26: 0 + 29.1: 0 + 33: 4678 _ZN9oceanbase3sql13ObExecContext22init_physical_plan_ctxERKNS0_14ObPhysicalPlanE:4965 + 34.1: 6 + 35.1: 4627 + 35.2: 4627 _ZN9oceanbase3sql8ObDASCtx4initERKNS0_14ObPhysicalPlanERNS0_13ObExecContextE:4630 + 36.1: 6 + 37.1: 4547 + 38.1: 0 + 40: 4503 + 42.2: 4503 + 42.3: 4503 + 42.5: 26 + 45: 26 + 46: 26 + 50: 4503 + 51.1: 4503 _ZN9oceanbase3sql8ObDASCtx24unmark_need_check_serverEv:4514 + 53: 4408 + 54.1: 6 + 55.1: 4348 + 56: 20 + 63: 6 + 63.1: 4436 + 64: 4436 + 65: 6 + 65.1: 6 + 66: 6 + 69: 6 + 74.1: 6 + 74.3: 0 + 76: 0 + 78: 6 + 80: 6 + 81: 6 + 82: 6 + 83.1: 0 + 83.2: 0 + 84: 0 + 85: 0 + 85.1: 0 + 97: 0 + 98: 0 + 99.1: 0 + 99.3: 0 + 101: 0 + 103: 0 + 104: 0 + 105: 0 + 106: 0 + 109: 0 + 110: 0 + 111: 0 + 112: 0 + 113: 0 + 114: 0 + 126: 4865 + 131: 4865 + 134: 4344 + 136: 4344 + 136.1: 4343 + 137: 6 + 137.2: 6 + 139.1: 0 + 140: 0 + 144: 4987 + 144.2: 4440 + 145.1: 4440 + 146: 4440 + 147: 0 + 148: 0 + 149.1: 0 + 150.1: 0 + 152.1: 0 + 153.1: 0 + 157: 4440 + 159: 0 + 169: 5013 + 7: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:35161 + 2: 5023 + 8: _ZN9oceanbase6common9EventItemC2Ev:105483 + 2: 5023 + 8.1: _ZN9oceanbase6common10EventTable8instanceEv:85391 + 2: 5023 + 2.1: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common10EventTableC2Ev:0 + 0: 0 + 2: 0 + 8.2: _ZN9oceanbase6common10EventTable9get_eventEl:175805 + 1.4: 5023 + 8.3: _ZNK9oceanbase6common9EventItem4callEv:166293 + 2: 5023 + 3: 5023 + 5.1: 6 + 7.1: 6 + 8: 0 + 9.1: 0 + 11: 6 + 12: 6 + 13.1: 6 + 18: 5023 + 9.1: _ZNK9oceanbase3sql14ObPhysicalPlan13get_evolutionEv:72272 + 0: 4517 + 10: _ZN9oceanbase3sql18ObBasicSessionInfo15get_is_in_retryEv:60624 + 1: 5052 + 11.1: _ZNK9oceanbase3sql16ObQueryRetryInfo24get_last_query_retry_errEv:35364 + 0: 5052 + 22.1: _ZN9oceanbase3lib20is_trace_log_enabledEv:55975 + 2: 4517 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:4732 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:51458 + 2: 4678 + 22.4: _ZN9oceanbase3lib20is_trace_log_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:0 + 2: 0 + 22.5: _ZN9oceanbase6common18get_trace_recorderEv:0 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:0 + 7: 0 + 8: 0 + 8.1: 0 + 22.8: _ZN9oceanbase6common18get_trace_recorderEv:0 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:0 + 7: 0 + 8: 0 + 8.1: 0 + 22.10: _ZN9oceanbase6common18get_trace_recorderEv:0 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:0 + 7: 0 + 8: 0 + 8.1: 0 + 22.17: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl189ELl1600EE9add_eventERb:0 + 2: 0 + 3.1: 0 + 7: 0 + 12: 0 + 13: 0 + 14: 0 + 22.18: _ZN9oceanbase6common18get_trace_recorderEv:0 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:0 + 7: 0 + 8: 0 + 8.1: 0 + 22.19: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl189ELl1600EE10check_lockEv:0 + 2: 0 + 3: _ZN9oceanbase3lib7ObMutex4lockEv:0 + 0: 0 + 22.20: _ZN9oceanbase6common18get_trace_recorderEv:0 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:0 + 7: 0 + 8: 0 + 8.1: 0 + 22.22: _ZN9oceanbase6common18get_trace_recorderEv:0 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:0 + 7: 0 + 8: 0 + 8.1: 0 + 22.24: _ZN9oceanbase6common18get_trace_recorderEv:0 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:0 + 7: 0 + 8: 0 + 8.1: 0 + 10: 0 + 22.26: _ZN9oceanbase3sql14ObPhysicalPlan11get_plan_idEv:0 + 0: _ZNK9oceanbase3sql17ObILibCacheObject13get_object_idEv:0 + 0: 0 + 22.27: _ZN9oceanbase4yson24databuff_encode_elementsImEEiPclRltRKT_:0 + 0.1: _ZN9oceanbase4yson23databuff_encode_elementImEEiPclRltRKT_:0 + 3: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 22.30: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl189ELl1600EE12check_unlockEv:0 + 2: 0 + 3: _ZN9oceanbase3lib7ObMutex6unlockEv:0 + 0: 0 + 24.2: _ZN9oceanbase6common17get_perf_recorderEv:0 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_19ObPerfEventRecorderELm0EEEPT_v:0 + 7: 0 + 8: 0 + 8.1: 0 + 24.4: _ZN9oceanbase3sql14ObPhysicalPlan11get_plan_idEv:0 + 0: _ZNK9oceanbase3sql17ObILibCacheObject13get_object_idEv:0 + 0: 0 + 24.5: _ZN9oceanbase6common19ObPerfEventRecorder10set_cat_idEm:0 + 0: 0 + 26: _ZN9oceanbase3sql17ObILibCacheObject13get_allocatorEv:0 + 0: 0 + 26.1: _ZN9oceanbase6common8ObStringC2EPKc:0 + 6: 0 + 26.2: _ZN9oceanbase6common15ob_write_stringINS0_12ObIAllocatorEEEiRT_RKNS0_8ObStringERS5_b:0 + 2: 0 + 3: 0 + 5: 0 + 7.1: 0 + 9: 0 + 10.1: 0 + 12: 0 + 18: 0 + 6: _ZN9oceanbase6common8ObString6assignEPci:0 + 3: 0 + 8: _ZN9oceanbase6common8ObString6assignEPci:0 + 3: 0 + 16: _ZN9oceanbase6common8ObString10assign_ptrEPKci:0 + 2: 0 + 3: 0 + 35.1: _ZN9oceanbase3sql13ObExecContext11get_das_ctxEv:32389 + 0: 4627 + 37.1: _ZN9oceanbase3sql14ObPhysicalPlan18get_autoinc_paramsEv:36376 + 2: 4547 + 37.2: _ZN9oceanbase3sql17ObPhysicalPlanCtx18set_autoinc_paramsERNS_6common8ObIArrayINS_5share12AutoincParamEEE:348716 + 2: 4547 + 2: _ZN9oceanbase6common16ObFixedArrayImplINS_5share12AutoincParamENS0_12ObIAllocatorEE6assignERKNS0_8ObIArrayIS3_EE:316887 + 2: 4547 + 3: 4547 + 4: 4547 + 5: 4547 + 7: 0 + 8.1: 0 + 13.1: 4503 + 13.3: 4503 + 13.5: 26 + 14: 26 + 14.1: 26 + 15.1: 0 + 3: _ZNK9oceanbase6common12ObIArrayWrapINS_5share12AutoincParamEE5countEv:36376 + 0: 4547 + 11: _ZN9oceanbase6common16ObFixedArrayImplINS_5share12AutoincParamENS0_12ObIAllocatorEE5clearEv:64200 + 0: 4584 + 14: _ZNK9oceanbase6common12ObIArrayWrapINS_5share12AutoincParamEE2atEl:624 + 6: 26 + 40.1: _ZN9oceanbase3sql17ObPhysicalPlanCtx24set_tablet_autoinc_paramERKNS_5share20ObTabletAutoincParamE:67545 + 2: 4503 + 43: _ZN9oceanbase6common12ObIArrayWrapINS_5share12AutoincParamEE2atEl:364 + 6: 26 + 45: _ZNK9oceanbase3sql18ObBasicSessionInfo34get_local_auto_increment_incrementEv:1404 + 2: 26 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache28get_auto_increment_incrementEv:598 + 0: 26 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache28get_auto_increment_incrementEb:182 + 46: _ZNK9oceanbase3sql18ObBasicSessionInfo31get_local_auto_increment_offsetEv:1222 + 2: 26 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache25get_auto_increment_offsetEv:598 + 0: 26 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache25get_auto_increment_offsetEb:182 + 51: _ZN9oceanbase3sql13ObExecContext11get_das_ctxEv:22515 + 0: 4503 + 53: _ZN9oceanbase3sql5ObSql18check_need_rerouteERNS0_14ObPlanCacheCtxEPNS0_14ObPhysicalPlanERb:180736 + 2: 4408 + 5: 4408 + 5.1: 26 + 6: 4408 + 6.1: 4408 + 7: 4408 + 7.1: 20 + 8: 20 + 8.1: 20 + 13.1: 20 + 14: 20 + 14.1: 20 + 17: 20 + 17.1: 20 + 18: 20 + 22: 20 + 23: 0 + 24.1: 0 + 26: 20 + 27: 26 + 28.1: 26 + 30: 20 + 31: 20 + 32: 20 + 33: 20 + 35: 20 + 35.2: 20 + 35.3: 20 + 38.1: 0 + 39.1: 20 + 40: 0 + 41.1: 0 + 42.1: 20 + 42.2: 20 + 43: 0 + 44.1: 0 + 45.1: 20 + 45.2: 20 + 45.3: 20 + 48.1: 0 + 50.1: 20 + 51: 20 + 51.1: 20 + 51.2: 20 + 52.1: 20 + 52.2: 20 + 53.1: 20 + 53.2: 20 + 54: 20 + 54.1: 20 + 54.3: 20 + 55: 20 + 55.1: 20 + 55.2: 20 + 62: 4348 + 8.3: _ZNK9oceanbase6common6ObListIPNS_3sql13ObDASTableLocENS0_12ObIAllocatorEE5emptyEv:208 + 2: 26 + 16: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema18ObSchemaObjVersionEE2atEl:80 + 6: 20 + 18.1: _ZN9oceanbase6common16is_virtual_tableEm:320 + 2: 20 + 26.2: _ZNK9oceanbase6common6ObListIPNS_3sql13ObDASTableLocENS0_12ObIAllocatorEE5emptyEv:160 + 2: 20 + 31.2: _ZN9oceanbase6common6ObListIPNS_3sql13ObDASTableLocENS0_12ObIAllocatorEE9get_firstEv:140 + 0: 20 + 32: _ZN9oceanbase6common6ObListIPNS_3sql14ObDASTabletLocENS0_12ObIAllocatorEE9get_firstEv:80 + 0: 20 + 34.1: _ZN9oceanbase3sql8ObDASCtx19get_location_routerEv:100 + 0: 20 + 35.1: _ZNK9oceanbase5share12ObTenantBase2idEv:140 + 0: 20 + 50.2: _ZN9oceanbase6common6ObAddraSERKS1_:660 + 1: 20 + 2: 20 + 3: 20 + 51.1: _ZNK9oceanbase5share19ObLSReplicaLocation12get_sql_portEv:120 + 0: 20 + 54.1: _ZNK9oceanbase5share6schema21ObSimpleTableSchemaV214get_table_nameEv:240 + 0: 20 + 54.2: _ZN9oceanbase6common8ObStringC2EPKc:560 + 1: 20 + 3: 20 + 5: 20 + 6: 20 + 63.1: _ZNK9oceanbase3sql14ObPhysicalPlan14is_remote_planEv:31052 + 0: 4436 + 64.1: _ZNK9oceanbase3sql14ObPhysicalPlan19contains_temp_tableEv:48 + 0: 6 + 65.2: _ZN9oceanbase6common16ObClusterVersion19get_cluster_versionEv:84 + 0: 6 + 68: _ZN9oceanbase3sql17ObPhysicalPlanCtx26get_param_store_for_updateEv:66 + 0: 6 + 71: _ZNK9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE5countEv:42 + 0: 6 + 74: _ZNK9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE5countEv:42 + 0: 6 + 82: _ZNK9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE5countEv:0 + 0: 0 + 83.1: _ZNK9oceanbase3sql14ObPhysicalPlan20temp_sql_can_prepareEv:0 + 0: 0 + 84.1: _ZNK9oceanbase6common8ObBitSetILl256ENS0_19ModulePageAllocatorELb1EE8is_emptyEv:0 + 2: 0 + 85.1: _ZNK9oceanbase3sql15ObMultiStmtItem21is_batched_multi_stmtEv:0 + 3: 0 + 4: 0 + 6: 0 + 97: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql9ObPCParamEE5countEv:0 + 0: 0 + 99: _ZNK9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE5countEv:0 + 0: 0 + 106: _ZNK9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE5countEv:0 + 0: 0 + 112: _ZNK9oceanbase3sql15ObMultiStmtItem21is_batched_multi_stmtEv:0 + 3: 0 + 4: 0 + 6: 0 + 128: _ZNK9oceanbase3sql18ObBasicSessionInfo24get_local_last_insert_idEv:160545 + 2: 4865 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache18get_last_insert_idEv:72975 + 0: 4865 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache18get_last_insert_idEb:34055 + 0: 4865 + 128.1: _ZN9oceanbase3sql17ObPhysicalPlanCtx26set_last_insert_id_sessionEm:77840 + 2: 4865 + 136.1: _ZNK9oceanbase6common8ObString6lengthEv:26058 + 0: 4343 + 137: _ZN9oceanbase6common8ObString3ptrEv:42 + 0: 6 + 144.2: _ZN9oceanbase3sql18ObBasicSessionInfo19get_is_deserializedEv:35520 + 0: 4440 + 145: _ZNK9oceanbase3sql14ObPhysicalPlan47is_contain_oracle_session_level_temporary_tableEv:31080 + 0: 4440 + 146.1: _ZNK9oceanbase3sql14ObPhysicalPlan19contains_temp_tableEv:35520 + 0: 4440 + 157: _ZNK9oceanbase3sql14ObPhysicalPlan43is_contain_oracle_trx_level_temporary_tableEv:31080 + 0: 4440 + 158: _ZNK9oceanbase3sql16ObSQLSessionInfo23has_tx_level_temp_tableEv:0 + 1: 0 + 160: _ZN9oceanbase3sql16ObSQLSessionInfo23set_tx_level_temp_tableEv:0 + 1: 0 +_ZN9oceanbase3lib12SubObjectMgr11alloc_blockEmRKNS0_9ObMemAttrE:3677611:5419 + 1: 4734 + 2: 5618 + 2: _ZN9oceanbase3lib8BlockSet11alloc_blockEmRKNS0_9ObMemAttrE:3435665 + 7: 4734 + 10: 0 + 11: 0 + 12.1: 4734 + 14.1: 4734 + 18: 0 + 19: 0 + 20: 0 + 28: 4630 + 31: 4616 + 32: 5530 _ZTWN9oceanbase3lib15malloc_callbackE:5571 + 33: 257 _ZTWN9oceanbase3lib15malloc_callbackE:254 + 33.1: 257 _ZN9oceanbase8observer23ObProcessMallocCallbackclERKNS_3lib9ObMemAttrEl:267 + 34: 297 _ZTWN9oceanbase3lib15malloc_callbackE:275 + 34.1: 303 _ZTWN9oceanbase3lib15malloc_callbackE:299 + 35: 0 + 16: _ZN9oceanbase3lib8BlockSet14get_free_blockEiRKNS0_9ObMemAttrE:1823773 + 5: 4749 + 6: 4695 + 8: 4695 + 9: 1143 + 10: 1143 + 11: 1143 + 16: 4745 + 21: 4745 + 25: 2848 + 27: 2848 + 4: _ZNK9oceanbase3lib7ABitSet22find_first_significantEi:378247 + 3: 4752 + 6: 816 + 9: 4752 + 10: 4752 + 12: 3949 + 13.1: 816 + 16: 14 + 19: 761 + 20: 761 + 22: 749 + 23: 749 + 25.1: 14 + 27.1: 2 + 28: 2 + 29: 2 + 32: 2 + 33: 2 + 36: 2 + 37: 2 + 44: 4695 + 9: _ZN9oceanbase3lib7ABitSet6myffslEmi:82144 + 3: 3949 + 4: 4752 + 19: _ZN9oceanbase3lib7ABitSet6myffslEmi:9845 + 2: 761 + 3: 749 + 4: 761 + 23: _ZN9oceanbase3lib7ABitSet6myffslEmi:7490 + 3: 749 + 4: 749 + 28: _ZN9oceanbase3lib7ABitSet6myffslEmi:26 + 2: 2 + 4: 2 + 32: _ZN9oceanbase3lib7ABitSet6myffslEmi:14 + 3: 2 + 4: 2 + 37: _ZN9oceanbase3lib7ABitSet6myffslEmi:40 + 3: 2 + 4: 2 + 13: _ZN9oceanbase3lib7ABitSet5unsetEi:201210 + 2: 3545 + 5: 3545 + 7: 3545 + 8: 3545 + 10: 935 + 11: 935 + 12: 935 + 12.1: 0 + 13: 0 + 22: _ZNK9oceanbase3lib6ABlock5chunkEv:28480 + 2: _ZN9oceanbase3lib6AChunk9ptr2chunkEPKv:28480 + 2: 2848 + 24: _ZNK9oceanbase3lib6AChunk10blk_offsetEPKNS0_6ABlockE:125312 + 2: 2848 + 3: 2848 + 3.2: _ZL12abort_unlessb:51264 + 5: 2848 + 6: 0 + 25: _ZNK9oceanbase3lib6AChunk10offset2blkEi:39872 + 2: 2848 + 25.1: _ZN9oceanbase3lib6ABlockC2Ev:102528 + 1: 2848 + 2: 2848 + 3: 2848 + 4: 2848 + 27: _ZN9oceanbase3lib8BlockSet14add_free_blockEPNS0_6ABlockEiPNS0_6AChunkE:550632 + 9: 2848 + 10: 2848 + 11: 59 + 12: 59 + 13: 59 + 14: 59 + 15: 59 + 17: 2792 + 18: 2792 + 3: _ZNK9oceanbase3lib6AChunk10blk_offsetEPKNS0_6ABlockE:96832 + 2: 2848 + 3: 2848 + 3.2: _ZL12abort_unlessb:51264 + 5: 2848 + 6: 0 + 3.1: _ZN9oceanbase3lib6AChunk19mark_blk_offset_bitEi:62656 + 2: _ZN9oceanbase3lib13ASimpleBitSetILi256EE3setEi:62656 + 2: 2848 + 4: 2848 + 10: _ZN9oceanbase3lib7ABitSet5issetEi:93984 + 3: 2848 + 6: 2848 + 9: 2848 + 19: _ZN9oceanbase3lib7ABitSet3setEi:226152 + 2: 2792 + 5: 2792 + 7: 2792 + 10: 2792 + 11: 2792 + 13: 2792 + 31: _ZN9oceanbase3lib8BlockSet9add_chunkERKNS0_9ObMemAttrE:73331 + 4: 20 + 2: _ZN9oceanbase3lib8BlockSet11alloc_chunkEmRKNS0_9ObMemAttrE:69743 + 3: 11 + 5.1: 11 + 9: 0 + 10: 11 _ZN9oceanbase3lib20ObTenantCtxAllocator11alloc_chunkElRKNS0_9ObMemAttrE:13 + 11: 20 + 13: 20 + 14: 20 + 18: 20 + 19: 13 + 20: 13 + 21: 13 + 22: 13 + 24: 9 + 27: 20 + 5.1: _ZNK9oceanbase3lib10AChunkList5countEv:77 + 2: 11 + 6: _ZN9oceanbase3lib8BlockSet9LockGuardC2ERNS1_4LockE:0 + 0: _ZN9oceanbase3lib8BlockSet4Lock4lockEv:0 + 2: 0 + 3.1: 0 + 4: 0 + 2: _ZN9oceanbase6common8get_itidEv:0 + 4: 0 + 5: 0 + 6: 0 + 8: 0 + 7: _ZN9oceanbase3lib10AChunkList3popEv:0 + 3: 0 + 4: 0 + 7: 0 + 9: 0 + 10: 0 + 12: 0 + 5: _ZN9oceanbase3lib7ObMutex4lockEv:0 + 0: 0 + 13: _ZN9oceanbase3lib7ObMutex6unlockEv:0 + 0: 0 + 8: _ZN9oceanbase3lib8BlockSet9LockGuardD2Ev:0 + 0: _ZN9oceanbase3lib8BlockSet4Lock6unlockEv:0 + 0: 0 + 8.1: _ZN9oceanbase3lib8BlockSet9LockGuardD2Ev:0 + 0: _ZN9oceanbase3lib8BlockSet4Lock6unlockEv:0 + 0: 0 + 13: _ZNK9oceanbase3lib6AChunk4holdEPm:1080 + 2: 20 + 2: _ZN9oceanbase3lib6AChunk9calc_holdEllPm:920 + 3: 20 + 3.2: 0 + 4: 20 + 5.1: 20 + 2: _ZN9oceanbase3lib9align_up2Emm:380 + 2: 20 + 3.4: _ZN9oceanbase3lib9align_up2Emm:0 + 2: 0 + 4: _ZN9oceanbase3lib6ABlockC2Ev:840 + 1: 20 + 2: 20 + 3: 20 + 4: 20 + 5: _ZN9oceanbase3lib8BlockSet14add_free_blockEPNS0_6ABlockEiPNS0_6AChunkE:2608 + 10: 20 + 11: 2 + 12: 2 + 13: 2 + 14: 2 + 15: 2 + 17: 20 + 18: 20 + 3.1: _ZN9oceanbase3lib6AChunk19mark_blk_offset_bitEi:80 + 2: _ZN9oceanbase3lib13ASimpleBitSetILi256EE3setEi:80 + 4: 20 + 10: _ZN9oceanbase3lib7ABitSet5issetEi:680 + 3: 20 + 9: 20 + 19: _ZN9oceanbase3lib7ABitSet3setEi:1168 + 2: 20 + 7: 20 + 11: 20 + 13: 20 + 20: _ZN9oceanbase3lib6ABlockC2Ev:0 + 1: 0 + 2: 0 + 3: 0 + 4: 0 + 23.1: _ZN9oceanbase3lib6AChunk19mark_blk_offset_bitEi:0 + 2: _ZN9oceanbase3lib13ASimpleBitSetILi256EE3setEi:0 + 4: 0 + 30: _ZNK9oceanbase3lib6ABlock4holdEPm:1181437 + 5: 4630 + 5.1: 4630 + 5.2: 102 + 8: 4616 + 3: _ZNK9oceanbase3lib6AChunk10blk_offsetEPKNS0_6ABlockE:254650 + 2: 4630 + 3: 4630 + 3.2: _ZL12abort_unlessb:27780 + 5: 4630 + 6: 0 + 5.1: _ZNK9oceanbase3lib6AChunk19is_first_blk_offsetEiPi:9260 + 2: 4630 + 5.2: _ZNK9oceanbase3lib6AChunk18is_last_blk_offsetEiPi:4662 + 4: 102 + 4: _ZNK9oceanbase3lib6AChunk17min_blk_offset_geEi:4356 + 2: _ZNK9oceanbase3lib13ASimpleBitSetILi256EE10min_bit_geEi:4356 + 8: 416 + 9: 416 + 12: 102 + 8: _ZN9oceanbase3lib13ASimpleBitSetILi256EE10min_bit_geEmi:2072 + 3: 102 + 4: 416 + 6: _ZNK9oceanbase3lib6AChunk4holdEPm:0 + 2: 0 + 2: _ZN9oceanbase3lib6AChunk9calc_holdEllPm:0 + 3: 0 + 5.1: 0 + 2: _ZN9oceanbase3lib9align_up2Emm:0 + 2: 0 + 3.2: _ZN9oceanbase3libL13get_page_sizeEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 3: 0 + 3.4: _ZN9oceanbase3lib9align_up2Emm:0 + 2: 0 + 8: _ZNK9oceanbase3lib6AChunk11blk_nblocksEPKNS0_6ABlockE:765216 + 4.3: 4616 + 2: _ZNK9oceanbase3lib6AChunk10blk_offsetEPKNS0_6ABlockE:41634 + 3.2: _ZL12abort_unlessb:41634 + 5: 4626 + 6: 0 + 4: _ZNK9oceanbase3lib6AChunk18is_last_blk_offsetEiPi:700502 + 4: 4626 + 4: _ZNK9oceanbase3lib6AChunk17min_blk_offset_geEi:649696 + 2: _ZNK9oceanbase3lib13ASimpleBitSetILi256EE10min_bit_geEi:649696 + 2: 4626 + 7: 4626 + 8: 23130 + 9: 23130 + 11.1: 1250 + 12: 4616 + 8: _ZN9oceanbase3lib13ASimpleBitSetILi256EE10min_bit_geEmi:239364 + 2: 23130 + 3: 4604 + 4: 23130 +_ZN9oceanbase7storage16ObTableScanRange4initERNS0_16ObTableScanParamE:3656743:4571 + 1: 4209 + 2: 4209 + 4: 4209 + 5: 0 + 6.1: 0 + 7.1: 4342 _ZNK9oceanbase7storage16ObTableScanParam8is_validEv:4639 + 8: 7 + 9.1: 7 + 11: 4308 + 12: 4308 + 14: 4308 + 15: 4308 + 16: 7 + 17.1: 7 + 18.1: 4308 + 19: 3409 + 20.1: 7 + 22.1: 973 + 23.1: 17 + 26: 7 + 27: 4400 + 32: 4542 + 19: _ZN9oceanbase7storage16ObTableScanRange12init_rowkeysERKNS_6common8ObIArrayINS2_10ObNewRangeEEERKNS2_11ObQueryFlagEPKNS_12blocksstable19ObStorageDatumUtilsE:1911036 + 4: 3274 + 6: 3274 + 7: 7 + 8.1: 7 + 11: 3274 + 14.1: 3400 + 14.3: 3343 + 14.5: 3343 + 18.2: 3525 + 19.1: 7 + 20.1: 3525 + 21.1: 3525 _ZN9oceanbase12blocksstable13ObDatumRowkey11from_rowkeyERKNS_6common8ObRowkeyERNS2_12ObIAllocatorE:3592 + 21.2: 3343 + 22.1: 7 + 24.2: 7 + 25.1: 7 + 29: 3397 + 31.1: 3397 + 32.1: 13 + 35: 13 + 36.1: 13 + 43: 3409 + 10: _ZNK9oceanbase6common12ObIArrayWrapINS0_10ObNewRangeEE5countEv:22918 + 0: 3274 + 15: _ZN9oceanbase12blocksstable13ObDatumRowkeyC2Ev:97184 + 0.4: _ZN9oceanbase12blocksstable13ObDatumRowkey5resetEv:97184 + 0: 3037 + 16: _ZNK9oceanbase6common12ObIArrayWrapINS0_10ObNewRangeEE2atEl:21259 + 6: 3037 + 16.1: _ZNK9oceanbase6common10ObNewRange13get_start_keyEv:63777 + 2: 3037 + 18.1: _ZN9oceanbase7storage16ObTableScanRange12always_falseERKNS_6common10ObNewRangeERb:788825 + 2: 3037 + 5: 3525 + 6.1: 7 + 8: 3525 + 8.1: 3525 + 8.2: 3525 + 13: 7 + 5.2: _ZNK9oceanbase6common8ObRowkey7compareERKS1_Ri:567131 + 3: 3037 + 4: 3037 + 5: 3037 + 8: 3579 + 9: 3579 + 7: _ZNK9oceanbase6common8ObRowkey14compare_prefixERKS1_Ri:392447 + 5: 3037 + 8: 3037 + 11: 3037 + 13: 3037 + 14.1: 3230 + 16: 3418 _ZNK9oceanbase6common5ObObj32check_collation_free_and_compareERKS1_Ri:3402 + 19: 7 + 7: _ZNK9oceanbase6common8ObRowkey10is_min_rowEv:61342 + 4: 7 + 4.1: 3037 + 4.2: 7 + 5: 7 + 9: 7 + 5: _ZNK9oceanbase6common5ObObj12is_min_valueEv:27494 + 2: 3037 + 2.1: 7 + 8: _ZNK9oceanbase6common8ObRowkey10is_max_rowEv:21763 + 4: 7 + 4.1: 7 + 4.2: 7 + 5: 7 + 9: 3037 + 5: _ZNK9oceanbase6common5ObObj12is_max_valueEv:133 + 2: 7 + 2.1: 7 + 9: _ZNK9oceanbase6common8ObRowkey10is_min_rowEv:79592 + 4: 7 + 4.1: 3037 + 4.2: 7 + 5: 7 + 9: 7 + 5: _ZNK9oceanbase6common5ObObj12is_min_valueEv:27487 + 2: 3037 + 2.1: 7 + 10: _ZNK9oceanbase6common8ObRowkey10is_max_rowEv:9629 + 4: 7 + 4.1: 7 + 4.2: 7 + 5: 7 + 9: 3037 + 5: _ZNK9oceanbase6common5ObObj12is_max_valueEv:133 + 2: 7 + 2.1: 7 + 13: _ZSt3minIlERKT_S2_S2_:9111 + 5: 3037 + 8.2: _ZNK9oceanbase6common12ObBorderFlag15inclusive_startEv:21150 + 0: 3525 + 23.1: _ZNK9oceanbase6common12ObIArrayWrapINS0_10ObNewRangeEE2atEl:23401 + 6: 3343 + 23.2: _ZNK9oceanbase6common10ObNewRange13get_group_idxEv:30087 + 2: 3343 + 23.3: _ZN9oceanbase12blocksstable13ObDatumRowkey13set_group_idxEi:20058 + 0: 3343 + 24.1: _ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable13ObDatumRowkeyELl8ENS0_19ModulePageAllocatorELb0EE9push_backERKS3_:254271 + 5: 3343 + 6: 7 + 12: 7 + 15: 7 + 15.1: 3343 + 16: 3343 + 15.1: _ZN9oceanbase6common9ObClassOpINS_12blocksstable13ObDatumRowkeyELb0EE20construct_and_assignERKS3_RS3_:157121 + 3: _ZN9oceanbase6common16construct_assignINS_12blocksstable13ObDatumRowkeyEEEiRT_RKS4_:157121 + 2: _ZN9oceanbase6common21construct_assign_wrapINS_12blocksstable13ObDatumRowkeyEEEiRT_RKS4_NS0_8BoolTypeILb0EEE:157121 + 2: 3343 + 29: _ZNK9oceanbase6common12ObIArrayWrapINS_12blocksstable13ObDatumRowkeyEE5emptyEv:23779 + 0: 3397 + 0: _ZNK9oceanbase6common12ObIArrayWrapINS_12blocksstable13ObDatumRowkeyEE5countEv:13588 + 0: 3397 + 33: _ZNK9oceanbase6common11ObQueryFlag15is_reverse_scanEv:429 + 0: 13 + 34.2: _ZSt4sortIN9oceanbase6common5array17ObSEArrayIteratorINS0_12blocksstable13ObDatumRowkeyELl8ENS1_19ModulePageAllocatorELb0EEENS4_15ObDatumComparorIS5_EEEvT_SA_T0_:2132 + 11.1: _ZSt6__sortIN9oceanbase6common5array17ObSEArrayIteratorINS0_12blocksstable13ObDatumRowkeyELl8ENS1_19ModulePageAllocatorELb0EEEN9__gnu_cxx5__ops15_Iter_comp_iterINS4_15ObDatumComparorIS5_EEEEEvT_SE_T0_:2132 + 5: 13 + 6: 13 + 7: 13 + 8: 13 + 6.1: _ZSt4__lgl:104 + 1: 13 + 22.1: _ZN9oceanbase7storage16ObTableScanRange11init_rangesERKNS_6common8ObIArrayINS2_10ObNewRangeEEERKNS2_11ObQueryFlagEPKNS_12blocksstable19ObStorageDatumUtilsE:919829 + 4: 1064 + 6: 1064 + 7: 7 + 8.1: 7 + 11: 1064 + 14.1: 7 + 15.1: 7 + 18.1: 976 + 18.3: 1064 + 18.5: 976 + 22.1: 1033 + 23.1: 7 + 24.1: 14 + 25.1: 989 + 25.2: 976 + 26.1: 7 + 27.2: 7 + 28.1: 7 + 31: 973 + 32: 973 + 33: 7 + 34.1: 973 + 35.1: 7 + 38: 7 + 39.1: 7 + 46: 973 + 10: _ZNK9oceanbase6common12ObIArrayWrapINS0_10ObNewRangeEE5countEv:14896 + 0: 1064 + 13: _ZN9oceanbase12blocksstable12ObDatumRange15set_whole_rangeEv:784 + 2: _ZN9oceanbase12blocksstable13ObDatumRowkey14set_min_rowkeyEv:392 + 0: 7 + 0: _ZN9oceanbase6common13ObStoreRowkey7set_minEv:196 + 0: 7 + 3: _ZN9oceanbase12blocksstable13ObDatumRowkey14set_max_rowkeyEv:392 + 0: 7 + 0: _ZN9oceanbase6common13ObStoreRowkey7set_maxEv:196 + 0: 7 + 14: _ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable12ObDatumRangeELl8ENS0_19ModulePageAllocatorELb0EE9push_backERKS3_:819 + 5: 7 + 6: 7 + 12: 7 + 15: 7 + 15.1: 7 + 16: 7 + 15.1: _ZN9oceanbase6common9ObClassOpINS_12blocksstable12ObDatumRangeELb0EE20construct_and_assignERKS3_RS3_:252 + 3: _ZN9oceanbase6common16construct_assignINS_12blocksstable12ObDatumRangeEEEiRT_RKS4_:252 + 2: _ZN9oceanbase6common21construct_assign_wrapINS_12blocksstable12ObDatumRangeEEEiRT_RKS4_NS0_8BoolTypeILb0EEE:252 + 2: 7 + 19: _ZN9oceanbase12blocksstable12ObDatumRangeC2Ev:59584 + 0.7: _ZN9oceanbase12blocksstable13ObDatumRowkeyC2Ev:59584 + 0: _ZN9oceanbase6common13ObStoreRowkeyC2Ev:59584 + 0: 1064 + 20: _ZNK9oceanbase6common12ObIArrayWrapINS0_10ObNewRangeEE2atEl:32984 + 6: 1064 + 22: _ZN9oceanbase7storage16ObTableScanRange12always_falseERKNS_6common10ObNewRangeERb:240637 + 2: 1064 + 5: 1081 + 6.1: 7 + 8: 1081 + 8.1: 1081 + 8.2: 14 + 13: 7 + 5.2: _ZNK9oceanbase6common8ObRowkey7compareERKS1_Ri:214867 + 3: 1064 + 4: 1064 + 5: 1064 + 8: 1112 + 9: 13 + 7: _ZNK9oceanbase6common8ObRowkey14compare_prefixERKS1_Ri:137658 + 5: 1064 + 8: 1064 + 11: 1064 + 13: 1064 + 14.1: 1084 + 16: 1083 _ZNK9oceanbase6common5ObObj32check_collation_free_and_compareERKS1_Ri:1096 + 19: 7 + 7: _ZNK9oceanbase6common8ObRowkey10is_min_rowEv:21882 + 4: 7 + 4.1: 1064 + 4.2: 7 + 5: 7 + 9: 7 + 5: _ZNK9oceanbase6common5ObObj12is_min_valueEv:9737 + 2: 1064 + 2.1: 7 + 8: _ZNK9oceanbase6common8ObRowkey10is_max_rowEv:7952 + 4: 7 + 4.1: 7 + 4.2: 7 + 5: 7 + 9: 1064 + 5: _ZNK9oceanbase6common5ObObj12is_max_valueEv:133 + 2: 7 + 2.1: 7 + 9: _ZNK9oceanbase6common8ObRowkey10is_min_rowEv:28301 + 4: 7 + 4.1: 1064 + 4.2: 7 + 5: 7 + 9: 7 + 5: _ZNK9oceanbase6common5ObObj12is_min_valueEv:9730 + 2: 1064 + 2.1: 7 + 10: _ZNK9oceanbase6common8ObRowkey10is_max_rowEv:3710 + 4: 7 + 4.1: 7 + 4.2: 7 + 5: 7 + 9: 1064 + 5: _ZNK9oceanbase6common5ObObj12is_max_valueEv:133 + 2: 7 + 2.1: 7 + 13: _ZSt3minIlERKT_S2_S2_:3192 + 5: 1064 + 8.2: _ZNK9oceanbase6common12ObBorderFlag15inclusive_startEv:84 + 0: 14 + 25.1: _ZN9oceanbase12blocksstable12ObDatumRange10from_rangeERKNS_6common10ObNewRangeERNS2_12ObIAllocatorE:375579 + 2: 989 + 6: 7 + 7.1: 7 + 8.1: 1028 + 8.2: 1004 _ZN9oceanbase12blocksstable13ObDatumRowkey11from_rowkeyERKNS_6common8ObRowkeyERNS2_12ObIAllocatorE:999 + 9.1: 7 + 10.1: 976 + 10.2: 1028 _ZN9oceanbase12blocksstable13ObDatumRowkey11from_rowkeyERKNS_6common8ObRowkeyERNS2_12ObIAllocatorE:1068 + 11.1: 7 + 13: 976 + 14: 976 + 17: 976 + 5: _ZNK9oceanbase6common10ObNewRange8is_validEv:264887 + 0: _ZNK9oceanbase6common10ObNewRange5emptyEv:264887 + 7: 1004 + 8: 1004 + 9: 1004 + 10: 7 + 3: _ZNK9oceanbase6common8ObRowkey10is_min_rowEv:44764 + 4.1: 989 + 5: 7 + 9: 989 + 5: _ZNK9oceanbase6common5ObObj12is_min_valueEv:9918 + 2: 989 + 2.1: 7 + 3.1: _ZNK9oceanbase6common8ObRowkey10is_max_rowEv:43740 + 4: 989 + 4.1: 989 + 5: 7 + 9: 989 + 5: _ZNK9oceanbase6common5ObObj12is_max_valueEv:9918 + 2: 989 + 2.1: 7 + 6: _ZNK9oceanbase6common8ObRowkey7compareERKS1_:125482 + 3: 989 + 7: 1004 + 8: 7 + 6: _ZNK9oceanbase6common8ObRowkey14compare_prefixERKS1_:103241 + 7: 989 + 10: 989 + 12: 989 + 13.1: 1045 + 13.3: 1045 + 15: 991 _ZNK9oceanbase6common5ObObj32check_collation_free_and_compareERKS1_:1054 + 18: 7 + 6: _ZNK9oceanbase6common8ObRowkey10is_min_rowEv:9545 + 4: 7 + 4.1: 7 + 4.2: 7 + 5: 7 + 9: 7 + 5: _ZNK9oceanbase6common5ObObj12is_min_valueEv:9034 + 2: 989 + 2.1: 7 + 7: _ZNK9oceanbase6common8ObRowkey10is_max_rowEv:6438 + 4: 7 + 4.1: 7 + 4.2: 7 + 5: 7 + 9: 989 + 5: _ZNK9oceanbase6common5ObObj12is_max_valueEv:133 + 2: 7 + 2.1: 7 + 8: _ZNK9oceanbase6common8ObRowkey10is_min_rowEv:17541 + 4: 7 + 4.1: 989 + 4.2: 7 + 5: 7 + 9: 7 + 5: _ZNK9oceanbase6common5ObObj12is_min_valueEv:9048 + 2: 989 + 2.1: 7 + 9: _ZNK9oceanbase6common8ObRowkey10is_max_rowEv:3471 + 4: 7 + 4.1: 7 + 4.2: 7 + 5: 7 + 9: 989 + 5: _ZNK9oceanbase6common5ObObj12is_max_valueEv:133 + 2: 7 + 2.1: 7 + 12: _ZSt3minIlERKT_S2_S2_:17802 + 5: 989 + 9.1: _ZNK9oceanbase6common12ObBorderFlag13inclusive_endEv:28 + 0: 7 + 14: _ZNK9oceanbase6common10ObNewRange13get_group_idxEv:4880 + 2: 976 + 27.1: _ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable12ObDatumRangeELl8ENS0_19ModulePageAllocatorELb0EE9push_backERKS3_:54887 + 5: 976 + 6: 7 + 12: 7 + 15: 7 + 15.1: 976 + 16: 976 + 15.1: _ZN9oceanbase6common9ObClassOpINS_12blocksstable12ObDatumRangeELb0EE20construct_and_assignERKS3_RS3_:17568 + 3: _ZN9oceanbase6common16construct_assignINS_12blocksstable12ObDatumRangeEEEiRT_RKS4_:17568 + 2: _ZN9oceanbase6common21construct_assign_wrapINS_12blocksstable12ObDatumRangeEEEiRT_RKS4_NS0_8BoolTypeILb0EEE:17568 + 2: 976 + 32: _ZNK9oceanbase6common12ObIArrayWrapINS_12blocksstable12ObDatumRangeEE5emptyEv:9730 + 0: 973 + 0: _ZNK9oceanbase6common12ObIArrayWrapINS_12blocksstable12ObDatumRangeEE5countEv:6811 + 0: 973 + 36: _ZNK9oceanbase6common11ObQueryFlag15is_reverse_scanEv:91 + 0: 7 + 37.2: _ZSt4sortIN9oceanbase6common5array17ObSEArrayIteratorINS0_12blocksstable12ObDatumRangeELl8ENS1_19ModulePageAllocatorELb0EEENS4_15ObDatumComparorIS5_EEEvT_SA_T0_:1015 + 11.1: _ZSt6__sortIN9oceanbase6common5array17ObSEArrayIteratorINS0_12blocksstable12ObDatumRangeELl8ENS1_19ModulePageAllocatorELb0EEEN9__gnu_cxx5__ops15_Iter_comp_iterINS4_15ObDatumComparorIS5_EEEEEvT_SE_T0_:1015 + 5: 7 + 6: 7 + 8: 7 + 6.1: _ZSt4__lgl:56 + 1: 7 +_ZN9oceanbase3lib9ObjectMgr11alloc_blockEmRKNS0_9ObMemAttrE:3621233:3209 + 1: 2983 + 5.1: 3784 + 5.2: 3228 + 5.3: 3228 + 5.5: 3784 + 6: 3228 + 7: 3228 + 8: 3228 + 10.1: 3235 + 11: 2962 + 16: 0 + 17: 0 + 18: 0 + 19: 0 + 20: 0 + 21: 0 + 22.1: 0 + 24: 0 + 28: 0 + 34: 3664 + 3: _ZN9oceanbase6common8get_itidEv:125286 + 4: 2983 + 5: 0 + 6: 0 + 8: 0 + 10.1: _ZN9oceanbase3lib12SubObjectMgr7trylockEv:135590 + 0: 3228 + 0: _ZN9oceanbase3lib9SetLocker7trylockEv:48434 + 2: 3235 + 2: _ZN9oceanbase3lib7ObMutex7trylockEv:29052 + 0: 3228 _ZN9oceanbase6common12ObLatchMutex8try_lockEjPKj:3283 + 11: _ZN9oceanbase3lib12SubObjectMgr11alloc_blockEmRKNS0_9ObMemAttrE:2715819 + 2: _ZN9oceanbase3lib8BlockSet11alloc_blockEmRKNS0_9ObMemAttrE:2715819 + 7: 2962 + 10: 0 + 11: 0 + 12.1: 2962 + 14.1: 2962 + 18: 0 + 19: 0 + 20: 0 + 28: 2984 + 31: 2996 + 32: 3417 _ZTWN9oceanbase3lib15malloc_callbackE:3267 + 33: 3837 _ZTWN9oceanbase3lib15malloc_callbackE:3552 + 33.1: 3837 _ZN9oceanbase8observer23ObProcessMallocCallbackclERKNS_3lib9ObMemAttrEl:3925 + 34: 4036 _ZTWN9oceanbase3lib15malloc_callbackE:3938 + 34.1: 4036 _ZTWN9oceanbase3lib15malloc_callbackE:4139 + 35: 0 + 16: _ZN9oceanbase3lib8BlockSet14get_free_blockEiRKNS0_9ObMemAttrE:1536290 + 5: 2991 + 6: 2950 + 8: 2950 + 9: 369 + 10: 369 + 11: 369 + 16: 3000 + 21: 3000 + 25: 2118 + 27: 2118 + 4: _ZNK9oceanbase3lib7ABitSet22find_first_significantEi:475701 + 3: 2975 + 6: 532 + 9: 2975 + 10: 2975 + 12: 2445 + 13.1: 532 + 16: 21 + 19: 529 + 20: 529 + 22: 508 + 23: 508 + 25.1: 21 + 27.1: 0 + 29: 0 + 32: 0 + 33: 0 + 36: 0 + 37: 0 + 44: 2950 + 9: _ZN9oceanbase3lib7ABitSet6myffslEmi:123078 + 3: 2445 + 4: 2975 + 19: _ZN9oceanbase3lib7ABitSet6myffslEmi:56446 + 3: 508 + 4: 529 + 23: _ZN9oceanbase3lib7ABitSet6myffslEmi:3556 + 3: 508 + 4: 508 + 28: _ZN9oceanbase3lib7ABitSet6myffslEmi:65626 + 2: 0 + 4: 0 + 32: _ZN9oceanbase3lib7ABitSet6myffslEmi:0 + 3: 0 + 4: 0 + 37: _ZN9oceanbase3lib7ABitSet6myffslEmi:0 + 3: 0 + 4: 0 + 13: _ZN9oceanbase3lib7ABitSet5unsetEi:125096 + 2: 2606 + 5: 2606 + 7: 2606 + 8: 2606 + 10: 474 + 11: 474 + 12: 474 + 12.1: 0 + 13: 0 + 22: _ZNK9oceanbase3lib6ABlock5chunkEv:21180 + 2: _ZN9oceanbase3lib6AChunk9ptr2chunkEPKv:21180 + 2: 2118 + 24: _ZNK9oceanbase3lib6AChunk10blk_offsetEPKNS0_6ABlockE:114372 + 2: 2118 + 3: 2118 + 3.2: _ZL12abort_unlessb:38124 + 5: 2118 + 6: 0 + 25: _ZNK9oceanbase3lib6AChunk10offset2blkEi:23298 + 2: 2118 + 25.1: _ZN9oceanbase3lib6ABlockC2Ev:76248 + 1: 2118 + 2: 2118 + 3: 2118 + 4: 2118 + 27: _ZN9oceanbase3lib8BlockSet14add_free_blockEPNS0_6ABlockEiPNS0_6AChunkE:445343 + 9: 2118 + 10: 2118 + 11: 271 + 12: 271 + 13: 271 + 14: 271 + 15: 271 + 17: 1847 + 18: 1847 + 3: _ZNK9oceanbase3lib6AChunk10blk_offsetEPKNS0_6ABlockE:95310 + 2: 2118 + 3: 2118 + 3.2: _ZL12abort_unlessb:38124 + 5: 2118 + 6: 0 + 3.1: _ZN9oceanbase3lib6AChunk19mark_blk_offset_bitEi:50832 + 2: _ZN9oceanbase3lib13ASimpleBitSetILi256EE3setEi:50832 + 2: 2118 + 4: 2118 + 10: _ZN9oceanbase3lib7ABitSet5issetEi:69894 + 3: 2118 + 6: 2118 + 9: 2118 + 19: _ZN9oceanbase3lib7ABitSet3setEi:156995 + 2: 1847 + 5: 1847 + 7: 1847 + 10: 1847 + 11: 1847 + 13: 1847 + 31: _ZN9oceanbase3lib8BlockSet9add_chunkERKNS0_9ObMemAttrE:25866 + 4: 13 + 2: _ZN9oceanbase3lib8BlockSet11alloc_chunkEmRKNS0_9ObMemAttrE:23539 + 3: 19 + 5.1: 19 + 9: 0 + 10: 19 _ZN9oceanbase3lib20ObTenantCtxAllocator11alloc_chunkElRKNS0_9ObMemAttrE:19 + 11: 13 + 13: 13 + 14: 13 + 18: 13 + 19: 13 + 20: 13 + 21: 13 + 22: 13 + 24: 0 + 27: 13 + 5.1: _ZNK9oceanbase3lib10AChunkList5countEv:133 + 2: 19 + 6: _ZN9oceanbase3lib8BlockSet9LockGuardC2ERNS1_4LockE:0 + 0: _ZN9oceanbase3lib8BlockSet4Lock4lockEv:0 + 2: 0 + 3.1: 0 + 4: 0 + 2: _ZN9oceanbase6common8get_itidEv:0 + 4: 0 + 5: 0 + 6: 0 + 8: 0 + 7: _ZN9oceanbase3lib10AChunkList3popEv:0 + 3: 0 + 4: 0 + 7: 0 + 9: 0 + 10: 0 + 12: 0 + 5: _ZN9oceanbase3lib7ObMutex4lockEv:0 + 0: 0 + 13: _ZN9oceanbase3lib7ObMutex6unlockEv:0 + 0: 0 + 8: _ZN9oceanbase3lib8BlockSet9LockGuardD2Ev:0 + 0: _ZN9oceanbase3lib8BlockSet4Lock6unlockEv:0 + 0: 0 + 8.1: _ZN9oceanbase3lib8BlockSet9LockGuardD2Ev:0 + 0: _ZN9oceanbase3lib8BlockSet4Lock6unlockEv:0 + 0: 0 + 13: _ZNK9oceanbase3lib6AChunk4holdEPm:702 + 2: 13 + 2: _ZN9oceanbase3lib6AChunk9calc_holdEllPm:598 + 3: 13 + 3.2: 0 + 4: 13 + 5.1: 13 + 2: _ZN9oceanbase3lib9align_up2Emm:260 + 2: 13 + 3.4: _ZN9oceanbase3lib9align_up2Emm:0 + 2: 0 + 4: _ZN9oceanbase3lib6ABlockC2Ev:585 + 1: 13 + 2: 13 + 3: 13 + 4: 13 + 5: _ZN9oceanbase3lib8BlockSet14add_free_blockEPNS0_6ABlockEiPNS0_6AChunkE:1651 + 10: 13 + 11: 0 + 12: 0 + 13: 0 + 14: 0 + 15: 0 + 17: 13 + 18: 13 + 3.1: _ZN9oceanbase3lib6AChunk19mark_blk_offset_bitEi:52 + 2: _ZN9oceanbase3lib13ASimpleBitSetILi256EE3setEi:52 + 4: 13 + 10: _ZN9oceanbase3lib7ABitSet5issetEi:442 + 3: 13 + 9: 13 + 19: _ZN9oceanbase3lib7ABitSet3setEi:806 + 2: 13 + 7: 13 + 11: 13 + 13: 13 + 20: _ZN9oceanbase3lib6ABlockC2Ev:0 + 1: 0 + 2: 0 + 3: 0 + 4: 0 + 23.1: _ZN9oceanbase3lib6AChunk19mark_blk_offset_bitEi:0 + 2: _ZN9oceanbase3lib13ASimpleBitSetILi256EE3setEi:0 + 4: 0 + 30: _ZNK9oceanbase3lib6ABlock4holdEPm:824050 + 5: 2984 + 5.1: 2984 + 5.2: 146 + 8: 2996 + 3: _ZNK9oceanbase3lib6AChunk10blk_offsetEPKNS0_6ABlockE:202912 + 2: 2984 + 3: 2984 + 3.2: _ZL12abort_unlessb:17904 + 5: 2984 + 6: 0 + 5.1: _ZNK9oceanbase3lib6AChunk19is_first_blk_offsetEiPi:5968 + 2: 2984 + 5.2: _ZNK9oceanbase3lib6AChunk18is_last_blk_offsetEiPi:6282 + 4: 146 + 4: _ZNK9oceanbase3lib6AChunk17min_blk_offset_geEi:5844 + 2: _ZNK9oceanbase3lib13ASimpleBitSetILi256EE10min_bit_geEi:5844 + 8: 552 + 9: 552 + 12: 146 + 65515.1: 0 + 8: _ZN9oceanbase3lib13ASimpleBitSetILi256EE10min_bit_geEmi:2792 + 3: 146 + 4: 552 + 6: _ZNK9oceanbase3lib6AChunk4holdEPm:0 + 2: 0 + 2: _ZN9oceanbase3lib6AChunk9calc_holdEllPm:0 + 3: 0 + 5.1: 0 + 2: _ZN9oceanbase3lib9align_up2Emm:0 + 2: 0 + 3.2: _ZN9oceanbase3libL13get_page_sizeEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 3: 0 + 3.4: _ZN9oceanbase3lib9align_up2Emm:0 + 2: 0 + 8: _ZNK9oceanbase3lib6AChunk11blk_nblocksEPKNS0_6ABlockE:513850 + 4.3: 2996 + 2: _ZNK9oceanbase3lib6AChunk10blk_offsetEPKNS0_6ABlockE:26856 + 3.2: _ZL12abort_unlessb:26856 + 5: 2984 + 6: 0 + 4: _ZNK9oceanbase3lib6AChunk18is_last_blk_offsetEiPi:457034 + 4: 2996 + 4: _ZNK9oceanbase3lib6AChunk17min_blk_offset_geEi:439094 + 2: _ZNK9oceanbase3lib13ASimpleBitSetILi256EE10min_bit_geEi:439094 + 2: 2984 + 7: 2984 + 8: 14920 + 9: 14920 + 11.1: 1390 + 12: 2996 + 8: _ZN9oceanbase3lib13ASimpleBitSetILi256EE10min_bit_geEmi:167465 + 2: 14920 + 3: 2949 + 4: 14920 + 12: _ZN9oceanbase3lib12SubObjectMgr6unlockEv:122112 + 0: 3816 + 0: _ZN9oceanbase3lib9SetLocker6unlockEv:19080 + 2: 3816 + 2: _ZN9oceanbase3lib7ObMutex6unlockEv:3816 + 0: 3816 _ZN9oceanbase6common12ObLatchMutex6unlockEv:3885 + 16.1: _ZNK9oceanbase6common13ObCtxParallel15parallel_of_ctxEl:0 + 3: 0 + 4: 0 + 29: _ZN9oceanbase3lib12SubObjectMgr4lockEv:0 + 0: 0 + 30: _ZN9oceanbase3lib12SubObjectMgr11alloc_blockEmRKNS0_9ObMemAttrE:0 + 2: _ZN9oceanbase3lib8BlockSet11alloc_blockEmRKNS0_9ObMemAttrE:0 + 7: 0 + 10: 0 + 11: 0 + 12.1: 0 + 14.1: 0 + 18: 0 + 19: 0 + 20: 0 + 28: 0 + 31: 0 + 32: 0 + 33: 0 + 33.1: 0 + 34: 0 + 34.1: 0 + 35: 0 + 16: _ZN9oceanbase3lib8BlockSet14get_free_blockEiRKNS0_9ObMemAttrE:0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 16: 0 + 21: 0 + 25: 0 + 27: 0 + 4: _ZNK9oceanbase3lib7ABitSet22find_first_significantEi:0 + 3: 0 + 6: 0 + 9: 0 + 10: 0 + 12: 0 + 13.1: 0 + 16: 0 + 19: 0 + 20: 0 + 22: 0 + 23: 0 + 24: 0 + 25.1: 0 + 27.1: 0 + 29: 0 + 32: 0 + 33: 0 + 36: 0 + 37: 0 + 38: 0 + 44: 0 + 9: _ZN9oceanbase3lib7ABitSet6myffslEmi:0 + 3: 0 + 4: 0 + 19: _ZN9oceanbase3lib7ABitSet6myffslEmi:0 + 3: 0 + 4: 0 + 23: _ZN9oceanbase3lib7ABitSet6myffslEmi:0 + 3: 0 + 4: 0 + 28: _ZN9oceanbase3lib7ABitSet6myffslEmi:0 + 2: 0 + 4: 0 + 32: _ZN9oceanbase3lib7ABitSet6myffslEmi:0 + 3: 0 + 4: 0 + 37: _ZN9oceanbase3lib7ABitSet6myffslEmi:0 + 3: 0 + 4: 0 + 13: _ZN9oceanbase3lib7ABitSet5unsetEi:0 + 2: 0 + 5: 0 + 7: 0 + 8: 0 + 10: 0 + 11: 0 + 12: 0 + 12.1: 0 + 13: 0 + 22: _ZNK9oceanbase3lib6ABlock5chunkEv:0 + 2: _ZN9oceanbase3lib6AChunk9ptr2chunkEPKv:0 + 2: 0 + 24: _ZNK9oceanbase3lib6AChunk10blk_offsetEPKNS0_6ABlockE:0 + 2: 0 + 3: 0 + 3.2: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 25: _ZNK9oceanbase3lib6AChunk10offset2blkEi:0 + 2: 0 + 25.1: _ZN9oceanbase3lib6ABlockC2Ev:0 + 1: 0 + 2: 0 + 3: 0 + 4: 0 + 27: _ZN9oceanbase3lib8BlockSet14add_free_blockEPNS0_6ABlockEiPNS0_6AChunkE:0 + 9: 0 + 10: 0 + 11: 0 + 12: 0 + 13: 0 + 14: 0 + 15: 0 + 17: 0 + 18: 0 + 3: _ZNK9oceanbase3lib6AChunk10blk_offsetEPKNS0_6ABlockE:0 + 2: 0 + 3: 0 + 3.2: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 3.1: _ZN9oceanbase3lib6AChunk19mark_blk_offset_bitEi:0 + 2: _ZN9oceanbase3lib13ASimpleBitSetILi256EE3setEi:0 + 2: 0 + 4: 0 + 10: _ZN9oceanbase3lib7ABitSet5issetEi:0 + 3: 0 + 6: 0 + 9: 0 + 19: _ZN9oceanbase3lib7ABitSet3setEi:0 + 2: 0 + 5: 0 + 7: 0 + 10: 0 + 11: 0 + 13: 0 + 31: _ZN9oceanbase3lib8BlockSet9add_chunkERKNS0_9ObMemAttrE:0 + 4: 0 + 2: _ZN9oceanbase3lib8BlockSet11alloc_chunkEmRKNS0_9ObMemAttrE:0 + 3: 0 + 5.1: 0 + 9: 0 + 10: 0 + 11: 0 + 13: 0 + 14: 0 + 18: 0 + 19: 0 + 20: 0 + 21: 0 + 22: 0 + 24: 0 + 27: 0 + 5.1: _ZNK9oceanbase3lib10AChunkList5countEv:0 + 2: 0 + 6: _ZN9oceanbase3lib8BlockSet9LockGuardC2ERNS1_4LockE:0 + 0: _ZN9oceanbase3lib8BlockSet4Lock4lockEv:0 + 2: 0 + 3.1: 0 + 4: 0 + 2: _ZN9oceanbase6common8get_itidEv:0 + 4: 0 + 5: 0 + 6: 0 + 8: 0 + 7: _ZN9oceanbase3lib10AChunkList3popEv:0 + 3: 0 + 4: 0 + 7: 0 + 9: 0 + 10: 0 + 12: 0 + 5: _ZN9oceanbase3lib7ObMutex4lockEv:0 + 0: 0 + 13: _ZN9oceanbase3lib7ObMutex6unlockEv:0 + 0: 0 + 8: _ZN9oceanbase3lib8BlockSet9LockGuardD2Ev:0 + 0: _ZN9oceanbase3lib8BlockSet4Lock6unlockEv:0 + 0: 0 + 8.1: _ZN9oceanbase3lib8BlockSet9LockGuardD2Ev:0 + 0: _ZN9oceanbase3lib8BlockSet4Lock6unlockEv:0 + 0: 0 + 13: _ZNK9oceanbase3lib6AChunk4holdEPm:0 + 2: 0 + 2: _ZN9oceanbase3lib6AChunk9calc_holdEllPm:0 + 3: 0 + 3.2: 0 + 4: 0 + 5.1: 0 + 2: _ZN9oceanbase3lib9align_up2Emm:0 + 2: 0 + 3.4: _ZN9oceanbase3lib9align_up2Emm:0 + 2: 0 + 4: _ZN9oceanbase3lib6ABlockC2Ev:0 + 1: 0 + 2: 0 + 3: 0 + 4: 0 + 5: _ZN9oceanbase3lib8BlockSet14add_free_blockEPNS0_6ABlockEiPNS0_6AChunkE:0 + 10: 0 + 11: 0 + 12: 0 + 13: 0 + 14: 0 + 15: 0 + 17: 0 + 18: 0 + 3.1: _ZN9oceanbase3lib6AChunk19mark_blk_offset_bitEi:0 + 2: _ZN9oceanbase3lib13ASimpleBitSetILi256EE3setEi:0 + 4: 0 + 10: _ZN9oceanbase3lib7ABitSet5issetEi:0 + 3: 0 + 9: 0 + 19: _ZN9oceanbase3lib7ABitSet3setEi:0 + 2: 0 + 7: 0 + 11: 0 + 13: 0 + 20: _ZN9oceanbase3lib6ABlockC2Ev:0 + 1: 0 + 2: 0 + 3: 0 + 4: 0 + 23.1: _ZN9oceanbase3lib6AChunk19mark_blk_offset_bitEi:0 + 2: _ZN9oceanbase3lib13ASimpleBitSetILi256EE3setEi:0 + 4: 0 + 30: _ZNK9oceanbase3lib6ABlock4holdEPm:0 + 5: 0 + 5.1: 0 + 5.2: 0 + 8: 0 + 3: _ZNK9oceanbase3lib6AChunk10blk_offsetEPKNS0_6ABlockE:0 + 2: 0 + 3: 0 + 3.2: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 5.1: _ZNK9oceanbase3lib6AChunk19is_first_blk_offsetEiPi:0 + 2: 0 + 5.2: _ZNK9oceanbase3lib6AChunk18is_last_blk_offsetEiPi:0 + 4: 0 + 4: _ZNK9oceanbase3lib6AChunk17min_blk_offset_geEi:0 + 2: _ZNK9oceanbase3lib13ASimpleBitSetILi256EE10min_bit_geEi:0 + 8: 0 + 9: 0 + 12: 0 + 8: _ZN9oceanbase3lib13ASimpleBitSetILi256EE10min_bit_geEmi:0 + 3: 0 + 4: 0 + 6: _ZNK9oceanbase3lib6AChunk4holdEPm:0 + 2: 0 + 2: _ZN9oceanbase3lib6AChunk9calc_holdEllPm:0 + 3: 0 + 5.1: 0 + 2: _ZN9oceanbase3lib9align_up2Emm:0 + 2: 0 + 3.2: _ZN9oceanbase3libL13get_page_sizeEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 3: 0 + 3.4: _ZN9oceanbase3lib9align_up2Emm:0 + 2: 0 + 8: _ZNK9oceanbase3lib6AChunk11blk_nblocksEPKNS0_6ABlockE:0 + 4.3: 0 + 2: _ZNK9oceanbase3lib6AChunk10blk_offsetEPKNS0_6ABlockE:0 + 3.2: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 4: _ZNK9oceanbase3lib6AChunk18is_last_blk_offsetEiPi:0 + 4: 0 + 4: _ZNK9oceanbase3lib6AChunk17min_blk_offset_geEi:0 + 2: _ZNK9oceanbase3lib13ASimpleBitSetILi256EE10min_bit_geEi:0 + 2: 0 + 7: 0 + 8: 0 + 9: 0 + 11.1: 0 + 12: 0 + 8: _ZN9oceanbase3lib13ASimpleBitSetILi256EE10min_bit_geEmi:0 + 2: 0 + 3: 0 + 4: 0 + 31: _ZN9oceanbase3lib12SubObjectMgr6unlockEv:0 + 0: 0 +_ZN9oceanbase3sql17ObDASTabletMapper27get_non_partition_tablet_idERNS_6common8ObIArrayINS2_10ObTabletIDEEERNS3_ImEE:3606051:4405 + 2: 4239 + 3: 4239 + 7.3: 4498 + 7.5: 0 + 10: 0 + 11.2: 4498 + 4: _ZN9oceanbase6common10ObNewRangeC2Ev:93258 + 2: _ZN9oceanbase6common10ObNewRange5resetEv:93258 + 2: 4239 + 4: _ZN9oceanbase6common8ObRowkey6assignEPNS0_5ObObjEl:46629 + 2: 4239 + 6: _ZN9oceanbase6common10ObNewRange15set_whole_rangeEv:173799 + 2: _ZN9oceanbase6common8ObRowkey11set_min_rowEv:72063 + 0: 4239 + 3: _ZN9oceanbase6common8ObRowkey11set_max_rowEv:72063 + 0: 4239 + 5: _ZN9oceanbase6common12ObBorderFlag19unset_inclusive_endEv:29673 + 0: 4239 + 7.2: _ZN9oceanbase3sql17ObDASTabletMapper24get_tablet_and_object_idENS_5share6schema16ObPartitionLevelEmRKNS_6common10ObNewRangeERNS5_8ObIArrayINS5_10ObTabletIDEEERNS9_ImEE:3037956 + 7: 4239 + 10: 4239 + 12: 4239 + 12.2: 4239 + 19: 4239 _ZN9oceanbase5share6schema16ObPartitionUtils24get_tablet_and_object_idERKNS1_13ObTableSchemaERNS_6common10ObTabletIDERmPNS1_16RelatedTableInfoE:4464 + 19.1: 4697 + 21.1: 0 + 22.2: 4697 + 23.1: 0 + 24.2: 4697 + 25.1: 0 + 41.1: 0 + 41.3: 4896 + 41.5: 0 + 42.1: 0 + 42.3: 4580 + 42.5: 0 + 47.2: 0 + 48: 0 + 49.1: 0 + 50.1: 0 + 50.2: 0 + 51.1: 0 + 52.1: 0 + 52.2: 0 + 53.1: 0 + 56: 0 + 57.17: 4622 _ZN9oceanbase6common13ObSEArrayImplImLl4ENS0_19ModulePageAllocatorELb0EED2Ev:5072 + 57.18: 0 + 57.19: 0 + 57.21: 4876 _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl4ENS0_19ModulePageAllocatorELb0EED2Ev:4869 + 8: _ZN9oceanbase6common9ObSEArrayINS0_10ObTabletIDELl4ENS0_19ModulePageAllocatorELb0EEC2Ev:669762 + 0.1: 4239 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl4ENS0_19ModulePageAllocatorELb0EEC2ElRKS3_:593460 + 2: 4239 + 5: 4239 + 6: 4239 + 8: 4239 + 17.1: 4239 + 2: _ZN9oceanbase6common8ObIArrayINS0_10ObTabletIDEEC2EPS2_l:76302 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_10ObTabletIDEEC2EPS2_l:76302 + 0: 4239 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:241623 + 0: 4239 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:80541 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:80541 + 2: 4239 + 8: 4239 + 9: _ZN9oceanbase6common9ObSEArrayImLl4ENS0_19ModulePageAllocatorELb0EEC2Ev:542592 + 0.1: 4239 + 0.5: _ZN9oceanbase6common13ObSEArrayImplImLl4ENS0_19ModulePageAllocatorELb0EEC2ElRKS2_:466290 + 2: 4239 + 5: 4239 + 6: 4239 + 8: 4239 + 17.1: 4239 + 2: _ZN9oceanbase6common8ObIArrayImEC2EPml:76302 + 0: _ZN9oceanbase6common12ObIArrayWrapImEC2EPml:76302 + 0: 4239 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:135648 + 0: 4239 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:76302 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:76302 + 2: 4239 + 8: 4239 + 12.1: _ZNK9oceanbase6common12ObIArrayWrapImE5emptyEv:29673 + 0: 4239 + 0: _ZNK9oceanbase6common12ObIArrayWrapImE5countEv:16956 + 0: 4239 + 17: _ZN9oceanbase6common10ObTabletIDC2Em:67824 + 0: 4239 + 22.1: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl4ENS0_19ModulePageAllocatorELb0EE9push_backERKS2_:201971 + 5: 4697 + 6: 0 + 12: 0 + 15: 0 + 15.1: 4697 + 16: 4697 + 15.1: _ZN9oceanbase6common9ObClassOpINS0_10ObTabletIDELb0EE20construct_and_assignERKS2_RS2_:37576 + 3: _ZN9oceanbase6common16construct_assignINS0_10ObTabletIDEEEiRT_RKS3_:37576 + 2: _ZN9oceanbase6common21construct_assign_wrapINS0_10ObTabletIDEEEiRT_RKS3_NS0_8BoolTypeILb0EEE:37576 + 2: _ZN9oceanbase6common10ObTabletIDC2ERKS1_:37576 + 0: 4697 + 24.1: _ZN9oceanbase6common13ObSEArrayImplImLl4ENS0_19ModulePageAllocatorELb0EE9push_backERKm:201971 + 5: 4697 + 6: 0 + 12: 0 + 15: 0 + 15.1: 4697 + 16: 4697 + 15.1: _ZN9oceanbase6common9ObClassOpImLb1EE20construct_and_assignERKmRm:37576 + 2: 4697 + 41.2: _ZN9oceanbase6common19append_array_no_dupINS0_10ObTabletIDEEEiRNS0_8ObIArrayIT_EERKS5_:437647 + 2: 4697 + 3.1: 4698 + 3.2: 9433 + 3.3: 9433 + 3.5: 4698 + 7.1: 4710 _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl8ENS0_19ModulePageAllocatorELb0EE9push_backERKS2_:4464 _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl1ENS0_19ModulePageAllocatorELb0EE9push_backERKS2_:241 + 8.1: 0 + 4: _ZNK9oceanbase6common12ObIArrayWrapINS0_10ObTabletIDEE2atEl:70650 + 6: 4710 + 5: _ZN9oceanbase6common18has_exist_in_arrayINS0_10ObTabletIDEEEbRKNS0_8ObIArrayIT_EERKS4_Pl:61230 + 4.1: 4710 + 5: 0 + 3: _ZNK9oceanbase6common12ObIArrayWrapINS0_10ObTabletIDEE5countEv:18840 + 0: 4710 + 5: _ZNK9oceanbase6common12ObIArrayWrapINS0_10ObTabletIDEE2atEl:0 + 5.1: _ZNK9oceanbase6common10ObTabletIDeqERKS1_:0 + 0: 0 + 42.2: _ZN9oceanbase6common19append_array_no_dupImEEiRNS0_8ObIArrayIT_EERKS4_:417889 + 2: 4896 + 3.1: 4587 + 3.2: 9130 + 3.3: 9130 + 3.5: 4587 + 7.1: 4607 _ZN9oceanbase6common13ObSEArrayImplImLl8ENS0_19ModulePageAllocatorELb0EE9push_backERKm:4331 _ZN9oceanbase6common13ObSEArrayImplImLl1ENS0_19ModulePageAllocatorELb0EE9push_backERKm:240 + 8.1: 0 + 4: _ZNK9oceanbase6common12ObIArrayWrapImE2atEl:68295 + 6: 4553 + 5: _ZN9oceanbase6common18has_exist_in_arrayImEEbRKNS0_8ObIArrayIT_EERKS3_Pl:40977 + 4.1: 4553 + 5: 0 + 3: _ZNK9oceanbase6common12ObIArrayWrapImE5countEv:18212 + 0: 4553 + 5: _ZNK9oceanbase6common12ObIArrayWrapImE2atEl:0 + 47.1: _ZNK9oceanbase6common10ObNewRange14is_whole_rangeEv:0 + 2: 0 + 2.1: 0 +_ZZN9oceanbase8memtable19ObMvccValueIterator4initERNS0_15ObMvccAccessCtxEPKNS0_13ObMemtableKeyEPNS0_9ObMvccRowERKNS_6common11ObQueryFlagEbENK5$_110clEPKc.0340b0f4925be2641495b31f3f56bf33:3580868:43730 + 0: 41113 + 0.1: 0 + 0.2: 41113 + 0.3: 39946 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:42654 + 0.18: 0 + 0.21: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:679082 + 2: 39946 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.5: _ZN9oceanbase6common20ObLogPrintPointerCntIPNS_8memtable9ObMvccRowEEC2ES4_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVINS0_20ObLogPrintPointerCntIPNS_8memtable9ObMvccRowEEELb1EEC2EPKcOKS6_:0 + 0: 0 + 0.7: _ZN9oceanbase6common20ObLogPrintPointerCntIPNS_8memtable15ObMvccTransNodeEEC2ES4_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVINS0_20ObLogPrintPointerCntIPNS_8memtable15ObMvccTransNodeEEELb1EEC2EPKcOKS6_:0 + 0: 0 + 0.9: _ZNK9oceanbase6common11ObQueryFlag14is_read_latestEv:0 + 0: 0 + 0.11: _ZN9oceanbase6common7ObLogKVIRKbLb0EEC2EPKcS3_:0 + 0: 0 + 0.13: _ZN9oceanbase6common7ObLogKVIRKbLb0EEC2EPKcS3_:0 + 0: 0 + 0.14: _ZN9oceanbase6common20ObLogPrintPointerCntIPKNS_8memtable13ObMemtableKeyEEC2ES5_:0 + 0: 0 + 0.15: _ZN9oceanbase6common7ObLogKVINS0_20ObLogPrintPointerCntIPKNS_8memtable13ObMemtableKeyEEELb1EEC2EPKcOKS7_:0 + 0: 0 + 0.17: _ZN9oceanbase6common7ObLogKVIRKNS_8memtable15ObMvccAccessCtxELb0EEC2EPKcS5_:0 + 0: 0 + 0.20: _ZN9oceanbase6common7ObLogKVIRKPcLb0EEC2EPKcS4_:0 + 0: 0 +ob_strntoull:3554833:6480 + 1: 6080 + 2: 6208 + 2: _Z17ob_strntoull_8bitPK13ObCharsetInfoPKcmiPPcPi:3346321 + 12: 6080 + 15: 6080 + 17.1: 6080 + 17.2: 6080 + 17.3: 6080 + 17.5: 6080 + 17.6: 6080 + 17.8: 0 + 19: 6080 + 24: 6080 + 27: 0 + 32: 0 + 39: 6080 + 40: 6080 + 42: 6208 + 43: 6208 + 44.1: 37972 + 44.2: 37972 + 46: 37340 + 48: 37340 + 50: 0 + 51: 0 + 52: 0 + 53: 0 + 56: 37340 + 58: 37340 + 58.1: 37340 + 62: 37972 + 63: 37972 + 67: 6208 + 70: 6208 + 71: 0 + 73: 6208 + 74: 0 + 76: 6208 + 77: 0 + 78: 0 + 84: 0 + 85: 0 + 86: 0 +_ZN9oceanbase8observer16ObSrvMySQLXlator9translateERNS_3rpc9ObRequestERPNS2_5frame14ObReqProcessorE:3525956:5276 + 1: 5006 + 2: 5006 + 3: 5006 + 4: 1 + 5: 5006 + 6.1: 0 + 8.1: 5190 _ZN9oceanbase3rpc20ObSqlRequestOperator15get_sql_sessionEPNS0_9ObRequestE:5039 + 9.1: 1 + 12: 5190 + 13: 0 + 16: 5190 + 17.2: 5206 + 17.3: 4866 _ZN9oceanbase8observer9ObMPQueryC1ERKNS0_15ObGlobalContextE:5256 + 17.5: 5095 + 17.6: 1 + 17.7: 5095 + 17.9: 0 + 17.11: 0 + 17.12: 5095 + 18.2: 0 + 18.3: 0 + 18.5: 0 + 18.7: 0 + 18.9: 0 + 18.11: 0 + 18.16: 0 + 19.2: 0 + 19.3: 0 + 19.5: 0 + 19.7: 0 + 19.9: 0 + 19.11: 0 + 19.16: 0 + 20.2: 0 + 20.3: 0 + 20.5: 0 + 20.7: 0 + 20.9: 0 + 20.11: 0 + 20.16: 0 + 21.2: 0 + 21.3: 0 + 21.5: 0 + 21.7: 0 + 21.9: 0 + 21.11: 0 + 21.16: 0 + 22.2: 0 + 22.3: 0 + 22.5: 0 + 22.7: 0 + 22.9: 0 + 22.11: 0 + 22.16: 0 + 23.2: 0 + 23.3: 0 + 23.5: 0 + 23.7: 0 + 23.9: 0 + 23.11: 0 + 23.16: 0 + 24.2: 0 + 24.3: 0 + 24.5: 0 + 24.7: 0 + 24.9: 0 + 24.11: 0 + 24.16: 0 + 25.2: 0 + 25.3: 0 + 25.5: 0 + 25.7: 0 + 25.9: 0 + 25.11: 0 + 25.16: 0 + 26.2: 0 + 26.3: 0 + 26.5: 0 + 26.7: 0 + 26.9: 0 + 26.11: 0 + 26.16: 0 + 27.2: 0 + 27.3: 0 + 27.5: 0 + 27.7: 0 + 27.9: 0 + 27.11: 0 + 27.16: 0 + 28.2: 0 + 28.3: 0 + 28.5: 0 + 28.7: 0 + 28.9: 0 + 28.11: 0 + 28.16: 0 + 29.2: 0 + 29.3: 0 + 29.5: 0 + 29.7: 0 + 29.9: 0 + 29.11: 0 + 29.16: 0 + 30.2: 0 + 30.3: 0 + 30.5: 0 + 30.7: 0 + 30.9: 0 + 30.11: 0 + 30.16: 0 + 32.2: 0 + 32.3: 0 + 32.5: 0 + 32.7: 0 + 32.9: 0 + 32.11: 0 + 32.16: 0 + 42: 0 + 43: 0 + 44: 0 + 45: 0 + 46.1: 0 + 47.1: 0 + 49: 0 + 50: 0 + 51.1: 0 + 52.1: 0 + 53.2: 0 + 53.3: 0 + 53.5: 0 + 53.7: 0 + 53.9: 0 + 53.11: 0 + 55.2: 0 + 55.3: 0 + 55.5: 0 + 55.7: 0 + 55.9: 0 + 58.2: 0 + 58.3: 0 + 58.5: 0 + 58.7: 0 + 58.9: 0 + 58.15: 0 + 63: 0 + 64.2: 0 + 64.3: 0 + 64.5: 0 + 64.7: 0 + 64.9: 0 + 64.11: 0 + 66.2: 0 + 66.3: 0 + 66.5: 0 + 66.7: 0 + 66.9: 1 + 66.11: 1 + 71.2: 0 + 71.3: 0 + 71.5: 0 + 71.7: 0 + 71.9: 0 + 71.11: 0 + 71.15: 0 + 74: 5095 + 74.1: 5095 + 75: 0 + 76: 1 + 77.1: 1 + 78: 1 + 82: 1 + 83: 5145 + 85: 0 + 86: 0 + 86.1: 0 + 86.2: 0 + 86.4: 0 + 87: 1 + 88.1: 1 + 90: 0 + 90.1: 0 + 95: 5163 + 96: 1 + 97: 1 + 101: 5317 + 12: _ZNK9oceanbase3rpc9ObRequest21is_in_connected_phaseEv:46710 + 0: 5190 + 15: _ZNK9oceanbase3rpc9ObRequest10get_packetEv:41520 + 2: 5190 + 16: _ZNK9oceanbase7obmysql16ObMySQLRawPacket7get_cmdEv:20760 + 2: 5190 + 17.1: _ZN9oceanbase3lib6Worker4selfEv:135388 + 3: 5206 + 4: 1 + 17.2: _ZN9oceanbase6common16ObArenaAllocator5allocEl:1787345 + 0: 5206 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13alloc_alignedEll:1750903 + 3: 5206 + 6: 5085 + 7: 4866 + 8: 4866 + 10: 4866 + 11: 4866 + 12: 4866 + 13: 4866 + 15.1: 0 + 16: 0 + 18: 0 + 20: 0 + 28: 0 + 35: 4866 + 36: 4866 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE15ensure_cur_pageEv:1158894 + 2: 5206 + 3: 4887 + 5.1: 4887 + 8: 5085 + 9: 5085 + 10: 5085 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:760188 + 5: 4887 + 6: 4887 + 8: 4887 + 9: 4887 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:447420 + 2: 4915 + 3: 4915 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:78640 + 5: 4915 + 7: 4915 + 8: 4915 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:132860 + 2: 4915 + 2.2: 4915 _ZN9oceanbase6common11ObAllocator5allocElRKNS_3lib9ObMemAttrE:5034 + 2.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:153 + 3: 1 + 4: 1 + 5: 1 + 6: 1 + 7: 1 + 8: 1 + 9: 1 + 10: 1 + 11: 1 + 13: 1 + 14.1: 1 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:7 + 2: 1 + 9: _ZSt3maxIlERKT_S2_S2_:12 + 5: 1 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:117288 + 1: 4887 + 3: 4887 + 8: _ZL12abort_unlessb:30510 + 5: 5085 + 6: 0 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:40680 + 0: 5085 + 7: _ZN9oceanbase6common16get_align_offsetEPvl:53526 + 3: 4866 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:34062 + 0: 4866 + 11: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:34062 + 7: 4866 + 15.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE18is_normal_overflowEl:0 + 2: 0 + 16: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11extend_pageEl:0 + 4: 0 + 5: 0 + 8: 0 + 9: 0 + 10.1: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 12: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_tailEPNS3_4PageE:0 + 2: 0 + 3: 0 + 5: 0 + 23.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16lookup_next_pageEl:0 + 3.1: 0 + 4.1: 0 + 5: 0 + 5.1: 0 + 7: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page10reuse_sizeEv:0 + 0: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 32: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9alloc_bigEl:169 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:146 + 3: 1 + 5: 1 + 8: 1 + 9: 1 + 11.1: 1 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:55 + 2: 1 + 3: 1 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:15 + 5: 1 + 7: 1 + 8: 1 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:33 + 1: 1 + 3: 1 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_headEPNS3_4PageE:23 + 4: 1 + 5: 1 + 7: 1 + 17.16: _ZN9oceanbase3lib6Worker23get_sql_arena_allocatorEv:187536 + 2: _ZN9oceanbase3lib4Flow11current_ctxEv:145888 + 2: _ZN9oceanbase3lib4Flow12current_flowEv:145888 + 3: 5206 + 8: 1 + 10: 1 + 11: 1 + 12: 1 + 8.1: _ZN9oceanbase3lib4FlowC2ERNS0_13MemoryContextE:53 + 1: 1 + 3: 1 + 11: _ZL12abort_unlessb:6 + 5: 1 + 6: 0 + 2.1: _ZNK9oceanbase3lib13MemoryContextptEv:20824 + 1: 5206 + 18.1: _ZN9oceanbase3lib6Worker4selfEv:0 + 3: 0 + 4: 0 + 18.3: _ZN9oceanbase8observer8ObMPQuitC2ERKNS0_15ObGlobalContextE:0 + 1: 0 + 2: 0 + 19.1: _ZN9oceanbase3lib6Worker4selfEv:0 + 3: 0 + 4: 0 + 20.1: _ZN9oceanbase3lib6Worker4selfEv:0 + 3: 0 + 4: 0 + 20.3: _ZN9oceanbase8observer10ObMPInitDBC2ERKNS0_15ObGlobalContextE:0 + 1: 0 + 3: 0 + 2: _ZN9oceanbase6common8ObStringC2Ev:0 + 1: 0 + 21.1: _ZN9oceanbase3lib6Worker4selfEv:0 + 3: 0 + 4: 0 + 22.1: _ZN9oceanbase3lib6Worker4selfEv:0 + 3: 0 + 4: 0 + 22.3: _ZN9oceanbase8observer13ObMPStatisticC2ERKNS0_15ObGlobalContextE:0 + 1: 0 + 2: 0 + 23.1: _ZN9oceanbase3lib6Worker4selfEv:0 + 3: 0 + 4: 0 + 24.1: _ZN9oceanbase3lib6Worker4selfEv:0 + 3: 0 + 4: 0 + 25.1: _ZN9oceanbase3lib6Worker4selfEv:0 + 3: 0 + 4: 0 + 26.1: _ZN9oceanbase3lib6Worker4selfEv:0 + 3: 0 + 4: 0 + 26.3: _ZN9oceanbase8observer13ObMPStmtCloseC2ERKNS0_15ObGlobalContextE:0 + 1: 0 + 2: 0 + 27.1: _ZN9oceanbase3lib6Worker4selfEv:0 + 3: 0 + 4: 0 + 27.3: _ZN9oceanbase8observer13ObMPStmtResetC2ERKNS0_15ObGlobalContextE:0 + 1: 0 + 2: 0 + 28.1: _ZN9oceanbase3lib6Worker4selfEv:0 + 3: 0 + 4: 0 + 29.1: _ZN9oceanbase3lib6Worker4selfEv:0 + 3: 0 + 4: 0 + 30.1: _ZN9oceanbase3lib6Worker4selfEv:0 + 3: 0 + 4: 0 + 32.1: _ZN9oceanbase3lib6Worker4selfEv:0 + 3: 0 + 4: 0 + 53.3: _ZN9oceanbase8observer11ObMPDefaultC2ERKNS0_15ObGlobalContextE:0 + 1: 0 + 2: 0 + 58.1: _ZN9oceanbase3lib6Worker4selfEv:0 + 3: 0 + 4: 0 + 66.3: _ZN9oceanbase8observer11ObMPDefaultC2ERKNS0_15ObGlobalContextE:0 + 1: 0 + 2: 0 + 71.1: _ZN9oceanbase3lib6Worker4selfEv:0 + 3: 0 + 4: 0 + 71.3: _ZN9oceanbase8observer11ObMPDefaultC2ERKNS0_15ObGlobalContextE:0 + 1: 0 + 2: 0 + 74.1: _ZNK9oceanbase7obmysql16ObMySQLRawPacket7get_cmdEv:20380 + 2: 5095 + 79: _ZN9oceanbase8observer9ObMPQuery21set_is_com_filed_listEv:0 + 0: 0 + 82.1: _ZNK9oceanbase7obmysql16ObMySQLRawPacket7get_cmdEv:0 + 2: 0 + 91: _ZN9oceanbase8observer8ObMPBase17set_proxy_versionEm:0 + 0: 0 +_ZN9oceanbase7storage14ObTabletHandle5resetEv:3478622:25919 + 1: 24982 + 2: 24982 + 3: 13841 + 5: 25130 + 7: 25635 + 3: _ZNK9oceanbase7storage14ObTabletHandle15calc_wash_scoreENS0_18WashTabletPriorityE:520118 + 2: 13841 + 4: 13841 + 4.2: 13841 + 6: 0 + 7.1: 0 + 11: 13841 _ZN9oceanbase6common13ObTimeUtility15current_time_nsEv:14037 + 12: 13549 + 3.1: _ZN9oceanbase7storage8ObTablet17update_wash_scoreEl:298362 + 3: 13549 + 4: 13549 + 5.1: 13553 + 6: _ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE5resetEv:1583734 + 2: 25130 + 3: 25635 + 2: _ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE9reset_objEv:876054 + 2: 25130 + 3: 13447 + 4.1: 0 + 5: 0 + 7: 13447 + 8: 13447 + 9: 0 + 10.1: 13447 + 11.1: 0 + 13: 13780 + 7: _ZN9oceanbase7storage8ObTablet7dec_refEv:121023 + 2: 13447 +_ZN9oceanbase3sql10ObOperatorC2ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE:3427250:6145 + 1: 5950 + 2: 5950 + 3: 5950 _ZN9oceanbase3sql9ObEvalCtxC1ERNS0_13ObExecContextE:6144 + 5: 5850 + 7: 5850 + 9: 5850 + 14: 5850 + 14.1: 5850 + 15: 5850 + 17: 5850 + 19: 5850 + 20: 5850 + 22: 5850 + 23: 5950 + 24: 5850 + 25: 5850 + 26: 5850 + 0: _ZN9oceanbase3sql13ObMonitorNodeC2Ev:1509300 + 0: 5850 + 2: 5850 + 7: 5850 + 9: 5850 + 30: 5850 + 33: 5850 + 35.1: 5850 + 0: _ZN9oceanbase6common11ObDLinkBaseINS_3sql13ObMonitorNodeEEC2Ev:40950 + 1: 5850 + 0.1: _ZN9oceanbase6common12ObCurTraceId7TraceIdC2Ev:81900 + 0: 5850 + 31: _ZN9oceanbase6common12ObCurTraceId12get_trace_idEv:146250 + 5: 5850 + 5.1: 0 + 5.1: _ZN9oceanbase6common12ObCurTraceId7TraceIdC2Ev:0 + 0: 0 + 35: _Z9ob_gettidv:310050 + 3: 5850 + 4: 0 + 2: _Z13get_tid_cachev:146250 + 7: 5850 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 + 0.1: _ZN9oceanbase3sql11ObBatchRowsC2Ev:99450 + 0: 5850 + 0.2: _ZN9oceanbase3sql14ObBatchRowIterC2Ev:286650 + 0: 5850 + 0.1: _ZN9oceanbase3sql19ObBatchResultHolderC2Ev:122850 + 0: 5850 + 4: _ZN9oceanbase3sql13ObExecContext13get_allocatorEv:46800 + 2: 5850 + 4.1: _ZN9oceanbase6common12ObFixedArrayIPNS_3sql10ObEvalInfoENS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplIS4_S5_EEERS5_l:274950 + 0: 5850 + 0: _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql10ObEvalInfoENS0_12ObIAllocatorEEC2ERS5_l:187200 + 2: 5850 + 3: 5850 + 4: 5850 + 1: _ZN9oceanbase6common8ObIArrayIPNS_3sql10ObEvalInfoEEC2Ev:40950 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql10ObEvalInfoEEC2Ev:40950 + 0: 5850 + 14: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE5emptyEv:46800 + 0: 5850 + 18: _ZN9oceanbase3sql17ObIOEventObserverC2ERNS0_13ObMonitorNodeE:40950 + 0: 5850 +_ZNK9oceanbase8memtable20ObStoreRowkeyWrapper7compareERKS1_Ri:3394265:12790 + 0: 12544 + 0: _ZNK9oceanbase8memtable20ObStoreRowkeyWrapper10get_rowkeyEv:36033 + 0: 12011 + 0.1: _ZNK9oceanbase6common13ObStoreRowkey7compareERKS1_Ri:2893819 + 0: _ZNK9oceanbase6common8ObRowkey7compareERKS1_Ri:2893819 + 3: 12011 + 4: 12011 + 5: 0 + 8: 12584 + 7: _ZNK9oceanbase6common8ObRowkey14compare_prefixERKS1_Ri:2387282 + 5: 12011 + 8: 12011 + 11: 12011 + 13: 12011 + 14.1: 12392 + 16: 12560 _ZNK9oceanbase6common5ObObj32check_collation_free_and_compareERKS1_Ri:13150 + 19: 0 + 7: _ZNK9oceanbase6common8ObRowkey10is_min_rowEv:444407 + 4.1: 12011 + 5: 0 + 9: 12011 + 5: _ZNK9oceanbase6common5ObObj12is_min_valueEv:120110 + 2: 12011 + 2.1: 0 + 8: _ZNK9oceanbase6common8ObRowkey10is_max_rowEv:312286 + 4: 0 + 4.1: 12011 + 5: 0 + 9: 12011 + 5: _ZNK9oceanbase6common5ObObj12is_max_valueEv:108099 + 2: 12011 + 2.1: 0 + 9: _ZNK9oceanbase6common8ObRowkey10is_min_rowEv:504462 + 4.1: 12011 + 5: 0 + 9: 12011 + 5: _ZNK9oceanbase6common5ObObj12is_min_valueEv:120110 + 2: 12011 + 2.1: 0 + 10: _ZNK9oceanbase6common8ObRowkey10is_max_rowEv:300275 + 4: 0 + 4.1: 12011 + 5: 0 + 9: 12011 + 5: _ZNK9oceanbase6common5ObObj12is_max_valueEv:108099 + 2: 12011 + 2.1: 0 + 13: _ZSt3minIlERKT_S2_S2_:120110 + 5: 12011 +easy_pool_alloc_ex:3372348:18206 + 1: 16850 + 10: 16850 + 15: 17375 + 15.1: 4866 + 17: 16784 + 20: 16784 + 22: 16784 + 23: 16784 + 27: 0 + 28.1: 0 + 30: 16784 + 32: 16784 + 33: 0 + 36: 16784 + 39: 17375 + 41: 17375 + 41.1: 4900 + 43: 17319 + 15.1: easy_spin_lock:68124 + 5: 4866 + 5.1: 4866 + 11.1: 0 + 13: 0 + 21: 0 + 21.1: 0 + 26: 0 + 5.1: easy_atomic_cmp_set:34062 + 2: 4866 + 21.1: easy_atomic_cmp_set:0 + 2: 0 + 37: easy_pool_alloc_large:15 + 2: 1 realloc_with_mod_stat:1 + 5: 0 + 6: 0 + 7: 0 + 8: 0 +_ZN9oceanbase7obmysql14ObMySQLHandler6decodeEP14easy_message_t:3348595:5020 + 1: 4991 + 2: 4991 + 3: 4991 + 4: 4991 + 5: 0 + 6.1: 0 + 7.1: 4991 + 7.2: 4991 + 7.3: 4991 + 8: 0 + 9.1: 0 + 10.1: 4991 + 10.2: 4991 + 11: 0 + 12.1: 0 + 14: 5085 + 16: 0 + 17.1: 0 + 18.1: 4900 + 19.1: 0 + 23: 4900 + 24: 0 + 26: 4900 + 14: _ZN9oceanbase7obmysql14ObMySQLHandler22get_protocol_processorEP17easy_connection_t:131834 + 3: 5085 _ZNK9oceanbase8observer11ObSMHandler20get_cs_protocol_typeEP17easy_connection_t:5392 + 4: 5085 + 6: 5085 + 10: 0 + 14: 0 + 18.1: 0 + 18.1: _ZN9oceanbase7obmysql28ObVirtualCSProtocolProcessor6decodeEP14easy_message_tRPNS_3rpc8ObPacketE:2391510 + 0: 5085 + 0: _ZN9oceanbase7obmysql28ObVirtualCSProtocolProcessor11easy_decodeEP14easy_message_tRPNS_3rpc8ObPacketE:2289810 + 2: 5085 + 3: 5085 + 4: 5085 + 5: 5085 + 6: 5085 + 6.1: 4900 + 7.1: 0 + 9: 4900 + 10: 0 + 13: 0 + 4: _ZN15ObCSEasyMemPoolC2EP11easy_pool_t:127125 + 0: 5085 + 6: _ZN9oceanbase7obmysql24ObMysqlProtocolProcessor9do_decodeERNS_8observer14ObSMConnectionERNS0_12ObICSMemPoolERPKcS8_RPNS_3rpc8ObPacketERl:1705315 + 2: 5085 + 3: 5085 + 4: 5085 + 7: 5085 + 10: 5085 + 11: 5085 + 16: 5085 + 17: 5085 + 18.1: 0 + 19.1: 5085 + 23: 0 + 24: 0 + 25.1: 5085 + 26: 5085 + 27.1: 0 + 30: 0 + 31: 0 + 32.1: 0 + 35: 0 + 36: 0 + 37: 0 + 38: 0 + 39.1: 0 + 44: 0 + 45.1: 0 + 51: 0 + 52: 0 + 53.1: 0 + 54.1: 0 + 55.1: 0 + 64: 0 + 67: 4900 + 12: _ZN9oceanbase7obmysql11ObMySQLUtil9get_uint3ERPKcRj:162720 + 2: 5085 + 3.1: 0 + 3.2: 0 + 3.4: 0 + 3.5: 0 + 5: 5085 + 6: 5085 + 3.2: _ZN9oceanbase6common7ObLogKVIPKvLb1EEC2EPKcOKS3_:0 + 0: 0 + 13: _ZN9oceanbase7obmysql11ObMySQLUtil9get_uint1ERPKcRh:66105 + 2: 0 + 3.1: 0 + 3.2: 0 + 3.4: 0 + 3.5: 0 + 5: 5085 + 6: 5085 + 3.2: _ZN9oceanbase6common7ObLogKVIPKvLb1EEC2EPKcOKS3_:0 + 0: 0 + 17: _ZNK9oceanbase7obmysql24ObMysqlProtocolProcessor22check_mysql_packet_lenEj:101700 + 2: 5085 + 3: 5085 + 4: 0 + 5.1: 0 + 7: 0 + 25.1: _ZN9oceanbase8observer14ObSMConnection18is_in_authed_phaseEv:30510 + 0: 5085 + 26: _ZN9oceanbase7obmysql24ObMysqlProtocolProcessor11decode_bodyERNS0_12ObICSMemPoolERPKcjhRPNS_3rpc8ObPacketE:807860 + 4: 5085 + 5: 5085 + 6: 5085 + 9: 5085 + 10: 0 + 11.1: 0 + 12.1: 5085 + 19: 0 + 20.1: 0 + 25: 4900 + 26: 4900 + 29: 4900 + 12.1: _ZN15ObCSEasyMemPool5allocEl:91530 + 0: 5085 easy_pool_alloc_ex:5158 + 22: _ZN9oceanbase7obmysql16ObMySQLRawPacketC2Ev:269500 + 0: 4900 + 1: 4900 + 3: 4900 + 0: _ZN9oceanbase7obmysql13ObMySQLPacketC2Ev:19600 + 1.1: 4900 + 2: _ZN9oceanbase7obmysql13Ob20ExtraInfoC2Ev:127400 + 0: 4900 + 0: _ZN9oceanbase6common8ObStringC2Ev:73500 + 1: 4900 + 23: _ZN9oceanbase7obmysql13ObMySQLPacket7set_seqEh:14700 + 2: 4900 + 25: _ZN9oceanbase7obmysql13ObMySQLPacket11set_contentEPKcj:39200 + 2: 4900 + 3: 4900 + 36: _ZN9oceanbase8observer14ObSMConnection21is_in_connected_phaseEv:0 + 0: 0 + 38: _ZN9oceanbase7obmysql24ObMysqlProtocolProcessor16decode_sslr_bodyERNS0_12ObICSMemPoolERPKcjhRPNS_3rpc8ObPacketE:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9.1: 0 + 11: 0 + 13: 0 + 14: 0 + 16: 0 + 17: 0 + 19: 0 + 20.1: 0 + 23: 0 + 11: _ZN9oceanbase7obmysql14OMPKSSLRequestC2Ev:0 + 1: 0 + 1.1: 0 + 0: _ZN9oceanbase7obmysql13ObMySQLPacketC2Ev:0 + 1.1: 0 + 12: _ZN9oceanbase7obmysql13ObMySQLPacket7set_seqEh:0 + 2: 0 + 13: _ZN9oceanbase7obmysql13ObMySQLPacket11set_contentEPKcj:0 + 2: 0 + 3: 0 + 41: _ZN9oceanbase8observer14ObSMConnection21set_ssl_connect_phaseEv:0 + 0: 0 + 44: _ZN9oceanbase7obmysql24ObMysqlProtocolProcessor15decode_hsr_bodyERNS0_12ObICSMemPoolERPKcjhRPNS_3rpc8ObPacketE:0 + 3: 0 + 4: 0 + 6: 0 + 7: 0 + 8: 0 + 9.1: 0 + 13: 0 + 14: 0 + 19: 0 + 11: _ZN9oceanbase7obmysql21OMPKHandshakeResponseC2Ev:0 + 1.1: 0 + 2: 0 + 0: _ZN9oceanbase7obmysql13ObMySQLPacketC2Ev:0 + 1.1: 0 + 1.1: _ZN9oceanbase6common8ObStringC2Ev:0 + 1: 0 + 2.4: _ZN9oceanbase6common9ObSEArrayINS_7obmysql10ObCommonKVINS0_8ObStringES4_EELl8ENS0_19ModulePageAllocatorELb0EEC2Ev:0 + 0.1: 0 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_7obmysql10ObCommonKVINS0_8ObStringES4_EELl8ENS0_19ModulePageAllocatorELb0EEC2ElRKS6_:0 + 2: 0 + 5: 0 + 6: 0 + 8: 0 + 17.1: 0 + 2: _ZN9oceanbase6common8ObIArrayINS_7obmysql10ObCommonKVINS0_8ObStringES4_EEEC2EPS5_l:0 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_7obmysql10ObCommonKVINS0_8ObStringES4_EEEC2EPS5_l:0 + 0: 0 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:0 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:0 + 2: 0 + 8: 0 + 12: _ZN9oceanbase7obmysql13ObMySQLPacket7set_seqEh:0 + 2: 0 + 13: _ZN9oceanbase7obmysql13ObMySQLPacket11set_contentEPKcj:0 + 2: 0 + 3: 0 + 54.1: _ZN9oceanbase7obmysql24ObMysqlProtocolProcessor15decode_hsr_bodyERNS0_12ObICSMemPoolERPKcjhRPNS_3rpc8ObPacketE:0 + 3: 0 + 4: 0 + 6: 0 + 7: 0 + 8: 0 + 9.1: 0 + 13: 0 + 14: 0 + 19: 0 + 11: _ZN9oceanbase7obmysql21OMPKHandshakeResponseC2Ev:0 + 1.1: 0 + 2: 0 + 0: _ZN9oceanbase7obmysql13ObMySQLPacketC2Ev:0 + 1.1: 0 + 1.1: _ZN9oceanbase6common8ObStringC2Ev:0 + 1: 0 + 2.4: _ZN9oceanbase6common9ObSEArrayINS_7obmysql10ObCommonKVINS0_8ObStringES4_EELl8ENS0_19ModulePageAllocatorELb0EEC2Ev:0 + 0.1: 0 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_7obmysql10ObCommonKVINS0_8ObStringES4_EELl8ENS0_19ModulePageAllocatorELb0EEC2ElRKS6_:0 + 2: 0 + 5: 0 + 6: 0 + 8: 0 + 17.1: 0 + 2: _ZN9oceanbase6common8ObIArrayINS_7obmysql10ObCommonKVINS0_8ObStringES4_EEEC2EPS5_l:0 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_7obmysql10ObCommonKVINS0_8ObStringES4_EEEC2EPS5_l:0 + 0: 0 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:0 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:0 + 2: 0 + 8: 0 + 12: _ZN9oceanbase7obmysql13ObMySQLPacket7set_seqEh:0 + 2: 0 + 13: _ZN9oceanbase7obmysql13ObMySQLPacket11set_contentEPKcj:0 + 2: 0 + 3: 0 +_ZN9oceanbase5share17ObLocationService3getEmRKNS_6common10ObTabletIDElRbRNS0_6ObLSIDE:3312299:4334 + 6: 4040 + 7: 4040 + 8: 4040 + 9: 0 + 10.1: 0 + 11.1: 4667 + 17.1: 0 + 21: 4667 + 11.1: _ZN9oceanbase5share17ObTabletLSService3getEmRKNS_6common10ObTabletIDElRbRNS0_6ObLSIDE:2892275 + 2: 5043 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:5284 + 7: 4040 + 8: 4040 + 10: 4040 + 11: 0 + 12.1: 0 + 13.1: 0 + 14: 0 + 15.1: 0 + 20.1: 4264 + 21: 16 + 25.1: 4897 + 26: 4897 + 27.1: 16 + 29.2: 5070 + 30.2: 5070 + 31: 33 + 31.1: 33 + 32.1: 0 + 38: 5070 + 42: 5043 + 43.1: 4667 + 43.2: 0 + 43.3: 0 + 43.4: 0 + 43.6: 0 + 43.7: 0 + 45.1: 0 + 45.2: 0 + 45.3: 0 + 45.4: 0 + 45.6: 0 + 45.7: 0 + 47: 4667 + 9: _ZN9oceanbase5share6ObLSID5resetEv:28280 + 0: 4040 + 13.1: _ZNK9oceanbase5share17ObTabletLSService12is_valid_keyEmRKNS_6common10ObTabletIDE:344264 + 4: 4264 + 4: _ZNK9oceanbase6common10ObTabletID20is_valid_with_tenantEm:246192 + 5: 0 + 4: _ZN9oceanbase6common14is_meta_tenantEm:173704 + 3: 4040 + 4: 4264 + 2: _ZN9oceanbase6common13is_sys_tenantEm:33216 + 2: 4264 + 3.1: _ZN9oceanbase6common20is_virtual_tenant_idEm:68224 + 2: 4264 + 4.1: _ZNK9oceanbase6common10ObTabletID15is_inner_tabletEv:0 + 0: _ZNK9oceanbase6common10ObTabletID8is_validEv:0 + 0: 0 + 5.2: _ZN9oceanbase6common14is_user_tenantEm:46904 + 4: 4264 + 5.3: _ZNK9oceanbase6common10ObTabletID8is_validEv:25584 + 0: 4264 + 4.1: _ZNK9oceanbase6common10ObTabletID18is_reserved_tabletEv:72488 + 0: 4264 + 0: _ZNK9oceanbase6common10ObTabletID15is_inner_tabletEv:46904 + 0.1: _ZN9oceanbase6common14is_inner_tableEm:46904 + 2: 4264 + 0.1: _ZNK9oceanbase6common10ObTabletID13is_sys_tabletEv:0 + 0.1: _ZN9oceanbase6common12is_sys_tableEm:0 + 3: 0 + 2: _ZN9oceanbase6common15is_system_tableEm:0 + 2: 0 + 4.1: _ZN9oceanbase6common16is_sys_lob_tableEm:0 + 2: _ZN9oceanbase6common21is_sys_lob_meta_tableEm:0 + 2: 0 + 20.2: _ZNK9oceanbase6common10ObTabletID13is_sys_tabletEv:196144 + 0.1: _ZN9oceanbase6common12is_sys_tableEm:196144 + 4: 4264 + 22: _ZN9oceanbase5share6ObLSIDaSERKS1_:192 + 0: 16 + 24: _ZN9oceanbase5share15ObTabletLSCacheC2Ev:93808 + 6: 4264 + 25: _ZN9oceanbase5share17ObTabletLSService14get_from_cacheEmRKNS_6common10ObTabletIDERNS0_15ObTabletLSCacheE:1608265 + 5: 4264 + 12: 16 + 13.1: 16 + 15: 16 + 25: 4264 _ZN9oceanbase6common15ObKVCacheHandleC1Ev:4712 + 26: 4832 + 27.1: 4795 + 29.2: 0 + 29.3: 0 + 29.4: 0 + 29.5: 0 + 29.6: 0 + 29.10: 0 + 29.11: 0 + 29.12: 0 + 30: 0 + 31.1: 0 + 33.1: 0 + 35.1: 4795 _ZN9oceanbase5share15ObTabletLSCache6assignERKS1_:4909 + 35.2: 4801 + 36.1: 0 + 38.2: 5034 + 38.3: 46 + 38.4: 46 + 38.5: 46 + 38.6: 46 + 38.10: 46 + 38.11: 46 + 38.12: 46 + 39.1: 4852 _ZZN9oceanbase5share17ObTabletLSService14get_from_cacheEmRKNS_6common10ObTabletIDERNS0_15ObTabletLSCacheEENK5$_358clEPKc.db28c62327e16d3ae5c8a88acfd53bbb:4829 + 41: 4865 _ZN9oceanbase6common15ObKVCacheHandleD1Ev:4984 + 41.1: 0 + 42: 4897 + 6.3: _ZN9oceanbase5share18ObTabletLSCacheKeyC2EmNS_6common10ObTabletIDE:136448 + 1: 4264 + 1: _ZN9oceanbase6common10ObTabletIDC2ERKS1_:29848 + 0: 4264 + 7: _ZN9oceanbase5share15ObTabletLSCache5resetEv:81016 + 6: 4264 + 3: _ZN9oceanbase6common10ObTabletID5resetEv:29848 + 0: 4264 + 4: _ZN9oceanbase5share6ObLSID5resetEv:34112 + 0: 4264 + 11.1: _ZNK9oceanbase5share18ObTabletLSCacheKey8is_validEv:76752 + 2: 4264 + 3: 4264 + 14.3: _ZNK9oceanbase6common10ObTabletID13is_sys_tabletEv:353912 + 0: 4264 + 0: _ZNK9oceanbase6common10ObTabletID8is_validEv:25584 + 0: 4264 + 0.1: _ZN9oceanbase6common12is_sys_tableEm:319800 + 3: 4264 + 4: 4264 + 2: _ZN9oceanbase6common15is_system_tableEm:46904 + 2: 4264 + 16: _ZN9oceanbase5share15ObTabletLSCache4initERKmRKNS_6common10ObTabletIDERKNS0_6ObLSIDERKlSC_:752 + 8: 16 + 11: 16 + 12: 16 + 9: _ZN9oceanbase6common10ObTabletIDaSERKS1_:112 + 0: 16 + 10: _ZN9oceanbase5share6ObLSIDaSERKS1_:176 + 0: 16 + 27: _ZN9oceanbase6common9ObKVCacheINS_5share18ObTabletLSCacheKeyENS2_15ObTabletLSCacheEE3getERKS3_RPKS4_RNS0_15ObKVCacheHandleE:444678 + 2: 4832 + 3: 4832 + 4: 4832 + 5: 0 + 6.1: 0 + 8: 4832 _ZN9oceanbase6common15ObKVCacheHandle5resetEv:4810 + 9: 4795 _ZN9oceanbase6common15ObKVGlobalCache12get_instanceEv:4950 + 9.1: 4698 _ZN9oceanbase6common15ObKVGlobalCache3getElRKNS0_13ObIKVCacheKeyERPKNS0_15ObIKVCacheValueERPNS0_18ObKVMemBlockHandleE:4943 + 11.1: 0 + 14: 4795 + 20: 4795 + 29.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:0 + 2: 0 + 38.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:25121 + 2: 4801 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:4944 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:20136 + 2: 5034 + 30.1: _ZNK9oceanbase5share15ObTabletLSCache14get_renew_timeEv:24700 + 0: 4940 +_ZN9oceanbase3sql16ObDASTaskFactoryC2ERNS_6common12ObIAllocatorE:3275350:11058 + 2: 10078 + 3: 10078 + 4: 10078 + 6: 10078 + 8: 10078 + 9: 10078 + 9.4: 0 + 9.5: 0 + 9.6: 0 + 9.7: 0 + 1: _ZN9oceanbase6common10ObObjStoreIPNS_3sql12ObIDASTaskOpERNS0_12ObIAllocatorELb0EEC2ES6_:614758 + 1: 10078 + 3: _ZN9oceanbase3lib11this_workerEv:282184 + 2: _ZN9oceanbase3lib6Worker4selfEv:282184 + 3: 10078 + 4: 0 + 65511: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql12ObIDASTaskOpEEEEC2Ev:292262 + 2: 10078 + 3: 10078 + 4: 10078 + 65463: _ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql12ObIDASTaskOpEEEEC2Ev:141092 + 2: 10078 + 2: _ZN9oceanbase6common10ObObjStoreIPNS_3sql16ObIDASTaskResultERNS0_12ObIAllocatorELb0EEC2ES6_:433354 + 1: 10078 + 3: _ZN9oceanbase3lib11this_workerEv:90702 + 2: _ZN9oceanbase3lib6Worker4selfEv:90702 + 3: 10078 + 4: 0 + 65511: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql16ObIDASTaskResultEEEEC2Ev:302340 + 2: 10078 + 3: 10078 + 4: 10078 + 65463: _ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql16ObIDASTaskResultEEEEC2Ev:151170 + 2: 10078 + 3: _ZN9oceanbase6common10ObObjStoreIPNS_3sql14ObDASExtraDataERNS0_12ObIAllocatorELb0EEC2ES6_:473666 + 1: 10078 + 3: _ZN9oceanbase3lib11this_workerEv:131014 + 2: _ZN9oceanbase3lib6Worker4selfEv:131014 + 3: 10078 + 4: 0 + 65511: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql14ObDASExtraDataEEEEC2Ev:302340 + 2: 10078 + 3: 10078 + 4: 10078 + 65463: _ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql14ObDASExtraDataEEEEC2Ev:151170 + 2: 10078 + 4: _ZN9oceanbase6common10ObObjStoreIPNS_3sql14ObDASBaseCtDefERNS0_12ObIAllocatorELb0EEC2ES6_:554290 + 1: 10078 + 3: _ZN9oceanbase3lib11this_workerEv:90702 + 2: _ZN9oceanbase3lib6Worker4selfEv:90702 + 3: 10078 + 4: 0 + 65511: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql14ObDASBaseCtDefEEEEC2Ev:393042 + 2: 10078 + 3: 10078 + 4: 10078 + 65463: _ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql14ObDASBaseCtDefEEEEC2Ev:151170 + 2: 10078 + 5: _ZN9oceanbase6common10ObObjStoreIPNS_3sql14ObDASBaseRtDefERNS0_12ObIAllocatorELb0EEC2ES6_:655070 + 1: 10078 + 65511: 10078 + 3: _ZN9oceanbase3lib11this_workerEv:90702 + 2: _ZN9oceanbase3lib6Worker4selfEv:90702 + 3: 10078 + 4: 0 + 65511: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql14ObDASBaseRtDefEEEEC2Ev:423276 + 2: 10078 + 3: 10078 + 4: 10078 + 65463: _ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql14ObDASBaseRtDefEEEEC2Ev:181404 + 2: 10078 +_ZN9oceanbase3sql16ObDASTaskFactoryC1ERNS_6common12ObIAllocatorE:3275350:11058 + 2: 10078 + 3: 10078 + 4: 10078 + 6: 10078 + 8: 10078 + 9: 10078 + 9.4: 0 + 9.5: 0 + 9.6: 0 + 9.7: 0 + 1: _ZN9oceanbase6common10ObObjStoreIPNS_3sql12ObIDASTaskOpERNS0_12ObIAllocatorELb0EEC2ES6_:614758 + 1: 10078 + 3: _ZN9oceanbase3lib11this_workerEv:282184 + 2: _ZN9oceanbase3lib6Worker4selfEv:282184 + 3: 10078 + 4: 0 + 65511: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql12ObIDASTaskOpEEEEC2Ev:292262 + 2: 10078 + 3: 10078 + 4: 10078 + 65463: _ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql12ObIDASTaskOpEEEEC2Ev:141092 + 2: 10078 + 2: _ZN9oceanbase6common10ObObjStoreIPNS_3sql16ObIDASTaskResultERNS0_12ObIAllocatorELb0EEC2ES6_:433354 + 1: 10078 + 3: _ZN9oceanbase3lib11this_workerEv:90702 + 2: _ZN9oceanbase3lib6Worker4selfEv:90702 + 3: 10078 + 4: 0 + 65511: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql16ObIDASTaskResultEEEEC2Ev:302340 + 2: 10078 + 3: 10078 + 4: 10078 + 65463: _ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql16ObIDASTaskResultEEEEC2Ev:151170 + 2: 10078 + 3: _ZN9oceanbase6common10ObObjStoreIPNS_3sql14ObDASExtraDataERNS0_12ObIAllocatorELb0EEC2ES6_:473666 + 1: 10078 + 3: _ZN9oceanbase3lib11this_workerEv:131014 + 2: _ZN9oceanbase3lib6Worker4selfEv:131014 + 3: 10078 + 4: 0 + 65511: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql14ObDASExtraDataEEEEC2Ev:302340 + 2: 10078 + 3: 10078 + 4: 10078 + 65463: _ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql14ObDASExtraDataEEEEC2Ev:151170 + 2: 10078 + 4: _ZN9oceanbase6common10ObObjStoreIPNS_3sql14ObDASBaseCtDefERNS0_12ObIAllocatorELb0EEC2ES6_:554290 + 1: 10078 + 3: _ZN9oceanbase3lib11this_workerEv:90702 + 2: _ZN9oceanbase3lib6Worker4selfEv:90702 + 3: 10078 + 4: 0 + 65511: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql14ObDASBaseCtDefEEEEC2Ev:393042 + 2: 10078 + 3: 10078 + 4: 10078 + 65463: _ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql14ObDASBaseCtDefEEEEC2Ev:151170 + 2: 10078 + 5: _ZN9oceanbase6common10ObObjStoreIPNS_3sql14ObDASBaseRtDefERNS0_12ObIAllocatorELb0EEC2ES6_:655070 + 1: 10078 + 65511: 10078 + 3: _ZN9oceanbase3lib11this_workerEv:90702 + 2: _ZN9oceanbase3lib6Worker4selfEv:90702 + 3: 10078 + 4: 0 + 65511: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql14ObDASBaseRtDefEEEEC2Ev:423276 + 2: 10078 + 3: 10078 + 4: 10078 + 65463: _ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql14ObDASBaseRtDefEEEEC2Ev:181404 + 2: 10078 +_ZNK9oceanbase6common5ObObj7compareERKS1_:3243772:10780 + 1: 10286 + 2: 10139 + 2: _ZN9oceanbase6common13ObObjCmpFuncs16compare_nullsafeERKNS0_5ObObjES4_NS0_15ObCollationTypeE:2916531 + 6: 9992 + 10.1: 22 + 11: 22 + 14: 10139 _ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE11ELS3_11EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE:2115 _ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE11ELS3_23EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE:2062 _ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE23ELS3_11EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE:2022 _ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE23ELS3_0EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE:1061 _ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE1ELS3_1EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE:1011 _ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE0ELS3_23EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE:950 _ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE0ELS3_11EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE:882 + 15.1: 22 + 16: 22 + 6.2: _ZN9oceanbase6common13ObObjCmpFuncs20can_cmp_without_castERKNS0_9ObObjMetaES4_NS0_7ObCmpOpERPFiRKNS0_5ObObjES8_RKNS0_12ObCompareCtxEE:1843331 + 12.1: 0 + 13: 10479 + 15.1: 11052 + 16.1: 11283 + 18.1: 9992 + 18.2: 85 + 18.4: 85 + 25: 9992 + 6: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:72002 + 0: 10286 + 7: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:82288 + 0: 10286 + 8: _ZNK9oceanbase6common9ObObjMeta14get_type_classEv:238297 + 0.1: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:238297 + 2: 11153 + 2.1: 10286 + 2.3: 10286 + 9: _ZNK9oceanbase6common9ObObjMeta14get_type_classEv:146274 + 0.1: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:146274 + 2: 10286 + 2.1: 10479 + 12: _ZN9oceanbase6common13ObObjCmpFuncs25is_datetime_timestamp_cmpENS0_9ObObjTypeES2_:72581 + 2: 10286 + 3.1: 10479 + 13.1: _ZN9oceanbase6common13ObObjCmpFuncs17is_otimestamp_cmpENS0_9ObObjTypeES2_:247719 + 2: 10757 + 2.2: 22 + 3.1: 10757 + 3.3: 0 + 18.1: _ZN9oceanbase6common17ob_is_string_typeENS0_9ObObjTypeE:167380 + 0: 11153 + 0: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:66918 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:66918 + 2: 11153 + 18.2: _ZN9oceanbase6common17ob_is_string_typeENS0_9ObObjTypeE:1275 + 0: 85 + 0: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:425 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:425 + 2: 85 + 22.1: _ZN9oceanbase6common13ObObjCmpFuncs12get_cmp_funcENS0_14ObObjTypeClassES2_NS0_7ObCmpOpERPFiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxEE:419664 + 7: 9992 + 13: 9992 + 13: _ZN9oceanbase3lib14is_oracle_modeEv:560762 + 2: _ZN9oceanbase3lib15get_compat_modeEv:560762 + 2: 9992 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:400890 + 2: 9992 + 2.1: 22 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:484 + 1: 22 + 13.1: _ZN9oceanbase6common12ObCompareCtxC2ENS0_9ObObjTypeENS0_15ObCollationTypeEblNS0_12ObCmpNullPosE:269784 + 5: 9992 + 7: 9992 + 8: 9992 + 9: 9992 +_ZN9oceanbase12blocksstable9ObSSTable4scanERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS0_12ObDatumRangeERPNS2_18ObStoreRowIteratorE:3242475:1083 + 5: 1056 + 6: 1056 + 8: 1056 + 9: 0 + 10.1: 0 + 11.1: 1056 + 12: 0 + 13.1: 0 + 14.1: 1095 _ZNK9oceanbase7storage16ObTableIterParam8is_validEv:1132 + 14.2: 1095 + 14.4: 1095 + 18: 0 + 19.1: 0 + 21: 1095 + 22: 1095 + 23.1: 0 + 23.2: 0 + 23.4: 0 + 23.8: 0 + 23.10: 0 + 23.11: 0 + 23.12: 0 + 23.15: 0 + 26.1: 1130 _ZNK9oceanbase7storage8ObITable30is_multi_version_minor_sstableEv:1135 + 27.1: 1089 + 27.2: 0 + 27.4: 0 + 27.8: 1054 + 27.10: 1054 _ZN9oceanbase6common26ObWrapperAllocatorWithAttr5allocEl:1063 + 27.11: 0 + 27.12: 0 + 27.15: 1054 + 31.1: 0 + 31.2: 0 + 31.4: 0 + 31.8: 0 + 31.10: 0 + 31.11: 0 + 31.12: 0 + 31.15: 0 + 36: 967 + 37: 967 + 38: 0 + 39.1: 0 + 40.1: 1031 _ZN9oceanbase7storage18ObStoreRowIterator4initERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextEPNS0_8ObITableEPKv:1004 + 41.1: 0 + 45: 0 + 46: 0 + 47: 0 + 48.1: 0 + 48.2: 0 + 49: 0 + 52: 1031 + 56: 1031 + 8: _ZNK9oceanbase12blocksstable9ObSSTable8is_validEv:7392 + 0: 1056 + 11.1: _ZNK9oceanbase6common10ObTabletIDneERKS1_:8448 + 0: 1056 + 14.2: _ZNK9oceanbase7storage20ObTableAccessContext8is_validEv:41610 + 1: 1095 + 2: 1095 + 2.1: 1095 + 3: 1095 + 3.1: 1095 + 4: 1095 + 4.1: 1095 + 14.3: _ZNK9oceanbase12blocksstable12ObDatumRange8is_validEv:44895 + 2: 1095 + 2: _ZNK9oceanbase12blocksstable13ObDatumRowkey8is_validEv:18615 + 0: 1095 + 0.1: 1095 + 2.1: _ZNK9oceanbase12blocksstable13ObDatumRowkey8is_validEv:19710 + 0: 1095 + 0.1: 1095 + 22: _ZNK9oceanbase6common11ObQueryFlag19is_whole_macro_scanEv:9855 + 0: 1095 + 27.15: _ZN9oceanbase7storage31ObSSTableMultiVersionRowScannerC2Ev:2870027 + 1: 993 + 2: 993 + 3: 993 _ZN9oceanbase6common14ObVersionRangeC1Ev:1031 + 4: 993 + 0: _ZN9oceanbase7storage30ObSSTableMultiVersionRowGetterC2Ev:2829314 + 0: 1045 _ZN9oceanbase7storage19ObSSTableRowScannerC2Ev:1101 + 2: 1012 + 4: 1010 + 0.1: _ZN9oceanbase7storage13ObObjBufArrayC2Ev:15150 + 3: 1010 + 0.2: _ZN9oceanbase12blocksstable10ObDatumRowC2Ev:2708946 + 1.1: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:167992 + 4: 1012 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:138644 + 2: 1012 + 3: 1012 + 4: 1012 + 5: 1012 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:54648 + 0: 1012 + 7: _ZN9oceanbase11transaction9ObTransIDC2Ev:27324 + 0: 1012 + 12: _ZN9oceanbase12blocksstable20ObStorageDatumBufferC2EPNS_6common12ObIAllocatorE:2469404 + 1: 1012 + 2: 1012 + 2.1: 33438 + 3: 1053 + 4: 1053 + 5: 1053 + 2.1: _ZN9oceanbase12blocksstable14ObStorageDatumC2Ev:2108618 + 0.1: _ZN9oceanbase12blocksstable14ObStorageDatum7set_nopEv:2108618 + 0: _ZN9oceanbase12blocksstable14ObStorageDatum13set_ext_valueEl:2108618 + 1: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:537032 + 0: 33438 + 65354: 1012 + 1.1: _ZN9oceanbase6common11ObDatumDesc7set_extEv:535008 + 0: 33438 + 1.3: _ZN9oceanbase6common5ObObj7set_extEl:1036578 + 4: 33438 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:535008 + 0: 33438 + 13: _ZN9oceanbase6common8ObNewRowC2Ev:28431 + 1: 1053 + 14: _ZN9oceanbase7storage13ObObjBufArrayC2Ev:15795 + 3: 1053 + 1: _ZN9oceanbase12blocksstable12ObDatumRangeC2Ev:70706 + 0.7: _ZN9oceanbase12blocksstable13ObDatumRowkeyC2Ev:70706 + 0.4: _ZN9oceanbase12blocksstable13ObDatumRowkey5resetEv:70706 + 0: 1012 + 4.2: _ZN9oceanbase7storage30ObSSTableMultiVersionRowGetterD2Ev:0 + 0: 0 + 0.3: 0 + 0.1: _ZN9oceanbase7storage13ObObjBufArrayD2Ev:0 + 2.1: 0 + 2: _ZN9oceanbase7storage13ObObjBufArray5resetEv:0 + 2: 0 + 2.1: 0 + 3: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 +_ZN9oceanbase7storage19ObTableScanIterator12get_next_rowEv:3229465:111063 + 0: 116608 _ZN9oceanbase7storage19ObTableScanIterator12get_next_rowERPNS_6common8ObNewRowE:117209 +_ZN9oceanbase12blocksstable12MacroBlockIdC2Ev:3219384:138180 + 1: 134141 + 3: 134141 + 4: 134141 + 5: 134141 +_ZN9oceanbase12blocksstable12MacroBlockIdC1Ev:3219384:138180 + 1: 134141 + 3: 134141 + 4: 134141 + 5: 134141 +_ZNK9oceanbase5share6schema19ObSchemaGetterGuard18get_schema_versionEmRl:3213946:20946 + 1: 19943 + 2: 19943 + 4: 20232 + 6: 11 + 7: 11 + 8.1: 0 + 9.2: 11 + 10.1: 11 + 11: 0 + 12.1: 0 + 13.1: 11 + 13.2: 11 + 14.1: 0 + 15.1: 11 + 16: 0 + 17.1: 0 + 20: 11 + 23.1: 0 + 25.1: 20232 + 26: 0 + 27.1: 0 + 29: 20232 + 31: 20232 + 31.1: 11 + 32: 20232 + 33.1: 11 + 34: 11 + 35: 11 + 36: 0 + 37.1: 0 + 39: 11 + 40: 11 + 41: 11 + 42.1: 11 + 43.1: 11 + 44.1: 11 + 45: 11 + 49: 20628 + 4: _ZNK9oceanbase5share6schema19ObSchemaGetterGuard19get_schema_mgr_infoEmRPKNS1_15ObSchemaMgrInfoE:1414769 + 2: 19943 + 3: 19943 + 4: 19943 + 5: 0 + 6.1: 0 + 7.1: 19943 + 9: 19943 + 9.2: 5027 + 9.3: 5041 _ZNK9oceanbase6common13ObSEArrayImplINS_5share6schema15ObSchemaMgrInfoELl2ENS0_19ModulePageAllocatorELb0EEixEl:5204 + 15: 0 + 17.1: 0 + 18: 0 + 20: 0 + 21: 0 + 23: 0 + 29: 0 + 33: 20232 + 7.1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema15ObSchemaMgrInfoEE5countEv:139601 + 0: 19943 + 9: _ZNK9oceanbase6common13ObSEArrayImplINS_5share6schema15ObSchemaMgrInfoELl2ENS0_19ModulePageAllocatorELb0EEixEl:139601 + 5: 19943 + 9.1: _ZNK9oceanbase6common13ObSEArrayImplINS_5share6schema15ObSchemaMgrInfoELl2ENS0_19ModulePageAllocatorELb0EEixEl:60224 + 5: 15056 + 19: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema15ObSchemaMgrInfoEE2atEl:0 + 6: 0 + 20: _ZNK9oceanbase5share6schema15ObSchemaMgrInfo13get_tenant_idEv:0 + 0: 0 + 7: _ZNK9oceanbase5share6schema19ObSchemaGetterGuard19get_schema_mgr_infoEmRPKNS1_15ObSchemaMgrInfoE:1573 + 3: 11 + 7.1: 11 + 9: 11 + 9.2: 11 + 15: 11 + 17.1: 11 + 18: 11 + 20: 11 + 21: 0 + 23: 11 + 29: 0 + 7.1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema15ObSchemaMgrInfoEE5countEv:0 + 0: 0 + 9: _ZNK9oceanbase6common13ObSEArrayImplINS_5share6schema15ObSchemaMgrInfoELl2ENS0_19ModulePageAllocatorELb0EEixEl:77 + 5: 11 + 19: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema15ObSchemaMgrInfoEE2atEl:121 + 6: 0 + 20: _ZNK9oceanbase5share6schema15ObSchemaMgrInfo13get_tenant_idEv:99 + 0: 11 + 10.1: _ZNK9oceanbase5share6schema15ObSchemaMgrInfo14get_schema_mgrEv:44 + 0: 11 + 29: _ZNK9oceanbase5share6schema15ObSchemaMgrInfo20get_snapshot_versionEv:80928 + 0: 20232 +_ZN9oceanbase12blocksstable23ObIMicroBlockRowScannerC2ERNS_6common12ObIAllocatorE:3208974:1047 + 0: 1007 + 2: 1007 + 7: 1007 + 9: 1007 + 10: 1039 _ZN9oceanbase12blocksstable12MacroBlockIdC1Ev:1070 + 12: 1000 + 19: 1000 + 20: 1000 + 21: 1000 + 22: 1007 + 22.1: 1000 + 22.2: 0 + 0: _ZN9oceanbase12blocksstable10ObDatumRowC2Ev:3062172 + 1.1: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:138966 + 4: 1007 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:123861 + 2: 1007 + 3: 1007 + 4: 1007 + 5: 1007 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:54378 + 0: 1007 + 7: _ZN9oceanbase11transaction9ObTransIDC2Ev:27189 + 0: 1007 + 12: _ZN9oceanbase12blocksstable20ObStorageDatumBufferC2EPNS_6common12ObIAllocatorE:2848243 + 1: 1007 + 2: 1007 + 2.1: 33342 + 3: 1018 + 4: 1018 + 5: 1018 + 2.1: _ZN9oceanbase12blocksstable14ObStorageDatumC2Ev:2379366 + 0.1: _ZN9oceanbase12blocksstable14ObStorageDatum7set_nopEv:2379366 + 0: _ZN9oceanbase12blocksstable14ObStorageDatum13set_ext_valueEl:2379366 + 1: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:612240 + 0: 33342 + 65354: 1007 + 1.1: _ZN9oceanbase6common11ObDatumDesc7set_extEv:600156 + 0: 33342 + 1.3: _ZN9oceanbase6common5ObObj7set_extEl:1166970 + 4: 33342 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:600156 + 0: 33342 + 13: _ZN9oceanbase6common8ObNewRowC2Ev:32504 + 1: 1018 + 14: _ZN9oceanbase7storage13ObObjBufArrayC2Ev:15270 + 3: 1018 +_ZN9oceanbase12blocksstable23ObIMicroBlockRowScannerC1ERNS_6common12ObIAllocatorE:3208974:1047 + 0: 1007 + 2: 1007 + 7: 1007 + 9: 1007 + 10: 1039 _ZN9oceanbase12blocksstable12MacroBlockIdC1Ev:1070 + 12: 1000 + 19: 1000 + 20: 1000 + 21: 1000 + 22: 1007 + 22.1: 1000 + 22.2: 0 + 0: _ZN9oceanbase12blocksstable10ObDatumRowC2Ev:3062172 + 1.1: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:138966 + 4: 1007 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:123861 + 2: 1007 + 3: 1007 + 4: 1007 + 5: 1007 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:54378 + 0: 1007 + 7: _ZN9oceanbase11transaction9ObTransIDC2Ev:27189 + 0: 1007 + 12: _ZN9oceanbase12blocksstable20ObStorageDatumBufferC2EPNS_6common12ObIAllocatorE:2848243 + 1: 1007 + 2: 1007 + 2.1: 33342 + 3: 1018 + 4: 1018 + 5: 1018 + 2.1: _ZN9oceanbase12blocksstable14ObStorageDatumC2Ev:2379366 + 0.1: _ZN9oceanbase12blocksstable14ObStorageDatum7set_nopEv:2379366 + 0: _ZN9oceanbase12blocksstable14ObStorageDatum13set_ext_valueEl:2379366 + 1: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:612240 + 0: 33342 + 65354: 1007 + 1.1: _ZN9oceanbase6common11ObDatumDesc7set_extEv:600156 + 0: 33342 + 1.3: _ZN9oceanbase6common5ObObj7set_extEl:1166970 + 4: 33342 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:600156 + 0: 33342 + 13: _ZN9oceanbase6common8ObNewRowC2Ev:32504 + 1: 1018 + 14: _ZN9oceanbase7storage13ObObjBufArrayC2Ev:15270 + 3: 1018 +_ZN9oceanbase12blocksstableL21nonext_nonext_compareERKNS0_14ObStorageDatumES3_RKNS_6common9ObCmpFuncERi.8f1e732d6655d093e942b32e16c602d8:3201418:149308 + 1: 149006 + 2: 155578 _ZN9oceanbase6common20ObNullSafeDatumTCCmpILNS0_14ObObjTypeClassE1ELS2_1ELb1EE3cmpERKNS0_7ObDatumES6_:154414 _ZN9oceanbase6common21ObNullSafeDatumStrCmpILNS0_15ObCollationTypeE45ELb0ELb1EE3cmpERKNS0_7ObDatumES6_:3 + 4: 155578 +_ZL26ob_well_formed_len_utf8mb4PK13ObCharsetInfoPKcS3_mPi.5aa8bf9a2f1d92c2672c2bb9fbfc2e97:3195268:828 + 3: 810 + 5: 810 + 6.1: 77123 + 11: 761 + 14: 77123 + 17: 761 + 9: _ZL26ob_valid_mbcharlen_utf8mb4PK13ObCharsetInfoPKhS3_:1776813 + 3: 77939 + 5: 77103 + 6: 77103 + 8: 0 + 30: 0 + 31: 0 + 32: 0 + 33: 0 + 34: 0 + 7: _ZL26ob_valid_mbcharlen_utf8mb3PKhS0_:385615 + 5: 77123 + 7: 0 + 9: 0 + 11: 0 + 13: 0 + 18: 0 + 20: 0 + 20.1: 0 + 20.2: 0 +_ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE30update_mem_status_periodicallyEv:3186368:25755 + 1: 24631 + 2: 24631 + 3: 24631 + 4: 24631 + 4.1: 27894 + 4.3: 24631 _ZN9oceanbase3sql20ObSqlMemMgrProcessor42update_max_available_mem_size_periodicallyEPNS_6common12ObIAllocatorESt8functionIFblEERb:25565 + 8.1: 377 + 9.1: 27894 + 11: 377 + 11.1: 377 + 12: 377 + 14: 27611 + 4: _ZNSt8functionIFblEEC2IZN9oceanbase3sql24ObHashPartInfrastructureINS4_14ObHashPartColsENS4_19ObHashPartStoredRowEE30update_mem_status_periodicallyEvEUllE_vEET_:837454 + 8: 24631 + 9: 24631 + 7.1: _ZNSt14_Function_base13_Base_managerIZN9oceanbase3sql24ObHashPartInfrastructureINS2_14ObHashPartColsENS2_19ObHashPartStoredRowEE30update_mem_status_periodicallyEvEUllE_E15_M_init_functorERSt9_Any_dataOS7_:98524 + 1.1: _ZNSt14_Function_base13_Base_managerIZN9oceanbase3sql24ObHashPartInfrastructureINS2_14ObHashPartColsENS2_19ObHashPartStoredRowEE30update_mem_status_periodicallyEvEUllE_E15_M_init_functorERSt9_Any_dataOS7_St17integral_constantIbLb1EE:98524 + 1: 24631 + 4.1: _ZNSt14_Function_baseD2Ev:570805 + 2: 25801 + 3: 25801 _ZNSt14_Function_base13_Base_managerIZN9oceanbase3sql24ObHashPartInfrastructureINS2_14ObHashPartColsENS2_19ObHashPartStoredRowEE30update_mem_status_periodicallyEvEUllE_E10_M_managerERSt9_Any_dataRKS9_St18_Manager_operation:26130 + 3.2: 377 + 4.2: _ZNSt14_Function_baseD2Ev:14703 + 2: 377 + 3: 377 + 3.2: 377 + 11: _ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE12get_mem_usedEv:16211 + 0: 377 + 0: _ZN9oceanbase3libeqEDnRKNS0_13MemoryContextE:2639 + 1: 377 + 1: _ZNK9oceanbase3lib13MemoryContext11ref_contextEv:1508 + 1: 377 + 0.4: _ZNK9oceanbase3lib17__MemoryContext__4usedEv:11310 + 2: 377 + 2: _ZNK9oceanbase3lib17__MemoryContext__11malloc_usedEv:8671 + 2: 377 +_ZN9oceanbase3sql19ObScalarAggregateOp18inner_get_next_rowEv:3175609:592 + 1: 512 + 2: 512 + 3: 512 + 4: 252 + 9: 252 + 11: 274 _ZN9oceanbase3sql10ObOperator12get_next_rowEv:265 + 13.1: 0 + 16.1: 0 + 17.1: 0 + 23: 258 + 24.1: 0 + 25.1: 258 + 26: 0 + 27.1: 0 + 28.1: 266 _ZN9oceanbase3sql20ObAggregateProcessor7prepareERNS1_8GroupRowE:268 + 29.1: 0 + 31.1: 27271 + 31.2: 26575 _ZN9oceanbase3sql10ObOperator12get_next_rowEv:26101 + 31.3: 26575 + 33: 25719 + 34.1: 0 + 35.1: 27271 _ZN9oceanbase3sql20ObAggregateProcessor7processERNS1_8GroupRowEb:25795 + 36.1: 0 + 39: 238 + 40: 261 + 41.1: 0 + 50: 511 + 10: _ZN9oceanbase3sql10ObOperator20clear_evaluated_flagEv:8677 + 2.1: 252 + 2.3: 251 + 3: 243 + 2.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql10ObEvalInfoEE5countEv:1008 + 0: 252 + 3: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql10ObEvalInfoEE2atEl:1215 + 6: 243 + 3.1: _ZN9oceanbase3sql10ObEvalInfo20clear_evaluated_flagEv:1458 + 2: 243 + 4: 0 + 20: _ZN9oceanbase3sql10ObOperator20clear_evaluated_flagEv:9739 + 2.1: 274 + 2.3: 264 + 3: 271 + 2.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql10ObEvalInfoEE5countEv:1370 + 0: 274 + 3: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql10ObEvalInfoEE2atEl:1355 + 6: 271 + 3.1: _ZN9oceanbase3sql10ObEvalInfo20clear_evaluated_flagEv:1626 + 2: 271 + 4: 0 + 23: _ZN9oceanbase3sql20ObAggregateProcessor13get_group_rowElRPNS1_8GroupRowE:7482 + 1: _ZNK9oceanbase6common9Ob2DArrayIPNS_3sql20ObAggregateProcessor8GroupRowELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS5_Ll64ES6_Lb0EEEE2atElRS5_:7482 + 3.1: 258 + 3.2: 258 + 6: _ZNK9oceanbase6common9Ob2DArrayIPNS_3sql20ObAggregateProcessor8GroupRowELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS5_Ll64ES6_Lb0EEEE11get_obj_posEl:2838 + 4: 258 + 4: _ZNK9oceanbase6common12ObIArrayWrapIPPNS_3sql20ObAggregateProcessor8GroupRowEE2atEl:2064 + 6: 258 + 7: _ZN9oceanbase6common11copy_assignIPNS_3sql20ObAggregateProcessor8GroupRowEEEiRT_RKS6_:774 + 2: _ZN9oceanbase6common16copy_assign_wrapIPNS_3sql20ObAggregateProcessor8GroupRowEEEiRT_RKS6_NS0_8BoolTypeILb0EEE:774 + 2: 258 + 32: _ZN9oceanbase3sql10ObOperator20clear_evaluated_flagEv:961870 + 2.1: 26325 + 2.3: 25688 + 3: 25723 + 2.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql10ObEvalInfoEE5countEv:132360 + 0: 26325 + 3: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql10ObEvalInfoEE2atEl:128615 + 6: 25723 + 3.1: _ZN9oceanbase3sql10ObEvalInfo20clear_evaluated_flagEv:180691 + 2: 25723 + 4: 105 + 33: _ZN9oceanbase3sql10ObOperator16try_check_statusEv:697563 + 2: 25719 + 3: 105 + 64901: 105 + 64952: 105 + 40: _ZN9oceanbase3sql20ObAggregateProcessor7collectElPKNS0_6ObExprEl:15723 + 4: 238 + 6: 0 + 7.1: 0 + 8.1: 261 _ZN9oceanbase3sql20ObAggregateProcessor17collect_group_rowEPNS1_8GroupRowElPKNS0_6ObExprEl:255 + 9.1: 0 + 11: 0 + 6: _ZNK9oceanbase6common9Ob2DArrayIPNS_3sql20ObAggregateProcessor8GroupRowELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS5_Ll64ES6_Lb0EEEE2atElRS5_:9282 + 3.1: 238 + 3.2: 238 + 6: _ZNK9oceanbase6common9Ob2DArrayIPNS_3sql20ObAggregateProcessor8GroupRowELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS5_Ll64ES6_Lb0EEEE11get_obj_posEl:2618 + 4: 238 + 4: _ZNK9oceanbase6common12ObIArrayWrapIPPNS_3sql20ObAggregateProcessor8GroupRowEE2atEl:1904 + 6: 238 + 7: _ZN9oceanbase6common11copy_assignIPNS_3sql20ObAggregateProcessor8GroupRowEEEiRT_RKS6_:3094 + 2: _ZN9oceanbase6common16copy_assign_wrapIPNS_3sql20ObAggregateProcessor8GroupRowEEEiRT_RKS6_NS0_8BoolTypeILb0EEE:3094 + 2: 238 +_ZN9oceanbase5trace7ObTrace12get_instanceEv:3172767:84843 + 1: 81353 + 2: 81353 + 3: 0 + 3.1: 0 + 10: 0 + 10.1: 0 + 11: 0 + 11.1: 0 + 12: 0 + 13: 0 + 14.1: 0 + 16: 0 + 19: 81353 + 3.1: _ZN9oceanbase6common10TSIFactory12get_instanceIA65536_cLm0EEEPT_v:0 + 7: 0 + 8: 0 + 8.1: 0 + 10.1: _ZZN9oceanbase5trace7ObTrace12get_instanceEvEN5GuardC2EPcl:0 + 1: 0 + 11.1: _ZZN9oceanbase5trace7ObTrace12get_instanceEvEN5GuardC2EPcl:0 + 1: 0 +_ZN9oceanbase3sql18ObBasicSessionInfo18set_session_activeERKNS_6common8ObStringEllNS_7obmysql10ObMySQLCmdE:3147280:5107 + 4: 4852 + 5: 4852 + 6: 4852 + 7.1: 5318 + 8.1: 23 + 9.2: 5318 + 10.1: 23 + 12: 5318 + 13: 5318 + 14: 5318 + 15: 5318 _ZN9oceanbase6common20ObActiveSessionGuard9setup_ashERNS0_17ActiveSessionStatE:5330 + 17: 5316 + 18.3: 5294 + 18.4: 23 + 6: _ZN9oceanbase3lib11ObLockGuardINS_6common16ObRecursiveMutexEEC2ERS3_:669748 + 1: 4852 + 2: 4852 + 4: 4699 + 5.1: 23 + 4: _ZN9oceanbase6common16ObRecursiveMutex4lockEv:564227 + 2: 4852 + 3: 4852 + 4: 23 + 6: 4936 _ZN9oceanbase6common7ObLatch6wrlockEjlPKj:5016 + 7.1: 23 + 9: 4699 + 12: 4699 + 3: _ZNK9oceanbase6common7ObLatch14is_wrlocked_byEPKj:297927 + 3: 4852 + 4: 4852 + 2.1: _Z9ob_gettidv:259111 + 3: 4852 + 4: 23 + 2: _Z13get_tid_cachev:122358 + 7: 4852 + 7.1: 23 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:529 + 0: 23 + 7: _ZN9oceanbase3sql18ObBasicSessionInfo19store_query_string_ERKNS_6common8ObStringE:549548 + 2: 4699 + 3: 4699 + 5: 4699 + 6: 23 + 7.1: 23 + 8.1: 4699 + 9: 23 + 10: 23 + 12: 23 + 14: 23 + 15.1: 23 + 16: 23 + 17: 23 + 18.1: 23 + 20: 23 + 21: 23 + 24: 4699 + 25: 4699 + 27: 5318 + 28: 5318 + 30: 5318 + 3: _ZSt3minIlERKT_S2_S2_:51689 + 5: 4699 + 4: _ZNK9oceanbase6common8ObString6lengthEv:18796 + 0: 4699 + 15: _ZN9oceanbase3lib7ObLabelC2IA16_cEERKT_:322 + 2: _ZN9oceanbase3lib7ObLabelaSILm16EEERS1_RAT__Kc:322 + 4: 23 + 25: _ZNK9oceanbase6common8ObString3ptrEv:18796 + 0: 4699 + 9.1: _ZN9oceanbase3sql18ObBasicSessionInfo18set_session_state_ENS0_17ObSQLSessionStateE:445396 + 2: 5318 + 3: 5318 + 4: 23 + 5.1: 23 + 6.1: 5318 + 6.2: 23 + 10: 23 + 11.1: 23 + 13: 23 + 14.1: 23 + 20: 5318 + 21: 5318 + 23: 5318 + 21: _ZN9oceanbase6common16ObClockGenerator8getClockEv:112276 + 4: 5318 + 5.1: 23 + 8: 5318 + 6: _ZN9oceanbase6common16ObClockGenerator6get_usEv:230 + 2: 23 + 18.3: _ZN9oceanbase3lib11ObLockGuardINS_6common16ObRecursiveMutexEED2Ev:727295 + 2: 5316 + 3: 5316 + 3.1: 5294 + 3.2: 23 + 4.1: 23 + 4.5: 23 + 3: _ZN9oceanbase6common16ObRecursiveMutex6unlockEv:614456 + 2: 5316 + 3: 5316 + 4: 23 + 5.1: 23 + 6.1: 5316 + 7: 5316 _ZN9oceanbase6common7ObLatch6unlockEPKj:5311 + 8.1: 23 + 11: 23 + 3: _ZNK9oceanbase6common7ObLatch14is_wrlocked_byEPKj:326231 + 3: 5316 + 4: 5316 + 2.1: _Z9ob_gettidv:283703 + 3: 5316 + 4: 23 + 2: _Z13get_tid_cachev:133958 + 7: 5316 + 7.1: 23 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:529 + 0: 23 +_ZN9oceanbase3sql8ObSqlCtxC2Ev:3133690:5322 + 6: 5030 + 7: 5030 + 9: 5030 + 11: 5030 + 18: 5030 + 19: 5030 + 20: 5030 + 21: 5030 + 22: 5030 + 28: 5030 + 32: 5030 + 33: 5030 + 34: 5030 + 35: 5030 + 36: 5030 + 37: 5030 + 0: _ZN9oceanbase3sql15ObMultiStmtItemC2Ev:246470 + 1: 5030 + 2: 5030 + 7: 5030 + 8: 5030 + 0.1: _ZN9oceanbase6common12ObFixedArrayIPNS_3sql20ObTablePartitionInfoENS0_12ObIAllocatorEEC2Ev:211260 + 0: 5030 + 0: _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql20ObTablePartitionInfoENS0_12ObIAllocatorEEC2EPS5_l:120720 + 3: 5030 + 1: _ZN9oceanbase6common8ObIArrayIPNS_3sql20ObTablePartitionInfoEEC2Ev:35210 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql20ObTablePartitionInfoEEC2Ev:35210 + 0: 5030 + 0.2: _ZN9oceanbase6common12ObFixedArrayINS0_8ObStringENS0_12ObIAllocatorEEC2Ev:211260 + 0: 5030 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS0_8ObStringENS0_12ObIAllocatorEEC2EPS3_l:120720 + 3: 5030 + 1: _ZN9oceanbase6common8ObIArrayINS0_8ObStringEEC2Ev:35210 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_8ObStringEEC2Ev:35210 + 0: 5030 + 0.3: _ZN9oceanbase6common12ObFixedArrayINS_3sql18LocationConstraintENS0_12ObIAllocatorEEC2Ev:211260 + 0: 5030 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS_3sql18LocationConstraintENS0_12ObIAllocatorEEC2EPS4_l:120720 + 3: 5030 + 1: _ZN9oceanbase6common8ObIArrayINS_3sql18LocationConstraintEEC2Ev:35210 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_3sql18LocationConstraintEEC2Ev:35210 + 0: 5030 + 0.4: _ZN9oceanbase6common12ObFixedArrayIPNS0_9ObSEArrayIlLl4ENS0_19ModulePageAllocatorELb1EEENS0_12ObIAllocatorEEC2Ev:211260 + 0: 5030 + 0: _ZN9oceanbase6common16ObFixedArrayImplIPNS0_9ObSEArrayIlLl4ENS0_19ModulePageAllocatorELb1EEENS0_12ObIAllocatorEEC2EPS6_l:120720 + 3: 5030 + 1: _ZN9oceanbase6common8ObIArrayIPNS0_9ObSEArrayIlLl4ENS0_19ModulePageAllocatorELb1EEEEC2Ev:35210 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS0_9ObSEArrayIlLl4ENS0_19ModulePageAllocatorELb1EEEEC2Ev:35210 + 0: 5030 + 0.5: _ZN9oceanbase6common12ObFixedArrayIPNS0_9ObSEArrayIlLl4ENS0_19ModulePageAllocatorELb1EEENS0_12ObIAllocatorEEC2Ev:155930 + 0: 5030 + 0: _ZN9oceanbase6common16ObFixedArrayImplIPNS0_9ObSEArrayIlLl4ENS0_19ModulePageAllocatorELb1EEENS0_12ObIAllocatorEEC2EPS6_l:120720 + 3: 5030 + 1: _ZN9oceanbase6common8ObIArrayIPNS0_9ObSEArrayIlLl4ENS0_19ModulePageAllocatorELb1EEEEC2Ev:35210 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS0_9ObSEArrayIlLl4ENS0_19ModulePageAllocatorELb1EEEEC2Ev:35210 + 0: 5030 + 0.6: _ZN9oceanbase6common12ObFixedArrayIlNS0_12ObIAllocatorEEC2Ev:211260 + 0: 5030 + 0: _ZN9oceanbase6common16ObFixedArrayImplIlNS0_12ObIAllocatorEEC2EPS2_l:120720 + 3: 5030 + 1: _ZN9oceanbase6common8ObIArrayIlEC2Ev:35210 + 0: _ZN9oceanbase6common12ObIArrayWrapIlEC2Ev:35210 + 0: 5030 + 0.7: _ZN9oceanbase3sql13ObSpmCacheCtxC2Ev:870190 + 4: 5030 + 5: 5030 + 6: 5030 + 8: 5030 + 9: 5030 + 11: 5030 + 12: 5030 + 14: 5030 + 15: 5030 + 1: _ZN9oceanbase3sql14ObILibCacheCtxC2Ev:55330 + 1: 5030 + 2: _ZN9oceanbase3sql13ObBaselineKeyC2Ev:316890 + 2: 5030 + 4: 5030 + 1: _ZN9oceanbase3sql14ObILibCacheKeyC2ENS0_19ObLibCacheNameSpaceE:50300 + 1: 5030 + 4.1: _ZN9oceanbase6common8ObStringC2Ev:120720 + 1: 5030 + 10: _ZN9oceanbase3sql15ObCacheObjGuardC2ENS0_16CacheRefHandleIDE:50300 + 2: 5030 +_ZN9oceanbase3sql8ObSqlCtxC1Ev:3133690:5322 + 6: 5030 + 7: 5030 + 9: 5030 + 11: 5030 + 18: 5030 + 19: 5030 + 20: 5030 + 21: 5030 + 22: 5030 + 28: 5030 + 32: 5030 + 33: 5030 + 34: 5030 + 35: 5030 + 36: 5030 + 37: 5030 + 0: _ZN9oceanbase3sql15ObMultiStmtItemC2Ev:246470 + 1: 5030 + 2: 5030 + 7: 5030 + 8: 5030 + 0.1: _ZN9oceanbase6common12ObFixedArrayIPNS_3sql20ObTablePartitionInfoENS0_12ObIAllocatorEEC2Ev:211260 + 0: 5030 + 0: _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql20ObTablePartitionInfoENS0_12ObIAllocatorEEC2EPS5_l:120720 + 3: 5030 + 1: _ZN9oceanbase6common8ObIArrayIPNS_3sql20ObTablePartitionInfoEEC2Ev:35210 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql20ObTablePartitionInfoEEC2Ev:35210 + 0: 5030 + 0.2: _ZN9oceanbase6common12ObFixedArrayINS0_8ObStringENS0_12ObIAllocatorEEC2Ev:211260 + 0: 5030 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS0_8ObStringENS0_12ObIAllocatorEEC2EPS3_l:120720 + 3: 5030 + 1: _ZN9oceanbase6common8ObIArrayINS0_8ObStringEEC2Ev:35210 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_8ObStringEEC2Ev:35210 + 0: 5030 + 0.3: _ZN9oceanbase6common12ObFixedArrayINS_3sql18LocationConstraintENS0_12ObIAllocatorEEC2Ev:211260 + 0: 5030 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS_3sql18LocationConstraintENS0_12ObIAllocatorEEC2EPS4_l:120720 + 3: 5030 + 1: _ZN9oceanbase6common8ObIArrayINS_3sql18LocationConstraintEEC2Ev:35210 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_3sql18LocationConstraintEEC2Ev:35210 + 0: 5030 + 0.4: _ZN9oceanbase6common12ObFixedArrayIPNS0_9ObSEArrayIlLl4ENS0_19ModulePageAllocatorELb1EEENS0_12ObIAllocatorEEC2Ev:211260 + 0: 5030 + 0: _ZN9oceanbase6common16ObFixedArrayImplIPNS0_9ObSEArrayIlLl4ENS0_19ModulePageAllocatorELb1EEENS0_12ObIAllocatorEEC2EPS6_l:120720 + 3: 5030 + 1: _ZN9oceanbase6common8ObIArrayIPNS0_9ObSEArrayIlLl4ENS0_19ModulePageAllocatorELb1EEEEC2Ev:35210 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS0_9ObSEArrayIlLl4ENS0_19ModulePageAllocatorELb1EEEEC2Ev:35210 + 0: 5030 + 0.5: _ZN9oceanbase6common12ObFixedArrayIPNS0_9ObSEArrayIlLl4ENS0_19ModulePageAllocatorELb1EEENS0_12ObIAllocatorEEC2Ev:155930 + 0: 5030 + 0: _ZN9oceanbase6common16ObFixedArrayImplIPNS0_9ObSEArrayIlLl4ENS0_19ModulePageAllocatorELb1EEENS0_12ObIAllocatorEEC2EPS6_l:120720 + 3: 5030 + 1: _ZN9oceanbase6common8ObIArrayIPNS0_9ObSEArrayIlLl4ENS0_19ModulePageAllocatorELb1EEEEC2Ev:35210 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS0_9ObSEArrayIlLl4ENS0_19ModulePageAllocatorELb1EEEEC2Ev:35210 + 0: 5030 + 0.6: _ZN9oceanbase6common12ObFixedArrayIlNS0_12ObIAllocatorEEC2Ev:211260 + 0: 5030 + 0: _ZN9oceanbase6common16ObFixedArrayImplIlNS0_12ObIAllocatorEEC2EPS2_l:120720 + 3: 5030 + 1: _ZN9oceanbase6common8ObIArrayIlEC2Ev:35210 + 0: _ZN9oceanbase6common12ObIArrayWrapIlEC2Ev:35210 + 0: 5030 + 0.7: _ZN9oceanbase3sql13ObSpmCacheCtxC2Ev:870190 + 4: 5030 + 5: 5030 + 6: 5030 + 8: 5030 + 9: 5030 + 11: 5030 + 12: 5030 + 14: 5030 + 15: 5030 + 1: _ZN9oceanbase3sql14ObILibCacheCtxC2Ev:55330 + 1: 5030 + 2: _ZN9oceanbase3sql13ObBaselineKeyC2Ev:316890 + 2: 5030 + 4: 5030 + 1: _ZN9oceanbase3sql14ObILibCacheKeyC2ENS0_19ObLibCacheNameSpaceE:50300 + 1: 5030 + 4.1: _ZN9oceanbase6common8ObStringC2Ev:120720 + 1: 5030 + 10: _ZN9oceanbase3sql15ObCacheObjGuardC2ENS0_16CacheRefHandleIDE:50300 + 2: 5030 +_ZN9oceanbase6common11ObAllocator5allocElRKNS_3lib9ObMemAttrE:3093949:13670 + 1: 13383 + 5: 13383 + 9.1: 13271 + 9.3: 111 + 10: 13271 + 12: 13271 + 14: 13341 _ZN9oceanbase3lib9ObjectSet12alloc_objectEmRKNS0_9ObMemAttrE:13528 + 15: 13341 + 16: 111 + 17: 111 + 18: 111 + 19: 111 + 20: 111 + 21: 111 + 22: 111 + 26: 111 + 30.1: 111 + 30.2: 108 + 30.4: 108 + 30.5: 111 + 31: 108 + 31.1: 108 + 32.1: 108 + 33.1: 108 + 39: 108 + 42: 13522 + 6: _ZN9oceanbase6common11ObAllocator4initEv:719894 + 2: 5719 + 8.1: 5719 + 8.2: 5717 + 9: 5717 + 10: 5717 + 11: 5717 + 13: 5037 + 15: 808 _ZN9oceanbase3lib17ObMallocAllocator12get_instanceEv:749 + 16: 855 + 17: 108 + 18.1: 108 + 18.5: 108 + 18.7: 108 + 19.1: 868 _ZN9oceanbase3lib17ObMallocAllocator24get_tenant_ctx_block_mgrEmm:780 + 21: 108 + 22.1: 108 + 22.5: 108 + 22.11: 108 + 25: 5779 + 27: 5779 + 28: 5779 + 9: _ZN9oceanbase6common13ObPageManager21thread_local_instanceEv:108623 + 0: 5717 + 18.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:4320 + 0: 108 + 22.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:4320 + 0: 108 + 22.8: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:4320 + 0: 108 + 22.10: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:1944 + 0: 108 + 26: _ZN9oceanbase3lib9ObjectSet13set_block_mgrEPNS0_9IBlockMgrE:40453 + 0: 5779 + 27: _ZN9oceanbase3lib9ObjectSet10set_lockerEPNS0_10ISetLockerE:40453 + 0: 5779 + 9.1: _ZNK9oceanbase3lib7ObLabel8is_validEv:92897 + 0: 13271 + 11: _ZNK9oceanbase3lib7ObLabel8is_validEv:1998 + 0: 111 + 17: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:777 + 2: 111 + 20: _ZSt3maxIlERKT_S2_S2_:1776 + 5: 111 + 28: _ZN9oceanbase6common20get_mem_leak_checkerEv:240081 + 2: _ZN9oceanbase6common16ObMemLeakChecker12get_instanceEv:240081 + 2: 13341 + 2.1: 108 + 2.3: 108 + 2.4: 108 + 2.6: 108 + 2.2: _ZN9oceanbase6common16ObMemLeakCheckerC2Ev:4752 + 0: 108 + 2: 108 + 3: 108 + 4: 108 + 5: 108 + 6: 108 + 7: 108 + 28.1: _ZN9oceanbase6common16ObMemLeakChecker8on_allocERNS_3lib7AObjectERKNS2_9ObMemAttrE:290450 + 2: 13341 + 3: 13341 + 3.1: 143 + 4: 143 + 5: 143 + 5.1: 143 + 7: 143 + 9: 143 + 10: 143 + 12: 143 + 15: 143 + 16.1: 108 + 19: 143 + 3: _ZNK9oceanbase6common16ObMemLeakChecker14is_label_checkEv:146751 + 0: 13341 + 4: _ZN9oceanbase6common16ObMemLeakChecker11label_matchERNS_3lib7AObjectE:2717 + 2: 143 + 6: _ZN9oceanbase3lib19ObSimpleRateLimiter11try_acquireEl:28314 + 6: 143 + 7: 143 + 8: 143 + 9: 143 + 10: 143 + 11: 143 + 12: 143 + 13: 143 + 14: 143 + 5: _ZN9oceanbase3lib19ObSimpleRateLimiter12current_timeEv:5577 + 4: 143 + 10: _ZSt3minIlERKT_S2_S2_:429 + 5: 143 + 8: _ZN9oceanbase6common16ObMemLeakChecker4InfoC2Ev:2145 + 2: 143 + 15: _ZN9oceanbase6common4hash9ObHashMapINS0_16ObMemLeakChecker6PtrKeyENS3_4InfoENS1_24LatchReadWriteDefendModeENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS4_S5_EEEELi13ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE14set_refactoredERKS4_RKS5_iii:8437 + 8: 143 + 4: _ZN9oceanbase6common4hash11HashMapPairINS0_16ObMemLeakChecker6PtrKeyENS3_4InfoEEC2Ev:1001 + 0: _ZN9oceanbase6common16ObMemLeakChecker4InfoC2Ev:1001 + 2: 143 + 5: _ZN9oceanbase6common4hash11HashMapPairINS0_16ObMemLeakChecker6PtrKeyENS3_4InfoEE4initERKS4_RKS5_:3146 + 3: _ZN9oceanbase6common11copy_assignINS0_16ObMemLeakChecker6PtrKeyEEEiRT_RKS4_:572 + 2: _ZN9oceanbase6common16copy_assign_wrapINS0_16ObMemLeakChecker6PtrKeyEEEiRT_RKS4_NS0_8BoolTypeILb0EEE:572 + 2: 143 + 5.1: _ZN9oceanbase6common11copy_assignINS0_16ObMemLeakChecker4InfoEEEiRT_RKS4_:2574 + 2: _ZN9oceanbase6common16copy_assign_wrapINS0_16ObMemLeakChecker4InfoEEEiRT_RKS4_NS0_8BoolTypeILb0EEE:2574 + 2: 143 + 30.1: _ZN9oceanbase6common14ObTscTimestamp12get_instanceEv:11067 + 2: 111 + 2.1: 108 + 2.3: 108 + 2.6: 108 + 2.2: _ZN9oceanbase6common14ObTscTimestampC2Ev:2808 + 1: 108 + 31: _ZN9oceanbase3lib9ObjectSet13get_block_mgrEv:756 + 0: 108 +_ZN9oceanbase3sql13ObExecContext22init_physical_plan_ctxERKNS0_14ObPhysicalPlanE:3086445:4965 + 1: 4778 + 2: 4778 + 4: 4778 + 4.1: 4778 + 5: 0 + 6.1: 0 + 7: 0 + 8.1: 4778 + 15: 4778 _ZN9oceanbase3sql18ObBasicSessionInfo16set_cur_phy_planEPNS0_14ObPhysicalPlanE:4853 + 16: 4623 + 19: 4623 + 24: 4623 + 24.1: 0 + 26: 4623 + 27.1: 0 + 31: 0 + 32: 4623 + 33: 3612 + 36: 3612 + 41: 4624 + 42: 4624 + 44: 4624 + 45: 4624 + 46: 4624 + 47: 4624 + 50: 0 + 51: 4624 + 52: 4624 + 54: 4624 + 56.1: 0 + 57: 0 + 58.1: 0 + 59.1: 0 + 60: 0 + 61.1: 0 + 62.1: 0 + 64: 0 + 65.1: 0 + 67: 0 + 70: 4624 + 8.1: _ZNK9oceanbase3sql18ObBasicSessionInfo22get_foreign_key_checksERl:205454 + 2: 4778 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache22get_foreign_key_checksEv:157674 + 0: 4778 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache22get_foreign_key_checksEb:105116 + 0: 4778 + 11: _ZNK9oceanbase3sql18ObBasicSessionInfo20get_query_start_timeEv:66892 + 0: 4778 + 19: _ZNK9oceanbase3sql18ObBasicSessionInfo17get_query_timeoutERl:161805 + 2: 4623 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache20get_ob_query_timeoutEv:147936 + 0: 4623 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache20get_ob_query_timeoutEb:101706 + 0: 4623 + 24: _ZNK9oceanbase3sql14ObPhysicalPlan14is_remote_planEv:36984 + 0: 4623 + 24.2: _ZN9oceanbase6common16ObClusterVersion19get_cluster_versionEv:0 + 0: 0 + 26: _ZNK9oceanbase3sql14ObPhysicalPlan15get_param_countEv:32361 + 0: 4623 + 26.1: _ZN9oceanbase3sql17ObPhysicalPlanCtx19reserve_param_spaceEl:789805 + 2: 4623 + 4: 4623 + 4.1: 4623 + 5.1: 0 + 7.1: 4623 + 8.1: 4623 + 8.3: 4623 + 8.5: 0 + 9: 0 + 9.1: 0 + 10.1: 0 + 3: _ZN9oceanbase6common10ObObjParamC2Ev:365217 + 0: 4623 + 1: 4623 + 0: _ZN9oceanbase6common5ObObjC2Ev:106329 + 2: _ZN9oceanbase6common5ObObj5resetEv:106329 + 6: 4623 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:32361 + 0: 4623 + 0.1: _ZN9oceanbase6common9ObObjMetaC2Ev:46230 + 1: 4623 + 0.3: _ZN9oceanbase6common9ParamFlagC2Ev:115575 + 7: 4623 + 8: 4623 + 4: _ZN9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE7reserveEl:114847 + 0: 7 + 2: 4623 + 3: 4623 + 4: 7 + 7: 7 + 8: 7 + 9.1: 0 + 12: 0 + 13.1: 0 + 17: 0 + 18: 0 + 19.1: 0 + 20: 0 + 23: 0 + 25: 0 + 27: 0 + 27.1: 0 + 27.3: 0 + 28: 0 + 29.1: 0 + 36: 0 + 3: _ZNK9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE12get_capacityEv:32361 + 2: 4623 + 8: _ZN9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE9new_blockEl:1939 + 5: 7 + 7: 0 + 8.1: 0 + 10.1: 0 + 11.1: 0 + 15: 7 + 17: 0 + 6: _ZN9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE11alloc_blockEl:1589 + 1: 7 + 1: _ZN9oceanbase6common18ObWrapperAllocator5allocEl:1512 + 0: 7 + 0: _ZN9oceanbase6common18ObWrapperAllocator5allocElRKNS_3lib9ObMemAttrE:1365 + 2: 7 + 2.2: 7 + 2.2: _ZN9oceanbase6common16ObArenaAllocator5allocElRKNS_3lib9ObMemAttrE:1078 + 3: _ZN9oceanbase6common16ObArenaAllocator5allocEl:1078 + 0: 7 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13alloc_alignedEll:973 + 3: 7 + 6: 7 + 7: 7 + 8: 7 + 10: 7 + 11: 7 + 12: 7 + 13: 7 + 15.1: 0 + 16: 0 + 18: 0 + 20: 0 + 28: 0 + 35: 7 + 36: 7 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE15ensure_cur_pageEv:91 + 2: 7 + 3: 0 + 5.1: 0 + 8: 0 + 9: 0 + 10: 0 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:0 + 2: 0 + 2.2: 0 + 2.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 9: _ZSt3maxIlERKT_S2_S2_:0 + 5: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 8: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:0 + 0: 0 + 7: _ZN9oceanbase6common16get_align_offsetEPvl:98 + 3: 7 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:49 + 0: 7 + 11: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:49 + 7: 7 + 15.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE18is_normal_overflowEl:0 + 2: 0 + 16: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11extend_pageEl:0 + 4: 0 + 5: 0 + 8: 0 + 9: 0 + 10.1: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 12: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_tailEPNS3_4PageE:0 + 2: 0 + 3: 0 + 5: 0 + 23.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16lookup_next_pageEl:0 + 3.1: 0 + 4.1: 0 + 5: 0 + 5.1: 0 + 7: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page10reuse_sizeEv:0 + 0: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 32: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9alloc_bigEl:0 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 3: 0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_headEPNS3_4PageE:0 + 4: 0 + 5: 0 + 7: 0 + 7: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:0 + 3: 0 + 10.1: _ZN9oceanbase6common13ObSEArrayImplIPNS0_10ObObjParamELl1ENS0_18ObWrapperAllocatorELb0EE9push_backERKS3_:252 + 5: 7 + 6: 0 + 12: 0 + 15: 0 + 15.1: 7 + 16: 7 + 15.1: _ZN9oceanbase6common9ObClassOpIPNS0_10ObObjParamELb1EE20construct_and_assignERKS3_RS3_:28 + 2: 7 + 12: _ZN9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE10free_blockES5_:0 + 0: _ZN9oceanbase6common18ObWrapperAllocator4freeEPv:0 + 2: 0 + 3: 0 + 26: _ZNK9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE15get_block_countEv:0 + 0: _ZNK9oceanbase6common12ObIArrayWrapIPNS0_10ObObjParamEE5countEv:0 + 0: 0 + 36: _ZNK9oceanbase3sql18ObBasicSessionInfo21get_consistency_levelEv:21672 + 0: 3612 + 41: _ZN9oceanbase3sql17ObPhysicalPlanCtx21set_consistency_levelENS_6common18ObConsistencyLevelE:13872 + 2: 4624 + 42: _ZN9oceanbase3sql17ObPhysicalPlanCtx21set_timeout_timestampEl:18496 + 2: 4624 + 43: _ZN9oceanbase3sql13ObExecContext17reference_my_planEPKNS0_14ObPhysicalPlanE:152592 + 2: 4624 + 3: 4624 + 5: 4624 + 6: _ZN9oceanbase3sql17ObPhysicalPlanCtx12set_phy_planEPKNS0_14ObPhysicalPlanE:32368 + 2: 4624 + 44: _ZNK9oceanbase3sql17ObPlanCacheObject9is_ignoreEv:32368 + 0: 4624 + 44.1: _ZN9oceanbase3sql17ObPhysicalPlanCtx15set_ignore_stmtEb:27744 + 0: 4624 + 45: _ZN9oceanbase3sql17ObPhysicalPlanCtx22set_foreign_key_checksEb:32368 + 0: 4624 + 46: _ZNK9oceanbase3sql14ObPhysicalPlan20get_access_table_numEv:32368 + 0: 4624 + 46.1: _ZN9oceanbase3sql17ObPhysicalPlanCtx33set_table_row_count_list_capacityEj:27744 + 1: _ZN9oceanbase6common16ObFixedArrayImplINS_3sql15ObTableRowCountENS0_12ObIAllocatorEE12set_capacityEj:27744 + 0: 4624 + 47: _ZN9oceanbase3lib6Worker4selfEv:129472 + 3: 4624 + 4: 0 + 47.1: _ZNK9oceanbase3sql17ObPhysicalPlanCtx21get_timeout_timestampEv:18496 + 2: 4624 + 47.2: _ZN9oceanbase3lib6Worker14set_timeout_tsEl:32368 + 0: 4624 + 52: _ZNK9oceanbase3sql14ObPhysicalPlan21get_first_array_indexEv:32368 + 0: 4624 + 59.2: _ZNK9oceanbase6common5ObObj16is_ext_sql_arrayEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta16is_ext_sql_arrayEv:0 + 0: 0 + 0.1: 0 + 0: _ZNK9oceanbase6common9ObObjMeta6is_extEv:0 + 0: 0 + 62.2: _ZNK9oceanbase6common5ObObj7get_extEv:0 + 3: 0 + 4: 0 + 67: _ZN9oceanbase3sql17ObPhysicalPlanCtx20set_bind_array_countEl:0 + 0: 0 +_ZN9oceanbase3sql11ObPlanCache8get_planERNS_6common12ObIAllocatorERNS0_14ObPlanCacheCtxERNS0_15ObCacheObjGuardE:3050990:4797 + 3: 4635 + 4: 4635 + 7: 4722 _ZN9oceanbase8observer22ObGlobalReqTimeService18check_req_timeinfoEv:5011 + 8: 4469 + 9: 4469 + 9.1: 4469 + 10: 4469 + 10.1: 4469 + 11: 0 + 12.1: 0 + 14.2: 4469 + 15: 0 + 15.1: 0 + 18.1: 0 + 21.1: 0 + 23.1: 4469 + 23.2: 4675 + 27.1: 0 + 29: 0 + 30.1: 4546 + 32.1: 4546 + 32.2: 4546 + 33: 4546 + 33.2: 4546 + 34: 0 + 35.1: 0 + 42: 4546 + 42.2: 4546 + 45: 4307 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:4388 + 45.2: 4470 + 46: 0 + 47: 0 + 48: 0 + 48.1: 0 + 49.1: 0 + 50.1: 0 + 50.2: 0 + 52.1: 0 + 58: 4470 + 58.1: 0 + 59: 0 + 60: 0 + 62: 0 + 63.11: 4571 + 63.12: 0 + 6: _ZN9oceanbase5trace16__ObFLTSpanGuardC2Ejh:97283 + 2: 4722 _ZN9oceanbase5trace7ObTrace12get_instanceEv:4740 + 2.1: 4610 _ZN9oceanbase5trace7ObTrace10begin_spanEjhb:4958 + 14.1: _ZNK9oceanbase3sql15ObMultiStmtItem21is_batched_multi_stmtEv:71504 + 3: 4469 + 4: 0 + 6: 4469 + 21: _ZN9oceanbase6common12ObIArrayWrapINS_3sql18ObFastParserResultEE2atEl:0 + 6: 0 + 23.1: _ZN9oceanbase3sql11ObPlanCache28construct_fast_parser_resultERNS_6common12ObIAllocatorERNS0_14ObPlanCacheCtxERKNS2_8ObStringERNS0_18ObFastParserResultE:1236328 + 6: 4469 + 7.1: 4469 + 8: 4469 + 9: 0 + 10.1: 0 + 12: 4469 + 16: 4469 + 18: 4469 + 22.1: 4469 + 24.1: 4675 + 24.2: 4469 _ZN9oceanbase3sql21ObSqlParameterization11fast_parserERNS_6common12ObIAllocatorEmNS2_15ObCollationTypeERKNS2_8ObStringEbRNS0_18ObFastParserResultE:4578 + 30.1: 0 + 33: 4675 + 8: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:31283 + 2: 4469 + 12: _ZNK9oceanbase3sql18ObBasicSessionInfo12get_sql_modeEv:223450 + 0: 4469 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache12get_sql_modeEv:210043 + 0: 4469 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache12get_sql_modeEb:111725 + 0: 4469 + 13: _ZNK9oceanbase3sql18ObBasicSessionInfo30get_local_collation_connectionEv:102787 + 2: 4469 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_collation_connectionEv:93849 + 0: 4469 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_collation_connectionEb:80442 + 0: 4469 + 15: _ZNK9oceanbase3sql18ObBasicSessionInfo21get_enable_exact_modeEv:143008 + 2: 4469 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache23get_cursor_sharing_modeEv:111725 + 0: 4469 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache23get_cursor_sharing_modeEb:67035 + 0: 4469 + 17.1: _ZN9oceanbase3sql17ObPhysicalPlanCtx26get_param_store_for_updateEv:17876 + 0: 4469 + 18: _ZN9oceanbase3sql11ObPlanCache24construct_plan_cache_keyERNS0_16ObSQLSessionInfoENS0_19ObLibCacheNameSpaceERNS0_14ObPlanCacheKeyE:308361 + 7: 4469 + 7.3: 4469 + 8: 4469 + 9: 4469 + 10: 4469 + 6: _ZNK9oceanbase3sql18ObBasicSessionInfo15get_database_idERm:31283 + 0: 4469 + 23: _ZNK9oceanbase6common8ObString3ptrEv:0 + 0: 0 + 23.2: _ZN9oceanbase6common8ObString10assign_ptrEPKci:0 + 2: 0 + 3: 0 + 5: 0 + 24.1: _ZNK9oceanbase3sql8ObSqlCtx25handle_batched_multi_stmtEv:84911 + 0: _ZNK9oceanbase3sql15ObMultiStmtItem21is_batched_multi_stmtEv:84911 + 3: 4469 + 4: 0 + 6: 4469 + 30: _ZN9oceanbase3sql11ObPlanCache14get_plan_cacheERNS0_14ObILibCacheCtxERNS0_15ObCacheObjGuardE:701890 + 5: 4675 + 6: 4675 _ZN9oceanbase3sql11ObPlanCache13get_cache_objERNS0_14ObILibCacheCtxEPNS0_14ObILibCacheKeyERNS0_15ObCacheObjGuardE:4799 + 10: 4618 + 13: 4618 + 14: 0 + 15: 0 + 10: _ZN9oceanbase3sql11ObPlanCache20check_after_get_planEiRNS0_14ObILibCacheCtxEPNS0_17ObILibCacheObjectE:551880 + 4: 3942 + 5: 3942 + 10: 3942 + 10.1: 3942 + 11: 3942 + 13: 3942 + 14: 3942 + 15: 0 + 16.1: 0 + 17.1: 3942 + 23: 3942 + 26: 0 + 30: 3942 + 33: 0 + 33.1: 3942 + 33.2: 3942 + 34: 0 + 34.1: 0 + 35.1: 0 + 37: 0 + 38.1: 0 + 40: 0 + 43: 0 + 17.1: _ZNK9oceanbase3sql18ObBasicSessionInfo20get_jit_enabled_modeERNS_6common15ObJITEnableModeE:134028 + 2: 3942 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache17get_ob_enable_jitEv:126144 + 0: 3942 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache17get_ob_enable_jitEb:86724 + 0: 3942 + 26: _ZN9oceanbase3sql11ObPlanCache17need_late_compileEPNS0_14ObPhysicalPlanERb:0 + 8.1: 0 + 10.1: 0 + 11: 0 + 13: 0 + 8.1: _ZNK9oceanbase3sql14ObPhysicalPlan10is_use_jitEv:0 + 2: 0 + 33.2: _ZNK9oceanbase3sql14ObPhysicalPlan10is_expiredEv:23652 + 0: 3942 + 34.1: _ZNK9oceanbase3sql14ObPhysicalPlan10is_expiredEv:0 + 0: 0 + 14: _ZN9oceanbase3sql17ObLCObjectManager4freeERPNS0_17ObILibCacheObjectENS0_16CacheRefHandleIDE:0 + 2: 0 + 42: _ZN9oceanbase6common8ObString3ptrEv:31822 + 0: 4546 + 42.1: _ZNK9oceanbase6common8ObString6lengthEv:31822 + 0: 4546 + 46: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:0 + 0: 0 + 59: _ZN9oceanbase3sql17ObLCObjectManager4freeERPNS0_17ObILibCacheObjectENS0_16CacheRefHandleIDE:0 + 2: 0 + 63.11: _ZN9oceanbase5trace16__ObFLTSpanGuardD2Ev:26820 + 0: 4470 + 0.1: 0 + 0.2: 0 + 0.3: 0 + 0.4: 0 + 0.5: 0 + 0.7: 0 + 0.8: 0 + 0.12: 0 + 0.3: _ZNK9oceanbase5trace4UUID9is_initedEv:0 + 0: 0 + 0.1: 0 + 0.6: _ZN9oceanbase5trace7ObTrace13is_auto_flushEv:0 + 0: 0 +_ZNK9oceanbase6common5ObObj32check_collation_free_and_compareERKS1_Ri:2995482:41879 + 1: 41034 + 3: 41034 + 4: 41034 + 4.1: 41034 + 5: 41034 + 7.1: 0 + 7.2: 0 + 7.3: 0 + 7.5: 0 + 10: 0 + 13.1: 0 + 19: 0 + 22: 0 + 22.2: 0 + 23: 0 + 24: 0 + 29.1: 0 + 30: 0 + 33.1: 0 + 39: 0 + 39.3: 0 + 45.1: 0 + 46: 0 + 53: 0 + 61: 0 + 4: _ZNK9oceanbase6common5ObObj18get_collation_typeEv:123102 + 0: _ZNK9oceanbase6common9ObObjMeta18get_collation_typeEv:123102 + 0: 41034 + 6: _ZNK9oceanbase6common5ObObj7compareERKS1_NS0_15ObCollationTypeERi:1066884 + 2: 41034 _ZN9oceanbase6common13ObObjCmpFuncs7compareERKNS0_5ObObjES4_NS0_15ObCollationTypeERi:41742 + 7.1: _ZNK9oceanbase6common5ObObj7is_nullEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta7is_nullEv:0 + 0: 0 + 7.2: _ZNK9oceanbase6common5ObObj7is_nullEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta7is_nullEv:0 + 0: 0 + 7.3: _ZNK9oceanbase6common5ObObj12is_min_valueEv:0 + 2: 0 + 2.1: 0 + 7.5: _ZNK9oceanbase6common5ObObj12is_min_valueEv:0 + 2: 0 + 2.1: 0 + 8: _ZN9oceanbase6common13ObObjCmpFuncs7compareERKNS0_5ObObjES4_NS0_15ObCollationTypeERi:0 + 7: 0 + 8: 0 + 13.1: 0 + 16: 0 + 18.1: 0 + 8.2: _ZN9oceanbase6common13ObObjCmpFuncs20can_cmp_without_castERKNS0_9ObObjMetaES4_NS0_7ObCmpOpERPFiRKNS0_5ObObjES8_RKNS0_12ObCompareCtxEE:0 + 12.1: 0 + 13: 0 + 15.1: 0 + 16.1: 0 + 18.1: 0 + 18.2: 0 + 18.4: 0 + 25: 0 + 6: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:0 + 0: 0 + 7: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:0 + 0: 0 + 8: _ZNK9oceanbase6common9ObObjMeta14get_type_classEv:0 + 0.1: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:0 + 2: 0 + 2.1: 0 + 2.3: 0 + 9: _ZNK9oceanbase6common9ObObjMeta14get_type_classEv:0 + 0.1: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:0 + 2: 0 + 2.1: 0 + 12: _ZN9oceanbase6common13ObObjCmpFuncs25is_datetime_timestamp_cmpENS0_9ObObjTypeES2_:0 + 2: 0 + 3.1: 0 + 13.1: _ZN9oceanbase6common13ObObjCmpFuncs17is_otimestamp_cmpENS0_9ObObjTypeES2_:0 + 2: 0 + 2.2: 0 + 3.1: 0 + 3.3: 0 + 18.1: _ZN9oceanbase6common17ob_is_string_typeENS0_9ObObjTypeE:0 + 0: 0 + 0: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:0 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:0 + 2: 0 + 18.2: _ZN9oceanbase6common17ob_is_string_typeENS0_9ObObjTypeE:0 + 0: 0 + 0: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:0 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:0 + 2: 0 + 22.1: _ZN9oceanbase6common13ObObjCmpFuncs12get_cmp_funcENS0_14ObObjTypeClassES2_NS0_7ObCmpOpERPFiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxEE:0 + 7: 0 + 13: 0 + 15: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 15.1: _ZN9oceanbase6common12ObCompareCtxC2ENS0_9ObObjTypeENS0_15ObCollationTypeEblNS0_12ObCmpNullPosE:0 + 5: 0 + 7: 0 + 8: 0 + 9: 0 + 16: _ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE1ELS3_1EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE:0 + 0: 0 + 0.2: 0 + 0.3: 0 + 0.4: 0 + 0.6: 0 + 0.7: 0 + 0.8: 0 + 0.4: _ZNK9oceanbase6common5ObObj14get_type_classEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta14get_type_classEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:0 + 0: 0 + 0.1: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:0 + 2: 0 + 0.8: _ZNK9oceanbase6common5ObObj7get_intEv:0 + 0: 0 + 12.1: _ZNK9oceanbase6common5ObObj17is_character_typeEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta17is_character_typeEv:0 + 0: 0 + 17: _ZNK9oceanbase6common5ObObj11get_val_lenEv:0 + 0: 0 + 18: _ZNK9oceanbase6common5ObObj11get_val_lenEv:0 + 0: 0 + 19: _ZSt3minIiERKT_S2_S2_:0 + 5: 0 + 20: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 22: _ZNK9oceanbase6common5ObObj14get_string_ptrEv:0 + 0: 0 + 22.1: _ZNK9oceanbase6common5ObObj14get_string_ptrEv:0 + 0: 0 + 26: _ZNK9oceanbase6common5ObObj24is_varying_len_char_typeEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta24is_varying_len_char_typeEv:0 + 0: 0 + 0: _ZNK9oceanbase6common9ObObjMeta10is_varcharEv:0 + 2: 0 + 2.1: 0 +_ZN9oceanbase3sql8ObDASCtx4initERKNS0_14ObPhysicalPlanERNS0_13ObExecContextE:2976655:4630 + 1: 4337 + 2: 4337 + 6.1: 4337 + 9.3: 4337 + 9.4: 4337 + 9.6: 0 + 11: 0 + 14.1: 0 + 14.2: 0 + 19.1: 0 + 20.2: 0 + 20.3: 0 + 21.1: 0 + 23.1: 0 + 23.3: 0 + 23.4: 0 + 24: 0 + 25.1: 0 + 25.2: 0 + 26.1: 0 + 30.1: 4337 _ZZN9oceanbase3sql8ObDASCtx4initERKNS0_14ObPhysicalPlanERNS0_13ObExecContextEENK4$_38clEPKc.45c27dd3dc8b42ec4ef71c6f367bd924:4477 + 31: 4897 + 32.12: 4897 _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EED2Ev:4938 + 32.16: 0 + 32.17: 0 + 32.19: 4725 _ZN9oceanbase6common13ObSEArrayImplImLl2ENS0_19ModulePageAllocatorELb0EED2Ev:5068 + 3: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:30359 + 2: 4337 + 4: _ZN9oceanbase6common9ObSEArrayImLl2ENS0_19ModulePageAllocatorELb0EEC2Ev:724279 + 0.1: 4337 + 0.5: _ZN9oceanbase6common13ObSEArrayImplImLl2ENS0_19ModulePageAllocatorELb0EEC2ElRKS2_:646213 + 2: 4337 + 5: 4337 + 6: 4337 + 8: 4337 + 17.1: 4337 + 2: _ZN9oceanbase6common8ObIArrayImEC2EPml:78066 + 0: _ZN9oceanbase6common12ObIArrayWrapImEC2EPml:78066 + 0: 4337 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:247209 + 0: 4337 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:108425 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:108425 + 2: 4337 + 8: 4337 + 5: _ZN9oceanbase6common9ObSEArrayINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EEC2Ev:555136 + 0.1: 4337 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EEC2ElRKS3_:477070 + 2: 4337 + 5: 4337 + 6: 4337 + 8: 4337 + 17.1: 4337 + 2: _ZN9oceanbase6common8ObIArrayINS0_10ObTabletIDEEC2EPS2_l:78066 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_10ObTabletIDEEC2EPS2_l:78066 + 0: 4337 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:138784 + 0: 4337 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:78066 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:78066 + 2: 4337 + 8: 4337 + 6: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:30359 + 2: 4337 + 6.3: _ZN9oceanbase3sql18ObBasicSessionInfo17create_dtc_paramsEPKS1_:1019195 + 2: 4337 + 2.1: _ZNK9oceanbase3sql18ObBasicSessionInfo14get_dtc_paramsEv:993173 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo17get_timezone_infoEv:30359 + 0: _ZNK9oceanbase6common18ObTimeZoneInfoWrap18get_time_zone_infoEv:30359 + 0: 4337 + 2.1: _ZN9oceanbase6common20ObDataTypeCastParamsC2EPKNS0_14ObTimeZoneInfoENS0_8ObStringES5_S5_NS0_15ObCollationTypeES6_S6_b:203839 + 8: 4337 + 10: 4337 + 11: 4337 + 12: 4337 + 13: 4337 + 15: 4337 + 16: 4337 + 17: 4337 + 3: _ZNK9oceanbase3sql18ObBasicSessionInfo25get_local_nls_date_formatEv:216850 + 2: 4337 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache19get_nls_date_formatEv:125773 + 0: 4337 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache19get_nls_date_formatEb:30359 + 0: 4337 + 4: _ZNK9oceanbase3sql18ObBasicSessionInfo30get_local_nls_timestamp_formatEv:104088 + 2: 4337 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_nls_timestamp_formatEv:43370 + 0: 4337 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_nls_timestamp_formatEb:30359 + 0: 4337 + 5: _ZNK9oceanbase3sql18ObBasicSessionInfo33get_local_nls_timestamp_tz_formatEv:117099 + 2: 4337 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache27get_nls_timestamp_tz_formatEv:56381 + 0: 4337 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache27get_nls_timestamp_tz_formatEb:30359 + 0: 4337 + 6: _ZNK9oceanbase3sql18ObBasicSessionInfo17get_nls_collationEv:112762 + 2: 4337 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache17get_nls_collationEv:104088 + 0: 4337 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache17get_nls_collationEb:78066 + 0: 4337 + 7: _ZNK9oceanbase3sql18ObBasicSessionInfo24get_nls_collation_nationEv:112762 + 2: 4337 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_nls_nation_collationEv:104088 + 0: 4337 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_nls_nation_collationEb:78066 + 0: 4337 + 8: _ZNK9oceanbase3sql18ObBasicSessionInfo30get_local_collation_connectionEv:95414 + 2: 4337 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_collation_connectionEv:86740 + 0: 4337 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_collation_connectionEb:73729 + 0: 4337 + 3: _ZN9oceanbase6common20ObDataTypeCastParamsC2Ev:0 + 4: 0 + 6: 0 + 2.1: _ZN9oceanbase6common8ObStringC2Ev:0 + 1: 0 + 10: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql15ObTableLocationEE2atEl:0 + 6: 0 + 12: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EE5reuseEv:0 + 4.1: 0 + 4.3: 0 + 5: 0 + 8: 0 + 9: 0 + 5: _ZN9oceanbase6common10ObTabletIDD2Ev:0 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:0 + 0: 0 + 13: _ZN9oceanbase6common13ObSEArrayImplImLl2ENS0_19ModulePageAllocatorELb0EE5reuseEv:0 + 8: 0 + 9: 0 + 20.1: _ZNK9oceanbase3sql15ObTableLocation12get_loc_metaEv:0 + 0: 0 +_ZN9oceanbase3sql13ObTableScanOpC2ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE:2976015:4706 + 1: 4333 _ZN9oceanbase3sql10ObOperatorC2ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE:4584 + 2: 4478 _ZN9oceanbase3sql8ObDASRefC1ERNS0_9ObEvalCtxERNS0_13ObExecContextE:4614 + 3: 4350 _ZN9oceanbase3sql13ObExecContext13get_allocatorEv:4520 + 4: 4344 + 6: 4344 + 9: 4344 + 10: 4344 + 11: 4344 + 15: 4344 + 16: 4344 + 17: 4344 + 21: 4478 + 22: 4344 + 22.8: 13 + 22.9: 13 + 0: _ZN9oceanbase3sql15DASOpResultIterC2Ev:104382 + 2: 4350 + 0.1: _ZN9oceanbase6common12ObLimitParamC2Ev:60816 + 0: 4344 + 3.1: _ZN9oceanbase3sql16ObTableScanRtDefC2ERNS_6common12ObIAllocatorE:1489992 + 3: 4344 + 1: _ZN9oceanbase6common12ObFixedArrayISt4pairIlPNS_3sql13ObSqlArrayObjEENS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplIS6_S7_EEERS7_l:230232 + 0: 4344 + 0: _ZN9oceanbase6common16ObFixedArrayImplISt4pairIlPNS_3sql13ObSqlArrayObjEENS0_12ObIAllocatorEEC2ERS7_l:152040 + 2: 4344 + 3: 4344 + 4: 4344 + 1: _ZN9oceanbase6common8ObIArrayISt4pairIlPNS_3sql13ObSqlArrayObjEEEC2Ev:30408 + 0: _ZN9oceanbase6common12ObIArrayWrapISt4pairIlPNS_3sql13ObSqlArrayObjEEEC2Ev:30408 + 0: 4344 + 2: _ZN9oceanbase3sql14ObDASScanRtDefC2Ev:1211976 + 3: 4344 + 4: 4344 + 6: 4344 + 8: 4344 + 10: 4344 + 13: 4344 + 15: 4344 + 18: 4344 + 19: 4344 + 1: _ZN9oceanbase3sql14ObDASBaseRtDefC2ENS0_11ObDASOpTypeE:73848 + 1: 4344 + 3: 4344 + 5: _ZN9oceanbase6common12ObLimitParamC2Ev:47784 + 0: 4344 + 16.1: _ZN9oceanbase6common26ObWrapperAllocatorWithAttrC2ERKNS_3lib7ObLabelE:325800 + 1: 4344 + 1.2: 4344 + 1: _ZN9oceanbase6common18ObWrapperAllocatorC2EPNS0_12ObIAllocatorE:47784 + 0: 4344 + 1.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:139008 + 5: 4344 + 7: 4344 + 17.1: _ZN9oceanbase6common26ObWrapperAllocatorWithAttrC2ERKNS_3lib7ObLabelE:278016 + 1: 4344 + 1.2: 4344 + 1: _ZN9oceanbase6common18ObWrapperAllocatorC2EPNS0_12ObIAllocatorE:47784 + 0: 4344 + 1.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:139008 + 5: 4344 + 7: 4344 + 13: _ZN9oceanbase6common7ObArrayIbNS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIbEENS0_22NotImplementItemEncodeIbEEEC2Ev:373584 + 0.1: 4344 + 0.5: _ZN9oceanbase6common11ObArrayImplIbNS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIbEENS0_22NotImplementItemEncodeIbEEEC2ElRKS2_:295392 + 7.1: 4344 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:247608 + 0: 4344 + 14: _ZN9oceanbase6common12ObFixedArrayImNS0_12ObIAllocatorEEC2Ev:186792 + 0: 4344 + 0: _ZN9oceanbase6common16ObFixedArrayImplImNS0_12ObIAllocatorEEC2EPS2_l:108600 + 1: _ZN9oceanbase6common8ObIArrayImEC2Ev:108600 + 0: _ZN9oceanbase6common12ObIArrayWrapImEC2Ev:108600 + 0: 4344 +_ZN9oceanbase3sql13ObTableScanOpC1ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE:2976015:4706 + 1: 4333 _ZN9oceanbase3sql10ObOperatorC2ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE:4584 + 2: 4478 _ZN9oceanbase3sql8ObDASRefC1ERNS0_9ObEvalCtxERNS0_13ObExecContextE:4614 + 3: 4350 _ZN9oceanbase3sql13ObExecContext13get_allocatorEv:4520 + 4: 4344 + 6: 4344 + 9: 4344 + 10: 4344 + 11: 4344 + 15: 4344 + 16: 4344 + 17: 4344 + 21: 4478 + 22: 4344 + 22.8: 13 + 22.9: 13 + 0: _ZN9oceanbase3sql15DASOpResultIterC2Ev:104382 + 2: 4350 + 0.1: _ZN9oceanbase6common12ObLimitParamC2Ev:60816 + 0: 4344 + 3.1: _ZN9oceanbase3sql16ObTableScanRtDefC2ERNS_6common12ObIAllocatorE:1489992 + 3: 4344 + 1: _ZN9oceanbase6common12ObFixedArrayISt4pairIlPNS_3sql13ObSqlArrayObjEENS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplIS6_S7_EEERS7_l:230232 + 0: 4344 + 0: _ZN9oceanbase6common16ObFixedArrayImplISt4pairIlPNS_3sql13ObSqlArrayObjEENS0_12ObIAllocatorEEC2ERS7_l:152040 + 2: 4344 + 3: 4344 + 4: 4344 + 1: _ZN9oceanbase6common8ObIArrayISt4pairIlPNS_3sql13ObSqlArrayObjEEEC2Ev:30408 + 0: _ZN9oceanbase6common12ObIArrayWrapISt4pairIlPNS_3sql13ObSqlArrayObjEEEC2Ev:30408 + 0: 4344 + 2: _ZN9oceanbase3sql14ObDASScanRtDefC2Ev:1211976 + 3: 4344 + 4: 4344 + 6: 4344 + 8: 4344 + 10: 4344 + 13: 4344 + 15: 4344 + 18: 4344 + 19: 4344 + 1: _ZN9oceanbase3sql14ObDASBaseRtDefC2ENS0_11ObDASOpTypeE:73848 + 1: 4344 + 3: 4344 + 5: _ZN9oceanbase6common12ObLimitParamC2Ev:47784 + 0: 4344 + 16.1: _ZN9oceanbase6common26ObWrapperAllocatorWithAttrC2ERKNS_3lib7ObLabelE:325800 + 1: 4344 + 1.2: 4344 + 1: _ZN9oceanbase6common18ObWrapperAllocatorC2EPNS0_12ObIAllocatorE:47784 + 0: 4344 + 1.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:139008 + 5: 4344 + 7: 4344 + 17.1: _ZN9oceanbase6common26ObWrapperAllocatorWithAttrC2ERKNS_3lib7ObLabelE:278016 + 1: 4344 + 1.2: 4344 + 1: _ZN9oceanbase6common18ObWrapperAllocatorC2EPNS0_12ObIAllocatorE:47784 + 0: 4344 + 1.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:139008 + 5: 4344 + 7: 4344 + 13: _ZN9oceanbase6common7ObArrayIbNS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIbEENS0_22NotImplementItemEncodeIbEEEC2Ev:373584 + 0.1: 4344 + 0.5: _ZN9oceanbase6common11ObArrayImplIbNS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIbEENS0_22NotImplementItemEncodeIbEEEC2ElRKS2_:295392 + 7.1: 4344 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:247608 + 0: 4344 + 14: _ZN9oceanbase6common12ObFixedArrayImNS0_12ObIAllocatorEEC2Ev:186792 + 0: 4344 + 0: _ZN9oceanbase6common16ObFixedArrayImplImNS0_12ObIAllocatorEEC2EPS2_l:108600 + 1: _ZN9oceanbase6common8ObIArrayImEC2Ev:108600 + 0: _ZN9oceanbase6common12ObIArrayWrapImEC2Ev:108600 + 0: 4344 +_ZN9oceanbase6common15ObKVCacheHandleD2Ev:2898485:67920 + 1: 63713 + 2.1: 28 + 3: 63758 + 2: _ZN9oceanbase6common15ObKVCacheHandle5resetEv:731530 + 2: 63713 + 6: 4694 + 7: 4796 + 6: _ZN9oceanbase6common15ObKVGlobalCache12get_instanceEv:68292 + 2: 4694 + 2.1: 28 + 2.2: 28 + 2.3: 28 + 2.4: 28 + 2.6: 28 + 6.1: _ZN9oceanbase6common15ObKVGlobalCache6revertEPNS0_18ObKVMemBlockHandleE:190958 + 2: 4694 + 3: _ZN9oceanbase6common14ObKVCacheStore13de_handle_refEPNS0_18ObKVMemBlockHandleE:139324 + 3: 4694 + 7.1: 4796 _ZN9oceanbase6common17ObAtomicReference27dec_ref_cnt_and_inc_seq_numERj:4814 + 8.1: 28 + 9.1: 4796 + 10: 28 + 11.1: 28 +_ZN9oceanbase6common15ObKVCacheHandleD1Ev:2898485:67920 + 1: 63713 + 2.1: 28 + 3: 63758 + 2: _ZN9oceanbase6common15ObKVCacheHandle5resetEv:731530 + 2: 63713 + 6: 4694 + 7: 4796 + 6: _ZN9oceanbase6common15ObKVGlobalCache12get_instanceEv:68292 + 2: 4694 + 2.1: 28 + 2.2: 28 + 2.3: 28 + 2.4: 28 + 2.6: 28 + 6.1: _ZN9oceanbase6common15ObKVGlobalCache6revertEPNS0_18ObKVMemBlockHandleE:190958 + 2: 4694 + 3: _ZN9oceanbase6common14ObKVCacheStore13de_handle_refEPNS0_18ObKVMemBlockHandleE:139324 + 3: 4694 + 7.1: 4796 _ZN9oceanbase6common17ObAtomicReference27dec_ref_cnt_and_inc_seq_numERj:4814 + 8.1: 28 + 9.1: 4796 + 10: 28 + 11.1: 28 +_ZN9oceanbase3sql16ObDASTaskFactory18create_das_task_opENS0_11ObDASOpTypeERPNS0_12ObIDASTaskOpE:2892930:6311 + 1: 5324 + 2: 5324 + 3: 5324 + 4: 0 + 5.1: 0 + 6.1: 5324 _ZN9oceanbase3sql16AllocDASOpHelperILi2EE5allocERNS_6common12ObIAllocatorERPNS0_12ObIDASTaskOpE:289 _ZN9oceanbase3sql16AllocDASOpHelperILi4EE5allocERNS_6common12ObIAllocatorERPNS0_12ObIDASTaskOpE:273 _ZN9oceanbase3sql16AllocDASOpHelperILi5EE5allocERNS_6common12ObIAllocatorERPNS0_12ObIDASTaskOpE:177 + 7.1: 0 + 9: 5235 + 11: 5235 + 11.1: 5235 + 11.3: 0 + 11.5: 0 + 12: 5235 + 3: _ZN9oceanbase3sql16ObDASTaskFactory13is_registeredENS0_11ObDASOpTypeE:159720 + 2: 5324 + 2.2: 5324 + 6.1: _ZN9oceanbase3sql16AllocDASOpHelperILi1EE5allocERNS_6common12ObIAllocatorERPNS0_12ObIDASTaskOpE:789510 + 2: 4222 + 5: 4222 + 6: 0 + 7.1: 0 + 9: 4222 _ZN9oceanbase3sql11ObDASScanOpC1ERNS_6common12ObIAllocatorE:4375 + 11: 0 + 5: _ZN9oceanbase6common26ObWrapperAllocatorWithAttr5allocEl:629078 + 0: 0 + 0: _ZN9oceanbase6common18ObWrapperAllocator5allocElRKNS_3lib9ObMemAttrE:629078 + 2: 4222 + 2.2: 4222 + 2.2: _ZN9oceanbase6common16ObArenaAllocator5allocElRKNS_3lib9ObMemAttrE:489752 + 3: _ZN9oceanbase6common16ObArenaAllocator5allocEl:489752 + 0: 4222 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13alloc_alignedEll:472864 + 3: 4222 + 6: 0 + 7: 4222 + 8: 4222 + 10: 4222 + 11: 4222 + 12: 4222 + 13: 4222 + 15.1: 0 + 16: 0 + 18: 0 + 20: 0 + 28: 0 + 35: 4222 + 36: 4222 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE15ensure_cur_pageEv:54886 + 2: 4222 + 3: 0 + 5.1: 0 + 8: 0 + 9: 0 + 10: 0 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:0 + 2: 0 + 2.2: 0 + 2.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 9: _ZSt3maxIlERKT_S2_S2_:0 + 5: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 8: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:0 + 0: 0 + 7: _ZN9oceanbase6common16get_align_offsetEPvl:46442 + 3: 4222 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:29554 + 0: 4222 + 11: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:29554 + 7: 4222 + 15.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE18is_normal_overflowEl:0 + 2: 0 + 16: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11extend_pageEl:0 + 4: 0 + 5: 0 + 8: 0 + 9: 0 + 10.1: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 12: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_tailEPNS3_4PageE:0 + 2: 0 + 3: 0 + 5: 0 + 23.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16lookup_next_pageEl:0 + 3.1: 0 + 4.1: 0 + 5: 0 + 5.1: 0 + 7: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page10reuse_sizeEv:0 + 0: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 32: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9alloc_bigEl:0 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 3: 0 + 5: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_headEPNS3_4PageE:0 + 4: 0 + 5: 0 + 7: 0 + 6.1: _ZN9oceanbase3sql16AllocDASOpHelperILi3EE5allocERNS_6common12ObIAllocatorERPNS0_12ObIDASTaskOpE:65971 + 2: 353 + 5: 353 + 6: 0 + 7.1: 0 + 9: 353 _ZN9oceanbase3sql13ObDASUpdateOpC1ERNS_6common12ObIAllocatorE:363 + 11: 0 + 5: _ZN9oceanbase6common26ObWrapperAllocatorWithAttr5allocEl:52244 + 0: 0 + 0: _ZN9oceanbase6common18ObWrapperAllocator5allocElRKNS_3lib9ObMemAttrE:52244 + 2: 353 + 2.2: 353 + 2.2: _ZN9oceanbase6common16ObArenaAllocator5allocElRKNS_3lib9ObMemAttrE:40595 + 3: _ZN9oceanbase6common16ObArenaAllocator5allocEl:40595 + 0: 353 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13alloc_alignedEll:39183 + 3: 353 + 6: 0 + 7: 353 + 8: 353 + 10: 353 + 11: 353 + 12: 353 + 13: 353 + 15.1: 0 + 16: 0 + 18: 0 + 20: 0 + 28: 0 + 35: 353 + 36: 353 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE15ensure_cur_pageEv:4589 + 2: 353 + 3: 0 + 5.1: 0 + 8: 0 + 9: 0 + 10: 0 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:0 + 2: 0 + 2.2: 0 + 2.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 9: _ZSt3maxIlERKT_S2_S2_:0 + 5: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 8: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:0 + 0: 0 + 7: _ZN9oceanbase6common16get_align_offsetEPvl:3530 + 3: 353 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:2471 + 0: 353 + 11: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:2471 + 7: 353 + 15.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE18is_normal_overflowEl:0 + 2: 0 + 16: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11extend_pageEl:0 + 4: 0 + 5: 0 + 8: 0 + 9: 0 + 10.1: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 12: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_tailEPNS3_4PageE:0 + 2: 0 + 3: 0 + 5: 0 + 23.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16lookup_next_pageEl:0 + 3.1: 0 + 4.1: 0 + 5: 0 + 5.1: 0 + 7: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page10reuse_sizeEv:0 + 0: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 32: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9alloc_bigEl:0 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 3: 0 + 5: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_headEPNS3_4PageE:0 + 4: 0 + 5: 0 + 7: 0 + 9: _ZN9oceanbase3sql12ObIDASTaskOp8set_typeENS0_11ObDASOpTypeE:15705 + 0: 5235 + 11.1: _ZN9oceanbase6common10ObObjStoreIPNS_3sql12ObIDASTaskOpERNS0_12ObIAllocatorELb0EE9store_objERKS4_:1183110 + 4: 5235 + 5: 0 + 7.1: 0 + 4: _ZN9oceanbase6common26ObWrapperAllocatorWithAttr5allocEl:743370 + 0: 0 + 0: _ZN9oceanbase6common18ObWrapperAllocator5allocElRKNS_3lib9ObMemAttrE:743370 + 2: 5235 + 2.2: 5235 + 2.2: _ZN9oceanbase6common16ObArenaAllocator5allocElRKNS_3lib9ObMemAttrE:570615 + 3: _ZN9oceanbase6common16ObArenaAllocator5allocEl:570615 + 0: 5235 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13alloc_alignedEll:549675 + 3: 5235 + 6: 0 + 7: 5235 + 8: 5235 + 10: 5235 + 11: 5235 + 12: 5235 + 13: 5235 + 15.1: 0 + 16: 0 + 18: 0 + 20: 0 + 28: 0 + 35: 5235 + 36: 5235 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE15ensure_cur_pageEv:68055 + 2: 5235 + 3: 0 + 5.1: 0 + 8: 0 + 9: 0 + 10: 0 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:0 + 2: 0 + 2.2: 0 + 2.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 9: _ZSt3maxIlERKT_S2_S2_:0 + 5: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 8: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:0 + 0: 0 + 7: _ZN9oceanbase6common16get_align_offsetEPvl:52350 + 3: 5235 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:36645 + 0: 5235 + 11: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:36645 + 7: 5235 + 15.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE18is_normal_overflowEl:0 + 2: 0 + 16: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11extend_pageEl:0 + 4: 0 + 5: 0 + 8: 0 + 9: 0 + 10.1: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 12: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_tailEPNS3_4PageE:0 + 2: 0 + 3: 0 + 5: 0 + 23.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16lookup_next_pageEl:0 + 3.1: 0 + 4.1: 0 + 5: 0 + 5.1: 0 + 7: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page10reuse_sizeEv:0 + 0: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 32: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9alloc_bigEl:0 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 3: 0 + 5: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_headEPNS3_4PageE:0 + 4: 0 + 5: 0 + 7: 0 + 9: _ZN9oceanbase6common9ObObjNodeIPNS_3sql12ObIDASTaskOpEEC2ERKS4_:162285 + 0: 5235 + 0: _ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql12ObIDASTaskOpEEEEC2Ev:47115 + 1: 5235 + 10: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql12ObIDASTaskOpEEEE8add_lastEPS6_:146580 + 13: 5235 + 12: _ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql12ObIDASTaskOpEEEE10add_beforeEPS6_:115170 + 2: 5235 + 2: _ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql12ObIDASTaskOpEEEE3addEPS6_S8_S8_:88995 + 2: 5235 + 3: 5235 + 4: 5235 + 5: 5235 +_ZNK9oceanbase3sql15ObExprFrameInfo11alloc_frameERNS_6common12ObIAllocatorERKNS2_8ObIArrayIPcEERmRPS6_:2851611:4832 + 4: 4424 + 5: 4424 + 6: 4424 + 7: 4424 + 8: 4424 + 10: 4424 + 12.1: 4424 + 13: 4424 + 14: 0 + 15.1: 0 + 25.1: 4424 + 26: 732 + 28: 4433 + 29.1: 4433 + 29.3: 4433 + 30: 4433 + 35.1: 4433 + 35.2: 4433 + 35.3: 4433 + 35.5: 0 + 35.6: 0 + 35.7: 0 + 35.10: 0 + 35.11: 0 + 35.12: 0 + 35.13: 0 + 35.14: 0 + 38.1: 0 + 38.2: 4433 + 38.3: 4433 + 38.5: 0 + 39: 0 + 40.1: 0 + 40.3: 0 + 45.1: 4891 + 45.2: 9361 + 45.3: 9361 + 45.5: 4445 + 45.6: 0 + 45.7: 0 + 45.10: 4445 + 45.11: 4445 + 45.12: 4891 + 45.13: 4891 + 45.14: 4445 + 48: 4883 + 7: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql11ObFrameInfoEE5countEv:30968 + 0: 4424 + 12.1: _ZN9oceanbase6common16ObArenaAllocator5allocEl:553000 + 0: 4424 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13alloc_alignedEll:535304 + 3: 4424 + 6: 4424 + 7: 4424 + 8: 4424 + 10: 4424 + 11: 4424 + 12: 4424 + 13: 4424 + 15.1: 0 + 16: 0 + 18: 0 + 20: 0 + 24: 0 + 28: 0 + 35: 4424 + 36: 4424 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE15ensure_cur_pageEv:57512 + 2: 4424 + 3: 0 + 5.1: 0 + 8: 0 + 9: 0 + 10: 0 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:0 + 2: 0 + 2.2: 0 + 2.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 9: _ZSt3maxIlERKT_S2_S2_:0 + 5: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 8: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:0 + 0: 0 + 7: _ZN9oceanbase6common16get_align_offsetEPvl:57512 + 3: 4424 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:30968 + 0: 4424 + 11: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:30968 + 7: 4424 + 15.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE18is_normal_overflowEl:0 + 2: 0 + 16: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11extend_pageEl:0 + 4: 0 + 5: 0 + 8: 0 + 9: 0 + 10.1: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 12: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_tailEPNS3_4PageE:0 + 2: 0 + 3: 0 + 5: 0 + 21: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:0 + 5.1: 0 + 7: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:0 + 0: 0 + 23.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16lookup_next_pageEl:0 + 3.1: 0 + 4.1: 0 + 5: 0 + 5.1: 0 + 7: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page10reuse_sizeEv:0 + 0: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 32: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9alloc_bigEl:0 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 3: 0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_headEPNS3_4PageE:0 + 4: 0 + 5: 0 + 7: 0 + 7: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:0 + 3: 0 + 26: _ZNK9oceanbase6common12ObIArrayWrapIPcE2atEl:5124 + 6: 732 + 30: _ZNK9oceanbase6common12ObIArrayWrapIPcE2atEl:75361 + 6: 4433 + 35.5: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql11ObFrameInfoEE2atEl:0 + 6: 0 + 40.1: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql11ObFrameInfoEE2atEl:0 + 6: 0 + 42: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:0 + 0: 0 + 45.5: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql11ObFrameInfoEE2atEl:31115 + 6: 4445 + 45.14: _ZN9oceanbase6common16ObArenaAllocator5allocEl:622072 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13alloc_alignedEll:622072 + 3: 4445 + 6: 4445 + 7: 4445 + 8: 4445 + 10: 4445 + 11: 4445 + 12: 4445 + 13: 4445 + 15.1: 0 + 16: 0 + 18: 0 + 20: 0 + 24: 0 + 28: 0 + 35: 4445 + 36: 4445 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE15ensure_cur_pageEv:142012 + 2: 4445 + 3: 0 + 5.1: 0 + 8: 0 + 9: 0 + 10: 0 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:0 + 2: 0 + 2.2: 0 + 2.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 9: _ZSt3maxIlERKT_S2_S2_:0 + 5: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 8: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:0 + 0: 0 + 7: _ZN9oceanbase6common16get_align_offsetEPvl:57785 + 3: 4445 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:31115 + 0: 4445 + 11: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:31115 + 7: 4445 + 15.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE18is_normal_overflowEl:0 + 2: 0 + 16: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11extend_pageEl:0 + 4: 0 + 5: 0 + 8: 0 + 9: 0 + 10.1: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 12: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_tailEPNS3_4PageE:0 + 2: 0 + 3: 0 + 5: 0 + 23.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16lookup_next_pageEl:0 + 3.1: 0 + 4.1: 0 + 5: 0 + 5.1: 0 + 7: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page10reuse_sizeEv:0 + 0: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 32: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9alloc_bigEl:0 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_headEPNS3_4PageE:0 + 4: 0 + 5: 0 + 7: 0 + 7: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:0 + 3: 0 +_ZN9oceanbase3sql17ObTaskExecutorCtxC2ERNS0_13ObExecContextE:2841964:5102 + 0.2: 5129 + 1: 4934 + 2: 4934 _ZN9oceanbase3sql13ObExecContext13get_allocatorEv:5036 + 3: 5165 + 4: 5165 _ZN9oceanbase3sql13ObExecContext13get_allocatorEv:5167 + 5: 4907 + 6: 4907 _ZN9oceanbase3sql13ObExecContext13get_allocatorEv:5377 + 8: 5129 + 10: 5129 + 11: 5129 + 12: 5129 + 14: 5129 + 15: 5129 _ZN9oceanbase8observer14global_contextEv:5139 + 15.1: 5055 + 16: 4934 + 17: 5055 + 17.6: 0 + 17.7: 0 + 17.8: 0 + 17.10: 0 + 0: _ZN9oceanbase3sql15ObExecuteResultC2Ev:424324 + 1: 4934 + 2: 4934 + 0.1: _ZN9oceanbase3sql14ObBatchRowIterC2Ev:113482 + 0.1: _ZN9oceanbase3sql19ObBatchResultHolderC2Ev:113482 + 0: 4934 + 0.2: _ZN9oceanbase6common8ObNewRowC2Ev:202294 + 1: 4934 + 0.1: _ZN9oceanbase3sql17ObTaskExecutorCtx28CalcVirtualPartitionIdParamsC2Ev:92970 + 0: 5165 + 0.2: _ZN9oceanbase6common9ObSEArrayINS_3sql18ObPhyTableLocationELl2ENS0_19ModulePageAllocatorELb0EEC2Ev:866801 + 0.1: 5129 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_3sql18ObPhyTableLocationELl2ENS0_19ModulePageAllocatorELb0EEC2ElRKS4_:774479 + 2: 5129 + 5: 5129 + 6: 5129 + 8: 5129 + 17.1: 5129 + 2: _ZN9oceanbase6common8ObIArrayINS_3sql18ObPhyTableLocationEEC2EPS3_l:92322 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_3sql18ObPhyTableLocationEEC2EPS3_l:92322 + 0: 5129 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:292353 + 0: 5129 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:128225 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:128225 + 2: 5129 + 8: 5129 + 2.1: _ZN9oceanbase6common6ObListINS0_6ObAddrENS0_12ObIAllocatorEEC2ERS3_:165280 + 0: 5165 + 2: 5165 + 3: 5165 + 4.1: _ZN9oceanbase6common12ObFixedArrayIPNS_3sql20ObTablePartitionInfoENS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplIS4_S5_EEERS5_l:299993 + 0: 4907 + 0: _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql20ObTablePartitionInfoENS0_12ObIAllocatorEEC2ERS5_l:211667 + 2: 4907 + 3: 4907 + 4: 4907 + 1: _ZN9oceanbase6common8ObIArrayIPNS_3sql20ObTablePartitionInfoEEC2Ev:74271 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql20ObTablePartitionInfoEEC2Ev:74271 + 0: 5129 + 6.1: _ZN9oceanbase6common6ObListINS0_10ObTabletIDENS0_12ObIAllocatorEEC2ERS3_:164128 + 0: 5129 + 2: 5129 + 3: 5129 +_ZN9oceanbase3sql17ObTaskExecutorCtxC1ERNS0_13ObExecContextE:2841964:5102 + 0.2: 5129 + 1: 4934 + 2: 4934 _ZN9oceanbase3sql13ObExecContext13get_allocatorEv:5036 + 3: 5165 + 4: 5165 _ZN9oceanbase3sql13ObExecContext13get_allocatorEv:5167 + 5: 4907 + 6: 4907 _ZN9oceanbase3sql13ObExecContext13get_allocatorEv:5377 + 8: 5129 + 10: 5129 + 11: 5129 + 12: 5129 + 14: 5129 + 15: 5129 _ZN9oceanbase8observer14global_contextEv:5139 + 15.1: 5055 + 16: 4934 + 17: 5055 + 17.6: 0 + 17.7: 0 + 17.8: 0 + 17.10: 0 + 0: _ZN9oceanbase3sql15ObExecuteResultC2Ev:424324 + 1: 4934 + 2: 4934 + 0.1: _ZN9oceanbase3sql14ObBatchRowIterC2Ev:113482 + 0.1: _ZN9oceanbase3sql19ObBatchResultHolderC2Ev:113482 + 0: 4934 + 0.2: _ZN9oceanbase6common8ObNewRowC2Ev:202294 + 1: 4934 + 0.1: _ZN9oceanbase3sql17ObTaskExecutorCtx28CalcVirtualPartitionIdParamsC2Ev:92970 + 0: 5165 + 0.2: _ZN9oceanbase6common9ObSEArrayINS_3sql18ObPhyTableLocationELl2ENS0_19ModulePageAllocatorELb0EEC2Ev:866801 + 0.1: 5129 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_3sql18ObPhyTableLocationELl2ENS0_19ModulePageAllocatorELb0EEC2ElRKS4_:774479 + 2: 5129 + 5: 5129 + 6: 5129 + 8: 5129 + 17.1: 5129 + 2: _ZN9oceanbase6common8ObIArrayINS_3sql18ObPhyTableLocationEEC2EPS3_l:92322 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_3sql18ObPhyTableLocationEEC2EPS3_l:92322 + 0: 5129 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:292353 + 0: 5129 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:128225 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:128225 + 2: 5129 + 8: 5129 + 2.1: _ZN9oceanbase6common6ObListINS0_6ObAddrENS0_12ObIAllocatorEEC2ERS3_:165280 + 0: 5165 + 2: 5165 + 3: 5165 + 4.1: _ZN9oceanbase6common12ObFixedArrayIPNS_3sql20ObTablePartitionInfoENS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplIS4_S5_EEERS5_l:299993 + 0: 4907 + 0: _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql20ObTablePartitionInfoENS0_12ObIAllocatorEEC2ERS5_l:211667 + 2: 4907 + 3: 4907 + 4: 4907 + 1: _ZN9oceanbase6common8ObIArrayIPNS_3sql20ObTablePartitionInfoEEC2Ev:74271 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql20ObTablePartitionInfoEEC2Ev:74271 + 0: 5129 + 6.1: _ZN9oceanbase6common6ObListINS0_10ObTabletIDENS0_12ObIAllocatorEEC2ERS3_:164128 + 0: 5129 + 2: 5129 + 3: 5129 +_ZN9oceanbase3sql12ObFastParser5parseERKNS_6common8ObStringEbRPcRlRP10_ParamListS8_NS2_15ObCollationTypeERNS2_12ObIAllocatorEm:2813618:4792 + 9: 4649 + 10: 4649 _ZN9oceanbase6common20ObActiveSessionGuard8get_statEv:4709 + 12: 4414 + 15.1: 25 + 19: 25 + 19.1: 25 + 20.1: 25 + 23: 4351 _ZN9oceanbase6common20ObActiveSessionGuard8get_statEv:4363 + 24: 4324 + 12: _ZN9oceanbase3lib14is_oracle_modeEv:195466 + 2: 4414 + 2: _ZN9oceanbase3lib15get_compat_modeEv:182224 + 2: 4414 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:111600 + 2: 4414 + 2.1: 25 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:550 + 1: 25 + 13: _ZN9oceanbase3sql17ObFastParserMysqlC2ERNS_6common12ObIAllocatorENS2_15ObCollationTypeEbm:913616 + 5: 4459 + 7: 4459 + 5: _ZN9oceanbase3sql16ObFastParserBaseC2ERNS_6common12ObIAllocatorENS2_15ObCollationTypeEb:641617 + 4: 4414 + 6: 4414 + 7: 4414 + 8: 4414 + 11: 4414 + 14: 4414 + 15: 4414 + 17: 4414 + 18: 4532 _ZN9oceanbase6common9ObCharset20charset_type_by_collENS0_15ObCollationTypeE:4467 + 19: 4532 _ZN9oceanbase6common9ObCharset11get_charsetENS0_15ObCollationTypeE:4580 + 0: _ZN9oceanbase3sql16ObFastParserBase8ObRawSqlC2Ev:75038 + 1: 4414 + 8: _ZN9oceanbase3sql16ObFastParserBase17set_callback_funcEMS1_FivEMS1_FibE:222950 + 2: 4459 + 3: 4459 + 14: _ZN9oceanbase3sql16ObFastParserBase5parseERKNS_6common8ObStringERPcRlRP10_ParamListS8_:1291039 + 6: 4459 + 7: 4459 + 8: 4607 _ZN9oceanbase6common16ObArenaAllocator5allocEl:4617 + 10: 25 + 11.1: 25 + 13: 4607 + 14.1: 4607 + 14.3: 4607 + 15: 25 + 18.1: 4607 + 19: 25 + 21.1: 4607 + 21.3: 4607 + 22: 25 + 25: 4607 + 26: 4607 + 26.1: 25 + 26.3: 4607 _ZN9oceanbase3sql17ObFastParserMysql16parse_next_tokenEv:4649 + 27.1: 25 + 31: 25 + 32: 4351 + 33: 4351 + 34: 4351 + 35: 4351 + 7: _ZNK9oceanbase6common8ObString6lengthEv:17836 + 0: 4459 + 14.2: _ZNK9oceanbase6common8ObStringixEl:105961 + 0: 4607 + 14.5: _ZN9oceanbase3sql16ObFastParserBase8is_spaceEc:27642 + 2: 4607 + 2.1: 4607 + 21.2: _ZNK9oceanbase6common8ObStringixEl:55284 + 0: 4607 + 21.5: _ZN9oceanbase3sql16ObFastParserBase8is_spaceEc:27642 + 2: 4607 + 2.1: 4607 + 24: _ZNK9oceanbase6common8ObString3ptrEv:225 + 0: 25 + 24.1: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4initEPKcl:115175 + 2: 4607 + 3: 4607 + 4: 4607 + 18: _ZN9oceanbase3sql18ObFastParserOracleC2ERNS_6common12ObIAllocatorENS2_15ObCollationTypeEb:4150 + 6: 25 + 4: _ZN9oceanbase3sql16ObFastParserBaseC2ERNS_6common12ObIAllocatorENS2_15ObCollationTypeEb:3000 + 4: 25 + 6: 25 + 7: 25 + 8: 25 + 11: 25 + 14: 25 + 15: 25 + 17: 25 + 18: 25 + 19: 25 + 0: _ZN9oceanbase3sql16ObFastParserBase8ObRawSqlC2Ev:425 + 1: 25 + 7: _ZN9oceanbase3sql16ObFastParserBase17set_callback_funcEMS1_FivEMS1_FibE:1050 + 2: 25 + 3: 25 +_ZN9oceanbase3sql5ObSql27pc_get_plan_and_fill_resultERNS0_14ObPlanCacheCtxERNS0_11ObResultSetERiRb:2809175:5066 + 4: 4855 + 6: 4855 + 11: 5055 + 18.1: 5055 + 19: 14 + 20.1: 14 + 24: 5055 + 25: 4602 + 26.1: 14 + 29: 4602 + 8: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:53405 + 0: 4855 + 9: _ZN9oceanbase3sql11ObResultSet19get_cache_obj_guardEv:19692 + 2: 4923 + 11.1: _ZN9oceanbase3sql5ObSql11pc_get_planERNS0_14ObPlanCacheCtxERNS0_15ObCacheObjGuardERiRb:1511930 + 5: 4923 _ZN9oceanbase6common20ObActiveSessionGuard8get_statEv:5000 + 6: 4412 + 8: 4412 + 9: 4412 + 10: 4412 + 10.1: 4729 _ZN9oceanbase3sql16ObSQLSessionInfo14get_plan_cacheEv:4653 + 11: 14 + 12.1: 14 + 13.1: 4557 + 21: 14 + 22.1: 14 + 28: 14 + 29: 14 + 32: 4557 + 33: 4557 + 34: 4557 + 35: 14 + 36.1: 14 + 39: 4557 + 41: 4557 + 42: 4557 _ZN9oceanbase3sql16ObSQLSessionInfo22set_early_lock_releaseEb:4587 + 44: 4981 _ZNK9oceanbase3sql16ObSQLSessionInfo24has_user_super_privilegeEv:4890 + 44.1: 14 + 44.2: 14 + 46: 14 + 46.1: 14 + 46.2: 14 + 47: 14 + 47.1: 14 + 47.3: 14 + 50.1: 14 + 54: 4981 + 54.1: 4981 + 54.2: 4981 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:4983 + 56: 14 + 57: 14 + 57.1: 14 + 60.1: 14 + 65.1: 14 + 65.2: 14 + 68.1: 14 + 73: 14 + 73.1: 14 + 75.1: 14 + 80: 4915 _ZN9oceanbase5trace7ObTrace12get_instanceEv:4998 + 81: 4895 + 83: 56 + 85: 5233 _ZN9oceanbase6common20ObActiveSessionGuard8get_statEv:5349 + 86: 5055 + 13.1: _ZN9oceanbase3sql5ObSql16execute_get_planERNS0_11ObPlanCacheERNS0_14ObPlanCacheCtxERNS0_15ObCacheObjGuardE:397500 + 4: 4729 + 6: 4729 + 8: 4729 + 9: 14 + 10.1: 14 + 11.1: 4729 + 12: 14 + 14: 14 + 18.1: 14 + 23: 4729 _ZN9oceanbase3sql11ObPlanCache8get_planERNS_6common12ObIAllocatorERNS0_14ObPlanCacheCtxERNS0_15ObCacheObjGuardE:4797 + 27.1: 14 + 31: 14 + 13: _ZN9oceanbase3sql15ObCacheObjGuard4initENS0_16CacheRefHandleIDE:112 + 2: 14 + 22: _ZN9oceanbase3sql15ObCacheObjGuard4initENS0_16CacheRefHandleIDE:37832 + 2: 4729 + 22.1: _ZNK9oceanbase3sql16ObSQLSessionInfo8is_innerEv:252 + 2: 14 + 32: _ZN9oceanbase3sql11ObPlanCache22inc_hit_and_access_cntEv:82026 + 2.1: 4557 + 3.1: 4557 + 33: _ZNK9oceanbase3sql15ObCacheObjGuard13get_cache_objEv:18228 + 2: 4557 + 46: _ZNK9oceanbase3sql17ObPlanCacheObject13get_stmt_typeEv:84 + 0: 14 + 47.1: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:168 + 0: 14 + 47.2: _ZNK9oceanbase3sql14ObPhysicalPlan19get_stmt_need_privsEv:56 + 0: 14 + 57: _ZNK9oceanbase3sql14ObPhysicalPlan19get_stmt_need_privsEv:98 + 0: 14 + 65.1: _ZNK9oceanbase3sql14ObPhysicalPlan23get_stmt_ora_need_privsEv:98 + 1: 14 + 80.1: _ZN9oceanbase5trace7ObTrace7set_tagIbJEEEv9ObTagTypeRKT_DpT0_:87915 + 2.1: 14 + 3: 4776 + 3.1: 57 + 4: 57 + 4.1: 14 + 6: 14 + 2: _ZNK9oceanbase5trace4UUID9is_initedEv:52167 + 0: 4667 + 0.1: 4776 + 5: _ZN9oceanbase5trace7ObTrace10append_tagIbLb1EEEb9ObTagTypeRKT_:252 + 3: 14 + 7: _ZN9oceanbase5trace7ObTrace10append_tagIbLb1EEEb9ObTagTypeRKT_:322 + 3: 14 + 16.1: _ZNK9oceanbase3sql15ObCacheObjGuard13get_cache_objEv:15165 + 2: 5055 + 22: _ZN9oceanbase3sql11ObResultSet22set_is_from_plan_cacheEb:40440 + 0: 5055 + 24: _ZN9oceanbase3sql15ObCacheObjGuard4initENS0_16CacheRefHandleIDE:20220 + 2: 5055 + 25: _ZN9oceanbase3sql11ObResultSet9from_planERKNS0_14ObPhysicalPlanERKNS_6common8ObIArrayIPNS0_9ObPCParamEEE:691504 + 2: 5055 + 4: 4602 + 5: 14 + 6.1: 14 + 8.2: 14 + 9: 4602 + 9.1: 14 + 11.1: 14 + 12.2: 14 + 13: 14 + 13.1: 14 + 14.1: 14 + 16: 4602 + 16.3: 4602 + 19: 4602 + 20: 4602 + 21: 4602 + 22: 4602 + 23: 4602 + 26: 4602 + 4: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:55661 + 0: 5055 + 4.1: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:32214 + 2: 4602 + 8.1: _ZNK9oceanbase3sql14ObPhysicalPlan28contain_paramed_column_fieldEv:32214 + 0: 4602 + 12.1: _ZNK9oceanbase3sql14ObPhysicalPlan28contain_paramed_column_fieldEv:98 + 0: 14 + 21: _ZNK9oceanbase3sql17ObPlanCacheObject13get_stmt_typeEv:27612 + 0: 4602 + 22: _ZNK9oceanbase3sql14ObPhysicalPlan21get_literal_stmt_typeEv:27612 + 0: 4602 + 23: _ZNK9oceanbase3sql14ObPhysicalPlan12is_returningEv:27612 + 0: 4602 + 24: _ZNK9oceanbase3sql14ObPhysicalPlan19is_affect_found_rowEv:27612 + 0: 4602 + 24.1: _ZN9oceanbase3sql17ObPhysicalPlanCtx23set_is_affect_found_rowEb:32214 + 0: 4602 +_ZN9oceanbase8memtable15ObMutatorWriter13append_row_kvElRKNS0_12RedoDataNodeERKNS_11transaction17ObCLogEncryptInfoEb:2778483:1068 + 5: 1049 + 6: 1049 + 9: 1049 + 10: 1049 + 12: 1049 + 13: 1049 + 15.1: 1049 _ZNK9oceanbase8memtable17ObMvccRowCallback19get_cluster_versionERm:1085 + 15.2: 1003 + 16.1: 12 + 17.1: 1003 + 17.2: 1003 + 20: 12 + 21.1: 1003 + 22: 12 + 23.1: 12 + 24.2: 1003 + 25.1: 12 + 26.1: 1003 + 27: 12 + 28.2: 1003 + 29: 12 + 30.1: 12 + 33: 1003 + 40: 1003 + 42: 1003 + 43: 1003 + 44: 1003 + 45: 1003 + 46.1: 1003 + 48.1: 1003 + 49: 12 + 50.1: 12 + 51.1: 1003 + 51.2: 12 + 52.3: 975 + 58.4: 1008 + 65.2: 1008 + 67.1: 1008 + 68.1: 2 + 71: 1044 + 71.1: 1044 + 74: 1044 + 75.1: 2 + 77: 2 + 78.13: 1059 + 24.1: _ZNK9oceanbase8memtable13ObMemtableKey6decodeERNS_6common13ObStoreRowkeyE:39393 + 3: 1003 + 3: _ZN9oceanbase6common13ObStoreRowkey11get_obj_ptrEv:3009 + 0: _ZN9oceanbase6common8ObRowkey11get_obj_ptrEv:3009 + 0: 1003 + 3.1: _ZNK9oceanbase6common13ObStoreRowkey11get_obj_cntEv:15045 + 0: _ZNK9oceanbase6common8ObRowkey11get_obj_cntEv:15045 + 0: 1003 + 3.2: _ZN9oceanbase6common13ObStoreRowkey6assignEPNS0_5ObObjEl:18330 + 3: 1003 + 3.2: 1003 + 5.1: 12 + 28.1: _ZNK9oceanbase6common10ObTabletID8is_validEv:7021 + 0: 1003 + 34: _ZN9oceanbase6common10ObTabletIDaSERKS1_:7021 + 0: 1003 + 35: _ZN9oceanbase8memtable20ObMemtableMutatorRowC2EmRKNS_6common13ObStoreRowkeyElRKNS0_9ObRowDataES8_NS_12blocksstable9ObDmlFlagEjjlil:128384 + 12: 1003 + 14: 1003 + 15: 1003 + 16: 1003 + 17: 1003 + 18: 1003 + 19: 1003 + 11: _ZN9oceanbase8memtable9ObMutatorC2EmRKNS_6common13ObStoreRowkeyEll:59177 + 5: 1003 + 7: 1003 + 8: 1003 + 9: 1003 + 48: _ZN9oceanbase6common12ObDataBuffer8get_dataEv:5015 + 0: 1003 + 52.1: _ZNK9oceanbase6common12ObDataBuffer12get_capacityEv:13039 + 0: 1003 + 52.2: _ZNK9oceanbase8memtable18ObMutatorRowHeader9serializeEPclRl:157105 + 2: 1003 + 3: 1003 + 4: 1003 + 5: 12 + 6.1: 12 + 7.1: 1003 + 8.1: 12 + 9.1: 1003 + 10.1: 12 + 11.1: 1003 _ZNK9oceanbase6common10ObTabletID9serializeEPclRl:1025 + 12.1: 12 + 14: 975 + 17: 12 + 7.1: _ZN9oceanbase6common13serialization10encode_i32EPclRli:55165 + 2.1: 1003 + 3: 1003 + 4: 1003 + 5: 1003 + 7: 1003 + 8: 1003 + 9.1: _ZN9oceanbase6common13serialization9encode_i8EPclRla:26078 + 2: 1003 + 2.1: 1003 + 4: 1003 + 5: 1003 + 58.1: _ZN9oceanbase6common12ObDataBuffer8get_dataEv:4875 + 0: 975 + 58.2: _ZNK9oceanbase6common12ObDataBuffer12get_capacityEv:12675 + 0: 975 + 58.3: _ZN9oceanbase8memtable20ObMemtableMutatorRow9serializeEPclRlRKNS_11transaction17ObCLogEncryptInfoEb:2087854 + 4: 975 + 5: 975 + 6: 975 + 8: 975 + 10: 975 + 11: 12 + 12.2: 975 + 13.1: 12 + 14.1: 975 + 14.2: 1050 + 15: 1050 + 15.1: 1050 + 15.2: 1010 + 16.1: 1010 + 16.2: 1010 + 17.1: 1010 + 17.2: 1010 + 18.1: 1010 _ZN9oceanbase8memtable9ObRowData9serializeEPclRl:1056 + 18.2: 1064 + 19: 1064 + 19.1: 1064 _ZN9oceanbase8memtable9ObRowData9serializeEPclRl:1076 + 19.2: 1020 + 20: 1020 + 20.1: 1020 + 20.2: 1047 + 21.1: 1047 + 21.2: 1072 + 22.1: 1072 + 22.2: 1120 + 23.1: 1120 + 23.2: 1068 + 24: 12 + 25.1: 0 + 27.1: 1068 _ZNK9oceanbase11transaction17ObCLogEncryptInfo16get_encrypt_infoEmRbRNS_5share13ObEncryptMetaE:1070 + 27.2: 1118 + 28.1: 6 + 29.1: 1118 + 30: 12 + 30.1: 12 + 33: 0 + 34: 1008 + 35: 1008 + 35.1: 1008 + 36.1: 12 + 38: 1008 + 41: 12 + 6: _ZN9oceanbase6common13serialization19encoded_length_vi64El:21240 + 4: 975 + 6.1: 12 + 8.1: 12 + 10.1: 12 + 12.1: 12 + 14.1: 12 + 16.1: 12 + 18.1: 12 + 7: _ZN9oceanbase5share13ObEncryptMetaC2Ev:119925 + 0.3: 975 + 0: _ZN9oceanbase5share12ObEncryptKeyILl32EEC2Ev:24375 + 0: _ZN9oceanbase6common8ObStringC2EiiPc:24375 + 1: 975 + 0.1: _ZN9oceanbase5share12ObEncryptKeyILl16EEC2Ev:24375 + 0: 975 + 0: _ZN9oceanbase6common8ObStringC2EiiPc:17550 + 1: 975 + 0.2: _ZN9oceanbase5share12ObEncryptKeyILl16EEC2Ev:24375 + 0: 975 + 0: _ZN9oceanbase6common8ObStringC2EiiPc:17550 + 1: 975 + 0.10: _ZN9oceanbase5share12ObEncryptKeyILl16EEC2Ev:24375 + 0: 975 + 0: _ZN9oceanbase6common8ObStringC2EiiPc:17550 + 1: 975 + 12.1: _ZN9oceanbase6common13serialization11encode_vi64EPclRll:67623 + 3.1: 975 + 4: 975 + 5: 975 + 6: 1 + 6.1: 975 + 7: 12 + 8: 12 + 11: 975 + 4: _ZN9oceanbase6common13serialization19encoded_length_vi64El:7374 + 4: 975 + 6.1: 12 + 8.1: 12 + 10.1: 12 + 12.1: 12 + 14.1: 12 + 16.1: 12 + 18.1: 12 + 14.1: _ZNK9oceanbase6common13ObStoreRowkey9serializeEPclRl:975 + 2: 975 _ZNK9oceanbase6common8ObRowkey9serializeEPclRl:1027 + 15.1: _ZN9oceanbase6common13serialization11encode_vi64EPclRll:64968 + 3: 1050 + 3.1: 1050 + 4: 1050 + 6.1: 1010 + 7: 12 + 8: 12 + 11: 1010 + 4: _ZN9oceanbase6common13serialization19encoded_length_vi64El:14802 + 4: 1050 + 6.1: 12 + 8.1: 12 + 10.1: 12 + 12.1: 12 + 14.1: 12 + 16.1: 12 + 18.1: 12 + 16.1: _ZN9oceanbase6common13serialization9encode_i8EPclRla:48480 + 2: 1010 + 2.1: 1010 + 4: 1010 + 5: 1010 + 17.1: _ZN9oceanbase6common13serialization11encode_vi32EPclRli:70019 + 3: 1010 + 3.1: 1010 + 4: 1010 + 6.1: 1010 + 7: 13 + 8: 13 + 11: 1010 + 4: _ZN9oceanbase6common13serialization19encoded_length_vi32Ei:12650 + 4: 1010 + 6.1: 13 + 8.1: 12 + 10.1: 12 + 20.1: _ZN9oceanbase6common13serialization11encode_vi32EPclRli:239999 + 3: 1020 + 3.1: 1020 + 4: 1020 + 6.1: 1986 + 7: 1986 + 8: 1986 + 11: 1986 + 4: _ZN9oceanbase6common13serialization19encoded_length_vi32Ei:52020 + 4: 1020 + 6.1: 1020 + 8.1: 1020 + 10.1: 1020 + 21.1: _ZN9oceanbase6common13serialization11encode_vi64EPclRll:437353 + 3: 1047 + 3.1: 1093 + 4: 1093 + 6.1: 5431 + 7: 5431 + 8: 5431 + 11: 5431 + 4: _ZN9oceanbase6common13serialization19encoded_length_vi64El:96327 + 4: 1047 + 6.1: 1047 + 8.1: 1047 + 10.1: 1047 + 12.1: 1047 + 14.1: 1047 + 16.1: 1047 + 18.1: 1047 + 22.1: _ZN9oceanbase6common13serialization11encode_vi32EPclRli:63323 + 3: 1072 + 3.1: 1180 + 4: 1180 + 6.1: 1180 + 7: 14 + 8: 14 + 11: 1180 + 4: _ZN9oceanbase6common13serialization19encoded_length_vi32Ei:7856 + 4: 1072 + 6.1: 8 + 8.1: 8 + 10.1: 8 + 23.1: _ZN9oceanbase6common13serialization11encode_vi64EPclRll:470675 + 3: 1120 + 4: 1120 + 5: 1119 + 6.1: 7587 + 7: 7587 + 8: 7587 + 11: 7587 + 4: _ZN9oceanbase6common13serialization19encoded_length_vi64El:109774 + 4: 1120 + 6.1: 1120 + 8.1: 1120 + 10.1: 1120 + 12.1: 1120 + 14.1: 1120 + 16.1: 1120 + 18.1: 1120 + 35: _ZN9oceanbase6common13serialization10encode_i32EPclRli:81648 + 2: 1008 + 4: 1008 + 5: 1008 + 6: 1008 + 7: 1008 + 8: 1008 + 65.1: _ZN9oceanbase8memtable21ObMemtableMutatorMeta13inc_row_countEv:6048 + 3: 1008 + 68: _ZN9oceanbase8memtable21ObMemtableMutatorMeta13set_savepointEj:18 + 7: 2 +_ZN9oceanbase3sql8ObDASCtx19extended_tablet_locERNS0_13ObDASTableLocERKNS0_16ObCandiTabletLocERPNS0_14ObDASTabletLocE:2751957:4477 + 3: 4265 + 4: 4265 + 6: 4265 + 6.1: 4265 + 7: 5 + 7.1: 5 + 8: 5 + 11: 4265 + 12: 4265 _ZN9oceanbase5share19ObLSReplicaLocationC1Ev:4342 + 13: 4092 + 14: 5 + 15: 5 + 16.1: 5 + 17.1: 4092 _ZNK9oceanbase3sql16ObCandiTabletLoc20get_selected_replicaERNS_5share19ObLSReplicaLocationE:4213 + 17.2: 4213 + 18.1: 5 + 20.1: 4213 + 22.1: 4213 + 23.1: 4213 + 24: 4213 + 25.1: 4213 + 26.1: 5 + 30: 5 + 30.1: 4213 + 30.2: 4213 + 31.1: 5 + 33: 5 + 33.1: 4213 + 33.2: 4213 _ZN9oceanbase3sql8ObDASCtx17check_same_serverEPKNS0_14ObDASTabletLocE:4468 + 33.3: 4529 + 34.1: 5 + 37: 4529 + 6.5: _ZNK9oceanbase6common4list8IteratorINS0_6ObListIPNS_3sql14ObDASTabletLocENS0_12ObIAllocatorEEEEneERKS9_:29905 + 2: 4265 + 7.4: _ZNK9oceanbase6common10ObTabletIDeqERKS1_:80 + 0: 5 + 13: _ZN9oceanbase6common16ObArenaAllocator5allocEl:470548 + 0: 4092 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13alloc_alignedEll:437812 + 3: 4092 + 6: 5 + 7: 4092 + 8: 4092 + 10: 4092 + 11: 4092 + 12: 4092 + 13: 4092 + 15.1: 5 + 16: 5 + 18: 5 + 20: 5 + 28: 5 + 35: 4092 + 36: 4092 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE15ensure_cur_pageEv:55361 + 2: 4092 + 3: 5 + 5.1: 5 + 8: 5 + 9: 5 + 10: 5 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:1605 + 5: 5 + 6: 5 + 8: 5 + 9: 5 + 11.1: 5 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:1190 + 2: 5 + 3: 5 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:80 + 5: 5 + 7: 5 + 8: 5 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:880 + 2: 5 + 2.2: 5 + 2.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:750 + 3: 5 + 4: 5 + 5: 5 + 6: 5 + 7: 5 + 8: 5 + 9: 5 + 10: 5 + 11: 5 + 13: 5 + 14.1: 5 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:35 + 2: 5 + 9: _ZSt3maxIlERKT_S2_S2_:60 + 5: 5 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:120 + 1: 5 + 3: 5 + 8: _ZL12abort_unlessb:55 + 5: 5 + 6: 5 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:40 + 0: 5 + 7: _ZN9oceanbase6common16get_align_offsetEPvl:45012 + 3: 4092 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:28644 + 0: 4092 + 11: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:28644 + 7: 4092 + 15.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE18is_normal_overflowEl:25 + 2: 5 + 16: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11extend_pageEl:340 + 4: 5 + 5: 5 + 8: 5 + 9: 5 + 10.1: 5 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:40 + 2: 5 + 12: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_tailEPNS3_4PageE:110 + 2: 5 + 3: 5 + 5: 5 + 23.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16lookup_next_pageEl:240 + 3.1: 5 + 4.1: 5 + 5: 5 + 5.1: 5 + 7: 5 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page10reuse_sizeEv:55 + 0: 5 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:20 + 2: 5 + 32: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9alloc_bigEl:760 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:675 + 3: 5 + 5: 5 + 8: 5 + 9: 5 + 11.1: 5 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:230 + 2: 5 + 3: 5 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:75 + 5: 5 + 7: 5 + 8: 5 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:165 + 1: 5 + 3: 5 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_headEPNS3_4PageE:85 + 4: 5 + 5: 5 + 7: 5 + 20: _ZN9oceanbase3sql14ObDASTabletLocC2Ev:168520 + 4: 4213 + 5: 4213 + 6: 4213 + 1: _ZN9oceanbase6common10ObTabletIDC2Em:46343 + 0: 4213 + 21.1: _ZN9oceanbase6common6ObAddraSERKS1_:143242 + 1: 4213 + 2: 4213 + 3: 4213 + 22: _ZNK9oceanbase3sql14ObOptTabletLoc13get_tablet_idEv:21065 + 0: _ZN9oceanbase6common10ObTabletIDC2ERKS1_:21065 + 0: 4213 + 22.1: _ZN9oceanbase6common10ObTabletIDaSERKS1_:12639 + 0: 4213 + 23: _ZNK9oceanbase3sql14ObOptTabletLoc9get_ls_idEv:21065 + 0: _ZN9oceanbase5share6ObLSIDC2ERKS1_:21065 + 0: 4213 + 23.1: _ZN9oceanbase5share6ObLSIDaSERKS1_:16852 + 0: 4213 + 25: _ZN9oceanbase6common6ObListIPNS_3sql14ObDASTabletLocENS0_12ObIAllocatorEE9push_backERKS4_:741490 + 3: 4213 + 4: 5 + 12: 4213 + 13: 4213 + 14: 4213 + 15: 4213 + 16: 4213 + 3: _ZN9oceanbase6common16ObArenaAllocator5allocEl:463312 + 0: 4213 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13alloc_alignedEll:446460 + 3: 4213 + 6: 5 + 7: 4213 + 8: 4213 + 10: 4213 + 11: 4213 + 12: 4213 + 13: 4213 + 15.1: 5 + 16: 5 + 18: 5 + 20: 5 + 28: 5 + 35: 4213 + 36: 4213 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE15ensure_cur_pageEv:56904 + 2: 4213 + 3: 5 + 5.1: 5 + 8: 5 + 9: 5 + 10: 5 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:1595 + 5: 5 + 6: 5 + 8: 5 + 9: 5 + 11.1: 5 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:1200 + 2: 5 + 3: 5 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:80 + 5: 5 + 7: 5 + 8: 5 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:890 + 2: 5 + 2.2: 5 + 2.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:760 + 3: 5 + 4: 5 + 5: 5 + 6: 5 + 7: 5 + 8: 5 + 9: 5 + 10: 5 + 11: 5 + 13: 5 + 14.1: 5 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:35 + 2: 5 + 9: _ZSt3maxIlERKT_S2_S2_:60 + 5: 5 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:120 + 1: 5 + 3: 5 + 8: _ZL12abort_unlessb:55 + 5: 5 + 6: 5 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:40 + 0: 5 + 7: _ZN9oceanbase6common16get_align_offsetEPvl:42130 + 3: 4213 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:29491 + 0: 4213 + 11: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:29491 + 7: 4213 + 15.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE18is_normal_overflowEl:25 + 2: 5 + 16: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11extend_pageEl:370 + 4: 5 + 5: 5 + 8: 5 + 9: 5 + 10.1: 5 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:40 + 2: 5 + 12: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_tailEPNS3_4PageE:110 + 2: 5 + 3: 5 + 5: 5 + 23.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16lookup_next_pageEl:260 + 3.1: 5 + 4.1: 5 + 5: 5 + 5.1: 5 + 7: 5 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page10reuse_sizeEv:55 + 0: 5 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:20 + 2: 5 + 32: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9alloc_bigEl:755 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:670 + 3: 5 + 5: 5 + 8: 5 + 9: 5 + 11.1: 5 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:230 + 2: 5 + 3: 5 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:75 + 5: 5 + 7: 5 + 8: 5 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:165 + 1: 5 + 3: 5 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_headEPNS3_4PageE:85 + 4: 5 + 5: 5 + 7: 5 + 7: _ZN9oceanbase6common16construct_assignIPNS_3sql14ObDASTabletLocEEEiRT_RKS5_:29491 + 2: _ZN9oceanbase6common21construct_assign_wrapIPNS_3sql14ObDASTabletLocEEEiRT_RKS5_NS0_8BoolTypeILb0EEE:29491 + 2: 4213 + 30.1: _ZN9oceanbase3sql8ObDASCtx24build_related_tablet_locERNS0_14ObDASTabletLocE:180231 + 2: 4213 + 3.1: 5 + 3.2: 4213 + 3.3: 4213 + 3.5: 5 + 4: 5 + 8: 5 + 9: 5 + 10: 5 + 11.1: 5 + 12.2: 5 + 14: 5 + 15.1: 5 + 17.3: 5 + 19.1: 5 + 25: 5 + 26: 5 + 27: 5 + 28.1: 5 + 29.1: 5 + 4: _ZNK9oceanbase6common12ObIArrayWrapImE2atEl:20 + 6: 5 + 12.1: _ZN9oceanbase3sql8ObDASCtx19get_table_loc_by_idEmm:465 + 3.1: 5 + 4: 5 + 4.1: 5 + 5: 5 + 3.4: _ZNK9oceanbase6common4list8IteratorINS0_6ObListIPNS_3sql13ObDASTableLocENS0_12ObIAllocatorEEEEneERKS9_:35 + 2: 5 + 17.1: _ZN9oceanbase6common10ObTabletIDC2ERKS1_:70 + 0: 5 + 17.2: _ZN9oceanbase3sql19DASRelatedTabletMap21get_related_tablet_idENS_6common10ObTabletIDEmRSt4pairIS3_mE:88873 + 4: 5 + 6.1: 5 + 6.3: 5 + 16: 5 + 17.1: 5 + 19: 5 + 6.6: _ZNK9oceanbase6common4list8IteratorINS0_6ObListINS_3sql19DASRelatedTabletMap8MapEntryENS0_12ObIAllocatorEEEEneERKS9_:15 + 2: 5 + 8: _ZNK9oceanbase6common10ObTabletIDeqERKS1_:20 + 0: 5 + 13: _ZN9oceanbase6common10ObTabletIDaSERKS1_:40 + 0: 5 + 17.3: _ZN9oceanbase6common10ObTabletIDD2Ev:40 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:40 + 0: 5 + 17.4: _ZN9oceanbase6common10ObTabletIDD2Ev:65 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:65 + 0: 5 + 21: _ZN9oceanbase3sql14ObDASTabletLocC2Ev:205 + 4: 5 + 5: 5 + 6: 5 + 2: _ZN9oceanbase5share6ObLSIDC2Ev:40 + 0: 5 + 3: _ZN9oceanbase6common6ObAddrC2Ev:55 + 1: 5 + 22: _ZN9oceanbase6common10ObTabletIDaSERKS1_:15 + 0: 5 + 23: _ZN9oceanbase5share6ObLSIDaSERKS1_:40 + 0: 5 + 24: _ZN9oceanbase6common6ObAddraSERKS1_:130 + 1: 5 + 2: 5 + 3: 5 + 28: _ZN9oceanbase6common6ObListIPNS_3sql14ObDASTabletLocENS0_12ObIAllocatorEE9push_backERKS4_:330 + 3: 5 + 4: 5 + 12: 5 + 13: 5 + 14: 5 + 15: 5 + 16: 5 + 7: _ZN9oceanbase6common16construct_assignIPNS_3sql14ObDASTabletLocEEEiRT_RKS5_:40 + 2: _ZN9oceanbase6common21construct_assign_wrapIPNS_3sql14ObDASTabletLocEEEiRT_RKS5_NS0_8BoolTypeILb0EEE:40 + 2: 5 +_ZN9oceanbase8memtable16ObTxCallbackList9callback_ERNS0_20ObITxCallbackFunctorEPNS0_16ObITransCallbackES5_:2734973:778 + 3: 743 + 5: 743 + 9: 743 + 11: 743 + 12: 3871 + 12.1: 4562 + 16: 3770 + 19: 3428 + 21: 3495 + 22.1: 21 + 23.1: 3495 + 24: 1755 _ZN9oceanbase11transaction9tablelock17ObOBJLockCallback3delEv:751 + 25.1: 15 + 27: 1790 _ZNK9oceanbase8memtable16ObITransCallback12is_need_freeEv:1759 + 28: 1790 + 28.1: 1790 _ZN9oceanbase8memtable13ObMemtableCtx13callback_freeEPNS0_16ObITransCallbackE:1789 + 30: 1877 + 34: 3643 + 35.1: 42 + 41: 811 + 42: 811 + 44: 811 + 9: _ZNK9oceanbase8memtable20ObITxCallbackFunctor10is_reverseEv:4458 + 0: 743 + 11.1: _ZNK9oceanbase8memtable16ObITransCallback8get_prevEv:0 + 0: 0 + 11.2: _ZNK9oceanbase8memtable16ObITransCallback8get_nextEv:11625 + 0: 771 + 14: _ZN9oceanbase8memtable20ObITxCallbackFunctor7refreshEv:22620 + 0: 3770 + 16: _ZNK9oceanbase8memtable21ObCalcChecksumFunctor11is_iter_endEPNS0_16ObITransCallbackE:15449 + 7.1: 1711 + 7.1: _ZNK9oceanbase8memtable16ObITransCallback10get_log_tsEv:6894 + 2: 1711 + 42: 25 + 16: _ZNK9oceanbase8memtable37ObRemoveCallbacksForFastCommitFunctor11is_iter_endEPNS0_16ObITransCallbackE:13450 + 7.1: 253 + 10.1: 253 + 13.1: 253 + 13.2: 21 + 14: 253 + 14.1: 21 + 18.2: 253 + 19.1: 253 + 10.1: _ZNK9oceanbase8memtable16ObITransCallback10get_log_tsEv:1012 + 2: 253 + 21: _ZN9oceanbase8memtable14ObTxEndFunctorclEPNS0_16ObITransCallbackE:831043 + 4: 1642 + 6.1: 21 + 12.1: 1642 + 12.2: 1798 + 13: 1642 + 13.1: 1798 _ZN9oceanbase11transaction9tablelock17ObOBJLockCallback12trans_commitEv:704 + 14.1: 21 + 15.1: 1798 + 15.2: 21 + 16: 1798 + 16.1: 21 + 17.1: 21 + 19: 1798 + 13.1: _ZN9oceanbase8memtable17ObMvccRowCallback12trans_commitEv:695932 + 2: 1015 + 4: 1015 + 7: 1015 + 9: 1042 + 10.1: 1042 + 11.1: 21 + 56: 1042 + 57: 1042 + 57.1: 1042 + 57.2: 1104 + 58.1: 21 + 59.1: 1104 + 59.2: 1104 _ZNK9oceanbase8memtable13ObMemtableCtx17get_tx_end_log_tsEv:1086 + 60.1: 1030 + 60.2: 1030 + 61.2: 992 + 64: 910 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:896 + 64.2: 887 + 65: 887 + 65.1: 42 + 66: 887 + 66.1: 42 + 67: 42 + 68: 42 + 69.1: 42 + 71: 887 + 72: 887 + 72.1: 887 _ZN9oceanbase8memtable9ObMvccRow12need_compactEbb:846 + 72.2: 992 + 73: 101 + 73.1: 101 + 74: 101 + 74.1: 44 + 75: 44 + 75.1: 44 + 75.2: 44 + 78: 77 + 78.1: 77 _ZN9oceanbase8memtable10ObMemtable11row_compactEPNS0_9ObMvccRowEbl:57 + 85: 1169 + 7: _ZN9oceanbase8memtable10ObRowLatch5GuardC2ERS1_:18342 + 0: _ZN9oceanbase8memtable10ObRowLatch4lockEv:18342 + 0: 1015 _ZN9oceanbase6common7ObLatch6wrlockEjlPKj:1023 + 10: _ZN9oceanbase8memtable17ObMvccRowCallback22link_and_get_next_nodeERPNS0_15ObMvccTransNodeE:21171 + 2: 1042 + 5.1: 1042 + 8: 21 + 9: 21 + 10.1: 21 + 11.1: 21 + 11.2: 21 + 12.1: 21 + 14: 21 + 17: 21 + 11.1: _ZN9oceanbase8memtable10ObMemtable13get_allocatorEv:147 + 0: 21 + 57: _ZNK9oceanbase8memtable10ObIMvccCtx18get_commit_versionEv:7294 + 0: 1042 + 57.1: _ZN9oceanbase8memtable9ObMvccRow12trans_commitElRNS0_15ObMvccTransNodeE:215042 + 2: 1042 + 4: 1042 + 5: 21 + 6.1: 21 + 9: 1042 + 9.1: 931 + 10: 21 + 11: 21 + 11.1: 21 + 15.1: 21 + 23: 1047 + 24: 1047 + 27: 1104 + 9.1: _ZNK9oceanbase8memtable15ObMvccTransNode20is_safe_read_barrierEv:3724 + 4: 931 + 11: _ZNK9oceanbase8memtable15ObMvccTransNode6is_elrEv:105 + 0: 21 + 21: _ZNK9oceanbase8memtable15ObMvccTransNode12get_dml_flagEv:4160 + 2: 1040 + 21.1: _ZN9oceanbase8memtable9ObMvccRow16update_dml_flag_ENS_12blocksstable9ObDmlFlagEj:45955 + 3: 1040 + 4: 907 + 4.1: 907 + 8: 907 + 9: 908 + 10: 908 + 13: 908 + 14: 122 + 15: 122 + 23: _ZN9oceanbase8memtable9ObMvccRow24update_max_trans_versionElRKNS_11transaction9ObTransIDE:61939 + 3: 1047 + 4.1: 18 + 6: 18 + 7: 1047 + 64877.1: 37 + 6: _ZN9oceanbase6common10inc_updateIlEElPT_S2_:32758 + 3: 1022 + 4.1: 1814 + 5: 761 + 7.1: _ZN9oceanbase11transaction9ObTransIDaSERKS1_:7329 + 1: 1047 + 24: _ZN9oceanbase8memtable9ObMvccRow28update_max_elr_trans_versionElRKNS_11transaction9ObTransIDE:46177 + 4: 1104 + 3: _ZN9oceanbase6common10inc_updateIlEElPT_S2_:32374 + 3: 1047 + 4.1: 1797 + 5: 787 + 4.1: _ZN9oceanbase11transaction9ObTransIDaSERKS1_:7728 + 1: 1104 + 59.1: _ZNK9oceanbase8memtable10ObIMvccCtx18get_commit_versionEv:7728 + 0: 1104 + 59.3: _ZN9oceanbase8memtable15ObMvccTransNode12trans_commitEll:40170 + 3: _ZN9oceanbase8memtable15ObMvccTransNode18fill_trans_versionEl:4120 + 2: 1030 + 4: _ZN9oceanbase8memtable15ObMvccTransNode13set_committedEv:16480 + 3: 1030 + 4: 1030 + 5: 1030 + 5: _ZN9oceanbase8memtable15ObMvccTransNode17set_tx_end_log_tsEl:19570 + 2: 1030 + 3: 1030 + 60.1: _ZNK9oceanbase8memtable10ObIMvccCtx13is_for_replayEv:6180 + 0: _ZNK9oceanbase8memtable18ObTransCallbackMgr13is_for_replayEv:6180 + 0: 1030 + 60.3: _ZN9oceanbase8memtable17ObMvccRowCallback26wakeup_row_waiter_if_need_Ev:167979 + 3: 1030 + 3.1: 920 + 4: 1030 + 5: 1030 + 6: 816 + 9: 821 + 10.1: 21 + 12: 821 + 12.3: 821 _ZNK9oceanbase8memtable13ObMemtableCtx9get_tx_idEv:814 + 5.1: _ZNK9oceanbase11transaction9ObTransIDneERKS1_:5520 + 1: 920 + 6: _ZNK9oceanbase8memtable17ObMvccRowCallback13get_tablet_idEv:3264 + 2: 816 + 6.1: _ZN9oceanbase8memtable9ObMvccRow13wakeup_waiterERKNS_6common10ObTabletIDERKNS0_13ObMemtableKeyE:44617 + 3: 816 + 5: 816 + 6.1: 21 + 8: 816 _ZN9oceanbase8memtable13ObLockWaitMgr6wakeupERKNS_6common10ObTabletIDERKNS0_13ObMemtableKeyE:780 + 5: _ZN9oceanbase5share11ObTenantEnv3mtlIPNS_8memtable13ObLockWaitMgrEEET_v:25155 + 2: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:15363 + 2: 816 + 2.1: 21 + 2.2: 21 + 2.1: _ZN9oceanbase5share12ObTenantBase3getIPNS_8memtable13ObLockWaitMgrEEET_v:9792 + 0: _ZN9oceanbase5share12ObTenantBase9inner_getENS1_8IdentityIPNS_8memtable13ObLockWaitMgrEEE:9792 + 0: 816 + 8: _ZN9oceanbase5share11ObTenantEnv3mtlIPNS_8memtable13ObLockWaitMgrEEET_v:25300 + 2: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:15448 + 2: 821 + 2.1: 21 + 2.2: 21 + 2.1: _ZN9oceanbase5share12ObTenantBase3getIPNS_8memtable13ObLockWaitMgrEEET_v:9852 + 0: _ZN9oceanbase5share12ObTenantBase9inner_getENS1_8IdentityIPNS_8memtable13ObLockWaitMgrEEE:9852 + 0: 821 + 12: _ZNK9oceanbase8memtable17ObMvccRowCallback13get_tablet_idEv:6600 + 2: 821 + 2.1: _ZNK9oceanbase7storage8ObITable8TableKey13get_tablet_idEv:3316 + 0: 829 + 12.4: _ZN9oceanbase8memtable13ObLockWaitMgr17reset_hash_holderIJRKNS_6common10ObTabletIDERNS0_13ObMemtableKeyENS_11transaction9ObTransIDEEEEvDpOT_:17573 + 0: 829 + 0.3: 829 _ZN9oceanbase8memtable15RowHolderMapper17reset_hash_holderERKNS_6common10ObTabletIDERKNS0_13ObMemtableKeyERKNS_11transaction9ObTransIDE:789 + 61.1: _ZNK9oceanbase8memtable17ObMvccRowCallback12get_dml_flagEv:8928 + 2: 992 + 2: _ZN9oceanbase8memtableL12get_dml_flagEPNS0_15ObMvccTransNodeE:4960 + 2: 992 + 62: _ZN9oceanbase8memtable17ObMvccRowCallback17unlink_trans_nodeEv:6864 + 3: 216 + 11.1: 220 _ZN9oceanbase8memtable9ObMvccRow17unlink_trans_nodeERKNS0_15ObMvccTransNodeE:175 + 15: 220 + 67.1: _ZNK9oceanbase8memtable10ObMemtable15has_hotspot_rowEv:252 + 0: 42 + 68: _ZN9oceanbase8memtable10ObMemtable23set_contain_hotspot_rowEv:336 + 0: 42 + 72: _ZNK9oceanbase8memtable10ObIMvccCtx13is_for_replayEv:7096 + 0: _ZNK9oceanbase8memtable18ObTransCallbackMgr13is_for_replayEv:7096 + 0: 887 + 73: _ZNK9oceanbase8memtable10ObIMvccCtx13is_for_replayEv:909 + 0: _ZNK9oceanbase8memtable18ObTransCallbackMgr13is_for_replayEv:909 + 0: 101 + 74: _ZNK9oceanbase8memtable10ObIMvccCtx26get_replay_compact_versionEv:308 + 0: 44 + 75: _ZNK9oceanbase8memtable10ObIMvccCtx13is_for_replayEv:352 + 0: _ZNK9oceanbase8memtable18ObTransCallbackMgr13is_for_replayEv:352 + 0: 44 + 75.1: _ZNK9oceanbase8memtable10ObIMvccCtx26get_replay_compact_versionEv:308 + 0: 44 + 78: _ZNK9oceanbase8memtable10ObIMvccCtx13is_for_replayEv:616 + 0: _ZNK9oceanbase8memtable18ObTransCallbackMgr13is_for_replayEv:616 + 0: 77 + 86.5: _ZN9oceanbase8memtable10ObRowLatch5GuardD2Ev:3803 + 0.2: 15 + 0: _ZN9oceanbase8memtable10ObRowLatch6unlockEv:3683 + 0: 1169 _ZN9oceanbase6common7ObLatch6unlockEPKj:1145 + 86.6: _ZN9oceanbase8memtable10ObRowLatch5GuardD2Ev:255 + 0.2: 15 + 0: _ZN9oceanbase8memtable10ObRowLatch6unlockEv:135 + 0: 15 + 21: _ZN9oceanbase8memtable21ObCalcChecksumFunctorclEPNS0_16ObITransCallbackE:803810 + 2: 1711 + 4: 1711 + 5: 21 + 6.1: 21 + 7.1: 1711 + 8: 21 + 9.1: 21 + 10.1: 1711 + 10.2: 15 + 11: 1711 + 11.1: 1767 + 12.1: 15 + 14: 1767 + 17: 1767 + 7.1: _ZNK9oceanbase8memtable16ObITransCallback10get_log_tsEv:6844 + 2: 1711 + 11.1: _ZN9oceanbase8memtable17ObMvccRowCallback13calc_checksumElPNS_6common15ObBatchChecksumE:638727 + 3: 1017 + 5: 1181 + 6: 1181 + 8.1: 21 + 9.1: 21 + 12.1: 1181 + 14: 1071 + 19.3: 15 + 3: _ZN9oceanbase8memtable10ObRowLatch5GuardC2ERS1_:22474 + 0: 1017 + 0: _ZN9oceanbase8memtable10ObRowLatch4lockEv:18406 + 0: 1017 _ZN9oceanbase6common7ObLatch6wrlockEjlPKj:1028 + 13: _ZNK9oceanbase8memtable15ObMvccTransNode8checksumERNS_6common15ObBatchChecksumE:184428 + 2: _ZN9oceanbase6common15ObBatchChecksum4fillEPKvl:89752 + 7.1: 1120 + 8: 1161 + 9: 1128 + 11: 1120 + 13: 1120 + 14: 21 + 15: 21 + 8: _ZSt3minIlERKT_S2_S2_:3384 + 5: 1128 + 3: _ZN9oceanbase6common15ObBatchChecksum4fillEPKvl:86780 + 7.1: 1071 + 8: 1128 + 9: 1128 + 11: 1071 + 13: 1071 + 14: 21 + 15: 21 + 8: _ZSt3minIlERKT_S2_S2_:3384 + 5: 1128 + 14: _ZNK9oceanbase8memtable20ObMemtableDataHeader8checksumERNS_6common15ObBatchChecksumE:369728 + 3: 1071 + 8: 1036 + 6: _ZN9oceanbase6common15ObBatchChecksum4fillEPKvl:70021 + 7.1: 1107 + 8: 1102 + 9: 1102 + 11: 1091 + 13: 1091 + 14: 42 + 15: 41 + 8: _ZSt3minIlERKT_S2_S2_:3306 + 5: 1102 + 7: _ZN9oceanbase6common15ObBatchChecksum4fillEPKvl:91535 + 7.1: 1298 + 8: 1297 + 9: 1297 + 11: 1303 + 13: 1303 + 14: 294 _ZN9oceanbase6common8ob_crc64EmPKvl:268 + 15: 294 + 8: _ZSt3minIlERKT_S2_S2_:3891 + 5: 1297 + 8: _ZN9oceanbase6common15ObBatchChecksum4fillEPKvl:180811 + 3: 1036 + 7.1: 2267 + 8: 2285 + 9: 2285 + 11: 2216 + 13: 2216 + 14: 1265 _ZN9oceanbase6common8ob_crc64EmPKvl:1199 + 15: 1265 + 8: _ZSt3minIlERKT_S2_S2_:6855 + 5: 2285 + 19.2: _ZN9oceanbase8memtable10ObRowLatch5GuardD2Ev:7367 + 0: 1021 + 0.2: 15 + 0: _ZN9oceanbase8memtable10ObRowLatch6unlockEv:3163 + 0: 1021 _ZN9oceanbase6common7ObLatch6unlockEPKj:1028 + 14: _ZNK9oceanbase8memtable16ObITransCallback10get_log_tsEv:7068 + 2: 1767 + 23.1: _ZNK9oceanbase8memtable20ObITxCallbackFunctor20need_remove_callbackEv:20970 + 0: 3495 + 24: _ZN9oceanbase8memtable17ObMvccRowCallback3delEv:74128 + 4: 1039 + 5: 28 + 6: 28 + 9: 1066 + 10: 28 + 12: 1028 + 13: _ZN9oceanbase8memtable17ObMvccRowCallback17dec_unsynced_cnt_Ev:756 + 4: 21 + 5: 21 + 6: 21 + 16: _ZN9oceanbase8memtable16ObITransCallback6removeEv:43176 + 5: 1028 + 3: _ZNK9oceanbase8memtable16ObITransCallback8get_prevEv:4112 + 0: 1028 + 4: _ZNK9oceanbase8memtable16ObITransCallback8get_nextEv:9252 + 0: 1028 + 8: _ZN9oceanbase8memtable16ObITransCallback8set_nextEPS1_:7196 + 0: 1028 + 9: _ZN9oceanbase8memtable16ObITransCallback8set_prevEPS1_:4112 + 0: 1028 + 28: _ZN9oceanbase8memtable18ObTransCallbackMgr7get_ctxEv:5370 + 0: 1790 + 41: _ZN9oceanbase8memtable20ObITxCallbackFunctor14set_statisticsEll:21897 + 2: 811 + 3: 811 +_ZN9oceanbase7storage13ObSingleMergeD2Ev:2732597:3248 + 1: 3132 + 3: 3299 + 3.1: 35 + 3.2: 35 + 3.5: 35 + 3.6: 35 + 2: _ZN9oceanbase7storage13ObSingleMerge5resetEv:1531210 + 2: _ZN9oceanbase7storage15ObMultipleMerge5resetEv:1493997 + 3.1: 3195 + 3.3: 3195 + 4: 3214 + 5: 3214 _ZN9oceanbase8memtable21ObMemtableGetIteratorD1Ev:3231 _ZN9oceanbase7storage18ObSSTableRowGetterD1Ev:83 _ZN9oceanbase7storage30ObSSTableMultiVersionRowGetterD2Ev:1 + 6: 3319 + 7: 3319 _ZN9oceanbase6common18ObWrapperAllocator4freeEPv:3332 + 12: 3112 + 13: 0 + 14: 0 + 15: 0 + 17: 0 + 19: 2926 + 21: 35 + 22: 35 + 24: 35 + 29: 2926 + 30: 2926 + 39: 2926 + 40: 2926 + 41: 2926 + 42: 2926 + 43: 3015 _ZN9oceanbase7storage15ObLobDataReader5resetEv:3619 + 44: 3383 + 45: 3383 + 4: _ZN9oceanbase6common12ObIArrayWrapIPNS_7storage18ObStoreRowIteratorEE2atEl:22498 + 6: 3214 + 20: _ZN9oceanbase7storage18ObStoreRowIterPool5resetEv:5390 + 4.1: 35 + 4.3: 35 + 5: 35 + 6: 35 + 8: 35 + 4.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_7storage15TableTypedItersEE5countEv:420 + 0: 35 + 5: _ZN9oceanbase6common12ObIArrayWrapIPNS_7storage15TableTypedItersEE2atEl:140 + 6: 35 + 7: _ZN9oceanbase7storage15TableTypedIters5resetEv:2835 + 3.1: 35 + 3.3: 35 + 4: 35 + 5: 35 + 6: 35 + 10: 35 + 3.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_7storage18ObStoreRowIteratorEE5countEv:350 + 0: 35 + 4: _ZN9oceanbase6common12ObIArrayWrapIPNS_7storage18ObStoreRowIteratorEE2atEl:175 + 6: 35 + 9: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage18ObStoreRowIteratorELl4ERNS0_12ObIAllocatorELb0EE5resetEv:210 + 0: 35 + 11: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage15TableTypedItersELl8ERNS0_12ObIAllocatorELb0EE5resetEv:315 + 0: 35 + 26: _ZN9oceanbase6common16ObArenaAllocator5resetEv:167776 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:167776 + 4.1: 2926 + 6: 35 + 7: 35 + 13: 2926 + 14: 2926 + 15: 2926 + 18: 2926 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:105 + 0: 35 + 5.1: _ZL12abort_unlessb:385 + 5: 35 + 6: 35 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:2310 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:2310 + 0: 35 + 0.2: 35 + 0.1: _ZN9oceanbase6common7ob_freeEPv:1680 + 2: 35 + 3: 35 + 4: 35 + 5: 35 + 4: _ZL12abort_unlessb:560 + 5: 35 + 6: 35 + 27: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage18ObStoreRowIteratorELl8ENS0_19ModulePageAllocatorELb0EE5resetEv:246869 + 0: 2926 + 0: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage18ObStoreRowIteratorELl8ENS0_19ModulePageAllocatorELb0EE7destroyEv:176400 + 9: 2926 + 11: 35 + 13: 2926 + 15: 2926 + 24: 2926 + 10: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage18ObStoreRowIteratorELl8ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:420 + 4: 35 + 30: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl8ENS0_19ModulePageAllocatorELb0EE5resetEv:246869 + 0: 2926 + 0: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl8ENS0_19ModulePageAllocatorELb0EE7destroyEv:176400 + 9: 2926 + 11: 35 + 13: 2926 + 15: 2926 + 24: 2926 + 10: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl8ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:420 + 4: 35 + 31: _ZN9oceanbase7storage8ObNopPos5resetEv:32186 + 2: 2926 + 32: _ZN9oceanbase7storage9ObRowStat5resetEv:111188 + 0: 2926 + 42: _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema9ObColDescELl32ENS0_19ModulePageAllocatorELb0EE5resetEv:32186 + 0: 2926 _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema9ObColDescELl32ENS0_19ModulePageAllocatorELb0EE7destroyEv:3017 + 4: _ZN9oceanbase12blocksstable20ObFuseRowValueHandle5resetEv:37213 + 3: 3383 _ZN9oceanbase6common15ObKVCacheHandle5resetEv:3384 + 3: _ZN9oceanbase7storage21ObFuseRowCacheFetcherD2Ev:37477 + 0: _ZN9oceanbase6common10ObTabletIDD2Ev:37477 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:37477 + 0: 3407 + 3.1: _ZN9oceanbase7storage21ObFuseRowCacheFetcherD2Ev:385 + 0: _ZN9oceanbase6common10ObTabletIDD2Ev:385 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:385 + 0: 35 + 3.3: _ZN9oceanbase12blocksstable20ObFuseRowValueHandleD2Ev:13628 + 0: 3407 _ZN9oceanbase6common15ObKVCacheHandleD1Ev:3410 + 3.4: _ZN9oceanbase7storage15ObMultipleMergeD2Ev:977963 + 1: 3581 + 2.2: 3581 + 2.5: 35 + 3.1: 35 + 4.1: 35 + 7: 3581 + 8: 35 + 9: 35 + 10: 35 + 12: 35 + 14: 3581 + 15: 35 + 16: 35 + 17: 35 + 19: 35 + 21.2: 3581 _ZN9oceanbase7storage15ObLobDataReaderD1Ev:3634 + 21.3: 35 + 21.4: 35 + 21.5: 3531 _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema9ObColDescELl32ENS0_19ModulePageAllocatorELb0EED2Ev:3584 + 21.9: 3334 _ZN9oceanbase12blocksstable10ObDatumRowD1Ev:3652 + 21.10: 3199 _ZN9oceanbase12blocksstable10ObDatumRowD1Ev:3564 + 21.11: 3219 _ZN9oceanbase12blocksstable10ObDatumRowD1Ev:3540 + 21.12: 3440 _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl8ENS0_19ModulePageAllocatorELb0EED2Ev:3430 + 21.13: 3302 _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage18ObStoreRowIteratorELl8ENS0_19ModulePageAllocatorELb0EED2Ev:3380 + 21.16: 35 + 21.17: 35 + 21.18: 35 + 21.20: 35 + 21.21: 35 + 21.22: 35 + 21.23: 35 + 21.24: 35 + 21.25: 35 + 2.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_7storage18ObStoreRowIteratorEE5countEv:25557 + 0: 3581 + 3: _ZN9oceanbase6common12ObIArrayWrapIPNS_7storage18ObStoreRowIteratorEE2atEl:490 + 6: 35 + 21.6: _ZN9oceanbase7storage15ObGetTableParamD2Ev:295934 + 0.2: 35 + 0.3: 35 + 0: _ZN9oceanbase7storage15ObGetTableParam5resetEv:239729 + 2: 3334 + 3: _ZN9oceanbase6common10SampleInfo5resetEv:130026 + 3: 3334 + 5: 3334 + 6: 3334 + 4: _ZN9oceanbase7storage21ObTabletTableIterator5resetEv:73029 + 2: 3334 _ZN9oceanbase7storage14ObTabletHandle5resetEv:3535 + 3: 3305 _ZN9oceanbase7storage20ObTableStoreIterator5resetEv:3424 + 0.1: _ZN9oceanbase7storage21ObTabletTableIteratorD2Ev:55540 + 0.1: 3308 _ZN9oceanbase7storage20ObTableStoreIteratorD1Ev:3394 + 0.2: 35 + 0.3: 35 + 0.4: 3251 _ZN9oceanbase7storage14ObTabletHandleD1Ev:3380 + 0.5: 35 + 0: _ZN9oceanbase7storage21ObTabletTableIterator5resetEv:28440 + 2: 3458 _ZN9oceanbase7storage14ObTabletHandle5resetEv:3560 + 3: 3652 _ZN9oceanbase7storage20ObTableStoreIterator5resetEv:3752 + 21.7: _ZN9oceanbase7storage8ObNopPosD2Ev:3661 + 2: 3357 _ZN9oceanbase7storage8ObNopPos7destroyEv:3449 + 2.1: 35 + 21.14: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:281316 + 0: 3299 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEED2Ev:231831 + 0: 3299 + 0.3: 35 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:182066 + 4.1: 3299 + 6: 35 + 7: 35 + 13: 3299 + 14: 3299 + 15: 3299 + 18: 3299 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:105 + 0: 35 + 5.1: _ZL12abort_unlessb:385 + 5: 35 + 6: 35 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:2310 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:2310 + 0: 35 + 0.2: 35 + 0.1: _ZN9oceanbase6common7ob_freeEPv:1680 + 2: 35 + 3: 35 + 4: 35 + 5: 35 + 4: _ZL12abort_unlessb:560 + 5: 35 + 6: 35 +_ZN9oceanbase7storage13ObSingleMergeD1Ev:2732597:3248 + 1: 3132 + 3: 3299 + 3.1: 35 + 3.2: 35 + 3.5: 35 + 3.6: 35 + 2: _ZN9oceanbase7storage13ObSingleMerge5resetEv:1531210 + 2: _ZN9oceanbase7storage15ObMultipleMerge5resetEv:1493997 + 3.1: 3195 + 3.3: 3195 + 4: 3214 + 5: 3214 _ZN9oceanbase8memtable21ObMemtableGetIteratorD1Ev:3231 _ZN9oceanbase7storage18ObSSTableRowGetterD1Ev:83 _ZN9oceanbase7storage30ObSSTableMultiVersionRowGetterD2Ev:1 + 6: 3319 + 7: 3319 _ZN9oceanbase6common18ObWrapperAllocator4freeEPv:3332 + 12: 3112 + 13: 0 + 14: 0 + 15: 0 + 17: 0 + 19: 2926 + 21: 35 + 22: 35 + 24: 35 + 29: 2926 + 30: 2926 + 39: 2926 + 40: 2926 + 41: 2926 + 42: 2926 + 43: 3015 _ZN9oceanbase7storage15ObLobDataReader5resetEv:3619 + 44: 3383 + 45: 3383 + 4: _ZN9oceanbase6common12ObIArrayWrapIPNS_7storage18ObStoreRowIteratorEE2atEl:22498 + 6: 3214 + 20: _ZN9oceanbase7storage18ObStoreRowIterPool5resetEv:5390 + 4.1: 35 + 4.3: 35 + 5: 35 + 6: 35 + 8: 35 + 4.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_7storage15TableTypedItersEE5countEv:420 + 0: 35 + 5: _ZN9oceanbase6common12ObIArrayWrapIPNS_7storage15TableTypedItersEE2atEl:140 + 6: 35 + 7: _ZN9oceanbase7storage15TableTypedIters5resetEv:2835 + 3.1: 35 + 3.3: 35 + 4: 35 + 5: 35 + 6: 35 + 10: 35 + 3.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_7storage18ObStoreRowIteratorEE5countEv:350 + 0: 35 + 4: _ZN9oceanbase6common12ObIArrayWrapIPNS_7storage18ObStoreRowIteratorEE2atEl:175 + 6: 35 + 9: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage18ObStoreRowIteratorELl4ERNS0_12ObIAllocatorELb0EE5resetEv:210 + 0: 35 + 11: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage15TableTypedItersELl8ERNS0_12ObIAllocatorELb0EE5resetEv:315 + 0: 35 + 26: _ZN9oceanbase6common16ObArenaAllocator5resetEv:167776 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:167776 + 4.1: 2926 + 6: 35 + 7: 35 + 13: 2926 + 14: 2926 + 15: 2926 + 18: 2926 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:105 + 0: 35 + 5.1: _ZL12abort_unlessb:385 + 5: 35 + 6: 35 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:2310 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:2310 + 0: 35 + 0.2: 35 + 0.1: _ZN9oceanbase6common7ob_freeEPv:1680 + 2: 35 + 3: 35 + 4: 35 + 5: 35 + 4: _ZL12abort_unlessb:560 + 5: 35 + 6: 35 + 27: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage18ObStoreRowIteratorELl8ENS0_19ModulePageAllocatorELb0EE5resetEv:246869 + 0: 2926 + 0: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage18ObStoreRowIteratorELl8ENS0_19ModulePageAllocatorELb0EE7destroyEv:176400 + 9: 2926 + 11: 35 + 13: 2926 + 15: 2926 + 24: 2926 + 10: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage18ObStoreRowIteratorELl8ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:420 + 4: 35 + 30: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl8ENS0_19ModulePageAllocatorELb0EE5resetEv:246869 + 0: 2926 + 0: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl8ENS0_19ModulePageAllocatorELb0EE7destroyEv:176400 + 9: 2926 + 11: 35 + 13: 2926 + 15: 2926 + 24: 2926 + 10: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl8ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:420 + 4: 35 + 31: _ZN9oceanbase7storage8ObNopPos5resetEv:32186 + 2: 2926 + 32: _ZN9oceanbase7storage9ObRowStat5resetEv:111188 + 0: 2926 + 42: _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema9ObColDescELl32ENS0_19ModulePageAllocatorELb0EE5resetEv:32186 + 0: 2926 _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema9ObColDescELl32ENS0_19ModulePageAllocatorELb0EE7destroyEv:3017 + 4: _ZN9oceanbase12blocksstable20ObFuseRowValueHandle5resetEv:37213 + 3: 3383 _ZN9oceanbase6common15ObKVCacheHandle5resetEv:3384 + 3: _ZN9oceanbase7storage21ObFuseRowCacheFetcherD2Ev:37477 + 0: _ZN9oceanbase6common10ObTabletIDD2Ev:37477 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:37477 + 0: 3407 + 3.1: _ZN9oceanbase7storage21ObFuseRowCacheFetcherD2Ev:385 + 0: _ZN9oceanbase6common10ObTabletIDD2Ev:385 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:385 + 0: 35 + 3.3: _ZN9oceanbase12blocksstable20ObFuseRowValueHandleD2Ev:13628 + 0: 3407 _ZN9oceanbase6common15ObKVCacheHandleD1Ev:3410 + 3.4: _ZN9oceanbase7storage15ObMultipleMergeD2Ev:977963 + 1: 3581 + 2.2: 3581 + 2.5: 35 + 3.1: 35 + 4.1: 35 + 7: 3581 + 8: 35 + 9: 35 + 10: 35 + 12: 35 + 14: 3581 + 15: 35 + 16: 35 + 17: 35 + 19: 35 + 21.2: 3581 _ZN9oceanbase7storage15ObLobDataReaderD1Ev:3634 + 21.3: 35 + 21.4: 35 + 21.5: 3531 _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema9ObColDescELl32ENS0_19ModulePageAllocatorELb0EED2Ev:3584 + 21.9: 3334 _ZN9oceanbase12blocksstable10ObDatumRowD1Ev:3652 + 21.10: 3199 _ZN9oceanbase12blocksstable10ObDatumRowD1Ev:3564 + 21.11: 3219 _ZN9oceanbase12blocksstable10ObDatumRowD1Ev:3540 + 21.12: 3440 _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl8ENS0_19ModulePageAllocatorELb0EED2Ev:3430 + 21.13: 3302 _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage18ObStoreRowIteratorELl8ENS0_19ModulePageAllocatorELb0EED2Ev:3380 + 21.16: 35 + 21.17: 35 + 21.18: 35 + 21.20: 35 + 21.21: 35 + 21.22: 35 + 21.23: 35 + 21.24: 35 + 21.25: 35 + 2.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_7storage18ObStoreRowIteratorEE5countEv:25557 + 0: 3581 + 3: _ZN9oceanbase6common12ObIArrayWrapIPNS_7storage18ObStoreRowIteratorEE2atEl:490 + 6: 35 + 21.6: _ZN9oceanbase7storage15ObGetTableParamD2Ev:295934 + 0.2: 35 + 0.3: 35 + 0: _ZN9oceanbase7storage15ObGetTableParam5resetEv:239729 + 2: 3334 + 3: _ZN9oceanbase6common10SampleInfo5resetEv:130026 + 3: 3334 + 5: 3334 + 6: 3334 + 4: _ZN9oceanbase7storage21ObTabletTableIterator5resetEv:73029 + 2: 3334 _ZN9oceanbase7storage14ObTabletHandle5resetEv:3535 + 3: 3305 _ZN9oceanbase7storage20ObTableStoreIterator5resetEv:3424 + 0.1: _ZN9oceanbase7storage21ObTabletTableIteratorD2Ev:55540 + 0.1: 3308 _ZN9oceanbase7storage20ObTableStoreIteratorD1Ev:3394 + 0.2: 35 + 0.3: 35 + 0.4: 3251 _ZN9oceanbase7storage14ObTabletHandleD1Ev:3380 + 0.5: 35 + 0: _ZN9oceanbase7storage21ObTabletTableIterator5resetEv:28440 + 2: 3458 _ZN9oceanbase7storage14ObTabletHandle5resetEv:3560 + 3: 3652 _ZN9oceanbase7storage20ObTableStoreIterator5resetEv:3752 + 21.7: _ZN9oceanbase7storage8ObNopPosD2Ev:3661 + 2: 3357 _ZN9oceanbase7storage8ObNopPos7destroyEv:3449 + 2.1: 35 + 21.14: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:281316 + 0: 3299 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEED2Ev:231831 + 0: 3299 + 0.3: 35 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:182066 + 4.1: 3299 + 6: 35 + 7: 35 + 13: 3299 + 14: 3299 + 15: 3299 + 18: 3299 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:105 + 0: 35 + 5.1: _ZL12abort_unlessb:385 + 5: 35 + 6: 35 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:2310 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:2310 + 0: 35 + 0.2: 35 + 0.1: _ZN9oceanbase6common7ob_freeEPv:1680 + 2: 35 + 3: 35 + 4: 35 + 5: 35 + 4: _ZL12abort_unlessb:560 + 5: 35 + 6: 35 +_ZN9oceanbase11transaction14ObTransService20get_ls_read_snapshotERNS0_8ObTxDescENS0_18ObTxIsolationLevelERKNS_5share6ObLSIDElRNS0_16ObTxReadSnapshotE:2731131:4910 + 0: 82 + 2: 82 + 5: 4716 + 6: 4716 + 9: 4716 + 10: 4716 + 12: 0 + 13.1: 4461 + 14: 26 + 15.1: 26 + 17: 4461 + 18.1: 4522 + 19.2: 4378 + 20: 4378 + 22: 4378 + 23: 4378 + 24: 4581 + 26.1: 4423 + 27.2: 4423 + 27.4: 4423 + 28.2: 518 + 28.3: 518 _ZN9oceanbase6common13ObSEArrayImplINS_11transaction8ObTxPartELl4ENS0_19ModulePageAllocatorELb0EEixEl:515 + 28.5: 566 + 29: 566 _ZN9oceanbase6common13ObSEArrayImplINS_11transaction8ObTxPartELl4ENS0_19ModulePageAllocatorELb0EEixEl:559 + 29.2: 593 _ZN9oceanbase6common13ObSEArrayImplINS_11transaction6ObPairINS_5share6ObLSIDElEELl1ENS0_19ModulePageAllocatorELb0EE9push_backERKS6_:569 + 29.3: 593 + 30.1: 18 + 36: 75 + 38: 4577 + 47: 26 + 50.3: 4797 + 50.4: 82 + 50.6: 82 + 50.7: 82 + 50.8: 26 + 50.24: 82 + 59: 4797 + 9: _ZNK9oceanbase11transaction8ObTxDesc8is_in_txEv:33012 + 0: 4716 + 13.1: _ZNK9oceanbase5share6ObLSID8is_validEv:17844 + 0: 4461 + 17: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEEC2ERS3_:152623 + 1: 4461 + 4: 4500 + 5.1: 26 + 4: _ZN9oceanbase6common10ObSpinLock4lockEv:84759 + 2: 4461 _ZN9oceanbase6common12ObLatchMutex4lockEjl:4462 + 18: _ZN9oceanbase11transaction14ObTransService16tx_sanity_check_ERKNS0_8ObTxDescE:462736 + 2: 4500 + 3: 4500 + 4: 18 + 4.1: 18 + 5: 18 + 6.1: 4500 + 7: 82 + 8.1: 82 + 10: 4500 + 17: 26 + 20: 26 + 23: 26 + 27: 18 + 30: 26 + 33: 4522 + 34.1: 18 + 35: 18 + 37: 18 + 3: _ZN9oceanbase6common16ObClockGenerator8getClockEv:95176 + 4: 4500 + 5.1: 26 + 8: 4500 + 6: _ZN9oceanbase6common16ObClockGenerator6get_usEv:260 + 2: 26 + 4: _ZN9oceanbase11transaction16ObTransStatistic12get_instanceEv:1908 + 2: 18 + 2.1: 18 + 2.2: 18 + 2.3: 18 + 2.4: 18 + 2.6: 18 + 19.1: _ZN9oceanbase11transaction14ObTransService23acquire_local_snapshot_ERKNS_5share6ObLSIDERl:796704 + 7: 4441 + 8: 4441 _ZN9oceanbase11transaction10ObTxCtxMgr17get_ls_tx_ctx_mgrERKNS_5share6ObLSIDERPNS0_12ObLSTxCtxMgrE:4956 + 9.1: 26 + 10.1: 4514 _ZN9oceanbase11transaction12ObLSTxCtxMgr23in_leader_serving_stateEv:4258 + 11: 26 + 15.1: 4324 + 16: 26 + 18: 4324 + 20: 4324 + 21: 4324 _ZN9oceanbase11transaction10ObTxCtxMgr20revert_ls_tx_ctx_mgrEPNS0_12ObLSTxCtxMgrE:4430 + 23.1: 4475 _ZZN9oceanbase11transaction14ObTransService23acquire_local_snapshot_ERKNS_5share6ObLSIDERlENK6$_1031clEPKc.93feb755617c21c32b229b78773c290c:4487 + 24: 4378 + 15.1: _ZNK9oceanbase11transaction14ObTxVersionMgr17get_max_commit_tsEb:320030 + 2: 4514 + 3: 4514 + 4: 4514 + 5: 4514 + 7.1: 4514 _ZZNK9oceanbase11transaction14ObTxVersionMgr17get_max_commit_tsEbENKUlPKcE_clES3_:4471 + 8: 4324 + 5: _ZN9oceanbase6common3maxEll:31598 + 2: 4514 + 21: _ZN9oceanbase5share6ObLSIDaSERKS1_:30646 + 0: 4378 + 23: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction6ObPairINS_5share6ObLSIDElEELl1ENS0_19ModulePageAllocatorELb0EE5resetEv:35172 + 0: 4378 _ZN9oceanbase6common13ObSEArrayImplINS_11transaction6ObPairINS_5share6ObLSIDElEELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:4552 + 25: _ZN9oceanbase11transaction9ObTransIDaSERKS1_:53076 + 1: 4423 + 26: _ZN9oceanbase6common10ObSequence14get_max_seq_noEv:44230 + 2: 4423 + 27: _ZNK9oceanbase6common12ObIArrayWrapINS_11transaction8ObTxPartEE5countEv:35384 + 0: 4423 + 28: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction8ObTxPartELl4ENS0_19ModulePageAllocatorELb0EEixEl:11332 + 2.1: 518 + 2.2: 518 + 3.1: 18 + 5: 518 + 28.1: _ZNK9oceanbase5share6ObLSIDeqERKS1_:7770 + 0: 518 + 28.4: _ZNK9oceanbase11transaction8ObTxPart8is_cleanEv:4528 + 0: 566 + 29.1: _ZN9oceanbase11transaction6ObPairINS_5share6ObLSIDElEC2ERKS3_RKl:8895 + 0: 593 + 0: _ZN9oceanbase5share6ObLSIDC2ERKS1_:4151 + 0: 593 + 29.4: _ZN9oceanbase11transaction6ObPairINS_5share6ObLSIDElED2Ev:180 + 0: _ZN9oceanbase5share6ObLSIDD2Ev:180 + 0: _ZN9oceanbase5share6ObLSID5resetEv:180 + 0: 18 + 45: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEED2Ev:102332 + 2: 4577 + 3: 4577 + 3.1: 4339 + 3.2: 18 + 4.1: 26 + 4.5: 18 + 3: _ZN9oceanbase6common10ObSpinLock6unlockEv:5165 + 2: 4577 _ZN9oceanbase6common12ObLatchMutex6unlockEv:4500 + 45.1: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEED2Ev:1296 + 2: 18 + 3: 18 + 3.1: 18 + 3.2: 18 + 4.1: 18 + 4.5: 18 + 3: _ZN9oceanbase6common10ObSpinLock6unlockEv:90 + 2: 18 + 50.3: _ZN9oceanbase3lib20is_trace_log_enabledEv:38246 + 2: 4339 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:4542 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:33579 + 2: 4797 + 50.9: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EE12check_unlockEv:2870 + 2: 82 + 3: _ZN9oceanbase3lib7ObMutex6unlockEv:1640 + 0: 82 + 50.16: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EE10check_lockEv:3444 + 2: 82 + 3: _ZN9oceanbase3lib7ObMutex4lockEv:2542 + 0: 82 + 50.17: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EE14get_buffer_posEv:656 + 0: 82 + 50.18: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EE10get_bufferEv:1312 + 0: 82 + 50.20: _ZNK9oceanbase5share6ObLSID2idEv:246 + 0: 82 + 50.21: _ZNK9oceanbase11transaction9ObTransID6get_idEv:328 + 0: 82 + 50.22: _ZNK9oceanbase11transaction15ObTransHashLinkINS0_8ObTxDescEE7get_refEv:328 + 0: 82 + 50.23: _Z9ob_gettidv:6556 + 3: 82 + 4: 26 + 2: _Z13get_tid_cachev:3246 + 7: 82 + 7.1: 26 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:598 + 0: 26 +_ZN9oceanbase6common9ObCharset11strlen_charENS0_15ObCollationTypeEPKcl:2700443:736 + 3: 700 + 5: 700 + 5.3: 700 + 6: 700 + 7: 700 + 8.1: 0 + 10: 700 + 11: 700 + 12.1: 0 + 14: 700 + 17: 724 + 14: _Z14ob_numchars_mbPK13ObCharsetInfoPKcS3_:2615311 + 3.1: 77350 + 6: 77350 + 6.3: 77350 + 7: 77350 + 6: _ZL11my_ismbcharPK13ObCharsetInfoPKcS3_:1278087 + 2: 74698 _ZL19ob_ismbchar_utf8mb4PK13ObCharsetInfoPKcS3_.5aa8bf9a2f1d92c2672c2bb9fbfc2e97:78202 +_ZN9oceanbase6common20check_stack_overflowERblPl:2683867:13875 + 3: 12889 + 4: 12889 + 5: 12889 + 6: 12889 + 7: 12889 + 8: 12889 + 9: 12889 + 10: 12889 + 11.1: 0 + 12: 0 + 14: 12889 + 15: 12889 + 16: 12889 + 17: 0 + 18: 0 + 19.1: 0 + 21.1: 12889 + 22: 0 + 23: 0 + 24.1: 0 + 26: 12889 + 27: 12889 + 28: 9501 + 31: 13023 + 32: 0 + 33.1: 0 + 38: 13023 + 10: _ZN9oceanbase6common13get_stackattrERPvRm:747562 + 2: 12889 + 3: 12889 + 4: 12889 + 5: 12889 + 8: 0 + 8.1: 0 + 9: 0 + 10.1: 0 + 11.1: 0 + 12: 0 + 13.1: 0 + 14.1: 0 + 15: 0 + 16.1: 0 + 18: 0 + 19: 0 + 20: 0 +_ZN9oceanbase3sql20ObAggregateProcessor7processERNS1_8GroupRowEb:2665501:26058 + 1: 24454 + 2: 24454 + 3: 24454 + 4: 24454 + 5: 24454 + 6: 0 + 8: 0 + 9: 0 + 10: 395 + 11.1: 395 + 13: 0 + 17: 0 + 18: 395 + 19.1: 395 + 21: 0 + 24: 0 + 25: 0 + 26: 0 + 27: 0 + 28: 395 + 29.1: 395 + 31.1: 0 + 32: 395 + 33.1: 395 + 35: 0 + 38: 0 + 39: 395 + 40: 0 + 41: 395 + 42.1: 395 + 44: 0 + 44.2: 0 + 44.3: 0 + 45: 0 + 52: 0 + 52.1: 26935 _ZN9oceanbase3sql20ObAggregateProcessor13inner_processERNS1_8GroupRowEllb:24859 + 53.1: 395 + 55: 26935 + 10: _ZNK9oceanbase3sql6ObExpr4evalERNS0_9ObEvalCtxERPNS_6common7ObDatumE:6320 + 4: 0 + 6: 0 + 7: 0 + 9: 0 + 10: 0 + 10.1: 0 + 11: 0 + 13: 395 + 15.1: 0 + 15.2: 0 + 17: 0 + 18: 0 + 20: 0 + 21: 0 + 22: 0 + 9: _ZNK9oceanbase3sql6ObExpr15is_batch_resultEv:0 + 0: 0 + 11: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 24: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:3160 + 0: 395 + 13: _ZNK9oceanbase6common7ObDatum7get_intEv:0 + 0: 0 + 21.1: _ZNK9oceanbase6common7ObDatum7get_intEv:0 + 0: 0 + 35: _ZN9oceanbase6common12ObIArrayWrapIlE2atEl:0 + 6: 0 + 44.2: _ZN9oceanbase6common12ObIArrayWrapIlE2atEl:0 + 6: 0 + 45: _ZN9oceanbase6common12ObIArrayWrapIlE2atEl:0 + 6: 0 +_ZN9oceanbase3sql14ObPlanCacheCtxD2Ev:2615600:5038 + 0: 5255 _ZN9oceanbase6common16ObFixedArrayImplIlNS0_12ObIAllocatorEED2Ev:5223 + 0.4: 4897 _ZN9oceanbase6common13ObSEArrayImplINS0_8ObStringELl1ENS0_19ModulePageAllocatorELb1EED2Ev:4946 + 0.5: 5069 _ZN9oceanbase6common16ObFixedArrayImplINS0_13ObCharsetTypeENS0_12ObIAllocatorEED2Ev:5578 + 0.8: 5025 _ZN9oceanbase6common16ObFixedArrayImplINS_3sql14PsNotParamInfoENS0_12ObIAllocatorEED2Ev:5294 + 0.9: 5255 _ZN9oceanbase6common16ObFixedArrayImplINS_3sql12NotParamInfoENS0_12ObIAllocatorEED2Ev:5262 + 0.1: _ZN9oceanbase6common16ObFixedArrayImplINS_3sql18ObFastParserResultENS0_12ObIAllocatorEED2Ev:377340 + 0: 4803 + 0.3: 22 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS_3sql18ObFastParserResultENS0_12ObIAllocatorEE7destroyEv:290710 + 2: 4803 + 5: 4803 + 6.1: 22 + 6.3: 22 + 7: 22 + 9: 22 + 10: 22 + 12: 4803 + 13: 4803 + 15: 4803 + 0.2: _ZN9oceanbase6common8ObBitSetILl256ENS0_19ModulePageAllocatorELb1EED2Ev:124878 + 0: 4803 _ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb1EED2Ev:4936 + 0.3: _ZN9oceanbase6common16ObFixedArrayImplINS_3sql19SelectItemParamInfoENS0_12ObIAllocatorEED2Ev:384672 + 0: 4897 + 0.3: 22 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS_3sql19SelectItemParamInfoENS0_12ObIAllocatorEE7destroyEv:296350 + 2: 4897 + 5: 4897 + 6.1: 22 + 6.3: 22 + 7: 22 + 9: 22 + 10: 22 + 12: 4897 + 13: 4897 + 15: 4897 + 0.6: _ZN9oceanbase6common8ObBitSetILl256ENS0_19ModulePageAllocatorELb1EED2Ev:406776 + 0: 4876 + 0: _ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb1EED2Ev:372644 + 1: 4876 + 3.2: 22 + 2: _ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb1EE7destroyEv:284700 + 9: 4876 + 11: 22 + 13: 4876 + 15: 4876 + 24: 4876 + 10: _ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb1EE14internal_free_EPv:1628 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:1628 + 0: 22 + 0.2: 22 + 0.1: _ZN9oceanbase6common7ob_freeEPv:1166 + 2: 22 + 3: 22 + 4: 22 + 5: 22 + 4: _ZL12abort_unlessb:352 + 5: 22 + 6: 22 + 0.7: _ZN9oceanbase6common8ObBitSetILl256ENS0_19ModulePageAllocatorELb1EED2Ev:73180 + 0: 4876 _ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb1EED2Ev:5022 + 0.10: _ZN9oceanbase3sql18ObFastParserResultD2Ev:815507 + 0: _ZN9oceanbase6common16ObFixedArrayImplIPKNS0_10ObObjParamENS0_12ObIAllocatorEED2Ev:366540 + 0: 4976 + 0.3: 22 + 0: _ZN9oceanbase6common16ObFixedArrayImplIPKNS0_10ObObjParamENS0_12ObIAllocatorEE7destroyEv:276796 + 2: 4976 + 5: 4976 + 9: 22 + 10: 22 + 12: 5061 + 13: 5061 + 15: 5061 + 0.1: _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql9ObPCParamENS0_12ObIAllocatorEED2Ev:448967 + 0: 5061 + 0.3: 22 + 0: _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql9ObPCParamENS0_12ObIAllocatorEE7destroyEv:357693 + 2: 5061 + 5: 5061 + 9: 4539 _ZN9oceanbase6common16ObArenaAllocator4freeEPv:4619 + 10: 4709 + 12: 5211 + 13: 5211 + 15: 5211 +_ZSt22__move_median_to_firstIPPN9oceanbase3sql17ObChunkDatumStore9StoredRowEN9__gnu_cxx5__ops15_Iter_comp_iterINS1_12ObSortOpImpl16CopyableComparerEEEEvT_SC_SC_SC_T0_:2612948:4916 + 2: 4653 + 3: 4763 + 5: 2285 + 7: 1436 + 12: 2353 + 14: 1518 + 18: 4847 + 3: _ZN9__gnu_cxx5__ops15_Iter_comp_iterIN9oceanbase3sql12ObSortOpImpl16CopyableComparerEEclIPPNS3_17ObChunkDatumStore9StoredRowESB_EEbT_T0_:844393 + 1: 4653 + 1: _ZN9oceanbase3sql12ObSortOpImpl16CopyableComparerclEPKNS0_17ObChunkDatumStore9StoredRowES6_:746680 + 2: _ZN9oceanbase3sql12ObSortOpImpl7CompareclEPKNS0_17ObChunkDatumStore9StoredRowES6_:746680 + 6: 4653 + 8.1: 4653 + 9: 0 + 10.1: 0 + 11.1: 4653 + 12.1: 0 + 14: 0 + 15: 0 + 17: 4653 + 17.2: 4653 + 17.3: 4653 + 17.5: 0 + 18: 4653 + 19: 4653 + 20: 4653 + 20.1: 4653 _ZN9oceanbase6common21ObNullSafeDatumStrCmpILNS0_15ObCollationTypeE45ELb0ELb1EE3cmpERKNS0_7ObDatumES6_:4884 + 21: 4873 + 22: 2247 + 23.1: 2441 + 24: 2441 + 28: 4763 + 8.1: _ZNK9oceanbase3sql12ObSortOpImpl7Compare9is_initedEv:32571 + 0: 4653 + 11.1: _ZN9oceanbase3sql12ObSortOpImpl7Compare17fast_check_statusEv:130284 + 3: 4653 + 4: 0 + 4: _ZN9oceanbase3sql13ObExecContext12check_statusEv:0 + 2: 0 + 3: 0 + 4: 0 + 5.1: 0 + 6.1: 0 + 7: 0 + 8.1: 0 + 9.1: 0 + 10: 0 + 11.1: 0 + 13.1: 0 + 14.1: 0 + 16: 0 + 17.1: 0 + 18.1: 0 + 18.2: 0 + 19: 0 + 21: 0 + 22: 0 + 23.1: 0 + 24: 0 + 25: 0 + 28: 0 + 6.1: _ZNK9oceanbase3sql17ObPhysicalPlanCtx10is_timeoutEPl:0 + 10: 0 + 2: _ZN9oceanbase6common16ObClockGenerator8getClockEv:0 + 4: 0 + 5.1: 0 + 8: 0 + 6: _ZN9oceanbase6common16ObClockGenerator6get_usEv:0 + 2: 0 + 12.1: _ZNK9oceanbase3sql16ObSQLSessionInfo12is_terminateERi:0 + 3: 0 + 5.1: 0 + 9: 0 + 12.1: 0 + 16: 0 + 19: 0 + 3: _ZNK9oceanbase3sql18ObBasicSessionInfo17get_session_stateEv:0 + 0: 0 + 14.1: _ZN9oceanbase6common14IS_INTERRUPTEDEv:0 + 6.1: 0 + 2: _ZN9oceanbase6common11get_checkerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.1: _ZN9oceanbase6common18ObInterruptCheckerC2Ev:0 + 0.1: _ZN9oceanbase6common15ObInterruptCodeC2Ev:0 + 0: 0 + 0: _ZN9oceanbase5obrpc20ObInterruptStackInfoC2Ev:0 + 0: 0 + 2: 0 + 0.2: _Z9ob_gettidv:0 + 3: 0 + 4: 0 + 2: _Z13get_tid_cachev:0 + 7: 0 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 + 15: _ZN9oceanbase6common18GET_INTERRUPT_CODEEv:0 + 2: 0 + 2.1: 0 + 2.3: 0 + 7.1: 0 + 2.2: _ZN9oceanbase6common15ObInterruptCodeC2Ei:0 + 0: 0 + 0: _ZN9oceanbase5obrpc20ObInterruptStackInfoC2Ev:0 + 0: 0 + 2: 0 + 3: _ZN9oceanbase6common11get_checkerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.1: _ZN9oceanbase6common18ObInterruptCheckerC2Ev:0 + 0.1: _ZN9oceanbase6common15ObInterruptCodeC2Ev:0 + 0: 0 + 0: _ZN9oceanbase5obrpc20ObInterruptStackInfoC2Ev:0 + 0: 0 + 2: 0 + 0.2: _Z9ob_gettidv:0 + 3: 0 + 4: 0 + 2: _Z13get_tid_cachev:0 + 7: 0 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 + 18.1: _ZN9oceanbase3lib6Worker4selfEv:0 + 3: 0 + 4: 0 + 22: _ZN9oceanbase3sql13ObExecContext18check_extra_statusEv:0 + 3: 0 + 4: 0 + 5.1: 0 + 5.3: 0 + 5.5: 0 + 6: 0 + 7.1: 0 + 11: 0 + 3: _ZNK9oceanbase6common7ObDListINS_3sql19ObIExtraStatusCheckEE8is_emptyEv:0 + 0: 0 + 5.5: _ZN9oceanbase6common11ObDLinkBaseINS_3sql19ObIExtraStatusCheckEE8get_nextEv:0 + 0: 0 + 18: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql20ObSortFieldCollationEE2atEl:18612 + 6: 4653 + 20: _ZNK9oceanbase6common12ObIArrayWrapINS0_9ObCmpFuncEE2atEl:18612 + 6: 4653 + 5: _ZN9__gnu_cxx5__ops15_Iter_comp_iterIN9oceanbase3sql12ObSortOpImpl16CopyableComparerEEclIPPNS3_17ObChunkDatumStore9StoredRowESB_EEbT_T0_:402432 + 1: 4763 + 1: _ZN9oceanbase3sql12ObSortOpImpl16CopyableComparerclEPKNS0_17ObChunkDatumStore9StoredRowES6_:363426 + 2: _ZN9oceanbase3sql12ObSortOpImpl7CompareclEPKNS0_17ObChunkDatumStore9StoredRowES6_:363426 + 6: 2247 + 8.1: 2247 + 9: 0 + 10.1: 0 + 11.1: 2247 + 12.1: 0 + 14: 0 + 15: 0 + 17: 2247 + 17.2: 2247 + 17.3: 2247 + 17.5: 0 + 18: 2247 + 19: 2247 + 20: 2247 + 20.1: 2247 _ZN9oceanbase6common21ObNullSafeDatumStrCmpILNS0_15ObCollationTypeE45ELb0ELb1EE3cmpERKNS0_7ObDatumES6_:2363 + 21: 2369 + 22: 980 + 23.1: 1382 + 24: 1382 + 28: 2285 + 8.1: _ZNK9oceanbase3sql12ObSortOpImpl7Compare9is_initedEv:15729 + 0: 2247 + 11.1: _ZN9oceanbase3sql12ObSortOpImpl7Compare17fast_check_statusEv:62916 + 3: 2247 + 4: 0 + 4: _ZN9oceanbase3sql13ObExecContext12check_statusEv:0 + 2: 0 + 3: 0 + 4: 0 + 5.1: 0 + 6.1: 0 + 7: 0 + 8.1: 0 + 9.1: 0 + 10: 0 + 11.1: 0 + 13.1: 0 + 14.1: 0 + 16: 0 + 17.1: 0 + 18.1: 0 + 18.2: 0 + 19: 0 + 21: 0 + 22: 0 + 23.1: 0 + 24: 0 + 25: 0 + 28: 0 + 6.1: _ZNK9oceanbase3sql17ObPhysicalPlanCtx10is_timeoutEPl:0 + 10: 0 + 2: _ZN9oceanbase6common16ObClockGenerator8getClockEv:0 + 4: 0 + 5.1: 0 + 8: 0 + 6: _ZN9oceanbase6common16ObClockGenerator6get_usEv:0 + 2: 0 + 12.1: _ZNK9oceanbase3sql16ObSQLSessionInfo12is_terminateERi:0 + 3: 0 + 5.1: 0 + 9: 0 + 12.1: 0 + 16: 0 + 19: 0 + 3: _ZNK9oceanbase3sql18ObBasicSessionInfo17get_session_stateEv:0 + 0: 0 + 14.1: _ZN9oceanbase6common14IS_INTERRUPTEDEv:0 + 6.1: 0 + 2: _ZN9oceanbase6common11get_checkerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.1: _ZN9oceanbase6common18ObInterruptCheckerC2Ev:0 + 0.1: _ZN9oceanbase6common15ObInterruptCodeC2Ev:0 + 0: 0 + 0: _ZN9oceanbase5obrpc20ObInterruptStackInfoC2Ev:0 + 0: 0 + 2: 0 + 0.2: _Z9ob_gettidv:0 + 3: 0 + 4: 0 + 2: _Z13get_tid_cachev:0 + 7: 0 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 + 15: _ZN9oceanbase6common18GET_INTERRUPT_CODEEv:0 + 2: 0 + 2.1: 0 + 2.3: 0 + 7.1: 0 + 2.2: _ZN9oceanbase6common15ObInterruptCodeC2Ei:0 + 0: 0 + 0: _ZN9oceanbase5obrpc20ObInterruptStackInfoC2Ev:0 + 0: 0 + 2: 0 + 3: _ZN9oceanbase6common11get_checkerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.1: _ZN9oceanbase6common18ObInterruptCheckerC2Ev:0 + 0.1: _ZN9oceanbase6common15ObInterruptCodeC2Ev:0 + 0: 0 + 0: _ZN9oceanbase5obrpc20ObInterruptStackInfoC2Ev:0 + 0: 0 + 2: 0 + 0.2: _Z9ob_gettidv:0 + 3: 0 + 4: 0 + 2: _Z13get_tid_cachev:0 + 7: 0 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 + 18.1: _ZN9oceanbase3lib6Worker4selfEv:0 + 3: 0 + 4: 0 + 22: _ZN9oceanbase3sql13ObExecContext18check_extra_statusEv:0 + 3: 0 + 4: 0 + 5.1: 0 + 5.3: 0 + 5.5: 0 + 6: 0 + 7.1: 0 + 11: 0 + 3: _ZNK9oceanbase6common7ObDListINS_3sql19ObIExtraStatusCheckEE8is_emptyEv:0 + 0: 0 + 5.5: _ZN9oceanbase6common11ObDLinkBaseINS_3sql19ObIExtraStatusCheckEE8get_nextEv:0 + 0: 0 + 18: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql20ObSortFieldCollationEE2atEl:8988 + 6: 2247 + 20: _ZNK9oceanbase6common12ObIArrayWrapINS0_9ObCmpFuncEE2atEl:8988 + 6: 2247 + 6: _ZSt9iter_swapIPPN9oceanbase3sql17ObChunkDatumStore9StoredRowES5_EvT_T0_:9810 + 28: _ZSt4swapIPN9oceanbase3sql17ObChunkDatumStore9StoredRowEEvRT_S6_:9810 + 9: 981 + 7: _ZN9__gnu_cxx5__ops15_Iter_comp_iterIN9oceanbase3sql12ObSortOpImpl16CopyableComparerEEclIPPNS3_17ObChunkDatumStore9StoredRowESB_EEbT_T0_:231851 + 1: 1305 + 1: _ZN9oceanbase3sql12ObSortOpImpl16CopyableComparerclEPKNS0_17ObChunkDatumStore9StoredRowES6_:208361 + 2: _ZN9oceanbase3sql12ObSortOpImpl7CompareclEPKNS0_17ObChunkDatumStore9StoredRowES6_:208361 + 6: 1305 + 8.1: 1305 + 9: 0 + 10.1: 0 + 11.1: 1305 + 12.1: 0 + 14: 0 + 15: 0 + 17: 1305 + 17.2: 1305 + 17.3: 1305 + 17.5: 0 + 18: 1305 + 19: 1305 + 20: 1305 + 20.1: 1305 _ZN9oceanbase6common21ObNullSafeDatumStrCmpILNS0_15ObCollationTypeE45ELb0ELb1EE3cmpERKNS0_7ObDatumES6_:1331 + 21: 1463 + 22: 702 + 23.1: 715 + 24: 715 + 28: 1436 + 8.1: _ZNK9oceanbase3sql12ObSortOpImpl7Compare9is_initedEv:9135 + 0: 1305 + 11.1: _ZN9oceanbase3sql12ObSortOpImpl7Compare17fast_check_statusEv:36540 + 3: 1305 + 4: 0 + 4: _ZN9oceanbase3sql13ObExecContext12check_statusEv:0 + 2: 0 + 3: 0 + 4: 0 + 5.1: 0 + 6.1: 0 + 7: 0 + 8.1: 0 + 9.1: 0 + 10: 0 + 11.1: 0 + 13.1: 0 + 14.1: 0 + 16: 0 + 17.1: 0 + 18.1: 0 + 18.2: 0 + 19: 0 + 21: 0 + 22: 0 + 23.1: 0 + 24: 0 + 25: 0 + 28: 0 + 6.1: _ZNK9oceanbase3sql17ObPhysicalPlanCtx10is_timeoutEPl:0 + 10: 0 + 2: _ZN9oceanbase6common16ObClockGenerator8getClockEv:0 + 4: 0 + 5.1: 0 + 8: 0 + 6: _ZN9oceanbase6common16ObClockGenerator6get_usEv:0 + 2: 0 + 12.1: _ZNK9oceanbase3sql16ObSQLSessionInfo12is_terminateERi:0 + 3: 0 + 5.1: 0 + 9: 0 + 12.1: 0 + 16: 0 + 19: 0 + 3: _ZNK9oceanbase3sql18ObBasicSessionInfo17get_session_stateEv:0 + 0: 0 + 14.1: _ZN9oceanbase6common14IS_INTERRUPTEDEv:0 + 6.1: 0 + 2: _ZN9oceanbase6common11get_checkerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.1: _ZN9oceanbase6common18ObInterruptCheckerC2Ev:0 + 0.1: _ZN9oceanbase6common15ObInterruptCodeC2Ev:0 + 0: 0 + 0: _ZN9oceanbase5obrpc20ObInterruptStackInfoC2Ev:0 + 0: 0 + 2: 0 + 0.2: _Z9ob_gettidv:0 + 3: 0 + 4: 0 + 2: _Z13get_tid_cachev:0 + 7: 0 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 + 15: _ZN9oceanbase6common18GET_INTERRUPT_CODEEv:0 + 2: 0 + 2.1: 0 + 2.3: 0 + 7.1: 0 + 2.2: _ZN9oceanbase6common15ObInterruptCodeC2Ei:0 + 0: 0 + 0: _ZN9oceanbase5obrpc20ObInterruptStackInfoC2Ev:0 + 0: 0 + 2: 0 + 3: _ZN9oceanbase6common11get_checkerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.1: _ZN9oceanbase6common18ObInterruptCheckerC2Ev:0 + 0.1: _ZN9oceanbase6common15ObInterruptCodeC2Ev:0 + 0: 0 + 0: _ZN9oceanbase5obrpc20ObInterruptStackInfoC2Ev:0 + 0: 0 + 2: 0 + 0.2: _Z9ob_gettidv:0 + 3: 0 + 4: 0 + 2: _Z13get_tid_cachev:0 + 7: 0 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 + 18.1: _ZN9oceanbase3lib6Worker4selfEv:0 + 3: 0 + 4: 0 + 22: _ZN9oceanbase3sql13ObExecContext18check_extra_statusEv:0 + 3: 0 + 4: 0 + 5.1: 0 + 5.3: 0 + 5.5: 0 + 6: 0 + 7.1: 0 + 11: 0 + 3: _ZNK9oceanbase6common7ObDListINS_3sql19ObIExtraStatusCheckEE8is_emptyEv:0 + 0: 0 + 5.5: _ZN9oceanbase6common11ObDLinkBaseINS_3sql19ObIExtraStatusCheckEE8get_nextEv:0 + 0: 0 + 18: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql20ObSortFieldCollationEE2atEl:5220 + 6: 1305 + 20: _ZNK9oceanbase6common12ObIArrayWrapINS0_9ObCmpFuncEE2atEl:5220 + 6: 1305 + 8: _ZSt9iter_swapIPPN9oceanbase3sql17ObChunkDatumStore9StoredRowES5_EvT_T0_:4308 + 28: _ZSt4swapIPN9oceanbase3sql17ObChunkDatumStore9StoredRowEEvRT_S6_:4308 + 9: 1436 + 12: _ZN9__gnu_cxx5__ops15_Iter_comp_iterIN9oceanbase3sql12ObSortOpImpl16CopyableComparerEEclIPPNS3_17ObChunkDatumStore9StoredRowESB_EEbT_T0_:426592 + 1: 2420 + 1: _ZN9oceanbase3sql12ObSortOpImpl16CopyableComparerclEPKNS0_17ObChunkDatumStore9StoredRowES6_:399972 + 2: _ZN9oceanbase3sql12ObSortOpImpl7CompareclEPKNS0_17ObChunkDatumStore9StoredRowES6_:399972 + 6: 2420 + 8.1: 2420 + 9: 0 + 10.1: 0 + 11.1: 2420 + 12.1: 0 + 14: 0 + 15: 0 + 17: 2420 + 17.2: 2420 + 17.3: 2420 + 17.5: 0 + 18: 2420 + 19: 2420 + 20: 2420 + 20.1: 2420 _ZN9oceanbase6common21ObNullSafeDatumStrCmpILNS0_15ObCollationTypeE45ELb0ELb1EE3cmpERKNS0_7ObDatumES6_:2524 + 21: 2504 + 22: 955 + 23.1: 1529 + 24: 1529 + 28: 2353 + 8.1: _ZNK9oceanbase3sql12ObSortOpImpl7Compare9is_initedEv:16940 + 0: 2420 + 11.1: _ZN9oceanbase3sql12ObSortOpImpl7Compare17fast_check_statusEv:67760 + 3: 2420 + 4: 0 + 4: _ZN9oceanbase3sql13ObExecContext12check_statusEv:0 + 2: 0 + 3: 0 + 4: 0 + 5.1: 0 + 6.1: 0 + 7: 0 + 8.1: 0 + 9.1: 0 + 10: 0 + 11.1: 0 + 13.1: 0 + 14.1: 0 + 16: 0 + 17.1: 0 + 18.1: 0 + 18.2: 0 + 19: 0 + 21: 0 + 22: 0 + 23.1: 0 + 24: 0 + 25: 0 + 28: 0 + 6.1: _ZNK9oceanbase3sql17ObPhysicalPlanCtx10is_timeoutEPl:0 + 10: 0 + 2: _ZN9oceanbase6common16ObClockGenerator8getClockEv:0 + 4: 0 + 5.1: 0 + 8: 0 + 6: _ZN9oceanbase6common16ObClockGenerator6get_usEv:0 + 2: 0 + 12.1: _ZNK9oceanbase3sql16ObSQLSessionInfo12is_terminateERi:0 + 3: 0 + 5.1: 0 + 9: 0 + 12.1: 0 + 16: 0 + 19: 0 + 3: _ZNK9oceanbase3sql18ObBasicSessionInfo17get_session_stateEv:0 + 0: 0 + 14.1: _ZN9oceanbase6common14IS_INTERRUPTEDEv:0 + 6.1: 0 + 2: _ZN9oceanbase6common11get_checkerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.1: _ZN9oceanbase6common18ObInterruptCheckerC2Ev:0 + 0.1: _ZN9oceanbase6common15ObInterruptCodeC2Ev:0 + 0: 0 + 0: _ZN9oceanbase5obrpc20ObInterruptStackInfoC2Ev:0 + 0: 0 + 2: 0 + 0.2: _Z9ob_gettidv:0 + 3: 0 + 4: 0 + 2: _Z13get_tid_cachev:0 + 7: 0 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 + 15: _ZN9oceanbase6common18GET_INTERRUPT_CODEEv:0 + 2: 0 + 2.1: 0 + 2.3: 0 + 7.1: 0 + 2.2: _ZN9oceanbase6common15ObInterruptCodeC2Ei:0 + 0: 0 + 0: _ZN9oceanbase5obrpc20ObInterruptStackInfoC2Ev:0 + 0: 0 + 2: 0 + 3: _ZN9oceanbase6common11get_checkerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.1: _ZN9oceanbase6common18ObInterruptCheckerC2Ev:0 + 0.1: _ZN9oceanbase6common15ObInterruptCodeC2Ev:0 + 0: 0 + 0: _ZN9oceanbase5obrpc20ObInterruptStackInfoC2Ev:0 + 0: 0 + 2: 0 + 0.2: _Z9ob_gettidv:0 + 3: 0 + 4: 0 + 2: _Z13get_tid_cachev:0 + 7: 0 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 + 18.1: _ZN9oceanbase3lib6Worker4selfEv:0 + 3: 0 + 4: 0 + 22: _ZN9oceanbase3sql13ObExecContext18check_extra_statusEv:0 + 3: 0 + 4: 0 + 5.1: 0 + 5.3: 0 + 5.5: 0 + 6: 0 + 7.1: 0 + 11: 0 + 3: _ZNK9oceanbase6common7ObDListINS_3sql19ObIExtraStatusCheckEE8is_emptyEv:0 + 0: 0 + 5.5: _ZN9oceanbase6common11ObDLinkBaseINS_3sql19ObIExtraStatusCheckEE8get_nextEv:0 + 0: 0 + 18: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql20ObSortFieldCollationEE2atEl:9680 + 6: 2420 + 20: _ZNK9oceanbase6common12ObIArrayWrapINS0_9ObCmpFuncEE2atEl:9680 + 6: 2420 + 13: _ZSt9iter_swapIPPN9oceanbase3sql17ObChunkDatumStore9StoredRowES5_EvT_T0_:10604 + 28: _ZSt4swapIPN9oceanbase3sql17ObChunkDatumStore9StoredRowEEvRT_S6_:10604 + 9: 964 + 14: _ZN9__gnu_cxx5__ops15_Iter_comp_iterIN9oceanbase3sql12ObSortOpImpl16CopyableComparerEEclIPPNS3_17ObChunkDatumStore9StoredRowESB_EEbT_T0_:247108 + 1: 1412 + 1: _ZN9oceanbase3sql12ObSortOpImpl16CopyableComparerclEPKNS0_17ObChunkDatumStore9StoredRowES6_:221692 + 2: _ZN9oceanbase3sql12ObSortOpImpl7CompareclEPKNS0_17ObChunkDatumStore9StoredRowES6_:221692 + 6: 1412 + 8.1: 1412 + 9: 0 + 10.1: 0 + 11.1: 1412 + 12.1: 0 + 14: 0 + 15: 0 + 17: 1412 + 17.2: 1412 + 17.3: 1412 + 17.5: 0 + 18: 1412 + 19: 1412 + 20: 1412 + 20.1: 1412 _ZN9oceanbase6common21ObNullSafeDatumStrCmpILNS0_15ObCollationTypeE45ELb0ELb1EE3cmpERKNS0_7ObDatumES6_:1440 + 21: 1506 + 22: 772 + 23.1: 742 + 24: 742 + 28: 1518 + 8.1: _ZNK9oceanbase3sql12ObSortOpImpl7Compare9is_initedEv:9884 + 0: 1412 + 11.1: _ZN9oceanbase3sql12ObSortOpImpl7Compare17fast_check_statusEv:39536 + 3: 1412 + 4: 0 + 4: _ZN9oceanbase3sql13ObExecContext12check_statusEv:0 + 2: 0 + 3: 0 + 4: 0 + 5.1: 0 + 6.1: 0 + 7: 0 + 8.1: 0 + 9.1: 0 + 10: 0 + 11.1: 0 + 13.1: 0 + 14.1: 0 + 16: 0 + 17.1: 0 + 18.1: 0 + 18.2: 0 + 19: 0 + 21: 0 + 22: 0 + 23.1: 0 + 24: 0 + 25: 0 + 28: 0 + 6.1: _ZNK9oceanbase3sql17ObPhysicalPlanCtx10is_timeoutEPl:0 + 10: 0 + 2: _ZN9oceanbase6common16ObClockGenerator8getClockEv:0 + 4: 0 + 5.1: 0 + 8: 0 + 6: _ZN9oceanbase6common16ObClockGenerator6get_usEv:0 + 2: 0 + 12.1: _ZNK9oceanbase3sql16ObSQLSessionInfo12is_terminateERi:0 + 3: 0 + 5.1: 0 + 9: 0 + 12.1: 0 + 16: 0 + 19: 0 + 3: _ZNK9oceanbase3sql18ObBasicSessionInfo17get_session_stateEv:0 + 0: 0 + 14.1: _ZN9oceanbase6common14IS_INTERRUPTEDEv:0 + 6.1: 0 + 2: _ZN9oceanbase6common11get_checkerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.1: _ZN9oceanbase6common18ObInterruptCheckerC2Ev:0 + 0.1: _ZN9oceanbase6common15ObInterruptCodeC2Ev:0 + 0: 0 + 0: _ZN9oceanbase5obrpc20ObInterruptStackInfoC2Ev:0 + 0: 0 + 2: 0 + 0.2: _Z9ob_gettidv:0 + 3: 0 + 4: 0 + 2: _Z13get_tid_cachev:0 + 7: 0 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 + 15: _ZN9oceanbase6common18GET_INTERRUPT_CODEEv:0 + 2: 0 + 2.1: 0 + 2.3: 0 + 7.1: 0 + 2.2: _ZN9oceanbase6common15ObInterruptCodeC2Ei:0 + 0: 0 + 0: _ZN9oceanbase5obrpc20ObInterruptStackInfoC2Ev:0 + 0: 0 + 2: 0 + 3: _ZN9oceanbase6common11get_checkerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.1: _ZN9oceanbase6common18ObInterruptCheckerC2Ev:0 + 0.1: _ZN9oceanbase6common15ObInterruptCodeC2Ev:0 + 0: 0 + 0: _ZN9oceanbase5obrpc20ObInterruptStackInfoC2Ev:0 + 0: 0 + 2: 0 + 0.2: _Z9ob_gettidv:0 + 3: 0 + 4: 0 + 2: _Z13get_tid_cachev:0 + 7: 0 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 + 18.1: _ZN9oceanbase3lib6Worker4selfEv:0 + 3: 0 + 4: 0 + 22: _ZN9oceanbase3sql13ObExecContext18check_extra_statusEv:0 + 3: 0 + 4: 0 + 5.1: 0 + 5.3: 0 + 5.5: 0 + 6: 0 + 7.1: 0 + 11: 0 + 3: _ZNK9oceanbase6common7ObDListINS_3sql19ObIExtraStatusCheckEE8is_emptyEv:0 + 0: 0 + 5.5: _ZN9oceanbase6common11ObDLinkBaseINS_3sql19ObIExtraStatusCheckEE8get_nextEv:0 + 0: 0 + 18: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql20ObSortFieldCollationEE2atEl:5648 + 6: 1412 + 20: _ZNK9oceanbase6common12ObIArrayWrapINS0_9ObCmpFuncEE2atEl:5648 + 6: 1412 + 15: _ZSt9iter_swapIPPN9oceanbase3sql17ObChunkDatumStore9StoredRowES5_EvT_T0_:4554 + 28: _ZSt4swapIPN9oceanbase3sql17ObChunkDatumStore9StoredRowEEvRT_S6_:4554 + 9: 1518 +_ZN9oceanbase7storage19ObTableScanIterator5resetEv:2612749:4199 + 1: 4114 + 2: 4114 + 3: 3153 _ZN9oceanbase7storage13ObSingleMergeD1Ev:3248 + 4: 3229 + 6: 4217 + 7: 17 + 8: 17 + 10: 4217 + 11: 1027 _ZN9oceanbase7storage19ObMultipleScanMergeD1Ev:1045 + 12: 1149 + 14: 4330 + 15: 17 + 16: 17 + 18: 4330 + 19: 17 + 20: 17 + 22: 4330 + 23: 17 + 24: 17 + 27: 4387 _ZN9oceanbase7storage20ObTableAccessContext5resetEv:4446 + 30: 4580 _ZN9oceanbase7storage15ObAccessService15ObStoreCtxGuard5resetEv:4654 + 31: 4174 + 32: 4174 + 33: 4132 + 34: 4132 + 35: 4132 + 26: _ZN9oceanbase7storage18ObTableAccessParam5resetEv:451010 + 3: 4387 + 6: 4387 + 2: _ZN9oceanbase7storage16ObTableIterParam5resetEv:279917 + 4: 4330 _ZN9oceanbase7storage14ObTabletHandle5resetEv:4511 + 6: 4387 + 9: 4387 + 12: 4387 + 3: _ZN9oceanbase6common10ObTabletID5resetEv:43471 + 0: 4387 + 28: _ZN9oceanbase7storage15ObGetTableParam5resetEv:274423 + 2: 4199 + 3: _ZN9oceanbase6common10SampleInfo5resetEv:159562 + 3: 4199 + 5: 4199 + 6: 4199 + 4: _ZN9oceanbase7storage21ObTabletTableIterator5resetEv:68672 + 2: 4199 _ZN9oceanbase7storage14ObTabletHandle5resetEv:4256 + 3: 4367 _ZN9oceanbase7storage20ObTableStoreIterator5resetEv:4645 + 32: _ZN9oceanbase7storage16ObTableScanRange5resetEv:1182606 + 2: 4174 + 3.1: 4174 + 3.3: 17 + 5: 1125 + 6: 1125 + 6.1: 1125 _ZN9oceanbase6common18ObWrapperAllocator4freeEPv:1106 + 8: 964 + 9: 964 + 9.1: 964 _ZN9oceanbase6common18ObWrapperAllocator4freeEPv:983 + 12.1: 4095 + 12.3: 22 + 13: 3162 + 14: 3162 + 14.1: 3162 _ZN9oceanbase6common18ObWrapperAllocator4freeEPv:3265 + 20: 4132 + 21: 4132 + 22: 4132 + 4: _ZN9oceanbase6common12ObIArrayWrapINS_12blocksstable12ObDatumRangeEE2atEl:7994 + 6: 1125 + 5.1: _ZNK9oceanbase12blocksstable13ObDatumRowkey16is_static_rowkeyEv:12579 + 0: 1125 + 8.1: _ZNK9oceanbase12blocksstable13ObDatumRowkey16is_static_rowkeyEv:10808 + 0: 964 + 12.1: _ZNK9oceanbase6common12ObIArrayWrapINS_12blocksstable13ObDatumRowkeyEE5countEv:52927 + 0: 4095 + 13: _ZN9oceanbase6common12ObIArrayWrapINS_12blocksstable13ObDatumRowkeyEE2atEl:22442 + 6: 3162 + 13.1: _ZNK9oceanbase12blocksstable13ObDatumRowkey16is_static_rowkeyEv:35266 + 0: 3162 + 18: _ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable13ObDatumRowkeyELl8ENS0_19ModulePageAllocatorELb0EE5resetEv:322874 + 0: 4132 + 0: _ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable13ObDatumRowkeyELl8ENS0_19ModulePageAllocatorELb0EE7destroyEv:240064 + 9: 4132 + 11: 17 + 13: 4132 + 15: 4132 + 24: 4132 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable13ObDatumRowkeyELl8ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:204 + 4: 17 + 19: _ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable12ObDatumRangeELl8ENS0_19ModulePageAllocatorELb0EE5resetEv:340303 + 0: 4132 + 0: _ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable12ObDatumRangeELl8ENS0_19ModulePageAllocatorELb0EE7destroyEv:241016 + 9: 4132 + 11: 17 + 13: 4132 + 15: 4132 + 24: 4132 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable12ObDatumRangeELl8ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:1156 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:1156 + 0: 17 + 0.2: 17 + 0.1: _ZN9oceanbase6common7ob_freeEPv:697 + 2: 17 + 3: 17 + 4: 17 + 5: 17 + 4: _ZL12abort_unlessb:204 + 5: 17 + 6: 17 +_ZNK9oceanbase3omt17ObTenantConfigMgr27get_tenant_config_with_lockEmmm:2611807:5506 + 3: 5236 + 4: 5236 + 6: 5236 + 8.2: 0 + 8.4: 0 + 9: 0 + 10.1: 0 + 10.2: 0 + 10.3: 0 + 10.6: 0 + 11.1: 0 + 16.2: 0 + 16.3: 0 + 16.4: 0 + 16.7: 0 + 17: 0 + 18: 0 + 19.2: 0 + 20.1: 0 + 23.1: 175 + 26.1: 5015 + 26.3: 5632 + 28.1: 175 + 31.9: 5354 + 6: _ZN9oceanbase6common7DRWLock11RDLockGuardC2ERS1_:553432 + 0: 5236 + 2: 5092 + 3.1: 0 + 2: _ZN9oceanbase6common7DRWLock6rdlockEv:439824 + 2: 5236 + 2.1: 5236 _ZN9oceanbase6common7ObLatch6rdlockEjl:5285 + 2: _ZN9oceanbase6common8get_itidEv:146608 + 4: 5236 + 5: 0 + 6: 0 + 8: 0 + 8.1: _ZNK9oceanbase6common4hash9ObHashMapINS_3omt10ObTenantIDEPNS3_14ObTenantConfigENS1_19NoPthreadDefendModeENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS4_S6_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKS4_RS6_l:443676 + 7: _ZN9oceanbase6common4hash11ObHashTableINS_3omt10ObTenantIDENS1_11HashMapPairIS4_PNS3_14ObTenantConfigEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS8_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS8_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKS4_RS8_l:443676 + 5: 5092 + 5.1: 5092 + 6.1: 0 + 10: 5092 + 19: 5204 + 5: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_3omt10ObTenantIDEPNS5_14ObTenantConfigEEENS1_5NLockENS1_5NCondEEEEEbRKT_:106932 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_3omt10ObTenantIDEPNS5_14ObTenantConfigEEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:106932 + 2: 5092 + 18: _ZN9oceanbase6common4hash11ObHashTableINS_3omt10ObTenantIDENS1_11HashMapPairIS4_PNS3_14ObTenantConfigEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS8_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS8_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE32internal_get_with_timeout_unsafeERNS1_17ObHashTableBucketIS8_NS1_5NLockENS1_5NCondEEERKS4_RPKS8_l:168596 + 6: _ZNK9oceanbase6common4hash11ObHashTableINS_3omt10ObTenantIDENS1_11HashMapPairIS4_PNS3_14ObTenantConfigEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS8_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS8_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE12internal_getERKNS1_17ObHashTableBucketIS8_NS1_5NLockENS1_5NCondEEERKS4_RPKS8_Rb:168596 + 6: 5092 + 8.1: 5092 + 10: 5092 + 14: 5204 + 16: 0 + 9: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_11HashMapPairINS_3omt10ObTenantIDEPNS4_14ObTenantConfigEEEE16check_magic_codeEv:30552 + 0: 5092 + 903.1: 5092 + 9.1: _ZL12abort_unlessb:10184 + 5: 5092 + 6: 0 + 10.1: _ZNK9oceanbase6common4hash8equal_toINS_3omt10ObTenantIDEEclERKS4_S7_:20368 + 2: _ZNK9oceanbase3omt10ObTenantIDeqERKS1_:20368 + 2: 5092 + 10: _ZN9oceanbase6common14ObTscTimestamp12get_instanceEv:0 + 2: 0 + 2.1: 0 + 2.3: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common14ObTscTimestampC2Ev:0 + 1: 0 + 16.1: _ZN9oceanbase6common14ObTscTimestamp12get_instanceEv:0 + 2: 0 + 2.1: 0 + 2.3: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common14ObTscTimestampC2Ev:0 + 1: 0 + 19.1: _ZNK9oceanbase6common4hash9ObHashMapINS_3omt10ObTenantIDEPNS3_14ObTenantConfigENS1_19NoPthreadDefendModeENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS4_S6_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKS4_RS6_l:2800 + 7: _ZN9oceanbase6common4hash11ObHashTableINS_3omt10ObTenantIDENS1_11HashMapPairIS4_PNS3_14ObTenantConfigEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS8_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS8_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKS4_RS8_l:2800 + 5: 0 + 5.1: 0 + 6.1: 175 + 10: 0 + 19: 0 + 5: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_3omt10ObTenantIDEPNS5_14ObTenantConfigEEENS1_5NLockENS1_5NCondEEEEEbRKT_:0 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_3omt10ObTenantIDEPNS5_14ObTenantConfigEEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:0 + 2: 0 + 18: _ZN9oceanbase6common4hash11ObHashTableINS_3omt10ObTenantIDENS1_11HashMapPairIS4_PNS3_14ObTenantConfigEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS8_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS8_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE32internal_get_with_timeout_unsafeERNS1_17ObHashTableBucketIS8_NS1_5NLockENS1_5NCondEEERKS4_RPKS8_l:0 + 6: _ZNK9oceanbase6common4hash11ObHashTableINS_3omt10ObTenantIDENS1_11HashMapPairIS4_PNS3_14ObTenantConfigEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS8_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS8_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE12internal_getERKNS1_17ObHashTableBucketIS8_NS1_5NLockENS1_5NCondEEERKS4_RPKS8_Rb:0 + 6: 0 + 8.1: 0 + 10: 0 + 14: 0 + 16: 0 + 9: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_11HashMapPairINS_3omt10ObTenantIDEPNS4_14ObTenantConfigEEEE16check_magic_codeEv:0 + 0: 0 + 9.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 10.1: _ZNK9oceanbase6common4hash8equal_toINS_3omt10ObTenantIDEEclERKS4_S7_:0 + 2: _ZNK9oceanbase3omt10ObTenantIDeqERKS1_:0 + 2: 0 + 26.2: _ZN9oceanbase3omt14ObTenantConfig6rdlockEv:507965 + 2: 5632 + 2: _ZN9oceanbase6common7DRWLock6rdlockEv:451645 + 2: 5015 + 2.1: 5015 _ZN9oceanbase6common7ObLatch6rdlockEjl:5106 + 2: _ZN9oceanbase6common8get_itidEv:200895 + 4: 5015 + 5: 175 + 6: 175 + 8: 175 + 31.9: _ZN9oceanbase6common7DRWLock11RDLockGuardD2Ev:419451 + 2: 5632 + 3: 5632 + 3.1: 5354 + 3.2: 175 + 4.1: 175 + 4.5: 175 + 3: _ZN9oceanbase6common7DRWLock8rdunlockEv:314628 + 2: 5632 + 2.1: 5632 _ZN9oceanbase6common7ObLatch6unlockEPKj:5474 + 2: _ZN9oceanbase6common8get_itidEv:144968 + 4: 5632 + 5: 175 + 6: 175 + 8: 175 + 31.10: _ZN9oceanbase6common7DRWLock11RDLockGuardD2Ev:33425 + 2: 175 + 3: 175 + 3.1: 175 + 3.2: 175 + 4.1: 175 + 4.5: 175 + 3: _ZN9oceanbase6common7DRWLock8rdunlockEv:21350 + 2: 175 + 2.1: 175 + 2: _ZN9oceanbase6common8get_itidEv:13650 + 4: 175 + 5: 175 + 6: 175 + 8: 175 +_ZN9oceanbase7storage15ObMultipleMerge28prepare_tables_from_iteratorERNS0_20ObTableStoreIteratorEPKNS_6common10SampleInfoE:2590046:4665 + 1: 4547 + 2: 4547 + 3: 4547 _ZN9oceanbase7storage20ObTableStoreIterator6resumeEv:4666 + 4: 4472 + 5: 4472 + 6.1: 22646 + 7: 18050 + 9: 18080 _ZN9oceanbase7storage20ObTableStoreIterator8get_nextERPNS0_8ObITableE:18679 + 11.1: 68 + 13.1: 13559 + 14: 68 + 15.1: 68 + 16.1: 13559 + 16.2: 13559 + 18: 96 + 21: 96 + 23: 96 + 26: 18109 + 27: 14259 _ZNK9oceanbase7storage8ObITable10is_sstableEv:13788 + 28: 8860 + 32.1: 4743 _ZN9oceanbase8memtable10ObMemtable8is_emptyEv:4819 + 36: 4479 + 38: 9103 + 39.1: 68 + 44: 4525 + 47: 4525 + 48: 68 + 49.1: 68 + 52: 68 + 52.1: 4525 + 53: 70 + 55: 4368 + 16.2: _ZNK9oceanbase6common10SampleInfo12is_no_sampleEv:54236 + 0: 13559 + 28.1: _ZNK9oceanbase12blocksstable13ObSSTableMeta8is_emptyEv:71390 + 0: 8860 + 952: 34 + 38: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl8ENS0_19ModulePageAllocatorELb0EE9push_backERKS4_:393673 + 5: 9103 + 6: 68 + 12: 68 + 15: 68 + 15.1: 9103 + 16: 9103 + 15.1: _ZN9oceanbase6common9ObClassOpIPNS_7storage8ObITableELb1EE20construct_and_assignERKS4_RS4_:72824 + 2: 9103 +_ZN9oceanbase7storage15ObAccessService15ObStoreCtxGuard5resetEv:2587053:5789 + 1: 5244 + 2: 5244 + 4: 5244 + 5: 5244 + 6: 1071 + 6.1: 5730 + 7.1: 16 + 12: 5193 + 13: 5193 + 14: 5193 + 15.1: 0 + 18: 5193 + 5: _ZN9oceanbase7storage10ObLSHandle6get_lsEv:36708 + 0: 5244 + 6: _ZNK9oceanbase7storage10ObStoreCtx8is_validEv:408389 + 2: 5244 + 2: _ZNK9oceanbase5share6ObLSID8is_validEv:26220 + 0: 5244 + 2.1: _ZNK9oceanbase8memtable15ObMvccAccessCtx8is_validEv:350705 + 1: 5244 + 2: _ZNK9oceanbase8memtable15ObMvccAccessCtx15is_read_valid__Ev:182618 + 1: 4197 + 2: 4197 + 3: 4197 + 4: 4197 + 4.1: 4197 + 4.2: 488 + 2.1: _ZNK9oceanbase11transaction12ObTxSnapshot8is_validEv:20985 + 0: 4197 + 3.1: _ZNK9oceanbase7storage14ObTxTableGuard8is_validEv:20985 + 0: 4197 + 3: _ZNK9oceanbase8memtable15ObMvccAccessCtx16is_write_valid__Ev:63189 + 1: 1071 + 2: 1071 + 3: 1071 + 3.1: 1071 + 4: 1071 + 4.1: 1071 + 5: 1071 + 5.1: 1071 + 6: 1071 + 7: 1071 + 2.1: _ZNK9oceanbase11transaction12ObTxSnapshot8is_validEv:5355 + 0: 1071 + 6.1: _ZNK9oceanbase11transaction9ObTransID8is_validEv:8568 + 0: 1071 + 7.1: _ZNK9oceanbase7storage14ObTxTableGuard8is_validEv:5355 + 0: 1071 + 4: _ZNK9oceanbase8memtable15ObMvccAccessCtx17is_replay_valid__Ev:0 + 1: 0 + 2: 0 + 2.1: 0 + 3: 0 + 3.1: _ZNK9oceanbase11transaction9ObTransID8is_validEv:0 + 0: 0 + 6.2: _ZNK9oceanbase7storage4ObLS16revert_store_ctxIJRNS0_10ObStoreCtxEEEEiDpOT_:43200 + 0: 5400 + 0.1: 5400 _ZNK9oceanbase7storage13ObLSTxService16revert_store_ctxERNS0_10ObStoreCtxE:5539 + 9: _ZN9oceanbase7storage10ObLSHandle5resetEv:1466150 + 2: 5193 + 2.1: 5193 + 3: 5193 + 5: 5193 + 6: 5193 + 3: _ZNK9oceanbase7storage7ObLSMap9revert_lsEPNS0_4ObLSENS0_10ObLSGetModE:1092254 + 4.1: 16 + 5: 16 + 3: _ZN9oceanbase7storage4ObLS11get_ref_mgrEv:77895 + 0: 5193 + 3.1: _ZN9oceanbase6common16ObMultiModRefMgrINS_7storage10ObLSGetModEE3decES3_:1013271 + 3: 5193 + 4: 5193 + 5.1: 16 + 7: 5193 + 11: 5193 + 12: 5193 + 12.1: 16 + 13: 16 + 14: 16 + 16: 16 + 17: 16 + 18: 16 + 24: 5193 + 7: _ZN9oceanbase6common8get_itidEv:145404 + 4: 5193 + 5: 0 + 6: 0 + 8: 0 + 9: _ZN9oceanbase6common5ObRef4lockEv:353112 + 1.1: 16778 + 11: _ZN9oceanbase6common5ObRef3decEv:51930 + 1.1: 5193 + 12.1: _ZN9oceanbase6common16ObMultiModRefMgrINS_7storage10ObLSGetModEE17get_total_ref_cntEv:41216 + 2.1: 16 + 4: 256 + 4: _ZNK9oceanbase6common5ObRef11get_ref_cntEv:32768 + 1: 256 + 13: _ZN9oceanbase6common5ObRef3incEv:144 + 1.1: 16 + 14: _ZN9oceanbase6common5ObRef6unlockEv:224 + 1: 16 + 17: _ZN9oceanbase6common5ObRef3decEv:176 + 1.1: 16 + 18: _ZN9oceanbase6common16ObMultiModRefMgrINS_7storage10ObLSGetModEE17get_total_ref_cntEv:41232 + 2.1: 16 + 4: 256 + 4: _ZNK9oceanbase6common5ObRef11get_ref_cntEv:32768 + 1: 256 + 21: _ZN9oceanbase6common16ObMultiModRefMgrINS_7storage10ObLSGetModEE15unlock_all_slotEv:41296 + 1.1: 16 + 3: _ZN9oceanbase6common5ObRef6unlockEv:40960 + 1: 256 + 24: _ZN9oceanbase6common5ObRef6unlockEv:41544 + 1: 5193 + 5: _ZNK9oceanbase7storage7ObLSMap7free_lsEPNS0_4ObLSE:480 + 3: 16 + 4: 16 + 11: _ZN9oceanbase5share6ObLSID5resetEv:57123 + 0: 5193 + 13: _ZN9oceanbase6common16ObClockGenerator8getClockEv:88281 + 4: 5193 + 5.1: 0 + 8: 5193 + 6: _ZN9oceanbase6common16ObClockGenerator6get_usEv:0 + 2: 0 +_ZN9oceanbase7storage20ObRow2ExprsProjector4initERKNS_6common8ObIArrayIPNS_3sql6ObExprEEERNS4_18ObPushdownOperatorERKNS3_IiEE:2586957:4685 + 0: 4740 + 3: 4342 + 4: 4342 + 5: 4342 + 6: 4342 + 8: 4342 + 9: 0 + 10: 0 + 11.1: 0 + 14.1: 0 + 14.5: 0 + 14.6: 0 + 14.7: 0 + 14.9: 0 + 15: 0 + 16: 0 + 17.1: 0 + 26: 0 + 27.1: 4265 + 28.1: 0 + 30.1: 4307 + 30.3: 32 + 31: 4265 + 33: 4265 + 34: 0 + 37: 4265 + 38: 4265 + 39: 4265 + 40: 0 + 42: 3273 + 44: 1054 + 51: 4239 + 52: 4239 + 53: 4239 + 54: 4239 + 58.1: 4921 + 58.3: 4921 + 59: 4757 + 60: 4757 + 62: 4757 + 63: 4757 + 64: 4757 + 65: 0 + 67: 3464 + 69: 1340 + 77: 4740 + 78: 4740 + 79: 4740 + 80: 4921 + 82: 6 + 83: 6 + 85: 4921 + 86: 4921 + 90: 4596 + 6: _ZNK9oceanbase6common12ObIArrayWrapINS_7storage20ObRow2ExprsProjector4ItemEE5emptyEv:21710 + 0: 4342 + 8: _ZNK9oceanbase3sql18ObPushdownOperator13is_vectorizedEv:73814 + 0: 4342 + 14.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE5countEv:0 + 0: 0 + 14.9: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE5countEv:0 + 0: 0 + 19.1: _ZNK9oceanbase3sql18ObPushdownOperator14get_batch_sizeEv:0 + 0: 0 + 19.2: _ZNK9oceanbase3sql6ObExpr24locate_datums_for_updateERNS0_9ObEvalCtxEl:0 + 5: 0 + 6: 0 + 8.1: 0 + 9: 0 + 10: 0 + 12: 0 + 13: 0 + 64698.5: 0 + 27.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE5countEv:16864 + 0: 4216 + 27.2: _ZN9oceanbase6common13ObSEArrayImplINS_7storage20ObRow2ExprsProjector4ItemELl4ENS0_19ModulePageAllocatorELb0EE16prepare_allocateEl:253548 + 4: 4216 + 5: 0 + 7: 0 + 8: 4216 + 9: 4216 + 10: 4265 + 9: _ZN9oceanbase6common9ObClassOpINS_7storage20ObRow2ExprsProjector4ItemELb1EE23array_default_constructEPS4_l:80496 + 2: 4216 + 31: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:19472 + 6: 4265 + 36: _ZNK9oceanbase6common12ObIArrayWrapIiE2atEl:19472 + 6: 4265 + 59: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:19028 + 6: 4757 + 60: _ZNK9oceanbase6common12ObIArrayWrapIiE2atEl:19028 + 6: 4757 + 76: _ZN9oceanbase6common13ObSEArrayImplINS_7storage20ObRow2ExprsProjector4ItemELl4ENS0_19ModulePageAllocatorELb0EEixEl:109020 + 2: 4740 + 2.1: 4740 + 2.2: 4740 + 3.1: 0 + 5: 4740 + 79: _ZNK9oceanbase3sql18ObPushdownOperator13is_vectorizedEv:42660 + 0: 4740 + 80.1: _ZNK9oceanbase3sql6ObExpr22locate_datum_for_writeERNS0_9ObEvalCtxE:273578 + 6: 4882 + 7: 4882 + 8: 4882 + 9: 5063 + 5: _ZNK9oceanbase3sql6ObExpr13get_datum_idxERNS0_9ObEvalCtxE:53702 + 2: 4882 + 2: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:19528 + 0: 4882 + 82.1: _ZNK9oceanbase3sql6ObExpr19locate_batch_datumsERNS0_9ObEvalCtxE:18 + 2: 6 + 83: _ZN9oceanbase3sql18ObPushdownOperator12get_eval_ctxEv:24 + 0: 6 + 83.1: _ZNK9oceanbase3sql6ObExpr19get_evaluated_flagsERNS0_9ObEvalCtxE:114 + 2: 6 + 85: _ZN9oceanbase3sql18ObPushdownOperator12get_eval_ctxEv:19684 + 0: 4921 + 85.1: _ZNK9oceanbase3sql6ObExpr13get_eval_infoERNS0_9ObEvalCtxE:78736 + 2: 4921 +_ZN9oceanbase8observer14global_contextEv:2577920:70936 + 1: 67840 + 2: 67840 + 2: _ZN9oceanbase8observer8ObServer12get_instanceEv:1017600 + 2: 67840 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 65147: 67840 +easy_pool_calloc:2575914:14129 + 1: 13028 + 4: 12614 + 5: 12614 + 7: 11874 + 4: easy_pool_alloc_ex:1964524 + 10: 13028 + 15: 13028 + 15.1: 0 + 17: 13028 + 20: 13028 + 22: 13028 + 23: 13028 + 27: 0 + 28.1: 0 + 30: 13028 + 32: 13028 + 33: 0 + 36: 13028 + 39: 12614 + 41: 12614 + 41.1: 0 + 15.1: easy_spin_lock:0 + 5: 0 + 5.1: 0 + 11.1: 0 + 13: 0 + 21: 0 + 21.1: 0 + 26: 0 + 5.1: easy_atomic_cmp_set:0 + 2: 0 + 21.1: easy_atomic_cmp_set:0 + 2: 0 + 37: easy_pool_alloc_large:0 + 2: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 +_ZNK9oceanbase3sql12ObQueryRange20get_single_key_valueEPKNS0_9ObKeyPartERNS0_13ObExecContextERNS1_13ObSearchStateERKNS_6common20ObDataTypeCastParamsE:2506752:1066 + 4: 1022 + 5: 1022 + 7: 2146 + 7.2: 2047 + 8: 2146 + 11: 2047 + 12: 2047 + 17: 2047 + 18: 2047 + 23.1: 2047 + 29.1: 2047 + 30.1: 944 + 31.1: 5 + 32.1: 944 + 37.2: 944 + 45: 1971 + 45.2: 1971 + 46: 1028 + 46.1: 1146 + 47.1: 5 + 48.1: 1146 + 53.2: 1146 + 63: 1092 + 63.2: 2166 + 66.2: 2166 + 66.3: 2166 + 66.5: 4 + 66.10: 2130 _ZN9oceanbase3sql10ObSQLUtils24is_same_type_for_compareERKNS_6common9ObObjMetaES5_:2210 + 66.11: 1896 + 66.15: 1895 + 66.16: 1895 _ZN9oceanbase6common11ObObjCaster7to_typeERKNS0_12ObExpectTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS7_RPS8_:1957 + 66.17: 1931 + 66.19: 5 + 66.24: 5 + 66.26: 5 + 66.31: 1931 + 66.32: 5 + 66.33: 5 + 66.38: 1931 + 66.39: 1931 + 66.40: 1931 _ZN9oceanbase3sql20ObExprResultTypeUtil23get_relational_cmp_typeERNS_6common9ObObjTypeERKS3_S6_:1971 + 66.41: 1924 + 66.43: 5 + 66.50: 1924 + 66.51: 1924 _ZN9oceanbase3sql24ObRelationalExprOperator16compare_nullsafeERlRKNS_6common5ObObjES6_RNS3_15ObObjCastParamsENS3_9ObObjTypeENS3_15ObCollationTypeE:2015 + 66.52: 2144 + 66.54: 5 + 66.59: 2144 + 66.61: 2144 + 66.63: 2144 + 66.68: 2145 + 66.70: 2145 + 66.72: 1067 + 66.74: 1092 + 66.77: 1092 _ZN9oceanbase3sql10ObSQLUtils24is_same_type_for_compareERKNS_6common9ObObjMetaES5_:1100 + 66.78: 974 + 66.82: 972 + 66.83: 972 _ZN9oceanbase6common11ObObjCaster7to_typeERKNS0_12ObExpectTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS7_RPS8_:1002 + 66.84: 881 + 66.86: 5 + 66.91: 5 + 66.93: 5 + 66.98: 881 + 66.99: 881 + 66.100: 881 _ZN9oceanbase3sql20ObExprResultTypeUtil23get_relational_cmp_typeERNS_6common9ObObjTypeERKS3_S6_:882 + 66.101: 877 + 66.103: 5 + 66.110: 877 + 66.111: 877 _ZN9oceanbase3sql24ObRelationalExprOperator16compare_nullsafeERlRKNS_6common5ObObjES6_RNS3_15ObObjCastParamsENS3_9ObObjTypeENS3_15ObCollationTypeE:1074 + 66.112: 1057 + 66.114: 5 + 66.119: 1057 + 66.121: 1057 + 66.123: 1057 + 66.129: 2150 + 69: 2150 + 70: 2150 + 70.2: 5 + 72.1: 2160 _ZN9oceanbase3sql12ObQueryRange13ObSearchState9intersectERKNS_6common5ObObjEbS6_b:2205 + 72.2: 2206 + 73.1: 5 + 77: 1048 + 7.2: _ZNK9oceanbase3sql9ObKeyPart13is_normal_keyEv:50147 + 0: 2047 + 0.1: 2047 + 9: _ZN9oceanbase6common5ObObjC2ERKS1_:28658 + 2: 2047 + 0: _ZN9oceanbase6common9ObObjMetaC2Ev:14329 + 1: 2047 + 10: _ZN9oceanbase6common5ObObjC2ERKS1_:16376 + 2: 2047 + 14: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:8188 + 0: 2047 + 14.1: _ZN9oceanbase6common12ObExpectType8set_typeENS0_9ObObjTypeE:12282 + 0: 2047 + 15: _ZNK9oceanbase6common9ObObjMeta18get_collation_typeEv:8188 + 0: 2047 + 15.1: _ZN9oceanbase6common12ObExpectType18set_collation_typeENS0_15ObCollationTypeE:12282 + 0: 2047 + 16: _ZNK9oceanbase3sql12ObKeyPartPos19get_enum_set_valuesEv:14329 + 0: 2047 + 16.1: _ZN9oceanbase6common12ObExpectType14set_type_infosEPKNS0_8ObIArrayINS0_8ObStringEEE:14329 + 0: 2047 + 19: _ZN9oceanbase6common5ObObj13set_max_valueEv:60 + 2: _ZN9oceanbase6common5ObObj7set_extEl:60 + 4: 5 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:20 + 0: 5 + 20: _ZN9oceanbase6common5ObObj13set_min_valueEv:20 + 2: _ZN9oceanbase6common5ObObj7set_extEl:20 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:20 + 0: 5 + 24: _ZN9oceanbase6common5ObObj13set_min_valueEv:60 + 2: _ZN9oceanbase6common5ObObj7set_extEl:60 + 4: 5 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:20 + 0: 5 + 25: _ZN9oceanbase6common5ObObj13set_max_valueEv:45 + 2: _ZN9oceanbase6common5ObObj7set_extEl:45 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:45 + 0: 5 + 29: _ZNK9oceanbase6common5ObObj10is_unknownEv:8188 + 0: _ZNK9oceanbase6common9ObObjMeta10is_unknownEv:8188 + 0: 2047 + 30: _ZNK9oceanbase3sql12ObQueryRange27get_result_value_with_rowidERKNS0_9ObKeyPartERNS_6common5ObObjERNS0_13ObExecContextEPNS5_12ObIAllocatorE:96845 + 8: 1029 _ZNK9oceanbase3sql12ObQueryRange16get_result_valueERNS_6common5ObObjERNS0_13ObExecContextEPNS2_12ObIAllocatorE:1074 + 9.1: 5 + 10.1: 1006 + 10.2: 993 + 14.1: 11 + 15.1: 11 + 17.1: 11 + 17.2: 11 + 18.1: 5 + 19.2: 11 + 20: 9 + 21.1: 9 + 23.1: 11 + 25: 9 + 27: 944 + 10.1: _ZNK9oceanbase6common5ObObj10is_unknownEv:6036 + 0: _ZNK9oceanbase6common9ObObjMeta10is_unknownEv:6036 + 0: 1006 + 13: _ZN9oceanbase6common7ObArrayINS0_5ObObjENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_22NotImplementItemEncodeIS2_EEEC2Ev:52211 + 0.1: 11 + 0.5: _ZN9oceanbase6common11ObArrayImplINS0_5ObObjENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_22NotImplementItemEncodeIS2_EEEC2ElRKS3_:52134 + 3: 11 + 4: 11 + 7.1: 11 + 2: _ZN9oceanbase6common8ObIArrayINS0_5ObObjEEC2Ev:51100 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_5ObObjEEC2Ev:51100 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:506 + 0: 11 + 14: _ZNK9oceanbase6common5ObObj10get_urowidEv:88 + 2: 11 + 15: _ZNK9oceanbase6common12ObURowIDData17is_physical_rowidEv:176 + 2: 11 + 3: 11 + 19.1: _ZNK9oceanbase6common12ObURowIDData17get_real_pk_countERKNS0_8ObIArrayINS0_5ObObjEEE:776 + 3: 11 + 4: 11 + 7.1: 9 + 9: 7 + 10: 7 + 8: _ZNK9oceanbase6common12ObURowIDData21get_pk_version_offsetEv:91 + 2: 7 + 2: _ZNK9oceanbase6common12ObURowIDData17get_guess_dba_lenEv:70 + 4: 7 + 10.1: _ZN9oceanbase6common12ObURowIDData17get_real_pk_countEhl:105 + 3: 7 + 2: _ZN9oceanbase6common12ObURowIDData20get_part_gen_col_cntEh:63 + 2: 7 + 23: _ZN9oceanbase6common12ObIArrayWrapINS0_5ObObjEE2atEl:77 + 6: 11 + 33: _ZN9oceanbase6common5ObObj13set_max_valueEv:112 + 2: _ZN9oceanbase6common5ObObj7set_extEl:112 + 4: 7 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:56 + 0: 7 + 34: _ZN9oceanbase6common5ObObj13set_min_valueEv:147 + 2: _ZN9oceanbase6common5ObObj7set_extEl:147 + 4: 7 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:56 + 0: 7 + 37.1: _ZNK9oceanbase6common5ObObj10is_unknownEv:12272 + 0: _ZNK9oceanbase6common9ObObjMeta10is_unknownEv:12272 + 0: 944 + 39: _ZN9oceanbase6common5ObObj13set_min_valueEv:64 + 2: _ZN9oceanbase6common5ObObj7set_extEl:64 + 4: 4 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:32 + 0: 4 + 41: _ZN9oceanbase6common5ObObj13set_max_valueEv:64 + 2: _ZN9oceanbase6common5ObObj7set_extEl:64 + 4: 4 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:32 + 0: 4 + 45.1: _ZNK9oceanbase6common5ObObj10is_unknownEv:7884 + 0: _ZNK9oceanbase6common9ObObjMeta10is_unknownEv:7884 + 0: 1971 + 46: _ZNK9oceanbase3sql12ObQueryRange27get_result_value_with_rowidERKNS0_9ObKeyPartERNS_6common5ObObjERNS0_13ObExecContextEPNS5_12ObIAllocatorE:40212 + 8: 1154 _ZNK9oceanbase3sql12ObQueryRange16get_result_valueERNS_6common5ObObjERNS0_13ObExecContextEPNS2_12ObIAllocatorE:1049 + 9.1: 5 + 10.1: 1154 + 10.2: 1174 + 14.1: 4 + 15.1: 4 + 17.1: 4 + 17.2: 4 + 18.1: 5 + 19.2: 11 + 20: 11 + 21.1: 11 + 23.1: 4 + 25: 11 + 27: 1146 + 10.1: _ZNK9oceanbase6common5ObObj10is_unknownEv:6924 + 0: _ZNK9oceanbase6common9ObObjMeta10is_unknownEv:6924 + 0: 1154 + 13: _ZN9oceanbase6common7ObArrayINS0_5ObObjENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_22NotImplementItemEncodeIS2_EEEC2Ev:404 + 0.1: 4 + 0.5: _ZN9oceanbase6common11ObArrayImplINS0_5ObObjENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_22NotImplementItemEncodeIS2_EEEC2ElRKS3_:376 + 3: 4 + 4: 4 + 7.1: 4 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:184 + 0: 4 + 14: _ZNK9oceanbase6common5ObObj10get_urowidEv:32 + 2: 4 + 15: _ZNK9oceanbase6common12ObURowIDData17is_physical_rowidEv:64 + 2: 4 + 3: 4 + 19.1: _ZNK9oceanbase6common12ObURowIDData17get_real_pk_countERKNS0_8ObIArrayINS0_5ObObjEEE:628 + 3: 4 + 4: 4 + 7.1: 11 + 9: 11 + 10: 7 + 8: _ZNK9oceanbase6common12ObURowIDData21get_pk_version_offsetEv:143 + 2: 11 + 2: _ZNK9oceanbase6common12ObURowIDData17get_guess_dba_lenEv:110 + 4: 11 + 10.1: _ZN9oceanbase6common12ObURowIDData17get_real_pk_countEhl:105 + 3: 7 + 2: _ZN9oceanbase6common12ObURowIDData20get_part_gen_col_cntEh:63 + 2: 7 + 23: _ZN9oceanbase6common12ObIArrayWrapINS0_5ObObjEE2atEl:28 + 6: 4 + 49: _ZN9oceanbase6common5ObObj13set_max_valueEv:144 + 2: _ZN9oceanbase6common5ObObj7set_extEl:144 + 4: 9 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:72 + 0: 9 + 50: _ZN9oceanbase6common5ObObj13set_min_valueEv:72 + 2: _ZN9oceanbase6common5ObObj7set_extEl:72 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:72 + 0: 9 + 53.1: _ZNK9oceanbase6common5ObObj10is_unknownEv:14898 + 0: _ZNK9oceanbase6common9ObObjMeta10is_unknownEv:14898 + 0: 1146 + 55: _ZN9oceanbase6common5ObObj13set_min_valueEv:32 + 2: _ZN9oceanbase6common5ObObj7set_extEl:32 + 4: 2 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:16 + 0: 2 + 57: _ZN9oceanbase6common5ObObj13set_max_valueEv:16 + 2: _ZN9oceanbase6common5ObObj7set_extEl:16 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:16 + 0: 2 + 63.1: _ZNK9oceanbase3sql9ObKeyPart17is_rowid_key_partEv:17328 + 0: 2166 + 66.2: _ZNK9oceanbase6common5ObObj12is_min_valueEv:21660 + 2: 2166 + 2: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:8664 + 0: 2166 + 66.4: _ZNK9oceanbase6common5ObObj12is_max_valueEv:23636 + 2: 2176 + 2.1: 4 + 1778.1: 4 + 66.12: _ZNK9oceanbase6common12ObExpectType18get_collation_typeEv:11370 + 0: 1895 + 66.13: _ZN9oceanbase6common15ObObjCastParamsC2EPNS0_12ObIAllocatorEPKNS0_20ObDataTypeCastParamsEmNS0_15ObCollationTypeEPNS0_10ObAccuracyE:477815 + 3: 1895 + 4: 1895 + 5: 1895 + 7: 1895 + 8: 1895 + 9: 1895 + 10: 1895 + 13: 1895 + 18: 1895 + 12: _ZN9oceanbase6common20ObDataTypeCastParamsC2Ev:92855 + 1: 1895 + 4: 1895 + 6: 1895 + 16: _ZN9oceanbase6common15ObObjCastParams24set_compatible_cast_modeEv:132925 + 2: 1895 + 2: _ZN9oceanbase3lib14is_oracle_modeEv:83655 + 2: 1895 + 2: _ZN9oceanbase3lib15get_compat_modeEv:77970 + 2: 1895 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:47650 + 2: 1895 + 2.1: 5 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:110 + 1: 5 + 66.14: _ZN9oceanbase6common5ObObjC2Ev:43585 + 2: _ZN9oceanbase6common5ObObj5resetEv:43585 + 6: 1895 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:22740 + 0: 1895 + 66.38: _ZNK9oceanbase6common5ObObj8get_typeEv:7724 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:7724 + 0: 1931 + 66.39: _ZNK9oceanbase6common5ObObj8get_typeEv:5793 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:5793 + 0: 1931 + 66.50: _ZNK9oceanbase6common9ObObjMeta18get_collation_typeEv:9620 + 0: 1924 + 66.69: _ZNK9oceanbase6common5ObObj12is_min_valueEv:25726 + 2: 2145 + 2: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:8580 + 0: 2145 + 66.71: _ZNK9oceanbase6common5ObObj12is_max_valueEv:7473 + 2: 2138 + 2.1: 1067 + 66.73: _ZNK9oceanbase6common5ObObj10is_unknownEv:2204 + 0: _ZNK9oceanbase6common9ObObjMeta10is_unknownEv:2204 + 0: 1092 + 66.79: _ZNK9oceanbase6common12ObExpectType18get_collation_typeEv:5832 + 0: 972 + 66.80: _ZN9oceanbase6common15ObObjCastParamsC2EPNS0_12ObIAllocatorEPKNS0_20ObDataTypeCastParamsEmNS0_15ObCollationTypeEPNS0_10ObAccuracyE:245219 + 3: 972 + 4: 972 + 5: 972 + 7: 972 + 8: 972 + 9: 972 + 10: 972 + 13: 972 + 18: 972 + 12: _ZN9oceanbase6common20ObDataTypeCastParamsC2Ev:47628 + 1: 972 + 4: 972 + 6: 972 + 16: _ZN9oceanbase6common15ObObjCastParams24set_compatible_cast_modeEv:68315 + 2: 972 + 2: _ZN9oceanbase3lib14is_oracle_modeEv:43043 + 2: 972 + 2: _ZN9oceanbase3lib15get_compat_modeEv:40127 + 2: 972 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:24575 + 2: 972 + 2.1: 5 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:110 + 1: 5 + 66.81: _ZN9oceanbase6common5ObObjC2Ev:22356 + 2: _ZN9oceanbase6common5ObObj5resetEv:22356 + 6: 972 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:11664 + 0: 972 + 66.98: _ZNK9oceanbase6common5ObObj8get_typeEv:3524 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:3524 + 0: 881 + 66.99: _ZNK9oceanbase6common5ObObj8get_typeEv:2643 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:2643 + 0: 881 + 66.110: _ZNK9oceanbase6common9ObObjMeta18get_collation_typeEv:4385 + 0: 877 + 66.130: _ZNK9oceanbase6common12ObExpectType18get_collation_typeEv:15050 + 0: 2150 + 66.131: _ZN9oceanbase6common5ObObj18set_collation_typeERKNS0_15ObCollationTypeE:6450 + 0: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:6450 + 0: 2150 + 66.133: _ZN9oceanbase6common5ObObj18set_collation_typeERKNS0_15ObCollationTypeE:21500 + 0: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:21500 + 0: 2150 + 70.1: _ZNK9oceanbase3sql9ObKeyPart17is_rowid_key_partEv:40 + 0: 5 +_ZN9oceanbase11transaction14ObPartTransCtx14reset_log_cbs_Ev:2505731:248 + 1: 232 + 2.1: 8186 + 3: 7910 + 4: 47 + 5: 47 + 8: 7910 + 10: 240 + 11: 0 + 12: 0 + 18: 251 + 3: _ZN9oceanbase11transaction9ObTxLogCb11get_tx_dataEv:63744 + 0: 7910 + 6: _ZN9oceanbase11transaction9ObTxLogCb11set_tx_dataEPNS_7storage8ObTxDataE:517 + 0: 47 + 8: _ZN9oceanbase11transaction9ObTxLogCb5resetEv:2020968 + 7: 7512 + 12: 7512 _ZN9oceanbase11transaction12ObTxMDSRange5resetEv:8191 + 2: _ZN9oceanbase11transaction13ObTxBaseLogCb5resetEv:698668 + 3: 8053 + 4: 8053 _ZN9oceanbase4palf3LSN5resetEv:8247 + 5: 7512 + 2: _ZN9oceanbase10logservice8AppendCb5resetEv:385016 + 2: 8053 + 1: _ZN9oceanbase10logservice12AppendCbBase7__resetEv:223956 + 0: 8053 _ZN9oceanbase4palf3LSN5resetEv:8218 + 3: _ZN9oceanbase6common11ObDLinkBaseINS_11transaction9ObTxLogCbEE5resetEv:142728 + 0: 7512 + 5: _ZN9oceanbase5share6ObLSID5resetEv:90144 + 0: 7512 + 11: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EE5resetEv:773736 + 0: 7512 + 0: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EE7destroyEv:525840 + 9: 7512 + 10: 0 + 11: 0 + 13: 7512 + 15: 7512 + 24: 7512 + 10: _ZN9oceanbase11transaction9ObTxLogCb11get_tx_dataEv:1920 + 0: 240 + 13: _ZN9oceanbase11transaction9ObTxLogCb11set_tx_dataEPNS_7storage8ObTxDataE:0 + 0: 0 + 15: _ZN9oceanbase11transaction9ObTxLogCb5resetEv:36513 + 7: 219 + 11: 219 + 12: 263 _ZN9oceanbase11transaction12ObTxMDSRange5resetEv:263 + 2: _ZN9oceanbase11transaction13ObTxBaseLogCb5resetEv:16188 + 3: 240 + 4: 240 _ZN9oceanbase4palf3LSN5resetEv:248 + 5: 219 + 2: _ZN9oceanbase10logservice8AppendCb5resetEv:10356 + 2: 240 + 1: _ZN9oceanbase10logservice12AppendCbBase7__resetEv:4596 + 0: 244 _ZN9oceanbase4palf3LSN5resetEv:246 + 3: _ZN9oceanbase6common11ObDLinkBaseINS_11transaction9ObTxLogCbEE5resetEv:5037 + 0: 219 + 5: _ZN9oceanbase5share6ObLSID5resetEv:2628 + 0: 219 + 11: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EE5resetEv:1971 + 0: 219 _ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EE7destroyEv:273 + 16: _ZN9oceanbase6common7ObDListINS_11transaction9ObTxLogCbEE5resetEv:8032 + 1: _ZN9oceanbase6common7ObDListINS_11transaction9ObTxLogCbEE5clearEv:8032 + 2: 251 + 2.3: 251 + 3.3: 251 + 4: 251 + 17: _ZN9oceanbase6common7ObDListINS_11transaction9ObTxLogCbEE5resetEv:8032 + 1: _ZN9oceanbase6common7ObDListINS_11transaction9ObTxLogCbEE5clearEv:8032 + 2: 251 + 2.3: 251 + 3.3: 251 + 4: 251 +_ZN9oceanbase5trace7ObTrace10begin_spanEjhb:2503582:43554 + 1: 41008 + 3: 40515 + 3.1: 505 + 6: 0 + 7: 0 + 9: 0 + 10: 0 + 13: 0 + 14: 0 + 15: 0 + 16: 0 + 17: 0 + 18: 0 + 20: 0 + 21: 0 + 24: 41031 + 3: _ZNK9oceanbase5trace4UUID9is_initedEv:489138 + 0: 41008 + 0.1: 40515 + 6: _ZNK9oceanbase6common7ObDListINS_5trace9ObSpanCtxEE8is_emptyEv:0 + 0: 0 + 9: _ZNK9oceanbase6common7ObDListINS_5trace9ObSpanCtxEE8is_emptyEv:0 + 0: 0 + 12: _ZN9oceanbase6common7ObDListINS_5trace9ObSpanCtxEE11remove_lastEv:0 + 2: 0 + 2: _ZN9oceanbase6common7ObDListINS_5trace9ObSpanCtxEE6removeEPS3_:0 + 3: 0 + 7: 0 + 6: _ZN9oceanbase6common11ObDLinkBaseINS_5trace9ObSpanCtxEE6unlinkEv:0 + 2: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 18: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: _ZN9oceanbase6common13ObTimeUtility12current_timeEv:0 + 4: 0 + 5.1: 0 + 6: 0 + 8: 0 +_ZN9oceanbase3sql16ObCandiTabletLoc39set_part_loc_with_only_readable_replicaERKmS3_RKNS_6common10ObTabletIDERKlRKNS_5share12ObLSLocationERKNS4_8ObIArrayINS4_6ObAddrEEE:2502180:4594 + 7: 4395 + 8: 4395 + 9: 4395 + 10: 0 + 11.1: 0 + 13.1: 4522 + 16.1: 0 + 19: 4522 + 9: _ZNK9oceanbase3sql16ObCandiTabletLoc20has_selected_replicaEv:35160 + 0: 4395 + 13.1: _ZN9oceanbase3sql14ObOptTabletLoc33assign_with_only_readable_replicaERKmS3_RKNS_6common10ObTabletIDERKlRKNS_5share12ObLSLocationERKNS4_8ObIArrayINS4_6ObAddrEEE:2129317 + 8: 4395 + 10: 4395 + 11: 4395 + 14: 4395 + 15: 4395 + 16.1: 4395 + 16.2: 8938 + 16.3: 8938 + 16.6: 4395 + 18: 4395 + 20.2: 4395 + 21: 4395 + 21.2: 4395 + 22: 0 + 28.1: 4395 + 29.1: 0 + 36: 4522 + 37: 0 + 38.1: 0 + 42: 0 + 9: _ZN9oceanbase3sql14ObOptTabletLoc5resetEv:514215 + 3: 4395 + 4: 4395 + 7: 4395 + 8: 4395 + 5: _ZN9oceanbase6common10ObTabletID5resetEv:57135 + 0: 4395 + 7: _ZN9oceanbase6common13ObSEArrayImplINS_3sql13ObRoutePolicy16CandidateReplicaELl7ENS0_19ModulePageAllocatorELb1EE5resetEv:316440 + 0: 4395 + 0: _ZN9oceanbase6common13ObSEArrayImplINS_3sql13ObRoutePolicy16CandidateReplicaELl7ENS0_19ModulePageAllocatorELb1EE7destroyEv:224145 + 9: 4395 + 11: 0 + 13: 4395 + 15: 4395 + 24: 4395 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_3sql13ObRoutePolicy16CandidateReplicaELl7ENS0_19ModulePageAllocatorELb1EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 12: _ZN9oceanbase6common10ObTabletIDaSERKS1_:30765 + 0: 4395 + 13: _ZNK9oceanbase5share12ObLSLocation9get_ls_idEv:17580 + 0: _ZNK9oceanbase5share20ObLSLocationCacheKey9get_ls_idEv:17580 + 0: _ZN9oceanbase5share6ObLSIDC2ERKS1_:17580 + 0: 4395 + 13.3: _ZN9oceanbase5share6ObLSIDaSERKS1_:17580 + 0: 4395 + 15: _ZNK9oceanbase5share12ObLSLocation14get_renew_timeEv:17580 + 0: 4395 + 17.1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share19ObLSReplicaLocationEE2atEl:35160 + 6: 4395 + 18.1: _ZN9oceanbase6common18ObReplicaTypeCheck19is_readable_replicaEi:35160 + 2: 4395 + 21.2: _ZNK9oceanbase6common12ObIArrayWrapINS0_6ObAddrEE5countEv:30765 + 22.1: _ZNK9oceanbase6common12ObIArrayWrapINS0_6ObAddrEE2atEl:0 + 22.2: _ZNK9oceanbase6common6ObAddreqERKS1_:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 28: _ZN9oceanbase3sql13ObRoutePolicy16CandidateReplicaC2ERKNS_5share19ObLSReplicaLocationE:188985 + 1: _ZN9oceanbase5share19ObLSReplicaLocationC2ERKS1_:188985 + 0: 4395 + 28.3: _ZN9oceanbase6common13ObSEArrayImplINS_3sql13ObRoutePolicy16CandidateReplicaELl7ENS0_19ModulePageAllocatorELb1EE9push_backERKS4_:540585 + 5: 4395 + 6: 0 + 12: 0 + 15: 0 + 15.1: 4395 + 16: 4395 + 15.1: _ZN9oceanbase6common9ObClassOpINS_3sql13ObRoutePolicy16CandidateReplicaELb0EE20construct_and_assignERKS4_RS4_:426315 + 3: _ZN9oceanbase6common16construct_assignINS_3sql13ObRoutePolicy16CandidateReplicaEEEiRT_RKS5_:426315 + 2: _ZN9oceanbase6common21construct_assign_wrapINS_3sql13ObRoutePolicy16CandidateReplicaEEEiRT_RKS5_NS0_8BoolTypeILb0EEE:426315 + 2: _ZN9oceanbase3sql13ObRoutePolicy16CandidateReplicaC2ERKS2_:426315 + 0: 4395 + 0: _ZN9oceanbase5share19ObLSReplicaLocationC2ERKS1_:206565 + 0: 4395 +_ZN9oceanbase3sql11ObResultSet8end_stmtEb:2484365:4752 + 1: 4364 + 2: 4364 + 3.1: 4364 + 3.2: 10 + 3.4: 10 + 4.1: 4364 + 5: 4364 + 6: 4364 + 7: 4364 + 8: 10 + 9.1: 10 + 10.1: 4364 + 11: 4626 + 12.1: 10 + 20.1: 4841 + 20.2: 10 + 20.4: 10 + 21: 4841 + 3.1: _ZN9oceanbase3lib20is_trace_log_enabledEv:34912 + 2: 4364 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:4443 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:30548 + 2: 4364 + 3.2: _ZN9oceanbase6common18get_trace_recorderEv:610 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:610 + 7: 10 + 8: 10 + 8.1: 10 + 3.4: _ZN9oceanbase3lib20is_trace_log_enabledEv:120 + 2: 10 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:70 + 2: 10 + 3.5: _ZN9oceanbase6common18get_trace_recorderEv:680 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:680 + 7: 10 + 8: 10 + 8.1: 10 + 3.11: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl189ELl1600EE9add_eventEv:790 + 2: 10 + 3.1: 10 + 6: 10 + 10: 10 + 11: 10 + 3.12: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:350 + 0: 10 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:50 + 2: 10 + 4: _ZN9oceanbase3sql11ObResultSet15get_trans_stateEv:83000 + 0: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:83000 + 0: 4364 + 0.2: 12 + 4.2: _ZNK9oceanbase3sql10TransState22is_start_stmt_executedEv:39408 + 1: 4364 + 5.2: _ZNK9oceanbase3sql10TransState21is_start_stmt_successEv:8728 + 1: 4364 + 6: _ZNK9oceanbase3sql15ObCacheObjGuard13get_cache_objEv:17456 + 2: 4364 + 10.1: _ZNK9oceanbase3sql14ObPhysicalPlan13is_need_transEv:30548 + 0: 4364 + 11: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:4364 + 0: 4364 + 0.2: 0 + 11.1: _ZN9oceanbase3sql17ObSqlTransControl8end_stmtERNS0_13ObExecContextEb:1606191 + 2: 4393 + 3: 4393 + 5: 4393 + 8: 4393 + 9: 4393 + 9.2: 10 + 9.3: 10 + 10: 10 + 10.1: 10 + 10.3: 4393 + 11: 4393 + 11.3: 4590 + 12.2: 4590 + 12.4: 4587 + 12.6: 10 + 14: 4587 + 15: 973 + 15.2: 10 + 15.3: 10 + 17: 973 + 18.1: 973 + 19: 10 + 20.1: 10 + 21: 10 + 22.1: 10 + 22.2: 10 + 22.4: 10 + 23: 10 + 24.1: 10 + 25.1: 973 + 26: 0 + 27: 0 + 29.2: 0 + 29.4: 10 + 34: 4679 + 35: 4508 + 35.1: 4679 _ZN9oceanbase11transaction14ObTransService17sql_stmt_end_hookERKNS0_11ObXATransIDERNS0_8ObTxDescE:4811 + 36: 4508 + 37.1: 10 + 38: 10 + 38.3: 10 + 42: 10 + 43: 4525 _ZN9oceanbase3sql18ObBasicSessionInfo12set_end_stmtEv:4640 + 44: 4525 + 45.1: 10 + 47: 4525 + 47.3: 4525 + 50: 4525 + 51: 1072 _ZN9oceanbase11transaction30ObTransDeadlockDetectorAdapter36maintain_deadlock_info_when_end_stmtERNS_3sql13ObExecContextEb:1078 + 58: 4563 + 61.1: 12 + 70.1: 4826 _ZN9oceanbase11transaction14ObTxExecResult5resetEv:4870 + 71: 4626 + 3: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:30751 + 2: 4393 + 4: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:30751 + 2: 4393 + 5: _ZNK9oceanbase3sql17ObPhysicalPlanCtx12get_phy_planEv:30751 + 2: 4393 + 10.1: _ZNK9oceanbase3sql17ObPlanCacheObject13get_stmt_typeEv:26358 + 0: 4393 + 11.2: _ZNK9oceanbase3sql14ObPhysicalPlan14has_for_updateEv:38291 + 0: 3481 + 12.4: _ZN9oceanbase3sqlL14get_tx_serviceEPNS0_18ObBasicSessionInfoERPNS_11transaction14ObTransServiceE:478974 + 3: 4590 + 4: 4590 + 5: 4590 + 6: 4590 + 7: 4590 + 8: 10 + 9.1: 10 + 12: 10 + 13: 4587 + 14: 10 + 15.1: 10 + 18: 4587 + 4: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:32130 + 0: 4590 + 6.1: _ZNK9oceanbase11transaction8ObTxDesc13get_tenant_idEv:18360 + 0: 4590 + 13: _ZN9oceanbase5share11ObTenantEnv3mtlIPNS_11transaction14ObTransServiceEEET_m:165960 + 3: 4590 + 3: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:87930 + 2: 4590 + 2.1: 10 + 2.2: 10 + 3.1: _ZNK9oceanbase5share12ObTenantBase2idEv:32130 + 0: 4590 + 18.1: _ZNK9oceanbase11transaction14ObTxExecResult13is_incompleteEv:6811 + 0: 973 + 26: _ZNK9oceanbase3sql8ObDASCtx13get_savepointEv:0 + 0: 0 + 27: _ZN9oceanbase3sql17ObSqlTransControl18get_stmt_expire_tsEPKNS0_17ObPhysicalPlanCtxERKNS0_16ObSQLSessionInfoE:470 + 5: 0 + 5.1: 0 + 7: _ZNK9oceanbase3sql17ObPhysicalPlanCtx27get_trans_timeout_timestampEv:0 + 2: 0 + 11: _ZNK9oceanbase3sql18ObBasicSessionInfo17get_query_timeoutERl:350 + 2: 10 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache20get_ob_query_timeoutEv:210 + 0: 10 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache20get_ob_query_timeoutEb:120 + 0: 10 + 15: _ZNK9oceanbase3sql18ObBasicSessionInfo20get_query_start_timeEv:120 + 0: 10 + 28: _ZNK9oceanbase11transaction14ObTxExecResult14get_touched_lsEv:0 + 0: 0 + 35: _ZNK9oceanbase3sql18ObBasicSessionInfo7get_xidEv:18716 + 0: 4679 + 42: _ZN9oceanbase3sql10ObSQLUtils13is_nested_sqlEPNS0_13ObExecContextE:72848 + 2: 10 + 2: _ZN9oceanbase3sql10ObSQLUtils16is_pl_nested_sqlEPNS0_13ObExecContextE:72558 + 3.1: 4508 + 6: 10 + 6.2: 10 + 7: 10 + 7.1: 10 + 8: 10 + 8.2: 10 + 3.1: _ZN9oceanbase3sql13ObExecContext14get_parent_ctxEv:31556 + 0: 4508 + 6: _ZN9oceanbase3sql13ObExecContext11get_sql_ctxEv:70 + 0: 10 + 7.1: _ZN9oceanbase3sql13ObExecContext16get_pl_stack_ctxEv:70 + 0: 10 + 2.1: _ZN9oceanbase3sql10ObSQLUtils16is_fk_nested_sqlEPNS0_13ObExecContextE:160 + 4: 10 + 4: _ZN9oceanbase3sql13ObExecContext14get_parent_ctxEv:70 + 0: 10 + 70: _ZN9oceanbase3sql18ObBasicSessionInfo16get_trans_resultEv:19304 + 0: 4826 + 15: _ZN9oceanbase3sql11ObResultSet15get_trans_stateEv:50982 + 0: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:50982 + 0: 4626 + 0.2: 12 + 15.1: _ZN9oceanbase3sql10TransState25clear_start_stmt_executedEv:32816 + 1: 4688 + 20.1: _ZN9oceanbase3lib20is_trace_log_enabledEv:38623 + 2: 4688 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:4786 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:33887 + 2: 4841 + 20.2: _ZN9oceanbase6common18get_trace_recorderEv:610 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:610 + 7: 10 + 8: 10 + 8.1: 10 + 20.4: _ZN9oceanbase3lib20is_trace_log_enabledEv:120 + 2: 10 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:70 + 2: 10 + 20.5: _ZN9oceanbase6common18get_trace_recorderEv:680 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:680 + 7: 10 + 8: 10 + 8.1: 10 + 20.11: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl189ELl1600EE9add_eventEv:900 + 2: 10 + 3.1: 10 + 6: 10 + 10: 10 + 11: 10 + 20.12: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:350 + 0: 10 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:50 + 2: 10 +_ZN9oceanbase11transaction16ObTxReadSnapshotC2Ev:2482800:10680 + 1: 10345 + 3: 10345 + 6: 10345 + 7: 10345 + 2: _ZN9oceanbase11transaction12ObTxSnapshotC2Ev:237935 + 1: 10345 + 4: _ZN9oceanbase5share6ObLSIDC2Ev:82760 + 0: 10345 + 6: _ZN9oceanbase6common9ObSEArrayINS_11transaction6ObPairINS_5share6ObLSIDElEELl1ENS0_19ModulePageAllocatorELb0EEC2Ev:1541405 + 0.1: 10345 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction6ObPairINS_5share6ObLSIDElEELl1ENS0_19ModulePageAllocatorELb0EEC2ElRKS7_:1386230 + 2: 10345 + 5: 10345 + 6: 10345 + 8: 10345 + 17.1: 10345 + 2: _ZN9oceanbase6common8ObIArrayINS_11transaction6ObPairINS_5share6ObLSIDElEEEC2EPS6_l:124140 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_11transaction6ObPairINS_5share6ObLSIDElEEEC2EPS6_l:124140 + 0: 10345 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:589665 + 0: 10345 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:258625 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:258625 + 2: 10345 + 8: 10345 +_ZN9oceanbase11transaction16ObTxReadSnapshotC1Ev:2482800:10680 + 1: 10345 + 3: 10345 + 6: 10345 + 7: 10345 + 2: _ZN9oceanbase11transaction12ObTxSnapshotC2Ev:237935 + 1: 10345 + 4: _ZN9oceanbase5share6ObLSIDC2Ev:82760 + 0: 10345 + 6: _ZN9oceanbase6common9ObSEArrayINS_11transaction6ObPairINS_5share6ObLSIDElEELl1ENS0_19ModulePageAllocatorELb0EEC2Ev:1541405 + 0.1: 10345 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction6ObPairINS_5share6ObLSIDElEELl1ENS0_19ModulePageAllocatorELb0EEC2ElRKS7_:1386230 + 2: 10345 + 5: 10345 + 6: 10345 + 8: 10345 + 17.1: 10345 + 2: _ZN9oceanbase6common8ObIArrayINS_11transaction6ObPairINS_5share6ObLSIDElEEEC2EPS6_l:124140 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_11transaction6ObPairINS_5share6ObLSIDElEEEC2EPS6_l:124140 + 0: 10345 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:589665 + 0: 10345 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:258625 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:258625 + 2: 10345 + 8: 10345 +_ZN9oceanbase7storage26ObTabletCreateDeleteHelper20check_and_get_tabletERKNS0_14ObTabletMapKeyERNS0_14ObTabletHandleEl:2480712:5771 + 4: 5645 + 5: 5645 + 6: 5645 _ZN9oceanbase7storage14ObTabletHandleC1Ev:5844 + 7: 5739 + 11: 4764 _ZN9oceanbase7storage26ObTabletCreateDeleteHelper10get_tabletERKNS0_14ObTabletMapKeyERNS0_14ObTabletHandleE:4828 + 11.1: 5501 + 12.1: 23 + 14.3: 5560 + 18.2: 5543 _ZN9oceanbase7storage8ObTablet17get_tablet_statusERNS0_14ObTabletStatus6StatusE:5527 + 18.3: 5661 + 19.1: 23 + 21.1: 5668 + 22: 27 + 26: 5664 + 27.1: 23 + 32: 23 + 32.1: 23 + 33.1: 23 + 39: 5665 + 40: 5665 _ZN9oceanbase7storage14ObTabletHandleaSERKS1_:5986 + 43: 5700 + 44.6: 5441 + 44.8: 23 + 44.10: 5759 _ZN9oceanbase7storage14ObTabletHandleD1Ev:5865 + 8: _ZN9oceanbase6common11ObTimeGuardC2EPKcl:625059 + 2: 4764 + 3: 4764 + 4: 4764 + 6: 4764 + 8: 4764 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:5739 + 2: 5739 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:5795 + 13.1: _ZN9oceanbase6common11ObTimeGuard5clickEPKc:394769 + 3: 5560 + 4: 5560 + 5: 5560 + 6: 5560 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:5569 + 2: 5501 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:5798 + 14.1: _ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE7get_objEv:61160 + 2: 5560 + 14.2: _ZNK9oceanbase7storage8ObTablet18is_ls_inner_tabletEv:61160 + 2: _ZNK9oceanbase6common10ObTabletID18is_ls_inner_tabletEv:61160 + 0: 5560 + 20.1: _ZN9oceanbase6common11ObTimeGuard5clickEPKc:402513 + 3: 5668 + 4: 5668 + 5: 5668 + 6: 5668 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:5753 + 2: 5661 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:6179 + 31: _ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE7get_objEv:92 + 2: 23 + 31.1: _ZN9oceanbase7storage21ObTabletStatusCheckerC2ERNS0_8ObTabletE:184 + 1: 23 + 35: _ZN9oceanbase6common11ObTimeGuard5clickEPKc:1771 + 3: 23 + 4: 23 + 5: 23 + 6: 23 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:115 + 2: 23 + 44.6: _ZN9oceanbase6common11ObTimeGuardD2Ev:98902 + 2.1: 5759 + 2.2: 23 + 3.1: 23 + 3.5: 23 + 2: _ZNK9oceanbase6common11ObTimeGuard8get_diffEv:46105 + 2: 5759 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:5792 + 2: 5700 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:5764 + 44.7: _ZN9oceanbase6common11ObTimeGuardD2Ev:1472 + 2.1: 23 + 2.2: 23 + 3.1: 23 + 3.5: 23 + 2: _ZNK9oceanbase6common11ObTimeGuard8get_diffEv:276 + 2: 23 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:115 + 2: 23 +_ZN9oceanbase6common8TCRWLock6wrlockEl:2454292:6 + 1: 6 + 3: 6 _ZN9oceanbase6common7ObLatch6wrlockEjlPKj:7 + 4: 6 + 5: 6 + 6: 6 + 8.1: 8 + 8.2: 0 + 9: 8 + 9.1: 0 + 10: 0 + 14: 0 + 15: 0 + 17: 8 + 20: 8 + 4: _ZN9oceanbase6common8get_itidEv:168 + 4: 6 + 5: 0 + 6: 0 + 8: 0 + 6: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:24 + 0: 6 + 6.1: _ZN9oceanbase6common5TCRef4syncEPi:2453430 + 2: 6 + 3.1: 70092 + 3.3: 70092 + 4: 70090 + 5: 70090 + 5.1: 0 + 9: _ZN9oceanbase6common5TCRef5xref_EPii:32 + 0: 8 + 10.1: _ZN9oceanbase6common9LWaitCond4waitEl:0 + 2: 0 + 3: 0 + 5: 0 +_ZN9oceanbase8memtable13ObLockWaitMgr13check_timeoutEv:2445152:50 + 1: 42 + 2: 42 + 3: 42 + 8: 42 + 9: 42 _ZN9oceanbase8memtable13ObLockWaitMgr26fetch_deadlocked_sessions_ERPNS_6common9ObSEArrayINS1_8SessPairELl16ENS2_19ModulePageAllocatorELb0EEE:42 + 13: 1 + 15: 0 + 19.1: 1 + 19.2: 3 + 20: 0 + 21: 0 + 24.1: 0 + 25: 0 + 26: 0 + 27: 0 + 28: 0 + 28.1: 0 + 28.3: 0 + 29.1: 0 + 31: 0 + 32.2: 0 + 32.3: 0 + 32.4: 0 + 32.5: 0 + 32.6: 0 + 32.10: 0 + 32.11: 0 + 32.12: 0 + 35.1: 0 + 35.2: 0 + 39.1: 0 + 40.2: 0 + 40.3: 0 + 40.4: 0 + 40.5: 0 + 47.1: 0 + 48.1: 0 + 50.2: 0 + 51.1: 0 + 53: 0 + 54.1: 0 + 57: 0 + 59: 0 + 60: 0 + 61: 0 + 61.1: 0 + 62.1: 0 + 63.1: 0 + 64.1: 0 + 66: 0 + 67.1: 0 + 68.1: 0 + 68.2: 0 + 70: 0 + 71.1: 0 + 72.1: 0 + 72.2: 0 + 76.1: 0 + 79.1: 0 + 81: 0 + 81.1: 0 + 82.1: 0 + 84.1: 0 + 88: 0 + 89.1: 0 + 90.1: 0 + 92: 0 + 92.1: 0 + 94: 3 + 95: 0 + 97.1: 0 + 98: 2 + 99: 0 + 101: 2 + 12: _ZN9oceanbase6common16ObClockGenerator8getClockEv:21 + 4: 1 + 5.1: 0 + 8: 1 + 6: _ZN9oceanbase6common16ObClockGenerator6get_usEv:0 + 2: 0 + 18: _ZN9oceanbase8memtable13ObLockWaitMgr6get_qsEv:17 + 2: 1 + 2.1: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common7ObQSyncC2Ev:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ObQSync3RefC2Ev:0 + 0: 0 + 18.1: _ZN9oceanbase6common18QSyncCriticalGuardC2ERNS0_7ObQSyncE:135 + 0: 1 + 0: _ZN9oceanbase6common7ObQSync11acquire_refEv:101 + 2: 1 + 3: 1 + 4: 1 + 5.1: 0 + 7: 1 + 2: _ZN9oceanbase6common8get_itidEv:28 + 4: 1 + 5: 0 + 6: 0 + 8: 0 + 3: _ZN9oceanbase6common7ObQSync7add_refEll:19 + 6: 1 + 19.1: _ZN9oceanbase6common10FixedHash2INS_3rpc14ObLockWaitNodeEE10quick_nextEPS3_:2442822 + 1.1: 97713 + 1.2: 97710 + 2: 97713 + 1.1: _ZN9oceanbase6common10FixedHash2INS_3rpc14ObLockWaitNodeEE15quick_next_nodeEPS3_:1172580 + 2: 97714 + 3: 1 + 4.1: 97713 + 352.1: 1 + 4.1: _ZN9oceanbase6common15is_last_bit_setEm:195426 + 2: 97713 + 5: _ZN9oceanbase6common10FixedHash2INS_3rpc14ObLockWaitNodeEE7get_preEPS3_:0 + 0: _ZNK9oceanbase6common10SpHashNode4hashEv:0 + 0: 0 + 0.1: _ZN9oceanbase6common10FixedHash2INS_3rpc14ObLockWaitNodeEE7get_preEm:0 + 0: 0 + 2.1: _ZN9oceanbase6common10SpHashNode8is_dummyEv:683970 + 0: 97710 + 25: _ZNK9oceanbase6common10SpHashNode4hashEv:0 + 0: 0 + 28: _ZN9oceanbase3rpc14ObLockWaitNode10is_timeoutEv:0 + 0: 0 + 32.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:0 + 2: 0 + 35.1: _ZNK9oceanbase3rpc14ObLockWaitNode18is_standalone_taskEv:0 + 0: 0 + 38: _ZN9oceanbase3rpc14ObLockWaitNode13on_retry_lockEm:0 + 0: 0 + 40.1: _ZNK9oceanbase3rpc14ObLockWaitNode10get_run_tsEv:0 + 0: 0 + 46: _ZN9oceanbase3rpc14ObLockWaitNode13on_retry_lockEm:0 + 0: 0 + 62: _ZN9oceanbase3sql20ObSessionGetterGuard11get_sessionERPNS0_16ObSQLSessionInfoE:0 + 2: 0 + 3: 0 + 75: _ZN9oceanbase3rpc14ObLockWaitNode13on_retry_lockEm:0 + 0: 0 + 79: _ZNK9oceanbase3sql18ObBasicSessionInfo24has_explicit_start_transEv:0 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo10TransFlags24has_explicit_start_transEv:0 + 0: 0 + 80: _ZNK9oceanbase3sql18ObBasicSessionInfo14get_autocommitERb:0 + 2: 0 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache14get_autocommitEv:0 + 0: 0 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache14get_autocommitEb:0 + 0: 0 + 82: _ZNK9oceanbase3sql18ObBasicSessionInfo10get_sessidEv:0 + 0: 0 + 83: _ZNK9oceanbase3sql18ObBasicSessionInfo20get_current_trace_idEv:0 + 0: 0 + 97: _ZN9oceanbase6common18QSyncCriticalGuardD2Ev:168 + 0: 3 + 0.2: 0 + 0: _ZN9oceanbase6common7ObQSync11release_refEl:105 + 2: 3 + 3: 3 + 4.1: 0 + 2: _ZN9oceanbase6common7ObQSync7add_refEll:81 + 3: 3 + 6: 3 + 99.1: _ZN9oceanbase6common7ObQSync4syncEv:0 + 2.1: 0 + 2.3: 0 + 5.1: 0 +_ZN9oceanbase3omt17ObTenantConfigMgr25get_tenant_config_versionEm:2424260:5392 + 1: 5207 + 3: 5207 + 4: 5207 + 5: 0 + 5.2: 5399 + 7.1: 0 + 11.2: 5292 + 4: _ZN9oceanbase6common7DRWLock11RDLockGuardC2ERS1_:552734 + 0: 5207 + 2: 5279 + 3.1: 0 + 2: _ZN9oceanbase6common7DRWLock6rdlockEv:437388 + 2: 5207 + 2.1: 5207 _ZN9oceanbase6common7ObLatch6rdlockEjl:5271 + 2: _ZN9oceanbase6common8get_itidEv:145796 + 4: 5207 + 5: 0 + 6: 0 + 8: 0 + 5.1: _ZNK9oceanbase6common4hash9ObHashMapINS_3omt10ObTenantIDElNS1_24LatchReadWriteDefendModeENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS4_lEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKS4_Rll:1099070 + 7: 5399 + 7: _ZN9oceanbase6common4hash11ObHashTableINS_3omt10ObTenantIDENS1_11HashMapPairIS4_lEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS6_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKS4_RS6_l:1050479 + 5: 5279 + 5.1: 5279 + 6.1: 0 + 10: 5279 + 19: 5414 + 5: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_3omt10ObTenantIDElEENS0_7ObLatchENS1_5NCondEEEEEbRKT_:52790 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_3omt10ObTenantIDElEENS0_7ObLatchENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:52790 + 2: 5279 + 14: _ZN9oceanbase6common4hash16ObBucketLockCondINS1_11HashMapPairINS_3omt10ObTenantIDElEENS1_24LatchReadWriteDefendModeEE4lockEv:42232 + 2: 5279 + 14.1: _ZN9oceanbase6common4hash15LatchReadLockerC2ERNS0_7ObLatchE:196808 + 2: 5279 + 3: 5414 _ZN9oceanbase6common7ObLatch6rdlockEjl:5305 + 4.1: 0 + 18: _ZN9oceanbase6common4hash11ObHashTableINS_3omt10ObTenantIDENS1_11HashMapPairIS4_lEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS6_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE32internal_get_with_timeout_unsafeERNS1_17ObHashTableBucketIS6_NS0_7ObLatchENS1_5NCondEEERKS4_RPKS6_l:341082 + 6: _ZNK9oceanbase6common4hash11ObHashTableINS_3omt10ObTenantIDENS1_11HashMapPairIS4_lEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS6_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE12internal_getERKNS1_17ObHashTableBucketIS6_NS0_7ObLatchENS1_5NCondEEERKS4_RPKS6_Rb:341082 + 6: 5414 + 8.1: 5414 + 10: 5414 + 14: 5414 + 16: 0 + 9: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_11HashMapPairINS_3omt10ObTenantIDElEEE16check_magic_codeEv:16242 + 0: 5414 + 9.1: _ZL12abort_unlessb:32484 + 5: 5414 + 6: 0 + 10.1: _ZNK9oceanbase6common4hash8equal_toINS_3omt10ObTenantIDEEclERKS4_S7_:21656 + 2: _ZNK9oceanbase3omt10ObTenantIDeqERKS1_:21656 + 2: 5414 + 21: _ZN9oceanbase6common11copy_assignINS0_4hash11HashMapPairINS_3omt10ObTenantIDElEEEEiRT_RKS7_:140764 + 2: _ZN9oceanbase6common16copy_assign_wrapINS0_4hash11HashMapPairINS_3omt10ObTenantIDElEEEEiRT_RKS7_NS0_8BoolTypeILb1EEE:140764 + 2: _ZN9oceanbase6common4hash11HashMapPairINS_3omt10ObTenantIDElE6assignERKS5_:140764 + 5.1: _ZN9oceanbase6common11copy_assignIlEEiRT_RKS2_:140764 + 2: _ZN9oceanbase6common16copy_assign_wrapIlEEiRT_RKS2_NS0_8BoolTypeILb0EEE:140764 + 2: 5414 + 28: _ZN9oceanbase6common4hash15LatchReadLockerD2Ev:59554 + 2: 5414 + 3: 5414 _ZN9oceanbase6common7ObLatch6unlockEPKj:5642 + 3.1: 0 + 11.2: _ZN9oceanbase6common7DRWLock11RDLockGuardD2Ev:425344 + 2: 5399 + 3: 5399 + 3.1: 5292 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase6common7DRWLock8rdunlockEv:313142 + 2: 5399 + 2.1: 5399 _ZN9oceanbase6common7ObLatch6unlockEPKj:5412 + 2: _ZN9oceanbase6common8get_itidEv:151172 + 4: 5399 + 5: 0 + 6: 0 + 8: 0 + 11.3: _ZN9oceanbase6common7DRWLock11RDLockGuardD2Ev:0 + 2: 0 + 3: 0 + 3.1: 0 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase6common7DRWLock8rdunlockEv:0 + 2: 0 + 2.1: 0 + 2: _ZN9oceanbase6common8get_itidEv:0 + 4: 0 + 5: 0 + 6: 0 + 8: 0 +_ZN9oceanbase3sql8ObSortOp14sort_impl_nextEv:2419597:58362 + 1: 56971 + 2: 56971 + 2: _ZN9oceanbase3sql8ObSortOp19sort_component_nextINS0_12ObSortOpImplEEEiRT_:968507 + 2: 56971 + 2.1: _ZN9oceanbase3sql12ObSortOpImpl12get_next_rowERKNS_6common8ObIArrayIPNS0_6ObExprEEE:740623 + 2: 56971 + 3: 56971 _ZN9oceanbase3sql12ObSortOpImpl12get_next_rowERKNS_6common8ObIArrayIPNS0_6ObExprEEERPKNS0_17ObChunkDatumStore9StoredRowE:57532 +_ZN9oceanbase3lib9ObjectSet11free_objectEPNS0_7AObjectE:2404181:13612 + 1: 13194 + 2: 13194 + 6: 13194 + 7: 13194 + 9: 98 + 16: 13194 _ZN9oceanbase6common13ObPageManager24get_tenant_ctx_allocatorEv:9410 _ZN9oceanbase3lib9ObjectMgr24get_tenant_ctx_allocatorEv:4192 + 17: 13941 + 18: 98 + 19: 98 + 23: 98 + 24: 98 + 25: 98 + 26: 98 + 31: 98 + 35: 98 + 36: 98 + 42: 13941 + 43: 13941 _ZN9oceanbase3lib9ObjectSet14do_free_objectEPNS0_7AObjectE:14214 + 44: 14471 _ZN9oceanbase3lib18SetDoNothingLocker6unlockEv:14876 + 46: 98 + 2: _ZL12abort_unlessb:80144 + 5: 13194 + 6: 98 + 3: _ZNK9oceanbase3lib7AObject8is_validEv:158328 + 2: 13194 + 3.1: _ZL12abort_unlessb:80144 + 5: 13194 + 6: 98 + 4: _ZL12abort_unlessb:80144 + 5: 13194 + 6: 98 + 7.2: _ZL12abort_unlessb:79654 + 5: 13194 + 6: 98 + 9: _ZL12abort_unlessb:106532 + 5: 13194 + 6: 98 + 18: _ZN9oceanbase3lib9SetLocker7trylockEv:1862 + 2: 98 + 2: _ZN9oceanbase3lib7ObMutex7trylockEv:1274 + 0: 98 + 20: _ZN9oceanbase3lib9ObjectSet18do_free_dirty_listEv:8722 + 2: 98 + 5: 98 + 6: 98 + 8: 98 + 9: 98 + 10.1: 98 + 12: 98 + 13: 98 + 23: _ZN9oceanbase3lib7ObMutex4lockEv:2548 + 0: 98 + 32: _ZN9oceanbase3lib7ObMutex6unlockEv:2156 + 0: 98 + 34: _ZN9oceanbase3lib7ObMutex6unlockEv:784 + 0: 98 + 37: _ZN9oceanbase3lib9ObjectSet18do_free_dirty_listEv:9506 + 2: 98 + 5: 98 + 6: 98 + 8: 98 + 9: 98 + 10.1: 98 + 12: 98 + 13: 98 + 42: _ZN9oceanbase3lib9SetLocker4lockEv:2940 + 2: 98 + 2: _ZN9oceanbase3lib7ObMutex4lockEv:2548 + 0: 98 +_ZN9oceanbase12blocksstable17ObTmpFileIOHandleC2Ev:2399632:3514 + 1: 3364 + 2: 3364 + 3: 3364 + 5: 3364 + 7: 3364 + 11: 3364 + 12: 3364 + 13: 3364 _ZN9oceanbase6common8ObIOFlagC1Ev:3526 + 14: 3643 + 15: 3364 + 16: 3643 + 16.3: 0 + 16.4: 0 + 16.5: 0 + 1: _ZN9oceanbase6common9ObSEArrayINS_12blocksstable17ObTmpFileIOHandle14ObIOReadHandleELl1ENS0_19ModulePageAllocatorELb0EEC2Ev:484416 + 0.1: 3364 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable17ObTmpFileIOHandle14ObIOReadHandleELl1ENS0_19ModulePageAllocatorELb0EEC2ElRKS5_:433956 + 5: 3364 + 6: 3364 + 8: 3364 + 17.1: 3364 + 2: _ZN9oceanbase6common8ObIArrayINS_12blocksstable17ObTmpFileIOHandle14ObIOReadHandleEEC2EPS4_l:40368 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_12blocksstable17ObTmpFileIOHandle14ObIOReadHandleEEC2EPS4_l:40368 + 0: 3364 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:198476 + 0: 3364 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:84100 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:84100 + 2: 3364 + 8: 3364 + 2: _ZN9oceanbase6common9ObSEArrayINS_12blocksstable17ObTmpFileIOHandle17ObPageCacheHandleELl1ENS0_19ModulePageAllocatorELb0EEC2Ev:410408 + 0.1: 3364 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable17ObTmpFileIOHandle17ObPageCacheHandleELl1ENS0_19ModulePageAllocatorELb0EEC2ElRKS5_:349856 + 5: 3364 + 6: 3364 + 8: 3364 + 17.1: 3364 + 2: _ZN9oceanbase6common8ObIArrayINS_12blocksstable17ObTmpFileIOHandle17ObPageCacheHandleEEC2EPS4_l:60552 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_12blocksstable17ObTmpFileIOHandle17ObPageCacheHandleEEC2EPS4_l:60552 + 0: 3364 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:111012 + 0: 3364 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:60552 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:60552 + 2: 3364 + 8: 3364 + 3: _ZN9oceanbase6common9ObSEArrayINS_12blocksstable17ObTmpFileIOHandle18ObBlockCacheHandleELl1ENS0_19ModulePageAllocatorELb0EEC2Ev:410408 + 0.1: 3364 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable17ObTmpFileIOHandle18ObBlockCacheHandleELl1ENS0_19ModulePageAllocatorELb0EEC2ElRKS5_:349856 + 5: 3364 + 6: 3364 + 8: 3364 + 17.1: 3364 + 2: _ZN9oceanbase6common8ObIArrayINS_12blocksstable17ObTmpFileIOHandle18ObBlockCacheHandleEEC2EPS4_l:60552 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_12blocksstable17ObTmpFileIOHandle18ObBlockCacheHandleEEC2EPS4_l:60552 + 0: 3364 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:111012 + 0: 3364 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:60552 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:60552 + 2: 3364 + 8: 3364 +_ZN9oceanbase12blocksstable17ObTmpFileIOHandleC1Ev:2399632:3514 + 1: 3364 + 2: 3364 + 3: 3364 + 5: 3364 + 7: 3364 + 11: 3364 + 12: 3364 + 13: 3364 _ZN9oceanbase6common8ObIOFlagC1Ev:3526 + 14: 3643 + 15: 3364 + 16: 3643 + 16.3: 0 + 16.4: 0 + 16.5: 0 + 1: _ZN9oceanbase6common9ObSEArrayINS_12blocksstable17ObTmpFileIOHandle14ObIOReadHandleELl1ENS0_19ModulePageAllocatorELb0EEC2Ev:484416 + 0.1: 3364 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable17ObTmpFileIOHandle14ObIOReadHandleELl1ENS0_19ModulePageAllocatorELb0EEC2ElRKS5_:433956 + 5: 3364 + 6: 3364 + 8: 3364 + 17.1: 3364 + 2: _ZN9oceanbase6common8ObIArrayINS_12blocksstable17ObTmpFileIOHandle14ObIOReadHandleEEC2EPS4_l:40368 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_12blocksstable17ObTmpFileIOHandle14ObIOReadHandleEEC2EPS4_l:40368 + 0: 3364 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:198476 + 0: 3364 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:84100 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:84100 + 2: 3364 + 8: 3364 + 2: _ZN9oceanbase6common9ObSEArrayINS_12blocksstable17ObTmpFileIOHandle17ObPageCacheHandleELl1ENS0_19ModulePageAllocatorELb0EEC2Ev:410408 + 0.1: 3364 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable17ObTmpFileIOHandle17ObPageCacheHandleELl1ENS0_19ModulePageAllocatorELb0EEC2ElRKS5_:349856 + 5: 3364 + 6: 3364 + 8: 3364 + 17.1: 3364 + 2: _ZN9oceanbase6common8ObIArrayINS_12blocksstable17ObTmpFileIOHandle17ObPageCacheHandleEEC2EPS4_l:60552 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_12blocksstable17ObTmpFileIOHandle17ObPageCacheHandleEEC2EPS4_l:60552 + 0: 3364 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:111012 + 0: 3364 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:60552 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:60552 + 2: 3364 + 8: 3364 + 3: _ZN9oceanbase6common9ObSEArrayINS_12blocksstable17ObTmpFileIOHandle18ObBlockCacheHandleELl1ENS0_19ModulePageAllocatorELb0EEC2Ev:410408 + 0.1: 3364 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable17ObTmpFileIOHandle18ObBlockCacheHandleELl1ENS0_19ModulePageAllocatorELb0EEC2ElRKS5_:349856 + 5: 3364 + 6: 3364 + 8: 3364 + 17.1: 3364 + 2: _ZN9oceanbase6common8ObIArrayINS_12blocksstable17ObTmpFileIOHandle18ObBlockCacheHandleEEC2EPS4_l:60552 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_12blocksstable17ObTmpFileIOHandle18ObBlockCacheHandleEEC2EPS4_l:60552 + 0: 3364 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:111012 + 0: 3364 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:60552 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:60552 + 2: 3364 + 8: 3364 +_ZN9oceanbase3sql16ObHashDistinctOp18inner_get_next_rowEv:2393269:29512 + 1: 27532 + 2: 27532 + 4: 27599 + 5: 167 + 6.1: 27599 + 7: 167 + 8.1: 167 + 9.1: 27599 + 9.2: 0 + 9.4: 28501 _ZN9oceanbase3sql16ObHashDistinctOp19do_unblock_distinctEv:28953 + 11.1: 167 + 13: 413 + 14: 413 + 15: 424 + 16: 424 + 18: 427 + 23: 25384 + 3: _ZN9oceanbase3sql10ObOperator20clear_evaluated_flagEv:220256 + 2.1: 27532 + 2.3: 0 + 3: 0 + 2.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql10ObEvalInfoEE5countEv:110128 + 0: 27532 + 3: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql10ObEvalInfoEE2atEl:0 + 6: 0 + 3.1: _ZN9oceanbase3sql10ObEvalInfo20clear_evaluated_flagEv:0 + 2: 0 + 4: 0 + 15: _ZNK9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE14get_bucket_numEv:7678 + 0: _ZNK9oceanbase3sql30ObHashPartitionExtendHashTableINS0_14ObHashPartColsEE14get_bucket_numEv:7678 + 2: 413 + 2.2: _ZNK9oceanbase6common9Ob2DArrayIPNS_3sql14ObHashPartColsELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS4_Ll64ES5_Lb0EEEE5countEv:2968 + 0: 424 + 17: _ZN9oceanbase3sql16ObHashDistinctOp5resetEv:73691 + 2: 424 + 4: 424 + 5: 424 _ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE5resetEv:257 + 7: 423 + 11: 423 + 12: 423 + 14.1: 423 _ZZN9oceanbase3sql16ObHashDistinctOp5resetEvENK5$_459clEPKc.ae889f3027d8490103b30de3c389dd2f:262 + 6: _ZN9oceanbase3sql20ObAdaptiveByPassCtrl5resetEv:26649 + 1: 423 + 2: 423 + 4: 423 + 6: 423 + 3: _ZN9oceanbase3sql20ObAdaptiveByPassCtrl11reset_stateEv:4653 + 0: 423 + 7: _ZN9oceanbase3sql11get_my_specINS0_16ObHashDistinctOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:1692 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:1692 + 0: 423 +_ZN9oceanbase3lib17ObMallocAllocator4freeEPv:2367714:6078 + 1: 5881 + 6: 5881 + 7: 5881 + 9: 5881 + 10: 5881 + 11: 5 + 13: 5881 _ZN9oceanbase6common20get_mem_leak_checkerEv:5968 + 17: 5 + 18: 5394 + 20: 5 + 24: 5354 + 9.1: _ZL12abort_unlessb:35311 + 5: 5881 + 6: 5 + 11: _ZL12abort_unlessb:47098 + 5: 5881 + 6: 5 + 13.1: _ZN9oceanbase6common16ObMemLeakChecker7on_freeERNS_3lib7AObjectE:54775 + 2: 5394 + 2.1: 5 + 3: 5 + 6: 5 + 8: 5 + 9: 5 + 9.1: 5 + 9.3: 5 + 9.4: 5 + 10.1: 5 + 2: _ZNK9oceanbase6common16ObMemLeakChecker14is_label_checkEv:21576 + 0: 5394 + 4: _ZN9oceanbase6common16ObMemLeakChecker11label_matchERNS_3lib7AObjectE:95 + 2: 5 + 8: _ZN9oceanbase6common4hash9ObHashMapINS0_16ObMemLeakChecker6PtrKeyENS3_4InfoENS1_24LatchReadWriteDefendModeENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS4_S5_EEEELi13ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE16erase_refactoredERKS4_PS5_:100 + 10: 5 + 14: _ZNK9oceanbase3lib7AObject5blockEv:674455 + 2: _ZN9oceanbase3lib6AChunk9ptr2chunkEPKv:80910 + 2: 5394 + 3: _ZNK9oceanbase3lib6AChunk8is_validEv:37758 + 2: 5394 + 3.1: _ZL12abort_unlessb:32414 + 5: 5394 + 6: 5 + 4: _ZNK9oceanbase3lib6AChunk7ptr2blkEPKv:523373 + 2: 5394 + 4: 5394 + 3: _ZNK9oceanbase3lib6AChunk17max_blk_offset_leEi:307613 + 2: _ZNK9oceanbase3lib13ASimpleBitSetILi256EE10max_bit_leEi:307613 + 2: 5394 + 3: 5394 + 7: 5394 + 9: 5394 + 11.1: 5 + 12: 5394 + 8: _ZN9oceanbase3lib13ASimpleBitSetILi256EE10max_bit_leEmi:124062 + 2: 5394 + 3: 5394 + 4: 5394 + 16: _ZNK9oceanbase3lib6ABlock8is_validEv:118668 + 2: 5394 + 16.1: _ZL12abort_unlessb:32389 + 5: 5394 + 6: 5 + 17: _ZL12abort_unlessb:43202 + 5: 5394 + 6: 5 + 18: _ZL12abort_unlessb:32389 + 5: 5394 + 6: 5 + 21: _ZN9oceanbase3lib9ObjectSet11free_objectEPNS0_7AObjectE:879808 + 6: 5394 + 7: 5394 + 9: 5 + 16: 5394 _ZN9oceanbase3lib12SubObjectMgr24get_tenant_ctx_allocatorEv:5632 + 17: 5636 + 18: 5238 + 19: 5018 _ZN9oceanbase3lib9ObjectSet14do_free_objectEPNS0_7AObjectE:5182 + 23: 55 + 24: 53 + 25: 51 + 26: 51 + 31: 51 + 35: 5 + 36: 5 + 42: 796 + 43: 841 _ZN9oceanbase3lib9ObjectSet14do_free_objectEPNS0_7AObjectE:872 + 3: _ZNK9oceanbase3lib7AObject8is_validEv:64728 + 2: 5394 + 3.1: _ZL12abort_unlessb:32414 + 5: 5394 + 6: 5 + 4: _ZL12abort_unlessb:32414 + 5: 5394 + 6: 5 + 7.2: _ZL12abort_unlessb:32389 + 5: 5394 + 6: 5 + 9: _ZL12abort_unlessb:43202 + 5: 5394 + 6: 5 + 18: _ZN9oceanbase3lib9SetLocker7trylockEv:78360 + 2: 5238 + 2: _ZN9oceanbase3lib7ObMutex7trylockEv:47266 + 0: 5238 _ZN9oceanbase6common12ObLatchMutex8try_lockEjPKj:5399 + 20: _ZN9oceanbase3lib9ObjectSet18do_free_dirty_listEv:49592 + 2: 5317 + 5: 25 _ZN9oceanbase3lib11ObLockGuardINS0_7ObMutexEEC2ERS2_:21 + 6: 23 + 8: 23 + 9: 23 _ZN9oceanbase3lib11ObLockGuardINS0_7ObMutexEED2Ev:19 + 10.1: 27 + 12: 24 + 13: 24 _ZN9oceanbase3lib9ObjectSet14do_free_objectEPNS0_7AObjectE:19 + 23: _ZN9oceanbase3lib7ObMutex4lockEv:1175 + 0: 55 _ZN9oceanbase6common12ObLatchMutex4lockEjl:50 + 32: _ZN9oceanbase3lib7ObMutex6unlockEv:290 + 0: 51 _ZN9oceanbase6common12ObLatchMutex6unlockEv:46 + 34: _ZN9oceanbase3lib7ObMutex6unlockEv:40 + 0: 5 + 37: _ZN9oceanbase3lib9ObjectSet18do_free_dirty_listEv:495 + 2: 5 + 5: 5 + 6: 5 + 8: 5 + 9: 5 + 10.1: 5 + 12: 5 + 13: 5 + 42: _ZN9oceanbase3lib9SetLocker4lockEv:17571 + 2: 796 + 2: _ZN9oceanbase3lib7ObMutex4lockEv:14387 + 0: 796 _ZN9oceanbase6common12ObLatchMutex4lockEjl:821 +_ZN9oceanbase12blocksstable13ObDatumRowkey11from_rowkeyERKNS_6common8ObRowkeyERNS2_12ObIAllocatorE:2354891:5920 + 1: 5446 + 2: 5446 + 5: 5446 + 6: 0 + 7.1: 0 + 13: 5526 + 14: 5526 _ZN9oceanbase6common26ObWrapperAllocatorWithAttr5allocEl:5396 _ZN9oceanbase6common23ObReserveArenaAllocatorILl1024EE5allocEl:250 + 15: 0 + 16.1: 0 + 19: 5124 + 19.1: 5124 + 19.2: 5124 + 20: 5125 + 21.1: 5131 + 21.2: 10431 + 21.3: 10431 + 21.5: 5131 + 22: 5129 + 23.1: 0 + 28: 5325 + 29: 5325 + 30: 5325 + 32: 5325 + 33.1: 0 + 34: 0 + 37: 5325 + 5: _ZNK9oceanbase6common8ObRowkey8is_validEv:54460 + 0: 5446 + 8.1: _ZNK9oceanbase6common8ObRowkey10is_max_rowEv:119812 + 4: 0 + 4.1: 0 + 5: 0 + 9: 5446 + 5: _ZNK9oceanbase6common5ObObj12is_max_valueEv:49014 + 2: 5446 + 2.1: 0 + 9: _ZN9oceanbase12blocksstable13ObDatumRowkey14set_max_rowkeyEv:0 + 0: 0 + 0: _ZN9oceanbase6common13ObStoreRowkey7set_maxEv:0 + 0: 0 + 10.1: _ZNK9oceanbase6common8ObRowkey10is_min_rowEv:93942 + 4: 5526 + 4.1: 0 + 5: 0 + 9: 0 + 5: _ZNK9oceanbase6common5ObObj12is_min_valueEv:55260 + 2: 5526 + 2.1: 0 + 11: _ZN9oceanbase12blocksstable13ObDatumRowkey14set_min_rowkeyEv:0 + 0: 0 + 0: _ZN9oceanbase6common13ObStoreRowkey7set_minEv:0 + 0: 0 + 19.2: _ZN9oceanbase12blocksstable14ObStorageDatumC2Ev:184572 + 0.1: _ZN9oceanbase12blocksstable14ObStorageDatum7set_nopEv:184572 + 0: _ZN9oceanbase12blocksstable14ObStorageDatum13set_ext_valueEl:184572 + 1: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:46143 + 0: 5124 + 1.1: _ZN9oceanbase6common11ObDatumDesc7set_extEv:46143 + 0: 5124 + 1.3: _ZN9oceanbase6common5ObObj7set_extEl:92286 + 4: 5124 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:46143 + 0: 5124 + 22: _ZNK9oceanbase6common8ObRowkey11get_obj_ptrEv:15357 + 0: 5119 + 22.1: _ZN9oceanbase12blocksstable14ObStorageDatum16from_obj_enhanceERKNS_6common5ObObjE:512245 + 2: 5119 + 5: 5119 + 7.1: 5129 + 8.1: 0 + 12: 2 + 4: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:107499 + 0: 5119 + 5: _ZNK9oceanbase6common5ObObj6is_extEv:20476 + 0: _ZNK9oceanbase6common9ObObjMeta6is_extEv:20476 + 0: 5119 + 6: _ZNK9oceanbase6common5ObObj7get_extEv:10 + 4: 2 + 6.1: _ZN9oceanbase12blocksstable14ObStorageDatum13set_ext_valueEl:84 + 1: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:12 + 0: 2 + 1.1: _ZN9oceanbase6common11ObDatumDesc7set_extEv:16 + 0: 2 + 1.3: _ZN9oceanbase6common5ObObj7set_extEl:56 + 3: 2 + 4: 2 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:36 + 0: 2 + 0: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:16 + 0: 2 + 0.2: _ZN9oceanbase6common9ObObjMeta15set_extend_typeEh:12 + 0: 2 + 7.1: _ZN9oceanbase6common7ObDatum8from_objERKNS0_5ObObjE:261198 + 2: 5117 + 3: 5117 + 83: 0 + 84.1: 0 + 88: 5129 + 3: _ZNK9oceanbase6common5ObObj7is_nullEv:35819 + 0: _ZNK9oceanbase6common9ObObjMeta7is_nullEv:35819 + 0: 5117 + 4: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:0 + 0: 0 + 26: _ZN9oceanbase6common7ObDatum9obj2datumILNS0_17ObObjDatumMapTypeE1EEEvRKNS0_5ObObjE:17 + 2: 1 + 3: 1 + 32: _ZN9oceanbase6common7ObDatum9obj2datumILNS0_17ObObjDatumMapTypeE2EEEvRKNS0_5ObObjE:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 7: 0 + 9: 0 + 10: 0 + 55: _ZN9oceanbase6common7ObDatum9obj2datumILNS0_17ObObjDatumMapTypeE3EEEvRKNS0_5ObObjE:82048 + 2: 5128 + 3: 5128 + 61: _ZN9oceanbase6common7ObDatum9obj2datumILNS0_17ObObjDatumMapTypeE4EEEvRKNS0_5ObObjE:0 + 2: 0 + 3: 0 + 65: _ZN9oceanbase6common7ObDatum9obj2datumILNS0_17ObObjDatumMapTypeE5EEEvRKNS0_5ObObjE:0 + 2: 0 + 3: 0 + 70: _ZN9oceanbase6common7ObDatum9obj2datumILNS0_17ObObjDatumMapTypeE6EEEvRKNS0_5ObObjE:0 + 2: 0 + 3: 0 + 4: 0 + 75: _ZN9oceanbase6common7ObDatum9obj2datumILNS0_17ObObjDatumMapTypeE7EEEvRKNS0_5ObObjE:0 + 2: 0 + 3: 0 + 4: 0 + 79: _ZN9oceanbase6common7ObDatum9obj2datumILNS0_17ObObjDatumMapTypeE8EEEvRKNS0_5ObObjE:0 + 2: 0 + 3: _ZN9oceanbase6common11ObDatumDesc7set_extEv:0 + 0: 0 +_ZNK9oceanbase7storage16ObTableIterParam8is_validEv:2337236:10120 + 1: 9658 + 2: 9658 + 2.2: 9658 + 3: 0 + 3.1: 9658 + 4: 9658 + 4.1: 9658 + 2.1: _ZNK9oceanbase6common10ObTabletID8is_validEv:0 + 0: 0 + 3.2: _ZNK9oceanbase7storage15ObTableReadInfo8is_validEv:695376 + 2: 9658 + 3: 9658 + 3.1: 9658 + 4: 9658 + 5.1: 9658 + 6: 9658 + 7: 9658 + 7.1: 9658 + 3.1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:86922 + 0: 9658 + 6.1: _ZNK9oceanbase12blocksstable19ObStorageDatumUtils8is_validEv:67606 + 0: 9658 + 4.2: _ZNK9oceanbase7storage15ObTableReadInfo23is_valid_full_read_infoEv:1168618 + 3: 9658 + 3.1: 9658 + 4: 9658 + 2: _ZNK9oceanbase7storage15ObTableReadInfo8is_validEv:502216 + 2: 9658 + 3: 9658 + 3.1: 9658 + 4: 9658 + 5.1: 9658 + 6: 9658 + 7: 9658 + 7.1: 9658 + 3.1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:86922 + 0: 9658 + 6.1: _ZNK9oceanbase12blocksstable19ObStorageDatumUtils8is_validEv:67606 + 0: 9658 + 4.1: _ZNK9oceanbase7storage15ObTableReadInfo8is_validEv:531190 + 2: 9658 + 3: 9658 + 3.1: 9658 + 4: 9658 + 5.1: 9658 + 6: 9658 + 7: 9658 + 7.1: 9658 + 3.1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:86922 + 0: 9658 + 6.1: _ZNK9oceanbase12blocksstable19ObStorageDatumUtils8is_validEv:67606 + 0: 9658 +_ZN9oceanbase12blocksstable22ObIndexBlockRowScanner8get_nextERNS0_16ObMicroIndexInfoE:2311555:6981 + 1: 6778 + 6: 6778 + 7: 6778 + 8: 26 + 9.1: 26 + 10.1: 6778 + 11: 1990 + 12.1: 5458 _ZN9oceanbase12blocksstable22ObIndexBlockRowScanner17read_curr_idx_rowEv:5158 + 13.1: 26 + 14.1: 5458 + 15.1: 0 + 16.1: 5458 + 17: 26 + 18.1: 26 + 19.1: 5458 + 20: 5458 + 25: 26 + 26: 5508 + 27: 5508 + 27.1: 5508 + 27.2: 26 + 27.3: 5409 + 28: 5409 + 29: 5409 + 30: 5409 + 31: 5409 + 31.1: 5148 + 31.2: 5398 + 32: 5398 + 32.1: 5135 + 32.2: 5099 + 33: 5099 + 34: 5099 + 35: 5099 + 39: 7324 + 2: _ZN9oceanbase12blocksstable16ObMicroIndexInfo5resetEv:244008 + 3: 6778 + 8: _ZN9oceanbase12blocksstable12MacroBlockId5resetEv:128782 + 2: 6778 + 4: 6778 + 10.1: _ZNK9oceanbase12blocksstable22ObIndexBlockRowScanner12end_of_blockEv:108448 + 2: 6778 + 3: 6778 + 14.1: _ZNK9oceanbase12blocksstable21ObIndexBlockRowParser10get_headerERPKNS0_21ObIndexBlockRowHeaderE:131694 + 2: 5458 + 3: 5458 + 4: 26 + 5.1: 26 + 7: 5458 + 9: 26 + 20: _ZNK9oceanbase12blocksstable21ObIndexBlockRowParser14get_minor_metaERPKNS0_28ObIndexBlockRowMinorMetaInfoE:38206 + 10: 5458 + 36: _ZN9oceanbase12blocksstable12MacroBlockIdaSERKS1_:127475 + 2: 5099 + 3: 5099 + 4: 5099 +_ZN9oceanbase3sql12ObSortOpImpl21array_next_stored_rowERPKNS0_17ObChunkDatumStore9StoredRowE:2286105:54839 + 2: 51015 + 4: 51015 + 7: 50503 + 8: 50503 + 10: 50958 + 7: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql17ObChunkDatumStore9StoredRowEE2atEl:353521 + 6: 50503 +_ZN9oceanbase3sql8ObDASCtx19add_candi_table_locERKNS0_17ObDASTableLocMetaERKNS0_15ObCandiTableLocE:2278045:4486 + 2: 4315 + 3: 4315 + 4: 4315 + 8: 4324 + 9.1: 3 + 10.1: 4476 _ZN9oceanbase3sql8ObDASCtx18extended_table_locERKNS0_17ObDASTableLocMetaERPNS0_13ObDASTableLocE:4711 + 11.1: 0 + 13.1: 4627 + 13.2: 8997 + 13.3: 8997 + 15: 4497 + 16: 4627 _ZN9oceanbase3sql8ObDASCtx19extended_tablet_locERNS0_13ObDASTableLocERKNS0_16ObCandiTabletLocERPNS0_14ObDASTabletLocE:4477 + 17.1: 0 + 20.1: 4524 _ZZN9oceanbase3sql8ObDASCtx19add_candi_table_locERKNS0_17ObDASTableLocMetaERKNS0_15ObCandiTableLocEENK4$_67clEPKc.45c27dd3dc8b42ec4ef71c6f367bd924:4645 + 21: 4346 + 8: _ZN9oceanbase3sql10ObDASUtils20build_table_loc_metaERNS_6common12ObIAllocatorERKNS0_17ObDASTableLocMetaERPS5_:1176469 + 4: 4315 + 6: 4315 + 7: 0 + 8: 3 + 9.1: 3 + 12: 4324 + 13.1: 0 + 16: 3 + 6: _ZN9oceanbase6common16ObArenaAllocator5allocEl:472015 + 0: 4315 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13alloc_alignedEll:454755 + 3: 4315 + 6: 3 + 7: 4315 + 8: 4315 + 10: 4315 + 11: 4315 + 12: 4315 + 13: 4315 + 15.1: 0 + 16: 0 + 18: 0 + 20: 0 + 28: 0 + 35: 4315 + 36: 4315 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE15ensure_cur_pageEv:57157 + 2: 4315 + 3: 3 + 5.1: 3 + 8: 3 + 9: 3 + 10: 3 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:873 + 5: 3 + 6: 3 + 8: 3 + 9: 3 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:717 + 2: 3 + 3: 3 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:48 + 5: 3 + 7: 3 + 8: 3 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:561 + 2: 3 + 2.2: 3 + 2.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:483 + 3: 3 + 4: 3 + 5: 3 + 6: 3 + 7: 3 + 8: 3 + 9: 3 + 10: 3 + 11: 3 + 13: 3 + 14.1: 3 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:21 + 2: 3 + 9: _ZSt3maxIlERKT_S2_S2_:36 + 5: 3 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:72 + 1: 3 + 3: 3 + 8: _ZL12abort_unlessb:18 + 5: 3 + 6: 0 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:24 + 0: 3 + 7: _ZN9oceanbase6common16get_align_offsetEPvl:43150 + 3: 4315 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:30205 + 0: 4315 + 11: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:30205 + 7: 4315 + 15.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE18is_normal_overflowEl:0 + 2: 0 + 16: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11extend_pageEl:0 + 4: 0 + 5: 0 + 8: 0 + 9: 0 + 10.1: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 12: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_tailEPNS3_4PageE:0 + 2: 0 + 3: 0 + 5: 0 + 23.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16lookup_next_pageEl:0 + 3.1: 0 + 4.1: 0 + 5: 0 + 5.1: 0 + 7: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page10reuse_sizeEv:0 + 0: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 32: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9alloc_bigEl:435 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:384 + 3: 3 + 5: 3 + 8: 3 + 9: 3 + 11.1: 3 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:138 + 2: 3 + 3: 3 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:45 + 5: 3 + 7: 3 + 8: 3 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:99 + 1: 3 + 3: 3 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_headEPNS3_4PageE:51 + 4: 3 + 5: 3 + 7: 3 + 11: _ZN9oceanbase3sql17ObDASTableLocMetaC2ERNS_6common12ObIAllocatorE:254585 + 2: 4315 + 4: 4315 + 3: _ZN9oceanbase6common12ObFixedArrayImNS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplImS2_EEERS2_l:185545 + 0: 4315 + 0: _ZN9oceanbase6common16ObFixedArrayImplImNS0_12ObIAllocatorEEC2ERS2_l:120820 + 2: 4315 + 3: 4315 + 4: 4315 + 1: _ZN9oceanbase6common8ObIArrayImEC2Ev:38835 + 0: _ZN9oceanbase6common12ObIArrayWrapImEC2Ev:38835 + 0: 4315 + 12: _ZN9oceanbase3sql17ObDASTableLocMeta6assignERKS1_:272589 + 3: _ZN9oceanbase3sql17ObDASTableLocMeta12light_assignERKS1_:107875 + 2: 4315 + 3: 4315 + 4: 4315 + 4: _ZN9oceanbase6common16ObFixedArrayImplImNS0_12ObIAllocatorEE6assignERKNS0_8ObIArrayImEE:164714 + 2: 4315 + 3: 4315 + 4: 4315 + 5: 4315 + 7: 0 + 8.1: 0 + 13.1: 3 + 13.3: 3 + 13.5: 3 + 14: 3 + 14.1: 3 + 15.1: 0 + 3: _ZNK9oceanbase6common12ObIArrayWrapImE5countEv:21575 + 0: 4315 + 11: _ZN9oceanbase6common16ObFixedArrayImplImNS0_12ObIAllocatorEE5clearEv:17420 + 0: 4355 + 14: _ZNK9oceanbase6common12ObIArrayWrapImE2atEl:42 + 6: 3 +_ZN9oceanbase6common15ObKVCacheHandle5resetEv:2273985:65943 + 1: 64902 + 2: 64902 + 6: 8037 + 7: 8304 + 9: 65800 + 6: _ZN9oceanbase6common15ObKVGlobalCache12get_instanceEv:112518 + 2: 8037 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 6.1: _ZN9oceanbase6common15ObKVGlobalCache6revertEPNS0_18ObKVMemBlockHandleE:311094 + 2: 8037 + 3: _ZN9oceanbase6common14ObKVCacheStore13de_handle_refEPNS0_18ObKVMemBlockHandleE:230724 + 3: 8345 + 7.1: 8345 _ZN9oceanbase6common17ObAtomicReference27dec_ref_cnt_and_inc_seq_numERj:8516 + 8.1: 0 + 9.1: 8100 + 10: 0 + 11.1: 0 +_ZL19ob_ismbchar_utf8mb4PK13ObCharsetInfoPKcS3_.5aa8bf9a2f1d92c2672c2bb9fbfc2e97:2270611:78934 + 1: 76063 + 3.3: 77588 + 2: _ZL26ob_valid_mbcharlen_utf8mb4PK13ObCharsetInfoPKhS3_:1635848 + 3: 76063 + 5: 76063 + 6: 76063 + 8: 1061 + 30: 1061 + 31: 1061 + 32: 1061 + 33: 1061 + 34: 1061 + 7: _ZL26ob_valid_mbcharlen_utf8mb3PKhS0_:133357 + 5: 76063 + 9: 1061 + 11: 1061 + 13: 1061 + 18: 1061 + 20: 1061 + 20.1: 1061 + 20.2: 1061 +_ZN9oceanbase6common12ObBucketLock6rdlockEm:2263917:5334 + 1: 5165 + 2: 5165 + 3: 5165 + 4: 0 + 5.1: 0 + 6.1: 5165 + 7: 0 + 8.1: 0 + 9.1: 5622 + 10.1: 0 + 12: 5622 + 9.1: _ZNK9oceanbase6common12ObBucketLock19bucket_to_latch_idxEm:20660 + 2: 5165 + 9.2: _ZN9oceanbase6common7ObLatch6rdlockEjl:1691473 + 4: 5165 + 7: 5165 + 7.1: 0 + 7.3: 0 + 8: 5165 + 8.1: 0 + 8.3: 0 + 9: 5172 + 9.3: 5622 + 17.1: 0 + 21: 0 + 7.2: _ZN9oceanbase6common7ObLatch12LowTryRDLockC2Eb:0 + 0: 0 + 8.2: _ZN9oceanbase6common7ObLatch12LowTryRDLockC2Eb:0 + 0: 0 + 9.3: _ZN9oceanbase6common7ObLatch8low_lockINS1_12LowTryRDLockEEEijljjRT_S5_:1127227 + 8: 5165 + 16: 5165 + 17: 5165 + 22: 0 + 23.1: 0 + 25.1: 0 + 27.1: 7 + 27.2: 5165 + 27.3: 5165 + 28: 5172 + 29: 5652 + 33: 7 + 35: 7 + 37: 5652 + 41.1: 5652 + 43: 5652 + 45: 0 + 47: 0 + 48: 0 + 53: 0 + 54: 0 + 57: 0 + 60.1: 0 + 60.2: 0 + 68.1: 0 + 73.3: 0 + 73.4: 0 + 76.1: 5652 _ZN9oceanbase6common20ObDiagnoseTenantInfo23get_local_diagnose_infoEv:5653 + 76.2: 0 + 76.3: 0 + 76.4: 0 + 76.6: 0 + 76.14: 0 + 78: 5622 + 29: _ZN9oceanbase6common7ObLatch12LowTryRDLockclEPVjjjRb:285722 + 4: 5172 + 7: 5172 + 7.1: 5172 + 8: 5014 + 10: 5014 + 15: 0 + 16.1: 0 + 21: 5 + 59: _ZN9oceanbase6common10ObWaitProcC2ERNS0_7ObLatchEj:0 + 1: 0 + 2: 0 + 3: 0 + 4: 0 + 0: _ZN9oceanbase6common11ObDLinkBaseINS0_10ObWaitProcEEC2Ev:0 + 1: 0 + 60: _ZN9oceanbase6common16ObLatchWaitQueue12get_instanceEv:0 + 2: 0 + 2.1: 0 + 2.3: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common16ObLatchWaitQueueC2Ev:0 + 1.2: 0 + 2: 0 + 1.1: _ZN9oceanbase6common16ObLatchWaitQueue13ObLatchBucketC2Ev:0 + 0: _ZN9oceanbase6common7ObDListINS0_10ObWaitProcEEC2Ev:0 + 2: 0 + 3: 0 + 4: 0 + 65463: _ZN9oceanbase6common11ObDLinkBaseINS0_10ObWaitProcEEC2Ev:0 + 2: 0 + 0.1: _ZN9oceanbase6common12ObLatchMutexC2Ev:0 + 1: 0 + 1: _ZN9oceanbase3lib7ObFutexC2Ev:0 + 1: 0 +_ZNK9oceanbase11transaction17ObTxSerCompatByte15is_object_validEl:2247292:14699 + 1: 13703 + 2: 13703 + 3: 13703 + 8: 13703 + 9.1: 0 + 10: 0 + 12: 0 + 17: 13703 + 8: _ZNK9oceanbase11transaction17ObTxSerCompatByte20cal_object_location_ElRlRh:1260676 + 4: 13703 + 6: 13703 + 6.1: 13703 + 7: 0 + 8.1: 0 + 11: 13703 + 12: 13703 + 19: 0 + 14.1: _ZNK9oceanbase11transaction17ObTxSerCompatByte16is_object_valid_ElhRb:287763 + 6: 13703 + 7.1: 0 + 9: 13703 +_ZN9oceanbase6common20ObDiagnoseTenantInfo23get_local_diagnose_infoEv:2212340:140903 + 1: 140850 + 4: 150809 + 7: 0 + 8: 0 + 9: 0 + 15: 0 + 20: 150809 + 4: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:744086 + 2: 140850 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:147122 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:603236 + 2: 150809 + 9: _ZN9oceanbase6common17ObSessionDIBuffer15get_curr_tenantEv:0 + 0: 0 + 10: _ZN9oceanbase6common17ObSessionDIBuffer13switch_tenantEm:0 + 4: 0 +_ZN9oceanbase11transaction14ObTxExecResultC2Ev:2201459:5581 + 1: 5327 + 2: 5327 + 4: 5327 + 0: _ZN9oceanbase6common9ObSEArrayINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EEC2Ev:713818 + 0.1: 5327 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EEC2ElRKS4_:633913 + 2: 5327 + 5: 5327 + 6: 5327 + 8: 5327 + 17.1: 5327 + 2: _ZN9oceanbase6common8ObIArrayINS_5share6ObLSIDEEC2EPS3_l:63924 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_5share6ObLSIDEEC2EPS3_l:63924 + 0: 5327 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:239715 + 0: 5327 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:133175 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:133175 + 2: 5327 + 8: 5327 + 2: _ZN9oceanbase6common9ObSEArrayINS_11transaction8ObTxPartELl4ENS0_19ModulePageAllocatorELb0EEC2Ev:748056 + 0.1: 5268 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction8ObTxPartELl4ENS0_19ModulePageAllocatorELb0EEC2ElRKS4_:653232 + 5: 5268 + 6: 5268 + 8: 5268 + 17.1: 5268 + 2: _ZN9oceanbase6common8ObIArrayINS_11transaction8ObTxPartEEC2EPS3_l:94824 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_11transaction8ObTxPartEEC2EPS3_l:94824 + 0: 5268 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:205452 + 0: 5268 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:131700 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:131700 + 2: 5268 + 8: 5268 + 3: _ZN9oceanbase6common7ObArrayINS_11transaction16ObTransIDAndAddrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEEC2Ev:505728 + 0.1: 5268 + 0.5: _ZN9oceanbase6common11ObArrayImplINS_11transaction16ObTransIDAndAddrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEEC2ElRKS4_:410904 + 3: 5268 + 4: 5268 + 7.1: 5268 + 2: _ZN9oceanbase6common8ObIArrayINS_11transaction16ObTransIDAndAddrEEC2Ev:52680 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_11transaction16ObTransIDAndAddrEEC2Ev:52680 + 0: 5268 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:205452 + 0: 5268 +_ZN9oceanbase11transaction14ObTxExecResultC1Ev:2201459:5581 + 1: 5327 + 2: 5327 + 4: 5327 + 0: _ZN9oceanbase6common9ObSEArrayINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EEC2Ev:713818 + 0.1: 5327 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EEC2ElRKS4_:633913 + 2: 5327 + 5: 5327 + 6: 5327 + 8: 5327 + 17.1: 5327 + 2: _ZN9oceanbase6common8ObIArrayINS_5share6ObLSIDEEC2EPS3_l:63924 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_5share6ObLSIDEEC2EPS3_l:63924 + 0: 5327 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:239715 + 0: 5327 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:133175 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:133175 + 2: 5327 + 8: 5327 + 2: _ZN9oceanbase6common9ObSEArrayINS_11transaction8ObTxPartELl4ENS0_19ModulePageAllocatorELb0EEC2Ev:748056 + 0.1: 5268 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction8ObTxPartELl4ENS0_19ModulePageAllocatorELb0EEC2ElRKS4_:653232 + 5: 5268 + 6: 5268 + 8: 5268 + 17.1: 5268 + 2: _ZN9oceanbase6common8ObIArrayINS_11transaction8ObTxPartEEC2EPS3_l:94824 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_11transaction8ObTxPartEEC2EPS3_l:94824 + 0: 5268 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:205452 + 0: 5268 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:131700 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:131700 + 2: 5268 + 8: 5268 + 3: _ZN9oceanbase6common7ObArrayINS_11transaction16ObTransIDAndAddrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEEC2Ev:505728 + 0.1: 5268 + 0.5: _ZN9oceanbase6common11ObArrayImplINS_11transaction16ObTransIDAndAddrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEEC2ElRKS4_:410904 + 3: 5268 + 4: 5268 + 7.1: 5268 + 2: _ZN9oceanbase6common8ObIArrayINS_11transaction16ObTransIDAndAddrEEC2Ev:52680 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_11transaction16ObTransIDAndAddrEEC2Ev:52680 + 0: 5268 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:205452 + 0: 5268 +_ZN9oceanbase3sql8ObDASCtx18extended_table_locERKNS0_17ObDASTableLocMetaERPNS0_13ObDASTableLocE:2197366:4967 + 1: 4597 + 2: 4597 + 3: 4597 + 4: 0 + 6: 4597 + 7: 0 + 8.1: 0 + 9.1: 4597 + 11.1: 4597 + 12.1: 0 + 14: 4597 + 18.1: 0 + 18.2: 4597 + 18.3: 4597 + 18.5: 0 + 19: 0 + 20: 0 + 21: 0 + 22: 0 + 23: 0 + 24: 0 + 25.1: 0 + 26.1: 0 + 28.1: 0 + 29.1: 0 + 31: 0 + 32: 0 + 33.1: 0 + 35: 0 + 40: 4597 + 3: _ZN9oceanbase3sql8ObDASCtx19get_table_loc_by_idEmm:55164 + 3.1: 4597 + 4: 0 + 4.1: 0 + 5: 0 + 3.4: _ZNK9oceanbase6common4list8IteratorINS0_6ObListIPNS_3sql13ObDASTableLocENS0_12ObIAllocatorEEEEneERKS9_:13791 + 2: 4597 + 6: _ZN9oceanbase6common16ObArenaAllocator5allocEl:501073 + 0: 4597 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13alloc_alignedEll:482685 + 3: 4597 + 6: 0 + 7: 4597 + 8: 4597 + 10: 4597 + 11: 4597 + 12: 4597 + 13: 4597 + 15.1: 0 + 16: 0 + 18: 0 + 20: 0 + 28: 0 + 35: 4597 + 36: 4597 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE15ensure_cur_pageEv:59761 + 2: 4597 + 3: 0 + 5.1: 0 + 8: 0 + 9: 0 + 10: 0 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:0 + 2: 0 + 2.2: 0 + 2.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 9: _ZSt3maxIlERKT_S2_S2_:0 + 5: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 8: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:0 + 0: 0 + 7: _ZN9oceanbase6common16get_align_offsetEPvl:45970 + 3: 4597 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:32179 + 0: 4597 + 11: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:32179 + 7: 4597 + 15.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE18is_normal_overflowEl:0 + 2: 0 + 16: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11extend_pageEl:0 + 4: 0 + 5: 0 + 8: 0 + 9: 0 + 10.1: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 12: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_tailEPNS3_4PageE:0 + 2: 0 + 3: 0 + 5: 0 + 23.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16lookup_next_pageEl:0 + 3.1: 0 + 4.1: 0 + 5: 0 + 5.1: 0 + 7: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page10reuse_sizeEv:0 + 0: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 32: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9alloc_bigEl:0 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 3: 0 + 5: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_headEPNS3_4PageE:0 + 4: 0 + 5: 0 + 7: 0 + 7: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:0 + 5.1: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:0 + 0: 0 + 9.1: _ZN9oceanbase3sql13ObDASTableLocC2ERNS_6common12ObIAllocatorE:197671 + 1: 4597 + 2: 4597 + 3: 4597 + 4: 4597 + 3: _ZN9oceanbase6common6ObListIPNS_3sql14ObDASTabletLocENS0_12ObIAllocatorEEC2ERS5_:91940 + 0: 4597 + 2: 4597 + 3: 4597 + 11.1: _ZN9oceanbase6common6ObListIPNS_3sql13ObDASTableLocENS0_12ObIAllocatorEE9push_backERKS4_:790684 + 3: 4597 + 4: 0 + 12: 4597 + 13: 4597 + 14: 4597 + 15: 4597 + 16: 4597 + 3: _ZN9oceanbase6common16ObArenaAllocator5allocEl:501073 + 0: 4597 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13alloc_alignedEll:482685 + 3: 4597 + 6: 0 + 7: 4597 + 8: 4597 + 10: 4597 + 11: 4597 + 12: 4597 + 13: 4597 + 15.1: 0 + 16: 0 + 18: 0 + 20: 0 + 28: 0 + 35: 4597 + 36: 4597 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE15ensure_cur_pageEv:59761 + 2: 4597 + 3: 0 + 5.1: 0 + 8: 0 + 9: 0 + 10: 0 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:0 + 2: 0 + 2.2: 0 + 2.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 9: _ZSt3maxIlERKT_S2_S2_:0 + 5: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 8: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:0 + 0: 0 + 7: _ZN9oceanbase6common16get_align_offsetEPvl:45970 + 3: 4597 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:32179 + 0: 4597 + 11: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:32179 + 7: 4597 + 15.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE18is_normal_overflowEl:0 + 2: 0 + 16: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11extend_pageEl:0 + 4: 0 + 5: 0 + 8: 0 + 9: 0 + 10.1: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 12: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_tailEPNS3_4PageE:0 + 2: 0 + 3: 0 + 5: 0 + 23.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16lookup_next_pageEl:0 + 3.1: 0 + 4.1: 0 + 5: 0 + 5.1: 0 + 7: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page10reuse_sizeEv:0 + 0: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 32: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9alloc_bigEl:0 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 3: 0 + 5: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_headEPNS3_4PageE:0 + 4: 0 + 5: 0 + 7: 0 + 7: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:0 + 5.1: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:0 + 0: 0 + 7: _ZN9oceanbase6common16construct_assignIPNS_3sql13ObDASTableLocEEEiRT_RKS5_:32179 + 2: _ZN9oceanbase6common21construct_assign_wrapIPNS_3sql13ObDASTableLocEEEiRT_RKS5_NS0_8BoolTypeILb0EEE:32179 + 2: 4597 + 19: _ZNK9oceanbase6common12ObIArrayWrapImE2atEl:0 + 6: 0 + 26.1: _ZN9oceanbase3sql13ObDASTableLocC2ERNS_6common12ObIAllocatorE:0 + 1: 0 + 2: 0 + 3: 0 + 4: 0 + 3: _ZN9oceanbase6common6ObListIPNS_3sql14ObDASTabletLocENS0_12ObIAllocatorEEC2ERS5_:0 + 0: 0 + 2: 0 + 3: 0 + 31: _ZN9oceanbase3sql17ObDASTableLocMetaC2ERNS_6common12ObIAllocatorE:0 + 2: 0 + 4: 0 + 3: _ZN9oceanbase6common12ObFixedArrayImNS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplImS2_EEERS2_l:0 + 0: 0 + 0: _ZN9oceanbase6common16ObFixedArrayImplImNS0_12ObIAllocatorEEC2ERS2_l:0 + 2: 0 + 3: 0 + 4: 0 + 1: _ZN9oceanbase6common8ObIArrayImEC2Ev:0 + 0: _ZN9oceanbase6common12ObIArrayWrapImEC2Ev:0 + 0: 0 +_ZN9oceanbase3sql15ObResolverUtils13resolve_constEPK10_ParseNodeNS0_4stmt8StmtTypeERNS_6common12ObIAllocatorENS7_15ObCollationTypeESA_PKNS7_14ObTimeZoneInfoERNS7_10ObObjParamEbRNS7_8ObStringEsSA_PNS0_11ObSqlBitSetILl96ENS0_14ObExprInfoFlagELb1EEEmb:2169715:7066 + 0: 0 + 2: 0 + 14: 6963 + 16: 6963 + 17: 6963 + 17.1: 6963 + 18: 0 + 19.1: 0 + 22: 6963 + 23: 6963 + 26: 6963 + 29: 0 + 33: 0 + 41: 0 + 42: 726 + 42.1: 0 + 50: 0 + 51: 0 + 57: 726 + 58: 0 + 77: 698 + 83: 0 + 83.1: 0 + 93: 0 + 94: 0 + 94.1: 0 + 95: 0 + 96.1: 0 + 96.13: 0 + 96.20: 0 + 99: 0 + 102.1: 0 + 109: 0 + 109.1: 0 + 110.1: 0 + 124: 698 + 124.1: 3 + 125: 3 + 129.1: 699 _ZN9oceanbase6common9ObCharset11strlen_charENS0_15ObCollationTypeEPKcl:736 + 139.1: 727 + 142: 0 + 151: 0 + 152: 0 + 156: 0 + 163: 0 + 164: 0 + 165: 0 + 167.1: 0 + 168: 0 + 169.1: 0 + 171: 0 + 172.1: 0 + 174: 0 + 174.1: 0 + 176: 0 + 179: 0 + 180.1: 0 + 180.2: 0 + 180.3: 0 + 181: 0 + 181.1: 0 + 182: 0 + 183: 0 + 183.1: 0 + 184: 0 + 185: 0 + 186: 0 + 187: 0 + 190: 0 + 195: 0 + 196.1: 0 + 200: 0 + 201: 0 + 205: 0 + 206: 0 + 206.1: 0 + 245: 0 + 247: 0 + 248: 0 + 250: 0 + 251: 0 + 252: 0 + 253: 0 + 254.1: 0 + 256: 0 + 257.20: 0 + 257.21: 0 + 257.24: 0 + 261: 0 + 264: 0 + 266: 0 + 268: 0 + 284: 6140 + 284.1: 0 + 284.2: 0 + 285: 0 + 285.1: 0 + 288: 6140 + 294: 6140 + 295: 6140 + 297: 6140 + 298: 0 + 307: 0 + 308: 0 + 308.1: 0 + 309: 0 + 310: 0 + 311: 0 + 312: 0 + 315: 0 + 316: 0 + 318: 0 + 320.1: 0 + 322.1: 0 + 324.1: 0 + 327: 0 + 328: 0 + 329: 0 + 332: 0 + 333: 0 + 334: 0 + 342: 0 + 344.1: 0 + 346.1: 0 + 348.1: 0 + 353: 0 + 359: 0 + 360: 0 + 372: 0 + 380: 0 + 381: 0 + 382: 0 + 383.1: 0 + 385: 0 + 392: 0 + 393: 0 + 396.1: 0 + 397: 0 + 398.1: 0 + 398.12: 0 + 398.17: 0 + 400: 0 + 408: 0 + 409: 0 + 410: 0 + 411: 0 + 412.1: 0 + 412.12: 0 + 412.17: 0 + 414: 0 + 415: 0 + 417: 0 + 422: 0 + 423: 0 + 425: 0 + 426.1: 0 + 428: 0 + 436: 0 + 437: 0 + 442.1: 0 + 443: 0 + 444.1: 0 + 444.12: 0 + 444.17: 0 + 446: 0 + 447: 0 + 449: 0 + 454: 0 + 457: 0 + 459: 0 + 459.1: 0 + 460.1: 0 + 463: 0 + 465.1: 0 + 471: 0 + 476: 0 + 477: 0 + 478: 0 + 482: 0 + 484.2: 0 + 484.4: 0 + 485: 0 + 488: 0 + 489: 0 + 490: 0 + 491.1: 0 + 491.2: 0 + 491.4: 0 + 492.1: 0 + 492.2: 0 + 492.4: 0 + 494.2: 0 + 494.4: 0 + 495: 0 + 499.1: 0 + 499.2: 0 + 500.2: 0 + 500.4: 0 + 502: 0 + 503: 0 + 504: 0 + 505: 0 + 506: 0 + 511.1: 0 + 523: 0 + 528: 0 + 529: 0 + 530: 0 + 531: 0 + 535: 0 + 536.2: 0 + 536.4: 0 + 537: 0 + 540: 0 + 541: 0 + 542: 0 + 543.1: 0 + 543.2: 0 + 543.4: 0 + 544.1: 0 + 544.2: 0 + 545.2: 0 + 545.4: 0 + 546.1: 0 + 546.2: 0 + 549: 0 + 550.2: 0 + 550.4: 0 + 551: 0 + 552: 0 + 553: 0 + 554.1: 0 + 554.2: 0 + 555: 0 + 556.1: 0 + 556.2: 0 + 558.1: 0 + 558.2: 0 + 559: 0 + 565.2: 0 + 565.4: 0 + 566.1: 0 + 566.2: 0 + 566.4: 0 + 568: 0 + 569: 0 + 570: 0 + 571: 0 + 572: 0 + 573: 0 + 578.1: 0 + 597: 0 + 598.1: 0 + 602: 6883 + 25: _ZN9oceanbase6common10ObObjParam15set_result_flagEj:97482 + 0: 6963 + 29: _ZN9oceanbase6common8ObString10assign_ptrEPKci:0 + 5: 0 + 30: _ZN9oceanbase6common5ObObj14set_hex_stringERKNS0_8ObStringE:0 + 3: 0 + 4: 0 + 2: _ZN9oceanbase6common9ObObjMeta14set_hex_stringEv:0 + 0: 0 + 32: _ZN9oceanbase6common10ObObjParam9set_scaleEs:0 + 2: _ZN9oceanbase6common10ObAccuracy9set_scaleEs:0 + 0: 0 + 33: _ZN9oceanbase6common10ObObjParam10set_lengthEi:0 + 0: _ZN9oceanbase6common10ObAccuracy10set_lengthEi:0 + 0: 0 + 34.1: _ZN9oceanbase6common10ObObjParam14set_param_metaERKNS0_9ObObjMetaE:0 + 0: 0 + 42: _ZN9oceanbase3lib14is_oracle_modeEv:31944 + 2: 726 + 2: _ZN9oceanbase3lib15get_compat_modeEv:29766 + 2: 726 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:18150 + 2: 726 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 43: _ZN9oceanbase6common5ObObj8set_nullEv:0 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:0 + 0: 0 + 0.1: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:0 + 0: 0 + 44: _ZN9oceanbase6common10ObObjParam17unset_result_flagEj:0 + 0: 0 + 45: _ZN9oceanbase6common10ObObjParam10set_lengthEi:0 + 0: _ZN9oceanbase6common10ObAccuracy10set_lengthEi:0 + 0: 0 + 46: _ZN9oceanbase6common10ObObjParam20set_length_semanticsEs:0 + 0: _ZN9oceanbase6common10ObAccuracy20set_length_semanticsEs:0 + 0: 0 + 51: _ZN9oceanbase6common9ObObjMeta8set_typeERKNS0_9ObObjTypeE:0 + 12.1: _ZN9oceanbase6common17ob_is_string_typeENS0_9ObObjTypeE:0 + 0: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:0 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:0 + 2: 0 + 53: _ZN9oceanbase6common10ObObjParam14set_param_metaERKNS0_9ObObjMetaE:0 + 0: 0 + 56: _ZN9oceanbase6common5ObObjC2Ev:13068 + 2: _ZN9oceanbase6common5ObObj5resetEv:13068 + 6: 726 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:5082 + 0: 726 + 57: _ZN9oceanbase6common8ObString10assign_ptrEPKci:6534 + 5: 726 + 58: _ZN9oceanbase6common5ObObj10set_stringENS0_9ObObjTypeERKNS0_8ObStringE:49273 + 4: 698 + 5: 698 + 2: _ZN9oceanbase6common9ObObjMeta8set_typeERKNS0_9ObObjTypeE:43629 + 2: 726 + 3: 726 + 14: 3 + 4: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:0 + 0: 0 + 8: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:0 + 0: 0 + 11: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:0 + 0: 0 + 12.1: _ZN9oceanbase6common17ob_is_string_typeENS0_9ObObjTypeE:14559 + 0: 726 + 0: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:13794 + 0: 726 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:3630 + 2: 726 + 17: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:0 + 0: 0 + 71: _ZN9oceanbase6common5ObObj19set_collation_levelERKNS0_16ObCollationLevelE:3490 + 0: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:3490 + 0: 698 + 93: _ZN9oceanbase6common8ObStringC2ElPKc:0 + 1: 0 + 2: 0 + 3: 0 + 5: 0 + 6: 0 + 96.1: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 100: _ZN9oceanbase6common5ObObj18set_collation_typeERKNS0_15ObCollationTypeE:0 + 0: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:0 + 0: 0 + 102: _ZNK9oceanbase6common5ObObj18get_collation_typeEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta18get_collation_typeEv:0 + 0: 0 + 103: _ZNK9oceanbase6common5ObObj14get_string_ptrEv:0 + 0: 0 + 104: _ZNK9oceanbase6common5ObObj14get_string_lenEv:0 + 0: 0 + 105: _ZN9oceanbase6common10ObObjParam10set_lengthEi:0 + 0: _ZN9oceanbase6common10ObAccuracy10set_lengthEi:0 + 0: 0 + 123: _ZN9oceanbase3lib14is_oracle_modeEv:28618 + 2: _ZN9oceanbase3lib15get_compat_modeEv:28618 + 2: 698 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:17450 + 2: 698 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 123.2: _ZN9oceanbase6common21is_oracle_byte_lengthEbs:3490 + 2: 698 + 126: _ZNK9oceanbase6common5ObObj14get_string_lenEv:0 + 0: 0 + 126.1: _ZN9oceanbase6common10ObObjParam10set_lengthEi:0 + 0: _ZN9oceanbase6common10ObAccuracy10set_lengthEi:0 + 0: 0 + 127: _ZN9oceanbase6common10ObObjParam20set_length_semanticsEs:0 + 0: _ZN9oceanbase6common10ObAccuracy20set_length_semanticsEs:0 + 0: 0 + 129: _ZNK9oceanbase6common5ObObj18get_collation_typeEv:3495 + 0: _ZNK9oceanbase6common9ObObjMeta18get_collation_typeEv:3495 + 0: 699 + 130: _ZNK9oceanbase6common5ObObj14get_string_ptrEv:2796 + 0: 699 + 131: _ZNK9oceanbase6common5ObObj14get_string_lenEv:2796 + 0: 699 + 132: _ZN9oceanbase6common10ObObjParam10set_lengthEi:2908 + 0: _ZN9oceanbase6common10ObAccuracy10set_lengthEi:2908 + 0: 727 + 133: _ZN9oceanbase6common10ObObjParam20set_length_semanticsEs:9451 + 0: _ZN9oceanbase6common10ObAccuracy20set_length_semanticsEs:9451 + 0: 727 + 140: _ZN9oceanbase3lib14is_oracle_modeEv:31988 + 2: 727 + 2: _ZN9oceanbase3lib15get_compat_modeEv:29807 + 2: 727 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:18175 + 2: 727 + 153: _ZN9oceanbase6common5ObObj18set_collation_typeERKNS0_15ObCollationTypeE:0 + 0: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:0 + 0: 0 + 155: _ZN9oceanbase6common8ObStringC2Ev:0 + 1: 0 + 163: _ZNK9oceanbase6common8ObString6lengthEv:0 + 0: 0 + 174: _ZN9oceanbase6common8ObString3ptrEv:0 + 0: 0 + 175: _ZNK9oceanbase6common8ObString6lengthEv:0 + 0: 0 + 180.1: _ZNK9oceanbase6common8ObString6lengthEv:0 + 0: 0 + 206: _ZNK9oceanbase6common5ObObj8get_typeEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:0 + 0: 0 + 207: _ZN9oceanbase6common5ObObj18set_collation_typeERKNS0_15ObCollationTypeE:0 + 0: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:0 + 0: 0 + 208: _ZN9oceanbase6common5ObObj19set_collation_levelERKNS0_16ObCollationLevelE:0 + 0: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:0 + 0: 0 + 227: _ZN9oceanbase6common5ObObj10set_doubleEd:0 + 3: 0 + 2: _ZN9oceanbase6common9ObObjMeta10set_doubleEv:0 + 0: 0 + 0.1: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:0 + 0: 0 + 228: _ZN9oceanbase6common10ObObjParam13set_precisionEs:0 + 0: _ZN9oceanbase6common10ObAccuracy13set_precisionEs:0 + 0: 0 + 229: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 236: _ZN9oceanbase6common5ObObj10set_doubleEd:0 + 3: 0 + 2: _ZN9oceanbase6common9ObObjMeta10set_doubleEv:0 + 0: 0 + 0.1: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:0 + 0: 0 + 237: _ZN9oceanbase6common10ObObjParam13set_precisionEs:0 + 0: _ZN9oceanbase6common10ObAccuracy13set_precisionEs:0 + 0: 0 + 238: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 251: _ZN9oceanbase6common8ObString10assign_ptrEPKci:0 + 2: 0 + 3: 0 + 5: 0 + 252: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 257.22: _ZNK9oceanbase6common8ObString6lengthEv:0 + 0: 0 + 262: _ZN9oceanbase6common5ObObj10set_doubleEd:0 + 3: 0 + 2: _ZN9oceanbase6common9ObObjMeta10set_doubleEv:0 + 0: 0 + 0: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:0 + 0: 0 + 264: _ZN9oceanbase6common5ObObj9set_floatEf:0 + 3: 0 + 4: 0 + 266: _ZN9oceanbase6common10ObObjParam10set_lengthEi:0 + 0: _ZN9oceanbase6common10ObAccuracy10set_lengthEi:0 + 0: 0 + 267: _ZN9oceanbase6common8ObStringC2ElPKc:0 + 5: 0 + 268: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 269: _ZN9oceanbase6common8ObString10assign_ptrEPKci:0 + 2: 0 + 3: 0 + 5: 0 + 270: _ZN9oceanbase6common10ObObjParam13set_precisionEs:0 + 0: _ZN9oceanbase6common10ObAccuracy13set_precisionEs:0 + 0: 0 + 271.1: _ZN9oceanbase6common10ObObjParam9set_scaleEs:0 + 1: _ZN9oceanbase6common5ObObj9set_scaleEs:0 + 0: _ZN9oceanbase6common9ObObjMeta9set_scaleEs:0 + 0: 0 + 284: _ZN9oceanbase3lib14is_oracle_modeEv:270160 + 2: 6140 + 2: _ZN9oceanbase3lib15get_compat_modeEv:251740 + 2: 6140 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:153500 + 2: 6140 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 285.2: _ZNK9oceanbase3sql11ObSqlBitSetILl96ENS0_14ObExprInfoFlagELb1EE10has_memberEl:0 + 3: 0 + 9: 0 + 12: 0 + 13: 0 + 3: _ZNK9oceanbase3sql11ObSqlBitSetILl96ENS0_14ObExprInfoFlagELb1EE8is_validEv:0 + 0: 0 + 289: _ZN9oceanbase6common5ObObj7set_intEl:67540 + 3: 6140 + 2: _ZN9oceanbase6common9ObObjMeta7set_intEv:42980 + 0: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:42980 + 0: 6140 + 293: _ZN9oceanbase6common10ObObjParam9set_scaleEs:73680 + 1: _ZN9oceanbase6common5ObObj9set_scaleEs:30700 + 0: _ZN9oceanbase6common9ObObjMeta9set_scaleEs:30700 + 0: 6140 + 2: _ZN9oceanbase6common10ObAccuracy9set_scaleEs:42980 + 0: 6140 + 294: _ZN9oceanbase6common10ObObjParam13set_precisionEs:30700 + 0: _ZN9oceanbase6common10ObAccuracy13set_precisionEs:30700 + 0: 6140 + 295: _ZN9oceanbase6common10ObObjParam10set_lengthEi:24560 + 0: _ZN9oceanbase6common10ObAccuracy10set_lengthEi:24560 + 0: 6140 + 296.1: _ZN9oceanbase6common10ObObjParam14set_param_metaERKNS0_9ObObjMetaE:49120 + 0: 6140 + 298: _ZN9oceanbase6common8ObString10assign_ptrEPKci:0 + 2: 0 + 3: 0 + 5: 0 + 305: _ZN9oceanbase6common6number8ObNumberC2Ev:0 + 0: 0 + 0: _ZN12ObNumberDescC2Ej:0 + 0: 0 + 307: _ZN9oceanbase6common8ObStringC2ElPKc:0 + 5: 0 + 308: _ZNK9oceanbase6common8ObString4findEc:0 + 0: 0 + 308.1: _ZNK9oceanbase6common8ObString4findEc:0 + 0: 0 + 311: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 312: _ZN9oceanbase6common8ObString10assign_ptrEPKci:0 + 2: 0 + 3: 0 + 5: 0 + 327: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 331: _ZN9oceanbase6common5ObObj10set_numberERKNS0_6number8ObNumberE:0 + 3: 0 + 4: 0 + 2: _ZN9oceanbase6common9ObObjMeta10set_numberEv:0 + 0: 0 + 0.1: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:0 + 0: 0 + 3: _ZNK9oceanbase6common6number8ObNumber14get_desc_valueEv:0 + 2: 0 + 4: _ZNK9oceanbase6common6number8ObNumber10get_digitsEv:0 + 2: 0 + 332: _ZN9oceanbase6common10ObObjParam13set_precisionEs:0 + 0: _ZN9oceanbase6common10ObAccuracy13set_precisionEs:0 + 0: 0 + 333: _ZN9oceanbase6common10ObObjParam9set_scaleEs:0 + 1: _ZN9oceanbase6common5ObObj9set_scaleEs:0 + 0: _ZN9oceanbase6common9ObObjMeta9set_scaleEs:0 + 0: 0 + 2: _ZN9oceanbase6common10ObAccuracy9set_scaleEs:0 + 0: 0 + 334: _ZN9oceanbase6common10ObObjParam10set_lengthEi:0 + 0: _ZN9oceanbase6common10ObAccuracy10set_lengthEi:0 + 0: 0 + 341: _ZN9oceanbase6common6number8ObNumberC2Ev:0 + 0: 0 + 0: _ZN12ObNumberDescC2Ej:0 + 0: 0 + 351: _ZN9oceanbase6common5ObObj10set_numberERKNS0_6number8ObNumberE:0 + 3: 0 + 4: 0 + 2: _ZN9oceanbase6common9ObObjMeta10set_numberEv:0 + 0: 0 + 0.1: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:0 + 0: 0 + 3: _ZNK9oceanbase6common6number8ObNumber14get_desc_valueEv:0 + 2: 0 + 4: _ZNK9oceanbase6common6number8ObNumber10get_digitsEv:0 + 2: 0 + 352: _ZN9oceanbase6common10ObObjParam13set_precisionEs:0 + 0: _ZN9oceanbase6common10ObAccuracy13set_precisionEs:0 + 0: 0 + 353: _ZN9oceanbase6common10ObObjParam10set_lengthEi:0 + 0: _ZN9oceanbase6common10ObAccuracy10set_lengthEi:0 + 0: 0 + 363: _ZN9oceanbase6common5ObObj7set_intEl:0 + 3: 0 + 2: _ZN9oceanbase6common9ObObjMeta7set_intEv:0 + 0: 0 + 0: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:0 + 0: 0 + 0.1: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:0 + 0: 0 + 364: _ZN9oceanbase6common10ObObjParam9set_scaleEs:0 + 1: _ZN9oceanbase6common5ObObj9set_scaleEs:0 + 0: _ZN9oceanbase6common9ObObjMeta9set_scaleEs:0 + 0: 0 + 366: _ZN9oceanbase6common10ObObjParam10set_lengthEi:0 + 0: _ZN9oceanbase6common10ObAccuracy10set_lengthEi:0 + 0: 0 + 372: _ZN9oceanbase6common5ObObj8set_boolEb:0 + 3: 0 + 2: _ZN9oceanbase6common9ObObjMeta11set_tinyintEv:0 + 0: 0 + 375: _ZN9oceanbase6common10ObObjParam10set_lengthEi:0 + 0: _ZN9oceanbase6common10ObAccuracy10set_lengthEi:0 + 0: 0 + 376.1: _ZN9oceanbase6common10ObObjParam14set_param_metaERKNS0_9ObObjMetaE:0 + 0: 0 + 380: _ZN9oceanbase6common8ObStringC2ElPKc:0 + 1: 0 + 2: 0 + 3: 0 + 5: 0 + 6: 0 + 385: _ZN9oceanbase6common5ObObj8set_yearEh:0 + 3: 0 + 4: 0 + 2: _ZN9oceanbase6common9ObObjMeta8set_yearEv:0 + 0: 0 + 386: _ZN9oceanbase6common10ObObjParam9set_scaleEs:0 + 2: _ZN9oceanbase6common10ObAccuracy9set_scaleEs:0 + 0: 0 + 387.1: _ZN9oceanbase6common10ObObjParam14set_param_metaERKNS0_9ObObjMetaE:0 + 0: 0 + 392: _ZN9oceanbase6common8ObStringC2ElPKc:0 + 1: 0 + 2: 0 + 3: 0 + 5: 0 + 6: 0 + 395: _ZN9oceanbase6common13ObDateSqlMode4initEm:0 + 1: 0 + 2: 0 + 398.1: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 400: _ZN9oceanbase6common5ObObj8set_dateEi:0 + 3: 0 + 4: 0 + 2: _ZN9oceanbase6common9ObObjMeta8set_dateEv:0 + 0: 0 + 408: _ZN9oceanbase6common8ObStringC2ElPKc:0 + 1: 0 + 2: 0 + 3: 0 + 5: 0 + 6: 0 + 412.1: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 414: _ZN9oceanbase6common5ObObj8set_timeEl:0 + 3: 0 + 2: _ZN9oceanbase6common9ObObjMeta8set_timeEv:0 + 0: 0 + 0.1: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:0 + 0: 0 + 415: _ZN9oceanbase6common10ObObjParam9set_scaleEs:0 + 1: _ZN9oceanbase6common5ObObj9set_scaleEs:0 + 0: _ZN9oceanbase6common9ObObjMeta9set_scaleEs:0 + 0: 0 + 2: _ZN9oceanbase6common10ObAccuracy9set_scaleEs:0 + 0: 0 + 416.1: _ZN9oceanbase6common10ObObjParam14set_param_metaERKNS0_9ObObjMetaE:0 + 0: 0 + 422: _ZN9oceanbase6common8ObStringC2ElPKc:0 + 1: 0 + 2: 0 + 3: 0 + 5: 0 + 6: 0 + 424: _ZN9oceanbase6common16ObTimeConvertCtxC2EPKNS0_14ObTimeZoneInfoEb:0 + 1: 0 + 3: 0 + 428: _ZN9oceanbase6common5ObObj12set_datetimeEl:0 + 3: 0 + 2: _ZN9oceanbase6common9ObObjMeta12set_datetimeEv:0 + 0: 0 + 436: _ZN9oceanbase6common8ObStringC2ElPKc:0 + 1: 0 + 2: 0 + 3: 0 + 5: 0 + 6: 0 + 439: _ZN9oceanbase6common16ObTimeConvertCtxC2EPKNS0_14ObTimeZoneInfoEb:0 + 1: 0 + 3: 0 + 440: _ZN9oceanbase6common13ObDateSqlMode4initEm:0 + 2: 0 + 444.1: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 446: _ZN9oceanbase6common5ObObj12set_datetimeEl:0 + 3: 0 + 2: _ZN9oceanbase6common9ObObjMeta12set_datetimeEv:0 + 0: 0 + 0.1: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:0 + 0: 0 + 447: _ZN9oceanbase6common10ObObjParam9set_scaleEs:0 + 1: _ZN9oceanbase6common5ObObj9set_scaleEs:0 + 0: _ZN9oceanbase6common9ObObjMeta9set_scaleEs:0 + 0: 0 + 2: _ZN9oceanbase6common10ObAccuracy9set_scaleEs:0 + 0: 0 + 448.1: _ZN9oceanbase6common10ObObjParam14set_param_metaERKNS0_9ObObjMetaE:0 + 0: 0 + 455: _ZN9oceanbase6common16ObOTimestampDataC2Ev:0 + 0: 0 + 0: _ZN9oceanbase6common16ObOTimestampData10UnionTZCtxC2Ev:0 + 0: 0 + 456: _ZN9oceanbase6common16ObTimeConvertCtxC2EPKNS0_14ObTimeZoneInfoEb:0 + 1: 0 + 3: 0 + 2: _ZN9oceanbase6common8ObStringC2Ev:0 + 1: 0 + 457: _ZN9oceanbase6common8ObStringC2ElPKc:0 + 1: 0 + 2: 0 + 3: 0 + 5: 0 + 6: 0 + 463: _ZN9oceanbase6common5ObObj20set_otimestamp_valueENS0_9ObObjTypeERKNS0_16ObOTimestampDataE:0 + 3: 0 + 4: 0 + 2: _ZN9oceanbase6common9ObObjMeta19set_otimestamp_typeENS0_9ObObjTypeE:0 + 0: 0 + 0: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:0 + 0: 0 + 464: _ZN9oceanbase6common10ObObjParam9set_scaleEs:0 + 1: _ZN9oceanbase6common5ObObj9set_scaleEs:0 + 0: _ZN9oceanbase6common9ObObjMeta9set_scaleEs:0 + 0: 0 + 2: _ZN9oceanbase6common10ObAccuracy9set_scaleEs:0 + 0: 0 + 473: _ZN9oceanbase6common17ObIntervalYMValueC2Ev:0 + 0: 0 + 475: _ZN9oceanbase6common8ObStringC2Ev:0 + 1: 0 + 482: _ZN9oceanbase6common8ObString10assign_ptrEPKci:0 + 2: 0 + 3: 0 + 5: 0 + 500.2: _ZNK9oceanbase3sql14ObValueCheckerIsE8validateERKs:0 + 1: 0 + 504: _ZN9oceanbase6common8ObString10assign_ptrEPKci:0 + 2: 0 + 3: 0 + 5: 0 + 513: _ZN9oceanbase6common5ObObj15set_interval_ymERKNS0_17ObIntervalYMValueE:0 + 3: 0 + 4: 0 + 2: _ZN9oceanbase6common9ObObjMeta15set_interval_ymEv:0 + 0: 0 + 0.1: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:0 + 0: 0 + 514: _ZN9oceanbase6common10ObObjParam9set_scaleEs:0 + 1: _ZN9oceanbase6common5ObObj9set_scaleEs:0 + 0: _ZN9oceanbase6common9ObObjMeta9set_scaleEs:0 + 0: 0 + 525: _ZN9oceanbase6common17ObIntervalDSValueC2Ev:0 + 0: 0 + 527: _ZN9oceanbase6common8ObStringC2Ev:0 + 1: 0 + 535: _ZN9oceanbase6common8ObString10assign_ptrEPKci:0 + 2: 0 + 3: 0 + 5: 0 + 565.2: _ZNK9oceanbase3sql14ObValueCheckerIsE8validateERKs:0 + 1: 0 + 566.2: _ZNK9oceanbase3sql14ObValueCheckerIsE8validateERKs:0 + 1: 0 + 569: _ZN9oceanbase6common19ObIntervalScaleUtil29interval_ds_scale_to_ob_scaleEaa:0 + 2: 0 + 571: _ZN9oceanbase6common8ObString10assign_ptrEPKci:0 + 2: 0 + 3: 0 + 5: 0 + 580: _ZN9oceanbase6common5ObObj15set_interval_dsERKNS0_17ObIntervalDSValueE:0 + 3: 0 + 4: 0 + 2: _ZN9oceanbase6common9ObObjMeta15set_interval_dsEv:0 + 0: 0 + 0.1: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:0 + 0: 0 + 581: _ZN9oceanbase6common10ObObjParam9set_scaleEs:0 + 1: _ZN9oceanbase6common5ObObj9set_scaleEs:0 + 0: _ZN9oceanbase6common9ObObjMeta9set_scaleEs:0 + 0: 0 + 590: _ZN9oceanbase6common5ObObj8set_nullEv:0 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:0 + 0: 0 + 0.1: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:0 + 0: 0 + 591: _ZN9oceanbase6common10ObObjParam17unset_result_flagEj:0 + 0: 0 + 592: _ZN9oceanbase6common10ObObjParam10set_lengthEi:0 + 0: _ZN9oceanbase6common10ObAccuracy10set_lengthEi:0 + 0: 0 +_ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE33insert_row_with_unique_hash_tableERKNS_6common8ObIArrayIPNS0_6ObExprEEERbSC_:2164893:26310 + 4: 25374 + 6: 25374 + 7: 25374 _ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE15calc_hash_valueERKNS_6common8ObIArrayIPNS0_6ObExprEEERm:25694 + 8.1: 150 + 9.1: 24397 _ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE36do_insert_row_with_unique_hash_tableERKNS_6common8ObIArrayIPNS0_6ObExprEEEmRbSC_:25281 + 10.1: 150 + 12: 24199 +_ZN9oceanbase6common12ObLatchMutex8try_lockEjPKj:2162855:14990 + 3: 14113 + 4: 14113 + 5: 14113 + 5.2: 2 + 5.3: 14113 + 7: 14113 + 9: 2 + 10.1: 2 + 12: 14113 + 13: 365 + 15.1: 14128 + 15.2: 289 _ZN9oceanbase6common20ObDiagnoseTenantInfo23get_local_diagnose_infoEv:280 + 15.3: 0 + 15.6: 0 + 18: 14150 + 5.1: _Z9ob_gettidv:748159 + 3: 14113 + 4: 2 + 2: _Z13get_tid_cachev:352917 + 7: 14113 + 7.1: 2 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:46 + 0: 2 +_ZN9oceanbase6common9ObCharset21get_default_collationENS0_13ObCharsetTypeE:2156058:80627 + 3: 79854 + 28: 0 +_ZN9oceanbase8observer16ObSyncPlanDriver15response_resultERNS0_16ObMySQLResultSetE:2146376:4714 + 1: 4567 + 2: 4837 _ZN9oceanbase6common20ObActiveSessionGuard8get_statEv:4677 + 3: 4837 + 8: 4837 + 9: 16 + 10.1: 16 + 11.1: 4837 + 13.1: 4837 _ZN9oceanbase3sql11ObResultSet4openEv:4949 + 14: 16 + 15: 16 + 18: 16 + 19: 16 + 23: 16 + 24.1: 16 + 27.1: 16 + 31: 16 + 32: 16 + 35.1: 16 + 37: 16 + 38.1: 4439 + 40: 3430 + 41: 3430 + 41.2: 0 + 41.4: 3568 _ZN9oceanbase8observer13ObQueryDriver21response_query_resultERNS_3sql11ObResultSetEbbRbl:3724 + 47.1: 16 + 49: 16 + 51: 16 + 53: 16 + 54: 16 + 56: 16 + 58.1: 16 + 60: 16 + 62: 16 + 62.2: 16 + 64: 16 + 65: 16 + 66.1: 16 + 68.1: 3637 _ZN9oceanbase3sql11ObResultSet5closeEv:3615 + 69.1: 16 + 73: 3637 _ZN9oceanbase7obmysql7OMPKEOFC1Ev:4104 + 74.1: 3627 + 76: 3627 + 77.1: 16 + 79.1: 3627 + 84: 3627 _ZNK9oceanbase3sql18ObBasicSessionInfo31is_server_status_in_transactionEv:3739 + 84.1: 3101 + 85: 3101 + 86.1: 3101 + 87: 3101 + 88: 3101 + 89: 3101 + 89.1: 3101 + 91.2: 3101 + 98: 3101 + 99: 3101 _ZThn56_N9oceanbase8observer8ObMPBase19update_last_pkt_posEv:3371 + 101: 3475 + 101.2: 3475 + 101.3: 3383 + 102: 3475 + 102.1: 3475 _ZThn56_N9oceanbase8observer8ObMPBase15response_packetERNS_7obmysql13ObMySQLPacketEPNS_3sql16ObSQLSessionInfoE:3621 + 102.2: 3383 + 103.1: 16 + 104: 16 + 106: 16 + 109: 3383 + 109.1: 3383 _ZThn56_N9oceanbase8observer8ObMPBase25need_send_extra_ok_packetEv:3464 + 109.2: 3839 + 111: 5 + 112: 5 + 112.2: 5 + 113.1: 5 + 114: 5 + 114.1: 5 + 115.1: 16 + 119: 3991 _ZN9oceanbase7obmysql7OMPKEOFD1Ev:4153 + 119.3: 16 + 121: 1114 _ZN9oceanbase3sql11ObResultSet5closeEv:1052 + 122.1: 16 + 124: 1114 _ZNK9oceanbase3sql11ObResultSet19has_implicit_cursorEv:1120 + 127: 1045 + 128: 1045 + 129: 1045 + 130: 1015 + 131: 1015 + 132.1: 16 + 134: 1015 + 135: 1015 + 137: 1015 + 138: 1015 + 140: 1164 _ZThn56_N9oceanbase8observer8ObMPBase14send_ok_packetERNS_3sql16ObSQLSessionInfoERNS0_10ObOKPParamEPNS_7obmysql13ObMySQLPacketE:1055 + 141.1: 16 + 146.1: 17 + 146.2: 17 + 146.3: 17 + 148: 17 + 149: 17 + 150: 17 + 151: 17 + 153: 17 + 154.1: 17 + 157: 16 + 158: 16 + 161.1: 16 + 166: 4032 + 172: 16 + 173: 16 + 174: 16 + 175.1: 16 + 178: 5206 _ZN9oceanbase6common20ObActiveSessionGuard8get_statEv:5228 + 179: 4620 + 11.1: _ZNK9oceanbase3sql18ObBasicSessionInfo14get_autocommitERb:154784 + 2: 4837 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache14get_autocommitEv:135436 + 0: 4837 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache14get_autocommitEb:87066 + 0: 4837 + 24.1: _ZNK9oceanbase8observer16ObQueryRetryCtrl10need_retryEv:160 + 3: 16 + 38.1: _ZNK9oceanbase3sql11ObResultSet12is_with_rowsEv:57707 + 2: 4439 + 41: _ZNK9oceanbase3sql11ObResultSet14is_ps_protocolEv:69804 + 0: 3517 + 41.5: _ZNK9oceanbase8observer16ObMySQLResultSet15has_more_resultEv:27440 + 2: 3430 + 62: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:208 + 0: 16 + 62.1: _ZN9oceanbase3sql13ObExecContext17get_task_exec_ctxEv:112 + 2: 16 + 74: _ZN9oceanbase6common25ob_get_tsi_warning_bufferEv:3771 + 2: 3751 _ZTWN9oceanbase6common16g_warning_bufferE:3892 + 79: _ZNK9oceanbase6common15ObWarningBuffer26get_readable_warning_countEv:50778 + 2: 3627 + 81: _ZN9oceanbase7obmysql7OMPKEOF17set_warning_countEt:14508 + 0: 3627 + 82: _ZNK9oceanbase7obmysql7OMPKEOF17get_server_statusEv:14508 + 0: 3627 + 86: _ZNK9oceanbase8observer16ObMySQLResultSet15has_more_resultEv:27909 + 2: 3101 + 89: _ZNK9oceanbase3sql18ObBasicSessionInfo15is_obproxy_modeEv:21707 + 0: 3101 + 91.1: _ZN9oceanbase3sql18ObPartitionHitInfo8get_boolEv:40313 + 0: 3101 + 94: _ZN9oceanbase7obmysql7OMPKEOF17set_server_statusENS0_19ObServerStatusFlagsE:12404 + 0: 3101 + 101.1: _ZN9oceanbase3sql11ObResultSet21get_is_com_filed_listEv:31275 + 0: 3475 + 102: _ZN9oceanbase3sql11ObResultSet11get_sessionEv:27800 + 0: 3475 + 110: _ZN9oceanbase8observer10ObOKPParamC2Ev:140 + 2: 5 + 7: 5 + 8: 5 + 12: 5 + 112.1: _ZN9oceanbase3sql18ObPartitionHitInfo8get_boolEv:30 + 0: 5 + 126: _ZN9oceanbase8observer10ObOKPParamC2Ev:31350 + 2: 1045 + 7: 1045 + 8: 1045 + 12: 1045 + 127: _ZNK9oceanbase3sql11ObResultSet11get_messageEv:8360 + 2: 1045 + 128: _ZNK9oceanbase3sql11ObResultSet17get_affected_rowsEv:8360 + 2: 1045 + 129: _ZN9oceanbase3sql11ObResultSet28get_last_insert_id_to_clientEv:8360 + 2: 1045 + 130: _ZN9oceanbase6common25ob_get_tsi_warning_bufferEv:1113 + 2: 1045 _ZTWN9oceanbase6common16g_warning_bufferE:1067 + 135: _ZNK9oceanbase6common15ObWarningBuffer26get_readable_warning_countEv:14210 + 2: 1015 + 137.1: _ZN9oceanbase3sql18ObPartitionHitInfo8get_boolEv:10150 + 0: 1015 + 138: _ZNK9oceanbase8observer16ObMySQLResultSet15has_more_resultEv:8120 + 2: 1015 + 145: _ZN9oceanbase3sql11ObResultSet25reset_implicit_cursor_idxEv:748 + 2: 17 + 2: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:357 + 0: 17 + 0.2: 17 + 2.1: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:119 + 2: 17 + 3.2: _ZN9oceanbase3sql17ObPhysicalPlanCtx15set_cur_stmt_idEl:187 + 0: 17 + 147: _ZN9oceanbase8observer10ObOKPParamC2Ev:884 + 2: 17 + 6: 17 + 8: 17 + 12: 17 + 149: _ZNK9oceanbase3sql11ObResultSet17get_affected_rowsEv:136 + 2: 17 + 150.1: _ZN9oceanbase3sql18ObPartitionHitInfo8get_boolEv:119 + 0: 17 + 168: _ZNK9oceanbase8observer16ObQueryRetryCtrl10need_retryEv:256 + 3: 16 + 173: _ZN9oceanbase3sql18ObBasicSessionInfo27get_err_final_partition_hitEi:976 + 3: 16 + 5.2: 16 + 6: 16 + 2.1: _ZN9oceanbase3sql18ObPartitionHitInfo8get_boolEv:256 + 0: 16 + 3: _ZN9oceanbase3sql18ObBasicSessionInfo29is_proxy_refresh_location_retEi:96 + 1: 16 + 5.1: _ZN9oceanbase3sql18ObBasicSessionInfo15get_is_in_retryEv:112 + 1: 16 + 6.2: _ZN9oceanbase3sql18ObBasicSessionInfo29is_proxy_refresh_location_retEi:208 + 1: 16 +_ZN9oceanbase6common10ObIOHandle5resetEv:2141853:96054 + 1: 92561 + 2: 92561 + 4: 289 _ZN9oceanbase6common11ObIORequest7dec_refEv:1 + 5: 288 + 7: 93092 + 3: _ZN9oceanbase6common11ObIORequest11dec_out_refEv:4620 + 2: 289 + 3: 289 _ZN9oceanbase6common11ObIORequest6cancelEv:1 +_ZN9oceanbase7storage20ObTableStoreIterator5resetEv:2128116:20820 + 1: 19524 + 2: 19524 + 3: 19524 + 4: 19524 + 5: 19524 + 2: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl16ENS0_19ModulePageAllocatorELb0EE5resetEv:1210488 + 0: 19524 + 0: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl16ENS0_19ModulePageAllocatorELb0EE7destroyEv:878580 + 9: 19524 + 10: 0 + 11: 0 + 13: 19524 + 15: 19524 + 24: 19524 +_ZN9oceanbase3sql18ObPushdownOperator21clear_datum_eval_flagEv:2117351:116974 + 1: 111433 + 3: 111433 + 3.6: 2 + 4: 2 + 10: 111433 + 3.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:32 + 6: 2 + 4: _ZNK9oceanbase3sql6ObExpr15is_batch_resultEv:8 + 0: 2 + 5: _ZNK9oceanbase3sql6ObExpr19get_evaluated_flagsERNS0_9ObEvalCtxE:0 + 2: 0 + 5.1: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 5.2: _ZN9oceanbase3sql11ObBitVector5unsetEl:0 + 3: 0 + 7: _ZNK9oceanbase3sql6ObExpr13get_eval_infoERNS0_9ObEvalCtxE:28 + 2: 2 + 7.1: _ZN9oceanbase3sql10ObEvalInfo20clear_evaluated_flagEv:22 + 2: 2 + 4: 1 +_ZN9oceanbase3sql8ObDASRef14close_all_taskEv:2104000:5437 + 1: 5248 + 2: 5248 + 4: 5248 + 8.1: 10709 + 8.4: 10709 + 9: 5111 + 10.2: 5111 + 10.3: 5634 + 11.1: 50 + 14: 5634 + 18: 50 + 22: 5444 + 23: 5444 + 23.1: 5444 + 24: 63 + 25.1: 63 + 38: 5777 + 4: _ZNK9oceanbase3sql8ObDASRef8has_taskEv:36736 + 0: _ZNK9oceanbase6common10ObObjStoreIPNS_3sql12ObIDASTaskOpERNS0_12ObIAllocatorELb0EE5emptyEv:36736 + 0: 5248 + 7: _ZN9oceanbase3sql8ObDASRef15begin_task_iterEv:141696 + 0: 5248 + 0: _ZN9oceanbase6common10ObObjStoreIPNS_3sql12ObIDASTaskOpERNS0_12ObIAllocatorELb0EE5beginEv:83968 + 0: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql12ObIDASTaskOpEEEE9get_firstEv:83968 + 0: 5248 + 10: _ZN9oceanbase5share11ObTenantEnv3mtlIPNS_3sql19ObDataAccessServiceEEET_v:54660 + 2: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:54660 + 2: 5111 + 2.1: 50 + 2.2: 50 + 10.2: _ZN9oceanbase3sql19ObDataAccessService12end_das_taskERNS0_8ObDASRefERNS0_12ObIDASTaskOpE:378653 + 2: 5111 + 3: 50 + 4.1: 50 + 6: 50 + 3: _ZN9oceanbase3sql12ObIDASTaskOp12end_das_taskEv:341526 + 2: 5111 + 5: 5111 + 6: 5917 _ZN9oceanbase3sql11ObDASScanOp10release_opEv:4188 _ZN9oceanbase3sql13ObDASUpdateOp10release_opEv:379 _ZN9oceanbase3sql13ObDASInsertOp10release_opEv:265 _ZN9oceanbase3sql13ObDASDeleteOp10release_opEv:258 _ZN9oceanbase3sql11ObDASLockOp10release_opEv:158 + 7.1: 50 + 9: 50 + 9.3: 5634 + 11: 5634 + 13: 5634 + 13: _ZN9oceanbase6common10ObObjStoreIPNS_3sql12ObIDASTaskOpERNS0_12ObIAllocatorELb0EE8IteratorppEv:28170 + 0: _ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql12ObIDASTaskOpEEEE8get_nextEv:28170 + 0: 5634 + 36: _ZN9oceanbase6common10ObObjStoreIPNS_3sql12ObIDASTaskOpERNS0_12ObIAllocatorELb0EE7destroyEv:588219 + 2.1: 5444 + 4: 5480 _ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql12ObIDASTaskOpEEEED2Ev:5564 + 5: 5575 _ZN9oceanbase6common18ObWrapperAllocator4freeEPv:5874 + 2: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql12ObIDASTaskOpEEEE12remove_firstEv:332084 + 2: 5444 + 2: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql12ObIDASTaskOpEEEE6removeEPS6_:277644 + 3: 5444 + 7: 5444 + 6: _ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql12ObIDASTaskOpEEEE6unlinkEv:195984 + 2: 5444 + 4: 5444 + 5: 5444 + 6: 5444 + 7: 5444 + 2.5: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql12ObIDASTaskOpEEEE12remove_firstEv:94698 + 2: 5753 + 2: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql12ObIDASTaskOpEEEE6removeEPS6_:37168 + 3: 5753 + 7: 50 + 6: _ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql12ObIDASTaskOpEEEE6unlinkEv:1800 + 2: 50 + 4: 50 + 5: 50 + 6: 50 + 7: 50 +_ZNK9oceanbase10logservice12ObLogHandler8get_roleERNS_6common6ObRoleERl:2100756:4408 + 1: 4120 + 2: 4120 + 3: 4120 + 7: 4120 + 8: 4125 + 9: 4125 + 10: 4125 + 11: 27 + 12.1: 4125 + 13: 27 + 14.1: 4125 + 17.1: 4125 _ZNK9oceanbase4palf10PalfHandle8get_roleERNS_6common6ObRoleERlRb:4302 + 17.2: 4268 + 18.1: 27 + 19.1: 4268 + 24: 4268 + 27: 4241 + 28.2: 4247 + 28.3: 27 + 7: _ZN9oceanbase6common8TCRWLock10RLockGuardC2ERS1_:734371 + 0: 4120 + 0: _ZN9oceanbase6common8TCRWLock6rdlockEl:717891 + 3.1: 27 + 4: 27 + 5: 27 + 3.2: _ZN9oceanbase6common8TCRWLock10try_rdlockEv:716379 + 3: 4120 + 5: 4125 + 4: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:28840 + 0: 4120 + 4.1: _ZN9oceanbase6common5TCRef7inc_refEPi:527842 + 2: 4120 + 4.1: 4120 + 4.2: 260 + 6: 4345 + 6.1: 4125 + 10: 4125 + 2: _ZN9oceanbase6common8get_itidEv:116737 + 4: 4120 + 5: 27 + 6: 27 + 8: 27 + 11: _ZN9oceanbase6common5TCRef5xref_EPii:270 + 0: 27 + 8: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:189 + 0: 27 + 8.1: _ZN9oceanbase6common5TCRef7dec_refEPi:5670 + 2: 27 + 4.1: 27 + 4.2: 27 + 6: 27 + 6.1: 27 + 10: 27 + 2: _ZN9oceanbase6common8get_itidEv:2133 + 4: 27 + 5: 27 + 6: 27 + 8: 27 + 11: _ZN9oceanbase6common5TCRef5xref_EPii:270 + 0: 27 + 9: _ZN9oceanbase6common9LWaitCond6signalEv:1134 + 2: 27 + 2.1: 27 + 3: 27 + 28.2: _ZN9oceanbase6common8TCRWLock10RLockGuardD2Ev:659511 + 0: 4241 + 0.2: 27 + 0: _ZN9oceanbase6common8TCRWLock8rdunlockEv:642331 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:21205 + 0: 4241 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPi:531123 + 2: 4241 + 4.1: 4241 + 4.2: 285 + 6: 4501 + 6.1: 4247 + 10: 4247 + 2: _ZN9oceanbase6common8get_itidEv:120206 + 4: 4241 + 5: 27 + 6: 27 + 8: 27 + 11: _ZN9oceanbase6common5TCRef5xref_EPii:216 + 0: 27 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:56075 + 2: 4247 + 2.1: 27 + 3: 27 +_ZN9oceanbase3sql10ObQueryCtxC2Ev:2098215:519 + 0.5: 505 + 0.8: 516 + 2: 505 + 3: 505 + 4: 505 + 6: 505 + 10: 505 + 12: 505 + 15: 505 _ZN9oceanbase6common7ObArrayIPNS_3sql21ObUserVarIdentRawExprENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS4_EENS0_17DefaultItemEncodeIS4_EEEC2Ev:519 + 16: 516 + 18: 516 + 20: 505 + 22: 517 + 23: 517 + 26: 517 + 27: 517 + 29: 517 + 30: 505 + 31: 517 + 31.18: 0 + 31.19: 0 + 31.21: 0 + 31.22: 0 + 31.23: 0 + 31.24: 0 + 31.25: 0 + 31.26: 0 + 31.27: 0 + 0: _ZN9oceanbase6common7ObArrayINS_5share6schema18ObSchemaObjVersionENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_17DefaultItemEncodeIS4_EEEC2Ev:46965 + 0.1: 505 + 0.5: _ZN9oceanbase6common11ObArrayImplINS_5share6schema18ObSchemaObjVersionENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_17DefaultItemEncodeIS4_EEEC2ElRKS5_:37875 + 3: 505 + 4: 505 + 7.1: 505 + 2: _ZN9oceanbase6common8ObIArrayINS_5share6schema18ObSchemaObjVersionEEC2Ev:3535 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_5share6schema18ObSchemaObjVersionEEC2Ev:3535 + 0: 505 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:19695 + 0: 505 + 0.1: _ZN9oceanbase6common7ObArrayINS_3sql9ObVarInfoENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEEC2Ev:103020 + 0.1: 505 + 0.5: _ZN9oceanbase6common11ObArrayImplINS_3sql9ObVarInfoENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEEC2ElRKS4_:93930 + 3: 505 + 4: 505 + 6: 505 + 7.1: 505 + 2: _ZN9oceanbase6common8ObIArrayINS_3sql9ObVarInfoEEC2Ev:3535 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_3sql9ObVarInfoEEC2Ev:3535 + 0: 505 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:16160 + 0: 505 + 11: _ZN9oceanbase6common11ObArrayImplINS_3sql9ObVarInfoENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE19set_block_allocatorERKS4_:16160 + 0: _ZN9oceanbase6common19ModulePageAllocatoraSERKS1_:16160 + 2: 505 + 3: 505 + 5: 505 + 13: _ZN9oceanbase3lib11this_workerEv:14140 + 2: _ZN9oceanbase3lib6Worker4selfEv:14140 + 3: 505 + 4: 0 + 13.1: _ZN9oceanbase3lib6Worker23get_sql_arena_allocatorEv:20200 + 2: 505 + 2: _ZN9oceanbase3lib4Flow11current_ctxEv:15655 + 2: _ZN9oceanbase3lib4Flow12current_flowEv:15655 + 3: 505 + 8: 0 + 10: 0 + 11: 0 + 12: 0 + 8.1: _ZN9oceanbase3lib4FlowC2ERNS0_13MemoryContextE:0 + 1: 0 + 3: 0 + 11: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 0.2: _ZN9oceanbase6common7ObArrayINS_3sql18ObPCConstParamInfoENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEEC2Ev:87365 + 0.1: 505 + 0.5: _ZN9oceanbase6common11ObArrayImplINS_3sql18ObPCConstParamInfoENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEEC2ElRKS4_:78275 + 3: 505 + 4: 505 + 6: 505 + 7.1: 505 + 2: _ZN9oceanbase6common8ObIArrayINS_3sql18ObPCConstParamInfoEEC2Ev:5050 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_3sql18ObPCConstParamInfoEEC2Ev:5050 + 0: 505 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:19695 + 0: 505 + 11: _ZN9oceanbase6common11ObArrayImplINS_3sql18ObPCConstParamInfoENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE19set_block_allocatorERKS4_:16160 + 0: _ZN9oceanbase6common19ModulePageAllocatoraSERKS1_:16160 + 2: 505 + 3: 505 + 5: 505 + 13: _ZN9oceanbase3lib11this_workerEv:4545 + 2: _ZN9oceanbase3lib6Worker4selfEv:4545 + 3: 505 + 4: 0 + 13.1: _ZN9oceanbase3lib6Worker23get_sql_arena_allocatorEv:9090 + 2: 505 + 2: _ZN9oceanbase3lib4Flow11current_ctxEv:4545 + 2: _ZN9oceanbase3lib4Flow12current_flowEv:4545 + 3: 505 + 8: 0 + 10: 0 + 11: 0 + 12: 0 + 8.1: _ZN9oceanbase3lib4FlowC2ERNS0_13MemoryContextE:0 + 1: 0 + 3: 0 + 11: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 0.3: _ZN9oceanbase6common7ObArrayINS_3sql18ObPCConstParamInfoENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEEC2Ev:83325 + 0.1: 505 + 0.5: _ZN9oceanbase6common11ObArrayImplINS_3sql18ObPCConstParamInfoENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEEC2ElRKS4_:79790 + 3: 505 + 4: 505 + 6: 505 + 7.1: 505 + 2: _ZN9oceanbase6common8ObIArrayINS_3sql18ObPCConstParamInfoEEC2Ev:5050 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_3sql18ObPCConstParamInfoEEC2Ev:5050 + 0: 505 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:23230 + 0: 505 + 11: _ZN9oceanbase6common11ObArrayImplINS_3sql18ObPCConstParamInfoENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE19set_block_allocatorERKS4_:16160 + 0: _ZN9oceanbase6common19ModulePageAllocatoraSERKS1_:16160 + 2: 505 + 3: 505 + 5: 505 + 13: _ZN9oceanbase3lib11this_workerEv:8080 + 2: _ZN9oceanbase3lib6Worker4selfEv:8080 + 3: 505 + 4: 0 + 13.1: _ZN9oceanbase3lib6Worker23get_sql_arena_allocatorEv:9090 + 2: 505 + 2: _ZN9oceanbase3lib4Flow11current_ctxEv:4545 + 2: _ZN9oceanbase3lib4Flow12current_flowEv:4545 + 3: 505 + 8: 0 + 10: 0 + 11: 0 + 12: 0 + 8.1: _ZN9oceanbase3lib4FlowC2ERNS0_13MemoryContextE:0 + 1: 0 + 3: 0 + 11: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 0.4: _ZN9oceanbase6common7ObArrayINS_3sql18ObPCParamEqualInfoENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEEC2Ev:90900 + 0.1: 505 + 0.5: _ZN9oceanbase6common11ObArrayImplINS_3sql18ObPCParamEqualInfoENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEEC2ElRKS4_:81810 + 3: 505 + 4: 505 + 6: 505 + 7.1: 505 + 2: _ZN9oceanbase6common8ObIArrayINS_3sql18ObPCParamEqualInfoEEC2Ev:5050 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_3sql18ObPCParamEqualInfoEEC2Ev:5050 + 0: 505 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:23230 + 0: 505 + 11: _ZN9oceanbase6common11ObArrayImplINS_3sql18ObPCParamEqualInfoENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE19set_block_allocatorERKS4_:16160 + 0: _ZN9oceanbase6common19ModulePageAllocatoraSERKS1_:16160 + 2: 505 + 3: 505 + 5: 505 + 13: _ZN9oceanbase3lib11this_workerEv:4545 + 2: _ZN9oceanbase3lib6Worker4selfEv:4545 + 3: 505 + 4: 0 + 13.1: _ZN9oceanbase3lib6Worker23get_sql_arena_allocatorEv:9090 + 2: 505 + 2: _ZN9oceanbase3lib4Flow11current_ctxEv:4545 + 2: _ZN9oceanbase3lib4Flow12current_flowEv:4545 + 3: 505 + 8: 0 + 10: 0 + 11: 0 + 12: 0 + 8.1: _ZN9oceanbase3lib4FlowC2ERNS0_13MemoryContextE:0 + 1: 0 + 3: 0 + 11: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 0.5: _ZN9oceanbase6common7ObDListINS_3sql23ObPreCalcExprConstraintEEC2Ev:21210 + 2: 505 + 3: 505 + 4: 505 + 65463: _ZN9oceanbase6common11ObDLinkBaseINS_3sql23ObPreCalcExprConstraintEEC2Ev:9090 + 2: 505 + 0.6: _ZN9oceanbase6common7ObArrayINS_3sql16ObExprConstraintENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEEC2Ev:87365 + 0.1: 505 + 0.5: _ZN9oceanbase6common11ObArrayImplINS_3sql16ObExprConstraintENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEEC2ElRKS4_:78275 + 3: 505 + 4: 505 + 6: 505 + 7.1: 505 + 2: _ZN9oceanbase6common8ObIArrayINS_3sql16ObExprConstraintEEC2Ev:5050 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_3sql16ObExprConstraintEEC2Ev:5050 + 0: 505 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:19695 + 0: 505 + 11: _ZN9oceanbase6common11ObArrayImplINS_3sql16ObExprConstraintENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE19set_block_allocatorERKS4_:16160 + 0: _ZN9oceanbase6common19ModulePageAllocatoraSERKS1_:16160 + 2: 505 + 3: 505 + 5: 505 + 13: _ZN9oceanbase3lib11this_workerEv:4545 + 2: _ZN9oceanbase3lib6Worker4selfEv:4545 + 3: 505 + 4: 0 + 13.1: _ZN9oceanbase3lib6Worker23get_sql_arena_allocatorEv:9090 + 2: 505 + 2: _ZN9oceanbase3lib4Flow11current_ctxEv:4545 + 2: _ZN9oceanbase3lib4Flow12current_flowEv:4545 + 3: 505 + 8: 0 + 12: 0 + 8.1: _ZN9oceanbase3lib4FlowC2ERNS0_13MemoryContextE:0 + 1: 0 + 3: 0 + 10: _ZN9oceanbase3lib4Flow4initEv:0 + 4: 0 + 7: 0 + 8: 0 + 9: 0 + 12: 0 + 7: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 0.7: _ZN9oceanbase6common4hash9ObHashMapImNS0_5ObObjENS1_19NoPthreadDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS3_EEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev:116761 + 0.1: 516 + 0: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImNS0_5ObObjEEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEC2Ev:39877 + 0: 527 + 2: 527 + 0.1: _ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocatorC2EmRKNS_3lib7ObLabelE:24242 + 3: 527 + 4: 527 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:11067 + 7: 527 + 2: _ZN9oceanbase6common4hash10SpinIniterC2ERVi:6676 + 2: 527 + 3.1: 0 + 0.1: _ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImNS0_5ObObjEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev:40248 + 0: 516 + 1: 516 + 0: _ZN9oceanbase6common8ObMallocC2Ev:19608 + 0: 516 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:15996 + 5: 516 + 7: 516 + 8: _ZN9oceanbase6common4hash9constructIPNS1_17ObHashTableBucketINS1_11HashMapPairImNS0_5ObObjEEENS1_5NLockENS1_5NCondEEEEEvRT_:9288 + 2: _ZN9oceanbase6common4hash12do_constructIPNS1_17ObHashTableBucketINS1_11HashMapPairImNS0_5ObObjEEENS1_5NLockENS1_5NCondEEEEEvRT_NS1_16NormalPointerTagE:9288 + 2: 516 + 0.2: _ZN9oceanbase6common8ObMallocC2Ev:9288 + 0: 516 + 4: _ZN9oceanbase6common8ObMalloc8set_attrERKNS_3lib9ObMemAttrE:23736 + 0: 516 + 0.8: _ZN9oceanbase3sql16ObSqlSchemaGuardC2Ev:103200 + 0: 516 + 1: 516 _ZN9oceanbase3sql16ObSqlSchemaGuard5resetEv:521 + 1.3: 0 + 0.1: _ZN9oceanbase6common19ModulePageAllocatorC2ERKNS_3lib7ObLabelEll:23736 + 3: 516 + 4: 516 + 5: 516 + 6: 516 + 0.2: _ZN9oceanbase6common9ObSEArrayIPKNS_5share6schema13ObTableSchemaELl1ENS0_19ModulePageAllocatorELb0EEC2Ev:75336 + 0.1: 516 + 0.5: _ZN9oceanbase6common13ObSEArrayImplIPKNS_5share6schema13ObTableSchemaELl1ENS0_19ModulePageAllocatorELb0EEC2ElRKS7_:66048 + 2: 516 + 5: 516 + 6: 516 + 8: 516 + 17.1: 516 + 2: _ZN9oceanbase6common8ObIArrayIPKNS_5share6schema13ObTableSchemaEEC2EPS6_l:9288 + 0: _ZN9oceanbase6common12ObIArrayWrapIPKNS_5share6schema13ObTableSchemaEEC2EPS6_l:9288 + 0: 516 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:16512 + 0: 516 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:12900 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:12900 + 2: 516 + 8: 516 + 2: _ZN9oceanbase6common9ObSEArrayINS_3sql18ObHiddenColumnItemELl1ENS0_19ModulePageAllocatorELb1EEC2Ev:66155 + 0.1: 505 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_3sql18ObHiddenColumnItemELl1ENS0_19ModulePageAllocatorELb1EEC2ElRKS4_:58580 + 2: 505 + 5: 505 + 6: 505 + 8: 505 + 17.1: 505 + 2: _ZN9oceanbase6common8ObIArrayINS_3sql18ObHiddenColumnItemEEC2EPS3_l:6060 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_3sql18ObHiddenColumnItemEEC2EPS3_l:6060 + 0: 505 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:22725 + 0: 505 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:12625 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:12625 + 2: 505 + 8: 505 + 3: _ZN9oceanbase6common9ObSEArrayIPNS_3sql9ObRawExprELl4ENS0_19ModulePageAllocatorELb1EEC2Ev:64640 + 0.1: 505 + 0.5: _ZN9oceanbase6common13ObSEArrayImplIPNS_3sql9ObRawExprELl4ENS0_19ModulePageAllocatorELb1EEC2ElRKS5_:55550 + 5: 505 + 6: 505 + 8: 505 + 17.1: 505 + 2: _ZN9oceanbase6common8ObIArrayIPNS_3sql9ObRawExprEEC2EPS4_l:9090 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql9ObRawExprEEC2EPS4_l:9090 + 0: 505 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:16160 + 0: 505 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:9090 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:9090 + 2: 505 + 8: 505 + 19: _ZN9oceanbase5share6schema19ObReferenceObjTableC2Ev:109747 + 1: 512 + 2: _ZN9oceanbase6common4hash9ObHashMapINS_5share6schema19ObReferenceObjTable18ObDependencyObjKeyEPNS5_19ObDependencyObjItemENS1_24LatchReadWriteDefendModeENS1_9hash_funcIS6_EENS1_8equal_toIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS6_S8_EEEELi89ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev:106163 + 0.1: 505 + 0: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS_5share6schema19ObReferenceObjTable18ObDependencyObjKeyEPNS7_19ObDependencyObjItemEEEEELi89ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEC2Ev:36954 + 0: 512 + 2: 512 + 0.1: _ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocatorC2EmRKNS_3lib7ObLabelE:23552 + 3: 512 + 4: 512 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:10752 + 7: 512 + 2: _ZN9oceanbase6common4hash10SpinIniterC2ERVi:4698 + 2: 542 + 3.1: 0 + 0.1: _ZN9oceanbase6common4hash11ObHashTableINS_5share6schema19ObReferenceObjTable18ObDependencyObjKeyENS1_11HashMapPairIS6_PNS5_19ObDependencyObjItemEEENS1_9hash_funcIS6_EENS1_8equal_toIS6_EENS1_10pair_firstISA_EENS1_13SimpleAllocerINS1_15ObHashTableNodeISA_EELi89ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev:38909 + 0: 505 + 1: 505 + 0: _ZN9oceanbase6common8ObMallocC2Ev:20729 + 0: 505 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:17194 + 5: 505 + 7: 513 + 8: _ZN9oceanbase6common4hash9constructIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_5share6schema19ObReferenceObjTable18ObDependencyObjKeyEPNS7_19ObDependencyObjItemEEENS0_7ObLatchENS1_5NCondEEEEEvRT_:9090 + 2: _ZN9oceanbase6common4hash12do_constructIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_5share6schema19ObReferenceObjTable18ObDependencyObjKeyEPNS7_19ObDependencyObjItemEEENS0_7ObLatchENS1_5NCondEEEEEvRT_NS1_16NormalPointerTagE:9090 + 2: 505 + 0.2: _ZN9oceanbase6common8ObMallocC2Ev:3535 + 0: 505 + 4: _ZN9oceanbase6common8ObMalloc8set_attrERKNS_3lib9ObMemAttrE:23230 + 0: 505 + 21: _ZN9oceanbase3sql11ObQueryHintC2Ev:948067 + 0: 505 + 0.8: 532 _ZN9oceanbase3sql11ObQueryHint5resetEv:545 + 0.18: 0 + 0.19: 0 + 0.20: 0 + 0.21: 0 + 0.22: 0 + 0.23: 0 + 0.24: 0 + 0.25: 0 + 0.26: 0 + 0: _ZN9oceanbase3sql12ObGlobalHintC2Ev:299970 + 0: 505 + 0.1: 505 + 0.2: 505 + 0.3: 505 _ZN9oceanbase3sql12ObGlobalHint5resetEv:515 + 0.8: 0 + 0.10: 0 + 0.11: 0 + 0: _ZN9oceanbase6common8ObStringC2Ev:3535 + 1: 505 + 0.1: _ZN9oceanbase3sql14ObOptParamHintC2Ev:136350 + 0: _ZN9oceanbase6common9ObSEArrayINS_3sql14ObOptParamHint12OptParamTypeELl1ENS0_19ModulePageAllocatorELb1EEC2Ev:71710 + 0.1: 505 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_3sql14ObOptParamHint12OptParamTypeELl1ENS0_19ModulePageAllocatorELb1EEC2ElRKS5_:62620 + 2: 505 + 5: 505 + 6: 505 + 8: 505 + 17.1: 505 + 2: _ZN9oceanbase6common8ObIArrayINS_3sql14ObOptParamHint12OptParamTypeEEC2EPS4_l:9090 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_3sql14ObOptParamHint12OptParamTypeEEC2EPS4_l:9090 + 0: 505 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:16160 + 0: 505 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:16160 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:16160 + 2: 505 + 8: 505 + 0.4: _ZN9oceanbase6common9ObSEArrayINS0_5ObObjELl1ENS0_19ModulePageAllocatorELb1EEC2Ev:64640 + 0.1: 505 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS0_5ObObjELl1ENS0_19ModulePageAllocatorELb1EEC2ElRKS3_:55550 + 2: 505 + 5: 505 + 6: 505 + 8: 505 + 17.1: 505 + 2: _ZN9oceanbase6common8ObIArrayINS0_5ObObjEEC2EPS2_l:9090 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_5ObObjEEC2EPS2_l:9090 + 0: 505 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:16160 + 0: 505 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:9090 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:9090 + 2: 505 + 8: 505 + 0.2: _ZN9oceanbase6common7ObArrayINS_3sql22ObDDLSchemaVersionHintENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEEC2Ev:45450 + 0.1: 505 + 0.5: _ZN9oceanbase6common11ObArrayImplINS_3sql22ObDDLSchemaVersionHintENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEEC2ElRKS4_:34340 + 3: 505 + 4: 505 + 7.1: 505 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:16160 + 0: 505 + 0.9: _ZN9oceanbase3sql14ObOptParamHintD2Ev:0 + 0: 0 + 0.1: 0 + 0.13: _ZN9oceanbase6common7ObArrayINS_3sql13ObMonitorHintENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEEC2Ev:50500 + 0.1: 505 + 0.5: _ZN9oceanbase6common11ObArrayImplINS_3sql13ObMonitorHintENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEEC2ElRKS4_:41410 + 4: 505 + 7.1: 505 + 2: _ZN9oceanbase6common8ObIArrayINS_3sql13ObMonitorHintEEC2Ev:7070 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_3sql13ObMonitorHintEEC2Ev:7070 + 0: 505 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:23230 + 0: 505 + 0.14: _ZN9oceanbase6common7ObArrayINS_3sql9ObDopHintENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEEC2Ev:43430 + 0.1: 505 + 0.5: _ZN9oceanbase6common11ObArrayImplINS_3sql9ObDopHintENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEEC2ElRKS4_:34340 + 3: 505 + 4: 505 + 7.1: 505 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:16160 + 0: 505 + 0.1: _ZN9oceanbase6common9ObSEArrayINS_3sql7ObHintsELl8ENS0_19ModulePageAllocatorELb1EEC2Ev:60021 + 0.1: 513 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_3sql7ObHintsELl8ENS0_19ModulePageAllocatorELb1EEC2ElRKS4_:56430 + 2: 513 + 5: 513 + 6: 513 + 8: 513 + 17.1: 513 + 2: _ZN9oceanbase6common8ObIArrayINS_3sql7ObHintsEEC2EPS3_l:9234 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_3sql7ObHintsEEC2EPS3_l:9234 + 0: 513 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:16416 + 0: 513 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:9234 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:9234 + 2: 513 + 8: 513 + 0.2: _ZN9oceanbase6common9ObSEArrayIPKNS_3sql6ObHintELl8ENS0_19ModulePageAllocatorELb1EEC2Ev:65664 + 0.1: 513 + 0.5: _ZN9oceanbase6common13ObSEArrayImplIPKNS_3sql6ObHintELl8ENS0_19ModulePageAllocatorELb1EEC2ElRKS6_:56430 + 2: 513 + 5: 513 + 6: 513 + 8: 513 + 17.1: 513 + 2: _ZN9oceanbase6common8ObIArrayIPKNS_3sql6ObHintEEC2EPS5_l:9234 + 0: _ZN9oceanbase6common12ObIArrayWrapIPKNS_3sql6ObHintEEC2EPS5_l:9234 + 0: 513 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:16416 + 0: 513 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:9234 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:9234 + 2: 513 + 8: 513 + 0.3: _ZN9oceanbase6common9ObSEArrayIPKNS_3sql6ObHintELl8ENS0_19ModulePageAllocatorELb1EEC2Ev:60021 + 0.1: 513 + 0.5: _ZN9oceanbase6common13ObSEArrayImplIPKNS_3sql6ObHintELl8ENS0_19ModulePageAllocatorELb1EEC2ElRKS6_:56430 + 2: 513 + 5: 513 + 6: 513 + 8: 513 + 17.1: 513 + 2: _ZN9oceanbase6common8ObIArrayIPKNS_3sql6ObHintEEC2EPS5_l:9234 + 0: _ZN9oceanbase6common12ObIArrayWrapIPKNS_3sql6ObHintEEC2EPS5_l:9234 + 0: 513 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:16416 + 0: 513 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:9234 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:9234 + 2: 513 + 8: 513 + 0.4: _ZN9oceanbase6common9ObSEArrayIPKNS_3sql6ObHintELl8ENS0_19ModulePageAllocatorELb1EEC2Ev:60021 + 0.1: 513 + 0.5: _ZN9oceanbase6common13ObSEArrayImplIPKNS_3sql6ObHintELl8ENS0_19ModulePageAllocatorELb1EEC2ElRKS6_:56430 + 2: 513 + 5: 513 + 6: 513 + 8: 513 + 17.1: 513 + 2: _ZN9oceanbase6common8ObIArrayIPKNS_3sql6ObHintEEC2EPS5_l:9234 + 0: _ZN9oceanbase6common12ObIArrayWrapIPKNS_3sql6ObHintEEC2EPS5_l:9234 + 0: 513 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:16416 + 0: 513 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:9234 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:9234 + 2: 513 + 8: 513 + 0.5: _ZN9oceanbase6common7ObArrayINS_3sql11ObQueryHint10IdNamePairENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS4_EENS0_17DefaultItemEncodeIS4_EEEC2Ev:112860 + 0.1: 513 + 0.5: _ZN9oceanbase6common11ObArrayImplINS_3sql11ObQueryHint10IdNamePairENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS4_EENS0_17DefaultItemEncodeIS4_EEEC2ElRKS5_:103626 + 3: 513 + 4: 513 + 6: 513 + 7.1: 513 + 2: _ZN9oceanbase6common8ObIArrayINS_3sql11ObQueryHint10IdNamePairEEC2Ev:3591 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_3sql11ObQueryHint10IdNamePairEEC2Ev:3591 + 0: 513 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:20007 + 0: 513 + 11: _ZN9oceanbase6common11ObArrayImplINS_3sql11ObQueryHint10IdNamePairENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS4_EENS0_17DefaultItemEncodeIS4_EEE19set_block_allocatorERKS5_:16416 + 0: _ZN9oceanbase6common19ModulePageAllocatoraSERKS1_:16416 + 2: 513 + 3: 513 + 5: 513 + 13: _ZN9oceanbase3lib11this_workerEv:20520 + 2: _ZN9oceanbase3lib6Worker4selfEv:20520 + 3: 513 + 4: 0 + 13.1: _ZN9oceanbase3lib6Worker23get_sql_arena_allocatorEv:18981 + 2: 513 + 2: _ZN9oceanbase3lib4Flow11current_ctxEv:14364 + 2: _ZN9oceanbase3lib4Flow12current_flowEv:14364 + 3: 513 + 8: 0 + 10: 0 + 11: 0 + 12: 0 + 8.1: _ZN9oceanbase3lib4FlowC2ERNS0_13MemoryContextE:0 + 1: 0 + 3: 0 + 11: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 0.6: _ZN9oceanbase6common4hash9ObHashMapINS0_8ObStringElNS1_24LatchReadWriteDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_lEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev:102546 + 0.1: 524 + 0: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS0_8ObStringElEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEC2Ev:37570 + 0: 524 + 2: 513 + 0.1: _ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocatorC2EmRKNS_3lib7ObLabelE:20007 + 3: 513 + 4: 513 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:10773 + 7: 513 + 2: _ZN9oceanbase6common4hash10SpinIniterC2ERVi:7270 + 2: 524 + 3.1: 0 + 0.1: _ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_lEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev:37204 + 0: 524 + 1: 524 + 0: _ZN9oceanbase6common8ObMallocC2Ev:18340 + 0: 524 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:14672 + 5: 524 + 7: 524 + 8: _ZN9oceanbase6common4hash9constructIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringElEENS0_7ObLatchENS1_5NCondEEEEEvRT_:9432 + 2: _ZN9oceanbase6common4hash12do_constructIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringElEENS0_7ObLatchENS1_5NCondEEEEEvRT_NS1_16NormalPointerTagE:9432 + 2: 524 + 0.2: _ZN9oceanbase6common8ObMallocC2Ev:3668 + 0: 524 + 4: _ZN9oceanbase6common8ObMalloc8set_attrERKNS_3lib9ObMemAttrE:20436 + 0: 524 + 0.7: _ZN9oceanbase6common4hash9ObHashMapIlNS0_8ObStringENS1_24LatchReadWriteDefendModeENS1_9hash_funcIlEENS1_8equal_toIlEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIlS3_EEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev:102736 + 0.1: 532 + 0: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIlNS0_8ObStringEEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEC2Ev:35172 + 0: 524 + 2: 524 + 0.1: _ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocatorC2EmRKNS_3lib7ObLabelE:20436 + 3: 524 + 4: 524 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:11004 + 7: 524 + 2: _ZN9oceanbase6common4hash10SpinIniterC2ERVi:7400 + 2: 532 + 3.1: 0 + 0.1: _ZN9oceanbase6common4hash11ObHashTableIlNS1_11HashMapPairIlNS0_8ObStringEEENS1_9hash_funcIlEENS1_8equal_toIlEENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev:39368 + 0: 532 + 1: 532 + 0: _ZN9oceanbase6common8ObMallocC2Ev:20216 + 0: 532 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:16492 + 5: 532 + 7: 532 + 8: _ZN9oceanbase6common4hash9constructIPNS1_17ObHashTableBucketINS1_11HashMapPairIlNS0_8ObStringEEENS0_7ObLatchENS1_5NCondEEEEEvRT_:9576 + 2: _ZN9oceanbase6common4hash12do_constructIPNS1_17ObHashTableBucketINS1_11HashMapPairIlNS0_8ObStringEEENS0_7ObLatchENS1_5NCondEEEEEvRT_NS1_16NormalPointerTagE:9576 + 2: 532 + 0.2: _ZN9oceanbase6common8ObMallocC2Ev:3724 + 0: 532 + 4: _ZN9oceanbase6common8ObMalloc8set_attrERKNS_3lib9ObMemAttrE:20748 + 0: 532 + 0.28: _ZN9oceanbase6common9ObSEArrayINS_3sql7ObHintsELl8ENS0_19ModulePageAllocatorELb1EEC2Ev:76437 + 0.1: 513 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_3sql7ObHintsELl8ENS0_19ModulePageAllocatorELb1EEC2ElRKS4_:67203 + 2: 513 + 5: 513 + 6: 513 + 8: 513 + 17.1: 513 + 2: _ZN9oceanbase6common8ObIArrayINS_3sql7ObHintsEEC2EPS3_l:9234 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_3sql7ObHintsEEC2EPS3_l:9234 + 0: 513 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:20007 + 0: 513 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:12825 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:12825 + 2: 513 + 8: 513 + 31.15: _ZN9oceanbase5share6schema19ObReferenceObjTableD2Ev:0 + 0: 0 + 31.16: _ZN9oceanbase3sql16ObSqlSchemaGuardD2Ev:0 + 0: _ZN9oceanbase6common13ObSEArrayImplIPKNS_5share6schema13ObTableSchemaELl1ENS0_19ModulePageAllocatorELb0EED2Ev:0 + 1: 0 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplIPKNS_5share6schema13ObTableSchemaELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:0 + 9: 0 + 11: 0 + 13: 0 + 15: 0 + 24: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplIPKNS_5share6schema13ObTableSchemaELl1ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 31.17: _ZN9oceanbase6common4hash9ObHashMapImNS0_5ObObjENS1_19NoPthreadDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS3_EEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:0 + 2: _ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImNS0_5ObObjEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:0 + 2.1: 0 + 2.2: 0 + 3: 0 + 5.2: 0 + 2: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImNS0_5ObObjEEENS1_5NLockENS1_5NCondEEEEEbRKT_:0 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImNS0_5ObObjEEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:0 + 2: 0 + 2.2: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImNS0_5ObObjEEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEED2Ev:0 + 2: 0 + 2.1: 0 +_ZN9oceanbase12blocksstable17ObTmpFileIOHandle5resetEv:2097686:10654 + 1: 10285 + 2.1: 10285 + 2.3: 109 + 3: 109 + 3.1: 109 + 5.1: 10285 + 5.3: 109 + 6: 109 + 6.1: 109 + 8: 10285 + 9: 0 + 9.2: 0 + 11.1: 10536 + 11.3: 109 + 14: 10536 + 15: 0 + 21: 10480 + 23: 10480 + 27: 10480 + 28: 10480 + 29: 10480 _ZN9oceanbase6common8ObIOFlag5resetEv:10677 + 30: 10795 + 31: 10795 + 3: _ZN9oceanbase6common12ObIArrayWrapINS_12blocksstable17ObTmpFileIOHandle14ObIOReadHandleEE2atEl:436 + 6: 109 + 5.1: _ZNK9oceanbase6common12ObIArrayWrapINS_12blocksstable17ObTmpFileIOHandle18ObBlockCacheHandleEE5countEv:73521 + 0: 10285 + 6: _ZN9oceanbase6common12ObIArrayWrapINS_12blocksstable17ObTmpFileIOHandle18ObBlockCacheHandleEE2atEl:763 + 6: 109 + 9.1: _ZNK9oceanbase6common12ObIArrayWrapINS_12blocksstable17ObTmpFileIOHandle18ObBlockCacheHandleEE5countEv:0 + 0: 0 + 11.1: _ZNK9oceanbase6common12ObIArrayWrapINS_12blocksstable17ObTmpFileIOHandle17ObPageCacheHandleEE5countEv:75278 + 0: 10536 + 12: _ZN9oceanbase6common12ObIArrayWrapINS_12blocksstable17ObTmpFileIOHandle17ObPageCacheHandleEE2atEl:1526 + 6: 109 + 12.1: _ZN9oceanbase12blocksstable20ObTmpPageValueHandle5resetEv:3815 + 2: 109 + 3: 109 + 15: _ZN9oceanbase12blocksstable14ObTmpFileStore12get_instanceEv:10682 + 2: 0 + 2.1: 109 + 2.2: 109 + 2.3: 109 + 2.4: 109 + 2.6: 109 + 15.1: _ZNK9oceanbase6common12ObIArrayWrapINS_12blocksstable17ObTmpFileIOHandle17ObPageCacheHandleEE5countEv:0 + 0: 0 + 15.2: _ZN9oceanbase12blocksstable14ObTmpFileStore18dec_page_cache_numEml:2289 + 3: 0 + 4: 0 + 5.1: 109 + 7: 0 + 7: _ZN9oceanbase12blocksstable20ObTmpTenantFileStore18dec_page_cache_numEl:0 + 1: 0 + 17: _ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable17ObTmpFileIOHandle14ObIOReadHandleELl1ENS0_19ModulePageAllocatorELb0EE5resetEv:53230 + 0: 10646 _ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable17ObTmpFileIOHandle14ObIOReadHandleELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:10886 + 18: _ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable17ObTmpFileIOHandle17ObPageCacheHandleELl1ENS0_19ModulePageAllocatorELb0EE5resetEv:115092 + 0: 10456 _ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable17ObTmpFileIOHandle17ObPageCacheHandleELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:10846 + 19: _ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable17ObTmpFileIOHandle18ObBlockCacheHandleELl1ENS0_19ModulePageAllocatorELb0EE5resetEv:115317 + 0: 10473 _ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable17ObTmpFileIOHandle18ObBlockCacheHandleELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:10687 +_ZN9oceanbase12blocksstable18ObMicroBlockReader14get_row_headerElRPKNS0_11ObRowHeaderE:2096207:21137 + 3: 19941 + 4: 19941 + 5: 19941 + 6: 217 + 7.1: 217 + 8.1: 19941 + 8.2: 19941 + 8.3: 19941 + 9: 217 + 10.1: 217 + 11.1: 20049 _ZN9oceanbase12blocksstable11ObRowReader15read_row_headerEPKclRPKNS0_11ObRowHeaderE:20684 + 15.1: 217 + 17: 20049 +_ZN9oceanbase11transaction14ObTransService18get_read_store_ctxERKNS0_16ObTxReadSnapshotEblRNS_7storage10ObStoreCtxE:2083903:4605 + 4: 4571 + 5: 4571 + 7.1: 4571 + 7.2: 4571 + 8: 0 + 9.1: 0 + 10.2: 4571 + 11: 0 + 11.1: 41 + 14.1: 41 + 16.4: 4529 + 19: 41 + 20.1: 41 + 25: 4480 + 26: 4480 + 27: 4480 + 30.1: 4477 + 30.3: 4477 + 30.8: 574 + 30.9: 627 + 31: 4723 + 32: 550 + 32.1: 476 + 33.1: 75 + 34: 75 + 36.1: 41 + 39.1: 476 _ZN9oceanbase11transaction14ObPartTransCtx12check_statusEv:490 + 39.2: 590 + 40.1: 75 + 44: 75 + 44.1: 75 + 45: 75 + 46: 75 + 52: 4771 + 52.2: 3969 + 53: 4192 _ZN9oceanbase11transaction14ObTransService23check_replica_readable_ElbNS0_16ObTxReadSnapshot3SRCERKNS_5share6ObLSIDElRNS_7storage4ObLSE:4227 + 53.1: 3969 + 59.1: 75 + 64: 4512 + 64.1: 76 + 65: 4512 + 65.1: 4358 + 66.1: 76 + 70: 76 + 71: 76 + 72: 76 + 73: 76 + 78: 76 + 79: 4172 + 79.1: 4172 _ZN9oceanbase8memtable15ObMvccAccessCtx9init_readEPNS_11transaction14ObPartTransCtxEPNS0_13ObMemtableCtxERKNS_7storage14ObTxTableGuardERKNS2_12ObTxSnapshotEll:4159 + 80: 4358 + 81: 4358 + 84: 4172 + 87: 4430 _ZN9oceanbase11transaction14ObTransService19update_max_read_ts_EmRKNS_5share6ObLSIDEl:4375 + 90.1: 4223 _ZZN9oceanbase11transaction14ObTransService18get_read_store_ctxERKNS0_16ObTxReadSnapshotEblRNS_7storage10ObStoreCtxEENK5$_992clEPKc.93feb755617c21c32b229b78773c290c:4602 + 91: 4379 + 92.13: 4379 + 6: _ZN9oceanbase5share6ObLSIDC2ERKS1_:31997 + 0: 4571 + 7: _ZNK9oceanbase5share6ObLSID8is_validEv:18284 + 0: 4571 + 10.1: _ZNK9oceanbase11transaction16ObTxReadSnapshot10is_specialEv:18284 + 0: 4571 + 11: _ZN9oceanbase11transaction14ObTransService26validate_snapshot_version_EllRNS_7storage4ObLSE:16687 + 4: 0 + 5: 0 + 6: 0 + 6.1: 0 + 7: 0 + 8: 0 + 10: 0 + 11.7: 0 + 14: 41 + 14.1: 41 + 15: 41 + 16: 41 + 16.1: 41 + 17: 41 + 19: 41 + 22.1: 41 + 23.1: 41 + 24: 41 + 25.1: 41 + 26.1: 41 + 27: 41 + 28.1: 41 + 32.1: 41 + 34.1: 41 + 36: 41 + 5.1: _ZNK9oceanbase7storage14ObLSWRSHandler19get_ls_weak_read_tsEv:0 + 0: 0 + 6: _ZNK9oceanbase11transaction14ObTxVersionMgr17get_max_commit_tsEb:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 7.1: 0 + 5: _ZN9oceanbase6common3maxEll:0 + 2: 0 + 7: _ZNK9oceanbase11transaction14ObTxVersionMgr15get_max_read_tsEv:0 + 2: 0 + 3.1: 0 + 11: _ZN9oceanbase11transaction11MonotonicTs12current_timeEv:0 + 0: 0 + 11.3: _ZNK9oceanbase11transaction11MonotonicTsmiES1_:0 + 0: 0 + 12: _ZN9oceanbase11transaction11MonotonicTsC2El:0 + 0: 0 + 14.1: _ZN9oceanbase11transaction11MonotonicTsD2Ev:328 + 0: _ZN9oceanbase11transaction11MonotonicTs5resetEv:328 + 0: 41 + 14.2: _ZN9oceanbase11transaction11MonotonicTsD2Ev:533 + 0: _ZN9oceanbase11transaction11MonotonicTs5resetEv:533 + 0: 41 + 16: _ZN9oceanbase6common16ObClockGenerator8getClockEv:1763 + 4: 41 + 5.1: 41 + 8: 41 + 6: _ZN9oceanbase6common16ObClockGenerator6get_usEv:410 + 2: 41 + 16.3: _ZNK9oceanbase5share6ObLSIDneERKS1_:18116 + 0: 4529 + 30.1: _ZNK9oceanbase6common12ObIArrayWrapINS_11transaction6ObPairINS_5share6ObLSIDElEEE5countEv:26862 + 0: 4477 + 30.6: _ZNK9oceanbase6common12ObIArrayWrapINS_11transaction6ObPairINS_5share6ObLSIDElEEE2atEl:2296 + 30.7: _ZNK9oceanbase5share6ObLSIDeqERKS1_:4018 + 0: 574 + 32: _ZN9oceanbase11transaction14ObTransService11get_tx_ctx_ERKNS_5share6ObLSIDEPNS_7storage4ObLSERKNS0_9ObTransIDERPNS0_14ObPartTransCtxE:54248 + 5: 550 + 6: 550 + 9: 75 + 12.1: 452 _ZZN9oceanbase11transaction14ObTransService11get_tx_ctx_ERKNS_5share6ObLSIDEPNS_7storage4ObLSERKNS0_9ObTransIDERPNS0_14ObPartTransCtxEENK6$_1007clEPKc.93feb755617c21c32b229b78773c290c:450 + 13: 476 + 7: _ZNK9oceanbase7storage4ObLS10get_tx_ctxIJRKNS_11transaction9ObTransIDEbRPNS3_14ObPartTransCtxEEEEiDpOT_:11594 + 0: 550 + 0.3: 550 _ZNK9oceanbase7storage13ObLSTxService10get_tx_ctxERKNS_11transaction9ObTransIDEbRPNS2_14ObPartTransCtxE:563 + 63: _ZN9oceanbase7storage14ObTxTableGuardC2Ev:72192 + 0: 4512 + 65: _ZN9oceanbase11transaction14ObTransService19get_tx_table_guard_EPNS_7storage4ObLSERKNS_5share6ObLSIDERNS2_14ObTxTableGuardE:186827 + 4: 4512 + 5: 4512 + 6: 4358 + 7.1: 76 + 10: 76 + 11: 76 + 12.1: 41 + 13.1: 76 + 14.1: 41 + 16: 76 + 17: 76 + 20: 76 + 6: _ZN9oceanbase7storage4ObLS18get_tx_table_guardIJRNS0_14ObTxTableGuardEEEEiDpOT_:54328 + 0: 4512 + 0.1: 4512 _ZN9oceanbase7storage9ObTxTable18get_tx_table_guardERNS0_14ObTxTableGuardE:4612 + 13.1: _ZN9oceanbase11transaction12ObLSTxCtxMgr18get_tx_table_guardERNS_7storage14ObTxTableGuardE:1216 + 1: 76 + 92.13: _ZN9oceanbase7storage14ObTxTableGuardD2Ev:100717 + 0: _ZN9oceanbase7storage14ObTxTableGuard5resetEv:100717 + 2: 4379 + 3: 4379 + 4: 4379 + 92.15: _ZN9oceanbase7storage14ObTxTableGuardD2Ev:943 + 0: _ZN9oceanbase7storage14ObTxTableGuard5resetEv:943 + 2: 41 + 3: 41 + 4: 41 +_ZN9oceanbase7storage22ObMicroBlockDataHandleD2Ev:2069019:47089 + 1: 43990 + 2: 43990 _ZN9oceanbase7storage22ObMicroBlockDataHandle5resetEv:44763 + 3: 43511 _ZN9oceanbase12blocksstable18ObMacroBlockHandleD1Ev:45268 + 3.1: 1103 + 3.2: 1103 + 3.4: 1103 + 3.3: _ZN9oceanbase12blocksstable24ObMicroBlockBufferHandleD2Ev:579656 + 0: 47937 _ZN9oceanbase6common15ObKVCacheHandleD1Ev:50235 +_ZN9oceanbase7storage22ObMicroBlockDataHandleD1Ev:2069019:47089 + 1: 43990 + 2: 43990 _ZN9oceanbase7storage22ObMicroBlockDataHandle5resetEv:44763 + 3: 43511 _ZN9oceanbase12blocksstable18ObMacroBlockHandleD1Ev:45268 + 3.1: 1103 + 3.2: 1103 + 3.4: 1103 + 3.3: _ZN9oceanbase12blocksstable24ObMicroBlockBufferHandleD2Ev:579656 + 0: 47937 _ZN9oceanbase6common15ObKVCacheHandleD1Ev:50235 +_ZN9oceanbase3sql8ObDASRef15create_das_taskEPKNS0_14ObDASTabletLocENS0_11ObDASOpTypeERPNS0_12ObIDASTaskOpE:2065244:5752 + 3: 5409 + 4: 5409 + 8: 6229 + 8.1: 5409 _ZN9oceanbase3sql19ObDataAccessService15get_das_task_idERl:5540 + 9.1: 7 + 10.1: 6229 _ZN9oceanbase3sql16ObDASTaskFactory18create_das_task_opENS0_11ObDASOpTypeERPNS0_12ObIDASTaskOpE:6311 + 11.1: 7 + 12.1: 5438 + 13.1: 7 + 15: 5363 + 16: 5363 + 17: 5363 + 18: 5363 + 19: 5363 + 20: 5363 + 21: 5363 + 22: 5363 + 23: 5480 _ZN9oceanbase3sql11ObDASScanOp14init_task_infoEv:4474 _ZN9oceanbase3sql13ObDASUpdateOp14init_task_infoEv:354 _ZN9oceanbase3sql13ObDASInsertOp14init_task_infoEv:264 _ZN9oceanbase3sql13ObDASDeleteOp14init_task_infoEv:245 _ZN9oceanbase3sql11ObDASLockOp14init_task_infoEv:189 + 24.1: 7 + 27: 5480 + 6: _ZN9oceanbase3sql8ObDASRef12get_exec_ctxEv:37863 + 0: 5409 + 6.1: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:37863 + 2: 5409 + 8: _ZN9oceanbase5share11ObTenantEnv3mtlIPNS_3sql19ObDataAccessServiceEEET_v:195228 + 2: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:92457 + 2: 5409 + 2.1: 7 + 2.2: 7 + 2.1: _ZN9oceanbase5share12ObTenantBase3getIPNS_3sql19ObDataAccessServiceEEET_v:102771 + 0: _ZN9oceanbase5share12ObTenantBase9inner_getENS1_8IdentityIPNS_3sql19ObDataAccessServiceEEE:102771 + 0: 5409 + 12.1: _ZN9oceanbase3sql8ObDASRef16add_batched_taskEPNS0_12ObIDASTaskOpE:483996 + 0: _ZN9oceanbase6common10ObObjStoreIPNS_3sql12ObIDASTaskOpERNS0_12ObIAllocatorELb0EE9store_objERKS4_:483996 + 4: 5438 _ZN9oceanbase6common26ObWrapperAllocatorWithAttr5allocEl:5505 + 5: 5363 + 7.1: 7 + 9: _ZN9oceanbase6common9ObObjNodeIPNS_3sql12ObIDASTaskOpEEC2ERKS4_:134075 + 0: 5363 + 0: _ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql12ObIDASTaskOpEEEEC2Ev:37541 + 1: 5363 + 10: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql12ObIDASTaskOpEEEE8add_lastEPS6_:214520 + 12: 5363 + 13: 5363 + 12: _ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql12ObIDASTaskOpEEEE10add_beforeEPS6_:139438 + 2: 5363 + 2: _ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql12ObIDASTaskOpEEEE3addEPS6_S8_S8_:101897 + 2: 5363 + 3: 5363 + 4: 5363 + 5: 5363 + 15.1: _ZN9oceanbase3sql12ObIDASTaskOp14set_trans_descEPNS_11transaction8ObTxDescE:21452 + 0: 5363 + 16.2: _ZN9oceanbase3sql8ObDASCtx12get_snapshotEv:37541 + 0: 5363 + 16.3: _ZN9oceanbase3sql12ObIDASTaskOp12set_snapshotEPNS_11transaction16ObTxReadSnapshotE:21452 + 0: 5363 + 17: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:37541 + 0: 5363 + 17.1: _ZN9oceanbase3sql12ObIDASTaskOp13set_tenant_idEm:21452 + 0: 5363 + 18: _ZN9oceanbase3sql12ObIDASTaskOp11set_task_idEl:21452 + 0: 5363 + 19: _ZN9oceanbase3sql18ObBasicSessionInfo15get_is_in_retryEv:69719 + 1: 5363 + 20: _ZN9oceanbase3sql12ObIDASTaskOp13set_tablet_idERKNS_6common10ObTabletIDE:53630 + 0: _ZN9oceanbase6common10ObTabletIDaSERKS1_:53630 + 0: 5363 + 21: _ZN9oceanbase3sql12ObIDASTaskOp9set_ls_idERKNS_5share6ObLSIDE:58993 + 0: _ZN9oceanbase5share6ObLSIDaSERKS1_:58993 + 0: 5363 + 22: _ZN9oceanbase3sql12ObIDASTaskOp14set_tablet_locEPKNS0_14ObDASTabletLocE:37541 + 0: 5363 +_ZNK9oceanbase6common7ObSMRow13get_cells_cntEv:2057025:82956 + 1: 82281 + 2: 82281 + 2.3: 82281 +_ZN9oceanbase3sql18ObBasicSessionInfo17set_session_sleepEv:2039407:5158 + 1: 4944 + 2: 4944 + 4: 4899 + 5: 4899 + 6: 5437 + 6.1: 0 + 2: _ZN9oceanbase3lib11ObLockGuardINS_6common16ObRecursiveMutexEEC2ERS3_:675545 + 1: 4944 + 2: 4944 + 4: 4899 + 5.1: 0 + 4: _ZN9oceanbase6common16ObRecursiveMutex4lockEv:567272 + 2: 4944 + 3: 4944 + 4: 0 + 6: 5146 _ZN9oceanbase6common7ObLatch6wrlockEjlPKj:5205 + 7.1: 0 + 9: 4899 + 12: 4899 + 3: _ZNK9oceanbase6common7ObLatch14is_wrlocked_byEPKj:301584 + 3: 4944 + 4: 4944 + 2.1: _Z9ob_gettidv:262032 + 3: 4944 + 4: 0 + 2: _Z13get_tid_cachev:123600 + 7: 4944 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 + 3: _ZN9oceanbase3sql18ObBasicSessionInfo18set_session_state_ENS0_17ObSQLSessionStateE:372324 + 2: 4899 + 3: 4899 + 4: 0 + 5.1: 0 + 6.1: 4899 + 6.2: 0 + 10: 0 + 11.1: 0 + 13: 0 + 14.1: 0 + 20: 4899 + 21: 4899 + 21: _ZN9oceanbase6common16ObClockGenerator8getClockEv:102879 + 4: 4899 + 5.1: 0 + 8: 4899 + 6: _ZN9oceanbase6common16ObClockGenerator6get_usEv:0 + 2: 0 + 6: _ZN9oceanbase3lib11ObLockGuardINS_6common16ObRecursiveMutexEED2Ev:675948 + 2: 4899 + 3: 4899 + 3.1: 5437 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase6common16ObRecursiveMutex6unlockEv:569303 + 2: 4899 + 3: 4899 + 4: 0 + 5.1: 0 + 6.1: 4899 + 7: 5437 _ZN9oceanbase6common7ObLatch6unlockEPKj:5073 + 8.1: 0 + 11: 0 + 3: _ZNK9oceanbase6common7ObLatch14is_wrlocked_byEPKj:298839 + 3: 4899 + 4: 4899 + 2.1: _Z9ob_gettidv:259647 + 3: 4899 + 4: 0 + 2: _Z13get_tid_cachev:122475 + 7: 4899 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 +_ZN9oceanbase7obmysql19ObMySQLRequestUtils12flush_bufferERNS0_18ObFlushBufferParamE:2029920:5023 + 1: 4852 + 2: 4852 + 3: 4817 + 4.1: 79 + 5.1: 4817 + 9: 5179 + 10.1: 79 + 11.1: 5179 + 12: 79 + 18: 79 + 18.1: 5179 + 22: 79 + 31: 79 + 34: 79 + 35.1: 1 + 41.1: 1 + 41.2: 1 + 42: 1 + 42.1: 1 + 43: 1 + 44: 1 + 45.1: 1 + 46.1: 1 + 47.1: 1 + 55: 79 + 56: 79 + 62: 79 + 63: 79 + 64: 79 + 69: 79 + 78: 79 + 78.1: 79 + 82.1: 79 + 83: 79 + 84: 79 + 85: 79 + 87: 5179 + 3: _ZN9oceanbase7obmysql19ObMySQLRequestUtils17check_flush_paramERNS0_18ObFlushBufferParamE:627317 + 2: 4852 + 3: 4852 + 3.1: 4852 + 3.2: 4852 + 4: 4852 + 4.1: 4852 + 4.2: 4852 + 5: 79 + 6.1: 79 + 7: 79 + 8: 79 + 9.1: 4852 + 10: 79 + 11.1: 79 + 12.1: 4852 + 13: 4852 + 13.1: 5010 + 14: 4852 + 14.1: 5010 + 15: 0 + 16.1: 0 + 19: 1 + 20: 1 + 21.1: 1 + 24: 1 + 24.1: 1 + 24.2: 1 + 25: 1 + 26.1: 1 + 39: 1 + 39.1: 1 + 40: 1 + 40.1: 1 + 41: 1 + 42.1: 1 + 44.1: 1 + 46: 1 + 47.1: 1 + 55: 4817 + 7: _ZN9oceanbase7obmysql19ObMySQLRequestUtils19wakeup_easy_requestER14easy_request_tRb:2923 + 2: 79 + 3: 79 + 4: 79 + 5: 79 + 7: 79 + 9.1: _ZNK9oceanbase7obmysql12ObEasyBuffer8is_validEv:121300 + 0: 4852 + 0: _ZNK9oceanbase7obmysql12ObEasyBuffer13orig_buf_sizeEv:38816 + 0: 4852 + 0.1: _ZNK9oceanbase7obmysql12ObEasyBuffer14orig_data_sizeEv:33964 + 0: 4852 + 12.1: _ZNK9oceanbase7obmysql20ObCompressionContext12use_compressEv:9704 + 0: 4852 + 24.2: _ZNK9oceanbase7obmysql12ObEasyBuffer13is_read_availEv:5 + 0: 1 + 44.1: _ZNK9oceanbase7obmysql12ObEasyBuffer21proxy_read_avail_sizeEPKc:3 + 0: 1 + 5.1: _ZNK9oceanbase7obmysql20ObCompressionContext12use_compressEv:14451 + 0: 4817 + 8: _ZNK9oceanbase7obmysql12ObEasyBuffer13orig_buf_sizeEv:57804 + 0: 4817 + 9: _ZN9oceanbase7obmysql19ObMySQLRequestUtils21flush_buffer_internalEP10easy_buf_tRNS0_18ObFlushBufferParamEb:721414 + 3: 4817 + 4: 4817 + 6: 79 + 7.1: 79 + 8.1: 4817 + 9: 1 + 10.1: 1 + 11.1: 4817 + 11.2: 4817 + 11.3: 4817 + 12: 4817 + 12.1: 4817 + 13: 79 + 14.1: 79 + 15: 79 + 16: 79 + 19: 4817 + 19.1: 4817 + 20: 4817 + 22: 1 + 25: 4817 + 26: 4817 + 27: 4817 + 31: 1 + 34: 1 + 35: 1 + 36: 1 + 37: 1 + 41: 1 + 42: 1 + 43: 1 + 43.1: 1 + 46: 1 + 47: 1 + 48: 1 + 49.1: 1 + 51: 1 + 54: 5179 + 27: _ZN9oceanbase7obmysql19ObMySQLRequestUtils19wakeup_easy_requestER14easy_request_tRb:92483 + 2: 4817 + 3: 4817 + 4: 4817 + 5: 4817 _ZN9oceanbase7obmysql23request_finish_callbackEv:4880 + 7: 4900 easy_request_wakeup:4844 + 12: _ZN9oceanbase6common13init_easy_bufEP10easy_buf_tPcP14easy_request_tm:4977 + 2: 79 + 3: 79 + 4: 79 + 5: 79 + 6: 79 + 7: 79 + 7.1: 79 + 8: 79 + 10: 79 + 11.1: 79 + 18.1: _ZNK9oceanbase7obmysql20ObCompressionContext12use_compressEv:31074 + 0: 5179 + 22: _ZNK9oceanbase7obmysql20ObCompressionContext18need_hold_last_pktEb:1106 + 4: 79 + 23: _ZNK9oceanbase7obmysql12ObEasyBuffer21proxy_read_avail_sizeEPKc:869 + 0: 79 + 25: _ZN9oceanbase7obmysql12ObEasyBuffer5writeEl:711 + 0: 79 + 31: _ZNK9oceanbase7obmysql12ObEasyBuffer13is_read_availEv:1027 + 0: 79 + 43.1: _ZNK9oceanbase7obmysql12ObEasyBuffer13is_read_availEv:13 + 0: 1 + 56: _ZNK9oceanbase7obmysql12ObEasyBuffer4lastEv:632 + 0: 79 + 58: _ZN9oceanbase6common13init_easy_bufEP10easy_buf_tPcP14easy_request_tm:4977 + 2: 79 + 3: 79 + 4: 79 + 5: 79 + 6: 79 + 7: 79 + 7.1: 79 + 8: 79 + 10: 79 + 11.1: 79 + 59: _ZNK9oceanbase7obmysql12ObEasyBuffer13orig_buf_sizeEv:632 + 0: 79 + 64: _ZNK9oceanbase7obmysql12ObEasyBuffer4lastEv:632 + 0: 79 + 65: _ZN9oceanbase7obmysql12ObEasyBuffer5writeEl:632 + 0: 79 + 69: _ZNK9oceanbase7obmysql12ObEasyBuffer5beginEv:632 + 0: 79 + 83: _ZN9oceanbase7obmysql19ObMySQLRequestUtils10disconnectER14easy_request_t:1672 + 2: 79 + 3.1: 1 + 5: 79 + 84: _ZN9oceanbase7obmysql19ObMySQLRequestUtils19wakeup_easy_requestER14easy_request_tRb:738 + 2: 79 + 3: 1 + 4: 1 + 5: 1 + 7: 1 +_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandleC2Ev:2003391:3260 + 0.1: 9015 + 0.3: 3 + 0.4: 3 + 1: 2996 + 3: 2996 + 5: 2996 + 6: 2996 _ZN9oceanbase12blocksstable22ObIndexBlockRowScannerC1Ev:3011 + 8: 3013 + 8.3: 3 + 0.1: _ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher22ObIndexBlockReadHandleC2Ev:1538295 + 1: 9015 + 3: 9474 _ZN9oceanbase7storage22ObMicroBlockDataHandleC1Ev:3284 + 2: _ZN9oceanbase12blocksstable16ObMicroIndexInfoC2Ev:991422 + 2: 9015 + 7: 9015 _ZN9oceanbase12blocksstable12MacroBlockIdC1Ev:3109 + 0.4: _ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher22ObIndexBlockReadHandleD2Ev:45 + 0: 3 + 7: _ZN9oceanbase12blocksstable16ObMicroBlockDataC2Ev:79434 + 0: 2942 +_ZN9oceanbase7storage21ObMicroBlockHandleMgr22get_micro_block_handleEmNS_12blocksstable12MacroBlockIdERKNS2_21ObIndexBlockRowHeaderEbRNS0_22ObMicroBlockDataHandleE:2002134:5254 + 6: 4881 + 7: 4881 + 12: 4881 _ZN9oceanbase7storage22ObMicroBlockDataHandle5resetEv:5334 + 13: 5080 + 14: 5080 + 15: 59 + 16.1: 59 + 18: 5080 + 19: 0 + 20: 0 + 20.1: 0 + 21: 0 + 22: 0 + 22.1: 0 + 23: 0 + 23.1: 0 + 28: 0 + 29: 0 + 29.1: 59 + 31.1: 59 + 33: 59 + 37: 0 + 40: 5379 + 41.1: 5379 _ZNK9oceanbase12blocksstable21ObIndexBlockRowHeader19fill_micro_des_metaEbRNS0_19ObMicroBlockDesMetaE:5382 + 42.1: 59 + 44: 4650 + 48: 4699 + 57.1: 5089 _ZN9oceanbase12blocksstable12MacroBlockIdC1ERKS1_:5026 + 57.2: 4835 _ZN9oceanbase12blocksstable18ObIMicroBlockCache15get_cache_blockEmNS0_12MacroBlockIdEllRNS0_24ObMicroBlockBufferHandleE:4992 + 60.1: 59 + 62.1: 5089 + 63.1: 5089 + 64: 59 + 65: 59 + 67: 59 + 68: 59 + 68.1: 59 + 69.1: 59 + 71: 59 + 75: 5156 + 10: _ZNK9oceanbase12blocksstable21ObIndexBlockRowHeader16get_block_offsetEv:53691 + 0: 4881 + 11: _ZNK9oceanbase12blocksstable21ObIndexBlockRowHeader14get_block_sizeEv:19524 + 0: 4881 + 21.1: _ZNK9oceanbase12blocksstable12MacroBlockIdeqERKS1_:0 + 2: 0 + 2.1: 0 + 3: 0 + 3.1: 0 + 24: _ZN9oceanbase7storage22ObMicroBlockDataHandleaSERKS1_:10325 + 0: 59 + 0.2: 59 + 0: _ZN9oceanbase12blocksstable12MacroBlockIdaSERKS1_:1416 + 2: 59 + 3: 59 + 4: 59 + 0.1: _ZN9oceanbase12blocksstable24ObMicroBlockBufferHandleaSERKS1_:1593 + 0: 59 + 45: _ZN9oceanbase12blocksstable12MacroBlockIdaSERKS1_:158100 + 2: 4650 + 3: 4650 + 4: 4650 + 46: _ZN9oceanbase12blocksstable16ObMicroBlockInfo3setEiib:292076 + 2: 4650 + 3: 4650 + 4: 59 + 5.1: 59 + 8: 4650 + 9: 4650 + 10: 4650 + 3: _ZNK9oceanbase12blocksstable16ObMicroBlockInfo15is_offset_validEi:27900 + 2: 4650 + 65: _ZN9oceanbase7storage22ObMicroBlockDataHandleaSERKS1_:9794 + 0: 59 + 0.2: 59 + 0: _ZN9oceanbase12blocksstable12MacroBlockIdaSERKS1_:1416 + 2: 59 + 3: 59 + 4: 59 + 0.1: _ZN9oceanbase12blocksstable24ObMicroBlockBufferHandleaSERKS1_:1357 + 0: 59 +_ZN9oceanbase7storage17ObLSTabletService10table_scanERNS0_19ObTableScanIteratorERNS0_16ObTableScanParamERPNS_6common16ObNewRowIteratorE:1994018:3974 + 1: 3817 + 2: 3817 + 3: 3817 _ZN9oceanbase7storage14ObTabletHandleC1Ev:4278 + 5: 4201 + 6: 27 + 7.1: 27 + 8.4: 4201 + 9.1: 27 + 10.1: 4201 + 10.2: 4163 + 11.1: 27 + 12.2: 4425 + 13.1: 27 + 15: 4425 + 17: 4425 + 18.5: 4611 _ZN9oceanbase7storage14ObTabletHandleD1Ev:4515 + 18.6: 27 + 8.1: _ZN9oceanbase5share11ObTenantEnv3mtlIPNS0_6schema21ObTenantSchemaServiceEEET_v:136403 + 2: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:73388 + 2: 4201 + 2.1: 27 + 2.2: 27 + 2.1: _ZN9oceanbase5share12ObTenantBase3getIPNS0_6schema21ObTenantSchemaServiceEEET_v:63015 + 0: _ZN9oceanbase5share12ObTenantBase9inner_getENS1_8IdentityIPNS0_6schema21ObTenantSchemaServiceEEE:63015 + 0: 4201 + 8.2: _ZN9oceanbase5share6schema21ObTenantSchemaService18get_schema_serviceEv:12603 + 0: 4201 + 8.3: _ZN9oceanbase7storage17ObLSTabletService24prepare_scan_table_paramERNS0_16ObTableScanParamERNS_5share6schema27ObMultiVersionSchemaServiceE:154282 + 4: 4201 + 5: 4201 + 5.1: 4201 + 8: 27 + 9: 27 + 10: 27 + 10.2: 27 + 11: 27 + 12: 27 + 12.1: 27 + 13.1: 27 + 14.1: 27 + 14.2: 27 + 14.3: 27 + 15.1: 27 + 16.1: 27 + 16.2: 27 + 18.1: 27 + 19.1: 27 + 20: 27 + 21.1: 27 + 23: 27 + 23.1: 27 + 24: 27 + 25.1: 27 + 28: 27 + 29: 27 + 29.1: 27 + 30.1: 27 + 32: 27 + 36: 27 + 36.2: 27 + 37: 27 + 10.1: _ZNK9oceanbase5share12ObTenantBase2idEv:189 + 0: 27 + 10.1: _ZN9oceanbase7storage17ObLSTabletService20check_and_get_tabletERKNS_6common10ObTabletIDERNS0_14ObTabletHandleEl:344378 + 5: 4201 + 6: 4201 + 6.3: 4201 _ZN9oceanbase7storage14ObTabletMapKeyC1ERKNS_5share6ObLSIDERKNS_6common10ObTabletIDE:4311 + 8: 4676 _ZN9oceanbase7storage26ObTabletCreateDeleteHelper20check_and_get_tabletERKNS0_14ObTabletMapKeyERNS0_14ObTabletHandleEl:4705 + 8.1: 4834 + 9.1: 27 + 12: 27 + 13.3: 4834 _ZN9oceanbase7storage14ObTabletMapKeyD1Ev:4837 + 13.4: 27 + 6: _ZNK9oceanbase7storage4ObLS9get_ls_idEv:105025 + 0: _ZN9oceanbase5share6ObLSIDC2ERKS1_:105025 + 0: 4201 + 12.1: _ZN9oceanbase7storage17ObLSTabletService16inner_table_scanERNS0_14ObTabletHandleERNS0_19ObTableScanIteratorERNS0_16ObTableScanParamE:731284 + 7: 4163 + 9: 4163 + 10: 4163 + 14: 4163 + 14.1: 4291 _ZNK9oceanbase7storage16ObTableScanParam8is_validEv:4285 + 15: 27 + 16.1: 27 + 17.2: 19 + 18: 4291 + 18.1: 19 + 18.2: 19 + 19.1: 27 + 20.2: 19 + 21.1: 19 + 21.2: 19 + 24.1: 27 + 26.1: 4251 + 27: 27 + 28.1: 4413 + 28.2: 4251 _ZN9oceanbase7storage21ObTabletBindingHelper23check_snapshot_readableERNS0_14ObTabletHandleEl:4255 + 30.1: 27 + 32: 4413 + 33: 27 + 34.1: 27 + 36.1: 4425 _ZN9oceanbase7storage19ObTableScanIterator4initERNS0_16ObTableScanParamERKNS0_14ObTabletHandleE:4445 + 37.1: 27 + 41: 27 + 42.1: 27 + 46: 27 + 14: _ZNK9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE8is_validEv:91586 + 2: 4163 + 2.1: 4163 + 28.1: _ZNK9oceanbase8memtable15ObMvccAccessCtx20get_snapshot_versionEv:46761 + 1: 4251 +_ZN9oceanbase7storage18ObTableAccessParam4initERKNS0_16ObTableScanParamERKNS0_14ObTabletHandleE:1992284:4590 + 3: 4480 + 4: 4480 + 6: 4480 + 7: 0 + 8.1: 0 + 9.1: 4619 _ZNK9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE8is_validEv:4736 + 10: 0 + 11.1: 0 + 13: 4348 + 15: 4348 + 16: 4348 + 17: 4348 + 18: 4348 + 19: 4348 + 20: 4348 + 22: 4348 + 23: 4348 + 24: 4348 + 25: 4348 + 26: 4348 + 27: 4348 + 29: 4348 _ZN9oceanbase7storage14ObTabletHandleaSERKS1_:4499 + 30: 4572 _ZNK9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE7get_objEv:4712 + 31: 4500 + 32: 4500 + 34: 4500 + 35: 4500 + 37: 4500 + 41: 4500 + 44: 4605 + 46: 4605 + 46.2: 4626 + 48: 4626 + 49.1: 12 + 51: 4798 + 55: 4795 + 13: _ZNK9oceanbase5share6schema12ObTableParam12get_table_idEv:21740 + 0: 4348 + 14: _ZN9oceanbase6common10ObTabletIDaSERKS1_:34784 + 0: 4348 + 15: _ZNK9oceanbase5share6schema12ObTableParam13get_read_infoEv:34784 + 0: 4348 + 16: _ZNK9oceanbase5share6schema12ObTableParam20get_output_projectorEv:21740 + 0: 4348 + 17: _ZNK9oceanbase5share6schema12ObTableParam23get_aggregate_projectorEv:21740 + 0: 4348 + 19: _ZNK9oceanbase5share6schema12ObTableParam21get_pad_col_projectorEv:34784 + 0: 4348 + 27: _ZNK9oceanbase5share6schema12ObTableParam19get_output_sel_maskEv:21740 + 0: 4348 + 30.1: _ZNK9oceanbase7storage8ObTablet18get_full_read_infoEv:31500 + 0: 4500 + 32: _ZNK9oceanbase7storage15ObTableReadInfo23get_schema_column_countEv:18000 + 1: 4500 + 38: _ZN9oceanbase7storage16ObTableIterParam17disable_blockscanEv:0 + 1: 0 + 42: _ZN9oceanbase7storage16ObTableIterParam22set_use_iter_pool_flagEv:72 + 1: 12 + 44: _ZNK9oceanbase5share6schema12ObTableParam18has_virtual_columnEv:36840 + 0: 4605 + 46.1: _ZNK9oceanbase3sql18ObPushdownOperator13is_vectorizedEv:59877 + 0: 4605 + 48: _ZN9oceanbase7storage16ObTableIterParam21check_read_info_validEv:235926 + 2: 4626 + 4.1: 4626 + 5: 4626 + 6: 0 + 7.1: 0 + 8.1: 4626 + 9: 0 + 10.1: 0 + 14: 4626 + 5: _ZNK9oceanbase7storage15ObTableReadInfo14is_oracle_modeEv:37008 + 0: 4626 + 5.1: _ZNK9oceanbase7storage15ObTableReadInfo14is_oracle_modeEv:46260 + 0: 4626 + 8.1: _ZNK9oceanbase7storage15ObTableReadInfo23get_schema_rowkey_countEv:18504 + 1: 4626 +_ZN9oceanbase8observer16ObMPPacketSenderC2Ev:1966800:5212 + 1: 4917 + 2: 4917 + 6: 4917 + 7: 4917 + 8: 4917 + 9: 4917 + 10: 4917 + 11: 4917 + 12: 4917 + 13: 4917 + 0.1: _ZN9oceanbase6common9ObSEArrayINS_7obmysql10ObCommonKVINS0_5ObObjES4_EELl4ENS0_19ModulePageAllocatorELb0EEC2Ev:821139 + 0.1: 4917 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_7obmysql10ObCommonKVINS0_5ObObjES4_EELl4ENS0_19ModulePageAllocatorELb0EEC2ElRKS6_:732633 + 2: 4917 + 5: 4917 + 6: 4917 + 8: 4917 + 17.1: 4917 + 2: _ZN9oceanbase6common8ObIArrayINS_7obmysql10ObCommonKVINS0_5ObObjES4_EEEC2EPS5_l:88506 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_7obmysql10ObCommonKVINS0_5ObObjES4_EEEC2EPS5_l:88506 + 0: 4917 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:280269 + 0: 4917 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:122925 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:122925 + 2: 4917 + 8: 4917 + 0.2: _ZN9oceanbase6common9ObSEArrayIPNS_7obmysql12Obp20EncoderELl4ENS0_19ModulePageAllocatorELb0EEC2Ev:629376 + 0.1: 4917 + 0.5: _ZN9oceanbase6common13ObSEArrayImplIPNS_7obmysql12Obp20EncoderELl4ENS0_19ModulePageAllocatorELb0EEC2ElRKS5_:540870 + 2: 4917 + 5: 4917 + 6: 4917 + 8: 4917 + 17.1: 4917 + 2: _ZN9oceanbase6common8ObIArrayIPNS_7obmysql12Obp20EncoderEEC2EPS4_l:88506 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_7obmysql12Obp20EncoderEEC2EPS4_l:88506 + 0: 4917 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:157344 + 0: 4917 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:88506 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:88506 + 2: 4917 + 8: 4917 + 3: _ZN9oceanbase7obmysql20ObCompressionContextC2Ev:83589 + 0: _ZN9oceanbase7obmysql20ObCompressionContext5resetEv:83589 + 0: 4917 + 4: _ZN9oceanbase7obmysql16ObProto20ContextC2Ev:59004 + 1: 4917 +_ZN9oceanbase8observer16ObMPPacketSenderC1Ev:1966800:5212 + 1: 4917 + 2: 4917 + 6: 4917 + 7: 4917 + 8: 4917 + 9: 4917 + 10: 4917 + 11: 4917 + 12: 4917 + 13: 4917 + 0.1: _ZN9oceanbase6common9ObSEArrayINS_7obmysql10ObCommonKVINS0_5ObObjES4_EELl4ENS0_19ModulePageAllocatorELb0EEC2Ev:821139 + 0.1: 4917 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_7obmysql10ObCommonKVINS0_5ObObjES4_EELl4ENS0_19ModulePageAllocatorELb0EEC2ElRKS6_:732633 + 2: 4917 + 5: 4917 + 6: 4917 + 8: 4917 + 17.1: 4917 + 2: _ZN9oceanbase6common8ObIArrayINS_7obmysql10ObCommonKVINS0_5ObObjES4_EEEC2EPS5_l:88506 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_7obmysql10ObCommonKVINS0_5ObObjES4_EEEC2EPS5_l:88506 + 0: 4917 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:280269 + 0: 4917 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:122925 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:122925 + 2: 4917 + 8: 4917 + 0.2: _ZN9oceanbase6common9ObSEArrayIPNS_7obmysql12Obp20EncoderELl4ENS0_19ModulePageAllocatorELb0EEC2Ev:629376 + 0.1: 4917 + 0.5: _ZN9oceanbase6common13ObSEArrayImplIPNS_7obmysql12Obp20EncoderELl4ENS0_19ModulePageAllocatorELb0EEC2ElRKS5_:540870 + 2: 4917 + 5: 4917 + 6: 4917 + 8: 4917 + 17.1: 4917 + 2: _ZN9oceanbase6common8ObIArrayIPNS_7obmysql12Obp20EncoderEEC2EPS4_l:88506 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_7obmysql12Obp20EncoderEEC2EPS4_l:88506 + 0: 4917 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:157344 + 0: 4917 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:88506 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:88506 + 2: 4917 + 8: 4917 + 3: _ZN9oceanbase7obmysql20ObCompressionContextC2Ev:83589 + 0: _ZN9oceanbase7obmysql20ObCompressionContext5resetEv:83589 + 0: 4917 + 4: _ZN9oceanbase7obmysql16ObProto20ContextC2Ev:59004 + 1: 4917 +_ZN9oceanbase8observer9ObMPQueryD2Ev:1931557:5395 + 1: 5095 + 2: 5215 + 2.1: _ZN9oceanbase3sql8ObSqlCtxD2Ev:428505 + 0: 5095 _ZN9oceanbase3sql8ObSqlCtx5resetEv:5390 + 0.1: 5778 + 0.2: 0 + 0.3: 0 + 0.4: 5453 _ZN9oceanbase6common16ObFixedArrayImplIlNS0_12ObIAllocatorEED2Ev:5706 + 0.5: 5684 _ZN9oceanbase6common16ObFixedArrayImplIPNS0_9ObSEArrayIlLl4ENS0_19ModulePageAllocatorELb1EEENS0_12ObIAllocatorEED2Ev:5861 + 0.6: 5778 _ZN9oceanbase6common16ObFixedArrayImplIPNS0_9ObSEArrayIlLl4ENS0_19ModulePageAllocatorELb1EEENS0_12ObIAllocatorEED2Ev:5827 + 0.7: 5639 _ZN9oceanbase6common16ObFixedArrayImplINS_3sql18LocationConstraintENS0_12ObIAllocatorEED2Ev:5644 + 0.8: 5454 _ZN9oceanbase6common16ObFixedArrayImplINS0_8ObStringENS0_12ObIAllocatorEED2Ev:5501 + 0.9: 5046 _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql20ObTablePartitionInfoENS0_12ObIAllocatorEED2Ev:5105 + 0.11: 0 + 0.12: 0 + 0.13: 0 + 0.14: 0 + 0.15: 0 + 0.16: 0 + 0.1: _ZN9oceanbase3sql13ObSpmCacheCtxD2Ev:158978 + 0: 5482 + 0: _ZN9oceanbase3sql15ObCacheObjGuardD2Ev:60302 + 2: 5482 + 5: 0 + 5.1: 0 + 6: 0 + 5: _ZN9oceanbase3sql20ObCacheObjectFactory4freeINS0_17ObILibCacheObjectEEEvRPT_NS0_16CacheRefHandleIDE:0 + 2: 0 + 3: 0 + 2.2: _ZN9oceanbase8observer8ObMPBaseD2Ev:1221507 + 1: 4787 + 4.1: 4787 _ZNK9oceanbase3omt10ObThWorker10need_retryEv:4927 + 4.2: 5195 + 7: 0 + 7.2: 0 + 4: _ZN9oceanbase3lib6Worker4selfEv:134036 + 3: 4787 + 4: 0 + 5: _ZN9oceanbase8observer16ObMPPacketSender18finish_sql_requestEv:114290 + 2: 5195 + 2.1: 5195 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 3: _ZN9oceanbase3rpc20ObSqlRequestOperator18finish_sql_requestEPNS0_9ObRequestE:0 + 1: 0 + 1.1: 0 + 5: _ZN9oceanbase3rpc20ObSqlRequestOperator24free_sql_response_bufferEPNS0_9ObRequestEPv:0 + 1: 0 + 1.1: 0 + 7.1: _ZN9oceanbase8observer16ObMPPacketSenderD2Ev:804004 + 1: 5195 + 3: 5195 _ZN9oceanbase6common13ObSEArrayImplIPNS_7obmysql12Obp20EncoderELl4ENS0_19ModulePageAllocatorELb0EED2Ev:5262 + 3.1: 0 + 3.2: 0 + 3.3: 5084 _ZN9oceanbase6common13ObSEArrayImplINS_7obmysql10ObCommonKVINS0_5ObObjES4_EELl4ENS0_19ModulePageAllocatorELb0EED2Ev:5170 + 3.7: 0 + 2: _ZN9oceanbase8observer16ObMPPacketSender5resetEv:628595 + 2: 5195 + 3: 5195 + 4: 5195 + 10: 5195 + 11: 5195 + 15: 5195 + 16: 5195 + 17: 5195 + 18: 5195 + 19: 5195 + 5: _ZN9oceanbase3rpc20ObSqlRequestOperator7destroyEPNS0_9ObRequestE:0 + 1: 0 + 1.1: 0 + 12: _ZN9oceanbase7obmysql20ObCompressionContext5resetEv:166240 + 0: 5195 +_ZN9oceanbase8observer9ObMPQueryD1Ev:1931557:5395 + 1: 5095 + 2: 5215 + 2.1: _ZN9oceanbase3sql8ObSqlCtxD2Ev:428505 + 0: 5095 _ZN9oceanbase3sql8ObSqlCtx5resetEv:5390 + 0.1: 5778 + 0.2: 0 + 0.3: 0 + 0.4: 5453 _ZN9oceanbase6common16ObFixedArrayImplIlNS0_12ObIAllocatorEED2Ev:5706 + 0.5: 5684 _ZN9oceanbase6common16ObFixedArrayImplIPNS0_9ObSEArrayIlLl4ENS0_19ModulePageAllocatorELb1EEENS0_12ObIAllocatorEED2Ev:5861 + 0.6: 5778 _ZN9oceanbase6common16ObFixedArrayImplIPNS0_9ObSEArrayIlLl4ENS0_19ModulePageAllocatorELb1EEENS0_12ObIAllocatorEED2Ev:5827 + 0.7: 5639 _ZN9oceanbase6common16ObFixedArrayImplINS_3sql18LocationConstraintENS0_12ObIAllocatorEED2Ev:5644 + 0.8: 5454 _ZN9oceanbase6common16ObFixedArrayImplINS0_8ObStringENS0_12ObIAllocatorEED2Ev:5501 + 0.9: 5046 _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql20ObTablePartitionInfoENS0_12ObIAllocatorEED2Ev:5105 + 0.11: 0 + 0.12: 0 + 0.13: 0 + 0.14: 0 + 0.15: 0 + 0.16: 0 + 0.1: _ZN9oceanbase3sql13ObSpmCacheCtxD2Ev:158978 + 0: 5482 + 0: _ZN9oceanbase3sql15ObCacheObjGuardD2Ev:60302 + 2: 5482 + 5: 0 + 5.1: 0 + 6: 0 + 5: _ZN9oceanbase3sql20ObCacheObjectFactory4freeINS0_17ObILibCacheObjectEEEvRPT_NS0_16CacheRefHandleIDE:0 + 2: 0 + 3: 0 + 2.2: _ZN9oceanbase8observer8ObMPBaseD2Ev:1221507 + 1: 4787 + 4.1: 4787 _ZNK9oceanbase3omt10ObThWorker10need_retryEv:4927 + 4.2: 5195 + 7: 0 + 7.2: 0 + 4: _ZN9oceanbase3lib6Worker4selfEv:134036 + 3: 4787 + 4: 0 + 5: _ZN9oceanbase8observer16ObMPPacketSender18finish_sql_requestEv:114290 + 2: 5195 + 2.1: 5195 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 3: _ZN9oceanbase3rpc20ObSqlRequestOperator18finish_sql_requestEPNS0_9ObRequestE:0 + 1: 0 + 1.1: 0 + 5: _ZN9oceanbase3rpc20ObSqlRequestOperator24free_sql_response_bufferEPNS0_9ObRequestEPv:0 + 1: 0 + 1.1: 0 + 7.1: _ZN9oceanbase8observer16ObMPPacketSenderD2Ev:804004 + 1: 5195 + 3: 5195 _ZN9oceanbase6common13ObSEArrayImplIPNS_7obmysql12Obp20EncoderELl4ENS0_19ModulePageAllocatorELb0EED2Ev:5262 + 3.1: 0 + 3.2: 0 + 3.3: 5084 _ZN9oceanbase6common13ObSEArrayImplINS_7obmysql10ObCommonKVINS0_5ObObjES4_EELl4ENS0_19ModulePageAllocatorELb0EED2Ev:5170 + 3.7: 0 + 2: _ZN9oceanbase8observer16ObMPPacketSender5resetEv:628595 + 2: 5195 + 3: 5195 + 4: 5195 + 10: 5195 + 11: 5195 + 15: 5195 + 16: 5195 + 17: 5195 + 18: 5195 + 19: 5195 + 5: _ZN9oceanbase3rpc20ObSqlRequestOperator7destroyEPNS0_9ObRequestE:0 + 1: 0 + 1.1: 0 + 12: _ZN9oceanbase7obmysql20ObCompressionContext5resetEv:166240 + 0: 5195 +_ZN9__gnu_cxx5__ops14_Iter_comp_valIN9oceanbase12blocksstable15ObDatumComparorINS3_13ObDatumRowkeyEEEEclIPKS5_S9_EEbT_RT0_:1922332:18797 + 1: 19007 + 1: _ZN9oceanbase12blocksstable15ObDatumComparorINS0_13ObDatumRowkeyEEclERKS2_S5_:1603449 + 2: 17751 + 4: 17751 + 5: 17751 + 6.1: 17751 + 6.2: 0 + 7: 19048 _ZNK9oceanbase12blocksstable13ObDatumRowkey7compareERKS1_RKNS0_19ObStorageDatumUtilsERi:18109 + 8.1: 197 + 10: 19048 + 12.1: 197 + 13.1: 197 + 15: 197 + 63: 17751 +_ZN9oceanbase3lib17ObMallocAllocator7reallocEPKvlRKNS0_9ObMemAttrE:1896424:5338 + 2: 4780 + 10: 4780 + 13: 0 + 14: 0 + 15: 0 + 16: 0 + 18: 4780 + 20: 4780 + 21: 4780 + 22: 0 + 24: 4780 + 26.1: 4780 + 28.1: 5676 + 32: 5676 + 33: 5676 + 34: 5676 _ZN9oceanbase6common20get_mem_leak_checkerEv:5717 + 36: 5584 + 9: _ZN9oceanbase6common9EventItemC2Ev:100380 + 2: 4780 + 9.4: _ZN9oceanbase6common10EventTable8instanceEv:81260 + 2: 4780 + 2.1: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common10EventTableC2Ev:0 + 0: 0 + 2: 0 + 9.5: _ZN9oceanbase6common10EventTable9get_eventEl:138620 + 1.4: 4780 + 9.6: _ZNK9oceanbase6common9EventItem4callEv:162520 + 2: 4780 + 3: 4780 + 5.1: 0 + 7.1: 0 + 8: 0 + 9.1: 0 + 11: 0 + 12: 0 + 13.1: 0 + 18: 4780 + 13.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 15: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 16.1: _ZN9oceanbase6common16ObMemLeakChecker7on_freeERNS_3lib7AObjectE:0 + 2: 0 + 2.1: 0 + 3: 0 + 6: 0 + 8: 0 + 9: 0 + 9.1: 0 + 9.3: 0 + 9.4: 0 + 10.1: 0 + 2: _ZNK9oceanbase6common16ObMemLeakChecker14is_label_checkEv:0 + 0: 0 + 4: _ZN9oceanbase6common16ObMemLeakChecker11label_matchERNS_3lib7AObjectE:0 + 2: 0 + 8: _ZN9oceanbase6common4hash9ObHashMapINS0_16ObMemLeakChecker6PtrKeyENS3_4InfoENS1_24LatchReadWriteDefendModeENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS4_S5_EEEELi13ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE16erase_refactoredERKS4_PS5_:0 + 10: 0 + 26.1: _ZNK9oceanbase3lib17ObMallocAllocator24get_tenant_ctx_allocatorEmm:148180 + 3: 4780 + 4: 4780 + 7: 0 + 9: 0 + 10.1: 0 + 10.3: 0 + 10.4: 0 + 13.2: 0 + 8: _ZN9oceanbase5obsys12ObRLockGuardC2ERKNS0_8ObRWLockEb:0 + 0: _ZNK9oceanbase5obsys8ObRWLock5rlockEv:0 + 0: 0 + 0.1: _ZN9oceanbase5obsys15ObLockGuardBaseINS0_7ObRLockEEC2ERKS2_b:0 + 2.1: 0 + 2.3: 0 + 10.2: _ZN9oceanbase3lib20ObTenantCtxAllocator13get_tenant_idEv:0 + 2: 0 + 16.1: _ZN9oceanbase5obsys12ObRLockGuardD2Ev:0 + 0: _ZN9oceanbase5obsys15ObLockGuardBaseINS0_7ObRLockEED2Ev:0 + 2: 0 + 3: 0 + 3.1: 0 + 28.1: _ZN9oceanbase3lib20ObTenantCtxAllocator7reallocEPKvlRKNS0_9ObMemAttrE:253336 + 4.1: 4780 + 4.3: 0 + 5: 4780 + 6: 0 + 8: 0 + 12: 4780 + 13: 5676 + 14: 5676 + 15.1: 0 + 15.2: 0 + 15.4: 0 + 15.5: 0 + 16.1: 0 + 17.1: 0 + 23: 0 + 4.1: _ZNK9oceanbase3lib7ObLabel8is_validEv:23900 + 0: 4780 + 7: _ZNK9oceanbase3lib7AObject8is_validEv:0 + 2: 0 + 7.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 8: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 9: _ZNK9oceanbase3lib7AObject5blockEv:0 + 2: _ZN9oceanbase3lib6AChunk9ptr2chunkEPKv:0 + 2: 0 + 3: _ZNK9oceanbase3lib6AChunk8is_validEv:0 + 2: 0 + 3.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 4: _ZNK9oceanbase3lib6AChunk7ptr2blkEPKv:0 + 2: 0 + 4: 0 + 3: _ZNK9oceanbase3lib6AChunk17max_blk_offset_leEi:0 + 2: _ZNK9oceanbase3lib13ASimpleBitSetILi256EE10max_bit_leEi:0 + 2: 0 + 3: 0 + 7: 0 + 9: 0 + 11.1: 0 + 12: 0 + 8: _ZN9oceanbase3lib13ASimpleBitSetILi256EE10max_bit_leEmi:0 + 2: 0 + 3: 0 + 4: 0 + 9.1: _ZNK9oceanbase3lib6ABlock8is_validEv:0 + 2: 0 + 9.2: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 10: _ZNK9oceanbase3lib7AObject5blockEv:0 + 3: _ZNK9oceanbase3lib6AChunk8is_validEv:0 + 2: 0 + 3.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 4: _ZNK9oceanbase3lib6AChunk7ptr2blkEPKv:0 + 4: 0 + 3: _ZNK9oceanbase3lib6AChunk17max_blk_offset_leEi:0 + 2: _ZNK9oceanbase3lib13ASimpleBitSetILi256EE10max_bit_leEi:0 + 9: 0 + 11.1: 0 + 12: 0 + 8: _ZN9oceanbase3lib13ASimpleBitSetILi256EE10max_bit_leEmi:0 + 2: 0 + 3: 0 + 4: 0 + 10.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 12: _ZN9oceanbase3lib9ObjectMgr14realloc_objectEPNS0_7AObjectEmRKNS0_9ObMemAttrE:21808 + 6: 0 + 7: 0 + 12: 0 + 13: 0 + 15: 0 + 16: 0 + 19: 0 + 23: 5676 _ZN9oceanbase3lib9ObjectMgr12alloc_objectEmRKNS0_9ObMemAttrE:5077 + 6.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 9: _ZNK9oceanbase3lib7AObject5blockEv:0 + 3: _ZNK9oceanbase3lib6AChunk8is_validEv:0 + 2: 0 + 3.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 4: _ZNK9oceanbase3lib6AChunk7ptr2blkEPKv:0 + 4: 0 + 3: _ZNK9oceanbase3lib6AChunk17max_blk_offset_leEi:0 + 2: _ZNK9oceanbase3lib13ASimpleBitSetILi256EE10max_bit_leEi:0 + 9: 0 + 11.1: 0 + 12: 0 + 8: _ZN9oceanbase3lib13ASimpleBitSetILi256EE10max_bit_leEmi:0 + 2: 0 + 3: 0 + 4: 0 + 11: _ZNK9oceanbase3lib6ABlock8is_validEv:0 + 2: 0 + 11.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 12: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 13: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 16: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 18: _ZN9oceanbase3lib9ObjectSet4lockEv:0 + 2: 0 + 20: _ZN9oceanbase3lib9ObjectSet6unlockEv:0 + 2: 0 + 15.1: _ZN9oceanbase6common14ObTscTimestamp12get_instanceEv:0 + 2: 0 + 2.1: 0 + 2.3: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common14ObTscTimestampC2Ev:0 + 1: 0 + 32.1: _ZL12abort_unlessb:34056 + 5: 5676 + 6: 0 + 34.1: _ZN9oceanbase6common16ObMemLeakChecker8on_allocERNS_3lib7AObjectERKNS2_9ObMemAttrE:56280 + 2: 5628 + 3: 5628 + 3.1: 0 + 4: 0 + 5: 0 + 7: 0 + 9: 0 + 10: 0 + 12: 0 + 15: 0 + 16.1: 0 + 19: 0 + 3: _ZNK9oceanbase6common16ObMemLeakChecker14is_label_checkEv:22512 + 0: 5628 + 4: _ZN9oceanbase6common16ObMemLeakChecker11label_matchERNS_3lib7AObjectE:0 + 2: 0 + 6: _ZN9oceanbase3lib19ObSimpleRateLimiter11try_acquireEl:0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 12: 0 + 13: 0 + 14: 0 + 5: _ZN9oceanbase3lib19ObSimpleRateLimiter12current_timeEv:0 + 4: 0 + 10: _ZSt3minIlERKT_S2_S2_:0 + 5: 0 + 8: _ZN9oceanbase6common16ObMemLeakChecker4InfoC2Ev:0 + 2: 0 + 15: _ZN9oceanbase6common4hash9ObHashMapINS0_16ObMemLeakChecker6PtrKeyENS3_4InfoENS1_24LatchReadWriteDefendModeENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS4_S5_EEEELi13ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE14set_refactoredERKS4_RKS5_iii:0 + 8: 0 + 5: _ZN9oceanbase6common4hash11HashMapPairINS0_16ObMemLeakChecker6PtrKeyENS3_4InfoEE4initERKS4_RKS5_:0 + 3: _ZN9oceanbase6common11copy_assignINS0_16ObMemLeakChecker6PtrKeyEEEiRT_RKS4_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapINS0_16ObMemLeakChecker6PtrKeyEEEiRT_RKS4_NS0_8BoolTypeILb0EEE:0 + 2: 0 + 5.1: _ZN9oceanbase6common11copy_assignINS0_16ObMemLeakChecker4InfoEEEiRT_RKS4_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapINS0_16ObMemLeakChecker4InfoEEEiRT_RKS4_NS0_8BoolTypeILb0EEE:0 + 2: 0 +_ZN9oceanbase6common12ObBucketLock6wrlockEm:1890070:5349 + 1: 4818 + 2: 4818 + 3: 4818 + 4: 0 + 5.1: 0 + 6.1: 4818 + 7: 0 + 8.1: 0 + 9.1: 5590 + 10.1: 0 + 12: 5590 + 9.1: _ZNK9oceanbase6common12ObBucketLock19bucket_to_latch_idxEm:19272 + 2: 4818 + 9.2: _ZN9oceanbase6common7ObLatch6wrlockEjlPKj:1364294 + 5: 4818 + 9: 5590 + 17.1: 0 + 21: 0 + 6.1: _Z9ob_gettidv:255354 + 3: 4818 + 4: 0 + 2: _Z13get_tid_cachev:120450 + 7: 4818 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 + 7: _ZN9oceanbase6common7ObLatch12LowTryWRLockC2Eb:19272 + 0: 4818 + 8: _ZN9oceanbase6common7ObLatch12LowTryWRLockC2Eb:52998 + 0: 4818 + 9: _ZN9oceanbase6common7ObLatch8low_lockINS1_12LowTryWRLockEEEijljjRT_S5_:924684 + 8: 4818 + 16: 4818 + 17: 4818 + 22: 0 + 23.1: 0 + 25.1: 0 + 27.1: 0 + 27.2: 4818 + 27.3: 4818 + 28: 4818 + 29: 4818 + 33: 0 + 35: 0 + 37: 4818 + 41.1: 4818 + 43: 4818 + 45: 0 + 47: 0 + 48: 0 + 53: 0 + 54: 0 + 57: 0 + 60: 0 + 60.1: 0 + 60.2: 0 + 68.1: 0 + 73.3: 0 + 73.4: 0 + 76.1: 5590 _ZN9oceanbase6common20ObDiagnoseTenantInfo23get_local_diagnose_infoEv:4942 + 76.2: 0 + 76.3: 0 + 76.4: 0 + 76.6: 0 + 76.14: 0 + 78: 5590 + 29: _ZN9oceanbase6common7ObLatch12LowTryWRLockclEPVjjjRb:163812 + 6: 4818 + 6.1: 0 + 8: 4818 + 59: _ZN9oceanbase6common10ObWaitProcC2ERNS0_7ObLatchEj:0 + 1: 0 + 2: 0 + 3: 0 + 4: 0 + 0: _ZN9oceanbase6common11ObDLinkBaseINS0_10ObWaitProcEEC2Ev:0 + 1: 0 +easy_connection_on_wakeup:1873355:671 + 1: 650 + 9: 650 + 12: 650 + 13: 675 + 14: 730 + 15: 658 + 16: 658 + 19: 658 + 19.1: 658 + 20: 0 + 21: 0 + 22: 0 + 24: 0 + 25: 0 + 28: 0 + 33: 726 + 12: easy_spin_lock:530765 + 5: 621 + 5.1: 608 + 11.1: 7360 + 13: 7360 + 21: 120 + 21.1: 60 + 26: 0 + 5.1: easy_atomic_cmp_set:4864 + 2: 608 + 21.1: easy_atomic_cmp_set:720 + 2: 60 + 13: easy_list_movelist:12977 + 2: 675 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7.1: 0 + 9.1: 694 + 2: easy_list_empty:6750 + 2: 675 + 14: easy_list_movelist:13926 + 2: 730 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7.1: 0 + 9.1: 737 + 2: easy_list_empty:7300 + 2: 730 + 15: easy_list_movelist:42067 + 2: 658 + 3: 657 + 4: 657 + 5: 657 + 6: 657 + 7.1: 657 + 9.1: 1 + 2: easy_list_empty:6580 + 2: 658 + 28: easy_list_join:0 + 2: 0 + 4: 0 + 5: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 2: easy_list_empty:0 + 2: 0 + 30: easy_connection_send_session_list:59878 + 6: 658 + 7: 658 + 9: 658 + 15: 658 + 15.1: 658 + 19: 0 + 21: 0 + 24: 0 + 25: 0 + 26: 0 + 31: 0 + 34: 0 + 41: 0 + 42: 0 + 43.2: 0 + 43.3: 0 + 43.4: 0 + 43.7: 0 + 46: 0 + 46.1: 0 + 47.1: 0 + 47.2: 0 + 47.3: 0 + 47.4: 0 + 47.7: 0 + 49: 0 + 50.1: 0 + 50.2: 0 + 50.3: 0 + 50.4: 0 + 50.7: 0 + 53: 0 + 54: 0 + 59: 0 + 61.1: 0 + 61.2: 0 + 61.3: 0 + 61.4: 0 + 67: 0 + 68: 0 + 73: 0 + 74: 0 + 75: 0 + 78: 0 + 82: 658 + 82.1: 658 + 83: 0 + 87: 658 + 87.1: 658 + 17: easy_list_del:0 + 2: 0 + 3.1: 0 + 2: __easy_list_del:0 + 2: 0 + 3: 0 + 25: easy_list_add_tail:0 + 2: 0 + 2: __easy_list_add:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 26: easy_list_empty:0 + 2: 0 + 27: easy_list_add_tail:0 + 2: 0 + 2: __easy_list_add:0 + 3: 0 + 4: 0 + 5: 0 + 75: easy_list_empty:0 + 2: 0 + 76: easy_list_add_tail:0 + 2: 0 + 2: __easy_list_add:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 78: easy_list_add_tail:0 + 2: 0 + 2: __easy_list_add:0 + 3: 0 + 4: 0 + 5: 0 + 88: easy_list_del:0 + 2: 0 + 3.1: 0 + 2: __easy_list_del:0 + 2: 0 + 3: 0 + 89: easy_connection_sendsocket:0 + 3: 0 + 3.1: 0 + 8: 0 + 9: 0 + 31: easy_connection_send_response:1109259 + 6: 658 + 7: 658 + 9: 658 + 15: 658 + 15.1: 4697 + 18: 4997 + 19: 4997 + 21: 4997 + 22.2: 2 + 22.3: 2 + 22.4: 2 + 22.7: 2 + 26: 4999 + 27: 2 + 28: 0 + 29: 0 + 30.1: 0 + 30.2: 0 + 30.3: 0 + 30.4: 0 + 30.7: 0 + 39.1: 0 + 39.2: 0 + 39.3: 0 + 39.4: 0 + 39.7: 0 + 39.8: 0 + 47: 0 + 48: 0 + 49: 0 + 50: 0 + 51: 0 + 52.1: 0 + 52.2: 0 + 52.3: 0 + 52.4: 0 + 52.7: 0 + 56: 0 + 61.1: 2 + 61.2: 2 + 61.3: 2 + 61.4: 2 + 61.7: 2 + 76: 4557 + 78: 4557 + 79: 4557 + 80: 2 + 81.1: 4577 easy_connection_request_done:5092 + 82: 4318 + 87: 0 + 92: 4318 + 95.1: 4318 + 95.2: 4318 + 96: 4318 easy_message_destroy:4791 + 101: 658 + 101.1: 349 + 103: 0 + 107: 347 + 107.1: 2761 + 109: 3082 easy_connection_write_socket:2177 + 110: 0 + 111.1: 3082 + 17: easy_list_del:104937 + 2: 4997 + 3.1: 4997 + 2: __easy_list_del:34979 + 2: 4997 + 3: 4997 + 41: easy_connection_forward_request_to_rlmtr:0 + 3: 0 + 8: 0 + 9: 0 + 10: 0 + 12: 0 + 13.1: 0 + 13.2: 0 + 13.3: 0 + 13.4: 0 + 14: 0 + 20: 0 + 21: 0 + 22.1: 0 + 22.2: 0 + 22.3: 0 + 22.4: 0 + 23: 0 + 21: easy_list_empty:0 + 2: 0 + 23: easy_list_add_tail:0 + 2: 0 + 2: __easy_list_add:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 48: easy_spin_lock:0 + 5: 0 + 5.1: 0 + 11.1: 0 + 13: 0 + 21: 0 + 21.1: 0 + 26: 0 + 5.1: easy_atomic_cmp_set:0 + 2: 0 + 21.1: easy_atomic_cmp_set:0 + 2: 0 + 50: easy_list_add_tail:0 + 2: 0 + 2: __easy_list_add:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 76: easy_atomic_dec:27342 + 2: 4557 + 82: easy_list_empty:17272 + 2: 4318 + 83: easy_list_add_tail:112268 + 2: 4318 + 2: __easy_list_add:90678 + 3: 4318 + 4: 4318 + 5: 4318 + 6: 4318 + 87: easy_list_del:0 + 2: 0 + 2: __easy_list_del:0 + 2: 0 + 3: 0 + 88: easy_list_add_tail:0 + 2: 0 + 2: __easy_list_add:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 102: easy_list_del:0 + 2: 0 + 3.1: 0 + 2: __easy_list_del:0 + 2: 0 + 3: 0 + 108: easy_list_del:41238 + 2: 2291 + 3.1: 2291 + 2: __easy_list_del:16037 + 2: 2291 + 3: 2291 + 112: easy_connection_redispatch_thread:0 + 5.1: 0 + 5.2: 0 + 10: 0 + 11: 0 + 5.1: easy_list_empty:0 + 2: 0 + 5.2: easy_list_empty:0 + 2: 0 + 10: easy_thread_pool_hash:0 + 2: 0 + 3: 0 + 32: easy_connection_send_rlmtr:24684 + 3: 726 + 8: 726 + 10: 726 + 13.1: 0 + 13.2: 0 + 13.3: 0 + 13.4: 0 + 16: 0 + 16.1: 0 + 17: 0 + 17.3: 0 + 18.2: 0 + 18.3: 0 + 18.4: 0 + 22: 0 + 23: 0 + 27.1: 0 + 27.2: 0 + 27.3: 0 + 27.4: 0 + 29: 0 + 30: 0 + 34.1: 0 + 34.2: 0 + 34.3: 0 + 34.4: 0 + 36: 0 + 37: 0 + 38: 0 + 41: 0 + 45.1: 0 + 45.2: 0 + 45.3: 0 + 45.4: 0 + 47: 0 + 48: 0 + 52.1: 0 + 52.2: 0 + 52.3: 0 + 52.4: 0 + 54: 0 + 55: 0 + 56: 0 + 59: 0 + 63.1: 0 + 63.2: 0 + 63.3: 0 + 63.4: 0 + 68: 0 + 69: 0 + 72.1: 0 + 72.2: 0 + 72.3: 0 + 72.4: 0 + 17: current_time:0 + 3: 0 + 4.2: 0 + 4.3: 0 + 4.4: 0 + 6: 0 + 17.1: easy_atomic_cmp_set:0 + 2: 0 + 65: easy_list_del:0 + 2: 0 + 3.1: 0 + 2: __easy_list_del:0 + 2: 0 + 3: 0 +_ZN9oceanbase7storage13ObSingleMerge22get_and_fuse_cache_rowEllRNS_12blocksstable10ObDatumRowERbS5_S5_:1871610:3760 + 6: 3539 + 7: 3539 + 10: 3539 + 11: 0 + 12.1: 0 + 13.1: 3539 _ZN9oceanbase7storage21ObFuseRowCacheFetcher18get_fuse_row_cacheERKNS_12blocksstable13ObDatumRowkeyERNS2_20ObFuseRowValueHandleE:3592 + 15.1: 0 + 17: 79 + 18: 79 + 22.1: 3204 + 29.1: 3399 + 29.2: 6517 + 29.3: 6517 + 29.5: 3399 + 30: 6517 + 31: 0 + 32.1: 0 + 33.1: 6735 _ZNK9oceanbase7storage8ObITable11is_memtableEv:6686 + 35: 3399 + 35.1: 3308 _ZNK9oceanbase12blocksstable9ObSSTable23get_upper_trans_versionEv:3417 + 36: 0 + 37: 0 + 41: 3529 + 45.1: 3660 + 46: 160 + 47: 0 + 48.1: 0 + 49.1: 168 _ZNK9oceanbase7storage8ObITable11is_memtableEv:165 + 50.1: 86 _ZN9oceanbase7storage13ObSingleMerge13get_table_rowElRKNS_6common8ObIArrayIPNS0_8ObITableEEERNS_12blocksstable10ObDatumRowERbSC_:86 + 51.1: 0 + 54: 3684 + 54.1: 3576 + 55: 3576 _ZN9oceanbase12blocksstable10ObDatumRowC1Ev:3669 + 56: 3212 + 56.1: 3212 + 57.1: 3212 + 59: 3214 + 61.1: 3214 + 62: 3214 _ZN9oceanbase7storage9ObRowFuse8fuse_rowERKNS_12blocksstable10ObDatumRowERS3_RNS0_8ObNopPosERbPNS_6common12ObIAllocatorE:3342 + 62.1: 3280 + 63.1: 0 + 65.1: 3280 _ZZN9oceanbase7storage13ObSingleMerge22get_and_fuse_cache_rowEllRNS_12blocksstable10ObDatumRowERbS5_S5_ENK5$_444clEPKc.60e5f1555e1608e51e89c573dc1497ed:3376 + 68: 3271 _ZN9oceanbase12blocksstable10ObDatumRowD1Ev:3379 + 68.1: 0 + 70: 3448 + 9: _ZNK9oceanbase6common12ObIArrayWrapIPNS_7storage8ObITableEE5countEv:38929 + 0: 3539 + 22.1: _ZNK9oceanbase12blocksstable19ObFuseRowCacheValue25get_read_snapshot_versionEv:12816 + 0: 3204 + 25: _ZN9oceanbase12blocksstable20ObFuseRowValueHandle5resetEv:0 + 2: 0 + 3: 0 + 30: _ZN9oceanbase6common12ObIArrayWrapIPNS_7storage8ObITableEE2atEl:45619 + 6: 6517 + 35: _ZNK9oceanbase12blocksstable19ObFuseRowCacheValue25get_read_snapshot_versionEv:13232 + 0: 3308 + 42: _ZN9oceanbase12blocksstable20ObFuseRowValueHandle5resetEv:0 + 2: 0 + 3: 0 + 46: _ZN9oceanbase6common12ObIArrayWrapIPNS_7storage8ObITableEE2atEl:1120 + 6: 160 + 54.1: _ZNK9oceanbase12blocksstable20ObFuseRowValueHandle8is_validEv:133932 + 0: 3684 + 0.1: 0 + 0.1: _ZNK9oceanbase12blocksstable19ObFuseRowCacheValue8is_validEv:46800 + 0: 3600 + 0.2: _ZNK9oceanbase6common15ObKVCacheHandle8is_validEv:28608 + 0: 3576 + 56: _ZNK9oceanbase12blocksstable19ObFuseRowCacheValue14get_column_cntEv:12848 + 0: 3212 + 57: _ZNK9oceanbase12blocksstable19ObFuseRowCacheValue10get_datumsEv:12848 + 0: 3212 + 58: _ZNK9oceanbase12blocksstable19ObFuseRowCacheValue8get_flagEv:9636 + 0: 3212 + 58.1: _ZN9oceanbase12blocksstable12ObDmlRowFlagaSERKS1_:93160 + 3: 3214 + 2: _ZNK9oceanbase12blocksstable12ObDmlRowFlag8is_validEv:73876 + 2: 3212 + 61: _ZNK9oceanbase12blocksstable12ObDmlRowFlag8is_existEv:57852 + 2: _ZNK9oceanbase12blocksstable12ObDmlRowFlag8is_validEv:57852 + 2: 3214 +_ZN9oceanbase8memtable10ObMemtable26get_multi_source_data_unitEPNS0_22ObIMultiSourceDataUnitEPNS_6common12ObIAllocatorE:1863553:11765 + 3: 11715 + 4: 11715 + 5: 11715 _ZN9oceanbase6common12TCRLockGuardC2ERKNS0_8TCRWLockE:12415 + 7: 11400 + 8: 50 + 9.1: 50 + 10.1: 11400 + 13.1: 11400 _ZN9oceanbase8memtable17ObMultiSourceData26get_multi_source_data_unitEPNS0_22ObIMultiSourceDataUnitEPNS_6common12ObIAllocatorE:11968 + 13.2: 13328 + 15.1: 50 + 21: 12052 + 22.4: 12288 + 22.4: _ZN9oceanbase6common12TCRLockGuardD2Ev:726872 + 2: 12052 + 3: 12052 + 3.1: 12288 + 3.2: 50 + 3: _ZN9oceanbase6common8TCRWLock8rdunlockEl:471728 + 3: 12052 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:48208 + 0: 12052 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPil:265444 + 2: 12052 + 2.1: 12052 + 3: _ZN9oceanbase6common5TCRef5xref_EPii:300 + 0: 50 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:73712 + 2: 12052 + 2.1: 50 + 3: 50 + 22.5: _ZN9oceanbase6common12TCRLockGuardD2Ev:5450 + 2: 50 + 3: 50 + 3.1: 50 + 3.2: 50 + 3: _ZN9oceanbase6common8TCRWLock8rdunlockEl:3600 + 3: 50 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:200 + 0: 50 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPil:1350 + 2: 50 + 2.1: 50 + 3: _ZN9oceanbase6common5TCRef5xref_EPii:200 + 0: 50 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:1700 + 2: 50 + 2.1: 50 + 3: 50 +_ZN9oceanbase7storage20ObTableAccessContext4initERNS0_16ObTableScanParamERNS0_10ObStoreCtxERKNS_6common14ObVersionRangeE:1856870:4779 + 3: 4271 + 4: 4271 + 5: 4271 + 6: 0 + 7.1: 0 + 8: 0 + 8.1: 4271 + 9: 4271 + 11: 0 + 18: 0 + 18.1: 0 + 18.5: 0 + 18.6: 0 + 18.8: 0 + 19.1: 0 + 22: 0 + 23: 0 + 27: 4271 + 30: 4271 + 31: 4271 + 32: 4271 + 33: 4271 + 34: 4271 + 35: 4271 + 35.3: 4271 + 39: 4271 + 40: 4271 + 41: 4271 + 42: 4271 + 43: 4271 + 44: 4292 + 45.1: 0 + 47.1: 4292 + 47.2: 0 + 47.3: 0 + 48: 0 + 48.1: 0 + 49.1: 0 + 51: 4538 + 54: 4538 + 8.1: _ZNK9oceanbase6common10SampleInfo15is_block_sampleEv:29897 + 0: 4271 + 11: _ZN9oceanbase3libeqERKNS0_13MemoryContextEDn:0 + 1: 0 + 12: _ZN9oceanbase3lib12ContextParamC2Ev:0 + 3: 0 + 5: 0 + 13: _ZN9oceanbase3lib12ContextParam12set_mem_attrIJRmRA14_KcNS_6common8ObCtxIds11ObCtxIdEnumEEEERS1_DpOT_:0 + 2: 0 + 16: _ZN9oceanbase3lib12ContextParam14set_propertiesEl:0 + 2: 0 + 17: _ZN9oceanbase3lib12ContextParam15set_ablock_sizeEj:0 + 2: 0 + 18: _ZN9oceanbase3lib4Flow11current_ctxEv:0 + 2: 0 + 18.7: _ZNK9oceanbase3lib13MemoryContextptEv:0 + 1: 0 + 28: _ZN9oceanbase5share6ObLSIDaSERKS1_:34168 + 0: 4271 + 29: _ZN9oceanbase6common10ObTabletIDaSERKS1_:34168 + 0: 4271 + 35: _ZNK9oceanbase6common12ObLimitParam8is_validEv:34168 + 0: 4271 + 36: _ZN9oceanbase6common20ObTableScanStatistic5resetEv:192195 + 3: 4271 + 37: _ZN9oceanbase5share6ObLSIDaSERKS1_:34168 + 0: 4271 + 38: _ZN9oceanbase6common10ObTabletIDaSERKS1_:46981 + 0: 4271 + 44: _ZN9oceanbase7storage20ObTableAccessContext24build_lob_locator_helperERNS0_16ObTableScanParamERKNS_6common14ObVersionRangeE:248012 + 3: 4271 + 6: 4271 + 6.1: 4271 + 6.2: 4271 + 7: 0 + 8.1: 0 + 9.1: 4271 + 11.1: 0 + 12: 0 + 13.1: 0 + 14.1: 0 + 15: 0 + 16.1: 0 + 17.1: 0 + 18.1: 0 + 19.1: 0 + 20.1: 0 + 22: 0 + 23: 0 + 29: 4292 + 9.1: _ZNK9oceanbase5share6schema12ObTableParam15use_lob_locatorEv:29897 + 0: 4271 + 11.1: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 20.1: _ZNK9oceanbase7storage18ObLobLocatorHelper8is_validEv:0 + 0: 0 + 47.1: _ZN9oceanbase3lib14is_oracle_modeEv:171680 + 2: _ZN9oceanbase3lib15get_compat_modeEv:171680 + 2: 4292 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:103008 + 2: 4292 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 +_ZN9oceanbase11transaction12CtxLockGuard5resetEv:1850855:11026 + 1: 10420 + 2: 10420 + 4: 7757 + 6: 10947 + 3: _ZN9oceanbase11transaction7CtxLock6unlockEv:1284410 + 4: 7205 _ZN9oceanbase6common7ObLatch6unlockEPKj:7318 + 2: _ZN9oceanbase11transaction10CtxLockArgC2Ev:576526 + 0: 7050 + 1: 6927 + 3: 6927 + 0: _ZN9oceanbase6common7ObDListINS_11transaction9LocalTaskEEC2Ev:345450 + 2: 7050 + 3: 7050 + 4: 7050 + 65463: _ZN9oceanbase6common11ObDLinkBaseINS_11transaction9LocalTaskEEC2Ev:176250 + 2: 7050 + 0.1: _ZN9oceanbase11transaction18ObTxCommitCallbackC2Ev:84748 + 0.4: 7050 _ZN9oceanbase11transaction18ObTxCommitCallback5resetEv:7183 + 0: _ZN9oceanbase11transaction9ObTransIDC2Ev:56400 + 0: 7050 + 3: _ZN9oceanbase11transaction7CtxLock13before_unlockERNS0_10CtxLockArgE:273911 + 2: 6927 + 3: _ZN9oceanbase11transaction10ObTransCtx13before_unlockERNS0_10CtxLockArgE:218130 + 2: 7039 + 3: 7039 + 5: 407 + 6: 407 + 9.1: 102 + 10: 7190 + 10.1: 102 + 4: _ZN9oceanbase11transaction18ObTxCommitCallbackaSERKS1_:17908 + 0: 407 + 0: _ZN9oceanbase11transaction9ObTransIDaSERKS1_:4477 + 1: 407 + 9: _ZNK9oceanbase11transaction14ObTxELRHandler15is_elr_preparedEv:64710 + 0: 7190 + 10.1: _ZNK9oceanbase11transaction14ObTxELRHandler16get_memtable_ctxEv:714 + 0: 102 + 11: _ZN9oceanbase11transaction14ObTxELRHandler16set_memtable_ctxEPNS_8memtable13ObMemtableCtxE:1632 + 0: 102 + 5: _ZN9oceanbase11transaction7CtxLock12after_unlockERNS0_10CtxLockArgE:356193 + 2: 7080 + 3: _ZN9oceanbase11transaction10ObTransCtx12after_unlockERNS0_10CtxLockArgE:264153 + 0: 104 + 2: 7080 + 3: 7080 + 4: 104 + 7: 104 + 9: 7389 + 12: 389 _ZN9oceanbase11transaction18ObTxCommitCallback8callbackEv:288 + 13.1: 102 + 15.1: 334 + 15.3: 104 + 15.4: 104 + 15.6: 104 + 15.7: 104 + 15.8: 102 + 15.9: 104 + 15.20: 104 + 22: 104 + 23: 102 + 24.1: 102 + 25.2: 104 + 25.3: 104 + 29.1: 102 + 30.1: 104 + 31: 102 + 32.1: 102 + 33.1: 104 + 34.1: 102 + 38: 102 + 39: 102 + 40: 102 + 43.1: 102 + 44: 102 + 44.1: 102 + 46: 102 + 47.1: 102 + 50.1: 104 + 50.3: 104 + 50.4: 104 + 50.6: 104 + 50.7: 104 + 50.8: 102 + 50.9: 104 + 50.20: 104 + 10: _ZN9oceanbase11transaction10ObTransCtx31get_remaining_wait_interval_us_Ev:8190 + 2: _ZNK9oceanbase11transaction19ObTransNeedWaitWrap30get_remaining_wait_interval_usEv:8190 + 4.1: 390 + 6.1: 104 + 11: 104 + 4.3: _ZNK9oceanbase11transaction11MonotonicTsleES1_:3120 + 0: 390 + 9.1: _ZNK9oceanbase11transaction11MonotonicTsmiES1_:312 + 0: 104 + 9.2: _ZNK9oceanbase11transaction11MonotonicTsmiES1_:728 + 0: 104 + 9.7: _ZN9oceanbase11transaction11MonotonicTs12current_timeEv:520 + 0: 104 + 15.3: _ZN9oceanbase3lib20is_trace_log_enabledEv:1248 + 2: 104 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:728 + 2: 104 + 15.9: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EE12check_unlockEv:2184 + 2: 104 + 3: _ZN9oceanbase3lib7ObMutex6unlockEv:1248 + 0: 104 + 15.16: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EE10check_lockEv:4160 + 2: 104 + 3: _ZN9oceanbase3lib7ObMutex4lockEv:3224 + 0: 104 + 15.18: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EE10get_bufferEv:728 + 0: 104 + 15.19: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EE14get_buffer_posEv:728 + 0: 104 + 25.1: _ZNK9oceanbase11transaction19ObTransNeedWaitWrap18get_receive_gts_tsEv:1144 + 0: 104 + 25.3: _ZN9oceanbase11transaction11MonotonicTsD2Ev:832 + 0: _ZN9oceanbase11transaction11MonotonicTs5resetEv:832 + 0: 104 + 25.5: _ZNK9oceanbase11transaction19ObTransNeedWaitWrap25get_need_wait_interval_usEv:1144 + 0: 104 + 50.3: _ZN9oceanbase3lib20is_trace_log_enabledEv:1248 + 2: 104 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:728 + 2: 104 + 50.9: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EE12check_unlockEv:3120 + 2: 104 + 3: _ZN9oceanbase3lib7ObMutex6unlockEv:1768 + 0: 104 + 50.16: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EE10check_lockEv:4160 + 2: 104 + 3: _ZN9oceanbase3lib7ObMutex4lockEv:3224 + 0: 104 + 50.18: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EE10get_bufferEv:1248 + 0: 104 + 50.19: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EE14get_buffer_posEv:312 + 0: 104 + 6: _ZN9oceanbase11transaction10CtxLockArgD2Ev:30360 + 0: _ZN9oceanbase11transaction18ObTxCommitCallbackD2Ev:30360 + 0: 7486 _ZN9oceanbase11transaction18ObTxCommitCallback5resetEv:7672 + 6.1: _ZN9oceanbase11transaction10CtxLockArgD2Ev:816 + 0: _ZN9oceanbase11transaction18ObTxCommitCallbackD2Ev:816 + 0: 102 +_ZN9oceanbase11transaction12ObLSTxCtxMgr23in_leader_serving_stateEv:1845588:4537 + 1: 4233 + 3: 4233 + 6: 4233 + 7.1: 0 + 8.2: 4233 + 10.2: 4233 + 11.1: 0 + 16.3: 4233 + 4: _ZN9oceanbase6common8TCRWLock10RLockGuardC2ERS1_:774639 + 0: _ZN9oceanbase6common8TCRWLock6rdlockEl:774639 + 3.1: 0 + 4: 0 + 5: 0 + 3.2: _ZN9oceanbase6common8TCRWLock10try_rdlockEv:774639 + 3: 4233 + 5: 4233 + 8.1: 0 + 4: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:33864 + 0: 4233 + 4.1: _ZN9oceanbase6common5TCRef7inc_refEPi:533358 + 2: 4233 + 4.1: 4233 + 4.2: 0 + 6: 4233 + 6.1: 4233 + 10: 4233 + 2: _ZN9oceanbase6common8get_itidEv:118524 + 4: 4233 + 5: 0 + 6: 0 + 8: 0 + 11: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 8: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:0 + 0: 0 + 9: _ZN9oceanbase6common9LWaitCond6signalEv:0 + 2: 0 + 2.1: 0 + 3: 0 + 8.1: _ZNK9oceanbase11transaction12ObLSTxCtxMgr10is_master_Ev:55029 + 1: 4233 + 1: _ZNK9oceanbase11transaction12ObLSTxCtxMgr10is_master_El:33864 + 1: 4233 + 10.1: _ZN9oceanbase11transaction12ObLSTxCtxMgr35try_wait_gts_and_inc_max_commit_ts_Ev:93126 + 2: 4233 + 3: 4233 + 4: 0 + 7: 0 + 7.1: 0 + 13.1: 0 + 19: 0 + 22: 0 + 23.1: 0 + 24.1: 0 + 28.1: 0 + 31: 0 + 5: _ZN9oceanbase11transaction11MonotonicTsC2El:0 + 0: 0 + 7.1: _ZN9oceanbase11transaction11MonotonicTsD2Ev:0 + 0: _ZN9oceanbase11transaction11MonotonicTs5resetEv:0 + 0: 0 + 7.2: _ZN9oceanbase11transaction11MonotonicTsD2Ev:0 + 0: _ZN9oceanbase11transaction11MonotonicTs5resetEv:0 + 0: 0 + 23: _ZN9oceanbase11transaction14ObTransService18get_tx_version_mgrEv:0 + 0: 0 + 16.3: _ZN9oceanbase6common8TCRWLock10RLockGuardD2Ev:613785 + 0.2: 0 + 0: _ZN9oceanbase6common8TCRWLock8rdunlockEv:613785 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:33864 + 0: 4233 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPi:512193 + 2: 4233 + 4.1: 4233 + 4.2: 0 + 6: 4233 + 6.1: 4233 + 10: 4233 + 2: _ZN9oceanbase6common8get_itidEv:118524 + 4: 4233 + 5: 0 + 6: 0 + 8: 0 + 11: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:67728 + 2: 4233 + 2.1: 0 + 3: 0 + 16.4: _ZN9oceanbase6common8TCRWLock10RLockGuardD2Ev:0 + 0.2: 0 + 0: _ZN9oceanbase6common8TCRWLock8rdunlockEv:0 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:0 + 0: 0 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPi:0 + 2: 0 + 4.1: 0 + 4.2: 0 + 6: 0 + 6.1: 0 + 10: 0 + 2: _ZN9oceanbase6common8get_itidEv:0 + 4: 0 + 5: 0 + 6: 0 + 8: 0 + 11: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:0 + 2: 0 + 2.1: 0 + 3: 0 +_ZN9oceanbase7storage8ObTablet15get_read_tablesElRNS0_20ObTableStoreIteratorEb:1840356:5359 + 4: 5155 + 5: 5155 + 6: 5348 _ZN9oceanbase7storage18ObTabletTableStore15get_read_tablesElRNS0_20ObTableStoreIteratorEb:6002 + 7: 5320 + 7.1: 0 + 5: _ZN9oceanbase6common12TCRLockGuardC2ERKNS0_8TCRWLockE:1063942 + 1: 5155 + 3: 5348 + 4.1: 0 + 3: _ZN9oceanbase6common8TCRWLock6rdlockElRl:928561 + 3.1: 0 + 4: 0 + 5: 0 + 3.2: _ZN9oceanbase6common8TCRWLock10try_rdlockERl:928561 + 3: 5155 + 5: 5348 + 8: 0 + 4: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:36085 + 0: 5155 + 4.1: _ZN9oceanbase6common5TCRef7inc_refEPiRl:657799 + 2: 5155 + 4: 5155 + 5.1: 5155 + 5.2: 1 + 7: 5156 + 7.1: 5155 + 8: 5348 + 12: 5348 + 2: _ZN9oceanbase6common8get_itidEv:144340 + 4: 5155 + 5: 0 + 6: 0 + 8: 0 + 13: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 8: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:0 + 0: 0 + 8.1: _ZN9oceanbase6common5TCRef7dec_refEPil:0 + 2: 0 + 2.1: 0 + 3: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 9: _ZN9oceanbase6common9LWaitCond6signalEv:0 + 2: 0 + 2.1: 0 + 3: 0 + 7: _ZN9oceanbase6common12TCRLockGuardD2Ev:345800 + 2: 5320 + 3: 5320 + 3.1: 5320 + 3.2: 0 + 3: _ZN9oceanbase6common8TCRWLock8rdunlockEl:234080 + 3: 5320 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:21280 + 0: 5320 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPil:117040 + 2: 5320 + 2.1: 5320 + 3: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:58520 + 2: 5320 + 2.1: 0 + 3: 0 +_ZN9oceanbase3sql16ObHashDistinctOp19do_unblock_distinctEv:1837543:28953 + 1: 27505 + 2: 27505 + 3: 27505 + 4: 233 _ZN9oceanbase3sql16ObHashDistinctOp26init_hash_partition_infrasEv:250 + 5.1: 133 + 7: 233 + 9: 133 + 10.1: 27223 + 10.2: 0 + 10.4: 27111 _ZN9oceanbase3sql16ObHashDistinctOp19build_distinct_dataEb:28859 + 12.1: 133 + 14.1: 374 _ZZN9oceanbase3sql16ObHashDistinctOp19do_unblock_distinctEvENK5$_508clEPKc.ae889f3027d8490103b30de3c389dd2f:251 + 17: 24870 +_ZN9oceanbase8observer12ObSrvDeliver21deliver_mysql_requestERNS_3rpc9ObRequestE:1831154:5529 + 1: 5475 + 2: 5475 + 3: 5475 + 4: 5475 _ZN9oceanbase3rpc20ObSqlRequestOperator15get_sql_sessionEPNS0_9ObRequestE:5651 + 6: 5028 + 8: 5028 + 11: 103 + 12.1: 103 + 15: 5028 _ZN9oceanbase3rpc9ObRequest15set_trace_pointEi:5137 + 16: 4564 + 17.1: 4564 + 18: 4250 + 19.1: 103 + 25: 103 + 26: 4250 + 28: 4250 + 32: 103 + 33.2: 103 + 33.3: 103 + 33.4: 103 + 33.5: 103 + 33.6: 103 + 33.10: 103 + 33.11: 103 + 33.12: 103 + 34.2: 103 + 34.3: 103 + 34.4: 103 + 34.5: 103 + 34.7: 103 + 34.11: 103 + 34.12: 103 + 34.14: 103 + 36.1: 103 + 36.2: 103 + 36.5: 103 + 36.6: 103 + 37.1: 103 + 38: 103 + 38.1: 103 + 39: 103 + 40.2: 103 + 40.3: 103 + 40.4: 103 + 40.5: 103 + 40.6: 103 + 40.10: 103 + 40.11: 103 + 40.12: 103 + 41.1: 103 + 43.1: 103 + 44: 103 + 44.1: 103 + 45: 103 + 46.2: 103 + 46.3: 103 + 46.4: 103 + 46.5: 103 + 46.6: 103 + 46.10: 103 + 46.11: 103 + 46.12: 103 + 47.1: 103 + 50.1: 103 + 50.2: 103 + 50.3: 103 + 50.6: 103 + 51.1: 103 + 58: 4370 + 59.2: 4532 + 59.3: 103 + 59.4: 103 + 59.5: 103 + 59.6: 103 + 59.10: 103 + 59.11: 103 + 59.12: 103 + 60.2: 4979 + 60.3: 103 + 60.4: 103 + 60.5: 103 + 60.7: 103 + 60.11: 103 + 60.12: 103 + 60.14: 103 + 75: 4979 + 75.1: 4979 _ZN9oceanbase3omt8ObTenant12recv_requestERNS_3rpc9ObRequestE:5166 + 75.2: 5355 + 76.2: 103 + 76.3: 103 + 76.4: 103 + 76.5: 103 + 76.6: 103 + 76.10: 103 + 76.11: 103 + 76.12: 103 + 77: 103 + 78.1: 103 + 80.1: 103 + 86: 5355 + 9: _ZN9oceanbase3rpc9ObRequest12set_group_idERKi:65364 + 0: 5028 + 18: _Z23check_easy_memory_limitRN9oceanbase3rpc9ObRequestE:320490 + 3: 4564 + 9: 4564 + 10: 4564 + 13: 4250 + 14: 4250 + 16.1: 4250 + 18: 103 + 18.1: 103 + 18.3: 103 + 18.4: 103 + 19: 103 + 21: 103 + 22.1: 103 + 25: 103 + 26: 103 + 27: 103 + 28.1: 103 + 9: _ZNK9oceanbase3rpc9ObRequest10get_ez_reqEv:31948 + 2: 4564 + 13: _Z29get_easy_per_src_memory_limitv:34314 + 2: 4564 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:4584 + 19: _ZNK9oceanbase3rpc9ObRequest8get_typeEv:721 + 0: 103 + 31: _ZN9oceanbase6common20ObTenantStatEstGuardC2Em:13287 + 3: 103 + 4: 103 + 5: 103 + 3: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:1854 + 2: 103 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:412 + 2: 103 + 6: _ZN9oceanbase6common17ObSessionDIBuffer13get_tenant_idEv:1648 + 3: 103 + 4: 103 + 8: _ZN9oceanbase6common17ObSessionDIBuffer13switch_tenantEm:7004 + 6: 103 + 8: 103 + 10: 103 + 33.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:927 + 2: 103 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:412 + 2: 103 + 34.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:927 + 2: 103 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:412 + 2: 103 + 34.6: _ZNK9oceanbase7obmysql16ObMySQLRawPacket8get_clenEv:515 + 2: 103 + 34.13: _ZNK9oceanbase7obmysql16ObMySQLRawPacket8get_clenEv:515 + 2: 103 + 36.3: _ZN9oceanbase3rpc20ObSqlRequestOperator8get_peerEPKNS0_9ObRequestE:3502 + 1: 103 + 1.1: 103 + 40.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:927 + 2: 103 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:412 + 2: 103 + 46.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:927 + 2: 103 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:412 + 2: 103 + 50: _ZN9oceanbase6common14ObTscTimestamp12get_instanceEv:10609 + 2: 103 + 2.1: 103 + 2.3: 103 + 2.6: 103 + 2.2: _ZN9oceanbase6common14ObTscTimestampC2Ev:2781 + 1: 103 + 54: _ZN9oceanbase6common20ObTenantStatEstGuardD2Ev:9270 + 2: 103 + 3.1: 103 + 3: _ZN9oceanbase6common17ObSessionDIBuffer13switch_tenantEm:7107 + 3: 103 + 4: 103 + 6: 103 + 8: 103 + 10: 103 + 54.1: _ZN9oceanbase6common20ObTenantStatEstGuardD2Ev:9167 + 2: 103 + 3.1: 103 + 3: _ZN9oceanbase6common17ObSessionDIBuffer13switch_tenantEm:7416 + 3: 103 + 4: 103 + 6: 103 + 8: 103 + 10: 103 + 57: _ZNK9oceanbase5share12ObTenantBase2idEv:29750 + 0: 4250 + 57.1: _ZN9oceanbase6common20ObTenantStatEstGuardC2Em:81483 + 3: 4370 + 4: 103 + 5: 103 + 7: 103 + 8: 103 + 3: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:47950 + 2: 4250 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:4363 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:17480 + 2: 4370 + 6: _ZN9oceanbase6common17ObSessionDIBuffer13get_tenant_idEv:2060 + 3: 103 + 4: 103 + 59.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:22498 + 2: 4370 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:4534 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:18128 + 2: 4532 + 60.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:24448 + 2: 4532 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:4677 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:19916 + 2: 4979 + 60.6: _ZNK9oceanbase7obmysql16ObMySQLRawPacket8get_clenEv:412 + 2: 103 + 60.13: _ZNK9oceanbase7obmysql16ObMySQLRawPacket8get_clenEv:412 + 2: 103 + 76.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:927 + 2: 103 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:412 + 2: 103 + 83: _ZN9oceanbase6common20ObTenantStatEstGuardD2Ev:46240 + 2: 5355 + 3.1: 103 + 3: _ZN9oceanbase6common17ObSessionDIBuffer13switch_tenantEm:7931 + 3: 103 + 4: 103 + 6: 103 + 8: 103 + 10: 103 + 83.1: _ZN9oceanbase6common20ObTenantStatEstGuardD2Ev:10197 + 2: 103 + 3.1: 103 + 3: _ZN9oceanbase6common17ObSessionDIBuffer13switch_tenantEm:7828 + 3: 103 + 4: 103 + 6: 103 + 8: 103 + 10: 103 +_ZN9oceanbase5share17ObLocationService3getElmRKNS0_6ObLSIDElRbRNS0_12ObLSLocationE:1817252:4382 + 7: 4210 + 8: 4210 + 9: 4210 + 10: 34 + 11.1: 34 + 12.1: 4497 + 19.1: 34 + 23: 4497 + 12.1: _ZN9oceanbase5share19ObLSLocationService3getElmRKNS0_6ObLSIDElRbRNS0_12ObLSLocationE:1321837 + 2: 4499 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:4531 + 8: 4210 + 10: 4210 + 11: 4210 + 12: 34 + 13.1: 34 + 14.1: 35 + 15: 0 + 16.1: 0 + 19: 4479 _ZN9oceanbase5share19ObLSLocationService14get_from_cacheElmRKNS0_6ObLSIDERNS0_12ObLSLocationE:4580 + 20: 4351 + 21.1: 35 + 23.2: 4351 + 24.1: 4351 + 25: 35 + 26.1: 35 + 30: 4351 + 33: 4499 + 34.1: 4497 + 34.2: 34 + 34.3: 34 + 34.4: 34 + 34.6: 34 + 34.7: 34 + 36.1: 34 + 36.2: 34 + 36.3: 34 + 36.4: 34 + 36.6: 34 + 36.7: 34 + 38: 4497 + 9: _ZN9oceanbase5share12ObLSLocation5resetEv:595070 + 4: 4210 + 5: 4210 + 2: _ZN9oceanbase5share20ObLSLocationCacheKey5resetEv:92620 + 2: 4210 + 4: _ZN9oceanbase5share6ObLSID5resetEv:37890 + 0: 4210 + 5: _ZN9oceanbase6common13ObSEArrayImplINS_5share19ObLSReplicaLocationELl3ENS0_19ModulePageAllocatorELb0EE5resetEv:397200 + 0: 4210 + 0: _ZN9oceanbase6common13ObSEArrayImplINS_5share19ObLSReplicaLocationELl3ENS0_19ModulePageAllocatorELb0EE7destroyEv:303635 + 4.1: 4210 + 4.3: 35 + 5: 35 + 9: 4210 + 10: 35 + 11: 35 + 13: 4210 + 15: 4210 + 24: 4210 + 6: _ZN9oceanbase6common6ObLink5resetEv:46310 + 0: 4210 + 14.1: _ZN9oceanbase5share19ObLSLocationService12is_valid_keyElmRKNS0_6ObLSIDE:231897 + 5: 4210 + 6: 4210 + 7.1: _ZNK9oceanbase5share6ObLSID20is_valid_with_tenantEm:189797 + 5: 4384 + 4: _ZN9oceanbase6common14is_user_tenantEm:122812 + 3: 4347 + 4: 4384 + 2: _ZN9oceanbase6common13is_sys_tenantEm:17388 + 2: 4347 + 3.1: _ZN9oceanbase6common20is_virtual_tenant_idEm:44050 + 2: 4384 + 4.1: _ZNK9oceanbase5share6ObLSID8is_validEv:17536 + 0: 4384 + 5.2: _ZN9oceanbase6common14is_meta_tenantEm:910 + 3: 35 + 5.3: _ZNK9oceanbase5share6ObLSID9is_sys_lsEv:140 + 0: 35 +_ZN9oceanbase7storage20ObTableStoreIterator8get_nextERPNS0_8ObITableE:1811851:19082 + 1: 18355 + 2: 18355 + 3: 18355 + 4: 18355 + 6.1: 18355 + 7: 0 + 7.3: 0 + 8.1: 18355 + 13.1: 13834 + 14: 0 + 15.1: 0 + 17: 13834 + 18: 13834 + 20: 18690 + 4: _ZNK9oceanbase6common12ObIArrayWrapIPNS_7storage8ObITableEE5countEv:73420 + 0: 18355 + 13.1: _ZN9oceanbase6common12ObIArrayWrapIPNS_7storage8ObITableEE2atEl:55336 + 6: 13834 +_ZNK9oceanbase3sql12ObQueryRange21gen_simple_scan_rangeERNS_6common12ObIAllocatorERNS0_13ObExecContextERNS2_9ObSEArrayIPNS2_10ObNewRangeELl1ENS2_19ModulePageAllocatorELb0EEERNS7_IbLl2ESA_Lb1EEERKNS2_20ObDataTypeCastParamsE:1808629:1040 + 5: 999 + 6: 999 + 11: 940 + 11.1: 0 + 12: 0 + 13.1: 0 + 14.1: 940 + 14.2: 0 + 15: 0 + 16.1: 0 + 17.1: 940 + 17.2: 940 + 18: 0 + 19.1: 0 + 20.1: 940 + 20.2: 940 + 21: 0 + 22.1: 0 + 24: 940 + 24.1: 940 + 24.3: 940 + 24.4: 941 + 25: 941 + 25.1: 941 + 25.3: 941 + 25.4: 941 + 26: 941 + 27: 941 + 30.1: 944 + 30.2: 1950 + 30.3: 1950 + 30.5: 944 + 32: 944 + 33: 944 + 34: 944 + 35: 944 + 37.1: 1003 + 38: 1003 + 40: 1003 _ZNK9oceanbase3sql12ObQueryRange20get_single_key_valueEPKNS0_9ObKeyPartERNS0_13ObExecContextERNS1_13ObSearchStateERKNS_6common20ObDataTypeCastParamsE:1066 + 40.1: 999 + 41.1: 0 + 44: 1021 + 44.2: 1022 + 45.1: 0 + 47: 0 + 48: 1022 + 49: 1022 + 50: 1022 _ZNK9oceanbase3sql12ObQueryRange21generate_single_rangeERNS1_13ObSearchStateElmRPNS_6common10ObNewRangeERb:1022 + 50.1: 923 + 53.1: 0 + 54.2: 923 + 55.1: 0 + 56.2: 923 + 57.1: 0 + 60: 923 + 61.13: 906 + 61.14: 0 + 7: _ZN9oceanbase3sql12ObQueryRange13ObSearchStateC2ERNS_6common12ObIAllocatorE:272514 + 2: 999 + 6: 999 + 12: 999 + 13: _ZN9oceanbase6common4hash9ObHashSetINS_3sql12ObQueryRange14ObRangeWrapperENS1_19NoPthreadDefendModeENS1_9hash_funcIS5_EENS1_8equal_toIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS5_NS1_11HashNullObjEEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev:209813 + 0.2: 940 + 0: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS_3sql12ObQueryRange14ObRangeWrapperENS1_11HashNullObjEEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEC2Ev:74453 + 0: 999 + 2: 999 + 0.1: _ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocatorC2EmRKNS_3lib7ObLabelE:45954 + 3: 999 + 4: 999 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:20979 + 7: 999 + 2: _ZN9oceanbase6common4hash10SpinIniterC2ERVi:13514 + 2: 999 + 3.1: 0 + 0.1: _ZN9oceanbase6common8ObMallocC2ERKNS_3lib7ObLabelE:60160 + 1: 940 + 2: 940 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:30080 + 5: 940 + 7: 940 + 0.2: _ZN9oceanbase6common4hash11ObHashTableINS_3sql12ObQueryRange14ObRangeWrapperENS1_11HashMapPairIS5_NS1_11HashNullObjEEENS1_9hash_funcIS5_EENS1_8equal_toIS5_EENS1_10pair_firstIS8_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS8_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev:68620 + 0: 940 + 1: 940 + 0: _ZN9oceanbase6common8ObMallocC2Ev:33840 + 0: 940 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:27260 + 5: 940 + 7: 940 + 8: _ZN9oceanbase6common4hash9constructIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_3sql12ObQueryRange14ObRangeWrapperENS1_11HashNullObjEEENS1_5NLockENS1_5NCondEEEEEvRT_:17860 + 2: _ZN9oceanbase6common4hash12do_constructIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_3sql12ObQueryRange14ObRangeWrapperENS1_11HashNullObjEEENS1_5NLockENS1_5NCondEEEEEvRT_NS1_16NormalPointerTagE:17860 + 2: 940 + 11: _ZN9oceanbase6common16ObArenaAllocator5allocEl:125960 + 0: 940 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13alloc_alignedEll:117500 + 3: 940 + 6: 940 + 7: 940 + 8: 940 + 10: 940 + 11: 940 + 12: 940 + 13: 940 + 15.1: 0 + 16: 0 + 18: 0 + 20: 0 + 28: 0 + 35: 940 + 36: 940 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE15ensure_cur_pageEv:13160 + 2: 940 + 3: 0 + 5.1: 0 + 8: 0 + 9: 0 + 10: 0 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:0 + 2: 0 + 2.2: 0 + 2.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 9: _ZSt3maxIlERKT_S2_S2_:0 + 5: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 8: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:0 + 0: 0 + 7: _ZN9oceanbase6common16get_align_offsetEPvl:12220 + 3: 940 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:6580 + 0: 940 + 11: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:6580 + 7: 940 + 15.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE18is_normal_overflowEl:0 + 2: 0 + 16: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11extend_pageEl:0 + 4: 0 + 5: 0 + 8: 0 + 9: 0 + 10.1: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 12: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_tailEPNS3_4PageE:0 + 2: 0 + 3: 0 + 5: 0 + 23.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16lookup_next_pageEl:0 + 3.1: 0 + 4.1: 0 + 5: 0 + 5.1: 0 + 7: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page10reuse_sizeEv:0 + 0: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 32: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9alloc_bigEl:0 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 3: 0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_headEPNS3_4PageE:0 + 4: 0 + 5: 0 + 7: 0 + 7: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:0 + 3: 0 + 14.1: _ZN9oceanbase6common16ObArenaAllocator5allocEl:125020 + 0: 940 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13alloc_alignedEll:114680 + 3: 940 + 6: 940 + 7: 940 + 8: 940 + 10: 940 + 11: 940 + 12: 940 + 13: 940 + 15.1: 0 + 16: 0 + 18: 0 + 20: 0 + 28: 0 + 35: 940 + 36: 940 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE15ensure_cur_pageEv:12220 + 2: 940 + 3: 0 + 5.1: 0 + 8: 0 + 9: 0 + 10: 0 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:0 + 2: 0 + 2.2: 0 + 2.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 9: _ZSt3maxIlERKT_S2_S2_:0 + 5: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 8: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:0 + 0: 0 + 7: _ZN9oceanbase6common16get_align_offsetEPvl:12220 + 3: 940 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:6580 + 0: 940 + 11: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:6580 + 7: 940 + 15.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE18is_normal_overflowEl:0 + 2: 0 + 16: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11extend_pageEl:0 + 4: 0 + 5: 0 + 8: 0 + 9: 0 + 10.1: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 12: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_tailEPNS3_4PageE:0 + 2: 0 + 3: 0 + 5: 0 + 23.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16lookup_next_pageEl:0 + 3.1: 0 + 4.1: 0 + 5: 0 + 5.1: 0 + 7: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page10reuse_sizeEv:0 + 0: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 32: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9alloc_bigEl:0 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 3: 0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_headEPNS3_4PageE:0 + 4: 0 + 5: 0 + 7: 0 + 7: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:0 + 3: 0 + 17.1: _ZN9oceanbase6common16ObArenaAllocator5allocEl:122200 + 0: 940 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13alloc_alignedEll:114680 + 3: 940 + 6: 940 + 7: 940 + 8: 940 + 10: 940 + 11: 940 + 12: 940 + 13: 940 + 15.1: 0 + 16: 0 + 18: 0 + 20: 0 + 28: 0 + 35: 940 + 36: 940 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE15ensure_cur_pageEv:12220 + 2: 940 + 3: 0 + 5.1: 0 + 8: 0 + 9: 0 + 10: 0 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:0 + 2: 0 + 2.2: 0 + 2.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 9: _ZSt3maxIlERKT_S2_S2_:0 + 5: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 8: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:0 + 0: 0 + 7: _ZN9oceanbase6common16get_align_offsetEPvl:12220 + 3: 940 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:6580 + 0: 940 + 11: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:6580 + 7: 940 + 15.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE18is_normal_overflowEl:0 + 2: 0 + 16: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11extend_pageEl:0 + 4: 0 + 5: 0 + 8: 0 + 9: 0 + 10.1: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 12: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_tailEPNS3_4PageE:0 + 2: 0 + 3: 0 + 5: 0 + 23.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16lookup_next_pageEl:0 + 3.1: 0 + 4.1: 0 + 5: 0 + 5.1: 0 + 7: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page10reuse_sizeEv:0 + 0: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 32: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9alloc_bigEl:0 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 3: 0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_headEPNS3_4PageE:0 + 4: 0 + 5: 0 + 7: 0 + 7: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:0 + 3: 0 + 20.1: _ZN9oceanbase6common16ObArenaAllocator5allocEl:125960 + 0: 940 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13alloc_alignedEll:118440 + 3: 940 + 6: 940 + 7: 940 + 8: 940 + 10: 940 + 11: 940 + 12: 940 + 13: 940 + 15.1: 0 + 16: 0 + 18: 0 + 20: 0 + 28: 0 + 35: 940 + 36: 940 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE15ensure_cur_pageEv:12220 + 2: 940 + 3: 0 + 5.1: 0 + 8: 0 + 9: 0 + 10: 0 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:0 + 2: 0 + 2.2: 0 + 2.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 9: _ZSt3maxIlERKT_S2_S2_:0 + 5: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 8: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:0 + 0: 0 + 7: _ZN9oceanbase6common16get_align_offsetEPvl:12220 + 3: 940 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:6580 + 0: 940 + 11: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:6580 + 7: 940 + 15.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE18is_normal_overflowEl:0 + 2: 0 + 16: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11extend_pageEl:0 + 4: 0 + 5: 0 + 8: 0 + 9: 0 + 10.1: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 12: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_tailEPNS3_4PageE:0 + 2: 0 + 3: 0 + 5: 0 + 23.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16lookup_next_pageEl:0 + 3.1: 0 + 4.1: 0 + 5: 0 + 5.1: 0 + 7: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page10reuse_sizeEv:0 + 0: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 32: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9alloc_bigEl:0 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 3: 0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_headEPNS3_4PageE:0 + 4: 0 + 5: 0 + 7: 0 + 7: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:0 + 3: 0 + 24.2: _ZN9oceanbase6common5ObObjC2Ev:10340 + 2: _ZN9oceanbase6common5ObObj5resetEv:10340 + 6: 940 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:2820 + 0: 940 + 25.2: _ZN9oceanbase6common5ObObjC2Ev:10390 + 2: _ZN9oceanbase6common5ObObj5resetEv:10390 + 6: 941 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:2835 + 0: 941 + 32: _ZN9oceanbase6common5ObObj13set_min_valueEv:16048 + 2: _ZN9oceanbase6common5ObObj7set_extEl:16048 + 4: 944 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:7552 + 0: 944 + 33: _ZN9oceanbase6common5ObObj13set_max_valueEv:16048 + 2: _ZN9oceanbase6common5ObObj7set_extEl:16048 + 4: 944 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:7552 + 0: 944 + 44.1: _ZN9oceanbase3sql12ObQueryRange13ObSearchState18tailor_final_rangeEl:284859 + 5: 1021 + 7.1: 0 + 9.2: 1021 + 9.6: 1021 + 11: 1021 + 12: 1021 + 12.1: 1021 + 12.2: 1021 + 13: 0 + 13.1: 1021 + 15.1: 0 + 15.3: 0 + 16: 0 + 18: 0 + 22: 1021 + 23: 1021 + 23.1: 1021 + 23.2: 1021 + 24: 1021 + 24.1: 1021 + 26.1: 0 + 26.3: 0 + 27: 0 + 29: 0 + 33: 1021 + 33.1: 0 + 35: 0 + 37: 0 + 13: _ZNK9oceanbase6common5ObObj12is_min_valueEv:17357 + 2: 1021 + 2.1: 0 + 2: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:7147 + 0: 1021 + 16: _ZN9oceanbase6common5ObObj13set_max_valueEv:0 + 2: _ZN9oceanbase6common5ObObj7set_extEl:0 + 4: 0 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:0 + 0: 0 + 24: _ZNK9oceanbase6common5ObObj12is_max_valueEv:13273 + 2: 1021 + 2.1: 0 + 2: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:7147 + 0: 1021 + 27: _ZN9oceanbase6common5ObObj13set_min_valueEv:0 + 2: _ZN9oceanbase6common5ObObj7set_extEl:0 + 4: 0 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:0 + 0: 0 + 33: _ZNK9oceanbase6common5ObObj12is_min_valueEv:17357 + 2: 1021 + 2.1: 0 + 2: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:7147 + 0: 1021 + 33.1: _ZNK9oceanbase6common5ObObj12is_max_valueEv:0 + 2: 0 + 2.1: 0 + 54.1: _ZN9oceanbase6common13ObSEArrayImplIPNS0_10ObNewRangeELl1ENS0_19ModulePageAllocatorELb0EE9push_backERKS3_:28613 + 5: 923 + 6: 0 + 12: 0 + 15: 0 + 15.1: 923 + 16: 923 + 15.1: _ZN9oceanbase6common9ObClassOpIPNS0_10ObNewRangeELb1EE20construct_and_assignERKS3_RS3_:7384 + 2: 923 + 56.1: _ZN9oceanbase6common13ObSEArrayImplIbLl2ENS0_19ModulePageAllocatorELb1EE9push_backERKb:26767 + 5: 923 + 6: 0 + 12: 0 + 15: 0 + 15.1: 923 + 16: 923 + 15.1: _ZN9oceanbase6common9ObClassOpIbLb1EE20construct_and_assignERKbRb:5538 + 2: 923 + 61.13: _ZN9oceanbase3sql12ObQueryRange13ObSearchStateD2Ev:26427 + 0: _ZN9oceanbase6common4hash9ObHashSetINS_3sql12ObQueryRange14ObRangeWrapperENS1_19NoPthreadDefendModeENS1_9hash_funcIS5_EENS1_8equal_toIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS5_NS1_11HashNullObjEEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:26427 + 2: _ZN9oceanbase6common4hash11ObHashTableINS_3sql12ObQueryRange14ObRangeWrapperENS1_11HashMapPairIS5_NS1_11HashNullObjEEENS1_9hash_funcIS5_EENS1_8equal_toIS5_EENS1_10pair_firstIS8_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS8_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:8307 + 2.1: 923 + 3: 0 + 5.2: 0 + 2: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_3sql12ObQueryRange14ObRangeWrapperENS1_11HashNullObjEEENS1_5NLockENS1_5NCondEEEEEbRKT_:7384 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_3sql12ObQueryRange14ObRangeWrapperENS1_11HashNullObjEEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:7384 + 2: 923 + 2.2: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS_3sql12ObQueryRange14ObRangeWrapperENS1_11HashNullObjEEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEED2Ev:18120 + 2.1: 0 + 2: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS_3sql12ObQueryRange14ObRangeWrapperENS1_11HashNullObjEEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEE5clearEv:18120 + 2: 906 + 3.1: 906 + 4: 0 + 5: 0 + 6.1: 0 + 10: 0 +_ZN9oceanbase12blocksstable11ObRowWriter15inner_write_rowElRKNS_7storage10ObStoreRowEPKNS_6common8ObIArrayIlEE:1802090:918 + 4: 883 + 5: 883 + 6: 878 + 7.1: 3 + 8.1: 878 + 8.2: 3 + 9.1: 3 + 10.1: 878 + 17.1: 3 + 20: 878 + 21: 878 + 22: 878 + 24.1: 3 + 28: 859 + 6: _ZN9oceanbase12blocksstable11ObRowWriter15check_row_validERKNS_7storage10ObStoreRowEl:119898 + 4: 883 + 6: 3 + 7.1: 3 + 8.1: 878 + 8.3: 878 + 9: 3 + 10.1: 3 + 13: 878 + 5: _ZNK9oceanbase7storage10ObStoreRow8is_validEv:94185 + 3: 883 + 5.1: 883 + 8.1: 3 + 9: 883 + 11: 881 + 11.1: 3 + 11.2: 881 + 12: 3 + 12.1: 881 + 13: 0 + 7.1: _ZNK9oceanbase12blocksstable12ObDmlRowFlag8is_validEv:26490 + 2: 883 + 10.1: _ZNK9oceanbase6common8ObNewRow8is_validEv:20277 + 2: _ZNK9oceanbase6common8ObNewRow10is_invalidEv:20277 + 2: 614 + 2.1: 614 + 2.2: 614 + 2.3: 3 + 12.1: _ZNK9oceanbase12blocksstable21ObMultiVersionRowFlag18is_uncommitted_rowEv:4405 + 0: 881 + 8.2: _ZN9oceanbase12blocksstable11ObRowWriter28check_update_idx_array_validElPKNS_6common8ObIArrayIlEE:714 + 4: 3 + 5: 3 + 5.2: 3 + 6: 3 + 7.1: 3 + 9.1: 3 + 9.2: 3 + 9.3: 3 + 9.5: 3 + 10: 3 + 11: 3 + 12: 3 + 13.1: 3 + 15.1: 3 + 16: 3 + 17.1: 3 + 10.1: _ZNK9oceanbase12blocksstable12ObDmlRowFlag18get_serialize_flagEv:2634 + 2: 878 + 10.2: _ZNK9oceanbase11transaction9ObTransID6get_idEv:3512 + 0: 878 + 10.3: _ZN9oceanbase12blocksstable11ObRowWriter17append_row_headerEhhlll:87012 + 7: 878 + 9: 878 + 10: 3 + 11.1: 3 + 13: 878 + 15: 878 + 16: 878 + 17: 878 + 18: 878 + 19: 878 + 20: 878 + 22: 878 + 24: 878 + 14: _ZN9oceanbase12blocksstable11ObRowHeader11set_versionEh:3512 + 0: 878 + 15: _ZN9oceanbase12blocksstable11ObRowHeader12set_row_flagEh:2634 + 0: 878 + 16: _ZN9oceanbase12blocksstable11ObRowHeader17set_row_mvcc_flagEh:2634 + 0: 878 + 17: _ZN9oceanbase12blocksstable11ObRowHeader16set_column_countEt:3512 + 0: 878 + 18: _ZN9oceanbase12blocksstable11ObRowHeader16set_rowkey_countEh:3512 + 0: 878 + 19: _ZN9oceanbase12blocksstable11ObRowHeader19clear_reserved_bitsEv:7024 + 0: 878 + 20: _ZN9oceanbase12blocksstable11ObRowHeader12set_trans_idEl:3512 + 0: 878 + 22: _ZN9oceanbase12blocksstable11ObRowWriter17inner_write_cellsINS_6common5ObObjEEEiPKT_l:1440706 + 4: 878 + 5: 878 + 6: 878 + 7: 878 + 9: 3 + 11: 3 + 11.1: 3 + 11.2: 3 + 11.4: 3 + 13: 3 + 14.1: 3 + 15.1: 859 + 17.1: 3 + 20: 859 + 24: 859 + 11.2: _ZN9oceanbase12blocksstable11ObRowHeader16calc_cluster_cntEll:201 + 2: 3 + 3: 3 + 2: _ZN9oceanbase12blocksstable11ObRowHeader31need_rowkey_independent_clusterEl:24 + 2: 3 + 3: _ZN9oceanbase12blocksstable11ObRowHeader33calc_cluster_cnt_by_row_col_countEl:54 + 2: 3 + 4: _ZN9oceanbase12blocksstable11ObRowHeader33calc_cluster_cnt_by_row_col_countEl:63 + 2: 3 + 15.1: _ZN9oceanbase12blocksstable11ObRowWriter13build_clusterINS_6common5ObObjEEEilPKT_:1365965 + 2: 878 + 6: 878 + 7: 878 + 8: 878 + 9: 878 + 11: 866 + 12: 866 + 12.3: 866 + 13: 866 + 19.1: 3 + 26.1: 816 + 26.2: 816 + 26.3: 806 + 26.4: 3 + 27: 3 + 31: 3 + 32: 3 + 33: 3 + 33.3: 3 + 39.1: 3 + 50.1: 859 + 11: _ZN9oceanbase12blocksstable11ObRowWriter10ObBitArrayILl133EE7set_valEll:19052 + 2: 866 + 3: 866 + 4: 866 + 13: _ZN9oceanbase12blocksstable11ObRowWriter20write_col_in_clusterINS_6common5ObObjEEEiPKT_lll:1120462 + 6: 866 + 7: 866 + 7.3: 866 + 8: 3 + 9.1: 3 + 13: 866 + 14: 866 + 17: 866 + 25.1: 3 + 28: 826 + 29: 826 + 29.1: 3 + 30: 816 + 30.3: 816 + 35: 816 + 15: _ZN9oceanbase12blocksstable20ObColClusterInfoMask5resetEv:6062 + 0: 866 + 17: _ZN9oceanbase12blocksstable11ObRowWriter20append_row_and_indexINS_6common5ObObjENS0_20ObColClusterInfoMaskEEEiPKT_lllbRT0_:956542 + 8: 866 + 9: 866 + 11: 866 + 12: 3 + 13: 3 + 15.1: 3 + 17.1: 3 + 21.1: 3 + 22.1: 3 + 24.1: 825 + 26.1: 3 + 30: 825 + 31.1: 825 + 35.1: 800 + 37.1: 826 + 17.1: _ZN9oceanbase12blocksstable11ObRowWriter12append_arrayILl48EEEiRNS1_10ObBitArrayIXT_EEElRNS0_20ObColClusterInfoMask9BYTES_LENE:333 + 7: 3 + 8: 3 + 14: 3 + 15: 3 + 17.1: 3 + 19: 3 + 20: 3 + 10: _ZN9oceanbase12blocksstable11ObRowWriter10ObBitArrayILl48EE7get_valEl:24 + 3: 3 + 11: _ZN9oceanbase12blocksstable11ObRowWriter13get_uint_byteEmRl:87 + 3: 3 + 19: _ZN9oceanbase12blocksstable11ObRowWriter10ObBitArrayILl48EE17get_bit_array_ptrENS0_20ObColClusterInfoMask9BYTES_LENE:24 + 3: 3 + 21.1: _ZN9oceanbase12blocksstable20ObColClusterInfoMask19set_column_idx_typeENS1_9BYTES_LENE:186 + 3: 3 + 5.1: 3 + 7: 3 + 3: _ZN9oceanbase12blocksstable20ObColClusterInfoMask21is_valid_col_idx_typeENS1_9BYTES_LENE:21 + 2: 3 + 24.1: _ZN9oceanbase12blocksstable11ObRowWriter22append_flat_cell_arrayINS_6common5ObObjEEEiPKT_lll:585035 + 6: 866 + 7: 866 + 7.3: 866 + 7.6: 866 + 9: 3 + 10.1: 3 + 13.1: 3466 + 13.3: 3466 + 13.5: 3466 + 14: 3527 + 15: 6 + 17.1: 3527 + 18: 1465 + 21: 3 + 22.1: 3 + 24.1: 2068 + 25: 2068 + 27: 2118 + 28: 2118 _ZN9oceanbase12blocksstable11ObRowWriter13append_columnERKNS_6common5ObObjE:2141 + 30.1: 3 + 35: 3 + 36: 3466 + 45: 825 + 15: _ZN9oceanbase12blocksstable11ObRowWriter15check_col_existEl:46269 + 3: 3527 + 5.1: 7 + 5.2: 14 + 6: 7 + 6.1: 14 + 7: 14 + 9.1: 6 + 239.3: 6 + 6.1: _ZNK9oceanbase6common12ObIArrayWrapIlE2atEl:56 + 6: 14 + 17.1: _ZNK9oceanbase6common5ObObj6is_extEv:42324 + 0: _ZNK9oceanbase6common9ObObjMeta6is_extEv:42324 + 0: 3527 + 18: _ZNK9oceanbase6common5ObObj12is_nop_valueEv:8790 + 2.1: 1465 + 24.1: _ZNK9oceanbase6common5ObObj7is_nullEv:6204 + 0: _ZNK9oceanbase6common9ObObjMeta7is_nullEv:6204 + 0: 2068 + 27: _ZNK9oceanbase6common5ObObj9is_outrowEv:31072 + 0: _ZNK9oceanbase6common9ObObjMeta9is_outrowEv:31072 + 0: 2068 + 0: _ZNK9oceanbase6common9ObObjMeta6is_lobEv:8272 + 0.1: _ZN9oceanbase6common13ob_is_text_tcENS0_9ObObjTypeE:8272 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:8272 + 2: 2068 + 0.1: _ZNK9oceanbase6common10ObLobScale10is_out_rowEv:48 + 0: 4 + 36: _ZN9oceanbase12blocksstable11ObRowWriter10ObBitArrayILl48EE7set_valEll:93582 + 2: 3466 + 3: 3466 + 4: 3466 + 31.1: _ZN9oceanbase12blocksstable11ObRowWriter12append_arrayILl48EEEiRNS1_10ObBitArrayIXT_EEElRNS0_20ObColClusterInfoMask9BYTES_LENE:77462 + 7: 825 + 14: 825 + 15: 825 + 17.1: 825 + 19: 825 + 20: 800 + 10: _ZN9oceanbase12blocksstable11ObRowWriter10ObBitArrayILl48EE7get_valEl:6600 + 3: 825 + 11: _ZN9oceanbase12blocksstable11ObRowWriter13get_uint_byteEmRl:23925 + 3: 825 + 19: _ZN9oceanbase12blocksstable11ObRowWriter10ObBitArrayILl48EE17get_bit_array_ptrENS0_20ObColClusterInfoMask9BYTES_LENE:6600 + 3: 825 + 35.1: _ZN9oceanbase12blocksstable20ObColClusterInfoMask15set_offset_typeENS1_9BYTES_LENE:11200 + 7: 800 + 37.1: _ZN9oceanbase12blocksstable11ObRowWriter24append_special_val_arrayEl:200507 + 3: 800 + 4: 800 + 7: 831 + 7.1: 1514 + 7.3: 1514 + 12: 4 + 13: 1560 + 14: 1560 + 14.2: 3 + 15: 1560 + 16: 1560 + 17: 1560 + 19: 748 + 20: 826 + 28: _ZN9oceanbase12blocksstable20ObColClusterInfoMask19set_sparse_row_flagEb:14042 + 0: 826 + 29.3: _ZN9oceanbase12blocksstable20ObColClusterInfoMask23set_sparse_column_countEh:13056 + 0: 816 + 30.3: _ZN9oceanbase12blocksstable20ObColClusterInfoMask16set_column_countEh:3264 + 0: 816 + 28: _ZN9oceanbase12blocksstable11ObRowWriter10ObBitArrayILl133EE7set_valEll:75 + 2: 3 + 3: 3 + 4: 3 + 46.1: _ZN9oceanbase12blocksstable11ObRowWriter12append_arrayILl133EEEiRNS1_10ObBitArrayIXT_EEElRNS0_20ObColClusterInfoMask9BYTES_LENE:73610 + 7: 780 + 14: 780 + 15: 780 + 17.1: 816 + 19: 816 + 20: 832 + 10: _ZN9oceanbase12blocksstable11ObRowWriter10ObBitArrayILl133EE7get_valEl:6240 + 3: 780 + 11: _ZN9oceanbase12blocksstable11ObRowWriter13get_uint_byteEmRl:22620 + 3: 780 + 19: _ZN9oceanbase12blocksstable11ObRowWriter10ObBitArrayILl133EE17get_bit_array_ptrENS0_20ObColClusterInfoMask9BYTES_LENE:6528 + 3: 816 + 50.1: _ZN9oceanbase12blocksstable11ObRowHeader15set_offset_typeENS0_20ObColClusterInfoMask9BYTES_LENE:9449 + 7: 859 + 20: _ZN9oceanbase12blocksstable11ObRowHeader18set_single_clusterEb:12026 + 0: 859 +_ZN9oceanbase7storage14ObTabletHandleD2Ev:1796442:22975 + 1: 21534 + 2: 21694 + 2: _ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEED2Ev:1386176 + 1: 21534 + 2.1: 0 + 2: _ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE5resetEv:1084700 + 3: 21694 + 2: _ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE9reset_objEv:911148 + 2: 21534 + 3: 16042 + 4.1: 0 + 5: 0 + 7: 16042 + 8: 16042 + 9: 0 + 10.1: 16042 + 11.1: 0 + 13: 16160 + 7: _ZN9oceanbase7storage8ObTablet7dec_refEv:144378 + 2: 16042 +_ZN9oceanbase7storage14ObTabletHandleD1Ev:1796442:22975 + 1: 21534 + 2: 21694 + 2: _ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEED2Ev:1386176 + 1: 21534 + 2.1: 0 + 2: _ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE5resetEv:1084700 + 3: 21694 + 2: _ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE9reset_objEv:911148 + 2: 21534 + 3: 16042 + 4.1: 0 + 5: 0 + 7: 16042 + 8: 16042 + 9: 0 + 10.1: 16042 + 11.1: 0 + 13: 16160 + 7: _ZN9oceanbase7storage8ObTablet7dec_refEv:144378 + 2: 16042 +_ZN9oceanbase7obmysql24ObEasySqlRequestOperator15get_sql_sessionEPNS_3rpc9ObRequestE:1789182:34408 + 1: 33133 + 3: 33133 + 4: 33133 + 4.1: 33133 + 5: 33133 + 5.1: 33133 + 6: 33133 + 6.1: 33133 + 7.1: 0 + 9: 33133 + 11: 33133 + 3: _ZNK9oceanbase3rpc9ObRequest10get_ez_reqEv:231931 + 2: 33133 +_ZN9oceanbase3sql11ObResultSet7executeEv:1778991:5523 + 1: 5277 + 6: 5277 + 8.1: 516 + 9: 516 _ZN9oceanbase3sql11ObResultSet8open_cmdEv:541 + 18: 5152 + 3: _ZNK9oceanbase3sql15ObCacheObjGuard13get_cache_objEv:21108 + 2: 5277 + 7: _ZN9oceanbase3sql11ObResultSet9open_planEv:1485305 + 2: 4755 + 9: 4755 + 11: 4755 + 11.2: 4867 _ZN9oceanbase3sql13ObPxAdmission21enter_query_admissionERNS0_16ObSQLSessionInfoERNS0_13ObExecContextERNS0_14ObPhysicalPlanE:4971 + 16.1: 4800 + 16.2: 4610 _ZNK9oceanbase3lib6Worker10is_timeoutEv:4753 + 22: 7 + 23.1: 7 + 26.1: 4800 + 27: 4849 + 30: 4700 + 31.1: 4700 _ZN9oceanbase3sql11ObResultSet35transaction_set_violation_and_retryERiRl:4725 + 37: 4659 + 9: _ZNK9oceanbase3sql14ObPhysicalPlan13has_top_limitEv:28530 + 0: 4755 + 11: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:52305 + 0: 4755 + 0.2: 0 + 16.1: _ZN9oceanbase3lib6Worker4selfEv:129304 + 3: 4610 + 4: 7 + 30: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:54989 + 0: 4983 + 0.2: 22 + 30.1: _ZN9oceanbase3sql11ObResultSet12do_open_planERNS0_13ObExecContextE:865138 + 0: 22 + 2: 4943 + 3.1: 4624 + 3.2: 23 + 3.4: 22 + 3.5: 22 + 3.7: 23 + 3.8: 22 + 3.9: 23 + 4: 4692 + 5: 4692 _ZN9oceanbase3sql13ObExecContext12reset_op_envEv:4777 + 6: 4667 + 7: 4667 + 8: 4482 + 8.1: 4482 _ZN9oceanbase3sql13ObExecContext11init_phy_opEm:4696 + 9.1: 23 + 10.1: 4481 + 10.2: 4481 _ZN9oceanbase3sql13ObExecContext12init_expr_opEm:4483 + 11.1: 23 + 15: 22 + 16.1: 5073 _ZN9oceanbase3sql11ObResultSet10start_stmtEv:4973 + 17.1: 23 + 24: 5073 _ZN9oceanbase3sql10ObExecutor4initEPNS0_14ObPhysicalPlanE:5263 + 25.1: 23 + 26.1: 4800 _ZN9oceanbase3sql10ObExecutor12execute_planERNS0_13ObExecContextE:4816 + 27.1: 23 + 30.1: 4744 + 30.2: 23 + 30.4: 35 + 31: 4700 + 65137: 22 + 2: _ZNK9oceanbase3sql15ObCacheObjGuard13get_cache_objEv:19772 + 2: 4943 + 3.1: _ZN9oceanbase3lib20is_trace_log_enabledEv:37399 + 2: 4943 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:5041 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:32368 + 2: 4624 + 3.2: _ZN9oceanbase6common18get_trace_recorderEv:1377 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:1377 + 7: 22 + 8: 23 + 8.1: 23 + 3.4: _ZN9oceanbase3lib20is_trace_log_enabledEv:264 + 2: 22 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:154 + 2: 22 + 3.5: _ZN9oceanbase6common18get_trace_recorderEv:1536 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:1536 + 7: 22 + 8: 23 + 8.1: 23 + 3.8: _ZN9oceanbase6common18get_trace_recorderEv:1674 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:1674 + 7: 23 + 8: 23 + 8.1: 23 + 3.9: _ZN9oceanbase6common18get_trace_recorderEv:1127 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:1127 + 7: 23 + 8: 23 + 8.1: 23 + 3.10: _ZN9oceanbase6common18get_trace_recorderEv:1118 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:1118 + 7: 22 + 8: 23 + 8.1: 23 + 3.17: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl189ELl1600EE9add_eventERb:2329 + 2: 22 + 3.1: 23 + 7: 22 + 12: 22 + 13: 22 + 14: 22 + 3.18: _ZN9oceanbase6common18get_trace_recorderEv:1536 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:1536 + 7: 22 + 8: 23 + 8.1: 23 + 3.19: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl189ELl1600EE10check_lockEv:1044 + 2: 22 + 3: _ZN9oceanbase3lib7ObMutex4lockEv:736 + 0: 23 + 3.20: _ZN9oceanbase6common18get_trace_recorderEv:1555 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:1555 + 7: 23 + 8: 23 + 8.1: 23 + 3.22: _ZN9oceanbase6common18get_trace_recorderEv:1012 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:1012 + 7: 23 + 8: 23 + 8.1: 23 + 3.24: _ZN9oceanbase6common18get_trace_recorderEv:1400 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:1400 + 7: 23 + 8: 23 + 8.1: 23 + 10: 23 + 3.26: _ZN9oceanbase3sql14ObPhysicalPlan11get_plan_idEv:88 + 0: _ZNK9oceanbase3sql17ObILibCacheObject13get_object_idEv:88 + 0: 22 + 3.27: _ZN9oceanbase4yson24databuff_encode_elementsImEEiPclRltRKT_:2002 + 0.1: _ZN9oceanbase4yson23databuff_encode_elementImEEiPclRltRKT_:2002 + 3: 22 + 6: 22 + 7: 22 + 8: 22 + 9: 22 + 10: 22 + 11: 22 + 3.30: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl189ELl1600EE12check_unlockEv:550 + 2: 22 + 3: _ZN9oceanbase3lib7ObMutex6unlockEv:330 + 0: 22 + 8: _ZNK9oceanbase3sql14ObPhysicalPlan21get_phy_operator_sizeEv:26892 + 2: 4482 + 10.1: _ZNK9oceanbase3sql14ObPhysicalPlan22get_expr_operator_sizeEv:26886 + 2: 4481 + 30.1: _ZN9oceanbase3lib20is_trace_log_enabledEv:38109 + 2: 4673 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:4833 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:33208 + 2: 4744 + 30.2: _ZN9oceanbase6common18get_trace_recorderEv:1715 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:1715 + 7: 35 + 8: 23 + 8.1: 23 + 30.4: _ZN9oceanbase3lib20is_trace_log_enabledEv:420 + 2: 35 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:245 + 2: 35 + 30.5: _ZN9oceanbase6common18get_trace_recorderEv:1900 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:1900 + 7: 35 + 8: 23 + 8.1: 23 + 30.11: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl189ELl1600EE9add_eventEv:2590 + 2: 35 + 3.1: 7 + 6: 35 + 10: 35 + 11: 35 + 12: 35 + 30.12: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:147 + 0: 7 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:35 + 2: 7 + 16: _ZN9oceanbase3sql11ObResultSet11set_errcodeEi:36064 + 2: 5152 +_ZNK9oceanbase3sql18ObBasicSessionInfo31is_server_status_in_transactionEv:1776195:13994 + 1: 13441 + 2: 13441 + 2.1: 13441 _ZNK9oceanbase11transaction8ObTxDesc14can_free_routeEv:13681 + 2.2: 13640 + 3: 13640 + 11: 13640 + 12: 13640 + 12.1: 17 + 13: 13640 + 14.1: 17 + 15: 17 + 15.2: 17 + 15.3: 17 + 15.4: 17 + 16.2: 17 + 17: 17 + 18.1: 13812 _ZZNK9oceanbase3sql18ObBasicSessionInfo31is_server_status_in_transactionEvENK3$_0clEPKc.7d011f5114f8312fd0eb7b31f2639cf5:15032 + 20: 13631 + 11: _ZNK9oceanbase3sql18ObBasicSessionInfo20get_local_autocommitEv:477400 + 2: 13640 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache14get_autocommitEv:450120 + 0: 13640 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache14get_autocommitEb:313720 + 0: 13640 + 15.1: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:119 + 0: 17 + 16: _ZN9oceanbase3omt19ObTenantConfigGuardptEv:68 + 0: 17 +_ZN9oceanbase7storage19ObTableScanIterator4initERNS0_16ObTableScanParamERKNS0_14ObTabletHandleE:1769463:4445 + 1: 4338 + 2: 4338 + 4: 4338 + 5: 18 + 6.1: 18 + 7.2: 4399 + 8: 4530 + 8.1: 4530 _ZNK9oceanbase7storage16ObTableScanParam8is_validEv:4564 + 9: 4399 + 9.1: 4399 + 10: 18 + 11.1: 18 + 13.1: 4510 _ZN9oceanbase7storage16ObTableScanRange4initERNS0_16ObTableScanParamE:4571 + 14.1: 18 + 16: 4510 + 17: 4510 _ZN9oceanbase7storage14ObTabletHandleaSERKS1_:4559 + 18: 4732 + 19.1: 18 + 20.1: 4632 + 21.1: 18 + 22.1: 4632 _ZN9oceanbase7storage19ObTableScanIterator9open_iterEv:4684 + 23.1: 18 + 25: 4451 + 29: 4451 + 7.1: _ZNK9oceanbase7storage10ObStoreCtx8is_validEv:78084 + 2: 4338 + 2.1: 4338 _ZNK9oceanbase8memtable15ObMvccAccessCtx8is_validEv:4626 + 2: _ZNK9oceanbase5share6ObLSID8is_validEv:17352 + 0: 4338 + 9.1: _ZNK9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE8is_validEv:70384 + 2: 4399 + 2.1: 4399 + 18: _ZN9oceanbase7storage19ObTableScanIterator19prepare_table_paramERKNS0_14ObTabletHandleE:255379 + 2: 4503 + 3: 4503 + 3.1: 4503 + 4: 18 + 5.1: 18 + 6.1: 4732 _ZN9oceanbase7storage18ObTableAccessParam4initERKNS0_16ObTableScanParamERKNS0_14ObTabletHandleE:4590 + 7.1: 18 + 9: 18 + 20.1: _ZN9oceanbase7storage19ObTableScanIterator21prepare_table_contextEv:511692 + 2: 4732 + 3: 4732 + 3.1: 4732 + 4: 18 + 5.1: 18 + 7: 4732 _ZN9oceanbase6common14ObVersionRangeC1Ev:5042 + 9: 4746 + 10: 4746 + 12: 18 + 13.1: 18 + 14.1: 4746 + 14.2: 4746 _ZN9oceanbase7storage20ObTableAccessContext4initERNS0_16ObTableScanParamERNS0_10ObStoreCtxERKNS_6common14ObVersionRangeE:4779 + 15.1: 18 + 18: 4632 + 10.1: _ZNK9oceanbase8memtable15ObMvccAccessCtx20get_snapshot_versionEv:33222 + 1: 4746 + 11: _ZNK9oceanbase6common14ObVersionRange8is_validEv:42714 + 4.1: 4746 + 5: 4746 +_ZN9oceanbase3sql16ObDASWriteBuffer11try_add_rowERKNS_6common8ObIArrayIPNS0_6ObExprEEEPNS0_9ObEvalCtxElRbb:1754002:1054 + 5: 1016 + 6: 1016 + 7: 1016 + 8: 1028 + 8.1: 1005 _ZN9oceanbase3sql16ObDASWriteBuffer19init_dml_shadow_rowElb:1047 + 9.1: 3 + 12: 0 + 14: 3 + 15: 1048 + 16.1: 3 + 17.1: 1048 + 18.1: 3 + 21: 1017 + 8: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE5countEv:4020 + 0: 1005 + 15: _ZN9oceanbase3sql16ObDASWriteBuffer12DmlShadowRow11shadow_copyERKNS_6common8ObIArrayIPNS0_6ObExprEEERNS0_9ObEvalCtxE:608086 + 2: 1014 + 3: 1014 + 3.1: 1014 + 4: 0 + 5.1: 0 + 7: 1014 + 9.1: 2668 + 9.5: 2668 + 10: 2668 + 11.1: 0 + 12.1: 2668 + 12.2: 0 + 12.3: 0 + 13: 0 + 13.1: 0 + 14: 0 + 14.1: 0 + 16: 0 + 16.1: 0 + 17: 0 + 18.1: 0 + 19.1: 0 + 19.2: 0 + 20.1: 3 + 22: 0 + 25: 2668 + 27: 2668 + 28: 2668 + 31: 1048 + 33: 0 + 10: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:24756 + 6: 2640 + 10.1: _ZNK9oceanbase3sql6ObExpr4evalERNS0_9ObEvalCtxERPNS_6common7ObDatumE:115894 + 4: 2640 + 6: 2640 + 7: 2640 + 9: 2640 + 10: 2 + 10.1: 0 + 11: 2 + 13: 0 + 15.1: 2694 + 15.2: 1383 + 17: 0 + 18: 0 + 20: 0 + 21: 0 + 22: 0 + 24: 0 + 64778.1: 7 + 9: _ZNK9oceanbase3sql6ObExpr15is_batch_resultEv:10560 + 0: 2640 + 11: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:8 + 0: 2 + 24: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:0 + 0: 0 + 12.1: _ZN9oceanbase3lib14is_oracle_modeEv:117392 + 2: 2668 + 2: _ZN9oceanbase3lib15get_compat_modeEv:109388 + 2: 2668 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:66700 + 2: 2668 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 12.2: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:0 + 0: 0 + 13.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:0 + 6: 0 + 13.2: _ZNK9oceanbase6common9ObObjMeta14is_lob_locatorEv:0 + 0: 0 + 15: _ZN9oceanbase6common8ObStringC2Ev:0 + 1: 0 + 16.1: _ZNK9oceanbase6common12ObIArrayWrapINS0_9ObObjMetaEE2atEl:0 + 6: 0 + 16.2: _ZNK9oceanbase6common9ObObjMeta6is_lobEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:0 + 0: 0 + 19.1: _ZNK9oceanbase6common7ObDatum15get_lob_locatorEv:0 + 0: 0 + 22: _ZN9oceanbase6common7ObDatum10set_stringERKNS0_8ObStringE:0 + 0: 0 + 0: _ZNK9oceanbase6common8ObString3ptrEv:0 + 0: 0 + 0.1: _ZNK9oceanbase6common8ObString6lengthEv:0 + 0: 0 + 17.1: _ZN9oceanbase3sql16ObDASWriteBuffer11try_add_rowERKNS1_12DmlShadowRowElRb:982353 + 6: 1048 + 7: 1048 + 8: 1048 + 9: 1048 + 9.1: 0 + 9.2: 0 + 13: 0 + 14.1: 1048 + 20: 3 + 5: _ZNK9oceanbase3sql17ObChunkDatumStore15ShadowStoredRow13get_store_rowEv:4192 + 0: 1048 + 7: _ZN9oceanbase6common9EventItemC2Ev:17816 + 2: 1048 + 7.1: _ZN9oceanbase6common10EventTable8instanceEv:18038 + 2: 1048 + 2.1: 3 + 2.6: 3 + 2.2: _ZN9oceanbase6common10EventTableC2Ev:111 + 0: 3 + 2: 3 + 7.2: _ZN9oceanbase6common10EventTable9get_eventEl:32488 + 1.4: 1048 + 7.3: _ZNK9oceanbase6common9EventItem4callEv:39151 + 2: 1048 + 3: 1048 + 5.1: 3 + 7.1: 3 + 8: 3 + 9.1: 3 + 11: 3 + 12: 3 + 13.1: 3 + 18: 1048 + 9: _ZNK9oceanbase3sql16ObDASWriteBuffer12get_mem_usedEv:19912 + 2: 1048 + 2.1: _ZNK9oceanbase3sql17ObChunkDatumStore12get_mem_usedEv:0 + 0: 0 + 18: _ZN9oceanbase3sql16ObDASWriteBuffer16add_row_to_dlistERKNS0_17ObChunkDatumStore15ShadowStoredRowERb:805599 + 3: 1048 + 5: 1048 + 6: 1048 + 7.1: 3 + 9: 1042 + 10: 1042 + 11: 1042 + 13.1: 3 + 15: 1017 + 18: 1017 + 5: _ZNK9oceanbase3sql17ObChunkDatumStore15ShadowStoredRow13get_store_rowEv:4192 + 0: 1048 + 6: _ZN9oceanbase3sql16ObDASWriteBuffer18create_link_bufferElRPNS0_17ObChunkDatumStore9StoredRowE:245726 + 2: 1048 + 6: 1048 + 7: 1048 + 8: 0 + 9.1: 0 + 12: 1042 + 13: 1042 + 22: 1042 + 23: 1042 + 24: 1042 + 28: 0 + 7: _ZN9oceanbase6common18ObWrapperAllocator5allocElRKNS_3lib9ObMemAttrE:123810 + 2: 872 + 2.2: 872 + 2.2: _ZN9oceanbase6common16ObArenaAllocator5allocElRKNS_3lib9ObMemAttrE:94153 + 3: _ZN9oceanbase6common16ObArenaAllocator5allocEl:94153 + 0: 872 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13alloc_alignedEll:90665 + 3: 872 + 6: 0 + 7: 872 + 8: 872 + 10: 872 + 11: 872 + 12: 872 + 13: 872 + 15.1: 3 + 16: 3 + 18: 3 + 20: 3 + 28: 3 + 35: 872 + 36: 872 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE15ensure_cur_pageEv:11603 + 2: 872 + 3: 3 + 5.1: 3 + 8: 0 + 9: 3 + 10: 0 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:111 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 3 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:30 + 2: 0 + 3: 3 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:0 + 2: 0 + 2.2: 0 + 2.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 9: _ZSt3maxIlERKT_S2_S2_:0 + 5: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 8: _ZL12abort_unlessb:24 + 5: 0 + 6: 3 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:0 + 0: 0 + 7: _ZN9oceanbase6common16get_align_offsetEPvl:11336 + 3: 872 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:6104 + 0: 872 + 11: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:6104 + 7: 872 + 15.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE18is_normal_overflowEl:12 + 2: 3 + 16: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11extend_pageEl:192 + 4: 3 + 5: 3 + 8: 3 + 9: 3 + 10.1: 3 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:24 + 2: 3 + 12: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_tailEPNS3_4PageE:66 + 2: 3 + 3: 3 + 5: 3 + 23.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16lookup_next_pageEl:123 + 3.1: 3 + 4.1: 3 + 5: 3 + 5.1: 3 + 7: 3 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page10reuse_sizeEv:33 + 0: 3 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:12 + 2: 3 + 32: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9alloc_bigEl:0 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 3: 0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_headEPNS3_4PageE:0 + 4: 0 + 5: 0 + 7: 0 + 12: _ZN9oceanbase3sql17ObChunkDatumStore9StoredRowC2Ev:8336 + 0: 1042 + 11.1: _ZN9oceanbase3sql17ObChunkDatumStore9StoredRow18copy_shadow_datumsEPKNS_6common7ObDatumElPcllj:468373 + 7: 1042 + 12: 1042 + 13: 1042 + 14: 1042 + 15.1: 2705 + 15.3: 2705 + 15.5: 2705 + 16: 2705 + 17.1: 0 + 16.1: _ZN9oceanbase6common7ObDatum9deep_copyERKS1_PclRl:227480 + 3: 2666 + 4: 2666 + 5: 2666 + 8: 2666 + 9: 2705 + 10: 2705 +_ZN9oceanbase11transaction14ObTxExecResult5resetEv:1752864:10118 + 1: 9424 + 2: 9424 + 5: 9424 + 3: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction8ObTxPartELl4ENS0_19ModulePageAllocatorELb0EE5resetEv:904704 + 0: 9424 + 0: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction8ObTxPartELl4ENS0_19ModulePageAllocatorELb0EE7destroyEv:678528 + 4.1: 9424 + 4.3: 0 + 9: 9424 + 11: 0 + 13: 9424 + 15: 9424 + 24: 9424 + 5: _ZN9oceanbase11transaction8ObTxPartD2Ev:0 + 2: 0 + 6: 0 + 8: _ZN9oceanbase5share6ObLSIDD2Ev:0 + 0: _ZN9oceanbase5share6ObLSID5resetEv:0 + 0: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction8ObTxPartELl4ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: 0 + 4: _ZN9oceanbase6common11ObArrayImplINS_11transaction16ObTransIDAndAddrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE5resetEv:678528 + 0: 9424 + 0: _ZN9oceanbase6common11ObArrayImplINS_11transaction16ObTransIDAndAddrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE7destroyEv:452352 + 2: 9424 + 3.1: 0 + 3.3: 0 + 4: 0 + 6: 0 + 7: 0 + 9: 9424 + 11: 9424 + 4: _ZN9oceanbase11transaction16ObTransIDAndAddrD2Ev:0 + 0: _ZN9oceanbase11transaction9ObTransIDD2Ev:0 + 0: 0 +_ZN9oceanbase8memtable23ObIMemtableScanIterator12get_next_rowERPKNS_12blocksstable10ObDatumRowE:1736813:35693 + 0: 34527 + 2: 38127 _ZN9oceanbase8memtable22ObMemtableScanIterator18inner_get_next_rowERPKNS_12blocksstable10ObDatumRowE:34720 + 3.1: 37681 + 3.2: 0 + 3.3: 0 + 3.4: 0 + 3.6: 0 + 3.7: 0 + 5: 38690 + 3.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:187814 + 2: 37090 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:37714 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:150724 + 2: 37681 +_ZN9oceanbase6common12ObBucketLock6unlockEm:1733794:10995 + 1: 10297 + 2: 10297 + 3: 10297 + 4: 0 + 5.1: 0 + 6.1: 10297 + 7: 0 + 8.1: 0 + 9.1: 10297 + 10.1: 0 + 12: 10236 + 9.1: _ZNK9oceanbase6common12ObBucketLock19bucket_to_latch_idxEm:41188 + 2: 10297 + 9.2: _ZN9oceanbase6common7ObLatch6unlockEPKj:942328 + 2: 10297 + 3: 10297 + 5: 10297 + 12: 4711 + 14.1: 5078 + 15: 5078 + 17: 0 + 18.1: 0 + 20: 10236 + 21: 0 + 21.1: 0 + 22.1: 0 + 26: 0 + 6.1: _Z9ob_gettidv:240261 + 3: 4711 + 4: 0 + 2: _Z13get_tid_cachev:117775 + 7: 4711 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 +_ZN9oceanbase12blocksstable17ObTmpFileIOHandleD2Ev:1732738:3949 + 1: 3689 + 3: 3785 _ZN9oceanbase6common8ObIOFlagD1Ev:3972 + 3.1: 3 + 3.2: 3 + 3.6: 3 + 3.7: 3 + 3.8: 3 + 2: _ZN9oceanbase12blocksstable17ObTmpFileIOHandle5resetEv:625368 + 2.1: 3689 + 2.3: 3 + 3.1: 3 + 5.1: 3689 + 5.3: 3 + 6.1: 3 + 8: 3689 + 9: 3 + 9.2: 3 + 11.1: 3738 + 11.3: 3 + 14: 3738 + 15: 3 + 21: 3721 + 23: 3721 + 27: 3721 + 28: 3721 + 29: 3721 _ZN9oceanbase6common8ObIOFlag5resetEv:3800 + 30: 3785 + 5.1: _ZNK9oceanbase6common12ObIArrayWrapINS_12blocksstable17ObTmpFileIOHandle18ObBlockCacheHandleEE5countEv:25844 + 0: 3689 + 9.1: _ZNK9oceanbase6common12ObIArrayWrapINS_12blocksstable17ObTmpFileIOHandle18ObBlockCacheHandleEE5countEv:21 + 0: 3 + 11.1: _ZNK9oceanbase6common12ObIArrayWrapINS_12blocksstable17ObTmpFileIOHandle17ObPageCacheHandleEE5countEv:26187 + 0: 3738 + 12: _ZN9oceanbase6common12ObIArrayWrapINS_12blocksstable17ObTmpFileIOHandle17ObPageCacheHandleEE2atEl:21 + 6: 3 + 12.1: _ZN9oceanbase12blocksstable20ObTmpPageValueHandle5resetEv:54 + 2: 3 + 3: 3 + 15: _ZN9oceanbase12blocksstable14ObTmpFileStore12get_instanceEv:318 + 2: 3 + 2.1: 3 + 2.2: 3 + 2.3: 3 + 2.4: 3 + 2.6: 3 + 15.1: _ZNK9oceanbase6common12ObIArrayWrapINS_12blocksstable17ObTmpFileIOHandle17ObPageCacheHandleEE5countEv:21 + 0: 3 + 15.2: _ZN9oceanbase12blocksstable14ObTmpFileStore18dec_page_cache_numEml:204 + 3: 3 + 4: 3 + 5.1: 3 + 7: 3 + 7: _ZN9oceanbase12blocksstable20ObTmpTenantFileStore18dec_page_cache_numEl:24 + 1: 3 + 17: _ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable17ObTmpFileIOHandle14ObIOReadHandleELl1ENS0_19ModulePageAllocatorELb0EE5resetEv:26942 + 0: 3848 _ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable17ObTmpFileIOHandle14ObIOReadHandleELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:3958 + 18: _ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable17ObTmpFileIOHandle17ObPageCacheHandleELl1ENS0_19ModulePageAllocatorELb0EE5resetEv:26991 + 0: 3855 _ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable17ObTmpFileIOHandle17ObPageCacheHandleELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:3902 + 19: _ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable17ObTmpFileIOHandle18ObBlockCacheHandleELl1ENS0_19ModulePageAllocatorELb0EE5resetEv:29966 + 0: 3745 _ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable17ObTmpFileIOHandle18ObBlockCacheHandleELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:3837 + 3.3: _ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable17ObTmpFileIOHandle18ObBlockCacheHandleELl1ENS0_19ModulePageAllocatorELb0EED2Ev:334320 + 1: 3630 + 3.2: 3 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable17ObTmpFileIOHandle18ObBlockCacheHandleELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:268956 + 4.1: 3630 + 4.3: 3 + 5: 3 + 9: 3630 + 10: 3 + 11: 3 + 13: 3630 + 15: 3630 + 24: 3630 + 3.4: _ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable17ObTmpFileIOHandle17ObPageCacheHandleELl1ENS0_19ModulePageAllocatorELb0EED2Ev:334287 + 1: 3630 + 3.2: 3 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable17ObTmpFileIOHandle17ObPageCacheHandleELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:268923 + 4.1: 3630 + 4.3: 3 + 5: 3 + 9: 3630 + 10: 3 + 11: 3 + 13: 3630 + 15: 3630 + 24: 3630 + 3.5: _ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable17ObTmpFileIOHandle14ObIOReadHandleELl1ENS0_19ModulePageAllocatorELb0EED2Ev:243483 + 1: 3630 + 3.2: 3 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable17ObTmpFileIOHandle14ObIOReadHandleELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:189009 + 4.1: 3630 + 4.3: 3 + 5: 3 + 9: 3630 + 10: 3 + 11: 3 + 13: 3630 + 15: 3630 + 24: 3630 +_ZN9oceanbase12blocksstable17ObTmpFileIOHandleD1Ev:1732738:3949 + 1: 3689 + 3: 3785 _ZN9oceanbase6common8ObIOFlagD1Ev:3972 + 3.1: 3 + 3.2: 3 + 3.6: 3 + 3.7: 3 + 3.8: 3 + 2: _ZN9oceanbase12blocksstable17ObTmpFileIOHandle5resetEv:625368 + 2.1: 3689 + 2.3: 3 + 3.1: 3 + 5.1: 3689 + 5.3: 3 + 6.1: 3 + 8: 3689 + 9: 3 + 9.2: 3 + 11.1: 3738 + 11.3: 3 + 14: 3738 + 15: 3 + 21: 3721 + 23: 3721 + 27: 3721 + 28: 3721 + 29: 3721 _ZN9oceanbase6common8ObIOFlag5resetEv:3800 + 30: 3785 + 5.1: _ZNK9oceanbase6common12ObIArrayWrapINS_12blocksstable17ObTmpFileIOHandle18ObBlockCacheHandleEE5countEv:25844 + 0: 3689 + 9.1: _ZNK9oceanbase6common12ObIArrayWrapINS_12blocksstable17ObTmpFileIOHandle18ObBlockCacheHandleEE5countEv:21 + 0: 3 + 11.1: _ZNK9oceanbase6common12ObIArrayWrapINS_12blocksstable17ObTmpFileIOHandle17ObPageCacheHandleEE5countEv:26187 + 0: 3738 + 12: _ZN9oceanbase6common12ObIArrayWrapINS_12blocksstable17ObTmpFileIOHandle17ObPageCacheHandleEE2atEl:21 + 6: 3 + 12.1: _ZN9oceanbase12blocksstable20ObTmpPageValueHandle5resetEv:54 + 2: 3 + 3: 3 + 15: _ZN9oceanbase12blocksstable14ObTmpFileStore12get_instanceEv:318 + 2: 3 + 2.1: 3 + 2.2: 3 + 2.3: 3 + 2.4: 3 + 2.6: 3 + 15.1: _ZNK9oceanbase6common12ObIArrayWrapINS_12blocksstable17ObTmpFileIOHandle17ObPageCacheHandleEE5countEv:21 + 0: 3 + 15.2: _ZN9oceanbase12blocksstable14ObTmpFileStore18dec_page_cache_numEml:204 + 3: 3 + 4: 3 + 5.1: 3 + 7: 3 + 7: _ZN9oceanbase12blocksstable20ObTmpTenantFileStore18dec_page_cache_numEl:24 + 1: 3 + 17: _ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable17ObTmpFileIOHandle14ObIOReadHandleELl1ENS0_19ModulePageAllocatorELb0EE5resetEv:26942 + 0: 3848 _ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable17ObTmpFileIOHandle14ObIOReadHandleELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:3958 + 18: _ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable17ObTmpFileIOHandle17ObPageCacheHandleELl1ENS0_19ModulePageAllocatorELb0EE5resetEv:26991 + 0: 3855 _ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable17ObTmpFileIOHandle17ObPageCacheHandleELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:3902 + 19: _ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable17ObTmpFileIOHandle18ObBlockCacheHandleELl1ENS0_19ModulePageAllocatorELb0EE5resetEv:29966 + 0: 3745 _ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable17ObTmpFileIOHandle18ObBlockCacheHandleELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:3837 + 3.3: _ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable17ObTmpFileIOHandle18ObBlockCacheHandleELl1ENS0_19ModulePageAllocatorELb0EED2Ev:334320 + 1: 3630 + 3.2: 3 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable17ObTmpFileIOHandle18ObBlockCacheHandleELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:268956 + 4.1: 3630 + 4.3: 3 + 5: 3 + 9: 3630 + 10: 3 + 11: 3 + 13: 3630 + 15: 3630 + 24: 3630 + 3.4: _ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable17ObTmpFileIOHandle17ObPageCacheHandleELl1ENS0_19ModulePageAllocatorELb0EED2Ev:334287 + 1: 3630 + 3.2: 3 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable17ObTmpFileIOHandle17ObPageCacheHandleELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:268923 + 4.1: 3630 + 4.3: 3 + 5: 3 + 9: 3630 + 10: 3 + 11: 3 + 13: 3630 + 15: 3630 + 24: 3630 + 3.5: _ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable17ObTmpFileIOHandle14ObIOReadHandleELl1ENS0_19ModulePageAllocatorELb0EED2Ev:243483 + 1: 3630 + 3.2: 3 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable17ObTmpFileIOHandle14ObIOReadHandleELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:189009 + 4.1: 3630 + 4.3: 3 + 5: 3 + 9: 3630 + 10: 3 + 11: 3 + 13: 3630 + 15: 3630 + 24: 3630 +_ZN9oceanbase6common15ObKVCacheHandleC2Ev:1731800:62499 + 1: 61850 + 2: 61850 + 3: 61850 +_ZN9oceanbase6common15ObKVCacheHandleC1Ev:1731800:62499 + 1: 61850 + 2: 61850 + 3: 61850 +_ZN9oceanbase6common15ObWarningBufferaSERKS1_:1727849:5325 + 1: 5095 + 2: 5095 + 5: 5191 + 6: 0 + 9: 5113 + 10: 5113 + 13: 5113 + 3: _ZN9oceanbase6common15ObWarningBuffer5resetEv:290415 + 2: 5095 + 5: 5095 + 4: _ZN9oceanbase6common15ObWarningBuffer11WarningItem5resetEv:183420 + 2: 5095 + 3: 5095 + 5: 5095 + 8: 5095 + 4: _ZN9oceanbase6common11ObArrayImplINS0_15ObWarningBuffer11WarningItemENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE6assignERKNS0_8ObIArrayIS3_EE:509115 + 2: 5095 + 4: 5095 _ZN9oceanbase6common11ObArrayImplINS0_15ObWarningBuffer11WarningItemENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE5resetEv:5175 + 6: 5139 + 6.1: 5139 _ZN9oceanbase6common11ObArrayImplINS0_15ObWarningBuffer11WarningItemENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE7reserveEl:5264 + 7: 5243 + 8.1: 0 + 11: 5243 + 12.1: 5243 + 12.3: 5243 + 13: 0 + 14.1: 0 + 15: 0 + 18: 0 + 18.1: 5243 + 18.3: 5243 + 18.5: 3 + 19: 3 + 24: 5187 + 25: 5190 + 27: 5190 + 28: 3 + 5: _ZNK9oceanbase6common12ObIArrayWrapINS0_15ObWarningBuffer11WarningItemEE5countEv:20556 + 0: 5139 + 11: _ZSt3minIlERKT_S2_S2_:36701 + 5: 5243 + 13: _ZNK9oceanbase6common12ObIArrayWrapINS0_15ObWarningBuffer11WarningItemEE2atEl:0 + 6: 0 + 13.1: _ZN9oceanbase6common11copy_assignINS0_15ObWarningBuffer11WarningItemEEEiRT_RKS4_:0 + 2: 0 + 19.1: _ZN9oceanbase6common16construct_assignINS0_15ObWarningBuffer11WarningItemEEEiRT_RKS4_:54 + 2: _ZN9oceanbase6common21construct_assign_wrapINS0_15ObWarningBuffer11WarningItemEEEiRT_RKS4_NS0_8BoolTypeILb0EEE:54 + 2: 2 + 8: _ZN9oceanbase6common15ObWarningBuffer11WarningItemaSERKS2_:441678 + 3: 5191 + 4: 5399 + 5: 5399 + 6: 5399 + 7: 5399 + 8: 5399 + 9: 5399 +_ZN9oceanbase6common15ob_easy_reallocEPvm:1719876:10841 + 1: 10502 + 3: 10502 + 8: 4507 + 13: 4507 + 14: 4507 + 15: 4507 + 18: 4775 + 20: 5507 + 21.1: 12 + 23.2: 5343 + 26: 9971 + 4.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:105798 + 5: 4809 + 7: 4809 + 7: _ZN9oceanbase5obrpc13current_pcodeEv:13823 + 2: 4809 _ZTWN9oceanbase5obrpc7g_pcodeE:4881 + 12: _ZNK9oceanbase5obrpc14ObRpcPacketSet12idx_of_pcodeENS0_15ObRpcPacketCodeE:126196 + 3: 4507 + 4: 4507 + 12.1: _ZNK9oceanbase5obrpc14ObRpcPacketSet11name_of_idxEl:103661 + 3: 4507 + 4: 4507 + 12.2: _ZN9oceanbase3lib7ObLabelaSIPKcvEERS1_T_:18028 + 2: 4507 + 17: _ZN9oceanbase3lib13ObSwitchGuardIXadL_Z13get_tp_switchvEEEC2Eb:32908 + 2: 4692 _Z13get_tp_switchv:4677 + 3: 4775 _Z13get_tp_switchv:4762 + 18: _ZN9oceanbase6common10ob_reallocEPvlRKNS_3lib9ObMemAttrE:275767 + 3: 4775 + 4: 4775 _ZN9oceanbase3lib17ObMallocAllocator12get_instanceEv:5056 + 5: 4932 + 6: 4932 _ZN9oceanbase3lib17ObMallocAllocator7reallocEPKvlRKNS0_9ObMemAttrE:5338 + 7: 5664 + 8: 12 + 10: 12 + 11: 12 + 12: 12 + 14: 12 + 15.1: 12 + 9: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:108 + 2: 12 + 10: _ZSt3maxIlERKT_S2_S2_:144 + 5: 12 + 19: _ZN9oceanbase3lib13ObSwitchGuardIXadL_Z13get_tp_switchvEEED2Ev:16822 + 2: 5664 _Z13get_tp_switchv:5778 + 2.1: 5507 + 2.2: 12 + 19.1: _ZN9oceanbase3lib13ObSwitchGuardIXadL_Z13get_tp_switchvEEED2Ev:276 + 2: 12 + 2.1: 12 + 2.2: 12 + 24: _ZN9oceanbase6common7ob_freeEPv:137347 + 3: 5343 _ZN9oceanbase3lib17ObMallocAllocator12get_instanceEv:5397 + 4: 5184 + 5: 5184 _ZN9oceanbase3lib17ObMallocAllocator4freeEPv:5265 + 4: _ZL12abort_unlessb:31224 + 5: 5184 + 6: 12 +_ZN9oceanbase3sql16ObCandiTabletLocC2Ev:1696545:4465 + 3: 4189 + 4: 4189 + 5: 4189 + 1: _ZN9oceanbase3sql14ObOptTabletLocC2Ev:858745 + 2: 4189 + 3: 4189 + 5: 4189 + 6: 4189 + 0: _ZN9oceanbase6common10ObTabletIDC2Em:46079 + 0: 4189 + 4.1: _ZN9oceanbase6common9ObSEArrayINS_3sql13ObRoutePolicy16CandidateReplicaELl7ENS0_19ModulePageAllocatorELb1EECI2NS0_13ObSEArrayImplIS4_Ll7ES5_Lb1EEEERKNS_3lib7ObLabelEl:649295 + 0: 4189 + 0: _ZN9oceanbase6common13ObSEArrayImplINS_3sql13ObRoutePolicy16CandidateReplicaELl7ENS0_19ModulePageAllocatorELb1EEC2ERKNS_3lib7ObLabelEl:586460 + 2: 4189 + 5: 4189 + 6: 4189 + 8: 4189 + 18.1: 4189 + 2: _ZN9oceanbase6common8ObIArrayINS_3sql13ObRoutePolicy16CandidateReplicaEEC2EPS4_l:50268 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_3sql13ObRoutePolicy16CandidateReplicaEEC2EPS4_l:50268 + 0: 4189 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKNS_3lib7ObLabelEll:238773 + 3: 4189 + 4: 4189 + 5: 4189 + 6: 4189 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:104725 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:104725 + 2: 4189 + 8: 4189 + 3: _ZN9oceanbase6common9ObSEArrayIlLl2ENS0_19ModulePageAllocatorELb1EEC2Ev:565515 + 0.1: 4189 + 0.5: _ZN9oceanbase6common13ObSEArrayImplIlLl2ENS0_19ModulePageAllocatorELb1EEC2ElRKS2_:490113 + 5: 4189 + 6: 4189 + 8: 4189 + 17.1: 4189 + 2: _ZN9oceanbase6common8ObIArrayIlEC2EPll:75402 + 0: _ZN9oceanbase6common12ObIArrayWrapIlEC2EPll:75402 + 0: 4189 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:163371 + 0: 4189 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:75402 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:75402 + 2: 4189 + 8: 4189 +_ZN9oceanbase3sql16ObCandiTabletLocC1Ev:1696545:4465 + 3: 4189 + 4: 4189 + 5: 4189 + 1: _ZN9oceanbase3sql14ObOptTabletLocC2Ev:858745 + 2: 4189 + 3: 4189 + 5: 4189 + 6: 4189 + 0: _ZN9oceanbase6common10ObTabletIDC2Em:46079 + 0: 4189 + 4.1: _ZN9oceanbase6common9ObSEArrayINS_3sql13ObRoutePolicy16CandidateReplicaELl7ENS0_19ModulePageAllocatorELb1EECI2NS0_13ObSEArrayImplIS4_Ll7ES5_Lb1EEEERKNS_3lib7ObLabelEl:649295 + 0: 4189 + 0: _ZN9oceanbase6common13ObSEArrayImplINS_3sql13ObRoutePolicy16CandidateReplicaELl7ENS0_19ModulePageAllocatorELb1EEC2ERKNS_3lib7ObLabelEl:586460 + 2: 4189 + 5: 4189 + 6: 4189 + 8: 4189 + 18.1: 4189 + 2: _ZN9oceanbase6common8ObIArrayINS_3sql13ObRoutePolicy16CandidateReplicaEEC2EPS4_l:50268 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_3sql13ObRoutePolicy16CandidateReplicaEEC2EPS4_l:50268 + 0: 4189 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKNS_3lib7ObLabelEll:238773 + 3: 4189 + 4: 4189 + 5: 4189 + 6: 4189 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:104725 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:104725 + 2: 4189 + 8: 4189 + 3: _ZN9oceanbase6common9ObSEArrayIlLl2ENS0_19ModulePageAllocatorELb1EEC2Ev:565515 + 0.1: 4189 + 0.5: _ZN9oceanbase6common13ObSEArrayImplIlLl2ENS0_19ModulePageAllocatorELb1EEC2ElRKS2_:490113 + 5: 4189 + 6: 4189 + 8: 4189 + 17.1: 4189 + 2: _ZN9oceanbase6common8ObIArrayIlEC2EPll:75402 + 0: _ZN9oceanbase6common12ObIArrayWrapIlEC2EPll:75402 + 0: 4189 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:163371 + 0: 4189 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:75402 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:75402 + 2: 4189 + 8: 4189 +_ZNK9oceanbase8keybtree9BtreeNode7get_tagEiPNS0_11MultibitSetE:1696034:35343 + 1: 35292 + 2: 36727 + 2: _ZNK9oceanbase8keybtree9BtreeNode12get_real_posEiPNS0_11MultibitSetE:211752 + 2: 35292 + 3: 0 + 3.2: 0 + 3.3: 0 + 2: _ZNK9oceanbase8keybtree9BtreeNode7is_leafEv:176460 + 0: 35292 + 3.1: _ZNK9oceanbase8keybtree11MultibitSet2atEi:0 + 4: _ZN9oceanbase8keybtree11MultibitSet4loadERKS1_:0 + 0: 0 + 3.2: _ZNK9oceanbase8keybtree11MultibitSet2atEi:0 + 4: _ZN9oceanbase8keybtree11MultibitSet4loadERKS1_:0 + 0: 0 +_ZN9oceanbase11transaction14ObPartTransCtx13init_log_cbs_ERKNS_5share6ObLSIDERKNS0_9ObTransIDE:1691091:331 + 1: 289 + 2: 289 + 3.1: 8512 + 3.3: 8512 + 4: 8512 + 5.1: 0 + 7: 0 + 8.1: 0 + 11: 257 + 12: 257 + 13.1: 0 + 18: 257 + 4: _ZN9oceanbase11transaction9ObTxLogCb4initERKNS_5share6ObLSIDERKNS0_9ObTransIDEPNS0_10ObTransCtxE:783104 + 5: 8512 + 6.1: 0 + 8.1: 8512 + 8.2: 8512 + 9.1: 0 + 12: 8512 + 15: 8512 + 16: 8512 + 17: 8512 + 8.1: _ZNK9oceanbase5share6ObLSID8is_validEv:34048 + 0: 8512 + 13: _ZN9oceanbase5share6ObLSIDaSERKS1_:68096 + 0: 8512 + 14: _ZN9oceanbase11transaction9ObTransIDaSERKS1_:68096 + 1: 8512 + 6.1: _ZN9oceanbase6common7ObDListINS_11transaction9ObTxLogCbEE8add_lastEPS3_:504231 + 6.1: 8512 + 6.2: 8512 + 6.3: 8512 + 9.1: 0 + 13: 8512 + 12: _ZN9oceanbase6common11ObDLinkBaseINS_11transaction9ObTxLogCbEE10add_beforeEPS3_:240359 + 2: 8512 + 2: _ZN9oceanbase6common11ObDLinkBaseINS_11transaction9ObTxLogCbEE3addEPS3_S5_S5_:178752 + 2: 8512 + 3: 8512 + 4: 8512 + 5: 8512 + 12: _ZN9oceanbase11transaction9ObTxLogCb4initERKNS_5share6ObLSIDERKNS0_9ObTransIDEPNS0_10ObTransCtxE:24158 + 5: 257 + 6.1: 0 + 8.1: 257 + 8.2: 257 + 9.1: 0 + 12: 257 + 15: 257 + 16: 257 + 17: 257 + 8.1: _ZNK9oceanbase5share6ObLSID8is_validEv:1028 + 0: 257 + 13: _ZN9oceanbase5share6ObLSIDaSERKS1_:2570 + 0: 257 + 14: _ZN9oceanbase11transaction9ObTransIDaSERKS1_:2570 + 1: 257 +_ZNK9oceanbase6common11ObAllocator4usedEv:1685931:130701 + 1: 129687 + 2: 129687 + 2: _ZNK9oceanbase3lib9ObjectSet15get_alloc_bytesEv:907809 + 2: 129687 +_ZN9oceanbase6common14ObTscTimestamp12current_timeEv:1675040:30361 + 1: 28880 + 2: 28880 + 4: 28880 + 7: 0 + 8: 0 + 9.1: 0 + 11: 0 + 14: 28880 + 16: 28880 + 13: _ZL5rdtscv:433200 + 3: 28880 + 4: 28880 +_ZN9oceanbase12blocksstable23ObIMicroBlockFlatReader11find_bound_ERKNS0_13ObDatumRowkeyEbllRKNS_7storage15ObTableReadInfoERlRb:1674208:2108 + 8: 2007 + 9: 2007 + 10: 2007 + 11: 2007 + 12: 2007 + 12.1: 2007 + 12.2: 2007 + 13: 29 + 14.1: 29 + 19: 2007 + 26: 2007 + 31: 1987 + 32.1: 29 + 34.1: 1987 + 37: 1987 + 27: _ZSt11lower_boundIN9oceanbase12blocksstable18ObRowIndexIteratorENS1_13ObDatumRowkeyENS1_14PreciseCompareINS1_11ObRowReaderEEEET_S7_S7_RKT0_T1_:737449 + 14: 1047 + 13.1: _ZSt13__lower_boundIN9oceanbase12blocksstable18ObRowIndexIteratorENS1_13ObDatumRowkeyEN9__gnu_cxx5__ops14_Iter_comp_valINS1_14PreciseCompareINS1_11ObRowReaderEEEEEET_SB_SB_RKT0_T1_:708133 + 8.1: 7169 + 10: 6803 + 13: 7090 + 64645: 94 + 13: _ZN9__gnu_cxx5__ops14_Iter_comp_valIN9oceanbase12blocksstable14PreciseCompareINS3_11ObRowReaderEEEEclINS3_18ObRowIndexIteratorEKNS3_13ObDatumRowkeyEEEbT_RT0_:533701 + 1.1: _ZN9oceanbase12blocksstable14PreciseCompareINS0_11ObRowReaderEEclElRKNS0_13ObDatumRowkeyE:533701 + 2: _ZN9oceanbase12blocksstable14PreciseCompareINS0_11ObRowReaderEE7compareElRKNS0_13ObDatumRowkeyEb:533701 + 3: 6049 + 4: 6803 + 5: 6803 + 7.1: 7251 _ZN9oceanbase12blocksstable11ObRowReader19compare_meta_rowkeyERKNS0_13ObDatumRowkeyERKNS_7storage15ObTableReadInfoEPKclRi:7316 + 13.1: 19 + 15: 7090 + 18: 7251 + 18.1: 99 + 19: 94 + 29: _ZSt11upper_boundIN9oceanbase12blocksstable18ObRowIndexIteratorENS1_13ObDatumRowkeyENS1_14PreciseCompareINS1_11ObRowReaderEEEET_S7_S7_RKT0_T1_:668421 + 14: 977 + 13.1: _ZSt13__upper_boundIN9oceanbase12blocksstable18ObRowIndexIteratorENS1_13ObDatumRowkeyEN9__gnu_cxx5__ops14_Val_comp_iterINS1_14PreciseCompareINS1_11ObRowReaderEEEEEET_SB_SB_RKT0_T1_:641065 + 8.1: 3469 + 10: 6269 + 13: 6542 + 13: _ZN9__gnu_cxx5__ops14_Val_comp_iterIN9oceanbase12blocksstable14PreciseCompareINS3_11ObRowReaderEEEEclIKNS3_13ObDatumRowkeyENS3_18ObRowIndexIteratorEEEbRT_T0_:473605 + 1.1: _ZN9oceanbase12blocksstable14PreciseCompareINS0_11ObRowReaderEEclERKNS0_13ObDatumRowkeyEl:473605 + 2: _ZN9oceanbase12blocksstable14PreciseCompareINS0_11ObRowReaderEE7compareElRKNS0_13ObDatumRowkeyEb:473605 + 3: 5490 + 4: 6269 + 5: 6269 + 7.1: 6597 _ZN9oceanbase12blocksstable11ObRowReader19compare_meta_rowkeyERKNS0_13ObDatumRowkeyERKNS_7storage15ObTableReadInfoEPKclRi:6574 + 13.1: 29 + 15: 6542 + 18: 6597 + 18.1: 44 + 19: 44 +_ZN9oceanbase5share11ObQSyncLock6rdlockEv:1630616:10746 + 1: 10056 + 3: 10215 + 7: 10057 + 8: 0 + 15: 10057 + 6: _ZN9oceanbase6common7ObQSync11acquire_refEv:885016 + 2: 10057 + 3: 10057 + 4: 10057 + 5.1: 0 + 7: 10057 + 2: _ZN9oceanbase6common8get_itidEv:241368 + 4: 10057 + 5: 0 + 6: 0 + 8: 0 + 3: _ZN9oceanbase6common7ObQSync7add_refEll:231311 + 6: 10057 +obsql_mysql_yyparse:1613975:558 + 7: 534 + 65: 534 + 72: 507 + 74: 534 + 80.1: 534 + 80.2: 0 + 91: 0 + 92: 0 + 93: 0 + 97: 534 + 109: 3029 + 112: 3579 + 114: 3579 + 147: 0 + 149: 0 + 150: 0 + 156: 0 + 157: 0 + 159.1: 0 + 160.1: 0 + 161.1: 0 + 163: 0 + 164: 0 + 169: 0 + 171: 0 + 173.1: 0 + 173.2: 0 + 176: 0 + 180.1: 3579 + 180.2: 0 + 182: 3579 + 196: 3579 + 197: 3579 + 203: 1560 + 205.1: 1051 + 205.2: 0 + 206: 1051 obsql_mysql_yylex:1076 + 209: 1583 + 212.1: 1583 + 212.2: 0 + 216: 1535 + 216.1: 1535 + 217.1: 1535 + 217.2: 0 + 217.5: 0 + 217.6: 0 + 222: 1535 + 223: 1535 + 223.2: 1535 + 225: 1016 + 226: 1016 + 228: 0 + 230: 0 + 236: 1016 + 240.1: 1016 + 240.2: 0 + 240.5: 0 + 240.6: 0 + 246: 1016 + 247: 1016 + 255: 2554 + 256: 2554 + 266: 2554 + 276: 2554 + 279.1: 2554 + 279.2: 2027 + 279.3: 2585 + 280.1: 2585 + 280.2: 1 + 281: 2604 + 23848.1: 493 + 23848.2: 0 + 23848.3: 510 merge_tree:499 + 23848.4: 0 + 23848.7: 0 + 23848.8: 0 + 23849: 510 + 23872: 0 + 23886: 0 + 23887: 0 + 23888: 0 + 23888.1: 0 + 23888.2: 0 + 23889: 0 + 23889.1: 0 + 23890: 0 + 23890.1: 0 + 23940.1: 0 + 23940.2: 0 + 23940.4: 0 + 23997: 0 + 23998: 0 + 23999: 0 + 24001: 0 + 24002: 0 + 24004: 0 + 24005: 0 + 24008.1: 0 + 24052: 0 + 24055.1: 0 + 24055.2: 0 + 24055.3: 0 + 24055.4: 0 + 24055.5: 0 + 24055.6: 0 + 24060.1: 0 + 24061.1: 0 + 24062.3: 0 + 24062.4: 0 + 24062.13: 0 + 24062.14: 0 + 24062.16: 0 + 24062.25: 0 + 24062.26: 0 + 24062.27: 0 + 24062.34: 0 + 24062.35: 0 + 24062.36: 0 + 24062.45: 0 + 24063.1: 0 + 24063.3: 0 + 24063.4: 0 + 24063.13: 0 + 24063.14: 0 + 24063.22: 0 + 24064: 0 + 24070: 0 + 24073.1: 0 + 24073.2: 0 + 24073.3: 0 + 24073.4: 0 + 24073.5: 0 + 24073.6: 0 + 24080.1: 0 + 24081.1: 0 + 24081.3: 0 + 24081.4: 0 + 24081.5: 0 + 24081.13: 0 + 24081.14: 0 + 24081.22: 0 + 24083.1: 0 + 24084.1: 0 + 24085.3: 0 + 24085.4: 0 + 24085.5: 0 + 24085.13: 0 + 24085.14: 0 + 24085.16: 0 + 24085.25: 0 + 24085.26: 0 + 24085.27: 0 + 24085.34: 0 + 24085.35: 0 + 24085.36: 0 + 24085.37: 0 + 24085.45: 0 + 24086.1: 0 + 24086.3: 0 + 24086.4: 0 + 24086.5: 0 + 24086.13: 0 + 24086.22: 0 + 24087: 0 + 24095.1: 0 + 24096.1: 0 + 24096.3: 0 + 24096.4: 0 + 24096.13: 0 + 24096.14: 0 + 24096.22: 0 + 24098.1: 0 + 24098.5: 0 + 24098.13: 0 + 24098.15: 0 + 24098.16: 0 + 24098.24: 0 + 24098.35: 0 + 24098.37: 0 + 24098.40: 0 + 24098.41: 0 + 24098.50: 0 + 24103.1: 0 + 24104.1: 0 + 24104.3: 0 + 24104.4: 0 + 24104.13: 0 + 24104.22: 0 + 24106: 0 + 24107: 0 + 24107.1: 0 + 24108.13: 0 + 24108.27: 0 + 24108.30: 0 + 24108.31: 0 + 24108.40: 0 + 24108.42: 0 + 24108.50: 0 + 24116.2: 0 + 24116.16: 0 + 24116.17: 0 + 24116.26: 0 + 24116.27: 0 + 24116.29: 0 + 24116.38: 0 + 24116.39: 0 + 24116.40: 0 + 24116.47: 0 + 24124.2: 0 + 24124.16: 0 + 24124.17: 0 + 24124.26: 0 + 24124.27: 0 + 24124.29: 0 + 24124.38: 0 + 24124.39: 0 + 24124.40: 0 + 24124.47: 0 + 24124.48: 0 + 24124.49: 0 + 24124.58: 0 + 24124.63: 0 + 24125.2: 0 + 24125.16: 0 + 24125.17: 0 + 24125.26: 0 + 24125.27: 0 + 24125.29: 0 + 24125.38: 0 + 24125.39: 0 + 24125.40: 0 + 24125.47: 0 + 24132.1: 0 + 24133.1: 0 + 24138.1: 0 + 24144.2: 0 + 24144.16: 0 + 24144.17: 0 + 24144.26: 0 + 24144.27: 0 + 24144.29: 0 + 24144.38: 0 + 24144.39: 0 + 24144.40: 0 + 24144.47: 0 + 24144.48: 0 + 24144.49: 0 + 24144.58: 0 + 24144.63: 0 + 24145.1: 0 + 24152.2: 0 + 24152.16: 0 + 24152.17: 0 + 24152.26: 0 + 24152.27: 0 + 24152.29: 0 + 24152.38: 0 + 24152.39: 0 + 24152.40: 0 + 24152.47: 0 + 24152.48: 0 + 24152.49: 0 + 24152.58: 0 + 24152.63: 0 + 24153.2: 0 + 24153.16: 0 + 24153.17: 0 + 24153.26: 0 + 24153.27: 0 + 24153.29: 0 + 24153.38: 0 + 24153.39: 0 + 24153.40: 0 + 24153.47: 0 + 24153.48: 0 + 24153.49: 0 + 24153.58: 0 + 24153.63: 0 + 24154.1: 0 + 24160.1: 0 + 24161.1: 0 + 24166.1: 0 + 24172.2: 0 + 24172.16: 0 + 24172.17: 0 + 24172.26: 0 + 24172.27: 0 + 24172.29: 0 + 24172.38: 0 + 24172.39: 0 + 24172.40: 0 + 24172.47: 0 + 24180.2: 0 + 24180.16: 0 + 24180.17: 0 + 24180.26: 0 + 24180.27: 0 + 24180.29: 0 + 24180.38: 0 + 24180.39: 0 + 24180.40: 0 + 24180.47: 0 + 24180.48: 0 + 24180.49: 0 + 24180.58: 0 + 24180.63: 0 + 24181.2: 0 + 24181.16: 0 + 24181.17: 0 + 24181.26: 0 + 24181.27: 0 + 24181.29: 0 + 24181.38: 0 + 24181.39: 0 + 24181.40: 0 + 24181.47: 0 + 24187: 0 + 24189.2: 0 + 24189.16: 0 + 24189.17: 0 + 24189.26: 0 + 24189.27: 0 + 24189.29: 0 + 24189.38: 0 + 24189.39: 0 + 24189.40: 0 + 24189.47: 0 + 24196: 0 + 24201: 0 + 24203.2: 0 + 24203.16: 0 + 24203.17: 0 + 24203.26: 0 + 24203.27: 0 + 24203.29: 0 + 24203.38: 0 + 24203.39: 0 + 24203.40: 0 + 24203.47: 0 + 24210: 0 + 24219.1: 0 + 24220: 0 + 24221: 0 + 24222: 0 + 24223: 0 + 24224: 0 + 24225: 0 + 24229.1: 0 + 24238.1: 0 + 24247.1: 0 + 24249.3: 0 + 24251.2: 0 + 24251.13: 0 + 24252.1: 0 + 24259.1: 0 + 24260: 0 + 24268.1: 0 + 24269: 0 + 24277.1: 0 + 24278: 0 + 24286.1: 0 + 24287: 0 + 24295.1: 0 + 24296: 0 + 24304.1: 0 + 24305: 0 + 24306: 0 + 24307: 0 + 24324: 0 + 24325: 0 + 24364: 0 + 24369: 0 + 24370: 0 + 24371: 0 + 24372: 0 + 24373: 0 + 24374: 0 + 24375: 0 + 24384: 0 + 24385.1: 0 + 24391.1: 0 + 24398.1: 0 + 24399: 0 + 24404.1: 0 + 24411.1: 0 + 24412.1: 0 + 24418.1: 0 + 24425.1: 0 + 24426.1: 0 + 24432.1: 0 + 24439.1: 0 + 24440.1: 0 + 24446.1: 0 + 24452.1: 0 + 24459.1: 0 + 24460.1: 0 + 24466.1: 0 + 24473.1: 0 + 24474.1: 0 + 24480.1: 0 + 24487.1: 0 + 24488.1: 0 + 24507.1: 0 + 24512.1: 0 + 24517.1: 0 + 24521.1: 0 + 24531.2: 0 + 24531.13: 0 + 24532.2: 0 + 24532.13: 0 + 24533.1: 0 + 24534.1: 0 + 24535.1: 0 + 24536.1: 0 + 24537.1: 0 + 24542.1: 0 + 24547: 0 + 24547.1: 0 + 24547.2: 0 + 24549.1: 0 + 24550: 0 + 24551: 0 + 24552.1: 0 + 24554.1: 0 + 24561.1: 0 + 24567: 0 + 24567.1: 0 + 24567.2: 0 + 24569.1: 0 + 24570: 0 + 24571: 0 + 24572.1: 0 + 24574.1: 0 + 24579.1: 0 + 24584.1: 0 + 24590.2: 0 + 24590.13: 0 + 24592.1: 0 + 24594.3: 0 + 24595.1: 0 + 24608.1: 0 + 24614.1: 0 + 24620.1: 0 + 24626.1: 0 + 24632.1: 0 + 24638.1: 0 + 24644.1: 0 + 24651.1: 0 + 24660.1: 0 + 24669.1: 0 + 24670.2: 0 + 24670.13: 0 + 24677.1: 0 + 24683.1: 0 + 24701.1: 0 + 24707.1: 0 + 24723.1: 0 + 24724.2: 0 + 24724.13: 0 + 24725.1: 0 + 24730.1: 0 + 24731: 0 + 24735: 0 + 24738.1: 0 + 24739.2: 0 + 24739.13: 0 + 24740.1: 0 + 24746.1: 0 + 24750.1: 0 + 24754: 0 + 24754.1: 0 + 24761: 0 + 24763.1: 0 + 24763.2: 0 + 24763.10: 0 + 24764: 0 + 24765: 0 + 24766: 0 + 24767: 0 + 24771: 0 + 24772: 0 + 24773: 0 + 24774: 0 + 24775: 0 + 24776: 0 + 24777: 0 + 24778: 0 + 24781: 0 + 24782: 0 + 24786: 0 + 24787: 0 + 24788: 0 + 24789: 0 + 24790: 0 + 24791.1: 0 + 24795.1: 0 + 24800.1: 0 + 24805.1: 0 + 24810: 0 + 24826: 0 + 24827: 0 + 24829.1: 0 + 24848.1: 0 + 24854.2: 0 + 24854.13: 0 + 24856.1: 0 + 24858.3: 0 + 24859.1: 0 + 24860.12: 0 + 24860.14: 0 + 24860.15: 0 + 24860.23: 0 + 24865.2: 0 + 24865.13: 0 + 24867.1: 0 + 24869.3: 0 + 24870.1: 0 + 24872.2: 0 + 24872.13: 0 + 24872.14: 0 + 24873.3: 0 + 24874.1: 0 + 24875.12: 0 + 24875.14: 0 + 24875.15: 0 + 24875.23: 0 + 24875.25: 0 + 24881.1: 0 + 24882: 0 + 24883.3: 0 + 24883.4: 0 + 24883.13: 0 + 24883.14: 0 + 24883.16: 0 + 24883.25: 0 + 24883.26: 0 + 24883.27: 0 + 24883.34: 0 + 24888.1: 0 + 24889: 0 + 24890.3: 0 + 24890.4: 0 + 24890.13: 0 + 24890.14: 0 + 24890.16: 0 + 24890.25: 0 + 24890.26: 0 + 24890.27: 0 + 24890.34: 0 + 24895.1: 0 + 24896: 0 + 24897.3: 0 + 24897.4: 0 + 24897.13: 0 + 24897.14: 0 + 24897.16: 0 + 24897.25: 0 + 24897.26: 0 + 24897.27: 0 + 24897.34: 0 + 24902.1: 0 + 24903: 0 + 24904.3: 0 + 24904.4: 0 + 24904.13: 0 + 24904.14: 0 + 24904.16: 0 + 24904.25: 0 + 24904.26: 0 + 24904.27: 0 + 24904.34: 0 + 24909.1: 0 + 24910: 0 + 24911.3: 0 + 24911.4: 0 + 24911.13: 0 + 24911.14: 0 + 24911.16: 0 + 24911.25: 0 + 24911.26: 0 + 24911.27: 0 + 24911.34: 0 + 24916.1: 0 + 24917: 0 + 24918.3: 0 + 24918.4: 0 + 24918.13: 0 + 24918.14: 0 + 24918.16: 0 + 24918.25: 0 + 24918.26: 0 + 24918.27: 0 + 24918.34: 0 + 24918.35: 0 + 24923.1: 0 + 24924: 0 + 24925.3: 0 + 24925.4: 0 + 24925.13: 0 + 24925.14: 0 + 24925.16: 0 + 24925.25: 0 + 24925.26: 0 + 24925.27: 0 + 24925.34: 0 + 24931.1: 0 + 24932: 0 + 24933.3: 0 + 24933.4: 0 + 24933.13: 0 + 24933.14: 0 + 24933.16: 0 + 24933.25: 0 + 24933.26: 0 + 24933.27: 0 + 24933.34: 0 + 24943.1: 0 + 24944.1: 0 + 24945: 0 + 24946.3: 0 + 24946.4: 0 + 24946.13: 0 + 24946.14: 0 + 24946.16: 0 + 24946.25: 0 + 24946.26: 0 + 24946.27: 0 + 24946.34: 0 + 24953.1: 0 + 24954.1: 0 + 24955: 0 + 24956.3: 0 + 24956.4: 0 + 24956.13: 0 + 24956.14: 0 + 24956.16: 0 + 24956.25: 0 + 24956.26: 0 + 24956.27: 0 + 24956.34: 0 + 24961: 0 + 24962: 0 + 24963: 0 + 24963.1: 0 + 24965.1: 0 + 24965.2: 0 + 24966.1: 0 + 24966.3: 0 + 24966.4: 0 + 24966.13: 0 + 24966.14: 0 + 24966.16: 0 + 24966.25: 0 + 24966.26: 0 + 24966.27: 0 + 24966.34: 0 + 24966.35: 0 + 24966.36: 0 + 24966.45: 0 + 24971: 0 + 24972.1: 0 + 24990.1: 0 + 25008.1: 0 + 25008.3: 0 + 25014.1: 0 + 25014.2: 0 + 25014.3: 0 + 25015.1: 0 + 25024.1: 0 + 25025.1: 0 + 25030.1: 0 + 25031.1: 0 + 25037.1: 0 + 25039.1: 0 + 25039.3: 0 + 25040.1: 0 + 25041.1: 0 + 25046.1: 0 + 25046.3: 0 + 25047.1: 0 + 25053.1: 0 + 25053.3: 0 + 25054.1: 0 + 25059.1: 0 + 25064.1: 0 + 25069.1: 0 + 25074.1: 0 + 25079.1: 0 + 25084.1: 0 + 25089.1: 0 + 25104.1: 0 + 25109.1: 0 + 25114.1: 0 + 25119.1: 0 + 25124.1: 0 + 25143.1: 0 + 25148.1: 0 + 25153.1: 0 + 25158.1: 0 + 25163.1: 0 + 25168.1: 0 + 25169.1: 0 + 25173: 0 + 25174: 0 + 25179: 0 + 25180: 0 + 25185: 0 + 25186: 0 + 25191: 0 + 25192: 0 + 25197.1: 0 + 25202.1: 0 + 25207.1: 0 + 25215.1: 0 + 25220.1: 0 + 25237.1: 0 + 25242.1: 0 + 25250: 0 + 25260.1: 0 + 25264.1: 0 + 25272.1: 0 + 25273.3: 0 + 25274.1: 0 + 25280.1: 0 + 25281.3: 0 + 25282.1: 0 + 25287.1: 0 + 25287.3: 0 + 25288.1: 0 + 25295.1: 0 + 25306.1: 0 + 25311.1: 0 + 25320.1: 0 + 25320.3: 0 + 25331.1: 0 + 25338.1: 0 + 25339: 0 + 25339.1: 0 + 25339.10: 0 + 25346.1: 0 + 25355.1: 0 + 25355.3: 0 + 25390.1: 0 + 25395.1: 0 + 25402.1: 0 + 25407.1: 0 + 25408: 0 + 25408.1: 0 + 25408.10: 0 + 25409: 0 + 25415.1: 0 + 25420.1: 0 + 25442.1: 0 + 25448.1: 0 + 25454.2: 0 + 25467.1: 0 + 25473.1: 0 + 25474.1: 0 + 25478.1: 0 + 25479.1: 0 + 25500.1: 0 + 25500.3: 0 + 25501.1: 0 + 25506.1: 0 + 25506.3: 0 + 25507.1: 0 + 25511.1: 0 + 25515.1: 0 + 25519.1: 0 + 25523.1: 0 + 25527.1: 0 + 25531.1: 0 + 25535.1: 0 + 25547.1: 0 + 25551.1: 0 + 25555.1: 0 + 25559.1: 0 + 25563.1: 0 + 25567.1: 0 + 25571.1: 0 + 25575.1: 0 + 25579.1: 0 + 25584.1: 0 + 25584.3: 0 + 25585.1: 0 + 25589.1: 0 + 25593.1: 0 + 25598.1: 0 + 25599.2: 0 + 25599.13: 0 + 25600.1: 0 + 25605.1: 0 + 25606.2: 0 + 25606.13: 0 + 25607.1: 0 + 25648.1: 0 + 25649.2: 0 + 25649.13: 0 + 25655.1: 0 + 25656.2: 0 + 25656.13: 0 + 25670.1: 0 + 25671.2: 0 + 25671.13: 0 + 25677.1: 0 + 25678.2: 0 + 25678.13: 0 + 25684.2: 0 + 25684.13: 0 + 25689.2: 0 + 25689.13: 0 + 25695.1: 0 + 25696.2: 0 + 25696.13: 0 + 25702.1: 0 + 25703.2: 0 + 25703.13: 0 + 25709.1: 0 + 25710.2: 0 + 25710.13: 0 + 25716.1: 0 + 25717.2: 0 + 25717.13: 0 + 25723.1: 0 + 25730.1: 0 + 25737.1: 0 + 25738.2: 0 + 25738.13: 0 + 25744.1: 0 + 25751.1: 0 + 25758.1: 0 + 25759.2: 0 + 25759.13: 0 + 25765.1: 0 + 25766.2: 0 + 25766.13: 0 + 25772.1: 0 + 25773.2: 0 + 25773.13: 0 + 25779.1: 0 + 25780.2: 0 + 25780.13: 0 + 25786.1: 0 + 25787.2: 0 + 25787.13: 0 + 25793.1: 0 + 25794.2: 0 + 25794.13: 0 + 25822.1: 0 + 25823: 0 + 25824: 0 + 25826.1: 0 + 25828.2: 0 + 25828.13: 0 + 25836.1: 0 + 25837: 0 + 25838: 0 + 25840.1: 0 + 25842.2: 0 + 25842.13: 0 + 25847.2: 0 + 25847.13: 0 + 25852.2: 0 + 25852.13: 0 + 25858.1: 0 + 25859.2: 0 + 25859.13: 0 + 25865.1: 0 + 25866.2: 0 + 25866.13: 0 + 25877.1: 0 + 25878: 0 + 25879.1: 0 + 25880: 0 + 25881.1: 0 + 25882: 0 + 25883.1: 0 + 25884: 0 + 25885.1: 0 + 25887.2: 0 + 25887.13: 0 + 25888.1: 0 + 25894.1: 0 + 25894.3: 0 + 25895.2: 0 + 25895.13: 0 + 25895.14: 0 + 25896.1: 0 + 25902.1: 0 + 25903: 0 + 25904: 0 + 25910.1: 0 + 25920.1: 0 + 25929.1: 0 + 25930.2: 0 + 25930.13: 0 + 25953.1: 2019 + 25953.2: 0 + 25953.5: 0 + 25953.6: 0 + 25955: 2019 + 25957.1: 0 + 25957.2: 0 + 25959: 2019 + 25960: 2019 + 25966: 2019 + 25968: 2019 + 25969: 2019 + 25969.2: 521 + 25970: 274 + 25972: 1759 + 25972.3: 0 + 25973.1: 0 + 25978.1: 0 + 25982: 0 + 25984: 0 + 25987.3: 0 + 25988.1: 0 + 25989: 0 + 25990: 0 + 25992: 0 + 25993: 0 + 25993.1: 0 + 25995: 0 + 25996: 0 + 25997: 0 + 25998: 0 + 26004.1: 0 + 26007: 0 + 26009: 0 + 26010: 0 + 26011.1: 0 + 26014: 0 + 26015: 0 + 26018.1: 0 + 26019: 0 + 26020: 0 + 26022: 0 + 26023: 0 + 26024: 0 + 26027.1: 0 + 26028: 0 + 26029: 0 + 26032: 0 + 26032.1: 0 + 26037: 0 + 26039.1: 0 + 26040: 0 + 26041: 0 + 26044.1: 0 + 26045: 0 + 26046: 0 + 26049.1: 0 + 26050: 0 + 26051: 0 + 26054.1: 0 + 26055.2: 0 + 26055.13: 0 + 26056.1: 0 + 26059: 0 + 26061.1: 0 + 26062: 0 + 26064.1: 0 + 26064.2: 0 + 26065: 0 + 26074.2: 0 + 26074.13: 0 + 26075: 0 + 26075.1: 0 + 26077: 0 + 26078: 0 + 26081.2: 0 + 26081.13: 0 + 26082.1: 0 + 26083: 0 + 26083.3: 0 + 26084: 0 + 26084.1: 0 + 26090: 0 + 26090.1: 0 + 26093: 0 + 26094: 0 + 26095: 0 + 26097: 0 + 26098.1: 0 + 26098.2: 0 + 26101: 0 + 26103: 0 + 26105.1: 0 + 26106.1: 0 + 26107: 0 + 26110.1: 0 + 26110.2: 0 + 26110.5: 0 + 26110.6: 0 + 26120.1: 0 + 26135: 0 + 26139.1: 0 + 26141: 507 + 26142: 0 + 26143.1: 0 + 26146: 489 + 26147.1: 489 + 26147.2: 0 + 26148.1: 481 + 26150: 0 + 26150.1: 0 + 26151: 0 + 26152: 0 + 26154.1: 0 + 26155: 482 + 26156: 0 + 26159: 460 + 26160: 0 + 26162.1: 0 + 26163: 0 + 26164: 454 + 26164.1: 0 + 26168.1: 0 + 26183.1: 0 + 26187.1: 0 + 26191: 0 + 26194.1: 0 + 26195: 0 + 26196.1: 0 + 26200.1: 0 + 26221: 0 + 26262.1: 0 + 26302.1: 0 + 26321.1: 0 + 26371.1: 0 + 26372: 0 + 26380.1: 0 + 26381: 0 + 26389.1: 0 + 26391: 0 + 26392: 0 + 26393: 0 + 26396.1: 0 + 26396.2: 0 + 26397: 0 + 26399: 0 + 26407.1: 0 + 26408: 0 + 26409: 0 + 26410.1: 0 + 26411: 0 + 26413: 0 + 26415: 0 + 26433.1: 0 + 26434: 0 + 26446: 0 + 26447: 0 + 26463.1: 0 + 26464: 0 + 26472.1: 0 + 26473: 0 + 26489.1: 1 + 26489.3: 1 + 26490.1: 1 + 26490.2: 0 + 26493.1: 1 + 26493.2: 0 + 26493.5: 0 + 26493.6: 0 + 26506.1: 0 + 26552.1: 0 + 26552.3: 0 + 26553.1: 0 + 26553.3: 0 + 26554.1: 0 + 26597.1: 0 + 26597.3: 0 + 26598.1: 0 + 26607.1: 0 + 26607.3: 0 + 26608.1: 0 + 26633.1: 0 + 26638.1: 0 + 26643.1: 0 + 26648.1: 0 + 26653.1: 0 + 26658.1: 0 + 26663.1: 0 + 26691.1: 0 + 26701.1: 0 + 26732.1: 0 + 26732.3: 0 + 26749.1: 0 + 26762.1: 0 + 26762.3: 0 + 26763.1: 0 + 26770.1: 0 + 26770.3: 0 + 26771.1: 0 + 26779.1: 0 + 26779.3: 0 + 26780.1: 0 + 26780.3: 0 + 26781.1: 0 + 26790.1: 0 + 26790.3: 0 + 26791.1: 0 + 26791.3: 0 + 26792.1: 0 + 26799.1: 0 + 26810.1: 0 + 26810.3: 0 + 26821.1: 0 + 26825.1: 0 + 26840.1: 0 + 26840.3: 0 + 26841.1: 0 + 26867.1: 0 + 26872.1: 0 + 26877.1: 0 + 26882.1: 0 + 26887.1: 0 + 26887.3: 0 + 26926.1: 0 + 26931.1: 0 + 26985.1: 0 + 26985.3: 0 + 26986.1: 0 + 26996.1: 0 + 26996.3: 0 + 26997.1: 0 + 27005.1: 0 + 27014.1: 0 + 27023.1: 0 + 27031.1: 0 + 27037.1: 0 + 27053.1: 0 + 27053.3: 0 + 27054.1: 0 + 27101.1: 0 + 27147.1: 0 + 27148: 0 + 27161.1: 0 + 27166.1: 0 + 27168.1: 0 + 27180.1: 0 + 27195.1: 0 + 27195.3: 0 + 27196.1: 0 + 27221.1: 0 + 27251.1: 0 + 27255.1: 0 + 27261.2: 0 + 27262.2: 0 + 27269.1: 0 + 27278.1: 0 + 27283.1: 0 + 27297.1: 0 + 27297.3: 0 + 27319.1: 0 + 27328.1: 0 + 27328.3: 0 + 27376.1: 0 + 27381.1: 0 + 27386.1: 0 + 27398.1: 0 + 27416.1: 0 + 27424.1: 0 + 27439.1: 0 + 27444.1: 0 + 27461.1: 0 + 27461.3: 0 + 27462.1: 0 + 27462.3: 0 + 27463.1: 0 + 27480.1: 0 + 27480.3: 0 + 27481.1: 0 + 27481.3: 0 + 27482.1: 0 + 27498.1: 0 + 27498.3: 0 + 27499.1: 0 + 27508: 0 + 27514.1: 0 + 27523: 0 + 27528.1: 0 + 27542.1: 0 + 27583.1: 0 + 27584: 0 + 27609.1: 0 + 27616.1: 0 + 27624.1: 0 + 27667.1: 0 + 27667.3: 0 + 27668.1: 0 + 27668.3: 0 + 27669.1: 0 + 27670: 0 + 27677.1: 0 + 27677.3: 0 + 27678.1: 0 + 27678.3: 0 + 27679.1: 0 + 27687.1: 0 + 27687.3: 0 + 27688.1: 0 + 27688.3: 0 + 27689.1: 0 + 27689.3: 0 + 27689.4: 0 + 27698.1: 0 + 27698.3: 0 + 27698.4: 0 + 27699.1: 0 + 27699.3: 0 + 27700.1: 0 + 27700.3: 0 + 27700.4: 0 + 27700.7: 0 + 27700.8: 0 + 27701.1: 0 + 27702.1: 0 + 27709.1: 0 + 27709.3: 0 + 27709.4: 0 + 27710.1: 0 + 27710.3: 0 + 27711.1: 0 + 27711.3: 0 + 27712.1: 0 + 27730.1: 0 + 27731: 0 + 27736.1: 0 + 27737: 0 + 27744.1: 0 + 27751: 0 + 27755: 0 + 27760: 0 + 27764: 0 + 27768: 0 + 27775.1: 0 + 27776: 0 + 27787: 0 + 27791: 0 + 27795: 0 + 27804.1: 0 + 27804.3: 0 + 27805.1: 0 + 27810.1: 0 + 27810.3: 0 + 27810.4: 0 + 27810.13: 0 + 27810.14: 0 + 27810.16: 0 + 27810.25: 0 + 27810.26: 0 + 27810.27: 0 + 27810.34: 0 + 27810.35: 0 + 27810.36: 0 + 27810.45: 0 + 27811.1: 0 + 27811.3: 0 + 27812.1: 0 + 27820.1: 0 + 27820.3: 0 + 27820.4: 0 + 27820.13: 0 + 27820.14: 0 + 27820.16: 0 + 27820.25: 0 + 27820.26: 0 + 27820.27: 0 + 27820.34: 0 + 27820.35: 0 + 27820.36: 0 + 27820.45: 0 + 27821.1: 0 + 27822.1: 0 + 27827.1: 0 + 27827.3: 0 + 27827.4: 0 + 27827.13: 0 + 27827.14: 0 + 27827.16: 0 + 27827.25: 0 + 27827.26: 0 + 27827.27: 0 + 27827.34: 0 + 27827.35: 0 + 27827.36: 0 + 27827.45: 0 + 27828.1: 0 + 27834.1: 0 + 27834.3: 0 + 27834.4: 0 + 27834.13: 0 + 27834.14: 0 + 27834.16: 0 + 27834.25: 0 + 27834.26: 0 + 27834.27: 0 + 27834.34: 0 + 27834.35: 0 + 27834.36: 0 + 27834.45: 0 + 27835.1: 0 + 27836.1: 0 + 27837.1: 0 + 27842.1: 0 + 27842.3: 0 + 27842.4: 0 + 27842.13: 0 + 27842.14: 0 + 27842.16: 0 + 27842.25: 0 + 27842.26: 0 + 27842.27: 0 + 27842.34: 0 + 27842.35: 0 + 27842.36: 0 + 27842.45: 0 + 27843.1: 0 + 27844.1: 0 + 27852.1: 0 + 27863.1: 0 + 27881.1: 0 + 27886.1: 0 + 27895.1: 0 + 27907.1: 0 + 27918.1: 0 + 27922.1: 0 + 27935.1: 0 + 27940.1: 0 + 27945.1: 0 + 27965.1: 0 + 27966: 0 + 27969: 0 + 27975.1: 0 + 27976: 0 + 27979: 0 + 27980: 0 + 27985.1: 0 + 27986: 0 + 27988: 0 + 27989: 0 + 27995.1: 0 + 27996: 0 + 27997: 0 + 27998: 0 + 27999: 0 + 28048.1: 0 + 28049: 0 + 28055.1: 0 + 28056: 0 + 28062.1: 0 + 28063: 0 + 28072.1: 0 + 28073: 0 + 28075: 0 + 28076: 0 + 28081.1: 0 + 28082: 0 + 28096: 0 + 28097.1: 0 + 28098.1: 0 + 28099.1: 0 + 28115.1: 0 + 28116: 0 + 28128.1: 0 + 28128.2: 0 + 28128.3: 0 + 28128.4: 0 + 28128.5: 0 + 28129: 0 + 28130: 0 + 28134: 0 + 28134.1: 0 + 28134.2: 0 + 28135: 0 + 28138.1: 0 + 28138.2: 0 + 28138.3: 0 + 28200.1: 0 + 28201: 0 + 28205.1: 0 + 28209.1: 0 + 28222.1: 0 + 28228.1: 0 + 28234.1: 0 + 28235: 0 + 28235.1: 0 + 28236: 0 + 28238: 0 + 28239: 0 + 28241: 0 + 28246.1: 0 + 28247: 0 + 28247.1: 0 + 28248: 0 + 28250: 0 + 28251: 0 + 28253: 0 + 28254: 0 + 28258.1: 0 + 28259: 0 + 28260: 0 + 28267.1: 0 + 28268: 0 + 28273.1: 0 + 28280: 0 + 28280.1: 0 + 28281: 0 + 28282.3: 0 + 28282.4: 0 + 28284.1: 0 + 28285: 0 + 28291.1: 0 + 28291.3: 0 + 28292.1: 0 + 28299.1: 0 + 28299.3: 0 + 28300.1: 0 + 28306.1: 0 + 28307: 0 + 28334.1: 0 + 28335.1: 0 + 28336.1: 0 + 28337.1: 0 + 28341: 0 + 28349: 0 + 28350.1: 0 + 28351.1: 0 + 28355: 0 + 28356.1: 0 + 28377.1: 0 + 28388.1: 0 + 28389: 0 + 28390: 0 + 28394.1: 0 + 28395: 0 + 28396: 0 + 28400.1: 0 + 28401: 0 + 28402: 0 + 28403: 0 + 28404: 0 + 28415.1: 0 + 28416: 0 + 28421: 0 + 28426: 0 + 28430.1: 0 + 28431: 0 + 28436: 0 + 28437: 0 + 28441.1: 0 + 28442: 0 + 28472: 0 + 28473: 0 + 28474: 0 + 28475: 0 + 28476: 0 + 28477.1: 0 + 28478: 0 + 28488: 0 + 28489: 0 + 28491.1: 0 + 28496.1: 0 + 28497: 0 + 28506: 0 + 28512.1: 0 + 28517.1: 0 + 28534.1: 0 + 28543: 0 + 28544: 0 + 28545: 0 + 28557: 0 + 28571: 0 + 28572: 0 + 28573: 0 + 28579: 0 + 28580: 0 + 28581: 0 + 28582: 0 + 28586: 0 + 28587: 0 + 28588: 0 + 28593.1: 0 + 28594: 0 + 28595: 0 + 28599: 0 + 28600: 0 + 28601: 0 + 28620.1: 0 + 28621: 0 + 28622: 0 + 28658.1: 0 + 28663.1: 0 + 28667.1: 0 + 28671.1: 0 + 28675.1: 0 + 28685.1: 0 + 28697.1: 0 + 28701.1: 0 + 28727: 0 + 28729: 0 + 28730: 0 + 28731: 0 + 28733: 0 + 28734: 0 + 28737: 0 + 28739: 0 + 28740: 0 + 28741: 0 + 28742: 0 + 28743: 0 + 28744: 0 + 28745: 0 + 28815.1: 0 + 28819.1: 0 + 28838.1: 0 + 28843.1: 0 + 28848.1: 0 + 28849.3: 0 + 28849.4: 0 + 28849.13: 0 + 28849.14: 0 + 28849.16: 0 + 28849.25: 0 + 28849.26: 0 + 28849.27: 0 + 28849.34: 0 + 28854.1: 0 + 28859.1: 0 + 28864.1: 0 + 28869.1: 0 + 28874.1: 0 + 28879.1: 0 + 28884.1: 0 + 28889.1: 0 + 28896.1: 0 + 28915.1: 0 + 28920.1: 0 + 28924.1: 0 + 28929.1: 0 + 28934.1: 0 + 28939.1: 0 + 28944.1: 0 + 28949.1: 0 + 28959: 0 + 28960: 0 + 28962.1: 0 + 28968: 0 + 28969: 0 + 28971.1: 0 + 28977: 0 + 28978: 0 + 28980.1: 0 + 28986.1: 0 + 28991.1: 0 + 28999: 0 + 29000: 0 + 29003.1: 0 + 29008.1: 0 + 29009: 0 + 29010.1: 0 + 29016: 0 + 29020.2: 0 + 29020.13: 0 + 29020.14: 0 + 29057.1: 0 + 29071.1: 0 + 29082.1: 0 + 29097.1: 0 + 29102.1: 0 + 29103.1: 0 + 29104.3: 0 + 29104.4: 0 + 29104.13: 0 + 29104.14: 0 + 29104.16: 0 + 29104.25: 0 + 29104.26: 0 + 29104.27: 0 + 29104.34: 0 + 29109.1: 0 + 29109.3: 0 + 29110.1: 0 + 29111.3: 0 + 29111.4: 0 + 29111.13: 0 + 29111.14: 0 + 29111.16: 0 + 29111.25: 0 + 29111.26: 0 + 29111.27: 0 + 29111.34: 0 + 29119.1: 0 + 29120.2: 0 + 29120.13: 0 + 29121.1: 0 + 29122.1: 0 + 29123.3: 0 + 29123.4: 0 + 29123.13: 0 + 29123.14: 0 + 29123.16: 0 + 29123.25: 0 + 29123.26: 0 + 29123.27: 0 + 29123.34: 0 + 29129.1: 0 + 29130.2: 0 + 29130.13: 0 + 29131.1: 0 + 29132.1: 0 + 29133.3: 0 + 29133.4: 0 + 29133.13: 0 + 29133.14: 0 + 29133.16: 0 + 29133.25: 0 + 29133.26: 0 + 29133.27: 0 + 29133.34: 0 + 29141.1: 0 + 29142.1: 0 + 29143.3: 0 + 29143.4: 0 + 29143.13: 0 + 29143.14: 0 + 29143.16: 0 + 29143.25: 0 + 29143.26: 0 + 29143.27: 0 + 29143.34: 0 + 29148.1: 0 + 29148.3: 0 + 29149.1: 0 + 29150.3: 0 + 29150.4: 0 + 29150.13: 0 + 29150.14: 0 + 29150.16: 0 + 29150.25: 0 + 29150.26: 0 + 29150.27: 0 + 29150.34: 0 + 29159.1: 0 + 29159.3: 0 + 29160.2: 0 + 29160.13: 0 + 29161.1: 0 + 29162.1: 0 + 29163.3: 0 + 29163.4: 0 + 29163.13: 0 + 29163.14: 0 + 29163.16: 0 + 29163.25: 0 + 29163.26: 0 + 29163.27: 0 + 29163.34: 0 + 29169.1: 0 + 29169.3: 0 + 29170.2: 0 + 29170.13: 0 + 29171.1: 0 + 29172.1: 0 + 29173.3: 0 + 29173.4: 0 + 29173.13: 0 + 29173.14: 0 + 29173.16: 0 + 29173.25: 0 + 29173.26: 0 + 29173.27: 0 + 29173.34: 0 + 29179.2: 0 + 29179.13: 0 + 29180.1: 0 + 29181.1: 0 + 29187.2: 0 + 29187.13: 0 + 29188.1: 0 + 29189.1: 0 + 29197.1: 0 + 29198.1: 0 + 29199.3: 0 + 29199.4: 0 + 29199.13: 0 + 29199.14: 0 + 29199.16: 0 + 29199.25: 0 + 29199.26: 0 + 29199.27: 0 + 29199.34: 0 + 29204.1: 0 + 29204.3: 0 + 29205.1: 0 + 29206.3: 0 + 29206.4: 0 + 29206.13: 0 + 29206.14: 0 + 29206.16: 0 + 29206.25: 0 + 29206.26: 0 + 29206.27: 0 + 29206.34: 0 + 29219.1: 0 + 29224.1: 0 + 29224.3: 0 + 29225.1: 0 + 29243: 0 + 29244: 0 + 29248.1: 0 + 29248.3: 0 + 29249: 0 + 29280.1: 0 + 29281.2: 0 + 29281.13: 0 + 29282.1: 0 + 29283.3: 0 + 29283.4: 0 + 29283.13: 0 + 29283.14: 0 + 29283.16: 0 + 29283.25: 0 + 29283.26: 0 + 29283.27: 0 + 29283.34: 0 + 29289.1: 0 + 29289.3: 0 + 29290.2: 0 + 29290.13: 0 + 29291.1: 0 + 29292.3: 0 + 29292.4: 0 + 29292.13: 0 + 29292.14: 0 + 29292.16: 0 + 29292.25: 0 + 29292.26: 0 + 29292.27: 0 + 29292.34: 0 + 29299.1: 0 + 29300.2: 0 + 29300.13: 0 + 29301.2: 0 + 29301.13: 0 + 29302.1: 0 + 29303.1: 0 + 29304.3: 0 + 29304.4: 0 + 29304.13: 0 + 29304.14: 0 + 29304.16: 0 + 29304.25: 0 + 29304.26: 0 + 29304.27: 0 + 29304.34: 0 + 29310.1: 0 + 29311.2: 0 + 29311.13: 0 + 29312.1: 0 + 29313.3: 0 + 29313.4: 0 + 29313.13: 0 + 29313.14: 0 + 29313.16: 0 + 29313.25: 0 + 29313.26: 0 + 29313.27: 0 + 29313.34: 0 + 29319.1: 0 + 29319.3: 0 + 29320.2: 0 + 29320.13: 0 + 29321.1: 0 + 29322.3: 0 + 29322.4: 0 + 29322.13: 0 + 29322.14: 0 + 29322.16: 0 + 29322.25: 0 + 29322.26: 0 + 29322.27: 0 + 29322.34: 0 + 29329.1: 0 + 29329.3: 0 + 29330.2: 0 + 29330.13: 0 + 29331.2: 0 + 29331.13: 0 + 29332.1: 0 + 29333.1: 0 + 29334.3: 0 + 29334.4: 0 + 29334.13: 0 + 29334.14: 0 + 29334.16: 0 + 29334.25: 0 + 29334.26: 0 + 29334.27: 0 + 29334.34: 0 + 29346.1: 0 + 29347.1: 0 + 29348.3: 0 + 29348.4: 0 + 29348.13: 0 + 29348.14: 0 + 29348.16: 0 + 29348.25: 0 + 29348.26: 0 + 29348.27: 0 + 29348.34: 0 + 29353.1: 0 + 29353.3: 0 + 29354.1: 0 + 29355.3: 0 + 29355.4: 0 + 29355.13: 0 + 29355.14: 0 + 29355.16: 0 + 29355.25: 0 + 29355.26: 0 + 29355.27: 0 + 29355.34: 0 + 29361.1: 0 + 29362.2: 0 + 29362.13: 0 + 29363.1: 0 + 29364.1: 0 + 29365.3: 0 + 29365.4: 0 + 29365.13: 0 + 29365.14: 0 + 29365.16: 0 + 29365.25: 0 + 29365.26: 0 + 29365.27: 0 + 29365.34: 0 + 29370.1: 0 + 29371.1: 0 + 29372.3: 0 + 29372.4: 0 + 29372.13: 0 + 29372.14: 0 + 29372.16: 0 + 29372.25: 0 + 29372.26: 0 + 29372.27: 0 + 29372.34: 0 + 29377.1: 0 + 29377.3: 0 + 29378.1: 0 + 29379.3: 0 + 29379.4: 0 + 29379.13: 0 + 29379.14: 0 + 29379.16: 0 + 29379.25: 0 + 29379.26: 0 + 29379.27: 0 + 29379.34: 0 + 29385.1: 0 + 29385.3: 0 + 29386.2: 0 + 29386.13: 0 + 29387.1: 0 + 29388.1: 0 + 29389.3: 0 + 29389.4: 0 + 29389.13: 0 + 29389.14: 0 + 29389.16: 0 + 29389.25: 0 + 29389.26: 0 + 29389.27: 0 + 29389.34: 0 + 29414.1: 0 + 29439.1: 0 + 29465.1: 0 + 29490.1: 0 + 29490.3: 0 + 29507.1: 0 + 29522.1: 0 + 29522.3: 0 + 29541.1: 0 + 29548.1: 0 + 29548.3: 0 + 29567.1: 0 + 29599.1: 0 + 29600.1: 0 + 29609.1: 0 + 29631.1: 0 + 29698.2: 0 + 29698.13: 0 + 29699.1: 0 + 29700.1: 0 + 29708.2: 0 + 29708.13: 0 + 29709.1: 0 + 29710.1: 0 + 29716.1: 0 + 29720.1: 0 + 29727.1: 0 + 29731.1: 0 + 29738.1: 0 + 29742.1: 0 + 29747.2: 0 + 29747.13: 0 + 29748.1: 0 + 29749.1: 0 + 29754.2: 0 + 29754.13: 0 + 29755.1: 0 + 29756.1: 0 + 29760.1: 0 + 29764.1: 0 + 29790.1: 0 + 29791: 0 + 29795.1: 0 + 29796: 0 + 29814.1: 0 + 29814.3: 0 + 29815.1: 0 + 29827.1: 0 + 29841.1: 0 + 29841.3: 0 + 29842.1: 0 + 29847.1: 0 + 29847.3: 0 + 29848.1: 0 + 29853.1: 0 + 29854.1: 0 + 29896.1: 0 + 29901.1: 0 + 29940.1: 0 + 29941: 0 + 29942: 0 + 29949.1: 0 + 29971.1: 0 + 29981.1: 0 + 29981.3: 0 + 29981.4: 0 + 29981.13: 0 + 29981.14: 0 + 29981.16: 0 + 29981.25: 0 + 29981.26: 0 + 29981.27: 0 + 29981.34: 0 + 29981.35: 0 + 29981.36: 0 + 29981.45: 0 + 29982: 0 + 29990.1: 0 + 30000.1: 0 + 30000.3: 0 + 30000.4: 0 + 30000.13: 0 + 30000.14: 0 + 30000.16: 0 + 30000.25: 0 + 30000.26: 0 + 30000.27: 0 + 30000.34: 0 + 30000.35: 0 + 30000.36: 0 + 30000.45: 0 + 30001: 0 + 30056.1: 0 + 30057: 0 + 30063.1: 0 + 30076.1: 0 + 30076.3: 0 + 30084.1: 0 + 30092.1: 0 + 30108.1: 0 + 30108.3: 0 + 30109.1: 0 + 30109.3: 0 + 30110: 0 + 30111.1: 0 + 30129: 0 + 30130.1: 0 + 30163.1: 0 + 30167.1: 0 + 30196.1: 0 + 30214.1: 0 + 30254.1: 0 + 30256: 0 + 30257: 0 + 30261: 0 + 30264.1: 0 + 30265: 0 + 30271.1: 0 + 30273: 0 + 30274: 0 + 30278: 0 + 30281.1: 0 + 30282: 0 + 30283.1: 0 + 30288.1: 0 + 30292.1: 0 + 30296.1: 0 + 30296.3: 0 + 30300.1: 0 + 30304.1: 0 + 30317.1: 0 + 30322.1: 0 + 30327.1: 0 + 30354.1: 0 + 30358.1: 0 + 30364.1: 0 + 30379.1: 0 + 30379.3: 0 + 30380.1: 0 + 30399.1: 0 + 30399.3: 0 + 30400.1: 0 + 30408.1: 0 + 30432.1: 0 + 30446: 0 + 30447: 0 + 30448.1: 0 + 30448.3: 0 + 30448.4: 0 + 30450: 0 + 30451.1: 0 + 30460.1: 0 + 30472.1: 0 + 30482.1: 0 + 30493.1: 0 + 30493.3: 0 + 30494.1: 0 + 30495.1: 0 + 30505.1: 0 + 30505.3: 0 + 30506.1: 0 + 30507.1: 0 + 30519.1: 0 + 30519.3: 0 + 30550.1: 0 + 30562.1: 0 + 30562.3: 0 + 30563: 0 + 30577.1: 0 + 30583.1: 0 + 30592.1: 0 + 30598.1: 0 + 30625.1: 0 + 30636.2: 0 + 30636.16: 0 + 30636.17: 0 + 30636.26: 0 + 30636.27: 0 + 30636.29: 0 + 30636.38: 0 + 30636.39: 0 + 30636.40: 0 + 30636.47: 0 + 30644.2: 0 + 30644.16: 0 + 30644.17: 0 + 30644.26: 0 + 30644.27: 0 + 30644.29: 0 + 30644.38: 0 + 30644.39: 0 + 30644.40: 0 + 30644.47: 0 + 30644.48: 0 + 30644.49: 0 + 30644.58: 0 + 30644.63: 0 + 30645.2: 0 + 30645.16: 0 + 30645.17: 0 + 30645.26: 0 + 30645.27: 0 + 30645.29: 0 + 30645.38: 0 + 30645.39: 0 + 30645.40: 0 + 30645.47: 0 + 30652.1: 0 + 30653.1: 0 + 30658.1: 0 + 30664.2: 0 + 30664.16: 0 + 30664.17: 0 + 30664.26: 0 + 30664.27: 0 + 30664.29: 0 + 30664.38: 0 + 30664.39: 0 + 30664.40: 0 + 30664.47: 0 + 30664.48: 0 + 30664.49: 0 + 30664.58: 0 + 30664.63: 0 + 30665.1: 0 + 30672.2: 0 + 30672.16: 0 + 30672.17: 0 + 30672.26: 0 + 30672.27: 0 + 30672.29: 0 + 30672.38: 0 + 30672.39: 0 + 30672.40: 0 + 30672.47: 0 + 30672.48: 0 + 30672.49: 0 + 30672.58: 0 + 30672.63: 0 + 30673.2: 0 + 30673.16: 0 + 30673.17: 0 + 30673.26: 0 + 30673.27: 0 + 30673.29: 0 + 30673.38: 0 + 30673.39: 0 + 30673.40: 0 + 30673.47: 0 + 30673.48: 0 + 30673.49: 0 + 30673.58: 0 + 30673.63: 0 + 30674.1: 0 + 30680.1: 0 + 30681.1: 0 + 30692.2: 0 + 30692.16: 0 + 30692.17: 0 + 30692.26: 0 + 30692.27: 0 + 30692.29: 0 + 30692.38: 0 + 30692.39: 0 + 30692.40: 0 + 30692.47: 0 + 30700.2: 0 + 30700.16: 0 + 30700.17: 0 + 30700.26: 0 + 30700.27: 0 + 30700.29: 0 + 30700.38: 0 + 30700.39: 0 + 30700.40: 0 + 30700.47: 0 + 30700.48: 0 + 30700.49: 0 + 30700.58: 0 + 30700.63: 0 + 30701.2: 0 + 30701.16: 0 + 30701.17: 0 + 30701.26: 0 + 30701.27: 0 + 30701.29: 0 + 30701.38: 0 + 30701.39: 0 + 30701.40: 0 + 30701.47: 0 + 30711.1: 0 + 30711.3: 0 + 30715.1: 0 + 30715.2: 0 + 30715.3: 0 + 30716.1: 0 + 30728.1: 0 + 30735.1: 0 + 30748: 0 + 30749: 0 + 30750: 0 + 30750.1: 0 + 30752.1: 0 + 30753: 0 + 30775: 0 + 30776: 0 + 30777: 0 + 30778: 0 + 30781: 0 + 30814.1: 0 + 30814.3: 0 + 30817.1: 0 + 30818: 0 + 30819: 0 + 30820: 0 + 30821: 0 + 30822: 0 + 30824: 0 + 30830.1: 0 + 30830.3: 0 + 30833.1: 0 + 30834: 0 + 30835: 0 + 30836: 0 + 30837: 0 + 30838: 0 + 30839: 0 + 30840: 0 + 30841: 0 + 30842: 0 + 30844: 0 + 30852.1: 0 + 30852.3: 0 + 30852.4: 0 + 30852.7: 0 + 30853.1: 0 + 30854: 0 + 30855.1: 0 + 30856: 0 + 30857: 0 + 30858: 0 + 30859: 0 + 30860: 0 + 30861: 0 + 30862: 0 + 30863: 0 + 30864: 0 + 30865: 0 + 30999.1: 0 + 31002.1: 0 + 31003.10: 0 + 31005.3: 0 + 31009.2: 0 + 31009.13: 0 + 31010.1: 0 + 31013.3: 0 + 31017.1: 0 + 31018: 0 + 31019: 0 + 31020: 0 + 31021: 0 + 31029.1: 0 + 31032.1: 0 + 31033.10: 0 + 31033.11: 0 + 31035.3: 0 + 31039.2: 0 + 31039.13: 0 + 31039.14: 0 + 31040.1: 0 + 31043.3: 0 + 31047.1: 0 + 31047.2: 0 + 31047.5: 0 + 31047.6: 0 + 31048: 0 + 31049: 0 + 31050: 0 + 31051: 0 + 31052: 0 + 31099.1: 0 + 31099.3: 0 + 31100.1: 0 + 31100.3: 0 + 31100.4: 0 + 31100.7: 0 + 31100.8: 0 + 31103.1: 0 + 31104: 0 + 31105: 0 + 31106: 0 + 31107: 0 + 31108: 0 + 31109: 0 + 31110: 0 + 31111: 0 + 31112: 0 + 31113: 0 + 31115: 0 + 31116: 0 + 31121: 0 + 31125: 0 + 31133.1: 0 + 31137.1: 0 + 31145.1: 0 + 31162.1: 0 + 31163: 0 + 31179.1: 0 + 31185.1: 0 + 31186: 0 + 31191.1: 0 + 31201.1: 0 + 31205.1: 0 + 31210.1: 0 + 31210.3: 0 + 31211.1: 0 + 31212.10: 0 + 31212.12: 0 + 31251.2: 0 + 31251.16: 0 + 31251.17: 0 + 31251.26: 0 + 31251.27: 0 + 31251.29: 0 + 31251.38: 0 + 31251.39: 0 + 31251.40: 0 + 31251.47: 0 + 31251.48: 0 + 31251.49: 0 + 31251.58: 0 + 31251.63: 0 + 31259.1: 0 + 31259.3: 0 + 31281.1: 0 + 31285.1: 0 + 31289.1: 0 + 31293.1: 0 + 31300.1: 0 + 31300.3: 0 + 31322.1: 0 + 31326.1: 0 + 31333: 0 + 31334.3: 0 + 31397.1: 0 + 31401.1: 0 + 31405.1: 0 + 31409.1: 0 + 31413: 0 + 31437: 0 + 31438: 0 + 31444.1: 0 + 31449.1: 0 + 31453.1: 0 + 31457.1: 0 + 31461.1: 0 + 31473.1: 0 + 31478.1: 0 + 31482.1: 0 + 31487.1: 0 + 31487.3: 0 + 31493.1: 0 + 31493.3: 0 + 31498.1: 0 + 31503.1: 0 + 31508.1: 0 + 31513.1: 0 + 31517.1: 0 + 31521.1: 0 + 31529.1: 0 + 31533.1: 0 + 31537.1: 0 + 31541.1: 0 + 31545.1: 0 + 31549.1: 0 + 31556.1: 0 + 31560.1: 0 + 31565.1: 0 + 31570.1: 0 + 31571: 0 + 31575.1: 0 + 31579.1: 0 + 31583.1: 0 + 31587.1: 0 + 31591.1: 0 + 31595.1: 0 + 31599.1: 0 + 31604.1: 0 + 31604.3: 0 + 31605.1: 0 + 31609.1: 0 + 31613.1: 0 + 31617.1: 0 + 31621.1: 0 + 31625.1: 0 + 31629.1: 0 + 31633.1: 0 + 31637.1: 0 + 31641.1: 0 + 31645.1: 0 + 31649.1: 0 + 31653.1: 0 + 31657.1: 0 + 31661.1: 0 + 31665.1: 0 + 31669.1: 0 + 31673.1: 0 + 31677.1: 0 + 31681.1: 0 + 31685.1: 0 + 31689.1: 0 + 31693.1: 0 + 31697.1: 0 + 31701.1: 0 + 31705.1: 0 + 31709.1: 0 + 31713.1: 0 + 31717.1: 0 + 31721.1: 0 + 31725.1: 0 + 31729.1: 0 + 31733.1: 0 + 31737.1: 0 + 31741.1: 0 + 31745.1: 0 + 31749.1: 0 + 31753.1: 0 + 31757.1: 0 + 31762.1: 0 + 31762.3: 0 + 31763.1: 0 + 31767.1: 0 + 31771.1: 0 + 31775.1: 0 + 31779.1: 0 + 31784.1: 0 + 31784.3: 0 + 31785.1: 0 + 31789.1: 0 + 31793.1: 0 + 31798.1: 0 + 31798.3: 0 + 31799.1: 0 + 31803.1: 0 + 31807.1: 0 + 31811.1: 0 + 31818.1: 0 + 31822.1: 0 + 31823.1: 0 + 31834.1: 0 + 31838.1: 0 + 31845.1: 0 + 31849.1: 0 + 31853.1: 0 + 31857.1: 0 + 31861.1: 0 + 31866.1: 0 + 31866.3: 0 + 31867.1: 0 + 31872.1: 0 + 31872.3: 0 + 31873.1: 0 + 31878.1: 0 + 31878.3: 0 + 31879.1: 0 + 31884.1: 0 + 31884.3: 0 + 31885.1: 0 + 31890.1: 0 + 31890.3: 0 + 31891.1: 0 + 31896.1: 0 + 31896.3: 0 + 31897.1: 0 + 31902.1: 0 + 31902.3: 0 + 31903.1: 0 + 31908.1: 0 + 31908.3: 0 + 31909.1: 0 + 31913.1: 0 + 31917.1: 0 + 31921.1: 0 + 31925.1: 0 + 31929.1: 0 + 31933.1: 0 + 31937.1: 0 + 31941.1: 0 + 31947.1: 0 + 31951.1: 0 + 31957.1: 0 + 31957.3: 0 + 31958.1: 0 + 31962.1: 0 + 31967.1: 0 + 31971.1: 0 + 31975.1: 0 + 31979.1: 0 + 31983.1: 0 + 31987.1: 0 + 31991.1: 0 + 31995.1: 0 + 31999.1: 0 + 32003.1: 0 + 32007.1: 0 + 32025.1: 0 + 32030.1: 0 + 32037: 0 + 32041: 0 + 32052: 0 + 32062.1: 0 + 32066.1: 0 + 32070.1: 0 + 32074.1: 0 + 32078.1: 0 + 32082.1: 0 + 32086.1: 0 + 32090.1: 0 + 32094.1: 0 + 32104: 0 + 32105: 0 + 32133.1: 0 + 32134: 0 + 32138.1: 0 + 32139: 0 + 32140: 0 + 32161.1: 0 + 32181.1: 0 + 32182: 0 + 32183.1: 0 + 32188.1: 0 + 32189: 0 + 32190.1: 0 + 32195.1: 0 + 32196: 0 + 32197.1: 0 + 32202.1: 0 + 32203: 0 + 32209.1: 0 + 32210: 0 + 32211.1: 0 + 32220.1: 0 + 32221: 0 + 32229.1: 0 + 32229.3: 0 + 32230.1: 0 + 32243.1: 0 + 32250.1: 0 + 32252.1: 0 + 32259.1: 0 + 32273.1: 0 + 32273.3: 0 + 32274.1: 0 + 32275: 0 + 32289.1: 0 + 32290: 0 + 32291: 0 + 32291.1: 0 + 32291.2: 0 + 32291.10: 0 + 32305.1: 0 + 32313: 0 + 32314: 0 + 32321: 0 + 32324.3: 0 + 32340: 0 + 32343.1: 0 + 32363.1: 0 + 32380.1: 0 + 32381: 0 + 32382: 0 + 32382.1: 0 + 32384: 0 + 32385: 0 + 32389: 0 + 32390: 0 + 32391: 0 + 32393.3: 0 + 32393.4: 0 + 32393.5: 0 + 32393.8: 0 + 32393.9: 0 + 32393.13: 0 + 32393.14: 0 + 32393.22: 0 + 32399.3: 0 + 32399.4: 0 + 32399.13: 0 + 32399.14: 0 + 32399.16: 0 + 32399.25: 0 + 32399.26: 0 + 32399.27: 0 + 32399.34: 0 + 32399.35: 0 + 32399.36: 0 + 32399.45: 0 + 32401: 0 + 32401.1: 0 + 32401.2: 0 + 32402: 0 + 32402.1: 0 + 32405.1: 0 + 32405.5: 0 + 32405.13: 0 + 32405.15: 0 + 32405.16: 0 + 32405.17: 0 + 32405.18: 0 + 32405.21: 0 + 32405.22: 0 + 32405.26: 0 + 32405.27: 0 + 32405.30: 0 + 32405.31: 0 + 32405.32: 0 + 32405.35: 0 + 32405.40: 0 + 32405.43: 0 + 32405.44: 0 + 32405.45: 0 + 32405.46: 0 + 32405.49: 0 + 32405.55: 0 + 32405.56: 0 + 32405.58: 0 + 32405.59: 0 + 32405.62: 0 + 32405.63: 0 + 32405.69: 0 + 32405.70: 0 + 32405.71: 0 + 32409: 0 + 32414: 0 + 32417.1: 0 + 32417.2: 0 + 32417.3: 0 + 32417.4: 0 + 32417.5: 0 + 32417.6: 0 + 32419: 0 + 32422.1: 0 + 32423.1: 0 + 32424.3: 0 + 32424.4: 0 + 32424.13: 0 + 32424.14: 0 + 32424.16: 0 + 32424.25: 0 + 32424.26: 0 + 32424.27: 0 + 32424.34: 0 + 32424.35: 0 + 32424.36: 0 + 32424.45: 0 + 32432: 0 + 32435.1: 0 + 32435.2: 0 + 32435.3: 0 + 32435.4: 0 + 32435.5: 0 + 32435.6: 0 + 32440.1: 0 + 32441.1: 0 + 32442.3: 0 + 32442.4: 0 + 32442.13: 0 + 32442.14: 0 + 32442.16: 0 + 32442.25: 0 + 32442.26: 0 + 32442.27: 0 + 32442.34: 0 + 32442.35: 0 + 32442.36: 0 + 32442.45: 0 + 32450: 0 + 32453.1: 0 + 32453.2: 0 + 32453.3: 0 + 32453.4: 0 + 32453.5: 0 + 32453.6: 0 + 32460.1: 0 + 32461: 0 + 32463: 0 + 32465.1: 0 + 32465.4: 0 + 32465.5: 0 + 32465.8: 0 + 32465.9: 0 + 32465.13: 0 + 32465.22: 0 + 32467.1: 0 + 32468.1: 0 + 32469.3: 0 + 32469.4: 0 + 32469.5: 0 + 32469.13: 0 + 32469.14: 0 + 32469.16: 0 + 32469.25: 0 + 32469.26: 0 + 32469.27: 0 + 32469.34: 0 + 32469.35: 0 + 32469.36: 0 + 32469.37: 0 + 32469.45: 0 + 32470: 0 + 32472: 0 + 32474.1: 0 + 32474.4: 0 + 32474.5: 0 + 32474.13: 0 + 32474.22: 0 + 32476: 0 + 32482.1: 0 + 32483.1: 0 + 32484.3: 0 + 32484.4: 0 + 32484.13: 0 + 32484.14: 0 + 32484.16: 0 + 32484.25: 0 + 32484.26: 0 + 32484.27: 0 + 32484.34: 0 + 32484.35: 0 + 32484.36: 0 + 32484.45: 0 + 32485: 0 + 32547.2: 0 + 32547.13: 0 + 32548.1: 0 + 32553.2: 0 + 32553.13: 0 + 32554.1: 0 + 32565.1: 0 + 32569.1: 0 + 32573.1: 0 + 32577.1: 0 + 32581.1: 0 + 32581.2: 0 + 32581.3: 0 + 32582.1: 0 + 32586.1: 0 + 32590: 0 + 32591: 0 + 32593.1: 0 + 32597.1: 0 + 32597.2: 0 + 32597.3: 0 + 32598.1: 0 + 32602: 0 + 32603: 0 + 32605.1: 0 + 32605.2: 0 + 32605.3: 0 + 32606.1: 0 + 32610.1: 0 + 32614: 0 + 32615: 0 + 32617.1: 0 + 32621.1: 0 + 32621.2: 0 + 32621.3: 0 + 32622.1: 0 + 32626: 0 + 32627: 0 + 32629.1: 0 + 32629.2: 0 + 32629.3: 0 + 32630.1: 0 + 32634.1: 0 + 32634.2: 0 + 32634.3: 0 + 32635.1: 0 + 32639.1: 0 + 32643.1: 0 + 32651.1: 0 + 32655.1: 0 + 32659: 0 + 32660: 0 + 32662.1: 0 + 32666.1: 0 + 32670: 0 + 32671: 0 + 32673.1: 0 + 32677.1: 0 + 32677.2: 0 + 32677.3: 0 + 32678.1: 0 + 32682.1: 0 + 32682.2: 0 + 32682.3: 0 + 32683.1: 0 + 32688.1: 0 + 32688.2: 0 + 32688.3: 0 + 32689.1: 0 + 32693: 0 + 32694: 0 + 32696.1: 0 + 32696.2: 0 + 32696.3: 0 + 32697.1: 0 + 32701.1: 0 + 32701.2: 0 + 32701.3: 0 + 32702.1: 0 + 32706: 0 + 32707: 0 + 32709.1: 0 + 32709.2: 0 + 32709.3: 0 + 32710.1: 0 + 32714.1: 0 + 32718.1: 0 + 32726.1: 0 + 32730.1: 0 + 32730.2: 0 + 32730.3: 0 + 32731.1: 0 + 32735.1: 0 + 32735.2: 0 + 32735.3: 0 + 32736.1: 0 + 32740.1: 0 + 32747.1: 0 + 32754.1: 0 + 32754.2: 0 + 32754.3: 0 + 32755.1: 0 + 32762.1: 0 + 32762.2: 0 + 32762.3: 0 + 32763.1: 0 + 32770.1: 0 + 32774.1: 0 + 32778.1: 0 + 32778.2: 0 + 32778.3: 0 + 32779.1: 0 + 32783.1: 0 + 32783.2: 0 + 32783.3: 0 + 32784.1: 0 + 32790.1: 0 + 32797.1: 0 + 32798: 0 + 32812.1: 0 + 32813: 0 + 32814: 0 + 32828.1: 0 + 32832.1: 0 + 32838.1: 0 + 32845.1: 0 + 32858.1: 0 + 32862.1: 0 + 32893.1: 0 + 32893.3: 0 + 32894.1: 0 + 32901.2: 0 + 32901.13: 0 + 32902.1: 0 + 32909.1: 0 + 32913.1: 0 + 32967.1: 0 + 32969: 0 + 32970: 0 + 32971: 0 + 32974: 0 + 33004.1: 0 + 33008.1: 0 + 33008.3: 0 + 33009.1: 0 + 33017.1: 0 + 33017.3: 0 + 33018.1: 0 + 33029.1: 0 + 33062.1: 0 + 33068.1: 0 + 33092.1: 0 + 33098.2: 0 + 33098.16: 0 + 33098.17: 0 + 33098.26: 0 + 33098.27: 0 + 33098.29: 0 + 33098.38: 0 + 33098.39: 0 + 33098.40: 0 + 33098.47: 0 + 33098.48: 0 + 33098.49: 0 + 33098.58: 0 + 33098.63: 0 + 33099.1: 0 + 33113.2: 0 + 33113.16: 0 + 33113.17: 0 + 33113.26: 0 + 33113.27: 0 + 33113.29: 0 + 33113.38: 0 + 33113.39: 0 + 33113.40: 0 + 33113.47: 0 + 33113.48: 0 + 33113.49: 0 + 33113.58: 0 + 33113.63: 0 + 33114.1: 0 + 33122.1: 0 + 33194.1: 0 + 33214.1: 0 + 33214.3: 0 + 33215.1: 0 + 33236.1: 0 + 33236.3: 0 + 33246.1: 0 + 33246.3: 0 + 33246.4: 0 + 33246.5: 0 + 33246.17: 0 + 33246.19: 0 + 33246.20: 0 + 33246.21: 0 + 33247.1: 0 + 33251.1: 0 + 33251.3: 0 + 33251.4: 0 + 33251.5: 0 + 33251.17: 0 + 33251.19: 0 + 33251.20: 0 + 33251.21: 0 + 33252.1: 0 + 33256.1: 0 + 33256.3: 0 + 33256.4: 0 + 33256.5: 0 + 33256.17: 0 + 33256.19: 0 + 33256.20: 0 + 33256.21: 0 + 33258.1: 0 + 33258.3: 0 + 33259.1: 0 + 33263.1: 0 + 33263.3: 0 + 33263.4: 0 + 33263.5: 0 + 33263.17: 0 + 33263.19: 0 + 33263.20: 0 + 33263.21: 0 + 33264.1: 0 + 33268.1: 0 + 33268.3: 0 + 33268.4: 0 + 33268.5: 0 + 33268.17: 0 + 33268.19: 0 + 33268.20: 0 + 33268.21: 0 + 33269.1: 0 + 33270.1: 0 + 33274.1: 0 + 33274.3: 0 + 33274.4: 0 + 33274.5: 0 + 33274.17: 0 + 33274.19: 0 + 33274.20: 0 + 33274.21: 0 + 33275.1: 0 + 33276.1: 0 + 33280: 0 + 33282.2: 0 + 33282.13: 0 + 33283: 0 + 33284: 0 + 33288.1: 0 + 33288.3: 0 + 33289: 0 + 33290: 0 + 33292: 0 + 33294: 0 + 33311.1: 0 + 33311.3: 0 + 33311.4: 0 + 33311.5: 0 + 33311.17: 0 + 33311.19: 0 + 33311.20: 0 + 33311.21: 0 + 33314.1: 0 + 33316.1: 0 + 33327: 0 + 33329.2: 0 + 33329.13: 0 + 33330: 0 + 33331: 0 + 33335.1: 0 + 33335.3: 0 + 33336: 0 + 33337: 0 + 33339: 0 + 33341: 0 + 33395.1: 0 + 33441: 0 + 33442: 0 + 33443: 0 + 33443.1: 0 + 33445.1: 0 + 33446: 0 + 33448: 0 + 33452: 0 + 33453: 0 + 33461.1: 0 + 33461.3: 0 + 33462: 0 + 33463: 0 + 33469.1: 0 + 33469.3: 0 + 33470: 0 + 33471: 0 + 33497: 0 + 33497.1: 0 + 33498: 0 + 33501.1: 0 + 33510.1: 0 + 33510.3: 0 + 33511: 0 + 33559.1: 0 + 33559.3: 0 + 33559.4: 0 + 33559.7: 0 + 33559.8: 0 + 33560: 0 + 33561: 0 + 33564.1: 0 + 33569.1: 0 + 33569.3: 0 + 33570.1: 0 + 33574.1: 0 + 33578.1: 0 + 33592.1: 0 + 33596.1: 0 + 33603.1: 0 + 33603.3: 0 + 33625.1: 0 + 33640: 0 + 33641: 0 + 33644.1: 0 + 33655.1: 0 + 33656: 0 + 33674: 0 + 33675: 0 + 33678.1: 0 + 33679.1: 0 + 33679.3: 0 + 33679.4: 0 + 33679.5: 0 + 33679.13: 0 + 33679.14: 0 + 33679.22: 0 + 33680.1: 0 + 33681.1: 0 + 33681.3: 0 + 33681.4: 0 + 33681.5: 0 + 33681.13: 0 + 33681.14: 0 + 33681.16: 0 + 33681.25: 0 + 33681.26: 0 + 33681.27: 0 + 33681.34: 0 + 33681.35: 0 + 33681.36: 0 + 33681.37: 0 + 33688.1: 0 + 33689: 0 + 33690: 0 + 33692: 0 + 33693.3: 0 + 33693.4: 0 + 33693.5: 0 + 33693.8: 0 + 33693.13: 0 + 33693.14: 0 + 33693.16: 0 + 33693.17: 0 + 33693.20: 0 + 33693.25: 0 + 33693.26: 0 + 33693.27: 0 + 33693.34: 0 + 33693.35: 0 + 33693.36: 0 + 33693.45: 0 + 33695.1: 0 + 33708.1: 0 + 33709.1: 0 + 33709.3: 0 + 33709.4: 0 + 33709.5: 0 + 33709.8: 0 + 33709.13: 0 + 33709.14: 0 + 33709.22: 0 + 33710.1: 0 + 33711.1: 0 + 33711.3: 0 + 33711.4: 0 + 33711.5: 0 + 33711.13: 0 + 33711.14: 0 + 33711.16: 0 + 33711.25: 0 + 33711.26: 0 + 33711.27: 0 + 33711.34: 0 + 33711.35: 0 + 33711.36: 0 + 33723.1: 0 + 33730: 0 + 33731.1: 0 + 33731.3: 0 + 33731.4: 0 + 33731.5: 0 + 33731.6: 0 + 33731.13: 0 + 33731.14: 0 + 33731.16: 0 + 33731.25: 0 + 33731.26: 0 + 33731.27: 0 + 33731.34: 0 + 33731.35: 0 + 33731.36: 0 + 33731.45: 0 + 33747.1: 0 + 33748: 0 + 33749.1: 0 + 33752.1: 0 + 33753.2: 0 + 33754.2: 0 + 33756.1: 0 + 33757.2: 0 + 33758.2: 0 + 33760.1: 0 + 33761.2: 0 + 33762.2: 0 + 33764.1: 0 + 33765.2: 0 + 33766.2: 0 + 33768.1: 0 + 33769.2: 0 + 33770.2: 0 + 33772.1: 0 + 33773.2: 0 + 33774.2: 0 + 33776.1: 0 + 33777.2: 0 + 33778.2: 0 + 33783.1: 0 + 33802.1: 0 + 33804.1: 0 + 33852.1: 0 + 33853.1: 0 + 33854: 0 + 33855: 0 + 33876.1: 0 + 33881: 0 + 33882: 0 + 33882.1: 0 + 33882.2: 0 + 33882.3: 0 + 33882.5: 0 + 33882.6: 0 + 33882.10: 0 + 33886: 0 + 33887: 0 + 33924.1: 0 + 33924.2: 0 + 33925.1: 0 + 33926: 0 + 33927: 0 + 33929.1: 0 + 33929.3: 0 + 33929.4: 0 + 33929.7: 0 + 33929.8: 0 + 33930.1: 0 + 33991: 0 + 33992: 0 + 34003.1: 0 + 34004: 0 + 34005: 0 + 34009.1: 0 + 34010: 0 + 34011: 0 + 34018.1: 0 + 34019: 0 + 34024.1: 0 + 34025: 0 + 34030.1: 0 + 34031: 0 + 34036.1: 0 + 34037: 0 + 34042.1: 0 + 34043: 0 + 34048.1: 0 + 34049: 0 + 34050: 0 + 34054.1: 0 + 34055: 0 + 34060.1: 0 + 34061: 0 + 34066.1: 0 + 34067: 0 + 34072.1: 0 + 34073: 0 + 34078.1: 0 + 34079: 0 + 34080: 0 + 34084.1: 0 + 34085: 0 + 34090.1: 0 + 34091: 0 + 34105.1: 0 + 34106: 0 + 34107.1: 0 + 34113.1: 0 + 34119.1: 0 + 34120: 0 + 34121.1: 0 + 34124.1: 0 + 34126.1: 0 + 34128.1: 0 + 34130.1: 0 + 34132.1: 0 + 34135.1: 0 + 34136: 0 + 34137.1: 0 + 34140.1: 0 + 34145.1: 0 + 34150.1: 0 + 34155.1: 0 + 34160.1: 0 + 34165.1: 0 + 34170.1: 0 + 34174.1: 0 + 34178.1: 0 + 34184.1: 0 + 34185.1: 0 + 34186.1: 0 + 34192.1: 0 + 34193.1: 0 + 34194.1: 0 + 34198.1: 0 + 34203.1: 0 + 34206.1: 0 + 34208.1: 0 + 34255.1: 0 + 34261.1: 0 + 34266.1: 0 + 34267: 0 + 34268.1: 0 + 34271.1: 0 + 34274.1: 0 + 34275: 0 + 34276.1: 0 + 34280.1: 0 + 34285.1: 0 + 34290.1: 0 + 34294.1: 0 + 34298.1: 0 + 34302.1: 0 + 34307.1: 0 + 34311.1: 0 + 34323: 0 + 34323.1: 0 + 34323.2: 0 + 34324: 0 + 34327.1: 0 + 34331: 0 + 34332: 0 + 34335.1: 0 + 34351.1: 0 + 34363: 0 + 34366.1: 0 + 34405.1: 0 + 34422: 0 + 34423: 0 + 34426.1: 0 + 34429.1: 0 + 34446.1: 0 + 34447.1: 0 + 34447.3: 0 + 34447.4: 0 + 34447.5: 0 + 34447.13: 0 + 34447.14: 0 + 34447.22: 0 + 34449.1: 0 + 34450: 0 + 34451: 0 + 34452.1: 0 + 34464.1: 0 + 34491.1: 0 + 34491.3: 0 + 34507: 0 + 34521.1: 0 + 34529.1: 0 + 34529.3: 0 + 34530.1: 0 + 34541.1: 0 + 34548.1: 0 + 34567.1: 0 + 34567.3: 0 + 34574.1: 0 + 34581.1: 0 + 34607.1: 0 + 34607.3: 0 + 34609.1: 0 + 34609.3: 0 + 34610.1: 0 + 34616.1: 0 + 34616.3: 0 + 34618.1: 0 + 34618.3: 0 + 34620.1: 0 + 34620.3: 0 + 34621.1: 0 + 34640.1: 0 + 34641: 0 + 34642.1: 0 + 34647.1: 0 + 34648: 0 + 34649.1: 0 + 34654.1: 0 + 34655: 0 + 34656.1: 0 + 34663.1: 0 + 34667.1: 0 + 34671.1: 0 + 34676.1: 0 + 34676.3: 0 + 34677.1: 0 + 34705.1: 0 + 34710.1: 0 + 34745.1: 0 + 34749.1: 0 + 34753.1: 0 + 34769.2: 0 + 34769.16: 0 + 34769.17: 0 + 34769.26: 0 + 34769.27: 0 + 34769.29: 0 + 34769.38: 0 + 34769.39: 0 + 34769.40: 0 + 34769.47: 0 + 34769.48: 0 + 34769.49: 0 + 34769.58: 0 + 34769.63: 0 + 34794: 0 + 34795: 0 + 34796: 0 + 34808.1: 0 + 34808.3: 0 + 34832.1: 0 + 34833: 0 + 34834.1: 0 + 34839.1: 0 + 34839.2: 0 + 34839.5: 0 + 34839.6: 0 + 34840: 0 + 34841.1: 0 + 34841.2: 0 + 34841.5: 0 + 34841.6: 0 + 34846.1: 0 + 34847: 0 + 34848.1: 0 + 34853.1: 0 + 34853.3: 0 + 34854.1: 0 + 34859.1: 0 + 34859.3: 0 + 34860.1: 0 + 34883.1: 0 + 34883.3: 0 + 34890.1: 0 + 34914.1: 0 + 34914.3: 0 + 34915.1: 0 + 34922.1: 0 + 34923: 0 + 34927.1: 0 + 35023.1: 0 + 35023.3: 0 + 35024.1: 0 + 35053.1: 0 + 35058.1: 0 + 35063.1: 0 + 35068.1: 0 + 35073.1: 0 + 35078.1: 0 + 35083.1: 0 + 35088.1: 0 + 35093.1: 0 + 35098.1: 0 + 35103.1: 0 + 35108.1: 0 + 35113.1: 0 + 35126: 0 + 35127: 0 + 35128: 0 + 35129: 0 + 35130: 0 + 35131: 0 + 35132: 0 + 35133: 0 + 35151: 0 + 35152: 0 + 35153: 0 + 35154: 0 + 35155: 0 + 35156: 0 + 35157: 0 + 35173.1: 0 + 35181.1: 0 + 35181.3: 0 + 35182.1: 0 + 35213: 0 + 35217: 0 + 35221: 0 + 35233.1: 267 new_terminal_node:250 + 35234: 267 + 35235.1: 283 new_non_terminal_node:268 + 35239.1: 0 + 35240: 0 + 35241.1: 0 + 35265.1: 0 + 35272.1: 0 + 35279.1: 0 + 35286.1: 0 + 35299.1: 268 + 35312.1: 0 + 35341.1: 0 + 35342: 0 + 35343.1: 0 + 35358.1: 0 + 35360.3: 0 + 35360.4: 0 + 35361.1: 0 + 35361.3: 0 + 35362.1: 0 + 35362.2: 0 + 35375.1: 0 + 35394.1: 0 + 35400.1: 0 + 35401: 0 + 35406.1: 0 + 35407: 0 + 35411.1: 0 + 35412: 0 + 35416.1: 0 + 35417: 0 + 35426.1: 0 + 35427: 0 + 35431.1: 0 + 35432: 0 + 35436.1: 0 + 35437: 0 + 35441.1: 0 + 35442: 0 + 35447.1: 0 + 35448: 0 + 35452.1: 0 + 35453: 0 + 35457.1: 0 + 35458: 0 + 35462.1: 0 + 35463: 0 + 35467.1: 0 + 35468: 0 + 35472.1: 0 + 35477.1: 0 + 35478: 0 + 35482.1: 0 + 35483: 0 + 35487.1: 0 + 35488: 0 + 35493.1: 0 + 35494: 0 + 35499.1: 0 + 35504.1: 0 + 35509.1: 0 + 35531.1: 0 + 35537.1: 0 + 35538.1: 0 + 35539.1: 0 + 35544.1: 0 + 35545.1: 0 + 35553.1: 0 + 35579.1: 0 + 35579.3: 0 + 35580.1: 0 + 35580.3: 0 + 35581.1: 0 + 35588.1: 0 + 35588.3: 0 + 35589.1: 0 + 35603.1: 0 + 35633.1: 0 + 35633.3: 0 + 35641: 0 + 35646: 0 + 35664: 0 + 35664.1: 0 + 35664.2: 0 + 35664.3: 0 + 35665: 0 + 35665.1: 0 + 35665.2: 0 + 35667: 0 + 35668.1: 0 + 35669: 0 + 35670: 0 + 35672: 0 + 35680.1: 0 + 35681: 0 + 35682: 0 + 35694.1: 0 + 35695: 0 + 35696: 0 + 35724: 0 + 35725: 0 + 35725.1: 0 + 35725.2: 0 + 35725.3: 0 + 35725.4: 0 + 35725.5: 0 + 35726: 0 + 35727: 0 + 35728: 0 + 35729: 0 + 35731.1: 0 + 35732: 0 + 35737: 0 + 35737.1: 0 + 35737.2: 0 + 35737.3: 0 + 35737.4: 0 + 35737.5: 0 + 35738: 0 + 35739: 0 + 35740: 0 + 35741: 0 + 35743.1: 0 + 35782.1: 0 + 35789.1: 0 + 35789.3: 0 + 35824.1: 0 + 35845.1: 0 + 35859.1: 0 + 35860: 0 + 35861.1: 0 + 35881.1: 0 + 35885.1: 0 + 35889.1: 0 + 35901.1: 0 + 35905.1: 0 + 35924.1: 0 + 35946.1: 0 + 35961.2: 0 + 35961.16: 0 + 35961.17: 0 + 35961.26: 0 + 35961.27: 0 + 35961.29: 0 + 35961.38: 0 + 35961.39: 0 + 35961.40: 0 + 35961.47: 0 + 35961.48: 0 + 35961.49: 0 + 35961.58: 0 + 35961.63: 0 + 35979.1: 0 + 35980: 0 + 35981.1: 0 + 35985.1: 0 + 35986: 0 + 35987.1: 0 + 35993.1: 0 + 35994: 0 + 35995.1: 0 + 35996: 0 + 35997.1: 0 + 36016.1: 0 + 36020.1: 0 + 36024.1: 0 + 36028.1: 0 + 36032.1: 0 + 36036.1: 0 + 36040.1: 0 + 36044.1: 0 + 36048.1: 0 + 36052.1: 0 + 36056.1: 0 + 36060.1: 0 + 36064.1: 0 + 36068.1: 0 + 36072.1: 0 + 36076.1: 0 + 36080.1: 0 + 36084.1: 0 + 36088.1: 0 + 36092.1: 0 + 36096.1: 0 + 36100.1: 0 + 36104.1: 0 + 36108.1: 0 + 36112.1: 0 + 36116.1: 0 + 36120.1: 0 + 36124.1: 0 + 36128.1: 0 + 36132.1: 0 + 36136.1: 0 + 36140.1: 0 + 36144.1: 0 + 36148.1: 0 + 36152.1: 0 + 36156.1: 0 + 36164.1: 0 + 36168.1: 0 + 36172.1: 0 + 36186.1: 0 + 36186.3: 0 + 36205.1: 0 + 36218.1: 0 + 36218.3: 0 + 36219.1: 0 + 36241.1: 0 + 36241.3: 0 + 36245.1: 0 + 36249.1: 0 + 36253.1: 0 + 36259.1: 0 + 36260.1: 0 + 36264.1: 0 + 36268.1: 0 + 36272.1: 0 + 36276.1: 0 + 36281.1: 0 + 36309.1: 0 + 36315: 0 + 36316: 0 + 36323.1: 0 + 36323.2: 0 + 36323.3: 0 + 36324.1: 0 + 36329.1: 0 + 36329.2: 0 + 36329.3: 0 + 36330.1: 0 + 36353.1: 0 + 36353.2: 0 + 36353.3: 0 + 36354.1: 0 + 36358.1: 0 + 36358.2: 0 + 36358.3: 0 + 36359.1: 0 + 36377.1: 0 + 36377.2: 0 + 36377.3: 0 + 36378.1: 0 + 36401.1: 0 + 36401.2: 0 + 36401.3: 0 + 36402.1: 0 + 36414: 0 + 36463.1: 0 + 36463.3: 0 + 36464.1: 0 + 36464.3: 0 + 36465.1: 0 + 36466: 0 + 36473.1: 0 + 36473.3: 0 + 36474.1: 0 + 36474.3: 0 + 36475.1: 0 + 36483.1: 0 + 36483.3: 0 + 36484.1: 0 + 36484.3: 0 + 36485.1: 0 + 36485.3: 0 + 36485.4: 0 + 36491.1: 0 + 36512.1: 0 + 36516.1: 0 + 36521.1: 0 + 36525.1: 0 + 36529.1: 0 + 36534.1: 0 + 36535: 0 + 36542.1: 0 + 36550.1: 0 + 36550.3: 0 + 36551.1: 0 + 36551.3: 0 + 36552.1: 0 + 36552.3: 0 + 36553.1: 0 + 36554.1: 0 + 36561.1: 0 + 36561.3: 0 + 36562.1: 0 + 36562.3: 0 + 36563.1: 0 + 36563.3: 0 + 36564.1: 0 + 36571.1: 0 + 36575.1: 0 + 36644.1: 0 + 36648.1: 0 + 36652.1: 0 + 36659.1: 0 + 36674: 0 + 36675.1: 0 + 36676.1: 0 + 36693.1: 0 + 36697.1: 0 + 36709.1: 0 + 36715.1: 0 + 36720.1: 0 + 36747.1: 0 + 36752.1: 0 + 36758.1: 0 + 36763.1: 0 + 36768.1: 0 + 36776.1: 0 + 36776.3: 0 + 36777.1: 0 + 36782.1: 0 + 36787.1: 0 + 36793.1: 0 + 36794: 0 + 36795.1: 0 + 36800.1: 0 + 36801: 0 + 36802.1: 0 + 36807.1: 0 + 36808: 0 + 36809.1: 0 + 36814.1: 0 + 36815: 0 + 36816.1: 0 + 36821.1: 0 + 36822: 0 + 36823.1: 0 + 36828.1: 0 + 36829: 0 + 36830.1: 0 + 36835.1: 0 + 36836: 0 + 36837.1: 0 + 36842.1: 0 + 36843: 0 + 36856.1: 0 + 36856.3: 0 + 36857.1: 0 + 36863.1: 0 + 36869.1: 0 + 36874.1: 0 + 36879.1: 0 + 36884.1: 0 + 36889.1: 0 + 36894.1: 0 + 36899.1: 0 + 36904.1: 0 + 36910.1: 0 + 36911: 0 + 36912.1: 0 + 36917.1: 0 + 36922.1: 0 + 36927.1: 0 + 36932.1: 0 + 36938.1: 0 + 36939: 0 + 36940.1: 0 + 36946.1: 0 + 36947: 0 + 36948.1: 0 + 36954.1: 0 + 36955: 0 + 36956.1: 0 + 36961.1: 0 + 36966.1: 0 + 36972.1: 0 + 36972.3: 0 + 36973.1: 0 + 36979.1: 0 + 36981.1: 0 + 36981.3: 0 + 36982: 0 + 36983.1: 0 + 36988.1: 0 + 36996.1: 0 + 36998.1: 0 + 36998.3: 0 + 36999: 0 + 37000.1: 0 + 37005.1: 0 + 37010.1: 0 + 37015.1: 0 + 37020.1: 0 + 37026.1: 0 + 37026.2: 0 + 37026.3: 0 + 37027.1: 0 + 37032.1: 0 + 37032.2: 0 + 37032.3: 0 + 37033.1: 0 + 37038.1: 0 + 37043.1: 0 + 37048.1: 0 + 37053.1: 0 + 37058.1: 0 + 37063.1: 0 + 37070.1: 0 + 37075.1: 0 + 37080.1: 0 + 37085.1: 0 + 37090.1: 0 + 37095.1: 0 + 37100.1: 0 + 37105.1: 0 + 37110.1: 0 + 37115.1: 0 + 37120.1: 0 + 37125.1: 0 + 37130.1: 0 + 37135.1: 0 + 37140.1: 0 + 37146.1: 0 + 37146.3: 0 + 37147.1: 0 + 37152.1: 0 + 37157.1: 0 + 37162.1: 0 + 37167.1: 0 + 37172.1: 0 + 37177.1: 0 + 37183.1: 0 + 37184: 0 + 37185.1: 0 + 37191.1: 0 + 37192: 0 + 37199.1: 0 + 37200: 0 + 37213.1: 0 + 37214: 0 + 37228.1: 0 + 37229: 0 + 37242.1: 0 + 37243: 0 + 37256.1: 0 + 37257: 0 + 37270.1: 0 + 37271: 0 + 37284.1: 0 + 37285: 0 + 37298.1: 0 + 37299: 0 + 37312.1: 0 + 37313: 0 + 37316.1: 0 + 37317: 0 + 37320.1: 0 + 37321: 0 + 37323.1: 0 + 37329.1: 0 + 37330: 0 + 37342.1: 0 + 37343: 0 + 37355.1: 0 + 37356: 0 + 37359.1: 0 + 37360: 0 + 37362.1: 0 + 37368.1: 0 + 37369: 0 + 37381.1: 0 + 37382: 0 + 37394.1: 0 + 37395: 0 + 37405.1: 0 + 37406: 0 + 37416.1: 0 + 37417: 0 + 37427.1: 0 + 37428: 0 + 37440.1: 0 + 37441: 0 + 37453.1: 0 + 37454: 0 + 37465.1: 0 + 37466: 0 + 37477.1: 0 + 37478: 0 + 37479.1: 0 + 37485.1: 0 + 37486: 0 + 37487.1: 0 + 37493.1: 0 + 37494: 0 + 37497.1: 0 + 37498: 0 + 37500.1: 0 + 37507.1: 0 + 37508: 0 + 37511.1: 0 + 37512: 0 + 37514.1: 0 + 37520.1: 0 + 37521: 0 + 37524.1: 0 + 37525: 0 + 37527.1: 0 + 37533.1: 0 + 37534: 0 + 37541.1: 0 + 37542: 0 + 37543.1: 0 + 37549.1: 0 + 37550: 0 + 37553.1: 0 + 37554: 0 + 37557.1: 0 + 37558: 0 + 37561.1: 0 + 37562: 0 + 37570.1: 0 + 37571: 0 + 37574.1: 0 + 37575: 0 + 37578.1: 0 + 37579: 0 + 37582.1: 0 + 37583: 0 + 37586.1: 0 + 37592.1: 0 + 37593: 0 + 37596.1: 0 + 37597: 0 + 37600.1: 0 + 37601: 0 + 37604.1: 0 + 37605: 0 + 37607.1: 0 + 37613.1: 0 + 37614: 0 + 37615.1: 0 + 37621.1: 0 + 37621.3: 0 + 37622.1: 0 + 37641.1: 0 + 37641.3: 0 + 37648.1: 0 + 37659.1: 0 + 37663.1: 0 + 37667.1: 0 + 37671.1: 0 + 37675.1: 0 + 37679.1: 0 + 37720.1: 0 + 37721: 0 + 37725.1: 0 + 37726: 0 + 37755.1: 0 + 37756: 0 + 37765.1: 0 + 37766: 0 + 37770.1: 0 + 37771: 0 + 37775.1: 0 + 37776: 0 + 37780.1: 0 + 37781: 0 + 37809.1: 0 + 37859.1: 0 + 37866.1: 0 + 37866.3: 0 + 37887.1: 0 + 37893.1: 0 + 37989.1: 0 + 37989.3: 0 + 38025.1: 0 + 38033.1: 0 + 38051.1: 0 + 38106.1: 0 + 38140: 0 + 38141: 0 + 38146: 0 + 38147: 0 + 38152: 0 + 38153: 0 + 38191.1: 0 + 38198.1: 0 + 38209.1: 0 + 38213.1: 0 + 38217.1: 0 + 38239.1: 0 + 38258.1: 0 + 38277.1: 0 + 38317.1: 0 + 38336.1: 0 + 38378.1: 0 + 38385: 0 + 38392.2: 0 + 38392.13: 0 + 38407.2: 0 + 38407.13: 0 + 38422.2: 0 + 38422.13: 0 + 38437.2: 0 + 38437.13: 0 + 38452.2: 0 + 38452.13: 0 + 38467.2: 0 + 38467.13: 0 + 38504.1: 0 + 38509.1: 0 + 38514.1: 0 + 38519.1: 0 + 38524.1: 0 + 38626.1: 0 + 38626.3: 0 + 38655.1: 0 + 38692.1: 0 + 38693: 0 + 38698.1: 0 + 38699: 0 + 38704.1: 0 + 38705: 0 + 38710: 0 + 38711: 0 + 38718.1: 0 + 38718.3: 0 + 38722.1: 0 + 38725.1: 0 + 38747.1: 0 + 38753.1: 0 + 38759.1: 0 + 38768.1: 0 + 38772.1: 0 + 38785.1: 0 + 38785.3: 0 + 38786: 0 + 38800.1: 0 + 38809.1: 0 + 38816.1: 0 + 38817: 0 + 38822.1: 0 + 38823: 0 + 38824.1: 0 + 38842.1: 0 + 38846.1: 0 + 38850.1: 0 + 38854.1: 0 + 38923.1: 0 + 38924: 0 + 38930.1: 0 + 38931: 0 + 38932.1: 0 + 38943.1: 0 + 38971.1: 0 + 38987.1: 0 + 38994.1: 0 + 39011.2: 0 + 39011.16: 0 + 39011.17: 0 + 39011.26: 0 + 39011.27: 0 + 39011.29: 0 + 39011.38: 0 + 39011.39: 0 + 39011.40: 0 + 39011.47: 0 + 39022.2: 0 + 39022.16: 0 + 39022.17: 0 + 39022.26: 0 + 39022.27: 0 + 39022.29: 0 + 39022.38: 0 + 39022.39: 0 + 39022.40: 0 + 39022.47: 0 + 39026.2: 0 + 39026.16: 0 + 39026.17: 0 + 39026.26: 0 + 39026.27: 0 + 39026.29: 0 + 39026.38: 0 + 39026.39: 0 + 39026.40: 0 + 39026.47: 0 + 39032.1: 0 + 39033.1: 0 + 39033.3: 0 + 39033.4: 0 + 39033.5: 0 + 39033.13: 0 + 39033.22: 0 + 39035.1: 0 + 39035.5: 0 + 39035.8: 0 + 39035.13: 0 + 39035.27: 0 + 39035.30: 0 + 39035.31: 0 + 39035.40: 0 + 39035.42: 0 + 39035.50: 0 + 39044.2: 0 + 39044.16: 0 + 39044.17: 0 + 39044.26: 0 + 39044.27: 0 + 39044.29: 0 + 39044.38: 0 + 39044.39: 0 + 39044.40: 0 + 39044.47: 0 + 39052.2: 0 + 39052.16: 0 + 39052.17: 0 + 39052.26: 0 + 39052.27: 0 + 39052.29: 0 + 39052.38: 0 + 39052.39: 0 + 39052.40: 0 + 39052.47: 0 + 39063.2: 0 + 39063.13: 0 + 39067.2: 0 + 39067.13: 0 + 39071.2: 0 + 39071.13: 0 + 39075.2: 0 + 39075.13: 0 + 39091.2: 0 + 39091.13: 0 + 39095.2: 0 + 39095.13: 0 + 39099.2: 0 + 39099.13: 0 + 39103.2: 0 + 39103.13: 0 + 39107.2: 0 + 39107.13: 0 + 39111.2: 0 + 39111.13: 0 + 39123.2: 0 + 39123.13: 0 + 39127.2: 0 + 39127.13: 0 + 39131.2: 0 + 39131.13: 0 + 39140.2: 0 + 39140.16: 0 + 39140.17: 0 + 39140.26: 0 + 39140.27: 0 + 39140.29: 0 + 39140.38: 0 + 39140.39: 0 + 39140.40: 0 + 39140.47: 0 + 39147.1: 0 + 39148: 0 + 39150: 0 + 39151.3: 0 + 39151.4: 0 + 39151.13: 0 + 39151.14: 0 + 39151.16: 0 + 39151.25: 0 + 39151.26: 0 + 39151.27: 0 + 39151.34: 0 + 39155.1: 0 + 39156: 0 + 39158: 0 + 39159.3: 0 + 39159.4: 0 + 39159.13: 0 + 39159.14: 0 + 39159.16: 0 + 39159.25: 0 + 39159.26: 0 + 39159.27: 0 + 39159.34: 0 + 39163.1: 0 + 39164: 0 + 39166: 0 + 39167.3: 0 + 39167.4: 0 + 39167.13: 0 + 39167.14: 0 + 39167.16: 0 + 39167.25: 0 + 39167.26: 0 + 39167.27: 0 + 39167.34: 0 + 39171.1: 0 + 39172: 0 + 39174: 0 + 39175.3: 0 + 39175.4: 0 + 39175.13: 0 + 39175.14: 0 + 39175.16: 0 + 39175.25: 0 + 39175.26: 0 + 39175.27: 0 + 39175.34: 0 + 39179.1: 0 + 39180: 0 + 39182: 0 + 39183.3: 0 + 39183.4: 0 + 39183.13: 0 + 39183.14: 0 + 39183.16: 0 + 39183.25: 0 + 39183.26: 0 + 39183.27: 0 + 39183.34: 0 + 39187.1: 0 + 39188: 0 + 39190: 0 + 39191.3: 0 + 39191.4: 0 + 39191.13: 0 + 39191.14: 0 + 39191.16: 0 + 39191.25: 0 + 39191.26: 0 + 39191.27: 0 + 39191.34: 0 + 39195.1: 0 + 39196: 0 + 39198: 0 + 39199.3: 0 + 39199.4: 0 + 39199.13: 0 + 39199.14: 0 + 39199.16: 0 + 39199.25: 0 + 39199.26: 0 + 39199.27: 0 + 39199.34: 0 + 39203.1: 0 + 39204: 0 + 39206: 0 + 39207.3: 0 + 39207.4: 0 + 39207.13: 0 + 39207.14: 0 + 39207.16: 0 + 39207.25: 0 + 39207.26: 0 + 39207.27: 0 + 39207.34: 0 + 39211.1: 0 + 39212: 0 + 39214: 0 + 39215.3: 0 + 39215.4: 0 + 39215.13: 0 + 39215.14: 0 + 39215.16: 0 + 39215.25: 0 + 39215.26: 0 + 39215.27: 0 + 39215.34: 0 + 39219.1: 0 + 39220: 0 + 39222: 0 + 39223.3: 0 + 39223.4: 0 + 39223.13: 0 + 39223.14: 0 + 39223.16: 0 + 39223.25: 0 + 39223.26: 0 + 39223.27: 0 + 39223.34: 0 + 39227.1: 0 + 39228: 0 + 39230: 0 + 39231.3: 0 + 39231.4: 0 + 39231.13: 0 + 39231.14: 0 + 39231.16: 0 + 39231.25: 0 + 39231.26: 0 + 39231.27: 0 + 39231.34: 0 + 39235.1: 0 + 39236: 0 + 39238: 0 + 39239.3: 0 + 39239.4: 0 + 39239.13: 0 + 39239.14: 0 + 39239.16: 0 + 39239.25: 0 + 39239.26: 0 + 39239.27: 0 + 39239.34: 0 + 39243.1: 0 + 39244: 0 + 39246: 0 + 39247.3: 0 + 39247.4: 0 + 39247.13: 0 + 39247.14: 0 + 39247.16: 0 + 39247.25: 0 + 39247.26: 0 + 39247.27: 0 + 39247.34: 0 + 39251.1: 0 + 39252: 0 + 39254: 0 + 39255.3: 0 + 39255.4: 0 + 39255.13: 0 + 39255.14: 0 + 39255.16: 0 + 39255.25: 0 + 39255.26: 0 + 39255.27: 0 + 39255.34: 0 + 39259.1: 0 + 39260: 0 + 39262: 0 + 39263.3: 0 + 39263.4: 0 + 39263.13: 0 + 39263.14: 0 + 39263.16: 0 + 39263.25: 0 + 39263.26: 0 + 39263.27: 0 + 39263.34: 0 + 39267.1: 0 + 39268: 0 + 39270: 0 + 39271.3: 0 + 39271.4: 0 + 39271.13: 0 + 39271.14: 0 + 39271.16: 0 + 39271.25: 0 + 39271.26: 0 + 39271.27: 0 + 39271.34: 0 + 39275.1: 0 + 39276: 0 + 39278: 0 + 39279.3: 0 + 39279.4: 0 + 39279.13: 0 + 39279.14: 0 + 39279.16: 0 + 39279.25: 0 + 39279.26: 0 + 39279.27: 0 + 39279.34: 0 + 39283.1: 0 + 39284: 0 + 39286: 0 + 39287.3: 0 + 39287.4: 0 + 39287.13: 0 + 39287.14: 0 + 39287.16: 0 + 39287.25: 0 + 39287.26: 0 + 39287.27: 0 + 39287.34: 0 + 39291.1: 0 + 39292: 0 + 39294: 0 + 39295.3: 0 + 39295.4: 0 + 39295.13: 0 + 39295.14: 0 + 39295.16: 0 + 39295.25: 0 + 39295.26: 0 + 39295.27: 0 + 39295.34: 0 + 39299.1: 0 + 39300: 0 + 39302: 0 + 39303.3: 0 + 39303.4: 0 + 39303.13: 0 + 39303.14: 0 + 39303.16: 0 + 39303.25: 0 + 39303.26: 0 + 39303.27: 0 + 39303.34: 0 + 39316: 0 + 39318.1: 0 + 39329.1: 0 + 39330: 0 + 39334: 0 + 39335: 0 + 39343.1: 0 + 39344: 0 + 39345: 0 + 39348.1: 0 + 39349: 0 + 39352.1: 0 + 39353: 0 + 39354: 0 + 39357.1: 0 + 39358: 0 + 39360.1: 0 + 39365.1: 0 + 39366: 0 + 39367: 0 + 39370.1: 0 + 39371: 0 + 39373.1: 0 + 39378.1: 0 + 39379: 0 + 39380: 0 + 39383.1: 0 + 39384: 0 + 39386.1: 0 + 39390.1: 0 + 39412.1: 0 + 39413: 0 + 39414: 0 + 39417.1: 0 + 39418: 0 + 39420.1: 0 + 39426.1: 0 + 39427: 0 + 39428: 0 + 39431.1: 0 + 39438.1: 0 + 39439: 0 + 39440: 0 + 39442.1: 0 +_ZN9oceanbase5share6schema19ObSchemaGetterGuard23get_sys_variable_schemaEmRPKNS1_25ObSimpleSysVariableSchemaE:1606001:5355 + 2: 4957 + 3: 4957 + 4: 4957 + 5: 4957 + 6: 0 + 7.1: 0 + 8.1: 4957 + 9: 0 + 10.1: 0 + 11.1: 4679 + 12.1: 0 + 13.1: 4679 + 14.1: 0 + 15.1: 5170 _ZNK9oceanbase5share6schema16ObSysVariableMgr23get_sys_variable_schemaEmRPKNS1_25ObSimpleSysVariableSchemaE:5294 + 16.1: 0 + 18: 5170 + 5: _ZNK9oceanbase5share6schema19ObSchemaGetterGuard16check_inner_statEv:237936 + 2: 4957 + 3: 4957 + 4: 0 + 5.1: 0 + 6.1: 4957 + 6.2: 4957 + 7: 4957 + 7.1: 4957 + 8: 0 + 9.1: 0 + 11: 4957 + 11.1: _ZNK9oceanbase5share6schema19ObSchemaGetterGuard25check_tenant_schema_guardEm:89226 + 2: 4957 + 4: 4957 + 6: 0 + 7.1: 0 + 10: 0 + 3: _ZNK9oceanbase5share6schema19ObSchemaGetterGuard22is_tenant_schema_guardEv:49570 + 0: 4957 + 13.1: _ZNK9oceanbase5share6schema19ObSchemaGetterGuard16check_lazy_guardEmRPKNS1_11ObSchemaMgrE:669132 + 2: 4679 + 4: 4679 + 5.1: 0 + 6.1: 4679 + 7: 0 + 8.1: 0 + 10: 0 + 4: _ZNK9oceanbase5share6schema19ObSchemaGetterGuard14get_schema_mgrEmRPKNS1_11ObSchemaMgrE:505367 + 2: 4679 + 3: 4679 + 4: 4679 + 5: 4679 + 6: 0 + 7.1: 0 + 8.1: 4679 + 9.1: 0 + 11: 4679 + 12: 4679 + 13.1: 0 + 16: 0 + 8.1: _ZNK9oceanbase5share6schema19ObSchemaGetterGuard19get_schema_mgr_infoEmRPKNS1_15ObSchemaMgrInfoE:233985 + 3: 4679 + 7.1: 4679 + 9: 4678 + 9.2: 0 + 9.3: 0 + 15: 1 + 17.1: 1 + 18: 1 + 20: 1 + 23: 0 + 7.1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema15ObSchemaMgrInfoEE5countEv:32753 + 0: 4679 + 9: _ZNK9oceanbase6common13ObSEArrayImplINS_5share6schema15ObSchemaMgrInfoELl2ENS0_19ModulePageAllocatorELb0EEixEl:32746 + 5: 4678 + 9.1: _ZNK9oceanbase6common13ObSEArrayImplINS_5share6schema15ObSchemaMgrInfoELl2ENS0_19ModulePageAllocatorELb0EEixEl:18712 + 5: 4678 + 19: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema15ObSchemaMgrInfoEE2atEl:14 + 6: 1 + 20: _ZNK9oceanbase5share6schema15ObSchemaMgrInfo13get_tenant_idEv:9 + 0: 1 + 11: _ZNK9oceanbase5share6schema15ObSchemaMgrInfo14get_schema_mgrEv:18716 + 0: 4679 +_ZN9oceanbase3sql10ObExecutor12execute_planERNS0_13ObExecContextE:1603238:4816 + 1: 4535 + 2.1: 4603 + 2.2: 49 + 2.4: 49 + 3: 4603 + 10: 4603 + 13: 4603 + 14: 49 + 15.1: 49 + 16.1: 4603 + 17: 49 + 18.1: 49 + 19.1: 4603 + 20: 49 + 21.1: 49 + 22.1: 4867 _ZN9oceanbase3sql18ObBasicSessionInfo16set_cur_phy_planEPNS0_14ObPhysicalPlanE:4722 + 23.1: 49 + 24.1: 4844 + 24.2: 4867 _ZNK9oceanbase3sql15ObExprFrameInfo21pre_alloc_exec_memoryERNS0_13ObExecContextE:4958 + 26.1: 49 + 27.1: 4844 + 27.2: 49 + 28: 4844 + 28.1: 49 + 29.1: 49 + 31: 4844 + 33: 4844 + 41: 4844 + 41.1: 49 + 42: 49 + 43.1: 49 + 47: 49 + 49.1: 4924 + 49.2: 49 + 49.3: 49 + 49.4: 49 + 49.6: 49 + 49.7: 49 + 50: 4924 + 51: 4924 + 51.1: 4924 _ZNK9oceanbase3sql8ObOpSpec15create_operatorERNS0_13ObExecContextERPNS0_10ObOperatorE:4974 + 52.1: 49 + 53.1: 4689 + 54: 49 + 55.1: 49 + 62.1: 49 + 62.2: 49 + 62.3: 49 + 62.4: 49 + 62.6: 49 + 62.7: 49 + 63: 49 + 66.1: 49 + 66.2: 49 + 66.3: 49 + 66.4: 49 + 66.6: 49 + 66.7: 49 + 69: 49 + 72: 49 + 76.1: 4467 + 76.2: 49 + 76.4: 49 + 77: 4467 + 2.1: _ZN9oceanbase3lib20is_trace_log_enabledEv:36756 + 2: 4535 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:4859 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:32221 + 2: 4603 + 2.2: _ZN9oceanbase6common18get_trace_recorderEv:2989 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:2989 + 7: 49 + 8: 49 + 8.1: 49 + 2.4: _ZN9oceanbase3lib20is_trace_log_enabledEv:588 + 2: 49 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:343 + 2: 49 + 2.5: _ZN9oceanbase6common18get_trace_recorderEv:3332 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:3332 + 7: 49 + 8: 49 + 8.1: 49 + 2.9: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl189ELl1600EE9add_eventEv:3871 + 2: 49 + 3.1: 49 + 6: 49 + 10: 49 + 11: 49 + 2.10: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:1715 + 0: 49 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:245 + 2: 49 + 6: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:36824 + 2: 4603 + 7: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:36824 + 2: 4603 + 8: _ZN9oceanbase3sql13ObExecContext11get_sql_ctxEv:36824 + 0: 4603 + 8.1: _ZNK9oceanbase3sql15ObMultiStmtItem20get_batched_stmt_cntEv:106751 + 3: 4603 + 4: 49 + 5.1: 4603 + 6: _ZNK9oceanbase6common12ObIArrayWrapINS0_8ObStringEE5countEv:196 + 0: 49 + 10.1: _ZN9oceanbase3sql15ObMultiStmtItem20is_ins_multi_val_optEv:18412 + 0: 4603 + 24.1: _ZN9oceanbase3sql14ObPhysicalPlan19get_expr_frame_infoEv:19468 + 0: 4867 + 28.1: _ZN9oceanbase3sql17ObPhysicalPlanCtx28create_implicit_cursor_infosEl:882 + 1: 49 + 31: _ZNK9oceanbase3sql14ObPhysicalPlan13get_plan_typeEv:29064 + 0: 4844 + 33: _ZNK9oceanbase3sql14ObPhysicalPlan20get_need_serial_execEv:33908 + 0: 4844 + 34.1: _ZN9oceanbase3sql18ObBasicSessionInfo20set_need_serial_execEb:637 + 0: _ZN9oceanbase3sql18ObBasicSessionInfo10TransFlags20set_need_serial_execEb:637 + 0: _ZN9oceanbase3sql18ObBasicSessionInfo10TransFlags8set_flagEbm:637 + 3: 49 + 41.1: _ZNK9oceanbase3sql14ObPhysicalPlan26is_require_local_executionEv:343 + 0: 49 + 49.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:24600 + 2: 4844 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:4997 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:19696 + 2: 4924 + 51: _ZNK9oceanbase3sql14ObPhysicalPlan16get_root_op_specEv:54164 + 0: 4924 + 57: _ZN9oceanbase3sql15ObExecuteResult22set_static_engine_rootEPNS0_10ObOperatorE:75024 + 2: 4689 + 3: _ZN9oceanbase3sql14ObBatchRowIter12set_operatorEPNS0_10ObOperatorE:37512 + 0: 4689 + 62.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:441 + 2: 49 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:196 + 2: 49 + 63: _ZN9oceanbase3sql10ObExecutor36execute_remote_single_partition_planERNS0_13ObExecContextE:784 + 3: 49 + 66.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:441 + 2: 49 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:196 + 2: 49 + 76.1: _ZN9oceanbase3lib20is_trace_log_enabledEv:36154 + 2: 4689 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:4717 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:31269 + 2: 4467 + 76.2: _ZN9oceanbase6common18get_trace_recorderEv:2989 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:2989 + 7: 49 + 8: 49 + 8.1: 49 + 76.4: _ZN9oceanbase3lib20is_trace_log_enabledEv:588 + 2: 49 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:343 + 2: 49 + 76.5: _ZN9oceanbase6common18get_trace_recorderEv:3332 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:3332 + 7: 49 + 8: 49 + 8.1: 49 + 76.11: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl189ELl1600EE9add_eventEv:4459 + 2: 49 + 3.1: 49 + 6: 49 + 10: 49 + 11: 49 + 76.12: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:1715 + 0: 49 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:245 + 2: 49 +_ZN9oceanbase6common17ObAtomicReference27dec_ref_cnt_and_inc_seq_numERj:1596492:15190 + 1: 14150 + 2: 14150 + 5.1: 263 + 6: 14414 + 9: 14414 + 10: 0 + 11.1: 0 + 13: 14414 + 14: 14414 + 18: 14414 + 21: 263 + 26: 14153 + 27: 14153 + 29: 14153 +_ZNK9oceanbase5share6schema16ObSysVariableMgr23get_sys_variable_schemaEmRPKNS1_25ObSimpleSysVariableSchemaE:1592320:5297 + 3: 5120 + 4: 5120 + 5: 5120 + 6: 5120 + 7: 0 + 8.1: 0 + 9.1: 5120 + 10: 0 + 11.1: 0 + 15.1: 5120 + 17: 0 + 21: 5120 + 24: 5120 + 15: _ZNK9oceanbase6common4hash16ObPointerHashMapINS_5share6schema24ObSysVariableHashWrapperEPNS4_25ObSimpleSysVariableSchemaENS4_19ObGetSysVariableKeyELl8064ENS0_19ModulePageAllocatorEE14get_refactoredERKS5_RS7_:1187840 + 4: 5120 + 5.1: 0 + 8.1: 5120 + 9: 0 + 9: _ZNK9oceanbase6common4hash18ObPointerHashArrayINS_5share6schema24ObSysVariableHashWrapperEPNS4_25ObSimpleSysVariableSchemaENS4_19ObGetSysVariableKeyEE14get_refactoredERKS5_RS7_:957440 + 5: 5120 + 5.1: 5120 + 6.1: 0 + 9: 5120 + 4: _ZNK9oceanbase6common4hash18ObPointerHashArrayINS_5share6schema24ObSysVariableHashWrapperEPNS4_25ObSimpleSysVariableSchemaENS4_19ObGetSysVariableKeyEE21placement_hash_searchERKS5_Rl:839680 + 3: 5120 + 5: 5120 + 9: 5120 + 13: 5120 + 15.2: 5120 + 16: 5120 + 20: 0 + 8: _ZNK9oceanbase6common4hash18ObPointerHashArrayINS_5share6schema24ObSysVariableHashWrapperEPNS4_25ObSimpleSysVariableSchemaENS4_19ObGetSysVariableKeyEE17key_to_anchor_idxERKS5_:424960 + 3: 5120 + 4: 5120 + 4.2: 0 + 2: _ZN9oceanbase6common7do_hashINS_5share6schema24ObSysVariableHashWrapperEEEmRKT_:348160 + 2: _ZN9oceanbase6common13dispatch_hashINS_5share6schema24ObSysVariableHashWrapperEEEmRKT_NS0_8BoolTypeILb1EEE:348160 + 2: _ZNK9oceanbase5share6schema24ObSysVariableHashWrapper4hashEv:348160 + 3: _ZN9oceanbase6common10murmurhashEPKvim:348160 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:348160 + 8.2: _ZNK9oceanbase6common4hash18ObPointerHashArrayINS_5share6schema24ObSysVariableHashWrapperEPNS4_25ObSimpleSysVariableSchemaENS4_19ObGetSysVariableKeyEE10probe_nextEl:0 + 3: 0 + 5: 0 + 15.1: _ZNK9oceanbase5share6schema19ObGetSysVariableKeyINS1_24ObSysVariableHashWrapperEPNS1_25ObSimpleSysVariableSchemaEEclEPKS4_:66560 + 2: 5120 + 3: _ZNK9oceanbase5share6schema25ObSimpleSysVariableSchema13get_tenant_idEv:20480 + 0: 5120 + 15.4: _ZNK9oceanbase5share6schema24ObSysVariableHashWrappereqERKS2_:15360 + 1: 5120 +_ZN9oceanbase7storage18ObStoreRowIterator12get_next_rowERPKNS_12blocksstable10ObDatumRowE:1589502:99863 + 1: 99339 + 3: 99339 _ZN9oceanbase7storage31ObSSTableMultiVersionRowScanner18inner_get_next_rowERPKNS_12blocksstable10ObDatumRowE:100369 _ZN9oceanbase7storage18ObSSTableRowGetter18inner_get_next_rowERPKNS_12blocksstable10ObDatumRowE:91 +_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher19prefetch_micro_dataEv:1579943:2157 + 1: 1957 + 2: 1957 + 3: 1957 + 3.1: 1957 + 3.2: 1957 + 5: 13 + 6.1: 13 + 8.1: 1957 + 13: 1957 + 14: 1957 + 15: 1957 + 16.1: 2186 + 16.3: 2186 + 17: 3153 _ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher10drill_downEv:3118 + 19.1: 13 + 21.1: 1995 + 26.1: 2522 + 26.3: 2522 + 27: 3376 + 28: 3376 + 29: 3376 + 31.1: 13 + 34: 1007 + 37.1: 2831 + 38: 13 + 39.1: 13 + 44.1: 2871 _ZN9oceanbase7storage21ObIndexTreePrefetcher19prefetch_block_dataERNS_12blocksstable16ObMicroIndexInfoERNS0_22ObMicroBlockDataHandleEb:2903 + 45.1: 13 + 48: 13 + 49: 2522 + 50: 2522 + 51: 2522 + 55: 1007 + 56: 1039 + 57: 1039 + 58: 1031 + 59: 1039 + 65: 1039 + 66: 1039 + 72: 2138 + 65005.1: 13 + 13: _ZN9oceanbase6common3minEii:9785 + 2: 1957 + 14: _ZN9oceanbase6common3minEll:13699 + 2: 1957 + 29: _ZN9oceanbase6common16ObFixedArrayImplINS_7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandleENS0_12ObIAllocatorEEixEl:23671 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandleEE2atEl:23671 + 6: 3376 + 29.1: _ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandle17get_next_data_rowERNS_12blocksstable16ObMicroIndexInfoE:186983 + 3: 3808 _ZN9oceanbase12blocksstable22ObIndexBlockRowScanner8get_nextERNS0_16ObMicroIndexInfoE:3552 + 5.1: 13 + 7.1: 2791 + 8: 13 + 9.1: 13 + 10.1: 2791 + 13: 2831 + 7.1: _ZNK9oceanbase12blocksstable16ObMicroIndexInfo13is_data_blockEv:22328 + 2: 2791 + 3: _ZNK9oceanbase12blocksstable21ObIndexBlockRowHeader13is_data_blockEv:11164 + 0: 2791 + 11: _ZN9oceanbase12blocksstable16ObMicroIndexInfo13set_blockscanEv:117 + 2: 13 + 37.2: _ZNK9oceanbase7storage17ObAggregatedStore18can_agg_index_infoERKNS_12blocksstable16ObMicroIndexInfoE:1209 + 2: 13 + 2.1: 13 + 2.2: 13 + 3: 13 + 2: _ZNK9oceanbase7storage15ObBlockRowStore14filter_is_nullEv:156 + 0: 13 + 0.1: 13 + 2.1: _ZNK9oceanbase7storage8ObAggRow17need_exclude_nullEv:104 + 0: 13 + 2.2: _ZNK9oceanbase7storage17ObAggregatedStore21can_batched_aggregateEv:104 + 0: 13 + 3: _ZNK9oceanbase12blocksstable16ObMicroIndexInfo13can_blockscanEv:221 + 2: 13 + 38: _ZN9oceanbase7storage17ObAggregatedStore15fill_index_infoERKNS_12blocksstable16ObMicroIndexInfoE:2301 + 2: 13 + 3: 13 + 4: 13 + 5.1: 13 + 7.1: 13 + 7.2: 13 + 7.3: 13 + 7.5: 13 + 8: 13 + 9: 13 + 10.1: 13 + 14: 13 + 8: _ZN9oceanbase7storage8ObAggRow2atEl:143 + 0: 13 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_7storage9ObAggCellEE2atEl:91 + 6: 13 + 51: _ZN9oceanbase6common16ObFixedArrayImplINS_7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandleENS0_12ObIAllocatorEEixEl:17654 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandleEE2atEl:17654 + 6: 2522 + 51.1: _ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandle25current_block_read_handleEv:108446 + 2: 2522 + 3: 2522 + 56: _ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher21prefetching_range_idxEv:79722 + 2: 1007 + 2.1: 13 + 76: 13 + 3: _ZN9oceanbase6common16ObFixedArrayImplINS_7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandleENS0_12ObIAllocatorEEixEl:7049 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandleEE2atEl:7049 + 6: 1007 + 3.1: _ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandle25current_block_read_handleEv:43301 + 2: 1007 + 3: 1007 + 3.2: _ZNK9oceanbase12blocksstable16ObMicroIndexInfo9range_idxEv:16125 + 2: 1007 + 56.1: _ZN9oceanbase6common16ObFixedArrayImplINS_7storage19ObSSTableReadHandleENS0_12ObIAllocatorEEixEl:7273 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_7storage19ObSSTableReadHandleEE2atEl:7273 + 6: 1039 +_ZN9oceanbase7storage20ObTableStoreIteratorC2Eb:1577541:5607 + 1: 5241 + 2: 5241 + 3: 5241 + 4: 5241 + 5: 5241 + 6: 5241 + 1: _ZN9oceanbase6common9ObSEArrayIPNS_7storage8ObITableELl16ENS0_19ModulePageAllocatorELb0EEC2Ev:843801 + 0.1: 5241 + 0.5: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl16ENS0_19ModulePageAllocatorELb0EEC2ElRKS5_:712776 + 5: 5241 + 6: 5241 + 8: 5241 + 17.1: 5241 + 2: _ZN9oceanbase6common8ObIArrayIPNS_7storage8ObITableEEC2EPS4_l:62892 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_7storage8ObITableEEC2EPS4_l:62892 + 0: 5241 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:298737 + 0: 5241 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:131025 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:131025 + 2: 5241 + 8: 5241 +_ZN9oceanbase7storage20ObTableStoreIteratorC1Eb:1577541:5607 + 1: 5241 + 2: 5241 + 3: 5241 + 4: 5241 + 5: 5241 + 6: 5241 + 1: _ZN9oceanbase6common9ObSEArrayIPNS_7storage8ObITableELl16ENS0_19ModulePageAllocatorELb0EEC2Ev:843801 + 0.1: 5241 + 0.5: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl16ENS0_19ModulePageAllocatorELb0EEC2ElRKS5_:712776 + 5: 5241 + 6: 5241 + 8: 5241 + 17.1: 5241 + 2: _ZN9oceanbase6common8ObIArrayIPNS_7storage8ObITableEEC2EPS4_l:62892 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_7storage8ObITableEEC2EPS4_l:62892 + 0: 5241 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:298737 + 0: 5241 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:131025 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:131025 + 2: 5241 + 8: 5241 +_ZN9oceanbase3sql17ObChunkDatumStore13ChunkIterator5resetEv:1567648:8230 + 1: 7960 + 3: 7925 + 4: 7925 + 5: 7925 + 2: _ZN9oceanbase3sql17ObChunkDatumStore13ChunkIterator12reset_cursorEl:1202643 + 2: 7960 + 4: 7960 + 5: 12 + 6: 12 + 7: 12 + 8: 12 + 9: 12 + 10.1: 12 + 14: 7960 _ZN9oceanbase12blocksstable17ObTmpFileIOHandle5resetEv:8233 + 17: 7925 + 18: 12 + 20: 7925 + 21: 12 + 25: 7925 + 28.1: 7925 + 29: 12 + 32.1: 7925 + 33: 12 + 36: 7925 + 37: 7925 + 38: 7925 + 39: 7925 + 8: _ZN9oceanbase3sql17ObChunkDatumStore13callback_freeEl:216 + 0: 12 + 0.1: 12 + 9: _ZN9oceanbase3sql17ObChunkDatumStore13ChunkIterator18read_file_iter_endEv:84 + 0: 12 + 18: _ZNK9oceanbase3sql17ObChunkDatumStore11BlockBuffer8mem_sizeEv:96 + 0: 12 + 18.1: _ZN9oceanbase3sql17ObChunkDatumStore13ChunkIterator10free_blockEPNS1_5BlockElb:612 + 31: 12 + 32: 12 + 32: _ZN9oceanbase3sql17ObChunkDatumStore13callback_freeEl:360 + 0: 12 + 0.1: 12 + 21: _ZNK9oceanbase3sql17ObChunkDatumStore11BlockBuffer8mem_sizeEv:96 + 0: 12 + 21.1: _ZN9oceanbase3sql17ObChunkDatumStore13ChunkIterator10free_blockEPNS1_5BlockElb:612 + 31: 12 + 32: 12 + 32: _ZN9oceanbase3sql17ObChunkDatumStore13callback_freeEl:360 + 0: 12 + 0.1: 12 + 28.1: _ZNK9oceanbase3sql17ObChunkDatumStore9BlockList9get_firstEv:55475 + 0: 7925 + 29: _ZN9oceanbase3sql17ObChunkDatumStore9BlockList12remove_firstEv:444 + 3: 12 + 4: 12 + 5: 12 + 6: 12 + 7: 12 + 29.1: _ZN9oceanbase3sql17ObChunkDatumStore13ChunkIterator10free_blockEPNS1_5BlockElb:612 + 31: 12 + 32: 12 + 32: _ZN9oceanbase3sql17ObChunkDatumStore13callback_freeEl:360 + 0: 12 + 0.1: 12 + 32.1: _ZNK9oceanbase3sql17ObChunkDatumStore9BlockList9get_firstEv:55475 + 0: 7925 + 33: _ZN9oceanbase3sql17ObChunkDatumStore9BlockList12remove_firstEv:444 + 3: 12 + 4: 12 + 5: 12 + 6: 12 + 7: 12 + 33.1: _ZN9oceanbase3sql17ObChunkDatumStore13ChunkIterator10free_blockEPNS1_5BlockElb:612 + 31: 12 + 32: 12 + 32: _ZN9oceanbase3sql17ObChunkDatumStore13callback_freeEl:360 + 0: 12 + 0.1: 12 +_ZNK9oceanbase7obmysql7OMPKEOF9serializeEPclRl:1566816:7120 + 1: 6872 + 2: 6872 + 4: 6872 + 4.1: 6872 + 5: 0 + 6.1: 0 + 7.1: 6872 + 8: 0 + 9.1: 0 + 11: 6872 + 12.1: 0 + 13.1: 6872 + 14.1: 0 + 15.1: 6872 + 16.1: 0 + 20: 6872 + 11: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int1EPclaRl:178672 + 7: 6872 + 8.1: 6872 + 9: 6872 + 13.1: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int2EPclsRl:192416 + 7: 6872 + 8.1: 6872 + 9: 6872 + 15.1: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int2EPclsRl:151184 + 7: 6872 + 8.1: 6872 + 9: 6872 +_ZN9oceanbase3sql8ObParser10is_pl_stmtERKNS_6common8ObStringEPbS6_:1557564:1704 + 1: 1577 + 10: 0 + 14.1: 14156 + 15: 15251 + 23: 2221 + 27: 123 + 27.1: 123 + 33: 4 + 33.1: 4 + 39: 2238 + 48: 0 + 54: 0 + 55: 0 + 55.1: 0 + 63: 13089 + 63.6: 11725 + 64: 2010 + 64.6: 1998 + 69: 13246 + 76: 1549 + 9: _ZNK9oceanbase6common8ObString6lengthEv:34694 + 0: 1577 + 65361: 1577 + 65: _ZN9oceanbase6common8ObStringC2ElPKc:45954 + 1: 1998 + 2: 1998 + 3: 1998 + 5: 1998 + 6: 0 + 66: _ZN9oceanbase3sql8ObParser16transform_normalENS1_5StateERNS_6common8ObStringERbS6_PbS7_:165077 + 4: 1998 + 20: 0 + 21: 0 + 30: 816 + 39: 0 + 40: 0 + 55: 0 + 56: 0 + 65: 0 + 72: 0 + 72.1: 0 + 72.2: 0 + 73: 0 + 73.1: 0 + 73.2: 0 + 73.3: 0 + 81: 0 + 82: 0 + 98.1: 0 + 101: 814 + 6: _ZN9oceanbase3sql8ObParser16transform_normalERNS_6common8ObStringE:122135 + 17: 1511 + 17.1: 1281 + 17.3: 1247 + 18.3: 0 + 19.3: 0 + 20.1: 1 + 20.3: 1 + 21.1: 0 + 21.3: 0 + 22.1: 0 + 22.3: 0 + 23.1: 0 + 23.3: 0 + 24.1: 0 + 24.3: 0 + 25.1: 0 + 25.3: 0 + 26.1: 0 + 26.3: 0 + 27.1: 0 + 27.3: 0 + 28.1: 294 + 28.3: 271 + 29.1: 0 + 29.3: 0 + 30.1: 0 + 30.3: 0 + 31.1: 0 + 31.3: 0 + 32.1: 0 + 32.3: 0 + 33.1: 0 + 33.3: 0 + 34.1: 1265 + 34.3: 1270 + 35.3: 0 + 36.3: 0 + 37.3: 0 + 41.1: 0 + 41.2: 799 + 41.3: 829 + 18: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 19: _ZN9oceanbase3lib13is_mysql_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 90: _ZN9oceanbase3sql8ObParser16transform_normalERNS_6common8ObStringE:4464 + 17: 496 + 23.1: 0 + 23.3: 0 + 26.1: 0 + 26.3: 0 + 27.1: 0 + 27.3: 0 + 30.1: 0 + 30.3: 0 + 35.1: 0 + 35.3: 0 +_ZN9oceanbase3sql13AllocOpHelperILi2EE5allocERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputElRPNS0_10ObOperatorE:1556775:559 + 3: 520 + 4: 520 + 7: 520 + 8: 520 + 9: 2 + 10.1: 2 + 12.1: 520 + 13: 2 + 14.1: 2 + 16: 520 + 17: 520 + 18: 2 + 19: 2 + 20.1: 2 + 22: 520 + 23: 558 + 24: 558 + 25.1: 558 + 33: 558 + 17: _ZN9oceanbase6common16ObArenaAllocator5allocEl:68766 + 0: 520 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13alloc_alignedEll:66686 + 3: 520 + 6: 520 + 7: 520 + 8: 520 + 10: 520 + 11: 520 + 12: 520 + 13: 520 + 15.1: 2 + 16: 2 + 18: 2 + 20: 2 + 28: 2 + 35: 520 + 36: 520 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE15ensure_cur_pageEv:7688 + 2: 520 + 3: 2 + 5.1: 2 + 8: 2 + 9: 2 + 10: 2 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:648 + 5: 2 + 6: 2 + 8: 2 + 9: 2 + 11.1: 2 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:490 + 2: 2 + 3: 2 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:32 + 5: 2 + 7: 2 + 8: 2 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:360 + 2: 2 + 2.2: 2 + 2.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:308 + 3: 2 + 4: 2 + 5: 2 + 6: 2 + 7: 2 + 8: 2 + 9: 2 + 10: 2 + 11: 2 + 13: 2 + 14.1: 2 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:14 + 2: 2 + 9: _ZSt3maxIlERKT_S2_S2_:24 + 5: 2 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:48 + 1: 2 + 3: 2 + 8: _ZL12abort_unlessb:28 + 5: 2 + 6: 2 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:16 + 0: 2 + 7: _ZN9oceanbase6common16get_align_offsetEPvl:7280 + 3: 520 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:3640 + 0: 520 + 11: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:3640 + 7: 520 + 15.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE18is_normal_overflowEl:8 + 2: 2 + 16: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11extend_pageEl:122 + 4: 2 + 5: 2 + 8: 2 + 9: 2 + 10.1: 2 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:16 + 2: 2 + 12: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_tailEPNS3_4PageE:38 + 2: 2 + 3: 2 + 5: 2 + 23.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16lookup_next_pageEl:82 + 3.1: 2 + 4.1: 2 + 5: 2 + 5.1: 2 + 7: 2 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page10reuse_sizeEv:22 + 0: 2 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:8 + 2: 2 + 32: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9alloc_bigEl:294 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:242 + 3: 2 + 5: 2 + 6: 2 + 8: 2 + 9: 2 + 11.1: 2 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:88 + 2: 2 + 3: 2 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:30 + 5: 2 + 7: 2 + 8: 2 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:54 + 1: 2 + 3: 2 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_headEPNS3_4PageE:34 + 4: 2 + 5: 2 + 7: 2 + 7: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:18 + 3: 2 + 23: _ZN9oceanbase3sql8ObSortOpC2ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE:1368691 + 2: 467 _ZN9oceanbase3sql12ObSortOpImplC1Ev:481 + 5: 558 + 6: 558 + 7: 558 + 8: 558 + 9: 558 + 10: 558 + 11: 467 + 11.5: 2 + 11.6: 2 + 1: _ZN9oceanbase3sql10ObOperatorC2ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE:310416 + 1: 457 + 2: 457 + 3: 457 _ZN9oceanbase3sql9ObEvalCtxC1ERNS0_13ObExecContextE:469 + 5: 467 + 7: 467 + 9: 467 + 14: 467 + 14.1: 467 + 15: 467 + 17: 467 + 19: 467 + 20: 467 + 22: 467 + 23: 457 + 24: 467 + 25: 467 + 0: _ZN9oceanbase3sql13ObMonitorNodeC2Ev:144579 + 2: 467 + 7: 467 + 9: 467 + 30: 467 + 33: 467 + 35.1: 467 + 0: _ZN9oceanbase6common11ObDLinkBaseINS_3sql13ObMonitorNodeEEC2Ev:4670 + 1: 467 + 0.1: _ZN9oceanbase6common12ObCurTraceId7TraceIdC2Ev:9340 + 0: 467 + 31: _ZN9oceanbase6common12ObCurTraceId12get_trace_idEv:11781 + 5: 467 + 5.1: 2 + 5.1: _ZN9oceanbase6common12ObCurTraceId7TraceIdC2Ev:50 + 0: 2 + 35: _Z9ob_gettidv:24921 + 3: 467 + 4: 2 + 2: _Z13get_tid_cachev:11767 + 7: 467 + 7.1: 2 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:46 + 0: 2 + 0.1: _ZN9oceanbase3sql11ObBatchRowsC2Ev:9397 + 0: 486 + 0.2: _ZN9oceanbase3sql14ObBatchRowIterC2Ev:24751 + 0: 467 + 0.1: _ZN9oceanbase3sql19ObBatchResultHolderC2Ev:11675 + 0: 467 + 4: _ZN9oceanbase3sql13ObExecContext13get_allocatorEv:3269 + 2: 467 + 4.1: _ZN9oceanbase6common12ObFixedArrayIPNS_3sql10ObEvalInfoENS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplIS4_S5_EEERS5_l:26160 + 0: 467 + 0: _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql10ObEvalInfoENS0_12ObIAllocatorEEC2ERS5_l:18688 + 2: 467 + 3: 467 + 4: 467 + 1: _ZN9oceanbase6common8ObIArrayIPNS_3sql10ObEvalInfoEEC2Ev:5145 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql10ObEvalInfoEEC2Ev:5145 + 0: 467 + 14: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE5emptyEv:3736 + 0: 467 + 18: _ZN9oceanbase3sql17ObIOEventObserverC2ERNS0_13ObMonitorNodeE:3269 + 0: 467 + 3: _ZN9oceanbase3sql16ObPrefixSortImplC2Ev:648690 + 0.1: 525 _ZN9oceanbase3sql17ObChunkDatumStoreC1EPNS_6common12ObIAllocatorE:564 + 1: 525 + 3: 525 + 3.1: 525 + 5: 525 + 6: 558 + 8: 525 + 9.6: 2 + 9.9: 2 + 0: _ZN9oceanbase3sql12ObSortOpImplC2Ev:529743 + 0.1: 486 _ZN9oceanbase3sql17ObChunkDatumStoreC1EPNS_6common12ObIAllocatorE:506 + 0.4: 452 + 1: 486 + 2: 486 + 3: 486 + 4: 486 + 5: 452 + 6: 452 + 6.1: 452 + 7: 452 + 9: 452 + 10.1: 525 + 11: 525 + 13: 525 + 14: 486 + 15.10: 2 + 15.12: 2 + 15.13: 2 + 0: _ZN9oceanbase3sql12ObSortOpImpl7CompareC2Ev:10206 + 1: 486 + 0.2: _ZN9oceanbase3sql17ObChunkDatumStore8IteratorC2Ev:20204 + 0: 472 _ZN9oceanbase3sql17ObChunkDatumStore13ChunkIteratorC1Ev:461 + 0.4: 472 _ZN9oceanbase3sql17ObChunkDatumStore11RowIteratorC1Ev:473 + 0.3: _ZN9oceanbase6common7ObArrayIPNS_3sql17ObChunkDatumStore9StoredRowENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEEC2Ev:52432 + 0.1: 452 + 0.5: _ZN9oceanbase6common11ObArrayImplIPNS_3sql17ObChunkDatumStore9StoredRowENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEEC2ElRKS6_:44296 + 4: 452 + 7.1: 452 + 2: _ZN9oceanbase6common8ObIArrayIPNS_3sql17ObChunkDatumStore9StoredRowEEC2Ev:7684 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql17ObChunkDatumStore9StoredRowEEC2Ev:7684 + 0: 452 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:26668 + 0: 452 + 0.4: _ZN9oceanbase6common7ObDListINS_3sql13ObSortOpChunkEEC2Ev:18984 + 2: 452 + 3: 452 + 4: 452 + 65463: _ZN9oceanbase6common11ObDLinkBaseINS_3sql13ObSortOpChunkEEC2Ev:8136 + 2: 452 + 0.5: _ZN9oceanbase3sql13ObMonitorNodeC2Ev:139928 + 0: 525 + 2: 525 + 7: 525 + 9: 525 + 30: 525 + 33: 525 + 35.1: 525 + 0: _ZN9oceanbase6common11ObDLinkBaseINS_3sql13ObMonitorNodeEEC2Ev:7356 + 1: 525 + 0.1: _ZN9oceanbase6common12ObCurTraceId7TraceIdC2Ev:7350 + 0: 525 + 31: _ZN9oceanbase6common12ObCurTraceId12get_trace_idEv:13227 + 5: 525 + 5.1: 2 + 5.1: _ZN9oceanbase6common12ObCurTraceId7TraceIdC2Ev:46 + 0: 2 + 35: _Z9ob_gettidv:27995 + 3: 525 + 4: 2 + 2: _Z13get_tid_cachev:13217 + 7: 525 + 7.1: 2 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:46 + 0: 2 + 2: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:12150 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:12150 + 2: 486 + 8: 486 + 3: _ZN9oceanbase3sql12ObSortOpImpl18MemEntifyFreeGuardC2ERNS_3lib13MemoryContextE:3402 + 0: 486 + 9: _ZN9oceanbase3sql20ObSqlWorkAreaProfileC2ENS0_17ObSqlWorkAreaTypeE:88716 + 2: 452 + 3: 452 + 4: 452 + 5: 452 + 7: 452 + 9: 452 + 10: 452 _ZN9oceanbase6common8ObRandomC1Ev:471 + 11: 570 _ZN9oceanbase6common8ObRandom3getEv:578 + 11.1: 562 + 12: 562 _ZN9oceanbase6common8ObRandomD1Ev:595 + 12.2: 2 + 1: _ZN9oceanbase6common11ObDLinkBaseINS_3sql20ObSqlWorkAreaProfileEEC2Ev:3164 + 1: 452 + 10: _ZN9oceanbase3sql20ObSqlMemMgrProcessorC2ERNS0_20ObSqlWorkAreaProfileERNS0_13ObMonitorNodeE:53124 + 1: 525 + 2: 558 + 4: 525 + 5: 525 + 7: 525 + 15.11: _ZN9oceanbase3sql17ObChunkDatumStore8IteratorD2Ev:106 + 0: 2 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIteratorD2Ev:92 + 0: 2 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator5resetEv:56 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator12reset_cursorEv:56 + 3: 2 + 2: _ZN9oceanbase6common13ObArrayHelperINS_3sql20ObSortFieldCollationEEC2Ev:18900 + 1: 525 + 2: 525 + 1: _ZN9oceanbase6common8ObIArrayINS_3sql20ObSortFieldCollationEEC2Ev:3675 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_3sql20ObSortFieldCollationEEC2Ev:3675 + 0: 525 + 2.1: _ZN9oceanbase6common13ObArrayHelperINS0_9ObCmpFuncEEC2Ev:13125 + 2: 525 + 1: _ZN9oceanbase6common8ObIArrayINS0_9ObCmpFuncEEC2Ev:3675 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_9ObCmpFuncEEC2Ev:3675 + 0: 525 + 3: _ZN9oceanbase3sql17ObChunkDatumStore15ShadowStoredRowC2Ev:16800 + 1: 525 + 3: 525 + 4: _ZN9oceanbase3sql22ObInMemoryTopnSortImplC2Ev:354330 + 1: 558 + 3: 558 + 4: 558 + 5: 558 + 9: 558 + 10: 558 + 15: 558 + 16: 558 + 9: _ZN9oceanbase3sql12ObSortOpImpl7CompareC2Ev:11718 + 1: 558 + 10.1: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:77004 + 4: 558 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:66960 + 2: 558 + 3: 558 + 4: 558 + 5: 558 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:26784 + 0: 558 + 12: _ZN9oceanbase6common12ObBinaryHeapIPNS_3sql22ObInMemoryTopnSortImpl13SortStoredRowENS2_12ObSortOpImpl7CompareELl50EEC2ERS7_PNS0_12ObIAllocatorE:108252 + 2: 558 + 1: _ZN9oceanbase6common16ObBinaryHeapBaseIPNS_3sql22ObInMemoryTopnSortImpl13SortStoredRowENS2_12ObSortOpImpl7CompareELl50EEC2ERS7_PNS0_12ObIAllocatorE:98208 + 6: 558 + 2.1: _ZN9oceanbase6common9ObSEArrayIPNS_3sql22ObInMemoryTopnSortImpl13SortStoredRowELl50ENS0_19ModulePageAllocatorELb0EECI2NS0_13ObSEArrayImplIS5_Ll50ES6_Lb0EEEElRKS6_:84816 + 0: 558 + 0: _ZN9oceanbase6common13ObSEArrayImplIPNS_3sql22ObInMemoryTopnSortImpl13SortStoredRowELl50ENS0_19ModulePageAllocatorELb0EEC2ElRKS6_:74772 + 2: 558 + 5: 558 + 6: 558 + 8: 558 + 17.1: 558 + 2: _ZN9oceanbase6common8ObIArrayIPNS_3sql22ObInMemoryTopnSortImpl13SortStoredRowEEC2EPS5_l:10044 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql22ObInMemoryTopnSortImpl13SortStoredRowEEC2EPS5_l:10044 + 0: 558 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:23436 + 0: 558 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:13950 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:13950 + 2: 558 + 8: 558 + 10: _ZN9oceanbase6common16ObBinaryHeapBaseIPNS_3sql22ObInMemoryTopnSortImpl13SortStoredRowENS2_12ObSortOpImpl7CompareELl50EE20reset_root_cmp_cacheEv:9486 + 0: 558 + 13.1: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:50220 + 4: 558 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:46314 + 2: 558 + 3: 558 + 4: 558 + 5: 558 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:18414 + 0: 558 + 15: _ZN9oceanbase6common7ObArrayIPNS_3sql22ObInMemoryTopnSortImpl13SortStoredRowENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEEC2Ev:51894 + 0.1: 558 + 0.5: _ZN9oceanbase6common11ObArrayImplIPNS_3sql22ObInMemoryTopnSortImpl13SortStoredRowENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEEC2ElRKS6_:41850 + 4: 558 + 7.1: 558 + 2: _ZN9oceanbase6common8ObIArrayIPNS_3sql22ObInMemoryTopnSortImpl13SortStoredRowEEC2Ev:7812 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql22ObInMemoryTopnSortImpl13SortStoredRowEEC2Ev:7812 + 0: 558 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:21762 + 0: 558 + 24: _ZN9oceanbase3sql10ObOperator20set_children_pointerEPPS1_j:26842 + 7: 558 + 8: 558 + 9: 558 + 10: 558 + 12: 2 + 14: 558 + 15: 2 + 17: 558 +_ZN9__gnu_cxx5__ops14_Val_comp_iterIN9oceanbase12blocksstable15ObDatumComparorINS3_13ObDatumRowkeyEEEEclIKS5_PS9_EEbRT_T0_:1554637:16857 + 1: 17226 + 1: _ZN9oceanbase12blocksstable15ObDatumComparorINS0_13ObDatumRowkeyEEclERKS2_S5_:1266831 + 2: 15967 + 4: 15967 + 5: 15967 + 6.1: 15967 + 6.2: 15967 + 7: 0 + 8.1: 0 + 10: 0 + 12.1: 17226 _ZNK9oceanbase12blocksstable13ObDatumRowkey7compareERKS1_RKNS0_19ObStorageDatumUtilsERi:16558 + 13.1: 0 + 15: 17226 + 88: 15967 +_ZN9oceanbase3sql11ObDASScanOpC2ERNS_6common12ObIAllocatorE:1553370:4375 + 2: 4324 _ZN9oceanbase7storage16ObTableScanParamC2Ev:4521 + 4: 4372 + 7: 4324 + 8: 4372 + 1: _ZN9oceanbase3sql12ObIDASTaskOpC2ERNS_6common12ObIAllocatorE:1225740 + 0: 4280 _ZN9oceanbase11transaction14ObTxExecResultC1Ev:4525 + 2: 4280 + 3: 4280 + 5: 4280 + 6: 4372 + 8: 4324 + 9: 4324 + 13: 4280 + 0.2: _ZN9oceanbase6common10ObTabletIDC2Em:60536 + 0: 4324 + 10: _ZN9oceanbase6common12ObFixedArrayIPKNS_3sql14ObDASBaseCtDefENS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplIS5_S6_EEERS6_l:276736 + 0: 4324 + 0: _ZN9oceanbase6common16ObFixedArrayImplIPKNS_3sql14ObDASBaseCtDefENS0_12ObIAllocatorEEC2ERS6_l:198904 + 2: 4324 + 3: 4324 + 4: 4324 + 1: _ZN9oceanbase6common8ObIArrayIPKNS_3sql14ObDASBaseCtDefEEC2Ev:77832 + 0: _ZN9oceanbase6common12ObIArrayWrapIPKNS_3sql14ObDASBaseCtDefEEC2Ev:77832 + 0: 4324 + 11: _ZN9oceanbase6common12ObFixedArrayIPNS_3sql14ObDASBaseRtDefENS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplIS4_S5_EEERS5_l:276736 + 0: 4324 + 0: _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql14ObDASBaseRtDefENS0_12ObIAllocatorEEC2ERS5_l:198904 + 2: 4324 + 3: 4324 + 4: 4324 + 1: _ZN9oceanbase6common8ObIArrayIPNS_3sql14ObDASBaseRtDefEEC2Ev:77832 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql14ObDASBaseRtDefEEC2Ev:77832 + 0: 4324 + 12: _ZN9oceanbase6common12ObFixedArrayINS0_10ObTabletIDENS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplIS2_S3_EEERS3_l:259440 + 0: 4324 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS0_10ObTabletIDENS0_12ObIAllocatorEEC2ERS3_l:181608 + 2: 4324 + 3: 4324 + 4: 4324 + 1: _ZN9oceanbase6common8ObIArrayINS0_10ObTabletIDEEC2Ev:60536 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_10ObTabletIDEEC2Ev:60536 + 0: 4324 + 8.1: _ZN9oceanbase3sql12ObIDASTaskOpD2Ev:7002 + 0: 18 + 0.5: 18 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS0_10ObTabletIDENS0_12ObIAllocatorEED2Ev:2970 + 0: 18 + 0.3: 18 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS0_10ObTabletIDENS0_12ObIAllocatorEE7destroyEv:2502 + 2: 18 + 5: 18 + 6.1: 18 + 6.3: 18 + 7: 18 + 9: 18 + 10: 18 + 12: 18 + 13: 18 + 15: 18 + 7: _ZN9oceanbase6common10ObTabletIDD2Ev:270 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:270 + 0: 18 + 0.1: _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql14ObDASBaseRtDefENS0_12ObIAllocatorEED2Ev:1638 + 0: 18 + 0.3: 18 + 0: _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql14ObDASBaseRtDefENS0_12ObIAllocatorEE7destroyEv:1170 + 2: 18 + 5: 18 + 9: 18 + 10: 18 + 12: 18 + 13: 18 + 15: 18 + 0.2: _ZN9oceanbase6common16ObFixedArrayImplIPKNS_3sql14ObDASBaseCtDefENS0_12ObIAllocatorEED2Ev:1782 + 0: 18 + 0.3: 18 + 0: _ZN9oceanbase6common16ObFixedArrayImplIPKNS_3sql14ObDASBaseCtDefENS0_12ObIAllocatorEE7destroyEv:1314 + 2: 18 + 5: 18 + 9: 18 + 10: 18 + 12: 18 + 13: 18 + 15: 18 + 0.4: _ZN9oceanbase6common10ObTabletIDD2Ev:324 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:324 + 0: 18 +_ZN9oceanbase3sql11ObDASScanOpC1ERNS_6common12ObIAllocatorE:1553370:4375 + 2: 4324 _ZN9oceanbase7storage16ObTableScanParamC2Ev:4521 + 4: 4372 + 7: 4324 + 8: 4372 + 1: _ZN9oceanbase3sql12ObIDASTaskOpC2ERNS_6common12ObIAllocatorE:1225740 + 0: 4280 _ZN9oceanbase11transaction14ObTxExecResultC1Ev:4525 + 2: 4280 + 3: 4280 + 5: 4280 + 6: 4372 + 8: 4324 + 9: 4324 + 13: 4280 + 0.2: _ZN9oceanbase6common10ObTabletIDC2Em:60536 + 0: 4324 + 10: _ZN9oceanbase6common12ObFixedArrayIPKNS_3sql14ObDASBaseCtDefENS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplIS5_S6_EEERS6_l:276736 + 0: 4324 + 0: _ZN9oceanbase6common16ObFixedArrayImplIPKNS_3sql14ObDASBaseCtDefENS0_12ObIAllocatorEEC2ERS6_l:198904 + 2: 4324 + 3: 4324 + 4: 4324 + 1: _ZN9oceanbase6common8ObIArrayIPKNS_3sql14ObDASBaseCtDefEEC2Ev:77832 + 0: _ZN9oceanbase6common12ObIArrayWrapIPKNS_3sql14ObDASBaseCtDefEEC2Ev:77832 + 0: 4324 + 11: _ZN9oceanbase6common12ObFixedArrayIPNS_3sql14ObDASBaseRtDefENS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplIS4_S5_EEERS5_l:276736 + 0: 4324 + 0: _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql14ObDASBaseRtDefENS0_12ObIAllocatorEEC2ERS5_l:198904 + 2: 4324 + 3: 4324 + 4: 4324 + 1: _ZN9oceanbase6common8ObIArrayIPNS_3sql14ObDASBaseRtDefEEC2Ev:77832 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql14ObDASBaseRtDefEEC2Ev:77832 + 0: 4324 + 12: _ZN9oceanbase6common12ObFixedArrayINS0_10ObTabletIDENS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplIS2_S3_EEERS3_l:259440 + 0: 4324 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS0_10ObTabletIDENS0_12ObIAllocatorEEC2ERS3_l:181608 + 2: 4324 + 3: 4324 + 4: 4324 + 1: _ZN9oceanbase6common8ObIArrayINS0_10ObTabletIDEEC2Ev:60536 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_10ObTabletIDEEC2Ev:60536 + 0: 4324 + 8.1: _ZN9oceanbase3sql12ObIDASTaskOpD2Ev:7002 + 0: 18 + 0.5: 18 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS0_10ObTabletIDENS0_12ObIAllocatorEED2Ev:2970 + 0: 18 + 0.3: 18 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS0_10ObTabletIDENS0_12ObIAllocatorEE7destroyEv:2502 + 2: 18 + 5: 18 + 6.1: 18 + 6.3: 18 + 7: 18 + 9: 18 + 10: 18 + 12: 18 + 13: 18 + 15: 18 + 7: _ZN9oceanbase6common10ObTabletIDD2Ev:270 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:270 + 0: 18 + 0.1: _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql14ObDASBaseRtDefENS0_12ObIAllocatorEED2Ev:1638 + 0: 18 + 0.3: 18 + 0: _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql14ObDASBaseRtDefENS0_12ObIAllocatorEE7destroyEv:1170 + 2: 18 + 5: 18 + 9: 18 + 10: 18 + 12: 18 + 13: 18 + 15: 18 + 0.2: _ZN9oceanbase6common16ObFixedArrayImplIPKNS_3sql14ObDASBaseCtDefENS0_12ObIAllocatorEED2Ev:1782 + 0: 18 + 0.3: 18 + 0: _ZN9oceanbase6common16ObFixedArrayImplIPKNS_3sql14ObDASBaseCtDefENS0_12ObIAllocatorEE7destroyEv:1314 + 2: 18 + 5: 18 + 9: 18 + 10: 18 + 12: 18 + 13: 18 + 15: 18 + 0.4: _ZN9oceanbase6common10ObTabletIDD2Ev:324 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:324 + 0: 18 +_ZN9oceanbase3sql16ObSQLSessionInfo24ObCachedTenantConfigInfo7refreshEv:1551436:15713 + 1: 14630 + 2: 14630 + 3: 14630 + 5: 14630 + 6: 14630 + 6.1: 14630 + 10: 0 + 13: 2 _ZN9oceanbase11transaction7ObTsMgr12get_instanceEv:2 + 13.1: 2 _ZN9oceanbase11transaction7ObTsMgr22is_external_consistentEm:2 + 14: 3 _ZN9oceanbase3omt17ObTenantConfigMgr12get_instanceEv:2 + 14.2: 3 _ZNK9oceanbase3omt17ObTenantConfigMgr27get_tenant_config_with_lockEmmm:4 + 14.3: 5 _ZN9oceanbase3omt19ObTenantConfigGuardC1EPNS0_14ObTenantConfigE:5 + 15.1: 4 + 17.2: 4 + 19.2: 4 + 25.2: 4 + 27: 4 _ZN9oceanbase3sql20ObSecurityAuditUtils17check_allow_auditERNS0_16ObSQLSessionInfoERNS0_16ObAuditTrailTypeE:4 + 27.1: 2 + 28.1: 0 + 34.2: 2 + 37: 2 _ZN9oceanbase3sql18ObBasicSessionInfo20update_timezone_infoEv:2 + 38: 5 + 39: 5 _ZN9oceanbase3omt19ObTenantConfigGuardD1Ev:5 + 39.1: 0 + 41.3: 14633 + 3: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:102410 + 0: 14630 + 4: _ZN9oceanbase6common16ObClockGenerator8getClockEv:307230 + 4: 14630 + 5.1: 0 + 8: 14630 + 6: _ZN9oceanbase6common16ObClockGenerator6get_usEv:0 + 2: 0 + 14.1: _ZN9oceanbase3omt17ObTenantConfigMgr26default_fallback_tenant_idEv:198 + 4: 3 + 4.1: 3 + 2: _ZN9oceanbase5share5GuardILNS0_12ObEntityTypeE0EE13current_guardEv:84 + 3: 3 + 8: 0 + 10: 0 + 11: 0 + 12: 0 + 8.1: _ZN9oceanbase5share5GuardILNS0_12ObEntityTypeE0EEC2ERNS0_13ObTenantSpaceE:0 + 1: 0 + 3: 0 + 11: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 2.1: _ZN9oceanbase5share5GuardILNS0_12ObEntityTypeE0EEptEv:12 + 0: 3 + 2.2: _ZNK9oceanbase5share13ObTenantSpace10get_tenantEv:27 + 0: 3 + 4.1: _ZNK9oceanbase5share12ObTenantBase2idEv:21 + 0: 3 + 15: _ZN9oceanbase3omt19ObTenantConfigGuard8is_validEv:28 + 0: 4 + 34: _ZN9oceanbase3omt19ObTenantConfigGuardptEv:8 + 0: 2 +_ZN9oceanbase8memtable10ObMemtable3getERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS_12blocksstable13ObDatumRowkeyERPNS2_18ObStoreRowIteratorE:1549590:3300 + 5: 3210 + 6.1: 3210 _ZZN9oceanbase8memtable10ObMemtable3getERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS_12blocksstable13ObDatumRowkeyERPNS2_18ObStoreRowIteratorEENK5$_114clEPKc.1dd22efca7fa83ae50e8099a04ad3959:3282 + 7: 3319 + 8: 3319 + 9: 3319 + 10.1: 4 + 11: 4 + 12.1: 3319 _ZNK9oceanbase7storage16ObTableIterParam8is_validEv:3371 + 12.3: 3158 + 14: 4 + 15.1: 4 + 17.1: 3158 + 17.2: 4 + 17.4: 4 + 17.8: 3158 + 17.10: 3236 _ZN9oceanbase6common26ObWrapperAllocatorWithAttr5allocEl:3257 + 17.11: 4 + 17.12: 4 + 17.15: 3236 _ZN9oceanbase8memtable21ObMemtableGetIteratorC1Ev:3342 + 22: 3181 + 23: 3188 + 24.1: 4 + 26: 3188 + 29: 4 + 30: 4 + 31: 4 + 32.1: 4 + 32.2: 4 + 33: 4 + 35.1: 4 + 37: 3188 + 12.2: _ZNK9oceanbase7storage20ObTableAccessContext8is_validEv:120004 + 1: 3158 + 2: 3158 + 2.1: 3158 + 3: 3158 + 3.1: 3158 + 4: 3158 + 4.1: 3158 + 23: _ZN9oceanbase8memtable21ObMemtableGetIterator4initERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextEPNS2_8ObITableEPKv:687907 + 6: 3181 + 10.1: 3188 + 11.1: 4 + 13: 3188 + 15: 3188 + 10.1: _ZN9oceanbase8memtable21ObMemtableGetIterator4initERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERNS0_11ObIMemtableE:569940 + 5: 3181 + 6: 3181 + 7: 4 + 9: 3181 + 10: 3181 + 10.2: 3181 + 11: 4 + 12.1: 4 + 13.1: 3188 + 13.2: 3181 _ZN9oceanbase12blocksstable10ObDatumRow4initERNS_6common12ObIAllocatorEl:3292 + 14.1: 4 + 16: 3188 + 17: 3188 + 18: 3188 + 19: 3188 + 20: 3188 + 22: 3188 + 9: _ZNK9oceanbase7storage16ObTableIterParam13get_read_infoEb:47715 + 2: 3181 + 2.3: 3181 + 10.1: _ZNK9oceanbase7storage15ObTableReadInfo8is_validEv:222670 + 2: 3181 + 3: 3181 + 3.1: 3181 + 4: 3181 + 5.1: 3181 + 6: 3181 + 7: 3181 + 7.1: 3181 + 3.1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:22267 + 0: 3181 + 6.1: _ZNK9oceanbase12blocksstable19ObStorageDatumUtils8is_validEv:22267 + 0: 3181 + 13: _ZN9oceanbase8memtable21ObMemtableGetIterator10set_rowkeyERKNS_12blocksstable13ObDatumRowkeyE:38256 + 2: 3188 + 3: 3188 +_ZN9oceanbase8observer8ObMPBase12flush_bufferEb:1549526:4744 + 1: 4611 + 2: 4611 + 2.3: 4853 + 2: _ZNK9oceanbase8observer16ObMPPacketSender19is_disable_responseEv:32277 + 0: 4611 + 2.2: _ZN9oceanbase8observer16ObMPPacketSender12flush_bufferEb:1197500 + 2: 4611 + 3: 4611 + 4: 123 + 5.1: 123 + 9.1: 4611 + 10: 123 + 11.1: 123 + 12.1: 4611 + 13.1: 123 + 15: 4611 + 15.1: 0 + 17.1: 0 + 19.1: 0 + 19.2: 0 + 20.1: 123 + 23: 0 + 23.1: 123 + 25: 0 + 26.1: 4502 + 27: 4502 + 29: 4502 _ZN9oceanbase7obmysql19ObMySQLRequestUtils12flush_bufferERNS0_18ObFlushBufferParamE:4812 + 29.1: 4853 + 30.1: 123 + 33: 123 + 34: 123 + 35: 123 + 35.1: 123 + 36.1: 123 + 39: 123 + 40: 123 + 41.1: 123 + 44: 123 + 45.1: 123 + 52: 123 + 53: 123 + 54.1: 123 + 57: 123 + 58.1: 123 + 65: 4853 + 66: 4853 + 68: 123 + 72: 4853 + 75: 4853 + 12.1: _ZN9oceanbase8observer16ObMPPacketSender11alloc_ezbufEv:115956 + 2: 4611 + 5: 4611 + 9.1: 123 + 10: 123 + 11.1: 123 + 14: 123 + 15: 123 + 19: 123 + 9.1: _ZN9oceanbase3rpc20ObSqlRequestOperator25alloc_sql_response_bufferEPNS0_9ObRequestEl:3936 + 1: 123 + 1.1: 123 + 15: _ZN9oceanbase6common13init_easy_bufEP10easy_buf_tPcP14easy_request_tm:5166 + 3: 123 + 4: 123 + 5: 123 + 6: 123 + 10: 123 + 11.1: 123 + 15: _ZNK9oceanbase7obmysql16ObProto20Context15is_proto20_usedEv:59943 + 0: 4611 + 16: _ZN9oceanbase7obmysql18ObProtoEncodeParamC2Ev:0 + 1: 0 + 4: 0 + 17: _ZN9oceanbase8observer16ObMPPacketSender19build_encode_param_ERNS_7obmysql18ObProtoEncodeParamEPNS2_13ObMySQLPacketEb:0 + 6: 0 + 7: 0 + 9: 0 + 10: 0 + 11: 0 + 12: 0 + 4: _ZN9oceanbase7obmysql18ObProtoEncodeParam11build_paramERS1_PNS0_13ObMySQLPacketER10easy_buf_tjbRNS0_16ObProto20ContextEPNS_3rpc9ObRequestEPNS_6common8ObIArrayINS0_10ObCommonKVINSC_5ObObjESF_EEEEPNSD_IPNS0_12Obp20EncoderEEE:0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 12: 0 + 13: 0 + 27: _ZNK9oceanbase3rpc9ObRequest10get_ez_reqEv:31514 + 2: 4502 + 27.1: _ZN9oceanbase7obmysql18ObFlushBufferParamC2ER10easy_buf_tR14easy_request_tRNS0_20ObCompressionContextERbS8_b:243108 + 3: 4502 + 4: 4502 + 5: 4502 + 3: _ZN9oceanbase7obmysql12ObEasyBufferC2ER10easy_buf_t:81036 + 0: 4502 + 33: _ZNK9oceanbase7obmysql20ObCompressionContext12use_compressEv:738 + 0: 123 + 34: _ZN9oceanbase7obmysql12ObEasyBufferC2ER10easy_buf_t:1353 + 0: 123 + 40: _ZN9oceanbase3rpc20ObSqlRequestOperator20async_write_responseEPNS0_9ObRequestEPKcl:861 + 1.1: 123 + 44: _ZN9oceanbase3rpc20ObSqlRequestOperator14write_responseEPNS0_9ObRequestEPKcl:1599 + 1.1: 123 + 53: _ZN9oceanbase3rpc20ObSqlRequestOperator20async_write_responseEPNS0_9ObRequestEPKcl:861 + 1.1: 123 + 57: _ZN9oceanbase3rpc20ObSqlRequestOperator14write_responseEPNS0_9ObRequestEPKcl:1599 + 1.1: 123 + 66: _ZNK9oceanbase7obmysql16ObProto20Context15is_proto20_usedEv:43677 + 0: 4853 + 73: _ZN9oceanbase8observer16ObMPPacketSender18finish_sql_requestEv:85095 + 2: 4853 + 2.1: 4853 + 3: 123 + 4: 123 + 5: 123 + 6: 123 + 3: _ZN9oceanbase3rpc20ObSqlRequestOperator18finish_sql_requestEPNS0_9ObRequestE:3690 + 1: 123 + 1.1: 123 + 5: _ZN9oceanbase3rpc20ObSqlRequestOperator24free_sql_response_bufferEPNS0_9ObRequestEPv:3198 + 1: 123 + 1.1: 123 +_ZN9oceanbase6commonL11crc64_sse42EmPKcl.3c99adf4d252691c8becdc9ea2f3cc95:1543993:4927 + 2: 4859 + 5: 4859 + 6.1: 4859 + 6.3: 4859 + 7: 735 + 10.1: 18210 + 11: 18210 + 12: 18210 + 13: 18210 + 14: 18210 + 17.1: 4762 + 18: 3012 + 21.1: 6959 + 22: 6959 + 26: 4851 +_ZNK9oceanbase3sql8ObOpSpec36link_sql_plan_monitor_node_recursiveERNS0_13ObExecContextERPNS0_13ObMonitorNodeE:1528537:7184 + 1: 6870 + 2: 6870 + 3: 6870 + 4: 6870 + 4.1: 6870 + 5.1: 20 + 6.1: 6870 + 6.2: 6855 + 7: 6855 + 8: 7 + 9.1: 7 + 10.1: 6855 + 11: 4764 + 13.1: 2060 _ZN9oceanbase3sql13ObMonitorNode19add_rt_monitor_nodeEPS1_:2139 + 14: 2108 + 16.1: 6769 + 16.2: 8787 + 16.3: 8787 + 16.6: 2026 + 17: 2069 + 19: 2118 _ZN9oceanbase6common20check_stack_overflowERblPl:2098 + 19.2: 2118 + 19.3: 2118 _ZNK9oceanbase3sql8ObOpSpec36link_sql_plan_monitor_node_recursiveERNS0_13ObExecContextERPNS0_13ObMonitorNodeE:2192 + 19.4: 20 + 19.5: 20 + 19.6: 6 + 19.7: 2026 + 19.9: 20 + 21.1: 18 + 24: 6637 + 3: _ZNK9oceanbase3sql13ObExecContext16get_operator_kitEm:48090 + 2: _ZNK9oceanbase3sql12ObOpKitStore16get_operator_kitEm:48090 + 2: 6870 + 14: _ZN9oceanbase3sql10ObOperator16get_monitor_infoEv:14756 + 0: 2108 + 19.4: _ZNSt8functionIFivEEC2IZNK9oceanbase3sql8ObOpSpec36link_sql_plan_monitor_node_recursiveERNS4_13ObExecContextERPNS4_13ObMonitorNodeEE5$_129vEET_:1100 + 8: 20 + 9: 20 + 7.1: _ZNSt14_Function_base13_Base_managerIZNK9oceanbase3sql8ObOpSpec36link_sql_plan_monitor_node_recursiveERNS2_13ObExecContextERPNS2_13ObMonitorNodeEE5$_129E15_M_init_functorERSt9_Any_dataOS9_:660 + 1.1: _ZNSt14_Function_base13_Base_managerIZNK9oceanbase3sql8ObOpSpec36link_sql_plan_monitor_node_recursiveERNS2_13ObExecContextERPNS2_13ObMonitorNodeEE5$_129E15_M_init_functorERSt9_Any_dataOS9_St17integral_constantIbLb0EE:660 + 1: 20 +_ZN9oceanbase3sql19ObDataAccessService15get_das_task_idERl:1527843:5540 + 1: 5367 + 2: 5367 + 5: 5367 + 6: 5367 + 8: 5367 + 10: 6063 + 12: 0 + 14: 0 + 15.1: 0 + 18: 0 + 19: 0 + 20: 0 + 23.1: 0 + 25.1: 0 + 27: 6154 + 29: 6154 + 10: _ZN9oceanbase3sql12ObDASIDCache10get_das_idERlb:698804 + 2: 5367 + 5.1: 0 + 6: 5367 + 7: 5367 + 8: 5367 + 9: 5367 + 11: 5367 + 11.1: 5367 + 12: 5367 + 16: 0 + 17: 0 + 19: 0 + 23: 5447 + 24: 5685 + 25: 5685 + 25.1: 9 + 26: 0 + 27: 0 + 29: 0 + 32: 0 + 33.4: 0 + 34.1: 0 + 35.1: 0 + 35.2: 0 + 36.1: 0 + 37.2: 0 + 38: 0 + 39.1: 0 + 42: 0 + 43.1: 0 + 45.1: 0 + 46.1: 0 + 48.3: 0 + 48.4: 0 + 51: 0 + 52: 0 + 53.1: 0 + 56: 0 + 57: 0 + 313: 5367 + 65512: 0 + 4: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:53670 + 2: 5367 + 2.1: 0 + 2.2: 0 + 27: _ZN9oceanbase6common3maxEli:0 + 2: 0 + 27.1: _ZN9oceanbase6common3minEll:0 + 2: 0 + 30: _ZN9oceanbase3sql14ObDASIDRequestC2Ev:0 + 0: 0 + 31: _ZN9oceanbase5obrpc16ObDASIDRpcResultC2Ev:0 + 0: 0 + 33: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 33.1: _ZNK9oceanbase5share12ObTenantBase2idEv:0 + 0: 0 + 33.2: _ZN9oceanbase3sql12ObDASIDCache22get_preallocate_count_Ev:0 + 2: 0 + 4: 0 + 7: 0 + 33.3: _ZN9oceanbase3sql14ObDASIDRequest4initEml:0 + 2: 0 + 3: 0 + 4: 0 + 5.1: 0 + 7: 0 + 8: 0 + 10: 0 + 37.1: _ZNK9oceanbase5obrpc16ObDASIDRpcResult8is_validEv:0 + 5: 0 + 6: 0 + 6.1: 0 + 6.2: 0 + 5: _ZN9oceanbase6common18is_valid_tenant_idEm:0 + 2: 0 + 60: _ZN9oceanbase3sql12ObDASIDCache25update_preallocate_count_Ev:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 9: 0 + 10: 0 +_ZN9oceanbase6common13ObLinkHashMapINS_11transaction9tablelock8ObLockIDENS3_9ObOBJLockENS3_14ObOBJLockAllocENS0_9RefHandleELl8EE3getERKS4_RPS5_:1525997:1492 + 1: 1436 + 3: 1436 + 5.2: 1401 + 8: 1353 + 12: 1353 + 16.2: 1353 + 4: _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9tablelock8ObLockIDENS3_9ObOBJLockENS3_14ObOBJLockAllocENS0_9RefHandleELl8EE18get_retire_stationEv:24412 + 1: 1436 + 1.1: 0 + 1.2: 0 + 1.5: 0 + 1.7: 0 + 1.3: _ZN9oceanbase6common13RetireStationC2ERNS0_6QClockEl:0 + 0.2: 0 + 1: 0 + 0.1: _ZN9oceanbase6common13RetireStation10RetireListC2Ev:0 + 0: 0 + 0: _ZN9oceanbase6common10HazardListC2Ev:0 + 0: 0 + 0.4: _ZN9oceanbase6common10HazardListC2Ev:0 + 0: 0 + 4.1: _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9tablelock8ObLockIDENS3_9ObOBJLockENS3_14ObOBJLockAllocENS0_9RefHandleELl8EE5GuardC2ERNS0_13RetireStationE:140728 + 0: _ZN9oceanbase6common9RefHandleC2ERNS0_13RetireStationE:24412 + 0: _ZN9oceanbase6common13BaseRefHandleC2ERNS0_13RetireStationE:24412 + 0: _ZN9oceanbase6common17get_global_qclockEv:24412 + 2: 1436 + 2.1: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common6QClockC2Ev:0 + 0: 0 + 0.1: _ZN9oceanbase6common6QClock9ClockSlotC2Ev:0 + 0: 0 + 0.4: _ZN9oceanbase6common13BaseRefHandle14enter_criticalEv:116316 + 0: _ZN9oceanbase6common6QClock14enter_criticalEv:116316 + 2: 1436 + 3.1: 1436 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 7.1: 0 + 7.3: 0 + 7.4: 0 + 8.1: 0 + 1: _ZN9oceanbase6common6QClock11get_slot_idEv:40208 + 0: _ZN9oceanbase6common8get_itidEv:40208 + 4: 1436 + 5: 0 + 6: 0 + 8: 0 + 3.1: _ZN9oceanbase6common6QClock6locateEm:8616 + 0: 1436 + 3.3: _ZN9oceanbase6common6QClock9get_clockEv:14360 + 0: 1436 + 3.4: _ZN9oceanbase6common6QClock9ClockSlot9set_clockEm:24412 + 0: 1436 + 5.1: _ZN9oceanbase6common6DCHashINS_11transaction9tablelock8ObLockIDELl8EE3getERKS4_RPNS0_11KeyHashNodeIS4_EE:1008984 + 1: 1436 + 5.1: 1425 + 9.1: 0 + 3: _ZN9oceanbase6common11KeyHashNodeINS_11transaction9tablelock8ObLockIDEEC2ERKS4_:18668 + 0: 1436 + 0: _ZN9oceanbase6common11KeyHashNodeINS_11transaction9tablelock8ObLockIDEE9calc_hashERKS4_:5744 + 0: _ZNK9oceanbase11transaction9tablelock8ObLockID4hashEv:5744 + 1: 1436 + 4: _ZN9oceanbase6common6DCHashINS_11transaction9tablelock8ObLockIDELl8EE6HandleC2ERS5_Rii:84724 + 1: 1436 + 2: 1436 + 1: _ZN9oceanbase6common6DCHashINS_11transaction9tablelock8ObLockIDELl8EE9get_qsyncEv:14360 + 1: 1436 + 1.1: 0 + 1.6: 0 + 1.2: _ZN9oceanbase6common7ObQSyncC2Ev:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ObQSync3RefC2Ev:0 + 0: 0 + 5: _ZN9oceanbase6common6DCHashINS_11transaction9tablelock8ObLockIDELl8EE6Handle10search_preEmRPNS0_8HashNodeE:433727 + 3: 1436 + 2: _ZN9oceanbase6common6DCHashINS_11transaction9tablelock8ObLockIDELl8EE6Handle11acquire_refEv:139292 + 0: 1436 + 0: _ZN9oceanbase6common7ObQSync11acquire_refEv:133548 + 2: 1436 + 3: 1436 + 4: 1436 + 5.1: 0 + 7: 1436 + 2: _ZN9oceanbase6common8get_itidEv:40208 + 4: 1436 + 5: 0 + 6: 0 + 8: 0 + 3: _ZN9oceanbase6common7ObQSync7add_refEll:28720 + 6: 1436 + 3: _ZN9oceanbase6common6DCHashINS_11transaction9tablelock8ObLockIDELl8EE10search_preEmRPNS0_8HashNodeE:268708 + 2: 1425 + 2: _ZN9oceanbase6common6DCHashINS_11transaction9tablelock8ObLockIDELl8EE24alloc_and_init_cur_arrayEv:218833 + 3: 1415 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 8.1: 0 + 9: 0 + 10: 0 + 12: 0 + 15: 0 + 15.1: 0 + 16.1: 1456 + 17.1: 0 + 20.4: 1456 _ZN9oceanbase6common11ObTimeGuardD2Ev:1458 + 20.5: 0 + 65474.2: 0 + 1: _ZN9oceanbase6common11ObTimeGuardC2EPKcl:162746 + 2: 1415 + 3: 1415 + 4: 1415 + 6: 1415 + 8: 1415 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:1436 + 2: 1436 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:1438 + 10: _ZN9oceanbase6common7DCArray4initEPNS0_8HashNodeES3_:0 + 2: 0 + 2.1: 0 + 2.3: 0 + 3: 0 + 7: 0 + 8: 0 + 21: 0 + 5: _ZN9oceanbase6common8HashNode10set_linkedEv:0 + 0: 0 + 0: _ZN9oceanbase6common8HashNode9load_hashEv:0 + 0: 0 + 11: _ZN9oceanbase6common11ObTimeGuard5clickEPKc:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 16: _ZNK9oceanbase6common11ObTimeGuard8get_diffEv:11607 + 2: 1456 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:1415 + 2: 1415 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:1416 + 3: _ZN9oceanbase6common7DCArray10locate_preEm:37050 + 2: 1425 + 4: 0 + 2: _ZN9oceanbase6common7DCArray12locate_prev_Em:19950 + 1: _ZN9oceanbase6common7DCArray6locateEm:19950 + 1: 1425 + 5: _ZN9oceanbase6common7DCArray12locate_prev_Em:0 + 1: _ZN9oceanbase6common7DCArray6locateEm:0 + 1: 0 + 6: _ZN9oceanbase6common6ol_getINS0_11KeyHashNodeINS_11transaction9tablelock8ObLockIDEEEEEiPT_S8_RS8_:81429 + 4: _ZN9oceanbase6common9ol_searchINS0_11KeyHashNodeINS_11transaction9tablelock8ObLockIDEEEEEPT_S8_S8_RS8_:57000 + 4.1: 1425 + 5: 1425 + 4.1: _ZN9oceanbase6common9link_nextEPNS0_6ObLinkE:4275 + 2: 1425 + 5.1: _ZN9oceanbase6common11KeyHashNodeINS_11transaction9tablelock8ObLockIDEE7compareEPS5_:34200 + 2: 1425 + 4.1: 1425 + 7: _ZNK9oceanbase11transaction9tablelock8ObLockID7compareERKS2_:18525 + 3: 1425 + 5.1: 1425 + 7.1: 1425 + 5.1: _ZN9oceanbase6common11KeyHashNodeINS_11transaction9tablelock8ObLockIDEE7compareEPS5_:24429 + 2: 1437 + 65439.1: 0 + 7: _ZNK9oceanbase11transaction9tablelock8ObLockID7compareERKS2_:17244 + 3: 1437 + 7.1: 1437 + 9.2: _ZN9oceanbase6common6DCHashINS_11transaction9tablelock8ObLockIDELl8EE6HandleD2Ev:334839 + 0: 1401 + 0.2: 0 + 0: _ZN9oceanbase6common6DCHashINS_11transaction9tablelock8ObLockIDELl8EE6Handle6retireEil:323631 + 1: 1401 + 2: 1401 + 4: 1401 + 6: 1401 + 7: 0 + 9: 0 + 10: 0 + 2: _ZN9oceanbase6common6DCHashINS_11transaction9tablelock8ObLockIDELl8EE17change_node_countEl:138699 + 1: 1401 + 4: 1401 + 5: 1401 + 6: 1401 + 8: 1401 + 10: 0 + 11.1: 0 + 2: _ZN9oceanbase6common15ObSimpleCounter3incEl:11208 + 0: 1401 + 3: _ZNK9oceanbase6common15ObSimpleCounter5valueEv:9807 + 0: 1401 + 4: _ZSt3maxIlERKT_S2_S2_:14010 + 5: 1401 + 5: _ZSt3minIlERKT_S2_S2_:14010 + 5: 1401 + 10: _ZN9oceanbase6common6DCHashINS_11transaction9tablelock8ObLockIDELl8EE6next2nEm:0 + 2: 0 + 4: _ZN9oceanbase6common6DCHashINS_11transaction9tablelock8ObLockIDELl8EE15do_pending_taskEPNS0_7DCArrayE:60243 + 2: 1401 + 5: 1401 + 5.1: 0 + 6: 1401 + 7: 0 + 8: 0 + 10: 0 + 11: 0 + 3: _ZN9oceanbase6common7DCArray20copy_from_prev_arrayEPNS0_8HashNodeEl:22416 + 4: 1401 + 5: 0 + 5.1: 0 + 6: 0 + 6.1: 0 + 7.1: 0 + 7.3: 0 + 8: 0 + 10: 0 + 6.1: _ZN9oceanbase6common7DCArray17is_parent_retiredEv:0 + 0: 0 + 7: _ZN9oceanbase6common10ObSpinLock7trylockEv:0 + 2: 0 + 14: _ZN9oceanbase6common10ObSpinLock6unlockEv:0 + 2: 0 + 5: _ZN9oceanbase6common6DCHashINS_11transaction9tablelock8ObLockIDELl8EE6Handle11release_refEv:79857 + 0: 1401 + 0: _ZN9oceanbase6common7ObQSync11release_refEl:63045 + 2: 1401 + 3: 1401 + 4.1: 0 + 2: _ZN9oceanbase6common7ObQSync7add_refEll:43431 + 3: 1401 + 6: 1401 + 7: _ZN9oceanbase6common7ObQSync4syncEv:0 + 2.1: 0 + 2.3: 0 + 5.1: 0 + 8: _ZN9oceanbase6common7DCArray13retire_parentEv:0 + 0: 0 + 9: _ZN9oceanbase6common7ObQSync4syncEv:0 + 2.1: 0 + 2.3: 0 + 5.1: 0 + 9: _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9tablelock8ObLockIDENS3_9ObOBJLockENS3_14ObOBJLockAllocENS0_9RefHandleELl8EE11try_inc_refEPNS0_12LinkHashNodeIS4_EE:54160 + 6.1: 1353 + 7: 0 + 4: _ZN9oceanbase6common9RefHandle3incEPNS0_7RefNodeE:40630 + 0: _ZN9oceanbase6common15faa_if_positiveEPii:40630 + 2: 1353 + 4.1: 1355 + 4.2: 1355 + 4.3: 1355 + 6.1: _ZN9oceanbase6common15is_last_bit_setEm:5412 + 2: 1353 + 16.2: _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9tablelock8ObLockIDENS3_9ObOBJLockENS3_14ObOBJLockAllocENS0_9RefHandleELl8EE5GuardD2Ev:46002 + 0: _ZN9oceanbase6common13BaseRefHandle14leave_criticalEv:46002 + 0: _ZN9oceanbase6common6QClock14leave_criticalEm:46002 + 1: 1353 + 2: _ZN9oceanbase6common6QClock6locateEm:17589 + 0: 1353 + 2.1: _ZN9oceanbase6common6QClock9ClockSlot11clear_clockEv:20295 + 0: 1353 + 16.3: _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9tablelock8ObLockIDENS3_9ObOBJLockENS3_14ObOBJLockAllocENS0_9RefHandleELl8EE5GuardD2Ev:0 + 0: _ZN9oceanbase6common13BaseRefHandle14leave_criticalEv:0 + 0: _ZN9oceanbase6common6QClock14leave_criticalEm:0 + 1: 0 + 2: _ZN9oceanbase6common6QClock6locateEm:0 + 0: 0 + 2.1: _ZN9oceanbase6common6QClock9ClockSlot11clear_clockEv:0 + 0: 0 +_ZN9oceanbase7storage8ObTablet17get_tablet_statusERNS0_14ObTabletStatus6StatusE:1520087:5527 + 1: 5371 + 2: 5371 + 3: 5371 + 4: 5371 + 5: 5371 + 6: 5371 + 9: 5371 + 10: 5 + 11.1: 5 + 12.2: 5371 + 13: 0 + 14.1: 5176 _ZNK9oceanbase7storage19ObTabletMemtableMgr26get_multi_source_data_unitEPNS_8memtable22ObIMultiSourceDataUnitE:5219 + 14.2: 5543 + 24.1: 1 + 27.1: 1 + 30: 5437 + 35.1: 5437 + 38: 5611 + 39: 5 + 40.1: 5 + 44: 5 + 45.4: 5611 + 3: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:102369 + 2: 5371 + 2.1: 5 + 2.2: 5 + 3.1: _ZNK9oceanbase5share12ObTenantBase2idEv:80565 + 0: 5371 + 7: _ZN9oceanbase7storage29ObTabletTxMultiSourceDataUnitC2Ev:327631 + 1: 5371 + 6: 5371 + 0: _ZN9oceanbase8memtable22ObIMultiSourceDataUnitC2Ev:91307 + 1: 5371 + 0: _ZN9oceanbase6common11ObDLinkBaseINS_8memtable22ObIMultiSourceDataUnitEEC2Ev:53710 + 1: 5371 + 3: _ZN9oceanbase11transaction9ObTransIDC2Ev:59081 + 0: 5371 + 5: _ZN9oceanbase7storage14ObTabletStatusC2Ev:21484 + 1: 5371 + 12.1: _ZNK9oceanbase7storage8ObTablet18is_ls_inner_tabletEv:59081 + 2: _ZNK9oceanbase6common10ObTabletID18is_ls_inner_tabletEv:59081 + 0: 5371 + 27: _ZNK9oceanbase7storage14ObTabletStatuscvNS1_6StatusEEv:3 + 2: 1 + 35: _ZNK9oceanbase7storage14ObTabletStatuscvNS1_6StatusEEv:32622 + 2: 5437 +_ZN9oceanbase6common19GlobalHazardVersion7releaseEv:1519230:14475 + 1: 14393 + 2: 14393 + 5: 14393 + 6: 0 + 7.1: 0 + 8.1: 14027 + 9.1: 0 + 12: 14027 + 13: 0 + 14: 1 + 15.1: 0 + 17: 1 _ZN9oceanbase6common24KVCacheHazardThreadStore6retireEm:1 + 21: 14028 + 22.1: 0 + 24: 14028 + 8.1: _ZN9oceanbase6common19GlobalHazardVersion16get_thread_storeERPNS0_24KVCacheHazardThreadStoreE:313718 + 2: 14393 + 4: 14393 + 5: 14027 + 6: 0 + 7: 0 + 11: 0 + 12: 0 + 13.1: 0 + 13.3: 0 + 14.1: 0 + 15: 0 + 15.1: 0 + 17: 0 + 19.1: 0 + 21.1: 0 + 22: 0 + 23.1: 0 + 33: 0 + 33.1: 0 + 36: 0 + 37: 0 + 38: 0 + 39: 0 + 40.1: 0 + 43: 0 + 44.1: 0 + 45.1: 0 + 46: 0 + 47.1: 0 + 49: 0 + 50: 0 + 51: 0 + 52: 0 + 53: 0 + 55: 0 + 62: 0 + 14: _ZNK9oceanbase6common24KVCacheHazardThreadStore9is_initedEv:0 + 0: 0 + 24: _ZN9oceanbase6common24KVCacheHazardThreadStore8set_exitEv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 30: _ZNK9oceanbase6common24KVCacheHazardThreadStore8get_nextEv:0 + 0: 0 + 42: _ZN9oceanbase6common24KVCacheHazardThreadStoreC2Ev:0 + 1: 0 + 3: 0 + 6: 0 + 7: 0 + 50: _ZN9oceanbase6common24KVCacheHazardThreadStore8set_nextEPS1_:0 + 0: 0 + 11: _ZN9oceanbase6common24KVCacheHazardThreadStore20set_acquired_versionEm:98189 + 0: 14027 + 12: _ZNK9oceanbase6common24KVCacheHazardThreadStore17get_waiting_countEv:56108 + 0: 14027 +_ZN9oceanbase7storage21ObIndexTreePrefetcher19prefetch_block_dataERNS_12blocksstable16ObMicroIndexInfoERNS0_22ObMicroBlockDataHandleEb:1503551:5344 + 2: 5092 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:5154 + 4: 5007 + 5: 5007 + 10: 5007 + 10.1: 0 + 11: 0 + 12: 0 + 13: 0 + 14: 0 + 16: 22 + 17.1: 22 + 17.2: 22 + 17.3: 22 + 17.4: 22 + 17.6: 22 + 19.1: 22 + 19.2: 22 + 19.3: 22 + 19.4: 22 + 19.6: 22 + 21.1: 5196 _ZN9oceanbase12blocksstable12MacroBlockIdC1ERKS1_:5024 + 21.2: 5196 _ZN9oceanbase7storage21ObMicroBlockHandleMgr22get_micro_block_handleEmNS_12blocksstable12MacroBlockIdERKNS2_21ObIndexBlockRowHeaderEbRNS0_22ObMicroBlockDataHandleE:5254 + 28: 22 + 29: 22 + 30: 22 + 33: 22 + 36: 4877 + 37: 4877 + 38: 2313 + 39.1: 2449 + 39.2: 22 + 39.3: 22 + 39.4: 22 + 39.6: 22 + 41.1: 2915 + 41.2: 22 + 41.3: 22 + 41.4: 22 + 41.6: 22 + 44: 5032 + 45: 5032 + 46: 5032 + 47: 5032 + 49: 22 + 50: 22 + 50.1: 22 + 51: 22 + 52: 22 + 53.1: 22 + 54.1: 22 + 54.2: 22 + 62.1: 22 + 64.2: 22 + 64.3: 22 + 72.1: 22 + 74: 22 + 74.1: 22 + 75: 22 + 77: 22 + 78: 22 + 80: 22 + 80.1: 22 + 82: 22 + 83: 5092 + 84.1: 2825 + 84.2: 22 + 84.3: 22 + 84.4: 22 + 84.6: 22 + 84.7: 22 + 86.1: 2252 + 86.2: 22 + 86.3: 22 + 86.4: 22 + 86.6: 22 + 86.7: 22 + 89: 5052 + 7: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:86571 + 2: 5007 + 2.1: 22 + 2.2: 22 + 7.1: _ZNK9oceanbase5share12ObTenantBase2idEv:95133 + 0: 5007 + 8: _ZN9oceanbase12blocksstable16ObMicroIndexInfo12get_macro_idEv:95133 + 2: 5007 + 3: 5007 + 3: _ZNK9oceanbase12blocksstable21ObIndexBlockRowHeader13is_data_blockEv:20028 + 0: 5007 + 12: _ZNK9oceanbase12blocksstable12MacroBlockIdeqERKS1_:0 + 2: 0 + 2.1: 0 + 3: 0 + 3.1: 0 + 39.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:21993 + 2: 2313 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:2305 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:19592 + 2: 2449 + 41.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:26106 + 2: 2698 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:2799 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:23320 + 2: 2915 + 45: _ZNK9oceanbase12blocksstable16ObMicroIndexInfo16get_block_offsetEv:15096 + 2: 5032 + 46: _ZNK9oceanbase12blocksstable16ObMicroIndexInfo14get_block_sizeEv:15096 + 2: 5032 + 48: _ZN9oceanbase12blocksstable18ObMacroBlockHandleC2Ev:374 + 0: 22 + 0.1: 22 + 50: _ZNK9oceanbase7storage16ObTableIterParam18get_full_read_infoEv:88 + 2: 22 + 76: _ZN9oceanbase12blocksstable12MacroBlockIdaSERKS1_:572 + 2: 22 + 3: 22 + 4: 22 +_ZN9oceanbase3sql13ObTableScanOp16prepare_das_taskEv:1501410:4784 + 1: 4454 + 2: 4454 + 4: 4454 + 5: 4454 + 6.1: 29 + 8.1: 30 + 9: 30 + 10: 30 + 10.1: 30 + 10.3: 30 + 11: 30 + 12: 30 + 13.1: 29 + 19: 29 + 19.2: 29 + 20: 29 + 23: 29 + 23.1: 29 + 23.2: 29 + 28.1: 29 + 30.1: 29 + 32.1: 29 + 32.3: 29 + 32.4: 29 + 33: 29 + 34.1: 29 + 34.2: 29 + 34.3: 29 + 37.1: 29 + 38.1: 29 + 38.2: 29 + 39.1: 29 + 42: 29 + 42.1: 29 + 42.2: 29 + 42.3: 29 + 43: 4292 + 4: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:17816 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:17816 + 0: 4454 + 5: _ZN9oceanbase3sql12get_my_inputINS0_13ObTableScanOpEEERNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE5InputERKS5_:31178 + 7: _ZNK9oceanbase3sql10ObOperator9get_inputEv:31178 + 0: 4454 + 5.1: _ZN9oceanbase3sql13ObTableScanOp19create_one_das_taskEPNS0_14ObDASTabletLocE:994161 + 2: 4454 + 3: 4454 + 6: 4499 + 7: 4602 + 9.1: 4499 _ZN9oceanbase3sql8ObDASRef15create_das_taskEPKNS0_14ObDASTabletLocENS0_11ObDASOpTypeERPNS0_12ObIDASTaskOpE:4665 + 10.1: 29 + 12: 4277 + 13: 4277 + 14: 4277 + 15: 4277 + 16: 4277 + 17: 4277 + 17.1: 4277 + 19: 29 + 20: 29 + 21: 29 + 22: 29 + 23: 29 + 24.1: 29 + 25.1: 29 + 26.1: 29 + 27.1: 29 + 28.1: 29 + 29.1: 29 + 30.1: 29 + 32: 29 + 36: 4469 + 37: 4469 _ZN9oceanbase3sql13ObTableScanOp30cherry_pick_range_by_tablet_idEPNS0_11ObDASScanOpE:4542 + 38.1: 29 + 41: 29 + 7: _ZN9oceanbase3sql13ObTableScanOp15has_das_scan_opEPKNS0_14ObDASTabletLocERPNS0_11ObDASScanOpE:197224 + 2: 4499 + 9: 4602 + 13.1: _ZN9oceanbase3sql11ObDASScanOp14set_scan_ctdefEPKNS0_14ObDASScanCtDefE:34216 + 0: 4277 + 14: _ZN9oceanbase3sql11ObDASScanOp14set_scan_rtdefEPNS0_14ObDASScanRtDefE:34216 + 0: 4277 + 15: _ZN9oceanbase3sql12ObIDASTaskOp18set_can_part_retryEb:64155 + 0: 4277 + 17: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:17108 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:17108 + 0: 4277 + 25.1: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:116 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:116 + 0: 29 + 25.2: _ZN9oceanbase3sql11ObDASScanOp16set_lookup_ctdefEPKNS0_14ObDASScanCtDefE:1015 + 1: 29 + 1.1: 29 + 1: _ZN9oceanbase6common16ObFixedArrayImplIPKNS_3sql14ObDASBaseCtDefENS0_12ObIAllocatorEE12set_capacityEj:551 + 0: 29 + 27.1: _ZN9oceanbase3sql11ObDASScanOp16set_lookup_rtdefEPNS0_14ObDASScanRtDefE:1015 + 1: 29 + 1.1: 29 + 1: _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql14ObDASBaseRtDefENS0_12ObIAllocatorEE12set_capacityEj:551 + 0: 29 + 10.6: _ZNK9oceanbase6common4list8IteratorINS0_6ObListIPNS_3sql14ObDASTabletLocENS0_12ObIAllocatorEEEEneERKS9_:120 + 2: 30 + 12: _ZN9oceanbase3sql13ObTableScanOp19create_one_das_taskEPNS0_14ObDASTabletLocE:21820 + 2: 30 + 3: 30 + 6: 30 + 7: 30 + 9.1: 29 + 10.1: 29 + 12: 29 + 13: 29 + 15: 29 + 16: 29 + 17: 29 + 17.1: 29 + 19: 29 + 20: 29 + 21: 29 + 22: 29 + 23: 29 + 24.1: 29 + 25.1: 29 + 26.1: 29 + 27.1: 29 + 28.1: 29 + 29.1: 29 + 30.1: 29 + 32: 29 + 36: 30 + 37: 30 + 38.1: 29 + 41: 29 + 5: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:120 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:120 + 0: 30 + 7: _ZN9oceanbase3sql13ObTableScanOp15has_das_scan_opEPKNS0_14ObDASTabletLocERPNS0_11ObDASScanOpE:2092 + 2: 30 + 9: 30 + 13.1: _ZN9oceanbase3sql11ObDASScanOp14set_scan_ctdefEPKNS0_14ObDASScanCtDefE:406 + 0: 29 + 14: _ZN9oceanbase3sql11ObDASScanOp14set_scan_rtdefEPNS0_14ObDASScanRtDefE:203 + 0: 29 + 15: _ZN9oceanbase3sql12ObIDASTaskOp18set_can_part_retryEb:319 + 0: 29 + 17: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:116 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:116 + 0: 29 + 25.1: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:116 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:116 + 0: 29 + 25.2: _ZN9oceanbase3sql11ObDASScanOp16set_lookup_ctdefEPKNS0_14ObDASScanCtDefE:1044 + 1: 29 + 1.1: 29 + 1: _ZN9oceanbase6common16ObFixedArrayImplIPKNS_3sql14ObDASBaseCtDefENS0_12ObIAllocatorEE12set_capacityEj:290 + 0: 29 + 27.1: _ZN9oceanbase3sql11ObDASScanOp16set_lookup_rtdefEPNS0_14ObDASScanRtDefE:1044 + 1: 29 + 1.1: 29 + 1: _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql14ObDASBaseRtDefENS0_12ObIAllocatorEE12set_capacityEj:290 + 0: 29 + 18: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:203 + 2: 29 + 19: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:203 + 2: 29 + 20: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:116 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:116 + 0: 29 + 21: _ZN9oceanbase6common9ObSEArrayINS0_10ObTabletIDELl1ENS0_19ModulePageAllocatorELb0EEC2Ev:3335 + 0.1: 29 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl1ENS0_19ModulePageAllocatorELb0EEC2ElRKS3_:2900 + 2: 29 + 5: 29 + 6: 29 + 8: 29 + 17.1: 29 + 2: _ZN9oceanbase6common8ObIArrayINS0_10ObTabletIDEEC2EPS2_l:464 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_10ObTabletIDEEC2EPS2_l:464 + 0: 29 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:1189 + 0: 29 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:435 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:435 + 2: 29 + 8: 29 + 22: _ZN9oceanbase6common9ObSEArrayImLl1ENS0_19ModulePageAllocatorELb0EEC2Ev:1972 + 0.1: 29 + 0.5: _ZN9oceanbase6common13ObSEArrayImplImLl1ENS0_19ModulePageAllocatorELb0EEC2ElRKS2_:1537 + 2: 29 + 5: 29 + 6: 29 + 8: 29 + 17.1: 29 + 2: _ZN9oceanbase6common8ObIArrayImEC2EPml:232 + 0: _ZN9oceanbase6common12ObIArrayWrapImEC2EPml:232 + 0: 29 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:464 + 0: 29 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:232 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:232 + 2: 29 + 8: 29 + 23: _ZNK9oceanbase3sql17ObPhysicalPlanCtx15get_param_storeEv:522 + 0: 29 + 34: _ZN9oceanbase3sql13ObExecContext11get_das_ctxEv:232 + 0: 29 + 38.1: _ZN9oceanbase3sql13ObTableScanOp19create_one_das_taskEPNS0_14ObDASTabletLocE:20010 + 2: 29 + 3: 29 + 6: 29 + 7: 29 + 9.1: 29 + 10.1: 29 + 12: 29 + 13: 29 + 15: 29 + 16: 29 + 17: 29 + 17.1: 29 + 19: 29 + 20: 29 + 21: 29 + 22: 29 + 23: 29 + 24.1: 29 + 25.1: 29 + 26.1: 29 + 27.1: 29 + 28.1: 29 + 29.1: 29 + 30.1: 29 + 32: 29 + 36: 29 + 37: 29 + 38.1: 29 + 41: 29 + 5: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:116 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:116 + 0: 29 + 7: _ZN9oceanbase3sql13ObTableScanOp15has_das_scan_opEPKNS0_14ObDASTabletLocERPNS0_11ObDASScanOpE:2320 + 2: 29 + 4: 29 + 7: 29 + 9: 29 + 13.1: _ZN9oceanbase3sql11ObDASScanOp14set_scan_ctdefEPKNS0_14ObDASScanCtDefE:203 + 0: 29 + 14: _ZN9oceanbase3sql11ObDASScanOp14set_scan_rtdefEPNS0_14ObDASScanRtDefE:203 + 0: 29 + 15: _ZN9oceanbase3sql12ObIDASTaskOp18set_can_part_retryEb:377 + 0: 29 + 17: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:116 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:116 + 0: 29 + 25.1: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:116 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:116 + 0: 29 + 25.2: _ZN9oceanbase3sql11ObDASScanOp16set_lookup_ctdefEPKNS0_14ObDASScanCtDefE:899 + 1: 29 + 1.1: 29 + 1: _ZN9oceanbase6common16ObFixedArrayImplIPKNS_3sql14ObDASBaseCtDefENS0_12ObIAllocatorEE12set_capacityEj:319 + 0: 29 + 27.1: _ZN9oceanbase3sql11ObDASScanOp16set_lookup_rtdefEPNS0_14ObDASScanRtDefE:899 + 1: 29 + 1.1: 29 + 1: _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql14ObDASBaseRtDefENS0_12ObIAllocatorEE12set_capacityEj:319 + 0: 29 +_ZN9oceanbase3sql14ObPhysicalPlan16update_plan_statERKNS0_17ObAuditRecordDataEbbPKNS_6common8ObIArrayINS0_15ObTableRowCountEEE:1497300:4890 + 4: 4763 + 5: 4763 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:4764 + 7: 4675 + 8.1: 0 + 9: 0 + 10.1: 4655 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:4672 + 11: 4048 + 12: 4048 + 15: 4048 + 16: 0 + 18.1: 4048 + 21: 0 + 22: 0 + 23: 0 + 24: 0 + 25: 0 + 30: 0 + 31: 0 + 32: 0 + 33: 0 + 34: 0 + 35: 0 + 39: 0 + 40: 0 + 42.1: 0 + 45: 0 + 45.1: 0 + 46.1: 0 + 48: 0 + 49: 0 + 50: 0 + 51: 0 + 54: 0 + 55: 0 + 56: 0 + 59: 0 + 60.1: 0 + 61: 0 + 63: 0 + 67.1: 0 + 68.1: 0 + 68.3: 0 + 68.5: 0 + 69.1: 0 + 69.3: 0 + 69.5: 0 + 71: 0 + 72: 0 + 73: 0 + 75: 0 + 77.1: 0 + 78: 0 + 80.1: 0 + 90: 0 + 91: 0 + 92.1: 0 + 93: 0 + 96: 0 + 98: 0 + 99: 0 + 100: 0 + 102: 0 + 104: 0 + 109: 4039 + 109.1: 4039 + 110: 3103 + 112.1: 0 + 113.1: 3103 + 114: 0 + 115: 0 + 118: 0 + 120.1: 3103 + 122: 198 + 125: 198 + 128: 2887 + 129: 2887 + 132: 2887 + 135: 2887 + 138: 159 + 140.1: 0 + 143: 159 + 147: 4617 + 7: _ZNK9oceanbase3sql17ObAuditRecordData10is_timeoutEv:14025 + 1: 4675 + 9: _ZNK9oceanbase3sql17ObAuditRecordData16get_process_timeEv:0 + 2: 0 + 11: _ZNK9oceanbase3sql17ObAuditRecordData16get_elapsed_timeEv:117392 + 3: 4048 + 12: _ZNK9oceanbase3sql17ObAuditRecordData16get_elapsed_timeEv:129536 + 3: 4048 + 22: _ZNK9oceanbase3sql17ObAuditRecordData16get_process_timeEv:0 + 2: 0 + 23: _ZNK9oceanbase3sql12ObExecRecord17get_io_read_countEv:0 + 0: 0 + 24: _ZNK9oceanbase3sql12ObExecRecord18get_io_write_countEv:0 + 0: 0 + 25: _ZNK9oceanbase3sql12ObExecRecord17get_row_cache_hitEv:0 + 0: 0 + 25.3: _ZNK9oceanbase3sql12ObExecRecord19get_block_cache_hitEv:0 + 0: 0 + 25.4: _ZNK9oceanbase3sql12ObExecRecord17get_io_read_countEv:0 + 0: 0 + 30: _ZNK9oceanbase3sql12ObExecRecord20get_application_timeEv:0 + 0: 0 + 31: _ZNK9oceanbase3sql12ObExecRecord20get_concurrency_timeEv:0 + 0: 0 + 32: _ZNK9oceanbase3sql12ObExecRecord16get_user_io_timeEv:0 + 0: 0 + 34: _ZNK9oceanbase3sql17ObAuditRecordData16get_elapsed_timeEv:0 + 3: 0 + 35: _ZNK9oceanbase3sql17ObAuditRecordData16get_elapsed_timeEv:0 + 3: 0 + 45: _ZNK9oceanbase3sql17ObAuditRecordData16get_elapsed_timeEv:0 + 3: 0 + 49: _ZNK9oceanbase3sql17ObAuditRecordData16get_elapsed_timeEv:0 + 3: 0 + 56: _ZSt3minIlERKT_S2_S2_:0 + 5: 0 + 57: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql15ObTableRowCountEE5countEv:0 + 0: 0 + 61: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql15ObTableRowCountEE2atEl:0 + 6: 0 + 63: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql15ObTableRowCountEE2atEl:0 + 6: 0 + 67.1: _ZNK9oceanbase3sql17ObAuditRecordData16get_elapsed_timeEv:0 + 3: 0 + 69.1: _ZNK9oceanbase3sql14ObPhysicalPlan10is_expiredEv:0 + 0: 0 + 71: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql15ObTableRowCountEE2atEl:0 + 6: 0 + 77.1: _ZNK9oceanbase3sql14ObPhysicalPlan19check_if_is_expiredEll:0 + 4: 0 + 7: 0 + 8.1: 0 + 8.2: 0 + 78: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql15ObTableRowCountEE2atEl:0 + 6: 0 + 79: _ZN9oceanbase3sql14ObPhysicalPlan14set_is_expiredEb:0 + 0: 0 + 93: _ZNK9oceanbase3sql17ObAuditRecordData16get_elapsed_timeEv:0 + 3: 0 + 96: _ZNK9oceanbase3sql17ObAuditRecordData16get_elapsed_timeEv:0 + 3: 0 + 109: _ZNK9oceanbase3sql14ObPhysicalPlan10is_expiredEv:32312 + 0: 4039 + 110: _ZNK9oceanbase3sql17ObAuditRecordData10is_timeoutEv:9309 + 1: 3103 + 111: _ZN9oceanbase3sql14ObPhysicalPlan14set_is_expiredEb:0 + 0: 0 + 115: _ZNK9oceanbase3sql12ObExecRecord27get_memstore_read_row_countEv:0 + 0: 0 + 118: _ZNK9oceanbase3sql17ObAuditRecordData16get_elapsed_timeEv:0 + 3: 0 + 122: _ZNK9oceanbase3sql12ObExecRecord27get_memstore_read_row_countEv:2772 + 0: 198 + 125: _ZNK9oceanbase3sql17ObAuditRecordData16get_elapsed_timeEv:6336 + 3: 198 + 129: _ZNK9oceanbase3sql12ObExecRecord27get_memstore_read_row_countEv:40418 + 0: 2887 + 129.1: _ZNK9oceanbase3sql12ObExecRecord26get_ssstore_read_row_countEv:40418 + 0: 2887 + 132: _ZNK9oceanbase3sql17ObAuditRecordData16get_elapsed_timeEv:92384 + 3: 2887 + 141: _ZN9oceanbase3sql14ObPhysicalPlan14set_is_expiredEb:0 + 0: 0 +_ZN9oceanbase3sql13ObExecContext11init_phy_opEm:1490635:4696 + 1: 4409 + 2: 4409 + 4: 4409 + 5: 0 + 6.1: 0 + 7.1: 4409 + 8: 0 + 9.1: 0 + 10.1: 4409 + 11: 0 + 12.1: 0 + 14: 4409 + 15: 4591 + 16.1: 0 + 19: 0 + 20: 4591 + 22.1: 0 + 24.1: 0 + 24.3: 0 + 26.1: 0 + 29: 4544 + 15: _ZN9oceanbase3sql12ObOpKitStore4initERNS_6common12ObIAllocatorEl:924029 + 2: 4409 + 3: 4409 + 4: 0 + 5.1: 0 + 6.1: 4409 + 7: 4409 + 8: 0 + 9.1: 0 + 11: 4409 + 12: 4591 + 15: 4591 + 7: _ZN9oceanbase6common16ObArenaAllocator5allocEl:551125 + 0: 4409 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13alloc_alignedEll:533489 + 3: 4409 + 6: 4409 + 7: 4409 + 8: 4409 + 10: 4409 + 11: 4409 + 12: 4409 + 13: 4409 + 15.1: 0 + 16: 0 + 18: 0 + 20: 0 + 28: 0 + 35: 4409 + 36: 4409 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE15ensure_cur_pageEv:57317 + 2: 4409 + 3: 0 + 5.1: 0 + 8: 0 + 9: 0 + 10: 0 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:0 + 2: 0 + 2.2: 0 + 2.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 9: _ZSt3maxIlERKT_S2_S2_:0 + 5: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 8: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:0 + 0: 0 + 7: _ZN9oceanbase6common16get_align_offsetEPvl:57317 + 3: 4409 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:30863 + 0: 4409 + 11: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:30863 + 7: 4409 + 15.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE18is_normal_overflowEl:0 + 2: 0 + 16: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11extend_pageEl:0 + 4: 0 + 5: 0 + 8: 0 + 9: 0 + 10.1: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 12: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_tailEPNS3_4PageE:0 + 2: 0 + 3: 0 + 5: 0 + 23.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16lookup_next_pageEl:0 + 3.1: 0 + 4.1: 0 + 5: 0 + 5.1: 0 + 7: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page10reuse_sizeEv:0 + 0: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 32: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9alloc_bigEl:0 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 3: 0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_headEPNS3_4PageE:0 + 4: 0 + 5: 0 + 7: 0 + 7: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:0 + 3: 0 + 22.1: _ZNK9oceanbase6common4hash9ObHashMapImNS_3sql17ObGranuleTaskInfoENS1_19NoPthreadDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS4_EEEELi29ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE7createdEv:0 + 2: _ZNK9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImNS_3sql17ObGranuleTaskInfoEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS6_EELi29ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE7createdEv:0 + 2: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImNS_3sql17ObGranuleTaskInfoEEENS1_5NLockENS1_5NCondEEEEEbRKT_:0 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImNS_3sql17ObGranuleTaskInfoEEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:0 + 2: 0 + 24.1: _ZN9oceanbase3lib7ObLabelC2IA6_cEERKT_:0 + 2: _ZN9oceanbase3lib7ObLabelaSILm6EEERS1_RAT__Kc:0 + 4: 0 + 24.2: _ZN9oceanbase3lib7ObLabelC2IA9_cEERKT_:0 + 2: _ZN9oceanbase3lib7ObLabelaSILm9EEERS1_RAT__Kc:0 + 4: 0 +_ZN9oceanbase6common17ObAtomicReference29check_seq_num_and_inc_ref_cntEj:1475731:13926 + 1: 13431 + 2: 13431 + 5.1: 248 + 6: 13669 + 8: 13669 + 10: 13669 + 11: 0 + 12.1: 0 + 13.1: 13669 + 14: 0 + 16.1: 13669 + 19: 248 + 22: 13419 +_ZN9oceanbase8observer16ObMPPacketSender14send_ok_packetERNS_3sql16ObSQLSessionInfoERNS0_10ObOKPParamEPNS_7obmysql13ObMySQLPacketE:1475647:1546 + 1: 1495 + 2: 1495 + 4: 1532 _ZN9oceanbase7obmysql6OMPKOKC1Ev:1542 + 5: 1412 + 5.1: 1412 + 6: 4 + 7.1: 4 + 9: 1412 + 10: 1412 + 12: 1420 + 13: 1520 _ZN9oceanbase7obmysql6OMPKOK11set_messageERKNS_6common8ObStringE:1584 + 16: 1496 + 17: 1496 + 20: 1496 + 21: 4 + 21.1: 4 + 24: 1496 + 25: 1499 + 26: 1499 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:1521 + 26.1: 1430 + 27: 1389 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:1433 + 27.2: 1430 + 28: 1430 + 30: 1430 + 31.1: 4 + 33: 4 + 33.1: 4 + 34.1: 4 + 35: 4 + 43: 1482 + 44: 1482 _ZN9oceanbase3sql18ObBasicSessionInfo17save_trans_statusEv:1562 + 44.1: 1538 + 48: 1538 + 49.1: 1538 + 51: 6 + 51.1: 6 + 53: 6 + 53.1: 6 + 54: 8 + 55: 8 + 55.1: 8 + 56.1: 8 + 58.2: 6 + 60: 6 + 61: 6 + 61.1: 6 + 62.1: 4 + 63.1: 6 + 63.2: 6 + 64.1: 6 + 67: 8 + 67.1: 8 + 68.1: 8 + 73: 6 + 77: 8 + 77.1: 8 + 78: 8 + 79: 8 + 79.1: 8 + 80.1: 8 + 82.2: 8 + 85: 8 + 85.1: 8 + 86.1: 4 + 87.1: 8 + 87.2: 8 + 88: 8 + 88.1: 8 + 88.2: 8 + 89.1: 8 + 97: 1538 + 97.1: 6 + 97.3: 6 + 99: 6 + 99.1: 6 + 100.1: 6 + 109: 1490 + 111.1: 1490 + 116: 1490 _ZNK9oceanbase3sql18ObBasicSessionInfo31is_server_status_in_transactionEv:1513 + 116.1: 1442 + 117: 1442 + 118: 1442 + 119: 1442 + 121: 1442 + 123: 1442 + 124: 1442 + 125: 1442 + 126: 1442 + 127.1: 6 + 134: 1470 + 134.2: 1531 + 135.1: 4 + 137: 4 + 139: 1561 + 140: 1546 + 141: 1546 + 143: 1567 _ZN9oceanbase8observer16ObMPPacketSender15response_packetERNS_7obmysql13ObMySQLPacketEPNS_3sql16ObSQLSessionInfoE:1644 + 143.1: 1552 + 144.1: 4 + 149.1: 8 + 150: 1531 + 150.2: 8 + 150.3: 8 + 152.1: 8 + 156: 1552 + 157: 8 + 160: 1594 + 161: 4 + 164: 4 + 165.24: 1683 + 165.27: 4 + 165.29: 1656 _ZN9oceanbase3lib11ObLockGuardINS_6common16ObRecursiveMutexEED2Ev:1711 + 3: _ZN9oceanbase3sql18ObBasicSessionInfo14get_query_lockEv:10465 + 0: 1495 + 3.1: _ZN9oceanbase3lib11ObLockGuardINS_6common16ObRecursiveMutexEEC2ERS3_:169350 + 1: 1495 + 2: 1495 + 4: 1532 + 5.1: 8 + 4: _ZN9oceanbase6common16ObRecursiveMutex4lockEv:135805 + 2: 1495 + 3: 1495 + 6: 0 + 7.1: 4 + 12: 1532 + 3: _ZNK9oceanbase6common7ObLatch14is_wrlocked_byEPKj:93370 + 3: 1495 + 4: 1495 + 2.1: _Z9ob_gettidv:79915 + 3: 1495 + 4: 8 + 2: _Z13get_tid_cachev:37743 + 7: 1495 + 7.1: 8 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:184 + 0: 8 + 9: _ZN9oceanbase7obmysql6OMPKOK17set_affected_rowsEm:9884 + 0: 1412 + 11: _ZN9oceanbase6common8ObStringC2Ev:9940 + 1: 1420 + 12.1: _ZN9oceanbase6common8ObString10assign_ptrEPKci:38000 + 2: 1520 + 3: 1520 + 15: _ZNK9oceanbase3sql18ObBasicSessionInfo14get_capabilityEv:10472 + 0: 1496 + 15.1: _ZN9oceanbase7obmysql6OMPKOK14set_capabilityERKNS0_22ObMySQLCapabilityFlagsE:8976 + 0: 1496 + 16: _ZN9oceanbase7obmysql6OMPKOK18set_last_insert_idEm:10472 + 0: 1496 + 17: _ZN9oceanbase7obmysql6OMPKOK12set_warningsEt:10472 + 0: 1496 + 31: _ZN9oceanbase6common12ObCurTraceId12get_trace_idEv:424 + 5: 4 + 5.1: 6 + 5.1: _ZN9oceanbase6common12ObCurTraceId7TraceIdC2Ev:156 + 0: 6 + 49: _ZNK9oceanbase3sql18ObBasicSessionInfo21is_track_session_infoEv:12304 + 0: 1538 + 53: _ZNK9oceanbase8observer14ObSMConnection16is_normal_clientEv:132 + 1: 6 + 1.1: 6 + 1.2: 6 + 1.3: 6 + 58.1: _ZNK9oceanbase8observer14ObSMConnection16is_driver_clientEv:60 + 1: 6 + 1.1: 6 + 77: _ZNK9oceanbase8observer14ObSMConnection16is_normal_clientEv:176 + 1: 8 + 1.1: 8 + 1.2: 8 + 1.3: 8 + 82.1: _ZNK9oceanbase8observer14ObSMConnection16is_driver_clientEv:112 + 1: 8 + 1.1: 8 + 97.2: _ZNK9oceanbase7obmysql22ObProxyCapabilityFlags11is_cap_usedEv:30 + 0: 6 + 98: _ZN9oceanbase7obmysql6OMPKOK21set_track_session_capEb:84 + 2: 6 + 111: _ZNK9oceanbase3sql18ObBasicSessionInfo14get_autocommitERb:73636 + 2: 1490 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache14get_autocommitEv:20524 + 0: 1490 + 114: _ZNK9oceanbase7obmysql6OMPKOK17get_server_statusEv:16390 + 0: 1490 + 127: _ZNK9oceanbase3sql18ObBasicSessionInfo22get_compatibility_modeEv:174 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12get_sql_modeEv:174 + 0: 6 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache12get_sql_modeEv:132 + 0: 6 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache12get_sql_modeEb:72 + 0: 6 + 130: _ZN9oceanbase7obmysql6OMPKOK17set_server_statusENS0_19ObServerStatusFlagsE:10290 + 0: 1470 + 134.1: _ZN9oceanbase8observer16ObMPPacketSender11alloc_ezbufEv:179748 + 2: 1470 + 5: 1470 + 6: 1522 + 7: 4 + 8.1: 4 + 9.1: 1531 + 10: 4 + 11.1: 4 + 14: 1531 + 15: 1531 + 19: 1531 + 9.1: _ZN9oceanbase3rpc20ObSqlRequestOperator25alloc_sql_response_bufferEPNS0_9ObRequestEl:39650 + 1: 1524 _ZN9oceanbase3rpc20ObSqlRequestOperator12get_operatorEPKNS0_9ObRequestE:1581 + 1.1: 1524 _ZN9oceanbase7obmysql24ObEasySqlRequestOperator25alloc_sql_response_bufferEPNS_3rpc9ObRequestEl:1554 + 15: _ZN9oceanbase6common13init_easy_bufEP10easy_buf_tPcP14easy_request_tm:67364 + 3: 1531 + 4: 1531 + 5: 1531 + 6: 1531 + 10: 1531 + 11.1: 1531 + 141: _ZN9oceanbase7obmysql20ObCompressionContext19update_last_pkt_posEPc:20194 + 2: 1546 + 2.1: 8 + 4: 8 + 2: _ZNK9oceanbase7obmysql20ObCompressionContext23is_proxy_compress_basedEv:6184 + 0: _ZNK9oceanbase7obmysql20ObCompressionContext17is_proxy_checksumEv:6184 + 0: 1546 + 165.24: _ZN9oceanbase7obmysql6OMPKOKD2Ev:200333 + 0: 1594 + 0: _ZN9oceanbase6common13ObSEArrayImplINS_7obmysql10ObCommonKVINS0_8ObStringES4_EELl8ENS0_19ModulePageAllocatorELb0EED2Ev:113717 + 1: 1594 + 3.2: 4 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_7obmysql10ObCommonKVINS0_8ObStringES4_EELl8ENS0_19ModulePageAllocatorELb0EE7destroyEv:84993 + 9: 1594 + 11: 8 + 13: 1591 + 15: 1591 + 24: 1591 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_7obmysql10ObCommonKVINS0_8ObStringES4_EELl8ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:552 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:552 + 0: 8 + 0.2: 8 + 0.1: _ZN9oceanbase6common7ob_freeEPv:368 + 2: 8 + 3: 8 + 4: 8 + 5: 8 + 4: _ZL12abort_unlessb:88 + 5: 8 + 6: 4 + 0.1: _ZN9oceanbase6common13ObSEArrayImplINS_7obmysql10ObCommonKVINS0_8ObStringES4_EELl16ENS0_19ModulePageAllocatorELb0EED2Ev:57924 + 1: 1591 + 3.2: 4 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_7obmysql10ObCommonKVINS0_8ObStringES4_EELl16ENS0_19ModulePageAllocatorELb0EE7destroyEv:29254 + 9: 1591 + 11: 8 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_7obmysql10ObCommonKVINS0_8ObStringES4_EELl16ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:552 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:552 + 0: 8 + 0.2: 8 + 0.1: _ZN9oceanbase6common7ob_freeEPv:368 + 2: 8 + 3: 8 + 4: 8 + 5: 8 + 4: _ZL12abort_unlessb:88 + 5: 8 + 6: 4 + 165.26: _ZN9oceanbase7obmysql6OMPKOKD2Ev:1288 + 0: 4 + 0: _ZN9oceanbase6common13ObSEArrayImplINS_7obmysql10ObCommonKVINS0_8ObStringES4_EELl8ENS0_19ModulePageAllocatorELb0EED2Ev:608 + 1: 4 + 3.2: 4 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_7obmysql10ObCommonKVINS0_8ObStringES4_EELl8ENS0_19ModulePageAllocatorELb0EE7destroyEv:504 + 9: 4 + 11: 4 + 13: 4 + 15: 4 + 24: 4 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_7obmysql10ObCommonKVINS0_8ObStringES4_EELl8ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:260 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:260 + 0: 4 + 0.2: 4 + 0.1: _ZN9oceanbase6common7ob_freeEPv:176 + 2: 4 + 3: 4 + 4: 4 + 5: 4 + 4: _ZL12abort_unlessb:28 + 5: 4 + 6: 4 + 0.1: _ZN9oceanbase6common13ObSEArrayImplINS_7obmysql10ObCommonKVINS0_8ObStringES4_EELl16ENS0_19ModulePageAllocatorELb0EED2Ev:608 + 1: 4 + 3.2: 4 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_7obmysql10ObCommonKVINS0_8ObStringES4_EELl16ENS0_19ModulePageAllocatorELb0EE7destroyEv:504 + 9: 4 + 11: 4 + 13: 4 + 15: 4 + 24: 4 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_7obmysql10ObCommonKVINS0_8ObStringES4_EELl16ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:260 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:260 + 0: 4 + 0.2: 4 + 0.1: _ZN9oceanbase6common7ob_freeEPv:176 + 2: 4 + 3: 4 + 4: 4 + 5: 4 + 4: _ZL12abort_unlessb:28 + 5: 4 + 6: 4 +_ZNK9oceanbase5share6schema16ObSchemaStoreMap3getEm:1457071:26433 + 1: 25503 + 2: 25843 + 2: _ZN9oceanbase5share6schema16ObSchemaStoreMap3getEm:1303373 + 3.1: 25843 + 2: _ZN9oceanbase6common11ObLinkArray6locateElb:1174158 + 2.1: 25843 + 1: _ZN9oceanbase6common11ObLinkArray10locate_segElb:1096629 + 2: 25503 + 4.1: _ZN9oceanbase6common11ObLinkArray6searchEl:969114 + 3: 25503 + 4.1: 25503 + 3: _ZN9oceanbase6common9ol_searchINS0_11ObLinkArray3SegEEEPT_S5_S5_RS5_:459054 + 4.2: 25503 + 5: 25503 + 5.1: 25503 + 4.1: _ZN9oceanbase6common9link_nextEPNS0_6ObLinkE:76509 + 2: 25503 +_ZNK9oceanbase12blocksstable13ObDatumRowkey23to_multi_version_rowkeyEbRNS_6common12ObIAllocatorERS1_:1447158:2022 + 3: 1941 + 4: 1941 + 6: 1941 + 7: 0 + 8.1: 0 + 16: 2043 + 17: 2122 _ZN9oceanbase6common26ObWrapperAllocatorWithAttr5allocEl:2142 + 18: 0 + 19.1: 0 + 21: 2122 + 21.1: 2122 + 21.2: 4136 + 21.3: 2066 + 22.1: 2135 + 22.3: 2135 + 23: 2113 + 30: 2062 + 31.1: 0 + 33: 0 + 34: 0 + 39: 2122 + 315: 2 + 6: _ZNK9oceanbase12blocksstable13ObDatumRowkey8is_validEv:38820 + 0: 1941 + 0.1: 1941 + 9.1: _ZNK9oceanbase12blocksstable13ObDatumRowkey13is_max_rowkeyEv:83510 + 0.1: 1941 + 0.2: 1942 + 0.3: 1942 + 0.5: _ZNK9oceanbase6common7ObDatum6is_maxEv:11682 + 0: 1941 + 0.1: 2 + 0: _ZNK9oceanbase6common11ObDatumDesc6is_extEv:9705 + 0: 1941 + 0.1: _ZNK9oceanbase6common5ObObj12is_max_valueEv:26 + 2: 2 + 2.1: 2 + 10: _ZN9oceanbase12blocksstable13ObDatumRowkey14set_max_rowkeyEv:52 + 0: 1 + 0: _ZN9oceanbase6common13ObStoreRowkey7set_maxEv:8 + 0: 1 + 11.1: _ZNK9oceanbase12blocksstable13ObDatumRowkey13is_min_rowkeyEv:54315 + 0.1: 1 + 0.2: 2089 + 0.3: 2089 + 0.5: _ZNK9oceanbase6common7ObDatum6is_minEv:12546 + 0: 2088 + 0.1: 1 + 0: _ZNK9oceanbase6common11ObDatumDesc6is_extEv:10440 + 0: 2088 + 0.1: _ZNK9oceanbase6common5ObObj12is_min_valueEv:13 + 2: 1 + 2.1: 1 + 12: _ZN9oceanbase12blocksstable13ObDatumRowkey14set_min_rowkeyEv:51 + 0: 1 + 0: _ZN9oceanbase6common13ObStoreRowkey7set_minEv:7 + 0: 1 + 21.2: _ZN9oceanbase12blocksstable14ObStorageDatumC2Ev:322548 + 0.1: _ZN9oceanbase12blocksstable14ObStorageDatum7set_nopEv:322548 + 0: _ZN9oceanbase12blocksstable14ObStorageDatum13set_ext_valueEl:322548 + 1: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:124020 + 0: 4136 + 17.2: 4132 + 1.1: _ZN9oceanbase6common11ObDatumDesc7set_extEv:66176 + 0: 4136 + 1.3: _ZN9oceanbase6common5ObObj7set_extEl:132352 + 4: 4136 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:66176 + 0: 4136 + 23: _ZN9oceanbase12blocksstable14ObStorageDatumaSERKS1_:168938 + 2: 2113 + 4: 2113 + 5: 2113 + 7.1: 2113 + 8: 2111 + 9: 2111 + 10: 2091 + 12: 2 + 3: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:38034 + 0: 2113 + 5: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:4226 + 0: 2113 + 7.1: _ZNK9oceanbase12blocksstable14ObStorageDatum12is_local_bufEv:25356 + 0: 2113 + 26: _ZN9oceanbase12blocksstable14ObStorageDatum7set_minEv:98976 + 0: _ZN9oceanbase12blocksstable14ObStorageDatum13set_ext_valueEl:98976 + 1: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:32992 + 0: 2062 + 1.1: _ZN9oceanbase6common11ObDatumDesc7set_extEv:18558 + 0: 2062 + 1.3: _ZN9oceanbase6common5ObObj7set_extEl:47426 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:47426 + 0: 2062 + 30: _ZN9oceanbase12blocksstable13ObDatumRowkey6assignEPNS0_14ObStorageDatumEi:131968 + 2: 2062 + 4: 2062 + 4.2: 2062 + 5: 0 + 6.1: 0 + 9: 2062 + 10: 2062 + 13: 0 + 8: _ZN9oceanbase12blocksstable13ObDatumRowkey5resetEv:59798 + 0: 2062 + 32: _ZN9oceanbase12blocksstable13ObDatumRowkey5resetEv:0 + 0: 0 +_ZN9oceanbase3sql15ObTableUpdateOp10inner_openEv:1412564:551 + 1: 537 + 2: 537 + 3.1: 509 + 3.2: 0 + 3.4: 0 + 3.5: 0 + 3.11: 0 + 5: 474 + 6.1: 0 + 7.1: 474 + 8: 0 + 9.1: 0 + 10.1: 474 + 12.1: 515 + 13.1: 0 + 15.1: 526 + 15.2: 0 + 15.4: 0 + 15.5: 0 + 15.11: 0 + 16: 526 + 3.1: _ZN9oceanbase3lib20is_trace_log_enabledEv:4100 + 2: 537 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:540 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:3563 + 2: 509 + 3.2: _ZN9oceanbase6common18get_trace_recorderEv:0 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:0 + 7: 0 + 8: 0 + 8.1: 0 + 3.4: _ZN9oceanbase3lib20is_trace_log_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:0 + 2: 0 + 3.12: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:0 + 0: 0 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 5: _ZN9oceanbase3sql15ObTableModifyOp10inner_openEv:288450 + 2: 509 + 3: 509 + 4: 509 + 5.1: 0 + 6.1: 509 + 6.2: 0 + 7.1: 0 + 8.1: 484 + 9.1: 0 + 13: 474 + 4: _ZN9oceanbase3sql15ObTableModifyOp26init_foreign_key_operationEv:52427 + 2: 509 + 3: 509 + 4: 509 + 5: 0 + 6.1: 0 + 7.1: 509 + 12: 0 + 3: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:3563 + 2: 509 + 7.1: _ZN9oceanbase3lib13is_mysql_modeEv:21887 + 2: _ZN9oceanbase3lib15get_compat_modeEv:21887 + 2: 509 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:12725 + 2: 509 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 7.2: _ZNK9oceanbase3sql17ObPhysicalPlanCtx23need_foreign_key_checksEv:6108 + 0: 509 + 10: _ZN9oceanbase3sql15ObTableModifyOp22set_foreign_key_checksEv:3563 + 0: 509 + 6.1: _ZN9oceanbase3sqlL11get_my_specERKNS0_15ObTableModifyOpE:2036 + 2: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:2036 + 2: 509 + 6.3: _ZNK9oceanbase3sql14ObPhysicalPlan14has_nested_sqlEv:3563 + 0: 509 + 8.1: _ZN9oceanbase3sql15ObTableModifyOp21calc_single_table_locEv:130581 + 2: 509 + 3: 509 + 4: 509 + 5: 509 + 8: 509 + 9: 0 + 10.1: 0 + 12.1: 509 + 13.1: 0 + 14.1: 509 _ZN9oceanbase3sql8ObDASCtx19get_table_loc_by_idEmm:523 + 15: 0 + 16.1: 0 + 19: 484 + 20: 484 + 23: 484 + 3: _ZN9oceanbase3sqlL11get_my_specERKNS0_15ObTableModifyOpE:0 + 2: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:0 + 2: 0 + 12.2: _ZNK9oceanbase3sql17ObTableModifySpec23get_single_table_loc_idERmS2_:66679 + 3: 509 + 4: 509 + 5: 509 + 6: 509 + 7: 509 + 4: _ZNK9oceanbase3sql17ObTableDeleteSpec20get_single_dml_ctdefERPKNS0_14ObDMLBaseCtDefE:0 + 2: 0 + 3: 0 + 4: 0 + 5.1: 0 + 6.1: 0 + 7: 0 + 8.1: 0 + 6.1: _ZNK9oceanbase6common12ObIArrayWrapINS0_11ObArrayWrapIPNS_3sql10ObDelCtDefEEEE2atEl:0 + 6: 0 + 4: _ZNK9oceanbase3sql17ObTableUpdateSpec20get_single_dml_ctdefERPKNS0_14ObDMLBaseCtDefE:19851 + 2: 509 + 3: 509 + 4: 0 + 5.1: 0 + 6.1: 509 + 7: 0 + 8.1: 0 + 6.1: _ZNK9oceanbase6common12ObIArrayWrapINS0_11ObArrayWrapIPNS_3sql10ObUpdCtDefEEEE2atEl:3563 + 6: 509 + 19: _ZNK9oceanbase3sql15ObTableModifyOp9get_inputEv:3872 + 2: 484 + 20: _ZN9oceanbase6common6ObListIPNS_3sql14ObDASTabletLocENS0_12ObIAllocatorEE9get_firstEv:1936 + 0: 484 + 20.1: _ZNK9oceanbase3sql15ObTableModifyOp9get_inputEv:3872 + 2: 484 + 11: _ZN9oceanbase3sql15ObTableModifyOp16init_das_dml_ctxEv:75866 + 2: 484 + 4: 484 + 22: 474 + 26: 474 + 2: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:3388 + 2: 484 + 4: _ZN9oceanbase3sqlL11get_my_specERKNS0_15ObTableModifyOpE:2420 + 2: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:2420 + 2: 484 + 21: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:3318 + 0: 474 + 22.3: _ZN9oceanbase3sql8ObDASRef19set_expr_frame_infoEPKNS0_15ObExprFrameInfoE:3318 + 0: 474 + 25: _ZN9oceanbase3sql8ObDASRef12set_mem_attrERKNS_3lib9ObMemAttrE:16590 + 0: _ZN9oceanbase6common26ObWrapperAllocatorWithAttr8set_attrERKNS_3lib9ObMemAttrE:16590 + 0: 474 + 26.1: _ZN9oceanbase3sql8ObDASRef20set_execute_directlyEb:14694 + 0: 474 + 7.1: _ZN9oceanbase3sql11get_my_specINS0_15ObTableUpdateOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:1896 + 5: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:1896 + 2: 474 + 7.2: _ZNK9oceanbase6common12ObIArrayWrapINS0_11ObArrayWrapIPNS_3sql10ObUpdCtDefEEEE5emptyEv:3792 + 0: 474 + 12.1: _ZN9oceanbase3sql15ObTableUpdateOp19inner_open_with_dasEv:1052782 + 2: 474 + 3: 0 + 4.1: 0 + 8: 0 + 3: _ZN9oceanbase3sql15ObTableUpdateOp19open_table_for_eachEv:1043922 + 2: 474 + 3: 525 _ZN9oceanbase3sql13ObExecContext13get_allocatorEv:511 + 4.1: 0 + 6: 525 + 7.1: 525 + 7.2: 1047 + 7.3: 1047 + 7.5: 521 + 10: 527 _ZN9oceanbase3sql13ObExecContext13get_allocatorEv:540 + 11.1: 0 + 13.1: 503 + 13.2: 1034 + 13.3: 1034 + 13.5: 503 + 14: 521 + 16: 521 + 17: 503 + 18.1: 0 + 21.1: 521 + 22: 521 + 24: 521 + 25: 0 + 27: 521 + 31.1: 0 + 34: 521 + 3.1: _ZN9oceanbase3sql11get_my_specINS0_15ObTableUpdateOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:2625 + 5: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:2625 + 2: 525 + 3.2: _ZNK9oceanbase6common12ObIArrayWrapINS0_11ObArrayWrapIPNS_3sql10ObUpdCtDefEEEE5countEv:5775 + 0: 525 + 3.3: _ZN9oceanbase6common11ObArrayWrapINS1_INS_3sql10ObUpdRtDefEEEE14allocate_arrayERNS0_12ObIAllocatorEl:140175 + 2: 525 + 4: 525 + 5: 525 + 6: 0 + 7.1: 0 + 8.1: 525 + 9: 0 + 10.1: 0 + 12: 525 + 12.1: 525 + 12.3: 525 + 12.4: 525 + 13: 525 + 15: 525 + 8.1: _ZN9oceanbase6common16ObArenaAllocator5allocEl:67725 + 0: 525 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13alloc_alignedEll:65625 + 3: 525 + 6: 525 + 7: 525 + 8: 525 + 10: 525 + 11: 525 + 12: 525 + 13: 525 + 15.1: 0 + 16: 0 + 18: 0 + 20: 0 + 28: 0 + 35: 525 + 36: 525 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE15ensure_cur_pageEv:8925 + 2: 525 + 3: 0 + 5.1: 0 + 8: 0 + 9: 0 + 10: 0 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:0 + 2: 0 + 2.2: 0 + 2.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 9: _ZSt3maxIlERKT_S2_S2_:0 + 5: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 8: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:0 + 0: 0 + 7: _ZN9oceanbase6common16get_align_offsetEPvl:6825 + 3: 525 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:3675 + 0: 525 + 11: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:3675 + 7: 525 + 15.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE18is_normal_overflowEl:0 + 2: 0 + 16: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11extend_pageEl:0 + 4: 0 + 5: 0 + 8: 0 + 9: 0 + 10.1: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 12: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_tailEPNS3_4PageE:0 + 2: 0 + 3: 0 + 5: 0 + 23.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16lookup_next_pageEl:0 + 3.1: 0 + 4.1: 0 + 5: 0 + 5.1: 0 + 7: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page10reuse_sizeEv:0 + 0: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 32: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9alloc_bigEl:0 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 3: 0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_headEPNS3_4PageE:0 + 4: 0 + 5: 0 + 7: 0 + 7: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:0 + 3: 0 + 12.2: _ZN9oceanbase6common11ObArrayWrapINS_3sql10ObUpdRtDefEEC2Ev:12075 + 1: 525 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_3sql10ObUpdRtDefEEC2Ev:4725 + 0: 525 + 6: _ZN9oceanbase6common13ObSEArrayImplIPNS_3sql6ObExprELl4ENS0_19ModulePageAllocatorELb0EE5resetEv:45150 + 0: 525 + 0: _ZN9oceanbase6common13ObSEArrayImplIPNS_3sql6ObExprELl4ENS0_19ModulePageAllocatorELb0EE7destroyEv:32550 + 9: 525 + 11: 0 + 13: 525 + 15: 525 + 24: 525 + 10: _ZN9oceanbase6common13ObSEArrayImplIPNS_3sql6ObExprELl4ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: 0 + 8: _ZN9oceanbase6common12ObIArrayWrapINS0_11ObArrayWrapINS_3sql10ObUpdRtDefEEEE2atEl:3689 + 6: 527 + 9: _ZN9oceanbase3sql11get_my_specINS0_15ObTableUpdateOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:2108 + 5: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:2108 + 2: 527 + 9.1: _ZNK9oceanbase6common12ObIArrayWrapINS0_11ObArrayWrapIPNS_3sql10ObUpdCtDefEEEE2atEl:3689 + 6: 527 + 10.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql10ObUpdCtDefEE5countEv:14504 + 0: 518 + 10.2: _ZN9oceanbase6common11ObArrayWrapINS_3sql10ObUpdRtDefEE14allocate_arrayERNS0_12ObIAllocatorEl:314426 + 2: 518 + 4: 518 + 5: 518 + 6: 0 + 7.1: 0 + 8.1: 518 + 9: 0 + 10.1: 0 + 12: 518 + 12.1: 518 + 12.2: 518 + 12.3: 518 + 12.4: 518 + 13: 518 + 15: 518 + 8.1: _ZN9oceanbase6common16ObArenaAllocator5allocEl:74592 + 0: 518 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13alloc_alignedEll:72520 + 3: 518 + 6: 518 + 7: 518 + 8: 518 + 10: 518 + 11: 518 + 12: 518 + 13: 518 + 15.1: 0 + 16: 0 + 18: 0 + 20: 0 + 28: 0 + 35: 518 + 36: 518 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE15ensure_cur_pageEv:8806 + 2: 518 + 3: 0 + 5.1: 0 + 8: 0 + 9: 0 + 10: 0 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:0 + 2: 0 + 2.2: 0 + 2.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 9: _ZSt3maxIlERKT_S2_S2_:0 + 5: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 8: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:0 + 0: 0 + 7: _ZN9oceanbase6common16get_align_offsetEPvl:6734 + 3: 518 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:3626 + 0: 518 + 11: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:3626 + 7: 518 + 15.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE18is_normal_overflowEl:0 + 2: 0 + 16: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11extend_pageEl:0 + 4: 0 + 5: 0 + 8: 0 + 9: 0 + 10.1: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 12: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_tailEPNS3_4PageE:0 + 2: 0 + 3: 0 + 5: 0 + 23.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16lookup_next_pageEl:0 + 3.1: 0 + 4.1: 0 + 5: 0 + 5.1: 0 + 7: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page10reuse_sizeEv:0 + 0: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 32: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9alloc_bigEl:0 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 3: 0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_headEPNS3_4PageE:0 + 4: 0 + 5: 0 + 7: 0 + 7: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:0 + 3: 0 + 12.2: _ZN9oceanbase3sql10ObUpdRtDefC2Ev:168350 + 4: 518 + 9: 518 + 13: 518 + 1: _ZN9oceanbase3sql14ObDMLBaseRtDefC2ERNS0_17ObDASDMLBaseRtDefE:87542 + 2: 518 + 5: 518 + 1: _ZN9oceanbase3sql14ObTrigDMLRtDefC2Ev:74074 + 1: 518 + 2: 518 + 65406.2: 518 + 7: _ZN9oceanbase2pl14ObPLCollectionC2ENS0_8ObPLTypeEm:54390 + 2: 518 + 5: 518 + 1: _ZN9oceanbase2pl13ObPLCompositeC2ENS0_8ObPLTypeEmb:11396 + 0: 518 + 3: _ZN9oceanbase2pl10ObElemDescC2Ev:27454 + 0: 518 + 0: _ZN9oceanbase6common10ObDataTypeC2Ev:16576 + 3: 518 + 4: 518 + 1: _ZN9oceanbase6common9ObObjMetaC2Ev:4144 + 1: 518 + 2: _ZN9oceanbase6common10ObAccuracyC2Ev:4662 + 0: _ZN9oceanbase6common10ObAccuracy5resetEv:4662 + 0: 518 + 2: _ZN9oceanbase3sql13ObDASUpdRtDefC2Ev:32116 + 2: 518 + 1: _ZN9oceanbase3sql17ObDASDMLBaseRtDefC2ENS0_11ObDASOpTypeE:27972 + 2: 518 + 4: 518 + 5: 518 + 1: _ZN9oceanbase3sql14ObDASBaseRtDefC2ENS0_11ObDASOpTypeE:10360 + 1: 518 + 3: 518 + 10: _ZN9oceanbase6common11ObArrayWrapIPNS_3sql17ObDASDMLBaseRtDefEEC2Ev:8806 + 1: 518 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql17ObDASDMLBaseRtDefEEC2Ev:4662 + 0: 518 + 11: _ZN9oceanbase6common11ObArrayWrapIPNS_3sql17ObDASDMLBaseRtDefEEC2Ev:8806 + 1: 518 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql17ObDASDMLBaseRtDefEEC2Ev:4662 + 0: 518 + 12: _ZN9oceanbase6common11ObArrayWrapIPNS_3sql17ObDASDMLBaseRtDefEEC2Ev:8806 + 1: 518 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql17ObDASDMLBaseRtDefEEC2Ev:4662 + 0: 518 + 13.2: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql10ObUpdRtDefEE5countEv:15534 + 0: 1034 + 14: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql10ObUpdCtDefEE2atEl:12959 + 6: 521 + 15: _ZN9oceanbase6common12ObIArrayWrapINS_3sql10ObUpdRtDefEE2atEl:2084 + 6: 521 + 17: _ZN9oceanbase3sql12ObDMLService14init_upd_rtdefERNS0_10ObDMLRtCtxERNS0_10ObUpdRtDefERKNS0_10ObUpdCtDefERNS_6common8ObIArrayIPNS0_6ObExprEEE:264550 + 6: 521 + 7: 521 + 9: 514 + 13.1: 0 + 14.1: 514 + 15.1: 0 + 16.1: 503 + 17.1: 0 + 19: 503 + 20: 503 + 21: 503 + 23: 503 + 477.1: 5 + 7: _ZN9oceanbase3sql12ObDMLService18get_table_loc_metaINS0_15ObMultiUpdCtDefEEEPKNS0_17ObDASTableLocMetaEPKT_:3647 + 3: 521 + 8: _ZN9oceanbase3sql10ObDMLRtCtx12get_exec_ctxEv:3647 + 0: _ZN9oceanbase3sql8ObDASRef12get_exec_ctxEv:3647 + 0: 521 + 8.1: _ZN9oceanbase3sql13ObExecContext13set_dml_eventENS_6common14ObDmlEventTypeE:7294 + 0: 521 + 9: _ZN9oceanbase3sql12ObDMLService18init_das_dml_rtdefERNS0_10ObDMLRtCtxERKNS0_17ObDASDMLBaseCtDefERNS0_17ObDASDMLBaseRtDefEPKNS0_17ObDASTableLocMetaE:137801 + 5: 521 + 9: 521 + 10: 521 + 11: 521 + 12: 521 + 13: 521 + 14: 521 + 15: 521 + 16: 0 + 17: 0 + 18: 0 + 19: 0 + 20.1: 0 + 21.1: 0 + 22.1: 0 + 33: 521 + 33.1: 521 + 34: 521 + 35: 521 + 35.1: 5 + 36: 5 + 40: 5 + 40.1: 5 + 42.1: 0 + 43.1: 5 + 43.2: 5 + 44.1: 0 + 46: 5 + 46.1: 0 + 46.2: 0 + 46.3: 5 + 48: 5 + 6: _ZN9oceanbase3sql10ObDMLRtCtx12get_exec_ctxEv:3647 + 0: _ZN9oceanbase3sql8ObDASRef12get_exec_ctxEv:3647 + 0: 521 + 6.1: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:3647 + 2: 521 + 7.1: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:3647 + 2: 521 + 8.1: _ZN9oceanbase3sql13ObExecContext11get_das_ctxEv:3647 + 0: 521 + 11: _ZNK9oceanbase3sql17ObPhysicalPlanCtx24get_ps_timeout_timestampEv:5210 + 2: 521 + 12: _ZN9oceanbase3sql16ObSQLSessionInfo11get_prelockEv:3126 + 0: 521 + 13: _ZNK9oceanbase3sql17ObPhysicalPlanCtx25get_tenant_schema_versionEv:3647 + 0: 521 + 14: _ZNK9oceanbase3sql18ObBasicSessionInfo12get_sql_modeEv:14067 + 0: 521 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache12get_sql_modeEv:12504 + 0: 521 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache12get_sql_modeEb:7815 + 0: 521 + 15: _ZNK9oceanbase3sql15ObTableModifyOp9get_inputEv:3647 + 2: 521 + 15.1: _ZN9oceanbase3sql20ObTableModifyOpInput13get_table_locEv:2084 + 0: 521 + 33.2: _ZNK9oceanbase5share6schema18ObTableSchemaParam14is_index_tableEv:3647 + 0: _ZN9oceanbase5share6schema21ObSimpleTableSchemaV214is_index_tableENS1_11ObTableTypeE:3647 + 0: 521 + 35: _ZNK9oceanbase6common12ObIArrayWrapImE5emptyEv:2605 + 0: 521 + 36: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:20 + 2: 5 + 36.1: _ZNK9oceanbase3sql14ObPhysicalPlan19is_distributed_planEv:35 + 0: 5 + 37: _ZN9oceanbase3sql17ObDASTabletMapperC2Ev:125 + 2: 5 + 38: _ZN9oceanbase6common7ObArrayINS0_10ObTabletIDENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_22NotImplementItemEncodeIS2_EEEC2Ev:505 + 0.1: 5 + 0.5: _ZN9oceanbase6common11ObArrayImplINS0_10ObTabletIDENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_22NotImplementItemEncodeIS2_EEEC2ElRKS3_:470 + 3: 5 + 4: 5 + 7.1: 5 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:250 + 0: 5 + 39: _ZN9oceanbase6common7ObArrayImNS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackImEENS0_22NotImplementItemEncodeImEEEC2Ev:365 + 0.1: 5 + 0.5: _ZN9oceanbase6common11ObArrayImplImNS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackImEENS0_22NotImplementItemEncodeImEEEC2ElRKS2_:330 + 3: 5 + 4: 5 + 7.1: 5 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:145 + 0: 5 + 14.1: _ZN9oceanbase3sql12ObDMLService22init_related_das_rtdefERNS0_10ObDMLRtCtxERKNS_6common12ObFixedArrayIPNS0_17ObDASDMLBaseCtDefENS4_12ObIAllocatorEEERNS4_11ObArrayWrapIPNS0_17ObDASDMLBaseRtDefEEE:27081 + 4: 514 + 5: 514 + 6.1: 0 + 7: 0 + 7.1: 0 + 8.1: 0 + 11.1: 514 + 13: 5 + 14: 5 + 14.1: 5 + 15.1: 0 + 16.1: 5 + 16.2: 5 + 20.1: 0 + 22: 5 + 5: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql17ObDASDMLBaseCtDefEE5emptyEv:4112 + 0: 514 + 6: _ZN9oceanbase3sql10ObDMLRtCtx12get_exec_ctxEv:0 + 0: _ZN9oceanbase3sql8ObDASRef12get_exec_ctxEv:0 + 0: 0 + 7: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql17ObDASDMLBaseCtDefEE5countEv:0 + 0: 0 + 12.2: _ZN9oceanbase3sql8ObDASCtx15get_das_factoryEv:80 + 0: 5 + 14: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql17ObDASDMLBaseCtDefEE2atEl:70 + 6: 5 + 16.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql17ObDASDMLBaseCtDefEE2atEl:70 + 6: 5 + 22: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql17ObDASDMLBaseRtDefEE2atEl:120 + 6: 5 + 16.1: _ZN9oceanbase3sql12ObDMLService23init_trigger_for_updateERNS0_10ObDMLRtCtxERKNS0_10ObUpdCtDefERNS0_10ObUpdRtDefERNS0_15ObTableModifyOpERNS_6common8ObIArrayIPNS0_6ObExprEEE:28671 + 8: 503 + 9: 503 + 9.1: 503 + 12.1: 0 + 14.1: 0 + 17.2: 0 + 18.1: 0 + 18.2: 0 + 19.3: 0 + 19.4: 0 + 19.6: 0 + 22: 0 + 26: 0 + 26.1: 0 + 27: 503 + 16: _ZN9oceanbase6common9ObSEArrayIPNS_3sql6ObExprELl4ENS0_19ModulePageAllocatorELb0EEC2Ev:0 + 0.1: 0 + 0.5: _ZN9oceanbase6common13ObSEArrayImplIPNS_3sql6ObExprELl4ENS0_19ModulePageAllocatorELb0EEC2ElRKS5_:0 + 5: 0 + 6: 0 + 8: 0 + 17.1: 0 + 2: _ZN9oceanbase6common8ObIArrayIPNS_3sql6ObExprEEC2EPS4_l:0 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEEC2EPS4_l:0 + 0: 0 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:0 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:0 + 2: 0 + 8: 0 + 18: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:0 + 6: 0 + 18.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:0 + 6: 0 + 23: _ZN9oceanbase6common6appendINS0_8ObIArrayIPNS_3sql6ObExprEEENS0_9ObSEArrayIS5_Ll4ENS0_19ModulePageAllocatorELb0EEEEEiRT_RKT0_:0 + 4.1: 0 + 4.3: 0 + 5: 0 + 5.1: 0 + 3: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE5countEv:0 + 0: 0 + 21: _ZN9oceanbase3sql10ObDMLRtCtx12get_exec_ctxEv:3521 + 0: _ZN9oceanbase3sql8ObDASRef12get_exec_ctxEv:3521 + 0: 503 + 21.1: _ZN9oceanbase3sql13ObExecContext18set_update_columnsEPKNS_6common12ObFixedArrayINS0_13ColumnContentENS2_12ObIAllocatorEEE:3521 + 0: 503 + 21.1: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql10ObUpdRtDefEE5emptyEv:1563 + 0: 521 + 22: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql10ObUpdCtDefEE2atEl:1563 + 6: 521 + 23: _ZN9oceanbase6common12ObIArrayWrapINS_3sql10ObUpdRtDefEE2atEl:2084 + 6: 521 + 27: _ZN9oceanbase3sql12ObDMLService27process_before_stmt_triggerERKNS0_14ObDMLBaseCtDefERNS0_14ObDMLBaseRtDefERNS0_10ObDMLRtCtxERKNS_6common14ObDmlEventTypeE:29176 + 5: 521 + 7: 521 + 7.1: 521 + 8: 0 + 8.1: 0 + 9: 0 + 10: 0 + 11.1: 0 + 14.1: 0 + 18.1: 0 + 21: 521 + 6: _ZN9oceanbase3sql10ObDMLRtCtx12get_exec_ctxEv:3647 + 0: _ZN9oceanbase3sql8ObDASRef12get_exec_ctxEv:3647 + 0: 521 + 6.1: _ZN9oceanbase3sql13ObExecContext13set_dml_eventENS_6common14ObDmlEventTypeE:5210 + 0: 521 + 7.1: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql12ObTriggerArgEE5emptyEv:4168 + 0: 521 + 8: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:0 + 2: 0 + 8.2: _ZNK9oceanbase3sql17ObTableModifySpec12use_dist_dasEv:0 + 0: 0 + 9.1: _ZN9oceanbase3sql10ObDMLRtCtx12get_exec_ctxEv:0 + 0: _ZN9oceanbase3sql8ObDASRef12get_exec_ctxEv:0 + 0: 0 + 9.2: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:0 + 2: 0 + 9.3: _ZNK9oceanbase3sql16ObSQLSessionInfo17is_remote_sessionEv:0 + 0: 0 + 6: _ZN9oceanbase3sql10ObDMLRtCtx23set_pick_del_task_firstEv:4120 + 0: 515 + 15.1: _ZN9oceanbase3lib20is_trace_log_enabledEv:4197 + 2: 515 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:526 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:3682 + 2: 526 + 15.2: _ZN9oceanbase6common18get_trace_recorderEv:0 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:0 + 7: 0 + 8: 0 + 8.1: 0 + 15.4: _ZN9oceanbase3lib20is_trace_log_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:0 + 2: 0 + 15.12: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:0 + 0: 0 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 +_ZN9oceanbase3sql17ObChunkDatumStore5resetEv:1396825:8557 + 1: 8129 + 2: 8129 + 3: 8129 + 4: 0 + 5: 0 + 5.1: 0 + 6.1: 0 + 8.1: 0 + 10: 0 + 13: 8129 + 15.1: 8129 + 17: 749 + 18: 749 + 19: 749 + 20: 749 + 20.2: 749 _ZN9oceanbase3sql20ObSqlMemMgrProcessor4freeEl:764 + 23: 746 _ZN9oceanbase6common11ObAllocator4freeEPv:772 + 27: 8135 + 29: 8135 + 30: 8135 + 31.1: 8135 + 33: 0 + 34: 0 + 35: 0 + 35.2: 0 + 38: 0 + 42: 8135 + 43: 1 + 44: 1 + 49: 8135 + 50: 8135 + 52: 8135 + 53: 8135 + 3: _ZNK9oceanbase3sql17ObChunkDatumStore12is_file_openEv:65032 + 0: 8129 + 15.1: _ZNK9oceanbase3sql17ObChunkDatumStore9BlockList8is_emptyEv:44560 + 0: 8129 + 16: _ZN9oceanbase3sql17ObChunkDatumStore9BlockList12remove_firstEv:27713 + 1: 749 + 2: 749 + 3: 749 + 4: 749 + 5: 749 + 6: 749 + 7: 749 + 17: _ZN9oceanbase3sql17ObChunkDatumStore5Block10get_bufferEv:2996 + 3: 749 + 18: _ZN9oceanbase3sql17ObChunkDatumStore5Block10get_bufferEv:2996 + 3: 749 + 20: _ZN9oceanbase3sql17ObChunkDatumStore5Block10get_bufferEv:2996 + 3: 749 + 20.1: _ZNK9oceanbase3sql17ObChunkDatumStore11BlockBuffer8mem_sizeEv:6741 + 0: 749 + 29: _ZN9oceanbase3sql17ObChunkDatumStore10free_blockEPNS1_5BlockE:73215 + 2: 8135 + 4: 0 + 5: 0 + 7: 0 + 8: 0 + 9: 0 + 9.1: 0 + 11: 0 + 3: _ZN9oceanbase3sql17ObChunkDatumStore5Block10get_bufferEv:0 + 3: 0 + 4: _ZNK9oceanbase3sql17ObChunkDatumStore11BlockBuffer8is_emptyEv:0 + 0: 0 + 9: _ZNK9oceanbase3sql17ObChunkDatumStore11BlockBuffer8mem_sizeEv:0 + 0: 0 + 31.1: _ZNK9oceanbase3sql17ObChunkDatumStore9BlockList8is_emptyEv:40675 + 0: 8135 + 32: _ZN9oceanbase3sql17ObChunkDatumStore9BlockList12remove_firstEv:0 + 1: 0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 33: _ZN9oceanbase3sql17ObChunkDatumStore5Block10get_bufferEv:0 + 3: 0 + 35: _ZN9oceanbase3sql17ObChunkDatumStore5Block10get_bufferEv:0 + 3: 0 + 35.1: _ZNK9oceanbase3sql17ObChunkDatumStore11BlockBuffer8mem_sizeEv:0 + 0: 0 +_ZN9oceanbase3sql14ObExprValuesOp18inner_get_next_rowEv:1391199:610 + 1: 529 + 2: 529 + 3: 529 + 7: 529 + 8.1: 0 + 9: 0 + 12: 0 + 16: 536 + 18.1: 0 + 20.1: 250 + 20.2: 0 + 22: 0 + 22.1: 0 + 26.1: 0 + 28: 0 + 33.1: 250 + 33.2: 0 + 34: 250 + 35: 0 + 38: 535 + 3: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:3703 + 2: 529 + 4: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:7406 + 2: 529 + 6: _ZN9oceanbase3sql17ObPhysicalPlanCtx18set_autoinc_id_tmpEm:5819 + 2: 529 + 7: _ZN9oceanbase3sql10ObOperator16try_check_statusEv:17457 + 2: 529 + 3: 0 + 14: _ZN9oceanbase3sql10ObOperator20clear_evaluated_flagEv:11638 + 2.1: 529 + 2.3: 0 + 3: 0 + 2.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql10ObEvalInfoEE5countEv:9522 + 0: 529 + 3: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql10ObEvalInfoEE2atEl:0 + 6: 0 + 3.1: _ZN9oceanbase3sql10ObEvalInfo20clear_evaluated_flagEv:0 + 2: 0 + 4: 0 + 15: _ZN9oceanbase3sql13ObErrLogRtDef5resetEv:8925 + 2: 525 + 3: 525 + 65529: 0 + 16: _ZN9oceanbase3sql14ObExprValuesOp13calc_next_rowEv:1287363 + 2: 525 + 3.2: 269 + 3.3: 0 + 3.5: 0 + 3.6: 0 + 3.14: 0 + 4: 542 + 7: 542 + 9: 542 + 9.3: 0 + 10: 542 + 11: 542 + 13: 273 + 16: 277 + 18: 277 + 19: 277 + 20: 0 + 21: 0 + 22.1: 0 + 25: 277 + 25.1: 277 + 26: 0 + 28.1: 0 + 32.1: 1020 + 32.2: 1294 + 33: 1048 + 34: 1048 + 35: 1048 + 36: 1048 + 37: 1048 + 38: 1048 + 39: 22 + 40.1: 0 + 43: 1048 + 43.1: 1048 + 44: 1048 + 44.1: 1048 + 45: 1048 + 46: 1048 + 52: 1048 + 53: 1048 + 54: 1048 + 54.1: 1048 + 55: 0 + 56.1: 0 + 58: 1058 + 58.1: 1048 _ZNK9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE2atEl:1076 + 60: 1058 + 60.1: 1058 _ZNK9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE2atEl:1087 + 65: 1150 + 66: 1150 + 67: 22 + 71: 22 + 73.1: 1060 + 84.1: 1060 + 84.2: 22 + 85: 1060 + 85.1: 22 + 87: 22 + 90: 22 + 91: 22 + 107: 1084 + 108: 1047 + 109: 1047 + 110: 1048 _ZN9oceanbase6common7ObDatum22get_obj_datum_map_typeENS0_9ObObjTypeE:1075 + 112: 1048 + 113: 22 + 115: 1075 + 116: 0 + 116.1: 0 + 116.2: 0 + 117: 0 + 118.1: 0 + 121: 0 + 122: 0 + 124.1: 0 + 128: 1075 _ZN9oceanbase3sql13ObDatumCaster7to_typeERKNS0_11ObDatumMetaERKNS0_6ObExprERKmRPNS_6common7ObDatumE:1100 + 130.1: 0 + 135: 0 + 136: 998 + 137: 998 + 139: 483 + 139.1: 504 + 140.1: 0 + 144: 509 + 145: 509 + 145.1: 561 + 146.1: 0 + 149: 1042 + 153: 1042 + 154: 0 + 154.1: 0 + 155: 0 + 156: 0 + 158: 0 + 159: 0 + 160: 0 + 162.1: 0 + 166: 0 + 169: 1042 + 170: 1042 + 174: 803 + 180: 512 + 180.2: 250 + 180.3: 0 + 180.5: 0 + 180.6: 0 + 180.14: 0 + 181: 536 + 615: 22 + 65241: 0 + 3: _ZN9oceanbase6common12ObCurTraceId3getEv:13125 + 2: _ZN9oceanbase6common12ObCurTraceId12get_trace_idEv:13125 + 5: 525 + 5.1: 0 + 5.1: _ZN9oceanbase6common12ObCurTraceId7TraceIdC2Ev:0 + 0: 0 + 3.2: _ZN9oceanbase3lib20is_trace_log_enabledEv:2152 + 2: 269 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:281 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:1883 + 2: 269 + 3.5: _ZN9oceanbase3lib20is_trace_log_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:0 + 2: 0 + 3.13: _Z17CHECK_TRACE_TIMESmPKm:55470 + 10.1: 525 + 11.1: 525 + 12: 525 + 13: 259 + 14: 259 + 18: 269 + 19: 269 + 20: 269 + 3.15: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:0 + 0: 0 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 6: _ZN9oceanbase3sql11get_my_specINS0_14ObExprValuesOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:2168 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:2168 + 0: 542 + 6.1: _ZNK9oceanbase3sql8ObOpSpec16get_output_countEv:5962 + 0: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE5countEv:5962 + 0: 542 + 9.4: _ZNK9oceanbase3sql15ObMultiStmtItem20get_batched_stmt_cntEv:0 + 3: 0 + 4: 0 + 5.1: 0 + 6: _ZNK9oceanbase6common12ObIArrayWrapINS0_8ObStringEE5countEv:0 + 0: 0 + 10.1: _ZNK9oceanbase3sql16ObExprValuesSpec15get_value_countEv:3794 + 0: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE5countEv:3794 + 0: 542 + 17: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:1939 + 2: 277 + 33: _ZN9oceanbase3sql11get_my_specINS0_14ObExprValuesOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:4192 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:4192 + 0: 1048 + 34.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:7336 + 6: 1048 + 35.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:4192 + 6: 1048 + 39: _ZN9oceanbase3sql14ObExprValuesOp23get_real_batch_obj_typeERNS0_11ObDatumMetaERNS_6common9ObObjMetaEPNS0_6ObExprEl:1232 + 5: 0 + 6: 0 + 6.1: 0 + 7: 0 + 7.1: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 12: 0 + 13: 0 + 13.1: 0 + 14: 0 + 15.1: 0 + 16.1: 0 + 18: 0 + 20: 0 + 21.1: 0 + 22.1: 0 + 23: 0 + 24.1: 0 + 27: 0 + 33: 22 + 38: 22 + 9.1: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql11ObFrameInfoEE5countEv:0 + 0: 0 + 11: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:0 + 2: 0 + 16.2: _ZNK9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE2atEl:0 + 5: _ZNK9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE11get_obj_posEl:0 + 4: 0 + 5: 0 + 4: _ZNK9oceanbase6common12ObIArrayWrapIPNS0_10ObObjParamEE2atEl:0 + 6: 0 + 16.3: _ZNK9oceanbase6common5ObObj16is_ext_sql_arrayEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta16is_ext_sql_arrayEv:0 + 0: 0 + 0.1: 0 + 0: _ZNK9oceanbase6common9ObObjMeta6is_extEv:0 + 0: 0 + 18.2: _ZNK9oceanbase6common5ObObj7get_extEv:0 + 4: 0 + 29: _ZN9oceanbase3sql14ObExprValuesOp15update_src_metaERNS0_11ObDatumMetaERKNS_6common9ObObjMetaERKNS4_10ObAccuracyE:0 + 2: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:0 + 0: 0 + 3: _ZNK9oceanbase6common9ObObjMeta18get_collation_typeEv:0 + 0: 0 + 4: _ZNK9oceanbase6common10ObAccuracy9get_scaleEv:0 + 0: 0 + 5: _ZNK9oceanbase6common10ObAccuracy13get_precisionEv:0 + 0: 0 + 34.1: _ZNK9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE2atEl:88 + 5: _ZNK9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE11get_obj_posEl:88 + 4: 22 + 35: _ZN9oceanbase3sql14ObExprValuesOp15update_src_metaERNS0_11ObDatumMetaERKNS_6common9ObObjMetaERKNS4_10ObAccuracyE:462 + 2: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:88 + 0: 22 + 3: _ZNK9oceanbase6common9ObObjMeta18get_collation_typeEv:88 + 0: 22 + 4: _ZNK9oceanbase6common10ObAccuracy9get_scaleEv:176 + 0: 22 + 5: _ZNK9oceanbase6common10ObAccuracy13get_precisionEv:110 + 0: 22 + 46.1: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql11ObFrameInfoEE5countEv:7336 + 0: 1048 + 53: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:7336 + 2: 1048 + 61: _ZN9oceanbase3sql14ObExprValuesOp15update_src_metaERNS0_11ObDatumMetaERKNS_6common9ObObjMetaERKNS4_10ObAccuracyE:25461 + 2: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:4428 + 0: 1107 + 3: _ZNK9oceanbase6common9ObObjMeta18get_collation_typeEv:4428 + 0: 1107 + 4: _ZNK9oceanbase6common10ObAccuracy9get_scaleEv:7749 + 0: 1107 + 5: _ZNK9oceanbase6common10ObAccuracy13get_precisionEv:8856 + 0: 1107 + 67: _ZNK9oceanbase3sql6ObExpr22locate_datum_for_writeERNS0_9ObEvalCtxE:1540 + 3: 22 + 6: 22 + 7: 22 + 8: 22 + 9: 22 + 5: _ZNK9oceanbase3sql6ObExpr13get_datum_idxERNS0_9ObEvalCtxE:242 + 2: 22 + 2: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:88 + 0: 22 + 67.1: _ZN9oceanbase6common7ObDatum7set_intEl:242 + 0: 22 + 87: _ZNK9oceanbase3sql6ObExpr4evalERNS0_9ObEvalCtxERPNS_6common7ObDatumE:3234 + 4: 22 + 6: 22 + 7: 22 + 9: 22 + 10: 22 + 10.1: 22 + 11: 22 + 13: 0 + 15.1: 22 + 15.2: 22 + 17: 22 + 18: 22 + 20: 22 + 21: 22 + 22: 22 + 24: 0 + 9: _ZNK9oceanbase3sql6ObExpr15is_batch_resultEv:88 + 0: 22 + 11: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:88 + 0: 22 + 24: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:0 + 0: 0 + 90: _ZNK9oceanbase3sql6ObExpr22locate_datum_for_writeERNS0_9ObEvalCtxE:1408 + 3: 22 + 6: 22 + 7: 22 + 8: 22 + 9: 22 + 5: _ZNK9oceanbase3sql6ObExpr13get_datum_idxERNS0_9ObEvalCtxE:242 + 2: 22 + 2: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:88 + 0: 22 + 112: _ZN9oceanbase3lib14is_oracle_modeEv:46112 + 2: _ZN9oceanbase3lib15get_compat_modeEv:46112 + 2: 1048 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:29344 + 2: 1048 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 115: _ZNK9oceanbase6common9ObObjMeta14is_enum_or_setEv:8600 + 0: 1075 + 1: 1075 + 116.1: _ZN9oceanbase3sql11get_my_specINS0_14ObExprValuesOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:0 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:0 + 0: 0 + 136: _ZNK9oceanbase3sql6ObExpr22locate_datum_for_writeERNS0_9ObEvalCtxE:66866 + 3: 998 + 6: 998 + 7: 998 + 8: 998 + 9: 998 + 5: _ZNK9oceanbase3sql6ObExpr13get_datum_idxERNS0_9ObEvalCtxE:10978 + 2: 998 + 2: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:3992 + 0: 998 + 138: _ZN9oceanbase3sql17ObExprStrResAllocC2ERKNS0_6ObExprERNS0_9ObEvalCtxE:18837 + 0: 483 + 1: 483 + 139: _ZN9oceanbase6common7ObDatum9deep_copyERKS1_RNS0_12ObIAllocatorE:50351 + 2: 483 + 3: 483 + 4: 483 + 5: 483 + 5.3: 483 + 6: 483 _ZN9oceanbase3sql17ObExprStrResAlloc5allocEl:489 + 7: 500 + 8: 0 + 9.1: 0 + 11: 500 + 13: 504 + 16: 504 + 143: _ZN9oceanbase6common12ObDataBufferC2EPcl:17306 + 1: 509 + 2: 509 + 145: _ZN9oceanbase6common7ObDatum9deep_copyERKS1_RNS0_12ObIAllocatorE:52644 + 2: 509 + 3: 509 + 4: 509 + 5: 509 + 5.3: 509 + 6: 509 _ZN9oceanbase6common12ObDataBuffer5allocEl:517 + 7: 561 + 8: 0 + 9.1: 0 + 11: 561 + 13: 561 + 16: 0 + 154: _ZN9oceanbase3sql11get_my_specINS0_14ObExprValuesOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:0 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:0 + 0: 0 + 158: _ZNK9oceanbase3sql6ObExpr22locate_datum_for_writeERNS0_9ObEvalCtxE:0 + 3: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 5: _ZNK9oceanbase3sql6ObExpr13get_datum_idxERNS0_9ObEvalCtxE:0 + 2: 0 + 2: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 158.1: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:0 + 0: 0 + 159: _ZNK9oceanbase3sql6ObExpr23set_evaluated_projectedERNS0_9ObEvalCtxE:0 + 2: 0 + 3: 0 + 2: _ZNK9oceanbase3sql6ObExpr13get_eval_infoERNS0_9ObEvalCtxE:0 + 2: 0 + 3: _ZNK9oceanbase3sql6ObExpr13get_eval_infoERNS0_9ObEvalCtxE:0 + 2: 0 + 180: _ZN9oceanbase6common12ObCurTraceId3getEv:12800 + 2: _ZN9oceanbase6common12ObCurTraceId12get_trace_idEv:12800 + 5: 512 + 5.1: 0 + 5.1: _ZN9oceanbase6common12ObCurTraceId7TraceIdC2Ev:0 + 0: 0 + 180.2: _ZN9oceanbase3lib20is_trace_log_enabledEv:2009 + 2: 259 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:264 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:1750 + 2: 250 + 180.5: _ZN9oceanbase3lib20is_trace_log_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:0 + 2: 0 + 180.13: _Z17CHECK_TRACE_TIMESmPKm:60416 + 10.1: 512 + 11.1: 512 + 12: 512 + 13: 512 + 14: 512 + 18: 0 + 19: 0 + 20: 0 + 180.15: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:0 + 0: 0 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 20.1: _ZN9oceanbase3sql11get_my_specINS0_14ObExprValuesOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:1000 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:1000 + 0: 250 + 34: _ZN9oceanbase3sql11get_my_specINS0_14ObExprValuesOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:1500 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:1500 + 0: 250 +_ZN9oceanbase5share6schema16ObPartitionUtils24get_tablet_and_object_idERKNS1_13ObTableSchemaERNS_6common10ObTabletIDERmPNS1_16RelatedTableInfoE:1385639:4464 + 5: 4318 + 6: 4318 + 7: 4994 + 8.1: 37 + 9.1: 4999 + 10.1: 37 + 11.1: 4999 + 12: 37 + 13: 37 + 14.1: 37 + 14.2: 37 + 14.3: 37 + 14.5: 37 + 15: 37 + 16: 37 + 19: 37 + 19.1: 37 + 21.1: 37 + 22.1: 37 + 23: 37 + 24.1: 37 + 25.1: 37 + 25.2: 37 + 27.1: 37 + 28.1: 37 + 28.2: 37 + 28.3: 37 + 28.4: 37 + 30.1: 37 + 37: 4814 + 7: _ZN9oceanbase5share6schema16ObPartitionUtils18check_param_valid_ERKNS1_13ObTableSchemaEPNS1_16RelatedTableInfoE:347681 + 4: 4318 + 5: 4708 _ZNK9oceanbase5share6schema21ObSimpleTableSchemaV213get_tenant_idEv:4684 + 6: 4855 _ZNK9oceanbase5share6schema21ObSimpleTableSchemaV212get_table_idEv:4738 + 7: 4855 _ZNK9oceanbase5share6schema21ObSimpleTableSchemaV210has_tabletEv:4893 + 8: 37 + 9.1: 37 + 12.1: 4766 + 14.1: 11 + 15: 11 + 16.1: 11 + 18.1: 37 + 22: 37 + 23: 37 + 24: 37 + 25.1: 37 + 29: 37 + 32: 37 + 35: 37 + 36.3: 37 + 36.4: 37 + 36.6: 37 + 37: 37 + 42: 37 + 43.1: 37 + 47: 37 + 48: 37 + 48.2: 37 + 50.1: 37 + 51.1: 37 + 52: 37 + 53.1: 37 + 57: 37 + 59: 37 + 62.1: 37 + 62.2: 37 + 62.3: 37 + 62.5: 37 + 63: 37 + 65.1: 37 + 65.3: 37 + 65.4: 37 + 67: 37 + 68: 37 + 71: 37 + 75: 37 + 76: 37 + 77.1: 37 + 80: 37 + 81: 37 + 82.1: 37 + 88: 4994 + 14.1: _ZNK9oceanbase5share6schema16RelatedTableInfo8is_validEv:242 + 2: 11 + 2.1: 11 + 2.2: 11 + 30: _ZNK9oceanbase5share6schema21ObSimpleTableSchemaV228is_storage_local_index_tableEv:1443 + 0: _ZNK9oceanbase5share6schema21ObSimpleTableSchemaV222is_index_local_storageEv:1443 + 2: 37 + 3: 37 + 3.1: 37 + 4: 37 + 37.1: _ZNK9oceanbase6common12ObIArrayWrapImE2atEl:148 + 6: 37 + 63: _ZNK9oceanbase6common12ObIArrayWrapImE2atEl:148 + 6: 37 + 65.3: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema18ObAuxTableMetaInfoEE5countEv:370 + 66: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema18ObAuxTableMetaInfoEE2atEl:296 + 6: 37 + 67: _ZN9oceanbase5share6schema22is_index_local_storageENS1_11ObIndexTypeE:333 + 3: 37 + 9.1: _ZNK9oceanbase5share6schema17ObPartitionSchema24get_tablet_and_object_idERNS_6common10ObTabletIDERm:515359 + 4: 4994 + 5: 5075 _ZNK9oceanbase5share6schema21ObSimpleTableSchemaV214get_part_levelEv:5036 + 6: 5075 _ZNK9oceanbase5share6schema21ObSimpleTableSchemaV210has_tabletEv:5066 + 7: 37 + 8.1: 37 + 9.1: 4723 + 10: 4723 _ZNK9oceanbase5share6schema21ObSimpleTableSchemaV213get_tablet_idEv:4818 + 11: 4943 _ZNK9oceanbase5share6schema21ObSimpleTableSchemaV213get_object_idEv:5009 + 13: 37 + 14.1: 37 + 16.1: 4943 _ZZNK9oceanbase5share6schema17ObPartitionSchema24get_tablet_and_object_idERNS_6common10ObTabletIDERmENK5$_330clEPKc.238ab44b22ba0c710eddc3a8b49e8eb3:5186 + 19: 4999 + 10.3: _ZN9oceanbase6common10ObTabletIDaSERKS1_:79237 + 0: 4661 + 15: _ZNK9oceanbase6common12ObIArrayWrapImE2atEl:148 + 6: 37 + 17: _ZN9oceanbase6common10ObTabletIDC2Em:296 + 0: 37 + 28.1: _ZN9oceanbase6common10ObTabletIDC2ERKS1_:370 + 0: 37 + 28.2: _ZN9oceanbase6common10ObTabletIDC2ERKS1_:407 + 0: 37 + 28.4: _ZN9oceanbase6common10ObTabletIDD2Ev:407 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:407 + 0: 37 + 28.5: _ZN9oceanbase6common10ObTabletIDD2Ev:259 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:259 + 0: 37 + 28.6: _ZN9oceanbase6common10ObTabletIDD2Ev:444 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:444 + 0: 37 + 28.7: _ZN9oceanbase6common10ObTabletIDD2Ev:407 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:407 + 0: 37 +_ZN9oceanbase3sql11ObDASScanOp22get_output_result_iterEv:1382836:106766 + 0: 106372 +_ZN9oceanbase6common13ObPageManager10free_blockEPNS_3lib6ABlockE:1382356:8697 + 1: 8429 + 2: 8429 + 3.1: 0 + 4.1: 8429 + 8: 8429 + 10: 8429 + 11: 8429 + 12: 8429 _ZN9oceanbase3lib8BlockSet10free_blockEPNS0_6ABlockE:8640 + 14: 0 + 2: _ZN9oceanbase6common8get_itidEv:202296 + 4: 8429 + 5: 0 + 6: 0 + 8: 0 + 6: _ZNK9oceanbase3lib6ABlock8is_validEv:67432 + 2: 8429 + 6.1: _ZL12abort_unlessb:50574 + 5: 8429 + 6: 0 + 8: _ZL12abort_unlessb:50574 + 5: 8429 + 6: 0 + 9: _ZNK9oceanbase3lib6AChunk8is_validEv:59003 + 2: 8429 + 9.1: _ZL12abort_unlessb:50574 + 5: 8429 + 6: 0 + 10: _ZL12abort_unlessb:50574 + 5: 8429 + 6: 0 +_ZThn320_N9oceanbase12blocksstable18ObMicroBlockReader7get_rowElRNS0_10ObDatumRowE:1381484:106613 +_ZNK9oceanbase3sql16ObCandiTabletLoc20get_selected_replicaERNS_5share19ObLSReplicaLocationE:1378806:8649 + 1: 8364 + 2: 8364 + 3: 8601 + 4.1: 0 + 6: 8601 + 3: _ZNK9oceanbase3sql16ObCandiTabletLoc20get_priority_replicaElRNS_5share19ObLSReplicaLocationE:930774 + 3: 8364 + 4: 8601 + 5.1: 0 + 7: 0 + 4: _ZNK9oceanbase3sql16ObCandiTabletLoc25get_priority_replica_baseINS_5share19ObLSReplicaLocationEEEilRT_:778563 + 2: 8364 + 3: 8364 + 4: 0 + 5.1: 0 + 8: 8364 + 8.1: 8364 + 8.2: 8364 + 9: 0 + 10.1: 0 + 16: 8601 + 13: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql13ObRoutePolicy16CandidateReplicaEE2atEl:33456 + 6: 8364 + 13.1: _ZN9oceanbase5share19ObLSReplicaLocationaSERKS1_:485112 + 0: 8364 + 0.1: 8364 _ZN9oceanbase5share17ObLSRestoreStatusaSERKS1_:8792 + 0: _ZN9oceanbase6common6ObAddraSERKS1_:225828 + 1: 8364 + 2: 8364 + 3: 8364 +_ZN9oceanbase8memtable12ObMvccEngine9create_kvEPKNS0_13ObMemtableKeyEPS2_RPNS0_9ObMvccRowERNS0_15RowHeaderGetterERb:1372262:1056 + 6: 1018 + 8: 995 + 9: 995 + 10: 995 + 11: 995 + 12: 0 + 13.1: 0 + 15: 995 + 16.1: 1067 + 17: 995 + 18: 995 + 18.1: 1002 + 19: 974 + 20: 0 + 21.1: 0 + 23.1: 96 _ZN9oceanbase8memtable15RowHeaderGetter3getEv:98 + 23.2: 96 + 24.1: 0 + 25.1: 96 + 25.2: 96 _ZN9oceanbase8memtable13ObMTKVBuilder7dup_keyERPNS_6common13ObStoreRowkeyERNS2_12ObIAllocatorEPKS3_:100 + 25.3: 76 + 28.1: 0 + 29: 0 + 30.1: 76 + 30.2: 76 + 32.1: 76 _ZN9oceanbase6common20ObGMemstoreAllocator11AllocHandle5allocEl:80 + 32.2: 94 + 33.1: 0 + 34: 0 + 36.1: 93 + 38: 94 _ZN9oceanbase8memtable13ObQueryEngine3setEPKNS0_13ObMemtableKeyEPNS0_9ObMvccRowE:100 + 38.1: 81 + 39: 81 + 41: 0 + 46: 0 + 47: 1067 + 49: 1036 + 50: 0 + 50.1: 0 + 50.2: 0 + 50.3: 0 + 50.6: 0 + 51.1: 0 + 56: 1036 + 57.11: 1066 + 57.12: 0 + 7: _ZN9oceanbase6common11ObTimeGuardC2EPKcl:129373 + 2: 995 + 3: 995 + 4: 995 + 6: 995 + 8: 995 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:1018 + 2: 1018 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:1051 + 18: _ZN9oceanbase8memtable13ObQueryEngine3getEPKNS0_13ObMemtableKeyERPNS0_9ObMvccRowEPS2_:957988 + 2: 995 + 3: 995 + 4: 995 + 5.1: 0 + 7.1: 995 + 8: 0 + 9.1: 0 + 12: 995 + 19: 995 + 21.2: 1002 + 23.1: 0 + 25: 93 + 26.1: 1002 + 27: 0 + 28.1: 0 + 34: 93 + 65448: 0 + 12: _ZNK9oceanbase8memtable13ObQueryEngine15get_table_indexERPNS1_10TableIndexE:27860 + 8.1: 995 + 9: 995 + 12.1: 995 + 14: 0 + 19: _ZNK9oceanbase8memtable13ObMemtableKey10get_rowkeyEv:2985 + 0: 995 + 21.1: _ZN9oceanbase8memtable8ObMtHash3getEPKNS0_20ObStoreRowkeyWrapperERPNS0_9ObMvccRowERS4_:848277 + 9: 995 + 9: _ZNK9oceanbase8memtable8ObMtHash8is_emptyEv:10945 + 2: 995 + 10: _ZN9oceanbase8memtable8ObMtHash6do_getEPKNS0_20ObStoreRowkeyWrapperERPNS0_9ObMvccRowERS4_:831362 + 9: 1010 + 20.1: 1091 + 24: 1002 + 5: _ZNK9oceanbase8memtable20ObStoreRowkeyWrapper4hashEv:22331 + 0: _ZNK9oceanbase6common13ObStoreRowkey4hashEv:22331 + 2: 995 + 3: 1058 + 3: _ZNK9oceanbase6common8ObRowkey4hashEv:5970 + 2: 995 _ZNK9oceanbase6common8ObRowkey10murmurhashEm:1010 + 8: _ZN9oceanbase8memtable8ObMtHash9GenealogyC2Ev:15870 + 0.2: 1058 + 10: _ZN9oceanbase8memtable8ObMtHash15get_bucket_nodeElmRPNS0_10ObHashNodeERNS1_9GenealogyE:232501 + 14.1: 1010 + 14.3: 1010 + 17: 1280 + 19.1: 1280 + 25: 1004 + 6: _ZN9oceanbase6common9next_pow2El:34340 + 2: 1010 + 16: _ZN9oceanbase8memtable8ObMtHash11get_arr_idxEll:5120 + 3: 1280 + 23: _ZN9oceanbase8memtable9ObMtArray2atElRPNS0_10ObHashNodeE:118581 + 3: 1004 + 4: _ZN9oceanbase8memtable13ObMtArrayBaseILl8064EE2atElRPNS0_10ObHashNodeE:97497 + 5: 1 + 8: 1004 + 5: _ZN9oceanbase8memtable13ObMtArrayBaseILl8064EE8load_dirERPPNS0_10ObHashNodeE:14156 + 3: 1004 + 4: 1004 + 6.1: 1 + 7: 1 + 8: 1 + 9: 1 + 10: 1 + 11: 1 + 6.1: _ZN9oceanbase8memtable13ObMtArrayBaseILl8064EE8load_segEPPNS0_10ObHashNodeElRS4_:23092 + 3: 1004 + 4: 1004 + 6.1: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 6: _ZN9oceanbase8memtable13ObMtArrayBaseILl2079680EE2atElRPNS0_10ObHashNodeE:0 + 5: 0 + 6.1: 0 + 8: 0 + 5: _ZN9oceanbase8memtable13ObMtArrayBaseILl2079680EE8load_dirERPPNS0_10ObHashNodeE:0 + 3: 0 + 4: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 6.1: _ZN9oceanbase8memtable13ObMtArrayBaseILl2079680EE8load_segEPPNS0_10ObHashNodeElRS4_:0 + 3: 0 + 4: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 25: _ZNK9oceanbase8memtable10ObHashNode16is_bucket_filledEv:5020 + 2: 1004 + 27: _ZN9oceanbase8memtable8ObMtHash9Genealogy13append_parentEPNS0_10ObHashNodeEl:0 + 3: 0 + 4.1: 0 + 6: 0 + 7: 0 + 9: 0 + 13: _ZN9oceanbase8memtable8ObMtHash11fill_bucketEPNS0_10ObHashNodeERNS1_9GenealogyE:27040 + 4: 1009 + 4.1: 1009 + 5: 0 + 6: 0 + 10: 980 + 65472.3: 0 + 9: _ZN9oceanbase8memtable8ObMtHash9Genealogy9get_youngEv:4036 + 2: 1009 + 14: _ZN9oceanbase8memtable12ObMtHashNodeC2ERKNS0_20ObStoreRowkeyWrapperE:50960 + 0: 980 + 3.2: 980 + 0: _ZN9oceanbase8memtable10ObHashNodeC2Ev:9800 + 0: 980 + 3: _ZNK9oceanbase8memtable20ObStoreRowkeyWrapper4hashEv:12740 + 0: _ZNK9oceanbase6common13ObStoreRowkey4hashEv:12740 + 2: 980 + 3: 0 + 3: _ZNK9oceanbase6common8ObRowkey4hashEv:0 + 2: 0 + 3.1: _ZN9oceanbase8memtableL9mark_hashEm:3920 + 2: 980 + 18: _ZN9oceanbase8memtable8ObMtHash21search_sub_range_listEPNS0_10ObHashNodeES3_RS3_S4_Ri:231039 + 7: 980 + 11.1: 1499 + 11.2: 1621 + 12: 1499 + 12.1: 1621 + 13: 1621 + 13.1: 1621 + 11.1: _ZN9oceanbase8memtable8ObMtHash19not_reach_list_tailEPKNS0_10ObHashNodeE:4497 + 2: 1499 + 12.1: _ZN9oceanbase8memtableL12compare_nodeEPKNS0_10ObHashNodeES3_Ri:177840 + 2: 1499 + 4: 1499 + 5: 1499 + 6: 1499 + 7: 1499 + 8: 528 + 9.1: 1009 + 10: 94 + 11.1: 907 + 13.1: 1023 + 14.1: 0 + 15.1: 1023 + 16: 1023 + 17.1: 0 + 18.1: 0 + 22: 1621 + 11.1: _ZNK9oceanbase8memtable10ObHashNode14is_bucket_nodeEv:8163 + 2: 907 + 13.1: _ZNK9oceanbase8memtable20ObStoreRowkeyWrapper5equalERKS1_Rb:72941 + 0: 907 + 0: _ZNK9oceanbase8memtable20ObStoreRowkeyWrapper10get_rowkeyEv:2721 + 0: 907 + 0.1: _ZNK9oceanbase6common13ObStoreRowkey5equalERKS1_Rb:63871 + 2: 907 + 3: 907 + 4: 0 + 5.1: 1023 _ZNK9oceanbase6common8ObRowkey5equalERKS1_Rb:937 + 6.1: 0 + 10: 0 + 3: _ZNK9oceanbase6common13ObStoreRowkey4hashEv:11791 + 2: 907 + 3: 0 + 3: _ZNK9oceanbase6common8ObRowkey4hashEv:0 + 2: 0 + 3.1: _ZNK9oceanbase6common13ObStoreRowkey4hashEv:11791 + 2: 907 + 3: 0 + 3: _ZNK9oceanbase6common8ObRowkey4hashEv:0 + 2: 0 + 30: _ZNK9oceanbase8memtable20ObStoreRowkeyWrapper10get_rowkeyEv:12024 + 0: 1002 + 30.1: _ZN9oceanbase8memtable13ObMemtableKey6encodeEPKNS_6common13ObStoreRowkeyE:3006 + 3: 1002 + 25.1: _ZNK9oceanbase8memtable13ObMemtableKey10get_rowkeyEv:288 + 0: 96 + 30.1: _ZN9oceanbase8memtable13ObMemtableKey6encodeEPKNS_6common13ObStoreRowkeyE:228 + 3: 76 + 36: _ZN9oceanbase8memtable9ObMvccRowC2Ev:5038 + 0: _ZN9oceanbase8memtable10ObRowLatchC2Ev:388 + 0: 97 _ZN9oceanbase6common7ObLatchC1Ev:102 + 0.2: _ZN9oceanbase8memtable9ObMvccRow5resetEv:4650 + 2: 93 + 3: 93 + 4: 93 + 6: 93 + 14: 93 + 37: _ZN9oceanbase8memtable10ObRowLatch5GuardC2ERS1_:2604 + 0: 93 + 0: _ZN9oceanbase8memtable10ObRowLatch4lockEv:1953 + 0: 93 _ZN9oceanbase6common7ObLatch6wrlockEjlPKj:95 + 46.1: _ZN9oceanbase8memtable10ObRowLatch5GuardD2Ev:923 + 0: 83 + 0.2: 0 + 0: _ZN9oceanbase8memtable10ObRowLatch6unlockEv:342 + 0: 93 _ZN9oceanbase6common7ObLatch6unlockEPKj:86 + 57.11: _ZN9oceanbase6common11ObTimeGuardD2Ev:22356 + 2.1: 1066 + 2.2: 0 + 3.1: 0 + 3.5: 0 + 2: _ZNK9oceanbase6common11ObTimeGuard8get_diffEv:8498 + 2: 1066 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:1036 + 2: 1036 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:1038 +_ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv:1364986:18915 + 1: 18570 + 4.1: 18570 + 4.3: 0 + 9: 20073 + 11: 0 + 13: 20506 + 15: 20506 + 24: 20506 + 25: 20506 + 5: _ZN9oceanbase6common10ObTabletIDD2Ev:0 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:0 + 0: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase11transaction16ObTxReadSnapshotD2Ev:1357489:10795 + 1: 10386 + 2: 10386 + 3: 10386 + 4: 10386 + 5: 10433 + 5: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction6ObPairINS_5share6ObLSIDElEELl1ENS0_19ModulePageAllocatorELb0EED2Ev:691093 + 1: 10386 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction6ObPairINS_5share6ObLSIDElEELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:535303 + 4.1: 10386 + 4.3: 0 + 9: 10433 + 10: 0 + 11: 0 + 13: 10433 + 15: 10433 + 24: 10433 + 5: _ZN9oceanbase11transaction6ObPairINS_5share6ObLSIDElED2Ev:10738 + 0: _ZN9oceanbase5share6ObLSIDD2Ev:10738 + 0: _ZN9oceanbase5share6ObLSID5resetEv:10738 + 0: 1534 + 5.1: _ZN9oceanbase5share6ObLSIDD2Ev:83464 + 0: _ZN9oceanbase5share6ObLSID5resetEv:83464 + 0: 10433 + 5.2: _ZN9oceanbase11transaction12ObTxSnapshotD2Ev:239959 + 2: 10433 + 3: 10433 + 4: 10433 +_ZN9oceanbase11transaction16ObTxReadSnapshotD1Ev:1357489:10795 + 1: 10386 + 2: 10386 + 3: 10386 + 4: 10386 + 5: 10433 + 5: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction6ObPairINS_5share6ObLSIDElEELl1ENS0_19ModulePageAllocatorELb0EED2Ev:691093 + 1: 10386 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction6ObPairINS_5share6ObLSIDElEELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:535303 + 4.1: 10386 + 4.3: 0 + 9: 10433 + 10: 0 + 11: 0 + 13: 10433 + 15: 10433 + 24: 10433 + 5: _ZN9oceanbase11transaction6ObPairINS_5share6ObLSIDElED2Ev:10738 + 0: _ZN9oceanbase5share6ObLSIDD2Ev:10738 + 0: _ZN9oceanbase5share6ObLSID5resetEv:10738 + 0: 1534 + 5.1: _ZN9oceanbase5share6ObLSIDD2Ev:83464 + 0: _ZN9oceanbase5share6ObLSID5resetEv:83464 + 0: 10433 + 5.2: _ZN9oceanbase11transaction12ObTxSnapshotD2Ev:239959 + 2: 10433 + 3: 10433 + 4: 10433 +_ZNSt14_Function_baseD2Ev:1355832:58004 + 1: 56907 + 2: 56907 + 3: 54640 _ZNSt14_Function_base13_Base_managerIZN9oceanbase3sql12ObSortOpImpl14before_add_rowEvE5$_970E10_M_managerERSt9_Any_dataRKS6_St18_Manager_operation.68271ef948b9e29c783f97102b0c767d:57012 _ZNSt14_Function_base13_Base_managerIZNK9oceanbase3lib20ObTenantCtxAllocator8get_holdEvEUlPKNS2_17ObTenantMemoryMgrEE_E10_M_managerERSt9_Any_dataRKS9_St18_Manager_operation:26 _ZNSt14_Function_base13_Base_managerIZN9oceanbase11transaction14ObWeakReadUtil35max_stale_time_for_weak_consistencyEmlE5$_178E10_M_managerERSt9_Any_dataRKS6_St18_Manager_operation.d95568170f20f515ba23d039c2565689:1 _ZNSt14_Function_base13_Base_managerIZNK9oceanbase3lib20ObTenantCtxAllocator11print_usageEvE4$_60E10_M_managerERSt9_Any_dataRKS6_St18_Manager_operation.a1b49044713ee2b295a5be406ce610bf:1 + 3.2: 490 + 4: 61314 +_ZN9oceanbase3sql3dtl16ObDtlChTotalInfoD2Ev:1354040:4847 + 0: 4812 + 0: _ZN9oceanbase3sql3dtl15ObDtlExecServerD2Ev:694302 + 0: _ZN9oceanbase6common13ObSEArrayImplIlLl8ENS0_19ModulePageAllocatorELb0EED2Ev:357656 + 1: 4706 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplIlLl8ENS0_19ModulePageAllocatorELb0EE7destroyEv:272948 + 9: 4706 + 11: 0 + 13: 4706 + 15: 4706 + 24: 4706 + 10: _ZN9oceanbase6common13ObSEArrayImplIlLl8ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 0.1: _ZN9oceanbase6common13ObSEArrayImplINS0_6ObAddrELl8ENS0_19ModulePageAllocatorELb0EED2Ev:336646 + 1: 4706 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS0_6ObAddrELl8ENS0_19ModulePageAllocatorELb0EE7destroyEv:251938 + 9: 4706 + 11: 0 + 13: 4778 + 15: 4778 + 24: 4778 + 10: _ZN9oceanbase6common13ObSEArrayImplINS0_6ObAddrELl8ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 0.1: _ZN9oceanbase3sql3dtl15ObDtlExecServerD2Ev:507556 + 0: _ZN9oceanbase6common13ObSEArrayImplIlLl8ENS0_19ModulePageAllocatorELb0EED2Ev:277124 + 1: 4778 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplIlLl8ENS0_19ModulePageAllocatorELb0EE7destroyEv:243678 + 9: 4778 + 11: 0 + 13: 4778 + 15: 4778 + 24: 4778 + 10: _ZN9oceanbase6common13ObSEArrayImplIlLl8ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 0.1: _ZN9oceanbase6common13ObSEArrayImplINS0_6ObAddrELl8ENS0_19ModulePageAllocatorELb0EED2Ev:230432 + 1: 4778 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS0_6ObAddrELl8ENS0_19ModulePageAllocatorELb0EE7destroyEv:211320 + 9: 4778 + 11: 0 + 13: 4812 + 15: 4812 + 24: 4812 + 10: _ZN9oceanbase6common13ObSEArrayImplINS0_6ObAddrELl8ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase12blocksstable18ObMacroBlockHandleD2Ev:1350950:45268 + 1: 43904 + 3: 46026 _ZN9oceanbase6common10ObIOHandleD1Ev:46759 + 3.1: 634 + 3.2: 634 + 2: _ZN9oceanbase12blocksstable18ObMacroBlockHandle5resetEv:529120 + 2: 43904 _ZN9oceanbase6common10ObIOHandle5resetEv:45203 + 3: 44472 _ZN9oceanbase12blocksstable18ObMacroBlockHandle14reset_macro_idEv:46017 +_ZN9oceanbase12blocksstable18ObMacroBlockHandleD1Ev:1350950:45268 + 1: 43904 + 3: 46026 _ZN9oceanbase6common10ObIOHandleD1Ev:46759 + 3.1: 634 + 3.2: 634 + 2: _ZN9oceanbase12blocksstable18ObMacroBlockHandle5resetEv:529120 + 2: 43904 _ZN9oceanbase6common10ObIOHandle5resetEv:45203 + 3: 44472 _ZN9oceanbase12blocksstable18ObMacroBlockHandle14reset_macro_idEv:46017 +_ZN9oceanbase3sql11ObResultSet10start_stmtEv:1348517:4973 + 1: 4590 + 2.1: 4499 + 2.2: 0 + 2.4: 0 + 2.5: 0 + 2.9: 0 + 3: 4499 + 5: 4499 + 6: 4499 + 7: 0 + 8.1: 0 + 9.1: 4499 + 18: 4499 + 20: 903 + 26.1: 4715 + 27: 4891 + 28: 0 + 29.1: 0 + 30.1: 4588 + 30.2: 4891 _ZN9oceanbase3sql17ObSqlTransControl10start_stmtERNS0_13ObExecContextE:4921 + 31.1: 0 + 34: 4588 + 34.2: 4588 + 35: 4588 + 37: 4898 + 40.1: 5041 + 40.2: 1 + 40.4: 1 + 40.5: 1 + 40.11: 1 + 41: 5041 + 2.1: _ZN9oceanbase3lib20is_trace_log_enabledEv:36083 + 2: 4590 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:4614 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:31493 + 2: 4499 + 2.2: _ZN9oceanbase6common18get_trace_recorderEv:0 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:0 + 7: 0 + 8: 0 + 8.1: 0 + 2.4: _ZN9oceanbase3lib20is_trace_log_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:0 + 2: 0 + 2.10: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:0 + 0: 0 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 5: _ZNK9oceanbase3sql15ObCacheObjGuard13get_cache_objEv:17996 + 2: 4499 + 9.1: _ZNK9oceanbase3sql18ObBasicSessionInfo14get_autocommitERb:166507 + 2: 4499 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache14get_autocommitEv:148467 + 0: 4499 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache14get_autocommitEb:103477 + 0: 4499 + 12: _ZNK9oceanbase3sql18ObBasicSessionInfo18get_in_transactionEv:112451 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo17is_in_transactionEv:112451 + 0: 4499 + 0.1: _ZNK9oceanbase11transaction8ObTxDesc8is_in_txEv:58465 + 0: 4499 + 19.1: _ZN9oceanbase3sql18ObPartitionHitInfo12try_set_boolEb:18060 + 0: 903 + 0.1: 903 + 23: _ZN9oceanbase3sql14ObSqlTransUtil15is_remote_transEbbNS0_13ObPhyPlanTypeE:22305 + 2: 4708 + 26.1: _ZNK9oceanbase3sql14ObPhysicalPlan13is_need_transEv:33005 + 0: 4715 + 27: _ZN9oceanbase3sql11ObResultSet15get_trans_stateEv:51873 + 0: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:51873 + 0: 4715 + 0.2: 1 + 27.1: _ZNK9oceanbase3sql10TransState22is_start_stmt_executedEv:34237 + 1: 4891 + 35: _ZN9oceanbase3sql18ObBasicSessionInfo28set_first_need_txn_stmt_typeENS0_4stmt8StmtTypeE:38426 + 2: 4588 + 3: 246 + 37: _ZN9oceanbase3sql11ObResultSet15get_trans_stateEv:51356 + 0: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:51356 + 0: 4668 + 0.2: 1 + 37.1: _ZN9oceanbase3sql10TransState23set_start_stmt_executedEb:88164 + 1: 4898 + 40.1: _ZN9oceanbase3lib20is_trace_log_enabledEv:40189 + 2: 4898 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:5106 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:35287 + 2: 5041 + 40.4: _ZN9oceanbase3lib20is_trace_log_enabledEv:12 + 2: 1 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:7 + 2: 1 + 40.12: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:23 + 0: 1 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:5 + 2: 1 +_ZNK9oceanbase3sql12ObQueryRange21generate_single_rangeERNS1_13ObSearchStateElmRPNS_6common10ObNewRangeERb:1344029:1022 + 5: 977 + 6: 977 + 10: 977 + 10.1: 977 + 10.2: 977 + 11: 977 + 11.1: 977 + 11.2: 977 + 12: 0 + 13.1: 0 + 14.1: 977 + 15: 0 + 16.1: 0 + 17.1: 977 + 18: 0 + 19.1: 0 + 21: 977 + 22.1: 977 + 22.3: 977 + 22.5: 923 + 24: 977 + 25: 977 + 27: 977 + 28.1: 0 + 29.1: 939 + 30.1: 0 + 31.1: 923 + 31.2: 0 + 31.3: 0 + 32: 0 + 32.1: 923 + 32.2: 0 + 55.1: 0 + 56: 0 + 56.1: 0 + 57: 0 + 57.1: 0 + 64.1: 0 + 65: 0 + 65.1: 0 + 66: 0 + 66.1: 0 + 67: 0 + 69: 0 + 73: 899 + 74: 899 + 75: 0 + 76: 0 + 77.1: 0 + 80: 899 + 90: 899 + 90.2: 899 + 93: 899 + 94: 899 + 94.1: 899 + 95: 899 + 97: 0 + 99: 899 + 99.1: 899 + 100: 899 + 102: 0 + 104: 899 + 105: 899 + 106: 899 + 106.1: 948 + 107: 0 + 107.1: 0 + 108: 0 + 111: 948 + 14.1: _ZN9oceanbase6common16ObArenaAllocator5allocEl:127987 + 0: 977 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13alloc_alignedEll:120171 + 3: 977 + 6: 977 + 7: 977 + 8: 977 + 10: 977 + 11: 977 + 12: 977 + 13: 977 + 15.1: 0 + 16: 0 + 18: 0 + 20: 0 + 24: 0 + 28: 0 + 35: 977 + 36: 977 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE15ensure_cur_pageEv:12701 + 2: 977 + 3: 0 + 5.1: 0 + 8: 0 + 9: 0 + 10: 0 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:0 + 2: 0 + 2.2: 0 + 2.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 9: _ZSt3maxIlERKT_S2_S2_:0 + 5: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 8: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:0 + 0: 0 + 7: _ZN9oceanbase6common16get_align_offsetEPvl:13678 + 3: 977 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:6839 + 0: 977 + 11: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:6839 + 7: 977 + 15.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE18is_normal_overflowEl:0 + 2: 0 + 16: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11extend_pageEl:0 + 4: 0 + 5: 0 + 8: 0 + 9: 0 + 10.1: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 12: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_tailEPNS3_4PageE:0 + 2: 0 + 3: 0 + 5: 0 + 21: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:0 + 5.1: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:0 + 0: 0 + 23.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16lookup_next_pageEl:0 + 3.1: 0 + 4.1: 0 + 5: 0 + 5.1: 0 + 7: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page10reuse_sizeEv:0 + 0: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 25: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:0 + 5.1: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:0 + 0: 0 + 32: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9alloc_bigEl:0 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 3: 0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_headEPNS3_4PageE:0 + 4: 0 + 5: 0 + 7: 0 + 7: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:0 + 3: 0 + 5.1: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:0 + 0: 0 + 17.1: _ZN9oceanbase6common16ObArenaAllocator5allocEl:124079 + 0: 977 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13alloc_alignedEll:120171 + 3: 977 + 6: 977 + 7: 977 + 8: 977 + 10: 977 + 11: 977 + 12: 977 + 13: 977 + 15.1: 0 + 16: 0 + 18: 0 + 20: 0 + 24: 0 + 28: 0 + 35: 977 + 36: 977 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE15ensure_cur_pageEv:12701 + 2: 977 + 3: 0 + 5.1: 0 + 8: 0 + 9: 0 + 10: 0 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:0 + 2: 0 + 2.2: 0 + 2.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 9: _ZSt3maxIlERKT_S2_S2_:0 + 5: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 8: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:0 + 0: 0 + 7: _ZN9oceanbase6common16get_align_offsetEPvl:13678 + 3: 977 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:6839 + 0: 977 + 11: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:6839 + 7: 977 + 15.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE18is_normal_overflowEl:0 + 2: 0 + 16: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11extend_pageEl:0 + 4: 0 + 5: 0 + 8: 0 + 9: 0 + 10.1: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 12: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_tailEPNS3_4PageE:0 + 2: 0 + 3: 0 + 5: 0 + 23.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16lookup_next_pageEl:0 + 3.1: 0 + 4.1: 0 + 5: 0 + 5.1: 0 + 7: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page10reuse_sizeEv:0 + 0: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 25: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:0 + 5.1: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:0 + 0: 0 + 32: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9alloc_bigEl:0 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 3: 0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_headEPNS3_4PageE:0 + 4: 0 + 5: 0 + 7: 0 + 7: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:0 + 3: 0 + 23: _ZN9oceanbase6common5ObObjC2Ev:16609 + 0: _ZN9oceanbase6common9ObObjMetaC2Ev:3908 + 1: 977 + 2: _ZN9oceanbase6common5ObObj5resetEv:12701 + 6: 977 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:3908 + 0: 977 + 24: _ZN9oceanbase6common5ObObjC2Ev:16609 + 0: _ZN9oceanbase6common9ObObjMetaC2Ev:3908 + 1: 977 + 2: _ZN9oceanbase6common5ObObj5resetEv:12701 + 6: 977 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:3908 + 0: 977 + 27: _ZN9oceanbase6common12ob_write_objINS0_12ObIAllocatorEEEiRT_RKNS0_5ObObjERS5_:114949 + 2: 977 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9.1: 0 + 10.1: 0 + 11.1: 0 + 14: 939 + 16: 0 + 3: _ZNK9oceanbase6common5ObObj14need_deep_copyEv:96842 + 3: 939 + 4: 939 + 6.2: 0 + 6.3: 0 + 7: 0 + 8: 939 + 8.1: 0 + 8.2: 0 + 2: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:11724 + 0: 977 + 2.2: _ZN9oceanbase6common17ob_is_string_typeENS0_9ObObjTypeE:21266 + 0: 977 + 0: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:20289 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:20289 + 2: 977 + 3233.1: 0 + 7.3: _ZN9oceanbase6common15ob_is_number_tcENS0_9ObObjTypeE:12207 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:12207 + 2: 939 + 4: _ZNK9oceanbase6common5ObObj18get_deep_copy_sizeEv:0 + 3: 0 + 4: 0 + 5.1: 0 + 6: 0 + 3: _ZNK9oceanbase6common5ObObj14is_string_typeEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta14is_string_typeEv:0 + 0: 0 + 5.2: _ZN9oceanbase6common15ob_is_number_tcENS0_9ObObjTypeE:0 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:0 + 2: 0 + 29.1: _ZN9oceanbase6common12ob_write_objINS0_12ObIAllocatorEEEiRT_RKNS0_5ObObjERS5_:112243 + 2: 939 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9.1: 0 + 10.1: 0 + 11.1: 0 + 14: 923 + 16: 0 + 3: _ZNK9oceanbase6common5ObObj14need_deep_copyEv:94594 + 3: 923 + 4: 923 + 6.2: 0 + 6.3: 0 + 7: 0 + 8: 923 + 8.1: 0 + 8.2: 0 + 2: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:11268 + 0: 939 + 2.2: _ZN9oceanbase6common17ob_is_string_typeENS0_9ObObjTypeE:20562 + 0: 939 + 0: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:19623 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:19623 + 2: 939 + 3235.1: 0 + 7.3: _ZN9oceanbase6common15ob_is_number_tcENS0_9ObObjTypeE:11999 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:11999 + 2: 923 + 4: _ZNK9oceanbase6common5ObObj18get_deep_copy_sizeEv:0 + 3: 0 + 4: 0 + 5.1: 0 + 6: 0 + 3: _ZNK9oceanbase6common5ObObj14is_string_typeEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta14is_string_typeEv:0 + 0: 0 + 5.2: _ZN9oceanbase6common15ob_is_number_tcENS0_9ObObjTypeE:0 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:0 + 2: 0 + 31.1: _ZNK9oceanbase6common5ObObj9is_urowidEv:11076 + 0: _ZNK9oceanbase6common9ObObjMeta9is_urowidEv:11076 + 0: 923 + 31.2: _ZNK9oceanbase6common5ObObj10get_urowidEv:0 + 2: 0 + 31.4: _ZNK9oceanbase6common12ObURowIDData17is_physical_rowidEv:0 + 2: 0 + 3: 0 + 32.1: _ZNK9oceanbase6common5ObObj9is_urowidEv:8307 + 0: _ZNK9oceanbase6common9ObObjMeta9is_urowidEv:8307 + 0: 923 + 32.2: _ZNK9oceanbase6common5ObObj10get_urowidEv:0 + 2: 0 + 32.4: _ZNK9oceanbase6common12ObURowIDData17is_physical_rowidEv:0 + 2: 0 + 3: 0 + 56.1: _ZNK9oceanbase6common5ObObj12is_min_valueEv:0 + 2: 0 + 2.1: 0 + 2: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:0 + 0: 0 + 58: _ZN9oceanbase6common5ObObj13set_max_valueEv:0 + 2: _ZN9oceanbase6common5ObObj7set_extEl:0 + 4: 0 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:0 + 0: 0 + 60: _ZN9oceanbase6common5ObObj13set_min_valueEv:0 + 2: _ZN9oceanbase6common5ObObj7set_extEl:0 + 4: 0 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:0 + 0: 0 + 65.1: _ZNK9oceanbase6common5ObObj12is_max_valueEv:0 + 2: 0 + 2.1: 0 + 2: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:0 + 0: 0 + 67: _ZN9oceanbase6common5ObObj13set_min_valueEv:0 + 2: _ZN9oceanbase6common5ObObj7set_extEl:0 + 4: 0 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:0 + 0: 0 + 69: _ZN9oceanbase6common5ObObj13set_max_valueEv:0 + 2: _ZN9oceanbase6common5ObObj7set_extEl:0 + 4: 0 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:0 + 0: 0 + 74: _ZN9oceanbase6common16ObArenaAllocator5allocEl:97991 + 0: 899 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13alloc_alignedEll:94395 + 3: 899 + 6: 0 + 7: 899 + 8: 899 + 10: 899 + 11: 899 + 12: 899 + 13: 899 + 15.1: 0 + 16: 0 + 18: 0 + 20: 0 + 28: 0 + 35: 899 + 36: 899 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE15ensure_cur_pageEv:11687 + 2: 899 + 3: 0 + 5.1: 0 + 8: 0 + 9: 0 + 10: 0 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:0 + 2: 0 + 2.2: 0 + 2.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 9: _ZSt3maxIlERKT_S2_S2_:0 + 5: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 8: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:0 + 0: 0 + 7: _ZN9oceanbase6common16get_align_offsetEPvl:8990 + 3: 899 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:6293 + 0: 899 + 11: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:6293 + 7: 899 + 15.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE18is_normal_overflowEl:0 + 2: 0 + 16: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11extend_pageEl:0 + 4: 0 + 5: 0 + 8: 0 + 9: 0 + 10.1: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 12: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_tailEPNS3_4PageE:0 + 2: 0 + 3: 0 + 5: 0 + 23.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16lookup_next_pageEl:0 + 3.1: 0 + 4.1: 0 + 5: 0 + 5.1: 0 + 7: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page10reuse_sizeEv:0 + 0: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 32: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9alloc_bigEl:0 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 3: 0 + 5: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_headEPNS3_4PageE:0 + 4: 0 + 5: 0 + 7: 0 + 7: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:0 + 5.1: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:0 + 0: 0 + 79: _ZN9oceanbase6common10ObNewRangeC2Ev:29667 + 2: _ZN9oceanbase6common10ObNewRange5resetEv:29667 + 2: 899 + 3: _ZN9oceanbase6common12ObBorderFlag8set_dataEa:3596 + 0: 899 + 4: _ZN9oceanbase6common8ObRowkey6assignEPNS0_5ObObjEl:19778 + 2: 899 + 95: _ZN9oceanbase6common12ObBorderFlag19set_inclusive_startEv:3596 + 0: 899 + 97: _ZN9oceanbase6common12ObBorderFlag21unset_inclusive_startEv:0 + 0: 0 + 100: _ZN9oceanbase6common12ObBorderFlag17set_inclusive_endEv:3596 + 0: 899 + 102: _ZN9oceanbase6common12ObBorderFlag19unset_inclusive_endEv:0 + 0: 0 + 104: _ZN9oceanbase6common8ObRowkey6assignEPNS0_5ObObjEl:7192 + 2: 899 + 3: 899 + 105: _ZN9oceanbase6common8ObRowkey6assignEPNS0_5ObObjEl:7192 + 2: 899 + 3: 899 + 106: _ZNK9oceanbase6common8ObRowkeyeqERKS1_:165254 + 2: 0 + 2: _ZNK9oceanbase6common8ObRowkey7compareERKS1_:165254 + 3: 899 + 4: 0 + 7: 1000 + 8: 0 + 6: _ZNK9oceanbase6common8ObRowkey14compare_prefixERKS1_:124779 + 7: 899 + 10: 899 + 12: 899 + 13.1: 1038 + 13.3: 1038 + 15: 899 _ZNK9oceanbase6common5ObObj32check_collation_free_and_compareERKS1_:1 + 18: 0 + 6: _ZNK9oceanbase6common8ObRowkey10is_min_rowEv:28768 + 4: 899 + 4.1: 899 + 5: 0 + 9: 899 + 5: _ZNK9oceanbase6common5ObObj12is_min_valueEv:8990 + 2: 899 + 2.1: 0 + 7: _ZNK9oceanbase6common8ObRowkey10is_max_rowEv:22475 + 4: 0 + 4.1: 899 + 4.2: 0 + 5: 0 + 9: 899 + 5: _ZNK9oceanbase6common5ObObj12is_max_valueEv:8091 + 2: 899 + 2.1: 0 + 8: _ZNK9oceanbase6common8ObRowkey10is_min_rowEv:26970 + 4: 0 + 4.1: 899 + 4.2: 0 + 5: 0 + 9: 0 + 5: _ZNK9oceanbase6common5ObObj12is_min_valueEv:11687 + 2: 899 + 2.1: 0 + 2: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:2697 + 0: 899 + 9: _ZNK9oceanbase6common8ObRowkey10is_max_rowEv:1798 + 4: 0 + 4.1: 0 + 4.2: 0 + 5: 0 + 9: 899 + 5: _ZNK9oceanbase6common5ObObj12is_max_valueEv:0 + 2: 0 + 2.1: 0 + 12: _ZSt3minIlERKT_S2_S2_:8990 + 5: 899 + 107.1: _ZNK9oceanbase6common12ObBorderFlag15inclusive_startEv:0 + 0: 0 +_ZNK9oceanbase3sql12ObQueryRange16get_result_valueERNS_6common5ObObjERNS0_13ObExecContextEPNS2_12ObIAllocatorE:1342713:5645 + 1: 5600 + 2: 5600 + 3: 5600 + 4: 5600 + 9: 5600 + 9.2: 0 + 10: 5492 + 11: 0 + 12.1: 0 + 13.1: 5492 + 15.1: 5492 + 15.2: 5492 + 16: 0 + 17.1: 0 + 18.1: 5492 + 18.2: 0 + 19: 0 + 21.1: 5522 + 22: 5209 + 23: 5209 + 23.1: 5209 + 23.2: 5209 + 24: 0 + 25.1: 0 + 27: 5209 + 32.1: 0 + 33: 0 + 34.1: 0 + 35.1: 0 + 36.1: 0 + 39.1: 0 + 40.1: 0 + 43: 5301 + 3: _ZNK9oceanbase6common5ObObj10is_unknownEv:16800 + 0: _ZNK9oceanbase6common9ObObjMeta10is_unknownEv:16800 + 0: 5600 + 7: _ZN9oceanbase6common8ObNewRowC2Ev:89600 + 2: 5600 + 8: _ZN9oceanbase6common5ObObjC2Ev:67200 + 2: _ZN9oceanbase6common5ObObj5resetEv:67200 + 6: 5600 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:22400 + 0: 5600 + 10: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:38444 + 2: 5492 + 13.1: _ZNK9oceanbase6common5ObObj11get_unknownERl:49428 + 4: 5492 + 18.1: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql12ObQueryRange13ExprFinalInfoEE2atEl:60412 + 6: 5492 + 19.1: _ZNK9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE5countEv:0 + 0: 0 + 27.1: _ZNK9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE2atEl:109389 + 5: _ZNK9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE11get_obj_posEl:109389 + 4: 5209 + 5: 5209 + 4: _ZNK9oceanbase6common12ObIArrayWrapIPNS0_10ObObjParamEE2atEl:20836 + 6: 5209 + 28: _ZNK9oceanbase6common5ObObj12is_nop_valueEv:31254 + 2: 5209 + 37.1: _ZNK9oceanbase6common5ObObj12is_nop_valueEv:0 + 2: 0 +_ZNK9oceanbase5share6schema27ObMultiVersionSchemaService35get_tenant_refreshed_schema_versionEmRlb:1336540:15872 + 4: 15758 + 5: 15758 + 7: 15758 + 8: 6 + 9.1: 6 + 13: 15758 _ZNK9oceanbase5share6schema16ObSchemaStoreMap3getEm:16116 + 14: 6 + 15.1: 6 + 20: 15685 + 21: 15685 + 21.4: 15685 + 23: 15685 + 17: _ZNK9oceanbase5share6schema13ObSchemaStore21get_refreshed_versionEv:62740 + 0: 15685 +easy_connection_process_request.8d7a091449e6908669a41293537a4cf4:1332448:5944 + 1: 5069 + 6: 5069 + 10: 5367 + 12.1: 5367 + 13: 5239 + 15: 5239 + 19: 5239 _ZN9oceanbase4easy7processEP14easy_request_t:5236 + 21: 5294 + 23: 5294 + 32: 1 + 37: 1 + 39: 1 + 45: 1 + 45.1: 1 + 46: 1 + 49: 5285 + 52: 5285 easy_connection_write_socket:5311 + 58: 1 + 60: 1 + 61: 1 + 61.1: 1 + 68: 4796 + 9: easy_list_movelist:217967 + 2: 5069 + 3: 5069 + 4: 5069 + 5: 5069 + 6: 5069 + 7.1: 5069 + 9.1: 0 + 2: easy_list_empty:30414 + 2: 5069 + 14: easy_list_del:94302 + 2: 5239 + 3.1: 5239 + 2: __easy_list_del:36673 + 2: 5239 + 3: 5239 + 62: easy_list_del:21 + 2: 1 + 3.1: 1 + 2: __easy_list_del:7 + 2: 1 + 3: 1 +_ZN9oceanbase6common15ObKVGlobalCache3getElRKNS0_13ObIKVCacheKeyERPKNS0_15ObIKVCacheValueERPNS0_18ObKVMemBlockHandleE:1329558:13781 + 5: 12818 + 6: 12818 + 7: 12818 + 8: 132 + 9.1: 132 + 11: 12818 + 12: 14138 _ZN9oceanbase6common12ObKVCacheMap3getElRKNS0_13ObIKVCacheKeyERPKNS0_15ObIKVCacheValueERPNS0_18ObKVMemBlockHandleE:13059 + 14.1: 132 + 18: 14131 + 11: _ZN9oceanbase6common15ObKVGlobalCache6revertEPNS0_18ObKVMemBlockHandleE:38308 + 2: 12818 + 3: _ZN9oceanbase6common14ObKVCacheStore13de_handle_refEPNS0_18ObKVMemBlockHandleE:11748 + 3: 132 + 7.1: 132 + 8.1: 132 + 9.1: 132 + 10: 132 + 11.1: 132 +_ZN9oceanbase3sql8ObDASRefC2ERNS0_9ObEvalCtxERNS0_13ObExecContextE:1325594:5723 + 1: 5692 _ZN9oceanbase3sql13ObExecContext13get_allocatorEv:5899 + 2: 5803 + 3: 5803 _ZN9oceanbase3sql16ObDASTaskFactoryC1ERNS_6common12ObIAllocatorE:5822 + 4: 5308 + 5: 5308 + 6: 5308 + 8: 5308 + 10: 5308 + 11: 5692 + 12: 5308 + 12.4: 0 + 1.3: _ZN9oceanbase6common26ObWrapperAllocatorWithAttrC2ERNS0_12ObIAllocatorENS_3lib9ObMemAttrE:232120 + 1: 5803 + 1: _ZN9oceanbase6common18ObWrapperAllocatorC2EPNS0_12ObIAllocatorE:23212 + 0: 5803 + 4: _ZN9oceanbase6common10ObObjStoreIPNS_3sql12ObIDASTaskOpERNS0_12ObIAllocatorELb0EEC2ES6_:376868 + 1: 5308 + 3: _ZN9oceanbase3lib11this_workerEv:116776 + 2: _ZN9oceanbase3lib6Worker4selfEv:116776 + 3: 5308 + 4: 0 + 65511: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql12ObIDASTaskOpEEEEC2Ev:222936 + 2: 5308 + 3: 5308 + 4: 5308 + 65463: _ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql12ObIDASTaskOpEEEEC2Ev:95544 + 2: 5308 + 9: _ZN9oceanbase3sql15DASOpResultIter16WildDatumPtrInfoC2ERNS0_9ObEvalCtxE:37156 + 2: 5308 +_ZN9oceanbase3sql8ObDASRefC1ERNS0_9ObEvalCtxERNS0_13ObExecContextE:1325594:5723 + 1: 5692 _ZN9oceanbase3sql13ObExecContext13get_allocatorEv:5899 + 2: 5803 + 3: 5803 _ZN9oceanbase3sql16ObDASTaskFactoryC1ERNS_6common12ObIAllocatorE:5822 + 4: 5308 + 5: 5308 + 6: 5308 + 8: 5308 + 10: 5308 + 11: 5692 + 12: 5308 + 12.4: 0 + 1.3: _ZN9oceanbase6common26ObWrapperAllocatorWithAttrC2ERNS0_12ObIAllocatorENS_3lib9ObMemAttrE:232120 + 1: 5803 + 1: _ZN9oceanbase6common18ObWrapperAllocatorC2EPNS0_12ObIAllocatorE:23212 + 0: 5803 + 4: _ZN9oceanbase6common10ObObjStoreIPNS_3sql12ObIDASTaskOpERNS0_12ObIAllocatorELb0EEC2ES6_:376868 + 1: 5308 + 3: _ZN9oceanbase3lib11this_workerEv:116776 + 2: _ZN9oceanbase3lib6Worker4selfEv:116776 + 3: 5308 + 4: 0 + 65511: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql12ObIDASTaskOpEEEEC2Ev:222936 + 2: 5308 + 3: 5308 + 4: 5308 + 65463: _ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql12ObIDASTaskOpEEEEC2Ev:95544 + 2: 5308 + 9: _ZN9oceanbase3sql15DASOpResultIter16WildDatumPtrInfoC2ERNS0_9ObEvalCtxE:37156 + 2: 5308 +_ZN9oceanbase11transaction12ObLSTxCtxMgr10get_tx_ctxERKNS0_9ObTransIDEbRPNS0_14ObPartTransCtxE:1321318:1553 + 1: 1464 + 3: 1464 + 11: 0 + 11.1: 1448 + 3: _ZN9oceanbase6common8TCRWLock10RLockGuardC2ERS1_:254736 + 0: 1464 + 0: _ZN9oceanbase6common8TCRWLock6rdlockEl:248880 + 3.1: 0 + 4: 0 + 5: 0 + 3.2: _ZN9oceanbase6common8TCRWLock10try_rdlockEv:248880 + 3: 1464 + 5: 1464 + 8.1: 0 + 4: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:10248 + 0: 1464 + 4.1: _ZN9oceanbase6common5TCRef7inc_refEPi:184464 + 2: 1464 + 4.1: 1464 + 4.2: 0 + 6: 1464 + 6.1: 1464 + 10: 1464 + 2: _ZN9oceanbase6common8get_itidEv:40992 + 4: 1464 + 5: 0 + 6: 0 + 8: 0 + 11: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 8: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:0 + 0: 0 + 9: _ZN9oceanbase6common9LWaitCond6signalEv:0 + 2: 0 + 2.1: 0 + 3: 0 + 5: _ZN9oceanbase11transaction12ObLSTxCtxMgr11get_tx_ctx_ERKNS0_9ObTransIDEbRPNS0_14ObPartTransCtxE:763342 + 2: 1464 + 3: 1464 + 9: 1443 + 10.1: 0 + 11: 0 + 12.2: 1443 + 12.3: 1443 + 13.1: 0 + 14: 0 + 15.1: 1443 + 15.3: 1443 + 16: 0 + 18.1: 1418 + 19: 1418 + 20.1: 0 + 21: 0 + 29.1: 1418 __dynamic_cast:1518 + 29.3: 1436 + 32: 0 + 34.1: 0 + 36.1: 1436 _ZN9oceanbase6common14ObTscTimestamp12current_timeEv:1450 + 36.2: 1448 + 36.3: 0 + 36.6: 0 + 37.1: 0 + 41: 1448 + 7: _ZN9oceanbase11transaction11MonotonicTs12current_timeEv:1464 + 0: 1464 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:1530 + 12.1: _ZNK9oceanbase11transaction9ObTransID8is_validEv:7215 + 0: 1443 + 15.2: _ZNK9oceanbase11transaction12ObLSTxCtxMgr10is_master_Ev:17316 + 1: 1443 + 1: _ZNK9oceanbase11transaction12ObLSTxCtxMgr10is_master_El:11544 + 1: 1443 + 18: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE3getERKS2_RPS3_:492796 + 2: 1443 + 4: 1443 + 5: 0 + 6.1: 0 + 7.1: 1443 + 8: 0 + 9.1: 0 + 17.1: 1425 + 18.1: 1431 + 19: 1425 + 27: 0 + 30: 1425 + 32.1: 0 + 33: 1418 + 7.1: _ZNK9oceanbase11transaction9ObTransID8is_validEv:10101 + 0: 1443 + 14: _ZN9oceanbase6common8get_itidEv:40404 + 4: 1443 + 5: 0 + 6: 0 + 8: 0 + 14.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE16BucketRLockGuardC2ERKNS_6common10SpinRWLockEm:107235 + 1: 1443 + 3: 1425 + 4.1: 0 + 3: _ZN9oceanbase6common10SpinRWLock6rdlockEl:23088 + 0: 1443 _ZN9oceanbase6common7ObLatch6rdlockEjl:1521 + 6: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE15get_thread_nodeEv:35625 + 2: 1425 + 2.1: 0 + 2.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE4NodeC2Ev:0 + 0: 0 + 6.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE4Node13set_thread_idEl:27075 + 0: 1425 + 18: _ZN9oceanbase11transaction10ObTransCtx7containENS0_9ObTransIDE:5724 + 0: _ZNK9oceanbase11transaction9ObTransIDeqERKS1_:5724 + 1: 1431 + 30: _ZN9oceanbase11transaction15ObTransHashLinkINS0_10ObTransCtxEE7inc_refEi:19950 + 2: 1425 + 3.1: 0 + 5: 1425 + 32: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE16BucketRLockGuardD2Ev:102187 + 2: 1425 + 3: 1425 + 3.1: 1418 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase6common10SpinRWLock6unlockEv:4275 + 0: 1425 _ZN9oceanbase6common7ObLatch6unlockEPKj:1456 + 6: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE15get_thread_nodeEv:35450 + 2: 1418 + 2.1: 0 + 2.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE4NodeC2Ev:0 + 0: 0 + 6.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE4Node5resetEv:32614 + 0: 1418 + 36: _ZN9oceanbase6common14ObTscTimestamp12get_instanceEv:24412 + 2: 1436 + 2.1: 0 + 2.3: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common14ObTscTimestampC2Ev:0 + 1: 0 + 11.1: _ZN9oceanbase6common8TCRWLock10RLockGuardD2Ev:221544 + 0: 1448 + 0.2: 0 + 0: _ZN9oceanbase6common8TCRWLock8rdunlockEv:215752 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:7240 + 0: 1448 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPi:178104 + 2: 1448 + 4.1: 1448 + 4.2: 0 + 6: 1448 + 6.1: 1448 + 10: 1448 + 2: _ZN9oceanbase6common8get_itidEv:40544 + 4: 1448 + 5: 0 + 6: 0 + 8: 0 + 11: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:18824 + 2: 1448 + 2.1: 0 + 3: 0 +_ZN9oceanbase6common13ObPageManager11alloc_blockEmRKNS_3lib9ObMemAttrE:1307533:9521 + 1: 8838 + 4: 8838 + 5.1: 71 + 6.1: 8838 + 7: 71 + 8: 71 + 9: 71 + 10: 8838 + 11: 8838 + 12: 9377 _ZN9oceanbase3lib8BlockSet11alloc_blockEmRKNS0_9ObMemAttrE:9122 + 13: 9377 + 14.1: 71 + 20: 9377 + 23: 9377 + 4: _ZN9oceanbase6common8get_itidEv:215449 + 4: 8838 + 5: 71 + 6: 71 + 8: 71 +_ZN9oceanbase6common12ObLatchMutex6unlockEv:1290677:38478 + 1: 34881 + 2: 34881 + 3: 34881 + 5: 34881 + 6: 0 + 7.1: 0 + 8.1: 34881 + 12: 34889 + 9: _ZN9oceanbase3lib7ObFutex4wakeEl:8 + 6: _Z10futex_wakePVii:8 + 2: 0 +_ZN9oceanbase3sql14ObDASScanRtDef10init_pd_opERNS0_13ObExecContextERKNS0_14ObDASScanCtDefE:1289303:4333 + 2: 4324 + 3: 4324 + 4: 4324 + 5: 4206 + 6: 4417 _ZN9oceanbase3sql13ObExecContext13get_allocatorEv:4669 + 8: 4322 + 9: 4322 + 10: 0 + 11.1: 0 + 12.1: 4518 _ZN9oceanbase3sql18ObPushdownOperatorC1ERNS0_9ObEvalCtxERKNS0_18ObPushdownExprSpecE:4435 + 14.1: 4518 _ZN9oceanbase3sql18ObPushdownOperator28init_pushdown_storage_filterEv:4663 + 15.1: 0 + 18: 4266 + 6.1: _ZN9oceanbase7storage20ObRow2ExprsProjectorC2ERNS_6common12ObIAllocatorE:752874 + 1: 4206 + 0: _ZN9oceanbase7storage20ObRow2ExprsProjector10MapConvertILNS_6common17ObObjDatumMapTypeE2ELb1EEC2Ev:79914 + 0: 4206 + 2.5: _ZN9oceanbase6common9ObSEArrayINS_7storage20ObRow2ExprsProjector4ItemELl4ENS0_19ModulePageAllocatorELb0EECI2NS0_13ObSEArrayImplIS4_Ll4ES5_Lb0EEEElRKS5_:643518 + 0: 4206 + 0: _ZN9oceanbase6common13ObSEArrayImplINS_7storage20ObRow2ExprsProjector4ItemELl4ENS0_19ModulePageAllocatorELb0EEC2ElRKS5_:567810 + 2: 4206 + 5: 4206 + 6: 4206 + 8: 4206 + 17.1: 4206 + 2: _ZN9oceanbase6common8ObIArrayINS_7storage20ObRow2ExprsProjector4ItemEEC2EPS4_l:58884 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_7storage20ObRow2ExprsProjector4ItemEEC2EPS4_l:58884 + 0: 4206 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:197682 + 0: 4206 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:92532 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:92532 + 2: 4206 + 8: 4206 +_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandle8prefetchERKNS0_15ObTableReadInfoERKNS_12blocksstable13ObDatumRowkeyElRS1_:1273852:3262 + 5: 3184 + 6: 3184 + 7: 3184 + 7.2: 3184 + 8: 1 + 9.1: 1 + 10.1: 3184 + 14: 3184 + 15: 1040 + 15.1: 2120 + 16.1: 3149 + 16.2: 0 + 17: 0 + 22: 3057 + 25: 3057 + 26: 3057 + 27: 3057 + 28: 2308 + 33.1: 0 + 35: 1011 + 36: 1011 + 38.1: 2308 + 39: 1 + 40.1: 1 + 45: 2132 + 46: 2132 + 46.1: 0 + 46.2: 0 + 47.1: 1 + 48.1: 2165 + 48.2: 1076 + 49: 1 + 50.1: 1 + 51.1: 2156 + 52: 2156 _ZN9oceanbase7storage21ObIndexTreePrefetcher19prefetch_block_dataERNS_12blocksstable16ObMicroIndexInfoERNS0_22ObMicroBlockDataHandleEb:2192 + 53.1: 1 + 55: 1789 + 56: 1789 + 62: 2838 + 15.1: _ZN9oceanbase6common16ObFixedArrayImplINS_7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandleENS0_12ObIAllocatorEEixEl:14840 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandleEE2atEl:14840 + 6: 2120 + 25: _ZN9oceanbase6common16ObFixedArrayImplINS_7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandleENS0_12ObIAllocatorEEixEl:67254 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandleEE2atEl:67254 + 6: 3057 + 28: _ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandle18get_next_index_rowERKNS0_15ObTableReadInfoERKNS_12blocksstable13ObDatumRowkeyERNS6_16ObMicroIndexInfoE:141534 + 5: 3057 + 6.1: 0 + 7: 3231 _ZN9oceanbase12blocksstable22ObIndexBlockRowScanner8get_nextERNS0_16ObMicroIndexInfoE:3202 + 9.1: 0 + 10.1: 1049 + 11: 0 + 12.1: 0 + 16: 2279 + 17: _ZN9oceanbase12blocksstable16ObMicroIndexInfo13set_blockscanEv:0 + 2: 0 + 35: _ZNK9oceanbase7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandle15is_prefetch_endEv:2022 + 1: 1011 + 38.2: _ZNK9oceanbase7storage17ObAggregatedStore18can_agg_index_infoERKNS_12blocksstable16ObMicroIndexInfoE:60 + 2: 0 + 2.1: 0 + 2.2: 1 + 3: 1 + 2: _ZNK9oceanbase7storage15ObBlockRowStore14filter_is_nullEv:0 + 0: 0 + 0.1: 0 + 2.1: _ZNK9oceanbase7storage8ObAggRow17need_exclude_nullEv:0 + 0: 0 + 2.2: _ZNK9oceanbase7storage17ObAggregatedStore21can_batched_aggregateEv:7 + 0: 1 + 3: _ZNK9oceanbase12blocksstable16ObMicroIndexInfo13can_blockscanEv:17 + 2: 1 + 39: _ZN9oceanbase7storage17ObAggregatedStore15fill_index_infoERKNS_12blocksstable16ObMicroIndexInfoE:139 + 2: 1 + 3: 1 + 4: 0 + 5.1: 0 + 7.1: 1 + 7.2: 1 + 7.3: 1 + 7.5: 1 + 8: 1 + 9: 1 + 10.1: 1 + 14: 0 + 8: _ZN9oceanbase7storage8ObAggRow2atEl:11 + 0: 1 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_7storage9ObAggCellEE2atEl:7 + 6: 1 + 45: _ZNK9oceanbase12blocksstable16ObMicroIndexInfo9range_idxEv:19188 + 2: 2132 + 45.1: _ZN9oceanbase6common16ObFixedArrayImplINS_7storage19ObSSTableReadHandleENS0_12ObIAllocatorEEixEl:23452 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_7storage19ObSSTableReadHandleEE2atEl:23452 + 6: 2132 + 46: _ZNK9oceanbase12blocksstable16ObMicroIndexInfo6is_getEv:19188 + 2: 2132 + 46.1: _ZNK9oceanbase12blocksstable16ObMicroIndexInfo13is_macro_nodeEv:0 + 2: 0 + 3: _ZNK9oceanbase12blocksstable21ObIndexBlockRowHeader13is_macro_nodeEv:0 + 0: 0 + 48.2: _ZNK9oceanbase12blocksstable16ObMicroIndexInfo13is_leaf_blockEv:7532 + 2: 1076 + 3: _ZNK9oceanbase12blocksstable21ObIndexBlockRowHeader13is_leaf_blockEv:4304 + 0: 1076 + 56: _ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandle25current_block_read_handleEv:55459 + 2: 1789 + 3: 1789 +_ZN9oceanbase8memtable18ObTransCallbackMgr6appendEPNS0_16ObITransCallbackE:1267647:1704 + 1: 1594 + 2: 1594 + 3: 1594 + 4: 1594 + 5: 1594 + 7: 1800 + 8.1: 0 + 10: 1800 + 11: 0 + 12: 0 + 13: 0 + 15: 0 + 17: 0 + 18.1: 0 + 20.1: 0 + 21: 0 + 23: 0 + 26: 0 + 26.1: 0 + 28: 0 + 29: 0 + 33: 1800 + 37: 1689 + 38: 1841 + 39.1: 0 + 40: 0 + 41: 0 + 46: 1841 + 3: _ZN9oceanbase6common8get_itidEv:44632 + 4: 1594 + 5: 0 + 6: 0 + 8: 0 + 7: _ZN9oceanbase8memtable18ObTransCallbackMgr13before_appendEPNS0_16ObITransCallbackE:583357 + 2: 1594 + 3: 1594 _ZN9oceanbase11transaction9tablelock17ObOBJLockCallback13get_data_sizeEv:710 + 6: 1651 + 7: 1685 + 9: 0 + 10: 1685 + 11.1: 0 + 14: 0 + 3: _ZN9oceanbase8memtable17ObMvccRowCallback13get_data_sizeEv:3600 + 2: 900 + 5: _ZN9oceanbase8memtable18ObTransCallbackMgr20inc_pending_log_sizeEl:102362 + 2: 1651 + 3: 1651 + 4: 1651 + 5: 1651 + 6: 1651 + 8: 0 + 9: 0 + 10.1: 0 + 11.1: 0 + 12.1: 0 + 14.1: 0 + 19: 0 + 6: _ZNK9oceanbase8memtable17ObMvccRowCallback18is_logging_blockedEv:18900 + 2: 900 + 3: 900 + 4.1: 0 + 6: 0 + 2: _ZN9oceanbase8memtable10ObMemtable19get_logging_blockedEv:7200 + 0: 900 + 6.1: _ZN9oceanbase8memtable18ObTransCallbackMgr30try_merge_multi_callback_listsEllb:154823 + 2: 1675 + 3: 1675 + 4: 1675 + 5.1: 1839 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:1815 + 5.2: 0 + 6: 1839 + 6.1: 1897 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:1923 + 7: 1897 + 7.1: 1897 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:1905 + 8: 1685 + 10: 0 + 8: _ZN9oceanbase8memtable18ObTransCallbackMgr20inc_flushed_log_sizeEl:0 + 0: 0 + 10: _ZN9oceanbase8memtable16ObITransCallback16before_append_cbEb:114969 + 2: 1685 + 3: 1685 + 4: 1685 + 4: _ZN9oceanbase8memtable17ObMvccRowCallback13before_appendEb:52872 + 2: 945 + 4: 945 + 5: 0 + 6.1: 0 + 7.1: 945 + 12: 0 + 8: _ZN9oceanbase8memtable17ObMvccRowCallback20inc_unsubmitted_cnt_Ev:8905 + 3: 945 _ZN9oceanbase8memtable10ObMemtable19inc_unsubmitted_cntEv:947 + 4: 995 _ZN9oceanbase8memtable13ObMemtableCtx19inc_unsubmitted_cntEv:1058 + 9: _ZN9oceanbase8memtable17ObMvccRowCallback17inc_unsynced_cnt_Ev:18452 + 2: 1046 + 3: 1046 _ZN9oceanbase8memtable10ObMemtable16inc_unsynced_cntEv:1060 + 4: 999 _ZN9oceanbase8memtable13ObMemtableCtx16inc_unsynced_cntEv:1079 + 15: _ZN9oceanbase8memtable24ObMemtableCtxCbAllocator5allocEl:0 + 3: 0 + 4.1: 0 + 7.1: 0 + 8: 0 + 30: _ZN9oceanbase8memtable18ObTransCallbackMgr25add_slave_list_append_cntEl:0 + 1: 0 + 33: _ZN9oceanbase8memtable16ObTxCallbackList15append_callbackEPNS0_16ObITransCallbackE:236556 + 3: 1800 + 6: 1700 + 3: _ZN9oceanbase8memtable16ObTxCallbackList13SpinLockGuardC2ERNS_6common7ObLatchE:110158 + 2: 1851 + 6: 1851 _ZN9oceanbase6common7ObLatch6wrlockEjlPKj:1852 + 6.1: 1700 + 7.1: 0 + 10.3: 0 + 1: _ZN9oceanbase6common17ObSimpleTimeGuardC2El:33275 + 2: 1851 + 3: 1851 + 4: 0 + 5: 0 + 2: _ZN9oceanbase3lib20is_trace_log_enabledEv:16616 + 2: 1800 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:1899 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:14808 + 2: 1851 + 4: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 9: _ZN9oceanbase6common17ObSimpleTimeGuard5clickEv:17000 + 2: 1700 + 3: 0 + 4.1: 0 + 3: _ZNK9oceanbase6common17ObSimpleTimeGuard8get_diffEv:0 + 2.1: 0 + 2.1: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 5: _ZN9oceanbase8memtable16ObTxCallbackList8get_tailEv:6800 + 0: _ZNK9oceanbase8memtable16ObITransCallback8get_prevEv:6800 + 0: 1700 + 5.1: _ZN9oceanbase8memtable16ObITransCallback6appendEPS1_:66300 + 3: 1700 + 6: _ZN9oceanbase8memtable16ObITransCallback8set_prevEPS1_:11900 + 0: 1700 + 7: _ZNK9oceanbase8memtable16ObITransCallback8get_nextEv:6800 + 0: 1700 + 7.1: _ZN9oceanbase8memtable16ObITransCallback8set_nextEPS1_:6800 + 0: 1700 + 8: _ZNK9oceanbase8memtable16ObITransCallback8get_nextEv:6800 + 0: 1700 + 8.1: _ZN9oceanbase8memtable16ObITransCallback8set_prevEPS1_:11900 + 0: 1700 + 9: _ZN9oceanbase8memtable16ObITransCallback8set_nextEPS1_:6800 + 0: 1700 + 10.1: _ZN9oceanbase8memtable16ObTxCallbackList13SpinLockGuardD2Ev:28798 + 2: 1700 _ZN9oceanbase6common7ObLatch6unlockEPKj:1843 + 3.1: 0 + 3.2: 0 + 3: _ZN9oceanbase6common17ObSimpleTimeGuardD2Ev:16890 + 2: 1689 + 3.1: 0 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZNK9oceanbase6common17ObSimpleTimeGuard8get_diffEv:0 + 2.1: 0 + 2.1: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 34: _ZN9oceanbase8memtable18ObTransCallbackMgr24add_main_list_append_cntEl:11823 + 1: 1689 + 38: _ZN9oceanbase8memtable18ObTransCallbackMgr12after_appendEPNS0_16ObITransCallbackEi:127214 + 2: 1689 + 4: 1689 + 5: 0 + 6: 0 + 7: 0 + 12: 1689 + 13.1: 0 + 16: 0 + 8: _ZN9oceanbase8memtable18ObTransCallbackMgr20inc_flushed_log_sizeEl:0 + 0: 0 + 12: _ZN9oceanbase8memtable16ObITransCallback15after_append_cbEbi:62147 + 4: 0 + 6: 1689 + 6: _ZN9oceanbase8memtable17ObMvccRowCallback12after_appendEbi:22129 + 2: 1049 + 4: 1049 + 5: 0 + 6.1: 0 + 7.1: 1049 + 14: 0 + 9: _ZN9oceanbase8memtable17ObMvccRowCallback20dec_unsubmitted_cnt_Ev:36 + 5: 2 + 6: 2 + 10: _ZN9oceanbase8memtable17ObMvccRowCallback17dec_unsynced_cnt_Ev:54 + 4: 2 + 5: 2 + 6: 2 +_ZN9oceanbase3omt8ObTenant12recv_requestERNS_3rpc9ObRequestE:1263555:5166 + 1: 4637 + 2: 4637 + 3: 4637 + 4: 4637 + 5: 307 + 6.1: 307 + 7.1: 4637 + 9: 307 + 10: 307 + 11: 307 + 13.1: 307 + 14: 307 + 15.1: 307 + 15.2: 307 + 16.1: 307 + 18: 307 + 19: 307 + 20: 307 + 20.2: 307 + 20.3: 307 + 21.1: 307 + 33: 4115 _ZN9oceanbase3rpc9ObRequest15set_trace_pointEi:4516 + 34: 4501 + 38: 307 + 39: 307 + 40: 307 + 41.1: 307 + 42.1: 307 + 44: 307 + 45.1: 307 + 52: 307 + 53.1: 307 + 54: 307 + 54.2: 307 + 55: 307 + 55.1: 307 + 55.3: 307 + 55.4: 307 + 56.1: 307 + 59.1: 307 + 60.1: 307 + 61: 307 + 61.2: 307 + 62.1: 307 + 64.1: 307 + 65.1: 307 + 66: 307 + 66.2: 307 + 67.1: 307 + 70: 307 + 71.1: 307 + 73.1: 307 + 74: 307 + 74.2: 307 + 75.1: 307 + 78: 307 + 79.1: 307 + 84: 4501 + 85.1: 0 + 86: 0 + 86.2: 0 + 87.1: 307 + 90.1: 4543 + 91: 4543 + 91.2: 5535 _ZN9oceanbase6common16ObPriorityQueue2ILi1ELi2ELi3EE4pushEPNS0_6ObLinkEi:4404 + 92.1: 307 + 97.1: 307 + 98: 307 + 98.2: 307 + 99.1: 307 + 102.1: 307 + 103: 307 + 103.2: 307 + 104.1: 307 + 107: 307 + 108.1: 307 + 112: 307 + 113: 5228 _ZN9oceanbase6common20ObTenantStatEstGuardC2Em:5279 + 114.2: 5594 + 114.3: 164 + 114.4: 164 + 114.5: 164 + 114.6: 164 + 114.10: 164 + 114.11: 164 + 114.12: 164 + 115: 5769 _ZN9oceanbase6common20ObTenantStatEstGuardD2Ev:5690 + 115.1: 307 + 117: 6102 + 9: _ZNK9oceanbase3rpc9ObRequest12get_group_idEv:2456 + 0: 307 + 12: _ZN9oceanbase3omt19ObResourceGroupNodeC2Ei:18420 + 2: 307 + 1: _ZN9oceanbase3omt19ObResourceGroupNode9calc_hashEi:15043 + 2: 307 + 2: _ZN9oceanbase6common10murmurhashEPKvim:12587 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:12587 + 37: 307 + 38: 307 + 41: 307 + 42: 307 + 43: 307 + 1.1: _ZN9oceanbase6common10SpHashNodeC2Em:2149 + 0: 307 + 0: _ZN9oceanbase6common6ObLinkC2Ev:921 + 0: 307 + 13: _ZN9oceanbase6common10FixedHash2INS_3omt19ObResourceGroupNodeEE3getEPS3_RS5_:7982 + 0.1: 307 + 0: _ZN9oceanbase6common10FixedHash2INS_3omt19ObResourceGroupNodeEE7get_preEPS3_:6447 + 0.1: _ZN9oceanbase6common10FixedHash2INS_3omt19ObResourceGroupNodeEE7get_preEm:6447 + 0: 307 + 19: _ZN9oceanbase3omt15ObResourceGroup19atomic_inc_recv_cntEv:3991 + 0.1: 307 + 34: _ZNK9oceanbase3rpc9ObRequest8get_typeEv:36008 + 0: 4501 + 37: _ZNK9oceanbase3rpc9ObRequest10get_packetEv:2456 + 2: 307 + 38: _ZNK9oceanbase5obrpc11ObRpcPacket17get_request_levelEv:2149 + 2: 307 + 38.1: _ZN9oceanbase6common3minEil:3991 + 2: 307 + 43: _ZN9oceanbase3omt16MultiLevelReqCnt10atomic_incEi:2763 + 5.1: 307 + 52: _Z12is_high_prioRKN9oceanbase5obrpc11ObRpcPacketE:1842 + 2: 307 + 2: _ZNK9oceanbase5obrpc11ObRpcPacket12get_priorityEv:921 + 2: 307 + 55: _ZN9oceanbase6common14ObTscTimestamp12get_instanceEv:31314 + 2: 307 + 2.1: 307 + 2.3: 307 + 2.6: 307 + 2.2: _ZN9oceanbase6common14ObTscTimestampC2Ev:7982 + 1: 307 + 59.1: _ZNK9oceanbase3rpc9ObRequest16is_retry_on_lockEv:1842 + 0: 307 + 84: _ZNK9oceanbase3rpc9ObRequest16is_retry_on_lockEv:27006 + 0: 4501 + 114.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:28545 + 2: 5513 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:5596 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:22376 + 2: 5594 +easy_connection_request_done:1246615:5092 + 1: 5027 + 4: 5027 + 5: 5027 + 8: 5027 + 9: 5027 + 11.1: 5027 + 11.2: 4 + 11.3: 4 + 11.4: 4 + 11.7: 4 + 11.8: 4 + 17: 5027 + 18: 5085 + 19: 5085 _ZN9oceanbase4easy6encodeEP14easy_request_tPv:5136 + 23: 4748 easy_request_set_cleanup:4887 + 24: 5075 + 25: 4 + 26: 4 + 27: 4 + 28: 4 + 33: 4 + 33.1: 4581 + 35.1: 4581 + 35.2: 4 + 35.3: 4 + 35.4: 4 + 35.7: 4 + 35.8: 4 + 40: 4581 + 42: 4581 + 43: 4581 + 46: 4581 + 46.1: 4581 + 47: 4 + 48: 4 + 54: 4605 + 18: current_time:102610 + 3: 5341 + 4.2: 4 + 4.3: 4 + 4.4: 4 + 6: 5085 + 26: easy_list_add_tail:100 + 2: 4 + 2: __easy_list_add:72 + 3: 4 + 4: 4 + 5: 4 + 6: 4 +_ZN9oceanbase11transaction11ObTxELRUtil28check_and_update_tx_elr_infoERNS0_8ObTxDescEb:1246136:5115 + 1: 4797 + 3: 4797 + 3.1: 16 + 8: 4990 + 4: _ZN9oceanbase11transaction8ObTxDesc11set_can_elrEb:192 + 0: 16 + 6: _ZN9oceanbase11transaction11ObTxELRUtil26refresh_elr_tenant_config_Ev:1046212 + 2: 4797 + 4: 4797 + 5: 4789 _ZN9oceanbase3omt17ObTenantConfigMgr12get_instanceEv:5092 + 5.4: 4742 _ZNK9oceanbase3omt17ObTenantConfigMgr27get_tenant_config_with_lockEmmm:4738 + 5.5: 4412 _ZN9oceanbase3omt19ObTenantConfigGuardC1EPNS0_14ObTenantConfigE:4429 + 6.1: 3947 + 7.2: 3947 + 9.1: 3947 _ZN9oceanbase6common14ObTscTimestamp12current_timeEv:3988 + 9.2: 4231 + 9.3: 16 + 9.6: 16 + 10.1: 16 + 12: 4231 _ZN9oceanbase3omt19ObTenantConfigGuardD1Ev:4298 + 12.1: 16 + 2: _ZN9oceanbase6common16ObClockGenerator8getClockEv:81641 + 4: 4797 + 5.1: 4 + 8: 4797 + 6: _ZN9oceanbase6common16ObClockGenerator6get_usEv:28 + 2: 4 + 5.1: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:91122 + 2: 4742 + 2.1: 16 + 2.2: 16 + 5.2: _ZNK9oceanbase5share12ObTenantBase2idEv:71130 + 0: 4742 + 5.3: _ZN9oceanbase3omt17ObTenantConfigMgr26default_fallback_tenant_idEv:314695 + 4: 4742 + 4.1: 4741 + 2: _ZN9oceanbase5share5GuardILNS0_12ObEntityTypeE0EE13current_guardEv:134520 + 3: 4742 + 8: 16 + 10: 16 + 11: 16 + 12: 16 + 8.1: _ZN9oceanbase5share5GuardILNS0_12ObEntityTypeE0EEC2ERNS0_13ObTenantSpaceE:512 + 1: 16 + 3: 16 + 11: _ZL12abort_unlessb:256 + 5: 16 + 6: 16 + 2.1: _ZN9oceanbase5share5GuardILNS0_12ObEntityTypeE0EEptEv:18968 + 0: 4742 + 2.2: _ZNK9oceanbase5share13ObTenantSpace10get_tenantEv:42678 + 0: 4742 + 4.1: _ZNK9oceanbase5share12ObTenantBase2idEv:33187 + 0: 4741 + 6: _ZN9oceanbase3omt19ObTenantConfigGuard8is_validEv:27629 + 0: 3947 + 9: _ZN9oceanbase6common14ObTscTimestamp12get_instanceEv:68475 + 2: 3947 + 2.1: 16 + 2.3: 16 + 2.6: 16 + 2.2: _ZN9oceanbase6common14ObTscTimestampC2Ev:432 + 1: 16 +_ZN9oceanbase6common18ObWrapperAllocator4freeEPv:1243957:42315 + 1: 40650 + 2: 40650 + 3: 40650 _ZN9oceanbase6common18ObWrapperAllocator4freeEPv:18513 + 5: 23181 +_ZNK9oceanbase3sql15ObTableLocation20calculate_tablet_idsERNS0_13ObExecContextERKNS_6common9Ob2DArrayINS4_10ObObjParamELi2079744ENS4_18ObWrapperAllocatorELb0ENS4_9ObSEArrayIPS6_Ll1ES7_Lb0EEEEERNS4_8ObIArrayINS4_10ObTabletIDEEERNSE_ImEERKNS4_20ObDataTypeCastParamsE:1241881:4412 + 5: 4262 + 6: 4262 + 8: 4262 + 9: 0 + 10.1: 0 + 11.1: 4262 + 13: 0 + 13.3: 0 + 14: 0 + 15.1: 4262 + 15.2: 4262 _ZN9oceanbase3sql8ObDASCtx21get_das_tablet_mapperEmRNS0_17ObDASTabletMapperEPKNS_6common12ObIArrayWrapImEE:4432 + 17.1: 0 + 19: 4094 + 20: 0 + 21: 0 + 22: 0 + 23.1: 0 + 28: 0 + 28.1: 0 + 29.1: 0 + 30.1: 0 + 30.2: 0 + 31.1: 0 + 33: 0 + 33.1: 0 + 33.2: 0 + 33.3: 0 + 34.1: 0 + 35.1: 0 + 37.1: 4094 + 38: 0 + 39.1: 0 + 42: 4094 + 43.2: 4241 _ZN9oceanbase3sql17ObDASTabletMapper27get_non_partition_tablet_idERNS_6common8ObIArrayINS2_10ObTabletIDEEERNS3_ImEE:4163 + 43.4: 0 + 44.1: 0 + 45: 0 + 50.1: 0 + 55: 0 + 55.1: 0 + 60.1: 0 + 61.1: 0 + 61.2: 0 + 66.1: 0 + 68: 0 + 68.1: 0 + 68.2: 0 + 68.3: 0 + 71: 0 + 72: 0 + 72.1: 4241 + 73: 4241 + 73.1: 0 + 74: 0 + 75.1: 0 + 75.11: 0 + 75.14: 0 + 78: 4241 + 78.1: 4241 + 79: 0 + 80.1: 0 + 81: 0 + 83: 0 + 83.1: 4241 + 84: 0 + 86: 0 + 86.1: 0 + 89.1: 0 + 90.1: 0 + 90.2: 0 + 91.1: 0 + 92.1: 0 + 92.2: 0 + 93.1: 0 + 98.1: 4241 _ZZNK9oceanbase3sql15ObTableLocation20calculate_tablet_idsERNS0_13ObExecContextERKNS_6common9Ob2DArrayINS4_10ObObjParamELi2079744ENS4_18ObWrapperAllocatorELb0ENS4_9ObSEArrayIPS6_Ll1ES7_Lb0EEEEERNS4_8ObIArrayINS4_10ObTabletIDEEERNSE_ImEERKNS4_20ObDataTypeCastParamsEENK6$_1105clEPKc.c0f3ebb58adf60d04e27c69da5b90c06:4343 + 99.1: 4408 + 99.2: 0 + 99.4: 0 + 99.5: 0 + 99.11: 0 + 100: 4408 + 7: _ZN9oceanbase3sql17ObDASTabletMapperC2Ev:80978 + 2: 4262 + 13: _ZN9oceanbase6common10ObTabletIDC2Em:0 + 0: 0 + 15.1: _ZN9oceanbase3sql13ObExecContext11get_das_ctxEv:29834 + 0: 4262 + 19: _ZNK9oceanbase3sql15ObTableLocation27is_simple_insert_or_replaceEv:28658 + 0: 4094 + 26: _ZN9oceanbase6common9ObSEArrayINS0_10ObTabletIDELl4ENS0_19ModulePageAllocatorELb0EEC2Ev:0 + 0.1: 0 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl4ENS0_19ModulePageAllocatorELb0EEC2ElRKS3_:0 + 2: 0 + 5: 0 + 6: 0 + 8: 0 + 17.1: 0 + 2: _ZN9oceanbase6common8ObIArrayINS0_10ObTabletIDEEC2EPS2_l:0 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_10ObTabletIDEEC2EPS2_l:0 + 0: 0 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:0 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:0 + 2: 0 + 8: 0 + 27: _ZN9oceanbase6common9ObSEArrayImLl4ENS0_19ModulePageAllocatorELb0EEC2Ev:0 + 0.1: 0 + 0.5: _ZN9oceanbase6common13ObSEArrayImplImLl4ENS0_19ModulePageAllocatorELb0EEC2ElRKS2_:0 + 2: 0 + 5: 0 + 6: 0 + 8: 0 + 17.1: 0 + 2: _ZN9oceanbase6common8ObIArrayImEC2EPml:0 + 0: _ZN9oceanbase6common12ObIArrayWrapImEC2EPml:0 + 0: 0 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:0 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:0 + 2: 0 + 8: 0 + 53: _ZN9oceanbase6common9ObSEArrayINS0_10ObTabletIDELl1ENS0_19ModulePageAllocatorELb0EEC2Ev:0 + 0.1: 0 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl1ENS0_19ModulePageAllocatorELb0EEC2ElRKS3_:0 + 2: 0 + 5: 0 + 6: 0 + 8: 0 + 17.1: 0 + 2: _ZN9oceanbase6common8ObIArrayINS0_10ObTabletIDEEC2EPS2_l:0 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_10ObTabletIDEEC2EPS2_l:0 + 0: 0 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:0 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:0 + 2: 0 + 8: 0 + 54: _ZN9oceanbase6common9ObSEArrayImLl1ENS0_19ModulePageAllocatorELb0EEC2Ev:0 + 0.1: 0 + 0.5: _ZN9oceanbase6common13ObSEArrayImplImLl1ENS0_19ModulePageAllocatorELb0EEC2ElRKS2_:0 + 2: 0 + 5: 0 + 6: 0 + 8: 0 + 17.1: 0 + 2: _ZN9oceanbase6common8ObIArrayImEC2EPml:0 + 0: _ZN9oceanbase6common12ObIArrayWrapImEC2EPml:0 + 0: 0 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:0 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:0 + 2: 0 + 8: 0 + 75.1: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 83.1: _ZNK9oceanbase6common12ObIArrayWrapImE5emptyEv:21205 + 0: 4241 + 85: _ZN9oceanbase6common10ObTabletIDC2Em:0 + 0: 0 + 99.1: _ZN9oceanbase3lib20is_trace_log_enabledEv:35407 + 2: 4551 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:4641 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:30856 + 2: 4408 + 99.4: _ZN9oceanbase3lib20is_trace_log_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:0 + 2: 0 + 99.12: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:0 + 0: 0 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 +_ZN9oceanbase4easy6encodeEP14easy_request_tPv:1240722:5136 + 1: 5131 + 5: 5131 + 5.1: 5131 + 5.2: 5131 + 6.1: 5 + 8: 5131 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:5491 + 10: 4982 + 11: 4982 + 12: 5311 _ZN9oceanbase7obmysql14ObMySQLHandler6encodeEP14easy_request_tPv:5009 + 13: 5311 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:5364 + 14: 5082 + 15: 5082 + 22: 5 + 23: 5 + 25: 4652 + 26: 4652 + 27.1: 5 + 30: 4652 + 10: _ZN9oceanbase4easyL14packet_handlerEP17easy_connection_t:159424 + 3: 4982 + 3.1: 4982 + 4: 4982 + 17: _Z22TC_REACH_TIME_INTERVALl:276434 + 4.1: 5082 _ZN9oceanbase6common14ObTscTimestamp12current_timeEv:5086 + 5: 4652 + 6: 5 + 4: _ZN9oceanbase6common14ObTscTimestamp12get_instanceEv:86819 + 2: 5082 + 2.1: 5 + 2.3: 5 + 2.6: 5 + 2.2: _ZN9oceanbase6common14ObTscTimestampC2Ev:130 + 1: 5 +_ZN9oceanbase8observer8ObMPBase19setup_packet_senderEv:1235180:5493 + 1: 5100 + 2: 5100 + 3: 5107 + 4.1: 0 + 5: 0 + 7: 5107 + 3: _ZN9oceanbase8observer16ObMPPacketSender4initEPNS_3rpc9ObRequestE:995340 + 3: 5100 + 10: 5100 + 6: _ZNK9oceanbase3rpc9ObRequest10get_packetEv:35700 + 2: 5100 + 6.1: _ZNK9oceanbase7obmysql13ObMySQLPacket7get_seqEv:20400 + 2: 5100 + 9: _ZNK9oceanbase3rpc9ObRequest21get_receive_timestampEv:35700 + 2: 5100 + 10: _ZN9oceanbase8observer16ObMPPacketSender7do_initEPNS_3rpc9ObRequestEhbbl:776040 + 6: 5100 + 7: 5100 + 8: 5107 + 9: 5107 + 10: 0 + 11.1: 0 + 15: 5107 + 16: 5107 + 17: 5107 + 18: 5107 + 19: 5107 + 21: 5107 + 24: 5107 + 25: 5107 + 26: 5107 + 30: 5107 + 32: 0 + 33: 0 + 34: 0 + 35: 0 + 36: 0 + 38: 0 + 39: 0 + 40: 0 + 42: 5107 + 44: 0 + 8: _ZNK9oceanbase8observer16ObMPPacketSender8get_connEv:107100 + 5.1: 5100 + 6: 5100 _ZN9oceanbase3rpc20ObSqlRequestOperator15get_sql_sessionEPNS0_9ObRequestE:5278 + 23: _ZN9oceanbase7obmysql20ObCompressionContext5resetEv:66391 + 0: 5107 + 24: _ZN9oceanbase8observer14ObSMConnection17get_compress_typeEv:76605 + 3: 5107 + 3.1: 5107 + 4: 0 + 5: 0 + 10.1: 0 + 16.1: 0 + 22.1: 0 + 3: _ZN9oceanbase8observer14ObSMConnection18is_in_authed_phaseEv:20428 + 0: 5107 + 29: _ZNK9oceanbase8observer14ObSMConnection20get_cs_protocol_typeEv:20428 + 3: _ZNK9oceanbase7obmysql22ObProxyCapabilityFlags25is_ob_protocol_v2_supportEv:20428 + 0: 5107 + 31: _ZN9oceanbase7obmysql16ObProto20Context5resetEv:0 + 0: 0 + 40: _ZNK9oceanbase7obmysql22ObProxyCapabilityFlags25is_new_extra_info_supportEv:0 + 1: 0 + 42: _ZNK9oceanbase3rpc9ObRequest16get_nio_protocolEv:30642 + 0: 5107 +_ZN9oceanbase8memtable17ObMultiSourceData26get_multi_source_data_unitEPNS0_22ObIMultiSourceDataUnitEPNS_6common12ObIAllocatorE:1231218:11968 + 1: 11564 + 2: 11564 + 3: 13167 _ZNK9oceanbase7storage19ObTabletBindingInfo4typeEv:7058 _ZNK9oceanbase7storage29ObTabletTxMultiSourceDataUnit4typeEv:5386 + 4: 13167 + 5: 13167 + 7: 13167 + 7.2: 13167 + 8: 0 + 9.1: 0 + 10.1: 13167 + 16.2: 0 + 17: 0 + 18: 0 + 25.1: 12833 + 30: 0 + 31.1: 0 + 32.1: 0 + 35: 13124 + 16: _ZN9oceanbase6common7ObDListINS_8memtable22ObIMultiSourceDataUnitEE8get_lastEv:0 + 0: 0 + 17: _ZNK9oceanbase8memtable22ObIMultiSourceDataUnit14is_sync_finishEv:0 + 0: 0 +_ZN9oceanbase5share6schema16is_normal_schemaENS1_12ObSchemaTypeE:1229450:9611 + 1: 9175 + 2: 9175 + 2.1: 9175 +_ZN9oceanbase12blocksstable18ObMacroBlockHandle5resetEv:1221678:50741 + 1: 49771 + 2: 49771 _ZN9oceanbase6common10ObIOHandle5resetEv:50851 + 3: 52260 _ZN9oceanbase12blocksstable18ObMacroBlockHandle14reset_macro_idEv:52617 +_ZN9oceanbase3sql8ObDASRef5resetEv:1213904:5855 + 1: 5365 + 4: 5526 + 5: 5526 + 7: 5526 + 9: 1025 + 11: 5583 + 2: _ZN9oceanbase3sql16ObDASTaskFactory7cleanupEv:659895 + 2: 5365 + 3.1: 4551 + 6.1: 4297 + 7: 4297 + 8: 4297 _ZN9oceanbase3sql11ObDASScanOpD1Ev:4400 + 14: 5363 + 15.1: 2 + 18.1: 2 + 19: 2 + 20: 2 + 26: 5363 + 27.1: 2 + 30.1: 2 + 31: 2 + 32: 2 + 38: 5363 + 39.1: 2 + 42.1: 2 + 43: 2 + 44: 2 + 50: 5363 + 51.1: 2 + 54.1: 2 + 55: 2 + 56: 2 + 2: _ZNK9oceanbase6common10ObObjStoreIPNS_3sql12ObIDASTaskOpERNS0_12ObIAllocatorELb0EE5emptyEv:37555 + 0: 5365 + 12: _ZN9oceanbase6common10ObObjStoreIPNS_3sql12ObIDASTaskOpERNS0_12ObIAllocatorELb0EE5clearEv:108850 + 0: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql12ObIDASTaskOpEEEE5clearEv:108850 + 2: 4354 + 3: 4354 + 4: 4354 + 14: _ZNK9oceanbase6common10ObObjStoreIPNS_3sql16ObIDASTaskResultERNS0_12ObIAllocatorELb0EE5emptyEv:42904 + 0: 5363 + 24: _ZN9oceanbase6common10ObObjStoreIPNS_3sql16ObIDASTaskResultERNS0_12ObIAllocatorELb0EE5clearEv:60 + 0: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql16ObIDASTaskResultEEEE5clearEv:60 + 2: 2 + 3: 2 + 4: 2 + 26: _ZNK9oceanbase6common10ObObjStoreIPNS_3sql14ObDASExtraDataERNS0_12ObIAllocatorELb0EE5emptyEv:42904 + 0: 5363 + 36: _ZN9oceanbase6common10ObObjStoreIPNS_3sql14ObDASExtraDataERNS0_12ObIAllocatorELb0EE5clearEv:60 + 0: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql14ObDASExtraDataEEEE5clearEv:60 + 2: 2 + 3: 2 + 4: 2 + 38: _ZNK9oceanbase6common10ObObjStoreIPNS_3sql14ObDASBaseCtDefERNS0_12ObIAllocatorELb0EE5emptyEv:42904 + 0: 5363 + 48: _ZN9oceanbase6common10ObObjStoreIPNS_3sql14ObDASBaseCtDefERNS0_12ObIAllocatorELb0EE5clearEv:60 + 0: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql14ObDASBaseCtDefEEEE5clearEv:60 + 2: 2 + 3: 2 + 4: 2 + 50: _ZNK9oceanbase6common10ObObjStoreIPNS_3sql14ObDASBaseRtDefERNS0_12ObIAllocatorELb0EE5emptyEv:42904 + 0: 5363 + 60: _ZN9oceanbase6common10ObObjStoreIPNS_3sql14ObDASBaseRtDefERNS0_12ObIAllocatorELb0EE5clearEv:60 + 0: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql14ObDASBaseRtDefEEEE5clearEv:60 + 2: 2 + 3: 2 + 4: 2 + 3: _ZN9oceanbase6common10ObObjStoreIPNS_3sql12ObIDASTaskOpERNS0_12ObIAllocatorELb0EE7destroyEv:86380 + 2.1: 7 + 4: 2 + 5: 2 + 2: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql12ObIDASTaskOpEEEE12remove_firstEv:86123 + 2: 5363 + 2: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql12ObIDASTaskOpEEEE6removeEPS6_:32493 + 3: 5363 + 7: 7 + 6: _ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql12ObIDASTaskOpEEEE6unlinkEv:252 + 2: 7 + 4: 7 + 5: 7 + 6: 7 + 7: 7 + 2.5: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql12ObIDASTaskOpEEEE12remove_firstEv:146 + 2: 2 + 2: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql12ObIDASTaskOpEEEE6removeEPS6_:126 + 3: 2 + 7: 2 + 6: _ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql12ObIDASTaskOpEEEE6unlinkEv:72 + 2: 2 + 4: 2 + 5: 2 + 6: 2 + 7: 2 + 8: _ZN9oceanbase6common16ObArenaAllocator5resetEv:49698 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:49698 + 4.1: 1025 + 6: 2 + 7: 2 + 13: 1025 + 14: 1025 + 15: 1025 + 18: 1025 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:16 + 0: 2 + 5.1: _ZL12abort_unlessb:44 + 5: 2 + 6: 2 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:296 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:296 + 0: 2 + 0.2: 2 + 0.1: _ZN9oceanbase6common7ob_freeEPv:216 + 2: 2 + 3: 2 + 4: 2 + 5: 2 + 4: _ZL12abort_unlessb:64 + 5: 2 + 6: 2 +_ZN9oceanbase6common14ObKVCacheStore18reuse_wash_structsEv:1213836:0 + 1: 0 + 8: 0 + 3: _ZN9oceanbase6common18ObSimpleFixedArrayImE5reuseEv:0 + 10: 0 + 4: _ZN9oceanbase6common18ObSimpleFixedArrayINS0_19ObKVCacheInstHandleEE5reuseEv:0 + 2: 0 + 5.1: 0 + 5.3: 0 + 6: 0 + 10: 0 + 5: _ZN9oceanbase6common10ObFreeHeapINS0_14ObKVCacheStore14TenantWashInfoEE5reuseEv:1212720 + 2: 0 + 3.1: 62 + 3.3: 62 + 4: 62 + 6: 0 + 4: _ZN9oceanbase6common14ObKVCacheStore14TenantWashInfo5reuseEv:1210984 + 3: 62 + 8: _ZN9oceanbase6common14ObKVCacheStore8WashHeap5resetEv:1240 + 3: 62 + 10: _ZN9oceanbase6common14ObKVCacheStore8WashHeap5resetEv:1208256 + 3: 1984 + 6: _ZN9oceanbase6common14ObFixedHashMapImPNS0_14ObKVCacheStore14TenantWashInfoENS0_4hash9hash_funcImEEE5reuseEv:1116 + 2: 0 + 3.1: 31 + 3.3: 31 + 4: 31 + 5.1: 31 + 6: 0 + 10: 31 + 12: 0 + 136: 0 + 7: _ZN9oceanbase6common14ObFixedHashMapImPNS0_14ObKVCacheStore14TenantWashInfoENS0_4hash9hash_funcImEEE14push_free_nodeEPNS0_7MapNodeImS4_EE:0 + 2: 0 + 3: 0 + 7: _ZN9oceanbase6common14ObKVCacheStore23MBHandlePointerWashPool5reuseEv:0 + 2: 0 +_ZN9oceanbase3sql15ObDatumObjParam13from_objparamERKNS_6common10ObObjParamEPNS2_12ObIAllocatorE:1209764:7200 + 0: 7102 + 1: 7102 + 2: 7102 + 5: 0 + 6: 0 + 7: 0 + 8.1: 0 + 9.1: 0 + 10.1: 0 + 12.1: 7137 + 13.1: 0 + 15: 0 + 16: 7137 + 17: 7137 + 21: 7137 + 2: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:21306 + 0: 7102 + 3: _ZNK9oceanbase6common9ObObjMeta18get_collation_typeEv:28408 + 0: 7102 + 4: _ZNK9oceanbase6common9ObObjMeta9get_scaleEv:21306 + 0: 7102 + 5: _ZNK9oceanbase6common5ObObj16is_ext_sql_arrayEv:35510 + 0: _ZNK9oceanbase6common9ObObjMeta16is_ext_sql_arrayEv:35510 + 0: 7102 + 0.1: 0 + 0: _ZNK9oceanbase6common9ObObjMeta6is_extEv:28408 + 0: 7102 + 12.1: _ZN9oceanbase6common7ObDatum8from_objERKNS0_5ObObjE:398071 + 2: 7170 + 3: 7170 + 83: 0 + 84.1: 0 + 88: 7137 + 4: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:0 + 0: 0 + 26: _ZN9oceanbase6common7ObDatum9obj2datumILNS0_17ObObjDatumMapTypeE1EEEvRKNS0_5ObObjE:16830 + 2: 990 + 3: 990 + 32: _ZN9oceanbase6common7ObDatum9obj2datumILNS0_17ObObjDatumMapTypeE2EEEvRKNS0_5ObObjE:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 7: 0 + 9: 0 + 10: 0 + 55: _ZN9oceanbase6common7ObDatum9obj2datumILNS0_17ObObjDatumMapTypeE3EEEvRKNS0_5ObObjE:123201 + 2: 6160 + 3: 6160 + 61: _ZN9oceanbase6common7ObDatum9obj2datumILNS0_17ObObjDatumMapTypeE4EEEvRKNS0_5ObObjE:0 + 2: 0 + 3: 0 + 65: _ZN9oceanbase6common7ObDatum9obj2datumILNS0_17ObObjDatumMapTypeE5EEEvRKNS0_5ObObjE:0 + 2: 0 + 3: 0 + 70: _ZN9oceanbase6common7ObDatum9obj2datumILNS0_17ObObjDatumMapTypeE6EEEvRKNS0_5ObObjE:0 + 2: 0 + 3: 0 + 4: 0 + 75: _ZN9oceanbase6common7ObDatum9obj2datumILNS0_17ObObjDatumMapTypeE7EEEvRKNS0_5ObObjE:0 + 2: 0 + 3: 0 + 4: 0 + 79: _ZN9oceanbase6common7ObDatum9obj2datumILNS0_17ObObjDatumMapTypeE8EEEvRKNS0_5ObObjE:0 + 2: 0 + 3: _ZN9oceanbase6common11ObDatumDesc7set_extEv:0 + 0: 0 + 16: _ZNK9oceanbase6common10ObObjParam12get_accuracyEv:28548 + 0: 7137 + 16.1: _ZN9oceanbase6common10ObAccuracyaSERKS1_:78507 + 2: 7137 + 3: 7137 + 17: _ZNK9oceanbase6common10ObObjParam15get_result_flagEv:28548 + 0: 7137 + 18.1: _ZN9oceanbase6common9ParamFlagaSERKS1_:71370 + 0: 7137 +_ZN9oceanbase3sql8ObSqlCtx5clearEv:1209728:5887 + 1: 5222 + 8: 5435 _ZN9oceanbase3sql13ObBaselineKey5resetEv:5491 + 2: _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql20ObTablePartitionInfoENS0_12ObIAllocatorEE5resetEv:182770 + 0: 5222 + 0: _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql20ObTablePartitionInfoENS0_12ObIAllocatorEE7destroyEv:57442 + 2: 5222 + 5: 0 + 9: 0 + 10: 0 + 12: 0 + 13: 0 + 15: 0 + 3: _ZN9oceanbase6common16ObFixedArrayImplINS0_8ObStringENS0_12ObIAllocatorEE5resetEv:178780 + 0: 5108 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS0_8ObStringENS0_12ObIAllocatorEE7destroyEv:56188 + 2: 5108 + 5: 0 + 9: 0 + 10: 0 + 12: 0 + 13: 0 + 15: 0 + 4: _ZN9oceanbase6common16ObFixedArrayImplINS_3sql18LocationConstraintENS0_12ObIAllocatorEE5resetEv:174860 + 0: 4996 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS_3sql18LocationConstraintENS0_12ObIAllocatorEE7destroyEv:54956 + 2: 4996 + 5: 0 + 9: 0 + 10: 0 + 12: 0 + 13: 0 + 15: 0 + 5: _ZN9oceanbase6common16ObFixedArrayImplIPNS0_9ObSEArrayIlLl4ENS0_19ModulePageAllocatorELb1EEENS0_12ObIAllocatorEE5resetEv:170380 + 0: 4868 + 0: _ZN9oceanbase6common16ObFixedArrayImplIPNS0_9ObSEArrayIlLl4ENS0_19ModulePageAllocatorELb1EEENS0_12ObIAllocatorEE7destroyEv:53548 + 2: 4868 + 5: 0 + 9: 0 + 10: 0 + 12: 0 + 13: 0 + 15: 0 + 6: _ZN9oceanbase6common16ObFixedArrayImplIPNS0_9ObSEArrayIlLl4ENS0_19ModulePageAllocatorELb1EEENS0_12ObIAllocatorEE5resetEv:172760 + 0: 4936 + 0: _ZN9oceanbase6common16ObFixedArrayImplIPNS0_9ObSEArrayIlLl4ENS0_19ModulePageAllocatorELb1EEENS0_12ObIAllocatorEE7destroyEv:54296 + 2: 4936 + 5: 0 + 9: 0 + 10: 0 + 12: 0 + 13: 0 + 15: 0 + 7: _ZN9oceanbase6common16ObFixedArrayImplIlNS0_12ObIAllocatorEE5resetEv:190785 + 0: 5451 + 0: _ZN9oceanbase6common16ObFixedArrayImplIlNS0_12ObIAllocatorEE7destroyEv:59961 + 2: 5451 + 5: 0 + 9: 0 + 10: 0 + 12: 0 + 13: 0 + 15: 0 +_ZN9oceanbase3sql16ObDASDMLIterator12get_next_rowERPNS_6common8ObNewRowE:1207346:1369 + 1: 1335 + 2: 1335 + 3: 1335 + 4: 656 + 5.1: 0 + 6.1: 656 + 7.1: 0 + 10: 0 + 11: 1312 + 12: 663 + 14.1: 0 + 16.1: 659 + 21.1: 0 + 23: 614 + 24.1: 614 _ZZN9oceanbase3sql16ObDASDMLIterator12get_next_rowERPNS_6common8ObNewRowEENK4$_86clEPKc.45c27dd3dc8b42ec4ef71c6f367bd924:628 + 27: 1360 + 4: _ZNK9oceanbase6common12ObIArrayWrapIlE5countEv:5216 + 0: 652 + 4.1: _ZN9oceanbase6common13ob_create_rowINS0_12ObIAllocatorEEEiRT_lRPNS0_8ObNewRowE:251192 + 2: 652 + 3: 652 + 4: 0 + 5.1: 0 + 9: 652 + 10: 652 + 11: 0 + 12.1: 0 + 14: 652 + 15: 652 + 16: 652 + 16.1: 652 + 16.2: 652 + 16.3: 656 + 17: 656 + 18: 656 + 19: 656 + 22: 656 + 10: _ZN9oceanbase6common26ObWrapperAllocatorWithAttr5allocEl:106928 + 0: 0 + 0: _ZN9oceanbase6common18ObWrapperAllocator5allocElRKNS_3lib9ObMemAttrE:106928 + 2: 652 + 2.2: 652 + 2.2: _ZN9oceanbase6common16ObArenaAllocator5allocElRKNS_3lib9ObMemAttrE:84760 + 3: _ZN9oceanbase6common16ObArenaAllocator5allocEl:84760 + 0: 652 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13alloc_alignedEll:81500 + 3: 652 + 6: 652 + 7: 652 + 8: 652 + 10: 652 + 11: 652 + 12: 652 + 13: 652 + 15.1: 0 + 16: 0 + 18: 0 + 20: 0 + 28: 0 + 35: 652 + 36: 652 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE15ensure_cur_pageEv:9128 + 2: 652 + 3: 0 + 5.1: 0 + 8: 0 + 9: 0 + 10: 0 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:0 + 2: 0 + 2.2: 0 + 2.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 9: _ZSt3maxIlERKT_S2_S2_:0 + 5: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 8: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:0 + 0: 0 + 7: _ZN9oceanbase6common16get_align_offsetEPvl:8476 + 3: 652 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:4564 + 0: 652 + 11: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:4564 + 7: 652 + 15.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE18is_normal_overflowEl:0 + 2: 0 + 16: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11extend_pageEl:0 + 4: 0 + 5: 0 + 8: 0 + 9: 0 + 10.1: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 12: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_tailEPNS3_4PageE:0 + 2: 0 + 3: 0 + 5: 0 + 23.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16lookup_next_pageEl:0 + 3.1: 0 + 4.1: 0 + 5: 0 + 5.1: 0 + 7: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page10reuse_sizeEv:0 + 0: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 32: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9alloc_bigEl:0 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 3: 0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_headEPNS3_4PageE:0 + 4: 0 + 5: 0 + 7: 0 + 7: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:0 + 3: 0 + 15: _ZN9oceanbase6common8ObNewRowC2Ev:11084 + 2: 652 + 16.2: _ZN9oceanbase6common5ObObjC2Ev:25460 + 2: _ZN9oceanbase6common5ObObj5resetEv:25460 + 6: 652 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:8052 + 0: 652 + 6.1: _ZN9oceanbase3sql16ObDASWriteBuffer5beginERNS1_8IteratorE:17056 + 2: 656 + 3: 656 + 4: 656 + 5: 0 + 6: 0 + 7: 0 + 8.1: 0 + 10: 0 + 11: 0 + 14: 0 + 11: _ZN9oceanbase3sql17ObChunkDatumStore5beginERNS1_8IteratorElPKNS1_12IterationAgeE:0 + 2: 0 + 12: _ZN9oceanbase3sql16ObDASWriteBuffer8Iterator12get_next_rowERPKNS0_17ObChunkDatumStore9StoredRowE:42829 + 2: 1312 + 3: 1312 + 5: 659 + 6: 659 + 7.1: 666 + 8: 663 + 9.1: 0 + 11.1: 0 + 13.1: 0 + 14: 0 + 15.1: 0 + 17: 659 + 6: _ZN9oceanbase3sql16ObDASWriteBuffer16get_next_dml_rowEPNS0_17ObChunkDatumStore9StoredRowE:2636 + 5: 659 + 16.1: _ZN9oceanbase3sql10ObDASUtils19project_storage_rowERKNS0_17ObDASDMLBaseCtDefERKNS0_17ObChunkDatumStore9StoredRowERKNS_6common12ObFixedArrayIlNS9_12ObIAllocatorEEERSB_RNS9_8ObNewRowE:702312 + 6: 659 + 7.1: 2131 + 7.2: 2789 + 7.3: 2789 + 7.5: 2131 + 8: 2149 + 11: 2149 + 13: 2149 + 14.1: 1382 + 15.1: 0 + 17.1: 1391 + 18.1: 0 + 22.1: 614 + 24: 0 + 25: 0 + 29.1: 0 + 29.3: 0 + 37.1: 0 + 37.3: 0 + 42: 0 + 43.1: 0 + 43.3: 0 + 45: 0 + 49: 0 + 8: _ZNK9oceanbase6common12ObIArrayWrapIlE2atEl:8596 + 6: 2149 + 13: _ZN9oceanbase6common5ObObj13set_nop_valueEv:16002 + 2: _ZN9oceanbase6common5ObObj7set_extEl:16002 + 4: 762 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:9144 + 0: 762 + 178: 0 + 14.2: _ZNK9oceanbase6common7ObDatum6to_objERNS0_5ObObjERKNS0_9ObObjMetaE:117041 + 2: 1377 + 3: 1377 + 6: 1377 + 7: 1377 + 84: 0 + 85.1: 0 + 89: 0 + 7: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:11016 + 0: 1377 + 27: _ZNK9oceanbase6common7ObDatum9datum2objILNS0_17ObObjDatumMapTypeE1EEEvRNS0_5ObObjE:6870 + 2: 458 + 3: 458 + 33: _ZNK9oceanbase6common7ObDatum9datum2objILNS0_17ObObjDatumMapTypeE2EEEvRNS0_5ObObjE:0 + 2: 0 + 3: 0 + 56: _ZNK9oceanbase6common7ObDatum9datum2objILNS0_17ObObjDatumMapTypeE3EEEvRNS0_5ObObjE:5490 + 3: 915 + 62: _ZNK9oceanbase6common7ObDatum9datum2objILNS0_17ObObjDatumMapTypeE4EEEvRNS0_5ObObjE:0 + 3: 0 + 4: 0 + 66: _ZNK9oceanbase6common7ObDatum9datum2objILNS0_17ObObjDatumMapTypeE5EEEvRNS0_5ObObjE:0 + 2: 0 + 3: 0 + 71: _ZNK9oceanbase6common7ObDatum9datum2objILNS0_17ObObjDatumMapTypeE6EEEvRNS0_5ObObjE:0 + 2: 0 + 3: 0 + 76: _ZNK9oceanbase6common7ObDatum9datum2objILNS0_17ObObjDatumMapTypeE7EEEvRNS0_5ObObjE:0 + 3: 0 + 4: 0 + 5: 0 + 80: _ZNK9oceanbase6common7ObDatum9datum2objILNS0_17ObObjDatumMapTypeE8EEEvRNS0_5ObObjE:0 + 2: 0 + 17.1: _ZN9oceanbase3sql10ObDASUtils21reshape_storage_valueERKNS_6common9ObObjMetaERKNS2_10ObAccuracyERNS2_12ObIAllocatorERNS2_5ObObjE:304008 + 5: 1382 + 6: 1382 + 7: 0 + 9: 0 + 12: 0 + 13: 0 + 14.1: 0 + 17: 0 + 18: 0 + 22.1: 1388 + 22.2: 0 + 22.3: 0 + 26.1: 1388 + 30.1: 497 + 30.2: 0 + 31: 497 + 31.3: 497 + 39: 0 + 6: _ZNK9oceanbase6common5ObObj9is_binaryEv:69142 + 0: _ZNK9oceanbase6common9ObObjMeta9is_binaryEv:69142 + 2: 1382 + 2: _ZN9oceanbase6common9ObObjMeta9is_binaryENS0_9ObObjTypeENS0_15ObCollationTypeE:24918 + 2: 1388 + 7: _ZNK9oceanbase6common10ObAccuracy10get_lengthEv:0 + 0: 0 + 8: _ZNK9oceanbase6common5ObObj14get_string_lenEv:0 + 0: 0 + 11: _ZNK9oceanbase6common5ObObj14get_string_ptrEv:0 + 0: 0 + 19.1: _ZN9oceanbase6common5ObObj10set_binaryERKNS0_8ObStringE:0 + 5: 0 + 6: 0 + 2: _ZN9oceanbase6common9ObObjMeta8set_charEv:0 + 0: 0 + 3: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:0 + 0: 0 + 4: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:0 + 0: 0 + 22.1: _ZN9oceanbase3lib14is_oracle_modeEv:61072 + 2: 1388 + 2: _ZN9oceanbase3lib15get_compat_modeEv:56908 + 2: 1388 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:34700 + 2: 1388 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 22.2: _ZNK9oceanbase6common5ObObj17is_character_typeEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta17is_character_typeEv:0 + 0: 0 + 0: _ZNK9oceanbase6common9ObObjMeta10is_nstringEv:0 + 0: 0 + 0.1: _ZNK9oceanbase6common9ObObjMeta18is_varchar_or_charEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta10is_varcharEv:0 + 2: 0 + 25: _ZN9oceanbase6common5ObObj8set_nullEv:0 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:0 + 0: 0 + 0: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:0 + 0: 0 + 0.1: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:0 + 0: 0 + 26.1: _ZNK9oceanbase6common5ObObj22is_fixed_len_char_typeEv:24984 + 0: _ZNK9oceanbase6common9ObObjMeta22is_fixed_len_char_typeEv:24984 + 0: 1388 + 0: _ZNK9oceanbase6common9ObObjMeta7is_charEv:9716 + 2: 1388 + 27: _ZNK9oceanbase6common5ObObj14get_string_ptrEv:5652 + 0: 471 + 28: _ZNK9oceanbase6common5ObObj14get_string_lenEv:2355 + 0: 471 + 29.1: _ZN9oceanbase6common14ObCharsetUtils13get_const_strENS0_15ObCollationTypeEi:21032 + 3.2: 472 + 4.1: 471 _ZN9oceanbase6common9ObCharset18is_valid_collationEl:485 + 5: 497 _ZN9oceanbase6common9ObCharset20charset_type_by_collENS0_15ObCollationTypeE:499 + 36: _ZNK9oceanbase6common5ObObj8get_typeEv:4680 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:4680 + 0: 468 + 36.1: _ZN9oceanbase6common8ObStringC2ElPKc:4212 + 5: 468 + 36.2: _ZN9oceanbase6common5ObObj10set_stringENS0_9ObObjTypeERKNS0_8ObStringE:31356 + 4: 468 + 5: 468 + 2: _ZN9oceanbase6common9ObObjMeta8set_typeERKNS0_9ObObjTypeE:25740 + 3: 468 + 13: 0 + 4: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:0 + 0: 0 + 8: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:0 + 0: 0 + 9: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:0 + 0: 0 + 12.1: _ZN9oceanbase6common17ob_is_string_typeENS0_9ObObjTypeE:12168 + 0: 468 + 0: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:7488 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:7488 + 2: 468 + 17: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:0 + 0: 0 + 3: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:2808 + 0: 468 + 25: _ZN9oceanbase3lib13is_mysql_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 30: _ZNK9oceanbase6common5ObObj7is_nullEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta7is_nullEv:0 + 0: 0 + 38: _ZNK9oceanbase6common5ObObj7is_nullEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta7is_nullEv:0 + 0: 0 + 45: _ZN9oceanbase6common5ObObj8set_nullEv:0 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:0 + 0: 0 + 0.1: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:0 + 0: 0 +_ZZNK9oceanbase3sql18ObBasicSessionInfo31is_server_status_in_transactionEvENK3$_0clEPKc.7d011f5114f8312fd0eb7b31f2639cf5:1206385:15032 + 0: 14377 + 0.1: 0 + 0.2: 13594 + 0.3: 14377 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:14625 + 0.14: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:244409 + 2: 14377 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKbLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKbLb0EEC2EPKcS3_:0 + 0: 0 + 0.7: _ZN9oceanbase6common20ObLogPrintPointerCntIKPNS_11transaction8ObTxDescEEC2ES4_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVINS0_20ObLogPrintPointerCntIKPNS_11transaction8ObTxDescEEELb1EEC2EPKcOKS7_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVIRKbLb0EEC2EPKcS3_:0 + 0: 0 + 0.11: _ZNK9oceanbase3sql18ObBasicSessionInfo28get_first_need_txn_stmt_typeEv:0 + 0: 0 + 0.13: _ZN9oceanbase6common7ObLogKVIRKNS_3sql4stmt8StmtTypeELb0EEC2EPKcS6_:0 + 0: 0 +_ZN9oceanbase4easy7processEP14easy_request_t:1203563:5236 + 1: 5068 + 5: 5068 + 5.1: 5068 + 5.2: 5068 + 6.1: 14 + 8: 5068 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:5075 + 10: 4766 + 11: 4766 + 12: 5100 _ZN9oceanbase7obmysql14ObMySQLHandler7processEP14easy_request_t:4784 + 13: 5100 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:5128 + 14: 4691 + 15: 4691 + 22: 14 + 23: 14 + 25: 5171 + 26: 5171 + 27.1: 14 + 30: 5171 + 10: _ZN9oceanbase4easyL14packet_handlerEP17easy_connection_t:152512 + 3: 4766 + 3.1: 4766 + 4: 4766 + 17: _Z22TC_REACH_TIME_INTERVALl:284259 + 4.1: 5171 _ZN9oceanbase6common14ObTscTimestamp12current_timeEv:5177 + 5: 5171 + 6: 14 + 4: _ZN9oceanbase6common14ObTscTimestamp12get_instanceEv:80937 + 2: 4691 + 2.1: 14 + 2.3: 14 + 2.6: 14 + 2.2: _ZN9oceanbase6common14ObTscTimestampC2Ev:364 + 1: 14 +_ZN9oceanbase6common13ObObjCmpFuncs7compareERNS0_5ObObjERKS2_S5_RKNS0_12ObCompareCtxENS0_7ObCmpOpERb:1202887:3118 + 6: 3022 + 7: 3022 + 11: 3022 + 12: 3022 + 15: 0 + 16.1: 0 + 17.1: 2768 + 21: 0 + 23: 2768 + 24: 0 + 25: 0 + 26.1: 0 + 29: 2746 + 29.3: 2746 + 32: 2746 + 8: _ZNK9oceanbase6common5ObObj8get_typeEv:6044 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:6044 + 0: 3022 + 9: _ZNK9oceanbase6common5ObObj8get_typeEv:6044 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:6044 + 0: 3022 + 17.3: _ZN9oceanbase6common13ObObjCmpFuncs20can_cmp_without_castERKNS0_9ObObjMetaES4_NS0_7ObCmpOpERPFiRKNS0_5ObObjES8_RKNS0_12ObCompareCtxEE:599823 + 12.1: 0 + 13: 3118 + 15.1: 3249 + 16.1: 3270 + 18.1: 2768 + 18.2: 0 + 18.4: 14 + 25: 2768 + 6: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:27198 + 0: 3022 + 7: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:9066 + 0: 3022 + 8: _ZNK9oceanbase6common9ObObjMeta14get_type_classEv:80773 + 0.1: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:80773 + 2: 3233 + 2.1: 3022 + 2.3: 3022 + 9: _ZNK9oceanbase6common9ObObjMeta14get_type_classEv:52458 + 0.1: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:52458 + 2: 3022 + 2.1: 3118 + 12: _ZN9oceanbase6common13ObObjCmpFuncs25is_datetime_timestamp_cmpENS0_9ObObjTypeES2_:21442 + 2: 3022 + 3.1: 3118 + 13.1: _ZN9oceanbase6common13ObObjCmpFuncs17is_otimestamp_cmpENS0_9ObObjTypeES2_:73301 + 2: 3187 + 2.2: 0 + 3.1: 3187 + 3.3: 0 + 18.1: _ZN9oceanbase6common17ob_is_string_typeENS0_9ObObjTypeE:54975 + 0: 3233 + 0: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:25864 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:25864 + 2: 3233 + 18.2: _ZN9oceanbase6common17ob_is_string_typeENS0_9ObObjTypeE:27520 + 0: 14 + 0: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:27268 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:27268 + 2: 3022 + 22.1: _ZN9oceanbase6common13ObObjCmpFuncs12get_cmp_funcENS0_14ObObjTypeClassES2_NS0_7ObCmpOpERPFiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxEE:138400 + 7: 2768 + 13: 2768 + 23: _ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE0ELS3_0EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE:12753 + 0: 981 + 23: _ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE1ELS3_1EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE:119528 + 0: 1784 + 0.2: 0 + 0.3: 0 + 0.4: 1784 + 0.6: 0 + 0.7: 0 + 0.8: 1784 + 0.4: _ZNK9oceanbase6common5ObObj14get_type_classEv:3568 + 0: _ZNK9oceanbase6common9ObObjMeta14get_type_classEv:3568 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:0 + 0: 0 + 0.1: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:3568 + 2: 1784 + 0.8: _ZNK9oceanbase6common5ObObj7get_intEv:8920 + 0: 1784 +_ZN9oceanbase12blocksstable20ObStorageDatumBufferC2EPNS_6common12ObIAllocatorE:1194772:565 + 1: 541 + 2: 541 + 2.1: 17106 + 3: 509 + 4: 509 + 5: 509 + 6: 541 + 2.1: _ZN9oceanbase12blocksstable14ObStorageDatumC2Ev:1013582 + 0.1: _ZN9oceanbase12blocksstable14ObStorageDatum7set_nopEv:1013582 + 0: _ZN9oceanbase12blocksstable14ObStorageDatum13set_ext_valueEl:1013582 + 1: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:209600 + 0: 17106 + 65354: 541 + 1.1: _ZN9oceanbase6common11ObDatumDesc7set_extEv:273696 + 0: 17106 + 1.3: _ZN9oceanbase6common5ObObj7set_extEl:530286 + 4: 17106 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:256590 + 0: 17106 +_ZN9oceanbase12blocksstable20ObStorageDatumBufferC1EPNS_6common12ObIAllocatorE:1194772:565 + 1: 541 + 2: 541 + 2.1: 17106 + 3: 509 + 4: 509 + 5: 509 + 6: 541 + 2.1: _ZN9oceanbase12blocksstable14ObStorageDatumC2Ev:1013582 + 0.1: _ZN9oceanbase12blocksstable14ObStorageDatum7set_nopEv:1013582 + 0: _ZN9oceanbase12blocksstable14ObStorageDatum13set_ext_valueEl:1013582 + 1: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:209600 + 0: 17106 + 65354: 541 + 1.1: _ZN9oceanbase6common11ObDatumDesc7set_extEv:273696 + 0: 17106 + 1.3: _ZN9oceanbase6common5ObObj7set_extEl:530286 + 4: 17106 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:256590 + 0: 17106 +_ZN9oceanbase3rpc20ObSqlRequestOperator15get_sql_sessionEPNS0_9ObRequestE:1193044:34223 + 1: 33950 + 2: 33463 + 2.1: 33463 _ZN9oceanbase7obmysql24ObEasySqlRequestOperator15get_sql_sessionEPNS_3rpc9ObRequestE:34408 + 2: _ZN9oceanbase3rpc20ObSqlRequestOperator12get_operatorEPKNS0_9ObRequestE:547198 + 3: 34607 + 3: _ZNK9oceanbase3rpc9ObRequest16get_nio_protocolEv:203700 + 0: 33950 +_ZNSt14_Function_base13_Base_managerIZN9oceanbase3sql12ObSortOpImpl14before_add_rowEvE5$_970E10_M_managerERSt9_Any_dataRKS6_St18_Manager_operation.68271ef948b9e29c783f97102b0c767d:1184025:57012 + 2: 55993 + 3: 55993 + 7: 0 + 11: 0 + 22: 58036 + 15: _ZNSt14_Function_base13_Base_managerIZN9oceanbase3sql12ObSortOpImpl14before_add_rowEvE5$_970E8_M_cloneERSt9_Any_dataRKS6_St17integral_constantIbLb1EE:0 + 2: 0 +_ZN9oceanbase5share11ObQSyncLock8rdunlockEv:1183270:11282 + 1: 10757 + 3: 10757 + 2: _ZN9oceanbase6common7ObQSync11release_refEv:892831 + 2: 10757 + 2: _ZN9oceanbase6common8get_itidEv:258168 + 4: 10757 + 5: 0 + 6: 0 + 8: 0 + 2.1: _ZN9oceanbase6common7ObQSync11release_refEl:333467 + 2: 10757 + 3: 10757 + 4.1: 0 + 2: _ZN9oceanbase6common7ObQSync7add_refEll:225897 + 6: 10757 +_ZN9oceanbase8observer23ObProcessMallocCallbackclERKNS_3lib9ObMemAttrEl:1182812:16039 + 1: 15738 + 3: 15738 _ZNK9oceanbase3lib7ObLabelcvPKcEv:16018 + 3.2: 15478 + 7: 15478 + 8: 15478 + 8.3: 15478 + 10: 15478 +_ZN9oceanbase7storage20ObTableStoreIterator10add_tablesERNS0_15ObMemtableArrayEl:1178342:6033 + 1: 5455 + 2: 5455 + 3: 5455 + 3.1: 5455 + 4: 0 + 5.1: 0 + 8: 0 + 8.1: 5459 + 8.2: 11106 + 8.3: 11106 + 8.5: 5459 + 9: 5459 + 10: 5459 + 11: 0 + 12.1: 0 + 13.1: 5459 + 14.1: 0 + 17: 5600 + 3.1: _ZNK9oceanbase7storage15ObMemtableArray5countEv:92735 + 0: 5455 + 0.2: _ZNK9oceanbase6common12ObIArrayWrapIPNS_7storage8ObITableEE5countEv:21820 + 0: 5455 + 8.2: _ZNK9oceanbase7storage15ObMemtableArray5countEv:99954 + 0: 11106 + 9: _ZN9oceanbase7storage15ObMemtableArrayixEl:54590 + 0: _ZNK9oceanbase7storage15ObMemtableArray9get_tableEl:54590 + 0: 5459 + 0.2: 5459 + 0.2: _ZN9oceanbase6common12ObIArrayWrapIPNS_7storage8ObITableEE2atEl:21836 + 6: 5459 + 13.1: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl16ENS0_19ModulePageAllocatorELb0EE9push_backERKS4_:141934 + 5: 5459 + 6: 0 + 12: 0 + 15: 0 + 15.1: 5459 + 16: 5459 + 15.1: _ZN9oceanbase6common9ObClassOpIPNS_7storage8ObITableELb1EE20construct_and_assignERKS4_RS4_:21836 + 2: 5459 +_ZN9oceanbase7storage15ObTableHandleV2D2Ev:1172248:15982 + 1: 13592 + 2.1: 0 + 3: 13904 + 2: _ZN9oceanbase7storage15ObTableHandleV25resetEv:911816 + 2: 13592 + 3: 13580 + 4.1: 0 + 5: 0 + 7: 13580 + 8: 13580 + 9: 0 + 10.1: 13580 + 11.1: 0 + 14: 13892 + 7: _ZN9oceanbase7storage8ObITable7dec_refEv:135800 + 2: 13580 +_ZN9oceanbase7storage15ObTableHandleV2D1Ev:1172248:15982 + 1: 13592 + 2.1: 0 + 3: 13904 + 2: _ZN9oceanbase7storage15ObTableHandleV25resetEv:911816 + 2: 13592 + 3: 13580 + 4.1: 0 + 5: 0 + 7: 13580 + 8: 13580 + 9: 0 + 10.1: 13580 + 11.1: 0 + 14: 13892 + 7: _ZN9oceanbase7storage8ObITable7dec_refEv:135800 + 2: 13580 +_ZN9oceanbase6common11DefHashFuncINS0_22DatumStrHashCalculatorILNS0_15ObCollationTypeE45ELb0ENS0_12ObMurmurHashELb0EEEE4hashERKNS0_7ObDatumEm:1170045:26076 + 1: 26001 + 3: 26001 + 8: 0 + 3: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:130005 + 0: 26001 + 4: _ZN9oceanbase6common11DefHashFuncINS0_22DatumStrHashCalculatorILNS0_15ObCollationTypeE45ELb0ENS0_12ObMurmurHashELb0EEEE9null_hashEm:0 + 3: _ZN9oceanbase6common12ObMurmurHash4hashEPKvmm:0 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:0 + 5: 0 + 38: 0 + 41: 0 + 42: 0 + 43: 0 + 6: _ZN9oceanbase6common22DatumStrHashCalculatorILNS0_15ObCollationTypeE45ELb0ENS0_12ObMurmurHashELb0EE15calc_datum_hashERKNS0_7ObDatumEm:806031 + 2: _ZN9oceanbase6commonL18datum_varchar_hashERKNS0_7ObDatumENS0_15ObCollationTypeEbmPFmPKvmmE:806031 + 6: 26001 + 6.4: 26001 _ZN9oceanbase6common9ObCharset4hashENS0_15ObCollationTypeEPKclmbPFmPKvmmE:26341 + 6: _ZNK9oceanbase6common7ObDatum10get_stringEv:156006 + 0: 26001 + 0: _ZN9oceanbase6common8ObStringC2ElPKc:78003 + 5: 26001 +_ZNK9oceanbase7storage16ObTableScanParam8is_validEv:1161534:18069 + 0: 17599 + 1: 17599 + 1.2: 17599 + 1.1: _ZNK9oceanbase6common17ObVTableScanParam8is_validEv:897549 + 2: 17599 + 2.1: 17599 + 3: 17599 + 3.1: 17599 + 4: 17599 + 4.1: 17599 + 5: 17599 + 5.1: 17599 + 1: _ZNK9oceanbase6common10ObTabletID8is_validEv:87995 + 0: 17599 +_ZN9oceanbase3sql5ObSql13generate_stmtER11ParseResultPNS0_14ObPlanCacheCtxERNS0_8ObSqlCtxERNS_6common12ObIAllocatorERNS0_11ObResultSetERPNS0_6ObStmtEPS2_:1153207:539 + 7: 512 + 8: 512 + 12: 501 + 15: 501 _ZNK9oceanbase6common16ObArenaAllocator5totalEv:502 + 17.1: 514 + 18.1: 1 + 20.2: 514 + 25.1: 527 _ZN9oceanbase6common16ObArenaAllocator5allocEl:529 + 25.2: 511 + 25.3: 511 _ZN9oceanbase3sql15ObSchemaCheckerC1Ev:517 + 27: 1 + 28.1: 1 + 29.1: 510 + 30: 0 + 31.1: 0 + 35: 499 + 36: 499 + 37: 499 + 38: 499 + 39: 499 + 40.1: 537 _ZN9oceanbase3sql13ObExecContext16get_expr_factoryEv:558 + 40.2: 547 + 41.1: 543 _ZN9oceanbase3sql13ObExecContext16get_stmt_factoryEv:551 + 41.2: 494 + 42: 494 + 43: 494 + 44: 494 + 45: 494 + 46.1: 494 + 48: 494 + 48.2: 494 + 49: 494 + 50: 494 + 51: 494 + 53.2: 505 + 54: 505 + 54.2: 505 _ZN9oceanbase3sql13ObExecContext16get_stmt_factoryEv:517 + 54.3: 510 + 55: 1 + 56.1: 1 + 57.2: 521 _ZN9oceanbase3sql13ObExecContext16get_stmt_factoryEv:544 + 57.3: 521 _ZN9oceanbase3sql13ObStmtFactory13get_query_ctxEv:532 + 57.4: 526 + 59: 1 + 60.1: 1 + 62: 526 + 63: 526 _ZN9oceanbase3sql15ObSchemaChecker4initERNS0_16ObSqlSchemaGuardEm:547 + 63.1: 530 + 64.1: 1 + 68: 1 + 69: 530 + 70: 530 + 71: 530 + 72: 530 + 73: 530 + 74: 530 + 75: 530 + 75.1: 530 + 76: 530 _ZN9oceanbase8observer14global_contextEv:545 + 76.1: 521 + 79: 521 + 80.1: 521 + 83.1: 531 + 83.2: 531 + 84: 531 + 84.1: 531 + 85: 531 + 85.1: 531 + 86: 1 + 87.1: 1 + 95: 1 + 97: 531 + 98: 1 + 101: 536 + 105: 536 _ZN9oceanbase3sql10ObResolverC1ERNS0_16ObResolverParamsE:553 + 106.2: 455 + 106.4: 1 + 106.7: 1 + 108: 465 + 112: 1 + 113: 1 + 113.1: 1 + 115: 441 _ZN9oceanbase3sql10ObResolver7resolveENS1_10IsPreparedERK10_ParseNodeRPNS0_6ObStmtE:496 + 115.1: 540 + 116: 540 + 117: 540 + 126: 1 + 135: 531 + 136: 531 + 137: 531 + 138: 531 + 139: 531 + 140: 531 + 145.2: 539 + 145.4: 1 + 145.7: 1 + 147: 541 + 148.1: 541 _ZN9oceanbase6common16ObFixedArrayImplINS_5share6schema18ObSchemaObjVersionENS0_12ObIAllocatorEE6assignERKNS0_8ObIArrayIS4_EE:554 + 148.2: 530 + 149.1: 1 + 152: 1 + 154: 1 + 157.1: 1 + 160: 530 + 164: 530 + 164.2: 530 + 165.1: 530 + 167: 1 + 167.1: 530 + 169.2: 1 + 174: 547 + 175.2: 1 + 175.5: 1 + 175.6: 1 + 180.1: 1 + 182.2: 1 + 182.5: 1 + 183: 1 + 183.2: 1 + 184: 1 + 186.2: 1 + 188.1: 1 + 189: 1 + 190: 1 + 193: 1 + 193.1: 1 + 197: 543 + 198: 1 + 200: 526 + 202.2: 526 + 205: 1 + 206: 514 + 207: 514 + 210: 514 + 210.1: 514 __dynamic_cast:542 + 210.3: 491 + 213: 1 + 214: 1 + 215: 1 + 215.2: 1 + 217.2: 1 + 217.3: 1 + 219.1: 1 + 223.1: 1 + 224: 1 + 224.1: 1 + 224.2: 1 + 227.4: 438 __dynamic_cast:452 + 227.6: 564 + 228: 1 + 231: 553 + 234.1: 1 + 237: 1 + 238.1: 1 + 241: 553 _ZN9oceanbase3sql10ObResolverD1Ev:574 + 241.1: 1 + 242: 542 _ZNK9oceanbase6common16ObArenaAllocator5totalEv:547 + 244: 534 + 245.28: 538 + 9: _ZN9oceanbase5trace16__ObFLTSpanGuardC2Ejh:10319 + 2: 512 _ZN9oceanbase5trace7ObTrace12get_instanceEv:530 + 2.1: 519 _ZN9oceanbase5trace7ObTrace10begin_spanEjhb:527 + 11: _ZN9oceanbase3sql16ObResolverParamsC2Ev:326652 + 2: 501 + 11: 501 + 12: 501 + 14: 501 + 16: 501 + 18: 501 + 27: 501 + 28: 501 + 30: 501 + 36: 501 + 38: 501 + 40: 501 + 42: 501 + 45: 501 + 46: 501 + 48: 501 + 49: 501 + 9: _ZN9oceanbase3sql14ExternalParamsC2Ev:128757 + 0: 501 + 0: _ZN9oceanbase6common9ObSEArrayISt4pairIPNS_3sql9ObRawExprEPNS3_14ObConstRawExprEELl8ENS0_19ModulePageAllocatorELb0EEC2Ev:78156 + 0.1: 501 + 0.5: _ZN9oceanbase6common13ObSEArrayImplISt4pairIPNS_3sql9ObRawExprEPNS3_14ObConstRawExprEELl8ENS0_19ModulePageAllocatorELb0EEC2ElRKS9_:69138 + 5: 501 + 6: 501 + 8: 501 + 17.1: 501 + 2: _ZN9oceanbase6common8ObIArrayISt4pairIPNS_3sql9ObRawExprEPNS3_14ObConstRawExprEEEC2EPS8_l:9018 + 0: _ZN9oceanbase6common12ObIArrayWrapISt4pairIPNS_3sql9ObRawExprEPNS3_14ObConstRawExprEEEC2EPS8_l:9018 + 0: 501 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:28557 + 0: 501 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:10521 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:10521 + 2: 501 + 8: 501 + 47: _ZN9oceanbase6common4hash18ObPlacementHashSetImLm256ELb1EEC2Ev:87675 + 0.1: 501 + 0.5: _ZN9oceanbase6common8ObBitSetILl256ENS0_19ModulePageAllocatorELb1EEC2ERKS2_:82164 + 2: 501 + 1: _ZN9oceanbase6common9ObSEArrayIjLl8ENS0_19ModulePageAllocatorELb1EECI2NS0_13ObSEArrayImplIjLl8ES2_Lb1EEEElRKS2_:71142 + 0: 501 + 0: _ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb1EEC2ElRKS2_:62124 + 2: 501 + 5: 501 + 6: 501 + 8: 501 + 17.1: 501 + 2: _ZN9oceanbase6common8ObIArrayIjEC2EPjl:9018 + 0: _ZN9oceanbase6common12ObIArrayWrapIjEC2EPjl:9018 + 0: 501 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:19539 + 0: 501 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:9018 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:9018 + 2: 501 + 8: 501 + 17: _ZN9oceanbase3sql5ObSql12sanity_checkERNS0_8ObSqlCtxE:18594 + 2: 517 + 3: 517 + 4.1: 0 + 5.1: 517 + 5.2: 517 + 6: 517 + 6.1: 517 + 7: 0 + 8.1: 0 + 15: 514 + 20: _ZN9oceanbase3sql11ObResultSet11get_sessionEv:7196 + 0: 514 + 21.1: _ZNK9oceanbase3sql18ObBasicSessionInfo20get_sessid_for_tableEv:14652 + 0: 514 + 0.2: 527 + 0.5: 527 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo15is_obproxy_modeEv:3598 + 0: 514 + 0.1: _ZNK9oceanbase3sql18ObBasicSessionInfo16get_proxy_sessidEv:0 + 0: 0 + 0.2: _ZNK9oceanbase3sql18ObBasicSessionInfo17is_master_sessionEv:4743 + 0: 527 + 0.3: _ZNK9oceanbase3sql18ObBasicSessionInfo10get_sessidEv:3162 + 0: 527 + 40: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:5489 + 0: 499 + 41: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:6017 + 0: 547 + 46: _ZNK9oceanbase3sql15ObMultiStmtItem21is_batched_multi_stmtEv:13832 + 3: 494 + 53: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:5434 + 0: 494 + 0.2: 0 + 53.1: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:3535 + 2: 505 + 57.1: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:5610 + 0: 510 + 62: _ZN9oceanbase3sql16ObSqlSchemaGuard16set_schema_guardEPNS_5share6schema19ObSchemaGetterGuardE:3682 + 1: 526 + 75: _ZNK9oceanbase3sql17ObPhysicalPlanCtx15get_param_storeEv:2120 + 0: 530 + 98.1: _ZNK9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE5countEv:9 + 0: 1 + 106.1: _ZN9oceanbase3lib20is_trace_log_enabledEv:3672 + 2: 483 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:483 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:3185 + 2: 455 + 106.3: _ZN9oceanbase6common18get_trace_recorderEv:61 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:61 + 7: 1 + 8: 1 + 8.1: 1 + 106.6: _ZN9oceanbase3lib20is_trace_log_enabledEv:12 + 2: 1 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:7 + 2: 1 + 106.8: _ZN9oceanbase6common18get_trace_recorderEv:68 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:68 + 7: 1 + 8: 1 + 8.1: 1 + 106.9: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl189ELl1600EE9add_eventEv:92 + 2: 1 + 3.1: 1 + 6: 1 + 10: 1 + 11: 1 + 12: 1 + 106.10: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:21 + 0: 1 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:5 + 2: 1 + 145.1: _ZN9oceanbase3lib20is_trace_log_enabledEv:4308 + 2: 531 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:551 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:3773 + 2: 539 + 145.3: _ZN9oceanbase6common18get_trace_recorderEv:61 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:61 + 7: 1 + 8: 1 + 8.1: 1 + 145.6: _ZN9oceanbase3lib20is_trace_log_enabledEv:12 + 2: 1 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:7 + 2: 1 + 145.8: _ZN9oceanbase6common18get_trace_recorderEv:68 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:68 + 7: 1 + 8: 1 + 8.1: 1 + 145.9: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl189ELl1600EE9add_eventEv:92 + 2: 1 + 3.1: 1 + 6: 1 + 10: 1 + 11: 1 + 12: 1 + 145.10: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:21 + 0: 1 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:5 + 2: 1 + 148: _ZN9oceanbase3sql11ObResultSet15get_ref_objectsEv:8656 + 2: 541 + 155: _ZNK9oceanbase3sql6ObStmt13get_stmt_typeEv:4 + 2: 1 + 155.1: _ZN9oceanbase3sql11ObResultSet13set_stmt_typeENS0_4stmt8StmtTypeE:7 + 2: 1 + 165: _ZN9oceanbase3lib13is_mysql_modeEv:24955 + 2: _ZN9oceanbase3lib15get_compat_modeEv:24955 + 2: 530 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:16475 + 2: 530 + 2.1: 1 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:22 + 1: 1 + 167: _ZNK9oceanbase3sql6ObStmt14is_insert_stmtEv:2120 + 0: 530 + 175: _ZN9oceanbase3sql11ObResultSet26get_external_retrieve_infoEv:7 + 0: 1 + 175.1: _ZN9oceanbase3sql11ObResultSet11get_sessionEv:7 + 0: 1 + 182: _ZN9oceanbase3sql11ObResultSet19get_external_paramsEv:7 + 2: 1 + 182.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql9ObRawExprEE5emptyEv:5 + 0: 1 + 182.4: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql9ObRawExprEE5emptyEv:5 + 0: 1 + 183: _ZN9oceanbase3sql10ObQueryCtx12get_sql_stmtEv:7 + 0: 1 + 183.1: _ZNK9oceanbase6common8ObString5emptyEv:21 + 2: 1 + 2.1: 1 + 184: _ZN9oceanbase3sql10ObQueryCtx12set_sql_stmtEPKci:32 + 0: _ZN9oceanbase6common8ObString10assign_ptrEPKci:32 + 2: 1 + 3: 1 + 5: 1 + 186.1: _ZN9oceanbase3sql11ObResultSet13get_route_sqlEv:7 + 2: 1 + 198: _ZN9oceanbase3sql10ObQueryCtx12set_sql_stmtENS_6common8ObStringE:17 + 0: 1 + 200: _ZN9oceanbase3sql10ObQueryCtx12set_sql_stmtEPKci:21040 + 0: _ZN9oceanbase6common8ObString10assign_ptrEPKci:21040 + 2: 526 + 3: 526 + 5: 526 + 202.1: _ZN9oceanbase3sql11ObResultSet13get_route_sqlEv:3682 + 2: 526 + 206: _ZNK9oceanbase3sql6ObStmt13get_stmt_typeEv:1542 + 2: 514 + 206.1: _ZN9oceanbase3sql11ObResultSet13set_stmt_typeENS0_4stmt8StmtTypeE:3084 + 2: 514 + 207: _ZNK9oceanbase3sql10ObQueryCtx21get_literal_stmt_typeEv:4112 + 0: 514 + 207.1: _ZN9oceanbase3sql11ObResultSet21set_literal_stmt_typeENS0_4stmt8StmtTypeE:3084 + 2: 514 + 212: _ZNK9oceanbase3sql9ObDMLStmt18is_calc_found_rowsEv:10 + 0: 1 + 212.1: _ZN9oceanbase3sql11ObResultSet22set_is_calc_found_rowsEb:6 + 2: 1 + 213.1: _ZN9oceanbase3sql17ObPhysicalPlanCtx23set_is_affect_found_rowEb:6 + 0: 1 + 215.1: _ZNK9oceanbase6common8ObString6lengthEv:8 + 0: 1 + 217: _ZNK9oceanbase6common8ObString3ptrEv:8 + 0: 1 + 225: _ZN9oceanbase3sql11ObResultSet13set_returningEb:9 + 0: 1 + 228.1: _ZN9oceanbase3sql11ObResultSet23set_has_global_variableEb:6 + 0: 1 + 245.28: _ZN9oceanbase3sql16ObResolverParamsD2Ev:63789 + 0: _ZN9oceanbase6common4hash18ObPlacementHashSetImLm256ELb1EED2Ev:44448 + 0: _ZN9oceanbase6common8ObBitSetILl256ENS0_19ModulePageAllocatorELb1EED2Ev:44448 + 0: 534 + 0: _ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb1EED2Ev:40710 + 1: 534 + 3.2: 1 + 2: _ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb1EE7destroyEv:31072 + 9: 534 + 11: 1 + 13: 534 + 15: 534 + 24: 534 + 10: _ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb1EE14internal_free_EPv:81 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:81 + 0: 1 + 0.2: 1 + 0.1: _ZN9oceanbase6common7ob_freeEPv:51 + 2: 1 + 3: 1 + 4: 1 + 5: 1 + 4: _ZL12abort_unlessb:16 + 5: 1 + 6: 1 + 0.1: _ZN9oceanbase3sql14ExternalParamsD2Ev:19321 + 0: _ZN9oceanbase6common13ObSEArrayImplISt4pairIPNS_3sql9ObRawExprEPNS3_14ObConstRawExprEELl8ENS0_19ModulePageAllocatorELb0EED2Ev:19321 + 1: 534 + 3.2: 1 + 2: _ZN9oceanbase6common13ObSEArrayImplISt4pairIPNS_3sql9ObRawExprEPNS3_14ObConstRawExprEELl8ENS0_19ModulePageAllocatorELb0EE7destroyEv:9701 + 9: 534 + 11: 1 + 10: _ZN9oceanbase6common13ObSEArrayImplISt4pairIPNS_3sql9ObRawExprEPNS3_14ObConstRawExprEELl8ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:74 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:74 + 0: 1 + 0.2: 1 + 0.1: _ZN9oceanbase6common7ob_freeEPv:51 + 2: 1 + 3: 1 + 4: 1 + 5: 1 + 4: _ZL12abort_unlessb:16 + 5: 1 + 6: 1 + 245.30: _ZN9oceanbase3sql16ObResolverParamsD2Ev:290 + 0: _ZN9oceanbase6common4hash18ObPlacementHashSetImLm256ELb1EED2Ev:166 + 0: _ZN9oceanbase6common8ObBitSetILl256ENS0_19ModulePageAllocatorELb1EED2Ev:166 + 0: 1 + 0: _ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb1EED2Ev:159 + 1: 1 + 3.2: 1 + 2: _ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb1EE7destroyEv:133 + 9: 1 + 11: 1 + 13: 1 + 15: 1 + 24: 1 + 10: _ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb1EE14internal_free_EPv:65 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:65 + 0: 1 + 0.2: 1 + 0.1: _ZN9oceanbase6common7ob_freeEPv:44 + 2: 1 + 3: 1 + 4: 1 + 5: 1 + 4: _ZL12abort_unlessb:7 + 5: 1 + 6: 1 + 0.1: _ZN9oceanbase3sql14ExternalParamsD2Ev:124 + 0: _ZN9oceanbase6common13ObSEArrayImplISt4pairIPNS_3sql9ObRawExprEPNS3_14ObConstRawExprEELl8ENS0_19ModulePageAllocatorELb0EED2Ev:124 + 1: 1 + 3.2: 1 + 2: _ZN9oceanbase6common13ObSEArrayImplISt4pairIPNS_3sql9ObRawExprEPNS3_14ObConstRawExprEELl8ENS0_19ModulePageAllocatorELb0EE7destroyEv:98 + 9: 1 + 11: 1 + 10: _ZN9oceanbase6common13ObSEArrayImplISt4pairIPNS_3sql9ObRawExprEPNS3_14ObConstRawExprEELl8ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:65 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:65 + 0: 1 + 0.2: 1 + 0.1: _ZN9oceanbase6common7ob_freeEPv:44 + 2: 1 + 3: 1 + 4: 1 + 5: 1 + 4: _ZL12abort_unlessb:7 + 5: 1 + 6: 1 + 245.31: _ZN9oceanbase5trace16__ObFLTSpanGuardD2Ev:73 + 0: 1 + 0.1: 1 + 0.2: 1 + 0.4: 1 + 0.5: 1 + 0.7: 1 + 0.8: 1 + 0.12: 1 + 0.3: _ZNK9oceanbase5trace4UUID9is_initedEv:16 + 0: 1 + 0.1: 1 + 0.6: _ZN9oceanbase5trace7ObTrace13is_auto_flushEv:7 + 0: 1 + 245.33: _ZN9oceanbase5trace16__ObFLTSpanGuardD2Ev:2168 + 0: 527 + 0.1: 1 + 0.2: 1 + 0.4: 1 + 0.5: 1 + 0.7: 1 + 0.8: 1 + 0.12: 1 + 0.3: _ZNK9oceanbase5trace4UUID9is_initedEv:14 + 0: 1 + 0.1: 1 + 0.6: _ZN9oceanbase5trace7ObTrace13is_auto_flushEv:7 + 0: 1 +_ZN9oceanbase3sql11ObDASScanOp10release_opEv:1152789:4188 + 1: 4036 + 2: 4036 + 4: 4036 + 5: 4438 + 5.1: 4036 _ZN9oceanbase7storage15ObAccessService16revert_scan_iterEPNS_6common16ObNewRowIteratorE:4182 + 6.1: 12 + 7.1: 4438 + 8: 12 + 9.1: 12 + 13: 12 + 13.1: 4438 + 14: 4438 + 18: 4438 + 19: 4438 + 22: 4503 + 3: _ZN9oceanbase3sql11ObDASScanOp15get_tsc_serviceEv:315852 + 2: 4036 + 2.3: 4036 + 3: 12 + 2: _ZN9oceanbase6common16is_virtual_tableEm:44396 + 2: 4036 + 3.1: _ZN9oceanbase5share11ObTenantEnv3mtlIPNS_7storage15ObAccessServiceEEET_v:105788 + 2: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:105788 + 2: 4036 + 2.1: 12 + 2.2: 12 + 4: _ZN9oceanbase3sql11ObDASScanOp13get_lookup_opEv:56648 + 2: 4036 + 2.2: 12 + 2: _ZNK9oceanbase6common12ObIArrayWrapIPKNS_3sql14ObDASBaseCtDefEE5emptyEv:32288 + 0: 4036 + 5: _ZN9oceanbase3sql11ObDASScanOp21get_storage_scan_iterEv:68828 + 2: 4036 + 3.1: 12 + 2: _ZNK9oceanbase6common12ObIArrayWrapIPKNS_3sql14ObDASBaseCtDefEE5emptyEv:32288 + 0: 4036 + 4: _ZN9oceanbase3sql20ObLocalIndexLookupOp15get_rowkey_iterEv:108 + 0: 12 + 20: _ZN9oceanbase6common17ObVTableScanParam20destroy_schema_guardEv:49022 + 2: _ZN9oceanbase6common9call_dtorINS_5share6schema19ObSchemaGetterGuardEEEvRPT_:49022 + 2: 4438 + 3: 12 + 4: 12 +_ZN9oceanbase7storage18ObTenantMetaMemMgr10get_tabletERKNS0_18WashTabletPriorityERKNS0_14ObTabletMapKeyERNS0_14ObTabletHandleE:1143678:5421 + 4: 4994 + 5: 4994 + 6: 4994 + 7: 5298 + 8: 0 + 9.1: 0 + 10.1: 5298 + 11: 0 + 12.1: 0 + 13.1: 5674 _ZN9oceanbase7storage16ObMetaPointerMapINS0_14ObTabletMapKeyENS0_8ObTabletEE12get_meta_objERKS2_RNS_6common12ObIAllocatorERNS0_14ObMetaObjGuardIS3_EE:5415 + 15.1: 0 + 17.1: 5674 _ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE7get_objEv:6171 + 18: 0 + 19.1: 0 + 21: 5626 + 23: 5626 + 6: _ZN9oceanbase7storage14ObTabletHandle5resetEv:256960 + 2: 4994 + 3: 0 + 5: 5136 + 3: _ZNK9oceanbase7storage14ObTabletHandle15calc_wash_scoreENS0_18WashTabletPriorityE:0 + 2: 0 + 4: 0 + 4.2: 0 + 6: 0 + 7.1: 0 + 11: 0 + 12: 0 + 3.1: _ZN9oceanbase7storage8ObTablet17update_wash_scoreEl:0 + 3: 0 + 4: 0 + 5.1: 0 + 6: _ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE5resetEv:191328 + 2: 5136 + 3: 5298 + 2: _ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE9reset_objEv:41088 + 2: 5136 + 3: 0 + 4.1: 0 + 5: 0 + 7: 0 + 8: 0 + 9: 0 + 10.1: 0 + 11.1: 0 + 13: 0 + 7: _ZN9oceanbase7storage8ObTablet7dec_refEv:0 + 2: 0 + 10.1: _ZNK9oceanbase7storage14ObTabletMapKey8is_validEv:21192 + 2: _ZNK9oceanbase5share6ObLSID8is_validEv:21192 + 0: 5298 + 21: _ZN9oceanbase7storage14ObTabletHandle17set_wash_priorityENS0_18WashTabletPriorityE:22504 + 0: 5626 +_ZN9oceanbase6common16ObFixedArrayImplINS0_7ObFieldENS0_12ObIAllocatorEED2Ev:1143270:17062 + 0: 16041 + 0.1: 16721 + 0.3: 0 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS0_7ObFieldENS0_12ObIAllocatorEE7destroyEv:657280 + 2: 16041 + 5: 16041 + 9: 0 + 10: 0 + 12: 16721 + 13: 16721 + 15: 16721 +_ZN9oceanbase5share13ObTenantSpace13guard_init_cbERKS1_PcRb:1120290:5596 + 1: 5235 + 3: 5235 + 4: 5235 + 8: 5235 + 11: 5235 + 13: 5235 + 4: _ZN9oceanbase5share13ObTenantSpace4rootEv:83760 + 3: 5235 + 4: 0 + 4.1: 0 + 4.3: 0 + 4.4: 0 + 4.6: 0 + 5: 0 + 6: 0 + 7: 0 + 7.1: 0 + 7.3: 0 + 10: 0 + 12: 0 + 13: 0 + 4.2: _ZN9oceanbase3lib7ObMutexC2Ej:0 + 1: 0 + 7.2: _ZN9oceanbase5share13ObTenantSpaceC2EPNS0_12ObTenantBaseE:0 + 1: 0 + 0: _ZN9oceanbase5share10EntityBaseC2Ev:0 + 1: 0 + 7: _ZN9oceanbase3lib6Worker4selfEv:136110 + 3: 5235 + 4: 0 + 7.1: _ZN9oceanbase3lib6Worker22get_compatibility_modeEv:204165 + 2: _ZN9oceanbase3lib15get_compat_modeEv:204165 + 2: 5235 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:109935 + 2: 5235 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 9: _ZNK9oceanbase5share13ObTenantSpace10get_tenantEv:20940 + 0: 5235 + 9.1: _ZN9oceanbase5share12ObTenantBase3getINS_3lib6Worker10CompatModeEEET_v:31410 + 0: _ZN9oceanbase5share12ObTenantBase9inner_getENS1_8IdentityINS_3lib6Worker10CompatModeEEE:31410 + 0: 5235 + 10: _ZN9oceanbase3lib6Worker4selfEv:136110 + 3: 5235 + 4: 0 + 10.1: _ZN9oceanbase3lib6Worker22set_compatibility_modeENS1_10CompatModeE:204165 + 2: _ZN9oceanbase3lib15set_compat_modeENS0_6Worker10CompatModeE:204165 + 2: 5235 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:109935 + 2: 5235 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 +_ZN9oceanbase7storage16ObTableScanParamD2Ev:1119916:4767 + 0: 4503 + 0.1: 4503 _ZN9oceanbase11transaction16ObTxReadSnapshotD1Ev:4551 + 0: _ZN9oceanbase11transaction9ObTransIDD2Ev:49533 + 0: 4503 + 0.2: _ZN9oceanbase6common17ObVTableScanParamD2Ev:867937 + 1: 4571 + 3.3: 4564 + 2: _ZN9oceanbase6common17ObVTableScanParam20destroy_schema_guardEv:73136 + 2: _ZN9oceanbase6common9call_dtorINS_5share6schema19ObSchemaGetterGuardEEEvRPT_:73136 + 2: 4571 + 3: 0 + 4: 0 + 3: _ZN9oceanbase6common13ObSEArrayImplIlLl4ENS0_19ModulePageAllocatorELb0EED2Ev:324296 + 1: 4571 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplIlLl4ENS0_19ModulePageAllocatorELb0EE7destroyEv:242018 + 9: 4571 + 11: 0 + 13: 4564 + 15: 4564 + 24: 4564 + 10: _ZN9oceanbase6common13ObSEArrayImplIlLl4ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 3.3: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObNewRangeELl4ENS0_19ModulePageAllocatorELb0EED2Ev:86716 + 1: 4564 + 2: 4564 _ZN9oceanbase6common13ObSEArrayImplINS0_10ObNewRangeELl4ENS0_19ModulePageAllocatorELb0EE7destroyEv:4632 + 3.2: 0 + 3.4: _ZN9oceanbase6common13ObSEArrayImplImLl4ENS0_19ModulePageAllocatorELb0EED2Ev:238545 + 1: 4519 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplImLl4ENS0_19ModulePageAllocatorELb0EE7destroyEv:170760 + 9: 4519 + 11: 0 + 13: 4482 + 15: 4482 + 24: 4482 + 10: _ZN9oceanbase6common13ObSEArrayImplImLl4ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 3.6: _ZN9oceanbase6common10ObTabletIDD2Ev:49302 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:49302 + 0: 4482 +_ZN9oceanbase6common11ObFifoArena5allocElRNS1_6HandleEl:1116465:1504 + 1: 1391 + 5: 1391 + 8: 1357 + 10: 1357 + 11.1: 0 + 13.1: 1357 + 15: 0 + 15.1: 0 + 18: 0 + 20: 0 + 25.1: 2446 + 25.3: 2446 + 27: 2288 + 28: 2288 + 31: 2288 + 35: 27 + 39: 2446 + 45: 10 + 45.1: 10 + 47: 0 + 49.1: 10 + 52: 10 + 58.9: 1390 + 58.12: 0 + 5: _ZN9oceanbase6common11ObFifoArena11speed_limitEll:286772 + 3: 1357 + 5: 1357 + 6: 1357 + 6.4: 1357 + 7.1: 0 + 8.1: 1357 + 9: 0 + 10: 0 + 13: 0 + 14: 0 + 15: 0 + 16: 0 + 17: 0 + 20: 0 + 21: 0 + 22: 0 + 24: 0 + 26: 0 + 28: 0 + 28.1: 0 + 28.3: 0 + 28.4: 0 + 29.1: 0 + 3: _ZNK9oceanbase6common11ObFifoArena42get_writing_throttling_trigger_percentage_Ev:136145 + 2: 1391 + 2.1: 0 + 5: 0 + 5.1: 0 + 5.2: 0 + 5.3: 0 + 6.1: 0 + 7.1: 0 + 9.2: 0 + 11: 0 + 11.1: 0 + 12: 1357 + 2.1: _ZN9oceanbase6common15INTEGER_WRAPPERILl100EEC2Ev:0 + 0: 0 + 4: _Z22TC_REACH_TIME_INTERVALl:83627 + 4.1: 1391 _ZN9oceanbase6common14ObTscTimestamp12current_timeEv:1417 + 5: 1357 + 6: 0 + 4: _ZN9oceanbase6common14ObTscTimestamp12get_instanceEv:23647 + 2: 1391 + 2.1: 0 + 2.3: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common14ObTscTimestampC2Ev:0 + 1: 0 + 6: _ZN9oceanbase3omt19ObTenantConfigGuard8is_validEv:0 + 0: 0 + 10: _ZN9oceanbase6common11ObFifoArena19ObWriteThrottleInfo27check_and_calc_decay_factorElll:0 + 5: 0 + 5.1: 0 + 6: 0 + 6.1: 0 + 7: 0 + 7.1: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 12: 0 + 13: 0 + 14: 0 + 14.3: 0 + 15.1: 0 + 13: _ZN9oceanbase6common11ObFifoArena23get_throttling_intervalElll:0 + 5: 0 + 6: 0 + 9: 0 + 9.1: 0 + 9.3: 0 + 10: 0 + 11: 0 + 13: 0 + 22: _ZN9oceanbase6common11ObFifoArena19ObWriteThrottleInfo18record_limit_eventEl:0 + 2.1: 0 + 3: 0 + 4.1: 0 + 5: 0 + 24.1: _ZN9oceanbase6common10inc_updateIlEElPT_S2_:0 + 3: 0 + 4.1: 0 + 5: 0 + 25: _ZN9oceanbase6common11ObFifoArena19ObWriteThrottleInfo22reset_period_stat_infoEv:0 + 2: 0 + 3: 0 + 28: _ZN9oceanbase6common14ObTscTimestamp12get_instanceEv:0 + 2: 0 + 2.1: 0 + 2.3: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common14ObTscTimestampC2Ev:0 + 1: 0 + 6: _ZN9oceanbase6common11ObFifoArena6get_qsEv:23069 + 1: 1357 + 1.1: 0 + 1.6: 0 + 1.2: _ZN9oceanbase6common7ObQSyncC2Ev:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ObQSync3RefC2Ev:0 + 0: 0 + 6.1: _ZN9oceanbase6common18QSyncCriticalGuardC2ERNS0_7ObQSyncE:151984 + 0: 1357 + 0: _ZN9oceanbase6common7ObQSync11acquire_refEv:131629 + 2: 1357 + 3: 1357 + 4: 1357 + 5.1: 0 + 7: 1357 + 2: _ZN9oceanbase6common8get_itidEv:43424 + 4: 1357 + 5: 0 + 6: 0 + 8: 0 + 3: _ZN9oceanbase6common7ObQSync7add_refEll:27140 + 6: 1357 + 7: _ZN9oceanbase6common11ObFifoArena10get_way_idEv:59708 + 0: 1357 + 0: _ZN9oceanbase6common7icpu_idEv:42067 + 2: _ZN9oceanbase6common12sched_getcpuEv:42067 + 0: 1357 + 0: _ZN9oceanbase6common8get_itidEv:37996 + 4: 1357 + 5: 0 + 6: 0 + 8: 0 + 8: _ZN9oceanbase6common11ObFifoArena7get_idxEll:20355 + 0: 1357 + 19: _ZN9oceanbase6common11ObFifoArena4Page4holdEv:0 + 0: 0 + 19.1: _ZN9oceanbase6common11ObFifoArena6Handle13add_allocatedEl:0 + 0: 0 + 21: _ZN9oceanbase6common11ObFifoArena4Page6frozenEv:0 + 3: 0 + 3: _ZN9oceanbase6common11ObFifoArena4Page5allocERbl:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 10: 0 + 10: _ZN9oceanbase6common11ObFifoArena3Ref14add_alloc_sizeEl:0 + 1: 0 + 22: _ZN9oceanbase6common11ObFifoArena11retire_pageElRNS1_6HandleEPNS1_4PageE:0 + 3: 0 + 3: _ZN9oceanbase6common11ObFifoArena4Page4holdEv:0 + 0: 0 + 4: _ZN9oceanbase6common11ObFifoArena6Handle7add_refElPNS1_3RefE:0 + 1: 0 + 2: 0 + 29: _ZN9oceanbase6common11ObFifoArena6Handle13get_match_refElPNS1_4PageE:36608 + 1: 2288 + 2: 2288 + 2.1: 2288 + 31: _ZN9oceanbase6common11ObFifoArena6Handle5allocERbPNS1_3RefEPNS1_4PageEl:165121 + 2: 2302 + 2: _ZN9oceanbase6common11ObFifoArena4Page5allocERbl:147568 + 3: 2288 + 4: 2288 + 5: 1370 + 6: 1370 + 8: 2302 + 8.2: 2302 + 9: 2302 + 10: 10 + 10: _ZN9oceanbase6common11ObFifoArena3Ref14add_alloc_sizeEl:100 + 1: 10 + 3: _ZN9oceanbase6common11ObFifoArena3Ref14add_alloc_sizeEl:8331 + 1: 1384 + 33: _ZN9oceanbase6common11ObFifoArena9LockGuardC2ERl:567 + 1.1: 27 + 2: 27 + 65487: 27 + 34: _ZN9oceanbase6common11ObFifoArena6Handle13get_match_refElPNS1_4PageE:432 + 1: 27 + 2: 27 + 2.1: 27 + 37: _ZN9oceanbase6common11ObFifoArena9LockGuardD2Ev:0 + 1: 0 + 37.1: _ZN9oceanbase6common11ObFifoArena9LockGuardD2Ev:162 + 1: 27 + 43: _ZN9oceanbase6common11ObFifoArena11retire_pageElRNS1_6HandleEPNS1_4PageE:340 + 3: 10 + 3: _ZN9oceanbase6common11ObFifoArena4Page4holdEv:120 + 0: 10 + 4: _ZN9oceanbase6common11ObFifoArena6Handle7add_refElPNS1_3RefE:170 + 1: 10 + 2: 10 + 50: _ZN9oceanbase6common11ObFifoArena4Page4holdEv:80 + 0: 10 + 50.1: _ZN9oceanbase6common11ObFifoArena6Handle13add_allocatedEl:100 + 0: 10 + 58.9: _ZN9oceanbase6common18QSyncCriticalGuardD2Ev:73670 + 0: 1390 + 0.2: 0 + 0: _ZN9oceanbase6common7ObQSync11release_refEl:56990 + 2: 1390 + 3: 1390 + 4.1: 0 + 2: _ZN9oceanbase6common7ObQSync7add_refEll:43090 + 3: 1390 + 6: 1390 +_ZN9oceanbase7storage15ObAccessService16revert_scan_iterEPNS_6common16ObNewRowIteratorE:1115531:4182 + 1: 4071 + 2: 4071 + 3: 4071 + 4: 3 + 5.1: 3 + 6.1: 4071 + 8.1: 4071 + 11: 3 + 14.1: 4701 + 14.2: 3 + 14.4: 3 + 15: 4701 + 9: _ZN9oceanbase6common18ObServerObjectPoolINS_7storage19ObTableScanIteratorEE12get_instanceEv:69423 + 1: 4071 + 1.1: 3 + 1.2: 3 + 1.4: 3 + 1.6: 3 + 9.1: _ZN9oceanbase6common18ObServerObjectPoolINS_7storage19ObTableScanIteratorEE13return_objectEPS3_:662250 + 4: 4071 + 5: 4071 + 6: 4071 + 7: 4071 _ZN9oceanbase7storage19ObTableScanIterator5resetEv:4199 + 9: 4499 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:4531 + 12: 4706 + 13: 4706 + 14: 4706 + 15: 4706 + 16: 4706 + 19: 4071 + 21: 3 + 22: 3 + 25: 3 + 26: 3 + 8: _ZN9oceanbase6common26ObCacheLineSegregatedArrayINS0_15ObPoolArenaHeadEEixEl:109556 + 1: 4379 + 2: 4379 + 4.1: 3 + 5: 3 + 11: _ZN9oceanbase6common13ObLatchWGuardC2ERNS0_7ObLatchEj:132844 + 1: 4499 + 4: 4706 _ZN9oceanbase6common7ObLatch6wrlockEjlPKj:4524 + 5.1: 3 + 17: _ZN9oceanbase6common13ObLatchWGuardD2Ev:108457 + 2: 4706 + 3: 4706 _ZN9oceanbase6common7ObLatch6unlockEPKj:4800 + 3.1: 4716 + 3.2: 3 + 4.1: 3 + 4.5: 3 + 20: _ZN9oceanbase6common7ob_freeEPv:153 + 2: 3 + 3: 3 + 4: 3 + 5: 3 + 4: _ZL12abort_unlessb:48 + 5: 3 + 6: 3 + 21: _ZN9oceanbase6common26ObCacheLineSegregatedArrayINS0_15ObPoolArenaHeadEEixEl:144 + 1: 3 + 2: 3 + 4.1: 3 + 5: 3 + 24: _ZN9oceanbase6common13ObLatchWGuardC2ERNS0_7ObLatchEj:186 + 1: 3 + 4: 3 + 5.1: 3 + 6: 3 + 27: _ZN9oceanbase6common13ObLatchWGuardD2Ev:240 + 2: 3 + 3: 3 + 3.1: 3 + 3.2: 3 + 4.1: 3 + 4.5: 3 + 14.1: _ZN9oceanbase3lib20is_trace_log_enabledEv:37733 + 2: 4814 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:4896 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:32907 + 2: 4701 + 14.2: _ZN9oceanbase6common18get_trace_recorderEv:183 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:183 + 7: 3 + 8: 3 + 8.1: 3 + 14.4: _ZN9oceanbase3lib20is_trace_log_enabledEv:36 + 2: 3 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:21 + 2: 3 + 14.5: _ZN9oceanbase6common18get_trace_recorderEv:204 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:204 + 7: 3 + 8: 3 + 8.1: 3 + 14.11: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl189ELl1600EE9add_eventEv:228 + 2: 3 + 3.1: 3 + 6: 3 + 10: 3 + 11: 3 + 14.12: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:105 + 0: 3 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:15 + 2: 3 +_ZNSt17_Function_handlerIFblEZN9oceanbase3sql12ObSortOpImpl14before_add_rowEvE5$_970E9_M_invokeERKSt9_Any_dataOl.68271ef948b9e29c783f97102b0c767d:1111968:51303 + 1: 50544 + 2: 50544 + 2.1: _ZZN9oceanbase3sql12ObSortOpImpl14before_add_rowEvENK5$_970clEl:657072 + 0: 50544 + 0: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql17ObChunkDatumStore9StoredRowEE5countEv:353808 + 0: 50544 +_ZN9oceanbase3sql8ObSortOp7destroyEv:1107401:514 + 1: 501 + 7: 518 + 10: 518 + 11: 518 + 13: 518 + 2: _ZN9oceanbase3sql12ObSortOpImpl31unregister_profile_if_necessaryEv:7602 + 2: _ZN9oceanbase3sql20ObSqlMemMgrProcessor31unregister_profile_if_necessaryEv:7602 + 2: 501 + 3.1: 6 + 2: _ZNK9oceanbase3sql20ObSqlMemMgrProcessor15is_unregisteredEv:4008 + 0: 501 + 4: _ZN9oceanbase3sql20ObSqlMemMgrProcessor18unregister_profileEv:516 + 2: 6 + 3: 6 + 4: _ZN9oceanbase3sql20ObSqlMemMgrProcessor7destroyEv:372 + 2: 6 + 2.1: 6 + 3: 6 + 6: 6 + 7: 6 + 3: _ZN9oceanbase3sql12ObSortOpImplD2Ev:370693 + 1: 501 + 3.1: 6 + 3.6: 509 _ZN9oceanbase6common11ObArrayImplIPNS_3sql17ObChunkDatumStore9StoredRowENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEED2Ev:555 + 3.13: 6 + 3.14: 6 + 3.15: 6 + 2: _ZN9oceanbase3sql12ObSortOpImpl5resetEv:266931 + 6: 522 _ZN9oceanbase3sql17ObChunkDatumStore5resetEv:541 + 8: 524 + 12: 524 + 13: 524 + 15: 524 + 17: 524 + 18: 521 + 19: 6 + 20: 6 + 20.2: 6 + 21: 6 + 23: 521 + 24: 6 + 25: 6 + 25.2: 6 + 26: 6 + 28: 521 + 29: 6 + 29.2: 6 + 30: 6 + 32: 521 + 33: 6 + 33.2: 6 + 34: 6 + 38: 509 + 39: 509 + 2: _ZN9oceanbase3sql20ObSqlMemMgrProcessor18unregister_profileEv:570 + 2: 6 + 3: 6 + 4: _ZN9oceanbase3sql20ObSqlMemMgrProcessor7destroyEv:402 + 2: 6 + 2.1: 6 + 3: 6 + 6: 6 + 7: 6 + 3: _ZN9oceanbase3sql17ObChunkDatumStore8Iterator5resetEv:27903 + 0: 501 + 0.1: 501 _ZN9oceanbase3sql17ObChunkDatumStore13ChunkIterator5resetEv:521 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator5resetEv:15504 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator12reset_cursorEv:15504 + 3: 501 + 4: _ZN9oceanbase3sql12ObSortOpImpl5reuseEv:109224 + 2: 492 + 4: 492 + 5: 492 _ZN9oceanbase3sql17ObChunkDatumStore5resetEv:505 + 6: 522 + 8: 522 + 9: 522 + 10.1: 522 + 12: 6 + 13: 6 + 14: 6 + 14.2: 6 + 17: 522 + 20: 522 + 21: 522 + 3: _ZN9oceanbase3sql17ObChunkDatumStore8Iterator5resetEv:15252 + 0: 492 + 0.1: 492 _ZN9oceanbase3sql17ObChunkDatumStore13ChunkIterator5resetEv:507 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator5resetEv:9840 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator12reset_cursorEv:9840 + 2: 492 + 4: _ZN9oceanbase6common11ObArrayImplIPNS_3sql17ObChunkDatumStore9StoredRowENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEE5reuseEv:20238 + 3: 492 + 6: 6 + 4: _ZN9oceanbase6common11ObArrayImplIPNS_3sql17ObChunkDatumStore9StoredRowENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEE13do_clear_funcERS8_:10332 + 3: 492 + 4: 492 + 10.1: _ZNK9oceanbase6common7ObDListINS_3sql13ObSortOpChunkEE8is_emptyEv:5220 + 0: 522 + 11: _ZN9oceanbase6common7ObDListINS_3sql13ObSortOpChunkEE12remove_firstEv:408 + 2: _ZN9oceanbase6common7ObDListINS_3sql13ObSortOpChunkEE6removeEPS3_:408 + 3: 6 + 7: 6 + 6: _ZN9oceanbase6common11ObDLinkBaseINS_3sql13ObSortOpChunkEE6unlinkEv:216 + 2: 6 + 4: 6 + 5: 6 + 6: 6 + 7: 6 + 13: _ZN9oceanbase3libneEDnRKNS0_13MemoryContextE:60 + 1: 6 + 1: _ZNK9oceanbase3lib13MemoryContext11ref_contextEv:42 + 1: 6 + 14.1: _ZN9oceanbase3lib17__MemoryContext__20get_malloc_allocatorEv:42 + 0: 6 + 18: _ZN9oceanbase6common16ObBinaryHeapBaseIPPNS_3sql17ObChunkDatumStore9StoredRowENS2_12ObSortOpImpl7CompareELl16EE5resetEv:156 + 2: 6 + 3: 6 + 2: _ZN9oceanbase6common13ObSEArrayImplIPPNS_3sql17ObChunkDatumStore9StoredRowELl16ENS0_19ModulePageAllocatorELb0EE5resetEv:42 + 0: 6 + 22: _ZN9oceanbase6common16ObBinaryHeapBaseIPNS_3sql13ObSortOpChunkENS2_12ObSortOpImpl7CompareELl256EE5resetEv:156 + 2: 6 + 3: 6 + 2: _ZN9oceanbase6common13ObSEArrayImplIPNS_3sql13ObSortOpChunkELl256ENS0_19ModulePageAllocatorELb0EE5resetEv:42 + 0: 6 + 5: _ZN9oceanbase6common11ObArrayImplIPNS_3sql17ObChunkDatumStore9StoredRowENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEE5resetEv:35920 + 0: 522 + 0: _ZN9oceanbase6common11ObArrayImplIPNS_3sql17ObChunkDatumStore9StoredRowENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEE7destroyEv:25438 + 2: 522 + 7: 8 + 9: 522 + 11: 522 + 6: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:254 + 0: 8 + 0.1: 6 + 0.2: 8 + 11: _ZN9oceanbase3sql12ObSortOpImpl7Compare5resetEv:19439 + 0: _ZN9oceanbase3sql12ObSortOpImpl7CompareC2Ev:19439 + 1: 541 + 17: _ZN9oceanbase3libneEDnRKNS0_13MemoryContextE:4192 + 1: 524 + 20: _ZNK9oceanbase3lib13MemoryContextptEv:42 + 1: 6 + 20.1: _ZN9oceanbase3lib17__MemoryContext__20get_malloc_allocatorEv:42 + 0: 6 + 25: _ZNK9oceanbase3lib13MemoryContextptEv:42 + 1: 6 + 25.1: _ZN9oceanbase3lib17__MemoryContext__20get_malloc_allocatorEv:42 + 0: 6 + 29: _ZNK9oceanbase3lib13MemoryContextptEv:42 + 1: 6 + 29.1: _ZN9oceanbase3lib17__MemoryContext__20get_malloc_allocatorEv:42 + 0: 6 + 33: _ZNK9oceanbase3lib13MemoryContextptEv:42 + 1: 6 + 33.1: _ZN9oceanbase3lib17__MemoryContext__20get_malloc_allocatorEv:42 + 0: 6 + 3.7: _ZN9oceanbase3sql17ObChunkDatumStore8IteratorD2Ev:36788 + 0: 541 + 0.1: 541 _ZN9oceanbase3sql17ObChunkDatumStore13ChunkIteratorD1Ev:543 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIteratorD2Ev:22722 + 0: 541 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator5resetEv:10820 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator12reset_cursorEv:10820 + 3: 541 + 3.8: _ZN9oceanbase3sql17ObChunkDatumStoreD2Ev:21154 + 0: 548 _ZN9oceanbase3sql17ObChunkDatumStore5resetEv:565 + 0.1: 562 + 0.2: 6 + 0.4: 561 _ZN9oceanbase12blocksstable15ObTmpFileIOInfoD1Ev:576 + 0.5: 562 _ZN9oceanbase12blocksstable17ObTmpFileIOHandleD1Ev:574 + 0.6: 6 + 3.9: _ZN9oceanbase3sql12ObSortOpImpl18MemEntifyFreeGuardD2Ev:35915 + 2: 511 + 2.1: 511 + 2.2: 6 + 4: 564 + 2: _ZN9oceanbase3libneEDnRKNS0_13MemoryContextE:3577 + 1: 511 + 1: _ZNK9oceanbase3lib13MemoryContext11ref_contextEv:2044 + 1: 511 + 3: _ZN9oceanbase3lib17__MemoryContext__15destory_contextERNS0_13MemoryContextE:13514 + 3: 6 + 4: 6 + 5: 492 + 6: 492 _ZN9oceanbase3lib17__MemoryContext__15destory_contextEPS1_:536 + 2: _ZNK9oceanbase3lib13MemoryContext16check_magic_codeEv:1476 + 0: 492 + 2.1: _ZL12abort_unlessb:2982 + 5: 492 + 6: 6 + 5: _ZL12abort_unlessb:3012 + 5: 492 + 6: 6 + 4: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:10740 + 2: 564 + 8: 564 + 4: _ZN9oceanbase3sql12ObSortOpImpl31unregister_profile_if_necessaryEv:11748 + 2: _ZN9oceanbase3sql20ObSqlMemMgrProcessor31unregister_profile_if_necessaryEv:11748 + 2: 532 + 3.1: 6 + 2: _ZNK9oceanbase3sql20ObSqlMemMgrProcessor15is_unregisteredEv:7980 + 0: 532 + 4: _ZN9oceanbase3sql20ObSqlMemMgrProcessor18unregister_profileEv:546 + 2: 6 + 3: 6 + 4: _ZN9oceanbase3sql20ObSqlMemMgrProcessor7destroyEv:402 + 2: 6 + 2.1: 6 + 3: 6 + 6: 6 + 7: 6 + 5: _ZN9oceanbase3sql16ObPrefixSortImplD2Ev:369674 + 0: 532 + 0: _ZN9oceanbase3sql17ObChunkDatumStoreD2Ev:15794 + 0: 532 _ZN9oceanbase3sql17ObChunkDatumStore5resetEv:534 + 0.1: 593 + 0.2: 6 + 0.4: 553 _ZN9oceanbase12blocksstable15ObTmpFileIOInfoD1Ev:561 + 0.5: 593 _ZN9oceanbase12blocksstable17ObTmpFileIOHandleD1Ev:591 + 0.6: 6 + 0.1: _ZN9oceanbase3sql17ObChunkDatumStore15ShadowStoredRowD2Ev:24202 + 0: 545 + 0.2: 6 + 0: _ZN9oceanbase3sql17ObChunkDatumStore15ShadowStoredRow5resetEv:14344 + 2: 545 + 2.1: 6 + 3: 6 + 6: 545 + 0.4: _ZN9oceanbase3sql12ObSortOpImplD2Ev:312545 + 1: 545 + 3.1: 6 + 3.6: 546 _ZN9oceanbase6common11ObArrayImplIPNS_3sql17ObChunkDatumStore9StoredRowENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEED2Ev:545 + 3.13: 6 + 3.14: 6 + 3.15: 6 + 2: _ZN9oceanbase3sql12ObSortOpImpl5resetEv:253695 + 6: 539 _ZN9oceanbase3sql17ObChunkDatumStore5resetEv:567 + 8: 546 + 12: 546 + 13: 546 + 15: 546 + 17: 546 + 18: 6 + 19: 6 + 20: 6 + 20.2: 6 + 21: 6 + 23: 6 + 24: 6 + 25: 6 + 25.2: 6 + 26: 6 + 28: 6 + 29: 6 + 29.2: 6 + 30: 6 + 32: 6 + 33: 6 + 33.2: 6 + 34: 6 + 38: 546 + 39: 546 + 2: _ZN9oceanbase3sql20ObSqlMemMgrProcessor18unregister_profileEv:6295 + 2: 545 + 3: 4 + 4: _ZN9oceanbase3sql20ObSqlMemMgrProcessor7destroyEv:248 + 2: 4 + 2.1: 4 + 3: 4 + 6: 4 + 7: 4 + 3: _ZN9oceanbase3sql17ObChunkDatumStore8Iterator5resetEv:27672 + 0: 559 + 0.1: 559 _ZN9oceanbase3sql17ObChunkDatumStore13ChunkIterator5resetEv:561 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator5resetEv:13975 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator12reset_cursorEv:13975 + 3: 559 + 4: _ZN9oceanbase3sql12ObSortOpImpl5reuseEv:111886 + 2: 538 + 4: 482 + 5: 482 _ZN9oceanbase3sql17ObChunkDatumStore5resetEv:557 + 6: 539 + 8: 539 + 9: 539 + 10.1: 539 + 12: 6 + 13: 6 + 14: 6 + 14.2: 6 + 17: 539 + 20: 539 + 21: 539 + 3: _ZN9oceanbase3sql17ObChunkDatumStore8Iterator5resetEv:16302 + 0: 482 + 0.1: 538 _ZN9oceanbase3sql17ObChunkDatumStore13ChunkIterator5resetEv:534 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator5resetEv:10760 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator12reset_cursorEv:10760 + 2: 538 + 4: _ZN9oceanbase6common11ObArrayImplIPNS_3sql17ObChunkDatumStore9StoredRowENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEE5reuseEv:19828 + 3: 482 + 6: 6 + 4: _ZN9oceanbase6common11ObArrayImplIPNS_3sql17ObChunkDatumStore9StoredRowENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEE13do_clear_funcERS8_:10122 + 3: 482 + 4: 482 + 10.1: _ZNK9oceanbase6common7ObDListINS_3sql13ObSortOpChunkEE8is_emptyEv:5390 + 0: 539 + 11: _ZN9oceanbase6common7ObDListINS_3sql13ObSortOpChunkEE12remove_firstEv:408 + 2: _ZN9oceanbase6common7ObDListINS_3sql13ObSortOpChunkEE6removeEPS3_:408 + 3: 6 + 7: 6 + 6: _ZN9oceanbase6common11ObDLinkBaseINS_3sql13ObSortOpChunkEE6unlinkEv:216 + 2: 6 + 4: 6 + 5: 6 + 6: 6 + 7: 6 + 13: _ZN9oceanbase3libneEDnRKNS0_13MemoryContextE:60 + 1: 6 + 1: _ZNK9oceanbase3lib13MemoryContext11ref_contextEv:42 + 1: 6 + 14.1: _ZN9oceanbase3lib17__MemoryContext__20get_malloc_allocatorEv:42 + 0: 6 + 18: _ZN9oceanbase6common16ObBinaryHeapBaseIPPNS_3sql17ObChunkDatumStore9StoredRowENS2_12ObSortOpImpl7CompareELl16EE5resetEv:156 + 2: 6 + 3: 6 + 2: _ZN9oceanbase6common13ObSEArrayImplIPPNS_3sql17ObChunkDatumStore9StoredRowELl16ENS0_19ModulePageAllocatorELb0EE5resetEv:42 + 0: 6 + 22: _ZN9oceanbase6common16ObBinaryHeapBaseIPNS_3sql13ObSortOpChunkENS2_12ObSortOpImpl7CompareELl256EE5resetEv:156 + 2: 6 + 3: 6 + 2: _ZN9oceanbase6common13ObSEArrayImplIPNS_3sql13ObSortOpChunkELl256ENS0_19ModulePageAllocatorELb0EE5resetEv:42 + 0: 6 + 5: _ZN9oceanbase6common11ObArrayImplIPNS_3sql17ObChunkDatumStore9StoredRowENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEE5resetEv:37076 + 0: 539 + 0: _ZN9oceanbase6common11ObArrayImplIPNS_3sql17ObChunkDatumStore9StoredRowENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEE7destroyEv:26254 + 2: 539 + 7: 8 + 9: 539 + 11: 539 + 6: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:254 + 0: 8 + 0.1: 6 + 0.2: 8 + 11: _ZN9oceanbase3sql12ObSortOpImpl7Compare5resetEv:20178 + 0: _ZN9oceanbase3sql12ObSortOpImpl7CompareC2Ev:20178 + 1: 546 + 17: _ZN9oceanbase3libneEDnRKNS0_13MemoryContextE:6552 + 1: 546 + 20: _ZNK9oceanbase3lib13MemoryContextptEv:42 + 1: 6 + 20.1: _ZN9oceanbase3lib17__MemoryContext__20get_malloc_allocatorEv:42 + 0: 6 + 25: _ZNK9oceanbase3lib13MemoryContextptEv:42 + 1: 6 + 25.1: _ZN9oceanbase3lib17__MemoryContext__20get_malloc_allocatorEv:42 + 0: 6 + 29: _ZNK9oceanbase3lib13MemoryContextptEv:42 + 1: 6 + 29.1: _ZN9oceanbase3lib17__MemoryContext__20get_malloc_allocatorEv:42 + 0: 6 + 33: _ZNK9oceanbase3lib13MemoryContextptEv:42 + 1: 6 + 33.1: _ZN9oceanbase3lib17__MemoryContext__20get_malloc_allocatorEv:42 + 0: 6 + 3.7: _ZN9oceanbase3sql17ObChunkDatumStore8IteratorD2Ev:20998 + 0: 538 + 0.1: 538 _ZN9oceanbase3sql17ObChunkDatumStore13ChunkIteratorD1Ev:538 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIteratorD2Ev:12912 + 0: 538 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator5resetEv:9146 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator12reset_cursorEv:9146 + 3: 538 + 3.8: _ZN9oceanbase3sql17ObChunkDatumStoreD2Ev:14538 + 0: 520 _ZN9oceanbase3sql17ObChunkDatumStore5resetEv:544 + 0.1: 558 + 0.2: 6 + 0.4: 520 _ZN9oceanbase12blocksstable15ObTmpFileIOInfoD1Ev:523 + 0.5: 558 _ZN9oceanbase12blocksstable17ObTmpFileIOHandleD1Ev:569 + 0.6: 6 + 3.9: _ZN9oceanbase3sql12ObSortOpImpl18MemEntifyFreeGuardD2Ev:10532 + 2: 496 + 2.1: 496 + 2.2: 6 + 4: 6 + 2: _ZN9oceanbase3libneEDnRKNS0_13MemoryContextE:3472 + 1: 496 + 1: _ZNK9oceanbase3lib13MemoryContext11ref_contextEv:1984 + 1: 496 + 3: _ZN9oceanbase3lib17__MemoryContext__15destory_contextERNS0_13MemoryContextE:384 + 3: 6 + 4: 6 + 5: 6 + 6: 6 + 2: _ZNK9oceanbase3lib13MemoryContext16check_magic_codeEv:18 + 0: 6 + 2.1: _ZL12abort_unlessb:66 + 5: 6 + 6: 6 + 5: _ZL12abort_unlessb:96 + 5: 6 + 6: 6 + 4: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:138 + 2: 6 + 8: 6 + 6: _ZN9oceanbase3sql22ObInMemoryTopnSortImplD2Ev:302172 + 1: 496 + 3: 496 _ZN9oceanbase6common11ObArrayImplIPNS_3sql22ObInMemoryTopnSortImpl13SortStoredRowENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEED2Ev:508 + 3.1: 6 + 3.2: 6 + 3.4: 516 _ZN9oceanbase6common16ObBinaryHeapBaseIPNS_3sql22ObInMemoryTopnSortImpl13SortStoredRowENS2_12ObSortOpImpl7CompareELl50EED2Ev:534 + 3.6: 6 + 3.7: 6 + 3.8: 6 + 2: _ZN9oceanbase3sql22ObInMemoryTopnSortImpl5resetEv:190372 + 3: 496 + 7: 496 + 10: 496 + 12: 496 + 10: _ZN9oceanbase6common16ObBinaryHeapBaseIPNS_3sql22ObInMemoryTopnSortImpl13SortStoredRowENS2_12ObSortOpImpl7CompareELl50EE5resetEv:59312 + 3: 496 + 2: _ZN9oceanbase6common13ObSEArrayImplIPNS_3sql22ObInMemoryTopnSortImpl13SortStoredRowELl50ENS0_19ModulePageAllocatorELb0EE5resetEv:40858 + 0: 496 + 0: _ZN9oceanbase6common13ObSEArrayImplIPNS_3sql22ObInMemoryTopnSortImpl13SortStoredRowELl50ENS0_19ModulePageAllocatorELb0EE7destroyEv:28912 + 9: 496 + 11: 6 + 13: 496 + 15: 496 + 24: 496 + 10: _ZN9oceanbase6common13ObSEArrayImplIPNS_3sql22ObInMemoryTopnSortImpl13SortStoredRowELl50ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:72 + 4: 6 + 3: _ZN9oceanbase6common16ObBinaryHeapBaseIPNS_3sql22ObInMemoryTopnSortImpl13SortStoredRowENS2_12ObSortOpImpl7CompareELl50EE20reset_root_cmp_cacheEv:3472 + 0: 496 + 11: _ZN9oceanbase6common16ObArenaAllocator5resetEv:35566 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:35566 + 4.1: 496 + 6: 6 + 7: 6 + 13: 496 + 14: 496 + 15: 496 + 18: 496 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:18 + 0: 6 + 5.1: _ZL12abort_unlessb:66 + 5: 6 + 6: 6 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:516 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:516 + 0: 6 + 0.2: 6 + 0.1: _ZN9oceanbase6common7ob_freeEPv:366 + 2: 6 + 3: 6 + 4: 6 + 5: 6 + 4: _ZL12abort_unlessb:96 + 5: 6 + 6: 6 + 12: _ZN9oceanbase6common11ObArrayImplIPNS_3sql22ObInMemoryTopnSortImpl13SortStoredRowENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEE5resetEv:35940 + 0: 496 + 0: _ZN9oceanbase6common11ObArrayImplIPNS_3sql22ObInMemoryTopnSortImpl13SortStoredRowENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEE7destroyEv:23976 + 2: 496 + 6: 6 + 7: 6 + 9: 496 + 11: 496 + 13: _ZN9oceanbase6common16ObArenaAllocator5resetEv:37174 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:37174 + 4.1: 496 + 6: 6 + 7: 6 + 13: 496 + 14: 496 + 15: 516 + 18: 496 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:84 + 0: 6 + 5.1: _ZL12abort_unlessb:66 + 5: 6 + 6: 6 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:546 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:546 + 0: 6 + 0.2: 6 + 0.1: _ZN9oceanbase6common7ob_freeEPv:366 + 2: 6 + 3: 6 + 4: 6 + 5: 6 + 4: _ZL12abort_unlessb:96 + 5: 6 + 6: 6 + 3.3: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:50316 + 0: 516 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEED2Ev:41028 + 0: 516 + 0.3: 6 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:31692 + 4.1: 516 + 6: 6 + 7: 6 + 13: 516 + 14: 516 + 15: 516 + 18: 516 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:78 + 0: 6 + 5.1: _ZL12abort_unlessb:42 + 5: 6 + 6: 6 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:408 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:408 + 0: 6 + 0.2: 6 + 0.1: _ZN9oceanbase6common7ob_freeEPv:282 + 2: 6 + 3: 6 + 4: 6 + 5: 6 + 4: _ZL12abort_unlessb:78 + 5: 6 + 6: 6 + 3.5: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:40744 + 0: 518 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEED2Ev:37118 + 0: 518 + 0.3: 6 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:33444 + 4.1: 518 + 6: 6 + 7: 6 + 13: 518 + 14: 518 + 15: 518 + 18: 518 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:18 + 0: 6 + 5.1: _ZL12abort_unlessb:66 + 5: 6 + 6: 6 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:480 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:480 + 0: 6 + 0.2: 6 + 0.1: _ZN9oceanbase6common7ob_freeEPv:330 + 2: 6 + 3: 6 + 4: 6 + 5: 6 + 4: _ZL12abort_unlessb:96 + 5: 6 + 6: 6 +_ZN9oceanbase3lib9ObjectSetC2EPNS0_17__MemoryContext__Ej:1103295:10231 + 1: 9813 + 2: 9813 + 4: 9477 + 7: 9477 + 8.1: 9477 + 9: 9813 + 4: _ZN9oceanbase3lib7ObMutexC2Ej:143835 + 1: 9813 _ZN9oceanbase6common12ObLatchMutexC1Ev:10416 + 8: _ZN9oceanbase3lib11AllocHelper15cells_per_blockEj:37908 + 1: 9477 +_ZN9oceanbase3lib9ObjectSetC1EPNS0_17__MemoryContext__Ej:1103295:10231 + 1: 9813 + 2: 9813 + 4: 9477 + 7: 9477 + 8.1: 9477 + 9: 9813 + 4: _ZN9oceanbase3lib7ObMutexC2Ej:143835 + 1: 9813 _ZN9oceanbase6common12ObLatchMutexC1Ev:10416 + 8: _ZN9oceanbase3lib11AllocHelper15cells_per_blockEj:37908 + 1: 9477 +_ZN9oceanbase3sql16ObDASUpdIterator12get_next_rowERPNS_6common8ObNewRowE:1103085:1026 + 1: 982 + 2: 982 + 3: 982 + 4: 982 + 5: 661 + 6: 661 + 7: 327 + 8.1: 0 + 9.1: 327 + 10.1: 0 + 14: 337 + 14.1: 684 + 15: 338 + 16.1: 0 + 20: 0 + 21: 349 + 23.1: 0 + 25.1: 349 + 30.1: 0 + 31.1: 314 + 36.1: 0 + 38: 310 + 39.1: 310 _ZZN9oceanbase3sql16ObDASUpdIterator12get_next_rowERPNS_6common8ObNewRowEENK5$_384clEPKc.45c27dd3dc8b42ec4ef71c6f367bd924:329 + 48: 322 + 49: 322 + 50: 0 + 51.1: 0 + 53: 322 + 59: 982 + 7: _ZNK9oceanbase6common12ObIArrayWrapIlE5countEv:4564 + 0: 326 + 7.1: _ZN9oceanbase6common13ob_create_rowINS0_12ObIAllocatorEEEiRT_lRPNS0_8ObNewRowE:127606 + 2: 326 + 3: 326 + 4: 0 + 5.1: 0 + 9: 326 + 10: 326 + 11: 0 + 12.1: 0 + 14: 326 + 15: 326 + 16: 326 + 16.1: 326 + 16.2: 326 + 16.3: 327 + 17: 327 + 18: 327 + 19: 327 + 22: 327 + 10: _ZN9oceanbase6common26ObWrapperAllocatorWithAttr5allocEl:51508 + 0: 0 + 0: _ZN9oceanbase6common18ObWrapperAllocator5allocElRKNS_3lib9ObMemAttrE:51508 + 2: 326 + 2.2: 326 + 2.2: _ZN9oceanbase6common16ObArenaAllocator5allocElRKNS_3lib9ObMemAttrE:40750 + 3: _ZN9oceanbase6common16ObArenaAllocator5allocEl:40750 + 0: 326 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13alloc_alignedEll:39446 + 3: 326 + 6: 326 + 7: 326 + 8: 326 + 10: 326 + 11: 326 + 12: 326 + 13: 326 + 15.1: 0 + 16: 0 + 18: 0 + 20: 0 + 28: 0 + 35: 326 + 36: 326 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE15ensure_cur_pageEv:4238 + 2: 326 + 3: 0 + 5.1: 0 + 8: 0 + 9: 0 + 10: 0 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:0 + 2: 0 + 2.2: 0 + 2.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 9: _ZSt3maxIlERKT_S2_S2_:0 + 5: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 8: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:0 + 0: 0 + 7: _ZN9oceanbase6common16get_align_offsetEPvl:4238 + 3: 326 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:2282 + 0: 326 + 11: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:2282 + 7: 326 + 15.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE18is_normal_overflowEl:0 + 2: 0 + 16: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11extend_pageEl:0 + 4: 0 + 5: 0 + 8: 0 + 9: 0 + 10.1: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 12: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_tailEPNS3_4PageE:0 + 2: 0 + 3: 0 + 5: 0 + 23.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16lookup_next_pageEl:0 + 3.1: 0 + 4.1: 0 + 5: 0 + 5.1: 0 + 7: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page10reuse_sizeEv:0 + 0: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 32: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9alloc_bigEl:0 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 3: 0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_headEPNS3_4PageE:0 + 4: 0 + 5: 0 + 7: 0 + 7: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:0 + 3: 0 + 15: _ZN9oceanbase6common8ObNewRowC2Ev:5542 + 2: 326 + 16.2: _ZN9oceanbase6common5ObObjC2Ev:15374 + 2: _ZN9oceanbase6common5ObObj5resetEv:15374 + 6: 326 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4906 + 0: 326 + 9.1: _ZN9oceanbase3sql16ObDASWriteBuffer5beginERNS1_8IteratorE:8502 + 2: 327 + 3: 327 + 4: 327 + 5: 0 + 6: 0 + 7: 0 + 8.1: 0 + 10: 0 + 11: 0 + 14: 0 + 11: _ZN9oceanbase3sql17ObChunkDatumStore5beginERNS1_8IteratorElPKNS1_12IterationAgeE:0 + 2: 0 + 15: _ZNK9oceanbase6common12ObIArrayWrapIlE5countEv:4718 + 0: 337 + 15.1: _ZN9oceanbase6common13ob_create_rowINS0_12ObIAllocatorEEEiRT_lRPNS0_8ObNewRowE:135138 + 2: 337 + 3: 337 + 4: 0 + 5.1: 0 + 9: 337 + 10: 337 + 11: 0 + 12.1: 0 + 14: 337 + 15: 337 + 16: 337 + 16.1: 337 + 16.2: 337 + 16.3: 338 + 17: 338 + 18: 338 + 19: 338 + 22: 338 + 10: _ZN9oceanbase6common26ObWrapperAllocatorWithAttr5allocEl:53246 + 0: 0 + 0: _ZN9oceanbase6common18ObWrapperAllocator5allocElRKNS_3lib9ObMemAttrE:53246 + 2: 337 + 2.2: 337 + 2.2: _ZN9oceanbase6common16ObArenaAllocator5allocElRKNS_3lib9ObMemAttrE:42125 + 3: _ZN9oceanbase6common16ObArenaAllocator5allocEl:42125 + 0: 337 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13alloc_alignedEll:40777 + 3: 337 + 6: 337 + 7: 337 + 8: 337 + 10: 337 + 11: 337 + 12: 337 + 13: 337 + 15.1: 0 + 16: 0 + 18: 0 + 20: 0 + 28: 0 + 35: 337 + 36: 337 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE15ensure_cur_pageEv:4381 + 2: 337 + 3: 0 + 5.1: 0 + 8: 0 + 9: 0 + 10: 0 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:0 + 2: 0 + 2.2: 0 + 2.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 9: _ZSt3maxIlERKT_S2_S2_:0 + 5: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 8: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:0 + 0: 0 + 7: _ZN9oceanbase6common16get_align_offsetEPvl:4381 + 3: 337 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:2359 + 0: 337 + 11: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:2359 + 7: 337 + 15.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE18is_normal_overflowEl:0 + 2: 0 + 16: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11extend_pageEl:0 + 4: 0 + 5: 0 + 8: 0 + 9: 0 + 10.1: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 12: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_tailEPNS3_4PageE:0 + 2: 0 + 3: 0 + 5: 0 + 23.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16lookup_next_pageEl:0 + 3.1: 0 + 4.1: 0 + 5: 0 + 5.1: 0 + 7: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page10reuse_sizeEv:0 + 0: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 32: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9alloc_bigEl:0 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 3: 0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_headEPNS3_4PageE:0 + 4: 0 + 5: 0 + 7: 0 + 7: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:0 + 3: 0 + 15: _ZN9oceanbase6common8ObNewRowC2Ev:5729 + 2: 337 + 16.2: _ZN9oceanbase6common5ObObjC2Ev:16319 + 2: _ZN9oceanbase6common5ObObj5resetEv:16319 + 6: 337 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:5436 + 0: 337 + 21: _ZN9oceanbase3sql16ObDASWriteBuffer8Iterator12get_next_rowERPKNS0_17ObChunkDatumStore9StoredRowE:23365 + 2: 686 + 3: 686 + 5: 349 + 6: 349 + 7.1: 330 + 8: 344 + 9.1: 0 + 11.1: 0 + 13.1: 0 + 14: 0 + 15.1: 0 + 17: 349 + 6: _ZN9oceanbase3sql16ObDASWriteBuffer16get_next_dml_rowEPNS0_17ObChunkDatumStore9StoredRowE:1396 + 5: 349 + 25.1: _ZN9oceanbase3sql10ObDASUtils19project_storage_rowERKNS0_17ObDASDMLBaseCtDefERKNS0_17ObChunkDatumStore9StoredRowERKNS_6common12ObFixedArrayIlNS9_12ObIAllocatorEEERSB_RNS9_8ObNewRowE:334095 + 6: 349 + 7.1: 1312 + 7.2: 1655 + 7.3: 1655 + 7.5: 1312 + 8: 1335 + 11: 1335 + 13: 1335 + 14.1: 721 + 15.1: 0 + 17.1: 721 + 18.1: 0 + 22.1: 314 + 24: 0 + 25: 0 + 29.1: 0 + 29.3: 0 + 37.1: 0 + 37.3: 0 + 42: 0 + 43.1: 0 + 43.3: 0 + 45: 0 + 49: 0 + 8: _ZNK9oceanbase6common12ObIArrayWrapIlE2atEl:9345 + 6: 1335 + 13: _ZN9oceanbase6common5ObObj13set_nop_valueEv:13335 + 2: _ZN9oceanbase6common5ObObj7set_extEl:13335 + 4: 635 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:7620 + 0: 635 + 14.2: _ZNK9oceanbase6common7ObDatum6to_objERNS0_5ObObjERKNS0_9ObObjMetaE:48871 + 2: 692 + 3: 692 + 6: 692 + 7: 692 + 84: 0 + 85.1: 0 + 89: 0 + 7: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:5536 + 0: 692 + 27: _ZNK9oceanbase6common7ObDatum9datum2objILNS0_17ObObjDatumMapTypeE1EEEvRNS0_5ObObjE:1335 + 2: 89 + 3: 89 + 33: _ZNK9oceanbase6common7ObDatum9datum2objILNS0_17ObObjDatumMapTypeE2EEEvRNS0_5ObObjE:0 + 2: 0 + 3: 0 + 56: _ZNK9oceanbase6common7ObDatum9datum2objILNS0_17ObObjDatumMapTypeE3EEEvRNS0_5ObObjE:3792 + 3: 632 + 62: _ZNK9oceanbase6common7ObDatum9datum2objILNS0_17ObObjDatumMapTypeE4EEEvRNS0_5ObObjE:0 + 3: 0 + 4: 0 + 66: _ZNK9oceanbase6common7ObDatum9datum2objILNS0_17ObObjDatumMapTypeE5EEEvRNS0_5ObObjE:0 + 2: 0 + 3: 0 + 71: _ZNK9oceanbase6common7ObDatum9datum2objILNS0_17ObObjDatumMapTypeE6EEEvRNS0_5ObObjE:0 + 2: 0 + 3: 0 + 76: _ZNK9oceanbase6common7ObDatum9datum2objILNS0_17ObObjDatumMapTypeE7EEEvRNS0_5ObObjE:0 + 3: 0 + 4: 0 + 5: 0 + 80: _ZNK9oceanbase6common7ObDatum9datum2objILNS0_17ObObjDatumMapTypeE8EEEvRNS0_5ObObjE:0 + 2: 0 + 17.1: _ZN9oceanbase3sql10ObDASUtils21reshape_storage_valueERKNS_6common9ObObjMetaERKNS2_10ObAccuracyERNS2_12ObIAllocatorERNS2_5ObObjE:113367 + 5: 721 + 6: 721 + 7: 0 + 9: 0 + 12: 0 + 13: 0 + 14.1: 0 + 17: 0 + 18: 0 + 22.1: 705 + 22.2: 0 + 22.3: 0 + 26.1: 705 + 30.1: 93 + 30.2: 0 + 31: 95 + 31.3: 93 + 39: 0 + 6: _ZNK9oceanbase6common5ObObj9is_binaryEv:35938 + 0: _ZNK9oceanbase6common9ObObjMeta9is_binaryEv:35938 + 2: 721 + 2: _ZN9oceanbase6common9ObObjMeta9is_binaryENS0_9ObObjTypeENS0_15ObCollationTypeE:7819 + 2: 721 + 7: _ZNK9oceanbase6common10ObAccuracy10get_lengthEv:0 + 0: 0 + 8: _ZNK9oceanbase6common5ObObj14get_string_lenEv:0 + 0: 0 + 11: _ZNK9oceanbase6common5ObObj14get_string_ptrEv:0 + 0: 0 + 19.1: _ZN9oceanbase6common5ObObj10set_binaryERKNS0_8ObStringE:0 + 5: 0 + 6: 0 + 2: _ZN9oceanbase6common9ObObjMeta8set_charEv:0 + 0: 0 + 3: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:0 + 0: 0 + 4: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:0 + 0: 0 + 22.1: _ZN9oceanbase3lib14is_oracle_modeEv:31020 + 2: 705 + 2: _ZN9oceanbase3lib15get_compat_modeEv:28905 + 2: 705 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:17625 + 2: 705 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 22.2: _ZNK9oceanbase6common5ObObj17is_character_typeEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta17is_character_typeEv:0 + 0: 0 + 0: _ZNK9oceanbase6common9ObObjMeta10is_nstringEv:0 + 0: 0 + 0.1: _ZNK9oceanbase6common9ObObjMeta18is_varchar_or_charEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta10is_varcharEv:0 + 2: 0 + 25: _ZN9oceanbase6common5ObObj8set_nullEv:0 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:0 + 0: 0 + 0: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:0 + 0: 0 + 0.1: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:0 + 0: 0 + 26.1: _ZNK9oceanbase6common5ObObj22is_fixed_len_char_typeEv:7755 + 0: _ZNK9oceanbase6common9ObObjMeta22is_fixed_len_char_typeEv:7755 + 0: 705 + 0: _ZNK9oceanbase6common9ObObjMeta7is_charEv:4935 + 2: 705 + 27: _ZNK9oceanbase6common5ObObj14get_string_ptrEv:1056 + 0: 88 + 28: _ZNK9oceanbase6common5ObObj14get_string_lenEv:440 + 0: 88 + 29.1: _ZN9oceanbase6common14ObCharsetUtils13get_const_strENS0_15ObCollationTypeEi:4091 + 3.2: 101 + 4.1: 88 _ZN9oceanbase6common9ObCharset18is_valid_collationEl:87 + 5: 101 _ZN9oceanbase6common9ObCharset20charset_type_by_collENS0_15ObCollationTypeE:99 + 36: _ZNK9oceanbase6common5ObObj8get_typeEv:950 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:950 + 0: 95 + 36.1: _ZN9oceanbase6common8ObStringC2ElPKc:855 + 5: 95 + 36.2: _ZN9oceanbase6common5ObObj10set_stringENS0_9ObObjTypeERKNS0_8ObStringE:6365 + 4: 95 + 5: 95 + 2: _ZN9oceanbase6common9ObObjMeta8set_typeERKNS0_9ObObjTypeE:5225 + 3: 95 + 13: 0 + 4: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:0 + 0: 0 + 8: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:0 + 0: 0 + 9: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:0 + 0: 0 + 12.1: _ZN9oceanbase6common17ob_is_string_typeENS0_9ObObjTypeE:2470 + 0: 95 + 0: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:1520 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:1520 + 2: 95 + 17: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:0 + 0: 0 + 3: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:570 + 0: 95 + 25: _ZN9oceanbase3lib13is_mysql_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 30: _ZNK9oceanbase6common5ObObj7is_nullEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta7is_nullEv:0 + 0: 0 + 38: _ZNK9oceanbase6common5ObObj7is_nullEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta7is_nullEv:0 + 0: 0 + 45: _ZN9oceanbase6common5ObObj8set_nullEv:0 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:0 + 0: 0 + 0.1: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:0 + 0: 0 + 31.1: _ZN9oceanbase3sql10ObDASUtils19project_storage_rowERKNS0_17ObDASDMLBaseCtDefERKNS0_17ObChunkDatumStore9StoredRowERKNS_6common12ObFixedArrayIlNS9_12ObIAllocatorEEERSB_RNS9_8ObNewRowE:309846 + 6: 314 + 7.1: 1303 + 7.2: 1622 + 7.3: 1622 + 7.5: 1303 + 8: 1290 + 11: 1290 + 13: 1290 + 14.1: 643 + 15.1: 0 + 17.1: 632 + 18.1: 0 + 22.1: 310 + 24: 0 + 25: 0 + 29.1: 0 + 29.3: 0 + 37.1: 0 + 37.3: 0 + 42: 0 + 43.1: 0 + 43.3: 0 + 45: 0 + 49: 0 + 8: _ZNK9oceanbase6common12ObIArrayWrapIlE2atEl:9030 + 6: 1290 + 13: _ZN9oceanbase6common5ObObj13set_nop_valueEv:13629 + 2: _ZN9oceanbase6common5ObObj7set_extEl:13629 + 4: 649 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:7788 + 0: 649 + 14.2: _ZNK9oceanbase6common7ObDatum6to_objERNS0_5ObObjERKNS0_9ObObjMetaE:44823 + 2: 643 + 3: 643 + 6: 643 + 7: 643 + 84: 0 + 85.1: 0 + 89: 0 + 7: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:5144 + 0: 643 + 27: _ZNK9oceanbase6common7ObDatum9datum2objILNS0_17ObObjDatumMapTypeE1EEEvRNS0_5ObObjE:1080 + 2: 72 + 3: 72 + 33: _ZNK9oceanbase6common7ObDatum9datum2objILNS0_17ObObjDatumMapTypeE2EEEvRNS0_5ObObjE:0 + 2: 0 + 3: 0 + 56: _ZNK9oceanbase6common7ObDatum9datum2objILNS0_17ObObjDatumMapTypeE3EEEvRNS0_5ObObjE:3324 + 3: 554 + 62: _ZNK9oceanbase6common7ObDatum9datum2objILNS0_17ObObjDatumMapTypeE4EEEvRNS0_5ObObjE:0 + 3: 0 + 4: 0 + 66: _ZNK9oceanbase6common7ObDatum9datum2objILNS0_17ObObjDatumMapTypeE5EEEvRNS0_5ObObjE:0 + 2: 0 + 3: 0 + 71: _ZNK9oceanbase6common7ObDatum9datum2objILNS0_17ObObjDatumMapTypeE6EEEvRNS0_5ObObjE:0 + 2: 0 + 3: 0 + 76: _ZNK9oceanbase6common7ObDatum9datum2objILNS0_17ObObjDatumMapTypeE7EEEvRNS0_5ObObjE:0 + 3: 0 + 4: 0 + 5: 0 + 80: _ZNK9oceanbase6common7ObDatum9datum2objILNS0_17ObObjDatumMapTypeE8EEEvRNS0_5ObObjE:0 + 2: 0 + 17.1: _ZN9oceanbase3sql10ObDASUtils21reshape_storage_valueERKNS_6common9ObObjMetaERKNS2_10ObAccuracyERNS2_12ObIAllocatorERNS2_5ObObjE:104207 + 5: 625 + 6: 625 + 7: 0 + 9: 0 + 12: 0 + 13: 0 + 14.1: 0 + 17: 0 + 18: 0 + 22.1: 620 + 22.2: 0 + 22.3: 0 + 26.1: 620 + 30.1: 85 + 30.2: 0 + 31: 85 + 31.3: 85 + 39: 0 + 6: _ZNK9oceanbase6common5ObObj9is_binaryEv:31215 + 0: _ZNK9oceanbase6common9ObObjMeta9is_binaryEv:31215 + 2: 625 + 2: _ZN9oceanbase6common9ObObjMeta9is_binaryENS0_9ObObjTypeENS0_15ObCollationTypeE:6840 + 2: 625 + 7: _ZNK9oceanbase6common10ObAccuracy10get_lengthEv:0 + 0: 0 + 8: _ZNK9oceanbase6common5ObObj14get_string_lenEv:0 + 0: 0 + 11: _ZNK9oceanbase6common5ObObj14get_string_ptrEv:0 + 0: 0 + 19.1: _ZN9oceanbase6common5ObObj10set_binaryERKNS0_8ObStringE:0 + 5: 0 + 6: 0 + 2: _ZN9oceanbase6common9ObObjMeta8set_charEv:0 + 0: 0 + 3: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:0 + 0: 0 + 4: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:0 + 0: 0 + 22.1: _ZN9oceanbase3lib14is_oracle_modeEv:27280 + 2: 620 + 2: _ZN9oceanbase3lib15get_compat_modeEv:25420 + 2: 620 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:15500 + 2: 620 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 22.2: _ZNK9oceanbase6common5ObObj17is_character_typeEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta17is_character_typeEv:0 + 0: 0 + 0: _ZNK9oceanbase6common9ObObjMeta10is_nstringEv:0 + 0: 0 + 0.1: _ZNK9oceanbase6common9ObObjMeta18is_varchar_or_charEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta10is_varcharEv:0 + 2: 0 + 25: _ZN9oceanbase6common5ObObj8set_nullEv:0 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:0 + 0: 0 + 0: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:0 + 0: 0 + 0.1: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:0 + 0: 0 + 26.1: _ZNK9oceanbase6common5ObObj22is_fixed_len_char_typeEv:11160 + 0: _ZNK9oceanbase6common9ObObjMeta22is_fixed_len_char_typeEv:11160 + 0: 620 + 0: _ZNK9oceanbase6common9ObObjMeta7is_charEv:4340 + 2: 620 + 27: _ZNK9oceanbase6common5ObObj14get_string_ptrEv:828 + 0: 69 + 28: _ZNK9oceanbase6common5ObObj14get_string_lenEv:345 + 0: 69 + 29.1: _ZN9oceanbase6common14ObCharsetUtils13get_const_strENS0_15ObCollationTypeEi:3525 + 3.2: 79 + 4.1: 69 _ZN9oceanbase6common9ObCharset18is_valid_collationEl:69 + 5: 85 _ZN9oceanbase6common9ObCharset20charset_type_by_collENS0_15ObCollationTypeE:82 + 36: _ZNK9oceanbase6common5ObObj8get_typeEv:850 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:850 + 0: 85 + 36.1: _ZN9oceanbase6common8ObStringC2ElPKc:765 + 5: 85 + 36.2: _ZN9oceanbase6common5ObObj10set_stringENS0_9ObObjTypeERKNS0_8ObStringE:5695 + 4: 85 + 5: 85 + 2: _ZN9oceanbase6common9ObObjMeta8set_typeERKNS0_9ObObjTypeE:4675 + 3: 85 + 13: 0 + 4: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:0 + 0: 0 + 8: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:0 + 0: 0 + 9: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:0 + 0: 0 + 12.1: _ZN9oceanbase6common17ob_is_string_typeENS0_9ObObjTypeE:2210 + 0: 85 + 0: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:1360 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:1360 + 2: 85 + 17: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:0 + 0: 0 + 3: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:510 + 0: 85 + 25: _ZN9oceanbase3lib13is_mysql_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 30: _ZNK9oceanbase6common5ObObj7is_nullEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta7is_nullEv:0 + 0: 0 + 38: _ZNK9oceanbase6common5ObObj7is_nullEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta7is_nullEv:0 + 0: 0 + 45: _ZN9oceanbase6common5ObObj8set_nullEv:0 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:0 + 0: 0 + 0.1: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:0 + 0: 0 +_ZN9oceanbase3sql11ObResultSetD2Ev:1093613:5436 + 1: 5186 + 3.2: 5229 + 4.2: 5229 + 7: 5229 + 7.2: 4684 + 9: 72 + 13: 5195 + 14: 5195 _ZN9oceanbase3sql13ObExecContextD1Ev:5340 + 15: 4979 + 17: 4979 _ZN9oceanbase3sql16ObSQLSessionInfo14get_plan_cacheEv:5591 + 18: 5004 + 19: 5004 _ZN9oceanbase3sql15ObCacheObjGuard19force_early_releaseEPNS0_11ObPlanCacheE:5053 + 22: 4622 + 26.1: 72 + 26.3: 1 + 27: 1 + 30.5: 5964 + 30.8: 72 + 30.9: 72 + 30.10: 5022 _ZN9oceanbase6common16ObFixedArrayImplINS0_7ObFieldENS0_12ObIAllocatorEED2Ev:5209 + 30.11: 5964 _ZN9oceanbase6common16ObFixedArrayImplINS0_7ObFieldENS0_12ObIAllocatorEED2Ev:6064 + 30.12: 5618 _ZN9oceanbase6common16ObFixedArrayImplINS0_7ObFieldENS0_12ObIAllocatorEED2Ev:5789 + 30.14: 5166 _ZN9oceanbase3sql15ObCacheObjGuardD2Ev:5611 + 30.15: 72 + 30.16: 72 + 30.17: 72 + 30.18: 72 + 30.19: 72 + 3: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:57046 + 0: 5186 + 0.2: 0 + 3.1: _ZN9oceanbase3sql13ObExecContext11get_sql_ctxEv:36603 + 0: 5229 + 8.1: _ZNK9oceanbase3sql14ObPhysicalPlan25is_limited_concurrent_numEv:37472 + 0: 4684 + 23: _ZN9oceanbase6common10TSIFactory12get_instanceINS_8observer13ObReqTimeInfoELm0EEEPT_v:2544 + 7: 1 + 8: 72 + 8.1: 72 + 30.13: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:106424 + 0: 5309 _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEED2Ev:5699 +_ZN9oceanbase3sql11ObResultSetD1Ev:1093613:5436 + 1: 5186 + 3.2: 5229 + 4.2: 5229 + 7: 5229 + 7.2: 4684 + 9: 72 + 13: 5195 + 14: 5195 _ZN9oceanbase3sql13ObExecContextD1Ev:5340 + 15: 4979 + 17: 4979 _ZN9oceanbase3sql16ObSQLSessionInfo14get_plan_cacheEv:5591 + 18: 5004 + 19: 5004 _ZN9oceanbase3sql15ObCacheObjGuard19force_early_releaseEPNS0_11ObPlanCacheE:5053 + 22: 4622 + 26.1: 72 + 26.3: 1 + 27: 1 + 30.5: 5964 + 30.8: 72 + 30.9: 72 + 30.10: 5022 _ZN9oceanbase6common16ObFixedArrayImplINS0_7ObFieldENS0_12ObIAllocatorEED2Ev:5209 + 30.11: 5964 _ZN9oceanbase6common16ObFixedArrayImplINS0_7ObFieldENS0_12ObIAllocatorEED2Ev:6064 + 30.12: 5618 _ZN9oceanbase6common16ObFixedArrayImplINS0_7ObFieldENS0_12ObIAllocatorEED2Ev:5789 + 30.14: 5166 _ZN9oceanbase3sql15ObCacheObjGuardD2Ev:5611 + 30.15: 72 + 30.16: 72 + 30.17: 72 + 30.18: 72 + 30.19: 72 + 3: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:57046 + 0: 5186 + 0.2: 0 + 3.1: _ZN9oceanbase3sql13ObExecContext11get_sql_ctxEv:36603 + 0: 5229 + 8.1: _ZNK9oceanbase3sql14ObPhysicalPlan25is_limited_concurrent_numEv:37472 + 0: 4684 + 23: _ZN9oceanbase6common10TSIFactory12get_instanceINS_8observer13ObReqTimeInfoELm0EEEPT_v:2544 + 7: 1 + 8: 72 + 8.1: 72 + 30.13: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:106424 + 0: 5309 _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEED2Ev:5699 +_ZN9oceanbase7storage15ObTableHandleV2aSERKS1_:1088892:13922 + 1: 12963 + 2: 12963 + 4: 12963 + 5: 12963 + 6.1: 0 + 7: 0 + 9: 12963 + 10: 12963 + 11: 12963 + 12: 12963 + 17: 12963 + 3: _ZN9oceanbase7storage15ObTableHandleV25resetEv:103704 + 2: 12963 + 3: 0 + 4.1: 0 + 5: 0 + 7: 0 + 8: 0 + 9: 0 + 10.1: 0 + 11.1: 0 + 14: 0 + 10: _ZN9oceanbase7storage8ObITable7inc_refEv:77778 + 2: 12963 +_ZN9oceanbase4easy6decodeEP14easy_message_t:1083101:5659 + 1: 5620 + 5: 5620 + 6.1: 0 + 8: 5620 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:5804 + 10: 4832 + 11: 4832 + 12: 5146 _ZN9oceanbase7obmysql14ObMySQLHandler6decodeEP14easy_message_t:5020 + 13: 5146 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:5297 + 14: 4729 + 15: 4729 + 22: 0 + 23: 0 + 25: 5132 + 26: 5132 + 27.1: 0 + 31: 5132 + 10: _ZN9oceanbase4easyL14packet_handlerEP17easy_connection_t:154624 + 3: 4832 + 3.1: 4832 + 4: 4832 + 17: _Z22TC_REACH_TIME_INTERVALl:282449 + 4.1: 5132 _ZN9oceanbase6common14ObTscTimestamp12current_timeEv:5193 + 5: 5132 + 6: 0 + 4: _ZN9oceanbase6common14ObTscTimestamp12get_instanceEv:80393 + 2: 4729 + 2.1: 0 + 2.3: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common14ObTscTimestampC2Ev:0 + 1: 0 +_ZN9oceanbase12blocksstable11ObRowReader15read_row_headerEPKclRPKNS0_11ObRowHeaderE:1078974:20753 + 4: 19981 + 5: 19981 + 6: 19981 + 7: 19981 + 7.2: 19981 + 8: 0 + 9.1: 0 + 11: 19981 + 13: 19981 +_ZN9oceanbase3lib9ObjectSetD2Ev:1074168:9781 + 1: 9348 + 3: 9820 + 3.1: 0 + 3.2: 0 + 2: _ZN9oceanbase3lib9ObjectSet5resetEv:635664 + 2: 9348 + 2.1: 9348 + 3: 0 + 5: 0 + 6: 0 + 7: 0 + 9: 0 + 12: 0 + 14: 0 + 17: 0 + 19: 0 + 21: 0 + 25: 0 + 26: 0 + 27: 0 + 29: 0 + 31: 0 + 34: 0 + 35: 0 + 39: 0 + 39.1: 0 + 40.1: 0 + 47: 0 + 47.2: 0 + 47.3: 0 + 56: 0 + 57.1: 0 + 59: 0 + 60: 0 + 64.1: 9348 + 65: 0 + 70: 9348 + 72: 9348 + 6: _ZNK9oceanbase6common16ObMemLeakChecker16is_context_checkEv:0 + 0: 0 + 7: _ZNK9oceanbase6common16ObMemLeakChecker13get_static_idEv:0 + 0: 0 + 10: _ZN9oceanbase3lib6AChunk9ptr2chunkEPKv:0 + 2: 0 + 11: _ZNK9oceanbase3lib6AChunk8is_validEv:0 + 2: 0 + 11.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 12: _ZNK9oceanbase3lib6AChunk7ptr2blkEPKv:0 + 2: 0 + 4: 0 + 3: _ZNK9oceanbase3lib6AChunk17max_blk_offset_leEi:0 + 2: _ZNK9oceanbase3lib13ASimpleBitSetILi256EE10max_bit_leEi:0 + 2: 0 + 3: 0 + 7: 0 + 9: 0 + 11.1: 0 + 12: 0 + 8: _ZN9oceanbase3lib13ASimpleBitSetILi256EE10max_bit_leEmi:0 + 2: 0 + 3: 0 + 4: 0 + 22: _ZNK9oceanbase3lib6ABlock4dataEv:0 + 2: _ZNK9oceanbase3lib6ABlock5chunkEv:0 + 2: _ZN9oceanbase3lib6AChunk9ptr2chunkEPKv:0 + 2: 0 + 3: _ZNK9oceanbase3lib6AChunk8is_validEv:0 + 2: 0 + 3.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 4: _ZNK9oceanbase3lib6AChunk8blk_dataEPKNS0_6ABlockE:0 + 2: 0 + 3: 0 + 4: 0 + 32: _ZNK9oceanbase3lib17__MemoryContext__13get_static_idEv:0 + 0: 0 + 33.1: _ZN9oceanbase6common10to_cstringINS_3lib10StaticInfoEEEPKcRKT_:0 + 2: 0 + 34: _ZNK9oceanbase3lib17__MemoryContext__16get_dynamic_infoEv:0 + 0: 0 + 34.1: _ZN9oceanbase6common10to_cstringINS_3lib11DynamicInfoEEEPKcRKT_:0 + 2: 0 + 47.3: _ZNK9oceanbase3lib7AObject7is_lastEj:0 + 2: 0 + 50: _ZNK9oceanbase3lib7AObject8phy_nextEi:0 + 2: 0 + 3: _ZN9oceanbase3lib7ObMutexD2Ev:46740 + 0: 9348 _ZN9oceanbase6common12ObLatchMutexD1Ev:9877 +_ZN9oceanbase3lib9ObjectSetD1Ev:1074168:9781 + 1: 9348 + 3: 9820 + 3.1: 0 + 3.2: 0 + 2: _ZN9oceanbase3lib9ObjectSet5resetEv:635664 + 2: 9348 + 2.1: 9348 + 3: 0 + 5: 0 + 6: 0 + 7: 0 + 9: 0 + 12: 0 + 14: 0 + 17: 0 + 19: 0 + 21: 0 + 25: 0 + 26: 0 + 27: 0 + 29: 0 + 31: 0 + 34: 0 + 35: 0 + 39: 0 + 39.1: 0 + 40.1: 0 + 47: 0 + 47.2: 0 + 47.3: 0 + 56: 0 + 57.1: 0 + 59: 0 + 60: 0 + 64.1: 9348 + 65: 0 + 70: 9348 + 72: 9348 + 6: _ZNK9oceanbase6common16ObMemLeakChecker16is_context_checkEv:0 + 0: 0 + 7: _ZNK9oceanbase6common16ObMemLeakChecker13get_static_idEv:0 + 0: 0 + 10: _ZN9oceanbase3lib6AChunk9ptr2chunkEPKv:0 + 2: 0 + 11: _ZNK9oceanbase3lib6AChunk8is_validEv:0 + 2: 0 + 11.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 12: _ZNK9oceanbase3lib6AChunk7ptr2blkEPKv:0 + 2: 0 + 4: 0 + 3: _ZNK9oceanbase3lib6AChunk17max_blk_offset_leEi:0 + 2: _ZNK9oceanbase3lib13ASimpleBitSetILi256EE10max_bit_leEi:0 + 2: 0 + 3: 0 + 7: 0 + 9: 0 + 11.1: 0 + 12: 0 + 8: _ZN9oceanbase3lib13ASimpleBitSetILi256EE10max_bit_leEmi:0 + 2: 0 + 3: 0 + 4: 0 + 22: _ZNK9oceanbase3lib6ABlock4dataEv:0 + 2: _ZNK9oceanbase3lib6ABlock5chunkEv:0 + 2: _ZN9oceanbase3lib6AChunk9ptr2chunkEPKv:0 + 2: 0 + 3: _ZNK9oceanbase3lib6AChunk8is_validEv:0 + 2: 0 + 3.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 4: _ZNK9oceanbase3lib6AChunk8blk_dataEPKNS0_6ABlockE:0 + 2: 0 + 3: 0 + 4: 0 + 32: _ZNK9oceanbase3lib17__MemoryContext__13get_static_idEv:0 + 0: 0 + 33.1: _ZN9oceanbase6common10to_cstringINS_3lib10StaticInfoEEEPKcRKT_:0 + 2: 0 + 34: _ZNK9oceanbase3lib17__MemoryContext__16get_dynamic_infoEv:0 + 0: 0 + 34.1: _ZN9oceanbase6common10to_cstringINS_3lib11DynamicInfoEEEPKcRKT_:0 + 2: 0 + 47.3: _ZNK9oceanbase3lib7AObject7is_lastEj:0 + 2: 0 + 50: _ZNK9oceanbase3lib7AObject8phy_nextEi:0 + 2: 0 + 3: _ZN9oceanbase3lib7ObMutexD2Ev:46740 + 0: 9348 _ZN9oceanbase6common12ObLatchMutexD1Ev:9877 +_ZN9oceanbase12blocksstable18ObIMicroBlockCache15get_cache_blockEmNS0_12MacroBlockIdEllRNS0_24ObMicroBlockBufferHandleE:1070852:4992 + 6: 4489 + 7: 4489 + 8: 4489 + 9: 4489 + 9.2: 4489 + 11: 21 + 12.1: 21 + 14.1: 4904 _ZThn24_N9oceanbase12blocksstable21ObDataMicroBlockCache9get_cacheERPNS_6common10ObIKVCacheINS0_20ObMicroBlockCacheKeyENS0_22ObMicroBlockCacheValueEEE:2631 _ZThn24_N9oceanbase12blocksstable22ObIndexMicroBlockCache9get_cacheERPNS_6common10ObIKVCacheINS0_20ObMicroBlockCacheKeyENS0_22ObMicroBlockCacheValueEEE:2164 + 15.1: 21 + 17: 4904 + 18: 4904 _ZN9oceanbase6common9ObKVCacheINS_12blocksstable20ObMicroBlockCacheKeyENS2_22ObMicroBlockCacheValueEE3getERKS3_RPKS4_RNS0_15ObKVCacheHandleE:4979 + 18.1: 5194 + 20.1: 21 + 22.2: 21 + 22.3: 21 + 22.4: 21 + 22.5: 21 + 22.6: 21 + 22.10: 21 + 22.11: 21 + 22.12: 21 + 24.2: 5170 + 24.3: 21 + 24.4: 21 + 24.5: 21 + 24.6: 21 + 24.10: 21 + 24.11: 21 + 24.12: 21 + 27: 5239 + 9.2: _ZNK9oceanbase12blocksstable12MacroBlockId8is_validEv:116714 + 2: 4489 + 3: 4489 + 4.1: 4489 + 17: _ZN9oceanbase12blocksstable20ObMicroBlockCacheKeyC2EmRKNS0_12MacroBlockIdEll:196160 + 5: 4904 + 7: 4904 + 6: _ZN9oceanbase12blocksstable14ObMicroBlockIdC2ERKNS0_12MacroBlockIdEll:102984 + 5: 4904 + 6: 4904 + 4: _ZN9oceanbase12blocksstable12MacroBlockIdC2ERKS1_:73560 + 2: 4904 + 4: 4904 + 22.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:189 + 2: 21 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:84 + 2: 21 + 24.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:25958 + 2: 5194 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:5326 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:20680 + 2: 5170 +_ZN9oceanbase3sql13ObTableScanOp11inner_closeEv:1062261:4224 + 1: 4072 + 2: 4072 + 4: 4072 + 5: 4072 + 8.1: 4407 _ZN9oceanbase3sql8ObDASRef14close_all_taskEv:4357 + 9.1: 38 + 12: 38 + 13: 4407 + 14: 4407 + 17: 4407 + 4: _ZNK9oceanbase3sql8ObDASRef8has_taskEv:28504 + 0: _ZNK9oceanbase6common10ObObjStoreIPNS_3sql12ObIDASTaskOpERNS0_12ObIAllocatorELb0EE5emptyEv:28504 + 0: 4072 + 6: _ZN9oceanbase3sql13ObTableScanOp26fill_storage_feedback_infoEv:685530 + 4.1: 4072 + 4.2: 4072 + 5: 38 + 7: 4051 + 8: 38 + 9: 38 + 10: 38 + 13: 38 + 14: 38 + 19: 4051 + 20: 4051 + 30: 4051 + 31: 4051 + 32: 4051 + 33: 38 + 35: 38 + 35.1: 38 + 36: 38 + 42.1: 38 + 47: 4202 + 49: 41 + 49.1: 41 _ZN9oceanbase6common16ObFixedArrayImplINS_3sql15ObTableRowCountENS0_12ObIAllocatorEE9push_backERKS3_:3 + 50: 41 + 51.1: 38 + 4: _ZN9oceanbase3sql8ObDASRef15begin_task_iterEv:28504 + 0: _ZN9oceanbase6common10ObObjStoreIPNS_3sql12ObIDASTaskOpERNS0_12ObIAllocatorELb0EE5beginEv:28504 + 0: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql12ObIDASTaskOpEEEE9get_firstEv:28504 + 0: 4072 + 4.1: _ZN9oceanbase3sql12ObIDASTaskOp8get_typeEv:12216 + 0: 4072 + 4.11: _ZN9oceanbase3sql11ObDASScanOp14get_scan_paramEv:40510 + 0: 4051 + 6: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:28357 + 2: 4051 + 7: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:16204 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:16204 + 0: 4051 + 7.1: _ZNK9oceanbase3sql15ObTableScanSpec17should_scan_indexEv:56714 + 0: 4051 + 32: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:16204 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:16204 + 0: 4051 + 32.1: _ZNK9oceanbase6common11ObQueryFlag13is_index_backEv:28357 + 0: 4051 + 32.2: _ZNK9oceanbase3sql15ObTableScanSpec17should_scan_indexEv:56714 + 0: 4051 + 35: _ZN9oceanbase3sql15ObTableRowCountC2Ell:266 + 0: 38 + 49: _ZN9oceanbase3sql15ObTableRowCountC2Ell:287 + 0: 41 +_ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable17ObTmpFileIOHandle18ObBlockCacheHandleELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:1059060:14524 + 1: 13935 + 4.1: 13935 + 4.3: 0 + 5: 0 + 9: 13935 + 10: 0 + 11: 0 + 13: 13935 + 15: 13935 + 24: 13935 + 25: 13935 +_ZNK9oceanbase7storage15ObMemtableArray4findEllRPNS0_8ObITableERl:1056351:5892 + 5: 5430 + 6: 5430 + 7: 5430 + 8: 5430 + 10: 5430 + 11: 0 + 12.1: 0 + 13.1: 5430 + 14: 0 + 15.1: 0 + 16.1: 5430 + 17: 0 + 20.1: 0 + 20.2: 5430 + 20.3: 5430 + 20.5: 0 + 21: 5430 + 22: 5430 + 23: 0 + 24.1: 0 + 25.1: 5745 _ZNK9oceanbase8memtable10ObMemtable14get_end_log_tsEv:5781 + 26: 0 + 31.1: 6008 _ZNK9oceanbase8memtable10ObMemtable14get_end_log_tsEv:6187 + 38: 6220 + 10: _ZNK9oceanbase7storage15ObMemtableArray5emptyEv:97740 + 0: _ZNK9oceanbase7storage15ObMemtableArray5countEv:97740 + 0: 5430 + 0.2: 5430 + 18: _ZNK9oceanbase7storage15ObMemtableArray9get_tableEl:0 + 0: 0 + 0.2: 0 + 0: _ZNK9oceanbase7storage15ObMemtableArray5countEv:0 + 0: 0 + 0.2: _ZN9oceanbase6common12ObIArrayWrapIPNS_7storage8ObITableEE2atEl:0 + 6: 0 + 20.2: _ZNK9oceanbase7storage15ObMemtableArray5countEv:0 + 0: 0 + 21: _ZNK9oceanbase7storage15ObMemtableArray9get_tableEl:43440 + 0.2: 5430 + 0.2: _ZN9oceanbase6common12ObIArrayWrapIPNS_7storage8ObITableEE2atEl:21720 + 6: 5430 +_ZN9oceanbase6common15ObFIFOAllocator5allocEl:1056133:2727 + 1: 2630 + 2: 2726 + 2: _ZN9oceanbase6common15ObFIFOAllocator11alloc_alignEllRKNS_3lib9ObMemAttrE:859785 + 2: 2630 + 4: 2735 + 5.1: 0 + 6.1: 2735 + 7.1: 0 + 8.2: 2735 + 11: 0 + 2: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEEC2ERS3_:87945 + 1: 2630 + 4: 2735 + 5.1: 0 + 4: _ZN9oceanbase6common10ObSpinLock4lockEv:47340 + 2: 2630 _ZN9oceanbase6common12ObLatchMutex4lockEjl:2697 + 6.1: _ZN9oceanbase6common15ObFIFOAllocator11check_paramEll:180510 + 3: 2735 + 3.1: 2735 + 4.1: 0 + 6.1: 2735 + 7.1: 0 + 9.1: 2735 + 11.1: 0 + 8.1: _ZN9oceanbase6common15ObFIFOAllocator21is_normal_page_enoughEll:27350 + 3: 2735 + 4: 2735 + 9: _ZN9oceanbase6common15ObFIFOAllocator12alloc_normalEllRKNS_3lib9ObMemAttrE:395156 + 4.1: 2735 + 5.1: 0 + 7: 2735 + 8: 6 _ZNK9oceanbase6common15ObFIFOAllocator5totalEv:6 + 9: 4 _ZN9oceanbase6common8ObMalloc5allocElRKNS_3lib9ObMemAttrE:4 + 11: 6 + 12.1: 0 + 14: 6 + 15: 6 + 16: 6 + 19: 6 + 25: 2743 + 26: 0 + 27: 0 + 29: 0 + 30: 2743 + 14: _ZN9oceanbase6common15ObFIFOAllocator16NormalPageHeaderC2Ev:150 + 0: _ZN9oceanbase6common15ObFIFOAllocator14BasePageHeaderC2Ev:150 + 1: 6 + 3.1: 6 + 0: _ZN9oceanbase6common11ObDLinkNodeIPNS0_15ObFIFOAllocator14BasePageHeaderEEC2Ev:90 + 0: 6 + 23: _ZN9oceanbase6common15ObFIFOAllocator9try_allocEll:254895 + 3: 6 + 4.1: 0 + 6: 2736 + 7: 2736 + 8: 2743 + 9: 2736 + 10: 2736 _ZN9oceanbase6common11upper_alignEll:2766 + 12: 2743 + 13: 2743 + 15: 2743 + 16: 2743 + 17: 2743 + 18: 2743 + 19: 2743 + 6: _ZL12abort_unlessb:16416 + 5: 2736 + 6: 0 + 15.3: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEED2Ev:60159 + 2: 2743 + 3: 2743 + 3.1: 2726 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase6common10ObSpinLock6unlockEv:2743 + 2: 2743 _ZN9oceanbase6common12ObLatchMutex6unlockEv:2787 + 15.4: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEED2Ev:0 + 2: 0 + 3: 0 + 3.1: 0 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase6common10ObSpinLock6unlockEv:0 + 2: 0 +_ZN9oceanbase7storage19ObSSTableRowScanner19open_cur_data_blockERNS0_19ObSSTableReadHandleE:1054616:2845 + 1: 2706 + 2: 2706 + 3: 2706 + 3.1: 2706 + 4: 2706 + 5: 7 + 6.1: 7 + 10: 2706 + 11: 1051 + 12.1: 7 + 14.1: 1661 + 15: 7 + 16.1: 7 + 20: 1661 + 22: 2742 + 22.1: 1051 + 23: 1051 + 26: 1051 _ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScanner5reuseEv:1088 + 27: 1077 _ZN9oceanbase12blocksstable23ObIMicroBlockRowScanner9set_rangeERKNS0_12ObDatumRangeE:1116 + 28.1: 7 + 30: 1040 + 35: 7 + 36: 2747 + 38: 2821 _ZN9oceanbase7storage22ObMicroBlockDataHandle19get_data_block_dataERNS_12blocksstable18ObMacroBlockReaderERNS2_16ObMicroBlockDataE:2831 + 39.1: 7 + 40.1: 2821 + 40.3: 2821 _ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScanner4openERKNS0_12MacroBlockIdERKNS0_16ObMicroBlockDataEbb:2917 + 45.1: 7 + 46.1: 2815 _ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher15check_blockscanERb:2598 + 47.1: 7 + 48.1: 2815 + 48.2: 7 + 48.3: 7 + 50: 7 + 52.1: 7 + 55.1: 7 + 55.2: 7 + 55.3: 7 + 55.4: 7 + 55.6: 7 + 55.7: 7 + 56.1: 7 + 58: 7 + 59: 2727 + 65: 2727 + 8: _ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher18current_micro_infoEv:40590 + 1: 2706 + 11: _ZN9oceanbase7storage19ObSSTableRowScanner18init_micro_scannerEv:125614 + 2: 1069 + 5: 1069 _ZNK9oceanbase7storage8ObITable30is_multi_version_minor_sstableEv:1084 + 6: 1038 + 6.1: 1059 _ZN9oceanbase6common26ObWrapperAllocatorWithAttr5allocEl:1079 + 6.2: 1059 _ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScannerC2ERNS_6common12ObIAllocatorE:1083 + 6.4: 7 + 9: 7 + 10.1: 7 + 13: 0 + 13.1: 0 + 13.2: 0 + 13.4: 7 + 16: 7 + 17.1: 7 + 20: 964 + 20.1: 1051 _ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScanner4initERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextEPKNS0_9ObSSTableE:989 + 21.1: 7 + 24: 7 + 13.2: _ZN9oceanbase12blocksstable22ObMicroBlockRowScannerC2ERNS_6common12ObIAllocatorE:0 + 1: 0 + 2: 0 + 14.1: _ZNK9oceanbase12blocksstable23ObIMicroBlockRowScanner8is_validEv:29898 + 0: 1661 + 0.1: 1661 + 37: _ZN9oceanbase12blocksstable16ObMicroBlockDataC2Ev:49446 + 0: 2747 + 40.1: _ZNK9oceanbase12blocksstable16ObMicroIndexInfo14is_left_borderEv:47957 + 2: 2821 + 40.2: _ZNK9oceanbase12blocksstable16ObMicroIndexInfo15is_right_borderEv:22568 + 2: 2821 + 48.3: _ZNK9oceanbase7storage15ObBlockRowStore11is_disabledEv:28 + 0: 7 + 55.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:63 + 2: 7 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:28 + 2: 7 +_ZN9oceanbase5share6schema19ObSchemaGetterGuard16get_table_schemaEmmRPKNS1_13ObTableSchemaE:1050281:4748 + 4: 4607 + 5: 4607 + 6: 4607 + 7.1: 4607 _ZZN9oceanbase5share6schema19ObSchemaGetterGuard16get_table_schemaEmmRPKNS1_13ObTableSchemaEENK5$_279clEPKc.bfa63f0f3456173f564c7cf65584fc48:4783 + 9: 4731 + 10: 40 + 11.1: 40 + 12.1: 4731 + 13: 40 + 14.1: 40 + 15.1: 4731 + 18.1: 4849 + 19.1: 40 + 20.1: 4849 _ZN9oceanbase5share6schema19ObSchemaGetterGuard10get_schemaINS1_13ObTableSchemaEEEiNS1_12ObSchemaTypeEmmRPKT_l:5006 + 24.1: 40 + 26: 4653 + 9: _ZNK9oceanbase5share6schema19ObSchemaGetterGuard16check_inner_statEv:229448 + 2: 4731 + 3: 4731 + 4: 40 + 5.1: 40 + 6.1: 4731 + 6.2: 4731 + 7: 4731 + 7.1: 4731 + 8: 40 + 9.1: 40 + 11: 4731 + 15.1: _ZN9oceanbase6common12is_cte_tableEm:56772 + 2: 4731 + 18.1: _ZNK9oceanbase5share6schema19ObSchemaGetterGuard25check_tenant_schema_guardEm:86730 + 2: 4731 + 4: 4731 + 6: 40 + 7.1: 40 + 10: 40 + 3: _ZNK9oceanbase5share6schema19ObSchemaGetterGuard22is_tenant_schema_guardEv:47310 + 0: 4731 +_ZN9oceanbase3sql13ObDatumCaster15setup_cast_exprERKNS0_11ObDatumMetaERKNS0_6ObExprEmRS5_:1045200:1036 + 4: 977 + 5: 977 + 7: 977 + 7.1: 977 + 7.2: 977 + 8: 3 + 9.1: 3 + 10.1: 977 + 15.1: 3 + 16.1: 1019 + 17: 0 + 18.1: 0 + 20: 1019 + 21: 1019 _ZN9oceanbase6common7ObDatum22get_obj_datum_map_typeENS0_9ObObjTypeE:1035 + 22: 1006 + 23: 1006 + 25: 998 + 29: 998 + 30: 998 + 31: 998 + 32: 998 + 34: 1006 + 10.1: _ZN9oceanbase3sql11ObDatumCast26get_implicit_cast_functionENS_6common9ObObjTypeENS2_15ObCollationTypeES3_S4_lRPFiRKNS0_6ObExprERNS0_9ObEvalCtxERNS2_7ObDatumEE:692844 + 8: 977 + 10: 964 + 11.1: 3 + 12.1: 506 + 16: 502 + 20: 506 + 21: 3 + 23: 506 + 28: 3 + 10: _ZN9oceanbase3sql11ObDatumCast14check_can_castENS_6common9ObObjTypeENS2_15ObCollationTypeES3_S4_:281433 + 5: 977 + 9: 977 + 10: 493 + 12: 970 + 14: 974 + 19: 964 + 21.1: 964 + 22.1: 3 + 22.2: 0 + 22.4: 3 + 23: 0 + 23.1: 0 + 24: 0 + 25: 0 + 26.1: 0 + 27.2: 3 + 28: 3 + 29: 0 + 30: 0 + 31.1: 0 + 32.1: 0 + 32.3: 0 + 33: 0 + 34.1: 0 + 35.1: 3 + 36: 0 + 37.1: 0 + 38.1: 0 + 38.11: 0 + 38.14: 0 + 39.1: 3 + 39.3: 3 + 41: 0 + 42.1: 0 + 44.1: 0 + 44.11: 0 + 44.14: 0 + 49.1: 3 + 50: 3 + 51.1: 3 + 53: 964 + 6: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:38472 + 2: 977 + 2.1: 977 + 2.3: 977 + 7: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:38359 + 2: 977 + 2.1: 977 + 11: _ZN9oceanbase6common10ob_is_blobENS0_9ObObjTypeENS0_15ObCollationTypeE:16685 + 0: 995 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:1940 + 2: 970 + 12.1: _ZN9oceanbase6common18ob_is_blob_locatorENS0_9ObObjTypeENS0_15ObCollationTypeE:11688 + 0: 974 + 13: _ZN9oceanbase6common10ob_is_blobENS0_9ObObjTypeENS0_15ObCollationTypeE:28468 + 0: 974 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:1948 + 2: 974 + 14.1: _ZN9oceanbase6common18ob_is_blob_locatorENS0_9ObObjTypeENS0_15ObCollationTypeE:10604 + 0: 964 + 21.1: _ZN9oceanbase3lib14is_oracle_modeEv:46407 + 2: 964 + 2: _ZN9oceanbase3lib15get_compat_modeEv:39659 + 2: 964 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:24235 + 2: 964 + 2.1: 3 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:66 + 1: 3 + 22.1: _ZN9oceanbase6common15ob_is_number_tcENS0_9ObObjTypeE:18 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:18 + 2: 3 + 23.1: _ZN9oceanbase6common10ob_is_clobENS0_9ObObjTypeENS0_15ObCollationTypeE:0 + 0: 0 + 23.2: _ZN9oceanbase6common18ob_is_clob_locatorENS0_9ObObjTypeENS0_15ObCollationTypeE:0 + 0: 0 + 27.1: _ZN9oceanbase6common10ob_is_clobENS0_9ObObjTypeENS0_15ObCollationTypeE:12 + 0: 3 + 28.1: _ZN9oceanbase6common18ob_is_clob_locatorENS0_9ObObjTypeENS0_15ObCollationTypeE:0 + 0: 0 + 38.1: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 40.2: _ZN9oceanbase6common23ob_is_varchar_char_typeENS0_9ObObjTypeENS0_15ObCollationTypeE:27 + 1: 3 + 44.1: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 12.1: _ZN9oceanbase3sql11ObDatumCast15is_trivial_castENS_6common9ObObjTypeENS2_15ObCollationTypeES3_S4_RKmRb:316350 + 12: 477 + 13: 0 + 14: 519 _ZN9oceanbase6common9ObCharset20charset_type_by_collENS0_15ObCollationTypeE:493 + 15: 519 _ZN9oceanbase6common9ObCharset20charset_type_by_collENS0_15ObCollationTypeE:519 + 17: 938 + 18: 938 + 20: 995 + 23: 953 + 25: 953 + 26: 503 + 28: 964 + 32.2: 3 + 34.1: 964 + 34.2: 501 + 35: 3 + 37: 0 + 37.1: 0 + 39: 3 + 44: 501 + 47.1: 503 + 48: 503 + 50: 503 + 51: 498 + 52: 486 + 53: 475 + 54: 474 + 57: 0 + 58: 0 + 59: 0 + 60: 0 + 63.1: 510 + 10: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:17352 + 2: 964 + 2.1: 964 + 2.3: 964 + 11: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:12532 + 2: 964 + 2.1: 964 + 12: _ZN9oceanbase6common17ob_is_string_typeENS0_9ObObjTypeE:11081 + 0: 964 + 0: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:5784 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:5784 + 2: 964 + 13: _ZN9oceanbase6common17ob_is_string_typeENS0_9ObObjTypeE:5346 + 0: 486 + 0: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:2916 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:2916 + 2: 486 + 16: _ZN9oceanbase6common10ob_is_clobENS0_9ObObjTypeENS0_15ObCollationTypeE:16884 + 0: 938 + 18: _ZN9oceanbase6common10ob_is_blobENS0_9ObObjTypeENS0_15ObCollationTypeE:3752 + 0: 938 + 19: _ZN9oceanbase6common10ob_is_blobENS0_9ObObjTypeENS0_15ObCollationTypeE:17316 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:17316 + 2: 962 + 20: _ZN9oceanbase6common10ob_is_blobENS0_9ObObjTypeENS0_15ObCollationTypeE:30 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:30 + 2: 3 + 21: _ZN9oceanbase6common10ob_is_blobENS0_9ObObjTypeENS0_15ObCollationTypeE:63 + 0: 3 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:42 + 2: 3 + 23: _ZN9oceanbase6common10ob_is_blobENS0_9ObObjTypeENS0_15ObCollationTypeE:23825 + 0: 953 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:15248 + 2: 953 + 2.1: 953 + 34.2: _ZN9oceanbase3lib14is_oracle_modeEv:13527 + 2: 501 + 2: _ZN9oceanbase3lib15get_compat_modeEv:12024 + 2: 501 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:3006 + 2: 501 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 47.1: _ZN9oceanbase3lib14is_oracle_modeEv:13581 + 2: 503 + 2: _ZN9oceanbase3lib15get_compat_modeEv:12072 + 2: 503 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:3018 + 2: 503 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 18: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:6072 + 2: 506 + 2.1: 506 + 19: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:6072 + 2: 506 + 2.1: 506 + 20: _ZN9oceanbase3lib14is_oracle_modeEv:8602 + 2: 506 + 24: _ZN9oceanbase6common9ObObjMeta8set_typeERKNS0_9ObObjTypeE:78156 + 2: 1006 + 3: 1006 + 13: 527 + 14: 527 + 4: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:33 + 0: 3 + 8: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:33 + 0: 3 + 11: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:27 + 0: 3 + 12.1: _ZN9oceanbase6common17ob_is_string_typeENS0_9ObObjTypeE:21182 + 0: 1006 + 0: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:10635 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:10635 + 2: 1006 + 17: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:3705 + 0: 527 + 25: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:2994 + 0: 998 + 26: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:3992 + 0: 998 + 27: _ZN9oceanbase6common9ObObjMeta9set_scaleEs:3992 + 0: 998 + 32: _ZNK9oceanbase3sql6ObExpr13get_eval_infoERNS0_9ObEvalCtxE:13972 + 2: 998 + 32.1: _ZN9oceanbase3sql10ObEvalInfo20clear_evaluated_flagEv:12054 + 2: 998 + 4: 724 +_ZN9oceanbase3sql13ObTableScanOp10inner_openEv:1038713:4568 + 1: 4168 + 2: 4168 + 5: 4168 + 6: 4168 + 7: 19 + 8.1: 19 + 9.1: 4363 + 9.2: 4168 _ZN9oceanbase3sql10ObDASUtils25check_nested_sql_mutatingEmRNS0_13ObExecContextE:4327 + 10.1: 19 + 11.1: 4500 _ZN9oceanbase3sql13ObTableScanOp21init_table_scan_rtdefEv:4613 + 12.1: 19 + 13.1: 4500 + 13.2: 18 + 14.1: 19 + 16: 4527 + 17: 19 + 19: 19 + 22: 18 + 26: 4493 + 27: 4493 _ZN9oceanbase3sql13ObTableScanOp24init_ddl_column_checksumEv:4787 + 28.1: 19 + 31: 19 + 34: 4321 + 35: 4321 + 37: 18 + 38: 18 + 39: 18 + 41: 18 + 43: 18 + 44: 19 + 45.1: 19 + 46.1: 18 + 49.1: 19 + 49.3: 19 + 50: 19 + 56: 4413 + 5: _ZN9oceanbase6common12ObCurTraceId3getEv:105226 + 2: _ZN9oceanbase6common12ObCurTraceId12get_trace_idEv:105226 + 5: 4168 + 5.1: 19 + 5.1: _ZN9oceanbase6common12ObCurTraceId7TraceIdC2Ev:494 + 0: 19 + 9.1: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:16672 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:16672 + 0: 4168 + 13.1: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:18000 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:18000 + 0: 4500 + 13.2: _ZN9oceanbase3sql13ObTableScanOp14init_converterEv:27523 + 2: 18 + 4: 18 + 5: 18 + 6: 18 + 7.1: 18 + 8.1: 18 + 8.2: 18 + 9: 18 + 9.1: 18 + 10: 19 + 11.1: 19 + 13: 18 + 14: 18 + 15: 18 + 16: 18 + 18: 18 + 20: 18 + 20.1: 18 + 21: 18 + 22: 19 + 23.1: 19 + 24.1: 18 + 25.1: 18 + 25.3: 18 + 28.1: 19 + 29.1: 18 + 30: 19 + 31.1: 19 + 33.1: 19 + 34.1: 19 + 35.1: 18 + 35.2: 18 + 35.4: 18 + 45.1: 18 + 48.1: 18 + 50: 18 + 8.1: _ZN9oceanbase3sql13ObExecContext11get_sql_ctxEv:126 + 0: 18 + 19: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:72 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:72 + 0: 18 + 25.1: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:1636 + 2: 18 + 2.1: 19 + 2.2: 19 + 25.2: _ZNK9oceanbase5share12ObTenantBase2idEv:270 + 0: 18 + 33.1: _ZN9oceanbase3sql13ObTableScanOp28reuse_table_rescan_allocatorEv:14355 + 2: 18 + 3: 18 + 4: 19 + 11: 19 + 11.1: 18 + 11.5: 18 + 11.6: 19 + 12.1: 18 + 13.1: 19 + 14: 18 + 15.1: 18 + 17: 19 + 20: 18 + 22: 19 + 4: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:133 + 2: 19 + 5: _ZN9oceanbase3lib12ContextParamC2Ev:285 + 3: 19 + 5: 19 + 6: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:133 + 0: 19 + 6.1: _ZN9oceanbase3lib12ContextParam12set_mem_attrIJmRA15_KcNS_6common8ObCtxIds11ObCtxIdEnumEEEERS1_DpOT_:532 + 2: 19 + 8: _ZN9oceanbase3lib12ContextParam14set_propertiesEl:152 + 2: 19 + 9: _ZN9oceanbase3lib12ContextParam15set_ablock_sizeEj:133 + 2: 19 + 10: _ZN9oceanbase3lib13MemoryContextC2Ev:399 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:399 + 2: 19 + 8: 19 + 11: _ZN9oceanbase3lib4Flow11current_ctxEv:4348 + 2: _ZN9oceanbase3lib4Flow12current_flowEv:4348 + 3: 19 + 8: 18 + 12: 18 + 8.1: _ZN9oceanbase3lib4FlowC2ERNS0_13MemoryContextE:990 + 1: 18 + 3: 18 + 10: _ZN9oceanbase3lib4Flow4initEv:2250 + 4: 18 + 7: 18 + 8: 18 + 9: 18 + 12: 18 + 7: _ZL12abort_unlessb:198 + 5: 18 + 6: 18 + 11.7: _ZNK9oceanbase3lib13MemoryContextptEv:76 + 1: 19 + 11.8: _ZN9oceanbase3lib11DynamicInfoC2Ev:3107 + 1: 19 + 2: 19 + 1: _Z9ob_gettidv:2537 + 3: 19 + 4: 18 + 2: _Z13get_tid_cachev:1303 + 7: 19 + 7.1: 18 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:414 + 0: 18 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:95 + 2: 19 + 13.1: _ZN9oceanbase3libeqEDnRKNS0_13MemoryContextE:190 + 1: 19 + 1: _ZNK9oceanbase3lib13MemoryContext11ref_contextEv:133 + 1: 19 + 17.1: _ZN9oceanbase3lib17__MemoryContext__19get_arena_allocatorEv:114 + 0: 19 + 35.1: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:126 + 2: 18 + 35.3: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:72 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:72 + 0: 18 + 16: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:72 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:72 + 0: 18 + 17.1: _ZNK9oceanbase3sql8ObOpSpec8get_typeEv:72 + 0: 18 + 34: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:17284 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:17284 + 0: 4321 + 35.1: _ZNK9oceanbase3sql12ObQueryRange16get_is_equal_andEv:30247 + 0: 4321 + 36.1: _ZNK9oceanbase3sql12ObQueryRange16get_column_countEv:126 + 0: 18 + 46.1: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:72 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:72 + 0: 18 + 47: _ZN9oceanbase6common10ObNewRangeC2Ev:540 + 2: _ZN9oceanbase6common10ObNewRange5resetEv:540 + 2: 18 + 3: _ZN9oceanbase6common12ObBorderFlag8set_dataEa:72 + 0: 18 + 4: _ZN9oceanbase6common8ObRowkey6assignEPNS0_5ObObjEl:342 + 2: 18 + 51: _ZN9oceanbase6common10ObNewRangeC2Ev:1178 + 2: _ZN9oceanbase6common10ObNewRange5resetEv:1178 + 2: 19 + 3: _ZN9oceanbase6common12ObBorderFlag8set_dataEa:171 + 0: 19 + 4: _ZN9oceanbase6common8ObRowkey6assignEPNS0_5ObObjEl:722 + 2: 19 +_ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScanner4openERKNS0_12MacroBlockIdERKNS0_16ObMicroBlockDataEbb:1029377:2917 + 5: 2807 + 7: 2807 _ZN9oceanbase12blocksstable23ObIMicroBlockRowScanner4openERKNS0_12MacroBlockIdERKNS0_16ObMicroBlockDataEbb:2842 + 8.1: 70 + 9.1: 2643 + 10.1: 70 + 12: 2641 + 13: 2641 + 13.3: 2641 + 14: 2687 _ZN9oceanbase12blocksstable10ObDatumRow7reserveElb:2706 + 15.1: 70 + 18: 2687 + 19: 2687 + 20: 28 + 22: 2693 + 23: 2693 + 24: 2693 + 24.1: 2562 + 25: 2693 + 26: 2760 + 26.1: 2562 + 27: 2562 + 27.1: 2562 + 30: 2562 + 31: 2562 + 31.1: 2700 + 32: 2562 + 32.1: 77 + 33: 77 + 33.1: 76 + 38: 2696 + 39: 2696 + 39.1: 69 + 43: 2650 + 9.1: _ZN9oceanbase12blocksstable23ObIMicroBlockRowScanner19set_base_scan_paramEbb:193850 + 8: 2633 _ZN9oceanbase12blocksstable23ObIMicroBlockRowScanner16locate_range_posEbbRlS2_:2642 + 10.1: 70 + 13: 2618 + 14: 13 + 15: 13 + 16: 13 + 17: 13 + 19: 2630 + 20: 2630 + 21: 2630 + 22: 2630 + 26: 70 + 28: 83 + 30: 83 + 12: _ZNK9oceanbase12blocksstable16ObMicroBlockData16get_micro_headerEv:39681 + 2: 2643 + 4.1: 2643 _ZNK9oceanbase12blocksstable18ObMicroBlockHeader8is_validEv:2685 + 13: _ZNK9oceanbase7storage15ObTableReadInfo17get_request_countEv:18487 + 1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:18487 + 0: 2641 + 25.1: _ZNK9oceanbase12blocksstable16ObMicroBlockData16get_micro_headerEv:41043 + 2: 2693 + 4.1: 2693 _ZNK9oceanbase12blocksstable18ObMicroBlockHeader8is_validEv:2710 + 25.2: _ZNK9oceanbase12blocksstable18ObMicroBlockHeader24contain_uncommitted_rowsEv:11040 + 0: 2760 + 26.1: _ZNK9oceanbase12blocksstable16ObMicroBlockData16get_micro_headerEv:40015 + 2: 2749 + 4.1: 2749 _ZNK9oceanbase12blocksstable18ObMicroBlockHeader8is_validEv:2735 + 31: _ZN9oceanbase12blocksstable18ObMicroBlockReader19single_version_rowsEv:33306 + 0: 2562 + 0.1: 2562 + 39.1: _ZNK9oceanbase7storage15ObBlockRowStore8is_validEv:276 + 0: 69 + 40: _ZN9oceanbase7storage15ObBlockRowStore15reset_blockscanEv:414 + 0: 69 +_ZN9oceanbase3sql13ObTableScanOp30cherry_pick_range_by_tablet_idEPNS0_11ObDASScanOpE:1025866:4542 + 1: 4313 + 2: 4313 + 8: 4313 + 8.1: 0 + 9: 4313 + 10.1: 0 + 12.1: 0 + 12.2: 0 + 13: 0 + 14: 0 + 14.1: 0 + 17.1: 4514 + 17.2: 8967 + 17.3: 8967 + 17.6: 4514 + 19: 4567 + 20: 4567 + 20.1: 21 + 20.3: 21 + 21.1: 0 + 22.1: 21 + 24: 4277 + 24.1: 4277 _ZN9oceanbase6common13ObSEArrayImplINS0_10ObNewRangeELl4ENS0_19ModulePageAllocatorELb0EE9push_backERKS2_:4310 + 25.1: 0 + 26.1: 4243 + 28.1: 0 + 29: 0 + 30.1: 0 + 32: 0 + 33.1: 0 + 34: 0 + 37.1: 0 + 37.2: 0 + 41.1: 0 + 46: 4549 + 49.1: 0 + 50: 0 + 50.1: 0 + 51.1: 0 + 54: 0 + 58: 4337 + 63785: 21 + 4: _ZN9oceanbase3sql12get_my_inputINS0_13ObTableScanOpEEERNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE5InputERKS5_:30191 + 7: _ZNK9oceanbase3sql10ObOperator9get_inputEv:30191 + 0: 4313 + 8: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:17252 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:17252 + 0: 4313 + 17.2: _ZNK9oceanbase6common12ObIArrayWrapINS0_10ObNewRangeEE5countEv:35868 + 0: 8967 + 18: _ZN9oceanbase3sql10ObOperator20clear_evaluated_flagEv:36695 + 2.1: 4474 + 2.3: 21 + 3: 21 + 2.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql10ObEvalInfoEE5countEv:18022 + 0: 4474 + 3: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql10ObEvalInfoEE2atEl:84 + 6: 21 + 3.1: _ZN9oceanbase3sql10ObEvalInfo20clear_evaluated_flagEv:273 + 2: 21 + 4: 21 + 20.1: _ZNK9oceanbase3sql12ObIDASTaskOp13get_tablet_idEv:143360 + 20.2: _ZNK9oceanbase6common12ObIArrayWrapINS0_10ObNewRangeEE2atEl:168 + 6: 21 + 24: _ZNK9oceanbase6common12ObIArrayWrapINS0_10ObNewRangeEE2atEl:64155 + 6: 4277 + 26.1: _ZNK9oceanbase6common12ObIArrayWrapINS0_10ObNewRangeEE2atEl:16972 + 6: 4243 + 28.1: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:0 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:0 + 0: 0 + 34.1: _ZN9oceanbase6common12ObIArrayWrapINS0_10ObNewRangeEE2atEl:0 + 6: 0 + 35: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:0 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:0 + 0: 0 + 35.2: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE2atEl:0 + 6: 0 + 35.3: _ZN9oceanbase6common11ObArrayWrapINS_5share6schema9ObColDescEEC2EPKS4_l:0 + 2: 0 + 1: _ZN9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEEC2EPS4_l:0 + 0: 0 + 36.1: _ZNK9oceanbase3sql15ObTableScanSpec14get_rowkey_cntEv:0 + 1.1: _ZNK9oceanbase7storage15ObTableReadInfo23get_schema_rowkey_countEv:0 + 1: 0 + 47: _ZN9oceanbase6common10ObNewRangeC2Ev:0 + 2: _ZN9oceanbase6common10ObNewRange5resetEv:0 + 2: 0 + 4: _ZN9oceanbase6common8ObRowkey6assignEPNS0_5ObObjEl:0 + 2: 0 + 48: _ZN9oceanbase6common10ObNewRange15set_false_rangeEv:0 + 2: _ZN9oceanbase6common8ObRowkey11set_max_rowEv:0 + 0: 0 + 3: _ZN9oceanbase6common8ObRowkey11set_min_rowEv:0 + 0: 0 + 5: _ZN9oceanbase6common12ObBorderFlag19unset_inclusive_endEv:0 + 0: 0 + 49: _ZNK9oceanbase6common12ObIArrayWrapINS0_10ObNewRangeEE2atEl:0 + 6: 0 +_ZN9oceanbase6common10ObIOHandleD2Ev:1025438:46759 + 1: 44748 + 2.1: 0 + 3: 44210 + 2: _ZN9oceanbase6common10ObIOHandle5resetEv:313236 + 2: 44748 + 4: 0 + 5: 0 + 3: _ZN9oceanbase6common11ObIORequest11dec_out_refEv:0 + 2: 0 + 3: 0 +_ZN9oceanbase6common10ObIOHandleD1Ev:1025438:46759 + 1: 44748 + 2.1: 0 + 3: 44210 + 2: _ZN9oceanbase6common10ObIOHandle5resetEv:313236 + 2: 44748 + 4: 0 + 5: 0 + 3: _ZN9oceanbase6common11ObIORequest11dec_out_refEv:0 + 2: 0 + 3: 0 +_ZNK9oceanbase3sql18ObBasicSessionInfo16get_sys_variableENS_5share17ObSysVarClassTypeERl:1023840:4630 + 1: 4444 + 2: 4444 + 4: 4912 + 5.1: 0 + 6.1: 4912 + 7.1: 0 + 9: 4912 + 3: _ZN9oceanbase6common5ObObjC2Ev:66660 + 2: _ZN9oceanbase6common5ObObj5resetEv:66660 + 6: 4444 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:17776 + 0: 4444 + 4: _ZNK9oceanbase3sql18ObBasicSessionInfo16get_sys_variableENS_5share17ObSysVarClassTypeERNS_6common5ObObjE:578728 + 3: 4444 + 4: 4444 + 5: 4444 + 6: 0 + 7.1: 0 + 8.1: 4393 + 9.1: 0 + 10.1: 4393 + 11: 0 + 12.1: 0 + 14: 4912 _ZNK9oceanbase5share13ObBasicSysVar9get_valueEv:4540 + 16: 4912 + 8.1: _ZNK9oceanbase3sql18ObBasicSessionInfo17inner_get_sys_varENS_5share17ObSysVarClassTypeERPNS2_13ObBasicSysVarE:299795 + 2: 4444 + 3: _ZNK9oceanbase3sql18ObBasicSessionInfo17inner_get_sys_varENS_5share17ObSysVarClassTypeERlRPNS2_13ObBasicSysVarE:233135 + 8.1: 4444 _ZN9oceanbase5share15ObSysVarFactory22calc_sys_var_store_idxENS0_17ObSysVarClassTypeERl:4464 + 9.1: 0 + 10.1: 4393 + 12: 0 + 13.1: 0 + 14.1: 4393 + 15: 0 + 16.1: 0 + 18: 4393 + 20: 4393 + 6.1: _ZNK9oceanbase6common5ObObj7get_intERl:83504 + 3: 4912 + 4: 4912 + 3: _ZNK9oceanbase6common9ObObjMeta6is_intEv:19648 + 0: 4912 +_ZNK9oceanbase12blocksstable17ObFuseRowCacheKey4hashERm:1020380:3312 + 1: 3195 + 2: 3195 + 3: 3195 + 4: 3195 + 5: 3195 + 6: 3195 + 7: 3195 + 8: 3195 + 9: 9 + 10.1: 9 + 11.1: 3424 + 12.1: 9 + 15: 3424 + 3: _ZN9oceanbase6common10murmurhashEPKvim:188505 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:188505 + 13: 3195 + 14: 3195 + 15: 3195 + 17: 3195 + 18: 3195 + 41: 3195 + 42: 3195 + 43: 3195 + 4: _ZN9oceanbase6common10murmurhashEPKvim:166140 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:166140 + 5: 3195 + 13: 3195 + 14: 3195 + 15: 3195 + 17: 3195 + 18: 3195 + 41: 3195 + 42: 3195 + 43: 3195 + 5: _ZN9oceanbase6common10murmurhashEPKvim:166140 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:166140 + 5: 3195 + 13: 3195 + 14: 3195 + 15: 3195 + 17: 3195 + 18: 3195 + 41: 3195 + 42: 3195 + 43: 3195 + 6: _ZN9oceanbase6common10murmurhashEPKvim:166140 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:166140 + 5: 3195 + 13: 3195 + 14: 3195 + 15: 3195 + 17: 3195 + 18: 3195 + 41: 3195 + 42: 3195 + 43: 3195 + 7: _ZNK9oceanbase12blocksstable13ObDatumRowkey8is_validEv:31950 + 0: 3195 + 0.1: 3195 + 11.1: _ZNK9oceanbase12blocksstable13ObDatumRowkey4hashERKNS0_19ObStorageDatumUtilsERm:3195 + 0: 3195 _ZNK9oceanbase12blocksstable13ObDatumRowkey10murmurhashEmRKNS0_19ObStorageDatumUtilsERm:3475 +_ZNK9oceanbase6common8ObRowkey10murmurhashEm:1017341:4366 + 1: 4355 + 2: 4355 + 4: 0 + 5: 0 + 6.1: 0 + 8.1: 4355 + 12.1: 4359 + 13: 4 + 17: 4476 + 4: _ZNK9oceanbase6common8ObRowkey8is_legalEv:69680 + 0: 4355 + 0.1: 4355 + 9: _ZNK9oceanbase6common8ObRowkey10is_min_rowEv:95810 + 4: 0 + 4.1: 0 + 5: 0 + 9: 4355 + 5: _ZNK9oceanbase6common5ObObj12is_min_valueEv:39195 + 2: 4355 + 2.1: 0 + 9.1: _ZNK9oceanbase6common8ObRowkey10is_max_rowEv:65325 + 4: 0 + 4.1: 0 + 5: 0 + 9: 4355 + 5: _ZNK9oceanbase6common5ObObj12is_max_valueEv:39195 + 2: 4355 + 2.1: 0 + 10: _ZNK9oceanbase6common5ObObj4hashEm:0 + 3: 0 + 3.1: 0 + 3: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:0 + 0: 0 + 13: _ZNK9oceanbase6common5ObObj4hashEm:331238 + 3: 4361 + 3.1: 4361 _ZN9oceanbase6common17ObjHashCalculatorILNS0_9ObObjTypeE5ENS0_13ObDefaultHashENS0_5ObObjEE15calc_hash_valueERKS4_m:5 _ZN9oceanbase6common17ObjHashCalculatorILNS0_9ObObjTypeE22ENS0_13ObDefaultHashENS0_5ObObjEE15calc_hash_valueERKS4_m:2 + 3: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:21805 + 0: 4361 + 3.1: _ZN9oceanbase6common17ObjHashCalculatorILNS0_9ObObjTypeE4ENS0_13ObDefaultHashENS0_5ObObjEE15calc_hash_valueERKS4_m:248235 + 0: _ZNK9oceanbase6common5ObObj9get_int32Ev:21775 + 0: 4355 + 0.1: _ZN9oceanbase6common13ObDefaultHash4hashEPKvmm:226460 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:226460 + 5: 4355 + 17: 4355 + 18: 4355 + 41: 4355 + 42: 4355 + 43: 4355 +_ZN9oceanbase3sql19ObDASLocationRouter3getERKNS0_17ObDASTableLocMetaERKNS_6common10ObTabletIDERNS_5share12ObLSLocationE:1015692:4246 + 3: 4148 + 4: 4148 + 5: 4148 + 6: 4148 + 8: 4067 + 9: 0 + 11: 0 + 13: 4067 + 14: 39 + 15.1: 39 + 19: 4067 + 21: 4067 _ZN9oceanbase8observer14global_contextEv:4222 + 21.1: 4078 _ZN9oceanbase5share17ObLocationService3getEmRKNS_6common10ObTabletIDElRbRNS0_6ObLSIDE:4086 + 21.2: 4739 + 26.1: 39 + 27.1: 4739 _ZN9oceanbase8observer14global_contextEv:4707 + 27.2: 4409 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:4473 + 27.4: 4194 _ZN9oceanbase5share17ObLocationService3getElmRKNS0_6ObLSIDElRbRNS0_12ObLSLocationE:4382 + 27.5: 4514 + 33.1: 39 + 37: 4514 + 5: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:81386 + 2: 4148 + 2.1: 39 + 2.2: 39 + 5.1: _ZNK9oceanbase5share12ObTenantBase2idEv:62220 + 0: 4148 + 6: _ZN9oceanbase6common16is_virtual_tableEm:52871 + 2: 4067 + 7: _ZN9oceanbase5shareL36is_oracle_mapping_real_virtual_tableEm:58072 + 2: _ZN9oceanbase5shareL27get_real_table_mappings_tidEm:58072 + 4: 4148 + 7: 0 + 9: 0 + 20: _ZN9oceanbase5share6ObLSIDC2Ev:32536 + 0: 4067 +_ZN9oceanbase8memtable18ObMutatorTableLock9serializeEPclRl:1008096:772 + 2: 733 + 3: 733 + 4: 733 + 6: 733 + 7: 6 + 8.1: 733 _ZNK9oceanbase11transaction9tablelock8ObLockID9serializeEPclRl:756 + 9: 702 + 10: 700 + 11: 700 + 12: 735 + 13: 735 + 14: 615 + 15: 8 + 16: 8 + 17.1: 6 + 22: 6 + 23: 600 + 24: 633 _ZN9oceanbase6common13serialization10encode_i32EPclRli:637 + 25.1: 8 + 27: 633 + 30: 633 + 9: _ZN9oceanbase6common13serialization11encode_vi64EPclRll:38421 + 4: 723 + 5: 723 + 6.1: 723 + 7: 0 + 8: 0 + 11: 723 + 4: _ZN9oceanbase6common13serialization19encoded_length_vi64El:5616 + 4: 702 + 6.1: 0 + 8.1: 0 + 10.1: 0 + 12.1: 0 + 14.1: 0 + 16.1: 0 + 18.1: 0 + 10: _ZN9oceanbase6common13serialization9encode_i8EPclRla:14000 + 2: 700 + 4: 700 + 5: 700 + 11: _ZN9oceanbase6common13serialization9encode_i8EPclRla:14700 + 2: 700 + 4: 700 + 5: 700 + 12: _ZN9oceanbase6common13serialization11encode_vi64EPclRll:281790 + 4: 705 + 5: 705 + 6: 705 + 6.1: 5220 + 7: 5220 + 8: 5220 + 11: 735 + 4: _ZN9oceanbase6common13serialization19encoded_length_vi64El:74200 + 4: 700 + 6.1: 700 + 8.1: 700 + 10.1: 700 + 12.1: 700 + 14.1: 700 + 16.1: 700 + 18.1: 700 + 13: _ZN9oceanbase6common13serialization11encode_vi64EPclRll:264035 + 3.1: 690 + 4: 735 + 6: 745 + 6.1: 4310 + 7: 4310 + 8: 4310 + 11: 745 + 4: _ZN9oceanbase6common13serialization19encoded_length_vi64El:88033 + 4: 735 + 6.1: 708 + 8.1: 708 + 10.1: 708 + 12.1: 708 + 14.1: 708 + 16.1: 708 + 18.1: 708 + 14: _ZN9oceanbase6common13serialization11encode_vi64EPclRll:222912 + 4: 615 + 5: 611 + 6.1: 4328 + 7: 4328 + 8: 4328 + 11: 611 + 4: _ZN9oceanbase6common13serialization19encoded_length_vi64El:65196 + 4: 615 + 6.1: 615 + 8.1: 615 + 10.1: 615 + 12.1: 615 + 14.1: 615 + 16.1: 615 + 18.1: 615 +_ZN9oceanbase3sql18ObBasicSessionInfo17create_dtc_paramsEPKS1_:1007259:4689 + 1: 4323 + 2: 4323 + 2.3: 4323 + 2.1: _ZNK9oceanbase3sql18ObBasicSessionInfo14get_dtc_paramsEv:886215 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo17get_timezone_infoEv:30261 + 0: _ZNK9oceanbase6common18ObTimeZoneInfoWrap18get_time_zone_infoEv:30261 + 0: 4323 + 2.1: _ZN9oceanbase6common20ObDataTypeCastParamsC2EPKNS0_14ObTimeZoneInfoENS0_8ObStringES5_S5_NS0_15ObCollationTypeES6_S6_b:82137 + 8: 4323 + 10: 4323 + 15: 4323 + 16: 4323 + 17: 4323 + 3: _ZNK9oceanbase3sql18ObBasicSessionInfo25get_local_nls_date_formatEv:224796 + 2: 4323 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache19get_nls_date_formatEv:134013 + 0: 4323 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache19get_nls_date_formatEb:30261 + 0: 4323 + 4: _ZNK9oceanbase3sql18ObBasicSessionInfo30get_local_nls_timestamp_formatEv:103752 + 2: 4323 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_nls_timestamp_formatEv:43230 + 0: 4323 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_nls_timestamp_formatEb:30261 + 0: 4323 + 5: _ZNK9oceanbase3sql18ObBasicSessionInfo33get_local_nls_timestamp_tz_formatEv:116721 + 2: 4323 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache27get_nls_timestamp_tz_formatEv:56199 + 0: 4323 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache27get_nls_timestamp_tz_formatEb:30261 + 0: 4323 + 6: _ZNK9oceanbase3sql18ObBasicSessionInfo17get_nls_collationEv:116721 + 2: 4323 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache17get_nls_collationEv:103752 + 0: 4323 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache17get_nls_collationEb:77814 + 0: 4323 + 7: _ZNK9oceanbase3sql18ObBasicSessionInfo24get_nls_collation_nationEv:112398 + 2: 4323 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_nls_nation_collationEv:103752 + 0: 4323 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_nls_nation_collationEb:77814 + 0: 4323 + 8: _ZNK9oceanbase3sql18ObBasicSessionInfo30get_local_collation_connectionEv:99429 + 2: 4323 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_collation_connectionEv:90783 + 0: 4323 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_collation_connectionEb:77814 + 0: 4323 + 3: _ZN9oceanbase6common20ObDataTypeCastParamsC2Ev:43230 + 4: 4323 + 5: 4323 + 6: 4323 + 2.1: _ZN9oceanbase6common8ObStringC2Ev:0 + 1: 0 +_ZN9oceanbase7storage19ObMetaPointerHandleINS0_14ObTabletMapKeyENS0_8ObTabletEED2Ev:1007060:6116 + 1: 5439 + 3: 5490 + 3.2: 0 + 2: _ZN9oceanbase7storage19ObMetaPointerHandleINS0_14ObTabletMapKeyENS0_8ObTabletEE5resetEv:761642 + 2: 5439 + 3: 5439 + 4: 5439 + 5.1: 0 + 6.1: 5438 + 7.1: 0 + 9: 5438 + 6.1: _ZN9oceanbase7storage13ObResourceMapINS0_14ObTabletMapKeyENS0_13ObMetaPointerINS0_8ObTabletEEEE14dec_handle_refEPNS0_20ObResourceValueStoreIS5_EE:495147 + 2: 5439 + 3: 5439 + 4: 5439 + 5: 0 + 6.1: 0 + 10.1: 5439 + 11.1: 0 + 12.1: 5438 + 13: 0 + 15: 5438 + 10.1: _ZN9oceanbase7storage20ObResourceValueStoreINS0_13ObMetaPointerINS0_8ObTabletEEEE11dec_ref_cntERl:157946 + 4: 5439 + 6.1: 5448 + 7: 5448 + 8: 5448 + 9: 5448 + 13: _ZN9oceanbase7storage13ObResourceMapINS0_14ObTabletMapKeyENS0_13ObMetaPointerINS0_8ObTabletEEEE13free_resourceEPNS0_20ObResourceValueStoreIS5_EE:0 + 2: 0 + 5: 0 + 7: 0 + 8: 0 + 11: 0 + 4: _ZNK9oceanbase7storage20ObResourceValueStoreINS0_13ObMetaPointerINS0_8ObTabletEEEE13get_value_ptrEv:0 + 0: 0 +_ZNK9oceanbase12blocksstable13ObDatumRowkey5equalERKS1_RKNS0_19ObStorageDatumUtilsERb:1001182:3577 + 1: 3314 + 2: 3314 + 4: 3314 + 4.1: 3314 + 4.3: 3314 + 5: 0 + 6.1: 0 + 7.1: 3314 + 8.1: 3314 + 8.2: 3314 + 9: 3314 + 10: 0 + 11.1: 0 + 14: 3314 + 15.1: 3730 + 15.3: 3730 + 15.4: 3730 + 15.6: 3730 + 16: 3730 + 17.1: 0 + 19: 3730 + 25: 3812 + 4: _ZNK9oceanbase12blocksstable13ObDatumRowkey8is_validEv:56338 + 0: 3314 + 0.1: 3314 + 4.1: _ZNK9oceanbase12blocksstable13ObDatumRowkey8is_validEv:62966 + 0: 3314 + 0.1: 3314 + 4.2: _ZNK9oceanbase12blocksstable19ObStorageDatumUtils8is_validEv:26512 + 0: 3314 + 16.1: _ZNK9oceanbase12blocksstable21ObStorageDatumCmpFunc7compareERKNS0_14ObStorageDatumES4_Ri:149130 + 2: 3314 + 2.2: 3314 _ZN9oceanbase12blocksstableL21nonext_nonext_compareERKNS0_14ObStorageDatumES3_RKNS_6common9ObCmpFuncERi.8f1e732d6655d093e942b32e16c602d8:3339 +_ZN9oceanbase3sql11ObResultSet11open_resultEv:1000830:5165 + 1: 4962 + 2: 4962 + 5: 5123 + 6: 4628 + 7: 0 + 8.1: 0 + 9.2: 4482 _ZN9oceanbase3sql15ObExecuteResult4openERNS0_13ObExecContextE:4505 + 9.3: 4837 + 10: 0 + 11.1: 0 + 13.1: 4837 _ZN9oceanbase3sql11ObResultSet15drive_dml_queryEv:4878 + 13.2: 4523 + 14.1: 0 + 17: 502 + 18: 5217 + 18.1: 5215 _ZN9oceanbase3sql11ObResultSet14set_mysql_infoEv:5475 + 18.2: 5235 + 19.1: 0 + 20.3: 5048 + 25: 0 + 25.2: 5048 + 32.7: 5040 + 3: _ZN9oceanbase5trace16__ObFLTSpanGuardC2Ejh:103051 + 2: 4962 _ZN9oceanbase5trace7ObTrace12get_instanceEv:5019 + 2.1: 5170 _ZN9oceanbase5trace7ObTrace10begin_spanEjhb:5267 + 9.1: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:50908 + 0: 4628 + 0.2: 0 + 20.1: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:57607 + 0: 5237 + 0.2: 0 + 20.2: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:35336 + 2: 5048 + 23.2: _ZNK9oceanbase3sql17ObPhysicalPlanCtx17get_affected_rowsEv:35336 + 2: 5048 + 23.3: _ZN9oceanbase3sql11ObResultSet17set_affected_rowsERKl:35336 + 2: 5048 + 27: _ZN9oceanbase3sql11ObResultSet17set_affected_rowsERKl:0 + 2: 0 + 30: _ZN9oceanbase3sql11ObResultSet11set_errcodeEi:35770 + 2: 5110 + 32.7: _ZN9oceanbase5trace16__ObFLTSpanGuardD2Ev:20440 + 0: 5110 + 0.1: 0 + 0.2: 0 + 0.4: 0 + 0.5: 0 + 0.7: 0 + 0.8: 0 + 0.12: 0 + 0.3: _ZNK9oceanbase5trace4UUID9is_initedEv:0 + 0: 0 + 0.1: 0 + 0.6: _ZN9oceanbase5trace7ObTrace13is_auto_flushEv:0 + 0: 0 + 32.8: _ZN9oceanbase5trace16__ObFLTSpanGuardD2Ev:0 + 0: 0 + 0.1: 0 + 0.2: 0 + 0.4: 0 + 0.5: 0 + 0.7: 0 + 0.8: 0 + 0.12: 0 + 0.3: _ZNK9oceanbase5trace4UUID9is_initedEv:0 + 0: 0 + 0.1: 0 + 0.6: _ZN9oceanbase5trace7ObTrace13is_auto_flushEv:0 + 0: 0 +_ZN9oceanbase3rpc9ObRequest15set_trace_pointEi:997206:25462 + 1: 24207 + 2: 24207 + 3: 24207 + 4: 24207 + 6: 121 + 6.1: 121 + 9: 24207 +_ZN9oceanbase5share19ObLSReplicaLocationC2Ev:995550:13618 + 3: 13274 + 4: 13274 + 7: 13274 + 8: 13274 + 1: _ZN9oceanbase6common6ObAddrC2Ev:371672 + 1: 13274 + 5: _ZN9oceanbase6common17ObReplicaPropertyC2Ev:106192 + 0: 13274 + 6: _ZN9oceanbase5share17ObLSRestoreStatusC2Ev:53096 + 0: 13274 +_ZN9oceanbase5share19ObLSReplicaLocationC1Ev:995550:13618 + 3: 13274 + 4: 13274 + 7: 13274 + 8: 13274 + 1: _ZN9oceanbase6common6ObAddrC2Ev:371672 + 1: 13274 + 5: _ZN9oceanbase6common17ObReplicaPropertyC2Ev:106192 + 0: 13274 + 6: _ZN9oceanbase5share17ObLSRestoreStatusC2Ev:53096 + 0: 13274 +_ZN9oceanbase3sql8ObDASRef16execute_all_taskEv:992829:5585 + 1: 5342 + 2: 5342 + 4.1: 5615 + 4.4: 10896 + 5.2: 5350 + 5.3: 5334 + 6.1: 8 + 11.2: 5354 + 65495: 5342 + 3: _ZN9oceanbase3sql8ObDASRef15begin_task_iterEv:74788 + 0: 5342 + 0: _ZN9oceanbase6common10ObObjStoreIPNS_3sql12ObIDASTaskOpERNS0_12ObIAllocatorELb0EE5beginEv:37394 + 0: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql12ObIDASTaskOpEEEE9get_firstEv:37394 + 0: 5342 + 5: _ZN9oceanbase5share11ObTenantEnv3mtlIPNS_3sql19ObDataAccessServiceEEET_v:150368 + 2: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:70118 + 2: 5350 + 2.1: 8 + 2.2: 8 + 2.1: _ZN9oceanbase5share12ObTenantBase3getIPNS_3sql19ObDataAccessServiceEEET_v:80250 + 0: _ZN9oceanbase5share12ObTenantBase9inner_getENS1_8IdentityIPNS_3sql19ObDataAccessServiceEEE:80250 + 0: 5350 + 5.2: _ZN9oceanbase3sql19ObDataAccessService16execute_das_taskERNS0_8ObDASRefERNS0_12ObIDASTaskOpE:155572 + 2: 5350 + 3: 5350 + 4: 5334 _ZN9oceanbase3sql12ObIDASTaskOp14start_das_taskEv:5174 + 5.1: 8 + 8: 281 _ZN9oceanbase3sql19ObDataAccessService21execute_dist_das_taskERNS0_8ObDASRefERNS0_12ObIDASTaskOpE:280 + 9: 281 + 11: 8 + 12: 283 + 12.1: 8 + 12.2: 8 + 14: 8 + 16: 283 + 3: _ZNK9oceanbase3sql8ObDASRef19is_execute_directlyEv:42800 + 0: 5350 + 12.2: _ZNK9oceanbase3sql12ObIDASTaskOp14can_part_retryEv:32 + 0: 8 + 8: _ZN9oceanbase6common10ObObjStoreIPNS_3sql12ObIDASTaskOpERNS0_12ObIAllocatorELb0EE8IteratorppEv:22460 + 0: _ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql12ObIDASTaskOpEEEE8get_nextEv:22460 + 0: 5615 +_ZN9oceanbase3lib11ObLockGuardINS_6common16ObRecursiveMutexEED2Ev:986753:7103 + 1: 6555 + 2: 6555 + 3: 6555 + 3.1: 5744 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 7.1: 7434 + 3: _ZN9oceanbase6common16ObRecursiveMutex6unlockEv:683826 + 2: 6555 + 3: 6555 + 4: 26 + 5.1: 26 + 6.1: 6555 + 7: 5744 _ZN9oceanbase6common7ObLatch6unlockEPKj:5297 + 8.1: 26 + 11: 1618 + 3: _ZNK9oceanbase6common7ObLatch14is_wrlocked_byEPKj:349625 + 3: 6555 + 4: 6555 + 2.1: _Z9ob_gettidv:297185 + 3: 6555 + 4: 26 + 2: _Z13get_tid_cachev:138851 + 7: 6555 + 7.1: 26 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:598 + 0: 26 +easy_message_destroy:984646:10146 + 1: 9708 + 5: 9708 + 6: 4939 + 9: 4939 + 13: 9615 + 15: 4918 + 15.1: 4918 + 17: 0 + 18: 0 + 23: 4918 + 23.1: 4918 easy_buf_destroy:5279 + 28: 5447 + 29.2: 0 + 29.3: 0 + 29.4: 0 + 29.7: 0 + 31.1: 5548 + 31.2: 0 + 31.3: 0 + 31.4: 0 + 32: 5548 easy_pool_destroy:5612 + 37: 9340 + 10: easy_list_del:108658 + 2: 4939 + 3.1: 4939 + 2: __easy_list_del:34573 + 2: 4939 + 3: 4939 + 13: easy_atomic_add_return:57690 + 2: 9615 + 16: easy_list_del:0 + 2: 0 + 3.1: 0 + 2: __easy_list_del:0 + 2: 0 + 3: 0 + 17: easy_list_del:0 + 2: 0 + 3.1: 0 + 2: __easy_list_del:0 + 2: 0 + 3: 0 + 21: easy_list_del:103278 + 2: 4918 + 3.1: 4918 + 2: __easy_list_del:34426 + 2: 4918 + 3: 4918 +_ZN9oceanbase3sql18ObBasicSessionInfo17load_sys_variableERNS_6common12ObIAllocatorERKNS2_8ObStringERKNS2_5ObObjESA_SA_SA_lb:984466:462 + 8: 434 + 9: 434 + 11: 434 + 19: 434 + 20: 489 _ZN9oceanbase5share15ObSysVarFactory23find_sys_var_id_by_nameERKNS_6common8ObStringEb:445 + 21: 0 + 22: 0 + 24: 0 + 25.1: 0 + 27.1: 489 _ZN9oceanbase5share15ObSysVarFactory22calc_sys_var_store_idxENS0_17ObSysVarClassTypeERl:510 + 28.1: 0 + 29.1: 433 + 30.1: 0 + 31.1: 470 + 32.1: 0 + 33.1: 470 + 34.1: 1 + 35.1: 472 + 36.1: 0 + 37.1: 472 + 38: 0 + 39.1: 0 + 40.1: 472 + 42.1: 0 + 43.1: 429 + 43.2: 428 _ZN9oceanbase5share13ObBasicSysVar4initERKNS_6common5ObObjES5_S5_NS2_9ObObjTypeEl:436 + 44.1: 0 + 46.1: 429 + 48.1: 1 + 50: 457 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:462 + 52: 457 + 13: _ZN9oceanbase6common5ObObjC2Ev:5208 + 2: _ZN9oceanbase6common5ObObj5resetEv:5208 + 6: 434 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:1736 + 0: 434 + 14: _ZN9oceanbase6common5ObObjC2Ev:7812 + 2: _ZN9oceanbase6common5ObObj5resetEv:7812 + 6: 434 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:3038 + 0: 434 + 15: _ZN9oceanbase6common5ObObjC2Ev:7812 + 2: _ZN9oceanbase6common5ObObj5resetEv:7812 + 6: 434 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:3038 + 0: 434 + 16: _ZN9oceanbase6common5ObObjC2Ev:7812 + 2: _ZN9oceanbase6common5ObObj5resetEv:7812 + 6: 434 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:3038 + 0: 434 + 29.1: _ZN9oceanbase3sql18ObBasicSessionInfo17cast_sys_variableERNS_6common12ObIAllocatorEbNS_5share17ObSysVarClassTypeERKNS2_5ObObjES9_lRS7_SA_:392028 + 10: 423 + 12: 423 + 13: 0 + 14.1: 0 + 20.1: 0 + 24: 425 _ZN9oceanbase6common9ObCharset20get_system_collationEv:453 + 25: 476 + 25.1: 436 _ZN9oceanbase6common9ObCharset20get_system_collationEv:442 + 25.2: 452 _ZN9oceanbase6common11ObObjCaster7to_typeENS0_9ObObjTypeENS0_15ObCollationTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS6_:464 + 30.1: 0 + 33.1: 454 + 34.1: 0 + 36: 308 + 38: 148 + 39: 0 + 44: 433 + 45: 433 + 48: 433 + 11: _ZN9oceanbase6common5ObObjC2Ev:7614 + 2: _ZN9oceanbase6common5ObObj5resetEv:7614 + 6: 423 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:2961 + 0: 423 + 20.1: _ZNK9oceanbase6common5ObObj11get_varcharEv:3807 + 0: _ZN9oceanbase6common8ObStringC2ElPKc:3807 + 5: 423 + 20.2: _ZN9oceanbase5share13ObBasicSysVar13is_null_valueERKNS_6common8ObStringEl:5141 + 2: 423 + 3: 423 + 3.1: 13 + 3.1: _ZN9oceanbase6common8ObString11make_stringEPKc:219 + 2: 13 + 4: 14 + 3.2: _ZNK9oceanbase6common8ObStringeqERKS1_:622 + 2: 0 + 2: _ZNK9oceanbase6common8ObString7compareERKS1_:622 + 3: 14 + 5.1: 14 + 7.1: 14 + 7.2: 14 + 7.1: _ZSt3minIiERKT_S2_S2_:78 + 5: 14 + 21: _ZN9oceanbase6common5ObObj8set_nullEv:0 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:0 + 0: 0 + 0.1: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:0 + 0: 0 + 23: _ZNK9oceanbase3sql18ObBasicSessionInfo14get_dtc_paramsEv:85000 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo17get_timezone_infoEv:2975 + 0: _ZNK9oceanbase6common18ObTimeZoneInfoWrap18get_time_zone_infoEv:2975 + 0: 425 + 3: _ZNK9oceanbase3sql18ObBasicSessionInfo25get_local_nls_date_formatEv:23800 + 2: 425 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache19get_nls_date_formatEv:11900 + 0: 425 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache19get_nls_date_formatEb:2975 + 0: 425 + 4: _ZNK9oceanbase3sql18ObBasicSessionInfo30get_local_nls_timestamp_formatEv:12750 + 2: 425 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_nls_timestamp_formatEv:3825 + 0: 425 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_nls_timestamp_formatEb:2975 + 0: 425 + 5: _ZNK9oceanbase3sql18ObBasicSessionInfo33get_local_nls_timestamp_tz_formatEv:14025 + 2: 425 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache27get_nls_timestamp_tz_formatEv:5100 + 0: 425 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache27get_nls_timestamp_tz_formatEb:2975 + 0: 425 + 6: _ZNK9oceanbase3sql18ObBasicSessionInfo17get_nls_collationEv:11050 + 2: 425 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache17get_nls_collationEv:9775 + 0: 425 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache17get_nls_collationEb:7650 + 0: 425 + 7: _ZNK9oceanbase3sql18ObBasicSessionInfo24get_nls_collation_nationEv:11050 + 2: 425 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_nls_nation_collationEv:9775 + 0: 425 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_nls_nation_collationEb:7650 + 0: 425 + 8: _ZNK9oceanbase3sql18ObBasicSessionInfo30get_local_collation_connectionEv:9350 + 2: 425 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_collation_connectionEv:8500 + 0: 425 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_collation_connectionEb:7650 + 0: 425 + 24.1: _ZN9oceanbase6common15ObObjCastParamsC2EPNS0_12ObIAllocatorEPKNS0_20ObDataTypeCastParamsEmNS0_15ObCollationTypeEPNS0_10ObAccuracyE:133416 + 3: 436 + 4: 436 + 6: 436 + 8: 436 + 9: 436 + 10: 436 + 13: 436 + 18: 436 + 12: _ZN9oceanbase6common20ObDataTypeCastParamsC2Ev:24416 + 1: 436 + 4: 436 + 6: 436 + 16: _ZN9oceanbase6common15ObObjCastParams24set_compatible_cast_modeEv:29212 + 2: 436 + 2: _ZN9oceanbase3lib14is_oracle_modeEv:20056 + 2: 436 + 2: _ZN9oceanbase3lib15get_compat_modeEv:18748 + 2: 436 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:10900 + 2: 436 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 25: _ZNK9oceanbase6common5ObObj8get_typeEv:1308 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:1308 + 0: 436 + 33.1: _ZN9oceanbase6common12ObStringBufTINS0_19ModulePageAllocatorENS0_9PageArenaIcS2_EEE9write_objERKNS0_5ObObjEPS6_:78415 + 2: 476 + 7.1: 476 + 8.1: 0 + 10: 0 + 7.1: _ZN9oceanbase6common12ob_write_objINS0_9PageArenaIcNS0_19ModulePageAllocatorEEEEEiRT_RKNS0_5ObObjERS7_:63895 + 2: 476 + 4: 82 + 5: 82 _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE5allocEl:89 + 6: 90 + 7: 90 + 8: 0 + 9.1: 0 + 10.1: 90 _ZN9oceanbase6common5ObObj9deep_copyERKS1_PclRl:91 + 11.1: 0 + 14: 384 + 16: 0 + 3: _ZNK9oceanbase6common5ObObj14need_deep_copyEv:45278 + 3: 311 + 4: 311 + 6.2: 159 + 6.3: 72 + 7: 72 + 8: 397 + 8.1: 19 + 8.2: 12 + 2: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:11424 + 0: 476 + 2.2: _ZN9oceanbase6common17ob_is_string_typeENS0_9ObObjTypeE:7269 + 0: 476 + 0: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:5998 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:5998 + 2: 476 + 7.3: _ZN9oceanbase6common15ob_is_number_tcENS0_9ObObjTypeE:5161 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:5161 + 2: 397 + 4: _ZNK9oceanbase6common5ObObj18get_deep_copy_sizeEv:2019 + 3: 11 + 4: 72 + 5.1: 11 + 6: 11 + 3: _ZNK9oceanbase6common5ObObj14is_string_typeEv:609 + 0: _ZNK9oceanbase6common9ObObjMeta14is_string_typeEv:609 + 0: 83 + 5.2: _ZN9oceanbase6common15ob_is_number_tcENS0_9ObObjTypeE:165 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:165 + 2: 11 + 36: _ZNK9oceanbase6common5ObObj8get_typeEv:4994 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:4994 + 0: 454 + 36.1: _ZN9oceanbase6common17ob_is_string_typeENS0_9ObObjTypeE:10290 + 0: 454 + 0: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:3648 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:3648 + 2: 454 + 37: _ZN9oceanbase6common5ObObj19set_collation_levelERKNS0_16ObCollationLevelE:1036 + 0: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:1036 + 0: 148 + 39.1: _ZN9oceanbase6common5ObObj18set_collation_typeERKNS0_15ObCollationTypeE:0 + 0: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:0 + 0: 0 + 45: _ZNK9oceanbase6common5ObObj8get_typeEv:2598 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:2598 + 0: 433 + 45.1: _ZN9oceanbase6common5ObObj8set_typeERKNS0_9ObObjTypeE:2598 + 2.2: 433 + 3.1: 0 + 31.1: _ZN9oceanbase3sql18ObBasicSessionInfo17cast_sys_variableERNS_6common12ObIAllocatorEbNS_5share17ObSysVarClassTypeERKNS2_5ObObjES9_lRS7_SA_:159028 + 10: 433 + 12: 433 + 13: 0 + 14.1: 0 + 17.1: 357 + 18.1: 433 + 24: 115 _ZN9oceanbase6common9ObCharset20get_system_collationEv:124 + 25: 112 + 25.1: 119 _ZN9oceanbase6common9ObCharset20get_system_collationEv:119 + 25.2: 123 _ZN9oceanbase6common11ObObjCaster7to_typeENS0_9ObObjTypeENS0_15ObCollationTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS6_:125 + 30.1: 0 + 33.1: 109 + 34.1: 1 + 36: 113 + 38: 1 + 39: 1 + 44: 116 + 45: 470 + 48: 470 + 11: _ZN9oceanbase6common5ObObjC2Ev:10825 + 2: _ZN9oceanbase6common5ObObj5resetEv:10825 + 6: 433 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:3031 + 0: 433 + 18.1: _ZNK9oceanbase6common5ObObj11get_varcharEv:1299 + 0: _ZN9oceanbase6common8ObStringC2ElPKc:1299 + 5: 433 + 18.2: _ZN9oceanbase6common8ObString11make_stringEPKc:8478 + 2: 433 + 4: 474 + 18.3: _ZNK9oceanbase6common8ObStringeqERKS1_:8597 + 2: 357 + 2: _ZNK9oceanbase6common8ObString7compareERKS1_:7526 + 3: 474 + 5.1: 115 + 7.1: 122 + 7.2: 115 + 7.1: _ZSt3minIiERKT_S2_S2_:711 + 5: 122 + 20.2: _ZN9oceanbase5share13ObBasicSysVar13is_null_valueERKNS_6common8ObStringEl:1234 + 2: 115 + 3: 115 + 3.1: _ZN9oceanbase6common8ObString11make_stringEPKc:17 + 2: 1 + 4: 1 + 3.2: _ZNK9oceanbase6common8ObStringeqERKS1_:67 + 2: 0 + 2: _ZNK9oceanbase6common8ObString7compareERKS1_:67 + 3: 1 + 5.1: 1 + 7.1: 1 + 7.2: 1 + 7.1: _ZSt3minIiERKT_S2_S2_:6 + 5: 1 + 23: _ZNK9oceanbase3sql18ObBasicSessionInfo14get_dtc_paramsEv:22770 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo17get_timezone_infoEv:805 + 0: _ZNK9oceanbase6common18ObTimeZoneInfoWrap18get_time_zone_infoEv:805 + 0: 115 + 3: _ZNK9oceanbase3sql18ObBasicSessionInfo25get_local_nls_date_formatEv:6440 + 2: 115 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache19get_nls_date_formatEv:3220 + 0: 115 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache19get_nls_date_formatEb:805 + 0: 115 + 4: _ZNK9oceanbase3sql18ObBasicSessionInfo30get_local_nls_timestamp_formatEv:3450 + 2: 115 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_nls_timestamp_formatEv:1035 + 0: 115 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_nls_timestamp_formatEb:805 + 0: 115 + 5: _ZNK9oceanbase3sql18ObBasicSessionInfo33get_local_nls_timestamp_tz_formatEv:3680 + 2: 115 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache27get_nls_timestamp_tz_formatEv:1265 + 0: 115 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache27get_nls_timestamp_tz_formatEb:805 + 0: 115 + 6: _ZNK9oceanbase3sql18ObBasicSessionInfo17get_nls_collationEv:2875 + 2: 115 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache17get_nls_collationEv:2530 + 0: 115 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache17get_nls_collationEb:2070 + 0: 115 + 7: _ZNK9oceanbase3sql18ObBasicSessionInfo24get_nls_collation_nationEv:2875 + 2: 115 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_nls_nation_collationEv:2530 + 0: 115 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_nls_nation_collationEb:2070 + 0: 115 + 8: _ZNK9oceanbase3sql18ObBasicSessionInfo30get_local_collation_connectionEv:2645 + 2: 115 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_collation_connectionEv:2300 + 0: 115 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_collation_connectionEb:2070 + 0: 115 + 24.1: _ZN9oceanbase6common15ObObjCastParamsC2EPNS0_12ObIAllocatorEPKNS0_20ObDataTypeCastParamsEmNS0_15ObCollationTypeEPNS0_10ObAccuracyE:32725 + 3: 119 + 4: 119 + 6: 119 + 8: 119 + 9: 119 + 10: 119 + 13: 119 + 18: 119 + 12: _ZN9oceanbase6common20ObDataTypeCastParamsC2Ev:6188 + 1: 119 + 4: 119 + 6: 119 + 16: _ZN9oceanbase6common15ObObjCastParams24set_compatible_cast_modeEv:8449 + 2: 119 + 2: _ZN9oceanbase3lib14is_oracle_modeEv:5474 + 2: 119 + 2: _ZN9oceanbase3lib15get_compat_modeEv:5117 + 2: 119 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:2975 + 2: 119 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 25: _ZNK9oceanbase6common5ObObj8get_typeEv:476 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:476 + 0: 119 + 33.1: _ZN9oceanbase6common12ObStringBufTINS0_19ModulePageAllocatorENS0_9PageArenaIcS2_EEE9write_objERKNS0_5ObObjEPS6_:17212 + 2: 112 + 7.1: 112 + 8.1: 1 + 10: 1 + 7.1: _ZN9oceanbase6common12ob_write_objINS0_9PageArenaIcNS0_19ModulePageAllocatorEEEEEiRT_RKNS0_5ObObjERS7_:14169 + 2: 112 + 4: 1 + 5: 1 + 6: 1 + 7: 1 + 8: 0 + 9.1: 0 + 10.1: 1 + 11.1: 0 + 14: 109 + 16: 0 + 3: _ZNK9oceanbase6common5ObObj14need_deep_copyEv:11873 + 3: 109 + 4: 109 + 6.2: 1 + 6.3: 1 + 7: 1 + 8: 109 + 8.1: 11 + 8.2: 1 + 2: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:2688 + 0: 112 + 2.2: _ZN9oceanbase6common17ob_is_string_typeENS0_9ObObjTypeE:1667 + 0: 112 + 0: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:1550 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:1550 + 2: 112 + 7.3: _ZN9oceanbase6common15ob_is_number_tcENS0_9ObObjTypeE:1417 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:1417 + 2: 109 + 4: _ZNK9oceanbase6common5ObObj18get_deep_copy_sizeEv:15 + 3: 0 + 4: 1 + 5.1: 0 + 6: 0 + 3: _ZNK9oceanbase6common5ObObj14is_string_typeEv:8 + 0: _ZNK9oceanbase6common9ObObjMeta14is_string_typeEv:8 + 0: 1 + 5.2: _ZN9oceanbase6common15ob_is_number_tcENS0_9ObObjTypeE:0 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:0 + 2: 0 + 36: _ZNK9oceanbase6common5ObObj8get_typeEv:1199 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:1199 + 0: 109 + 36.1: _ZN9oceanbase6common17ob_is_string_typeENS0_9ObObjTypeE:1975 + 0: 109 + 0: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:993 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:993 + 2: 113 + 37: _ZN9oceanbase6common5ObObj19set_collation_levelERKNS0_16ObCollationLevelE:7 + 0: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:7 + 0: 1 + 39.1: _ZN9oceanbase6common5ObObj18set_collation_typeERKNS0_15ObCollationTypeE:11 + 0: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:11 + 0: 1 + 45: _ZNK9oceanbase6common5ObObj8get_typeEv:2820 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:2820 + 0: 470 + 45.1: _ZN9oceanbase6common5ObObj8set_typeERKNS0_9ObObjTypeE:2820 + 2.2: 470 + 3.1: 0 + 33.1: _ZN9oceanbase3sql18ObBasicSessionInfo17cast_sys_variableERNS_6common12ObIAllocatorEbNS_5share17ObSysVarClassTypeERKNS2_5ObObjES9_lRS7_SA_:147397 + 10: 470 + 12: 470 + 13: 0 + 14.1: 0 + 17.1: 353 + 18.1: 470 + 24: 98 _ZN9oceanbase6common9ObCharset20get_system_collationEv:109 + 25: 101 + 25.1: 107 _ZN9oceanbase6common9ObCharset20get_system_collationEv:108 + 25.2: 112 _ZN9oceanbase6common11ObObjCaster7to_typeENS0_9ObObjTypeENS0_15ObCollationTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS6_:121 + 30.1: 0 + 33.1: 98 + 34.1: 0 + 36: 100 + 38: 0 + 39: 1 + 44: 105 + 45: 451 + 48: 451 + 11: _ZN9oceanbase6common5ObObjC2Ev:8460 + 2: _ZN9oceanbase6common5ObObj5resetEv:8460 + 6: 470 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:3290 + 0: 470 + 18.1: _ZNK9oceanbase6common5ObObj11get_varcharEv:1410 + 0: _ZN9oceanbase6common8ObStringC2ElPKc:1410 + 5: 470 + 18.2: _ZN9oceanbase6common8ObString11make_stringEPKc:8901 + 2: 470 + 4: 470 + 18.3: _ZNK9oceanbase6common8ObStringeqERKS1_:8074 + 2: 353 + 2: _ZNK9oceanbase6common8ObString7compareERKS1_:7015 + 3: 464 + 5.1: 110 + 7.1: 110 + 7.2: 110 + 7.1: _ZSt3minIiERKT_S2_S2_:648 + 5: 110 + 20.2: _ZN9oceanbase5share13ObBasicSysVar13is_null_valueERKNS_6common8ObStringEl:1062 + 2: 98 + 3: 98 + 3.1: _ZN9oceanbase6common8ObString11make_stringEPKc:17 + 2: 1 + 4: 1 + 3.2: _ZNK9oceanbase6common8ObStringeqERKS1_:65 + 2: 0 + 2: _ZNK9oceanbase6common8ObString7compareERKS1_:65 + 3: 1 + 5.1: 1 + 7.1: 1 + 7.2: 1 + 7.1: _ZSt3minIiERKT_S2_S2_:6 + 5: 1 + 23: _ZNK9oceanbase3sql18ObBasicSessionInfo14get_dtc_paramsEv:19404 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo17get_timezone_infoEv:686 + 0: _ZNK9oceanbase6common18ObTimeZoneInfoWrap18get_time_zone_infoEv:686 + 0: 98 + 3: _ZNK9oceanbase3sql18ObBasicSessionInfo25get_local_nls_date_formatEv:5488 + 2: 98 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache19get_nls_date_formatEv:2744 + 0: 98 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache19get_nls_date_formatEb:686 + 0: 98 + 4: _ZNK9oceanbase3sql18ObBasicSessionInfo30get_local_nls_timestamp_formatEv:2940 + 2: 98 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_nls_timestamp_formatEv:882 + 0: 98 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_nls_timestamp_formatEb:686 + 0: 98 + 5: _ZNK9oceanbase3sql18ObBasicSessionInfo33get_local_nls_timestamp_tz_formatEv:3136 + 2: 98 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache27get_nls_timestamp_tz_formatEv:1078 + 0: 98 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache27get_nls_timestamp_tz_formatEb:686 + 0: 98 + 6: _ZNK9oceanbase3sql18ObBasicSessionInfo17get_nls_collationEv:2450 + 2: 98 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache17get_nls_collationEv:2156 + 0: 98 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache17get_nls_collationEb:1764 + 0: 98 + 7: _ZNK9oceanbase3sql18ObBasicSessionInfo24get_nls_collation_nationEv:2450 + 2: 98 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_nls_nation_collationEv:2156 + 0: 98 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_nls_nation_collationEb:1764 + 0: 98 + 8: _ZNK9oceanbase3sql18ObBasicSessionInfo30get_local_collation_connectionEv:2254 + 2: 98 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_collation_connectionEv:1960 + 0: 98 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_collation_connectionEb:1764 + 0: 98 + 24.1: _ZN9oceanbase6common15ObObjCastParamsC2EPNS0_12ObIAllocatorEPKNS0_20ObDataTypeCastParamsEmNS0_15ObCollationTypeEPNS0_10ObAccuracyE:29425 + 3: 107 + 4: 107 + 6: 107 + 8: 107 + 9: 107 + 10: 107 + 13: 107 + 18: 107 + 12: _ZN9oceanbase6common20ObDataTypeCastParamsC2Ev:5564 + 1: 107 + 4: 107 + 6: 107 + 16: _ZN9oceanbase6common15ObObjCastParams24set_compatible_cast_modeEv:7597 + 2: 107 + 2: _ZN9oceanbase3lib14is_oracle_modeEv:4922 + 2: 107 + 2: _ZN9oceanbase3lib15get_compat_modeEv:4601 + 2: 107 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:2675 + 2: 107 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 25: _ZNK9oceanbase6common5ObObj8get_typeEv:428 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:428 + 0: 107 + 33.1: _ZN9oceanbase6common12ObStringBufTINS0_19ModulePageAllocatorENS0_9PageArenaIcS2_EEE9write_objERKNS0_5ObObjEPS6_:16000 + 2: 101 + 7.1: 101 + 8.1: 0 + 10: 0 + 7.1: _ZN9oceanbase6common12ob_write_objINS0_9PageArenaIcNS0_19ModulePageAllocatorEEEEEiRT_RKNS0_5ObObjERS7_:13303 + 2: 101 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9.1: 0 + 10.1: 0 + 11.1: 0 + 14: 98 + 16: 0 + 3: _ZNK9oceanbase6common5ObObj14need_deep_copyEv:11325 + 3: 98 + 4: 98 + 6.2: 0 + 6.3: 0 + 7: 0 + 8: 98 + 8.1: 1 + 8.2: 1 + 2: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:2424 + 0: 101 + 2.2: _ZN9oceanbase6common17ob_is_string_typeENS0_9ObObjTypeE:2204 + 0: 101 + 0: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:2103 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:2103 + 2: 101 + 7.3: _ZN9oceanbase6common15ob_is_number_tcENS0_9ObObjTypeE:1274 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:1274 + 2: 98 + 4: _ZNK9oceanbase6common5ObObj18get_deep_copy_sizeEv:0 + 3: 0 + 4: 0 + 5.1: 0 + 6: 0 + 3: _ZNK9oceanbase6common5ObObj14is_string_typeEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta14is_string_typeEv:0 + 0: 0 + 5.2: _ZN9oceanbase6common15ob_is_number_tcENS0_9ObObjTypeE:0 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:0 + 2: 0 + 36: _ZNK9oceanbase6common5ObObj8get_typeEv:1078 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:1078 + 0: 98 + 36.1: _ZN9oceanbase6common17ob_is_string_typeENS0_9ObObjTypeE:1476 + 0: 98 + 0: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:594 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:594 + 2: 100 + 37: _ZN9oceanbase6common5ObObj19set_collation_levelERKNS0_16ObCollationLevelE:0 + 0: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:0 + 0: 0 + 39.1: _ZN9oceanbase6common5ObObj18set_collation_typeERKNS0_15ObCollationTypeE:11 + 0: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:11 + 0: 1 + 45: _ZNK9oceanbase6common5ObObj8get_typeEv:2706 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:2706 + 0: 451 + 45.1: _ZN9oceanbase6common5ObObj8set_typeERKNS0_9ObObjTypeE:2706 + 2.2: 451 + 3.1: 0 + 35.1: _ZN9oceanbase3sql18ObBasicSessionInfo14create_sys_varENS_5share17ObSysVarClassTypeElRPNS2_13ObBasicSysVarE:51671 + 3: 451 + 4.1: 451 + 4.3: 451 + 4.4: 0 + 4.5: 0 + 4.7: 0 + 6: 451 + 7.1: 1 + 7.2: 0 + 7.3: 0 + 9: 1 + 9.1: 1 + 11.1: 0 + 11.2: 471 _ZN9oceanbase5share15ObSysVarFactory14create_sys_varENS0_17ObSysVarClassTypeERPNS0_13ObBasicSysVarE:453 + 11.4: 0 + 12: 471 + 12.2: 0 + 12.3: 0 + 13: 471 + 13.1: 471 + 40.1: _ZN9oceanbase3sql18ObBasicSessionInfo32change_value_for_special_sys_varENS_5share17ObSysVarClassTypeERKNS_6common5ObObjERS5_:22359 + 4: 472 + 5: 472 + 7: 472 + 7.2: 3 + 8: 3 + 9: 6 _ZN9oceanbase5share15ObSysVarFactory22calc_sys_var_store_idxENS0_17ObSysVarClassTypeERl:4 + 10.1: 0 + 11.1: 6 + 16: 4 _ZN9oceanbase5share14ObSysVariables17get_default_valueEl:4 + 19: 472 + 21: 428 + 12: _ZN9oceanbase6common5ObObj11set_varcharEPKc:39 + 4: 2 + 5: 2 + 2: _ZN9oceanbase6common9ObObjMeta11set_varcharEv:8 + 0: 2 + 14: _ZN9oceanbase6common5ObObj19set_collation_levelERKNS0_16ObCollationLevelE:6 + 0: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:6 + 0: 1 + 43.1: _ZNK9oceanbase6common5ObObj8get_typeEv:3424 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:3424 + 0: 428 + 46.1: _ZN9oceanbase3sql18ObBasicSessionInfo24process_session_variableENS_5share17ObSysVarClassTypeERKNS_6common5ObObjEb:18145 + 3: 429 + 4: 429 + 6.1: 2 + 6.2: 2 _ZN9oceanbase3sql18ObBasicSessionInfo25process_session_log_levelERKNS_6common5ObObjE:2 + 6.4: 0 + 10.1: 7 + 10.2: 8 _ZN9oceanbase3sql18ObBasicSessionInfo40process_session_compatibility_mode_valueERKNS_6common5ObObjE:7 + 10.4: 0 + 14.1: 4 + 14.2: 4 _ZN9oceanbase3sql18ObBasicSessionInfo30process_session_sql_mode_valueERKNS_6common5ObObjE:4 + 14.4: 0 + 18.1: 3 + 18.2: 3 _ZN9oceanbase3sql18ObBasicSessionInfo31process_session_time_zone_valueERKNS_6common5ObObjEb:3 + 18.4: 0 + 22.1: 4 + 22.2: 3 + 22.4: 0 + 26: 2 + 27.5: 2 + 27.6: 2 + 27.7: 2 _ZN9oceanbase6common11ObObjCaster7to_typeENS0_9ObObjTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS5_RPS6_:2 + 27.8: 2 + 27.10: 0 + 27.16: 0 + 27.17: 2 + 27.18: 0 + 27.19: 0 + 27.25: 2 + 27.27: 0 + 27.35: 0 + 27.36: 2 + 29: 2 _ZN9oceanbase3lib11ObLockGuardINS_6common16ObRecursiveMutexEED2Ev:2 + 29.1: 0 + 32: 1 + 37: 1 + 42.3: 3 + 42.5: 3 _ZN9oceanbase6common11ObObjCaster7to_typeENS0_9ObObjTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS5_RPS6_:3 + 42.6: 3 + 42.8: 0 + 42.13: 0 + 42.14: 3 + 42.15: 0 + 42.16: 0 + 42.22: 3 + 42.24: 0 + 42.32: 3 + 43: 3 + 44: 3 + 50.2: 0 + 50.4: 0 + 51: 0 + 56.2: 4 + 56.4: 0 + 57: 0 + 62.2: 1 + 62.4: 0 + 63: 0 + 68.2: 1 + 68.4: 0 + 69: 0 + 74.2: 0 + 74.4: 0 + 75: 0 + 80.2: 1 + 80.4: 0 + 81: 0 + 86.2: 3 + 86.4: 0 + 87: 0 + 92.2: 2 + 92.4: 0 + 93: 0 + 98.2: 2 + 98.4: 0 + 99: 0 + 104: 3 + 105.2: 3 _ZNK9oceanbase6common5ObObj10get_stringERNS0_8ObStringE:3 + 105.4: 0 + 106: 0 + 106.1: 3 _ZN9oceanbase11transaction21tx_isolation_from_strERKNS_6common8ObStringE:3 + 107: 1 + 107.2: 0 + 107.3: 0 + 109: 1 + 109.1: 1 + 114.2: 1 + 114.4: 0 + 115: 1 + 120.2: 0 + 120.4: 0 + 121: 0 + 126.2: 6 + 126.4: 0 + 127: 6 + 132.2: 2 + 132.4: 0 + 133: 2 + 138.2: 1 + 138.4: 0 + 139: 1 + 144.2: 3 + 144.4: 0 + 145: 3 + 150.2: 3 + 150.4: 0 + 151: 3 + 156.2: 5 + 156.4: 0 + 157: 5 + 161: 2 + 163: 2 + 165.1: 1 + 166.1: 1 + 167.1: 1 _ZN9oceanbase6common9ObCharset18is_valid_collationEl:1 + 169.1: 0 + 170: 0 + 172: 1 + 172.1: 1 _ZN9oceanbase6common9ObCharset20charset_type_by_collENS0_15ObCollationTypeE:1 + 178: 5 + 180: 5 + 182.1: 3 + 183.1: 0 + 184.1: 4 _ZN9oceanbase6common9ObCharset18is_valid_collationEl:4 + 186.1: 0 + 187: 0 + 189: 4 + 189.1: 4 _ZN9oceanbase6common9ObCharset20charset_type_by_collENS0_15ObCollationTypeE:4 + 196.2: 2 + 196.4: 0 + 197: 0 + 202.2: 1 + 202.4: 0 + 203: 0 + 208.2: 5 + 208.4: 0 + 209: 5 + 214: 2 + 215.2: 2 _ZNK9oceanbase6common5ObObj10get_stringERNS0_8ObStringE:1 + 215.4: 0 + 216: 0 + 216.1: 2 + 217.2: 0 + 217.3: 0 + 217.5: 0 + 218.1: 2 + 223.2: 3 + 223.4: 0 + 224: 3 + 229.2: 0 + 229.4: 0 + 230: 0 + 235.2: 2 + 235.4: 0 + 236: 0 + 241.2: 2 + 241.4: 0 + 242: 0 + 247.2: 0 + 247.4: 0 + 248: 0 + 253.2: 2 _ZNK9oceanbase6common5ObObj10get_stringERNS0_8ObStringE:2 + 253.4: 0 + 254: 0 + 259.2: 1 + 259.4: 0 + 260: 0 + 265.2: 0 + 265.4: 0 + 266: 0 + 271.2: 0 + 271.4: 0 + 272: 0 + 277.2: 0 + 277.4: 0 + 278: 0 + 286: 2 + 289: 0 + 293: 0 + 293.1: 0 + 295.1: 0 + 296.2: 0 + 296.3: 0 + 297.1: 0 + 304: 0 + 311.1: 0 + 311.2: 0 + 311.3: 0 + 311.5: 0 + 312: 0 + 313: 0 + 314: 0 + 315.1: 0 + 319.1: 0 + 322.1: 0 + 331: 4 _ZNK9oceanbase6common5ObObj10get_stringERNS0_8ObStringE:3 + 332.1: 0 + 333.1: 6 _ZN9oceanbase5share16IsoCurrencyUtils28get_currency_by_country_nameERKNS_6common8ObStringERS3_:3 + 335: 0 + 336.1: 0 + 346: 8 _ZNK9oceanbase6common5ObObj10get_stringERNS0_8ObStringE:8 + 347.1: 0 + 351: 8 + 362: 8 _ZN9oceanbase6common9ObDFMUtil28parse_datetime_format_stringERKNS0_8ObStringERNS0_8ObIArrayINS0_9ObDFMElemEEEb:9 + 362.1: 6 + 364.1: 0 + 365.1: 6 _ZN9oceanbase6common9ObDFMUtil14check_semanticERKNS0_8ObIArrayINS0_9ObDFMElemEEERNS0_13ObFixedBitSetILl64EEEm:6 + 365.2: 4 + 366.1: 0 + 368: 4 + 383.2: 0 + 383.3: 4 _ZN9oceanbase6common13ObSEArrayImplINS0_9ObDFMElemELl10ENS0_19ModulePageAllocatorELb0EED2Ev:4 + 389: 1 + 390: 1 + 391.2: 1 _ZNK9oceanbase6common5ObObj10get_stringERNS0_8ObStringE:1 + 391.4: 0 + 392: 0 + 392.1: 3 _ZN9oceanbase6common9ObCharset27charset_type_by_name_oracleERKNS0_8ObStringE:1 + 393: 3 + 393.1: 3 _ZN9oceanbase6common9ObCharset28get_default_collation_oracleENS0_13ObCharsetTypeE:3 + 394: 3 + 394.1: 3 + 394.2: 3 _ZN9oceanbase6common9ObCharset18is_valid_collationEl:3 + 394.3: 3 + 394.4: 0 + 394.5: 0 + 396: 3 + 397: 0 + 397.1: 0 + 399: 5 + 399.1: 5 + 405: 3 _ZNK9oceanbase6common5ObObj10get_stringERNS0_8ObStringE:2 + 406.1: 0 + 407.1: 4 _ZN9oceanbase5share17ObLabelSeResolver26deserialize_session_labelsERKNS_6common8ObStringERNS2_8ObIArrayINS0_21ObLabelSeSessionLabelEEE:1 + 409.1: 1 + 415: 3 _ZNK9oceanbase6common5ObObj10get_stringERNS0_8ObStringE:2 + 416.1: 0 + 426: 85 + 22.2: _ZN9oceanbase3sql18ObBasicSessionInfo34process_session_overlap_time_valueERKNS_6common5ObObjE:122 + 3: 4 + 3.1: 4 _ZN9oceanbase6common18ObTimeZoneInfoWrap25set_error_on_overlap_timeEb:3 + 4.1: 0 + 6: 0 + 3: _ZNK9oceanbase6common5ObObj8get_boolEv:44 + 0: 4 + 26: _ZN9oceanbase3lib11ObLockGuardINS_6common16ObRecursiveMutexEEC2ERS3_:272 + 1: 2 + 2: 2 + 4: 2 + 5.1: 0 + 4: _ZN9oceanbase6common16ObRecursiveMutex4lockEv:232 + 2: 2 + 3: 2 + 4: 0 + 6: 2 _ZN9oceanbase6common7ObLatch6wrlockEjlPKj:2 + 7.1: 0 + 9: 2 + 12: 2 + 3: _ZNK9oceanbase6common7ObLatch14is_wrlocked_byEPKj:120 + 3: 2 + 4: 2 + 2.1: _Z9ob_gettidv:106 + 3: 2 + 4: 0 + 2: _Z13get_tid_cachev:50 + 7: 2 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 + 27.2: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:214 + 4: 2 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:172 + 2: 2 + 3: 2 + 4: 2 + 5: 2 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:76 + 0: 2 + 27.3: _ZN9oceanbase6common15ObObjCastParamsC2EPNS0_12ObIAllocatorEPKNS0_20ObDataTypeCastParamsEmNS0_15ObCollationTypeEPNS0_10ObAccuracyE:336 + 3: 2 + 4: 2 + 6: 2 + 8: 2 + 13: 2 + 12: _ZN9oceanbase6common20ObDataTypeCastParamsC2Ev:34 + 4: 2 + 6: 2 + 16: _ZN9oceanbase6common15ObObjCastParams24set_compatible_cast_modeEv:138 + 2: 2 + 2: _ZN9oceanbase3lib14is_oracle_modeEv:92 + 2: _ZN9oceanbase3lib15get_compat_modeEv:92 + 2: 2 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:56 + 2: 2 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 27.5: _ZN9oceanbase6common5ObObjC2Ev:28 + 2: _ZN9oceanbase6common5ObObj5resetEv:28 + 6: 2 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:14 + 0: 2 + 27.24: _ZNK9oceanbase6common5ObObj7get_intERl:26 + 3: 2 + 4: 2 + 3: _ZNK9oceanbase6common9ObObjMeta6is_intEv:6 + 0: 2 + 27.38: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:32 + 0: 2 _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEED2Ev:2 + 27.40: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:0 + 0: 0 + 42.3: _ZN9oceanbase6common5ObObjC2Ev:33 + 2: _ZN9oceanbase6common5ObObj5resetEv:33 + 6: 3 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:9 + 0: 3 + 42.21: _ZNK9oceanbase6common5ObObj7get_intERl:39 + 3: 3 + 4: 3 + 3: _ZNK9oceanbase6common9ObObjMeta6is_intEv:9 + 0: 3 + 42.35: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:36 + 0: 3 _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEED2Ev:3 + 42.37: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:0 + 0: 0 + 42.38: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:321 + 4: 3 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:258 + 2: 3 + 3: 3 + 4: 3 + 5: 3 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:114 + 0: 3 + 42.39: _ZN9oceanbase6common15ObObjCastParamsC2EPNS0_12ObIAllocatorEPKNS0_20ObDataTypeCastParamsEmNS0_15ObCollationTypeEPNS0_10ObAccuracyE:537 + 3: 3 + 4: 3 + 6: 3 + 8: 3 + 13: 3 + 12: _ZN9oceanbase6common20ObDataTypeCastParamsC2Ev:51 + 4: 3 + 6: 3 + 16: _ZN9oceanbase6common15ObObjCastParams24set_compatible_cast_modeEv:240 + 2: 3 + 2: _ZN9oceanbase3lib14is_oracle_modeEv:138 + 2: _ZN9oceanbase3lib15get_compat_modeEv:138 + 2: 3 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:84 + 2: 3 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 50.2: _ZNK9oceanbase6common5ObObj10get_uint64ERm:0 + 3: 0 + 4: 0 + 3: _ZNK9oceanbase6common9ObObjMeta9is_uint64Ev:0 + 0: 0 + 51.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache28set_auto_increment_incrementEm:0 + 0: 0 + 56.2: _ZNK9oceanbase6common5ObObj7get_intERl:56 + 3: 4 + 4: 4 + 3: _ZNK9oceanbase6common9ObObjMeta6is_intEv:16 + 0: 4 + 57.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache33set_sql_throttle_current_priorityEl:60 + 0: 4 + 62.2: _ZNK9oceanbase6common5ObObj7get_intERl:14 + 3: 1 + 4: 1 + 3: _ZNK9oceanbase6common9ObObjMeta6is_intEv:4 + 0: 1 + 63.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache26set_ob_last_schema_versionEl:15 + 0: 1 + 68.2: _ZNK9oceanbase6common5ObObj7get_intERl:14 + 3: 1 + 4: 1 + 3: _ZNK9oceanbase6common9ObObjMeta6is_intEv:4 + 0: 1 + 69.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache20set_sql_select_limitEl:15 + 0: 1 + 74.2: _ZNK9oceanbase6common5ObObj10get_uint64ERm:0 + 3: 0 + 4: 0 + 3: _ZNK9oceanbase6common9ObObjMeta9is_uint64Ev:0 + 0: 0 + 75.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache25set_auto_increment_offsetEm:0 + 0: 0 + 80.2: _ZNK9oceanbase6common5ObObj10get_uint64ERm:14 + 3: 1 + 4: 1 + 3: _ZNK9oceanbase6common9ObObjMeta9is_uint64Ev:4 + 0: 1 + 81.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache18set_last_insert_idEm:15 + 0: 1 + 86.2: _ZNK9oceanbase6common5ObObj7get_intERl:42 + 3: 3 + 4: 3 + 3: _ZNK9oceanbase6common9ObObjMeta6is_intEv:12 + 0: 3 + 87.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache20set_binlog_row_imageEl:45 + 0: 3 + 92.2: _ZNK9oceanbase6common5ObObj7get_intERl:28 + 3: 2 + 4: 2 + 3: _ZNK9oceanbase6common9ObObjMeta6is_intEv:8 + 0: 2 + 93.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache22set_foreign_key_checksEl:30 + 0: 2 + 98.2: _ZNK9oceanbase6common5ObObj10get_uint64ERm:28 + 3: 2 + 4: 2 + 3: _ZNK9oceanbase6common9ObObjMeta9is_uint64Ev:8 + 0: 2 + 99.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache29set_default_password_lifetimeEm:30 + 0: 2 + 103: _ZN9oceanbase6common8ObStringC2Ev:39 + 1: 3 + 109.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache16set_tx_isolationENS_11transaction18ObTxIsolationLevelE:14 + 0: 1 + 114.2: _ZNK9oceanbase6common5ObObj7get_intERl:10 + 3: 1 + 3: _ZNK9oceanbase6common9ObObjMeta6is_intEv:4 + 0: 1 + 115.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache16set_tx_read_onlyEb:14 + 0: 1 + 120.2: _ZNK9oceanbase6common5ObObj7get_intERl:0 + 3: 0 + 3: _ZNK9oceanbase6common9ObObjMeta6is_intEv:0 + 0: 0 + 121.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24set_ob_enable_plan_cacheEb:0 + 0: 0 + 126.2: _ZNK9oceanbase6common5ObObj7get_intERl:60 + 3: 6 + 3: _ZNK9oceanbase6common9ObObjMeta6is_intEv:24 + 0: 6 + 127.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache36set_optimizer_use_sql_plan_baselinesEb:84 + 0: 6 + 132.2: _ZNK9oceanbase6common5ObObj7get_intERl:20 + 3: 2 + 3: _ZNK9oceanbase6common9ObObjMeta6is_intEv:8 + 0: 2 + 133.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache40set_optimizer_capture_sql_plan_baselinesEb:28 + 0: 2 + 138.2: _ZNK9oceanbase6common5ObObj7get_intERl:10 + 3: 1 + 3: _ZNK9oceanbase6common9ObObjMeta6is_intEv:4 + 0: 1 + 139.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache22set_is_result_accurateEb:14 + 0: 1 + 144.2: _ZNK9oceanbase6common5ObObj7get_intERl:30 + 3: 3 + 3: _ZNK9oceanbase6common9ObObjMeta6is_intEv:12 + 0: 3 + 145.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache30set__ob_use_parallel_executionEb:42 + 0: 3 + 150.2: _ZNK9oceanbase6common5ObObj7get_intERl:30 + 3: 3 + 3: _ZNK9oceanbase6common9ObObjMeta6is_intEv:12 + 0: 3 + 151.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache38set__optimizer_adaptive_cursor_sharingEb:42 + 0: 3 + 156.2: _ZNK9oceanbase6common5ObObj7get_intERl:50 + 3: 5 + 3: _ZNK9oceanbase6common9ObObjMeta6is_intEv:20 + 0: 5 + 157.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache35set_ob_enable_transmission_checksumEb:70 + 0: 5 + 163: _ZNK9oceanbase6common5ObObj7is_nullEv:6 + 0: _ZNK9oceanbase6common9ObObjMeta7is_nullEv:6 + 0: 2 + 165.1: _ZNK9oceanbase6common5ObObj7get_intERl:11 + 4: 1 + 172.2: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache25set_character_set_resultsENS_6common13ObCharsetTypeE:14 + 0: 1 + 180: _ZNK9oceanbase6common5ObObj7is_nullEv:15 + 0: _ZNK9oceanbase6common9ObObjMeta7is_nullEv:15 + 0: 5 + 182.1: _ZNK9oceanbase6common5ObObj7get_intERl:33 + 4: 3 + 189.2: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache28set_character_set_connectionENS_6common13ObCharsetTypeE:56 + 0: 4 + 196.2: _ZNK9oceanbase6common5ObObj7get_intERl:26 + 3: 2 + 4: 2 + 3: _ZNK9oceanbase6common9ObObjMeta6is_intEv:8 + 0: 2 + 197.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache17set_ob_enable_jitENS_6common15ObJITEnableModeE:28 + 0: 2 + 202.2: _ZNK9oceanbase6common5ObObj7get_intERl:13 + 3: 1 + 4: 1 + 3: _ZNK9oceanbase6common9ObObjMeta6is_intEv:4 + 0: 1 + 203.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache23set_cursor_sharing_modeENS_6common19ObCursorSharingModeE:14 + 0: 1 + 208.2: _ZNK9oceanbase6common5ObObj7get_intERl:50 + 3: 5 + 3: _ZNK9oceanbase6common9ObObjMeta6is_intEv:20 + 0: 5 + 209.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache23set_ob_enable_sql_auditEb:70 + 0: 5 + 213: _ZN9oceanbase6common8ObStringC2Ev:26 + 1: 2 + 216.1: _ZN9oceanbase6common20get_length_semanticsERKNS0_8ObStringE:166 + 3: 2 + 5.1: 1 + 3: _ZNK9oceanbase6common8ObString12case_compareEPKc:120 + 8: _ZNK9oceanbase6common8ObString12case_compareERKS1_:120 + 3: 2 + 10: 2 + 10.1: 2 + 11: 2 + 10: _ZSt3minIiERKT_S2_S2_:12 + 5: 2 + 5.1: _ZNK9oceanbase6common8ObString12case_compareEPKc:27 + 8: _ZNK9oceanbase6common8ObString12case_compareERKS1_:27 + 10.1: 1 + 11: 1 + 218.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24set_nls_length_semanticsEs:34 + 0: 2 + 223.2: _ZNK9oceanbase6common5ObObj7get_intERl:30 + 3: 3 + 3: _ZNK9oceanbase6common9ObObjMeta6is_intEv:12 + 0: 3 + 224.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache14set_autocommitEb:46 + 0: 3 + 229.2: _ZNK9oceanbase6common5ObObj7get_intERl:0 + 3: 0 + 3: _ZNK9oceanbase6common9ObObjMeta6is_intEv:0 + 0: 0 + 230.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache23set_ob_enable_trace_logEb:0 + 0: 0 + 235.2: _ZNK9oceanbase6common5ObObj7get_intERl:28 + 3: 2 + 4: 2 + 3: _ZNK9oceanbase6common9ObObjMeta6is_intEv:8 + 0: 2 + 236.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache21set_ob_org_cluster_idEl:30 + 0: 2 + 241.2: _ZNK9oceanbase6common5ObObj7get_intERl:28 + 3: 2 + 4: 2 + 3: _ZNK9oceanbase6common9ObObjMeta6is_intEv:8 + 0: 2 + 242.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache20set_ob_query_timeoutEl:30 + 0: 2 + 247.2: _ZNK9oceanbase6common5ObObj7get_intERl:0 + 3: 0 + 4: 0 + 3: _ZNK9oceanbase6common9ObObjMeta6is_intEv:0 + 0: 0 + 248.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache23set_ob_pl_block_timeoutEl:0 + 0: 0 + 252: _ZN9oceanbase6common8ObStringC2Ev:34 + 1: 2 + 254.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache17set_plsql_ccflagsERKNS_6common8ObStringE:33 + 0: 1 + 0: _ZN9oceanbase3sql18ObBasicSessionInfo16SysVarsCacheData17set_plsql_ccflagsERKNS_6common8ObStringE:25 + 2: 0 + 6: 0 + 7: 0 + 2: _ZNK9oceanbase6common8ObString5emptyEv:11 + 2: 1 + 2.1: 0 + 3: _ZN9oceanbase6common8ObString5resetEv:14 + 3: 1 + 8: _ZN9oceanbase6common8ObString10assign_ptrEPKci:0 + 2: 0 + 3: 0 + 259.2: _ZNK9oceanbase6common5ObObj7get_intERl:14 + 3: 1 + 4: 1 + 3: _ZNK9oceanbase6common9ObObjMeta6is_intEv:4 + 0: 1 + 260.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache18set_ob_trx_timeoutEl:15 + 0: 1 + 265.2: _ZNK9oceanbase6common5ObObj7get_intERl:0 + 3: 0 + 4: 0 + 3: _ZNK9oceanbase6common9ObObjMeta6is_intEv:0 + 0: 0 + 266.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache23set_ob_trx_idle_timeoutEl:0 + 0: 0 + 271.2: _ZNK9oceanbase6common5ObObj7get_intERl:0 + 3: 0 + 4: 0 + 3: _ZNK9oceanbase6common9ObObjMeta6is_intEv:0 + 0: 0 + 272.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache23set_ob_trx_lock_timeoutEl:0 + 0: 0 + 277.2: _ZNK9oceanbase6common5ObObj7get_intERl:0 + 3: 0 + 4: 0 + 3: _ZNK9oceanbase6common9ObObjMeta6is_intEv:0 + 0: 0 + 278.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24set_collation_connectionEl:0 + 0: 0 + 286.1: _ZNK9oceanbase6common6number8ObNumber7is_zeroEv:8 + 2: 2 + 287: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache13set_timestampEl:38 + 0: 2 + 290.1: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:0 + 4: 0 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 291: _ZN9oceanbase6common6number8ObNumberC2Ev:0 + 0: 0 + 0: _ZN12ObNumberDescC2Ej:0 + 0: 0 + 292: _ZN9oceanbase6common6number8ObNumberC2Ev:0 + 0: 0 + 0: _ZN12ObNumberDescC2Ej:0 + 0: 0 + 293: _ZN9oceanbase6common6number8ObNumber4fromINS0_16ObArenaAllocatorEEEilRT_:0 + 3: 0 + 2: _ZN9oceanbase6common6number8ObNumber10TAllocatorINS0_16ObArenaAllocatorEEC2ERS4_:0 + 0: 0 + 296.1: _ZNK9oceanbase6common5ObObj10get_numberEv:0 + 0: 0 + 296.2: _ZNK9oceanbase6common6number8ObNumber3mulINS0_16ObArenaAllocatorEEEiRKS2_RS2_RT_b:0 + 4: 0 + 3: _ZN9oceanbase6common6number8ObNumber10TAllocatorINS0_16ObArenaAllocatorEEC2ERS4_:0 + 0: 0 + 300: _ZN9oceanbase6common5ObObj10set_numberERKNS0_6number8ObNumberE:0 + 3: 0 + 4: 0 + 2: _ZN9oceanbase6common9ObObjMeta10set_numberEv:0 + 0: 0 + 3: _ZNK9oceanbase6common6number8ObNumber14get_desc_valueEv:0 + 2: 0 + 4: _ZNK9oceanbase6common6number8ObNumber10get_digitsEv:0 + 2: 0 + 302: _ZNK9oceanbase3sql18ObBasicSessionInfo30get_local_collation_connectionEv:0 + 2: 0 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_collation_connectionEv:0 + 0: 0 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_collation_connectionEb:0 + 0: 0 + 305: _ZN9oceanbase6common15ObObjCastParamsC2EPNS0_12ObIAllocatorEPKNS0_20ObDataTypeCastParamsElmNS0_15ObCollationTypeEPKNS0_14ObZerofillInfoEPNS0_10ObAccuracyE:0 + 5: 0 + 6: 0 + 8: 0 + 10: 0 + 11: 0 + 12: 0 + 14: 0 + 15: 0 + 20: 0 + 14: _ZN9oceanbase6common20ObDataTypeCastParamsC2Ev:0 + 4: 0 + 6: 0 + 2.1: _ZN9oceanbase6common8ObStringC2Ev:0 + 1: 0 + 18: _ZN9oceanbase6common15ObObjCastParams24set_compatible_cast_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 311: _ZN9oceanbase6common5ObObjC2Ev:0 + 2: _ZN9oceanbase6common5ObObj5resetEv:0 + 6: 0 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:0 + 0: 0 + 319: _ZNK9oceanbase6common5ObObj7get_intEv:0 + 0: 0 + 319.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache13set_timestampEl:0 + 0: 0 + 325: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:0 + 0: 0 + 325.2: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:0 + 0: 0 + 329: _ZN9oceanbase6common8ObStringC2Ev:52 + 1: 4 + 330: _ZN9oceanbase6common8ObStringC2Ev:44 + 1: 4 + 338: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache20set_iso_nls_currencyERKNS_6common8ObStringE:590 + 0: 8 + 0: _ZN9oceanbase3sql18ObBasicSessionInfo16SysVarsCacheData20set_iso_nls_currencyERKNS_6common8ObStringE:522 + 2: 6 + 5: 6 + 2: _ZNK9oceanbase6common8ObString5emptyEv:156 + 2: 6 + 2.1: 6 + 3: _ZN9oceanbase6common8ObString5resetEv:14 + 3: 1 + 6.1: _ZN9oceanbase6common8ObString10assign_ptrEPKci:204 + 2: 8 + 3: 8 + 345: _ZN9oceanbase6common8ObStringC2Ev:136 + 1: 8 + 359: _ZN9oceanbase6common9ObSEArrayINS0_9ObDFMElemELl10ENS0_19ModulePageAllocatorELb0EEC2Ev:1184 + 0.1: 8 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS0_9ObDFMElemELl10ENS0_19ModulePageAllocatorELb0EEC2ElRKS3_:1064 + 2: 8 + 5: 8 + 6: 8 + 8: 8 + 17.1: 8 + 2: _ZN9oceanbase6common8ObIArrayINS0_9ObDFMElemEEC2EPS2_l:80 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_9ObDFMElemEEC2EPS2_l:80 + 0: 8 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:424 + 0: 8 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:168 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:168 + 2: 8 + 8: 8 + 360: _ZN9oceanbase6common13ObFixedBitSetILl64EEC2Ev:144 + 0: 8 + 370: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache19set_nls_date_formatERKNS_6common8ObStringE:82 + 0: 1 + 0: _ZN9oceanbase3sql18ObBasicSessionInfo16SysVarsCacheData19set_nls_date_formatERKNS_6common8ObStringE:75 + 2: _ZN9oceanbase3sql18ObBasicSessionInfo16SysVarsCacheData14set_nls_formatElRKNS_6common8ObStringE:75 + 3: 1 + 5: 0 + 7: 1 + 3: _ZNK9oceanbase6common8ObString5emptyEv:26 + 2: 1 + 2.1: 1 + 4: _ZN9oceanbase6common8ObString5resetEv:0 + 3: 0 + 8.1: _ZN9oceanbase6common8ObString10assign_ptrEPKci:25 + 2: 1 + 3: 1 + 373: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24set_nls_timestamp_formatERKNS_6common8ObStringE:0 + 0: 0 + 0: _ZN9oceanbase3sql18ObBasicSessionInfo16SysVarsCacheData24set_nls_timestamp_formatERKNS_6common8ObStringE:0 + 2: _ZN9oceanbase3sql18ObBasicSessionInfo16SysVarsCacheData14set_nls_formatElRKNS_6common8ObStringE:0 + 3: 0 + 5: 0 + 7: 0 + 3: _ZNK9oceanbase6common8ObString5emptyEv:0 + 2: 0 + 2.1: 0 + 4: _ZN9oceanbase6common8ObString5resetEv:0 + 3: 0 + 8.1: _ZN9oceanbase6common8ObString10assign_ptrEPKci:0 + 2: 0 + 3: 0 + 376: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache27set_nls_timestamp_tz_formatERKNS_6common8ObStringE:249 + 0: 3 + 0: _ZN9oceanbase3sql18ObBasicSessionInfo16SysVarsCacheData27set_nls_timestamp_tz_formatERKNS_6common8ObStringE:225 + 2: _ZN9oceanbase3sql18ObBasicSessionInfo16SysVarsCacheData14set_nls_formatElRKNS_6common8ObStringE:225 + 3: 3 + 5: 0 + 7: 3 + 3: _ZNK9oceanbase6common8ObString5emptyEv:78 + 2: 3 + 2.1: 3 + 4: _ZN9oceanbase6common8ObString5resetEv:0 + 3: 0 + 8.1: _ZN9oceanbase6common8ObString10assign_ptrEPKci:75 + 2: 3 + 3: 3 + 388: _ZN9oceanbase6common8ObStringC2Ev:15 + 1: 1 + 394.1: _ZN9oceanbase6common9ObCharset16is_valid_charsetEl:15 + 4: 3 + 397.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache17set_nls_collationENS_6common15ObCollationTypeE:0 + 0: 0 + 399.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24set_nls_nation_collationENS_6common15ObCollationTypeE:74 + 0: 5 + 404: _ZN9oceanbase6common8ObStringC2Ev:51 + 1: 3 + 414: _ZN9oceanbase6common8ObStringC2Ev:51 + 1: 3 + 418: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache17set_ob_trace_infoERKNS_6common8ObStringE:191 + 0: 3 + 0: _ZN9oceanbase3sql18ObBasicSessionInfo16SysVarsCacheData17set_ob_trace_infoERKNS_6common8ObStringE:163 + 2: 1 + 5: 1 + 6: 1 + 2: _ZNK9oceanbase6common8ObString5emptyEv:48 + 2: 3 + 2.1: 1 + 3: _ZN9oceanbase6common8ObString5resetEv:42 + 3: 3 + 7: _ZN9oceanbase6common8ObString10assign_ptrEPKci:29 + 2: 1 + 3: 1 +_ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable17ObTmpFileIOHandle14ObIOReadHandleELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:983920:14844 + 1: 14056 + 4.1: 14056 + 4.3: 0 + 5: 0 + 9: 14056 + 10: 0 + 11: 0 + 13: 14056 + 15: 14056 + 24: 14056 + 25: 14056 +_ZN9oceanbase3sql16LinkExecCtxGuard22unlink_current_contextEv:983367:16614 + 1: 15609 + 7: 15609 + 8: 15609 + 10: 0 + 12: 15609 + 14: 15609 + 8: _ZN9oceanbase3sql10ObSQLUtils13is_nested_sqlEPNS0_13ObExecContextE:265353 + 2: 0 + 2: _ZN9oceanbase3sql10ObSQLUtils16is_pl_nested_sqlEPNS0_13ObExecContextE:265353 + 3: 15609 + 3.1: 15609 + 6: 0 + 7: 0 + 7.1: 0 + 8: 0 + 8.2: 0 + 3.1: _ZN9oceanbase3sql13ObExecContext14get_parent_ctxEv:109263 + 0: 15609 + 6: _ZN9oceanbase3sql13ObExecContext11get_sql_ctxEv:0 + 0: 0 + 6.2: _ZN9oceanbase3sql6ObStmt11is_dml_stmtENS0_4stmt8StmtTypeE:0 + 3: 0 + 7.1: _ZN9oceanbase3sql13ObExecContext16get_pl_stack_ctxEv:0 + 0: 0 + 2.1: _ZN9oceanbase3sql10ObSQLUtils16is_fk_nested_sqlEPNS0_13ObExecContextE:0 + 4: 0 + 5: 0 + 4: _ZN9oceanbase3sql13ObExecContext14get_parent_ctxEv:0 + 0: 0 + 12: _ZN9oceanbase3sql13ObExecContext14get_parent_ctxEv:109263 + 0: 15609 + 12.1: _ZN9oceanbase3sql16ObSQLSessionInfo16set_cur_exec_ctxEPNS0_13ObExecContextE:109263 + 0: 15609 +_ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable17ObTmpFileIOHandle17ObPageCacheHandleELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:982940:14748 + 1: 14042 + 4.1: 14042 + 4.3: 0 + 5: 0 + 9: 14042 + 10: 0 + 11: 0 + 13: 14042 + 15: 14042 + 24: 14042 + 25: 14042 +_ZNK9oceanbase4palf10PalfHandle8get_roleERNS_6common6ObRoleERlRb:981945:4307 + 1: 4176 + 2: 4176 + 4: 4385 + 3: _ZNK9oceanbase4palf14PalfHandleImpl8get_roleERNS_6common6ObRoleERlRb:790890 + 4: 4176 + 5: 4176 + 6: 17 + 7.1: 17 + 13: 4176 + 15: 4176 + 20: 4176 + 22: 17 + 23: 17 + 31: 17 + 35: 4422 + 38: 4422 + 46: 4385 + 13: _ZNK9oceanbase4palf10LogModeMgr19is_in_pending_stateEv:54288 + 2: 4176 + 15: _ZNK9oceanbase4palf11LogStateMgr15get_proposal_idEv:33408 + 2: 4176 + 17: _ZNK9oceanbase4palf11LogStateMgr16get_leader_epochEv:33408 + 0: 4176 + 19: _ZNK9oceanbase4palf11LogStateMgr18get_role_and_stateERNS_6common6ObRoleERNS0_14ObReplicaStateE:62640 + 2: 4176 + 4: 4176 + 26.1: _ZNK9oceanbase4palf11LogStateMgr33check_epoch_is_same_with_electionEl:231691 + 5: 4176 + 6: 4176 + 7: 4422 _ZNK9oceanbase4palf8election12ElectionImpl8get_roleERNS_6common6ObRoleERl:4426 + 8.1: 17 + 9.1: 4422 + 10.1: 17 + 11.1: 4422 + 12.1: 17 + 38: _ZNK9oceanbase4palf11LogStateMgr15get_proposal_idEv:35376 + 2: 4422 +_ZN9oceanbase8observer9ObMPQueryC2ERKNS0_15ObGlobalContextE:981715:5256 + 0: 4896 _ZN9oceanbase3sql8ObSqlCtxC1Ev:5320 + 6: 5187 + 7: 4978 + 8: 4978 + 8.5: 11 + 0.1: _ZN9oceanbase8observer16ObQueryRetryCtrlC2Ev:89604 + 8: 4978 + 0.2: _ZN9oceanbase6common8ObStringC2Ev:209076 + 1: 4978 + 0.3: _ZN9oceanbase6common8ObStringC2Ev:34846 + 1: 4978 + 1: _ZN9oceanbase8observer8ObMPBaseC2ERKNS0_15ObGlobalContextE:364740 + 0: 5187 + 0.2: 5187 _ZN9oceanbase8observer16ObMPPacketSenderC1Ev:5211 + 1: 5187 + 1.1: 4896 + 2: 5187 + 0: _ZN9oceanbase3rpc5frame14ObSqlProcessorC2Ev:144609 + 0: _ZN9oceanbase3rpc5frame14ObReqProcessorC2Ev:144609 + 1: 5187 + 3: 5187 + 5: 5187 +_ZN9oceanbase8observer9ObMPQueryC1ERKNS0_15ObGlobalContextE:981715:5256 + 0: 4896 _ZN9oceanbase3sql8ObSqlCtxC1Ev:5320 + 6: 5187 + 7: 4978 + 8: 4978 + 8.5: 11 + 0.1: _ZN9oceanbase8observer16ObQueryRetryCtrlC2Ev:89604 + 8: 4978 + 0.2: _ZN9oceanbase6common8ObStringC2Ev:209076 + 1: 4978 + 0.3: _ZN9oceanbase6common8ObStringC2Ev:34846 + 1: 4978 + 1: _ZN9oceanbase8observer8ObMPBaseC2ERKNS0_15ObGlobalContextE:364740 + 0: 5187 + 0.2: 5187 _ZN9oceanbase8observer16ObMPPacketSenderC1Ev:5211 + 1: 5187 + 1.1: 4896 + 2: 5187 + 0: _ZN9oceanbase3rpc5frame14ObSqlProcessorC2Ev:144609 + 0: _ZN9oceanbase3rpc5frame14ObReqProcessorC2Ev:144609 + 1: 5187 + 3: 5187 + 5: 5187 +ev_invoke_pending:973101:733 + 1: 714 + 7: 402 + 8: 402 + 9: 402 + 10: 402 + 11: 402 + 12: 402 + 13: 402 + 14: 402 + 15: 402 + 16: 402 + 17.1: 4656 + 18.1: 4611 + 19: 3988 + 20: 3988 + 21: 3988 + 26: 3988 + 27: 3988 easy_connection_on_readable:4092 easy_connection_on_wakeup:671 pipecb.f8d7388e3b0c2a08f5c22fd7550445b6:166 easy_connection_on_timeout_conn.8d7a091449e6908669a41293537a4cf4:2 + 28: 4350 + 31: 756 + 32: 756 + 33.2: 0 + 33.3: 0 + 33.4: 0 + 35: 744 + 4: current_time:11571 + 3: 714 + 4.2: 0 + 4.3: 0 + 4.4: 0 + 6: 402 + 31: current_time:32385 + 3: 883 + 4.2: 0 + 4.3: 0 + 4.4: 0 + 6: 756 +easy_connection_write_socket:968580:7488 + 1: 6660 + 5: 6660 + 10: 1604 + 10.1: 2 + 11: 2 + 12: 2 + 15: 3142 easy_socket_write:1605 + 16: 3142 + 17: 3142 + 18: 3142 + 19: 3142 ev_now:3149 + 22: 2 + 23.1: 2 + 23.2: 2 + 23.3: 2 + 23.4: 2 + 24: 2 + 25: 2 + 29: 3024 ev_now:2944 + 33: 7924 + 5: easy_list_empty:46620 + 2: 6660 + 20: easy_connection_update_rlmtr:110200 + 4: 2891 + 6: 2891 + 6.1: 2 + 7: 2 + 8: 2 + 9: 2 + 11.1: 2 + 11.2: 2 + 11.3: 2 + 11.4: 2 + 11.7: 2 + 9: easy_atomic_add:16 + 2: 2 + 30: easy_connection_write_again:242518 + 3: 3024 + 4: 2 + 5: 2 + 8: 2 + 9: 2 + 11: 3024 + 12: 2 + 14: 3024 + 15.1: 2 + 16.1: 2 + 16.2: 2 + 16.3: 2 + 16.4: 2 + 16.6: 2 + 18: 2 + 19: 2 + 25: 3024 + 26: 2 + 27: 2 + 3: easy_list_empty:21168 + 2: 3024 + 15.1: easy_list_empty:14 + 2: 2 +epoll_poll.f8d7388e3b0c2a08f5c22fd7550445b6:965829:228 + 1: 217 + 7: 217 + 7.1: 0 + 8: 928 + 9: 928 + 9.1: 0 + 11: 928 + 12: 0 + 13: 0 + 18.1: 6026 + 18.2: 6026 + 19: 5971 + 21: 5971 + 22: 5971 + 23: 5971 + 24: 5971 + 28: 5971 + 34: 5971 + 35: 0 + 39: 0 + 40: 0 + 44: 0 + 54: 1010 + 55: 0 + 56: 0 + 57: 0 + 59.2: 1010 + 50: fd_event:261483 + 2: 0 + 4: 5971 + 5: fd_event_nocheck:219686 + 5.1: 11940 + 9: 5828 + 10: 5828 ev_feed_event:5896 + 55: ev_realloc:0 + 2: 0 + 56: array_nextsize:0 + 5: 0 + 5.1: 0 + 7: 0 + 10: 0 + 12: 0 + 13: 0 + 14: 0 + 57: ev_realloc:0 + 2: 0 + 4: 0 + 8: 0 + 10: 0 +_ZN9oceanbase3sql10ObOperator5closeEv:962853:6542 + 1: 6324 + 2: 6324 + 3: 6324 + 4: 6324 _ZNK9oceanbase3sql15ObTableModifyOp23get_operator_open_orderEv:1035 + 5: 1047 + 7.1: 6370 + 7.3: 17 + 9: 1970 _ZN9oceanbase3sql10ObOperator5closeEv:2021 + 10: 2125 + 11: 13 + 11.3: 13 + 12.1: 13 + 18: 6416 _ZN9oceanbase3sql13ObTableScanOp11inner_closeEv:4224 _ZN9oceanbase3sql8ObSortOp11inner_closeEv:527 _ZN9oceanbase3sql15ObTableUpdateOp11inner_closeEv:524 _ZN9oceanbase3sql15ObTableInsertOp11inner_closeEv:284 _ZN9oceanbase3sql15ObTableDeleteOp11inner_closeEv:268 _ZN9oceanbase3sql14ObExprValuesOp11inner_closeEv:258 _ZN9oceanbase3sql16ObHashDistinctOp11inner_closeEv:251 _ZN9oceanbase3sql19ObScalarAggregateOp11inner_closeEv:249 _ZN9oceanbase3sql17ObMergeDistinctOp11inner_closeEv:5 _ZN9oceanbase3sql17ObTableInsertUpOp11inner_closeEv:1 + 19: 6832 + 20: 21 + 21.1: 21 + 24: 6504 + 23: _ZN9oceanbase3sql10ObOperator22submit_op_monitor_nodeEv:262811 + 3: 6867 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:7004 + 7: 13 + 8: 13 + 9: 13 + 9.1: 13 + 10: 13 + 10.1: 13 + 11: 13 + 11.1: 13 + 12: 13 + 12.1: 13 + 13: 13 + 13.1: 13 + 14: 13 + 15: 13 + 16: 13 + 11.1: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:91 + 2: 13 + 11.2: _ZNK9oceanbase3sql16ObSQLSessionInfo15is_user_sessionEv:91 + 0: 13 + 14: _ZNK9oceanbase3sql13ObExecContext19get_plan_start_timeEv:91 + 0: 13 + 21: _ZN9oceanbase3sql10ObOperator30try_deregister_rt_monitor_nodeEv:172088 + 2: 6304 + 3: 6304 + 4: 6304 + 5: 21 + 6: 21 + 7.1: 13 + 8.1: 21 + 9.1: 13 + 11: 21 + 3: _ZN9oceanbase3sql13ObExecContext18get_register_op_idEv:44128 + 0: 6304 + 11: _ZN9oceanbase3sql13ObExecContext18set_register_op_idEl:231 + 0: 21 +_ZN9oceanbase6common13ObSEArrayImplIPNS_11transaction10ObTransCtxELl32ENS0_19ModulePageAllocatorELb0EED2Ev:955643:11348 + 1: 11301 + 3: 12283 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplIPNS_11transaction10ObTransCtxELl32ENS0_19ModulePageAllocatorELb0EE7destroyEv:528668 + 9: 11301 + 11: 0 + 13: 12283 + 15: 12283 + 24: 12283 + 10: _ZN9oceanbase6common13ObSEArrayImplIPNS_11transaction10ObTransCtxELl32ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase3sql10ObOperator10drain_exchEv:947869:8890 + 1: 8641 + 2: 8641 + 7: 8641 + 8.1: 0 + 9.1: 8641 + 10: 6548 + 11.1: 6548 + 11.5: 2052 + 12: 2055 + 13: 0 + 14.1: 0 + 15.1: 2055 _ZN9oceanbase3sql10ObOperator10drain_exchEv:2116 + 16.1: 0 + 20: 8616 + 7: _ZN9oceanbase3sql10ObOperator8try_openEv:112333 + 0: 8641 + 0.2: 0 +_ZNK9oceanbase6common8ObRowkey9serializeEPclRl:944113:1027 + 1: 1003 + 2: 1003 + 3: 1003 + 4: 0 + 5.1: 0 + 8: 0 + 9.1: 0 + 11.1: 1003 + 12.1: 0 + 14.1: 1060 + 15.1: 0 + 18: 1060 + 7.1: _ZNK9oceanbase6common8ObRowkey8is_legalEv:5015 + 0: 1003 + 11.1: _ZN9oceanbase6common13serialization11encode_vi64EPclRll:69864 + 3.1: 984 + 4: 984 + 5: 984 + 6.1: 984 + 7: 0 + 8: 0 + 11: 984 + 4: _ZN9oceanbase6common13serialization19encoded_length_vi64El:11808 + 4: 984 + 6.1: 0 + 8.1: 0 + 10.1: 0 + 12.1: 0 + 14.1: 0 + 16.1: 0 + 18.1: 0 + 14.1: _ZNK9oceanbase6common8ObRowkey14serialize_objsEPclRl:749277 + 2: 984 + 6.1: 0 + 7: 0 + 8.1: 0 + 11.1: 1023 + 11.3: 1023 + 11.5: 1023 + 12: 1023 + 13.1: 0 + 6.1: _ZNK9oceanbase6common8ObRowkey8is_legalEv:9840 + 0: 984 + 0.1: 0 + 12: _ZNK9oceanbase6common5ObObj9serializeEPclRl:481803 + 3: 984 + 3.1: 984 + 3.3: 0 + 3.9: 0 + 3.16: 0 + 4: 0 + 5: 984 + 6: 0 + 8: 984 + 8.1: 984 + 64359.3: 0 + 3.1: _ZN9oceanbase6common13serialization6encodeINS0_9ObObjMetaEEEiPclRlRKT_:219432 + 2: _ZN9oceanbase6common13serialization11EnumEncoderILb0ENS0_9ObObjMetaEE6encodeEPclRlRKS3_:219432 + 2: _ZNK9oceanbase6common9ObObjMeta9serializeEPclRl:219432 + 3: 984 + 3.1: 984 + 3.3: 0 + 3.4: 0 + 3.9: 0 + 3.16: 0 + 4: 0 + 4.1: 984 + 4.3: 0 + 4.9: 0 + 4.16: 0 + 5: 0 + 5.1: 984 + 5.3: 0 + 5.9: 0 + 5.16: 0 + 6: 0 + 6.1: 984 + 6.3: 0 + 6.9: 0 + 6.16: 0 + 7: 0 + 3.1: _ZN9oceanbase6common13serialization6encodeEPclRlh:72816 + 2: _ZN9oceanbase6common13serialization9encode_i8EPclRla:72816 + 2: 984 + 2.1: 984 + 4: 984 + 5: 984 + 3.4: _ZN9oceanbase6common7ObLogKVIRA6_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 3.11: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 3.13: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 3.15: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 4.1: _ZN9oceanbase6common13serialization6encodeEPclRlh:42312 + 2: _ZN9oceanbase6common13serialization9encode_i8EPclRla:42312 + 2: 984 + 2.1: 984 + 4: 984 + 5: 984 + 4.4: _ZN9oceanbase6common7ObLogKVIRA10_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 4.11: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 4.13: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 4.15: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 5.1: _ZN9oceanbase6common13serialization6encodeEPclRlh:42312 + 2: _ZN9oceanbase6common13serialization9encode_i8EPclRla:42312 + 2: 984 + 2.1: 984 + 4: 984 + 5: 984 + 5.4: _ZN9oceanbase6common7ObLogKVIRA9_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 5.11: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 5.13: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 5.15: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 6.1: _ZN9oceanbase6common13serialization6encodeEPclRla:29520 + 2: _ZN9oceanbase6common13serialization9encode_i8EPclRla:29520 + 2: 0 + 4: 984 + 5: 984 + 6.4: _ZN9oceanbase6common7ObLogKVIRA7_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 6.11: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 6.13: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 6.15: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 3.3: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 3.4: _ZN9oceanbase6common7ObLogKVIRA6_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 3.11: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 3.13: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 3.15: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 5: _ZNK9oceanbase6common9ObObjMeta10is_invalidEv:6888 + 0: 984 + 8.1: _ZN9oceanbase6common17obj_val_serializeILNS0_9ObObjTypeE4EEEiRKNS0_5ObObjEPclRl:185619 + 0: 984 + 0.1: 1023 + 0.3: 0 + 0.9: 0 + 0.11: 0 + 0.18: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRA16_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 0.10: _ZN9oceanbase6common13serialization6encodeEPclRli:164604 + 2: _ZN9oceanbase6common13serialization11encode_vi32EPclRli:164604 + 3: 984 + 3.1: 984 + 4: 984 + 6.1: 984 + 7: 984 + 8: 984 + 11: 1023 + 4: _ZN9oceanbase6common13serialization19encoded_length_vi32Ei:39970 + 4: 984 + 6.1: 984 + 8.1: 967 + 10.1: 0 + 0.13: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.15: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.17: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase7storage20ObTableStoreIterator10add_tablesEPPNS0_8ObITableEl:942789:6427 + 1: 5613 + 2: 5613 + 3: 5613 + 4: 0 + 5.1: 0 + 7.1: 5613 + 7.3: 5613 + 7.5: 5613 + 8: 5613 + 9: 5613 + 10: 0 + 11.1: 0 + 12.1: 5613 + 13.1: 0 + 17: 5600 + 12.1: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl16ENS0_19ModulePageAllocatorELb0EE9push_backERKS4_:145938 + 5: 5613 + 6: 0 + 12: 0 + 15: 0 + 15.1: 5613 + 16: 5613 + 15.1: _ZN9oceanbase6common9ObClassOpIPNS_7storage8ObITableELb1EE20construct_and_assignERKS4_RS4_:22452 + 2: 5613 +_ZN9oceanbase3sql8ObDASCtx21get_das_tablet_mapperEmRNS0_17ObDASTabletMapperEPKNS_6common12ObIArrayWrapImEE:935292:4696 + 3: 4644 + 4: 4644 + 6: 4644 + 7: 4644 + 11: 4637 + 12: 0 + 14: 0 + 16: 4637 + 17: 4637 + 18: 4637 + 19: 12 + 20: 12 + 21: 12 + 22.1: 12 + 24: 12 + 25: 12 + 26: 12 + 26.1: 12 + 27.1: 12 + 29: 12 + 30: 12 + 38: 4637 + 39: 4637 _ZN9oceanbase5share6schema19ObSchemaGetterGuard16get_table_schemaEmmRPKNS1_13ObTableSchemaE:4748 + 41.1: 12 + 42.1: 4476 + 43: 12 + 44.1: 12 + 46: 4476 + 53: 12 + 54.1: 12 + 57: 4476 + 9: _ZN9oceanbase6common16is_virtual_tableEm:78948 + 2: 4644 + 10: _ZN9oceanbase5shareL36is_oracle_mapping_real_virtual_tableEm:65016 + 2: _ZN9oceanbase5shareL27get_real_table_mappings_tidEm:65016 + 4: 4644 + 7: 0 + 9: 0 + 16: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:61061 + 2: 4637 + 2.1: 12 + 2.2: 12 + 16.1: _ZNK9oceanbase5share12ObTenantBase2idEv:69555 + 0: 4637 +realloc_with_mod_stat:930134:10689 + 1: 10516 + 4: 10516 + 6: 4989 + 8: 4989 + 10: 10417 + 10.3: 10417 _ZN9oceanbase6common15ob_easy_reallocEPvm:10841 + 11: 10052 + 12: 5312 + 14: 5312 + 16: 10039 + 7: mod_stat_decode_header:19956 + 3: 4989 + 8: update_mod_stat:84957 + 2: 4989 + 3: 4989 + 4: 4989 + 12: mod_stat_encode_header:37184 + 2: 5312 + 3: 5312 + 13: update_mod_stat:84992 + 2: 5312 + 3: 5312 + 4: 5312 +_ZNK9oceanbase5share6schema21ObSimpleTableSchemaV210has_tabletEv:920733:9959 + 1: 9301 + 3: 9301 + 4.1: 9301 + 5: 9301 + 5.1: 9301 + 2: _ZNK9oceanbase5share6schema21ObSimpleTableSchemaV212is_vir_tableEv:55806 + 0: 9301 + 4.1: _ZNK9oceanbase5share6schema21ObSimpleTableSchemaV215is_aux_vp_tableEv:27903 + 0: 9301 + 5.1: _ZNK9oceanbase5share6schema21ObSimpleTableSchemaV212get_table_idEv:65107 + 0: 9301 + 5.2: _ZN9oceanbase6common16is_virtual_tableEm:139515 + 2: 9301 +_ZN9oceanbase3sql18ObBasicSessionInfo38update_query_sensitive_system_variableERNS_5share6schema19ObSchemaGetterGuardE:910962:5556 + 1: 4983 + 2: 4983 + 3: 4983 + 5: 4983 + 6: 4983 + 7: 4983 + 8: 4983 + 10.1: 5053 _ZNK9oceanbase5share6schema19ObSchemaGetterGuard18get_schema_versionEmRl:5335 + 11.1: 3 + 12.1: 5053 + 14.1: 5205 _ZN9oceanbase5share6schema19ObSchemaGetterGuard23get_sys_variable_schemaEmRPKNS1_25ObSimpleSysVariableSchemaE:5057 + 15.1: 3 + 16.1: 5205 + 17: 3 + 18.1: 3 + 22: 5205 + 23: 5 + 25: 5 + 26: 4 + 26.1: 5 _ZN9oceanbase5share6schema19ObSchemaGetterGuard15get_tenant_infoEmRPKNS1_14ObTenantSchemaE:2 + 27.1: 3 + 28.1: 6 + 28.2: 4 _ZN9oceanbase5share6schema19ObSchemaGetterGuard23get_sys_variable_schemaEmRPKNS1_19ObSysVariableSchemaE:1 + 31.1: 3 + 32: 3 + 34.1: 3 + 36.1: 6 + 37: 3 + 38.1: 3 + 40.1: 445 + 40.2: 448 + 40.3: 448 + 40.5: 445 + 41: 447 _ZNK9oceanbase5share6schema19ObSysVariableSchema17get_sysvar_schemaEl:473 + 42: 447 + 42.1: 447 + 43: 3 + 43.2: 6 _ZN9oceanbase3sql18ObBasicSessionInfo19update_sys_variableERKNS_6common8ObStringES5_:3 + 46: 3 + 48.1: 3 + 55: 6 + 60: 5206 + 6: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:34881 + 0: 4983 + 19.1: _ZNK9oceanbase5share6schema25ObSimpleSysVariableSchema18get_schema_versionEv:41640 + 0: 5205 + 26: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:35 + 0: 5 + 28.1: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:44 + 0: 4 + 42.1: _ZNK9oceanbase5share6schema14ObSysVarSchema18is_query_sensitiveEv:3129 + 0: 447 + 43: _ZNK9oceanbase5share6schema14ObSysVarSchema8get_nameEv:24 + 0: 6 + 43.1: _ZNK9oceanbase5share6schema14ObSysVarSchema9get_valueEv:24 + 0: 6 + 56: _ZN9oceanbase3sql18ObBasicSessionInfo23set_global_vars_versionEl:60 + 0: 6 +_ZN9oceanbase3sql24ObRelationalExprOperator16compare_nullsafeERlRKNS_6common5ObObjES6_RNS3_15ObObjCastParamsENS3_9ObObjTypeENS3_15ObCollationTypeE:907451:3089 + 6: 2921 + 7: 2921 + 10: 3088 + 11.1: 7 + 18: 2963 + 20: 2963 + 23: 2963 + 8: _ZN9oceanbase6common5ObObjC2Ev:46736 + 2: _ZN9oceanbase6common5ObObj5resetEv:46736 + 6: 2921 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:11684 + 0: 2921 + 10: _ZN9oceanbase3sql13get_tz_offsetEPKNS_6common14ObTimeZoneInfoERl:215990 + 3: 2921 + 4: 2921 + 5: 2921 + 5.1: 3088 _ZNK9oceanbase6common14ObTimeZoneInfo19get_timezone_offsetElRi:3168 + 6: 3088 + 13: _ZN9oceanbase6common12ObCompareCtxC2ENS0_9ObObjTypeENS0_15ObCollationTypeEblNS0_12ObCmpNullPosE:58672 + 5: 3088 + 6: 3088 + 7: 3088 + 8: 3088 + 9: 3088 + 17: _ZN9oceanbase6common16default_null_posEv:173313 + 2: _ZN9oceanbase3lib14is_oracle_modeEv:173313 + 2: _ZN9oceanbase3lib15get_compat_modeEv:173313 + 2: 3088 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:123905 + 2: 3088 + 2.1: 7 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:154 + 1: 7 + 18: _ZN9oceanbase3sql24ObRelationalExprOperator7compareERNS_6common5ObObjERKS3_S6_RKNS2_12ObCompareCtxERNS2_15ObObjCastParamsENS2_7ObCmpOpE:140746 + 8: 3088 + 9: 2963 + 10.1: 7 + 11.1: 2963 + 12: 7 + 13.1: 7 + 9: _ZN9oceanbase3sql24ObRelationalExprOperator14compare_nocastERNS_6common5ObObjERKS3_S6_RKNS2_12ObCompareCtxENS2_7ObCmpOpERb:40144 + 7: 3088 _ZN9oceanbase6common13ObObjCmpFuncs7compareERNS0_5ObObjERKS2_S5_RKNS0_12ObCompareCtxENS0_7ObCmpOpERb:3118 + 20: _ZNK9oceanbase6common5ObObj7get_intEv:23704 + 0: 2963 +_ZN9oceanbase3sql11ObResultSet4openEv:905184:5502 + 1: 5372 + 2: 5372 + 3: 5372 + 4.1: 5139 + 4.2: 0 + 5.2: 0 + 6: 0 + 7.3: 0 + 7.4: 0 + 7.5: 0 + 8.1: 5496 _ZN9oceanbase3sql11ObResultSet7executeEv:5523 + 8.2: 5131 + 9.1: 0 + 10.1: 5131 _ZN9oceanbase3sql11ObResultSet11open_resultEv:5165 + 10.2: 4981 + 11.1: 17 + 14: 0 + 16: 4879 + 18.1: 4515 + 20.1: 0 + 28: 0 + 29.5: 5311 _ZN9oceanbase3sql16LinkExecCtxGuardD2Ev:5448 + 3: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:59092 + 0: 5372 + 0.2: 0 + 3.1: _ZN9oceanbase3sql16LinkExecCtxGuardC2ERNS0_16ObSQLSessionInfoERNS0_13ObExecContextE:98401 + 1: 5179 + 2: 5179 + 3: 5179 + 6: 5179 _ZN9oceanbase3sql16LinkExecCtxGuard20link_current_contextEv:5244 + 4: _ZN9oceanbase3lib14is_oracle_modeEv:227826 + 2: _ZN9oceanbase3lib15get_compat_modeEv:227826 + 2: 5139 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:145602 + 2: 5139 + 2.1: 38 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:836 + 1: 38 + 5: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:0 + 0: 0 + 0.2: 0 + 7.2: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 24: _ZN9oceanbase3sql14ObPhysicalPlan21set_is_last_exec_succEb:36120 + 0: 4515 + 29.6: _ZN9oceanbase3sql16LinkExecCtxGuardD2Ev:0 + 2: 0 + 2.1: 0 +_ZN9oceanbase8memtable18ObRedoLogGenerator13fill_redo_logEPclRlRNS0_21ObRedoLogSubmitHelperEb:904310:262 + 5: 258 + 6: 258 + 8: 258 + 8.2: 258 + 9: 0 + 10.1: 0 + 11.1: 258 + 12: 0 + 21: 258 + 22: 243 + 24.1: 258 _ZN9oceanbase8memtable18ObTransCallbackMgr11RDLockGuardC1ERKNS_6common10SpinRWLockE:258 + 26: 243 + 29.3: 2014 + 29.4: 2014 + 29.6: 2014 + 32.1: 1734 + 33.1: 1734 _ZNK9oceanbase8memtable17ObMvccRowCallback18is_logging_blockedEv:1079 _ZNK9oceanbase8memtable16ObITransCallback18is_logging_blockedEv:707 + 33.2: 1778 + 34: 7 + 36: 1778 _ZNK9oceanbase8memtable17ObMvccRowCallback16get_mutator_typeEv:1091 _ZNK9oceanbase11transaction9tablelock17ObOBJLockCallback16get_mutator_typeEv:730 + 36.1: 1871 + 38.1: 747 _ZNK9oceanbase11transaction9tablelock17ObOBJLockCallback16get_mutator_typeEv:757 + 38.2: 796 + 41: 7 + 42.1: 7 + 45: 1760 + 50: 7 + 51: 7 + 54: 7 + 60: 7 + 60.1: 7 + 61: 7 + 63.1: 1760 + 68: 1760 + 69: 1760 _ZN9oceanbase8memtable17ObMvccRowCallback13get_data_sizeEv:1103 _ZN9oceanbase11transaction9tablelock17ObOBJLockCallback13get_data_sizeEv:767 + 69.1: 1829 + 70: 1831 _ZNK9oceanbase8memtable17ObMvccRowCallback10get_seq_noEv:1092 _ZNK9oceanbase11transaction9tablelock17ObOBJLockCallback10get_seq_noEv:794 + 76: 259 + 79: 259 + 80: 259 + 82: 259 + 83: 259 + 84: 259 _ZN9oceanbase8memtable15ObMutatorWriter9serializeEhRl:259 + 84.1: 261 + 86.1: 7 + 89.1: 6 + 91: 6 + 96: 251 + 100.2: 6 + 100.7: 260 _ZN9oceanbase8memtable18ObTransCallbackMgr11RDLockGuardD2Ev:258 + 101: 248 + 14: _ZN9oceanbase8memtable21ObRedoLogSubmitHelper5resetEv:3096 + 3: 258 + 15: _ZN9oceanbase8memtable15ObMutatorWriterC2Ev:16770 + 0: _ZN9oceanbase8memtable21ObMemtableMutatorMetaC2Ev:9288 + 1: 258 + 3: 258 + 5: 258 + 0.1: _ZN9oceanbase6common12ObDataBufferC2Ev:7482 + 0: 258 + 1: 258 + 16.1: _ZN9oceanbase8memtable21ObMemtableMutatorMeta13set_savepointEj:5934 + 7: 258 + 17: _ZN9oceanbase8memtable15ObMutatorWriter10set_bufferEPcl:14190 + 2: 258 + 3: 258 + 4: 258 + 5: 0 + 6.1: 0 + 7.1: 258 + 8: 0 + 9.1: 0 + 13: 258 + 10.1: _ZN9oceanbase6common12ObDataBuffer8set_dataEPcl:3612 + 5: 258 + 6: 258 + 18: _ZN9oceanbase8memtable12RedoDataNodeC2Ev:10578 + 0.1: _ZN9oceanbase8memtable9ObRowDataC2Ev:4386 + 0: 258 + 0.2: _ZN9oceanbase6common10ObTabletIDC2Em:1806 + 0: 258 + 0.10: _ZN9oceanbase8memtable9ObRowDataC2Ev:4386 + 0: 258 + 19: _ZN9oceanbase8memtable21TableLockRedoDataNodeC2Ev:9030 + 0: _ZN9oceanbase8memtable13ObMemtableKeyC2Ev:1806 + 0: 258 + 0.1: _ZN9oceanbase11transaction9tablelock8ObLockIDC2Ev:5418 + 1: 258 + 2: 258 + 0.7: _ZN9oceanbase6common10ObTabletIDC2Em:1806 + 0: 258 + 24: _ZN9oceanbase8memtable18ObTransCallbackMgr10get_rwlockEv:2838 + 0: 258 + 25: _ZN9oceanbase8memtable15ObCallbackScopeC2Ev:1458 + 0.1: _ZN9oceanbase8memtable24ObITransCallbackIteratorC2EPNS0_16ObITransCallbackE:1458 + 0: 243 + 29: _ZN9oceanbase8memtable24ObITransCallbackIteratorplEi:7047 + 2: 243 + 5: _ZN9oceanbase8memtable24ObITransCallbackIteratorppEv:6075 + 2: _ZNK9oceanbase8memtable16ObITransCallback8get_nextEv:6075 + 0: 243 + 29.4: _ZN9oceanbase8memtable18ObTransCallbackMgr3endEv:8056 + 0: _ZN9oceanbase8memtable18ObTransCallbackMgr10get_guard_Ev:8056 + 0: _ZN9oceanbase8memtable16ObTxCallbackList9get_guardEv:8056 + 0: 2014 + 29.5: _ZN9oceanbase8memtable24ObITransCallbackIteratorneERKS1_:6042 + 0: 2014 + 29.9: _ZN9oceanbase8memtable24ObITransCallbackIteratorppEv:7145 + 2: _ZNK9oceanbase8memtable16ObITransCallback8get_nextEv:7145 + 0: 1769 + 20: 1 + 32: _ZNK9oceanbase8memtable16ObITransCallback14need_fill_redoEv:8670 + 0: 1734 + 37: _ZN9oceanbase8memtable18ObRedoLogGenerator13fill_row_redoERNS0_24ObITransCallbackIteratorERNS0_15ObMutatorWriterERNS0_12RedoDataNodeEb:180445 + 5: 1133 + 10: 1133 _ZNK9oceanbase8memtable17ObMvccRowCallback12get_dml_flagEv:1166 + 11: 182 + 21.1: 1091 _ZN9oceanbase8memtable17ObMvccRowCallback8get_redoERNS0_12RedoDataNodeE:1115 + 22.1: 7 + 24: 7 + 26: 1048 + 27: 1048 + 28.1: 6 + 29: 6 + 30.1: 1084 + 30.3: 1048 _ZN9oceanbase8memtable15ObMutatorWriter13append_row_kvElRKNS0_12RedoDataNodeERKNS_11transaction17ObCLogEncryptInfoEb:1068 + 35.1: 7 + 40: 1029 + 12: _ZN9oceanbase8memtable17ObMvccRowCallback21set_not_calc_checksumEb:77 + 2: 7 + 16: _ZN9oceanbase8memtable17ObMvccRowCallback21set_not_calc_checksumEb:2276 + 2: 182 + 26: _ZNK9oceanbase8memtable13ObMemtableCtx13get_trans_ctxEv:7336 + 0: 1048 + 30.1: _ZNK9oceanbase8memtable10ObIMvccCtx21get_max_table_versionEv:7336 + 0: 1048 + 30.2: _ZN9oceanbase11transaction14ObPartTransCtx21get_clog_encrypt_infoEv:7336 + 0: 1048 + 39: _ZN9oceanbase8memtable18ObRedoLogGenerator20fill_table_lock_redoERNS0_24ObITransCallbackIteratorERNS0_15ObMutatorWriterERNS0_21TableLockRedoDataNodeEb:326011 + 5: 796 + 8: 796 + 8.1: 7 + 10.1: 796 _ZN9oceanbase11transaction9tablelock17ObOBJLockCallback8get_redoERNS_8memtable21TableLockRedoDataNodeE:807 + 11.1: 6 + 12.1: 704 + 15.1: 10 + 21: 730 + 12.1: _ZNK9oceanbase8memtable10ObIMvccCtx21get_max_table_versionEv:9716 + 0: 694 + 12.2: _ZN9oceanbase8memtable15ObMutatorWriter20append_table_lock_kvElRKNS0_21TableLockRedoDataNodeE:267466 + 4: 694 + 5: 694 + 11.2: 694 + 12.1: 6 + 13.1: 694 + 14: 7 + 15.1: 7 + 16.2: 694 + 17: 7 + 18.1: 7 + 21: 694 + 27: 694 + 28: 694 + 30: 694 + 31: 694 + 33.1: 694 + 34.1: 694 + 35: 6 + 36.1: 6 + 37.3: 694 _ZNK9oceanbase8memtable18ObMutatorRowHeader9serializeEPclRl:694 + 37.4: 776 + 45.3: 776 _ZN9oceanbase8memtable18ObMutatorTableLock9serializeEPclRl:772 + 45.4: 676 + 53.2: 676 + 55: 676 + 55.1: 676 + 58: 676 + 59.1: 10 + 61: 10 + 11.1: _ZNK9oceanbase8memtable13ObMemtableKey6decodeERNS_6common13ObStoreRowkeyE:32840 + 3: 694 + 3: _ZN9oceanbase6common13ObStoreRowkey11get_obj_ptrEv:2082 + 0: _ZN9oceanbase6common8ObRowkey11get_obj_ptrEv:2082 + 0: 694 + 3.1: _ZNK9oceanbase6common13ObStoreRowkey11get_obj_cntEv:8328 + 0: _ZNK9oceanbase6common8ObRowkey11get_obj_cntEv:8328 + 0: 694 + 3.2: _ZN9oceanbase6common13ObStoreRowkey6assignEPNS0_5ObObjEl:17572 + 3: 694 + 3.2: 694 + 5.1: 6 + 16.1: _ZNK9oceanbase6common10ObTabletID8is_validEv:6940 + 0: 694 + 22: _ZN9oceanbase6common10ObTabletIDaSERKS1_:2776 + 0: 694 + 23: _ZN9oceanbase8memtable18ObMutatorTableLockC2EmRKNS_6common13ObStoreRowkeyElRKNS_11transaction9tablelock8ObLockIDElhNS7_17ObTableLockOpTypeElll:80504 + 12: 694 + 13: 694 + 14: 694 + 16: 694 + 18: 694 + 11: _ZN9oceanbase8memtable9ObMutatorC2EmRKNS_6common13ObStoreRowkeyEll:45804 + 5: 694 + 7: 694 + 8: 694 + 9: 694 + 34: _ZN9oceanbase6common12ObDataBuffer8get_dataEv:4858 + 0: 694 + 37.2: _ZNK9oceanbase6common12ObDataBuffer12get_capacityEv:4858 + 0: 694 + 45.1: _ZN9oceanbase6common12ObDataBuffer8get_dataEv:5432 + 0: 776 + 45.2: _ZNK9oceanbase6common12ObDataBuffer12get_capacityEv:5432 + 0: 776 + 53.1: _ZN9oceanbase8memtable21ObMemtableMutatorMeta13inc_row_countEv:4732 + 3: 676 + 61.1: _ZN9oceanbase6common3maxEll:49 + 2: 7 + 70.1: _ZN9oceanbase6common3maxEll:12803 + 2: 1829 + 78: _ZN9oceanbase8memtable15ObCallbackScopeaSERKS1_:2849 + 0: _ZN9oceanbase8memtable24ObITransCallbackIteratoraSERKS1_:1813 + 2: 259 + 0.1: _ZN9oceanbase8memtable24ObITransCallbackIteratoraSERKS1_:1036 + 2: 259 +_ZN9oceanbase12blocksstable22ObIndexBlockRowScanner4openERKNS0_12MacroBlockIdERKNS0_16ObMicroBlockDataERKNS0_12ObDatumRangeEsbb:903035:2893 + 7: 2741 + 8: 2741 + 9: 2741 + 10: 2 + 11.1: 2 + 12.1: 2741 + 12.2: 2741 + 12.3: 2741 + 14: 2 + 15.1: 2 + 16.1: 3067 _ZN9oceanbase12blocksstable22ObIndexBlockRowScanner18init_by_micro_dataERKNS0_16ObMicroBlockDataE:2877 + 17.1: 2 + 18.1: 3077 _ZN9oceanbase12blocksstable22ObIndexBlockRowScanner12locate_rangeERKNS0_12ObDatumRangeEbb:3232 + 20.1: 2 + 24: 3077 + 25: 3077 + 26: 3077 + 27: 3077 + 28: 3077 + 30: 3077 + 12.1: _ZNK9oceanbase12blocksstable12MacroBlockId8is_validEv:84971 + 2: 2741 + 3: 2741 + 4.1: 2741 + 5.1: 2741 + 12.2: _ZNK9oceanbase12blocksstable16ObMicroBlockData8is_validEv:76748 + 0: 2741 + 0.1: 2741 + 0.2: 2741 + 12.3: _ZNK9oceanbase12blocksstable12ObDatumRange8is_validEv:112381 + 2: 2741 + 2: _ZNK9oceanbase12blocksstable13ObDatumRowkey8is_validEv:46597 + 0: 2741 + 0.1: 2741 + 2.1: _ZNK9oceanbase12blocksstable13ObDatumRowkey8is_validEv:49338 + 0: 2741 + 0.1: 2741 + 23: _ZN9oceanbase12blocksstable12MacroBlockIdaSERKS1_:73848 + 2: 3077 + 3: 3077 + 4: 3077 +_ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEED2Ev:894566:10405 + 0: 9515 + 0.1: 9513 + 0.3: 0 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:456855 + 4.1: 9515 + 6: 0 + 7: 4 + 13: 9513 + 14: 9513 + 15: 9513 + 18: 9513 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:12 + 0: 4 + 5.1: _ZL12abort_unlessb:8 + 5: 4 + 6: 0 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:138 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:138 + 0: 4 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:106 + 2: 4 + 3: 4 _ZN9oceanbase3lib17ObMallocAllocator12get_instanceEv:4 + 4: 4 + 5: 4 _ZN9oceanbase3lib17ObMallocAllocator4freeEPv:4 + 4: _ZL12abort_unlessb:8 + 5: 4 + 6: 0 +_ZN9oceanbase7storage18ObStoreRowIterator13get_iter_flagEv:893048:112978 + 0: 111631 +easy_socket_write:890178:1605 + 1: 1280 + 2: 3419 + 2: easy_socket_tcpwrite:799196 + 13: 1280 + 13.1: 2558 + 15: 1282 + 17: 0 + 19: 0 + 19.2: 0 + 19.3: 0 + 24: 0 + 26.2: 0 + 28: 1282 + 29: 1282 + 30: 1282 + 31: 1282 + 36: 1282 + 42: 1078 + 44: 4197 + 18: easy_socket_chain_writev:0 + 2: 0 + 12: 0 + 13: 0 + 15: 0 + 17.1: 0 + 17.2: 0 + 17.3: 0 + 21: 0 + 24: 0 + 24.1: 0 + 25: 0 + 26: 0 + 27.2: 0 + 27.3: 0 + 27.4: 0 + 27.7: 0 + 31: 0 + 34: 0 + 35: 0 + 36: 0 + 39: 0 + 43: 0 + 49: 0 + 53.1: 0 + 53.2: 0 + 53.3: 0 + 53.4: 0 + 53.8: 0 + 53.11: 0 + 65519: 0 + 53.10: easy_socket_err_reason:0 + 4: 0 + 25: easy_socket_sendfile:0 + 5: 0 + 6.1: 0 + 6.2: 0 + 6.3: 0 + 9: 0 + 10.1: 0 + 10.2: 0 + 10.3: 0 + 10.4: 0 + 12: 0 + 13: 0 + 16: 0 + 19: 0 + 43: easy_socket_chain_writev:565642 + 2: 1078 + 12: 1078 + 13: 1078 + 15: 0 + 17.1: 5468 + 17.2: 0 + 17.3: 0 + 21: 4844 + 24: 4844 + 24.1: 4844 + 25: 4844 + 26: 4844 + 27.2: 0 + 27.3: 0 + 27.4: 0 + 27.7: 0 + 31: 4871 + 34: 4871 + 36: 4871 easy_buf_destroy:4881 + 39: 4197 + 49: 0 + 53.1: 0 + 53.2: 0 + 53.3: 0 + 53.4: 0 + 53.8: 0 + 53.11: 0 + 53.10: easy_socket_err_reason:0 + 4: 0 +_ZN9oceanbase5share12ObLSLocationC2Ev:889177:4572 + 3: 4207 + 4: 4207 + 6: 4207 + 7: 3893 + 1: _ZN9oceanbase6common6ObLinkC2Ev:29449 + 0: 4207 + 2: _ZN9oceanbase5share20ObLSLocationCacheKeyC2Ev:143038 + 1: 4207 + 4: 4207 + 3: _ZN9oceanbase5share6ObLSIDC2Ev:33656 + 0: 4207 + 5: _ZN9oceanbase6common9ObSEArrayINS_5share19ObLSReplicaLocationELl3ENS0_19ModulePageAllocatorELb0EEC2Ev:604671 + 0.1: 3893 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_5share19ObLSReplicaLocationELl3ENS0_19ModulePageAllocatorELb0EEC2ElRKS4_:546276 + 2: 4207 + 5: 3893 + 6: 3893 + 8: 3893 + 17.1: 3893 + 2: _ZN9oceanbase6common8ObIArrayINS_5share19ObLSReplicaLocationEEC2EPS3_l:46716 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_5share19ObLSReplicaLocationEEC2EPS3_l:46716 + 0: 3893 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:221901 + 0: 3893 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:97325 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:97325 + 2: 3893 + 8: 3893 +_ZN9oceanbase5share12ObLSLocationC1Ev:889177:4572 + 3: 4207 + 4: 4207 + 6: 4207 + 7: 3893 + 1: _ZN9oceanbase6common6ObLinkC2Ev:29449 + 0: 4207 + 2: _ZN9oceanbase5share20ObLSLocationCacheKeyC2Ev:143038 + 1: 4207 + 4: 4207 + 3: _ZN9oceanbase5share6ObLSIDC2Ev:33656 + 0: 4207 + 5: _ZN9oceanbase6common9ObSEArrayINS_5share19ObLSReplicaLocationELl3ENS0_19ModulePageAllocatorELb0EEC2Ev:604671 + 0.1: 3893 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_5share19ObLSReplicaLocationELl3ENS0_19ModulePageAllocatorELb0EEC2ElRKS4_:546276 + 2: 4207 + 5: 3893 + 6: 3893 + 8: 3893 + 17.1: 3893 + 2: _ZN9oceanbase6common8ObIArrayINS_5share19ObLSReplicaLocationEEC2EPS3_l:46716 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_5share19ObLSReplicaLocationEEC2EPS3_l:46716 + 0: 3893 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:221901 + 0: 3893 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:97325 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:97325 + 2: 3893 + 8: 3893 +_ZNK9oceanbase7obmysql6OMPKOK9serializeEPclRl:888216:1481 + 0: 0 + 1: 1438 + 2: 1455 + 3: 1455 + 4: 1438 + 4.1: 1438 + 5: 0 + 5.1: 0 + 5.2: 0 + 5.5: 0 + 5.8: 0 + 6.1: 0 + 7: 1455 + 7.1: 1473 + 8: 0 + 8.1: 1455 + 9: 1455 + 9.1: 0 + 10.1: 1473 + 11: 0 + 12.1: 0 + 14: 1473 + 15.1: 0 + 16.1: 1476 _ZN9oceanbase7obmysql11ObMySQLUtil12store_lengthEPclmRl:1489 + 17.1: 0 + 18.1: 1476 _ZN9oceanbase7obmysql11ObMySQLUtil12store_lengthEPclmRl:1546 + 19.1: 0 + 21: 0 + 22: 1455 + 23: 0 + 24.1: 0 + 25.1: 1455 + 26.1: 0 + 32: 0 + 33: 1455 + 34: 0 + 35: 0 + 35.1: 0 + 36: 0 + 37.1: 0 + 41: 0 + 42.1: 0 + 45: 0 + 46: 0 + 47: 0 + 48: 0 + 49: 0 + 50: 0 + 50.1: 0 + 51: 0 + 53.1: 0 + 53.2: 0 + 53.3: 0 + 53.5: 0 + 54: 0 + 55.1: 0 + 56.1: 0 + 57.1: 0 + 57.2: 0 + 58.1: 0 + 59.1: 0 + 60.1: 0 + 64: 0 + 65: 0 + 66: 0 + 67: 0 + 69.1: 0 + 69.2: 0 + 69.3: 0 + 70: 0 + 71: 0 + 74: 0 + 75: 0 + 75.1: 0 + 77.1: 0 + 77.2: 0 + 77.3: 0 + 78: 0 + 79: 0 + 85: 0 + 86: 0 + 87: 0 + 88.1: 0 + 90: 0 + 91: 0 + 91.1: 0 + 92: 0 + 93: 0 + 94.1: 0 + 95.1: 0 + 96.1: 0 + 101: 0 + 102: 0 + 103: 0 + 104.1: 0 + 107: 0 + 108.1: 0 + 109.1: 0 + 110.1: 0 + 119: 496 + 120: 496 + 121: 0 + 123: 496 _ZN9oceanbase7obmysql11ObMySQLUtil30store_obstr_nzt_with_pre_spaceEPclNS_6common8ObStringERl:505 + 130: 1507 + 131: 1507 + 132: 0 + 133.1: 0 + 139: 1473 + 7.1: _ZNK9oceanbase7obmysql6OMPKOK18get_serialize_sizeEv:112912 + 4: 1504 _ZN9oceanbase7obmysql11ObMySQLUtil20get_number_store_lenEm:1506 + 5: 1504 _ZN9oceanbase7obmysql11ObMySQLUtil20get_number_store_lenEm:1586 + 6: 1496 + 8: 1496 + 9.1: 0 + 12: 1496 + 13: 0 + 14: 0 + 14.1: 0 + 15: 0 + 15.1: 0 + 16: 0 + 20: 0 + 23: 0 + 24: 0 + 26: 0 + 27: 0 + 28: 0 + 29: 0 + 32: 500 + 33: 500 + 34: 0 + 34.1: 0 + 35: 0 + 37: 500 + 14: _ZNK9oceanbase6common8ObString5emptyEv:0 + 2: 0 + 2.1: 0 + 15: _ZNK9oceanbase6common8ObString6lengthEv:0 + 0: 0 + 16: _ZNK9oceanbase6common8ObString6lengthEv:0 + 0: 0 + 19: _ZNK9oceanbase6common8ObString6lengthEv:0 + 0: 0 + 20: _ZNK9oceanbase6common8ObString5emptyEv:0 + 2: 0 + 2.1: 0 + 32: _ZNK9oceanbase6common8ObString5emptyEv:20338 + 2: 1496 + 2.1: 500 + 35: _ZNK9oceanbase6common8ObString6lengthEv:0 + 0: 0 + 14: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int1EPclaRl:30933 + 7: 1473 + 8.1: 1473 + 9: 1473 + 25.1: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int2EPclsRl:58200 + 2: 1455 + 3: 1455 + 4: 0 + 5.1: 0 + 5.2: 0 + 5.5: 0 + 5.8: 0 + 7: 1455 + 8.1: 1455 + 9: 1455 + 11: 0 + 14: 0 + 5.2: _ZN9oceanbase6common7ObLogKVIPKvLb1EEC2EPKcOKS3_:0 + 0: 0 + 5.7: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 35: _ZNK9oceanbase6common8ObString5emptyEv:0 + 2: 0 + 2.1: 0 + 50: _ZNK9oceanbase6common12ObIArrayWrapINS_7obmysql10ObCommonKVINS0_8ObStringES4_EEE5countEv:0 + 0: 0 + 52: _ZN9oceanbase7obmysql10ObCommonKVINS_6common8ObStringES3_EC2Ev:0 + 0.1: _ZN9oceanbase6common8ObStringC2Ev:0 + 1: 0 + 54: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int1EPclaRl:0 + 2: 0 + 3: 0 + 4: 0 + 5.1: 0 + 5.2: 0 + 5.5: 0 + 5.8: 0 + 7: 0 + 8.1: 0 + 9: 0 + 11: 0 + 14: 0 + 5.2: _ZN9oceanbase6common7ObLogKVIPKvLb1EEC2EPKcOKS3_:0 + 0: 0 + 5.7: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 56.1: _ZNK9oceanbase6common12ObIArrayWrapINS_7obmysql10ObCommonKVINS0_8ObStringES4_EEE2atEl:0 + 6: 0 + 57.1: _ZN9oceanbase7obmysql6OMPKOK17get_kv_encode_lenERKNS0_10ObCommonKVINS_6common8ObStringES4_EE:0 + 3.1: 0 + 4: 0 + 5: 0 + 5.1: 0 + 6: 0 + 3: _ZNK9oceanbase6common8ObString6lengthEv:0 + 0: 0 + 4: _ZNK9oceanbase6common8ObString6lengthEv:0 + 0: 0 + 5: _ZNK9oceanbase6common8ObString6lengthEv:0 + 0: 0 + 6: _ZNK9oceanbase6common8ObString6lengthEv:0 + 0: 0 + 64: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int1EPclaRl:0 + 2: 0 + 3: 0 + 4: 0 + 5.1: 0 + 5.2: 0 + 5.5: 0 + 5.8: 0 + 7: 0 + 8.1: 0 + 9: 0 + 11: 0 + 14: 0 + 5.2: _ZN9oceanbase6common7ObLogKVIPKvLb1EEC2EPKcOKS3_:0 + 0: 0 + 5.7: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 68: _ZN9oceanbase7obmysql10ObCommonKVINS_6common8ObStringES3_EC2Ev:0 + 0.1: _ZN9oceanbase6common8ObStringC2Ev:0 + 1: 0 + 70: _ZNK9oceanbase6common12ObIArrayWrapINS_7obmysql10ObCommonKVINS0_8ObStringES4_EEE2atEl:0 + 6: 0 + 75: _ZN9oceanbase7obmysql6OMPKOK16get_separator_kvEv:0 + 2: 0 + 2.1: 0 + 2.3: 0 + 3: 0 + 4: 0 + 5: 0 + 2.2: _ZN9oceanbase7obmysql10ObCommonKVINS_6common8ObStringES3_EC2Ev:0 + 0.1: _ZN9oceanbase6common8ObStringC2Ev:0 + 1: 0 + 78: _ZNK9oceanbase6common12ObIArrayWrapINS_7obmysql10ObCommonKVINS0_8ObStringES4_EEE2atEl:0 + 6: 0 + 87: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int1EPclaRl:0 + 2: 0 + 3: 0 + 4: 0 + 5.1: 0 + 5.2: 0 + 5.5: 0 + 5.8: 0 + 7: 0 + 8.1: 0 + 9: 0 + 11: 0 + 14: 0 + 5.2: _ZN9oceanbase6common7ObLogKVIPKvLb1EEC2EPKcOKS3_:0 + 0: 0 + 5.7: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 91: _ZNK9oceanbase6common8ObString6lengthEv:0 + 0: 0 + 92: _ZNK9oceanbase6common8ObString6lengthEv:0 + 0: 0 + 103: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int1EPclaRl:0 + 2: 0 + 3: 0 + 4: 0 + 5.1: 0 + 5.2: 0 + 5.5: 0 + 5.8: 0 + 7: 0 + 8.1: 0 + 9: 0 + 11: 0 + 14: 0 + 5.2: _ZN9oceanbase6common7ObLogKVIPKvLb1EEC2EPKcOKS3_:0 + 0: 0 + 5.7: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 119: _ZNK9oceanbase6common8ObString5emptyEv:18990 + 2: 1455 + 2.1: 496 + 131: _ZNK9oceanbase7obmysql6OMPKOK18get_serialize_sizeEv:109509 + 4: 1612 _ZN9oceanbase7obmysql11ObMySQLUtil20get_number_store_lenEm:1582 + 5: 1612 _ZN9oceanbase7obmysql11ObMySQLUtil20get_number_store_lenEm:1637 + 6: 1516 + 8: 1516 + 9.1: 0 + 12: 1516 + 13: 0 + 14: 0 + 14.1: 0 + 15: 0 + 15.1: 0 + 16: 0 + 20: 0 + 23: 0 + 24: 0 + 26: 0 + 27: 0 + 28: 0 + 29: 0 + 32: 510 + 33: 510 + 34: 0 + 34.1: 0 + 35: 0 + 37: 510 + 14: _ZNK9oceanbase6common8ObString5emptyEv:0 + 2: 0 + 2.1: 0 + 15: _ZNK9oceanbase6common8ObString6lengthEv:0 + 0: 0 + 16: _ZNK9oceanbase6common8ObString6lengthEv:0 + 0: 0 + 19: _ZNK9oceanbase6common8ObString6lengthEv:0 + 0: 0 + 20: _ZNK9oceanbase6common8ObString5emptyEv:0 + 2: 0 + 2.1: 0 + 32: _ZNK9oceanbase6common8ObString5emptyEv:16681 + 2: 1516 + 2.1: 510 + 35: _ZNK9oceanbase6common8ObString6lengthEv:0 + 0: 0 +_ZN9oceanbase3sql15ObCandiTableLocC2Ev:885790:4379 + 2: 4221 + 3: 4221 + 4: 4221 + 6: 4221 + 7: 4217 + 4: _ZN9oceanbase6common9ObSEArrayINS_3sql16ObCandiTabletLocELl2ENS0_19ModulePageAllocatorELb1EEC2Ev:632550 + 0.1: 4217 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_3sql16ObCandiTabletLocELl2ENS0_19ModulePageAllocatorELb1EEC2ElRKS4_:569295 + 5: 4217 + 6: 4217 + 8: 4217 + 17.1: 4217 + 2: _ZN9oceanbase6common8ObIArrayINS_3sql16ObCandiTabletLocEEC2EPS3_l:50604 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_3sql16ObCandiTabletLocEEC2EPS3_l:50604 + 0: 4217 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:240369 + 0: 4217 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:101208 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:101208 + 2: 4217 + 8: 4217 +_ZN9oceanbase3sql15ObCandiTableLocC1Ev:885790:4379 + 2: 4221 + 3: 4221 + 4: 4221 + 6: 4221 + 7: 4217 + 4: _ZN9oceanbase6common9ObSEArrayINS_3sql16ObCandiTabletLocELl2ENS0_19ModulePageAllocatorELb1EEC2Ev:632550 + 0.1: 4217 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_3sql16ObCandiTabletLocELl2ENS0_19ModulePageAllocatorELb1EEC2ElRKS4_:569295 + 5: 4217 + 6: 4217 + 8: 4217 + 17.1: 4217 + 2: _ZN9oceanbase6common8ObIArrayINS_3sql16ObCandiTabletLocEEC2EPS3_l:50604 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_3sql16ObCandiTabletLocEEC2EPS3_l:50604 + 0: 4217 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:240369 + 0: 4217 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:101208 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:101208 + 2: 4217 + 8: 4217 +_ZN9oceanbase6common12TCRLockGuardD2Ev:885668:14085 + 1: 11494 + 2: 11494 + 3: 11494 + 3.1: 12360 + 3.2: 0 + 7.1: 12360 + 3: _ZN9oceanbase6common8TCRWLock8rdunlockEl:459760 + 3: 11494 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:45976 + 0: 11494 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPil:264362 + 2: 11494 + 2.1: 11494 + 3: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:68964 + 2: 11494 + 2.1: 0 + 3: 0 +_ZN9oceanbase6common20ObActiveSessionGuard8get_statEv:881075:36651 + 1: 35243 + 2: 35243 +_ZNK9oceanbase8observer8ObMPBase16do_after_processERNS_3sql16ObSQLSessionInfoEbRNS2_8ObSqlCtxEb:880817:4894 + 4: 4621 + 6: 4621 _ZN9oceanbase3sql18ObBasicSessionInfo17set_session_sleepEv:5158 + 11: 5483 + 17: 5807 + 18.1: 74 + 18.2: 74 + 18.4: 74 + 18.5: 74 + 18.11: 74 + 20: 74 + 22: 74 + 23: 74 + 24: 74 + 25: 74 + 29: 74 + 29.1: 74 + 29.6: 74 + 30.1: 74 + 32: 74 + 33: 74 + 34: 74 + 37: 74 + 37.1: 74 + 37.6: 74 + 40: 5807 + 12: _ZN9oceanbase3sql16ObSQLSessionInfo18reset_warnings_bufEv:413308 + 3: 5228 _ZN9oceanbase6common11ObSqlString5resetEv:5226 + 2: _ZN9oceanbase6common15ObWarningBuffer5resetEv:365960 + 2: 5228 + 5: 5228 + 4: _ZN9oceanbase6common15ObWarningBuffer11WarningItem5resetEv:240488 + 2: 5228 + 3: 5228 + 5: 5228 + 8: 5228 + 15: _ZN9oceanbase6common27ob_setup_tsi_warning_bufferEPNS0_15ObWarningBufferE:45395 + 2: 5632 + 2: _ZN9oceanbase6common25ob_get_tsi_warning_bufferEv:5971 + 2: 5675 _ZTWN9oceanbase6common16g_warning_bufferE:5604 + 17: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:29156 + 2: 5632 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:5858 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:23228 + 2: 5807 + 18.1: _ZN9oceanbase3lib20is_trace_log_enabledEv:888 + 2: 74 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:518 + 2: 74 + 18.2: _ZN9oceanbase6common18get_trace_recorderEv:4514 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:4514 + 7: 74 + 8: 74 + 8.1: 74 + 18.4: _ZN9oceanbase3lib20is_trace_log_enabledEv:888 + 2: 74 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:518 + 2: 74 + 18.12: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:1554 + 0: 74 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:370 + 2: 74 + 24: _ZN9oceanbase6common18get_trace_recorderEv:4514 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:4514 + 7: 74 + 8: 74 + 8.1: 74 + 25.1: _ZN9oceanbase6common18get_trace_recorderEv:5032 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:5032 + 7: 74 + 8: 74 + 8.1: 74 + 25.2: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl189ELl1600EE6assignERKS3_:7252 + 2: 74 + 2.3: 74 + 3: 74 + 4: 74 + 5: 74 + 6: 74 + 29: _ZN9oceanbase6common8ObLogger10get_loggerEv:6808 + 2: 74 + 2.1: 74 + 2.2: 74 + 2.3: 74 + 2.6: 74 + 29.1: _ZN9oceanbase6common18get_trace_recorderEv:4662 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:4662 + 7: 74 + 8: 74 + 8.1: 74 + 29.4: _ZNK9oceanbase6common8ObLogger13get_log_levelEv:14430 + 3: 74 + 8: 74 + 11: 74 + 13.1: 74 + 6: _ZNK9oceanbase6common15ObLogIdLevelMap9get_levelEv:444 + 0: 74 + 9: _ZN9oceanbase6common21ObThreadLogLevelUtils3getEv:7844 + 5: 74 + 3: _ZN9oceanbase6common21ObThreadLogLevelUtils20get_thread_log_levelEv:6438 + 3: _ZN9oceanbase6common15get_local_storeEv:6438 + 3: 74 + 3.1: 74 + 3.1: _ZN9oceanbase6common12ObLocalStoreC2Ev:2516 + 1: 74 + 0: _ZN9oceanbase6common16ObThreadLogLevelC2Ev:1998 + 0: 74 + 10: _ZN9oceanbase6common21ObThreadLogLevelUtils9get_levelEv:1406 + 5: 74 + 12: _ZNK9oceanbase6common15ObLogIdLevelMap9get_levelEv:814 + 0: 74 + 29.5: _ZN9oceanbase6common7ObLogKVIRNS0_24ObTraceEventRecorderBaseILl189ELl1600EEELb0EEC2EPKcS4_:2442 + 0: 74 + 33: _ZN9oceanbase6common18get_trace_recorderEv:4514 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:4514 + 7: 74 + 8: 74 + 8.1: 74 + 34.1: _ZN9oceanbase6common18get_trace_recorderEv:5032 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:5032 + 7: 74 + 8: 74 + 8.1: 74 + 34.2: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl189ELl1600EE6assignERKS3_:7252 + 2: 74 + 2.3: 74 + 3: 74 + 4: 74 + 5: 74 + 6: 74 + 37: _ZN9oceanbase6common8ObLogger10get_loggerEv:6808 + 2: 74 + 2.1: 74 + 2.2: 74 + 2.3: 74 + 2.6: 74 + 37.1: _ZN9oceanbase6common18get_trace_recorderEv:4662 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:4662 + 7: 74 + 8: 74 + 8.1: 74 + 37.4: _ZNK9oceanbase6common8ObLogger13get_log_levelEv:14430 + 3: 74 + 8: 74 + 11: 74 + 13.1: 74 + 6: _ZNK9oceanbase6common15ObLogIdLevelMap9get_levelEv:444 + 0: 74 + 9: _ZN9oceanbase6common21ObThreadLogLevelUtils3getEv:7844 + 5: 74 + 3: _ZN9oceanbase6common21ObThreadLogLevelUtils20get_thread_log_levelEv:6438 + 3: _ZN9oceanbase6common15get_local_storeEv:6438 + 3: 74 + 3.1: 74 + 3.1: _ZN9oceanbase6common12ObLocalStoreC2Ev:2516 + 1: 74 + 0: _ZN9oceanbase6common16ObThreadLogLevelC2Ev:1998 + 0: 74 + 10: _ZN9oceanbase6common21ObThreadLogLevelUtils9get_levelEv:1406 + 5: 74 + 12: _ZNK9oceanbase6common15ObLogIdLevelMap9get_levelEv:814 + 0: 74 + 37.5: _ZN9oceanbase6common7ObLogKVIRNS0_24ObTraceEventRecorderBaseILl189ELl1600EEELb0EEC2EPKcS4_:2442 + 0: 74 +_ZN9oceanbase3sql17ObTaskExecutorCtxD2Ev:876137:5516 + 1: 5229 + 2: 5229 + 4: 0 + 6: 5229 + 7: 0 + 8: 0 + 10: 5229 _ZN9oceanbase6common13ObSEArrayImplINS_3sql18ObPhyTableLocationELl2ENS0_19ModulePageAllocatorELb0EED2Ev:5395 + 10.2: 5168 _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql20ObTablePartitionInfoENS0_12ObIAllocatorEED2Ev:5222 + 3: _ZN9oceanbase3sql25RemoteExecuteStreamHandleD2Ev:0 + 0: _ZN9oceanbase3sql14MyStreamHandleILNS_5obrpc15ObRpcPacketCodeE1308EED2Ev:0 + 0: 0 + 0.1: 0 + 0.1: _ZN9oceanbase3sql14MyStreamHandleILNS_5obrpc15ObRpcPacketCodeE1282EED2Ev:0 + 0: 0 + 0.1: 0 + 10.1: _ZN9oceanbase6common6ObListINS0_10ObTabletIDENS0_12ObIAllocatorEED2Ev:191216 + 2.1: 0 + 2: _ZN9oceanbase6common6ObListINS0_10ObTabletIDENS0_12ObIAllocatorEE5resetEv:191216 + 2: _ZN9oceanbase6common6ObListINS0_10ObTabletIDENS0_12ObIAllocatorEE5clearEv:191216 + 2: 5168 + 3.1: 5168 + 4: 0 + 5: 0 + 8: 5168 + 9: 5168 + 10: 5168 + 10.4: _ZN9oceanbase6common6ObListINS0_6ObAddrENS0_12ObIAllocatorEED2Ev:183483 + 2.1: 0 + 2: _ZN9oceanbase6common6ObListINS0_6ObAddrENS0_12ObIAllocatorEE5resetEv:183483 + 2: _ZN9oceanbase6common6ObListINS0_6ObAddrENS0_12ObIAllocatorEE5clearEv:183483 + 2: 4959 + 3.1: 4959 + 4: 0 + 5: 0 + 8: 4959 + 9: 4959 + 10: 4959 +_ZN9oceanbase3sql17ObTaskExecutorCtxD1Ev:876137:5516 + 1: 5229 + 2: 5229 + 4: 0 + 6: 5229 + 7: 0 + 8: 0 + 10: 5229 _ZN9oceanbase6common13ObSEArrayImplINS_3sql18ObPhyTableLocationELl2ENS0_19ModulePageAllocatorELb0EED2Ev:5395 + 10.2: 5168 _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql20ObTablePartitionInfoENS0_12ObIAllocatorEED2Ev:5222 + 3: _ZN9oceanbase3sql25RemoteExecuteStreamHandleD2Ev:0 + 0: _ZN9oceanbase3sql14MyStreamHandleILNS_5obrpc15ObRpcPacketCodeE1308EED2Ev:0 + 0: 0 + 0.1: 0 + 0.1: _ZN9oceanbase3sql14MyStreamHandleILNS_5obrpc15ObRpcPacketCodeE1282EED2Ev:0 + 0: 0 + 0.1: 0 + 10.1: _ZN9oceanbase6common6ObListINS0_10ObTabletIDENS0_12ObIAllocatorEED2Ev:191216 + 2.1: 0 + 2: _ZN9oceanbase6common6ObListINS0_10ObTabletIDENS0_12ObIAllocatorEE5resetEv:191216 + 2: _ZN9oceanbase6common6ObListINS0_10ObTabletIDENS0_12ObIAllocatorEE5clearEv:191216 + 2: 5168 + 3.1: 5168 + 4: 0 + 5: 0 + 8: 5168 + 9: 5168 + 10: 5168 + 10.4: _ZN9oceanbase6common6ObListINS0_6ObAddrENS0_12ObIAllocatorEED2Ev:183483 + 2.1: 0 + 2: _ZN9oceanbase6common6ObListINS0_6ObAddrENS0_12ObIAllocatorEE5resetEv:183483 + 2: _ZN9oceanbase6common6ObListINS0_6ObAddrENS0_12ObIAllocatorEE5clearEv:183483 + 2: 4959 + 3.1: 4959 + 4: 0 + 5: 0 + 8: 4959 + 9: 4959 + 10: 4959 +_ZN9oceanbase6common11ObObjCaster7to_typeERKNS0_12ObExpectTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS7_RPS8_:873712:2959 + 2: 2878 + 3: 2878 + 4: 2878 + 5: 2878 + 7: 2878 + 8: 2878 + 8.1: 17 + 8.2: 2878 + 8.3: 2878 + 11: 1000 + 12.1: 1877 + 13: 17 + 14.1: 17 + 18.1: 1958 + 19.1: 17 + 23: 2977 + 6: _ZNK9oceanbase6common12ObExpectType8get_typeEv:8634 + 0: 2878 + 7: _ZNK9oceanbase6common12ObExpectType18get_collation_typeEv:8634 + 0: 2878 + 8: _ZNK9oceanbase6common5ObObj8get_typeEv:8634 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:8634 + 0: 2878 + 13: _ZN9oceanbase6common11ObObjCaster7to_typeERKNS0_12ObExpectTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS7_:2805 + 5: 17 + 9: 17 + 10: 17 + 11.1: 17 + 12.1: 17 + 13.1: 17 + 17: 17 + 6: _ZNK9oceanbase6common5ObObj14get_type_classEv:306 + 0: _ZNK9oceanbase6common9ObObjMeta14get_type_classEv:306 + 0.1: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:306 + 2: 17 + 2.1: 17 + 7: _ZNK9oceanbase6common12ObExpectType8get_typeEv:34 + 0: 17 + 8.2: _ZN9oceanbase6common16ob_is_enumset_tcENS0_9ObObjTypeE:51 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:51 + 2: 17 + 18.1: _ZNK9oceanbase6common12ObExpectType18get_collation_typeEv:18770 + 0: 1877 + 18.2: _ZN9oceanbase6common11ObObjCaster7to_typeENS0_9ObObjTypeENS0_15ObCollationTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS6_:485999 + 6: 1877 + 7: 1877 + 8: 1877 + 9: 1877 + 12: 1877 + 13: 1877 + 15: 17 + 22: 1877 + 23: 17 + 24.1: 17 + 25.1: 1877 + 31: 17 + 32.1: 17 + 36: 2089 _ZN9oceanbase6commonL7int_intENS0_9ObObjTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS4_m.db28c62327e16d3ae5c8a88acfd53bbb:1949 + 37.1: 17 + 40: 17 + 41: 2089 + 42: 17 + 47: 17 + 50: 17 + 51.1: 17 + 59: 17 + 7: _ZNK9oceanbase6common5ObObj14get_type_classEv:35663 + 0: _ZNK9oceanbase6common9ObObjMeta14get_type_classEv:35663 + 0.1: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:35663 + 2: 1877 + 2.1: 1877 + 2.3: 1877 + 8: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:31909 + 2: 1877 + 2.1: 1877 + 22: _ZN9oceanbase6common20ob_is_invalid_obj_tcENS0_14ObObjTypeClassE:5631 + 0: _ZN9oceanbase6common18ob_is_valid_obj_tcENS0_14ObObjTypeClassE:5631 + 0: 1877 + 25.1: _ZN9oceanbase3lib14is_oracle_modeEv:83438 + 2: 1877 + 2: _ZN9oceanbase3lib15get_compat_modeEv:77807 + 2: 1877 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:47775 + 2: 1877 + 2.1: 17 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:374 + 1: 17 + 43: _ZNK9oceanbase6common5ObObj19get_collation_levelEv:68 + 0: _ZNK9oceanbase6common9ObObjMeta19get_collation_levelEv:68 + 0: 17 + 48: _ZN9oceanbase6common5ObObj18set_collation_typeERKNS0_15ObCollationTypeE:51 + 0: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:51 + 0: 17 +_ZN9oceanbase7storage17ObLSTabletService11update_rowsERNS0_10ObStoreCtxERKNS0_14ObDMLBaseParamERKNS_6common8ObIArrayImEESB_PNS7_16ObNewRowIteratorERl:866555:325 + 7: 306 + 8: 306 + 10: 306 _ZN9oceanbase7storage14ObTabletHandleC1Ev:306 + 15: 317 + 16: 0 + 17.1: 0 + 18.2: 332 + 18.4: 332 + 18.6: 332 + 18.8: 332 + 18.10: 332 + 24: 2 + 25.1: 2 + 27.1: 332 _ZN9oceanbase7storage17ObLSTabletService20check_and_get_tabletERKNS_6common10ObTabletIDERNS0_14ObTabletHandleEl:346 + 27.2: 364 + 28.1: 0 + 32.1: 361 _ZN9oceanbase7storage15ObDMLRunningCtxC1ERNS0_10ObStoreCtxERKNS0_14ObDMLBaseParamERNS_6common12ObIAllocatorES9_NS_12blocksstable9ObDmlFlagE:363 + 34: 359 _ZN9oceanbase8memtable13ObMemtableCtx19get_query_allocatorEv:368 + 37: 331 + 41: 331 + 43.1: 331 _ZN9oceanbase6common10ObRowStoreC1ERKNS_3lib7ObLabelEmb:344 + 44: 339 + 47: 339 _ZN9oceanbase7storage17ObLSTabletService23prepare_dml_running_ctxEPKNS_6common8ObIArrayImEES6_RNS0_14ObTabletHandleERNS0_15ObDMLRunningCtxE:352 + 47.1: 350 + 48.1: 0 + 50.1: 312 _ZNK9oceanbase7storage15ObRelativeTable8is_validEv:317 + 50.2: 311 + 51: 0 + 52.1: 0 + 53.1: 311 _ZNK9oceanbase7storage15ObRelativeTable21get_rowkey_column_numEv:328 + 53.2: 337 + 53.3: 381 + 56.1: 0 + 58.1: 385 _ZN9oceanbase7storage17ObLSTabletService19check_rowkey_changeERKNS_6common8ObIArrayImEERKNS0_15ObRelativeTableERbSA_:398 + 58.2: 396 + 59.1: 0 + 62: 385 _ZNK9oceanbase7storage15ObRelativeTable16get_column_countEv:400 + 63: 373 _ZN9oceanbase8memtable16ObQueryAllocator5allocEl:393 + 63.1: 372 + 65: 0 + 66.1: 0 + 69: 349 + 69.1: 349 + 69.3: 1352 + 69.4: 338 + 73: 338 _ZN9oceanbase7storageL13is_lob_updateERNS0_15ObDMLRunningCtxERKNS_6common8ObIArrayIlEE.e6be6dc590fd106f1b5fd0ce2055aa18:353 + 77: 334 + 78.1: 361 + 78.2: 316 + 79: 361 + 79.1: 678 + 79.2: 677 + 80: 677 + 80.1: 337 + 80.2: 316 + 82: 316 + 84: 316 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:325 + 84.1: 373 + 85: 373 + 87: 0 + 88.1: 0 + 89.1: 371 _ZN9oceanbase7storage17ObLSTabletService20update_row_to_tabletERNS0_14ObTabletHandleERNS0_15ObDMLRunningCtxEbRKNS_6common8ObIArrayIlEEbbRNS0_10ObStoreRowESC_PNS6_10ObRowStoreERb:371 + 89.2: 294 + 99.1: 0 + 100.1: 294 + 105: 294 _ZN9oceanbase6common11ObTimeGuard5clickEPKc:294 + 107: 342 + 108: 342 + 111.2: 342 + 113: 0 + 114: 0 + 114.1: 0 + 115: 0 + 116.1: 0 + 118: 0 + 119: 0 + 119.1: 0 + 119.3: 0 + 119.4: 0 + 120: 0 + 124.1: 0 + 124.2: 0 + 124.3: 0 + 124.4: 0 + 125: 0 + 125.1: 0 + 126: 0 + 127: 0 + 127.1: 0 + 128.1: 0 + 129.1: 0 + 130.1: 0 + 130.2: 0 + 130.3: 0 + 134.1: 0 + 136.1: 0 + 136.2: 0 + 142.1: 0 + 146: 0 + 148: 0 + 152: 342 + 153: 0 + 155: 351 + 156: 351 _ZN9oceanbase8memtable16ObQueryAllocator4freeEPv:354 + 159: 330 + 160: 330 + 161: 330 + 162.2: 336 + 162.3: 0 + 162.4: 0 + 162.5: 0 + 162.6: 0 + 162.10: 0 + 162.11: 0 + 162.12: 0 + 164: 343 _ZN9oceanbase6common10ObRowStoreD1Ev:346 + 164.2: 0 + 164.3: 0 + 164.8: 381 _ZN9oceanbase6common13ObSEArrayImplIlLl8ENS0_19ModulePageAllocatorELb0EED2Ev:389 + 164.10: 358 _ZN9oceanbase7storage15ObDMLRunningCtxD2Ev:358 + 166: 349 + 167.31: 373 _ZN9oceanbase6common11ObTimeGuardD2Ev:350 + 167.33: 0 + 167.35: 312 _ZN9oceanbase7storage14ObTabletHandleD1Ev:380 + 13: _ZN9oceanbase6common11ObTimeGuardC2EPKcl:13997 + 2: 304 + 3: 304 + 4: 304 + 6: 304 + 7: 304 + 8: 304 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:317 + 2: 317 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:317 + 18.1: _ZNK9oceanbase7storage10ObStoreCtx8is_validEv:6023 + 2: 317 + 2.1: 317 _ZNK9oceanbase8memtable15ObMvccAccessCtx8is_validEv:318 + 2: _ZNK9oceanbase5share6ObLSID8is_validEv:1585 + 0: 317 + 18.3: _ZNK9oceanbase7storage10ObStoreCtx8is_writeEv:996 + 0: _ZNK9oceanbase8memtable15ObMvccAccessCtx8is_writeEv:996 + 0: 332 + 18.5: _ZNK9oceanbase7storage14ObDMLBaseParam8is_validEv:1328 + 0: 332 + 30: _ZN9oceanbase6common11ObTimeGuard5clickEPKc:25494 + 3: 359 + 4: 359 + 5: 359 + 6: 359 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:364 + 2: 364 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:379 + 31.1: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:6103 + 2: 359 + 2.1: 0 + 2.2: 0 + 31.2: _ZNK9oceanbase5share12ObTenantBase2idEv:5385 + 0: 359 + 31.3: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:50260 + 4: 359 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:41285 + 2: 359 + 3: 359 + 4: 359 + 5: 359 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:16514 + 0: 359 + 38: _ZN9oceanbase7storage10ObStoreRowC2Ev:20853 + 1: 331 + 3: 331 + 4.1: 331 + 1: _ZN9oceanbase12blocksstable12ObDmlRowFlagC2Ev:1986 + 1: 331 + 42: _ZN9oceanbase6common9ObSEArrayIlLl8ENS0_19ModulePageAllocatorELb0EEC2Ev:36079 + 0.1: 331 + 0.5: _ZN9oceanbase6common13ObSEArrayImplIlLl8ENS0_19ModulePageAllocatorELb0EEC2ElRKS2_:31114 + 2: 331 + 5: 331 + 6: 331 + 8: 331 + 17.1: 331 + 2: _ZN9oceanbase6common8ObIArrayIlEC2EPll:2648 + 0: _ZN9oceanbase6common12ObIArrayWrapIlEC2EPll:2648 + 0: 331 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:9930 + 0: 331 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:6951 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:6951 + 2: 331 + 8: 331 + 43: _ZN9oceanbase3lib7ObLabelC2IA12_cEERKT_:6951 + 2: _ZN9oceanbase3lib7ObLabelaSILm12EEERS1_RAT__Kc:6951 + 4: 331 + 49.1: _ZN9oceanbase6common11ObTimeGuard5clickEPKc:22190 + 3: 312 + 4: 312 + 5: 312 + 6: 312 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:350 + 2: 350 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:373 + 53.2: _ZN9oceanbase7storage17ObLSTabletService20construct_update_idxElPKNS_5share6schema9ColumnMapERKNS_6common8ObIArrayImEERNS7_9ObSEArrayIlLl8ENS7_19ModulePageAllocatorELb0EEE:63082 + 6: 337 + 7: 337 + 9: 337 + 9.2: 337 + 10: 0 + 11.1: 0 + 13.1: 0 + 13.2: 345 + 13.3: 345 + 14: 340 + 16: 340 _ZNK9oceanbase5share6schema9ColumnMap3getEmRi:348 + 17: 0 + 18.1: 0 + 19.1: 340 + 21.1: 340 + 22.1: 0 + 25.1: 380 + 30: 381 + 15: _ZNK9oceanbase6common12ObIArrayWrapImE2atEl:1360 + 6: 340 + 21.1: _ZN9oceanbase6common13ObSEArrayImplIlLl8ENS0_19ModulePageAllocatorELb0EE9push_backERKl:13260 + 5: 340 + 6: 0 + 12: 0 + 15: 0 + 15.1: 340 + 16: 340 + 15.1: _ZN9oceanbase6common9ObClassOpIlLb1EE20construct_and_assignERKlRl:1360 + 2: 340 + 25.1: _ZNK9oceanbase6common12ObIArrayWrapIlE5countEv:2660 + 0: 380 + 26.2: _ZSt4sortIN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS1_19ModulePageAllocatorELb0EEEEvT_S6_:48 + 9.1: _ZSt6__sortIN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS1_19ModulePageAllocatorELb0EEEN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S9_T0_:48 + 5: 1 _ZSt16__introsort_loopIN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS1_19ModulePageAllocatorELb0EEElN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S9_T0_T1_:1 + 6: 1 + 8: 1 _ZSt22__final_insertion_sortIN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS1_19ModulePageAllocatorELb0EEEN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S9_T0_:1 + 6.1: _ZSt4__lgl:8 + 1: 1 + 57.1: _ZN9oceanbase6common11ObTimeGuard5clickEPKc:27339 + 3: 385 + 4: 385 + 5: 385 + 6: 385 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:389 + 2: 381 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:411 + 61: _ZN9oceanbase6common11ObTimeGuard5clickEPKc:27354 + 3: 385 + 4: 385 + 5: 385 + 6: 385 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:404 + 2: 396 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:394 + 68: _ZN9oceanbase6common11ObTimeGuard5clickEPKc:24810 + 3: 349 + 4: 349 + 5: 349 + 6: 349 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:380 + 2: 372 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:373 + 69.2: _ZN9oceanbase6common5ObObjC2Ev:67642 + 2: _ZN9oceanbase6common5ObObj5resetEv:67642 + 6: 1352 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:24362 + 0: 1352 + 1892.3: 1352 + 70: _ZN9oceanbase12blocksstable12ObDmlRowFlag8set_flagENS0_9ObDmlFlagE:5408 + 3: 338 + 71: _ZN9oceanbase12blocksstable12ObDmlRowFlag8set_flagENS0_9ObDmlFlagE:5408 + 3: 338 + 79.1: _ZN9oceanbase7storage17ObLSTabletService22get_next_row_from_iterEPNS_6common16ObNewRowIteratorERNS0_10ObStoreRowEb:70202 + 5: 678 + 6: 678 + 8: 678 + 9: 0 + 10.1: 0 + 11.1: 678 _ZN9oceanbase3sql16ObDASUpdIterator12get_next_rowERPNS_6common8ObNewRowE:686 + 13.1: 0 + 19: 327 + 20.1: 327 + 20.3: 4 + 21: 327 + 28: 337 + 80.1: _ZN9oceanbase7storage17ObLSTabletService22get_next_row_from_iterEPNS_6common16ObNewRowIteratorERNS0_10ObStoreRowEb:33549 + 5: 337 + 6: 337 + 8: 337 + 9: 0 + 10.1: 0 + 11.1: 337 _ZN9oceanbase3sql16ObDASUpdIterator12get_next_rowERPNS_6common8ObNewRowE:340 + 13.1: 0 + 24: 316 + 28: 316 + 119.2: _ZN9oceanbase6common5ObObjC2Ev:0 + 2: _ZN9oceanbase6common5ObObj5resetEv:0 + 6: 0 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:0 + 0: 0 + 1942.3: 0 + 144: _ZN9oceanbase6common11ObTimeGuard5clickEPKc:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 158: _ZN9oceanbase6common16ObArenaAllocator5resetEv:4092 + 0: 372 _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:372 + 162.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:1674 + 2: 330 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:331 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:1344 + 2: 336 + 164.5: _ZN9oceanbase7storage15ObDMLRunningCtxD2Ev:0 + 0: 0 + 0.3: 0 + 0.1: _ZN9oceanbase7storage10ObStoreRowD2Ev:0 + 0: _ZN9oceanbase11transaction9ObTransIDD2Ev:0 + 0: 0 + 0.2: _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema9ObColDescELl52ENS0_19ModulePageAllocatorELb0EED2Ev:0 + 1: 0 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema9ObColDescELl52ENS0_19ModulePageAllocatorELb0EE7destroyEv:0 + 9: 0 + 11: 0 + 13: 0 + 15: 0 + 24: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema9ObColDescELl52ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 164.6: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:0 + 0: 0 + 164.11: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:3971 + 0: 361 _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEED2Ev:361 + 167.32: _ZN9oceanbase6common11ObTimeGuardD2Ev:0 + 2.1: 0 + 2.2: 0 + 3.1: 0 + 3.5: 0 + 2: _ZNK9oceanbase6common11ObTimeGuard8get_diffEv:0 + 2: 0 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 +_ZN9oceanbase6common15databuff_printfEPclRlPKcz:861399:5385 + 1: 5379 + 4: 5304 + 8: 5310 + 5: _ZN9oceanbase6common16databuff_vprintfEPclRlPKcP13__va_list_tag:355542 + 3: 5304 + 3.1: 5304 + 4: 5304 + 5: 5310 + 7.1: 5310 + 8: 5310 + 10: 0 +_ZNK9oceanbase5share6schema27ObMultiVersionSchemaService37get_tenant_received_broadcast_versionEmRlb:859689:10300 + 4: 10239 + 5: 10239 + 7: 10239 + 8: 0 + 9.1: 0 + 12: 10239 _ZNK9oceanbase5share6schema16ObSchemaStoreMap3getEm:10317 + 13: 0 + 14.1: 0 + 19: 10008 + 20: 10008 + 20.4: 10008 + 22: 10008 + 16: _ZNK9oceanbase5share6schema13ObSchemaStore20get_received_versionEv:40032 + 0: 10008 +_ZN9oceanbase3sql18ObBasicSessionInfo25check_and_init_retry_infoERKNS_6common12ObCurTraceId7TraceIdERKNS2_8ObStringE:849442:5006 + 0: 4806 + 2: 4806 + 3: 4806 + 5: 0 + 6: 0 + 7.1: 0 + 9: 0 + 10.1: 0 + 17: 4806 + 18: 0 + 21: 5183 _ZN9oceanbase3sql16ObQueryRetryInfo4initEv:5436 + 22.1: 0 + 27: 5183 + 5: _ZNK9oceanbase6common12ObCurTraceId7TraceId6equalsERKS2_:139374 + 2: 4806 + 2.1: 4806 + 3: 4806 + 3.1: 0 + 3.2: 0 + 24: _ZN9oceanbase6common12ObCurTraceId7TraceId3setERKS2_:326529 + 2: 5183 + 3: 5183 + 4: 5183 + 5: 5183 + 6: _ZN9oceanbase6common12ObCurTraceId7TraceId16check_ipv6_validEv:88111 + 1: 5183 + 2: 0 + 2.1: 0 +_ZNK9oceanbase12blocksstable19ObFuseRowCacheValue9deep_copyEPclRPNS_6common15ObIKVCacheValueE:846433:568 + 1: 554 + 2: 554 + 3: 554 + 3.1: 554 _ZNK9oceanbase12blocksstable19ObFuseRowCacheValue4sizeEv:574 + 3.2: 539 + 4: 0 + 5.1: 0 + 6.1: 539 + 7: 0 + 8.1: 0 + 10: 539 + 12: 539 + 13: 0 + 15: 539 + 16: 539 + 17: 595 + 19: 580 + 21: 580 + 22: 580 + 23: 580 + 24.1: 0 + 24.2: 3350 + 24.3: 3350 + 24.5: 3350 + 25: 3350 + 26.1: 0 + 31: 532 + 33: 0 + 37: 532 + 6.1: _ZNK9oceanbase12blocksstable19ObFuseRowCacheValue8is_validEv:8624 + 0: 539 + 11: _ZN9oceanbase12blocksstable19ObFuseRowCacheValueC2Ev:23716 + 1: 539 + 2: 539 + 4: 539 + 6: 539 + 5: _ZN9oceanbase12blocksstable12ObDmlRowFlagC2Ev:2156 + 1: 539 + 20: _ZN9oceanbase12blocksstable12ObDmlRowFlagaSERKS1_:17400 + 3: 580 + 2: _ZNK9oceanbase12blocksstable12ObDmlRowFlag8is_validEv:15660 + 2: 580 + 25: _ZN9oceanbase12blocksstable14ObStorageDatum9deep_copyERKS1_PclRl:432066 + 2: 3272 + 5: 3272 + 6: 3272 + 7.1: 3272 + 8.1: 3272 + 10: 3272 + 11: 1698 + 12.1: 1624 + 12.2: 1624 + 12.3: 1624 + 13: 0 + 14.1: 0 + 16: 1624 + 18: 1672 + 19: 1672 + 22: 3272 + 4: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:58896 + 0: 3272 + 6: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:6544 + 0: 3272 + 8.1: _ZNK9oceanbase12blocksstable14ObStorageDatum12is_local_bufEv:42536 + 0: 3272 +_ZN9oceanbase3lib2_SILNS0_13ContextSourceE1EED2Ev:845385:5278 + 1: 4792 + 2: 4792 + 6.1: 4792 + 9: 3 + 9.1: 5724 + 9.2: 3 + 3: _ZN9oceanbase3lib4Flow6deinitEv:359487 + 2: 4792 + 4: 4792 + 5: 4792 + 6: 4792 + 9: 4792 + 10: 4792 + 4: _ZL12abort_unlessb:28767 + 5: 4792 + 6: 3 + 6: _ZN9oceanbase3libneERKNS0_13MemoryContextEDn:47920 + 1: 4792 + 1: _ZNK9oceanbase3lib13MemoryContext11ref_contextEv:33544 + 1: 4792 + 7: _ZN9oceanbase3lib17__MemoryContext__15destory_contextERNS0_13MemoryContextE:163024 + 3: 3 + 4: 3 + 5: 4792 + 6: 4792 _ZN9oceanbase3lib17__MemoryContext__15destory_contextEPS1_:4985 + 2: _ZNK9oceanbase3lib13MemoryContext16check_magic_codeEv:33544 + 0: 4792 + 2.1: _ZL12abort_unlessb:28767 + 5: 4792 + 6: 3 + 5: _ZL12abort_unlessb:28782 + 5: 4792 + 6: 3 + 9.1: _ZN9oceanbase3lib6_SBaseD2Ev:34629 + 2: 5724 + 3.1: 3 + 3.2: 3 + 3.3: 3 + 3.4: 3 + 3.8: 3 +_ZN9oceanbase3sql16LinkExecCtxGuard20link_current_contextEv:839264:10349 + 1: 9918 + 3: 9918 + 10: 9918 + 12: 8 + 15: 10026 + 16: 10026 + 17: 10026 + 21: 8 + 22: 8 + 25: 10026 + 3: _ZN9oceanbase3sql16ObSQLSessionInfo16get_cur_exec_ctxEv:69426 + 0: 9918 + 9: _ZN9oceanbase3sql13ObExecContext14set_parent_ctxEPS1_:69426 + 0: 9918 + 12: _ZNK9oceanbase3sql13ObExecContext16get_nested_levelEv:56 + 0: 8 + 12.1: _ZN9oceanbase3sql13ObExecContext16set_nested_levelEl:56 + 0: 8 + 15: _ZN9oceanbase3sql16ObSQLSessionInfo16set_cur_exec_ctxEPNS0_13ObExecContextE:70182 + 0: 10026 + 17: _ZN9oceanbase3sql10ObSQLUtils13is_nested_sqlEPNS0_13ObExecContextE:171178 + 2: 8 + 2: _ZN9oceanbase3sql10ObSQLUtils16is_pl_nested_sqlEPNS0_13ObExecContextE:170954 + 3: 10026 + 3.1: 10026 + 6: 8 + 7: 8 + 7.1: 8 + 8: 8 + 8.2: 8 + 3.1: _ZN9oceanbase3sql13ObExecContext14get_parent_ctxEv:70182 + 0: 10026 + 6: _ZN9oceanbase3sql13ObExecContext11get_sql_ctxEv:56 + 0: 8 + 6.2: _ZN9oceanbase3sql6ObStmt11is_dml_stmtENS0_4stmt8StmtTypeE:128 + 3: 8 + 7.1: _ZN9oceanbase3sql13ObExecContext16get_pl_stack_ctxEv:56 + 0: 8 + 2.1: _ZN9oceanbase3sql10ObSQLUtils16is_fk_nested_sqlEPNS0_13ObExecContextE:192 + 4: 8 + 5: 8 + 4: _ZN9oceanbase3sql13ObExecContext14get_parent_ctxEv:56 + 0: 8 + 21: _ZNK9oceanbase3sql18ObBasicSessionInfo14get_autocommitERb:304 + 2: 8 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache14get_autocommitEv:264 + 0: 8 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache14get_autocommitEb:184 + 0: 8 +_ZN9oceanbase3sql10ObSQLUtils19handle_audit_recordEbNS0_13ObExecuteModeERNS0_16ObSQLSessionInfoEb:834304:5609 + 4: 5353 + 5: 5353 + 6: 5353 + 8.1: 5353 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:5413 + 8.2: 2 + 9: 2 + 10: 2 + 13: 2 + 14: 2 + 17: 2 + 19: 2 + 19.1: 2 + 19.3: 2 + 19.4: 2 + 20.1: 2 + 26: 5241 _ZN9oceanbase3sql16ObSQLSessionInfo29update_stat_from_audit_recordEv:5415 + 28: 5248 + 8.2: _ZNK9oceanbase3sql18ObBasicSessionInfo29get_local_ob_enable_sql_auditEv:66 + 2: 2 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache23get_ob_enable_sql_auditEv:38 + 0: 2 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache23get_ob_enable_sql_auditEb:24 + 0: 2 + 27: _ZN9oceanbase3sql16ObSQLSessionInfo18reset_audit_recordEb:393640 + 6: 2 + 7: 2 + 9: 2 + 10: 2 + 3: _ZN9oceanbase3sql17ObAuditRecordData5resetEv:356728 + 2: 5230 + 3: 5248 + 4: 5248 + 7: 5248 + 9: 5248 + 8: _ZN9oceanbase3sql17ObAuditRecordData5resetEv:150 + 2: 2 + 3: 2 + 4: 2 + 7: 2 + 9: 2 +_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher10drill_downEv:834167:3118 + 1: 3053 + 2: 3053 + 3: 3053 + 4: 22 + 5.1: 22 + 7.1: 2281 + 8: 5285 + 9.1: 4356 + 9.2: 4211 _ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandle7forwardERKNS0_15ObTableReadInfoERKNS_12blocksstable13ObDatumRowkeyE:4395 + 11.1: 22 + 13: 2296 + 16: 2092 + 19: 22 + 20: 5602 + 21: 3447 + 22: 1151 + 23: 1151 + 30: 2281 + 39: 3248 + 9.1: _ZN9oceanbase6common16ObFixedArrayImplINS_7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandleENS0_12ObIAllocatorEEixEl:58954 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandleEE2atEl:58954 + 6: 4211 + 20: _ZN9oceanbase6common16ObFixedArrayImplINS_7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandleENS0_12ObIAllocatorEEixEl:38283 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandleEE2atEl:38283 + 6: 5469 + 20.1: _ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandle17reach_scanner_endEv:87576 + 1: 5469 _ZNK9oceanbase12blocksstable22ObIndexBlockRowScanner12end_of_blockEv:5565 + 22: _ZN9oceanbase6common16ObFixedArrayImplINS_7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandleENS0_12ObIAllocatorEEixEl:8057 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandleEE2atEl:8057 + 6: 1151 + 22.1: _ZNK9oceanbase7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandle15is_prefetch_endEv:3453 + 1: 1151 +_ZN9oceanbase3sql12ObQueryRange13ObSearchState9intersectERKNS_6common5ObObjEbS6_b:821252:2205 + 1: 2134 + 2: 2134 + 3: 2134 + 3.1: 2134 + 3.2: 2134 + 3.3: 2134 + 4: 27 + 5.1: 27 + 6.1: 2134 + 7: 27 + 8.1: 27 + 14: 2134 _ZNK9oceanbase6common5ObObj7compareERKS1_:2165 + 15: 2054 + 15.1: 2092 + 18.1: 27 + 18.3: 27 + 20: 27 + 21: 27 + 23: 1 + 25: 1 + 26.1: 12 + 26.2: 12 + 30: 2118 _ZNK9oceanbase6common5ObObj7compareERKS1_:2248 + 31: 2175 + 33.1: 1143 + 34: 1104 + 35: 1104 + 37: 27 + 37.2: 27 + 41: 2161 _ZNK9oceanbase6common5ObObj7compareERKS1_:2184 + 42: 2101 + 43: 1081 + 44: 1081 + 45.1: 957 + 48: 957 + 48.2: 957 + 52: 1995 + 16.1: _ZNK9oceanbase3sql12ObQueryRange13ObSearchState13has_intersectERKNS_6common5ObObjEbS6_b:327622 + 6: 2092 + 6.1: 2092 + 6.2: 2092 + 6.3: 2092 + 6.4: 2092 + 7: 2032 + 8: 2092 + 9: 2133 + 10: 2126 + 13: 2092 _ZNK9oceanbase6common5ObObj7compareERKS1_:2130 + 14: 2032 + 14.1: 2126 _ZNK9oceanbase6common5ObObj7compareERKS1_:2053 + 15: 2126 + 15.1: 2126 + 16.1: 2133 + 20: _ZN9oceanbase6common5ObObj13set_max_valueEv:382 + 2: _ZN9oceanbase6common5ObObj7set_extEl:382 + 4: 27 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:123 + 0: 27 + 21: _ZN9oceanbase6common5ObObj13set_min_valueEv:382 + 2: _ZN9oceanbase6common5ObObj7set_extEl:382 + 4: 27 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:123 + 0: 27 + 26.1: _ZNK9oceanbase6common5ObObj12is_min_valueEv:19188 + 2: 2124 + 2.1: 12 + 26.2: _ZNK9oceanbase6common5ObObj12is_max_valueEv:120 + 2: 12 + 2.1: 12 +_ZN9oceanbase11transaction9tablelock14ObLockMemtable18remove_lock_recordERKNS1_13ObTableLockOpEb:818919:688 + 3: 643 + 4: 643 + 5: 643 + 6: 0 + 7.1: 0 + 8.1: 643 + 9: 11 + 10.1: 11 + 13: 684 + 14: 11 + 15: 11 + 16: 11 + 17: 11 + 23.1: 698 + 8.1: _ZNK9oceanbase11transaction9tablelock13ObTableLockOp8is_validEv:47027 + 2: 643 + 3: 643 + 4: 643 + 5: 643 + 6: 643 + 2: _ZNK9oceanbase11transaction9tablelock8ObLockID8is_validEv:11574 + 2: 643 + 2: _ZN9oceanbase6common11is_valid_idEm:3215 + 2: 643 + 3: _ZN9oceanbase11transaction9tablelockL22is_lock_obj_type_validERKNS1_13ObLockOBJTypeE:4501 + 2: 643 + 3: _ZN9oceanbase11transaction9tablelockL18is_lock_mode_validEh:3215 + 2: 643 + 4: _ZNK9oceanbase11transaction9ObTransID8is_validEv:3215 + 0: 643 + 12: _ZN9oceanbase11transaction9tablelock12ObOBJLockMap18remove_lock_recordERKNS1_13ObTableLockOpEb:702624 + 4: 643 + 5: 643 + 8: 643 + 9: 0 + 10.1: 0 + 12: 11 + 13.1: 11 + 14.1: 643 _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9tablelock8ObLockIDENS3_9ObOBJLockENS3_14ObOBJLockAllocENS0_9RefHandleELl8EE3getERKS4_RPS5_:708 + 17: 0 + 20.1: 0 + 24: 637 + 29: 687 + 30: 713 + 11.1: _ZNK9oceanbase11transaction9tablelock13ObTableLockOp8is_validEv:5875 + 5: 643 + 24: _ZN9oceanbase11transaction9tablelock9ObOBJLock14remove_lock_opERKNS1_13ObTableLockOpEbRNS_6common8ObMallocE:107130 + 5: 637 + 6: 637 + 10: 637 + 11: 11 + 12.1: 11 + 13.1: 697 + 14: 697 + 21: 0 + 22: 0 + 23: 0 + 27: 0 + 28: 0 + 29: 0 + 10: _ZNK9oceanbase11transaction9tablelock13ObTableLockOp8is_validEv:47874 + 2: 637 + 3: 637 + 5: 637 + 6: 637 + 2: _ZNK9oceanbase11transaction9tablelock8ObLockID8is_validEv:15925 + 2: 637 + 2: _ZN9oceanbase6common11is_valid_idEm:7644 + 2: 637 + 3: _ZN9oceanbase11transaction9tablelockL22is_lock_obj_type_validERKNS1_13ObLockOBJTypeE:4459 + 2: 637 + 3: _ZN9oceanbase11transaction9tablelockL18is_lock_mode_validEh:1274 + 2: 637 + 13.1: _ZNK9oceanbase11transaction9tablelock13ObTableLockOp19need_record_lock_opEv:21226 + 2: _ZN9oceanbase11transaction9tablelockL20is_out_trans_op_typeENS1_17ObTableLockOpTypeE:10192 + 2: 637 + 3: _ZNK9oceanbase11transaction9tablelock13ObTableLockOp25is_need_record_lock_mode_Ev:8481 + 2: 770 + 4: _ZN9oceanbase11transaction9tablelockL30is_in_trans_lock_table_op_typeENS1_17ObTableLockOpTypeE:2091 + 2: 697 + 15: _ZN9oceanbase11transaction9tablelock9ObOBJLock21unlock_row_exclusive_Ev:6273 + 2.1: 697 + 17: _ZN9oceanbase11transaction9tablelock9ObOBJLock17unlock_row_share_Ev:0 + 2.1: 0 + 20: _ZN9oceanbase11transaction9tablelock9ObOBJLock22get_index_by_lock_modeEh:0 + 3: 0 + 28: _ZN9oceanbase11transaction9tablelock12ObOBJLockMap23drop_obj_lock_if_empty_ERKNS1_8ObLockIDEPNS1_9ObOBJLockE:505777 + 4: 687 + 6: 687 + 7: 687 + 7.1: 687 + 9: 0 + 10.1: 0 + 13: 687 + 14: 723 + 14.1: 723 + 16: 723 + 17: 0 + 20: 0 + 20.1: 0 + 20.2: 0 + 23: 0 + 23.1: 0 + 25.1: 0 + 27.1: 0 + 28.1: 0 + 30.1: 0 + 30.2: 0 + 31.1: 0 + 34: 0 + 35: 723 + 8: _ZNK9oceanbase11transaction9tablelock8ObLockID8is_validEv:4809 + 3: _ZN9oceanbase11transaction9tablelockL22is_lock_obj_type_validERKNS1_13ObLockOBJTypeE:4809 + 2: 687 + 13: _ZN9oceanbase6common12TCRLockGuardC2ERKNS0_8TCRWLockE:168133 + 1: 687 + 3: 723 + 4.1: 0 + 3: _ZN9oceanbase6common8TCRWLock6rdlockElRl:150019 + 3.1: 0 + 4: 0 + 5: 0 + 3.2: _ZN9oceanbase6common8TCRWLock10try_rdlockERl:150019 + 3: 687 + 5: 723 + 8: 0 + 4: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:2748 + 0: 687 + 4.1: _ZN9oceanbase6common5TCRef7inc_refEPiRl:109633 + 2: 687 + 4: 687 + 5.1: 732 + 5.2: 732 + 7: 1393 + 7.1: 717 + 8: 723 + 12: 723 + 2: _ZN9oceanbase6common8get_itidEv:19236 + 4: 687 + 5: 0 + 6: 0 + 8: 0 + 13: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 8: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:0 + 0: 0 + 8.1: _ZN9oceanbase6common5TCRef7dec_refEPil:0 + 2: 0 + 2.1: 0 + 3: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 9: _ZN9oceanbase6common9LWaitCond6signalEv:0 + 2: 0 + 2.1: 0 + 3: 0 + 14: _ZNK9oceanbase11transaction9tablelock9ObOBJLock17size_without_lockEv:224853 + 4: 3615 + 8: 723 + 11: 723 + 15: _ZN9oceanbase6common12TCRLockGuardD2Ev:56691 + 2: 723 + 3: 723 + 3.1: 723 + 3.2: 0 + 3: _ZN9oceanbase6common8TCRWLock8rdunlockEl:38616 + 3: 723 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:2892 + 0: 723 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPil:22413 + 2: 723 + 2.1: 723 + 3: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:8250 + 2: 723 + 2.1: 11 + 3: 11 + 17: _ZN9oceanbase6common12TCWLockGuardC2ERKNS0_8TCRWLockE:0 + 1: 0 + 3: 0 + 4.1: 0 + 20: _ZNK9oceanbase11transaction9tablelock9ObOBJLock17size_without_lockEv:0 + 4: 0 + 8: 0 + 11: 0 + 21: _ZNK9oceanbase11transaction9tablelock9ObOBJLock10is_deletedEv:0 + 0: 0 + 22: _ZN9oceanbase11transaction9tablelock9ObOBJLock11set_deletedEv:0 + 0: 0 + 36: _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9tablelock8ObLockIDENS3_9ObOBJLockENS3_14ObOBJLockAllocENS0_9RefHandleELl8EE6revertEPS5_:121 + 3: 11 + 30: _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9tablelock8ObLockIDENS3_9ObOBJLockENS3_14ObOBJLockAllocENS0_9RefHandleELl8EE6revertEPS5_:39259 + 2: 713 + 3: 713 + 3: _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9tablelock8ObLockIDENS3_9ObOBJLockENS3_14ObOBJLockAllocENS0_9RefHandleELl8EE6revertEPNS0_12LinkHashNodeIS4_EE:30703 + 6: 713 + 6.1: 713 + 6.2: 713 + 7.1: 0 + 10: 713 + 11: 713 _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9tablelock8ObLockIDENS3_9ObOBJLockENS3_14ObOBJLockAllocENS0_9RefHandleELl8EE8dec_urefEPNS0_12LinkHashNodeIS4_EE:704 + 15: _ZN9oceanbase6common10dec_updateIlEElPT_S2_:396 + 3: 11 + 4.1: 11 + 5: 11 + 16: _ZN9oceanbase6common10inc_updateIlEElPT_S2_:484 + 3: 11 + 4.1: 11 + 5: 11 + 19: _ZN9oceanbase11transaction9tablelock14ObLockMemtable15wakeup_waiters_ERKNS1_13ObTableLockOpE:12244 + 5.1: 11 + 6.1: 0 + 8.1: 11 + 3: _ZNK9oceanbase11transaction9tablelock13ObTableLockOp18need_wakeup_waiterEv:2835 + 2: 11 + 2: _ZN9oceanbase11transaction9tablelockL20is_out_trans_op_typeENS1_17ObTableLockOpTypeE:2736 + 2: 684 + 5.1: _ZN9oceanbase5share11ObTenantEnv3mtlIPNS_8memtable13ObLockWaitMgrEEET_v:319 + 2: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:187 + 2: 11 + 2.1: 0 + 2.2: 0 + 2.1: _ZN9oceanbase5share12ObTenantBase3getIPNS_8memtable13ObLockWaitMgrEEET_v:132 + 0: _ZN9oceanbase5share12ObTenantBase9inner_getENS1_8IdentityIPNS_8memtable13ObLockWaitMgrEEE:132 + 0: 11 +_ZN9oceanbase3sql12ObIDASTaskOp14start_das_taskEv:810180:5452 + 1: 5201 + 4: 5201 + 4.2: 5201 + 5: 0 + 7: 5281 + 8: 5543 _ZN9oceanbase3sql11ObDASScanOp7open_opEv:4695 _ZN9oceanbase3sql13ObDASUpdateOp7open_opEv:402 _ZN9oceanbase3sql13ObDASInsertOp7open_opEv:279 _ZN9oceanbase3sql13ObDASDeleteOp7open_opEv:273 _ZN9oceanbase3sql11ObDASLockOp7open_opEv:159 + 9.1: 0 + 10: 0 + 12: 0 + 16: 5543 + 3: _ZN9oceanbase6common9EventItemC2Ev:78015 + 2: 5201 + 3.1: _ZN9oceanbase6common10EventTable8instanceEv:88417 + 2: 5201 + 2.1: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common10EventTableC2Ev:0 + 0: 0 + 2: 0 + 3.2: _ZN9oceanbase6common10EventTable9get_eventEl:150829 + 1.4: 5201 + 3.3: _ZNK9oceanbase6common9EventItem4callEv:135226 + 2: 5201 + 3: 5201 + 5.1: 0 + 7.1: 0 + 8: 0 + 9.1: 0 + 11: 0 + 12: 0 + 13.1: 0 + 18: 5201 + 4: _ZNK9oceanbase3sql12ObIDASTaskOp11is_in_retryEv:20804 + 0: 5201 +_ZN9oceanbase3sql18ObTableScanOpInputC2ERNS0_13ObExecContextERKNS0_8ObOpSpecE:810030:4257 + 2: 4154 + 3: 4154 + 4: 4154 + 5: 4154 + 0: _ZN9oceanbase6common9ObSEArrayINS0_10ObNewRangeELl1ENS0_19ModulePageAllocatorELb0EEC2Ev:631408 + 0.1: 4154 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObNewRangeELl1ENS0_19ModulePageAllocatorELb0EEC2ElRKS3_:569098 + 2: 4154 + 5: 4154 + 6: 4154 + 8: 4154 + 17.1: 4154 + 2: _ZN9oceanbase6common8ObIArrayINS0_10ObNewRangeEEC2EPS2_l:49848 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_10ObNewRangeEEC2EPS2_l:49848 + 0: 4154 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:236778 + 0: 4154 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:103850 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:103850 + 2: 4154 + 8: 4154 + 1: _ZN9oceanbase3sql9ObOpInputC2ERNS0_13ObExecContextERKNS0_8ObOpSpecE:33232 + 0: 4154 +_ZN9oceanbase3sql18ObTableScanOpInputC1ERNS0_13ObExecContextERKNS0_8ObOpSpecE:810030:4257 + 2: 4154 + 3: 4154 + 4: 4154 + 5: 4154 + 0: _ZN9oceanbase6common9ObSEArrayINS0_10ObNewRangeELl1ENS0_19ModulePageAllocatorELb0EEC2Ev:631408 + 0.1: 4154 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObNewRangeELl1ENS0_19ModulePageAllocatorELb0EEC2ElRKS3_:569098 + 2: 4154 + 5: 4154 + 6: 4154 + 8: 4154 + 17.1: 4154 + 2: _ZN9oceanbase6common8ObIArrayINS0_10ObNewRangeEEC2EPS2_l:49848 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_10ObNewRangeEEC2EPS2_l:49848 + 0: 4154 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:236778 + 0: 4154 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:103850 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:103850 + 2: 4154 + 8: 4154 + 1: _ZN9oceanbase3sql9ObOpInputC2ERNS0_13ObExecContextERKNS0_8ObOpSpecE:33232 + 0: 4154 +_ZNK9oceanbase12blocksstable18ObMicroBlockHeader8is_validEv:806624:11030 + 1: 10569 + 3: 10569 + 4: 10569 + 4.1: 10569 + 5: 10569 + 5.1: 10569 + 6: 10569 + 6.1: 10569 + 7: 10569 + 8.1: 10569 + 9: 10569 + 9.1: 10944 + 10: 10944 + 3: _ZN9oceanbase12blocksstable18ObMicroBlockHeader18get_serialize_sizeElb:158535 + 1: 10569 +_ZNK9oceanbase7obmysql7OMPKRow9serializeEPclRl:802010:80212 + 1: 80201 + 2: 80201 _ZNK9oceanbase7obmysql10ObMySQLRow9serializeEPclRl:83660 +_ZN9oceanbase3rpc5frame14ObSqlProcessor3runEv:800051:4970 + 1: 4934 + 5: 5452 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:5500 + 6: 5452 _ZN9oceanbase8observer8ObMPBase19setup_packet_senderEv:5493 + 8.1: 30 + 9.1: 5146 _ZN9oceanbase8observer9ObMPQuery11deserializeEv:5173 + 11.1: 30 + 12.1: 5481 _ZN9oceanbase8observer8ObMPBase14before_processEv:5749 + 13.1: 30 + 15: 5481 _ZN9oceanbase3rpc9ObRequest15set_trace_pointEi:5451 + 16: 5169 _ZN9oceanbase8observer9ObMPQuery7processEv:4910 + 22: 5169 _ZN9oceanbase8observer8ObMPBase8responseEi:5266 + 23.1: 30 + 25: 5016 + 25.1: 5082 _ZN9oceanbase8observer8ObMPBase13after_processEi:5010 + 26.1: 30 + 29: 5082 _ZN9oceanbase8observer8ObMPBase7cleanupEv:5148 + 31: 5385 +_ZN9oceanbase12blocksstable23ObIMicroBlockRowScanner4openERKNS0_12MacroBlockIdERKNS0_16ObMicroBlockDataEbb:795811:2842 + 5: 2636 + 6: 2636 + 7: 2636 + 7.1: 2636 + 7.2: 2636 + 8: 1 + 9.1: 1 + 10.1: 2636 + 10.3: 2636 + 11: 1 + 12.1: 1 + 13.1: 2675 + 13.2: 2794 _ZN9oceanbase12blocksstable23ObIMicroBlockRowScanner10set_readerENS_6common14ObRowStoreTypeE:2810 + 14: 1 + 15.1: 1 + 16.1: 2675 _ZThn320_N9oceanbase12blocksstable18ObMicroBlockReader4initERKNS0_16ObMicroBlockDataERKNS_7storage15ObTableReadInfoE:2737 + 17.1: 1 + 19: 2576 + 20: 2576 + 21: 2576 + 24: 2576 + 10.1: _ZNK9oceanbase12blocksstable12MacroBlockId8is_validEv:81716 + 2: 2636 + 3: 2636 + 4.1: 2636 + 5.1: 2636 + 10.2: _ZNK9oceanbase12blocksstable16ObMicroBlockData8is_validEv:81716 + 0: 2636 + 0.1: 2636 + 0.2: 2636 + 13.1: _ZNK9oceanbase12blocksstable16ObMicroBlockData14get_store_typeEv:84367 + 4: 2636 + 4.1: 2685 _ZNK9oceanbase12blocksstable18ObMicroBlockHeader8is_validEv:2792 + 5: 2823 + 6: 2823 + 19: _ZNK9oceanbase6common11ObQueryFlag15is_reverse_scanEv:23184 + 0: 2576 + 22: _ZN9oceanbase12blocksstable12MacroBlockIdaSERKS1_:82432 + 2: 2576 + 3: 2576 + 4: 2576 +_ZN9oceanbase7storage19ObTabletBindingInfo5resetEv:794141:13902 + 1: 13246 + 2: 13246 + 4: 13246 + 6: 13246 + 9: 14605 + 5: _ZN9oceanbase6common10ObTabletID5resetEv:105968 + 0: 13246 + 6: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EE5resetEv:66282 + 0: 13246 _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv:13730 + 8: _ZN9oceanbase6common10ObTabletID5resetEv:175260 + 0: 14605 +_ZN9oceanbase6common13ObSEArrayImplINS0_8ObStringELl1ENS0_19ModulePageAllocatorELb0EED2Ev:790955:10799 + 1: 10267 + 3: 10865 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS0_8ObStringELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:405694 + 9: 10267 + 11: 0 + 13: 10865 + 15: 10865 + 24: 10865 + 10: _ZN9oceanbase6common13ObSEArrayImplINS0_8ObStringELl1ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase3sql8ObDASCtx17check_same_serverEPKNS0_14ObDASTabletLocE:784755:4736 + 1: 4581 + 2: 4581 + 3: 4581 + 4: 0 + 5.1: 0 + 6.1: 4581 + 7: 4581 + 8: 4581 + 9: 4581 + 10: 0 + 11.1: 0 + 12.1: 4581 + 13: 0 + 14.1: 0 + 15.1: 4581 + 16: 0 + 17.1: 0 + 18.1: 4581 + 19: 0 + 20.1: 0 + 21.1: 4581 + 22: 0 + 25: 4737 + 9: _ZNK9oceanbase6common6ObListIPNS_3sql13ObDASTableLocENS0_12ObIAllocatorEE5emptyEv:22905 + 2: 4581 + 12.1: _ZN9oceanbase6common6ObListIPNS_3sql13ObDASTableLocENS0_12ObIAllocatorEE9get_firstEv:13743 + 0: 4581 + 15.1: _ZNK9oceanbase6common6ObListIPNS_3sql14ObDASTabletLocENS0_12ObIAllocatorEE5emptyEv:22905 + 2: 4581 + 18.1: _ZN9oceanbase6common6ObListIPNS_3sql14ObDASTabletLocENS0_12ObIAllocatorEE9get_firstEv:18324 + 0: 4581 + 21.1: _ZNK9oceanbase6common6ObAddrneERKS1_:183240 + 2: _ZNK9oceanbase6common6ObAddreqERKS1_:183240 + 2: 4581 + 2.1: 4581 + 2.2: 4581 +easy_buf_destroy:783288:10160 + 1: 9942 + 10: 9942 + 12: 9942 + 13: 0 + 20: 9942 + 21: 4728 + 22: 4728 easy_request_cleanup.f43157592e2c0f0ad5daf1bf99e9d331:4731 + 28: 9744 + 29: 0 + 32: 0 + 33: 0 + 34: 0 + 35.2: 0 + 35.3: 0 + 35.4: 0 + 38: 0 + 39: 0 + 40: 0 + 40.1: 0 + 40.4: 0 + 41.2: 0 + 41.3: 0 + 41.4: 0 + 45: 0 + 46: 0 + 47: 0 + 56.1: 0 + 56.2: 0 + 57: 0 + 58: 0 + 61: 9744 + 11: easy_list_del:208782 + 2: 9942 + 3.1: 9942 + 2: __easy_list_del:69594 + 2: 9942 + 3: 9942 + 40.2: easy_atomic_cmp_set:0 + 2: 0 +_ZN9oceanbase12blocksstable17ObFuseRowCacheKeyC2EmRKNS_6common10ObTabletIDERKNS0_13ObDatumRowkeyEllRKNS0_19ObStorageDatumUtilsE:782451:3575 + 7: 3457 + 8: 3457 + 10: 3457 + 11.1: 3483 + 12: 3483 + 13: 3483 + 14: 3483 + 15: 3483 + 0.1: _ZN9oceanbase12blocksstable13ObDatumRowkeyC2Ev:79511 + 0.4: _ZN9oceanbase12blocksstable13ObDatumRowkey5resetEv:79511 + 0: 3457 + 0.2: _ZN9oceanbase6common10ObTabletIDC2Em:27656 + 0: 3457 + 9: _ZN9oceanbase6common10ObTabletIDaSERKS1_:24199 + 0: 3457 + 11: _ZNK9oceanbase12blocksstable13ObDatumRowkey18get_deep_copy_sizeEv:269853 + 4: 3457 + 5: 0 + 6.1: 0 + 8: 3457 + 9: 3457 + 9.1: 2 + 9.3: 2 + 10: 3482 + 4: _ZNK9oceanbase12blocksstable13ObDatumRowkey8is_validEv:65683 + 0: 3457 + 0.1: 3457 + 10: _ZNK9oceanbase12blocksstable14ObStorageDatum18get_deep_copy_sizeEv:124488 + 3: 3457 + 4.1: 3456 + 3: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:38036 + 0: 3456 + 4.1: _ZNK9oceanbase12blocksstable14ObStorageDatum12is_local_bufEv:41496 + 0: 3456 + 15.4: _ZN9oceanbase6common10ObTabletIDD2Ev:0 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:0 + 0: 0 +_ZN9oceanbase12blocksstable17ObFuseRowCacheKeyC1EmRKNS_6common10ObTabletIDERKNS0_13ObDatumRowkeyEllRKNS0_19ObStorageDatumUtilsE:782451:3575 + 7: 3457 + 8: 3457 + 10: 3457 + 11.1: 3483 + 12: 3483 + 13: 3483 + 14: 3483 + 15: 3483 + 0.1: _ZN9oceanbase12blocksstable13ObDatumRowkeyC2Ev:79511 + 0.4: _ZN9oceanbase12blocksstable13ObDatumRowkey5resetEv:79511 + 0: 3457 + 0.2: _ZN9oceanbase6common10ObTabletIDC2Em:27656 + 0: 3457 + 9: _ZN9oceanbase6common10ObTabletIDaSERKS1_:24199 + 0: 3457 + 11: _ZNK9oceanbase12blocksstable13ObDatumRowkey18get_deep_copy_sizeEv:269853 + 4: 3457 + 5: 0 + 6.1: 0 + 8: 3457 + 9: 3457 + 9.1: 2 + 9.3: 2 + 10: 3482 + 4: _ZNK9oceanbase12blocksstable13ObDatumRowkey8is_validEv:65683 + 0: 3457 + 0.1: 3457 + 10: _ZNK9oceanbase12blocksstable14ObStorageDatum18get_deep_copy_sizeEv:124488 + 3: 3457 + 4.1: 3456 + 3: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:38036 + 0: 3456 + 4.1: _ZNK9oceanbase12blocksstable14ObStorageDatum12is_local_bufEv:41496 + 0: 3456 + 15.4: _ZN9oceanbase6common10ObTabletIDD2Ev:0 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:0 + 0: 0 +_ZN9oceanbase5share15ObSysVarFactory23find_sys_var_id_by_nameERKNS_6common8ObStringEb:779721:915 + 2: 883 + 3: 883 + 5: 861 + 7: 861 + 9: 861 + 10: 0 + 11.1: 0 + 12.1: 861 + 13: 0 + 14.1: 0 + 16.1: 861 + 21: 861 + 25: 908 + 27: 908 + 28: 0 + 29.1: 0 + 32.1: 0 + 36: 940 + 5: _ZSt11lower_boundIPPKcN9oceanbase6common8ObStringEPFbS1_RKS5_EET_SA_SA_RKT0_T1_:571312 + 13: _ZSt13__lower_boundIPPKcN9oceanbase6common8ObStringEN9__gnu_cxx5__ops14_Iter_comp_valIPFbS1_RKS5_EEEET_SE_SE_RKT0_T1_:571312 + 8.1: 7271 + 10: 7252 + 13: 7160 + 13: _ZN9__gnu_cxx5__ops14_Iter_comp_valIPFbPKcRKN9oceanbase6common8ObStringEEEclIPS3_S7_EEbT_RT0_:445436 + 1: 7252 + 1: _ZN9oceanbase5share15ObSysVarFactory21sys_var_name_case_cmpEPKcRKNS_6common8ObStringE:409176 + 2: 7160 + 2: _ZNK9oceanbase6common8ObString12case_compareEPKc:387696 + 3: 7252 + 4: 7252 + 8: _ZNK9oceanbase6common8ObString12case_compareERKS1_:293372 + 3: 7376 + 4: 5 + 10: 7376 + 10.1: 7360 + 11: 7160 + 10: _ZSt3minIiERKT_S2_S2_:38905 + 5: 7376 + 20.1: _ZNK9oceanbase6common8ObString12case_compareEPKc:42671 + 3: 861 + 4: 861 + 8: _ZNK9oceanbase6common8ObString12case_compareERKS1_:26126 + 3: 892 + 10: 892 + 10.1: 892 + 11: 923 + 10: _ZSt3minIiERKT_S2_S2_:5445 + 5: 923 +_ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE7set_objERNS0_9ObMetaObjIS2_EE:778105:6002 + 1: 5665 + 2: 5665 + 3: 5316 + 4: 5316 + 5: 5316 + 6.1: 0 + 7: 0 + 9: 5316 + 13: 5316 + 2: _ZN9oceanbase7storage14ObTabletHandle5resetEv:280040 + 2: 5665 + 3: 0 + 5: 5824 + 3: _ZNK9oceanbase7storage14ObTabletHandle15calc_wash_scoreENS0_18WashTabletPriorityE:0 + 2: 0 + 4: 0 + 4.2: 0 + 6: 0 + 7.1: 0 + 11: 0 + 12: 0 + 3.1: _ZN9oceanbase7storage8ObTablet17update_wash_scoreEl:0 + 3: 0 + 4: 0 + 5.1: 0 + 6: _ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE5resetEv:205600 + 2: 5824 + 3: 5316 + 2: _ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE9reset_objEv:46592 + 2: 5824 + 3: 0 + 4.1: 0 + 5: 0 + 7: 0 + 8: 0 + 9: 0 + 10.1: 0 + 11.1: 0 + 13: 0 + 7: _ZN9oceanbase7storage8ObTablet7dec_refEv:0 + 2: 0 + 10: _ZN9oceanbase7storage8ObTablet7inc_refEv:47844 + 2: 5316 +_ZN9oceanbase6common23ObOptStatMonitorManager18update_local_cacheEmRNS0_12ObOptDmlStatE:773540:794 + 1: 790 + 2: 790 + 3: 869 _ZN9oceanbase8observer14global_contextEv:915 + 3.1: 874 _ZNK9oceanbase8observer15ObGlobalContext18is_standby_clusterEv:898 + 7: 886 + 10: 880 + 12: 0 + 13: 0 + 15: 0 + 16: 0 + 17.1: 0 + 20.1: 0 + 21.1: 0 + 26.1: 0 + 30.1: 946 + 31.1: 0 + 36: 946 + 6: _ZN9oceanbase6common23ObOptStatMonitorManager26get_or_create_dml_stat_mapEm:182551 + 3: 869 + 5: 886 + 10: 0 + 11.1: 0 + 13.1: 0 + 14.1: 0 + 15.1: 0 + 18.1: 0 + 20.1: 0 + 24: 0 + 24.1: 0 + 28: 0 + 31.1: 0 + 4: _ZNK9oceanbase6common4hash9ObHashMapImPNS2_ISt4pairImmENS0_12ObOptDmlStatENS1_24LatchReadWriteDefendModeENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS4_S5_EEEELi65ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEES6_NS7_ImEENS9_ImEENSB_INSC_INSD_ImSM_EEEELi109ESG_SH_EESJ_SK_Ll1EE14get_refactoredERKmRSM_l:169397 + 7: 886 + 7: _ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS1_9ObHashMapISt4pairImmENS0_12ObOptDmlStatENS1_24LatchReadWriteDefendModeENS1_9hash_funcIS6_EENS1_8equal_toIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS3_IS6_S7_EEEELi65ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEEEENS9_ImEENSB_ImEENS1_10pair_firstISO_EENSD_INSE_ISO_EELi109ESH_SI_EES8_SK_SL_Ll1EE14get_refactoredERKmRSO_l:161423 + 5: 869 + 5.1: 869 + 6.1: 0 + 10: 869 + 19: 859 + 5: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImPNS1_9ObHashMapISt4pairImmENS0_12ObOptDmlStatENS1_24LatchReadWriteDefendModeENS1_9hash_funcIS7_EENS1_8equal_toIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS4_IS7_S8_EEEELi65ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEEEENS0_7ObLatchENS1_5NCondEEEEEbRKT_:8690 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImPNS1_9ObHashMapISt4pairImmENS0_12ObOptDmlStatENS1_24LatchReadWriteDefendModeENS1_9hash_funcIS7_EENS1_8equal_toIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS4_IS7_S8_EEEELi65ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEEEENS0_7ObLatchENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:8690 + 2: 869 + 14: _ZN9oceanbase6common4hash16ObBucketLockCondINS1_11HashMapPairImPNS1_9ObHashMapISt4pairImmENS0_12ObOptDmlStatENS1_24LatchReadWriteDefendModeENS1_9hash_funcIS6_EENS1_8equal_toIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS3_IS6_S7_EEEELi65ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEEEES8_E4lockEv:6952 + 2: 869 + 14.1: _ZN9oceanbase6common4hash15LatchReadLockerC2ERNS0_7ObLatchE:28537 + 3: 869 _ZN9oceanbase6common7ObLatch6rdlockEjl:872 + 4.1: 0 + 18: _ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS1_9ObHashMapISt4pairImmENS0_12ObOptDmlStatENS1_24LatchReadWriteDefendModeENS1_9hash_funcIS6_EENS1_8equal_toIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS3_IS6_S7_EEEELi65ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEEEENS9_ImEENSB_ImEENS1_10pair_firstISO_EENSD_INSE_ISO_EELi109ESH_SI_EES8_SK_SL_Ll1EE32internal_get_with_timeout_unsafeERNS1_17ObHashTableBucketISO_NS0_7ObLatchENS1_5NCondEEERKmRPKSO_l:51540 + 6: _ZNK9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS1_9ObHashMapISt4pairImmENS0_12ObOptDmlStatENS1_24LatchReadWriteDefendModeENS1_9hash_funcIS6_EENS1_8equal_toIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS3_IS6_S7_EEEELi65ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEEEENS9_ImEENSB_ImEENS1_10pair_firstISO_EENSD_INSE_ISO_EELi109ESH_SI_EES8_SK_SL_Ll1EE12internal_getERKNS1_17ObHashTableBucketISO_NS0_7ObLatchENS1_5NCondEEERKmRPKSO_Rb:51540 + 6: 859 + 8.1: 859 + 10: 859 + 14: 859 + 16: 0 + 9: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_11HashMapPairImPNS1_9ObHashMapISt4pairImmENS0_12ObOptDmlStatENS1_24LatchReadWriteDefendModeENS1_9hash_funcIS6_EENS1_8equal_toIS6_EENS1_13SimpleAllocerINS2_INS3_IS6_S7_EEEELi65ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEEEEE16check_magic_codeEv:11167 + 0: 859 + 9.1: _ZL12abort_unlessb:5154 + 5: 859 + 6: 0 + 10.1: _ZNK9oceanbase6common4hash8equal_toImEclERKmS5_:6872 + 2: 859 + 21: _ZN9oceanbase6common11copy_assignINS0_4hash11HashMapPairImPNS2_9ObHashMapISt4pairImmENS0_12ObOptDmlStatENS2_24LatchReadWriteDefendModeENS2_9hash_funcIS6_EENS2_8equal_toIS6_EENS2_13SimpleAllocerINS2_15ObHashTableNodeINS3_IS6_S7_EEEELi65ENS2_19SpinMutexDefendModeENS2_29DefaultSimpleAllocerAllocatorEEENS2_13NormalPointerENS0_8ObMallocELl1EEEEEEEiRT_RKSP_:14603 + 2: _ZN9oceanbase6common16copy_assign_wrapINS0_4hash11HashMapPairImPNS2_9ObHashMapISt4pairImmENS0_12ObOptDmlStatENS2_24LatchReadWriteDefendModeENS2_9hash_funcIS6_EENS2_8equal_toIS6_EENS2_13SimpleAllocerINS2_15ObHashTableNodeINS3_IS6_S7_EEEELi65ENS2_19SpinMutexDefendModeENS2_29DefaultSimpleAllocerAllocatorEEENS2_13NormalPointerENS0_8ObMallocELl1EEEEEEEiRT_RKSP_NS0_8BoolTypeILb1EEE:14603 + 2: _ZN9oceanbase6common4hash11HashMapPairImPNS1_9ObHashMapISt4pairImmENS0_12ObOptDmlStatENS1_24LatchReadWriteDefendModeENS1_9hash_funcIS5_EENS1_8equal_toIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS2_IS5_S6_EEEELi65ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEEE6assignERKSN_:14603 + 5.1: _ZN9oceanbase6common11copy_assignIPNS0_4hash9ObHashMapISt4pairImmENS0_12ObOptDmlStatENS2_24LatchReadWriteDefendModeENS2_9hash_funcIS5_EENS2_8equal_toIS5_EENS2_13SimpleAllocerINS2_15ObHashTableNodeINS2_11HashMapPairIS5_S6_EEEELi65ENS2_19SpinMutexDefendModeENS2_29DefaultSimpleAllocerAllocatorEEENS2_13NormalPointerENS0_8ObMallocELl1EEEEEiRT_RKSO_:14603 + 2: _ZN9oceanbase6common16copy_assign_wrapIPNS0_4hash9ObHashMapISt4pairImmENS0_12ObOptDmlStatENS2_24LatchReadWriteDefendModeENS2_9hash_funcIS5_EENS2_8equal_toIS5_EENS2_13SimpleAllocerINS2_15ObHashTableNodeINS2_11HashMapPairIS5_S6_EEEELi65ENS2_19SpinMutexDefendModeENS2_29DefaultSimpleAllocerAllocatorEEENS2_13NormalPointerENS0_8ObMallocELl1EEEEEiRT_RKSO_NS0_8BoolTypeILb0EEE:14603 + 2: 859 + 28: _ZN9oceanbase6common4hash15LatchReadLockerD2Ev:9449 + 2: 859 + 3: 859 _ZN9oceanbase6common7ObLatch6unlockEPKj:941 + 3.1: 0 + 8.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib7ObLabelE:0 + 3: 0 + 2.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 4: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 12.1: _ZN9oceanbase6common4hash9ObHashMapISt4pairImmENS0_12ObOptDmlStatENS1_24LatchReadWriteDefendModeENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS4_S5_EEEELi65ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev:0 + 0: 0 + 0.1: 0 + 0: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairISt4pairImmENS0_12ObOptDmlStatEEEEELi65ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEC2Ev:0 + 0: 0 + 2: 0 + 0.1: _ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocatorC2EmRKNS_3lib7ObLabelE:0 + 3: 0 + 4: 0 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 7: 0 + 2: _ZN9oceanbase6common4hash10SpinIniterC2ERVi:0 + 2: 0 + 3.1: 0 + 0.1: _ZN9oceanbase6common4hash11ObHashTableISt4pairImmENS1_11HashMapPairIS4_NS0_12ObOptDmlStatEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi65ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev:0 + 0: 0 + 1: 0 + 8: 0 + 0: _ZN9oceanbase6common8ObMallocC2Ev:0 + 0: 0 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: _ZN9oceanbase6common4hash9constructIPNS1_17ObHashTableBucketINS1_11HashMapPairISt4pairImmENS0_12ObOptDmlStatEEENS0_7ObLatchENS1_5NCondEEEEEvRT_:0 + 2: _ZN9oceanbase6common4hash12do_constructIPNS1_17ObHashTableBucketINS1_11HashMapPairISt4pairImmENS0_12ObOptDmlStatEEENS0_7ObLatchENS1_5NCondEEEEEvRT_NS1_16NormalPointerTagE:0 + 2: 0 + 0.2: _ZN9oceanbase6common8ObMallocC2Ev:0 + 0: 0 + 13.3: _ZN9oceanbase6common4hash9ObHashMapISt4pairImmENS0_12ObOptDmlStatENS1_24LatchReadWriteDefendModeENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS4_S5_EEEELi65ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE6createElRKNS_3lib7ObLabelESP_mm:0 + 6.1: 0 + 4.1: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairISt4pairImmENS0_12ObOptDmlStatEEEEELi65ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEE8set_attrERKNS_3lib9ObMemAttrE:0 + 0: _ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocator8set_attrERKNS_3lib9ObMemAttrE:0 + 0: 0 + 5.1: _ZN9oceanbase6common8ObMalloc8set_attrERKNS_3lib9ObMemAttrE:0 + 0: 0 + 6: _ZN9oceanbase6common4hash14cal_next_primeEl:0 + 7: 0 + 7.3: 0 + 6: _ZSt11lower_boundIPKllET_S2_S2_RKT0_:0 + 9: _ZSt13__lower_boundIPKllN9__gnu_cxx5__ops14_Iter_less_valEET_S5_S5_RKT0_T1_:0 + 8.1: 0 + 10: 0 + 13: 0 + 13: _ZNK9__gnu_cxx5__ops14_Iter_less_valclIPKlS3_EEbT_RT0_:0 + 1: 0 + 15.1: _ZN9oceanbase6common4hash9ObHashMapImPNS2_ISt4pairImmENS0_12ObOptDmlStatENS1_24LatchReadWriteDefendModeENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS4_S5_EEEELi65ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEES6_NS7_ImEENS9_ImEENSB_INSC_INSD_ImSM_EEEELi109ESG_SH_EESJ_SK_Ll1EE14set_refactoredERKmRKSM_iii:0 + 8: 0 + 5: _ZN9oceanbase6common4hash11HashMapPairImPNS1_9ObHashMapISt4pairImmENS0_12ObOptDmlStatENS1_24LatchReadWriteDefendModeENS1_9hash_funcIS5_EENS1_8equal_toIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS2_IS5_S6_EEEELi65ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEEE4initERKmRKSM_:0 + 3: _ZN9oceanbase6common11copy_assignImEEiRT_RKS2_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapImEEiRT_RKS2_NS0_8BoolTypeILb0EEE:0 + 2: 0 + 5.1: _ZN9oceanbase6common11copy_assignIPNS0_4hash9ObHashMapISt4pairImmENS0_12ObOptDmlStatENS2_24LatchReadWriteDefendModeENS2_9hash_funcIS5_EENS2_8equal_toIS5_EENS2_13SimpleAllocerINS2_15ObHashTableNodeINS2_11HashMapPairIS5_S6_EEEELi65ENS2_19SpinMutexDefendModeENS2_29DefaultSimpleAllocerAllocatorEEENS2_13NormalPointerENS0_8ObMallocELl1EEEEEiRT_RKSO_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapIPNS0_4hash9ObHashMapISt4pairImmENS0_12ObOptDmlStatENS2_24LatchReadWriteDefendModeENS2_9hash_funcIS5_EENS2_8equal_toIS5_EENS2_13SimpleAllocerINS2_15ObHashTableNodeINS2_11HashMapPairIS5_S6_EEEELi65ENS2_19SpinMutexDefendModeENS2_29DefaultSimpleAllocerAllocatorEEENS2_13NormalPointerENS0_8ObMallocELl1EEEEEiRT_RKSO_NS0_8BoolTypeILb0EEE:0 + 2: 0 + 17: _ZNK9oceanbase6common4hash9ObHashMapImPNS2_ISt4pairImmENS0_12ObOptDmlStatENS1_24LatchReadWriteDefendModeENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS4_S5_EEEELi65ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEES6_NS7_ImEENS9_ImEENSB_INSC_INSD_ImSM_EEEELi109ESG_SH_EESJ_SK_Ll1EE14get_refactoredERKmRSM_l:0 + 7: 0 + 4: _ZN9oceanbase6common4hash11HashMapPairImPNS1_9ObHashMapISt4pairImmENS0_12ObOptDmlStatENS1_24LatchReadWriteDefendModeENS1_9hash_funcIS5_EENS1_8equal_toIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS2_IS5_S6_EEEELi65ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEEE4initERKmRKSM_:0 + 3: _ZN9oceanbase6common11copy_assignImEEiRT_RKS2_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapImEEiRT_RKS2_NS0_8BoolTypeILb0EEE:0 + 2: 0 + 5.1: _ZN9oceanbase6common11copy_assignIPNS0_4hash9ObHashMapISt4pairImmENS0_12ObOptDmlStatENS2_24LatchReadWriteDefendModeENS2_9hash_funcIS5_EENS2_8equal_toIS5_EENS2_13SimpleAllocerINS2_15ObHashTableNodeINS2_11HashMapPairIS5_S6_EEEELi65ENS2_19SpinMutexDefendModeENS2_29DefaultSimpleAllocerAllocatorEEENS2_13NormalPointerENS0_8ObMallocELl1EEEEEiRT_RKSO_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapIPNS0_4hash9ObHashMapISt4pairImmENS0_12ObOptDmlStatENS2_24LatchReadWriteDefendModeENS2_9hash_funcIS5_EENS2_8equal_toIS5_EENS2_13SimpleAllocerINS2_15ObHashTableNodeINS2_11HashMapPairIS5_S6_EEEELi65ENS2_19SpinMutexDefendModeENS2_29DefaultSimpleAllocerAllocatorEEENS2_13NormalPointerENS0_8ObMallocELl1EEEEEiRT_RKSO_NS0_8BoolTypeILb0EEE:0 + 2: 0 + 8: _ZN9oceanbase6common11copy_assignIPNS0_4hash9ObHashMapISt4pairImmENS0_12ObOptDmlStatENS2_24LatchReadWriteDefendModeENS2_9hash_funcIS5_EENS2_8equal_toIS5_EENS2_13SimpleAllocerINS2_15ObHashTableNodeINS2_11HashMapPairIS5_S6_EEEELi65ENS2_19SpinMutexDefendModeENS2_29DefaultSimpleAllocerAllocatorEEENS2_13NormalPointerENS0_8ObMallocELl1EEEEEiRT_RKSO_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapIPNS0_4hash9ObHashMapISt4pairImmENS0_12ObOptDmlStatENS2_24LatchReadWriteDefendModeENS2_9hash_funcIS5_EENS2_8equal_toIS5_EENS2_13SimpleAllocerINS2_15ObHashTableNodeINS2_11HashMapPairIS5_S6_EEEELi65ENS2_19SpinMutexDefendModeENS2_29DefaultSimpleAllocerAllocatorEEENS2_13NormalPointerENS0_8ObMallocELl1EEEEEiRT_RKSO_NS0_8BoolTypeILb0EEE:0 + 2: 0 + 25: _ZN9oceanbase6common4hash9ObHashMapISt4pairImmENS0_12ObOptDmlStatENS1_24LatchReadWriteDefendModeENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS4_S5_EEEELi65ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:0 + 2.2: 0 + 2: _ZN9oceanbase6common4hash11ObHashTableISt4pairImmENS1_11HashMapPairIS4_NS0_12ObOptDmlStatEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi65ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:0 + 2.1: 0 + 2.2: 0 + 3: 0 + 5.2: 0 + 2: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairISt4pairImmENS0_12ObOptDmlStatEEENS0_7ObLatchENS1_5NCondEEEEEbRKT_:0 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairISt4pairImmENS0_12ObOptDmlStatEEENS0_7ObLatchENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:0 + 2: 0 + 26: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 8: _ZNSt4pairImmEC2IRmRlvEEOT_OT0_:14176 + 1: 886 + 10: _ZNK9oceanbase6common4hash9ObHashMapISt4pairImmENS0_12ObOptDmlStatENS1_24LatchReadWriteDefendModeENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS4_S5_EEEELi65ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKS4_RS5_l:173800 + 7: 880 + 7: _ZN9oceanbase6common4hash11ObHashTableISt4pairImmENS1_11HashMapPairIS4_NS0_12ObOptDmlStatEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi65ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKS4_RS7_l:165880 + 5: 886 + 5.1: 886 + 6.1: 0 + 10: 886 + 19: 914 + 5: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairISt4pairImmENS0_12ObOptDmlStatEEENS0_7ObLatchENS1_5NCondEEEEEbRKT_:8860 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairISt4pairImmENS0_12ObOptDmlStatEEENS0_7ObLatchENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:8860 + 2: 886 + 9: _ZNK9oceanbase6common4hash9hash_funcISt4pairImmEEclES4_:2658 + 2: 886 + 14: _ZN9oceanbase6common4hash16ObBucketLockCondINS1_11HashMapPairISt4pairImmENS0_12ObOptDmlStatEEENS1_24LatchReadWriteDefendModeEE4lockEv:7088 + 2: 886 + 14.1: _ZN9oceanbase6common4hash15LatchReadLockerC2ERNS0_7ObLatchE:38490 + 2: 886 + 3: 914 _ZN9oceanbase6common7ObLatch6rdlockEjl:900 + 4.1: 0 + 18: _ZN9oceanbase6common4hash11ObHashTableISt4pairImmENS1_11HashMapPairIS4_NS0_12ObOptDmlStatEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi65ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE32internal_get_with_timeout_unsafeERNS1_17ObHashTableBucketIS7_NS0_7ObLatchENS1_5NCondEEERKS4_RPKS7_l:64894 + 6: _ZNK9oceanbase6common4hash11ObHashTableISt4pairImmENS1_11HashMapPairIS4_NS0_12ObOptDmlStatEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi65ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE12internal_getERKNS1_17ObHashTableBucketIS7_NS0_7ObLatchENS1_5NCondEEERKS4_RPKS7_Rb:64894 + 6: 914 + 8.1: 914 + 10: 914 + 12: 914 + 14: 914 + 16: 0 + 9: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_11HashMapPairISt4pairImmENS0_12ObOptDmlStatEEEE16check_magic_codeEv:11882 + 0: 914 + 9.1: _ZL12abort_unlessb:5484 + 5: 914 + 6: 0 + 10.1: _ZNK9oceanbase6common4hash8equal_toISt4pairImmEEclERKS4_S7_:7312 + 2: _ZSteqImmEbRKSt4pairIT_T0_ES5_:7312 + 1: 914 + 28: _ZN9oceanbase6common4hash15LatchReadLockerD2Ev:10054 + 2: 914 + 3: 914 _ZN9oceanbase6common7ObLatch6unlockEPKj:920 + 3.1: 0 + 13: _ZN9oceanbase6common4hash9ObHashMapISt4pairImmENS0_12ObOptDmlStatENS1_24LatchReadWriteDefendModeENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS4_S5_EEEELi65ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE14set_refactoredERKS4_RKS5_iii:0 + 8: 0 + 5: _ZN9oceanbase6common4hash11HashMapPairISt4pairImmENS0_12ObOptDmlStatEE4initERKS4_RKS5_:0 + 3: _ZN9oceanbase6common11copy_assignISt4pairImmEEEiRT_RKS4_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapISt4pairImmEEEiRT_RKS4_NS0_8BoolTypeILb0EEE:0 + 2: _ZNSt4pairImmEaSERKS0_:0 + 2: 0 + 5.1: _ZN9oceanbase6common11copy_assignINS0_12ObOptDmlStatEEEiRT_RKS3_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapINS0_12ObOptDmlStatEEEiRT_RKS3_NS0_8BoolTypeILb0EEE:0 + 2: 0 + 16: _ZNK9oceanbase6common4hash9ObHashMapISt4pairImmENS0_12ObOptDmlStatENS1_24LatchReadWriteDefendModeENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS4_S5_EEEELi65ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKS4_RS5_l:0 + 7: 0 + 4: _ZN9oceanbase6common4hash11HashMapPairISt4pairImmENS0_12ObOptDmlStatEE4initERKS4_RKS5_:0 + 3: _ZN9oceanbase6common11copy_assignISt4pairImmEEEiRT_RKS4_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapISt4pairImmEEEiRT_RKS4_NS0_8BoolTypeILb0EEE:0 + 2: _ZNSt4pairImmEaSERKS0_:0 + 2: 0 + 5.1: _ZN9oceanbase6common11copy_assignINS0_12ObOptDmlStatEEEiRT_RKS3_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapINS0_12ObOptDmlStatEEEiRT_RKS3_NS0_8BoolTypeILb0EEE:0 + 2: 0 + 19: _ZN9oceanbase6common23ObOptStatMonitorManager19UpdateValueAtomicOpC2ERNS0_12ObOptDmlStatE:0 + 0: 0 + 20: _ZN9oceanbase6common4hash9ObHashMapISt4pairImmENS0_12ObOptDmlStatENS1_24LatchReadWriteDefendModeENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS4_S5_EEEELi65ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE17atomic_refactoredINS0_23ObOptStatMonitorManager19UpdateValueAtomicOpEEEiRKS4_RT_:0 + 3: _ZN9oceanbase6common4hash11ObHashTableISt4pairImmENS1_11HashMapPairIS4_NS0_12ObOptDmlStatEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi65ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE17atomic_refactoredINS0_23ObOptStatMonitorManager19UpdateValueAtomicOpEEEiRKS4_RT_:0 + 2: 0 + 29: _ZN9oceanbase6common23ObOptStatMonitorManager19UpdateValueAtomicOpC2ERNS0_12ObOptDmlStatE:64240 + 0: 880 + 30: _ZN9oceanbase6common4hash9ObHashMapISt4pairImmENS0_12ObOptDmlStatENS1_24LatchReadWriteDefendModeENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS4_S5_EEEELi65ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE17atomic_refactoredINS0_23ObOptStatMonitorManager19UpdateValueAtomicOpEEEiRKS4_RT_:242389 + 3: _ZN9oceanbase6common4hash11ObHashTableISt4pairImmENS1_11HashMapPairIS4_NS0_12ObOptDmlStatEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi65ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE17atomic_refactoredINS0_23ObOptStatMonitorManager19UpdateValueAtomicOpEEEiRKS4_RT_:242389 + 2: _ZN9oceanbase6common4hash11ObHashTableISt4pairImmENS1_11HashMapPairIS4_NS0_12ObOptDmlStatEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi65ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE6atomicINS0_23ObOptStatMonitorManager19UpdateValueAtomicOpENS1_8pre_procIS7_EEEEiRKS4_RT_RT0_:242389 + 4: 880 + 4.1: 880 + 5.1: 0 + 8: 880 + 9: 880 + 15.1: 917 + 17.2: 917 + 25: 0 + 4: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairISt4pairImmENS0_12ObOptDmlStatEEENS0_7ObLatchENS1_5NCondEEEEEbRKT_:8800 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairISt4pairImmENS0_12ObOptDmlStatEEENS0_7ObLatchENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:8800 + 2: 880 + 8: _ZNK9oceanbase6common4hash9hash_funcISt4pairImmEEclES4_:3520 + 2: 880 + 12: _ZN9oceanbase6common4hash16ObBucketLockCondINS1_11HashMapPairISt4pairImmENS0_12ObOptDmlStatEEENS1_24LatchReadWriteDefendModeEE4lockEv:7040 + 2: 880 + 12.1: _ZN9oceanbase6common4hash16LatchWriteLockerC2ERNS0_7ObLatchE:46463 + 0: 880 + 3: 917 _ZN9oceanbase6common7ObLatch6wrlockEjlPKj:901 + 4.1: 0 + 6: 917 + 7: 917 + 16: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_11HashMapPairISt4pairImmENS0_12ObOptDmlStatEEEE16check_magic_codeEv:11921 + 0: 917 + 16.1: _ZL12abort_unlessb:5502 + 5: 917 + 6: 0 + 17.1: _ZNK9oceanbase6common4hash8equal_toISt4pairImmEEclERKS4_S7_:7336 + 2: _ZSteqImmEbRKSt4pairIT_T0_ES5_:7336 + 1: 917 + 18.1: _ZN9oceanbase6common23ObOptStatMonitorManager19UpdateValueAtomicOpclERNS0_4hash11HashMapPairISt4pairImmENS0_12ObOptDmlStatEEE:67858 + 2: 917 + 3: 917 + 3.2: 917 + 5: 0 + 6.1: 0 + 8: 917 + 10: 917 + 25.1: _ZN9oceanbase6common4hash16LatchWriteLockerD2Ev:11004 + 2: 917 + 3: 917 _ZN9oceanbase6common7ObLatch6unlockEPKj:932 + 3.1: 0 +_ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb1EED2Ev:762128:10518 + 1: 10028 + 3: 10028 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb1EE7destroyEv:391092 + 9: 10028 + 11: 0 + 13: 10028 + 15: 10028 + 24: 10028 + 10: _ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb1EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +easy_request_server_done:762002:4893 + 1: 4738 + 3: 4738 + 4: 4738 + 6: 4738 + 13.1: 4738 + 13.2: 0 + 13.3: 0 + 13.4: 0 + 13.7: 0 + 16: 4738 + 18: 4738 + 19: 4738 + 23: 4738 + 24: 0 + 27: 5206 ev_time:4881 + 29: 5206 + 30: 5206 _ZN9oceanbase4easy7cleanupEP14easy_request_tPv:5279 + 33: 0 + 19: easy_atomic32_add_return:37904 + 2: 4738 +_ZN9oceanbase6common13ObLinkHashMapINS0_9ObIntWarpENS_11transaction14ObTsSourceInfoENS3_19ObTsSourceInfoAllocENS0_9RefHandleELl8EE4nextEPNS0_12LinkHashNodeIS2_EE:761670:0 + 1: 0 + 2: 0 + 4: 0 + 2.1: _ZN9oceanbase6common13ObLinkHashMapINS0_9ObIntWarpENS_11transaction14ObTsSourceInfoENS3_19ObTsSourceInfoAllocENS0_9RefHandleELl8EE5GuardC2ERNS0_13RetireStationE:0 + 0: _ZN9oceanbase6common9RefHandleC2ERNS0_13RetireStationE:0 + 0: _ZN9oceanbase6common13BaseRefHandleC2ERNS0_13RetireStationE:0 + 0: _ZN9oceanbase6common17get_global_qclockEv:0 + 2: 0 + 2.1: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common6QClockC2Ev:0 + 0: 0 + 0.1: _ZN9oceanbase6common6QClock9ClockSlotC2Ev:0 + 0: 0 + 0.4: _ZN9oceanbase6common13BaseRefHandle14enter_criticalEv:0 + 0: 0 + 3: _ZN9oceanbase6common13ObLinkHashMapINS0_9ObIntWarpENS_11transaction14ObTsSourceInfoENS3_19ObTsSourceInfoAllocENS0_9RefHandleELl8EE5next_EPNS0_12LinkHashNodeIS2_EE:761670 + 5.1: 0 + 7: 0 + 4.4: _ZN9oceanbase6common6DCHashINS0_9ObIntWarpELl8EE4nextEPNS0_11KeyHashNodeIS2_EE:689130 + 1.2: 18135 + 2: 18135 + 1.1: _ZN9oceanbase6common6DCHashINS0_9ObIntWarpELl8EE9next_nodeEPNS0_11KeyHashNodeIS2_EE:253890 + 2: 18135 + 4.1: 18135 + 5: 0 + 6.1: 0 + 6.3: 0 + 9: 0 + 65525.2: 0 + 4.1: _ZN9oceanbase6common15is_last_bit_setEm:72540 + 2: 18135 + 6.1: _ZN9oceanbase6common6DCHashINS0_9ObIntWarpELl8EE10search_preEmRPNS0_8HashNodeE:0 + 2: 0 + 3: 0 + 2.1: _ZN9oceanbase6common8HashNode13is_dummy_nodeEv:253890 + 0: 18135 + 5.1: _ZN9oceanbase6common13ObLinkHashMapINS0_9ObIntWarpENS_11transaction14ObTsSourceInfoENS3_19ObTsSourceInfoAllocENS0_9RefHandleELl8EE11try_inc_refEPNS0_12LinkHashNodeIS2_EE:0 + 6.1: 0 + 4: _ZN9oceanbase6common9RefHandle3incEPNS0_7RefNodeE:0 + 0: _ZN9oceanbase6common15faa_if_positiveEPii:0 + 2: 0 + 4.1: 0 + 4.2: 0 + 4.3: 0 + 6.1: _ZN9oceanbase6common15is_last_bit_setEm:0 + 2: 0 + 7: _ZN9oceanbase6common13ObLinkHashMapINS0_9ObIntWarpENS_11transaction14ObTsSourceInfoENS3_19ObTsSourceInfoAllocENS0_9RefHandleELl8EE8dec_urefEPNS0_12LinkHashNodeIS2_EE:0 + 3: 0 + 4: 0 + 3: _ZN9oceanbase6common9RefHandle3decEPNS0_7RefNodeE:0 + 0: 0 + 4: _ZN9oceanbase6common13ObLinkHashMapINS0_9ObIntWarpENS_11transaction14ObTsSourceInfoENS3_19ObTsSourceInfoAllocENS0_9RefHandleELl8EE5GuardD2Ev:0 + 0: _ZN9oceanbase6common13BaseRefHandle14leave_criticalEv:0 + 0: _ZN9oceanbase6common6QClock14leave_criticalEm:0 + 1: 0 + 2: _ZN9oceanbase6common6QClock6locateEm:0 + 0: 0 + 2.1: _ZN9oceanbase6common6QClock9ClockSlot11clear_clockEv:0 + 0: 0 + 4.1: _ZN9oceanbase6common13ObLinkHashMapINS0_9ObIntWarpENS_11transaction14ObTsSourceInfoENS3_19ObTsSourceInfoAllocENS0_9RefHandleELl8EE5GuardD2Ev:0 + 0: _ZN9oceanbase6common13BaseRefHandle14leave_criticalEv:0 + 0: _ZN9oceanbase6common6QClock14leave_criticalEm:0 + 1: 0 + 2: _ZN9oceanbase6common6QClock6locateEm:0 + 0: 0 + 2.1: _ZN9oceanbase6common6QClock9ClockSlot11clear_clockEv:0 + 0: 0 +_ZN9oceanbase8memtable15ObMvccAccessCtx9init_readEPNS_11transaction14ObPartTransCtxEPNS0_13ObMemtableCtxERKNS_7storage14ObTxTableGuardERKNS2_12ObTxSnapshotEll:758980:4159 + 6: 4050 + 8: 4482 + 9: 4482 + 10: 4482 + 12: 4482 _ZN9oceanbase11transaction12ObTxSnapshotaSERKS1_:4488 + 13: 4591 + 14: 4591 + 15: 4591 + 7: _ZN9oceanbase8memtable15ObMvccAccessCtx5resetEv:292011 + 1: 4050 + 1.1: 0 + 2: 0 + 4: 4197 + 6: 4197 + 7: 4197 _ZN9oceanbase11transaction12ObTxSnapshot5resetEv:4338 + 10: 4482 + 13: 4482 + 1: _ZNK9oceanbase8memtable15ObMvccAccessCtx8is_writeEv:12150 + 0: 4050 + 8: _ZN9oceanbase7storage14ObTxTableGuard5resetEv:103086 + 2: 4482 + 3: 4482 + 4: 4482 + 11: _ZN9oceanbase7storage14ObTxTableGuardaSERKS1_:76194 + 3: 4482 + 4: 4482 +_ZNK9oceanbase7storage8ObTablet12get_ddl_dataERNS0_19ObTabletBindingInfoE:756488:2406 + 1: 2236 + 2: 2236 + 3: 2236 + 4: 7 + 5.1: 7 + 6.1: 2690 _ZNK9oceanbase7storage19ObTabletMemtableMgr26get_multi_source_data_unitEPNS_8memtable22ObIMultiSourceDataUnitE:2242 + 9: 2690 + 10: 2612 + 11.1: 7 + 15: 2655 + 10: _ZN9oceanbase7storage19ObTabletBindingInfo6assignERKS1_:528818 + 2: 2690 + 3: 2690 + 4.1: 7 + 6: 2612 + 7: 2612 + 8: 2612 + 13: 7 + 3: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EE6assignERKNS0_8ObIArrayIS2_EE:288353 + 0: 56 + 3: 2690 + 3.1: 2565 + 3.3: 2565 + 3.5: 56 + 4: 2690 _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EE5reuseEv:2767 + 6: 2669 _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EE7reserveEl:2835 + 7: 2463 + 8: 2463 + 18: 2612 + 5: _ZNK9oceanbase6common12ObIArrayWrapINS0_10ObTabletIDEE5countEv:18683 + 0: 2669 + 8: _ZNKSt9type_info9hash_codeEv:86262 + 3.2: 7 + 3.4: 2463 + 3.5: 2659 _ZSt11_Hash_bytesPKvmm:2671 + 3: _ZNKSt9type_info4nameEv:44334 + 1: 2463 + 8.1: _ZNKSt9type_info9hash_codeEv:46984 + 3.2: 7 + 3.5: 2604 _ZSt11_Hash_bytesPKvmm:2661 + 9: _ZN9oceanbase6common10ObTabletIDaSERKS1_:28732 + 0: 2612 + 10: _ZN9oceanbase6common10ObTabletIDaSERKS1_:36568 + 0: 2612 + 11: _ZN9oceanbase6common10ObTabletIDaSERKS1_:36568 + 0: 2612 +_ZN9oceanbase6commonL7int_intENS0_9ObObjTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS4_m.db28c62327e16d3ae5c8a88acfd53bbb:756127:1949 + 2: 1898 + 3: 1898 + 5: 1898 + 5.1: 1898 + 5.2: 1898 + 7: 0 + 8.1: 0 + 12: 1898 + 12.1: 1944 + 18: 2010 + 18.2: 6 + 19: 2042 + 5: _ZNK9oceanbase6common5ObObj14get_type_classEv:24674 + 0: _ZNK9oceanbase6common9ObObjMeta14get_type_classEv:24674 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:13286 + 0: 1898 + 0.1: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:11388 + 2: 1898 + 5.1: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:3796 + 2.1: 1898 + 11: _ZNK9oceanbase6common5ObObj7get_intEv:7592 + 0: 1898 + 12.1: _ZN9oceanbase6common15int_range_checkIlEEiNS0_9ObObjTypeET_Rl:58838 + 4: 1898 + 4: _ZN9oceanbase6common19numeric_range_checkIllEEiT_T0_S3_RS3_:17082 + 8: 1898 + 11.1: 1898 + 12.2: _ZN9oceanbase6common12get_cast_retEmiRi:0 + 8.2: 0 + 10: 0 + 11: 0 + 14: _ZN9oceanbase6common5ObObj7set_intENS0_9ObObjTypeEl:215969 + 4: 1797 + 2: _ZN9oceanbase6common9ObObjMeta8set_typeERKNS0_9ObObjTypeE:172883 + 2: 1944 + 3: 1944 + 13: 1914 + 14: 1914 + 4: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:0 + 0: 0 + 8: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:0 + 0: 0 + 11: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:0 + 0: 0 + 12.1: _ZN9oceanbase6common17ob_is_string_typeENS0_9ObObjTypeE:44022 + 0: 1914 + 0: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:24882 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:24882 + 2: 1914 + 17: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:13391 + 0: 1913 + 3: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:7188 + 0: 1797 + 15: _ZN9oceanbase6common25get_precision_for_integerIlEEsT_:267936 + 42: 1797 + 43: 1797 + 45: 1797 + 45.1: 9790 + 49: 2010 + 18.2: _ZN9oceanbase6common10ObAccuracy9set_scaleEs:36 + 0: 6 + 18.3: _ZN9oceanbase6common10ObAccuracy13set_precisionEs:24 + 0: 6 + 18.4: _ZN9oceanbase6common10ObAccuracy10set_lengthEi:36 + 0: 6 +_ZNK9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE2atEl:746182:9423 + 1: 8984 + 2: 8984 + 2.1: 8984 + 2.2: 8984 + 3.1: 15 + 5: 8984 + 5: _ZNK9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE11get_obj_posEl:386312 + 5: 8984 + 4: _ZNK9oceanbase6common12ObIArrayWrapIPNS0_10ObObjParamEE2atEl:35936 + 6: 8984 +_ZN9oceanbase3sql18ObBasicSessionInfo16set_cur_phy_planEPNS0_14ObPhysicalPlanE:743272:9575 + 1: 9404 + 2: 9404 + 3: 9404 + 4: 0 + 5.1: 0 + 7: 9404 + 9: 9404 + 10: 9892 + 12: 9892 + 8: _ZNK9oceanbase6common8ObString6lengthEv:65828 + 0: 9404 + 9: _ZN9oceanbase6common8ObString3ptrEv:65828 + 0: 9404 +easy_pool_create:739567:5251 + 1: 5239 + 5: 5239 + 7: 5361 realloc_with_mod_stat:5467 + 10: 5361 + 11: 5361 + 12: 5361 + 13: 5361 + 14: 5361 + 15: 5361 + 21: 5361 +_ZN9oceanbase8memtable17ObMvccRowCallback8get_redoERNS0_12RedoDataNodeE:733553:1115 + 1: 1065 + 2: 1065 + 3: 1065 + 3.1: 1065 + 4: 0 + 5.1: 1065 + 6: 0 + 7.1: 0 + 10: 1065 + 11: 936 + 16: 1044 + 18: 1044 + 22: 1044 + 23: 1044 + 24: 1044 + 25: 1044 + 27: 1044 + 31: 1044 + 15: _ZN9oceanbase8memtable15ObMvccTransNode16cal_acc_checksumEj:476379 + 2: 1044 + 2: _ZNK9oceanbase8memtable15ObMvccTransNode18m_cal_acc_checksumEj:473247 + 6.1: 1044 + 6.4: 1044 + 3: _ZN9oceanbase6common15ObBatchChecksumC2Ev:7427 + 0: 1061 + 4: _ZN9oceanbase6common15ObBatchChecksum4fillEPKvl:21220 + 9: 1061 + 11: 1061 + 13: 1061 + 14: 0 + 15: 0 + 5: _ZNK9oceanbase8memtable20ObMemtableDataHeader8checksumERNS_6common15ObBatchChecksumE:371410 + 3: 1102 + 8: 1168 + 6: _ZN9oceanbase6common15ObBatchChecksum4fillEPKvl:82153 + 7.1: 1202 + 8: 1128 + 9: 1128 + 10: 1182 + 11: 1182 + 13: 1182 + 14: 0 + 15: 0 + 8: _ZSt3minIlERKT_S2_S2_:3384 + 5: 1128 + 7: _ZN9oceanbase6common15ObBatchChecksum4fillEPKvl:75530 + 7.1: 1203 + 8: 1203 + 9: 1196 + 10: 0 + 11: 1203 + 13: 1203 + 14: 0 + 15: 0 + 8: _ZSt3minIlERKT_S2_S2_:0 + 5: 0 + 8: _ZN9oceanbase6common15ObBatchChecksum4fillEPKvl:178539 + 3: 1168 + 7.1: 2198 + 8: 2213 + 9: 2213 + 10: 2118 + 11: 2118 + 13: 2118 + 14: 1042 _ZN9oceanbase6common8ob_crc64EmPKvl:992 + 15: 1042 + 8: _ZSt3minIlERKT_S2_S2_:6639 + 5: 2213 + 6: _ZN9oceanbase6common15ObBatchChecksum4calcEv:34968 + 2: 1122 + 3: 1122 _ZN9oceanbase6common8ob_crc64EmPKvl:1151 + 4: 1044 + 19.1: _ZN9oceanbase8memtable12RedoDataNode3setEPKNS0_13ObMemtableKeyERKNS0_9ObRowDataES7_NS_12blocksstable9ObDmlFlagEjjlilRKNS_6common10ObTabletIDE:80388 + 12: 1044 + 13: 1044 + 14: 1044 + 15: 1044 + 16: 1044 + 17: 1044 + 18: 1044 + 19: 1044 + 20: 1044 + 11: _ZN9oceanbase8memtable13ObMemtableKey6encodeERKS1_:15660 + 3: 1044 + 4: 1044 + 21: _ZN9oceanbase6common10ObTabletIDaSERKS1_:8352 + 0: 1044 + 28: _ZNK9oceanbase8memtable17ObMvccRowCallback13get_tablet_idEv:11484 + 2: 1044 + 29: _ZN9oceanbase8memtable12RedoDataNode12set_callbackEPNS0_16ObITransCallbackE:4176 + 0: 1044 +_ZN9oceanbase3sql9ObLogPlan15select_replicasERNS0_13ObExecContextERKNS_6common8ObIArrayIPKNS0_15ObTableLocationEEERKNS4_6ObAddrERNS5_IPNS0_15ObCandiTableLocEEE:730117:4911 + 4: 4539 + 5: 4539 + 7.1: 4313 + 7.3: 4539 + 7.4: 4539 + 7.6: 4313 + 9: 4313 + 10: 4313 + 11: 9 + 12.1: 9 + 13.1: 4313 + 17: 4313 + 18: 4808 _ZN9oceanbase3sql9ObLogPlan15select_replicasERNS0_13ObExecContextEbRKNS_6common6ObAddrERNS4_8ObIArrayIPNS0_15ObCandiTableLocEEE:4875 + 19.1: 9 + 22: 4808 + 9: _ZNK9oceanbase6common12ObIArrayWrapIPKNS_3sql15ObTableLocationEE2atEl:17252 + 6: 4313 +_ZN9oceanbase7storage26ObTabletCreateDeleteHelper10get_tabletERKNS0_14ObTabletMapKeyERNS0_14ObTabletHandleE:725374:4828 + 1: 4676 + 2: 4676 + 5: 4676 _ZN9oceanbase7storage14ObTabletHandleC1Ev:5199 + 6: 5267 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:5913 + 6.1: 5369 + 7: 5369 + 9.1: 60 + 10: 5369 _ZN9oceanbase7storage18ObTenantMetaMemMgr10get_tabletERKNS0_18WashTabletPriorityERKNS0_14ObTabletMapKeyERNS0_14ObTabletHandleE:5421 + 10.1: 5965 + 11: 5965 + 14: 60 + 15.1: 60 + 17: 60 + 17.1: 60 + 18: 60 + 19.1: 60 + 22: 60 + 23: 60 + 26.1: 60 + 30: 60 + 31: 5965 _ZN9oceanbase7storage14ObTabletHandleaSERKS1_:5957 + 34: 5608 + 35.6: 5608 _ZN9oceanbase7storage14ObTabletHandleD1Ev:5757 + 35.8: 60 + 4: _ZN9oceanbase5share11ObTenantEnv3mtlIPNS_7storage18ObTenantMetaMemMgrEEET_v:139384 + 2: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:64568 + 2: 4676 + 2.1: 60 + 2.2: 60 + 2.1: _ZN9oceanbase5share12ObTenantBase3getIPNS_7storage18ObTenantMetaMemMgrEEET_v:74816 + 0: _ZN9oceanbase5share12ObTenantBase9inner_getENS1_8IdentityIPNS_7storage18ObTenantMetaMemMgrEEE:74816 + 0: 4676 +_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandle7forwardERKNS0_15ObTableReadInfoERKNS_12blocksstable13ObDatumRowkeyE:723693:4395 + 0: 1835 + 2: 1835 + 3: 4209 + 4: 4209 + 5: 4209 + 6: 2174 + 8: 2127 + 9: 2127 _ZN9oceanbase12blocksstable22ObIndexBlockRowScanner5reuseEv:2146 + 10: 2002 + 11: 2002 + 12: 2002 _ZN9oceanbase7storage22ObMicroBlockDataHandle20get_index_block_dataERKNS0_15ObTableReadInfoERNS_12blocksstable16ObMicroBlockDataE:2030 + 15.1: 0 + 16.1: 1835 + 17: 0 + 17.3: 0 + 22.1: 0 + 24.1: 2092 + 24.6: 1835 _ZN9oceanbase12blocksstable22ObIndexBlockRowScanner4openERKNS0_12MacroBlockIdERKNS0_16ObMicroBlockDataERKNS0_12ObDatumRangeEsbb:1927 + 32.1: 0 + 36: 2092 + 37: 0 + 38.1: 0 + 39.1: 0 + 45: 0 + 45.1: 2282 + 46: 9 + 47: 9 + 50: 4422 + 16.1: _ZNK9oceanbase12blocksstable16ObMicroIndexInfo6is_getEv:25690 + 2: 1835 + 17.1: _ZNK9oceanbase12blocksstable16ObMicroIndexInfo13get_query_keyEv:0 + 2: 0 + 24.2: _ZNK9oceanbase12blocksstable16ObMicroIndexInfo15get_query_rangeEv:14680 + 2: 1835 + 24.3: _ZNK9oceanbase12blocksstable16ObMicroIndexInfo9range_idxEv:16515 + 2: 1835 + 24.4: _ZNK9oceanbase12blocksstable16ObMicroIndexInfo14is_left_borderEv:18350 + 2: 1835 + 24.5: _ZNK9oceanbase12blocksstable16ObMicroIndexInfo15is_right_borderEv:11010 + 2: 1835 + 37: _ZNK9oceanbase12blocksstable16ObMicroIndexInfo13can_blockscanEv:21280 + 2: 2128 + 2.1: _ZNK9oceanbase12blocksstable16ObMicroIndexInfo18has_out_row_columnEv:0 + 2: 0 + 3: _ZNK9oceanbase12blocksstable21ObIndexBlockRowHeader18has_out_row_columnEv:0 + 0: 0 + 38.1: _ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandle15check_blockscanERKNS_12blocksstable13ObDatumRowkeyE:26508 + 2: 2209 + 3: 2209 + 4.1: 0 + 5.1: 0 + 7: 0 +_ZN9oceanbase12blocksstable22ObIndexBlockRowScannerC2Ev:719832:4193 + 1: 4044 + 2: 4044 + 4.1: 4044 + 6: 4044 + 8: 4044 + 10: 4044 + 10.1: 4044 + 2: _ZN9oceanbase12blocksstable12MacroBlockIdC2Ev:16176 + 2: 4044 + 4: _ZN9oceanbase12blocksstable21ObIndexBlockRowParserC2Ev:133452 + 1: 4044 +_ZN9oceanbase12blocksstable22ObIndexBlockRowScannerC1Ev:719832:4193 + 1: 4044 + 2: 4044 + 4.1: 4044 + 6: 4044 + 8: 4044 + 10: 4044 + 10.1: 4044 + 2: _ZN9oceanbase12blocksstable12MacroBlockIdC2Ev:16176 + 2: 4044 + 4: _ZN9oceanbase12blocksstable21ObIndexBlockRowParserC2Ev:133452 + 1: 4044 +_ZN9oceanbase7storage20ObTableStoreIteratorD2Ev:719415:5831 + 1: 5329 + 3: 5329 _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl16ENS0_19ModulePageAllocatorELb0EED2Ev:5499 + 3.1: 0 + 3.2: 0 + 2: _ZN9oceanbase7storage20ObTableStoreIterator5resetEv:500926 + 2: 5329 + 3: 5329 + 4: 5329 + 2: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl16ENS0_19ModulePageAllocatorELb0EE5resetEv:330398 + 0: 5329 + 0: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl16ENS0_19ModulePageAllocatorELb0EE7destroyEv:239805 + 9: 5329 + 10: 0 + 11: 0 + 13: 5329 + 15: 5329 + 24: 5329 +_ZN9oceanbase7storage20ObTableStoreIteratorD1Ev:719415:5831 + 1: 5329 + 3: 5329 _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl16ENS0_19ModulePageAllocatorELb0EED2Ev:5499 + 3.1: 0 + 3.2: 0 + 2: _ZN9oceanbase7storage20ObTableStoreIterator5resetEv:500926 + 2: 5329 + 3: 5329 + 4: 5329 + 2: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl16ENS0_19ModulePageAllocatorELb0EE5resetEv:330398 + 0: 5329 + 0: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl16ENS0_19ModulePageAllocatorELb0EE7destroyEv:239805 + 9: 5329 + 10: 0 + 11: 0 + 13: 5329 + 15: 5329 + 24: 5329 +obsql_mysql_yylex:715418:1076 + 1: 1035 + 11: 1035 + 13: 1035 + 15: 1035 + 17: 536 + 23: 536 + 24: 536 + 26: 536 + 27: 536 + 29: 536 + 30: 536 + 32: 536 + 32.1: 536 + 33: 0 + 34: 0 + 35: 0 + 43: 1020 + 46: 1020 + 53: 1020 + 55.1: 1330 + 57: 1020 + 59: 1020 + 60: 1020 + 63: 1020 + 66: 1051 + 69: 1539 + 71: 1539 + 75: 1539 + 79: 0 + 80: 0 + 81: 0 + 86.2: 0 + 86.6: 0 + 2427: 1053 + 2430: 1053 + 2433: 1053 + 2444: 530 + 2445: 530 + 2446: 530 + 2456: 1062 + 2460: 2 + 2462: 2 + 2475: 2 + 2480: 0 + 2492: 1062 yy_get_next_buffer.609565a8af3f883a2d183bfc9d8bb068:1097 + 2496: 499 + 2509: 499 + 2511: 499 + 2524: 2 + 2525: 2 + 2527: 2 + 2529: 2 + 2530: 2 + 2534: 519 + 2535: 519 + 2537: 519 yy_get_previous_state.609565a8af3f883a2d183bfc9d8bb068:532 + 2539: 536 + 2540: 536 + 2547: 0 + 2551: 974 + 4273: 0 + 4275: 0 + 4276.2: 0 + 4276.6: 0 + 4276.8: 0 + 4279: 0 + 4281.2: 0 + 4281.6: 0 + 4283.8: 0 + 4284.2: 0 + 4284.6: 0 + 4284.8: 0 + 4285: 0 + 4286.2: 0 + 4286.6: 0 + 4286.8: 0 + 4287.2: 0 + 4287.6: 0 + 4287.8: 0 + 4288.2: 0 + 4288.6: 0 + 4288.8: 0 + 4289.2: 0 + 4289.6: 0 + 4290.2: 0 + 4290.6: 0 + 4291.2: 0 + 4291.6: 0 + 4291.8: 0 + 4294: 0 + 4304.1: 0 + 4305.2: 0 + 4305.6: 0 + 4306.1: 0 + 4306.2: 0 + 4307.1: 0 + 4307.3: 0 + 4307.4: 0 + 4307.5: 0 + 4308: 0 + 4309: 0 + 4317.2: 0 + 4317.6: 0 + 4319.1: 0 + 4321.1: 0 + 4322: 0 + 4323: 0 + 4324.1: 0 + 4324.2: 0 + 4324.3: 0 + 4324.5: 0 + 4324.6: 0 + 4324.7: 0 + 4324.8: 0 + 4324.21: 0 + 4324.22: 0 + 4328.1: 0 + 4328.2: 0 + 4328.3: 0 + 4328.5: 0 + 4328.6: 0 + 4328.14: 0 + 4328.15: 0 + 4328.21: 0 + 4328.23: 0 + 4328.24: 0 + 4329: 0 + 4331: 0 + 4332: 0 + 4333.1: 0 + 4333.3: 0 + 4333.8: 0 + 4333.9: 0 + 4333.12: 0 + 4333.13: 0 + 4333.17: 0 + 4335: 0 + 4341.2: 0 + 4341.6: 0 + 4341.8: 0 + 4342: 0 + 4343: 0 + 4344.1: 0 + 4349.1: 0 + 4350.1: 0 + 4351: 0 + 4352: 0 + 4353.1: 0 + 4354: 0 + 4355: 0 + 4356: 0 + 4359: 0 + 4370.2: 0 + 4370.6: 0 + 4371: 0 + 4372.1: 0 + 4388.2: 0 + 4388.6: 0 + 4389: 0 + 4390.1: 0 + 4405.2: 0 + 4405.6: 0 + 4405.9: 0 + 4407.1: 0 + 4408: 0 + 4419.2: 0 + 4419.6: 0 + 4419.9: 0 + 4421.1: 0 + 4422: 0 + 4433.2: 0 + 4433.6: 0 + 4433.8: 0 + 4434: 0 + 4435: 0 + 4436.1: 0 + 4437.1: 0 + 4438: 0 + 4439: 0 + 4440: 0 + 4447.2: 0 + 4447.6: 0 + 4447.8: 0 + 4448: 0 + 4449.1: 0 + 4450: 0 + 4451.1: 0 + 4451.2: 0 + 4451.3: 0 + 4451.4: 0 + 4452: 0 + 4453.1: 0 + 4453.3: 0 + 4453.4: 0 + 4453.5: 0 + 4454: 0 + 4457: 0 + 4463.2: 0 + 4463.6: 0 + 4463.9: 0 + 4464.1: 0 + 4464.2: 0 + 4464.3: 0 + 4464.8: 0 + 4464.9: 0 + 4465: 0 + 4472.2: 0 + 4472.6: 0 + 4472.9: 0 + 4480.1: 0 + 4481.2: 0 + 4481.6: 0 + 4481.8: 0 + 4482.1: 0 + 4489: 0 + 4490.2: 0 + 4490.6: 0 + 4490.9: 0 + 4491.1: 0 + 4491.2: 0 + 4491.3: 0 + 4491.8: 0 + 4491.9: 0 + 4493: 0 + 4496: 0 + 4497: 0 + 4497.1: 0 + 4498.1: 0 + 4498.2: 0 + 4498.4: 0 + 4500.1: 0 + 4500.2: 0 + 4500.3: 0 + 4509.2: 0 + 4509.6: 0 + 4520.1: 0 + 4521.1: 0 + 4521.3: 0 + 4521.4: 0 + 4521.6: 0 + 4522.1: 0 + 4522.2: 0 + 4522.3: 0 + 4522.8: 0 + 4522.9: 0 + 4523: 0 + 4524: 0 + 4525: 0 + 4526: 0 + 4527: 0 + 4528: 0 + 4529: 0 + 4534.1: 0 + 4535: 0 + 4536: 0 + 4537.1: 0 + 4538: 0 + 4539: 0 + 4547: 0 + 4552.2: 0 + 4552.6: 0 + 4552.8: 0 + 4555: 0 + 4556: 0 + 4557: 0 + 4573: 0 + 4574: 0 + 4576: 0 + 4578: 0 + 4579.1: 0 + 4581.1: 0 + 4582: 0 + 4583: 0 + 4591.2: 0 + 4591.6: 0 + 4591.8: 0 + 4592: 0 + 4593: 0 + 4595.1: 0 + 4596: 0 + 4597: 0 + 4598.1: 0 + 4599: 0 + 4600: 0 + 4601.1: 0 + 4601.2: 0 + 4602: 0 + 4603.1: 0 + 4603.3: 0 + 4603.8: 0 + 4605: 0 + 4611.2: 0 + 4611.6: 0 + 4611.9: 0 + 4612: 0 + 4619.2: 0 + 4619.6: 0 + 4619.9: 0 + 4620: 0 + 4628.1: 0 + 4629.2: 0 + 4629.6: 0 + 4629.8: 0 + 4630: 0 + 4638: 0 + 4639.2: 0 + 4639.6: 0 + 4639.9: 0 + 4641: 0 + 4645: 0 + 4646: 0 + 4646.1: 0 + 4647.1: 0 + 4647.2: 0 + 4647.4: 0 + 4649.1: 0 + 4649.2: 0 + 4649.3: 0 + 4658.2: 0 + 4658.6: 0 + 4659.1: 0 + 4660.1: 0 + 4660.3: 0 + 4660.4: 0 + 4660.6: 0 + 4661: 0 + 4662: 0 + 4663: 0 + 4664: 0 + 4666: 0 + 4667: 0 + 4668: 0 + 4673.1: 0 + 4674: 0 + 4675: 0 + 4676.1: 0 + 4677: 0 + 4678: 0 + 4686: 0 + 4691.2: 0 + 4691.6: 0 + 4691.8: 0 + 4694.1: 0 + 4695: 0 + 4710.2: 0 + 4710.6: 0 + 4710.8: 0 + 4711: 0 + 4715.1: 0 + 4716: 0 + 4717: 0 + 4718: 0 + 4721: 0 + 4722: 0 + 4723.1: 0 + 4726: 0 + 4728.1: 0 + 4729: 0 + 4730: 0 + 4741.2: 0 + 4741.6: 0 + 4741.8: 0 + 4742: 0 + 4760.2: 0 + 4760.6: 0 + 4760.8: 0 + 4763.1: 0 + 4778.2: 0 + 4778.6: 0 + 4778.8: 0 + 4779: 0 + 4783.1: 0 + 4784: 0 + 4785: 0 + 4786: 0 + 4787.1: 0 + 4787.4: 0 + 4787.6: 0 + 4787.7: 0 + 4787.9: 0 + 4790: 0 + 4791: 0 + 4792.1: 0 + 4795: 0 + 4797.1: 0 + 4810.2: 0 + 4810.6: 0 + 4810.8: 0 + 4811: 0 + 4815: 0 + 4818: 0 + 4819: 0 + 4824: 0 + 4825.1: 0 + 4826.1: 0 + 4827: 0 + 4828: 0 + 4829: 0 + 4830.1: 0 + 4831: 0 + 4832: 0 + 4833: 0 + 4852.2: 0 + 4852.6: 0 + 4852.8: 0 + 4853: 0 + 4854: 0 + 4859: 0 + 4860.1: 0 + 4861.1: 0 + 4862: 0 + 4864: 0 + 4865: 0 + 4866.1: 0 + 4867: 0 + 4868: 0 + 4869: 0 + 4888: 0 + 4889.2: 0 + 4889.6: 0 + 4889.9: 0 + 4890.2: 0 + 4902: 0 + 4903.2: 0 + 4903.6: 0 + 4903.10: 0 + 4903.17: 0 + 4903.19: 0 + 4903.26: 0 + 4916: 0 + 4917.2: 0 + 4917.6: 0 + 4917.9: 0 + 4918.2: 0 + 4929: 0 + 4930.2: 0 + 4930.9: 0 + 4930.11: 0 + 4930.18: 0 + 4931.2: 0 + 4931.6: 0 + 4943: 0 + 4944.2: 0 + 4944.6: 0 + 4944.9: 0 + 4945.2: 0 + 4957: 0 + 4958.2: 0 + 4958.6: 0 + 4958.9: 0 + 4959.2: 0 + 4971: 0 + 4972.2: 0 + 4972.6: 0 + 4972.8: 0 + 4974.1: 0 + 4978.1: 0 + 4979: 0 + 4980.1: 0 + 4981: 0 + 4983: 0 + 4984: 0 + 4986: 0 + 4992: 0 + 4993.2: 0 + 4993.6: 0 + 4993.8: 0 + 4994: 0 + 4999: 0 + 5000.2: 0 + 5000.6: 0 + 5000.8: 0 + 5001: 0 + 5005: 0 + 5006: 0 + 5007.2: 0 + 5007.6: 0 + 5007.8: 0 + 5011: 0 + 5012: 0 + 5013.2: 0 + 5013.6: 0 + 5013.8: 0 + 5017: 0 + 5018: 0 + 5019.2: 0 + 5019.6: 0 + 5019.8: 0 + 5023: 0 + 5024: 0 + 5025.2: 0 + 5025.6: 0 + 5025.8: 0 + 5029: 0 + 5030: 0 + 5031.2: 0 + 5031.6: 0 + 5031.8: 0 + 5035: 0 + 5036: 0 + 5037.2: 0 + 5037.6: 0 + 5037.8: 0 + 5041: 0 + 5042.2: 0 + 5042.6: 0 + 5045: 0 + 5046: 0 + 5047.2: 0 + 5047.6: 0 + 5052.2: 0 + 5052.6: 0 + 5053.2: 0 + 5053.6: 0 + 5054.2: 0 + 5054.6: 0 + 5055.2: 0 + 5055.6: 0 + 5056.2: 0 + 5056.6: 0 + 5057.2: 0 + 5057.6: 0 + 5058.2: 0 + 5058.6: 0 + 5059.2: 0 + 5059.6: 0 + 5060.2: 0 + 5060.6: 0 + 5061.2: 0 + 5061.6: 0 + 5062.2: 0 + 5062.6: 0 + 5063.2: 0 + 5063.6: 0 + 5064.2: 0 + 5064.6: 0 + 5065.2: 0 + 5065.6: 0 + 5066.2: 0 + 5066.6: 0 + 5067.2: 0 + 5067.6: 0 + 5068.2: 0 + 5068.6: 0 + 5069.2: 0 + 5069.6: 0 + 5070.2: 0 + 5070.6: 0 + 5071.2: 0 + 5071.6: 0 + 5072.2: 0 + 5072.6: 0 + 5072.8: 0 + 5073.2: 0 + 5073.6: 0 + 5073.8: 0 + 5074: 0 + 5076.1: 0 + 5079: 0 + 5085.2: 0 + 5085.6: 0 + 5086.2: 0 + 5086.6: 0 + 5087.2: 0 + 5087.6: 0 + 5088.2: 0 + 5088.6: 0 + 5089.2: 0 + 5089.6: 0 + 5090.2: 0 + 5090.6: 0 + 5091.2: 0 + 5091.6: 0 + 5092.2: 0 + 5092.6: 0 + 5093.2: 0 + 5093.6: 0 + 5094.2: 0 + 5094.6: 0 + 5095.2: 0 + 5095.6: 0 + 5096.2: 0 + 5096.6: 0 + 5097.2: 0 + 5097.6: 0 + 5098.2: 0 + 5098.6: 0 + 5099.2: 0 + 5099.6: 0 + 5100.2: 0 + 5100.6: 0 + 5101.2: 0 + 5101.6: 0 + 5102.2: 0 + 5102.6: 0 + 5103.2: 0 + 5103.6: 0 + 5104.2: 0 + 5104.6: 0 + 5105.2: 0 + 5105.6: 0 + 5106.2: 0 + 5106.6: 0 + 5107.2: 0 + 5107.6: 0 + 5108.2: 0 + 5108.6: 0 + 5109.2: 0 + 5109.6: 0 + 5110.2: 0 + 5110.6: 0 + 5111.2: 0 + 5111.6: 0 + 5112.2: 0 + 5112.6: 0 + 5113.2: 0 + 5113.6: 0 + 5114.2: 0 + 5114.6: 0 + 5115.2: 0 + 5115.6: 0 + 5116.2: 0 + 5116.6: 0 + 5117.2: 0 + 5117.6: 0 + 5118.2: 0 + 5118.6: 0 + 5119.2: 0 + 5119.6: 0 + 5120.2: 0 + 5120.6: 0 + 5121.2: 0 + 5121.6: 0 + 5122.2: 0 + 5122.6: 0 + 5123.2: 0 + 5123.6: 0 + 5124.2: 0 + 5124.6: 0 + 5125.2: 0 + 5125.6: 0 + 5126.2: 0 + 5126.6: 0 + 5127.2: 0 + 5127.6: 0 + 5128.2: 0 + 5128.6: 0 + 5129.2: 0 + 5129.6: 0 + 5130.2: 0 + 5130.6: 0 + 5131.2: 0 + 5132.2: 0 + 5133.2: 0 + 5133.6: 0 + 5134.2: 0 + 5134.6: 0 + 5135.2: 0 + 5135.6: 0 + 5136.2: 0 + 5136.6: 0 + 5137.2: 0 + 5137.6: 0 + 5138.2: 0 + 5138.6: 0 + 5139.2: 0 + 5139.6: 0 + 5140.2: 0 + 5140.6: 0 + 5141.2: 0 + 5141.6: 0 + 5142.2: 0 + 5142.6: 0 + 5143.2: 0 + 5143.6: 0 + 5144.2: 0 + 5144.6: 0 + 5145.2: 0 + 5145.6: 0 + 5146.2: 0 + 5146.6: 0 + 5147.2: 0 + 5147.6: 0 + 5148.2: 0 + 5148.6: 0 + 5149.2: 0 + 5149.6: 0 + 5150.2: 0 + 5150.6: 0 + 5151.2: 0 + 5151.6: 0 + 5152.2: 0 + 5152.6: 0 + 5153.2: 0 + 5153.6: 0 + 5154.2: 0 + 5154.6: 0 + 5155.2: 0 + 5155.6: 0 + 5156.2: 0 + 5156.6: 0 + 5157.2: 0 + 5157.6: 0 + 5158.2: 0 + 5158.6: 0 + 5159.2: 0 + 5159.6: 0 + 5160.2: 0 + 5160.6: 0 + 5161.2: 0 + 5161.6: 0 + 5162.2: 0 + 5162.6: 0 + 5163.2: 0 + 5163.6: 0 + 5164.2: 0 + 5164.6: 0 + 5165.2: 0 + 5165.6: 0 + 5166.2: 0 + 5166.6: 0 + 5167.2: 0 + 5167.6: 0 + 5168.2: 0 + 5168.6: 0 + 5169.2: 0 + 5169.6: 0 + 5170.2: 0 + 5170.6: 0 + 5171.2: 0 + 5171.6: 0 + 5172.2: 0 + 5172.6: 0 + 5173.2: 0 + 5173.6: 0 + 5174.2: 0 + 5174.6: 0 + 5175.2: 0 + 5175.6: 0 + 5176.2: 0 + 5176.6: 0 + 5177.2: 0 + 5177.6: 0 + 5178.2: 0 + 5178.6: 0 + 5179.2: 0 + 5179.6: 0 + 5180.2: 0 + 5180.6: 0 + 5181.2: 0 + 5181.6: 0 + 5182.2: 0 + 5182.6: 0 + 5183.2: 0 + 5183.6: 0 + 5184.2: 0 + 5184.6: 0 + 5185.2: 0 + 5185.6: 0 + 5186.2: 0 + 5186.6: 0 + 5187.2: 0 + 5187.6: 0 + 5188.2: 0 + 5188.6: 0 + 5189.2: 0 + 5189.6: 0 + 5190.2: 0 + 5190.6: 0 + 5191.2: 0 + 5191.6: 0 + 5192.2: 0 + 5192.6: 0 + 5193.2: 0 + 5193.6: 0 + 5194.2: 0 + 5194.6: 0 + 5195.2: 0 + 5195.6: 0 + 5196.2: 0 + 5196.6: 0 + 5197.2: 0 + 5197.6: 0 + 5197.8: 0 + 5198.2: 0 + 5198.6: 0 + 5198.9: 0 + 5201.1: 0 + 5202: 0 + 5203: 0 + 5205: 0 + 5206: 0 + 5207.1: 0 + 5209: 0 + 5211.1: 0 + 5212: 0 + 5212.1: 0 + 5213: 0 + 5214: 0 + 5220.2: 0 + 5220.6: 0 + 5220.8: 0 + 5221: 0 + 5222: 0 + 5224: 0 + 5225.1: 0 + 5225.2: 0 + 5226.1: 0 + 5227: 0 + 5228: 0 + 5229: 0 + 5230: 0 + 5230.2: 0 + 5231.1: 0 + 5236.2: 0 + 5236.6: 0 + 5236.8: 0 + 5237.1: 0 + 5238: 0 + 5239: 0 + 5240.1: 0 + 5240.2: 0 + 5240.3: 0 + 5240.4: 0 + 5241: 0 + 5242.1: 0 + 5242.3: 0 + 5242.4: 0 + 5242.5: 0 + 5243: 0 + 5244.1: 0 + 5244.3: 0 + 5244.8: 0 + 5246: 0 + 5252.2: 0 + 5252.6: 0 + 5252.9: 0 + 5253.1: 0 + 5253.2: 0 + 5253.5: 0 + 5253.6: 0 + 5253.7: 0 + 5265.2: 0 + 5265.6: 0 + 5265.8: 0 + 5266: 0 + 5269.1: 0 + 5271: 0 + 5273: 0 + 5275: 0 + 5276.1: 0 + 5278.1: 0 + 5284.2: 0 + 5284.6: 0 + 5284.8: 0 + 5285: 0 + 5289.1: 0 + 5290: 0 + 5291: 0 + 5292: 0 + 5293.1: 0 + 5293.4: 0 + 5293.6: 0 + 5293.7: 0 + 5293.9: 0 + 5296: 0 + 5297: 0 + 5298.1: 0 + 5301: 0 + 5303.1: 0 + 5311.2: 0 + 5311.6: 0 + 5311.8: 0 + 5314.1: 0 + 5320: 0 + 5321.2: 0 + 5321.6: 0 + 5323.1: 0 + 5347.2: 0 + 5347.6: 0 + 5362.2: 0 + 5362.6: 0 + 5362.8: 0 + 5363: 0 + 5379.2: 0 + 5379.6: 0 + 5381: 0 + 5382: 0 + 5383: 0 + 5384: 0 + 5390: 0 + 5391.1: 0 + 5392: 0 + 5398: 0 + 5401: 0 + 5404.2: 0 + 5404.6: 0 + 5405: 0 + 5411: 0 + 5412.2: 0 + 5412.6: 0 + 5415.2: 0 + 5415.6: 0 + 5415.8: 0 + 5420: 0 + 5421: 0 + 5422: 0 + 5423: 0 + 5424: 0 + 5426.1: 0 + 5427: 0 + 5435.2: 0 + 5435.6: 0 + 5435.8: 0 + 5437: 0 + 5439: 0 + 5439.2: 0 + 5439.3: 0 + 5439.12: 0 + 5441.1: 0 + 5450.2: 0 + 5450.6: 0 + 5451: 0 + 5454: 0 + 5465.2: 0 + 5465.6: 0 + 5467.2: 0 + 5467.6: 0 + 5468.2: 0 + 5468.6: 0 + 5469.2: 0 + 5469.6: 0 + 5470.2: 0 + 5470.6: 0 + 5471.2: 0 + 5472.2: 0 + 5472.6: 0 + 5473.2: 0 + 5474.2: 0 + 5474.6: 0 + 5475.2: 0 + 5475.6: 0 + 5476.2: 0 + 5476.6: 0 + 5477.2: 0 + 5477.6: 0 + 5478.2: 0 + 5478.6: 0 + 5479.2: 0 + 5479.6: 0 + 5480: 0 + 5481.1: 0 + 5482.1: 0 + 5483: 0 + 5484: 0 + 5485: 0 + 5486: 0 + 5498.2: 0 + 5498.6: 0 + 5503: 0 + 5504.1: 0 + 5505.1: 0 + 5517.2: 0 + 5517.6: 0 + 5517.8: 0 + 5518.1: 0 + 5519: 0 + 5520.45: 0 + 5520.46: 0 + 5520.92: 0 + 5520.93: 0 + 5521: 0 + 5522.1: 0 + 5532: 0 + 5537.2: 0 + 5537.6: 0 + 5537.8: 0 + 5541.1: 0 + 5542.1: 0 + 5543: 0 + 5545: 0 + 5546: 0 + 5547: 0 + 5547.1: 0 + 5548: 0 + 5551: 0 + 5552: 0 + 5556: 0 + 5559: 0 + 5565.2: 0 + 5565.6: 0 + 5566: 0 + 5569.1: 0 + 5570.1: 0 + 5571: 0 + 5573: 0 + 5574.1: 0 + 5576.1: 0 + 5577: 0 + 5577.1: 0 + 5578: 0 + 5578.1: 0 + 5579: 0 + 5580: 0 + 5582.1: 0 + 5583: 0 + 5589: 0 + 5595.2: 514 + 5595.6: 514 + 5596: 514 + 5598: 0 + 5599: 0 + 5599.1: 0 + 5600: 0 + 5600.1: 0 + 5602: 0 + 5603.1: 0 + 5603.3: 0 + 5603.8: 0 + 5603.12: 0 + 5603.13: 0 + 5603.14: 0 + 5603.17: 0 + 5603.18: 0 + 5603.22: 0 + 5603.23: 0 + 5603.25: 0 + 5603.30: 0 + 5603.31: 0 + 5603.34: 0 + 5603.35: 0 + 5603.39: 0 + 5609: 503 mysql_non_reserved_keyword_lookup:516 + 5611.1: 0 + 5614.1: 0 + 5615: 0 + 5616: 0 + 5617: 0 + 5618.1: 0 + 5621: 0 + 5623.1: 0 + 5624: 0 + 5627: 463 + 5628: 463 + 5648: 0 + 5649.2: 0 + 5649.6: 0 + 5655.2: 0 + 5655.6: 0 + 5663: 0 + 5664.2: 0 + 5664.6: 0 + 5664.8: 0 + 5667: 0 + 5671.1: 0 + 5673.2: 0 + 5673.6: 0 + 38: obsql_mysql_yy_load_buffer_state:23592 + 3: 536 + 4: 536 + 5: 536 + 6: 536 + 2473: yy_try_NUL_trans:54 + 4: 2 + 6: 2 + 9: 2 + 11: 0 + 13: 0 + 14: 0 +_ZN9oceanbase8observer11ObSrvXlator7releaseEPNS_3rpc5frame14ObReqProcessorE:711175:5009 + 1: 4935 + 2: 4935 + 3: 4935 _ZTW8co_epbuf:5240 + 4: 5171 + 5: 12 + 6.1: 12 + 7.1: 5354 + 9: 12 + 20: 5354 + 26: 12 + 30: 12 + 30.1: 12 + 33: 5354 + 39: 5404 _ZN9oceanbase8observer23worker_allocator_deleteINS_3rpc5frame14ObReqProcessorEEEvRPT_:5779 + 40: 5367 + 43: 5367 + 15: _ZNK9oceanbase3rpc5frame14ObReqProcessor14get_ob_requestEv:21416 + 0: 5354 + 16: _ZNK9oceanbase3rpc5frame14ObReqProcessor12get_req_typeEv:16062 + 0: 5354 + 18: _ZNK9oceanbase3rpc5frame14ObReqProcessor14get_need_retryEv:16062 + 0: 5354 + 22: _ZN9oceanbase6common9ob_deleteINS_3rpc9ObRequestEEEvRPT_:276 + 2: 12 + 3: 12 + 4: 12 + 35: _ZN9oceanbase3rpc20ObSqlRequestOperator7destroyEPNS0_9ObRequestE:0 + 1: 0 + 1.1: 0 +_ZN9oceanbase5share2_SILNS0_12ObEntityTypeE1ELNS0_12EntitySourceE2EED2Ev:711084:6030 + 1: 5387 + 2: 5387 + 6: 5387 + 9: 0 + 9.1: 5387 + 9.2: 0 + 3: _ZN9oceanbase5share5GuardILNS0_12ObEntityTypeE1EE6deinitEv:404025 + 5: 5387 + 7: 5387 + 8: 5387 + 9: 5387 + 12: 5387 + 13: 5387 + 7: _ZL12abort_unlessb:32322 + 5: 5387 + 6: 0 + 7: _ZN9oceanbase5share14destroy_entityINS0_15ObResourceOwnerEEEvPT_:48483 + 3: 5387 + 6: 5387 + 7: 0 + 7.1: _ZNK9oceanbase3lib13MemoryContextptEv:0 + 1: 0 + 7.2: _ZN9oceanbase3lib17__MemoryContext__4freeEPv:0 + 2: 0 + 9.1: _ZN9oceanbase5share6_SBaseD2Ev:32322 + 2: 5387 + 3.1: 0 + 3.2: 0 + 3.3: 0 + 3.4: 0 + 3.8: 0 +_ZN9oceanbase7obmysql11ObMySQLUtil12store_lengthEPclmRl:710964:6904 + 1: 6583 + 2: 6583 + 3: 6583 + 3.1: 6583 + 5.1: 6583 + 6: 0 + 7.1: 0 + 9: 6583 + 10: 6583 + 11: 6583 + 15: 0 + 17: 0 + 19: 0 + 20: 0 + 23.1: 0 + 26: 0 + 31.1: 0 + 34: 0 + 39.1: 0 + 46: 6583 + 12: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int1EPclaRl:46081 + 8.1: 6583 + 9: 6583 + 16: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int1EPclaRl:0 + 8.1: 0 + 9: 0 + 18: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int2EPclsRl:0 + 7: 0 + 8.1: 0 + 9: 0 + 24: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int1EPclaRl:0 + 8.1: 0 + 9: 0 + 32: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int1EPclaRl:0 + 8.1: 0 + 9: 0 + 40: _ZN9oceanbase7obmysql11ObMySQLUtil10store_nullEPclRl:0 + 2: _ZN9oceanbase7obmysql11ObMySQLUtil10store_int1EPclaRl:0 + 8.1: 0 + 9: 0 +_ZN9oceanbase8observer9ObMPUtils22init_flt_log_frameworkERNS_3sql16ObSQLSessionInfoEb:708680:5476 + 1: 5262 + 3: 5262 + 4: 5262 _ZN9oceanbase5trace7ObTrace12get_instanceEv:5388 + 4.1: 5365 _ZN9oceanbase5trace7ObTrace10reset_spanEv:5539 + 5: 5384 _ZNK9oceanbase3sql18ObBasicSessionInfo31is_server_status_in_transactionEv:5126 + 18: 51 + 18.3: 51 + 18.4: 51 + 19.2: 51 + 20: 51 + 21: 51 + 21.1: 51 + 22: 51 + 29: 51 + 38: 51 + 38.1: 51 + 39: 51 + 45: 51 + 45.1: 51 + 45.3: 51 + 45.5: 51 + 54: 51 + 56.1: 51 + 56.2: 51 + 57: 4790 _ZN9oceanbase5trace7ObTrace12get_instanceEv:4740 + 58: 4915 _ZN9oceanbase5trace7ObTrace12get_instanceEv:5374 + 61.1: 51 + 63: 51 + 66: 51 + 67: 51 + 68: 51 + 68.1: 51 + 69: 51 + 70.1: 51 + 72.2: 51 + 73: 51 + 74.2: 51 + 75: 51 + 75.1: 51 + 81: 51 + 83: 51 + 83.1: 51 + 89.1: 5715 _ZZN9oceanbase8observer9ObMPUtils22init_flt_log_frameworkERNS_3sql16ObSQLSessionInfoEbENK4$_59clEPKc.712a47fc6d4da9894c7fa8e4e81b6498:5669 + 91: 5425 + 12: _ZN9oceanbase3sql16ObSQLSessionInfo16set_trace_enableEb:2023 + 0: 289 + 13: _ZN9oceanbase3sql16ObSQLSessionInfo20set_auto_flush_traceEb:2023 + 0: 289 + 16: _ZN9oceanbase3sql14FLTControlInfo8is_validEv:5933 + 1: 289 + 1.1: 51 + 18.1: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:357 + 0: 51 + 18.2: _ZN9oceanbase3omt17ObTenantConfigMgr26default_fallback_tenant_idEv:8619 + 4: 51 + 4.1: 51 + 2: _ZN9oceanbase5share5GuardILNS0_12ObEntityTypeE0EE13current_guardEv:6732 + 3: 51 + 8: 51 + 10: 51 + 11: 51 + 12: 51 + 8.1: _ZN9oceanbase5share5GuardILNS0_12ObEntityTypeE0EEC2ERNS0_13ObTenantSpaceE:1734 + 1: 51 + 3: 51 + 11: _ZL12abort_unlessb:459 + 5: 51 + 6: 51 + 2.1: _ZN9oceanbase5share5GuardILNS0_12ObEntityTypeE0EEptEv:153 + 0: 51 + 2.2: _ZNK9oceanbase5share13ObTenantSpace10get_tenantEv:459 + 0: 51 + 4.1: _ZNK9oceanbase5share12ObTenantBase2idEv:357 + 0: 51 + 19: _ZN9oceanbase3omt19ObTenantConfigGuardptEv:204 + 0: 51 + 56.2: _ZN9oceanbase3sql16ObSQLSessionInfo15is_trace_enableEv:357 + 0: 51 + 56.3: _ZN9oceanbase3sql14FLTControlInfo8is_validEv:41051 + 1: 4768 + 1.1: 51 + 1.3: 51 + 57.1: _ZN9oceanbase5trace7ObTrace9set_levelEh:34405 + 0: 4915 + 58.1: _ZN9oceanbase5trace7ObTrace14set_auto_flushEb:40005 + 0: 5715 + 59: _ZN9oceanbase3sql16ObSQLSessionInfo20set_auto_flush_traceEb:40005 + 0: 5715 + 60: _ZN9oceanbase3sql16ObSQLSessionInfo16set_trace_enableEb:40005 + 0: 5715 + 62: _ZN9oceanbase5trace4UUIDC2Ev:459 + 0: 51 + 62.1: _ZN9oceanbase5trace4UUIDC2Ev:408 + 0: 51 + 64: _ZN9oceanbase6common8ObStringC2Ev:255 + 1: 51 + 65: _ZN9oceanbase6common8ObStringC2Ev:969 + 1: 51 + 68: _ZNK9oceanbase6common8ObString5emptyEv:765 + 2: 51 + 2.1: 51 + 68.1: _ZNK9oceanbase6common8ObString5emptyEv:1326 + 2: 51 + 2.1: 51 + 74: _ZN9oceanbase6common8ObString3ptrEv:204 + 0: 51 + 74.1: _ZNK9oceanbase6common8ObString6lengthEv:561 + 0: 51 + 81: _ZNK9oceanbase3sql18ObBasicSessionInfo18get_in_transactionEv:969 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo17is_in_transactionEv:969 + 0: 51 + 0.1: _ZNK9oceanbase11transaction8ObTxDesc8is_in_txEv:357 + 0: 51 +_ZN9oceanbase12blocksstable21ObIndexBlockRowParser4initEPKc:701346:5087 + 1: 4744 + 2: 4744 + 3: 4744 + 4: 0 + 5.1: 0 + 6.1: 4744 + 7.1: 5142 + 8: 0 + 9.1: 0 + 10: 0 + 11.1: 5142 + 15: 5142 + 16: 5142 + 21: 5142 + 22: 5142 + 24: 5142 + 7.1: _ZNK9oceanbase12blocksstable21ObIndexBlockRowHeader8is_validEv:333574 + 2: 4744 + 3: 5142 + 6: 2500 + 7: 2352 + 8: 5142 + 2: _ZNK9oceanbase12blocksstable21ObIndexBlockRowHeader17is_pre_aggregatedEv:52184 + 0: 4744 + 5: _ZNK9oceanbase12blocksstable12MacroBlockIdeqERKS1_:123660 + 2: 4744 + 2.1: 2500 + 3: 2500 + 3.1: 2500 + 6.1: _ZNK9oceanbase12blocksstable21ObIndexBlockRowHeader13is_data_blockEv:11760 + 0: 2352 + 7.1: _ZNK9oceanbase12blocksstable21ObIndexBlockRowHeader13is_data_indexEv:0 + 0: 0 +_ZN9oceanbase8memtable10ObIMvccCtx22register_row_commit_cbEPKNS0_13ObMemtableKeyEPNS0_9ObMvccRowEPNS0_15ObMvccTransNodeElPKNS0_9ObRowDataEPNS0_10ObMemtableEl:697580:1036 + 8: 974 + 9: 974 + 14: 1029 + 15: 1029 + 16.1: 1029 + 17: 1029 + 19: 0 + 20.1: 0 + 25: 0 + 26.1: 0 + 30: 1038 _ZN9oceanbase8memtable13ObMemtableCtx24add_trans_mem_total_sizeEl:1038 + 31: 979 + 32: 979 + 33: 979 + 39.1: 1086 + 40.1: 0 + 44: 1083 + 45: 0 + 46.1: 0 + 49: 1083 + 50.5: 1092 + 12: _ZN9oceanbase6common11ObTimeGuardC2EPKcl:133715 + 2: 1029 + 3: 1029 + 4: 1029 + 6: 1029 + 8: 1029 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:974 + 2: 974 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:1057 + 21.1: _ZN9oceanbase8memtable10ObIMvccCtx18alloc_row_callbackERS1_RNS0_9ObMvccRowEPNS0_10ObMemtableEb:137664 + 6: 1029 + 10: 1029 _ZN9oceanbase8memtable13ObMemtableCtx14callback_allocEl:1083 + 11: 0 + 12.1: 0 + 21: _ZN9oceanbase8memtable17ObMvccRowCallbackC2ERNS0_10ObIMvccCtxERNS0_9ObMvccRowEPNS0_10ObMemtableE:102918 + 2: 1009 + 3: 1009 + 4: 1009 + 5: 1009 + 6: 1009 + 8: 1009 + 9: 1009 + 10: 1009 + 0: _ZN9oceanbase8memtable13ObMemtableKeyC2Ev:4036 + 0: 1009 + 0.1: _ZN9oceanbase8memtable9ObRowDataC2Ev:19171 + 0: 1009 + 1: _ZN9oceanbase8memtable16ObITransCallbackC2Ev:25225 + 2: 1009 + 3: 1009 + 5: 1009 + 28: _ZN9oceanbase6common11ObTimeGuard5clickEPKc:70555 + 3: 1038 + 4: 1038 + 5: 1038 + 6: 1038 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:1009 + 2: 1009 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:1016 + 31: _ZN9oceanbase8memtable17ObMvccRowCallback3setEPKNS0_13ObMemtableKeyEPNS0_15ObMvccTransNodeElPKNS0_9ObRowDataEbl:65844 + 9: 979 + 13: 979 + 14: 979 + 15: 979 + 16: 0 + 17: 0 + 17.1: 0 + 18: 0 + 23: 953 + 24: 953 + 10: _ZN9oceanbase8memtable13ObMemtableKey6encodeERKS1_:14685 + 3: 979 + 4: 979 + 21: _ZN9oceanbase8memtable9ObRowData5resetEv:14295 + 2: 953 + 3: 953 + 25: _ZN9oceanbase8memtable15ObMvccTransNode10set_seq_noEl:3812 + 0: 953 + 37: _ZN9oceanbase8memtable17ObMvccRowCallback11set_is_linkEv:3812 + 0: 953 + 39: _ZN9oceanbase8memtable10ObIMvccCtx15append_callbackEPNS0_16ObITransCallbackE:7624 + 2: 953 _ZN9oceanbase8memtable18ObTransCallbackMgr6appendEPNS0_16ObITransCallbackE:953 + 43: _ZN9oceanbase6common11ObTimeGuard5clickEPKc:73647 + 3: 1083 + 4: 1083 + 5: 1083 + 6: 1083 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:1086 + 2: 1086 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:1089 + 50.5: _ZN9oceanbase6common11ObTimeGuardD2Ev:18555 + 2.1: 1092 + 2.2: 0 + 3.1: 0 + 3.5: 0 + 2: _ZNK9oceanbase6common11ObTimeGuard8get_diffEv:8727 + 2: 1092 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:1083 + 2: 1083 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:1101 + 50.6: _ZN9oceanbase6common11ObTimeGuardD2Ev:0 + 2.1: 0 + 2.2: 0 + 3.1: 0 + 3.5: 0 + 2: _ZNK9oceanbase6common11ObTimeGuard8get_diffEv:0 + 2: 0 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 +_ZN9oceanbase8observer8ObMPBase8responseEi:695372:5266 + 1: 4852 + 3: 4852 + 4: 5256 + 4.1: 4852 _ZNK9oceanbase3omt10ObThWorker10need_retryEv:5023 + 5: 5256 + 6.1: 0 + 9: 5124 + 4: _ZN9oceanbase3lib6Worker4selfEv:135856 + 3: 4852 + 4: 0 + 5: _ZN9oceanbase8observer8ObMPBase12flush_bufferEb:52560 + 2: 5256 + 2: _ZNK9oceanbase8observer16ObMPPacketSender19is_disable_responseEv:47304 + 0: 5256 + 2.2: _ZN9oceanbase8observer16ObMPPacketSender12flush_bufferEb:0 + 2: 0 + 3: 0 + 4: 0 + 5.1: 0 + 9.1: 0 + 10: 0 + 11.1: 0 + 12.1: 0 + 13.1: 0 + 15: 0 + 15.1: 0 + 17.1: 0 + 19.1: 0 + 19.2: 0 + 20.1: 0 + 23: 0 + 23.1: 0 + 25: 0 + 26.1: 0 + 27: 0 + 29: 0 + 29.1: 0 + 30.1: 0 + 33: 0 + 34: 0 + 35: 0 + 35.1: 0 + 36.1: 0 + 40: 0 + 41.1: 0 + 53: 0 + 54.1: 0 + 65: 0 + 66: 0 + 68: 0 + 75: 0 + 12.1: _ZN9oceanbase8observer16ObMPPacketSender11alloc_ezbufEv:0 + 2: 0 + 5: 0 + 9.1: 0 + 10: 0 + 11.1: 0 + 14: 0 + 15: 0 + 19: 0 + 9.1: _ZN9oceanbase3rpc20ObSqlRequestOperator25alloc_sql_response_bufferEPNS0_9ObRequestEl:0 + 1: 0 + 1.1: 0 + 15: _ZN9oceanbase6common13init_easy_bufEP10easy_buf_tPcP14easy_request_tm:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 10: 0 + 11.1: 0 + 15: _ZNK9oceanbase7obmysql16ObProto20Context15is_proto20_usedEv:0 + 0: 0 + 16: _ZN9oceanbase7obmysql18ObProtoEncodeParamC2Ev:0 + 1: 0 + 4: 0 + 17: _ZN9oceanbase8observer16ObMPPacketSender19build_encode_param_ERNS_7obmysql18ObProtoEncodeParamEPNS2_13ObMySQLPacketEb:0 + 6: 0 + 7: 0 + 9: 0 + 10: 0 + 11: 0 + 12: 0 + 4: _ZN9oceanbase7obmysql18ObProtoEncodeParam11build_paramERS1_PNS0_13ObMySQLPacketER10easy_buf_tjbRNS0_16ObProto20ContextEPNS_3rpc9ObRequestEPNS_6common8ObIArrayINS0_10ObCommonKVINSC_5ObObjESF_EEEEPNSD_IPNS0_12Obp20EncoderEEE:0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 12: 0 + 13: 0 + 27: _ZNK9oceanbase3rpc9ObRequest10get_ez_reqEv:0 + 2: 0 + 27.1: _ZN9oceanbase7obmysql18ObFlushBufferParamC2ER10easy_buf_tR14easy_request_tRNS0_20ObCompressionContextERbS8_b:0 + 3: 0 + 4: 0 + 5: 0 + 3: _ZN9oceanbase7obmysql12ObEasyBufferC2ER10easy_buf_t:0 + 0: 0 + 33: _ZNK9oceanbase7obmysql20ObCompressionContext12use_compressEv:0 + 0: 0 + 34: _ZN9oceanbase7obmysql12ObEasyBufferC2ER10easy_buf_t:0 + 0: 0 + 40: _ZN9oceanbase3rpc20ObSqlRequestOperator20async_write_responseEPNS0_9ObRequestEPKcl:0 + 1.1: 0 + 53: _ZN9oceanbase3rpc20ObSqlRequestOperator20async_write_responseEPNS0_9ObRequestEPKcl:0 + 1.1: 0 + 66: _ZNK9oceanbase7obmysql16ObProto20Context15is_proto20_usedEv:0 + 0: 0 + 73: _ZN9oceanbase8observer16ObMPPacketSender18finish_sql_requestEv:0 + 2: 0 + 2.1: 0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 3: _ZN9oceanbase3rpc20ObSqlRequestOperator18finish_sql_requestEPNS0_9ObRequestE:0 + 1: 0 + 1.1: 0 + 5: _ZN9oceanbase3rpc20ObSqlRequestOperator24free_sql_response_bufferEPNS0_9ObRequestEPv:0 + 1: 0 + 1.1: 0 +_ZN9oceanbase11transaction14ObTransService19get_write_store_ctxERNS0_8ObTxDescERKNS0_16ObTxReadSnapshotERNS_7storage10ObStoreCtxE:691336:1093 + 3: 1001 + 4: 1001 + 6: 1001 + 8: 1001 + 11: 1001 + 12: 0 + 13.1: 0 + 14.1: 1027 + 15: 7 + 16.1: 7 + 17.2: 1027 + 17.3: 258 _ZN9oceanbase11transaction14ObTransService23acquire_local_snapshot_ERKNS_5share6ObLSIDERl:258 + 17.4: 218 + 18.1: 7 + 19.2: 993 + 19.4: 775 + 20: 7 + 21.1: 7 + 22.1: 991 _ZN9oceanbase11transaction14ObTransService14acquire_tx_ctxERKNS_5share6ObLSIDERKNS0_8ObTxDescERPNS0_14ObPartTransCtxEPNS_7storage4ObLSE:1027 + 22.2: 1007 + 23.1: 7 + 24.1: 1007 _ZN9oceanbase11transaction14ObPartTransCtx12start_accessERKNS0_8ObTxDescEl:1014 + 24.2: 1051 + 25.1: 7 + 27.1: 1051 _ZN9oceanbase11transaction14ObTransService19get_tx_table_guard_EPNS_7storage4ObLSERKNS_5share6ObLSIDERNS2_14ObTxTableGuardE:1054 + 27.2: 1078 + 28.1: 7 + 31: 7 + 32: 7 + 33: 7 + 33.1: 7 + 34: 7 + 35: 7 + 39: 7 + 41: 1023 + 48: 1023 + 49: 1023 + 51.1: 1082 + 52.1: 7 + 60: 1033 + 62.1: 1049 _ZZN9oceanbase11transaction14ObTransService19get_write_store_ctxERNS0_8ObTxDescERKNS0_16ObTxReadSnapshotERNS_7storage10ObStoreCtxEENK6$_1002clEPKc.93feb755617c21c32b229b78773c290c:1120 + 64: 1070 + 65.9: 1073 + 65.12: 7 + 65.14: 1070 _ZN9oceanbase11transaction12ObTxSnapshotD1Ev:1149 + 7: _ZN9oceanbase6common10ObSequence22inc_and_get_max_seq_noEv:28028 + 2: 1001 + 9: _ZN9oceanbase7storage14ObTxTableGuardC2Ev:16016 + 0: 1001 + 17.1: _ZNK9oceanbase11transaction16ObTxReadSnapshot12is_none_readEv:6162 + 0: 1027 + 19.1: _ZNK9oceanbase11transaction16ObTxReadSnapshot14is_ls_snapshotEv:4505 + 0: 993 + 19.3: _ZNK9oceanbase5share6ObLSIDneERKS1_:5425 + 0: 775 + 34: _ZN9oceanbase11transaction14ObTransService14revert_tx_ctx_EPNS_7storage4ObLSEPNS0_14ObPartTransCtxE:385 + 3: 7 + 6: 7 + 9.1: 7 + 4: _ZNK9oceanbase7storage4ObLS13revert_tx_ctxIJRPNS_11transaction14ObPartTransCtxEEEEiDpOT_:84 + 0: 7 + 0.1: 7 + 40.1: _ZN9oceanbase8memtable15ObMvccAccessCtx10init_writeERNS_11transaction14ObPartTransCtxERNS0_13ObMemtableCtxERKNS2_9ObTransIDElRNS2_8ObTxDescERKNS_7storage14ObTxTableGuardERKNS2_12ObTxSnapshotEll:160699 + 11: 1050 + 12: 1050 + 13: 1050 + 15: 1050 + 16: 1050 + 18: 1050 _ZN9oceanbase11transaction12ObTxSnapshotaSERKS1_:1079 + 19: 1082 + 20: 1082 + 10: _ZN9oceanbase8memtable15ObMvccAccessCtx5resetEv:58213 + 1: 1023 + 1.1: 7 + 2: 7 + 4: 1061 + 6: 1061 + 7: 1061 _ZN9oceanbase11transaction12ObTxSnapshot5resetEv:1093 + 10: 1050 + 13: 1050 + 1: _ZNK9oceanbase8memtable15ObMvccAccessCtx8is_writeEv:4092 + 0: 1023 + 8: _ZN9oceanbase7storage14ObTxTableGuard5resetEv:6431 + 2: 1052 + 3: 7 + 4: 7 + 14: _ZN9oceanbase11transaction9ObTransIDaSERKS1_:18900 + 1: 1050 + 17: _ZN9oceanbase7storage14ObTxTableGuardaSERKS1_:17850 + 3: 1050 + 52: _ZN9oceanbase6common16ObClockGenerator8getClockEv:294 + 4: 7 + 5.1: 7 + 8: 7 + 6: _ZN9oceanbase6common16ObClockGenerator6get_usEv:35 + 2: 7 + 60: _ZN9oceanbase11transaction14ObTransService19update_max_read_ts_EmRKNS_5share6ObLSIDEl:100080 + 4: 1033 + 6.1: 1080 _ZZN9oceanbase11transaction14ObTransService19update_max_read_ts_EmRKNS_5share6ObLSIDElENK6$_1153clEPKc.93feb755617c21c32b229b78773c290c:1134 + 5: _ZN9oceanbase11transaction14ObTxVersionMgr18update_max_read_tsEl:40230 + 3.1: 1056 _ZZN9oceanbase11transaction14ObTxVersionMgr18update_max_read_tsElENKUlPKcE_clES3_:1067 + 2: _ZN9oceanbase6common10inc_updateIlEElPT_S2_:12746 + 3: 1033 + 4.1: 1033 + 5: 14 + 65.9: _ZN9oceanbase7storage14ObTxTableGuardD2Ev:24610 + 0: _ZN9oceanbase7storage14ObTxTableGuard5resetEv:24610 + 2: 1070 + 3: 1070 + 4: 1070 + 65.11: _ZN9oceanbase7storage14ObTxTableGuardD2Ev:161 + 0: _ZN9oceanbase7storage14ObTxTableGuard5resetEv:161 + 2: 7 + 3: 7 + 4: 7 +_ZN9oceanbase8observer16ObMPPacketSender14revert_sessionEPNS_3sql16ObSQLSessionInfoE:691047:5713 + 1: 5568 + 2: 5568 + 3: 5686 _ZN9oceanbase8observer14global_contextEv:5876 + 4: 0 + 5.1: 0 + 7: 5686 _ZN9oceanbase8observer14global_contextEv:5731 + 9: 5057 + 7.1: _ZN9oceanbase3sql15ObSQLSessionMgr14revert_sessionEPNS0_16ObSQLSessionInfoE:334288 + 2: 5583 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:5655 + 3: 5057 + 5: 0 + 8: 5057 + 8: _ZN9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE6revertEPS4_:242736 + 3: 5057 + 3: _ZN9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE6revertEPNS0_12LinkHashNodeIS3_EE:187109 + 6: 5057 + 6.1: 5057 + 6.2: 5057 + 7.1: 0 + 10: 5057 + 11: _ZN9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE8dec_urefEPNS0_12LinkHashNodeIS3_EE:35399 + 3: 5057 + 4: 0 + 3: _ZN9oceanbase6common9RefHandle3decEPNS0_7RefNodeE:25285 + 0: 5057 +_ZN9oceanbase3sql14ObDASScanRtDefD2Ev:688864:4706 + 1: 4474 + 2: 4474 + 4: 4706 + 6: 4706 + 8: 4706 + 10: 4706 + 3: _ZN9oceanbase7storage20ObRow2ExprsProjectorD2Ev:331076 + 3: 4474 _ZN9oceanbase6common13ObSEArrayImplINS_7storage20ObRow2ExprsProjector4ItemELl4ENS0_19ModulePageAllocatorELb0EED2Ev:4499 + 3.1: 0 + 3.2: 0 + 2: _ZN9oceanbase7storage20ObRow2ExprsProjector7destroyEv:313180 + 2: 4474 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_7storage20ObRow2ExprsProjector4ItemELl4ENS0_19ModulePageAllocatorELb0EE5resetEv:295284 + 0: 4474 + 0: _ZN9oceanbase6common13ObSEArrayImplINS_7storage20ObRow2ExprsProjector4ItemELl4ENS0_19ModulePageAllocatorELb0EE7destroyEv:201330 + 9: 4474 + 11: 0 + 13: 4474 + 15: 4474 + 24: 4474 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_7storage20ObRow2ExprsProjector4ItemELl4ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase3sql14ObDASScanRtDefD1Ev:688864:4706 + 1: 4474 + 2: 4474 + 4: 4706 + 6: 4706 + 8: 4706 + 10: 4706 + 3: _ZN9oceanbase7storage20ObRow2ExprsProjectorD2Ev:331076 + 3: 4474 _ZN9oceanbase6common13ObSEArrayImplINS_7storage20ObRow2ExprsProjector4ItemELl4ENS0_19ModulePageAllocatorELb0EED2Ev:4499 + 3.1: 0 + 3.2: 0 + 2: _ZN9oceanbase7storage20ObRow2ExprsProjector7destroyEv:313180 + 2: 4474 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_7storage20ObRow2ExprsProjector4ItemELl4ENS0_19ModulePageAllocatorELb0EE5resetEv:295284 + 0: 4474 + 0: _ZN9oceanbase6common13ObSEArrayImplINS_7storage20ObRow2ExprsProjector4ItemELl4ENS0_19ModulePageAllocatorELb0EE7destroyEv:201330 + 9: 4474 + 11: 0 + 13: 4474 + 15: 4474 + 24: 4474 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_7storage20ObRow2ExprsProjector4ItemELl4ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase7storage20ObTableAccessContext5resetEv:686245:4446 + 1: 4191 + 2: 4191 + 3: 4191 + 10: 4191 + 11: 0 + 12: 0 + 13: 0 + 15: 0 + 17: 4013 + 18: 4013 + 19: 0 + 22: 4013 + 23: 4013 + 24: 4013 _ZN9oceanbase7storage16ObTableStoreStat5resetEv:4589 + 25: 4331 + 27: 4331 + 28: 4331 + 29: 4331 + 31: 4331 + 6: _ZN9oceanbase6common11ObQueryFlag5resetEv:92202 + 0: 4191 + 18: _ZN9oceanbase3libneEDnRKNS0_13MemoryContextE:20065 + 1: 4013 + 20: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:0 + 2: 0 + 8: 0 + 26: _ZN9oceanbase6common14ObVersionRange5resetEv:99613 + 3: 4331 +_ZN9oceanbase7storage8ObTablet15get_read_tablesElRNS0_21ObTabletTableIteratorEb:686111:5289 + 4: 4926 + 5: 4926 + 6: 4926 + 7: 0 + 8.1: 0 + 9.1: 4926 + 10.1: 0 + 11.1: 4926 + 12: 0 + 13.1: 0 + 14.1: 5573 _ZN9oceanbase7storage8ObTablet15get_read_tablesElRNS0_20ObTableStoreIteratorEb:5107 + 15.1: 0 + 17: 5573 + 9.1: _ZN9oceanbase7storage8ObTablet14allow_to_read_Ev:88668 + 2: 4926 + 5: 4926 + 6: 0 + 7.1: 0 + 9: 0 + 3: _ZNK9oceanbase7storage16ObTabletHAStatus7is_noneEv:44334 + 0: 4926 + 11.1: _ZNK9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE8is_validEv:44334 + 2: 4926 +_ZN9oceanbase6common13ObSEArrayImplIbLl2ENS0_19ModulePageAllocatorELb1EED2Ev:685105:9586 + 1: 9159 + 3: 9107 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplIbLl2ENS0_19ModulePageAllocatorELb1EE7destroyEv:346690 + 9: 9159 + 11: 0 + 13: 9107 + 15: 9107 + 24: 9107 + 10: _ZN9oceanbase6common13ObSEArrayImplIbLl2ENS0_19ModulePageAllocatorELb1EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase7storage21ObFuseRowCacheFetcher18get_fuse_row_cacheERKNS_12blocksstable13ObDatumRowkeyERNS2_20ObFuseRowValueHandleE:678220:3592 + 1: 3440 + 2: 3440 + 4: 3440 + 5: 16 + 6.1: 16 + 7.1: 3440 + 8: 16 + 9.1: 16 + 11: 3440 + 11.4: 3440 _ZN9oceanbase12blocksstable17ObFuseRowCacheKeyC1EmRKNS_6common10ObTabletIDERKNS0_13ObDatumRowkeyEllRKNS0_19ObStorageDatumUtilsE:3501 + 12: 3546 _ZN9oceanbase12blocksstable19ObStorageCacheSuite12get_instanceEv:3608 + 12.2: 3413 _ZN9oceanbase12blocksstable14ObFuseRowCache7get_rowERKNS0_17ObFuseRowCacheKeyERNS0_20ObFuseRowValueHandleE:3688 + 12.3: 3465 + 14.1: 15 + 17.2: 3304 + 17.3: 15 + 17.4: 15 + 17.5: 15 + 17.6: 15 + 17.10: 15 + 17.11: 15 + 17.12: 15 + 21: 3619 + 7.3: _ZNK9oceanbase12blocksstable19ObStorageDatumUtils16get_rowkey_countEv:20640 + 0: 3440 + 11: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:66304 + 2: 3440 + 2.1: 16 + 2.2: 16 + 11.1: _ZNK9oceanbase5share12ObTenantBase2idEv:51600 + 0: 3440 + 11.2: _ZNK9oceanbase7storage15ObTableReadInfo23get_schema_column_countEv:13760 + 1: 3440 + 11.3: _ZNK9oceanbase7storage15ObTableReadInfo15get_datum_utilsEv:20640 + 0: 3440 + 12.1: _ZN9oceanbase12blocksstable19ObStorageCacheSuite18get_fuse_row_cacheEv:44369 + 0: 3413 + 17.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:16659 + 2: 3383 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:3372 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:13216 + 2: 3304 +_ZN9oceanbase10logservice11ObLSAdapter16wait_append_syncERKNS_5share6ObLSIDE:677231:0 + 1: 0 + 2: 0 + 4: 0 + 6: 0 + 6.1: 1 + 7.1: 0 + 8.2: 1 + 9: 0 + 10.1: 0 + 17: 1 + 18.4: 1 _ZN9oceanbase7storage10ObLSHandleD1Ev:1 + 18.5: 0 + 8.1: _ZN9oceanbase7storage10ObLSHandle6get_lsEv:4 + 0: 1 + 15: _ZN9oceanbase10logservice12ObLogHandler16wait_append_syncEv:677184 + 1: _ZN9oceanbase6common7ObQSync4syncEv:677184 + 2.1: 296 + 2.3: 296 + 5.1: 34644 +_ZN9oceanbase3lib17ObMallocAllocator12get_instanceEv:673262:23164 + 1: 22436 + 2: 22436 + 2.1: 2 + 2.2: 2 + 2.3: 2 + 2.4: 2 + 2.6: 2 + 3: 22436 +_ZN9oceanbase11transaction17ObTxSerCompatByte15set_object_flagElb:672949:3800 + 1: 3587 + 2: 3587 + 7: 3587 + 8.1: 0 + 14: 3696 + 7: _ZNK9oceanbase11transaction17ObTxSerCompatByte20cal_object_location_ElRlRh:358700 + 4: 3587 + 6: 3587 + 6.1: 3587 + 7: 0 + 8.1: 0 + 11: 3587 + 12: 3587 + 19: 0 + 9.1: _ZN9oceanbase11transaction17ObTxSerCompatByte16set_object_flag_Elhb:104895 + 2: 3587 + 4: 3587 + 5.1: 0 + 6.1: 3587 + 7: 0 + 9: 3696 +_ZN9oceanbase12blocksstable20ObStorageDatumBuffer5resetEv:668931:527 + 1: 512 + 2: 512 + 2.1: 0 + 3: 0 + 5: 512 + 6: 512 + 7: 512 + 8.1: 16573 + 8.3: 16573 + 9: 16573 + 11: 506 + 12: 506 + 9: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:307530 + 0: 16573 +_ZN9oceanbase3sql9ObPlanSet16match_constraintERKNS_6common9Ob2DArrayINS2_10ObObjParamELi2079744ENS2_18ObWrapperAllocatorELb0ENS2_9ObSEArrayIPS4_Ll1ES5_Lb0EEEEERb:668404:4690 + 1: 4383 + 2: 4383 + 3: 4383 + 5: 4383 + 6.1: 0 + 6.3: 0 + 6.4: 0 + 6.6: 0 + 8.1: 0 + 8.2: 0 + 8.3: 0 + 8.6: 0 + 8.7: 0 + 8.8: 0 + 8.11: 0 + 8.12: 0 + 8.13: 0 + 12.1: 0 + 12.3: 0 + 12.4: 0 + 13: 0 + 15: 0 + 16: 0 + 17.1: 0 + 18.1: 0 + 18.2: 0 + 19: 0 + 20: 0 + 21.1: 0 + 23.1: 0 + 23.2: 0 + 23.3: 0 + 24: 0 + 24.1: 0 + 26: 0 + 32.1: 4383 + 34.1: 0 + 34.3: 0 + 34.4: 0 + 34.6: 0 + 37.1: 0 + 37.2: 0 + 37.3: 0 + 37.6: 0 + 37.7: 0 + 37.8: 0 + 37.11: 0 + 37.12: 0 + 37.13: 0 + 40.1: 0 + 40.3: 0 + 40.4: 0 + 41: 0 + 43: 0 + 44: 0 + 45.1: 0 + 46.1: 0 + 46.2: 0 + 47: 0 + 48: 0 + 49.1: 0 + 51.1: 0 + 51.2: 0 + 51.3: 0 + 52: 0 + 52.1: 0 + 58: 0 + 60: 0 + 67.1: 4525 + 67.3: 4525 + 67.4: 4525 + 68: 8 + 69: 8 + 70: 8 + 71: 8 + 75: 8 + 75.2: 8 + 77: 0 + 78.1: 0 + 79.2: 8 + 79.3: 8 + 80: 8 + 80.1: 8 + 81.2: 8 + 82: 8 + 83.2: 8 + 92.1: 8 + 92.3: 8 + 93.1: 8 + 93.2: 8 + 93.3: 8 + 94.4: 8 + 95.2: 8 + 97.4: 8 + 98.2: 8 + 100.1: 8 + 100.2: 8 + 100.3: 8 + 101.2: 8 + 102: 8 + 105: 8 + 106: 8 + 111: 0 + 112: 0 + 115: 4689 + 1269.1: 8 + 7: _ZN9oceanbase6common12ObIArrayWrapINS_3sql18ObPCConstParamInfoEE2atEl:0 + 6: 0 + 8.1: _ZNK9oceanbase6common12ObIArrayWrapIlE5countEv:0 + 0: 0 + 8.6: _ZNK9oceanbase6common12ObIArrayWrapINS0_5ObObjEE5countEv:0 + 0: 0 + 13: _ZNK9oceanbase6common12ObIArrayWrapIlE2atEl:0 + 6: 0 + 18.1: _ZNK9oceanbase6common5ObObj15is_invalid_typeEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta10is_invalidEv:0 + 0: _ZN9oceanbase6common20ob_is_valid_obj_typeENS0_9ObObjTypeE:0 + 0: 0 + 19.1: _ZNK9oceanbase6common5ObObj15is_invalid_typeEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta10is_invalidEv:0 + 0: _ZN9oceanbase6common20ob_is_valid_obj_typeENS0_9ObObjTypeE:0 + 0: 0 + 36: _ZN9oceanbase6common12ObIArrayWrapINS_3sql18ObPCConstParamInfoEE2atEl:0 + 6: 0 + 37.1: _ZNK9oceanbase6common12ObIArrayWrapIlE5countEv:0 + 0: 0 + 37.6: _ZNK9oceanbase6common12ObIArrayWrapINS0_5ObObjEE5countEv:0 + 0: 0 + 41: _ZNK9oceanbase6common12ObIArrayWrapIlE2atEl:0 + 6: 0 + 46.1: _ZNK9oceanbase6common5ObObj15is_invalid_typeEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta10is_invalidEv:0 + 0: _ZN9oceanbase6common20ob_is_valid_obj_typeENS0_9ObObjTypeE:0 + 0: 0 + 47.1: _ZNK9oceanbase6common5ObObj15is_invalid_typeEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta10is_invalidEv:0 + 0: _ZN9oceanbase6common20ob_is_valid_obj_typeENS0_9ObObjTypeE:0 + 0: 0 + 68: _ZN9oceanbase6common12ObIArrayWrapINS_3sql18ObPCParamEqualInfoEE2atEl:56 + 6: 8 + 70.1: _ZN9oceanbase6common10ObObjParamC2ERKS1_:456 + 0: 8 + 0: _ZN9oceanbase6common5ObObjC2ERKS1_:128 + 2: 8 + 0: _ZN9oceanbase6common9ObObjMetaC2Ev:56 + 1: 8 + 0.1: _ZN9oceanbase6common10ObAccuracyC2ERKS1_:64 + 0: 8 + 0.2: _ZN9oceanbase6common9ParamFlagC2ERKS1_:80 + 0: 8 + 71.1: _ZN9oceanbase6common10ObObjParamC2ERKS1_:624 + 0: 8 + 0: _ZN9oceanbase6common5ObObjC2ERKS1_:176 + 2: 8 + 0: _ZN9oceanbase6common9ObObjMetaC2Ev:80 + 1: 8 + 0.1: _ZN9oceanbase6common10ObAccuracyC2ERKS1_:88 + 0: 8 + 0.2: _ZN9oceanbase6common9ParamFlagC2ERKS1_:128 + 0: 8 + 72: _ZN9oceanbase6common5ObObj18set_collation_typeERKNS0_15ObCollationTypeE:32 + 0: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:32 + 0: 8 + 73: _ZN9oceanbase6common5ObObj18set_collation_typeERKNS0_15ObCollationTypeE:56 + 0: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:56 + 0: 8 + 75.1: _ZNK9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE5countEv:136 + 0: 8 + 79.1: _ZN9oceanbase6common12ObIArrayWrapINS_3sql18ObPCParamEqualInfoEE2atEl:56 + 6: 8 + 81: _ZNK9oceanbase6common5ObObj18get_collation_typeEv:24 + 0: _ZNK9oceanbase6common9ObObjMeta18get_collation_typeEv:24 + 0: 8 + 83.1: _ZN9oceanbase6common12ObIArrayWrapINS_3sql18ObPCParamEqualInfoEE2atEl:56 + 6: 8 + 92: _ZNK9oceanbase6common5ObObj9is_numberEv:24 + 0: _ZNK9oceanbase6common9ObObjMeta9is_numberEv:24 + 0: 8 + 92.2: _ZNK9oceanbase6common5ObObj9is_numberEv:56 + 0: _ZNK9oceanbase6common9ObObjMeta9is_numberEv:56 + 0: 8 + 93: _ZNK9oceanbase6common5ObObj10get_numberEv:56 + 0: 8 + 93.1: _ZNK9oceanbase6common5ObObj10get_numberEv:104 + 0: 8 + 93.2: _ZNK9oceanbase6common6number8ObNumber11abs_compareERKS2_:3032 + 2: 8 + 3: 8 + 4: 8 + 7: 8 + 10: 8 + 13: 8 + 3: _ZNK9oceanbase6common6number8ObNumber11is_negativeEv:16 + 2: 8 + 5: _ZNK9oceanbase6common6number8ObNumber7compareERKS2_:472 + 3: _ZN9oceanbase6common6number8ObNumber10compare_v2ERK12ObNumberDescPKjS5_S7_:472 + 5: 8 + 7: _ZN9oceanbase6common6number8ObNumber12uint32cmp_v2EPKjS4_l:384 + 3.1: 8 + 4: 8 + 7: 8 + 7: _ZNK9oceanbase6common6number8ObNumber6negateEv:216 + 3: 8 + 6: 8 + 11: 8 + 3: _ZNK9oceanbase6common6number8ObNumber7is_zeroEv:24 + 2: 8 + 7.1: _ZNK9oceanbase6common6number8ObNumber7compareERKS2_:512 + 3: _ZN9oceanbase6common6number8ObNumber10compare_v2ERK12ObNumberDescPKjS5_S7_:512 + 5: 8 + 7: _ZN9oceanbase6common6number8ObNumber12uint32cmp_v2EPKjS4_l:416 + 3.1: 8 + 4: 8 + 7: 8 + 11: _ZNK9oceanbase6common6number8ObNumber7compareERKS2_:648 + 3: _ZN9oceanbase6common6number8ObNumber10compare_v2ERK12ObNumberDescPKjS5_S7_:648 + 5: 8 + 7: _ZN9oceanbase6common6number8ObNumber12uint32cmp_v2EPKjS4_l:488 + 3.1: 8 + 4: 8 + 7: 8 + 13: _ZNK9oceanbase6common6number8ObNumber6negateEv:216 + 3: 8 + 6: 8 + 11: 8 + 3: _ZNK9oceanbase6common6number8ObNumber7is_zeroEv:24 + 2: 8 + 13.1: _ZNK9oceanbase6common6number8ObNumber7compareERKS2_:568 + 3: _ZN9oceanbase6common6number8ObNumber10compare_v2ERK12ObNumberDescPKjS5_S7_:568 + 5: 8 + 7: _ZN9oceanbase6common6number8ObNumber12uint32cmp_v2EPKjS4_l:472 + 3.1: 8 + 4: 8 + 7: 8 + 94.3: _ZNK9oceanbase6common5ObObj9is_doubleEv:56 + 0: _ZNK9oceanbase6common9ObObjMeta9is_doubleEv:56 + 0: 8 + 95: _ZNK9oceanbase6common5ObObj10get_doubleEv:40 + 0: 8 + 95.1: _ZNK9oceanbase6common5ObObj10get_doubleEv:64 + 0: 8 + 97.3: _ZNK9oceanbase6common5ObObj8is_floatEv:56 + 0: _ZNK9oceanbase6common9ObObjMeta8is_floatEv:56 + 0: 8 + 98: _ZNK9oceanbase6common5ObObj9get_floatEv:40 + 0: 8 + 98.1: _ZNK9oceanbase6common5ObObj9get_floatEv:64 + 0: 8 + 101: _ZNK9oceanbase6common5ObObj18get_collation_typeEv:24 + 0: _ZNK9oceanbase6common9ObObjMeta18get_collation_typeEv:24 + 0: 8 +_ZN9oceanbase5share12ObLSLocationD2Ev:665799:4825 + 1: 4479 + 2: 4635 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_5share19ObLSReplicaLocationELl3ENS0_19ModulePageAllocatorELb0EED2Ev:422328 + 1: 4479 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_5share19ObLSReplicaLocationELl3ENS0_19ModulePageAllocatorELb0EE7destroyEv:355143 + 4.1: 4641 + 4.3: 0 + 5: 4641 + 9: 4635 + 10: 0 + 11: 0 + 13: 4635 + 15: 4635 + 24: 4635 + 2.1: _ZN9oceanbase5share20ObLSLocationCacheKeyD2Ev:106605 + 0: 4635 + 0: _ZN9oceanbase5share6ObLSIDD2Ev:37080 + 0: _ZN9oceanbase5share6ObLSID5resetEv:37080 + 0: 4635 + 2.2: _ZN9oceanbase6common6ObLinkD2Ev:32445 + 0: 4635 +_ZN9oceanbase5share12ObLSLocationD1Ev:665799:4825 + 1: 4479 + 2: 4635 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_5share19ObLSReplicaLocationELl3ENS0_19ModulePageAllocatorELb0EED2Ev:422328 + 1: 4479 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_5share19ObLSReplicaLocationELl3ENS0_19ModulePageAllocatorELb0EE7destroyEv:355143 + 4.1: 4641 + 4.3: 0 + 5: 4641 + 9: 4635 + 10: 0 + 11: 0 + 13: 4635 + 15: 4635 + 24: 4635 + 2.1: _ZN9oceanbase5share20ObLSLocationCacheKeyD2Ev:106605 + 0: 4635 + 0: _ZN9oceanbase5share6ObLSIDD2Ev:37080 + 0: _ZN9oceanbase5share6ObLSID5resetEv:37080 + 0: 4635 + 2.2: _ZN9oceanbase6common6ObLinkD2Ev:32445 + 0: 4635 +_ZN9oceanbase7storage14ObTabletHandleC2Ev:664795:22215 + 2: 21445 + 3: 21445 + 5: 21445 + 1: _ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEEC2Ev:150115 + 1: 21445 +_ZN9oceanbase7storage14ObTabletHandleC1Ev:664795:22215 + 2: 21445 + 3: 21445 + 5: 21445 + 1: _ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEEC2Ev:150115 + 1: 21445 +_ZN9oceanbase6common12ObKVCacheMap21replace_fragment_nodeERll:664632:0 + 1: 0 + 2: 0 + 3: 0 + 4: 136 + 5.1: 136 + 6.1: 0 + 7: 0 + 8: 0 + 9: 136 + 10.1: 136 + 12: 0 + 13: 0 + 15: 0 + 16: 0 + 17: 0 + 18: 0 + 19: 0 + 20.1: 0 + 21.1: 136 + 23.1: 4142 + 23.5: 4142 + 25.1: 3947 + 26.1: 136 + 28: 3947 + 29: 3947 + 30: 3947 + 31.1: 3947 + 32.1: 477 + 33: 341 _ZN9oceanbase6common12ObKVCacheMap20internal_map_replaceERPNS1_4NodeES4_S4_:191 + 34: 373 + 36: 506 + 37: 506 + 40: 3979 _ZN9oceanbase6common18ObBucketWLockGuardD2Ev:3823 + 40.1: 136 + 42: 0 + 42.3: 0 + 43.1: 0 + 44.1: 0 + 46: 0 + 46.1: 136 + 47: 0 + 13: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 20: _ZNK9oceanbase6common24GlobalHazardVersionGuard7get_retEv:0 + 0: 0 + 24: _ZN9oceanbase6common18ObBucketWLockGuardC2ERNS0_12ObBucketLockEm:192319 + 1: 3905 + 2: 3905 + 3: 3905 + 4: 3905 + 6: 4098 _ZN9oceanbase6common12ObBucketLock6wrlockEm:3889 + 7.1: 136 + 9: 4098 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:4029 + 25: _ZNK9oceanbase6common18ObBucketWLockGuard7get_retEv:11841 + 0: 3947 + 28: _ZN9oceanbase6common12ObKVCacheMap15get_bucket_nodeEl:102622 + 2: 3947 + 3: 3947 + 32: _ZN9oceanbase6common17ObLfFIFOAllocator11is_fragmentEPv:22896 + 0: _ZN9oceanbase6common13ObVSliceAlloc21get_block_using_ratioEPv:22896 + 5: 477 + 8: 477 + 9: 477 + 10: 477 + 6: _ZNK9oceanbase6common14ObBlockVSlicer12get_blk_sizeEv:1431 + 0: 477 + 7: _ZN9oceanbase6common14ObBlockVSlicer14get_using_sizeEv:1908 + 0: 477 + 43: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 +ev_feed_event:660514:6578 + 1: 6350 + 3: 6350 + 5: 6350 + 6: 2 + 8: 6350 + 9: 6350 + 9.1: 2 + 10: 6350 + 11: 6350 + 13: 6350 +_ZNK9oceanbase4palf8election12ElectionImpl8get_roleERNS_6common6ObRoleERl:658100:4426 + 1: 4414 + 3: 4102 + 5: 0 + 6: 0 + 8: 4102 + 2: _ZNK9oceanbase4palf8election16ElectionProposer12check_leaderEPl:461296 + 7: 4102 + 10: 4102 + 3: _ZN9oceanbase4palf8election16get_monotonic_tsEv:219278 + 4: 4414 + 5.1: 0 + 6: 0 + 8: 4102 + 6: _ZNK9oceanbase4palf8election16ElectionProposer19LeaderLeaseAndEpoch3getERlS4_:196896 + 4: 0 + 5: 0 + 7: 4102 + 8: 4102 + 9: 4102 + 10: 4102 + 11: 4102 + 13: 4102 + 14.1: 0 + 14.3: 4102 +_ZN9oceanbase11transaction14ObTransService16revert_store_ctxERNS_7storage10ObStoreCtxE:658099:5393 + 1: 5290 + 2: 5290 + 4: 5290 + 5: 5290 + 6: 4234 + 7: 510 + 8: 510 _ZN9oceanbase11transaction14ObTransService14revert_tx_ctx_EPNS_7storage4ObLSEPNS0_14ObPartTransCtxE:510 + 11: 1062 + 12: 11 + 13.1: 11 + 18: 1062 + 19: 1062 + 20: 1062 + 21: 300 + 23: 1049 _ZN9oceanbase11transaction8ObTxPartC1Ev:1045 + 24: 300 + 26: 1033 + 27: 1033 + 28: 1033 + 29: 1033 _ZN9oceanbase11transaction8ObTxDesc11update_partERNS0_8ObTxPartE:1044 + 29.1: 973 + 30.1: 11 + 32: 973 _ZN9oceanbase11transaction14ObTransService41fetch_cflict_tx_ids_from_mem_ctx_to_desc_ERNS_8memtable15ObMvccAccessCtxE:1141 + 33: 1093 _ZN9oceanbase11transaction14ObPartTransCtx10end_accessEv:1082 + 34: 1081 _ZN9oceanbase11transaction14ObTransService14revert_tx_ctx_EPNS_7storage4ObLSEPNS0_14ObPartTransCtxE:1139 + 35: 1115 _ZN9oceanbase11transaction8ObTxPartD1Ev:1128 + 35.1: 11 + 37: 11 + 38.1: 11 + 40.1: 5268 _ZZN9oceanbase11transaction14ObTransService16revert_store_ctxERNS_7storage10ObStoreCtxEENK6$_1018clEPKc.93feb755617c21c32b229b78773c290c:5388 + 41: 5493 + 5: _ZNK9oceanbase8memtable15ObMvccAccessCtx7is_readEv:15870 + 0: 5290 + 21: _ZN9oceanbase6common10ObSequence14get_max_seq_noEv:3000 + 2: 300 + 24: _ZN9oceanbase5share6ObLSIDaSERKS1_:11363 + 0: 1033 + 25: _ZN9oceanbase6common6ObAddraSERKS1_:33056 + 1: 1033 + 2: 1033 + 3: 1033 +_ZN9oceanbase8memtable10ObMemtable4set_ERNS_7storage10ObStoreCtxEmRKNS2_15ObTableReadInfoERKNS_6common8ObIArrayINS_5share6schema9ObColDescEEERKNS2_10ObStoreRowEPSH_PKNS9_IlEE:655963:898 + 9: 870 + 10: 870 + 11: 870 _ZN9oceanbase12blocksstable11ObRowWriterC1Ev:898 + 12: 832 + 13: 832 + 17.1: 832 + 21: 846 + 21.2: 846 + 23.1: 16 + 25.2: 895 + 26.1: 16 + 27.1: 895 + 29.1: 1 + 29.2: 1 + 30.1: 16 + 31.1: 1 + 32: 16 + 33.1: 16 + 35: 1 + 36: 1 + 39: 880 + 40: 880 + 41: 880 _ZN9oceanbase12blocksstable11ObRowWriter5resetEv:935 + 42: 895 + 44.2: 895 _ZN9oceanbase12blocksstable11ObRowWriter5writeElRKNS_7storage10ObStoreRowEPKNS_6common8ObIArrayIlEERPcRl:912 + 44.3: 852 + 45.1: 16 + 46.2: 852 + 47: 16 + 48.1: 16 + 50.1: 852 + 52: 852 + 53: 852 + 54: 852 + 55: 852 _ZN9oceanbase8memtable10ObMemtable11mvcc_write_ERNS_7storage10ObStoreCtxEPKNS0_13ObMemtableKeyERKNS2_15ObTableReadInfoERKNS0_11ObTxNodeArgERb:881 + 55.1: 895 + 60: 16 + 62.1: 16 + 65.1: 895 _ZZN9oceanbase8memtable10ObMemtable4set_ERNS_7storage10ObStoreCtxEmRKNS2_15ObTableReadInfoERKNS_6common8ObIArrayINS_5share6schema9ObColDescEEERKNS2_10ObStoreRowEPSH_PKNS9_IlEEENK5$_243clEPKc.1dd22efca7fa83ae50e8099a04ad3959:881 + 82: 860 + 82.1: 16 + 83: 860 + 85.1: 16 + 86: 16 + 90: 945 + 93.1: 16 + 104: 913 _ZN9oceanbase8memtable10ObMemtable7set_endERNS0_15ObMvccAccessCtxEi:1004 + 105: 893 + 106: 893 _ZN9oceanbase8memtable10ObMemtable22set_max_schema_versionEl:951 + 109: 905 + 110.17: 846 + 110.21: 16 + 110.25: 905 _ZN9oceanbase12blocksstable11ObRowWriterD1Ev:890 + 14: _ZN9oceanbase8memtable9ObRowDataC2Ev:5824 + 0: 832 + 15: _ZN9oceanbase6common13ObStoreRowkeyC2Ev:14144 + 0: 832 + 16: _ZN9oceanbase8memtable13ObMemtableKeyC2Ev:5824 + 0: 832 + 17: _ZNK9oceanbase8memtable15ObMvccAccessCtx11get_mem_ctxEv:5824 + 1: 832 + 19: _ZN9oceanbase8memtable10ObMemtable9set_beginERNS0_15ObMvccAccessCtxE:17700 + 2: 888 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:866 + 3.1: 846 + 3.2: 16 + 3.3: 16 + 3.4: 16 + 3.6: 16 + 3.7: 16 + 3.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:4276 + 2: 888 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:928 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:3384 + 2: 846 + 21: _ZNK9oceanbase7storage15ObTableReadInfo23get_schema_rowkey_countEv:12690 + 1: 846 + 21.1: _ZN9oceanbase6common13ObStoreRowkey6assignEPNS0_5ObObjEl:36746 + 3: 846 + 3.2: 846 + 5.1: 16 + 8: 846 + 7: _ZN9oceanbase6common8ObRowkey6assignEPNS0_5ObObjEl:5922 + 2: 846 + 3: 846 + 25.1: _ZN9oceanbase8memtable13ObMemtableKey6encodeERKNS_6common8ObIArrayINS_5share6schema9ObColDescEEEPKNS2_13ObStoreRowkeyE:126003 + 3: 846 + 8.1: 846 + 9.1: 16 + 12: 16 + 14.1: 846 + 14.2: 1722 + 14.3: 1722 + 14.5: 846 + 15: 846 + 16: 846 + 17.1: 846 + 18: 846 + 19.1: 846 + 20.1: 16 + 24: 16 + 25.2: 16 + 26: 846 + 28: 16 + 29.1: 16 + 30.1: 16 + 15: _ZNK9oceanbase6common13ObStoreRowkey11get_obj_ptrEv:2538 + 0: _ZNK9oceanbase6common8ObRowkey11get_obj_ptrEv:2538 + 0: 846 + 16: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE2atEl:3384 + 6: 846 + 17: _ZNK9oceanbase6common5ObObj8get_typeEv:2538 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:2538 + 0: 846 + 25.1: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:1692 + 0: 846 + 29.1: _ZNK9oceanbase6common5ObObj18get_collation_typeEv:64 + 0: _ZNK9oceanbase6common9ObObjMeta18get_collation_typeEv:64 + 0: 16 + 36: _ZN9oceanbase8memtable13ObMemtableKey6encodeEPKNS_6common13ObStoreRowkeyE:6265 + 3: 895 + 29: _ZNK9oceanbase7storage15ObTableReadInfo23get_schema_rowkey_countEv:19 + 1: 1 + 31.1: _ZN9oceanbase8memtable13ObMemtableCtx13old_row_allocEl:1067 + 3: 16 + 4.1: 16 + 6: 1 + 3: _ZN9oceanbase8memtable24ObMemtableCtxCbAllocator5allocEl:463 + 3: 1 + 4.1: 16 + 7.1: 1 + 8: 1 + 36: _ZN9oceanbase8memtable9ObRowData3setEPKci:7 + 2: 1 + 3: 1 + 44.1: _ZNK9oceanbase7storage15ObTableReadInfo23get_schema_rowkey_countEv:3580 + 1: 895 + 46.1: _ZNK9oceanbase12blocksstable12ObDmlRowFlag12is_not_existEv:4260 + 2: 852 + 50: _ZNK9oceanbase12blocksstable12ObDmlRowFlag12get_dml_flagEv:2556 + 0: 852 + 50.1: _ZN9oceanbase8memtable14ObMemtableDataC2ENS_12blocksstable9ObDmlFlagElPKc:12780 + 1: 852 + 51.1: _ZN9oceanbase8memtable11ObTxNodeArgC2EPKNS0_14ObMemtableDataEPKNS0_9ObRowDataEll:41748 + 4: 852 + 5: 852 + 6: 852 + 8: 852 + 9: 852 + 10: 852 + 86: _ZN9oceanbase8memtable13ObMemtableCtx12old_row_freeEPv:320 + 6: _ZN9oceanbase8memtable24ObMemtableCtxCbAllocator4freeEPv:320 + 5.1: 16 + 6: 16 + 87: _ZN9oceanbase8memtable9ObRowData5resetEv:240 + 2: 16 + 3: 16 +_ZN9oceanbase8memtable10ObMemtable11mvcc_write_ERNS_7storage10ObStoreCtxEPKNS0_13ObMemtableKeyERKNS2_15ObTableReadInfoERKNS0_11ObTxNodeArgERb:654890:1046 + 0: 1002 + 0.1: 1002 + 5: 1011 + 6: 1011 + 7: 1011 + 10: 1011 + 15: 1011 _ZN9oceanbase8memtable12ObMvccEngine9create_kvEPKNS0_13ObMemtableKeyEPS2_RPNS0_9ObMvccRowERNS0_15RowHeaderGetterERb:1056 + 15.1: 1098 + 20.1: 0 + 21.1: 1098 _ZN9oceanbase8memtable12ObMvccEngine10mvcc_writeERNS0_14ObIMemtableCtxElRNS0_9ObMvccRowERKNS0_11ObTxNodeArgERNS0_17ObMvccWriteResultE:1135 + 21.2: 1003 + 27.1: 0 + 28: 0 + 29: 0 + 30: 0 + 33: 2 + 33.1: 2 + 35: 2 + 36: 2 + 38.1: 2 + 40.1: 1003 + 40.2: 1005 + 45: 0 + 46.1: 0 + 49.1: 2 + 52: 0 + 54: 2 + 55.1: 0 + 56: 0 + 58: 0 + 61: 2 + 61.1: 2 + 63: 2 + 64: 2 + 66.1: 2 + 68.1: 1005 _ZN9oceanbase8memtable12ObMvccEngine9ensure_kvEPKNS0_13ObMemtableKeyEPNS0_9ObMvccRowE:1008 + 68.2: 1002 + 69.1: 2 + 70: 2 + 72.1: 2 + 73.2: 1058 + 74: 1002 + 74.1: 1002 + 74.2: 1058 _ZN9oceanbase8memtable10ObIMvccCtx22register_row_commit_cbEPKNS0_13ObMemtableKeyEPNS0_9ObMvccRowEPNS0_15ObMvccTransNodeElPKNS0_9ObRowDataEPNS0_10ObMemtableEl:1036 + 74.3: 1058 + 81: 2 + 82.1: 2 + 84: 1058 + 86: 1058 + 89: 774 + 90.1: 0 + 92.1: 774 _ZNK9oceanbase8memtable13ObMemtableCtx9get_tx_idEv:777 + 99: 1104 + 100: 0 + 101: 0 + 102: 0 + 107.20: 1081 + 8: _ZN9oceanbase8memtable13ObMemtableKeyC2Ev:10110 + 0: 1011 + 9: _ZN9oceanbase8memtable15RowHeaderGetterC2Ev:11121 + 0: 1011 + 11: _ZN9oceanbase8memtable17ObMvccWriteResultC2Ev:44484 + 1: 1011 + 3: 1011 + 4: _ZN9oceanbase7storage19ObStoreRowLockStateC2Ev:28308 + 1: 1011 + 3: 1011 + 12: _ZNK9oceanbase8memtable15ObMvccAccessCtx11get_mem_ctxEv:7077 + 1: 1011 + 13: _ZNK9oceanbase8memtable15ObMvccAccessCtx20get_snapshot_versionEv:8088 + 1: 1011 + 30: _ZNK9oceanbase8memtable9ObMvccRow20get_last_compact_cntEv:0 + 0: 0 + 31: _ZNK9oceanbase8memtable9ObMvccRow24get_total_trans_node_cntEv:0 + 0: 0 + 36: _ZNK9oceanbase8memtable9ObMvccRow16get_max_trans_idEv:22 + 0: _ZNK9oceanbase11transaction9ObTransIDcvlEv:22 + 0: 2 + 36.1: _ZN9oceanbase11transaction9ObTransIDC2El:6 + 0: 2 + 40.1: _ZN9oceanbase8memtable10ObMemtable26lock_row_on_frozen_stores_ERNS_7storage10ObStoreCtxEPKNS0_13ObMemtableKeyEPNS0_9ObMvccRowERKNS2_15ObTableReadInfoERNS2_19ObStoreRowLockStateE:162227 + 6: 1003 + 7: 1003 + 7.1: 1003 + 8.1: 0 + 9: 0 + 10.1: 1003 + 11: 0 + 12.1: 0 + 13.1: 1003 + 16: 93 + 17: 93 + 19: 93 _ZN9oceanbase7storage20ObTableStoreIterator6resumeEv:98 + 20.1: 97 + 21.1: 487 + 22: 394 + 23: 394 _ZN9oceanbase7storage20ObTableStoreIterator8get_nextERPNS0_8ObITableE:403 + 23.1: 403 + 25.1: 2 + 27.1: 303 + 28: 2 + 29.1: 2 + 30.1: 303 _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl4ENS0_19ModulePageAllocatorELb0EE9push_backERKS4_:312 + 30.2: 307 + 31.1: 2 + 35: 97 + 38: 97 + 40.1: 97 + 40.2: 182 + 40.4: 182 + 40.6: 182 + 41: 197 _ZN9oceanbase7storage19ObStoreRowLockState5resetEv:206 + 42: 199 + 42.1: 199 + 43: 2 + 44.1: 2 + 45.2: 199 _ZNK9oceanbase7storage8ObITable16is_data_memtableEv:202 + 45.3: 201 + 47: 2 + 47.1: 2 + 48.1: 2 + 50.3: 205 _ZNK9oceanbase7storage8ObITable10is_sstableEv:205 + 50.4: 209 + 51: 209 _ZN9oceanbase12blocksstable19ObDatumRowkeyHelperC2Ev:210 + 53: 162 + 53.1: 162 + 54: 162 + 54.2: 162 _ZN9oceanbase12blocksstable19ObDatumRowkeyHelper20convert_datum_rowkeyERKNS_6common8ObRowkeyERNS0_13ObDatumRowkeyE:166 + 54.3: 169 + 55.1: 2 + 56.1: 169 _ZN9oceanbase12blocksstable9ObSSTable16check_row_lockedERNS_7storage10ObStoreCtxERKNS2_15ObTableReadInfoERKNS0_13ObDatumRowkeyERNS2_19ObStoreRowLockStateE:169 + 56.2: 158 + 57.1: 2 + 61.2: 2 + 61.4: 158 _ZN9oceanbase12blocksstable19ObDatumRowkeyHelperD2Ev:172 + 62: 2 + 63.1: 2 + 65: 189 + 66: 189 + 67: 189 + 68: 2 + 69.1: 191 + 70: 102 + 79: 84 + 82: 84 _ZN9oceanbase8memtable9ObMvccRow24update_max_trans_versionElRKNS_11transaction9ObTransIDE:82 + 83: 82 + 85.1: 82 + 86: 2 + 87.1: 2 + 90: 82 + 94.3: 2 + 94.4: 82 _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl4ENS0_19ModulePageAllocatorELb0EED2Ev:81 + 95: 1005 + 13.1: _ZNK9oceanbase8memtable9ObMvccRow20is_lower_lock_scanedEv:4012 + 0: 1003 + 18: _ZN9oceanbase6common9ObSEArrayIPNS_7storage8ObITableELl4ENS0_19ModulePageAllocatorELb0EEC2Ev:11067 + 0.1: 93 + 0.5: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl4ENS0_19ModulePageAllocatorELb0EEC2ElRKS5_:9672 + 2: 93 + 5: 93 + 6: 93 + 8: 93 + 17.1: 93 + 2: _ZN9oceanbase6common8ObIArrayIPNS_7storage8ObITableEEC2EPS4_l:744 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_7storage8ObITableEEC2EPS4_l:744 + 0: 93 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:3813 + 0: 93 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:1674 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:1674 + 2: 93 + 8: 93 + 40: _ZNK9oceanbase6common12ObIArrayWrapIPNS_7storage8ObITableEE5countEv:679 + 0: 97 + 42: _ZNK9oceanbase6common12ObIArrayWrapIPNS_7storage8ObITableEE2atEl:796 + 6: 199 + 46.1: _ZN9oceanbase8memtable10ObMemtable15get_mvcc_engineEv:16 + 0: 2 + 52: _ZN9oceanbase12blocksstable13ObDatumRowkeyC2Ev:5184 + 0.4: _ZN9oceanbase12blocksstable13ObDatumRowkey5resetEv:5184 + 0: 162 + 53: _ZNK9oceanbase6common12ObIArrayWrapIPNS_7storage8ObITableEE2atEl:648 + 6: 162 + 54: _ZNK9oceanbase8memtable13ObMemtableKey10get_rowkeyEv:486 + 0: 162 + 81: _ZN9oceanbase11transaction9ObTransIDC2El:588 + 0: 84 + 90: _ZN9oceanbase8memtable9ObMvccRow21set_lower_lock_scanedEv:328 + 0: 82 + 48: _ZNK9oceanbase8memtable17ObMvccWriteResult10has_insertEv:0 + 0: 0 + 58: _ZNK9oceanbase8memtable9ObMvccRow20get_last_compact_cntEv:0 + 0: 0 + 59: _ZNK9oceanbase8memtable9ObMvccRow24get_total_trans_node_cntEv:0 + 0: 0 + 64: _ZNK9oceanbase8memtable9ObMvccRow16get_max_trans_idEv:22 + 0: _ZNK9oceanbase11transaction9ObTransIDcvlEv:22 + 0: 2 + 64.1: _ZN9oceanbase11transaction9ObTransIDC2El:6 + 0: 2 + 74.1: _ZNK9oceanbase8memtable14ObMemtableData8dup_sizeEv:15030 + 0: 1002 + 88: _ZN9oceanbase5share11ObTenantEnv3mtlIPNS_8memtable13ObLockWaitMgrEEET_v:22446 + 2: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:13158 + 2: 774 + 2.1: 0 + 2.2: 0 + 2.1: _ZN9oceanbase5share12ObTenantBase3getIPNS_8memtable13ObLockWaitMgrEEET_v:9288 + 0: _ZN9oceanbase5share12ObTenantBase9inner_getENS1_8IdentityIPNS_8memtable13ObLockWaitMgrEEE:9288 + 0: 774 + 92: _ZNK9oceanbase7storage8ObITable8TableKey13get_tablet_idEv:3192 + 0: 798 + 92.2: _ZN9oceanbase8memtable13ObLockWaitMgr15set_hash_holderIJRKNS_6common10ObTabletIDERKNS0_13ObMemtableKeyENS_11transaction9ObTransIDEEEEvDpOT_:19152 + 0: 798 + 0.3: 798 _ZN9oceanbase8memtable15RowHolderMapper15set_hash_holderERKNS_6common10ObTabletIDERKNS0_13ObMemtableKeyERKNS_11transaction9ObTransIDE:798 + 92.4: _ZN9oceanbase11transaction9ObTransIDD2Ev:26 + 0: 2 + 100: _ZNK9oceanbase11transaction8ObTxDesc19get_isolation_levelEv:0 + 0: 0 +_ZN9oceanbase3sql16ObDASTaskFactoryD2Ev:646947:5404 + 1: 5103 + 3: 5234 _ZN9oceanbase6common10ObObjStoreIPNS_3sql14ObDASBaseRtDefERNS0_12ObIAllocatorELb0EED2Ev:5449 + 3.3: 5460 _ZN9oceanbase6common10ObObjStoreIPNS_3sql14ObDASBaseCtDefERNS0_12ObIAllocatorELb0EED2Ev:5553 + 3.4: 5419 _ZN9oceanbase6common10ObObjStoreIPNS_3sql14ObDASExtraDataERNS0_12ObIAllocatorELb0EED2Ev:5498 + 3.5: 5494 _ZN9oceanbase6common10ObObjStoreIPNS_3sql16ObIDASTaskResultERNS0_12ObIAllocatorELb0EED2Ev:5536 + 3.6: 5121 _ZN9oceanbase6common10ObObjStoreIPNS_3sql12ObIDASTaskOpERNS0_12ObIAllocatorELb0EED2Ev:5176 + 2: _ZN9oceanbase3sql16ObDASTaskFactory7cleanupEv:381058 + 2: 5103 + 3.1: 0 + 6.1: 0 + 7: 0 + 8: 0 + 14: 5234 + 15.1: 57 + 18.1: 57 + 19: 57 + 20: 57 + 26: 5234 + 27.1: 57 + 30.1: 57 + 31: 57 + 32: 57 + 38: 5234 + 39.1: 57 + 42.1: 57 + 43: 57 + 44: 57 + 50: 5234 + 51.1: 57 + 54.1: 57 + 55: 57 + 56: 57 + 2: _ZNK9oceanbase6common10ObObjStoreIPNS_3sql12ObIDASTaskOpERNS0_12ObIAllocatorELb0EE5emptyEv:20412 + 0: 5103 + 12: _ZN9oceanbase6common10ObObjStoreIPNS_3sql12ObIDASTaskOpERNS0_12ObIAllocatorELb0EE5clearEv:0 + 0: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql12ObIDASTaskOpEEEE5clearEv:0 + 2: 0 + 3: 0 + 4: 0 + 14: _ZNK9oceanbase6common10ObObjStoreIPNS_3sql16ObIDASTaskResultERNS0_12ObIAllocatorELb0EE5emptyEv:26170 + 0: 5234 + 24: _ZN9oceanbase6common10ObObjStoreIPNS_3sql16ObIDASTaskResultERNS0_12ObIAllocatorELb0EE5clearEv:1197 + 0: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql16ObIDASTaskResultEEEE5clearEv:1197 + 2: 57 + 3: 57 + 4: 57 + 26: _ZNK9oceanbase6common10ObObjStoreIPNS_3sql14ObDASExtraDataERNS0_12ObIAllocatorELb0EE5emptyEv:26170 + 0: 5234 + 36: _ZN9oceanbase6common10ObObjStoreIPNS_3sql14ObDASExtraDataERNS0_12ObIAllocatorELb0EE5clearEv:1197 + 0: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql14ObDASExtraDataEEEE5clearEv:1197 + 2: 57 + 3: 57 + 4: 57 + 38: _ZNK9oceanbase6common10ObObjStoreIPNS_3sql14ObDASBaseCtDefERNS0_12ObIAllocatorELb0EE5emptyEv:41872 + 0: 5234 + 48: _ZN9oceanbase6common10ObObjStoreIPNS_3sql14ObDASBaseCtDefERNS0_12ObIAllocatorELb0EE5clearEv:1710 + 0: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql14ObDASBaseCtDefEEEE5clearEv:1710 + 2: 57 + 3: 57 + 4: 57 + 50: _ZNK9oceanbase6common10ObObjStoreIPNS_3sql14ObDASBaseRtDefERNS0_12ObIAllocatorELb0EE5emptyEv:41872 + 0: 5234 + 60: _ZN9oceanbase6common10ObObjStoreIPNS_3sql14ObDASBaseRtDefERNS0_12ObIAllocatorELb0EE5clearEv:1710 + 0: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql14ObDASBaseRtDefEEEE5clearEv:1710 + 2: 57 + 3: 57 + 4: 57 +_ZN9oceanbase3sql16ObDASTaskFactoryD1Ev:646947:5404 + 1: 5103 + 3: 5234 _ZN9oceanbase6common10ObObjStoreIPNS_3sql14ObDASBaseRtDefERNS0_12ObIAllocatorELb0EED2Ev:5449 + 3.3: 5460 _ZN9oceanbase6common10ObObjStoreIPNS_3sql14ObDASBaseCtDefERNS0_12ObIAllocatorELb0EED2Ev:5553 + 3.4: 5419 _ZN9oceanbase6common10ObObjStoreIPNS_3sql14ObDASExtraDataERNS0_12ObIAllocatorELb0EED2Ev:5498 + 3.5: 5494 _ZN9oceanbase6common10ObObjStoreIPNS_3sql16ObIDASTaskResultERNS0_12ObIAllocatorELb0EED2Ev:5536 + 3.6: 5121 _ZN9oceanbase6common10ObObjStoreIPNS_3sql12ObIDASTaskOpERNS0_12ObIAllocatorELb0EED2Ev:5176 + 2: _ZN9oceanbase3sql16ObDASTaskFactory7cleanupEv:381058 + 2: 5103 + 3.1: 0 + 6.1: 0 + 7: 0 + 8: 0 + 14: 5234 + 15.1: 57 + 18.1: 57 + 19: 57 + 20: 57 + 26: 5234 + 27.1: 57 + 30.1: 57 + 31: 57 + 32: 57 + 38: 5234 + 39.1: 57 + 42.1: 57 + 43: 57 + 44: 57 + 50: 5234 + 51.1: 57 + 54.1: 57 + 55: 57 + 56: 57 + 2: _ZNK9oceanbase6common10ObObjStoreIPNS_3sql12ObIDASTaskOpERNS0_12ObIAllocatorELb0EE5emptyEv:20412 + 0: 5103 + 12: _ZN9oceanbase6common10ObObjStoreIPNS_3sql12ObIDASTaskOpERNS0_12ObIAllocatorELb0EE5clearEv:0 + 0: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql12ObIDASTaskOpEEEE5clearEv:0 + 2: 0 + 3: 0 + 4: 0 + 14: _ZNK9oceanbase6common10ObObjStoreIPNS_3sql16ObIDASTaskResultERNS0_12ObIAllocatorELb0EE5emptyEv:26170 + 0: 5234 + 24: _ZN9oceanbase6common10ObObjStoreIPNS_3sql16ObIDASTaskResultERNS0_12ObIAllocatorELb0EE5clearEv:1197 + 0: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql16ObIDASTaskResultEEEE5clearEv:1197 + 2: 57 + 3: 57 + 4: 57 + 26: _ZNK9oceanbase6common10ObObjStoreIPNS_3sql14ObDASExtraDataERNS0_12ObIAllocatorELb0EE5emptyEv:26170 + 0: 5234 + 36: _ZN9oceanbase6common10ObObjStoreIPNS_3sql14ObDASExtraDataERNS0_12ObIAllocatorELb0EE5clearEv:1197 + 0: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql14ObDASExtraDataEEEE5clearEv:1197 + 2: 57 + 3: 57 + 4: 57 + 38: _ZNK9oceanbase6common10ObObjStoreIPNS_3sql14ObDASBaseCtDefERNS0_12ObIAllocatorELb0EE5emptyEv:41872 + 0: 5234 + 48: _ZN9oceanbase6common10ObObjStoreIPNS_3sql14ObDASBaseCtDefERNS0_12ObIAllocatorELb0EE5clearEv:1710 + 0: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql14ObDASBaseCtDefEEEE5clearEv:1710 + 2: 57 + 3: 57 + 4: 57 + 50: _ZNK9oceanbase6common10ObObjStoreIPNS_3sql14ObDASBaseRtDefERNS0_12ObIAllocatorELb0EE5emptyEv:41872 + 0: 5234 + 60: _ZN9oceanbase6common10ObObjStoreIPNS_3sql14ObDASBaseRtDefERNS0_12ObIAllocatorELb0EE5clearEv:1710 + 0: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql14ObDASBaseRtDefEEEE5clearEv:1710 + 2: 57 + 3: 57 + 4: 57 +_ZN9oceanbase6common13ObSEArrayImplINS0_10ObNewRangeELl4ENS0_19ModulePageAllocatorELb0EE7destroyEv:646598:4632 + 1: 4297 + 4.1: 4297 + 4.3: 4297 + 9: 4297 + 11: 16 + 13: 4420 + 15: 4420 + 24: 4420 + 25: 4420 + 5: _ZN9oceanbase6common10ObNewRangeD2Ev:193365 + 2: _ZN9oceanbase6common10ObNewRange5resetEv:193365 + 2: 4297 + 3: _ZN9oceanbase6common12ObBorderFlag8set_dataEa:21485 + 0: 4297 + 4: _ZN9oceanbase6common8ObRowkey6assignEPNS0_5ObObjEl:77346 + 2: 4297 + 10: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObNewRangeELl4ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:976 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:976 + 0: 16 + 0.2: 16 + 0.1: _ZN9oceanbase6common7ob_freeEPv:640 + 2: 16 + 3: 16 + 4: 16 + 5: 16 + 4: _ZL12abort_unlessb:144 + 5: 16 + 6: 16 +_ZN9oceanbase6common13ObTimeUtility15current_time_nsEv:645645:15421 + 1: 15323 + 4: 16632 + 5.1: 0 + 6: 0 + 8: 16632 +_ZN9oceanbase3sql15ObCacheObjGuard19force_early_releaseEPNS0_11ObPlanCacheE:644839:5053 + 1: 4952 + 2: 4952 + 3: 4952 + 5.1: 4447 + 6: 0 + 7.1: 0 + 9: 4447 + 10: 4034 + 12: 4530 + 9: _ZN9oceanbase3sql20ObCacheObjectFactory4freeINS0_17ObILibCacheObjectEEEvPNS0_11ObPlanCacheERPT_NS0_16CacheRefHandleIDE:292609 + 3: _ZN9oceanbase3sql20ObCacheObjectFactory10inner_freeEPNS0_11ObPlanCacheERPNS0_17ObILibCacheObjectENS0_16CacheRefHandleIDE:292609 + 7: _ZN9oceanbase3sql11ObPlanCache14free_cache_objERPNS0_17ObILibCacheObjectENS0_16CacheRefHandleIDE:292609 + 2: _ZN9oceanbase3sql17ObLCObjectManager4freeERPNS0_17ObILibCacheObjectENS0_16CacheRefHandleIDE:292609 + 2: _ZN9oceanbase3sql17ObLCObjectManager11common_freeEPNS0_17ObILibCacheObjectENS0_16CacheRefHandleIDE:292609 + 3: 4447 + 7: 4034 + 8: 4034 + 9: 4034 + 10: 0 + 11.1: 0 + 17.1: 0 + 18: 0 + 19: 0 + 20.1: 0 + 21.1: 0 + 21.2: 0 + 22.1: 0 + 25.1: 0 + 7: _ZN9oceanbase3sql17ObILibCacheObject13dec_ref_countENS0_16CacheRefHandleIDE:184834 + 2: 4447 + 3: 4447 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:4582 + 4: 0 + 5: 0 + 6.1: 0 + 11: 4034 + 8.1: _ZN9oceanbase3sql19ObCacheRefHandleMgr15record_deref_opENS0_16CacheRefHandleIDE:0 + 3: 0 + 4.1: 0 + 9: _ZNK9oceanbase3sql17ObILibCacheObject8added_lcEv:16136 + 0: 4034 + 10.1: _ZN9oceanbase3sql17ObILibCacheObject20set_logical_del_timeEl:0 + 0: 0 + 21.1: _ZNK9oceanbase3sql17ObILibCacheObject13get_object_idEv:0 + 0: 0 +_ZN9oceanbase6common13ObObjCmpFuncs16compare_nullsafeERKNS0_5ObObjES4_NS0_15ObCollationTypeE:643508:2029 + 3: 1984 + 6: 1933 + 10.1: 0 + 11: 0 + 14: 2034 _ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE1ELS3_1EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE:1932 _ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE11ELS3_11EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE:2 + 15.1: 0 + 16: 0 + 19: 2034 + 6.2: _ZN9oceanbase6common13ObObjCmpFuncs20can_cmp_without_castERKNS0_9ObObjMetaES4_NS0_7ObCmpOpERPFiRKNS0_5ObObjES8_RKNS0_12ObCompareCtxEE:351627 + 12.1: 0 + 13: 1989 + 15.1: 2062 + 16.1: 2151 + 18.1: 1933 + 18.2: 14 + 18.4: 14 + 25: 1933 + 6: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:13888 + 0: 1984 + 7: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:15872 + 0: 1984 + 8: _ZNK9oceanbase6common9ObObjMeta14get_type_classEv:45797 + 0.1: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:45797 + 2: 2090 + 2.1: 1984 + 2.3: 1984 + 9: _ZNK9oceanbase6common9ObObjMeta14get_type_classEv:27882 + 0.1: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:27882 + 2: 1984 + 2.1: 1989 + 12: _ZN9oceanbase6common13ObObjCmpFuncs25is_datetime_timestamp_cmpENS0_9ObObjTypeES2_:13903 + 2: 1984 + 3.1: 1989 + 13.1: _ZN9oceanbase6common13ObObjCmpFuncs17is_otimestamp_cmpENS0_9ObObjTypeES2_:46276 + 2: 2012 + 2.2: 0 + 3.1: 2012 + 3.3: 0 + 18.1: _ZN9oceanbase6common17ob_is_string_typeENS0_9ObObjTypeE:31364 + 0: 2090 + 0: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:12540 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:12540 + 2: 2090 + 18.2: _ZN9oceanbase6common17ob_is_string_typeENS0_9ObObjTypeE:210 + 0: 14 + 0: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:70 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:70 + 2: 14 + 22.1: _ZN9oceanbase6common13ObObjCmpFuncs12get_cmp_funcENS0_14ObObjTypeClassES2_NS0_7ObCmpOpERPFiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxEE:81186 + 7: 1933 + 13: 1933 + 13: _ZN9oceanbase3lib14is_oracle_modeEv:108248 + 2: _ZN9oceanbase3lib15get_compat_modeEv:108248 + 2: 1933 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:77320 + 2: 1933 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 13.1: _ZN9oceanbase6common12ObCompareCtxC2ENS0_9ObObjTypeENS0_15ObCollationTypeEblNS0_12ObCmpNullPosE:57990 + 5: 1933 + 6: 1933 + 7: 1933 + 8: 1933 + 9: 1933 +_ZN9oceanbase11transaction12ObLSTxCtxMgr13revert_tx_ctxEPNS0_10ObTransCtxE:643188:1560 + 1: 1482 + 2: 1482 + 4: 1482 + 4.1: 0 + 2: _ZN9oceanbase6common8TCRWLock10RLockGuardC2ERS1_:259350 + 0: 1482 + 0: _ZN9oceanbase6common8TCRWLock6rdlockEl:253422 + 3.1: 0 + 4: 0 + 5: 0 + 3.2: _ZN9oceanbase6common8TCRWLock10try_rdlockEv:253422 + 3: 1482 + 5: 1482 + 8.1: 0 + 4: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:10374 + 0: 1482 + 4.1: _ZN9oceanbase6common5TCRef7inc_refEPi:191178 + 2: 1482 + 4.1: 1482 + 4.2: 0 + 6: 1482 + 6.1: 1482 + 10: 1482 + 2: _ZN9oceanbase6common8get_itidEv:41496 + 4: 1482 + 5: 0 + 6: 0 + 8: 0 + 11: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 8: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:0 + 0: 0 + 9: _ZN9oceanbase6common9LWaitCond6signalEv:0 + 2: 0 + 2.1: 0 + 3: 0 + 3: _ZN9oceanbase11transaction12ObLSTxCtxMgr26revert_tx_ctx_without_lockEPNS0_10ObTransCtxE:74100 + 5: 1482 + 6.1: 0 + 8.1: 1482 + 9.1: 0 + 12: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE6revertEPS3_:38532 + 3: 1482 + 3: _ZN9oceanbase11transaction15ObTransHashLinkINS0_10ObTransCtxEE7dec_refEi:22230 + 2: 1482 + 3: 1482 + 4.1: 0 + 4: _ZN9oceanbase11transaction13TransCtxAlloc10free_valueEPNS0_10ObTransCtxE:0 + 3: 0 + 4: _ZN9oceanbase6common8TCRWLock10RLockGuardD2Ev:226746 + 0: 1482 + 0.2: 0 + 0: _ZN9oceanbase6common8TCRWLock8rdunlockEv:220818 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:7410 + 0: 1482 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPi:182286 + 2: 1482 + 4.1: 1482 + 4.2: 0 + 6: 1482 + 6.1: 1482 + 10: 1482 + 2: _ZN9oceanbase6common8get_itidEv:41496 + 4: 1482 + 5: 0 + 6: 0 + 8: 0 + 11: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:19266 + 2: 1482 + 2.1: 0 + 3: 0 +_ZN9oceanbase3sql15ObTableUpdateOp18inner_get_next_rowEv:642218:556 + 1: 500 + 2: 500 + 3: 500 + 7.1: 1070 + 8: 994 + 9.1: 0 + 10.1: 522 + 12.1: 2 + 14: 522 + 16.1: 518 + 17: 0 + 18.1: 0 + 20.1: 510 + 21.1: 0 + 22.1: 510 + 22.2: 0 + 24: 0 + 27: 510 + 32: 523 + 32.1: 557 + 33.1: 2 + 40: 532 + 486.1: 0 + 8: _ZN9oceanbase3sql10ObOperator16try_check_statusEv:32826 + 2: 994 + 3: 0 + 10.1: _ZN9oceanbase3sql15ObTableUpdateOp23get_next_row_from_childEv:109351 + 2: 994 + 4: 1077 _ZN9oceanbase3sql10ObOperator12get_next_rowEv:1010 + 6.1: 2 + 9.1: 541 _ZZN9oceanbase3sql15ObTableUpdateOp23get_next_row_from_childEvENKUlPKcE0_clES3_:551 + 11: 518 + 3: _ZN9oceanbase3sql10ObOperator20clear_evaluated_flagEv:46336 + 2.1: 994 + 2.3: 499 + 3: 503 + 2.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql10ObEvalInfoEE5countEv:7032 + 0: 994 + 3: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql10ObEvalInfoEE2atEl:5948 + 6: 503 + 3.1: _ZN9oceanbase3sql10ObEvalInfo20clear_evaluated_flagEv:14009 + 2: 503 + 4: 260 + 16.1: _ZN9oceanbase3sql11get_my_specINS0_15ObTableUpdateOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:2072 + 5: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:2072 + 2: 518 + 20.1: _ZN9oceanbase3sql15ObTableUpdateOp17update_row_to_dasEv:246196 + 2: 518 + 4.1: 510 + 4.2: 518 + 4.3: 518 + 4.5: 500 + 7.1: 487 + 7.2: 998 + 7.3: 998 + 7.5: 487 + 9: 510 + 11: 510 + 12: 510 + 13: 510 + 14: 510 + 15: 552 _ZN9oceanbase3sql12ObDMLService18process_update_rowERKNS0_10ObUpdCtDefERNS0_10ObUpdRtDefERbRNS0_15ObTableModifyOpE:534 + 16.1: 0 + 17.1: 552 + 21: 552 + 22.1: 0 + 23.1: 552 + 25.1: 0 + 26.1: 552 _ZN9oceanbase3sql12ObDMLService10update_rowERKNS0_10ObUpdCtDefERNS0_10ObUpdRtDefEPKNS0_14ObDASTabletLocES9_RNS0_10ObDMLRtCtxE:559 + 27.1: 0 + 29: 487 + 33: 489 + 34: 500 + 35.1: 0 + 40: 510 + 40.1: 0 + 41: 0 + 42: 0 + 43: 0 + 43.4: 0 + 47.1: 2 + 50: 510 + 65362.1: 0 + 65382: 0 + 4.2: _ZN9oceanbase3sql11get_my_specINS0_15ObTableUpdateOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:2000 + 5: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:2000 + 2: 500 + 5.1: _ZNK9oceanbase6common12ObIArrayWrapINS0_11ObArrayWrapIPNS_3sql10ObUpdCtDefEEEE2atEl:3570 + 6: 510 + 6: _ZN9oceanbase6common12ObIArrayWrapINS0_11ObArrayWrapINS_3sql10ObUpdRtDefEEEE2atEl:3570 + 6: 510 + 7.2: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql10ObUpdCtDefEE5countEv:9690 + 9: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql10ObUpdCtDefEE2atEl:3570 + 6: 510 + 10: _ZN9oceanbase6common12ObIArrayWrapINS_3sql10ObUpdRtDefEE2atEl:19380 + 6: 510 + 21: _ZN9oceanbase3sql15ObTableUpdateOp15calc_tablet_locERKNS0_10ObUpdCtDefERNS0_10ObUpdRtDefERPNS0_14ObDASTabletLocES9_:35312 + 0: 0 + 5: 552 + 6: 552 + 9: 0 + 10: 0 + 12: 0 + 13.1: 2 + 14.1: 2 + 15.2: 0 + 16.1: 2 + 20: 0 + 21: 0 + 22.1: 0 + 23.1: 0 + 23.2: 0 + 24.1: 2 + 26: 0 + 28.2: 0 + 28.3: 0 + 29.1: 2 + 30.2: 0 + 30.3: 0 + 31.1: 2 + 36: 552 + 37: 552 + 39: 2 + 6: _ZN9oceanbase3sql11get_my_specINS0_15ObTableUpdateOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:2208 + 5: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:2208 + 2: 552 + 7: _ZN9oceanbase6common10ObTabletIDC2Em:0 + 0: 0 + 8: _ZN9oceanbase6common10ObTabletIDC2Em:0 + 0: 0 + 13: _ZN9oceanbase3sql15ObTableUpdateOp20calc_multi_tablet_idERKNS0_10ObUpdCtDefERNS0_6ObExprERNS_6common10ObTabletIDEb:5554 + 5: 0 + 6: 0 + 7: 0 + 11.1: 2 + 19: 2 + 15.1: _ZN9oceanbase3sql15ObTableUpdateOp20calc_multi_tablet_idERKNS0_10ObUpdCtDefERNS0_6ObExprERNS_6common10ObTabletIDEb:70 + 6: 0 + 7: 0 + 11.1: 2 + 12.2: 0 + 13: 0 + 15: 0 + 16.1: 0 + 19: 0 + 12.2: _ZNK9oceanbase6common12ObIArrayWrapImE5emptyEv:0 + 0: 0 + 0: _ZNK9oceanbase6common12ObIArrayWrapImE5countEv:0 + 0: 0 + 13.1: _ZN9oceanbase6common18has_exist_in_arrayImEEbRKNS0_8ObIArrayIT_EERKS3_Pl:0 + 4.1: 0 + 4.3: 0 + 5: 0 + 65227.1: 0 + 5: _ZNK9oceanbase6common12ObIArrayWrapImE2atEl:0 + 22: _ZNK9oceanbase6common10ObTabletIDeqERKS1_:0 + 0: 0 + 30.1: _ZN9oceanbase3sql13ObExecContext11get_das_ctxEv:0 + 0: 0 + 36: _ZN9oceanbase3sql12get_my_inputINS0_15ObTableUpdateOpEEERNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE5InputERKS5_:3864 + 7: _ZNK9oceanbase3sql15ObTableModifyOp9get_inputEv:3864 + 2: 552 + 36.1: _ZN9oceanbase3sql20ObTableModifyOpInput14get_tablet_locEv:2208 + 0: 552 + 23.2: _ZN9oceanbase3sql13TriggerHandle19do_handle_after_rowERNS0_15ObTableModifyOpERKNS0_14ObTrigDMLCtDefERNS0_14ObTrigDMLRtDefEm:11700 + 6: 552 + 7: 552 + 8: 0 + 11: 0 + 13.1: 0 + 13.2: 0 + 13.3: 0 + 15: 0 + 15.1: 0 + 16: 0 + 17.1: 0 + 18.2: 0 + 18.4: 2 + 18.10: 0 + 20: 0 + 23: 0 + 24.2: 0 + 24.4: 0 + 24.10: 0 + 7: _ZNK9oceanbase5share6schema14ObTimingPoints13has_after_rowEv:4416 + 0: 552 + 14: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql12ObTriggerArgEE2atEl:0 + 6: 0 + 15: _ZNK9oceanbase3sql12ObTriggerArg19has_after_row_pointEv:0 + 0: _ZNK9oceanbase5share6schema14ObTimingPoints13has_after_rowEv:0 + 0: 0 + 15.1: _ZNK9oceanbase3sql12ObTriggerArg18has_trigger_eventsEm:0 + 0: _ZNK9oceanbase5share6schema15ObTriggerEvents9has_valueEm:0 + 0: 0 + 17.1: _ZNK9oceanbase3sql12ObTriggerArg18has_when_conditionEv:0 + 0: _ZNK9oceanbase5share6schema14ObTimingPoints18has_when_conditionEv:0 + 0: 0 + 620.2: 0 + 18.2: _ZNK9oceanbase3sql12ObTriggerArg14get_trigger_idEv:0 + 0: 0 + 24.2: _ZNK9oceanbase3sql12ObTriggerArg14get_trigger_idEv:0 + 0: 0 + 33: _ZN9oceanbase6common12ObIArrayWrapINS_3sql10ObUpdRtDefEE2atEl:1467 + 6: 489 + 34: _ZN9oceanbase3sql15ObTableModifyOp20merge_implict_cursorEllll:21027 + 5: 489 + 6: 489 + 7: 489 + 8: 0 + 9: 0 + 10.1: 0 + 12: 0 + 13: 0 + 15: 0 + 16: 0 + 21: 0 + 23: 0 + 24: 0 + 25: 0 + 25.3: 0 + 30: 0 + 31.1: 0 + 36: 0 + 6: _ZN9oceanbase3sql13ObExecContext11get_sql_ctxEv:5379 + 0: 489 + 9.1: _ZNK9oceanbase3sql6ObExpr4evalERNS0_9ObEvalCtxERPNS_6common7ObDatumE:0 + 4: 0 + 6: 0 + 7: 0 + 9: 0 + 10: 0 + 10.1: 0 + 11: 0 + 13: 0 + 15.1: 0 + 15.2: 0 + 17: 0 + 18: 0 + 20: 0 + 21: 0 + 22: 0 + 9: _ZNK9oceanbase3sql6ObExpr15is_batch_resultEv:0 + 0: 0 + 11: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 24: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:0 + 0: 0 + 12: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:0 + 2: 0 + 13: _ZNK9oceanbase6common7ObDatum7get_intEv:0 + 0: 0 + 14: _ZN9oceanbase3sql20ObImplicitCursorInfoC2Ev:0 + 3: 0 + 22: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:0 + 2: 0 + 43: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:0 + 2: 0 + 43.1: _ZN9oceanbase3sql11get_my_specINS0_15ObTableUpdateOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:0 + 5: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:0 + 2: 0 + 43.2: _ZNK9oceanbase6common12ObIArrayWrapINS0_11ObArrayWrapIPNS_3sql10ObUpdCtDefEEEE2atEl:0 + 6: 0 + 43.3: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql10ObUpdCtDefEE2atEl:0 + 6: 0 + 23: _ZN9oceanbase3sql10ObOperator20clear_evaluated_flagEv:0 + 2.1: 0 + 2.3: 0 + 3: 0 + 2.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql10ObEvalInfoEE5countEv:0 + 0: 0 + 3: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql10ObEvalInfoEE2atEl:0 + 6: 0 + 3.1: _ZN9oceanbase3sql10ObEvalInfo20clear_evaluated_flagEv:0 + 2: 0 + 4: 0 + 25: _ZN9oceanbase3sql13ObErrLogRtDef5resetEv:0 + 2: 0 + 3: 0 + 27: _ZN9oceanbase3sql11get_my_specINS0_15ObTableUpdateOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:2040 + 5: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:2040 + 2: 510 + 32: _ZN9oceanbase3sql11get_my_specINS0_15ObTableUpdateOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:2092 + 5: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:2092 + 2: 523 + 32.1: _ZN9oceanbase3sql15ObTableUpdateOp18upd_rows_post_procEv:127354 + 2: 523 + 3: 523 + 8: 523 + 9: 537 _ZN9oceanbase3sql8ObDASRef22pick_del_task_to_firstEv:537 + 10.1: 2 + 11.1: 528 + 12.1: 2 + 15.1: 528 + 15.2: 527 + 15.3: 528 + 17: 515 + 18: 515 + 19: 528 + 21: 2 + 30: 520 + 33.1: 520 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:540 + 34: 2 + 35.1: 2 + 39: 557 + 3: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:3661 + 2: 523 + 4: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:3661 + 2: 523 + 8: _ZNK9oceanbase3sql8ObDASRef8has_taskEv:3661 + 0: _ZNK9oceanbase6common10ObObjStoreIPNS_3sql12ObIDASTaskOpERNS0_12ObIAllocatorELb0EE5emptyEv:3661 + 0: 523 + 11.1: _ZN9oceanbase3sql15ObTableModifyOp19submit_all_dml_taskEv:34642 + 2: 537 + 3: 537 + 4: 537 _ZN9oceanbase3sql8ObDASRef16execute_all_taskEv:556 + 5.1: 2 + 6.1: 559 _ZN9oceanbase3sql8ObDASRef14close_all_taskEv:548 + 7.1: 2 + 12: 528 + 3: _ZNK9oceanbase3sql8ObDASRef8has_taskEv:3759 + 0: _ZNK9oceanbase6common10ObObjStoreIPNS_3sql12ObIDASTaskOpERNS0_12ObIAllocatorELb0EE5emptyEv:3759 + 0: 537 + 9: _ZN9oceanbase3sql10ObDMLRtCtx5reuseEv:2244 + 2: 559 _ZN9oceanbase3sql8ObDASRef5reuseEv:567 + 15.2: _ZNK9oceanbase6common12ObIArrayWrapINS0_11ObArrayWrapINS_3sql10ObUpdRtDefEEEE5countEv:3696 + 16: _ZN9oceanbase6common12ObIArrayWrapINS0_11ObArrayWrapINS_3sql10ObUpdRtDefEEEE2atEl:3696 + 16.1: _ZN9oceanbase6common12ObIArrayWrapINS_3sql10ObUpdRtDefEE2atEl:1545 + 6: 515 + 28: _ZN9oceanbase3sql17ObPhysicalPlanCtx21add_row_matched_countEl:3640 + 0: 520 + 29: _ZN9oceanbase3sql17ObPhysicalPlanCtx24add_row_duplicated_countEl:3640 + 0: 520 + 30.3: _ZN9oceanbase3sql17ObPhysicalPlanCtx17add_affected_rowsEl:3640 + 2: 520 + 33.2: _ZNK9oceanbase6common14ObServerConfig22enable_defensive_checkEv:4916 + 3: 544 + 3.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:18 + 2: 2 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:8 + 2: 2 +_ZN9oceanbase3sql8ObDASCtx16is_partition_hitEv:632370:5485 + 1: 5047 + 3: 5047 + 4: 5047 + 4.1: 4565 + 5: 4565 + 14: 5074 + 4: _ZNK9oceanbase6common6ObListIPNS_3sql13ObDASTableLocENS0_12ObIAllocatorEE5emptyEv:25235 + 2: 5047 + 4.1: _ZN9oceanbase6common6ObListIPNS_3sql13ObDASTableLocENS0_12ObIAllocatorEE9get_firstEv:13695 + 0: 4565 + 4.2: _ZNK9oceanbase6common6ObListIPNS_3sql14ObDASTabletLocENS0_12ObIAllocatorEE5emptyEv:22825 + 2: 4565 + 5: _ZN9oceanbase8observer8ObServer12get_instanceEv:59345 + 2: 4565 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 5.2: _ZN9oceanbase6common6ObListIPNS_3sql13ObDASTableLocENS0_12ObIAllocatorEE9get_firstEv:13695 + 0: 4565 + 5.3: _ZN9oceanbase6common6ObListIPNS_3sql14ObDASTabletLocENS0_12ObIAllocatorEE9get_firstEv:18260 + 0: 4565 + 5.4: _ZNK9oceanbase6common6ObAddreqERKS1_:269335 + 2: 4565 + 2.1: 4565 + 2.2: 4565 +_ZNK9oceanbase3lib17ObMallocAllocator24get_tenant_ctx_allocatorEmm:631475:10043 + 1: 9425 + 3: 9425 + 4: 9425 + 7: 0 + 9: 0 + 10.1: 0 + 10.3: 0 + 10.4: 0 + 13.2: 0 + 16.1: 0 + 17: 9425 + 8: _ZN9oceanbase5obsys12ObRLockGuardC2ERKNS0_8ObRWLockEb:0 + 0: _ZNK9oceanbase5obsys8ObRWLock5rlockEv:0 + 0: 0 + 0.1: _ZN9oceanbase5obsys15ObLockGuardBaseINS0_7ObRLockEEC2ERKS2_b:0 + 0: 0 + 2.1: 0 + 2.3: 0 + 10.2: _ZN9oceanbase3lib20ObTenantCtxAllocator13get_tenant_idEv:0 + 2: 0 +_ZNK9oceanbase6common8ObRowkey5equalERKS1_Rb:629433:2783 + 1: 2751 + 3: 2751 + 4: 2751 + 5: 0 + 6.1: 2751 + 9: 2751 + 10.1: 2729 + 10.2: 2751 + 11: 2699 + 13: 2699 + 15.1: 0 + 17.1: 2699 + 20: 2699 + 30: 2729 + 33: 0 + 36: 0 + 39: 0 + 42: 0 + 45: 0 + 45.1: 0 + 45.2: 0 + 51: 0 + 51.1: 0 + 52: 0 + 52.1: 0 + 53: 0 + 57: 0 + 57.1: 0 + 58: 0 + 63: 0 + 63.1: 0 + 64: 0 + 64.1: 0 + 65: 0 + 66: 0 + 72: 0 + 72.3: 0 + 76: 0 + 77: 0 + 77.2: 0 + 79.1: 0 + 86.1: 0 + 89.1: 0 + 96: 2769 + 13: _ZNK9oceanbase6common5ObObj14get_type_classEv:40485 + 0: _ZNK9oceanbase6common9ObObjMeta14get_type_classEv:40485 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:24291 + 0: 2699 + 0.1: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:16194 + 2: 2699 + 2.1: 2699 + 17.1: _ZNK9oceanbase6common5ObObj14get_type_classEv:40485 + 0: _ZNK9oceanbase6common9ObObjMeta14get_type_classEv:40485 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:24291 + 0: 2699 + 0.1: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:16194 + 2: 2699 + 53: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 53.1: _ZNK9oceanbase6common5ObObj24is_varying_len_char_typeEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta24is_varying_len_char_typeEv:0 + 0: 0 + 0: _ZNK9oceanbase6common9ObObjMeta10is_varcharEv:0 + 2: 0 + 2.1: 0 + 54.1: _ZNK9oceanbase6common5ObObj24is_varying_len_char_typeEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta24is_varying_len_char_typeEv:0 + 0: 0 + 0: _ZNK9oceanbase6common9ObObjMeta10is_varcharEv:0 + 2: 0 + 2.1: 0 + 57: _ZNK9oceanbase6common5ObObj18get_collation_typeEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta18get_collation_typeEv:0 + 0: 0 + 72: _ZNK9oceanbase6common5ObObj14is_interval_ymEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta14is_interval_ymEv:0 + 0: 0 + 72.1: _ZNK9oceanbase6common5ObObj15get_interval_ymEv:0 + 0: 0 + 72.4: _ZNK9oceanbase6common5ObObj15get_interval_ymEv:0 + 0: 0 + 72.5: _ZNK9oceanbase6common17ObIntervalYMValueeqERKS1_:0 + 2: 0 + 73: _ZNK9oceanbase6common5ObObj15get_interval_dsEv:0 + 0: 0 + 73.2: _ZNK9oceanbase6common17ObIntervalDSValueeqERKS1_:0 + 2: _ZNK9oceanbase6common17ObIntervalDSValue7compareERKS1_:0 + 7.1: 0 + 77: _ZNK9oceanbase6common5ObObj10get_urowidEv:0 + 2: 0 + 77.1: _ZNK9oceanbase6common5ObObj10get_urowidEv:0 + 2: 0 +_ZN9oceanbase3sqlL14get_tx_serviceEPNS0_18ObBasicSessionInfoERPNS_11transaction14ObTransServiceE.2477d7488918a1107364fd115ff965f5:629272:4952 + 2: 4816 + 3: 4816 + 4: 4816 + 5: 4816 + 6: 4814 + 7: 4814 + 8: 0 + 9.1: 0 + 12: 0 + 13: 4816 + 14: 0 + 15.1: 0 + 18: 4759 + 4: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:33712 + 0: 4816 + 6.1: _ZNK9oceanbase11transaction8ObTxDesc13get_tenant_idEv:19256 + 0: 4814 + 13: _ZN9oceanbase5share11ObTenantEnv3mtlIPNS_11transaction14ObTransServiceEEET_m:154112 + 3: 4816 + 3: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:72240 + 2: 4816 + 2.1: 0 + 2.2: 0 + 3.1: _ZNK9oceanbase5share12ObTenantBase2idEv:33712 + 0: 4816 +_ZN9oceanbase11transaction14ObTransService23check_replica_readable_ElbNS0_16ObTxReadSnapshot3SRCERKNS_5share6ObLSIDElRNS_7storage4ObLSE:626377:4227 + 6: 3760 + 7: 3760 + 8: 3760 + 9: 3760 + 11: 3760 + 12: 3760 + 13: 4077 + 13.1: 3760 _ZN9oceanbase7storage13ObLSTxService21get_tx_ls_log_adapterEv:3998 + 13.2: 3779 _ZN9oceanbase11transaction16ObLSTxLogAdapter8get_roleERbRl:3950 + 14.1: 15 + 15.1: 4077 + 16: 4077 + 17.1: 15 + 20: 15 + 22: 15 + 23.1: 15 + 25: 15 + 29.1: 4077 _ZZN9oceanbase11transaction14ObTransService23check_replica_readable_ElbNS0_16ObTxReadSnapshot3SRCERKNS_5share6ObLSIDElRNS_7storage4ObLSEENK6$_1025clEPKc.93feb755617c21c32b229b78773c290c:4207 + 30: 4054 + 13: _ZN9oceanbase7storage4ObLS10get_tx_svrEv:26320 + 0: 3760 +_ZN9oceanbase4easy7cleanupEP14easy_request_tPv:625793:5279 + 1: 5279 + 3: 5279 + 3.1: 5279 + 4.1: 1 + 6: 5279 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:5281 + 7: 4846 + 8: 4846 + 9: 5358 _ZN9oceanbase7obmysql14ObMySQLHandler7cleanupEP14easy_request_tPv:5324 + 11.1: 1 + 13: 5358 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:5420 + 14: 5247 + 15.1: 1 + 18: 5247 + 7: _ZN9oceanbase4easyL14packet_handlerEP17easy_connection_t:116304 + 3: 4846 + 3.1: 4846 + 4: 4846 +_ZN9oceanbase5share19ObLSReplicaLocation5resetEv:625398:8874 + 1: 8632 + 4: 8632 + 5: 8632 + 7: 8632 _ZN9oceanbase5share17ObLSRestoreStatusaSERKNS1_6StatusE:9065 + 8: 9281 + 2: _ZN9oceanbase6common6ObAddr5resetEv:34528 + 2: 8632 + 6: _ZN9oceanbase6common17ObReplicaProperty5resetEv:138112 + 2: 8632 +_ZN9oceanbase7obmysql6OMPKOKC2Ev:621738:1542 + 2: 1454 + 9: 1454 + 10: 1420 + 12: 1419 + 14: 1454 + 15: 1419 + 0: _ZN9oceanbase7obmysql13ObMySQLPacketC2Ev:36350 + 1.1: 1454 + 1: _ZN9oceanbase7obmysql19ObMySQLPacketHeaderC2Ev:15994 + 1: 1454 + 4: _ZN9oceanbase7obmysql19ObServerStatusFlagsC2Et:10178 + 0: 1454 + 6: _ZN9oceanbase6common8ObStringC2Ev:17040 + 1: 1420 + 9: _ZN9oceanbase6common9ObSEArrayINS_7obmysql10ObCommonKVINS0_8ObStringES4_EELl16ENS0_19ModulePageAllocatorELb0EEC2Ev:214420 + 0.1: 1420 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_7obmysql10ObCommonKVINS0_8ObStringES4_EELl16ENS0_19ModulePageAllocatorELb0EEC2ElRKS6_:193120 + 5: 1420 + 6: 1420 + 8: 1420 + 17.1: 1420 + 2: _ZN9oceanbase6common8ObIArrayINS_7obmysql10ObCommonKVINS0_8ObStringES4_EEEC2EPS5_l:17040 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_7obmysql10ObCommonKVINS0_8ObStringES4_EEEC2EPS5_l:17040 + 0: 1420 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:80940 + 0: 1420 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:35500 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:35500 + 2: 1420 + 8: 1420 + 10: _ZN9oceanbase6common9ObSEArrayINS_7obmysql10ObCommonKVINS0_8ObStringES4_EELl8ENS0_19ModulePageAllocatorELb0EEC2Ev:201498 + 0.1: 1419 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_7obmysql10ObCommonKVINS0_8ObStringES4_EELl8ENS0_19ModulePageAllocatorELb0EEC2ElRKS6_:175956 + 5: 1419 + 6: 1419 + 8: 1419 + 17.1: 1419 + 2: _ZN9oceanbase6common8ObIArrayINS_7obmysql10ObCommonKVINS0_8ObStringES4_EEEC2EPS5_l:25542 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_7obmysql10ObCommonKVINS0_8ObStringES4_EEEC2EPS5_l:25542 + 0: 1419 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:55341 + 0: 1419 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:35475 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:35475 + 2: 1419 + 8: 1419 + 11: _ZN9oceanbase7obmysql22ObMySQLCapabilityFlagsC2Ev:14190 + 0: 1419 +_ZN9oceanbase7obmysql6OMPKOKC1Ev:621738:1542 + 2: 1454 + 9: 1454 + 10: 1420 + 12: 1419 + 14: 1454 + 15: 1419 + 0: _ZN9oceanbase7obmysql13ObMySQLPacketC2Ev:36350 + 1.1: 1454 + 1: _ZN9oceanbase7obmysql19ObMySQLPacketHeaderC2Ev:15994 + 1: 1454 + 4: _ZN9oceanbase7obmysql19ObServerStatusFlagsC2Et:10178 + 0: 1454 + 6: _ZN9oceanbase6common8ObStringC2Ev:17040 + 1: 1420 + 9: _ZN9oceanbase6common9ObSEArrayINS_7obmysql10ObCommonKVINS0_8ObStringES4_EELl16ENS0_19ModulePageAllocatorELb0EEC2Ev:214420 + 0.1: 1420 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_7obmysql10ObCommonKVINS0_8ObStringES4_EELl16ENS0_19ModulePageAllocatorELb0EEC2ElRKS6_:193120 + 5: 1420 + 6: 1420 + 8: 1420 + 17.1: 1420 + 2: _ZN9oceanbase6common8ObIArrayINS_7obmysql10ObCommonKVINS0_8ObStringES4_EEEC2EPS5_l:17040 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_7obmysql10ObCommonKVINS0_8ObStringES4_EEEC2EPS5_l:17040 + 0: 1420 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:80940 + 0: 1420 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:35500 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:35500 + 2: 1420 + 8: 1420 + 10: _ZN9oceanbase6common9ObSEArrayINS_7obmysql10ObCommonKVINS0_8ObStringES4_EELl8ENS0_19ModulePageAllocatorELb0EEC2Ev:201498 + 0.1: 1419 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_7obmysql10ObCommonKVINS0_8ObStringES4_EELl8ENS0_19ModulePageAllocatorELb0EEC2ElRKS6_:175956 + 5: 1419 + 6: 1419 + 8: 1419 + 17.1: 1419 + 2: _ZN9oceanbase6common8ObIArrayINS_7obmysql10ObCommonKVINS0_8ObStringES4_EEEC2EPS5_l:25542 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_7obmysql10ObCommonKVINS0_8ObStringES4_EEEC2EPS5_l:25542 + 0: 1419 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:55341 + 0: 1419 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:35475 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:35475 + 2: 1419 + 8: 1419 + 11: _ZN9oceanbase7obmysql22ObMySQLCapabilityFlagsC2Ev:14190 + 0: 1419 +_ZNK9oceanbase12blocksstable13ObDatumRowkey10murmurhashEmRKNS0_19ObStorageDatumUtilsERm:621277:3476 + 1: 3362 + 2: 3362 + 3: 3362 + 3.1: 3362 + 3.2: 3362 + 3.3: 3362 + 4: 0 + 5.1: 0 + 7: 3362 + 9: 0 + 9.1: 0 + 11.1: 3513 + 11.3: 1 + 12: 3513 + 12.2: 3362 _ZN9oceanbase6common11DefHashFuncINS0_19DatumHashCalculatorILNS0_9ObObjTypeE4ENS0_12ObMurmurHashEEEE4hashERKNS0_7ObDatumEm:3473 _ZN9oceanbase6common11DefHashFuncINS0_19DatumHashCalculatorILNS0_9ObObjTypeE5ENS0_12ObMurmurHashEEEE4hashERKNS0_7ObDatumEm:1 + 16: 3434 + 3: _ZNK9oceanbase12blocksstable13ObDatumRowkey8is_validEv:57154 + 0: 3362 + 0.1: 3362 + 3.1: _ZNK9oceanbase12blocksstable19ObStorageDatumUtils8is_validEv:26896 + 0: 3362 + 8: _ZNK9oceanbase12blocksstable13ObDatumRowkey13is_ext_rowkeyEv:205082 + 0.1: 3362 + 0.2: 3362 + 0.3: 3362 + 0: _ZNK9oceanbase12blocksstable13ObDatumRowkey8is_validEv:36982 + 0: 3362 + 0.1: 3362 + 0.5: _ZNK9oceanbase6common11ObDatumDesc6is_extEv:26896 + 0: 3362 + 12.1: _ZNK9oceanbase6common12ObIArrayWrapINS0_10ObHashFuncEE2atEl:13456 + 6: 3362 +_ZN9oceanbase7storage15ObLobDataReaderC2Ev:620640:4455 + 1: 4310 + 2: 4310 + 3: 4310 + 1: _ZN9oceanbase6common10ObTabletIDC2Em:30170 + 0: 4310 + 1.1: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:487030 + 4: 4310 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:422380 + 2: 4310 + 3: 4310 + 4: 4310 + 5: 4310 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:206880 + 0: 4310 +_ZN9oceanbase7storage15ObLobDataReaderC1Ev:620640:4455 + 1: 4310 + 2: 4310 + 3: 4310 + 1: _ZN9oceanbase6common10ObTabletIDC2Em:30170 + 0: 4310 + 1.1: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:487030 + 4: 4310 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:422380 + 2: 4310 + 3: 4310 + 4: 4310 + 5: 4310 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:206880 + 0: 4310 +_ZN9oceanbase11transaction17ObTxSerCompatByte4initEl:615547:1540 + 1: 1450 + 2: 1450 + 4: 1450 + 5: 0 + 6.1: 0 + 7.1: 1450 + 8: 0 + 9.1: 0 + 12: 1450 + 13: 1450 + 16: 1471 + 14: _ZN9oceanbase11transaction17ObTxSerCompatByte21init_all_bytes_valid_El:431019 + 9: 1450 + 11.1: 1931 + 11.5: 1931 + 13: 1957 + 15: 1957 + 17.1: 1467 + 18: 0 + 20.1: 7355 + 20.2: 7355 + 5: _ZN9oceanbase11transaction17ObTxSerCompatByte19clear_compat_bytes_Ev:23200 + 2: 1450 + 21: _ZN9oceanbase11transaction17ObTxSerCompatByte16set_object_flag_Elhb:161810 + 2: 7355 + 4: 7355 + 5.1: 0 + 9: 7355 +_ZN9oceanbase3sql13ObExecContext13get_allocatorEv:613054:47812 + 1: 47158 + 2: 47158 +_ZN9oceanbase6common10ObIOHandleC2Ev:612612:47849 + 1: 47124 + 2: 47124 + 3: 47124 +_ZN9oceanbase6common10ObIOHandleC1Ev:612612:47849 + 1: 47124 + 2: 47124 + 3: 47124 +_ZNK9oceanbase3sql15ObExprFrameInfo21pre_alloc_exec_memoryERNS0_13ObExecContextE:608768:4958 + 1: 4588 + 2: 4588 + 3: 4588 + 4: 4588 + 6: 4588 + 7: 0 + 8.1: 0 + 9.1: 4809 _ZN9oceanbase3sql13ObExecContext13get_allocatorEv:4736 + 9.3: 4701 _ZNK9oceanbase3sql15ObExprFrameInfo11alloc_frameERNS_6common12ObIAllocatorERKNS2_8ObIArrayIPcEERmRPS6_:4832 + 13.1: 0 + 15: 4809 + 16: 4809 + 19: 4809 + 6: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:32116 + 2: 4588 + 9.2: _ZNK9oceanbase3sql17ObPhysicalPlanCtx20get_param_frame_ptrsEv:70515 + 0: 4701 + 15: _ZN9oceanbase3sql13ObExecContext13set_frame_cntEm:33663 + 0: 4809 + 16: _ZN9oceanbase3sql13ObExecContext10set_framesEPPc:33663 + 0: 4809 +_ZNK9oceanbase5share18ObTabletLSCacheKey4hashEv:606672:4869 + 1: 4596 + 5: 4596 + 3: _ZN9oceanbase6common10murmurhashEPKvim:275760 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:275760 + 13: 4596 + 14: 4596 + 15: 4596 + 17: 4596 + 18: 4596 + 41: 4596 + 42: 4596 + 43: 4596 + 4: _ZN9oceanbase6common10murmurhashEPKvim:238992 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:238992 + 5: 4596 + 13: 4596 + 14: 4596 + 15: 4596 + 17: 4596 + 18: 4596 + 41: 4596 + 42: 4596 + 43: 4596 +easy_pool_destroy:606305:5612 + 1: 5095 + 8: 5095 realloc_with_mod_stat:5221 + 3: easy_pool_clear:366840 + 7.1: 5095 + 8: 0 + 8.1: 0 + 12.1: 5095 + 13: 0 + 17: 5095 + 17.1: 5095 + 18: 0 + 19: 0 + 22: 5095 + 23: 5095 + 24: 5095 + 25: 5095 + 26: 5095 + 27: 5095 +_ZN9oceanbase7storage31ObSSTableMultiVersionRowScanner18inner_get_next_rowERPKNS_12blocksstable10ObDatumRowE:598608:100369 + 1: 99768 _ZN9oceanbase7storage19ObSSTableRowScanner18inner_get_next_rowERPKNS_12blocksstable10ObDatumRowE:101699 +_ZN9oceanbase3sql15ObCandiTableLocD2Ev:598136:4206 + 1: 4030 + 2: 3943 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_3sql16ObCandiTabletLocELl2ENS0_19ModulePageAllocatorELb1EED2Ev:445925 + 1: 4030 + 3.2: 7 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_3sql16ObCandiTabletLocELl2ENS0_19ModulePageAllocatorELb1EE7destroyEv:385419 + 4.1: 4030 + 4.3: 3943 + 5: 4030 _ZN9oceanbase3sql16ObCandiTabletLocD1Ev:4619 + 9: 3943 + 10: 7 + 11: 7 + 13: 3943 + 15: 3943 + 24: 3943 +_ZN9oceanbase3sql15ObCandiTableLocD1Ev:598136:4206 + 1: 4030 + 2: 3943 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_3sql16ObCandiTabletLocELl2ENS0_19ModulePageAllocatorELb1EED2Ev:445925 + 1: 4030 + 3.2: 7 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_3sql16ObCandiTabletLocELl2ENS0_19ModulePageAllocatorELb1EE7destroyEv:385419 + 4.1: 4030 + 4.3: 3943 + 5: 4030 _ZN9oceanbase3sql16ObCandiTabletLocD1Ev:4619 + 9: 3943 + 10: 7 + 11: 7 + 13: 3943 + 15: 3943 + 24: 3943 +_ZN9oceanbase3sql12ObDMLService18process_update_rowERKNS0_10ObUpdCtDefERNS0_10ObUpdRtDefERbRNS0_15ObTableModifyOpE:598091:534 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 4: 519 + 5: 519 + 6: 519 + 7: 519 + 8: 519 + 10: 519 + 10.1: 0 + 11: 0 + 11.1: 0 + 12.1: 0 + 15: 0 + 15.1: 519 + 16: 0 + 17: 0 + 17.1: 0 + 21.1: 0 + 22.1: 0 + 23: 0 + 26: 519 + 28: 519 + 35.1: 0 + 37.1: 0 + 38: 0 + 41: 519 + 44: 519 + 48.1: 0 + 49.1: 469 + 50: 0 + 51.1: 0 + 52.1: 482 + 53.1: 0 + 54.1: 482 + 56.1: 0 + 57.1: 482 + 59.1: 0 + 60.1: 503 + 66.1: 0 + 67.1: 480 + 67.2: 503 _ZN9oceanbase3sql12ObDMLService25check_row_whether_changedERKNS0_10ObUpdCtDefERNS0_10ObUpdRtDefERNS0_9ObEvalCtxE:511 + 68.1: 0 + 69.1: 480 + 71.1: 372 + 72.1: 0 + 73.1: 372 + 74.1: 0 + 76: 0 + 77.1: 0 + 78.1: 372 + 79.1: 0 + 81: 0 + 81.1: 0 + 82: 0 + 83.1: 0 + 83.11: 0 + 83.14: 0 + 84.1: 0 + 86: 0 + 87.1: 0 + 93: 0 + 93.1: 0 + 94.1: 0 + 98: 539 + 98.1: 0 + 98.2: 0 + 99: 0 + 101: 0 + 103.1: 0 + 103.2: 0 + 103.3: 0 + 103.5: 0 + 104: 0 + 105: 0 + 106: 0 + 107: 0 + 107.1: 0 + 115: 539 + 119: 539 + 11: _ZN9oceanbase3sql10ObOperator12get_eval_ctxEv:0 + 0: 0 + 17: _ZN9oceanbase3sql10ObOperator12get_eval_ctxEv:0 + 0: 0 + 28: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE5countEv:5709 + 0: 519 + 28.1: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:2076 + 2: 519 + 28.3: _ZN9oceanbase3sql12ObDMLService29check_rowkey_whether_distinctERKNS_6common8ObIArrayIPNS0_6ObExprEEEllNS0_12DistinctTypeERNS0_9ObEvalCtxERPNS2_4hash9ObHashSetINS0_12SeRowkeyItemENSC_19NoPthreadDefendModeENSC_9hash_funcISE_EENSC_8equal_toISE_EENSC_13SimpleAllocerINSC_15ObHashTableNodeINSC_11HashMapPairISE_NSC_11HashNullObjEEEEELi89ENSC_19SpinMutexDefendModeENSC_29DefaultSimpleAllocerAllocatorEEENSC_13NormalPointerENS2_8ObMallocELl1EEERb:7785 + 8: 519 + 10: 519 + 12: 0 + 13: 0 + 15: 0 + 17: 0 + 18: 0 + 19.1: 0 + 20.1: 0 + 21: 0 + 22.1: 0 + 24: 0 + 25: 0 + 31: 0 + 33: 0 + 33.1: 0 + 37.1: 0 + 41: 0 + 43: 0 + 44: 0 + 45.1: 0 + 46.1: 0 + 48.1: 0 + 50: 0 + 51: 0 + 52: 0 + 55: 0 + 56.1: 0 + 57.1: 0 + 58.1: 0 + 61.1: 0 + 66: 0 + 67.1: 0 + 67.11: 0 + 67.14: 0 + 70: 0 + 33: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:0 + 0: 0 + 42: _ZN9oceanbase3sql12SeRowkeyItemC2Ev:0 + 0: 0 + 50: _ZNK9oceanbase6common4hash9ObHashSetINS_3sql12SeRowkeyItemENS1_19NoPthreadDefendModeENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS4_NS1_11HashNullObjEEEEELi89ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE16exist_refactoredERKS4_:0 + 4: 0 + 5: 0 + 3: _ZN9oceanbase6common4hash11HashMapPairINS_3sql12SeRowkeyItemENS1_11HashNullObjEEC2Ev:0 + 0: _ZN9oceanbase3sql12SeRowkeyItemC2Ev:0 + 0: 0 + 57.1: _ZN9oceanbase6common4hash9ObHashSetINS_3sql12SeRowkeyItemENS1_19NoPthreadDefendModeENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS4_NS1_11HashNullObjEEEEELi89ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE14set_refactoredERKS4_iii:0 + 7: 0 + 4: _ZN9oceanbase6common4hash11HashMapPairINS_3sql12SeRowkeyItemENS1_11HashNullObjEE4initERKS4_RKS5_:0 + 3: _ZN9oceanbase6common11copy_assignINS_3sql12SeRowkeyItemEEEiRT_RKS4_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapINS_3sql12SeRowkeyItemEEEiRT_RKS4_NS0_8BoolTypeILb0EEE:0 + 2: 0 + 67.1: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 44: _ZN9oceanbase3sql12ObDMLService17check_column_typeERKNS_6common12ObFixedArrayIPNS0_6ObExprENS2_12ObIAllocatorEEElRKNS2_8ObIArrayINS0_13ColumnContentEEERNS0_15ObTableModifyOpE:111547 + 6.1: 519 + 6.3: 0 + 7.2: 519 + 7.3: 519 + 7.5: 511 + 9: 520 + 10: 520 + 11: 0 + 12: 0 + 863: 0 + 6.7: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql13ColumnContentEE5countEv:3633 + 0: 519 + 8: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql13ColumnContentEE2atEl:3640 + 6: 520 + 9: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:3640 + 6: 520 + 11: _ZN9oceanbase3sql10ObOperator12get_eval_ctxEv:4152 + 11.1: _ZNK9oceanbase3sql6ObExpr4evalERNS0_9ObEvalCtxERPNS_6common7ObDatumE:47302 + 4: 520 + 6: 520 + 7: 520 + 9: 520 + 10: 0 + 10.1: 0 + 11: 0 + 13: 0 + 15.1: 520 + 15.2: 520 + 17: 520 + 18: 520 + 20: 520 _ZN9oceanbase3sql16ObExprColumnConv14column_convertERKNS0_6ObExprERNS0_9ObEvalCtxERNS_6common7ObDatumE:531 + 21: 518 + 22: 518 + 24: 0 + 9: _ZNK9oceanbase3sql6ObExpr15is_batch_resultEv:2080 + 0: 520 + 11: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 24: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:0 + 0: 0 + 49.1: _ZN9oceanbase3sql10ObOperator12get_exec_ctxEv:1876 + 0: 469 + 49.2: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:3283 + 2: 469 + 52.2: _ZN9oceanbase3sql12ObDMLService25check_nested_sql_legalityERNS0_13ObExecContextEm:19893 + 2: 469 + 4: 469 + 4.1: 0 + 6: 0 + 7: 0 + 7.1: 0 + 10: 0 + 11.1: 0 + 11.11: 0 + 11.14: 0 + 12.1: 0 + 15: 0 + 16: 482 _ZN9oceanbase3sql10ObDASUtils25check_nested_sql_mutatingEmRNS0_13ObExecContextE:483 + 17.1: 0 + 20: 0 + 4: _ZNK9oceanbase3sql16ObSQLSessionInfo17is_remote_sessionEv:3283 + 0: 469 + 4.1: _ZN9oceanbase3sql13ObExecContext14get_parent_ctxEv:0 + 0: 0 + 6.1: _ZN9oceanbase3sql13ObExecContext16get_pl_stack_ctxEv:0 + 0: 0 + 11.1: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 54.2: _ZN9oceanbase3sql13TriggerHandle15init_param_rowsERNS0_9ObEvalCtxERKNS0_14ObTrigDMLCtDefERNS0_14ObTrigDMLRtDefE:33740 + 6.1: 482 + 6.2: 482 + 6.4: 0 + 7.1: 0 + 7.2: 482 + 7.4: 0 + 8: 0 + 6.2: _ZN9oceanbase3sql13TriggerHandle18init_param_old_rowERNS0_9ObEvalCtxERKNS0_14ObTrigDMLCtDefERNS0_14ObTrigDMLRtDefE:9640 + 5: 482 + 6: 482 + 9: 0 + 10: 0 + 11.1: 0 + 12.1: 0 + 13: 0 + 14.1: 0 + 16.1: 0 + 18: 0 + 19.1: 0 + 20.1: 0 + 21: 0 + 22.1: 0 + 23.1: 0 + 23.2: 0 + 25.1: 0 + 30: 0 + 32: 0 + 33.1: 0 + 39: 0 + 12.1: _ZN9oceanbase2pl10ObPLRecord11get_elementEv:0 + 2.1: 0 + 2: _ZNK9oceanbase2pl10ObPLRecord9get_countEv:0 + 0: 0 + 18: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:0 + 6: 0 + 18.1: _ZNK9oceanbase3sql6ObExpr4evalERNS0_9ObEvalCtxERPNS_6common7ObDatumE:0 + 4: 0 + 6: 0 + 7: 0 + 9: 0 + 10: 0 + 10.1: 0 + 11: 0 + 13: 0 + 15.1: 0 + 15.2: 0 + 17: 0 + 18: 0 + 20: 0 + 21: 0 + 22: 0 + 24: 0 + 9: _ZNK9oceanbase3sql6ObExpr15is_batch_resultEv:0 + 0: 0 + 11: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 24: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:0 + 0: 0 + 23.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:0 + 6: 0 + 32: _ZNK9oceanbase3sql6ObExpr4evalERNS0_9ObEvalCtxERPNS_6common7ObDatumE:0 + 4: 0 + 6: 0 + 7: 0 + 9: 0 + 10: 0 + 10.1: 0 + 11: 0 + 13: 0 + 15.1: 0 + 15.2: 0 + 17: 0 + 18: 0 + 20: 0 + 21: 0 + 22: 0 + 24: 0 + 9: _ZNK9oceanbase3sql6ObExpr15is_batch_resultEv:0 + 0: 0 + 11: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 24: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:0 + 0: 0 + 7.2: _ZN9oceanbase3sql13TriggerHandle18init_param_new_rowERNS0_9ObEvalCtxERKNS0_14ObTrigDMLCtDefERNS0_14ObTrigDMLRtDefE:11568 + 5: 482 + 7: 482 + 10: 0 + 11: 0 + 12.1: 0 + 13.1: 0 + 14: 0 + 15.1: 0 + 17.1: 0 + 19: 0 + 20.1: 0 + 21.1: 0 + 22: 0 + 23.1: 0 + 24.1: 0 + 24.2: 0 + 26.1: 0 + 28: 0 + 28.1: 0 + 29: 0 + 29.1: 0 + 31: 0 + 33.1: 0 + 34.1: 0 + 35: 0 + 35.1: 0 + 35.2: 0 + 35.3: 0 + 40.1: 0 + 46: 0 + 48: 0 + 49.1: 0 + 55: 0 + 13.1: _ZN9oceanbase2pl10ObPLRecord11get_elementEv:0 + 2.1: 0 + 2: _ZNK9oceanbase2pl10ObPLRecord9get_countEv:0 + 0: 0 + 19: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:0 + 6: 0 + 19.1: _ZNK9oceanbase3sql6ObExpr4evalERNS0_9ObEvalCtxERPNS_6common7ObDatumE:0 + 4: 0 + 6: 0 + 7: 0 + 9: 0 + 10: 0 + 10.1: 0 + 11: 0 + 13: 0 + 15.1: 0 + 15.2: 0 + 17: 0 + 18: 0 + 20: 0 + 21: 0 + 22: 0 + 24: 0 + 9: _ZNK9oceanbase3sql6ObExpr15is_batch_resultEv:0 + 0: 0 + 11: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 24: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:0 + 0: 0 + 24.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:0 + 6: 0 + 28.1: _ZNK9oceanbase3sql20ObTriggerColumnsInfo9get_flagsEv:0 + 0: 0 + 29.1: _ZNK9oceanbase6common5ObObj8get_typeEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:0 + 0: 0 + 31: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:0 + 6: 0 + 31.1: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:0 + 0: 0 + 32: _ZN9oceanbase6common10ObAccuracyC2Ev:0 + 0: _ZN9oceanbase6common10ObAccuracy5resetEv:0 + 0: 0 + 35: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:0 + 2: 0 + 48: _ZNK9oceanbase3sql6ObExpr4evalERNS0_9ObEvalCtxERPNS_6common7ObDatumE:0 + 4: 0 + 6: 0 + 7: 0 + 9: 0 + 10: 0 + 10.1: 0 + 11: 0 + 13: 0 + 15.1: 0 + 15.2: 0 + 17: 0 + 18: 0 + 20: 0 + 21: 0 + 22: 0 + 24: 0 + 9: _ZNK9oceanbase3sql6ObExpr15is_batch_resultEv:0 + 0: 0 + 11: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 24: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:0 + 0: 0 + 57.1: _ZN9oceanbase3sql13TriggerHandle20do_handle_before_rowERNS0_15ObTableModifyOpERNS0_17ObDASDMLBaseCtDefERKNS0_14ObTrigDMLCtDefERNS0_14ObTrigDMLRtDefE:11568 + 7: 482 + 8: 482 + 10: 0 + 11: 0 + 12.1: 0 + 16: 0 + 23: 0 + 23.2: 0 + 23.3: 0 + 23.5: 0 + 24.1: 0 + 24.2: 0 + 24.3: 0 + 26: 0 + 26.1: 0 + 27: 0 + 28.1: 0 + 29.2: 0 + 29.4: 0 + 29.10: 0 + 31: 0 + 34: 0 + 35: 0 + 36: 0 + 37.1: 0 + 39: 0 + 39.1: 0 + 40.1: 0 + 41.1: 0 + 44: 0 + 45: 0 + 45.2: 0 + 51.1: 0 + 60: 0 + 8: _ZNK9oceanbase5share6schema14ObTimingPoints14has_before_rowEv:3374 + 0: 482 + 14: _ZN9oceanbase3sql10ObOperator12get_exec_ctxEv:0 + 0: 0 + 25: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql12ObTriggerArgEE2atEl:0 + 6: 0 + 26: _ZNK9oceanbase3sql12ObTriggerArg20has_before_row_pointEv:0 + 0: _ZNK9oceanbase5share6schema14ObTimingPoints14has_before_rowEv:0 + 0: 0 + 26.1: _ZNK9oceanbase3sql12ObTriggerArg18has_trigger_eventsEm:0 + 0: _ZNK9oceanbase5share6schema15ObTriggerEvents9has_valueEm:0 + 0: 0 + 28.1: _ZNK9oceanbase3sql12ObTriggerArg18has_when_conditionEv:0 + 0: _ZNK9oceanbase5share6schema14ObTimingPoints18has_when_conditionEv:0 + 0: 0 + 29.2: _ZNK9oceanbase3sql12ObTriggerArg14get_trigger_idEv:0 + 0: 0 + 39: _ZNK9oceanbase3sql12ObTriggerArg14get_trigger_idEv:0 + 0: 0 + 41.1: _ZN9oceanbase5share6schema15ObTriggerEvents15is_update_eventEm:0 + 0: 0 + 43: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:0 + 2: 0 + 60.2: _ZN9oceanbase3sql12ObDMLService14check_row_nullERKNS_6common8ObIArrayIPNS0_6ObExprEEERNS0_9ObEvalCtxElRKNS3_INS0_13ColumnContentEEEbRNS0_15ObTableModifyOpE:105843 + 0: 0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 8: 482 + 8.1: 482 + 8.2: 0 + 8.3: 0 + 9.1: 482 + 9.2: 983 + 9.3: 983 + 9.5: 482 + 10: 482 + 11: 482 + 12: 482 + 13: 482 + 14: 0 + 14.1: 0 + 15.1: 482 + 15.2: 482 + 16: 0 + 18: 0 + 19: 0 + 20.1: 0 + 21.1: 0 + 21.5: 0 + 25.1: 0 + 26.1: 0 + 26.3: 0 + 27.1: 0 + 30: 0 + 31.1: 0 + 31.13: 0 + 31.17: 0 + 31.20: 0 + 31.21: 0 + 31.24: 0 + 35: 0 + 36: 0 + 37.1: 0 + 37.13: 0 + 37.14: 0 + 37.17: 0 + 37.20: 0 + 37.21: 0 + 37.24: 0 + 8.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE5countEv:3374 + 0: 482 + 11: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql13ColumnContentEE2atEl:3374 + 6: 482 + 13: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:3374 + 6: 482 + 13.1: _ZNK9oceanbase3sql6ObExpr4evalERNS0_9ObEvalCtxERPNS_6common7ObDatumE:24582 + 4: 482 + 6: 482 + 7: 482 + 9: 482 + 10: 0 + 10.1: 0 + 11: 0 + 13: 0 + 15.1: 482 + 15.2: 482 + 17: 0 + 18: 0 + 20: 0 + 21: 0 + 22: 0 + 24: 0 + 9: _ZNK9oceanbase3sql6ObExpr15is_batch_resultEv:1928 + 0: 482 + 11: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 24: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:0 + 0: 0 + 14: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql13ColumnContentEE2atEl:0 + 6: 0 + 15.2: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:1928 + 0: 482 + 17: _ZN9oceanbase6common5ObObjC2Ev:0 + 2: _ZN9oceanbase6common5ObObj5resetEv:0 + 6: 0 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:0 + 0: 0 + 18: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 21.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:0 + 6: 0 + 21.2: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:0 + 0: 0 + 21.4: _ZNK9oceanbase6common9ObObjMeta18get_collation_typeEv:0 + 0: 0 + 26.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:0 + 6: 0 + 26.2: _ZNK9oceanbase3sql6ObExpr22locate_datum_for_writeERNS0_9ObEvalCtxE:0 + 3: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 5: _ZNK9oceanbase3sql6ObExpr13get_datum_idxERNS0_9ObEvalCtxE:0 + 2: 0 + 2: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 30: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql13ColumnContentEE2atEl:0 + 6: 0 + 31.1: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 31.14: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 31.15: _ZNK9oceanbase6common8ObString6lengthEv:0 + 0: 0 + 31.22: _ZNK9oceanbase6common8ObString6lengthEv:0 + 0: 0 + 35: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql13ColumnContentEE2atEl:0 + 6: 0 + 37.1: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 37.15: _ZNK9oceanbase6common8ObString6lengthEv:0 + 0: 0 + 37.22: _ZNK9oceanbase6common8ObString6lengthEv:0 + 0: 0 + 71.1: _ZN9oceanbase3sql16ForeignKeyHandle9do_handleERNS0_15ObTableModifyOpERKNS0_14ObDMLBaseCtDefERNS0_14ObDMLBaseRtDefE:72824 + 4: 331 + 5: 331 + 8: 331 + 10: 372 + 11.1: 0 + 13.1: 0 + 13.2: 372 + 13.3: 372 + 13.5: 0 + 15.1: 0 + 16: 0 + 18: 0 + 19: 0 + 20.1: 0 + 21.1: 0 + 24.1: 0 + 25.1: 0 + 29: 0 + 30: 0 + 32: 0 + 33: 0 + 34.1: 0 + 36.1: 0 + 38.1: 0 + 39.1: 0 + 43: 0 + 44: 0 + 44.1: 0 + 45.1: 0 + 46.1: 0 + 48.1: 0 + 49.1: 0 + 50.1: 0 + 58.2: 0 + 58.3: 0 + 58.5: 0 + 59: 0 + 60: 0 + 62: 0 + 64: 0 + 66: 0 + 69.1: 0 + 70.1: 0 + 78: 372 + 5: _ZN9oceanbase3sql15ObTableModifyOp23need_foreign_key_checksEv:2317 + 0: 331 + 8: _ZN9oceanbase3sql10ObOperator12get_exec_ctxEv:1324 + 0: 331 + 10: _ZN9oceanbase3sql15ObTableModifyOp11check_stackEv:36315 + 2: 331 + 3: 331 + 4: 331 + 5: 331 + 6: 331 + 7: 0 + 8.1: 0 + 9.1: 331 + 10: 0 + 11.1: 0 + 12.1: 372 _ZN9oceanbase6common23get_reserved_stack_sizeEv:335 + 12.2: 363 _ZN9oceanbase6common20check_stack_overflowERblPl:397 + 13.1: 0 + 14.1: 372 + 15: 0 + 16.1: 0 + 18: 0 + 5: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:2317 + 2: 331 + 14: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql15ObForeignKeyArgEE2atEl:0 + 6: 0 + 15.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE5emptyEv:0 + 0: 0 + 46.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE5emptyEv:0 + 0: 0 + 59: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql18ObForeignKeyColumnEE2atEl:0 + 6: 0 + 62: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:0 + 6: 0 + 63.1: _ZNK9oceanbase3sql6ObExpr17locate_expr_datumERNS0_9ObEvalCtxE:0 + 3: 0 + 3: _ZNK9oceanbase3sql6ObExpr13get_datum_idxERNS0_9ObEvalCtxE:0 + 2: 0 + 2: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 65.1: _ZNK9oceanbase3sql6ObExpr17locate_expr_datumERNS0_9ObEvalCtxE:0 + 3: 0 + 3: _ZNK9oceanbase3sql6ObExpr13get_datum_idxERNS0_9ObEvalCtxE:0 + 2: 0 + 66: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:0 + 6: 0 + 67.1: _ZNK9oceanbase3sql6ObExpr17locate_expr_datumERNS0_9ObEvalCtxE:0 + 3: 0 + 3: _ZNK9oceanbase3sql6ObExpr13get_datum_idxERNS0_9ObEvalCtxE:0 + 2: 0 + 78: _ZN9oceanbase3sql10ObOperator12get_exec_ctxEv:1488 + 0: 372 + 73.2: _ZN9oceanbase3sql12ObDMLService25filter_row_for_view_checkERKNS_6common12ObFixedArrayIPNS0_6ObExprENS2_12ObIAllocatorEEERNS0_9ObEvalCtxERb:14136 + 4: 372 + 6.1: 0 + 6.3: 372 + 6.4: 372 + 6.6: 0 + 7: 0 + 8: 0 + 9: 0 + 10.1: 0 + 13: 0 + 13.1: 0 + 7: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:0 + 6: 0 + 9: _ZNK9oceanbase3sql6ObExpr4evalERNS0_9ObEvalCtxERPNS_6common7ObDatumE:0 + 4: 0 + 6: 0 + 7: 0 + 9: 0 + 10: 0 + 10.1: 0 + 11: 0 + 13: 0 + 15.1: 0 + 15.2: 0 + 17: 0 + 18: 0 + 20: 0 + 21: 0 + 22: 0 + 24: 0 + 9: _ZNK9oceanbase3sql6ObExpr15is_batch_resultEv:0 + 0: 0 + 11: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 24: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:0 + 0: 0 + 13: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:0 + 0: 0 + 13.1: _ZNK9oceanbase6common7ObDatum7get_intEv:0 + 0: 0 + 78.2: _ZN9oceanbase3sql12ObDMLService24filter_row_for_check_cstERKNS_6common12ObFixedArrayIPNS0_6ObExprENS2_12ObIAllocatorEEERNS0_9ObEvalCtxERb:10788 + 4: 372 + 6.1: 0 + 6.3: 372 + 6.4: 372 + 6.6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11.1: 0 + 13: 0 + 15.1: 0 + 19: 0 + 19.1: 0 + 7: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:0 + 6: 0 + 9: _ZNK9oceanbase3sql6ObExpr4evalERNS0_9ObEvalCtxERPNS_6common7ObDatumE:0 + 4: 0 + 6: 0 + 7: 0 + 9: 0 + 10: 0 + 10.1: 0 + 11: 0 + 13: 0 + 15.1: 0 + 15.2: 0 + 17: 0 + 18: 0 + 20: 0 + 21: 0 + 22: 0 + 24: 0 + 9: _ZNK9oceanbase3sql6ObExpr15is_batch_resultEv:0 + 0: 0 + 11: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 24: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:0 + 0: 0 + 10: _ZN9oceanbase3lib13is_mysql_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 19: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:0 + 0: 0 + 19.1: _ZNK9oceanbase6common7ObDatum7get_intEv:0 + 0: 0 + 81: _ZN9oceanbase3lib13is_mysql_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 83.1: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 83.12: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 83.15: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 93: _ZN9oceanbase3sql10ObOperator12get_eval_ctxEv:0 + 0: 0 + 104: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:0 + 6: 0 + 106: _ZN9oceanbase3sql10ObOperator12get_eval_ctxEv:0 + 106.1: _ZNK9oceanbase3sql6ObExpr4evalERNS0_9ObEvalCtxERPNS_6common7ObDatumE:0 + 4: 0 + 6: 0 + 7: 0 + 9: 0 + 10: 0 + 10.1: 0 + 11: 0 + 13: 0 + 15.1: 0 + 15.2: 0 + 17: 0 + 18: 0 + 20: 0 + 21: 0 + 22: 0 + 24: 0 + 9: _ZNK9oceanbase3sql6ObExpr15is_batch_resultEv:0 + 0: 0 + 11: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 24: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:0 + 0: 0 + 108.1: _ZNK9oceanbase3sql6ObExpr22locate_datum_for_writeERNS0_9ObEvalCtxE:0 + 3: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 5: _ZNK9oceanbase3sql6ObExpr13get_datum_idxERNS0_9ObEvalCtxE:0 + 2: 0 + 2: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 108.2: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:0 + 0: 0 + 109.1: _ZNK9oceanbase3sql6ObExpr18set_evaluated_flagERNS0_9ObEvalCtxE:0 + 2: 0 + 3: 0 + 2: _ZNK9oceanbase3sql6ObExpr13get_eval_infoERNS0_9ObEvalCtxE:0 + 2: 0 + 4: _ZNK9oceanbase3sql6ObExpr19get_evaluated_flagsERNS0_9ObEvalCtxE:0 + 2: 0 + 4.1: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 4.2: _ZN9oceanbase3sql11ObBitVector3setEl:0 + 3: 0 +_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher4initEiRNS_12blocksstable9ObSSTableERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextEPKv:597981:1131 + 6: 1090 + 8: 1090 + 9: 1090 + 10: 0 + 11.1: 0 + 12.1: 1065 + 13: 0 + 14: 0 + 16: 1075 + 17: 1075 _ZN9oceanbase12blocksstable19ObStorageCacheSuite12get_instanceEv:1088 + 18: 1049 _ZN9oceanbase12blocksstable19ObStorageCacheSuite12get_instanceEv:1060 + 19: 1047 + 20: 1047 + 21: 1047 + 22: 1047 + 23: 1047 + 24: 1047 _ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher15init_basic_infoEiRNS_12blocksstable9ObSSTableERNS0_20ObTableAccessContextEPKvRb:1084 + 25.1: 17 + 26.1: 1034 _ZN9oceanbase7storage21ObMicroBlockHandleMgr4initEbbRNS_6common12ObIAllocatorE:1011 + 27.1: 17 + 29.1: 3172 + 29.2: 4128 + 29.3: 4128 + 29.5: 3172 + 30: 3172 + 31.1: 17 + 35: 1070 + 36: 1070 + 39: 1008 + 12.2: _ZNK9oceanbase12blocksstable13ObSSTableMeta8is_emptyEv:8520 + 0: 1065 + 17.1: _ZN9oceanbase12blocksstable19ObStorageCacheSuite15get_block_cacheEv:10490 + 0: 1049 + 18.1: _ZN9oceanbase12blocksstable19ObStorageCacheSuite21get_index_block_cacheEv:8376 + 0: 1047 + 19: _ZN9oceanbase6common16ObFixedArrayImplINS_7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandleENS0_12ObIAllocatorEE13set_allocatorEPS5_:7329 + 0: 1047 + 20: _ZN9oceanbase6common16ObFixedArrayImplINS_7storage19ObSSTableReadHandleENS0_12ObIAllocatorEE13set_allocatorEPS4_:7329 + 0: 1047 + 22: _ZNK9oceanbase7storage16ObTableIterParam18get_full_read_infoEv:7329 + 2: 1047 + 22.1: _ZNK9oceanbase7storage15ObTableReadInfo19get_index_read_infoEv:7329 + 0: 1047 + 30: _ZN9oceanbase6common16ObFixedArrayImplINS_7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandleENS0_12ObIAllocatorEEixEl:21182 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandleEE2atEl:21182 + 6: 3026 + 30.1: _ZN9oceanbase7storage21ObIndexTreePrefetcher18init_index_scannerERNS_12blocksstable22ObIndexBlockRowScannerE:124854 + 2: 3026 _ZN9oceanbase12blocksstable22ObIndexBlockRowScanner4initERKNS_6common8ObIArrayIiEERKNS3_INS_5share6schema16ObColumnSchemaV2EEEPKNS_7storage15ObTableReadInfoERNS2_12ObIAllocatorERKNS2_11ObQueryFlagE:3078 + 5: 3026 + 6: 3026 + 7: 3026 +_ZN9oceanbase12blocksstable11ObRowWriter13append_columnERKNS_6common5ObObjE:596886:2302 + 1: 2178 + 2: 2178 + 4: 2192 + 5.1: 4 + 6.1: 1572 + 8.1: 0 + 11: 2214 + 3: _ZN9oceanbase12blocksstable14ObStorageDatumC2Ev:43560 + 0.1: _ZN9oceanbase12blocksstable14ObStorageDatum7set_nopEv:43560 + 0: _ZN9oceanbase12blocksstable14ObStorageDatum13set_ext_valueEl:43560 + 1: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:8712 + 0: 2178 + 1.3: _ZN9oceanbase6common5ObObj7set_extEl:34848 + 4: 2178 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:17424 + 0: 2178 + 4: _ZN9oceanbase12blocksstable14ObStorageDatum16from_obj_enhanceERKNS_6common5ObObjE:185761 + 2: 2178 + 5: 2178 + 7.1: 2192 + 8.1: 4 + 12: 4 + 4: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:26136 + 0: 2178 + 5: _ZNK9oceanbase6common5ObObj6is_extEv:10890 + 0: _ZNK9oceanbase6common9ObObjMeta6is_extEv:10890 + 0: 2178 + 6: _ZNK9oceanbase6common5ObObj7get_extEv:0 + 4: 0 + 6.1: _ZN9oceanbase12blocksstable14ObStorageDatum13set_ext_valueEl:0 + 1: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:0 + 0: 0 + 1.1: _ZN9oceanbase6common11ObDatumDesc7set_extEv:0 + 0: 0 + 1.3: _ZN9oceanbase6common5ObObj7set_extEl:0 + 4: 0 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:0 + 0: 0 + 7.1: _ZN9oceanbase6common7ObDatum8from_objERKNS0_5ObObjE:104913 + 2: 2178 + 3: 2178 + 83: 4 + 84.1: 4 + 88: 4 + 4: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:0 + 0: 0 + 26: _ZN9oceanbase6common7ObDatum9obj2datumILNS0_17ObObjDatumMapTypeE1EEEvRKNS0_5ObObjE:8499 + 2: 651 + 3: 651 + 32: _ZN9oceanbase6common7ObDatum9obj2datumILNS0_17ObObjDatumMapTypeE2EEEvRKNS0_5ObObjE:128 + 2: 4 + 3: 4 + 4: 4 + 7: 0 + 9: 0 + 10: 0 + 55: _ZN9oceanbase6common7ObDatum9obj2datumILNS0_17ObObjDatumMapTypeE3EEEvRKNS0_5ObObjE:12392 + 2: 1549 + 61: _ZN9oceanbase6common7ObDatum9obj2datumILNS0_17ObObjDatumMapTypeE4EEEvRKNS0_5ObObjE:68 + 2: 4 + 65: _ZN9oceanbase6common7ObDatum9obj2datumILNS0_17ObObjDatumMapTypeE5EEEvRKNS0_5ObObjE:68 + 2: 4 + 70: _ZN9oceanbase6common7ObDatum9obj2datumILNS0_17ObObjDatumMapTypeE6EEEvRKNS0_5ObObjE:100 + 2: 4 + 3: 4 + 75: _ZN9oceanbase6common7ObDatum9obj2datumILNS0_17ObObjDatumMapTypeE7EEEvRKNS0_5ObObjE:108 + 2: 4 + 3: 4 + 6.1: _ZN9oceanbase12blocksstable11ObRowWriter13append_columnERKNS0_14ObStorageDatumE:250841 + 3: 2192 + 5.1: 2192 + 8: 634 + 9: 634 + 6: _ZN9oceanbase12blocksstable11ObRowWriter21append_8_bytes_columnERKNS0_14ObStorageDatumE:159928 + 5: 1549 + 12: 8 + 13: 8 + 14.1: 1568 + 17: 1568 + 18: 0 + 19: 0 + 20.1: 0 + 22: 1568 + 27: 0 + 4: _ZNK9oceanbase6common7ObDatum10get_uint64Ev:10843 + 0: 1549 + 5: _ZN9oceanbase12blocksstable11ObRowWriter13get_uint_byteEmRl:35501 + 3: 1549 + 5.1: 1611 + 7.1: 1474 + 14.1: _ZN9oceanbase12blocksstable11ObRowWriter10write_uintEml:38193 + 2: 1471 + 5: 1 + 9: 117 + 13: 1471 + 22: 1568 +_ZN9oceanbase7storage8ObTablet31insert_row_without_rowkey_checkERNS0_15ObRelativeTableERNS0_10ObStoreCtxERKNS_6common8ObIArrayINS_5share6schema9ObColDescEEERKNS0_10ObStoreRowE:595219:900 + 5: 832 + 6: 832 + 8: 832 _ZN9oceanbase7storage19ObStorageTableGuardC1EPNS0_8ObTabletERNS0_10ObStoreCtxEbblb:881 + 11: 878 + 12: 0 + 13.1: 0 + 14.2: 840 + 14.4: 840 + 14.6: 840 + 14.9: 909 _ZNK9oceanbase7storage15ObRelativeTable8is_validEv:910 + 14.11: 881 + 19: 0 + 20.1: 0 + 22.1: 881 _ZNK9oceanbase7storage15ObRelativeTable13get_tablet_idEv:883 + 22.3: 798 + 23: 0 + 24.1: 0 + 25.1: 798 _ZNK9oceanbase7storage15ObRelativeTable12get_table_idEv:817 + 25.2: 797 _ZNK9oceanbase7storage15ObRelativeTable18get_schema_versionEv:836 + 25.4: 761 + 27.1: 0 + 28.1: 761 _ZN9oceanbase7storage19ObStorageTableGuard25refresh_and_protect_tableERNS0_15ObRelativeTableE:785 + 28.2: 817 + 29.1: 0 + 30.2: 853 + 31.1: 0 + 32.1: 853 _ZNK9oceanbase7storage15ObRelativeTable12get_table_idEv:892 + 32.2: 839 _ZN9oceanbase8memtable10ObMemtable3setERNS_7storage10ObStoreCtxEmRKNS2_15ObTableReadInfoERKNS_6common8ObIArrayINS_5share6schema9ObColDescEEERKNS2_10ObStoreRowE:864 + 32.3: 788 + 34.1: 0 + 36: 760 _ZN9oceanbase7storage19ObStorageTableGuardD1Ev:782 + 36.1: 0 + 38: 805 + 40: 872 _ZN9oceanbase11transaction14ObPartTransCtx15submit_redo_logEb:893 + 41.1: 0 + 46: 872 + 14.1: _ZNK9oceanbase7storage10ObStoreCtx8is_validEv:16682 + 2: 878 + 2.1: 878 _ZNK9oceanbase8memtable15ObMvccAccessCtx8is_validEv:884 + 2: _ZNK9oceanbase5share6ObLSID8is_validEv:3512 + 0: 878 + 14.5: _ZNK9oceanbase7storage15ObTableReadInfo23is_valid_full_read_infoEv:141120 + 3: 840 + 3.1: 840 + 4: 840 + 2: _ZNK9oceanbase7storage15ObTableReadInfo8is_validEv:67200 + 2: 840 + 3: 840 + 3.1: 840 + 4: 840 + 5.1: 840 + 6: 840 + 7: 840 + 7.1: 840 + 3.1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:5880 + 0: 840 + 6.1: _ZNK9oceanbase12blocksstable19ObStorageDatumUtils8is_validEv:6720 + 0: 840 + 4.1: _ZNK9oceanbase7storage15ObTableReadInfo8is_validEv:55440 + 2: 840 + 3: 840 + 3.1: 840 + 4: 840 + 5.1: 840 + 6: 840 + 7: 840 + 7.1: 840 + 3.1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:5880 + 0: 840 + 6.1: _ZNK9oceanbase12blocksstable19ObStorageDatumUtils8is_validEv:5880 + 0: 840 + 14.7: _ZNK9oceanbase7storage10ObStoreRow8is_validEv:88858 + 3: 840 + 5.1: 840 + 8.1: 0 + 9: 840 + 11: 849 + 11.1: 0 + 11.2: 849 + 12: 0 + 12.1: 849 + 13: 0 + 7.1: _ZNK9oceanbase12blocksstable12ObDmlRowFlag8is_validEv:26040 + 2: 840 + 10.1: _ZNK9oceanbase6common8ObNewRow8is_validEv:16604 + 2: _ZNK9oceanbase6common8ObNewRow10is_invalidEv:16604 + 2: 593 + 2.1: 593 + 2.2: 593 + 2.3: 0 + 12.1: _ZNK9oceanbase12blocksstable21ObMultiVersionRowFlag18is_uncommitted_rowEv:5094 + 0: 849 + 22.2: _ZNK9oceanbase6common10ObTabletIDneERKS1_:7980 + 0: 798 + 25.3: _ZN9oceanbase7storage8ObTablet25try_update_storage_schemaEll:26630 + 2: 797 + 3: 797 _ZN9oceanbase7storage23ObStorageSchemaRecorder25try_update_storage_schemaEll:801 + 4.1: 0 + 6: 0 + 30.1: _ZN9oceanbase7storage8ObTablet16prepare_memtableERNS0_15ObRelativeTableERNS0_10ObStoreCtxERPNS_8memtable10ObMemtableE:69024 + 5: 817 + 7: 817 + 8: 817 + 9: 817 + 10: 0 + 11.1: 0 + 12.1: 853 _ZNK9oceanbase7storage8ObITable16is_data_memtableEv:843 + 13: 0 + 14.1: 0 + 18: 853 + 8: _ZN9oceanbase7storage20ObTableStoreIterator18get_boundary_tableEb:30229 + 3: 817 + 5: 817 + 5.3: 817 + 3: _ZNK9oceanbase7storage20ObTableStoreIterator8is_validEv:5719 + 0: 817 + 0: _ZNK9oceanbase6common12ObIArrayWrapIPNS_7storage8ObITableEE5countEv:3268 + 0: 817 + 5.4: _ZN9oceanbase6common12ObIArrayWrapIPNS_7storage8ObITableEE2atEl:3268 + 6: 817 +_ZN9oceanbase3sql16ObSQLSessionInfo14get_plan_cacheEv:594571:10783 + 1: 10497 + 2: 10497 _ZN9oceanbase8observer14global_contextEv:10698 + 4: 10147 + 12: 2 _ZN9oceanbase3sql18ObBasicSessionInfo15get_pc_mem_confERNS0_14ObPCMemPctConfE:2 + 13.1: 0 + 14: 0 + 17: 1 + 21: 1 _ZN9oceanbase3sql18ObPlanCacheManager24get_or_create_plan_cacheEmRKNS0_14ObPCMemPctConfE:1 + 23: 0 + 24.1: 0 + 31: 10145 + 2.1: _ZN9oceanbase3sql5ObSql22get_plan_cache_managerEv:40588 + 0: 10147 + 11: _ZN9oceanbase3sql14ObPCMemPctConfC2Ev:44 + 0: 2 + 2: 2 + 16: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:14 + 2: 1 + 2.1: 0 + 2.2: 0 + 16.1: _ZNK9oceanbase5share12ObTenantBase2idEv:15 + 0: 1 +_ZN9oceanbase11transaction18ObTxCommitCallback5resetEv:586710:14855 + 1: 14310 + 2: 14310 + 4: 14310 + 7: 14310 + 8: 14310 + 9: 14310 +_ZN9oceanbase6common9Ob2DArrayINS_3sql11ObParamInfoELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS3_Ll64ES4_Lb0EEEE2atEl:584901:7265 + 1: 7047 + 2: 7047 + 2.1: 7047 + 2.2: 7047 + 3.1: 0 + 5: 7047 + 5: _ZNK9oceanbase6common9Ob2DArrayINS_3sql11ObParamInfoELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS3_Ll64ES4_Lb0EEEE11get_obj_posEl:324162 + 5: 7047 + 4: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql11ObParamInfoEE2atEl:28188 + 6: 7047 +_ZN9oceanbase12blocksstable18ObMicroBlockReader4initERKNS0_16ObMicroBlockDataERKNS_7storage15ObTableReadInfoE:584806:2717 + 3: 2592 + 4: 2592 + 5: 2592 + 6: 1589 _ZN9oceanbase12blocksstable18ObMicroBlockReader5resetEv:1698 + 8: 2574 + 9: 0 + 10.1: 0 + 11.1: 2574 + 12.1: 0 + 14: 2574 + 15: 2574 + 16: 2574 + 19: 0 + 20: 0 + 22: 2574 + 8: _ZNK9oceanbase7storage15ObTableReadInfo8is_validEv:172458 + 2: 2574 + 3: 2574 + 3.1: 2574 + 4: 2574 + 5.1: 2574 + 6: 2574 + 7: 2574 + 7.1: 2574 + 3.1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:18018 + 0: 2574 + 6.1: _ZNK9oceanbase12blocksstable19ObStorageDatumUtils8is_validEv:20592 + 0: 2574 + 11.1: _ZN9oceanbase12blocksstable23ObIMicroBlockFlatReader4initERKNS0_16ObMicroBlockDataE:182754 + 2: 2574 + 3: 2574 + 4: 0 + 5.1: 0 + 8: 2574 + 9: 2574 + 10: 2574 + 11: 2574 + 13: 0 + 3: _ZNK9oceanbase12blocksstable16ObMicroBlockData8is_validEv:72072 + 0: 2574 + 0.1: 2574 + 0.2: 2574 +_ZN9oceanbase6common16ObFixedArrayImplIlNS0_12ObIAllocatorEED2Ev:580126:11265 + 0: 10688 + 0.1: 10854 + 0.3: 9 + 0: _ZN9oceanbase6common16ObFixedArrayImplIlNS0_12ObIAllocatorEE7destroyEv:258252 + 2: 10688 + 5: 5369 + 9: 9 + 10: 9 + 12: 5404 + 13: 5404 + 15: 5404 +_ZN9oceanbase6common15ObFIFOAllocator4freeEPv:579863:2512 + 1: 2492 + 2: 2492 + 3: 2675 + 4.1: 0 + 7: 2675 + 8.1: 0 + 11.1: 0 + 14: 2675 + 15.1: 0 + 17: 2675 + 28.8: 2538 + 2: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEEC2ERS3_:84249 + 1: 2492 + 4: 2675 + 5.1: 0 + 4: _ZN9oceanbase6common10ObSpinLock4lockEv:44856 + 2: 2492 _ZN9oceanbase6common12ObLatchMutex4lockEjl:2616 + 10: _ZN9oceanbase6common15ObFIFOAllocator11check_magicEPvRl:66875 + 8: 2675 + 10: 2675 + 12.1: 0 + 17.1: 0 + 13: _ZN9oceanbase6common15ObFIFOAllocator15get_page_headerEPv:42800 + 7: 2675 + 8: 2675 + 8: _ZL12abort_unlessb:16050 + 5: 2675 + 6: 0 + 19: _ZN9oceanbase6common15ObFIFOAllocator12free_specialEPNS1_17SpecialPageHeaderE:0 + 3: 0 + 4: 0 + 2: _ZN9oceanbase6common7ObDListINS0_11ObDLinkNodeIPNS0_15ObFIFOAllocator14BasePageHeaderEEEE6removeEPS6_:0 + 3: 0 + 7: 0 + 6: _ZN9oceanbase6common11ObDLinkBaseINS0_11ObDLinkNodeIPNS0_15ObFIFOAllocator14BasePageHeaderEEEE6unlinkEv:0 + 2: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 22: _ZN9oceanbase6common15ObFIFOAllocator11free_normalEPNS1_16NormalPageHeaderEl:100805 + 2: 2675 + 3: 2675 + 4: 920 + 5.1: 1692 + 7: 0 + 8: 0 + 8.1: 0 + 9: 0 + 12: 0 + 15: 2611 + 7: _ZN9oceanbase6common7ObDListINS0_11ObDLinkNodeIPNS0_15ObFIFOAllocator14BasePageHeaderEEEE6removeEPS6_:0 + 3: 0 + 7: 0 + 6: _ZN9oceanbase6common11ObDLinkBaseINS0_11ObDLinkNodeIPNS0_15ObFIFOAllocator14BasePageHeaderEEEE6unlinkEv:0 + 2: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: _ZNK9oceanbase6common15ObFIFOAllocator12normal_totalEv:0 + 3: 0 + 4: 0 + 3.1: _ZNK9oceanbase6common7ObDListINS0_11ObDLinkNodeIPNS0_15ObFIFOAllocator14BasePageHeaderEEEE8get_sizeEv:0 + 0: 0 + 28.8: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEED2Ev:56639 + 2: 2611 + 3: 2611 + 3.1: 2538 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase6common10ObSpinLock6unlockEv:2611 + 2: 2611 _ZN9oceanbase6common12ObLatchMutex6unlockEv:2642 + 28.9: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEED2Ev:0 + 2: 0 + 3: 0 + 3.1: 0 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase6common10ObSpinLock6unlockEv:0 + 2: 0 +_ZN9oceanbase12blocksstable19ObIMicroBlockReader12locate_rangeERKNS0_12ObDatumRangeEbbRlS5_b:577207:2615 + 7: 2481 + 8: 2481 + 9: 2481 + 10: 2481 + 11: 2481 + 12: 2481 + 13: 2481 + 14: 2481 + 15: 0 + 16.1: 0 + 17.1: 2481 + 19: 2481 + 20: 1554 + 21.1: 1047 _ZThn320_N9oceanbase12blocksstable18ObMicroBlockReader10find_boundERKNS0_12ObDatumRangeElRlRbS5_S5_:1013 + 22.1: 0 + 23: 0 + 23.1: 1047 + 25.1: 1039 + 27: 0 + 28: 0 + 35: 0 + 36: 2592 + 37: 1599 + 38.1: 968 + 39: 0 + 40.1: 0 + 42: 968 + 44: 968 + 44.3: 968 _ZThn320_N9oceanbase12blocksstable18ObMicroBlockReader10find_boundERKNS0_13ObDatumRowkeyEblRlRb:1039 + 49.1: 0 + 50.1: 959 + 52.1: 958 + 52.2: 0 + 52.3: 0 + 55.1: 1047 + 64: 2571 + 19.2: _ZNK9oceanbase12blocksstable13ObDatumRowkey13is_min_rowkeyEv:44838 + 0.1: 954 + 0.2: 954 + 0.3: 954 + 0: _ZNK9oceanbase12blocksstable13ObDatumRowkey8is_validEv:13356 + 0: 954 + 0.1: 954 + 0.5: _ZNK9oceanbase6common7ObDatum6is_minEv:5724 + 0: 954 + 0.1: 0 + 0: _ZNK9oceanbase6common11ObDatumDesc6is_extEv:4770 + 0: 954 + 0.1: _ZNK9oceanbase6common5ObObj12is_min_valueEv:0 + 2: 0 + 2.1: 0 + 36.1: _ZNK9oceanbase12blocksstable12ObDatumRange11get_end_keyEv:3788 + 0: 947 + 36.2: _ZNK9oceanbase12blocksstable13ObDatumRowkey13is_max_rowkeyEv:50191 + 0.1: 947 + 0.2: 947 + 0.3: 947 + 0: _ZNK9oceanbase12blocksstable13ObDatumRowkey8is_validEv:12311 + 0: 947 + 0.1: 947 + 0.5: _ZNK9oceanbase6common7ObDatum6is_maxEv:5682 + 0: 947 + 0.1: 0 + 0: _ZNK9oceanbase6common11ObDatumDesc6is_extEv:4735 + 0: 947 + 0.1: _ZNK9oceanbase6common5ObObj12is_max_valueEv:0 + 2: 0 + 2.1: 0 + 42: _ZNK9oceanbase7storage15ObTableReadInfo16get_rowkey_countEv:7744 + 1: 968 + 42.2: _ZNK9oceanbase12blocksstable13ObDatumRowkey13get_datum_cntEv:3872 + 0: 968 + 44.5: _ZNK9oceanbase6common12ObBorderFlag13inclusive_endEv:9680 + 0: 968 +_ZN9oceanbase7storage8ObNopPos4initERNS_6common12ObIAllocatorEl:577094:5428 + 1: 5109 + 2: 5109 + 3: 5109 + 4: 0 + 5.1: 0 + 7: 5109 + 10: 5581 _ZN9oceanbase6common26ObWrapperAllocatorWithAttr5allocEl:5316 + 11: 5109 + 12: 0 + 13.1: 0 + 15: 5581 + 16: 5581 + 20: 5581 + 9: _ZN9oceanbase7storage8ObNopPos4freeEv:86853 + 2: 5109 + 2.1: 0 + 3: 0 + 4: 0 + 7: 5109 +_ZN9oceanbase3sql16ObExprColumnConv14column_convertERKNS0_6ObExprERNS0_9ObEvalCtxERNS_6common7ObDatumE:575342:1608 + 3: 1566 + 4: 1566 + 5: 1566 + 6: 1566 + 7: 4 + 8.1: 4 + 10: 1566 + 11: 1566 + 12: 1566 + 13: 1566 + 14: 1566 + 15: 1566 + 16: 1566 + 16.1: 1566 + 17: 4 + 18: 4 + 19: 4 + 20.1: 4 + 22: 4 + 24: 1656 + 25.1: 6 + 29: 4 + 30.1: 1656 + 34: 813 + 35: 813 _ZN9oceanbase3sql22string_collation_checkEbNS_6common15ObCollationTypeENS1_9ObObjTypeERNS1_8ObStringE:839 + 36.1: 4 + 38: 758 + 41: 4 + 42: 1597 + 43: 1597 + 44: 1639 _ZN9oceanbase3sql20datum_accuracy_checkERKNS0_6ObExprEmRNS0_9ObEvalCtxERKNS_6common7ObDatumERS7_Ri:1641 + 50.1: 4 + 52: 4 + 52.2: 4 + 53: 4 + 53.1: 4 + 55: 4 + 56: 4 + 57.1: 4 + 59: 4 + 60.8: 4 + 60.12: 4 + 63: 4 + 71: 1639 + 16: _ZN9oceanbase6common22ob_is_enum_or_set_typeENS0_9ObObjTypeE:25056 + 0: 1566 + 16.1: _ZNK9oceanbase6common9ObObjMeta14is_enum_or_setEv:0 + 0: 0 + 1: 0 + 24: _ZNK9oceanbase3sql6ObExpr4evalERNS0_9ObEvalCtxERPNS_6common7ObDatumE:109340 + 4: 1601 + 6: 1601 + 7: 1601 + 9: 1601 + 10: 6 + 10.1: 6 + 11: 4 + 13: 6 + 15.1: 1601 + 15.2: 538 + 17: 538 + 18: 538 + 20: 538 _ZN9oceanbase3sql7int_intERKNS0_6ObExprERNS0_9ObEvalCtxERNS_6common7ObDatumE:288 _ZN9oceanbase3sql13cast_eval_argERKNS0_6ObExprERNS0_9ObEvalCtxERNS_6common7ObDatumE:251 _ZN9oceanbase3sql17datetime_datetimeERKNS0_6ObExprERNS0_9ObEvalCtxERNS_6common7ObDatumE:1 + 21: 557 + 22: 557 + 9: _ZNK9oceanbase3sql6ObExpr15is_batch_resultEv:6404 + 0: 1601 + 11: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:16 + 0: 4 + 24: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:32 + 0: 4 + 30.1: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:8280 + 0: 1656 + 31: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:60 + 0: 4 + 33: _ZN9oceanbase6common17ob_is_string_typeENS0_9ObObjTypeE:44051 + 0: 1656 + 0: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:33120 + 0: 1656 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:9936 + 2: 1656 + 34: _ZNK9oceanbase6common7ObDatum10get_stringEv:9756 + 0: 813 + 0: _ZN9oceanbase6common8ObStringC2ElPKc:2439 + 5: 813 + 38: _ZN9oceanbase6common7ObDatum10set_stringERKNS0_8ObStringE:12128 + 0: 758 + 0: _ZNK9oceanbase6common8ObString3ptrEv:3032 + 0: 758 + 0.1: _ZNK9oceanbase6common8ObString6lengthEv:4548 + 0: 758 + 52.1: _ZN9oceanbase3lib14is_oracle_modeEv:396 + 2: 4 + 2: _ZN9oceanbase3lib15get_compat_modeEv:384 + 2: 4 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:300 + 2: 4 + 2.1: 4 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:88 + 1: 4 + 56: _ZNK9oceanbase3sql6ObExpr4evalERNS0_9ObEvalCtxERPNS_6common7ObDatumE:596 + 4: 4 + 6: 4 + 7: 4 + 9: 4 + 10: 4 + 10.1: 4 + 11: 4 + 13: 4 + 15.1: 4 + 15.2: 4 + 17: 4 + 18: 4 + 20: 4 + 21: 4 + 22: 4 + 24: 4 + 9: _ZNK9oceanbase3sql6ObExpr15is_batch_resultEv:16 + 0: 4 + 11: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:16 + 0: 4 + 24: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:28 + 0: 4 + 59: _ZNK9oceanbase6common7ObDatum10get_stringEv:48 + 0: 4 + 0: _ZN9oceanbase6common8ObStringC2ElPKc:12 + 5: 4 + 60.2: _ZN9oceanbase6common8ObLogger10get_loggerEv:372 + 2: 4 + 2.1: 4 + 2.2: 4 + 2.3: 4 + 2.6: 4 + 60.9: _ZN9oceanbase6common8ObLogger10get_loggerEv:344 + 2: 4 + 2.1: 4 + 2.2: 4 + 2.3: 4 + 2.6: 4 +_ZN9oceanbase12blocksstable22ObIndexBlockRowScanner17read_curr_idx_rowEv:575107:5158 + 1: 4965 + 2: 4965 + 3: 4965 + 4: 4965 + 5: 5072 + 6: 5072 _ZNK9oceanbase12blocksstable22ObIndexBlockDataHeader14get_index_dataElRPKc:5273 + 7.1: 4 + 8.1: 5202 _ZN9oceanbase12blocksstable21ObIndexBlockRowParser4initEPKc:5087 + 9.1: 4 + 11.1: 0 + 12: 4 + 13.1: 4 + 14.1: 0 + 15.1: 4 + 16.1: 0 + 17.1: 4 + 18.1: 0 + 19.1: 0 + 21: 5202 + 3: _ZNK9oceanbase7storage15ObTableReadInfo16get_rowkey_countEv:19860 + 1: 4965 + 18.1: _ZN9oceanbase12blocksstable13ObDatumRowkey6assignEPNS0_14ObStorageDatumEi:220 + 2: 0 + 4: 0 + 4.2: 0 + 5: 4 + 6.1: 4 + 9: 0 + 10: 0 + 13: 4 + 8: _ZN9oceanbase12blocksstable13ObDatumRowkey5resetEv:0 + 0: 0 +_ZN9oceanbase3sql8ObDASCtx13has_same_lsidEPNS_5share6ObLSIDE:573364:4655 + 1: 4392 + 4.2: 4581 + 4.5: 9088 + 6.2: 4425 + 6.5: 8436 + 7.1: 4234 + 8.1: 4245 + 18: 4886 + 22.7: 4886 + 4.4: _ZNK9oceanbase6common4list8IteratorINS0_6ObListIPNS_3sql13ObDASTableLocENS0_12ObIAllocatorEEEEneERKS9_:27264 + 2: 9088 + 6.4: _ZNK9oceanbase6common4list8IteratorINS0_6ObListIPNS_3sql14ObDASTabletLocENS0_12ObIAllocatorEEEEneERKS9_:25308 + 2: 8436 + 8: _ZNK9oceanbase5share6ObLSID8is_validEv:17178 + 0: 4245 + 9: _ZN9oceanbase5share6ObLSIDaSERKS1_:16936 + 0: 4234 + 15: _ZNK9oceanbase5share6ObLSID8is_validEv:34202 + 0: 4886 + 19: _ZN9oceanbase5share6ObLSIDaSERKS1_:14658 + 0: 4886 +_ZN9oceanbase8observer23worker_allocator_deleteINS_3rpc5frame14ObReqProcessorEEEvRPT_:571304:5779 + 1: 5382 + 2: 5382 + 3: 5382 _ZN9oceanbase8observer9ObMPQueryD1Ev:5395 + 4: 5151 + 4.1: 5151 _ZN9oceanbase6common16ObArenaAllocator4freeEPv:5175 + 5: 5069 + 7: 5069 + 4: _ZN9oceanbase8observer23get_sql_arena_allocatorEv:293607 + 1: _ZN9oceanbase3lib6Worker4selfEv:113322 + 3: 5151 + 4: 0 + 1.1: _ZN9oceanbase3lib6Worker23get_sql_arena_allocatorEv:180285 + 2: 5151 + 2: _ZN9oceanbase3lib4Flow11current_ctxEv:123624 + 2: _ZN9oceanbase3lib4Flow12current_flowEv:123624 + 3: 5151 + 8: 0 + 12: 0 + 8.1: _ZN9oceanbase3lib4FlowC2ERNS0_13MemoryContextE:0 + 1: 0 + 3: 0 + 10: _ZN9oceanbase3lib4Flow4initEv:0 + 4: 0 + 7: 0 + 8: 0 + 9: 0 + 12: 0 + 7: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 2.1: _ZNK9oceanbase3lib13MemoryContextptEv:20604 + 1: 5151 +_ZNK9oceanbase3sql11ObResultSet13get_field_cntEv:570912:15431 + 1: 15024 + 4: 15024 + 5.1: 0 + 6: 0 + 9: 15024 + 12: 15024 + 4: _ZNK9oceanbase3sql11ObResultSet17get_field_columnsEv:135216 + 2: 15024 + 1065: 15024 + 8: _ZNK9oceanbase3sql11ObResultSet17get_field_columnsEv:0 + 2: 0 + 8.1: _ZNK9oceanbase6common12ObIArrayWrapINS0_7ObFieldEE5countEv:90144 + 0: 15024 +_ZNSt17_Function_handlerIFblEZN9oceanbase3sql24ObHashPartInfrastructureINS2_14ObHashPartColsENS2_19ObHashPartStoredRowEE30update_mem_status_periodicallyEvEUllE_E9_M_invokeERKSt9_Any_dataOl:562496:25650 + 1: 25568 + 2: 25568 + 2.1: _ZZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE30update_mem_status_periodicallyEvENKUllE_clEl:332384 + 0: 25568 +_ZN9oceanbase7storage15ObLobDataReaderD2Ev:559858:4637 + 1: 4146 + 2: 4148 + 2: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:335928 + 0: 4146 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEED2Ev:273738 + 0: 4146 + 0.3: 0 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:211548 + 4.1: 4146 + 6: 0 + 7: 0 + 13: 4148 + 14: 4148 + 15: 4148 + 18: 4148 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:0 + 0: 0 + 5.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:2 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:2 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:2 + 2: 0 + 3: 0 + 4: 0 + 5: 2 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 2.1: _ZN9oceanbase6common10ObTabletIDD2Ev:33184 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:33184 + 0: 4148 +_ZN9oceanbase7storage15ObLobDataReaderD1Ev:559858:4637 + 1: 4146 + 2: 4148 + 2: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:335928 + 0: 4146 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEED2Ev:273738 + 0: 4146 + 0.3: 0 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:211548 + 4.1: 4146 + 6: 0 + 7: 0 + 13: 4148 + 14: 4148 + 15: 4148 + 18: 4148 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:0 + 0: 0 + 5.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:2 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:2 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:2 + 2: 0 + 3: 0 + 4: 0 + 5: 2 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 2.1: _ZN9oceanbase6common10ObTabletIDD2Ev:33184 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:33184 + 0: 4148 +_ZN9oceanbase3sql5ObSql16parser_and_checkERKNS_6common8ObStringERNS0_13ObExecContextERNS0_14ObPlanCacheCtxER11ParseResultiRbSC_:557558:544 + 7: 524 + 8: 524 + 9: 524 + 13: 524 + 15: 524 + 16: 0 + 17.1: 0 + 18.1: 524 _ZN9oceanbase6common23get_reserved_stack_sizeEv:529 + 18.2: 546 _ZN9oceanbase6common20check_stack_overflowERblPl:550 + 19.1: 0 + 20.1: 520 + 21: 1 + 22.1: 1 + 23.1: 520 + 24: 0 + 25.1: 0 + 28: 520 + 28.1: 520 _ZN9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE5reuseEv:536 + 29.2: 502 _ZN9oceanbase3sql8ObParserC1ERNS_6common12ObIAllocatorEmNS2_15ObCollationTypeE:517 + 30: 516 + 30.1: 516 _ZN9oceanbase3sql8ObParser5parseERKNS_6common8ObStringER11ParseResult9ParseModebbb:531 + 30.2: 495 + 33.1: 0 + 34.1: 495 + 34.2: 1 + 35: 495 + 35.2: 1 + 35.3: 1 + 36.1: 1 + 38: 495 + 40: 495 + 41: 0 + 42.1: 0 + 43.1: 495 + 44: 0 + 45.1: 0 + 47.1: 495 + 48: 0 + 49.1: 0 + 52: 495 + 53: 495 + 76.1: 1 + 78: 489 + 79: 489 + 80: 0 + 81.1: 0 + 82.1: 489 + 82.2: 489 + 83: 489 + 83.1: 489 + 84: 1 + 85.1: 1 + 88: 489 + 89: 489 + 90: 0 + 91.1: 0 + 93.1: 489 + 93.2: 1 + 94: 514 + 95.1: 1 + 96: 1 + 100.2: 1 + 100.4: 1 + 100.5: 1 + 100.6: 1 + 100.7: 1 + 100.8: 1 + 100.9: 1 + 100.14: 0 + 100.15: 0 + 100.16: 0 + 100.17: 0 + 100.18: 0 + 100.19: 0 + 101.1: 0 + 106: 514 + 109: 514 + 110: 0 + 110.1: 0 + 111: 0 + 112.1: 0 + 115: 0 + 115.1: 0 + 116: 0 + 118: 0 + 125: 496 _ZN9oceanbase3sql8ObParserD1Ev:523 + 125.1: 0 + 127: 498 + 128: 498 + 130: 498 + 132: 498 + 134: 496 + 135: 496 + 136: 496 + 138: 496 + 140: 496 + 140.1: 496 + 140.2: 531 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:524 + 144.1: 1 + 145: 0 + 146.1: 0 + 147.1: 1 + 148.1: 0 + 149.1: 1 + 151.1: 1 + 152: 1 + 153: 1 + 157.1: 1 + 161: 1 + 164: 1 + 165: 1 + 167.1: 1 + 174: 531 + 176.1: 531 + 178: 1 + 181.1: 0 + 182.1: 1 + 185.1: 1 + 191: 531 + 191.2: 0 + 192.1: 531 + 193: 544 + 194.1: 0 + 196: 0 + 197: 1 + 201.1: 556 + 206: 1 + 207.1: 1 + 208: 1 + 209: 0 + 210.1: 1 + 211: 1 + 212: 1 + 212.2: 0 + 218: 0 + 219.1: 0 + 224: 0 + 225: 0 + 225.2: 0 + 225.3: 0 + 225.4: 0 + 225.5: 0 + 225.6: 0 + 225.7: 0 + 225.9: 0 + 232.1: 0 + 234: 0 + 237: 0 + 242: 549 + 10: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:5764 + 2: 524 + 12: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:3668 + 2: 524 + 27: _ZN9oceanbase3sql17ObPhysicalPlanCtx23reset_datum_param_storeEv:25480 + 2: 520 + 5: 520 + 2: _ZN9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE5reuseEv:3640 + 0: _ZN9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE13destruct_objsEv:3640 + 11: 520 + 3: _ZN9oceanbase6common9Ob2DArrayINS_3sql15ObDatumObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS3_Ll1ES4_Lb0EEEE5reuseEv:3640 + 0: _ZN9oceanbase6common9Ob2DArrayINS_3sql15ObDatumObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS3_Ll1ES4_Lb0EEEE13destruct_objsEv:3640 + 11: 520 + 4: _ZN9oceanbase6common13ObSEArrayImplIPcLl1ENS0_19ModulePageAllocatorELb1EE5reuseEv:9360 + 8: 520 + 9: 520 + 29: _ZNK9oceanbase3sql18ObBasicSessionInfo12get_sql_modeEv:27610 + 0: 502 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache12get_sql_modeEv:26104 + 0: 502 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache12get_sql_modeEb:13052 + 0: 502 + 29.1: _ZNK9oceanbase3sql18ObBasicSessionInfo30get_local_collation_connectionEv:17570 + 2: 502 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_collation_connectionEv:11044 + 0: 502 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_collation_connectionEb:9538 + 0: 502 + 30: _ZNK9oceanbase3sql8ObSqlCtx25handle_batched_multi_stmtEv:9301 + 0: _ZNK9oceanbase3sql15ObMultiStmtItem21is_batched_multi_stmtEv:9301 + 3: 516 + 4: 1 + 6: 516 + 100.1: _ZN9oceanbase3lib14is_oracle_modeEv:44 + 2: _ZN9oceanbase3lib15get_compat_modeEv:44 + 2: 1 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:28 + 2: 1 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 114: _ZN9oceanbase3sql11ObPlanCache14inc_access_cntEv:0 + 0.1: 0 + 128: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:3984 + 0: 498 + 130: _ZN9oceanbase3sql10ObSQLUtils16is_readonly_stmtER11ParseResult:31785 + 3: 498 + 3.1: 498 + 4: 498 + 4.1: 498 + 5: 498 + 5.1: 498 + 7: 498 + 8: 498 + 8.1: 1 + 11.1: 1 + 12: 1 + 12.1: 1 + 13: 1 + 13.1: 1 + 132: _ZN9oceanbase3sql10ObSQLUtils21is_modify_tenant_stmtER11ParseResult:18924 + 3: 498 + 3.1: 498 + 4: 498 + 4.1: 498 + 5: 498 + 5.1: 498 + 6: 498 + 8: 498 + 134: _ZN9oceanbase3sql10ObSQLUtils21cause_implicit_commitER11ParseResult:28432 + 3: 498 + 3.1: 498 + 4: 498 + 4.1: 498 + 5: 498 + 5.1: 498 + 7: 498 + 9: 498 + 135: _ZN9oceanbase3sql10ObSQLUtils14is_commit_stmtERK11ParseResult:23312 + 3: 496 + 3.1: 496 + 4: 496 + 5: 496 + 6: 496 + 136: _ZN9oceanbase3sql10ObSQLUtils17get_sql_item_typeERK11ParseResult:16368 + 3: 496 + 3.1: 496 + 4: 496 + 4.1: 496 + 5: 496 + 5.1: 496 + 6: 496 + 140: _ZNK9oceanbase3sql16ObSQLSessionInfo8is_innerEv:4464 + 2: 496 + 140.1: _ZNK9oceanbase3sql14ObPlanCacheCtx20is_begin_commit_stmtEv:3968 + 0: 496 + 152: _ZN9oceanbase3sql10ObSQLUtils17is_end_trans_stmtERK11ParseResult:40 + 3: 1 + 3.1: 1 + 4: 1 + 5: 1 + 6: 1 + 155: _ZN9oceanbase3sql13ObExecContext19set_need_disconnectEb:11 + 0: 1 + 161: _ZNK9oceanbase3sql18ObBasicSessionInfo17get_query_timeoutERl:38 + 2: 1 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache20get_ob_query_timeoutEv:35 + 0: 1 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache20get_ob_query_timeoutEb:24 + 0: 1 + 164.1: _ZN9oceanbase3sql17ObPhysicalPlanCtx21set_timeout_timestampEl:8 + 2: 1 + 201.1: _ZNK9oceanbase3sql15ObMultiStmtItem21is_batched_multi_stmtEv:2725 + 3: 544 + 212: _ZN9oceanbase3sql17ObPhysicalPlanCtx26get_param_store_for_updateEv:0 + 0: 0 + 212.1: _ZNK9oceanbase3sql18ObBasicSessionInfo30get_local_collation_connectionEv:0 + 2: 0 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_collation_connectionEv:0 + 0: 0 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_collation_connectionEb:0 + 0: 0 + 223: _ZN9oceanbase3sql17ObPhysicalPlanCtx23reset_datum_param_storeEv:0 + 5: 0 + 2: _ZN9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE5reuseEv:0 + 0: _ZN9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE13destruct_objsEv:0 + 11: 0 + 3: _ZN9oceanbase6common9Ob2DArrayINS_3sql15ObDatumObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS3_Ll1ES4_Lb0EEEE5reuseEv:0 + 0: _ZN9oceanbase6common9Ob2DArrayINS_3sql15ObDatumObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS3_Ll1ES4_Lb0EEEE13destruct_objsEv:0 + 11: 0 + 4: _ZN9oceanbase6common13ObSEArrayImplIPcLl1ENS0_19ModulePageAllocatorELb1EE5reuseEv:0 + 8: 0 + 9: 0 + 225.4: _ZNSt8functionIFivEEC2IZN9oceanbase3sql5ObSql16parser_and_checkERKNS3_6common8ObStringERNS4_13ObExecContextERNS4_14ObPlanCacheCtxER11ParseResultiRbSG_E6$_2143vEET_:0 + 8: 0 + 9: 0 + 7.1: _ZNSt14_Function_base13_Base_managerIZN9oceanbase3sql5ObSql16parser_and_checkERKNS1_6common8ObStringERNS2_13ObExecContextERNS2_14ObPlanCacheCtxER11ParseResultiRbSE_E6$_2143E15_M_init_functorERSt9_Any_dataOSF_:0 + 1.1: _ZNSt14_Function_base13_Base_managerIZN9oceanbase3sql5ObSql16parser_and_checkERKNS1_6common8ObStringERNS2_13ObExecContextERNS2_14ObPlanCacheCtxER11ParseResultiRbSE_E6$_2143E15_M_init_functorERSt9_Any_dataOSF_St17integral_constantIbLb0EE:0 + 1: 0 + 237.1: _ZNK9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE5countEv:0 + 0: 0 +_ZN9oceanbase5share12ObLSLocation5resetEv:556605:4498 + 1: 4185 + 4: 4185 + 5: 4185 + 7: 4185 + 2: _ZN9oceanbase5share20ObLSLocationCacheKey5resetEv:79515 + 2: 4185 + 4: _ZN9oceanbase5share6ObLSID5resetEv:33480 + 0: 4185 + 5: _ZN9oceanbase6common13ObSEArrayImplINS_5share19ObLSReplicaLocationELl3ENS0_19ModulePageAllocatorELb0EE5resetEv:305505 + 0: 4185 + 0: _ZN9oceanbase6common13ObSEArrayImplINS_5share19ObLSReplicaLocationELl3ENS0_19ModulePageAllocatorELb0EE7destroyEv:217620 + 4.1: 4185 + 4.3: 0 + 5: 0 + 9: 4185 + 10: 0 + 11: 0 + 13: 4185 + 15: 4185 + 24: 4185 + 6: _ZN9oceanbase6common6ObLink5resetEv:29295 + 0: 4185 +_ZN9oceanbase3sql18ObBasicSessionInfo21gen_configs_in_pc_strEv:554765:5162 + 1: 4865 + 2: 4865 + 3: 4865 + 5: 4865 + 6: 4865 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:5317 + 7: 5363 _ZN9oceanbase3omt17ObTenantConfigMgr12get_instanceEv:5234 + 7.1: 5363 _ZN9oceanbase3omt17ObTenantConfigMgr25get_tenant_config_versionEm:5392 + 9: 5338 + 14: 0 + 15: 0 + 16: 0 + 17: 0 + 18.1: 0 + 20: 0 + 24: 0 + 29: 0 + 30.1: 0 + 31.1: 0 + 32.1: 0 + 33.1: 0 + 35: 0 + 39: 5338 + 6.1: _ZN9oceanbase6common14ObServerConfig19get_current_versionEv:68628 + 0: 4902 + 0: _ZNK9oceanbase6common14ObSystemConfig11get_versionEv:34314 + 0: 4902 + 9: _ZN9oceanbase3sql16ObConfigInfoInPC14is_out_of_dateEll:85408 + 2: 5338 + 3: 5338 + 15: _ZN9oceanbase3sql16ObConfigInfoInPC4initEi:0 + 0: 0 + 16: _ZN9oceanbase6common12ObStringBufTINS0_19ModulePageAllocatorENS0_9PageArenaIcS2_EEE5allocEl:0 + 0: 0 + 23: _ZN9oceanbase6common8ObString3ptrEv:0 + 0: 0 + 24: _ZNK9oceanbase6common8ObString6lengthEv:0 + 0: 0 + 25: _ZN9oceanbase6common8ObString5resetEv:0 + 3: 0 + 35: _ZN9oceanbase6common8ObString6assignEPci:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 36: _ZN9oceanbase3sql16ObConfigInfoInPC14update_versionEll:0 + 2: 0 + 3: 0 +_ZNK9oceanbase12blocksstable22ObIndexBlockDataHeader14get_index_dataElRPKc:552216:5273 + 1: 4844 + 2: 4844 + 3: 4844 + 3.3: 4844 + 4: 0 + 5.1: 0 + 7: 4844 + 11: 0 + 12.1: 0 + 14: 4844 + 17: 4844 + 3: _ZNK9oceanbase12blocksstable22ObIndexBlockDataHeader8is_validEv:184072 + 2: 4844 + 3: 4844 + 3.1: 4844 + 4: 4844 + 4.1: 4844 + 5: 4844 + 5.1: 4844 + 6: 4844 + 6.1: 4844 + 9: _ZNK9oceanbase6common7ObDatum10get_stringEv:38752 + 0: 4844 + 0: _ZN9oceanbase6common8ObStringC2ElPKc:14532 + 5: 4844 + 10: _ZNK9oceanbase6common8ObString5emptyEv:19376 + 2: 4844 +_ZN9oceanbase7storage15ObAccessService20check_write_allowed_ERKNS_5share6ObLSIDERKNS_6common10ObTabletIDENS0_17ObStoreAccessTypeERKNS0_14ObDMLBaseParamERNS_11transaction8ObTxDescERNS1_15ObStoreCtxGuardE:551011:1012 + 7: 969 + 8: 969 + 10: 969 + 15: 969 + 17: 1058 + 18.1: 7 + 19.1: 1058 + 19.2: 0 + 20: 7 + 21.1: 7 + 22.1: 1115 _ZN9oceanbase7storage15ObAccessService26get_write_store_ctx_guard_ERKNS_5share6ObLSIDElRNS_11transaction8ObTxDescERKNS6_16ObTxReadSnapshotERNS1_15ObStoreCtxGuardE:1145 + 27.1: 7 + 29.1: 1064 + 30: 7 + 31.1: 7 + 32.1: 1064 + 33.1: 7 + 37: 1108 _ZNK9oceanbase11transaction8ObTxDesc13get_expire_tsEv:1108 + 37.1: 1058 + 37.2: 4 _ZNK9oceanbase11transaction8ObTxDesc13get_expire_tsEv:1 + 38: 1041 _ZN9oceanbase11transaction9tablelock11get_lock_idERKNS_6common10ObTabletIDERNS1_8ObLockIDE:1145 + 39.1: 7 + 40.1: 1041 _ZN9oceanbase11transaction9tablelock11ObLockParam3setERKNS1_8ObLockIDEhRKlNS1_17ObTableLockOpTypeElbbl:1035 + 47.1: 7 + 48.1: 1080 + 49.1: 7 + 50.1: 1080 + 51: 7 + 56: 1087 + 57: 7 + 59: 1087 + 11: _ZN9oceanbase11transaction9tablelock8ObLockIDC2Ev:20349 + 1: 969 + 2: 969 + 12: _ZN9oceanbase11transaction9tablelock11ObLockParamC2Ev:77520 + 2: 969 + 3: 969 + 4: 969 + 6: 969 + 7: 969 + 9: 969 + 1: _ZN9oceanbase11transaction9tablelock8ObLockIDC2Ev:13566 + 1: 969 + 2: 969 + 17: _ZN9oceanbase7storage15ObAccessService35check_tenant_out_of_memstore_limit_ERb:62621 + 2: 969 + 3: 969 + 6: 1058 _ZN9oceanbase7storage15ObTenantFreezer34check_tenant_out_of_memstore_limitERb:1040 + 7.1: 7 + 11: 7 + 5: _ZN9oceanbase5share11ObTenantEnv3mtlIPNS_7storage15ObTenantFreezerEEET_v:39215 + 2: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:16928 + 2: 969 + 2.1: 7 + 2.2: 7 + 2.1: _ZN9oceanbase5share12ObTenantBase3getIPNS_7storage15ObTenantFreezerEEET_v:18411 + 0: _ZN9oceanbase5share12ObTenantBase9inner_getENS1_8IdentityIPNS_7storage15ObTenantFreezerEEE:18411 + 0: 969 + 19.2: _ZNK9oceanbase6common10ObTabletID15is_inner_tabletEv:0 + 0: _ZNK9oceanbase6common10ObTabletID8is_validEv:0 + 0: 0 + 28.2: _ZN9oceanbase6common10ObTabletIDaSERKS1_:7448 + 0: 1064 + 29.2: _ZN9oceanbase7storage10ObLSHandle6get_lsEv:7448 + 0: 1064 + 32.1: _ZNK9oceanbase7storage4ObLS16get_replica_typeEv:9576 + 0: 1064 + 32.2: _ZN9oceanbase7storage15ObAccessService27check_replica_allow_access_ENS0_17ObStoreAccessTypeENS_6common13ObReplicaTypeE:25219 + 4: 1064 + 5: 1064 + 6: 1064 + 7: 7 + 8.1: 7 + 10.1: 1 + 11: 1 + 12: 7 + 13.1: 7 + 16: 7 + 17.1: 7 + 19: 1 + 5: _ZN9oceanbase7storage17ObAccessTypeCheck20is_write_access_typeENS0_17ObStoreAccessTypeE:6384 + 2: 1064 + 6: _ZN9oceanbase6common18ObReplicaTypeCheck19is_writable_replicaEi:2128 + 2: 1064 + 10.1: _ZN9oceanbase7storage17ObAccessTypeCheck19is_read_access_typeENS0_17ObStoreAccessTypeE:6 + 2: 1 + 11: _ZN9oceanbase6common18ObReplicaTypeCheck19is_readable_replicaEi:5 + 2: 1 + 48.2: _ZN9oceanbase7storage4ObLS4lockIJRNS0_10ObStoreCtxERNS_11transaction9tablelock11ObLockParamEEEEiDpOT_:14143 + 0: 941 + 0.2: 941 _ZN9oceanbase11transaction9tablelock11ObLockTable4lockERNS_7storage10ObStoreCtxERKNS1_11ObLockParamE:1073 +_ZN9oceanbase8memtable10ObMemtable4scanERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS_12blocksstable12ObDatumRangeERPNS2_18ObStoreRowIteratorE:548602:1020 + 5: 983 + 6: 983 + 8: 983 + 9: 983 + 10.1: 0 + 11: 0 + 12.1: 983 _ZNK9oceanbase7storage16ObTableIterParam8is_validEv:996 + 12.2: 1004 + 12.4: 1004 + 12.7: 1004 + 13.1: 0 + 14: 0 + 16: 1004 + 17.1: 0 + 17.2: 0 + 17.3: 0 + 17.5: 0 + 17.11: 0 + 17.13: 0 + 17.14: 0 + 17.15: 0 + 17.16: 0 + 17.21: 0 + 17.22: 0 + 20: 0 + 21: 0 + 21.2: 0 + 21.3: 0 + 26.1: 0 + 30.1: 1044 + 30.2: 0 + 30.3: 0 + 30.5: 0 + 30.11: 1056 + 30.13: 1056 _ZN9oceanbase6common26ObWrapperAllocatorWithAttr5allocEl:1077 + 30.14: 1052 + 30.15: 0 + 30.16: 0 + 30.21: 1052 _ZN9oceanbase8memtable22ObMemtableScanIteratorC1Ev:1075 + 30.22: 1043 + 33: 1043 + 34: 1043 + 34.1: 1097 + 39.1: 0 + 44: 0 + 45: 1113 + 47: 0 + 48: 0 + 49.1: 0 + 49.2: 0 + 50: 0 + 52.1: 0 + 59: 0 + 60.12: 1113 + 7: _ZN9oceanbase12blocksstable12ObDatumRangeC2Ev:57997 + 0.7: _ZN9oceanbase12blocksstable13ObDatumRowkeyC2Ev:57997 + 0: _ZN9oceanbase6common13ObStoreRowkeyC2Ev:57997 + 0: 983 + 12.3: _ZNK9oceanbase7storage20ObTableAccessContext8is_validEv:42168 + 1: 1004 + 2: 1004 + 2.1: 1004 + 3: 1004 + 3.1: 1004 + 4: 1004 + 4.1: 1004 + 12.5: _ZNK9oceanbase12blocksstable12ObDatumRange8is_validEv:26104 + 2: 1004 + 2: _ZNK9oceanbase12blocksstable13ObDatumRowkey8is_validEv:5020 + 0: 1004 + 2.1: _ZNK9oceanbase12blocksstable13ObDatumRowkey8is_validEv:5020 + 0: 1004 + 21: _ZNK9oceanbase6common11ObQueryFlag15is_reverse_scanEv:0 + 0: 0 + 21.1: _ZNK9oceanbase8memtable10ObMemtable16m_get_real_rangeERNS_12blocksstable12ObDatumRangeERKS3_b:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 12: 0 + 7.1: _ZNK9oceanbase6common12ObBorderFlag15inclusive_startEv:0 + 0: 0 + 8: _ZN9oceanbase6common12ObBorderFlag17set_inclusive_endEv:0 + 0: 0 + 34: _ZN9oceanbase8memtable22ObMemtableScanIterator4initERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextEPNS2_8ObITableEPKv:174582 + 6: 1043 + 7: 1043 + 11.1: 1097 + 12.1: 0 + 13.1: 1097 + 14.1: 0 + 16: 1097 + 11.1: _ZN9oceanbase8memtable22ObMemtableScanIterator4initEPNS0_11ObIMemtableERKNS_7storage16ObTableIterParamERNS4_20ObTableAccessContextE:99267 + 5: 1043 + 6: 1043 + 7: 0 + 10: 1043 + 11: 0 + 12.1: 0 + 13.1: 1097 + 13.2: 1043 _ZN9oceanbase12blocksstable10ObDatumRow4initERNS_6common12ObIAllocatorEl:1091 + 14.1: 0 + 17: 1097 + 18: 1097 + 19: 1097 + 20: 1097 + 23: 1097 + 24: 0 + 26: 0 + 10: _ZNK9oceanbase7storage16ObTableIterParam13get_read_infoEb:4172 + 2.2: 1043 + 13.1: _ZNK9oceanbase7storage15ObTableReadInfo17get_request_countEv:7301 + 1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:7301 + 0: 1043 + 13.1: _ZN9oceanbase8memtable22ObMemtableScanIterator9set_rangeERKNS_12blocksstable12ObDatumRangeE:44977 + 3: 1097 + 6: 1097 + 7: 1097 +_ZN9oceanbase6common13ObSEArrayImplINS_3sql18ObPhyTableLocationELl2ENS0_19ModulePageAllocatorELb0EED2Ev:546210:5395 + 1: 5202 + 3: 5202 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_3sql18ObPhyTableLocationELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv:291312 + 4.1: 5202 + 4.3: 0 + 9: 5202 + 11: 0 + 13: 5202 + 15: 5202 + 24: 5202 + 5: _ZN9oceanbase3sql18ObPhyTableLocationD2Ev:0 + 0: _ZN9oceanbase6common4hash9ObHashMapIllNS1_19NoPthreadDefendModeENS1_9hash_funcIlEENS1_8equal_toIlEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIllEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:0 + 2: 0 + 2: _ZN9oceanbase6common4hash11ObHashTableIlNS1_11HashMapPairIllEENS1_9hash_funcIlEENS1_8equal_toIlEENS1_10pair_firstIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS4_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:0 + 2.1: 0 + 2.2: 0 + 3: 0 + 5.2: 0 + 2: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairIllEENS1_5NLockENS1_5NCondEEEEEbRKT_:0 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairIllEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:0 + 2: 0 + 2.2: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIllEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEED2Ev:0 + 2.1: 0 + 2: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIllEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEE5clearEv:0 + 2: 0 + 3.1: 0 + 4: 0 + 5: 0 + 6.1: 0 + 15: 0 + 10: _ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocator4freeEPv:0 + 3: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 0.1: _ZN9oceanbase6common13ObSEArrayImplINS_5share26ObPartitionReplicaLocationELl1ENS0_19ModulePageAllocatorELb0EED2Ev:0 + 1: 0 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_5share26ObPartitionReplicaLocationELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:0 + 9: 0 + 11: 0 + 13: 0 + 15: 0 + 24: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_5share26ObPartitionReplicaLocationELl1ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_3sql18ObPhyTableLocationELl2ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZNSt14_Function_base13_Base_managerIZN9oceanbase3sql24ObHashPartInfrastructureINS2_14ObHashPartColsENS2_19ObHashPartStoredRowEE30update_mem_status_periodicallyEvEUllE_E10_M_managerERSt9_Any_dataRKS9_St18_Manager_operation:545081:26130 + 2: 25705 + 3: 25705 + 7: 0 + 11: 0 + 22: 27024 + 15: _ZNSt14_Function_base13_Base_managerIZN9oceanbase3sql24ObHashPartInfrastructureINS2_14ObHashPartColsENS2_19ObHashPartStoredRowEE30update_mem_status_periodicallyEvEUllE_E8_M_cloneERSt9_Any_dataRKS9_St17integral_constantIbLb1EE:0 + 2: 0 +_ZN9oceanbase3sql20ObSecurityAuditUtils21handle_security_auditERNS0_11ObResultSetEPNS_5share6schema19ObSchemaGetterGuardEPKNS0_6ObStmtERKNS_6common8ObStringEi:544049:4882 + 5: 4737 + 6: 4737 + 8: 4737 + 10.1: 4870 + 13: 4870 + 16: 0 + 17: 0 + 18: 0 + 19: 0 + 20: 0 + 23.1: 0 + 23.2: 0 + 25.1: 0 + 26.1: 0 + 26.2: 0 + 32.1: 0 + 37: 4937 + 8: _ZN9oceanbase3sql11ObResultSet11get_sessionEv:47370 + 0: 4737 + 8.1: _ZNK9oceanbase3sql16ObSQLSessionInfo15is_user_sessionEv:37896 + 0: 4737 + 10.2: _ZN9oceanbase3sql16ObSQLSessionInfo27get_tenant_audit_trail_typeERNS0_16ObAuditTrailTypeE:72554 + 2: 4808 _ZN9oceanbase3sql16ObSQLSessionInfo24ObCachedTenantConfigInfo7refreshEv:4970 + 3: _ZNK9oceanbase3sql16ObSQLSessionInfo24ObCachedTenantConfigInfo11get_at_typeEv:34090 + 0: 4870 + 15: _ZN9oceanbase3sql20ObSecurityAuditUtils14AuditDataParamC2Ev:0 + 0: 0 + 3: 0 + 7: 0 + 16: _ZNK9oceanbase3sql11ObResultSet13get_stmt_typeEv:0 + 2: 0 + 23.1: _ZN9oceanbase3sql11ObResultSet11get_sessionEv:0 + 0: 0 + 26.1: _ZN9oceanbase3sql11ObResultSet11get_sessionEv:0 + 0: 0 +_ZN9oceanbase6common12ObLatchMutexC2Ev:539682:32317 + 1: 31746 + 2: 31746 + 3: 31746 + 1: _ZN9oceanbase3lib7ObFutexC2Ev:222222 + 1: 31746 +_ZN9oceanbase6common12ObLatchMutexC1Ev:539682:32317 + 1: 31746 + 2: 31746 + 3: 31746 + 1: _ZN9oceanbase3lib7ObFutexC2Ev:222222 + 1: 31746 +_ZN9oceanbase8observer11ObSrvXlator13get_processorERNS_3rpc9ObRequestE:538888:5506 + 1: 5181 + 3: 5181 + 6: 5181 + 8.1: 5181 + 9: 5180 _ZN9oceanbase8observer16ObSrvMySQLXlator9translateERNS_3rpc9ObRequestERPNS2_5frame14ObReqProcessorE:5276 + 13: 1 _ZN9oceanbase8observer14ObSrvRpcXlator9translateERNS_3rpc9ObRequestERPNS2_5frame14ObReqProcessorE:1 + 14: 2 + 15: 2 + 16: 2 + 21: 0 + 23.1: 0 + 28: 5414 + 30: 0 + 33: 5297 + 34: 0 + 35: 0 + 37: 0 + 42: 5297 + 6: _ZNK9oceanbase3rpc9ObRequest16get_discard_flagEv:36267 + 2: 5181 + 8.1: _ZNK9oceanbase3rpc9ObRequest8get_typeEv:41448 + 0: 5181 + 12: _ZNK9oceanbase3rpc9ObRequest10get_packetEv:8 + 2: 1 + 15: _ZN9oceanbase3lib6Worker4selfEv:56 + 3: 2 + 4: 0 + 15.2: _ZNK9oceanbase5obrpc11ObRpcPacket11get_timeoutEv:8 + 0: 2 + 15.3: _ZN9oceanbase3lib6Worker14set_timeout_tsEl:14 + 0: 2 + 16: _ZN9oceanbase3lib6Worker4selfEv:18 + 3: 2 + 4: 0 + 16.1: _ZNK9oceanbase3rpc9ObRequest21get_receive_timestampEv:22 + 2: 2 + 16.2: _ZNK9oceanbase3rpc9ObRequest18get_send_timestampEv:56 + 3: 2 + 3.1: 2 + 4: _ZNK9oceanbase5obrpc11ObRpcPacket13get_timestampEv:10 + 2: 2 + 16.3: _ZN9oceanbase3lib6Worker14set_ntp_offsetEl:14 + 0: 2 + 29: _ZN9oceanbase8observer23worker_allocator_deleteINS_3rpc5frame14ObReqProcessorEEEvRPT_:0 + 3: 0 + 4: 0 + 4.1: 0 + 4: _ZN9oceanbase8observer23get_sql_arena_allocatorEv:0 + 1: _ZN9oceanbase3lib6Worker4selfEv:0 + 3: 0 + 4: 0 + 1.1: _ZN9oceanbase3lib6Worker23get_sql_arena_allocatorEv:0 + 2: 0 + 2: _ZN9oceanbase3lib4Flow11current_ctxEv:0 + 2: _ZN9oceanbase3lib4Flow12current_flowEv:0 + 3: 0 + 8: 0 + 12: 0 + 8.1: _ZN9oceanbase3lib4FlowC2ERNS0_13MemoryContextE:0 + 1: 0 + 3: 0 + 10: _ZN9oceanbase3lib4Flow4initEv:0 + 4: 0 + 7: 0 + 8: 0 + 9: 0 + 12: 0 + 7: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 2.1: _ZNK9oceanbase3lib13MemoryContextptEv:0 + 1: 0 + 34: _ZNK9oceanbase3rpc9ObRequest8get_typeEv:0 + 0: 0 + 37: _ZN9oceanbase8observer11ObSrvXlator25get_error_mysql_processorEi:0 + 2: 0 + 3: 0 + 38: _ZN9oceanbase8observer9ObMPError19set_need_disconnectEb:0 + 0: 0 +_ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql20ObTablePartitionInfoENS0_12ObIAllocatorEED2Ev:537424:10331 + 0: 9787 + 0.1: 10102 + 0.3: 9 + 0: _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql20ObTablePartitionInfoENS0_12ObIAllocatorEE7destroyEv:241537 + 2: 9787 + 5: 4995 + 9: 9 + 10: 9 + 12: 5137 + 13: 5137 + 15: 5137 +_ZN9oceanbase3sql13ObExecContext12reset_op_envEv:535251:4777 + 1: 4346 + 4: 4344 + 5: 4344 + 6: 4344 + 8: 4344 + 9: 0 + 13: 4518 + 14: 4518 + 16: 4579 + 2: _ZN9oceanbase3sql13ObExecContext12reset_op_ctxEv:117342 + 2: _ZN9oceanbase3sql13ObExecContext13reset_expr_opEv:69536 + 2: 4346 + 4: 0 + 5: 0 + 5.1: 0 + 6: 0 + 7: 0 + 10: 0 + 11: 0 + 3: _ZN9oceanbase3sql12ObOpKitStore7destroyEv:47806 + 2: 4346 + 3.1: 0 + 4: 0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 3: _ZN9oceanbase3sql12ObOpKitStore5resetEv:34752 + 0: 4344 + 9: _ZNK9oceanbase6common4hash9ObHashMapImNS_3sql17ObGranuleTaskInfoENS1_19NoPthreadDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS4_EEEELi29ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE7createdEv:0 + 2: _ZNK9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImNS_3sql17ObGranuleTaskInfoEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS6_EELi29ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE7createdEv:0 + 2: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImNS_3sql17ObGranuleTaskInfoEEENS1_5NLockENS1_5NCondEEEEEbRKT_:0 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImNS_3sql17ObGranuleTaskInfoEEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:0 + 2: 0 + 10: _ZN9oceanbase6common4hash9ObHashMapImNS_3sql17ObGranuleTaskInfoENS1_19NoPthreadDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS4_EEEELi29ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE5clearEv:0 + 2: 0 +_ZN9oceanbase3rpc5frame15ObReqTranslator9translateERNS0_9ObRequestERPNS1_14ObReqProcessorE:535092:5151 + 1: 4989 + 2: 4989 + 3: 5006 _ZN9oceanbase8observer11ObSrvXlator13get_processorERNS_3rpc9ObRequestE:5506 + 4: 5006 + 5.1: 0 + 6: 0 + 9: 5006 _ZN9oceanbase5obrpc18ObRpcProcessorBase14set_ob_requestERNS_3rpc9ObRequestE:2 + 11: 5006 + 9: _ZN9oceanbase3rpc5frame14ObReqProcessor14set_ob_requestERNS0_9ObRequestE:220176 + 2: 5004 + 3: 5004 + 4: 5004 + 5: 5004 + 6: 5004 + 2: _ZNK9oceanbase3rpc9ObRequest8get_typeEv:30024 + 0: 5004 + 3: _ZNK9oceanbase3rpc9ObRequest16get_nio_protocolEv:30024 + 0: 5004 + 5: _ZNK9oceanbase3rpc9ObRequest21get_receive_timestampEv:35028 + 2: 5004 + 6: _ZNK9oceanbase3rpc9ObRequest21get_enqueue_timestampEv:35028 + 2: 5004 +_ZN9oceanbase6common16ObFixedArrayImplINS_7storage19ObSSTableReadHandleENS0_12ObIAllocatorEE16prepare_allocateEl:534751:1063 + 1: 1003 + 2: 1003 + 3: 1003 + 4: 0 + 5.1: 0 + 5.5: 0 + 5.9: 0 + 6.1: 1003 _ZN9oceanbase6common16ObFixedArrayImplINS_7storage19ObSSTableReadHandleENS0_12ObIAllocatorEE7reserveEl:1052 + 7.1: 0 + 7.5: 0 + 7.9: 0 + 9: 0 + 10: 979 + 10.1: 4006 + 10.3: 4006 + 11: 3858 + 14: 929 + 14.3: 929 + 15: 929 + 15.3: 929 + 17: 929 + 5.1: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 5.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 5.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 7.1: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 7.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 7.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 11: _ZN9oceanbase7storage19ObSSTableReadHandleC2Ev:287284 + 1: 3858 + 3: 3858 + 5: 3858 + 7: 3858 + 9: 4006 + 8: _ZN9oceanbase12blocksstable16ObRowValueHandleC2Ev:57886 + 0: 3858 _ZN9oceanbase6common15ObKVCacheHandleC1Ev:3911 +_ZN9oceanbase7storage22ObMicroBlockDataHandle21get_loaded_block_dataERNS_12blocksstable16ObMicroBlockDataE:532321:5073 + 1: 4863 + 2: 4863 + 6: 4863 + 8: 0 + 9.1: 0 + 11: 4863 + 14: 0 + 14.1: 0 + 15: 0 + 15.1: 0 + 18: 0 + 19.1: 0 + 20.1: 0 + 21.1: 0 + 22: 0 + 23.1: 0 + 25: 0 + 28: 0 + 32: 0 + 33.1: 0 + 38: 0 + 39.1: 0 + 41: 4961 + 7: _ZNK9oceanbase12blocksstable24ObMicroBlockBufferHandle14get_block_dataEv:131301 + 1: _ZNK9oceanbase12blocksstable24ObMicroBlockBufferHandle8is_validEv:131301 + 0: 4863 + 0.1: _ZNK9oceanbase6common15ObKVCacheHandle8is_validEv:53493 + 0: 4863 + 14: _ZN9oceanbase3lib6Worker4selfEv:0 + 3: 0 + 4: 0 + 14.2: _ZN9oceanbase6common3maxEli:0 + 2: 0 + 15.1: _ZNK9oceanbase12blocksstable16ObMicroBlockData8is_validEv:0 + 0: 0 + 0.1: 0 + 0.2: 0 + 21.1: _ZN9oceanbase12blocksstable18ObMacroBlockHandle10get_bufferEv:0 + 0: 0 +_ZN9oceanbase8memtable12ObMvccEngine10mvcc_writeERNS0_14ObIMemtableCtxElRNS0_9ObMvccRowERKNS0_11ObTxNodeArgERNS0_17ObMvccWriteResultE:529428:1135 + 5: 1036 + 6: 1036 + 9: 1014 + 10.1: 1 + 11.1: 1081 + 17.1: 1 + 23: 1081 + 9: _ZN9oceanbase8memtable12ObMvccEngine14build_tx_node_ERNS0_14ObIMemtableCtxERKNS0_11ObTxNodeArgERPNS0_15ObMvccTransNodeE:301669 + 4: 1036 + 6: 1036 + 7.1: 1 + 9: 1014 _ZNK9oceanbase8memtable13ObMemtableCtx9get_tx_idEv:1082 + 10: 1014 + 11: 1014 + 12: 1014 + 13: 1014 + 14: 1014 + 15: 1014 + 17: 1014 + 20: 1014 + 6: _ZN9oceanbase8memtable13ObMTKVBuilder8dup_dataINS0_14ObMemtableDataEEEiRPNS0_15ObMvccTransNodeERNS_6common12ObIAllocatorEPKT_:182614 + 2: 1036 + 4: 1036 + 5: 1036 + 6.1: 1 + 7.1: 1036 _ZN9oceanbase6common20ObGMemstoreAllocator11AllocHandle5allocEl:1081 + 8: 982 + 9.1: 1 + 10: 1 + 11.1: 1014 + 12.1: 1 + 14: 1 + 5: _ZN9oceanbase8memtable13ObMTKVBuilder13get_data_sizeINS0_14ObMemtableDataEEEiPKT_Rl:31099 + 3: 1036 + 4: 1036 + 6.1: 1 + 8: 1036 + 8: _ZNK9oceanbase8memtable14ObMemtableData8dup_sizeEv:4144 + 0: 1036 + 8.1: _ZN9oceanbase8memtable15ObMvccTransNodeC2Ev:42226 + 2: 982 + 3: 982 + 5: 982 + 7: 982 + 11.1: _ZN9oceanbase8memtable20ObMemtableDataHeader5buildINS0_14ObMemtableDataEEEiPS1_PKT_:52046 + 3: 982 + 5.1: 982 + 7.1: 982 + 10: 982 + 7.1: _ZN9oceanbase8memtable20ObMemtableDataHeaderC2ENS_12blocksstable9ObDmlFlagEl:6874 + 1: 982 + 9.3: _ZN9oceanbase11transaction9ObTransIDaSERKS1_:7098 + 1: 1014 + 11.1: _ZN9oceanbase8memtable9ObMvccRow10mvcc_writeERNS0_14ObIMemtableCtxElRNS0_15ObMvccTransNodeERNS0_17ObMvccWriteResultE:120504 + 5: 1014 + 8: 1094 + 8.1: 1072 + 10: 0 + 11.1: 0 + 14.1: 1072 _ZN9oceanbase8memtable9ObMvccRow11mvcc_write_ERNS0_14ObIMemtableCtxERNS0_15ObMvccTransNodeElRNS0_17ObMvccWriteResultE:1094 + 15.1: 1 + 16.1: 1049 + 18: 1 + 19.1: 1 + 20.1: 1049 + 22: 1 + 23.1: 1 + 24: 1 + 25.1: 1 + 28: 1 + 32: 1052 + 33: 1081 + 6: _ZNK9oceanbase8memtable9ObMvccRow10lock_beginERNS0_14ObIMemtableCtxE:9819 + 2: 1090 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:1068 + 3.1: 0 + 3: _ZN9oceanbase6common14ObTscTimestamp12get_instanceEv:85 + 2: 0 + 2.1: 1 + 2.3: 1 + 2.6: 1 + 2.2: _ZN9oceanbase6common14ObTscTimestampC2Ev:26 + 1: 1 + 3.2: _ZN9oceanbase8memtable10ObIMvccCtx19set_lock_start_timeEl:0 + 0: 0 + 24: _ZNK9oceanbase8memtable17ObMvccWriteResult10has_insertEv:13 + 0: 1 + 0.1: 1 + 32: _ZNK9oceanbase8memtable9ObMvccRow14mvcc_write_endERNS0_14ObIMemtableCtxEl:21663 + 2: 1136 _ZNK9oceanbase8memtable13ObMemtableCtx10is_can_elrEv:1101 + 2.1: 1145 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:1185 + 3: 1 + 3.1: 1 + 4.1: 1 + 4.2: 1 + 4.3: 1 + 4.4: 1 + 4.6: 1 + 4.7: 1 + 5: 1 + 6.1: 1 + 6.2: 1 + 6.3: 1 + 6.4: 1 + 6.6: 1 + 6.7: 1 + 8.1: 1 + 8.2: 1 + 8.3: 1 + 8.4: 1 + 8.6: 1 + 8.7: 1 + 10: 1 + 11.1: 1 + 3: _ZN9oceanbase6common14ObTscTimestamp12get_instanceEv:104 + 2: 1 + 2.1: 1 + 2.3: 1 + 2.6: 1 + 2.2: _ZN9oceanbase6common14ObTscTimestampC2Ev:26 + 1: 1 + 4.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:9 + 2: 1 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:4 + 2: 1 + 10.1: _Z22TC_REACH_TIME_INTERVALl:168 + 4.1: 1 + 5: 1 + 6: 1 + 4: _ZN9oceanbase6common14ObTscTimestamp12get_instanceEv:97 + 2: 1 + 2.1: 1 + 2.3: 1 + 2.6: 1 + 2.2: _ZN9oceanbase6common14ObTscTimestampC2Ev:19 + 1: 1 +_ZN9oceanbase3omt19ObTenantConfigGuardD2Ev:528912:5106 + 1: 5063 + 2: 5063 + 3.1: 0 + 5: 5535 + 3: _ZN9oceanbase3omt14ObTenantConfig6unlockEv:349347 + 2: _ZN9oceanbase6common7DRWLock8rdunlockEv:349347 + 2: 5063 + 2.1: 5063 _ZN9oceanbase6common7ObLatch6unlockEPKj:5265 + 2: _ZN9oceanbase6common8get_itidEv:121512 + 4: 5063 + 5: 0 + 6: 0 + 8: 0 +_ZN9oceanbase3omt19ObTenantConfigGuardD1Ev:528912:5106 + 1: 5063 + 2: 5063 + 3.1: 0 + 5: 5535 + 3: _ZN9oceanbase3omt14ObTenantConfig6unlockEv:349347 + 2: _ZN9oceanbase6common7DRWLock8rdunlockEv:349347 + 2: 5063 + 2.1: 5063 _ZN9oceanbase6common7ObLatch6unlockEPKj:5265 + 2: _ZN9oceanbase6common8get_itidEv:121512 + 4: 5063 + 5: 0 + 6: 0 + 8: 0 +_ZN9oceanbase11transaction14ObPartTransCtx15submit_redo_logEb:527835:3055 + 1: 2986 + 2: 2986 + 3: 2986 + 7.1: 2967 + 8.1: 53 + 9.1: 2967 + 9.2: 2967 + 12: 2967 + 13: 53 + 15.1: 2967 _ZN9oceanbase8memtable13ObMemtableCtx26pending_log_size_too_largeEv:3056 + 15.2: 3202 + 20: 53 + 21: 53 + 26.1: 53 + 26.4: 71 + 26.5: 71 + 26.10: 71 + 26.11: 71 + 26.12: 71 + 26.15: 71 + 26.16: 71 + 26.17: 71 + 26.18: 71 + 26.19: 71 + 26.22: 53 + 26.23: 53 + 26.24: 71 + 31: 3345 + 32: 53 + 36: 3345 + 37.7: 3345 _ZN9oceanbase11transaction12CtxLockGuardD1Ev:3356 + 37.9: 53 + 3: _ZN9oceanbase11transaction12CtxLockGuardC2ERNS0_7CtxLockEb:14930 + 0: 2986 + 0.1: 2986 _ZN9oceanbase11transaction7CtxLock4lockEv:3063 + 4: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:3356 + 2: 3356 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:3356 + 7: _ZNK9oceanbase11transaction9ObTxLogCb8is_validEv:26703 + 2: 2967 + 9.1: _ZNK9oceanbase11transaction14ObPartTransCtx20get_downstream_stateEv:23736 + 1: 2967 + 26.3: _ZN9oceanbase3lib20is_trace_log_enabledEv:852 + 2: 71 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:497 + 2: 71 + 26.5: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EE9add_eventERb:5538 + 2: 71 + 3.1: 71 + 7: 71 + 12: 71 + 13: 71 + 26.7: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:1562 + 0: 71 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:355 + 2: 71 + 26.9: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:2769 + 0: 71 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:355 + 2: 71 + 26.10: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EE10check_lockEv:2840 + 2: 71 + 3: _ZN9oceanbase3lib7ObMutex4lockEv:2201 + 0: 71 + 26.12: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EE10get_bufferEv:497 + 0: 71 + 26.13: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EE14get_buffer_posEv:497 + 0: 71 + 26.14: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:355 + 2: 71 + 26.15: _ZNK9oceanbase11transaction15ObTransHashLinkINS0_10ObTransCtxEE7get_refEv:639 + 0: 71 + 26.24: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EE12check_unlockEv:1633 + 2: 71 + 3: _ZN9oceanbase3lib7ObMutex6unlockEv:994 + 0: 71 +_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher19prefetch_index_treeEv:527129:1986 + 1: 1922 + 2: 1922 + 3: 1922 + 4: 0 + 5.1: 0 + 6.1: 2015 + 6.2: 1922 _ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher19try_add_query_rangeERNS1_22ObIndexTreeLevelHandleE:1974 + 7.1: 0 + 9: 2015 + 10.1: 2946 + 10.3: 2946 + 10.5: 2946 + 11: 3087 + 12.1: 3074 + 12.2: 3074 _ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandle8prefetchERKNS0_15ObTableReadInfoERKNS_12blocksstable13ObDatumRowkeyElRS1_:3262 + 17.1: 0 + 22: 1982 + 6.1: _ZN9oceanbase6common16ObFixedArrayImplINS_7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandleENS0_12ObIAllocatorEEixEl:13454 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandleEE2atEl:13454 + 6: 1922 + 11: _ZN9oceanbase6common16ObFixedArrayImplINS_7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandleENS0_12ObIAllocatorEEixEl:52479 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandleEE2atEl:52479 + 6: 3087 + 11.1: _ZNK9oceanbase7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandle15is_prefetch_endEv:12348 + 1: 3087 +_ZN9oceanbase3sql11ObDASScanOpD2Ev:526714:4400 + 1: 4307 + 2: 4307 + 2.2: 7 + 3.1: 7 + 6: 4368 + 7.2: 4368 _ZN9oceanbase7storage16ObTableScanParamD2Ev:4767 + 7.3: 7 + 7.4: 7 + 7.5: 4463 _ZN9oceanbase3sql12ObIDASTaskOpD2Ev:4459 + 7.6: 7 + 6: _ZN9oceanbase6common17ObVTableScanParam7destroyEv:213178 + 2: 4307 + 5: 4307 + 6: 7 + 8: 4307 + 3: _ZN9oceanbase6common13ObSEArrayImplImLl4ENS0_19ModulePageAllocatorELb0EE7destroyEv:1008 + 9: 7 + 11: 7 + 13: 7 + 15: 7 + 24: 7 + 10: _ZN9oceanbase6common13ObSEArrayImplImLl4ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:546 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:546 + 0: 7 + 0.2: 7 + 0.1: _ZN9oceanbase6common7ob_freeEPv:371 + 2: 7 + 3: 7 + 4: 7 + 5: 7 + 4: _ZL12abort_unlessb:63 + 5: 7 + 6: 7 + 9: _ZN9oceanbase6common13ObSEArrayImplIlLl4ENS0_19ModulePageAllocatorELb0EE7destroyEv:1008 + 9: 7 + 11: 7 + 13: 7 + 15: 7 + 24: 7 + 10: _ZN9oceanbase6common13ObSEArrayImplIlLl4ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:546 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:546 + 0: 7 + 0.2: 7 + 0.1: _ZN9oceanbase6common7ob_freeEPv:371 + 2: 7 + 3: 7 + 4: 7 + 5: 7 + 4: _ZL12abort_unlessb:63 + 5: 7 + 6: 7 + 11: _ZN9oceanbase6common17ObVTableScanParam20destroy_schema_guardEv:47377 + 2: _ZN9oceanbase6common9call_dtorINS_5share6schema19ObSchemaGetterGuardEEEvRPT_:47377 + 2: 4307 + 3: 0 + 4: 0 +_ZN9oceanbase3sql11ObDASScanOpD1Ev:526714:4400 + 1: 4307 + 2: 4307 + 2.2: 7 + 3.1: 7 + 6: 4368 + 7.2: 4368 _ZN9oceanbase7storage16ObTableScanParamD2Ev:4767 + 7.3: 7 + 7.4: 7 + 7.5: 4463 _ZN9oceanbase3sql12ObIDASTaskOpD2Ev:4459 + 7.6: 7 + 6: _ZN9oceanbase6common17ObVTableScanParam7destroyEv:213178 + 2: 4307 + 5: 4307 + 6: 7 + 8: 4307 + 3: _ZN9oceanbase6common13ObSEArrayImplImLl4ENS0_19ModulePageAllocatorELb0EE7destroyEv:1008 + 9: 7 + 11: 7 + 13: 7 + 15: 7 + 24: 7 + 10: _ZN9oceanbase6common13ObSEArrayImplImLl4ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:546 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:546 + 0: 7 + 0.2: 7 + 0.1: _ZN9oceanbase6common7ob_freeEPv:371 + 2: 7 + 3: 7 + 4: 7 + 5: 7 + 4: _ZL12abort_unlessb:63 + 5: 7 + 6: 7 + 9: _ZN9oceanbase6common13ObSEArrayImplIlLl4ENS0_19ModulePageAllocatorELb0EE7destroyEv:1008 + 9: 7 + 11: 7 + 13: 7 + 15: 7 + 24: 7 + 10: _ZN9oceanbase6common13ObSEArrayImplIlLl4ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:546 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:546 + 0: 7 + 0.2: 7 + 0.1: _ZN9oceanbase6common7ob_freeEPv:371 + 2: 7 + 3: 7 + 4: 7 + 5: 7 + 4: _ZL12abort_unlessb:63 + 5: 7 + 6: 7 + 11: _ZN9oceanbase6common17ObVTableScanParam20destroy_schema_guardEv:47377 + 2: _ZN9oceanbase6common9call_dtorINS_5share6schema19ObSchemaGetterGuardEEEvRPT_:47377 + 2: 4307 + 3: 0 + 4: 0 +_ZN9oceanbase6common9ObKVCacheINS_12blocksstable20ObMicroBlockCacheKeyENS2_22ObMicroBlockCacheValueEE3getERKS3_RPKS4_RNS0_15ObKVCacheHandleE:526379:4979 + 1: 4836 + 2: 4836 + 3: 4836 + 4: 4836 + 5: 41 + 6.1: 41 + 8: 4836 _ZN9oceanbase6common15ObKVCacheHandle5resetEv:4959 + 9: 5090 _ZN9oceanbase6common15ObKVGlobalCache12get_instanceEv:5228 + 9.1: 4978 _ZN9oceanbase6common15ObKVGlobalCache3getElRKNS0_13ObIKVCacheKeyERPKNS0_15ObIKVCacheValueERPNS0_18ObKVMemBlockHandleE:5425 + 11.1: 41 + 14: 5090 + 20: 5090 +_ZN9oceanbase7obmysql23request_finish_callbackEv:526267:4880 + 1: 4618 + 4: 4618 + 5.1: 0 + 10: 4617 + 3: _ZN9oceanbase5share11ObTenantEnv3mtlIPNS_8memtable13ObLockWaitMgrEEET_v:129304 + 2: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:73888 + 2: 4618 + 2.1: 0 + 2.2: 0 + 65133: 4618 + 2.1: _ZN9oceanbase5share12ObTenantBase3getIPNS_8memtable13ObLockWaitMgrEEET_v:55416 + 0: _ZN9oceanbase5share12ObTenantBase9inner_getENS1_8IdentityIPNS_8memtable13ObLockWaitMgrEEE:55416 + 0: 4618 + 7: _ZN9oceanbase8memtable13ObLockWaitMgr12post_processEbRb:207653 + 3: 4618 + 4: 4618 + 7: 4427 + 8: 0 + 9: _ZN9oceanbase8memtable13ObLockWaitMgr17clear_thread_nodeEv:106191 + 0: 4617 +_ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl4ENS0_19ModulePageAllocatorELb0EED2Ev:523974:4869 + 1: 4530 + 3: 4593 + 3.2: 9 + 2: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl4ENS0_19ModulePageAllocatorELb0EE7destroyEv:355725 + 4.1: 4530 + 4.3: 4530 + 9: 4530 + 11: 9 + 13: 4593 + 15: 4593 + 24: 4593 + 5: _ZN9oceanbase6common10ObTabletIDD2Ev:67950 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:67950 + 0: 4530 + 10: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl4ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:576 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:576 + 0: 9 + 0.2: 9 + 0.1: _ZN9oceanbase6common7ob_freeEPv:396 + 2: 9 + 3: 9 + 4: 9 + 5: 9 + 4: _ZL12abort_unlessb:81 + 5: 9 + 6: 9 +_ZNK9oceanbase12blocksstable17ObFuseRowCacheKey5equalERKNS_6common13ObIKVCacheKeyERb:517469:3739 + 1: 3492 + 2: 3492 + 4: 3492 + 5: 3492 + 6: 3492 + 7: 3492 + 8: 3492 + 9: 3492 + 9.1: 3492 + 10: 3492 + 10.2: 0 + 11: 0 + 12: 0 + 13.1: 0 + 14.1: 3884 _ZNK9oceanbase12blocksstable13ObDatumRowkey5equalERKS1_RKNS0_19ObStorageDatumUtilsERb:3577 + 15.1: 0 + 18: 3884 + 5: _ZNK9oceanbase6common10ObTabletIDeqERKS1_:38412 + 0: 3492 +_ZN9oceanbase3sql17ObChunkDatumStoreC2EPNS_6common12ObIAllocatorE:515433:1794 + 0: 1831 + 0.1: 1702 + 0.6: 1726 _ZN9oceanbase12blocksstable17ObTmpFileIOHandleC1Ev:1753 + 0.7: 1831 _ZN9oceanbase12blocksstable15ObTmpFileIOInfoC1Ev:1915 + 1: 1726 + 2: 1726 + 3: 1726 + 5: 1726 + 6: 1831 + 7.1: 1702 + 9: 1702 + 9.3: 1702 + 10: 1702 + 12: 1726 + 14: 1702 + 15: 1702 + 15.3: 4 + 0.2: _ZN9oceanbase6common20DefaultPageAllocatorC2ERKNS_3lib7ObLabelEm:81696 + 2: 1702 +_ZN9oceanbase3sql17ObChunkDatumStoreC1EPNS_6common12ObIAllocatorE:515433:1794 + 0: 1831 + 0.1: 1702 + 0.6: 1726 _ZN9oceanbase12blocksstable17ObTmpFileIOHandleC1Ev:1753 + 0.7: 1831 _ZN9oceanbase12blocksstable15ObTmpFileIOInfoC1Ev:1915 + 1: 1726 + 2: 1726 + 3: 1726 + 5: 1726 + 6: 1831 + 7.1: 1702 + 9: 1702 + 9.3: 1702 + 10: 1702 + 12: 1726 + 14: 1702 + 15: 1702 + 15.3: 4 + 0.2: _ZN9oceanbase6common20DefaultPageAllocatorC2ERKNS_3lib7ObLabelEm:81696 + 2: 1702 +_ZN9oceanbase11transaction9tablelock11ObLockTable4lockERNS_7storage10ObStoreCtxERKNS1_11ObLockParamE:514985:1073 + 3: 1023 + 4: 1023 + 5: 1023 _ZN9oceanbase7storage15ObTableHandleV2C1Ev:1034 + 6: 970 + 7: 970 + 8: 3 + 9.1: 3 + 10.2: 970 + 10.3: 970 + 12: 3 + 13.1: 3 + 14.3: 970 + 15: 3 + 16.1: 3 + 17: 3 + 18.1: 970 _ZN9oceanbase11transaction9tablelock11ObLockTable17get_lock_memtableERNS_7storage15ObTableHandleV2E:986 + 18.2: 1092 + 19.1: 3 + 20.1: 1092 _ZN9oceanbase7storage15ObTableHandleV217get_lock_memtableERPNS_11transaction9tablelock14ObLockMemtableE:1125 + 20.2: 1020 + 21.1: 3 + 23: 1020 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:1098 + 25: 999 + 28: 999 + 30: 999 + 32: 999 + 33: 999 + 33.1: 1063 + 37.1: 3 + 42: 1036 + 43.10: 1059 _ZN9oceanbase7storage15ObTableHandleV2D1Ev:1036 + 43.11: 3 + 10.1: _ZNK9oceanbase7storage10ObStoreCtx8is_writeEv:4850 + 0: _ZNK9oceanbase8memtable15ObMvccAccessCtx8is_writeEv:4850 + 0: 970 + 11: _ZNK9oceanbase11transaction9tablelock11ObLockParam8is_validEv:55314 + 2: 970 + 3: 970 + 4: 970 + 5: 970 + 2: _ZNK9oceanbase11transaction9tablelock8ObLockID8is_validEv:18430 + 2: 970 + 2: _ZN9oceanbase6common11is_valid_idEm:4850 + 2: 970 + 3: _ZN9oceanbase11transaction9tablelockL22is_lock_obj_type_validERKNS1_13ObLockOBJTypeE:7760 + 2: 970 + 3: _ZN9oceanbase11transaction9tablelockL18is_lock_mode_validEh:4850 + 2: 970 + 14.2: _ZNK9oceanbase11transaction9ObTransID8is_validEv:4850 + 0: 970 + 24.1: _ZN9oceanbase11transaction9tablelock13ObTableLockOpC2ERKNS1_8ObLockIDEhRKlRKNS0_9ObTransIDENS1_17ObTableLockOpTypeENS1_19ObTableLockOpStatusElll:61938 + 16: 999 + 21: _ZN9oceanbase11transaction9tablelock13ObTableLockOp3setERKNS1_8ObLockIDEhRKlRKNS0_9ObTransIDENS1_17ObTableLockOpTypeENS1_19ObTableLockOpStatusElll:53946 + 11: 999 + 12: 999 + 13: 999 + 15: 999 + 16: 999 + 17: 999 + 18: 999 + 19: 999 + 14: _ZN9oceanbase11transaction9ObTransIDaSERKS1_:7992 + 1: 999 + 33: _ZN9oceanbase11transaction9tablelock14ObLockMemtable4lockERKNS1_11ObLockParamERNS_7storage10ObStoreCtxERNS1_13ObTableLockOpE:194377 + 5: 999 + 7: 999 + 8: 3 + 9.1: 3 + 11: 999 + 13: 4 + 14.1: 4 + 15.1: 1069 _ZN9oceanbase11transaction9tablelock14ObLockMemtable5lock_ERKNS1_11ObLockParamERNS_7storage10ObStoreCtxERNS1_13ObTableLockOpE:1044 + 17.1: 3 + 21: 4 + 10.1: _ZNK9oceanbase7storage10ObStoreCtx8is_validEv:93906 + 2: 999 + 2: _ZNK9oceanbase5share6ObLSID8is_validEv:3996 + 0: 999 + 2.1: _ZNK9oceanbase8memtable15ObMvccAccessCtx8is_validEv:72927 + 3: _ZNK9oceanbase8memtable15ObMvccAccessCtx16is_write_valid__Ev:72927 + 1: 999 + 2: 999 + 3: 999 + 3.1: 999 + 4: 999 + 5: 999 + 2.1: _ZNK9oceanbase11transaction12ObTxSnapshot8is_validEv:4995 + 0: 999 + 7.1: _ZNK9oceanbase7storage14ObTxTableGuard8is_validEv:4995 + 0: 999 + 12.1: _ZNK9oceanbase11transaction9tablelock13ObTableLockOp8is_validEv:31009 + 2: 999 + 5: 999 +_ZN9oceanbase6common9ObSMUtils14get_mysql_typeENS0_9ObObjTypeERNS_7obmysql15EMySQLFieldTypeERtRs:514439:3860 + 2: 3649 + 6: 3649 + 7: 3649 + 8: 3649 + 11: 3649 + 22: 0 + 55: 239 + 56: 0 + 61.1: 0 + 65: 3805 + 6: _Z7get_mapN9oceanbase6common9ObObjTypeERPK14ObMySQLTypeMap:105821 + 3: 3649 + 7: 3649 + 39: _ZN9oceanbase3lib14is_oracle_modeEv:167649 + 2: _ZN9oceanbase3lib15get_compat_modeEv:167649 + 2: 3567 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:110577 + 2: 3567 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 56: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 +_ZN9oceanbase6common16ObFixedArrayImplINS_7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandleENS0_12ObIAllocatorEED2Ev:513953:1087 + 0: 942 + 0.1: 949 + 0.3: 7 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS_7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandleENS0_12ObIAllocatorEE7destroyEv:478980 + 2: 942 + 5: 942 + 6.1: 3250 + 7: 2136 + 9: 972 _ZN9oceanbase6common18ObWrapperAllocator4freeEPv:973 + 10: 949 + 12: 949 + 13: 949 + 15: 949 + 7: _ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandleD2Ev:330251 + 0.2: 3212 _ZN9oceanbase12blocksstable22ObIndexBlockRowScannerD1Ev:3276 + 0.1: _ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher22ObIndexBlockReadHandleD2Ev:291687 + 0: 9993 _ZN9oceanbase7storage22ObMicroBlockDataHandleD1Ev:3380 +_ZN9oceanbase3sql13ObBaselineKey5resetEv:513696:16543 + 1: 16053 + 2: 16053 + 5: 16053 + 6: 16053 + 4: _ZN9oceanbase6common8ObString5resetEv:176583 + 3: 16053 +_ZN9oceanbase3sql13ObDatumCaster7to_typeERKNS0_11ObDatumMetaERKNS0_6ObExprERKmRPNS_6common7ObDatumE:512628:1100 + 4: 1060 + 5: 1060 + 7: 1060 _ZN9oceanbase6common9ObCharset20charset_type_by_collENS0_15ObCollationTypeE:1080 + 8: 1029 _ZN9oceanbase6common9ObCharset20charset_type_by_collENS0_15ObCollationTypeE:1041 + 10: 973 + 10.1: 973 + 10.2: 973 + 10.3: 973 + 11: 973 + 12: 2 + 13.1: 2 + 15.1: 973 + 15.2: 503 + 15.4: 492 + 16.1: 492 + 16.2: 492 + 18: 2 + 19.1: 2 + 23: 492 + 25: 502 + 30.1: 2 + 33.1: 492 + 34.1: 0 + 39: 1000 + 40: 2 + 42: 2 + 44.1: 0 + 46: 0 + 51: 0 + 52.1: 2 + 53.1: 0 + 54.1: 0 + 57: 1000 _ZN9oceanbase3sql13ObDatumCaster15setup_cast_exprERKNS0_11ObDatumMetaERKNS0_6ObExprEmRS5_:1036 + 58.1: 2 + 62: 2 + 62.1: 993 + 63.1: 2 + 69: 1015 + 15.1: _ZN9oceanbase6common24ob_is_string_or_lob_typeENS0_9ObObjTypeE:24259 + 1: 973 + 1.1: 470 + 1: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:11709 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:11709 + 2: 973 + 16.1: _ZN9oceanbase6common24ob_is_string_or_lob_typeENS0_9ObObjTypeE:7380 + 1.1: _ZN9oceanbase6common13ob_is_text_tcENS0_9ObObjTypeE:7380 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:7380 + 2: 492 + 18: _ZNK9oceanbase3sql6ObExpr4evalERNS0_9ObEvalCtxERPNS_6common7ObDatumE:100 + 4: 0 + 6: 0 + 7: 0 + 9: 0 + 10: 2 + 10.1: 2 + 11: 2 + 13: 2 + 15.1: 0 + 15.2: 0 + 17: 0 + 18: 0 + 20: 0 + 21: 0 + 22: 0 + 24: 2 + 9: _ZNK9oceanbase3sql6ObExpr15is_batch_resultEv:0 + 0: 0 + 11: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:8 + 0: 2 + 24: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:14 + 0: 2 + 23: _ZN9oceanbase6common24ob_is_string_or_lob_typeENS0_9ObObjTypeE:14268 + 1: 492 + 1: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:2460 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:2460 + 2: 492 + 1.2: _ZN9oceanbase6common17ob_is_lob_locatorENS0_9ObObjTypeE:2952 + 0: 492 + 25: _ZN9oceanbase6common24ob_is_string_or_lob_typeENS0_9ObObjTypeE:9578 + 1: 502 + 1.1: 2 + 1: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:4518 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:4518 + 2: 502 + 62.1: _ZNK9oceanbase3sql6ObExpr4evalERNS0_9ObEvalCtxERPNS_6common7ObDatumE:235897 + 4: 993 + 6: 993 + 7: 993 + 9: 993 + 10: 2 + 10.1: 2 + 11: 2 + 13: 2 + 15.1: 993 + 15.2: 993 + 17: 993 + 18: 248 + 20: 739 + 21: 1015 + 22: 1015 + 24: 2 + 9: _ZNK9oceanbase3sql6ObExpr15is_batch_resultEv:3972 + 0: 993 + 11: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:10 + 0: 2 + 20: _ZN9oceanbase3sql13cast_eval_argERKNS0_6ObExprERNS0_9ObEvalCtxERNS_6common7ObDatumE:41904 + 4: 488 + 7: 512 + 8.1: 2 + 11: 2 + 13: 2 + 7: _ZNK9oceanbase3sql6ObExpr4evalERNS0_9ObEvalCtxERPNS_6common7ObDatumE:23166 + 4: 488 + 6: 488 + 7: 488 + 9: 488 + 10: 2 + 10.1: 2 + 11: 2 + 13: 2 + 15.1: 488 + 15.2: 2 + 17: 2 + 18: 2 + 20: 2 + 21: 2 + 22: 2 + 9: _ZNK9oceanbase3sql6ObExpr15is_batch_resultEv:1952 + 0: 488 + 11: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:10 + 0: 2 + 24: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:14 + 0: 2 + 11: _ZN9oceanbase6common7ObDatum9set_datumERKS1_:8200 + 0: 512 + 20: _ZN9oceanbase3sql7int_intERKNS0_6ObExprERNS0_9ObEvalCtxERNS_6common7ObDatumE:84456 + 2: 496 + 2.2: 2 + 2.5: 496 + 4: 496 + 5: 496 + 6: 496 + 6.1: 496 + 7.1: 2 + 12: 496 + 2: _ZNK9oceanbase3sql6ObExpr4evalERNS0_9ObEvalCtxERPNS_6common7ObDatumE:24620 + 4: 496 + 6: 496 + 7: 496 + 9: 496 + 10: 2 + 10.1: 2 + 11: 2 + 13: 2 + 15.1: 496 + 15.2: 2 + 17: 2 + 18: 2 + 20: 2 + 21: 2 + 22: 2 + 9: _ZNK9oceanbase3sql6ObExpr15is_batch_resultEv:1984 + 0: 496 + 11: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:10 + 0: 2 + 24: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:16 + 0: 2 + 2.5: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:2480 + 0: 496 + 2.6: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:26 + 0: 2 + 5: _ZNK9oceanbase6common7ObDatum7get_intEv:2976 + 0: 496 + 6.1: _ZN9oceanbase6common15int_range_checkIlEEiNS0_9ObObjTypeET_Rl:15386 + 4: 496 + 4: _ZN9oceanbase6common19numeric_range_checkIllEEiT_T0_S3_RS3_:4474 + 8: 496 + 11.1: 496 + 6.2: _ZN9oceanbase3sqlL12get_cast_retERKmiRi:32 + 6.2: 2 + 9: _ZN9oceanbase6common7ObDatum7set_intEl:6944 + 0: 496 + 24: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:14 + 0: 2 +_ZN9oceanbase6common13ObSEArrayImplINS_3sql21ObPartIdRowMapManager8MapEntryELl1ENS0_19ModulePageAllocatorELb0EED2Ev:512085:5323 + 1: 4877 + 3: 4877 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_3sql21ObPartIdRowMapManager8MapEntryELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:273112 + 4.1: 4877 + 4.3: 0 + 9: 4877 + 11: 0 + 13: 4877 + 15: 4877 + 24: 4877 + 5: _ZN9oceanbase3sql21ObPartIdRowMapManager8MapEntryD2Ev:0 + 0: _ZN9oceanbase6common13ObSEArrayImplIlLl12ENS0_19ModulePageAllocatorELb0EED2Ev:0 + 1: 0 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplIlLl12ENS0_19ModulePageAllocatorELb0EE7destroyEv:0 + 9: 0 + 11: 0 + 13: 0 + 15: 0 + 24: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplIlLl12ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_3sql21ObPartIdRowMapManager8MapEntryELl1ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase11transaction9tablelock12ObLockMemCtx15add_lock_recordERKNS1_13ObTableLockOpERPNS1_22ObMemCtxLockOpLinkNodeEb:506107:827 + 4: 794 + 5: 794 + 7: 794 + 8: 794 + 9: 0 + 10.1: 0 + 11.1: 755 + 12: 0 + 13.1: 0 + 14.1: 755 + 16.1: 755 + 17.1: 0 + 20: 713 + 21: 0 + 22.1: 0 + 23.1: 713 + 24: 0 + 27: 784 + 27.1: 0 + 28: 0 + 29: 0 + 30: 0 + 33: 784 + 8: _ZNK9oceanbase11transaction9tablelock13ObTableLockOp8is_validEv:50022 + 2: 794 + 3: 794 + 4: 794 + 5: 794 + 6: 794 + 2: _ZNK9oceanbase11transaction9tablelock8ObLockID8is_validEv:13498 + 2: 794 + 2: _ZN9oceanbase6common11is_valid_idEm:3970 + 2: 794 + 3: _ZN9oceanbase11transaction9tablelockL22is_lock_obj_type_validERKNS1_13ObLockOBJTypeE:4764 + 2: 794 + 3: _ZN9oceanbase11transaction9tablelockL18is_lock_mode_validEh:3176 + 2: 794 + 4: _ZNK9oceanbase11transaction9ObTransID8is_validEv:3970 + 0: 794 + 11.1: _ZN9oceanbase11transaction9tablelock12ObLockMemCtx13alloc_lock_opEv:82919 + 2: 794 + 2: _ZN9oceanbase6common14SpinWLockGuardC2ERKNS0_10SpinRWLockE:22518 + 1: 794 + 3: 820 + 4.1: 0 + 3: _ZN9oceanbase6common10SpinRWLock6wrlockEl:10322 + 0: 794 _ZN9oceanbase6common7ObLatch6wrlockEjlPKj:813 + 3: _ZN9oceanbase11transaction9tablelock14ObArenaObjPoolINS1_22ObMemCtxLockOpLinkNodeELl1EE5allocEv:36138 + 3: 820 + 4: 285 + 7: 542 _ZN9oceanbase8memtable24ObMemtableCtxCbAllocator5allocEl:543 + 9: 522 + 10.1: 0 + 12.1: 800 + 4: _ZN9oceanbase6common14SpinWLockGuardD2Ev:18705 + 2: 800 + 3: 800 + 3.1: 755 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase6common10SpinRWLock6unlockEv:2400 + 0: 800 _ZN9oceanbase6common7ObLatch6unlockEPKj:800 + 14.1: _ZN9oceanbase11transaction9tablelock22ObMemCtxLockOpLinkNodeC2Ev:70215 + 2: 755 + 3: 755 + 0: _ZN9oceanbase6common11ObDLinkBaseINS_11transaction9tablelock22ObMemCtxLockOpLinkNodeEEC2Ev:6795 + 1: 755 + 1: _ZN9oceanbase11transaction9tablelock13ObTableLockOpC2Ev:47565 + 2: 755 + 3: 755 + 7: 755 + 10: 755 + 1: _ZN9oceanbase11transaction9tablelock8ObLockIDC2Ev:14345 + 1: 755 + 2: 755 + 16.1: _ZN9oceanbase11transaction9tablelock22ObMemCtxLockOpLinkNode4initERKNS1_13ObTableLockOpE:110230 + 2: 755 + 3: 755 + 4: 0 + 5.1: 0 + 9: 0 + 3: _ZNK9oceanbase11transaction9tablelock13ObTableLockOp8is_validEv:49830 + 2: 755 + 5: 755 + 6: 755 + 2: _ZNK9oceanbase11transaction9tablelock8ObLockID8is_validEv:12835 + 2: 755 + 2: _ZN9oceanbase6common11is_valid_idEm:3775 + 2: 755 + 3: _ZN9oceanbase11transaction9tablelockL22is_lock_obj_type_validERKNS1_13ObLockOBJTypeE:4530 + 2: 755 + 7: _ZN9oceanbase11transaction9tablelock13ObTableLockOpaSERKS2_:46810 + 0: 755 + 0: _ZN9oceanbase11transaction9ObTransIDaSERKS1_:9815 + 1: 755 + 19: _ZN9oceanbase6common14SpinWLockGuardC2ERKNS0_10SpinRWLockE:28228 + 1: 755 + 3: 713 + 4.1: 0 + 3: _ZN9oceanbase6common10SpinRWLock6wrlockEl:17365 + 0: 755 _ZN9oceanbase6common7ObLatch6wrlockEjlPKj:785 + 20: _ZN9oceanbase6common7ObDListINS_11transaction9tablelock22ObMemCtxLockOpLinkNodeEE8add_lastEPS4_:46345 + 3: 713 + 5.1: 0 + 6.1: 713 + 6.2: 713 + 6.3: 713 + 9.1: 0 + 13: 713 + 12: _ZN9oceanbase6common11ObDLinkBaseINS_11transaction9tablelock22ObMemCtxLockOpLinkNodeEE10add_beforeEPS4_:18538 + 2: 713 + 2: _ZN9oceanbase6common11ObDLinkBaseINS_11transaction9tablelock22ObMemCtxLockOpLinkNodeEE3addEPS4_S6_S6_:13547 + 2: 713 + 3: 713 + 4: 713 + 5: 713 + 24: _ZN9oceanbase11transaction9tablelock22ObMemCtxLockOpLinkNode10set_loggedEv:0 + 0: 0 + 26: _ZN9oceanbase6common14SpinWLockGuardD2Ev:17893 + 2: 713 + 3: 713 + 3.1: 784 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase6common10SpinRWLock6unlockEv:2139 + 0: 713 _ZN9oceanbase6common7ObLatch6unlockEPKj:731 +_ZN9oceanbase7storage21ObTabletBindingHelper20check_schema_versionERNS0_14ObTabletHandleEl:503549:1193 + 1: 1062 + 2: 1062 + 3: 1062 _ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE7get_objEv:1068 + 5: 986 _ZN9oceanbase6common12TCRLockGuardC2ERKNS0_8TCRWLockE:990 + 7: 1075 _ZNK9oceanbase7storage8ObTablet12get_ddl_dataERNS0_19ObTabletBindingInfoE:1075 + 7.1: 1028 + 8.1: 8 + 9.1: 1028 + 10: 8 + 11.1: 8 + 13: 1028 + 14.4: 992 + 14.5: 8 + 4: _ZN9oceanbase7storage8ObTablet11get_rw_lockEv:27591 + 3: 986 + 2: _ZNK9oceanbase7storage16ObResourceHandleINS0_13ObMetaPointerINS0_8ObTabletEEEE16get_resource_ptrEv:16745 + 0: 985 + 0.2: _ZNK9oceanbase7storage20ObResourceValueStoreINS0_13ObMetaPointerINS0_8ObTabletEEEE13get_value_ptrEv:4925 + 0: 985 + 6: _ZN9oceanbase7storage19ObTabletBindingInfoC2Ev:250475 + 1: 1075 + 0: _ZN9oceanbase8memtable22ObIMultiSourceDataUnitC2Ev:20425 + 1: 1075 + 0: _ZN9oceanbase6common11ObDLinkBaseINS_8memtable22ObIMultiSourceDataUnitEEC2Ev:10750 + 1: 1075 + 0.1: _ZN9oceanbase6common9ObSEArrayINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EEC2Ev:144050 + 0.1: 1075 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EEC2ElRKS3_:124700 + 2: 1075 + 8: 1075 + 17.1: 1075 + 2: _ZN9oceanbase6common8ObIArrayINS0_10ObTabletIDEEC2EPS2_l:7525 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_10ObTabletIDEEC2EPS2_l:7525 + 0: 1075 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:61275 + 0: 1075 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:29025 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:29025 + 2: 1075 + 8: 1075 + 2: _ZN9oceanbase7storage19ObTabletBindingInfo5resetEv:66650 + 4: 1075 + 5: _ZN9oceanbase6common10ObTabletID5resetEv:11825 + 0: 1075 + 6: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EE5resetEv:37625 + 0: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv:37625 + 13: 1075 + 15: 1075 + 24: 1075 + 8: _ZN9oceanbase6common10ObTabletID5resetEv:4300 + 0: 1075 + 14.4: _ZN9oceanbase7storage19ObTabletBindingInfoD2Ev:56560 + 0: 1028 + 0.1: _ZN9oceanbase6common10ObTabletIDD2Ev:9252 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:9252 + 0: 1028 + 0.2: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EED2Ev:40112 + 1: 1028 + 3.2: 8 + 2: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv:21544 + 4.1: 1028 + 4.3: 8 + 9: 1040 + 11: 8 + 5: _ZN9oceanbase6common10ObTabletIDD2Ev:96 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:96 + 0: 8 + 10: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:592 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:592 + 0: 8 + 0.2: 8 + 0.1: _ZN9oceanbase6common7ob_freeEPv:408 + 2: 8 + 3: 8 + 4: 8 + 5: 8 + 4: _ZL12abort_unlessb:128 + 5: 8 + 6: 8 + 14.5: _ZN9oceanbase7storage19ObTabletBindingInfoD2Ev:1328 + 0: 8 + 0.1: _ZN9oceanbase6common10ObTabletIDD2Ev:72 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:72 + 0: 8 + 0.2: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EED2Ev:1200 + 1: 8 + 3.2: 8 + 2: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv:992 + 4.1: 8 + 4.3: 8 + 9: 8 + 11: 8 + 5: _ZN9oceanbase6common10ObTabletIDD2Ev:64 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:64 + 0: 8 + 10: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:520 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:520 + 0: 8 + 0.2: 8 + 0.1: _ZN9oceanbase6common7ob_freeEPv:352 + 2: 8 + 3: 8 + 4: 8 + 5: 8 + 4: _ZL12abort_unlessb:56 + 5: 8 + 6: 8 + 14.6: _ZN9oceanbase6common12TCRLockGuardD2Ev:832 + 2: 8 + 3: 8 + 3.1: 8 + 3.2: 8 + 3: _ZN9oceanbase6common8TCRWLock8rdunlockEl:568 + 3: 8 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:32 + 0: 8 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPil:208 + 2: 8 + 2.1: 8 + 3: _ZN9oceanbase6common5TCRef5xref_EPii:32 + 0: 8 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:272 + 2: 8 + 2.1: 8 + 3: 8 + 14.8: _ZN9oceanbase6common12TCRLockGuardD2Ev:58266 + 2: 962 + 3: 962 + 3.1: 992 + 3.2: 8 + 3: _ZN9oceanbase6common8TCRWLock8rdunlockEl:37790 + 3: 962 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:3848 + 0: 962 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPil:21212 + 2: 962 + 2.1: 962 + 3: _ZN9oceanbase6common5TCRef5xref_EPii:48 + 0: 8 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:5996 + 2: 962 + 2.1: 8 + 3: 8 +_ZN9oceanbase3sql9ObEvalCtxC2ERNS0_13ObExecContextE:501828:6879 + 1: 6603 + 2: 6603 + 3: 6603 + 4: 6603 + 5: 6603 + 6: 6603 + 8: 6603 + 9: 6603 + 10: 6603 + 1: _ZNK9oceanbase3sql13ObExecContext10get_framesEv:46221 + 0: 6603 + 4: _ZN9oceanbase3sql13ObExecContext22get_eval_tmp_allocatorEv:46221 + 0: 6603 + 8: _ZN9oceanbase3sql13ObExecContext22get_eval_res_allocatorEv:46221 + 0: 6603 +_ZN9oceanbase3sql9ObEvalCtxC1ERNS0_13ObExecContextE:501828:6879 + 1: 6603 + 2: 6603 + 3: 6603 + 4: 6603 + 5: 6603 + 6: 6603 + 8: 6603 + 9: 6603 + 10: 6603 + 1: _ZNK9oceanbase3sql13ObExecContext10get_framesEv:46221 + 0: 6603 + 4: _ZN9oceanbase3sql13ObExecContext22get_eval_tmp_allocatorEv:46221 + 0: 6603 + 8: _ZN9oceanbase3sql13ObExecContext22get_eval_res_allocatorEv:46221 + 0: 6603 +_ZN9oceanbase3sql16ObPlanCacheValue21check_not_param_valueERKNS0_18ObFastParserResultERKNS_6common8ObIArrayINS0_12NotParamInfoEEERb:501690:5472 + 3: 4778 + 4: 4778 + 5: 4778 + 6: 4778 + 7: 4778 + 8.1: 0 + 8.3: 4778 + 8.4: 4778 + 8.6: 0 + 9: 0 + 10.1: 0 + 11.1: 0 + 12: 0 + 13.1: 0 + 14.1: 0 + 15: 0 + 16.1: 0 + 17.1: 0 + 17.2: 0 + 18: 0 + 19: 0 + 29: 4778 + 9: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql12NotParamInfoEE2atEl:0 + 6: 0 + 9.1: _ZNK9oceanbase6common16ObFixedArrayImplIPNS_3sql9ObPCParamENS0_12ObIAllocatorEE2atElRS4_:0 + 3: 0 + 6: 0 + 6: _ZN9oceanbase6common11copy_assignIPNS_3sql9ObPCParamEEEiRT_RKS5_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapIPNS_3sql9ObPCParamEEEiRT_RKS5_NS0_8BoolTypeILb0EEE:0 + 2: 0 + 18: _ZN9oceanbase6common8ObStringC2ElPKc:0 + 1: 0 + 2: 0 + 3: 0 + 5: 0 + 6: 0 +_ZN9oceanbase8keybtree10ObKeyBtree6insertENS_8memtable20ObStoreRowkeyWrapperERPNS2_9ObMvccRowE:501016:92 + 1: 88 + 2: 88 + 4: 88 + 6: 88 + 6.1: 0 + 7.1: 88 + 11: 83 + 13.1: 0 + 14: 83 _ZN9oceanbase8keybtree11WriteHandle9find_pathEPNS0_9BtreeNodeENS_8memtable20ObStoreRowkeyWrapperE:85 + 14.1: 81 + 15.2: 0 + 15.3: 0 + 15.8: 0 + 16.1: 81 _ZN9oceanbase8keybtree11WriteHandle23insert_and_split_upwardENS_8memtable20ObStoreRowkeyWrapperERPNS2_9ObMvccRowERPNS0_9BtreeNodeE:81 + 16.2: 87 + 18.1: 87 + 19: 0 + 20: 0 + 23: 0 + 24: 0 + 29: 85 + 30: 79 + 33.2: 0 + 33.3: 0 + 33.5: 0 + 33.6: 0 + 33.11: 0 + 35.2: 0 + 35.3: 0 + 35.5: 0 + 35.6: 0 + 35.11: 0 + 37: 79 + 38.14: 95 + 5: _ZN9oceanbase8keybtree11WriteHandleC2ERNS0_10ObKeyBtreeE:469480 + 0: 88 + 0: _ZN9oceanbase8keybtree10ObKeyBtree10get_qclockEv:1232 + 2: 88 + 2.1: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common6QClockC2Ev:0 + 0: 0 + 0.1: _ZN9oceanbase6common6QClock9ClockSlotC2Ev:0 + 0: 0 + 0.1: _ZN9oceanbase6common10HazardListC2Ev:3168 + 0: 88 + 0.2: _ZN9oceanbase6common10HazardListC2Ev:2200 + 0: 88 + 0.10: _ZN9oceanbase8keybtree10BaseHandleC2ERNS_6common6QClockE:3168 + 0: 88 + 0: _ZN9oceanbase8keybtree11MultibitSetC2Ev:968 + 0: 88 + 0.11: _ZN9oceanbase8keybtree4PathC2Ev:459096 + 0: 88 + 0.3: 88 + 0.1: _ZN9oceanbase8keybtree4Path4ItemC2Ev:457600 + 0: 1408 + 8: _ZN9oceanbase8keybtree10BaseHandle11acquire_refEv:1617 + 3: 88 _ZN9oceanbase6common6QClock14enter_criticalEv:88 + 15.1: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 15.5: _ZN9oceanbase6common7ObLogKVIRKPNS_8keybtree9BtreeNodeELb0EEC2EPKcS6_:0 + 0: 0 + 15.7: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 28: _ZN9oceanbase8keybtree10BaseHandle11release_refEv:4420 + 2: 85 + 3: 85 + 2: _ZN9oceanbase6common6QClock14leave_criticalEm:2295 + 1: 85 + 2: _ZN9oceanbase6common6QClock6locateEm:1105 + 0: 85 + 2.1: _ZN9oceanbase6common6QClock9ClockSlot11clear_clockEv:680 + 0: 85 + 29: _ZN9oceanbase8keybtree11WriteHandle6retireEi:2215 + 2: 85 + 3: 0 + 5: 91 _ZN9oceanbase8keybtree10ObKeyBtree6retireERNS_6common10HazardListE:98 + 31: _ZN9oceanbase6common15ObSimpleCounter3incEl:474 + 0: 79 + 33.1: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 33.4: _ZN9oceanbase6common7ObLogKVIiLb0EEC2EPKcRKi:0 + 0: 0 + 33.6: _ZN9oceanbase6common7ObLogKVIPKcLb1EEC2ES3_OKS3_:0 + 0: 0 + 33.8: _ZN9oceanbase6common7ObLogKVIRKNS_8memtable20ObStoreRowkeyWrapperELb0EEC2EPKcS5_:0 + 0: 0 + 33.10: _ZN9oceanbase6common7ObLogKVIRKPNS_8memtable9ObMvccRowELb0EEC2EPKcS6_:0 + 0: 0 + 35.1: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 35.4: _ZN9oceanbase6common7ObLogKVIiLb0EEC2EPKcRKi:0 + 0: 0 + 35.6: _ZN9oceanbase6common7ObLogKVIPKcLb1EEC2ES3_OKS3_:0 + 0: 0 + 35.8: _ZN9oceanbase6common7ObLogKVIRKNS_8memtable20ObStoreRowkeyWrapperELb0EEC2EPKcS5_:0 + 0: 0 + 35.10: _ZN9oceanbase6common7ObLogKVIRKPNS_8memtable9ObMvccRowELb0EEC2EPKcS6_:0 + 0: 0 + 38.14: _ZN9oceanbase8keybtree11WriteHandleD2Ev:948 + 0.3: _ZN9oceanbase8keybtree10BaseHandleD2Ev:948 + 0: _ZN9oceanbase8keybtree10BaseHandle11release_refEv:948 + 2: 79 + 2: _ZN9oceanbase6common6QClock14leave_criticalEm:395 + 1: 79 + 2: _ZN9oceanbase6common6QClock6locateEm:0 + 0: 0 + 2.1: _ZN9oceanbase6common6QClock9ClockSlot11clear_clockEv:0 + 0: 0 + 38.15: _ZN9oceanbase8keybtree11WriteHandleD2Ev:0 + 0.3: _ZN9oceanbase8keybtree10BaseHandleD2Ev:0 + 0: _ZN9oceanbase8keybtree10BaseHandle11release_refEv:0 + 2: 0 + 2: _ZN9oceanbase6common6QClock14leave_criticalEm:0 + 1: 0 + 2: _ZN9oceanbase6common6QClock6locateEm:0 + 0: 0 + 2.1: _ZN9oceanbase6common6QClock9ClockSlot11clear_clockEv:0 + 0: 0 +_ZN9oceanbase3sql12ObSortOpImpl5resetEv:500969:1067 + 1: 1020 + 6: 1051 _ZN9oceanbase3sql17ObChunkDatumStore5resetEv:1061 + 8: 961 + 12: 961 + 13: 961 + 15: 961 + 17: 961 + 18: 529 + 19: 0 + 20: 0 + 20.2: 0 + 21: 0 + 23: 529 + 24: 0 + 25: 0 + 25.2: 0 + 26: 0 + 28: 529 + 29: 0 + 29.2: 0 + 30: 0 + 32: 529 + 33: 0 + 33.2: 0 + 34: 0 + 38: 973 + 39: 973 + 40: 973 + 2: _ZN9oceanbase3sql20ObSqlMemMgrProcessor18unregister_profileEv:39866 + 2: 1020 + 3: 518 _ZN9oceanbase3sql24ObTenantSqlMemoryManager28unregister_work_area_profileERNS0_20ObSqlWorkAreaProfileE:520 + 4: _ZN9oceanbase3sql20ObSqlMemMgrProcessor7destroyEv:20358 + 2: 566 + 2.1: 0 + 3: 0 + 6: 565 + 7: 565 + 3: _ZN9oceanbase3sql17ObChunkDatumStore8Iterator5resetEv:51170 + 0: 1090 + 0.1: 1090 _ZN9oceanbase3sql17ObChunkDatumStore13ChunkIterator5resetEv:1131 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator5resetEv:32355 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator12reset_cursorEv:32355 + 3: 1090 + 4: _ZN9oceanbase3sql12ObSortOpImpl5reuseEv:193571 + 2: 975 + 4: 945 + 5: 945 _ZN9oceanbase3sql17ObChunkDatumStore5resetEv:1024 + 6: 971 + 8: 971 + 9: 971 + 10.1: 971 + 12: 0 + 13: 0 + 14: 0 + 14.2: 0 + 17: 971 + 20: 971 + 21: 971 + 3: _ZN9oceanbase3sql17ObChunkDatumStore8Iterator5resetEv:30990 + 0: 945 + 0.1: 975 _ZN9oceanbase3sql17ObChunkDatumStore13ChunkIterator5resetEv:1041 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator5resetEv:20475 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator12reset_cursorEv:20475 + 2: 975 + 4: _ZN9oceanbase6common11ObArrayImplIPNS_3sql17ObChunkDatumStore9StoredRowENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEE5reuseEv:38745 + 3: 945 + 6: 0 + 4: _ZN9oceanbase6common11ObArrayImplIPNS_3sql17ObChunkDatumStore9StoredRowENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEE13do_clear_funcERS8_:19845 + 3: 945 + 4: 945 + 10.1: _ZNK9oceanbase6common7ObDListINS_3sql13ObSortOpChunkEE8is_emptyEv:9710 + 0: 971 + 11: _ZN9oceanbase6common7ObDListINS_3sql13ObSortOpChunkEE12remove_firstEv:0 + 2: _ZN9oceanbase6common7ObDListINS_3sql13ObSortOpChunkEE6removeEPS3_:0 + 3: 0 + 7: 0 + 6: _ZN9oceanbase6common11ObDLinkBaseINS_3sql13ObSortOpChunkEE6unlinkEv:0 + 2: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 13: _ZN9oceanbase3libneEDnRKNS0_13MemoryContextE:0 + 1: 0 + 1: _ZNK9oceanbase3lib13MemoryContext11ref_contextEv:0 + 1: 0 + 14.1: _ZN9oceanbase3lib17__MemoryContext__20get_malloc_allocatorEv:0 + 0: 0 + 18: _ZN9oceanbase6common16ObBinaryHeapBaseIPPNS_3sql17ObChunkDatumStore9StoredRowENS2_12ObSortOpImpl7CompareELl16EE5resetEv:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplIPPNS_3sql17ObChunkDatumStore9StoredRowELl16ENS0_19ModulePageAllocatorELb0EE5resetEv:0 + 0: 0 + 22: _ZN9oceanbase6common16ObBinaryHeapBaseIPNS_3sql13ObSortOpChunkENS2_12ObSortOpImpl7CompareELl256EE5resetEv:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplIPNS_3sql13ObSortOpChunkELl256ENS0_19ModulePageAllocatorELb0EE5resetEv:0 + 0: 0 + 5: _ZN9oceanbase6common11ObArrayImplIPNS_3sql17ObChunkDatumStore9StoredRowENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEE5resetEv:75342 + 0: 971 + 0: _ZN9oceanbase6common11ObArrayImplIPNS_3sql17ObChunkDatumStore9StoredRowENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEE7destroyEv:55922 + 2: 971 + 7: 595 + 9: 1051 + 11: 1051 + 6: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:10304 + 0: 515 + 0.1: 0 + 0.2: 515 _ZN9oceanbase6common11ObAllocator4freeEPv:525 + 11: _ZN9oceanbase3sql12ObSortOpImpl7Compare5resetEv:17298 + 0: _ZN9oceanbase3sql12ObSortOpImpl7CompareC2Ev:17298 + 1: 961 + 17: _ZN9oceanbase3libneEDnRKNS0_13MemoryContextE:4805 + 1: 961 + 20: _ZNK9oceanbase3lib13MemoryContextptEv:0 + 1: 0 + 20.1: _ZN9oceanbase3lib17__MemoryContext__20get_malloc_allocatorEv:0 + 0: 0 + 25: _ZNK9oceanbase3lib13MemoryContextptEv:0 + 1: 0 + 25.1: _ZN9oceanbase3lib17__MemoryContext__20get_malloc_allocatorEv:0 + 0: 0 + 29: _ZNK9oceanbase3lib13MemoryContextptEv:0 + 1: 0 + 29.1: _ZN9oceanbase3lib17__MemoryContext__20get_malloc_allocatorEv:0 + 0: 0 + 33: _ZNK9oceanbase3lib13MemoryContextptEv:0 + 1: 0 + 33.1: _ZN9oceanbase3lib17__MemoryContext__20get_malloc_allocatorEv:0 + 0: 0 +_ZN9oceanbase3sql16ObDASWriteBuffer19init_dml_shadow_rowElb:497901:1047 + 1: 1024 + 2: 1024 + 3: 1024 + 4: 990 _ZN9oceanbase6common16ObArenaAllocator5allocEl:176 + 5: 181 + 6: 0 + 7.1: 0 + 9: 989 + 10: 991 + 11.1: 0 + 15: 1015 + 4: _ZN9oceanbase6common26ObWrapperAllocatorWithAttr5allocEl:122329 + 0: 0 + 0: _ZN9oceanbase6common18ObWrapperAllocator5allocElRKNS_3lib9ObMemAttrE:122329 + 2: 821 + 2.2: 821 + 2.2: _ZN9oceanbase6common16ObArenaAllocator5allocElRKNS_3lib9ObMemAttrE:94415 + 3: _ZN9oceanbase6common16ObArenaAllocator5allocEl:94415 + 0: 821 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13alloc_alignedEll:90310 + 3: 821 + 6: 0 + 7: 821 + 8: 821 + 10: 821 + 11: 821 + 12: 821 + 13: 821 + 15.1: 0 + 16: 0 + 18: 0 + 20: 0 + 28: 0 + 35: 821 + 36: 821 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE15ensure_cur_pageEv:11494 + 2: 821 + 3: 0 + 5.1: 0 + 8: 0 + 9: 0 + 10: 0 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:0 + 2: 0 + 2.2: 0 + 2.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 9: _ZSt3maxIlERKT_S2_S2_:0 + 5: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 8: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:0 + 0: 0 + 7: _ZN9oceanbase6common16get_align_offsetEPvl:9031 + 3: 821 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:5747 + 0: 821 + 11: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:5747 + 7: 821 + 15.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE18is_normal_overflowEl:0 + 2: 0 + 16: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11extend_pageEl:0 + 4: 0 + 5: 0 + 8: 0 + 9: 0 + 10.1: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 12: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_tailEPNS3_4PageE:0 + 2: 0 + 3: 0 + 5: 0 + 23.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16lookup_next_pageEl:0 + 3.1: 0 + 4.1: 0 + 5: 0 + 5.1: 0 + 7: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page10reuse_sizeEv:0 + 0: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 32: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9alloc_bigEl:0 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 3: 0 + 5: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_headEPNS3_4PageE:0 + 4: 0 + 5: 0 + 7: 0 + 9: _ZN9oceanbase3sql16ObDASWriteBuffer12DmlShadowRowC2Ev:40549 + 3: 989 + 7: 989 + 1: _ZN9oceanbase3sql17ObChunkDatumStore15ShadowStoredRowC2Ev:14835 + 1: 989 + 10: _ZN9oceanbase3sql16ObDASWriteBuffer12DmlShadowRow4initERNS_6common12ObIAllocatorElb:234355 + 5: 991 + 4: _ZN9oceanbase3sql17ObChunkDatumStore15ShadowStoredRow4initERNS_6common12ObIAllocatorEl:230391 + 2: 989 + 5: 989 + 8.1: 989 + 9: 0 + 10.1: 0 + 11.1: 989 _ZN9oceanbase6common16ObArenaAllocator5allocEl:180 + 12: 0 + 13.1: 0 + 15: 991 + 16: 991 + 17: 991 + 18: 991 + 19: 991 + 21: 991 + 11.1: _ZN9oceanbase6common26ObWrapperAllocatorWithAttr5allocEl:129718 + 0: 0 + 0: _ZN9oceanbase6common18ObWrapperAllocator5allocElRKNS_3lib9ObMemAttrE:129718 + 2: 821 + 2.2: 821 + 2.2: _ZN9oceanbase6common16ObArenaAllocator5allocElRKNS_3lib9ObMemAttrE:102625 + 3: _ZN9oceanbase6common16ObArenaAllocator5allocEl:102625 + 0: 821 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13alloc_alignedEll:99341 + 3: 821 + 6: 821 + 7: 821 + 8: 821 + 10: 821 + 11: 821 + 12: 821 + 13: 821 + 15.1: 0 + 16: 0 + 18: 0 + 20: 0 + 24: 0 + 28: 0 + 35: 821 + 36: 821 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE15ensure_cur_pageEv:10673 + 2: 821 + 3: 0 + 5.1: 0 + 8: 0 + 9: 0 + 10: 0 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:0 + 2: 0 + 2.2: 0 + 2.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 9: _ZSt3maxIlERKT_S2_S2_:0 + 5: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 8: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:0 + 0: 0 + 7: _ZN9oceanbase6common16get_align_offsetEPvl:10673 + 3: 821 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:5747 + 0: 821 + 11: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:5747 + 7: 821 + 15.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE18is_normal_overflowEl:0 + 2: 0 + 16: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11extend_pageEl:0 + 4: 0 + 5: 0 + 8: 0 + 9: 0 + 10.1: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 12: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_tailEPNS3_4PageE:0 + 2: 0 + 3: 0 + 5: 0 + 21: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:0 + 5.1: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:0 + 0: 0 + 23.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16lookup_next_pageEl:0 + 3.1: 0 + 4.1: 0 + 5: 0 + 5.1: 0 + 7: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page10reuse_sizeEv:0 + 0: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 32: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9alloc_bigEl:0 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 3: 0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_headEPNS3_4PageE:0 + 4: 0 + 5: 0 + 7: 0 + 7: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:0 + 3: 0 + 16: _ZN9oceanbase3sql17ObChunkDatumStore9StoredRowC2Ev:6937 + 0: 991 +_ZNK9oceanbase3sql8ObOpSpec15create_operatorERNS0_13ObExecContextERPNS0_10ObOperatorE:496240:4974 + 1: 4638 + 2: 4638 + 3: 4638 + 6: 4638 + 7: 4638 + 7.1: 4638 + 8: 4638 + 9: 44 + 10.1: 44 + 11.1: 4802 _ZNK9oceanbase3sql8ObOpSpec25create_operator_recursiveERNS0_13ObExecContextERPNS0_10ObOperatorE:4916 + 12.1: 44 + 13.1: 4802 _ZNK9oceanbase3sql8ObOpSpec36link_sql_plan_monitor_node_recursiveERNS0_13ObExecContextERPNS0_13ObMonitorNodeE:4992 + 14.1: 44 + 16.1: 4554 _ZZNK9oceanbase3sql8ObOpSpec15create_operatorERNS0_13ObExecContextERPNS0_10ObOperatorEENK5$_115clEPKc.68271ef948b9e29c783f97102b0c767d:4597 + 17: 4684 +_ZN9oceanbase3lib6Worker23get_sql_arena_allocatorEv:494116:10497 + 1: 10084 + 2: 10084 + 2: _ZN9oceanbase3lib4Flow11current_ctxEv:292436 + 2: _ZN9oceanbase3lib4Flow12current_flowEv:292436 + 3: 10084 + 8: 0 + 12: 0 + 65092: 10084 + 8.1: _ZN9oceanbase3lib4FlowC2ERNS0_13MemoryContextE:0 + 1: 0 + 3: 0 + 10: _ZN9oceanbase3lib4Flow4initEv:0 + 4: 0 + 7: 0 + 8: 0 + 9: 0 + 12: 0 + 7: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase8observer9ObMPQuery11deserializeEv:491712:5173 + 1: 5122 + 2: 5122 + 6: 5122 + 6.1: 5122 + 7: 0 + 8.1: 0 + 9.1: 5122 + 10: 0 + 11.1: 0 + 18: 5122 + 9.1: _ZNK9oceanbase8observer9ObMPQuery21get_is_com_filed_listEv:35854 + 0: 5122 + 14: _ZNK9oceanbase3rpc9ObRequest10get_packetEv:35854 + 2: 5122 + 15: _ZNK9oceanbase7obmysql16ObMySQLRawPacket9get_cdataEv:20488 + 2: 5122 + 15.1: _ZNK9oceanbase7obmysql16ObMySQLRawPacket8get_clenEv:15366 + 2: 5122 + 15.2: _ZN9oceanbase6common8ObString10assign_ptrEPKci:158782 + 2: 5122 + 3: 5122 + 5: 5122 +_ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl8ENS0_19ModulePageAllocatorELb0EED2Ev:490050:4555 + 1: 4242 + 3: 4302 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl8ENS0_19ModulePageAllocatorELb0EE7destroyEv:332556 + 4.1: 4242 + 4.3: 4242 + 9: 4242 + 11: 0 + 13: 4302 + 15: 4302 + 24: 4302 + 5: _ZN9oceanbase6common10ObTabletIDD2Ev:63630 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:63630 + 0: 4242 + 10: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl8ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase6common13ObSEArrayImplINS_11transaction8ObTxPartELl4ENS0_19ModulePageAllocatorELb0EED2Ev:488699:5839 + 1: 5491 + 3: 5491 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction8ObTxPartELl4ENS0_19ModulePageAllocatorELb0EE7destroyEv:285532 + 4.1: 5491 + 4.3: 0 + 5: 0 + 9: 5491 + 11: 0 + 13: 5491 + 15: 5491 + 24: 5491 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction8ObTxPartELl4ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +easy_request_cleanup.f43157592e2c0f0ad5daf1bf99e9d331:485877:4731 + 1: 4364 + 3: 4364 + 5: 4364 + 6: 4364 + 7: 4364 + 8: 4364 easy_request_server_done:4893 + 11: 5133 + 12: 24 + 15: 5250 easy_message_destroy:5355 + 6: easy_list_del:100372 + 2: 4364 + 3.1: 4364 + 2: __easy_list_del:30548 + 2: 4364 + 3: 4364 + 7: easy_list_del:100372 + 2: 4364 + 3.1: 4364 + 2: __easy_list_del:30548 + 2: 4364 + 3: 4364 +_ZN9oceanbase3sql12ObSortOpImplC2Ev:480002:481 + 0.1: 472 _ZN9oceanbase3sql17ObChunkDatumStoreC1EPNS_6common12ObIAllocatorE:496 + 0.4: 487 + 1: 472 + 2: 472 + 3: 472 + 4: 472 + 5: 487 + 6: 487 + 6.1: 487 + 7: 487 + 9: 487 + 10.1: 497 + 11: 497 + 13: 497 + 14: 472 + 15: 497 + 15.10: 0 + 15.12: 0 + 15.13: 0 + 0: _ZN9oceanbase3sql12ObSortOpImpl7CompareC2Ev:7080 + 1: 472 + 0.2: _ZN9oceanbase3sql17ObChunkDatumStore8IteratorC2Ev:21188 + 0: 484 _ZN9oceanbase3sql17ObChunkDatumStore13ChunkIteratorC1Ev:526 + 0.4: 484 _ZN9oceanbase3sql17ObChunkDatumStore11RowIteratorC1Ev:491 + 0.3: _ZN9oceanbase6common7ObArrayIPNS_3sql17ObChunkDatumStore9StoredRowENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEEC2Ev:52596 + 0.1: 487 + 0.5: _ZN9oceanbase6common11ObArrayImplIPNS_3sql17ObChunkDatumStore9StoredRowENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEEC2ElRKS6_:43830 + 3: 487 + 4: 487 + 7.1: 487 + 2: _ZN9oceanbase6common8ObIArrayIPNS_3sql17ObChunkDatumStore9StoredRowEEC2Ev:4870 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql17ObChunkDatumStore9StoredRowEEC2Ev:4870 + 0: 487 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:26785 + 0: 487 + 0.4: _ZN9oceanbase6common7ObDListINS_3sql13ObSortOpChunkEEC2Ev:20454 + 2: 487 + 3: 487 + 4: 487 + 65463: _ZN9oceanbase6common11ObDLinkBaseINS_3sql13ObSortOpChunkEEC2Ev:8766 + 2: 487 + 0.5: _ZN9oceanbase3sql13ObMonitorNodeC2Ev:106245 + 0: 501 + 2: 501 + 7: 501 + 8: 501 + 9: 501 + 30: 501 + 33: 497 + 35.1: 497 + 0: _ZN9oceanbase6common11ObDLinkBaseINS_3sql13ObMonitorNodeEEC2Ev:5010 + 1: 501 + 0.1: _ZN9oceanbase6common12ObCurTraceId7TraceIdC2Ev:7014 + 0: 501 + 31: _ZN9oceanbase6common12ObCurTraceId12get_trace_idEv:12425 + 5: 497 + 5.1: 0 + 5.1: _ZN9oceanbase6common12ObCurTraceId7TraceIdC2Ev:0 + 0: 0 + 35: _Z9ob_gettidv:26341 + 3: 497 + 4: 0 + 2: _Z13get_tid_cachev:12425 + 7: 497 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 + 2: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:8968 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:8968 + 2: 472 + 8: 472 + 3: _ZN9oceanbase3sql12ObSortOpImpl18MemEntifyFreeGuardC2ERNS_3lib13MemoryContextE:1888 + 0: 472 + 9: _ZN9oceanbase3sql20ObSqlWorkAreaProfileC2ENS0_17ObSqlWorkAreaTypeE:95870 + 2: 487 + 3: 487 + 4: 487 + 5: 487 + 7: 487 + 9: 487 + 10: 487 _ZN9oceanbase6common8ObRandomC1Ev:490 + 11: 559 _ZN9oceanbase6common8ObRandom3getEv:574 + 11.1: 573 + 12: 573 _ZN9oceanbase6common8ObRandomD1Ev:577 + 12.2: 0 + 1: _ZN9oceanbase6common11ObDLinkBaseINS_3sql20ObSqlWorkAreaProfileEEC2Ev:3409 + 1: 487 + 10: _ZN9oceanbase3sql20ObSqlMemMgrProcessorC2ERNS0_20ObSqlWorkAreaProfileERNS0_13ObMonitorNodeE:44730 + 1: 497 + 2: 497 + 4: 497 + 5: 497 + 7: 497 + 15.11: _ZN9oceanbase3sql17ObChunkDatumStore8IteratorD2Ev:0 + 0: 0 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIteratorD2Ev:0 + 0: 0 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator5resetEv:0 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator12reset_cursorEv:0 + 3: 0 +_ZN9oceanbase3sql12ObSortOpImplC1Ev:480002:481 + 0.1: 472 _ZN9oceanbase3sql17ObChunkDatumStoreC1EPNS_6common12ObIAllocatorE:496 + 0.4: 487 + 1: 472 + 2: 472 + 3: 472 + 4: 472 + 5: 487 + 6: 487 + 6.1: 487 + 7: 487 + 9: 487 + 10.1: 497 + 11: 497 + 13: 497 + 14: 472 + 15: 497 + 15.10: 0 + 15.12: 0 + 15.13: 0 + 0: _ZN9oceanbase3sql12ObSortOpImpl7CompareC2Ev:7080 + 1: 472 + 0.2: _ZN9oceanbase3sql17ObChunkDatumStore8IteratorC2Ev:21188 + 0: 484 _ZN9oceanbase3sql17ObChunkDatumStore13ChunkIteratorC1Ev:526 + 0.4: 484 _ZN9oceanbase3sql17ObChunkDatumStore11RowIteratorC1Ev:491 + 0.3: _ZN9oceanbase6common7ObArrayIPNS_3sql17ObChunkDatumStore9StoredRowENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEEC2Ev:52596 + 0.1: 487 + 0.5: _ZN9oceanbase6common11ObArrayImplIPNS_3sql17ObChunkDatumStore9StoredRowENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEEC2ElRKS6_:43830 + 3: 487 + 4: 487 + 7.1: 487 + 2: _ZN9oceanbase6common8ObIArrayIPNS_3sql17ObChunkDatumStore9StoredRowEEC2Ev:4870 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql17ObChunkDatumStore9StoredRowEEC2Ev:4870 + 0: 487 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:26785 + 0: 487 + 0.4: _ZN9oceanbase6common7ObDListINS_3sql13ObSortOpChunkEEC2Ev:20454 + 2: 487 + 3: 487 + 4: 487 + 65463: _ZN9oceanbase6common11ObDLinkBaseINS_3sql13ObSortOpChunkEEC2Ev:8766 + 2: 487 + 0.5: _ZN9oceanbase3sql13ObMonitorNodeC2Ev:106245 + 0: 501 + 2: 501 + 7: 501 + 8: 501 + 9: 501 + 30: 501 + 33: 497 + 35.1: 497 + 0: _ZN9oceanbase6common11ObDLinkBaseINS_3sql13ObMonitorNodeEEC2Ev:5010 + 1: 501 + 0.1: _ZN9oceanbase6common12ObCurTraceId7TraceIdC2Ev:7014 + 0: 501 + 31: _ZN9oceanbase6common12ObCurTraceId12get_trace_idEv:12425 + 5: 497 + 5.1: 0 + 5.1: _ZN9oceanbase6common12ObCurTraceId7TraceIdC2Ev:0 + 0: 0 + 35: _Z9ob_gettidv:26341 + 3: 497 + 4: 0 + 2: _Z13get_tid_cachev:12425 + 7: 497 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 + 2: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:8968 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:8968 + 2: 472 + 8: 472 + 3: _ZN9oceanbase3sql12ObSortOpImpl18MemEntifyFreeGuardC2ERNS_3lib13MemoryContextE:1888 + 0: 472 + 9: _ZN9oceanbase3sql20ObSqlWorkAreaProfileC2ENS0_17ObSqlWorkAreaTypeE:95870 + 2: 487 + 3: 487 + 4: 487 + 5: 487 + 7: 487 + 9: 487 + 10: 487 _ZN9oceanbase6common8ObRandomC1Ev:490 + 11: 559 _ZN9oceanbase6common8ObRandom3getEv:574 + 11.1: 573 + 12: 573 _ZN9oceanbase6common8ObRandomD1Ev:577 + 12.2: 0 + 1: _ZN9oceanbase6common11ObDLinkBaseINS_3sql20ObSqlWorkAreaProfileEEC2Ev:3409 + 1: 487 + 10: _ZN9oceanbase3sql20ObSqlMemMgrProcessorC2ERNS0_20ObSqlWorkAreaProfileERNS0_13ObMonitorNodeE:44730 + 1: 497 + 2: 497 + 4: 497 + 5: 497 + 7: 497 + 15.11: _ZN9oceanbase3sql17ObChunkDatumStore8IteratorD2Ev:0 + 0: 0 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIteratorD2Ev:0 + 0: 0 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator5resetEv:0 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator12reset_cursorEv:0 + 3: 0 +_ZN9oceanbase6common8ObNewRow5resetEv:479648:31101 + 1: 29978 + 3: 29978 + 6: 29978 +_ZN9oceanbase8memtable22ObMemtableScanIterator13get_iter_flagEv:475464:39957 + 0: 39622 +easy_message_create:472755:5106 + 1: 5102 + 7: 1552 + 11: 1552 + 2: easy_message_create_nlist:351827 + 7: 5202 easy_pool_create:5251 + 12: 5202 + 13: 5202 easy_pool_calloc:5202 + 14: 3847 + 15: 3847 easy_buf_create:3846 + 17: 1552 + 18.1: 17 + 18.2: 17 + 18.3: 17 + 18.4: 17 + 19: 17 + 27: 1552 + 28: 1552 + 29: 1552 + 29.3: 1552 + 30: 1552 + 31: 1552 + 32: 1552 + 33: 1552 + 34.1: 1552 + 35.1: 1552 + 7: easy_list_add_tail:37248 + 2: 1552 + 2: __easy_list_add:26384 + 3: 1552 + 4: 1552 + 5: 1552 + 6: 1552 +_ZN9oceanbase7storage15ObDMLRunningCtx4initEPKNS_6common8ObIArrayImEES6_PNS_5share6schema27ObMultiVersionSchemaServiceERNS0_14ObTabletHandleE:471012:996 + 5: 991 + 6: 991 + 8: 991 + 9: 0 + 10.1: 0 + 11.1: 962 + 12: 839 + 12.1: 839 + 13: 839 + 13.1: 839 + 14: 839 + 15: 12 + 16.1: 12 + 19: 839 + 20: 839 + 21: 839 + 22: 839 + 23: 1138 _ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE7get_objEv:847 + 23.1: 1119 + 24: 1138 _ZN9oceanbase7storage15ObDMLRunningCtx20check_schema_versionERNS_5share6schema27ObMultiVersionSchemaServiceEmmllRNS0_14ObTabletHandleE:1194 + 25.1: 12 + 29: 1046 + 31.1: 1072 + 31.3: 1046 _ZN9oceanbase7storage15ObDMLRunningCtx22prepare_relative_tableERKNS_5share6schema18ObTableSchemaParamERNS0_14ObTabletHandleEl:1140 + 35.1: 12 + 36.1: 1072 + 36.2: 886 _ZN9oceanbase7storage15ObDMLRunningCtx19prepare_column_infoERKNS_6common8ObIArrayImEE:891 + 37.1: 12 + 39: 1044 + 40: 1044 + 41: 1044 + 44: 12 + 45: 12 + 47: 1044 + 11.1: _ZNK9oceanbase7storage10ObStoreCtx8is_validEv:17340 + 2: 962 + 2.1: 962 _ZNK9oceanbase8memtable15ObMvccAccessCtx8is_validEv:957 + 2: _ZNK9oceanbase5share6ObLSID8is_validEv:3848 + 0: 962 + 12.1: _ZNK9oceanbase7storage14ObDMLBaseParam8is_validEv:14263 + 0: 839 + 0.1: 839 + 19: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:16649 + 2: 839 + 2.1: 12 + 2.2: 12 + 19.1: _ZNK9oceanbase5share12ObTenantBase2idEv:15941 + 0: 839 + 20.1: _ZNK9oceanbase5share6schema18ObTableSchemaParam12get_table_idEv:6712 + 0: 839 + 23.2: _ZNK9oceanbase7storage8ObTablet18is_lob_meta_tabletEv:104600 + 3: 1138 + 2: _ZNK9oceanbase7storage8ObTablet8is_validEv:84116 + 3: 938 + 3.1: 938 _ZNK9oceanbase7storage12ObTabletMeta8is_validEv:967 + 4: 1050 + 5: 1050 + 5.1: 1050 _ZNK9oceanbase7storage15ObStorageSchema8is_validEv:1116 + 2: _ZNK9oceanbase7storage19ObMetaPointerHandleINS0_14ObTabletMapKeyENS0_8ObTabletEE8is_validEv:25326 + 2: 938 + 3: 938 + 3.1: 938 + 4: 938 + 4.1: 938 + 4.1: _ZNK9oceanbase7storage18ObTabletTableStore8is_validEv:31500 + 2: 1050 + 3: 1050 + 3: _ZNK9oceanbase7storage18ObTabletTableStore15get_table_countEv:14700 + 0: 1050 + 0.1: _ZNK9oceanbase7storage13ObITableArray5countEv:7350 + 0: 1050 + 3.1: _ZNK9oceanbase6common10ObTabletIDeqERKS1_:15932 + 0: 1138 + 31.1: _ZNK9oceanbase5share6schema15ObTableDMLParam14get_data_tableEv:4184 + 0: 1046 + 31.2: _ZNK9oceanbase8memtable15ObMvccAccessCtx20get_snapshot_versionEv:4184 + 1: 1046 +_ZN9oceanbase3lib12SubObjectMgr10free_blockEPNS0_6ABlockE:470856:5209 + 1: 5118 + 2: 5118 + 5: 5118 + 7: 5118 + 8: 5118 _ZN9oceanbase3lib8BlockSet10free_blockEPNS0_6ABlockE:5232 + 2: _ZL12abort_unlessb:10236 + 5: 5118 + 6: 0 + 3: _ZNK9oceanbase3lib6ABlock8is_validEv:40944 + 2: 5118 + 3.1: _ZL12abort_unlessb:10236 + 5: 5118 + 6: 0 + 5: _ZL12abort_unlessb:10236 + 5: 5118 + 6: 0 + 6: _ZNK9oceanbase3lib6AChunk8is_validEv:35826 + 2: 5118 + 6.1: _ZL12abort_unlessb:10236 + 5: 5118 + 6: 0 + 7: _ZL12abort_unlessb:10236 + 5: 5118 + 6: 0 +_ZN9oceanbase6common11ObSqlString5resetEv:470400:15381 + 1: 14700 + 2: 14700 + 4: 0 + 8: 14700 + 9: 14700 + 3: _ZN9oceanbase6common8ObMalloc4freeEPv:0 + 0: 0 +_ZZNK9oceanbase3sql8ObOpSpec25create_operator_recursiveERNS0_13ObExecContextERPNS0_10ObOperatorEENK5$_117clEPKc.68271ef948b9e29c783f97102b0c767d:467901:7052 + 0: 6922 + 0.1: 0 + 0.2: 6707 + 0.3: 6922 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:7003 + 0.9: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:117674 + 2: 6922 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKNS_3sql17ObPhyOperatorTypeELb0EEC2EPKcS5_:0 + 0: 0 +_ZN9oceanbase6common11to_hex_cstrEPKvlPcl:467137:530 + 5: 513 + 6: 513 + 7: 513 + 9: 555 + 10.1: 0 + 12: 555 + 9: _ZN9oceanbase6common11to_hex_cstrEPKvlPclRlS4_:437737 + 8: 513 + 10: 513 + 14: 0 + 15.1: 0 + 16.1: 513 + 17: 0 + 18: 0 + 19.1: 0 + 23.1: 9037 + 23.3: 9037 + 24: 9037 + 25: 9037 + 28: 555 + 29: 555 + 31: 555 +_ZN9oceanbase6common16ObClusterVersion12get_instanceEv:463772:20772 + 1: 20164 + 2: 20164 + 2.1: 0 + 2.3: 0 + 2.6: 0 + 3: 20164 + 2.2: _ZN9oceanbase6common16ObClusterVersionC2Ev:0 + 0: 0 + 2: 0 +_ZN9oceanbase11transaction14ObTransService19update_max_read_ts_EmRKNS_5share6ObLSIDEl:458673:4375 + 3: 4235 + 4: 4235 + 6.1: 4629 _ZZN9oceanbase11transaction14ObTransService19update_max_read_ts_EmRKNS_5share6ObLSIDElENK6$_1153clEPKc.93feb755617c21c32b229b78773c290c:4724 + 7: 4372 + 5: _ZN9oceanbase11transaction14ObTxVersionMgr18update_max_read_tsEl:149343 + 3.1: 4176 _ZZN9oceanbase11transaction14ObTxVersionMgr18update_max_read_tsElENKUlPKcE_clES3_:4210 + 2: _ZN9oceanbase6common10inc_updateIlEElPT_S2_:47307 + 3: 4235 + 4.1: 4235 + 5: 38 +_ZNK9oceanbase12blocksstable17ObFuseRowCacheKey9deep_copyEPclRPNS_6common13ObIKVCacheKeyE:455707:613 + 1: 559 + 2: 559 + 3: 559 + 3.1: 559 _ZNK9oceanbase12blocksstable17ObFuseRowCacheKey4sizeEv:599 + 3.2: 518 + 4: 0 + 5.1: 0 + 6.1: 518 + 7: 0 + 8.1: 0 + 11: 518 + 13: 518 + 14: 518 + 15: 518 + 15.1: 518 + 16: 518 + 17.1: 533 + 18.1: 0 + 20: 533 + 21: 533 + 24: 0 + 25: 0 + 29: 533 + 6.1: _ZNK9oceanbase12blocksstable17ObFuseRowCacheKey8is_validEv:36778 + 2: 518 + 2.1: 518 + 2.2: 518 + 2.3: 518 + 2.4: 518 + 2.5: 518 + 2.1: _ZNK9oceanbase6common10ObTabletID8is_validEv:2590 + 0: 518 + 2.3: _ZNK9oceanbase12blocksstable13ObDatumRowkey8is_validEv:8288 + 0: 518 + 0.1: 518 + 10: _ZN9oceanbase12blocksstable17ObFuseRowCacheKeyC2Ev:25382 + 2: 518 + 0.1: _ZN9oceanbase6common10ObTabletIDC2Em:18130 + 0: 518 + 12: _ZN9oceanbase6common10ObTabletIDaSERKS1_:4144 + 0: 518 + 15: _ZNK9oceanbase12blocksstable13ObDatumRowkey8is_validEv:9842 + 0: 518 + 0.1: 518 + 16: _ZN9oceanbase6common24ObRawBufAllocatorWrapperC2EPcl:16576 + 0: 518 + 1: 518 + 17: _ZNK9oceanbase12blocksstable13ObDatumRowkey9deep_copyERS1_RNS_6common12ObIAllocatorE:259846 + 2: 518 + 3: 544 + 6.2: 544 + 7: 0 + 8.1: 0 + 10: 0 + 11.1: 0 + 12.1: 533 + 13.1: 0 + 14: 0 + 16: 0 + 18: 0 + 21: 0 + 3: _ZNK9oceanbase12blocksstable13ObDatumRowkey18get_deep_copy_sizeEv:27652 + 8: 518 + 9: 518 + 9.1: 2 + 9.3: 2 + 10: 544 + 10: _ZNK9oceanbase12blocksstable14ObStorageDatum18get_deep_copy_sizeEv:18686 + 3: 519 + 4.1: 519 + 3: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:5709 + 0: 519 + 4.1: _ZNK9oceanbase12blocksstable14ObStorageDatum12is_local_bufEv:6228 + 0: 519 + 6: _ZNK9oceanbase12blocksstable13ObDatumRowkey8is_validEv:1632 + 0.1: 544 + 9.1: _ZN9oceanbase6common24ObRawBufAllocatorWrapper5allocEl:2176 + 3: 544 + 12.1: _ZNK9oceanbase12blocksstable13ObDatumRowkey9deep_copyERS1_Pcl:209061 + 2: 555 + 8.1: 555 + 8.2: 555 + 9: 524 + 10.1: 0 + 10.2: 549 + 10.3: 549 + 10.5: 549 + 11: 549 + 12.1: 0 + 16: 533 + 17: 533 + 18: 533 + 19: 533 + 8.2: _ZN9oceanbase12blocksstable14ObStorageDatumC2Ev:22909 + 0.1: _ZN9oceanbase12blocksstable14ObStorageDatum7set_nopEv:22909 + 0: _ZN9oceanbase12blocksstable14ObStorageDatum13set_ext_valueEl:22909 + 1: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:6163 + 0: 555 + 65425.2: 2 + 1.1: _ZN9oceanbase6common11ObDatumDesc7set_extEv:4472 + 0: 555 + 1.3: _ZN9oceanbase6common5ObObj7set_extEl:12274 + 4: 555 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:6137 + 0: 555 + 11: _ZN9oceanbase12blocksstable14ObStorageDatum9deep_copyERKS1_PclRl:60369 + 2: 526 + 5: 526 + 6: 526 + 7.1: 526 + 8.1: 525 + 10: 544 + 11: 548 + 12.2: 0 + 12.3: 0 + 13: 0 + 14.1: 0 + 16: 0 + 18: 0 + 19: 0 + 22: 548 + 4: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:11046 + 0: 526 + 6: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:1052 + 0: 526 + 8.1: _ZNK9oceanbase12blocksstable14ObStorageDatum12is_local_bufEv:6825 + 0: 525 + 20: _ZN9oceanbase6common13ObStoreRowkey5resetEv:5863 + 0: 533 + 17: _ZN9oceanbase12blocksstable13ObDatumRowkey5resetEv:0 + 0: 0 +_ZN9oceanbase3sql11ObResultSet35transaction_set_violation_and_retryERiRl:454888:4725 + 1: 4426 + 5: 4411 + 8: 4411 + 9: 4411 + 10.1: 0 + 11: 0 + 13: 0 + 15: 0 + 17: 0 + 19.1: 0 + 21: 0 + 23: 0 + 26: 0 + 29.1: 0 + 34: 0 + 39: 0 + 46: 4411 + 3: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:48686 + 0: 4426 + 0.2: 0 + 3.1: _ZN9oceanbase3sql13ObExecContext11get_sql_ctxEv:30877 + 0: 4411 + 6: _ZNK9oceanbase3sql15ObMultiStmtItem21is_batched_multi_stmtEv:79398 + 3: 4411 + 4: 0 + 6: 4411 + 21: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:0 + 0: 0 + 0.2: 0 + 21.1: _ZN9oceanbase3sql11ObResultSet13do_close_planEiRNS0_13ObExecContextE:0 + 2: 0 + 3: 0 + 5.1: 0 + 5.2: 0 + 5.4: 0 + 7: 0 + 16: 0 + 17: 0 + 18.1: 0 + 19.1: 0 + 20.1: 0 + 23: 0 + 25: 0 + 26: 0 + 27.1: 0 + 28.1: 0 + 29.1: 0 + 36: 0 + 38.1: 0 + 40: 0 + 42: 0 + 43: 0 + 44.1: 0 + 45: 0 + 46: 0 + 46.2: 0 + 49: 0 + 50: 0 + 51.1: 0 + 53.1: 0 + 54: 0 + 55.1: 0 + 56: 0 + 59: 0 + 63: 0 + 65: 0 + 65.2: 0 + 67.1: 0 + 67.2: 0 + 67.4: 0 + 68: 0 + 5.1: _ZN9oceanbase3lib20is_trace_log_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:0 + 2: 0 + 5.2: _ZN9oceanbase6common18get_trace_recorderEv:0 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:0 + 7: 0 + 8: 0 + 8.1: 0 + 5.4: _ZN9oceanbase3lib20is_trace_log_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:0 + 2: 0 + 5.5: _ZN9oceanbase6common18get_trace_recorderEv:0 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:0 + 7: 0 + 8: 0 + 8.1: 0 + 5.11: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl189ELl1600EE9add_eventEv:0 + 2: 0 + 3.1: 0 + 6: 0 + 10: 0 + 11: 0 + 12: 0 + 5.12: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:0 + 0: 0 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 25: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:0 + 0: 0 + 0.2: 0 + 25.1: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:0 + 2: 0 + 40: _ZNK9oceanbase3sql17ObPhysicalPlanCtx16is_error_ignoredEv:0 + 0: 0 + 42: _ZNK9oceanbase3sql11ObResultSet13need_rollbackEiib:0 + 3: 0 + 3.1: 0 + 4: 0 + 4.1: 0 + 65: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:0 + 0: 0 + 0.2: 0 + 65.1: _ZN9oceanbase3sql11ObResultSet17get_physical_planEv:0 + 2: _ZNK9oceanbase3sql15ObCacheObjGuard13get_cache_objEv:0 + 2: 0 + 67.1: _ZN9oceanbase3lib20is_trace_log_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:0 + 2: 0 + 67.2: _ZN9oceanbase6common18get_trace_recorderEv:0 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:0 + 7: 0 + 8: 0 + 8.1: 0 + 67.4: _ZN9oceanbase3lib20is_trace_log_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:0 + 2: 0 + 67.5: _ZN9oceanbase6common18get_trace_recorderEv:0 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:0 + 7: 0 + 8: 0 + 8.1: 0 + 67.11: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl189ELl1600EE9add_eventEv:0 + 2: 0 + 3.1: 0 + 6: 0 + 10: 0 + 11: 0 + 12: 0 + 67.12: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:0 + 0: 0 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 22: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:0 + 0: 0 + 0.2: 0 + 22.1: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:0 + 2: 0 + 24: _ZN9oceanbase3sql17ObPhysicalPlanCtx21reset_for_quick_retryEv:0 + 2: 0 + 3: 0 +_ZN9oceanbase6common13ObSEArrayImplINS_3sql15ObPxTabletRangeELl1ENS0_19ModulePageAllocatorELb0EED2Ev:454524:4906 + 1: 4638 + 3: 4638 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_3sql15ObPxTabletRangeELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:241176 + 4.1: 4638 + 4.3: 0 + 9: 4638 + 11: 0 + 13: 4638 + 15: 4638 + 24: 4638 + 5: _ZN9oceanbase3sql15ObPxTabletRangeD2Ev:0 + 0: _ZN9oceanbase6common13ObSEArrayImplINS0_9ObSEArrayINS0_7ObDatumELl2ENS0_19ModulePageAllocatorELb0EEELl8ES4_Lb0EED2Ev:0 + 1: 0 + 2: 0 + 3.2: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_3sql15ObPxTabletRangeELl1ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase5trace7ObTrace10reset_spanEv:454470:5539 + 1: 5161 + 8: 5091 + 8.1: 69 + 10.1: 0 + 12: 0 + 16: 0 + 20: 5160 + 21: 5160 + 8: _ZN9oceanbase5trace7ObTrace9is_initedEv:107961 + 0: 5161 + 0: _ZN9oceanbase5trace7ObTrace11check_magicEv:15483 + 0: 5161 + 0.1: _ZNK9oceanbase5trace4UUID9is_initedEv:61512 + 0: 5161 + 0.1: 5091 + 8.1: _ZNK9oceanbase6common7ObDListINS_5trace9ObSpanCtxEE8is_emptyEv:483 + 0: 69 + 11: _ZN9oceanbase6common11ObDLinkBaseINS_5trace9ObSpanCtxEE8get_nextEv:0 + 0: 0 + 13: _ZN9oceanbase6common7ObDListINS_5trace9ObSpanCtxEE6removeEPS3_:0 + 3: 0 + 7: 0 + 6: _ZN9oceanbase6common11ObDLinkBaseINS_5trace9ObSpanCtxEE6unlinkEv:0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 14: _ZN9oceanbase6common7ObDListINS_5trace9ObSpanCtxEE9add_firstEPS3_:0 + 6.1: 0 + 6.2: 0 + 7: 0 + 7.1: 0 + 9.1: 0 + 13: 0 + 12: _ZN9oceanbase6common11ObDLinkBaseINS_5trace9ObSpanCtxEE9add_afterEPS3_:0 + 2: 0 + 2: _ZN9oceanbase6common11ObDLinkBaseINS_5trace9ObSpanCtxEE3addEPS3_S5_S5_:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 +_ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EED2Ev:454110:5574 + 1: 5401 + 3: 5454 + 3.2: 18 + 2: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv:253652 + 4.1: 5401 + 4.3: 18 + 9: 5639 + 11: 18 + 13: 5454 + 15: 5454 + 24: 5454 + 5: _ZN9oceanbase6common10ObTabletIDD2Ev:270 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:270 + 0: 18 + 10: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:1152 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:1152 + 0: 18 + 0.2: 18 + 0.1: _ZN9oceanbase6common7ob_freeEPv:792 + 2: 18 + 3: 18 + 4: 18 + 5: 18 + 4: _ZL12abort_unlessb:162 + 5: 18 + 6: 18 +_ZN9oceanbase3sql16ObPlanCacheValue27check_value_version_for_getEPNS_5share6schema19ObSchemaGetterGuardEbRKNS_6common8ObIArrayINS0_12PCVSchemaObjEEEmRb:447989:4855 + 5: 4520 + 6: 4520 + 8: 4520 + 9: 4520 + 10: 1 + 11.1: 1 + 12.2: 3 + 13: 4520 + 13.1: 3 _ZN9oceanbase3sql16ObPlanCacheValue19get_outline_versionERNS_5share6schema19ObSchemaGetterGuardEmRNS3_18ObSchemaObjVersionE:2 + 16.1: 1 + 17.1: 4521 + 21.1: 1 + 25: 4521 + 7: _ZN9oceanbase5share6schema18ObSchemaObjVersionC2Ev:108480 + 1: 4520 + 4: 4520 + 5: 4520 + 17.1: _ZN9oceanbase3sql16ObPlanCacheValue19check_value_versionEbRKNS_5share6schema18ObSchemaObjVersionERKNS_6common8ObIArrayINS0_12PCVSchemaObjEEERb:45518 + 5: 4518 + 6: 4518 + 8: 3 + 9: 1 + 10.1: 4 _ZN9oceanbase3sql16ObPlanCacheValue24check_dep_schema_versionERKNS_6common8ObIArrayINS0_12PCVSchemaObjEEERKNS3_IPS4_EERb:2 + 13.1: 1 + 18: 1 + 8: _ZNK9oceanbase5share6schema18ObSchemaObjVersionneERKS2_:192 + 0: _ZNK9oceanbase5share6schema18ObSchemaObjVersioneqERKS2_:192 + 1: 3 + 2: 3 + 2.1: 3 + 3: 3 + 3.1: 3 + 4: 3 + 4.1: 3 + 5: 3 + 5.1: 3 +easy_request_set_cleanup:443940:4887 + 1: 4530 + 3: 4530 + 4: 4530 + 4.2: 4530 + 5: 4530 + 8.1: 4530 + 8.2: 0 + 8.3: 0 + 8.4: 0 + 10: 4530 + 11: 4530 + 12: 4530 easy_buf_set_cleanup:5078 + 14: 0 + 4: easy_list_empty:13590 + 2: 4530 + 11: easy_atomic_inc:27180 + 2: 4530 +_ZN9oceanbase3sql8ObParser9pre_parseERKNS_6common8ObStringERNS0_14PreParseResultE:443714:5163 + 2: 5012 + 6: 5012 + 9: 4499 + 12.1: 4688 + 12.2: 4499 + 12.4: 0 + 13: 4688 + 13.1: 0 + 14: 4688 + 14.1: 4688 + 15: 4688 + 15.1: 4688 + 18.1: 0 + 18.3: 0 + 20.1: 0 + 22: 0 + 22.1: 0 + 26: 0 + 28: 0 + 28.1: 0 + 29: 0 + 30: 0 + 31.1: 0 + 32: 0 + 49: 0 + 52: 0 + 59: 5197 + 5: _ZNK9oceanbase6common8ObString6lengthEv:40096 + 0: 5012 + 10: _ZNK9oceanbase6common8ObString3ptrEv:71984 + 0: 4499 + 12.2: _ZN9oceanbase3sql8ObParser8is_spaceEc:4499 + 2: 4499 +_ZN9oceanbase6common11ObAllocatorD2Ev:443533:9873 + 0: 9753 _ZN9oceanbase3lib9ObjectSetD1Ev:9781 + 0.1: _ZN9oceanbase3lib7ObMutexD2Ev:141078 + 0: 10069 _ZN9oceanbase6common12ObLatchMutexD1Ev:10387 +_ZN9oceanbase3sql20ObSqlMemMgrProcessor4initEPNS_6common12ObIAllocatorEmlNS0_17ObPhyOperatorTypeEmPNS0_13ObExecContextE:442556:789 + 7: 764 + 8: 764 + 13: 764 + 14: 764 + 15: 764 + 16: 764 + 18: 764 + 19.1: 20 + 20: 20 + 22: 764 + 23.1: 683 + 24: 683 + 26: 750 + 29: 20 + 29.1: 20 + 30: 20 + 30.1: 20 + 32.1: 16 + 34: 20 + 35.1: 20 + 44: 750 + 45: 750 + 46.1: 812 + 48.1: 855 _ZN9oceanbase3sql24ObTenantSqlMemoryManager18get_work_area_sizeEPNS_6common12ObIAllocatorERNS0_20ObSqlWorkAreaProfileE:809 + 49.1: 16 + 51: 855 + 56: 683 + 57: 18 + 58: 18 + 62.1: 18 + 68: 868 + 69: 868 + 70.1: 868 + 70.2: 868 _ZN9oceanbase3sql17ObSqlWorkareaUtil17get_workarea_sizeENS0_17ObSqlWorkAreaTypeElRl:850 + 72.1: 20 + 74: 807 + 78: 807 + 79: 807 + 79.3: 807 + 80: 807 + 10: _ZN9oceanbase3sql20ObSqlMemMgrProcessor15get_sql_mem_mgrEv:46616 + 2: 764 + 3: 764 + 4: 764 + 5: 764 + 3: _ZN9oceanbase5share11ObTenantEnv3mtlIPNS_3sql24ObTenantSqlMemoryManagerEEET_v:26752 + 2: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:15292 + 2: 764 + 2.1: 20 + 2.2: 20 + 2.1: _ZN9oceanbase5share12ObTenantBase3getIPNS_3sql24ObTenantSqlMemoryManagerEEET_v:11460 + 0: _ZN9oceanbase5share12ObTenantBase9inner_getENS1_8IdentityIPNS_3sql24ObTenantSqlMemoryManagerEEE:11460 + 0: 764 + 12: _ZN9oceanbase3sql20ObSqlMemMgrProcessor5resetEv:9932 + 2: 764 + 3: 764 + 14: _ZN9oceanbase3sql20ObSqlWorkAreaProfile17set_operator_typeENS0_17ObPhyOperatorTypeE:2292 + 0: 764 + 15: _ZN9oceanbase3sql20ObSqlWorkAreaProfile15set_operator_idEm:3056 + 0: 764 + 16: _ZN9oceanbase3sql20ObSqlWorkAreaProfile12set_exec_ctxEPNS0_13ObExecContextE:3056 + 0: 764 + 22: _ZN9oceanbase3sql20ObSqlMemMgrProcessor12alloc_dir_idERl:19937 + 2: 764 + 3: 764 + 5: 764 _ZN9oceanbase3sql16ObChunkStoreUtil12alloc_dir_idERl:787 + 6.1: 20 + 10: 20 + 24: _ZN9oceanbase3sql24ObTenantSqlMemoryManager22enable_auto_memory_mgrEv:5464 + 0: 683 + 26: _ZNK9oceanbase3sql20ObSqlWorkAreaProfile15get_auto_policyEv:4500 + 0: 750 + 34: _ZN9oceanbase3sql20ObSqlWorkAreaProfile4initEll:2080 + 3: 20 + 6: 20 + 7: 20 + 8: 20 + 9: 20 + 7: _ZN9oceanbase3sql20ObSqlWorkAreaProfile18calc_one_pass_sizeEl:860 + 2: 20 + 40: _ZN9oceanbase3sql20ObSqlWorkAreaProfile4initEll:72200 + 3: 750 + 6: 750 + 7: 750 + 8: 750 + 9: 750 + 7: _ZN9oceanbase3sql20ObSqlWorkAreaProfile18calc_one_pass_sizeEl:30200 + 2: 750 + 44: _ZN9oceanbase3sql20ObSqlWorkAreaProfile15set_expect_sizeEl:6000 + 2: 750 + 46.1: _ZN9oceanbase3sql24ObTenantSqlMemoryManager26register_work_area_profileERNS0_20ObSqlWorkAreaProfileE:31528 + 3: 838 + 7.1: 838 + 14.1: 16 + 17: 16 + 3: _ZNK9oceanbase3sql20ObSqlWorkAreaProfile13is_registeredEv:8690 + 0: 750 + 1: 750 + 1.1: 838 + 7.1: _ZN9oceanbase3sql20ObSqlWorkAreaProfile23auto_sql_memory_managerERS1_:15084 + 2: 838 + 10.1: _ZN9oceanbase3sql24ObTenantSqlMemoryManager14get_hash_valueEl:976 + 3: 16 + 2: _ZN9oceanbase6common10murmurhashEPKvim:928 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:928 + 13: 16 + 14: 16 + 15: 16 + 17: 16 + 18: 16 + 41: 16 + 42: 16 + 43: 16 + 51: _ZNK9oceanbase3sql20ObSqlWorkAreaProfile15get_auto_policyEv:4275 + 0: 855 + 56: _ZN9oceanbase3sql20ObSqlWorkAreaProfile4initEll:882 + 3: 0 + 6: 0 + 7: 18 + 8: 18 + 9: 18 + 7: _ZN9oceanbase3sql20ObSqlWorkAreaProfile18calc_one_pass_sizeEl:324 + 2: 18 + 57: _ZN9oceanbase3sql20ObSqlWorkAreaProfile15set_expect_sizeEl:144 + 2: 18 + 58: _ZN9oceanbase3sql24ObTenantSqlMemoryManager26register_work_area_profileERNS0_20ObSqlWorkAreaProfileE:2778 + 3: 20 + 7.1: 20 + 14.1: 20 + 17: 20 + 3: _ZNK9oceanbase3sql20ObSqlWorkAreaProfile13is_registeredEv:298 + 0: 18 + 1: 18 + 1.1: 20 + 7.1: _ZN9oceanbase3sql20ObSqlWorkAreaProfile23auto_sql_memory_managerERS1_:220 + 2: 20 + 10.1: _ZN9oceanbase3sql24ObTenantSqlMemoryManager14get_hash_valueEl:1220 + 3: 20 + 2: _ZN9oceanbase6common10murmurhashEPKvim:1160 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:1160 + 13: 20 + 14: 20 + 15: 20 + 17: 20 + 18: 20 + 41: 20 + 42: 20 + 43: 20 + 66: _ZN9oceanbase3sql20ObSqlWorkAreaProfile15set_expect_sizeEl:280 + 2: 20 + 70.1: _ZNK9oceanbase3sql20ObSqlWorkAreaProfile18get_work_area_typeEv:2604 + 0: 868 + 74: _ZNK9oceanbase3sql20ObSqlWorkAreaProfile15get_auto_policyEv:4035 + 0: 807 + 75: _ZN9oceanbase3sql20ObSqlWorkAreaProfile13set_max_boundEl:5649 + 0: 807 +_ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl16ENS0_19ModulePageAllocatorELb0EED2Ev:442390:5499 + 1: 5395 + 3: 5395 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl16ENS0_19ModulePageAllocatorELb0EE7destroyEv:242775 + 9: 5395 + 11: 0 + 13: 5395 + 15: 5395 + 24: 5395 + 10: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl16ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase3sql11ObResultSet20store_last_insert_idERNS0_13ObExecContextE:438893:5436 + 0: 0 + 1: 5210 + 2: 5210 + 4: 5210 + 4.1: 4724 + 5: 501 + 5.1: 4724 + 6: 4724 + 6.1: 4724 + 9: 500 + 10: 500 + 11: 0 + 12.1: 0 + 19: 500 + 24: 0 + 25.1: 0 + 26.1: 0 + 27.1: 0 + 29.1: 0 + 29.2: 0 + 29.4: 0 + 29.5: 0 + 29.7: 0 + 29.8: 0 + 29.9: 0 + 29.10: 0 + 29.17: 0 + 29.18: 0 + 29.20: 0 + 29.22: 0 + 29.24: 0 + 33: 0 + 35: 500 + 41: 5249 + 3: _ZNK9oceanbase3sql15ObCacheObjGuard13get_cache_objEv:20840 + 2: 5210 + 4: _ZN9oceanbase3sql6ObStmt11is_dml_stmtENS0_4stmt8StmtTypeE:54721 + 3: 5210 + 10.1: _ZN9oceanbase3sql6ObStmt12is_show_stmtENS0_4stmt8StmtTypeE:10020 + 2: 501 + 9: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:3500 + 2: 500 + 14: _ZN9oceanbase3sql17ObPhysicalPlanCtx27calc_last_insert_id_sessionEv:9500 + 2: 500 + 3: 0 + 4: 0 + 21: _ZN9oceanbase6common5ObObj10set_uint64Em:0 + 3: 0 + 2: _ZN9oceanbase6common9ObObjMeta10set_uint64Ev:0 + 0: 0 + 29.1: _ZN9oceanbase3lib20is_trace_log_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:0 + 2: 0 + 29.4: _ZN9oceanbase3lib20is_trace_log_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:0 + 2: 0 + 29.19: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl189ELl1600EE10check_lockEv:0 + 2: 0 + 3: _ZN9oceanbase3lib7ObMutex4lockEv:0 + 0: 0 + 29.26: _ZN9oceanbase4yson24databuff_encode_elementsImEEiPclRltRKT_:0 + 0.1: _ZN9oceanbase4yson23databuff_encode_elementImEEiPclRltRKT_:0 + 3: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 29.29: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl189ELl1600EE12check_unlockEv:0 + 2: 0 + 3: _ZN9oceanbase3lib7ObMutex6unlockEv:0 + 0: 0 + 35: _ZN9oceanbase3sql17ObPhysicalPlanCtx29calc_last_insert_id_to_clientEv:28000 + 2: 500 + 3: 500 + 4: 500 + 6: 500 + 35.1: _ZN9oceanbase3sql11ObResultSet28set_last_insert_id_to_clientEm:5000 + 2: 500 +_ZN9oceanbase3sql11ObResultSet14set_mysql_infoEv:438247:5475 + 1: 5305 + 2: 5305 + 5: 5118 + 6: 0 + 7.1: 0 + 8.1: 5118 + 9: 503 + 9.1: 503 + 10: 503 + 11: 487 + 12: 0 + 13.1: 0 + 17: 239 + 20: 0 + 20.1: 0 + 21: 0 + 22: 0 + 23: 0 + 24.1: 0 + 28: 0 + 28.1: 0 + 29: 0 + 30: 0 + 31: 0 + 32.1: 0 + 37: 5117 + 3: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:58355 + 0: 5305 + 0.2: 0 + 3.1: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:35826 + 2: 5118 + 8.1: _ZNK9oceanbase3sql11ObResultSet13get_stmt_typeEv:30708 + 2: 5118 + 9: _ZNK9oceanbase3sql17ObPhysicalPlanCtx21get_row_matched_countEv:3521 + 0: 503 + 10: _ZNK9oceanbase3sql17ObPhysicalPlanCtx24get_row_duplicated_countEv:3521 + 0: 503 + 17: _ZNK9oceanbase3sql17ObPhysicalPlanCtx21get_row_matched_countEv:1673 + 0: 239 + 21: _ZNK9oceanbase3sql17ObPhysicalPlanCtx24get_row_duplicated_countEv:0 + 0: 0 + 28: _ZNK9oceanbase3sql17ObPhysicalPlanCtx21get_row_matched_countEv:0 + 0: 0 + 29: _ZNK9oceanbase3sql17ObPhysicalPlanCtx21get_row_deleted_countEv:0 + 0: 0 + 29.1: _ZNK9oceanbase3sql17ObPhysicalPlanCtx24get_row_duplicated_countEv:0 + 0: 0 +_ZN9oceanbase5share13ObTenantSpace15guard_deinit_cbERKS1_Pc:434400:5892 + 1: 5792 + 3: 5792 + 5: 5792 + 4: _ZN9oceanbase3lib6Worker4selfEv:127424 + 3: 5792 + 4: 0 + 4.1: _ZN9oceanbase3lib6Worker22set_compatibility_modeENS1_10CompatModeE:225888 + 2: _ZN9oceanbase3lib15set_compat_modeENS0_6Worker10CompatModeE:225888 + 2: 5792 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:121632 + 2: 5792 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 +_ZN9oceanbase3sql20ObExprResultTypeUtil23get_relational_cmp_typeERNS_6common9ObObjTypeERKS3_S6_:431526:2853 + 3: 2714 + 4: 2714 + 5: 2714 + 5.2: 2714 + 6: 0 + 7.1: 0 + 9: 2714 + 9.3: 2714 + 13: 2714 + 9: _ZN9oceanbase3lib14is_oracle_modeEv:108560 + 2: _ZN9oceanbase3lib15get_compat_modeEv:108560 + 2: 2714 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:65136 + 2: 2714 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 +_ZN9oceanbase3sql14ObOptTabletLocD2Ev:428976:4320 + 1: 3972 + 2: 3972 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_3sql13ObRoutePolicy16CandidateReplicaELl7ENS0_19ModulePageAllocatorELb1EED2Ev:238320 + 1: 3972 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_3sql13ObRoutePolicy16CandidateReplicaELl7ENS0_19ModulePageAllocatorELb1EE7destroyEv:178740 + 9: 3972 + 11: 0 + 13: 3972 + 15: 3972 + 24: 3972 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_3sql13ObRoutePolicy16CandidateReplicaELl7ENS0_19ModulePageAllocatorELb1EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 2.2: _ZN9oceanbase6common10ObTabletIDD2Ev:43692 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:43692 + 0: 3972 +_ZN9oceanbase3sql14ObOptTabletLocD1Ev:428976:4320 + 1: 3972 + 2: 3972 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_3sql13ObRoutePolicy16CandidateReplicaELl7ENS0_19ModulePageAllocatorELb1EED2Ev:238320 + 1: 3972 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_3sql13ObRoutePolicy16CandidateReplicaELl7ENS0_19ModulePageAllocatorELb1EE7destroyEv:178740 + 9: 3972 + 11: 0 + 13: 3972 + 15: 3972 + 24: 3972 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_3sql13ObRoutePolicy16CandidateReplicaELl7ENS0_19ModulePageAllocatorELb1EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 2.2: _ZN9oceanbase6common10ObTabletIDD2Ev:43692 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:43692 + 0: 3972 +_ZNK9oceanbase8memtable15ObMvccAccessCtx8is_validEv:428000:7620 + 0: 7377 + 1: 7377 + 7: 4093 + 2: _ZNK9oceanbase8memtable15ObMvccAccessCtx15is_read_valid__Ev:124238 + 1: 4471 + 2: 4471 + 3: 4471 + 4: 4471 + 4.1: 4471 + 4.2: 503 + 2.1: _ZNK9oceanbase11transaction12ObTxSnapshot8is_validEv:22355 + 0: 4471 + 3.1: _ZNK9oceanbase7storage14ObTxTableGuard8is_validEv:22355 + 0: 4471 + 3: _ZNK9oceanbase8memtable15ObMvccAccessCtx16is_write_valid__Ev:133104 + 1: 2832 + 2: 2832 + 3: 2832 + 3.1: 2832 + 4: 2832 + 4.1: 2832 + 5: 2832 + 5.1: 2832 + 6: 2832 + 7: 2832 + 2.1: _ZNK9oceanbase11transaction12ObTxSnapshot8is_validEv:14160 + 0: 2832 + 6.1: _ZNK9oceanbase11transaction9ObTransID8is_validEv:14160 + 0: 2832 + 7.1: _ZNK9oceanbase7storage14ObTxTableGuard8is_validEv:14160 + 0: 2832 + 4: _ZNK9oceanbase8memtable15ObMvccAccessCtx17is_replay_valid__Ev:0 + 1: 0 + 2: 0 + 2.1: 0 + 3: 0 + 3.1: _ZNK9oceanbase11transaction9ObTransID8is_validEv:0 + 0: 0 +_ZN9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE3getElRPS2_:427484:699 + 1: 660 + 2: 660 + 5: 660 + 6: 0 + 7.1: 0 + 8.1: 668 + 10.1: 668 + 11: 628 + 12: 628 + 13.1: 628 + 17: 628 + 18: 628 + 19.1: 628 _ZZN9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE3getElRPS2_ENKUlPKcE0_clES7_:647 + 20.1: 0 + 23.1: 0 + 26.1: 0 + 33: 678 + 8.1: _ZN9oceanbase6common8TCRWLock6rdlockEl:140976 + 3.1: 0 + 4: 0 + 5: 0 + 3.2: _ZN9oceanbase6common8TCRWLock10try_rdlockEv:140976 + 3: 660 + 5: 668 + 8.1: 0 + 4: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:2640 + 0: 660 + 4.1: _ZN9oceanbase6common5TCRef7inc_refEPi:113796 + 2: 660 + 4.1: 1232 + 4.2: 1232 + 6: 1864 + 6.1: 668 + 10: 668 + 2: _ZN9oceanbase6common8get_itidEv:18480 + 4: 660 + 5: 0 + 6: 0 + 8: 0 + 11: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 8: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:0 + 0: 0 + 9: _ZN9oceanbase6common9LWaitCond6signalEv:0 + 2: 0 + 2.1: 0 + 3: 0 + 10.1: _ZNK9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE18check_id_in_range_El:23048 + 4: 668 + 6.1: 628 + 4: _ZNK9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE12get_begin_snEv:4676 + 0: 668 + 6.1: _ZNK9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE11get_end_sn_Ev:8792 + 0: 628 + 11: _ZNK9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE9calc_idx_El:9420 + 2: 628 + 17: _ZNK9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE18check_id_in_range_El:22608 + 4: 628 + 6.1: 628 + 4: _ZNK9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE12get_begin_snEv:4396 + 0: 628 + 6.1: _ZNK9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE11get_end_sn_Ev:8792 + 0: 628 + 31: _ZN9oceanbase6common8TCRWLock8rdunlockEv:127168 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:2776 + 0: 694 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPi:116934 + 2: 694 + 4.1: 1249 + 4.2: 1249 + 6: 1964 + 6.1: 678 + 10: 678 + 2: _ZN9oceanbase6common8get_itidEv:19432 + 4: 694 + 5: 0 + 6: 0 + 8: 0 + 11: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:7458 + 2: 678 + 2.1: 0 + 3: 0 +_ZN9oceanbase6common8precheckINS_8observer16ObMySQLResultSetEEEibRb:422941:5656 + 1: 5411 + 3: 5411 + 4: 0 + 8: 5085 + 6: _ZN9oceanbase6common15check_from_heapEiRb:300770 + 3: 5208 + 4: 5208 + 5: 5208 + 6: 5327 _ZN9oceanbase6common23get_reserved_stack_sizeEv:5247 + 6.1: 5327 _ZN9oceanbase6common20check_stack_overflowERblPl:5383 + 10: 5085 + 10.2: 5085 + 11: 0 +_ZN9oceanbase3sql10ObSQLUtils23extract_pre_query_rangeERKNS0_12ObQueryRangeERNS_6common12ObIAllocatorERNS0_13ObExecContextERNS5_9ObSEArrayIPNS5_10ObNewRangeELl1ENS5_19ModulePageAllocatorELb0EEENSA_IbLl2ESD_Lb1EEERKNS5_20ObDataTypeCastParamsE:421760:4575 + 6: 4352 + 7: 4352 + 8: 4352 + 10: 4476 _ZNK9oceanbase3sql12ObQueryRange17get_tablet_rangesERNS_6common12ObIAllocatorERNS0_13ObExecContextERNS2_9ObSEArrayIPNS2_10ObNewRangeELl1ENS2_19ModulePageAllocatorELb0EEERNS7_IbLl2ESA_Lb1EEERKNS2_20ObDataTypeCastParamsE:4397 + 15.1: 0 + 18: 0 + 19: 0 + 19.1: 0 + 21.1: 0 + 22.1: 0 + 22.2: 0 + 23.1: 0 + 24.1: 0 + 24.2: 0 + 27.1: 0 + 31: 0 + 31.1: 0 + 32: 4476 +_ZN9oceanbase12blocksstable22ObIndexBlockRowScanner4initERKNS_6common8ObIArrayIiEERKNS3_INS_5share6schema16ObColumnSchemaV2EEEPKNS_7storage15ObTableReadInfoERNS2_12ObIAllocatorERKNS2_11ObQueryFlagE:421599:3149 + 6: 3089 + 7: 3089 + 8: 3089 + 9: 0 + 10.1: 0 + 11.1: 3231 + 11.3: 3231 + 12: 12 + 13.1: 12 + 14.1: 3199 + 15.1: 12 + 17: 3199 + 18: 3199 + 19: 3199 + 20: 3199 + 21: 3199 + 22: 3199 + 23: 3199 + 25: 3256 + 14.1: _ZN9oceanbase12blocksstable24ObMicroBlockReaderHelper4initERNS_6common12ObIAllocatorE:32434 + 3: 3231 + 5.1: 12 + 7: 3199 + 20: _ZNK9oceanbase6common11ObQueryFlag15is_reverse_scanEv:47985 + 0: 3199 +_ZNK9oceanbase8observer11ObSMHandler20get_cs_protocol_typeEP17easy_connection_t:419938:10232 + 1: 9766 + 3: 9766 + 3.1: 9766 + 4.1: 0 + 9: 9766 + 7: _ZNK9oceanbase8observer14ObSMConnection20get_cs_protocol_typeEv:195320 + 3: 9766 + 5.1: 9766 +_ZN9oceanbase11transaction9tablelock9ObOBJLock17check_allow_lock_ERKNS1_13ObTableLockOpERKhRNS_6common4hash19ObIteratableHashSetINS0_9ObTransIDELm16EEERbbb:418225:782 + 7: 749 + 8: 749 + 12.1: 0 + 13: 0 + 16.1: 0 + 20.1: 825 + 25: 0 + 27: 825 + 31: 0 + 35.1: 0 + 39: 845 + 40: 0 + 40.1: 0 + 40.3: 0 + 41: 0 + 41.1: 0 + 44: 862 + 45: 0 + 45.1: 0 + 45.3: 0 + 46: 0 + 46.1: 0 + 50: 849 + 11: _ZN9oceanbase6common4hash19ObIteratableHashSetINS_11transaction9ObTransIDELm16EE5resetEv:42693 + 0: _ZN9oceanbase6common4hash19ObIteratableHashSetINS_11transaction9ObTransIDELm16EE5clearEv:42693 + 3: 749 + 2: _ZN9oceanbase6common4hash18ObPlacementHashSetINS0_11ObDLinkNodeINS_11transaction9ObTransIDEEELm16ELb0EE5clearEv:19474 + 3: 749 + 2: _ZN9oceanbase6common8ObBitSetILl16ENS0_19ModulePageAllocatorELb0EE5reuseEv:11235 + 2: _ZN9oceanbase6common13ObSEArrayImplIjLl1ENS0_19ModulePageAllocatorELb0EE5reuseEv:11235 + 8: 749 + 9: 749 + 3: _ZN9oceanbase6common7ObDListINS0_11ObDLinkNodeINS_11transaction9ObTransIDEEEE5resetEv:17976 + 1: _ZN9oceanbase6common7ObDListINS0_11ObDLinkNodeINS_11transaction9ObTransIDEEEE5clearEv:17976 + 2: 749 + 3: 749 + 4: 749 + 12: _ZNK9oceanbase11transaction9tablelock13ObTableLockOp19need_record_lock_opEv:31888 + 2: 749 + 2: _ZN9oceanbase11transaction9tablelockL20is_out_trans_op_typeENS1_17ObTableLockOpTypeE:4494 + 2: 749 + 3: _ZNK9oceanbase11transaction9tablelock13ObTableLockOp25is_need_record_lock_mode_Ev:6642 + 2: 738 + 4: _ZN9oceanbase11transaction9tablelockL30is_in_trans_lock_table_op_typeENS1_17ObTableLockOpTypeE:2214 + 2: 738 + 18.1: _ZN9oceanbase11transaction9tablelock9ObOBJLock37get_exist_lock_mode_without_cur_transERKhRh:176185 + 7: 747 + 7.3: 747 + 8: 747 + 14: 747 + 14.3: 747 + 15: 747 + 15.3: 747 + 16: 747 + 16.3: 747 + 17: 769 + 20: 0 + 23.1: 0 + 26.1: 769 + 28: 0 + 30.1: 0 + 33: 0 + 34.1: 769 + 36: 0 + 38.1: 0 + 41: 0 + 43: 769 + 44: 769 + 45: 769 + 49: 769 + 49.3: 769 + 50: 769 + 52: 0 + 57.1: 0 + 61: 769 + 7.2: _ZNK9oceanbase6common7ObDListINS_11transaction9tablelock21ObTableLockOpLinkNodeEE8get_sizeEv:0 + 0: 0 + 14.2: _ZNK9oceanbase6common7ObDListINS_11transaction9tablelock21ObTableLockOpLinkNodeEE8get_sizeEv:0 + 0: 0 + 15.2: _ZNK9oceanbase6common7ObDListINS_11transaction9tablelock21ObTableLockOpLinkNodeEE8get_sizeEv:0 + 0: 0 + 16.2: _ZNK9oceanbase6common7ObDListINS_11transaction9tablelock21ObTableLockOpLinkNodeEE8get_sizeEv:0 + 0: 0 + 49.2: _ZNK9oceanbase6common7ObDListINS_11transaction9tablelock21ObTableLockOpLinkNodeEE8get_sizeEv:0 + 0: 0 + 20.1: _ZN9oceanbase11transaction9tablelockL12request_lockEhhRl:80387 + 4: 769 + 11.1: 769 + 11.3: 2296 + 12: 2202 + 13: 691 + 15: 691 + 16: 0 + 19: 2296 + 22: 825 + 4: _ZN9oceanbase11transaction9tablelockL18is_lock_mode_validEh:3076 + 2: 769 +_ZZN9oceanbase3sql11ObResultSet19auto_end_plan_transERNS0_14ObPhysicalPlanEiRbENKUlPKcE_clES6_:417856:4925 + 0: 4852 + 0.1: 0 + 0.2: 4658 + 0.3: 4852 _ZN9oceanbase6common8ObLogger13need_to_printEmi:4868 + 0.14: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:82484 + 2: 4852 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKbLb0EEC2EPKcS3_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKbLb0EEC2EPKcS3_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVIRKbLb0EEC2EPKcS3_:0 + 0: 0 + 0.11: _ZNK9oceanbase3sql11ObResultSet28is_async_end_trans_submittedEv:0 + 3: 0 + 2: _ZNK9oceanbase3sql11ObResultSet16get_exec_contextEv:0 + 1: 0 + 1.2: 0 + 3: _ZNK9oceanbase3sql10TransState21is_end_trans_executedEv:0 + 1: 0 + 0.13: _ZN9oceanbase6common7ObLogKVIRKbLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase3lib11DynamicInfoC2Ev:417433:5482 + 1: 5473 + 2: 5638 + 3: 5638 + 1: _Z9ob_gettidv:246285 + 3: 5473 + 4: 0 + 2: _Z13get_tid_cachev:114933 + 7: 5473 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:5473 + 2: 5473 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:5525 +_ZN9oceanbase3sql5ObSql22generate_physical_planER11ParseResultPNS0_14ObPlanCacheCtxERNS0_8ObSqlCtxERNS0_11ObResultSetEbbPS2_:417100:514 + 7: 495 + 8: 495 + 9: 495 + 10: 495 + 17: 495 + 20.1: 527 + 21.1: 0 + 22.1: 535 _ZN9oceanbase3sql5ObSql13generate_stmtER11ParseResultPNS0_14ObPlanCacheCtxERNS0_8ObSqlCtxERNS_6common12ObIAllocatorERNS0_11ObResultSetERPNS0_6ObStmtEPS2_:539 + 22.2: 535 + 29.1: 0 + 30.1: 535 + 31: 0 + 32.1: 0 + 34.2: 0 + 35: 535 + 35.1: 0 + 35.2: 0 + 39.1: 0 + 40.1: 0 + 40.2: 556 _ZN9oceanbase3sql16ObPrivilegeCheck22check_password_expiredERKNS0_8ObSqlCtxENS0_4stmt8StmtTypeE:569 + 40.3: 550 + 42.1: 0 + 43.2: 550 + 43.4: 0 + 44: 0 + 44.1: 0 + 47.1: 0 + 48.1: 568 + 49: 0 + 50.1: 0 + 53: 605 + 54: 605 + 55: 612 + 58: 0 + 60: 0 + 60.2: 0 + 60.3: 0 + 61: 0 + 62.1: 0 + 63.2: 0 + 63.3: 0 + 63.4: 0 + 64: 0 + 65.1: 0 + 66.1: 0 + 66.2: 0 + 67.1: 0 + 68.1: 0 + 68.2: 0 + 70.1: 0 + 71.1: 0 + 71.2: 0 + 71.3: 0 + 71.4: 0 + 73.1: 0 + 74.1: 0 + 74.2: 0 + 76.1: 0 + 78: 0 + 81: 0 + 81.1: 0 + 83: 0 + 84: 0 + 84.1: 0 + 86.1: 0 + 86.2: 0 + 87: 0 + 91: 0 + 91.1: 0 + 93.1: 0 + 94: 0 + 96.1: 0 + 96.2: 0 + 97: 0 + 100: 0 + 101.2: 0 + 102: 0 + 103.1: 0 + 104: 0 + 105.1: 0 + 106.1: 0 + 106.2: 0 + 108.1: 0 + 109.1: 0 + 128: 0 + 129: 0 + 136.1: 0 + 136.2: 0 + 137.1: 0 + 137.3: 0 + 142: 0 + 143.1: 0 + 143.2: 0 + 146.1: 0 + 147.2: 0 + 149.1: 0 + 150: 0 + 151.1: 0 + 154: 0 + 155: 0 + 155.1: 0 + 159: 0 + 160: 0 + 160.1: 0 + 164: 0 + 165: 0 + 166: 0 + 168.1: 0 + 168.3: 0 + 169: 0 + 169.1: 0 + 173: 0 + 174.1: 0 + 174.2: 0 + 174.3: 0 + 174.4: 0 + 180.1: 0 + 181.1: 0 + 182.1: 0 + 182.2: 0 + 184.1: 0 + 185.1: 0 + 185.3: 0 + 185.4: 0 + 187.1: 0 + 188.1: 0 + 189: 0 + 190.1: 0 + 191.1: 0 + 191.2: 0 + 195.1: 0 + 199.1: 0 + 199.2: 0 + 200.1: 0 + 200.2: 0 + 201.1: 0 + 205: 0 + 206.1: 0 + 206.2: 0 + 207: 0 + 208.1: 0 + 209.2: 0 + 209.3: 0 + 210.2: 0 + 214.1: 0 + 216.1: 0 + 218.5: 0 + 218.9: 0 + 219: 0 + 219.1: 0 + 220: 0 + 220.1: 0 + 221.1: 0 + 224: 612 + 224.1: 612 __dynamic_cast:618 + 225: 515 + 226: 0 + 227.1: 0 + 230.1: 515 _ZN9oceanbase3sql18ObBasicSessionInfo14set_cur_sql_idEPc:531 + 231.1: 0 + 232: 515 + 232.1: 0 + 232.2: 0 + 233.1: 0 + 239: 498 _ZN9oceanbase6common16ObClusterVersion12get_instanceEv:498 + 239.3: 489 + 239.4: 499 + 240: 489 + 240.1: 489 + 241: 0 + 243: 0 + 243.2: 0 + 244: 0 + 244.1: 0 + 244.2: 0 + 246.1: 0 + 250: 0 + 254: 498 + 255.47: 501 + 11: _ZN9oceanbase3sql11ObResultSet12get_mem_poolEv:3465 + 0: 495 + 12: _ZN9oceanbase5share6schema15ObStmtNeedPrivsC2Ev:22770 + 0: _ZN9oceanbase6common12ObFixedArrayINS_5share6schema10ObNeedPrivENS0_12ObIAllocatorEEC2Ev:22770 + 0: 495 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS_5share6schema10ObNeedPrivENS0_12ObIAllocatorEEC2EPS5_l:13860 + 1: _ZN9oceanbase6common8ObIArrayINS_5share6schema10ObNeedPrivEEC2Ev:13860 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_5share6schema10ObNeedPrivEEC2Ev:13860 + 0: 495 + 13: _ZN9oceanbase5share6schema18ObStmtOraNeedPrivsC2Ev:18315 + 0: _ZN9oceanbase6common12ObFixedArrayINS_5share6schema13ObOraNeedPrivENS0_12ObIAllocatorEEC2Ev:18315 + 0: 495 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS_5share6schema13ObOraNeedPrivENS0_12ObIAllocatorEEC2EPS5_l:9405 + 1: _ZN9oceanbase6common8ObIArrayINS_5share6schema13ObOraNeedPrivEEC2Ev:9405 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_5share6schema13ObOraNeedPrivEEC2Ev:9405 + 0: 495 + 14: _ZN9oceanbase3sql11ObResultSet11get_sessionEv:3465 + 0: 495 + 14.1: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:6930 + 0: 495 + 15: _ZN9oceanbase6common16ObFixedArrayImplINS_5share6schema10ObNeedPrivENS0_12ObIAllocatorEE13set_allocatorEPS5_:3465 + 0: 495 + 16: _ZN9oceanbase6common16ObFixedArrayImplINS_5share6schema13ObOraNeedPrivENS0_12ObIAllocatorEE13set_allocatorEPS5_:1980 + 0: 495 + 20: _ZN9oceanbase3sql5ObSql12sanity_checkERNS0_8ObSqlCtxE:23457 + 2: 495 + 3: 495 + 4.1: 0 + 5.1: 495 + 5.2: 495 + 6: 495 + 6.1: 495 + 7: 0 + 8.1: 0 + 15: 527 + 40.1: _ZNK9oceanbase3sql6ObStmt13get_stmt_typeEv:3892 + 2: 556 + 43.1: _ZNK9oceanbase3sql15ObMultiStmtItem21is_batched_multi_stmtEv:21450 + 3: 550 + 54: _ZNK9oceanbase3sql6ObStmt11is_dml_stmtEv:16233 + 2: 605 + 2: _ZN9oceanbase3sql6ObStmt11is_dml_stmtENS0_4stmt8StmtTypeE:14418 + 3: 605 + 10.1: _ZN9oceanbase3sql6ObStmt12is_show_stmtENS0_4stmt8StmtTypeE:3594 + 2: 599 + 57: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:0 + 0: 0 + 57.1: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:0 + 2: 0 + 59: _ZN9oceanbase6common7ObArrayINS_3sql11ObAuditUnitENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEEC2Ev:0 + 0.1: 0 + 0.5: _ZN9oceanbase6common11ObArrayImplINS_3sql11ObAuditUnitENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEEC2ElRKS4_:0 + 3: 0 + 4: 0 + 7.1: 0 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 63.1: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:0 + 0: 0 + 71.2: _ZNK9oceanbase3sql6ObStmt13get_stmt_typeEv:0 + 2: 0 + 81: _ZNK9oceanbase3sql6ObStmt13get_query_ctxEv:0 + 0: 0 + 82: _ZNK9oceanbase3sql6ObStmt13get_query_ctxEv:0 + 0: 0 + 85: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:0 + 0: 0 + 93: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:0 + 0: 0 + 95: _ZNK9oceanbase3sql11ObResultSet14is_ps_protocolEv:0 + 0: 0 + 96: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:0 + 0: 0 + 97: _ZN9oceanbase3sql18ObOptimizerContext37set_aggregation_optimization_settingsEm:0 + 1: 0 + 98: _ZNK9oceanbase3sql11ObResultSet17get_field_columnsEv:0 + 2: 0 + 98.1: _ZN9oceanbase3sql17ObPhysicalPlanCtx15set_field_arrayEPKNS_6common8ObIArrayINS2_7ObFieldEEE:0 + 0: 0 + 99: _ZNK9oceanbase3sql11ObResultSet14is_ps_protocolEv:0 + 0: 0 + 99.1: _ZN9oceanbase3sql17ObPhysicalPlanCtx18set_is_ps_protocolEb:0 + 0: 0 + 101: _ZN9oceanbase3sql11ObResultSet11get_sessionEv:0 + 0: 0 + 101.1: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:0 + 0: 0 + 112: _ZN9oceanbase3sql18ObOptimizerContext20set_use_default_statEv:0 + 0: 0 + 114: _ZN9oceanbase3sql11ObOptimizerC2ERNS0_18ObOptimizerContextE:0 + 1: 0 + 2: 0 + 136: _ZN9oceanbase3sql11ObResultSet11get_sessionEv:0 + 0: 0 + 137: _ZN9oceanbase3sql11ObResultSet11get_sessionEv:0 + 0: 0 + 137.2: _ZNK9oceanbase3sql11ObPlanCache13get_tenant_idEv:0 + 0: 0 + 141: _ZN9oceanbase3sql15ObCacheObjGuard4initENS0_16CacheRefHandleIDE:0 + 2: 0 + 147.1: _ZNK9oceanbase3sql15ObCacheObjGuard13get_cache_objEv:0 + 2: 0 + 155: _ZNK9oceanbase3sql16ObSQLSessionInfo22get_early_lock_releaseEv:0 + 0: 0 + 165.1: _ZN9oceanbase3sql17ObPlanCacheObject18set_fetch_cur_timeEb:0 + 0: 0 + 166: _ZNK9oceanbase3sql6ObStmt13get_stmt_typeEv:0 + 2: 0 + 166.1: _ZN9oceanbase3sql17ObPlanCacheObject13set_stmt_typeENS0_4stmt8StmtTypeE:0 + 0: 0 + 167: _ZNK9oceanbase3sql6ObStmt13get_query_ctxEv:0 + 0: 0 + 167.1: _ZNK9oceanbase3sql10ObQueryCtx21get_literal_stmt_typeEv:0 + 0: 0 + 167.2: _ZN9oceanbase3sql14ObPhysicalPlan21set_literal_stmt_typeENS0_4stmt8StmtTypeE:0 + 0: 0 + 168: _ZNK9oceanbase3sql17ObPlanCacheObject18get_fetch_cur_timeEv:0 + 0: 0 + 168.2: _ZNK9oceanbase3sql17ObPhysicalPlanCtx12has_cur_timeEv:0 + 0: 0 + 174.2: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:0 + 0: 0 + 181.1: _ZN9oceanbase3sql18ObOptimizerContext13set_root_stmtEPNS0_9ObDMLStmtE:0 + 0: 0 + 185.1: _ZNK9oceanbase3sql6ObStmt13get_query_ctxEv:0 + 0: 0 + 185.2: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:0 + 0: 0 + 199: _ZN9oceanbase3sql11ObResultSet12get_mem_poolEv:0 + 0: 0 + 200: _ZN9oceanbase3sql11ObResultSet12get_mem_poolEv:0 + 0: 0 + 206.1: _ZNK9oceanbase3sql6ObStmt13get_query_ctxEv:0 + 0: 0 + 212: _ZNK9oceanbase3sql12ObSelectStmt13get_tenant_idEv:0 + 0: 0 + 212.1: _ZN9oceanbase3sql17ObPhysicalPlanCtx13set_tenant_idEm:0 + 0: 0 + 213: _ZNK9oceanbase3sql12ObSelectStmt13get_show_seedEv:0 + 0: 0 + 213.1: _ZN9oceanbase3sql17ObPhysicalPlanCtx13set_show_seedEb:0 + 0: 0 + 214: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:0 + 0: 0 + 214.1: _ZN9oceanbase3sql13ObExecContext17reference_my_planEPKNS0_14ObPhysicalPlanE:0 + 2: 0 + 3: 0 + 5: 0 + 6: 0 + 216: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:0 + 0: 0 + 216.1: _ZN9oceanbase3sql13ObExecContext17reference_my_planEPKNS0_14ObPhysicalPlanE:0 + 2: 0 + 3: 0 + 5: 0 + 6: 0 + 229: _ZN9oceanbase3sql11ObResultSet7set_cmdEPNS0_6ObICmdE:3605 + 2: 515 + 230: _ZN9oceanbase3sql11ObResultSet11get_sessionEv:3605 + 0: 515 + 239.1: _ZN9oceanbase6common16ObClusterVersion19get_cluster_versionEv:6846 + 0: 489 + 240.2: _ZNK9oceanbase3sql6ObStmt11is_dml_stmtEv:10379 + 2: 489 + 2: _ZN9oceanbase3sql6ObStmt11is_dml_stmtENS0_4stmt8StmtTypeE:8912 + 3: 499 + 243.1: _ZNK9oceanbase5share6schema19ObReferenceObjTable9is_initedEv:0 + 0: 0 + 255.47: _ZN9oceanbase5share6schema18ObStmtOraNeedPrivsD2Ev:41970 + 1: _ZN9oceanbase5share6schema18ObStmtOraNeedPrivs5resetEv:7470 + 1: _ZN9oceanbase6common16ObFixedArrayImplINS_5share6schema13ObOraNeedPrivENS0_12ObIAllocatorEE5resetEv:7470 + 0: 498 _ZN9oceanbase6common16ObFixedArrayImplINS_5share6schema13ObOraNeedPrivENS0_12ObIAllocatorEE7destroyEv:535 + 1.1: _ZN9oceanbase6common16ObFixedArrayImplINS_5share6schema13ObOraNeedPrivENS0_12ObIAllocatorEED2Ev:34500 + 0: 500 + 0.3: 0 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS_5share6schema13ObOraNeedPrivENS0_12ObIAllocatorEE7destroyEv:25500 + 2: 500 + 5: 500 + 6.1: 0 + 6.3: 0 + 9: 0 + 10: 0 + 12: 500 + 13: 500 + 15: 500 + 7: _ZN9oceanbase5share6schema13ObOraNeedPrivD2Ev:0 + 1: 0 + 255.49: _ZN9oceanbase5share6schema18ObStmtOraNeedPrivsD2Ev:0 + 1: _ZN9oceanbase5share6schema18ObStmtOraNeedPrivs5resetEv:0 + 1: _ZN9oceanbase6common16ObFixedArrayImplINS_5share6schema13ObOraNeedPrivENS0_12ObIAllocatorEE5resetEv:0 + 0: 0 + 1.1: _ZN9oceanbase6common16ObFixedArrayImplINS_5share6schema13ObOraNeedPrivENS0_12ObIAllocatorEED2Ev:0 + 0: 0 + 0.3: 0 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS_5share6schema13ObOraNeedPrivENS0_12ObIAllocatorEE7destroyEv:0 + 2: 0 + 5: 0 + 6.1: 0 + 6.3: 0 + 9: 0 + 10: 0 + 12: 0 + 13: 0 + 15: 0 + 7: _ZN9oceanbase5share6schema13ObOraNeedPrivD2Ev:0 + 1: 0 + 255.50: _ZN9oceanbase5share6schema15ObStmtNeedPrivsD2Ev:0 + 1: _ZN9oceanbase5share6schema15ObStmtNeedPrivs5resetEv:0 + 1: _ZN9oceanbase6common16ObFixedArrayImplINS_5share6schema10ObNeedPrivENS0_12ObIAllocatorEE5resetEv:0 + 0: 0 + 1.1: _ZN9oceanbase6common16ObFixedArrayImplINS_5share6schema10ObNeedPrivENS0_12ObIAllocatorEED2Ev:0 + 0: 0 + 0.3: 0 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS_5share6schema10ObNeedPrivENS0_12ObIAllocatorEE7destroyEv:0 + 2: 0 + 5: 0 + 9: 0 + 10: 0 + 12: 0 + 13: 0 + 15: 0 + 255.52: _ZN9oceanbase5share6schema15ObStmtNeedPrivsD2Ev:46578 + 1: _ZN9oceanbase5share6schema15ObStmtNeedPrivs5resetEv:7500 + 1: _ZN9oceanbase6common16ObFixedArrayImplINS_5share6schema10ObNeedPrivENS0_12ObIAllocatorEE5resetEv:7500 + 0: 500 _ZN9oceanbase6common16ObFixedArrayImplINS_5share6schema10ObNeedPrivENS0_12ObIAllocatorEE7destroyEv:524 + 1.1: _ZN9oceanbase6common16ObFixedArrayImplINS_5share6schema10ObNeedPrivENS0_12ObIAllocatorEED2Ev:39078 + 0: 501 + 0.3: 0 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS_5share6schema10ObNeedPrivENS0_12ObIAllocatorEE7destroyEv:30060 + 2: 501 + 5: 501 + 9: 0 + 10: 0 + 12: 501 + 13: 501 + 15: 501 +_ZN9oceanbase6common11ObTimeGuardD2Ev:416608:17003 + 1: 16360 + 2.1: 15813 + 2.2: 0 + 3.1: 0 + 3.5: 0 + 5.1: 15813 + 2: _ZNK9oceanbase6common11ObTimeGuard8get_diffEv:63799 + 2: 15813 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:16360 + 2: 16360 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:17149 +_ZN9oceanbase6common16ObFixedArrayImplIPNS0_9ObSEArrayIlLl4ENS0_19ModulePageAllocatorELb1EEENS0_12ObIAllocatorEED2Ev:415335:11695 + 0: 10865 + 0.1: 10785 + 0.3: 55 + 0: _ZN9oceanbase6common16ObFixedArrayImplIPNS0_9ObSEArrayIlLl4ENS0_19ModulePageAllocatorELb1EEENS0_12ObIAllocatorEE7destroyEv:89505 + 2: 10865 + 5: 55 + 9: 55 + 10: 55 + 12: 55 + 13: 55 + 15: 55 +_ZN9oceanbase7storage13ObMetaPointerINS0_8ObTabletEE17get_in_memory_objERNS0_14ObMetaObjGuardIS2_EE:414657:5479 + 1: 5400 + 2: 5400 + 3: 5400 _ZN9oceanbase7storage14ObTabletHandle5resetEv:5455 + 5: 5775 + 6: 0 + 7.1: 0 + 8.1: 5775 + 9: 0 + 10.1: 0 + 12: 5775 _ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE7set_objERNS0_9ObMetaObjIS2_EE:6002 + 14: 5686 + 5: _ZNK9oceanbase7storage14ObMetaDiskAddr7is_noneEv:46200 + 0: 5775 + 8.1: _ZNK9oceanbase7storage13ObMetaPointerINS0_8ObTabletEE12is_in_memoryEv:28875 + 2: 5775 +_ZN9oceanbase7storage19ObMultipleScanMergeD2Ev:414482:1045 + 1: 998 + 2: 1075 + 2.1: _ZN9oceanbase7storage15ObMultipleMergeD2Ev:381391 + 1: 998 + 2.2: 1002 + 2.5: 909 + 3.1: 1001 + 4.1: 1001 _ZN9oceanbase7storage30ObSSTableMultiVersionRowGetterD2Ev:1037 _ZN9oceanbase8memtable22ObMemtableScanIteratorD1Ev:1015 + 7: 988 + 8: 0 + 9: 0 + 10: 0 + 12: 0 + 14: 988 + 15: 0 + 16: 0 + 17: 0 + 19: 0 + 21.2: 1046 _ZN9oceanbase7storage15ObLobDataReaderD1Ev:1003 + 21.3: 0 + 21.4: 0 + 21.5: 1077 _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema9ObColDescELl32ENS0_19ModulePageAllocatorELb0EED2Ev:1105 + 21.9: 1046 _ZN9oceanbase12blocksstable10ObDatumRowD1Ev:1159 + 21.10: 953 _ZN9oceanbase12blocksstable10ObDatumRowD1Ev:1052 + 21.11: 1033 _ZN9oceanbase12blocksstable10ObDatumRowD1Ev:1149 + 21.12: 1075 _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl8ENS0_19ModulePageAllocatorELb0EED2Ev:1153 + 21.13: 1088 _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage18ObStoreRowIteratorELl8ENS0_19ModulePageAllocatorELb0EED2Ev:1098 + 21.16: 0 + 21.17: 0 + 21.18: 0 + 21.20: 0 + 21.21: 0 + 21.22: 0 + 21.23: 0 + 21.24: 0 + 21.25: 0 + 2.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_7storage18ObStoreRowIteratorEE5countEv:20363 + 0: 1002 + 3: _ZN9oceanbase6common12ObIArrayWrapIPNS_7storage18ObStoreRowIteratorEE2atEl:13937 + 6: 1001 + 21.6: _ZN9oceanbase7storage15ObGetTableParamD2Ev:90303 + 0.2: 0 + 0.3: 0 + 0: _ZN9oceanbase7storage15ObGetTableParam5resetEv:73751 + 2: 1042 + 3: _ZN9oceanbase6common10SampleInfo5resetEv:39596 + 3: 1042 + 5: 1042 + 6: 1042 + 4: _ZN9oceanbase7storage21ObTabletTableIterator5resetEv:22693 + 2: 1042 _ZN9oceanbase7storage14ObTabletHandle5resetEv:1087 + 3: 1021 _ZN9oceanbase7storage20ObTableStoreIterator5resetEv:1049 + 0.1: _ZN9oceanbase7storage21ObTabletTableIteratorD2Ev:16552 + 0.1: 1022 _ZN9oceanbase7storage20ObTableStoreIteratorD1Ev:1053 + 0.2: 0 + 0.3: 0 + 0.4: 978 _ZN9oceanbase7storage14ObTabletHandleD1Ev:1015 + 0.5: 0 + 0: _ZN9oceanbase7storage21ObTabletTableIterator5resetEv:8552 + 2: 1051 _ZN9oceanbase7storage14ObTabletHandle5resetEv:1076 + 3: 1087 _ZN9oceanbase7storage20ObTableStoreIterator5resetEv:1121 + 21.7: _ZN9oceanbase7storage8ObNopPosD2Ev:989 + 2: 989 _ZN9oceanbase7storage8ObNopPos7destroyEv:1026 + 2.1: 0 + 21.14: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:91375 + 0: 1075 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEED2Ev:75250 + 0: 1075 + 0.3: 0 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:59125 + 4.1: 1075 + 6: 0 + 7: 0 + 13: 1075 + 14: 1075 + 15: 1075 + 18: 1075 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:0 + 0: 0 + 5.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:0 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase7storage19ObMultipleScanMergeD1Ev:414482:1045 + 1: 998 + 2: 1075 + 2.1: _ZN9oceanbase7storage15ObMultipleMergeD2Ev:381391 + 1: 998 + 2.2: 1002 + 2.5: 909 + 3.1: 1001 + 4.1: 1001 _ZN9oceanbase7storage30ObSSTableMultiVersionRowGetterD2Ev:1037 _ZN9oceanbase8memtable22ObMemtableScanIteratorD1Ev:1015 + 7: 988 + 8: 0 + 9: 0 + 10: 0 + 12: 0 + 14: 988 + 15: 0 + 16: 0 + 17: 0 + 19: 0 + 21.2: 1046 _ZN9oceanbase7storage15ObLobDataReaderD1Ev:1003 + 21.3: 0 + 21.4: 0 + 21.5: 1077 _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema9ObColDescELl32ENS0_19ModulePageAllocatorELb0EED2Ev:1105 + 21.9: 1046 _ZN9oceanbase12blocksstable10ObDatumRowD1Ev:1159 + 21.10: 953 _ZN9oceanbase12blocksstable10ObDatumRowD1Ev:1052 + 21.11: 1033 _ZN9oceanbase12blocksstable10ObDatumRowD1Ev:1149 + 21.12: 1075 _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl8ENS0_19ModulePageAllocatorELb0EED2Ev:1153 + 21.13: 1088 _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage18ObStoreRowIteratorELl8ENS0_19ModulePageAllocatorELb0EED2Ev:1098 + 21.16: 0 + 21.17: 0 + 21.18: 0 + 21.20: 0 + 21.21: 0 + 21.22: 0 + 21.23: 0 + 21.24: 0 + 21.25: 0 + 2.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_7storage18ObStoreRowIteratorEE5countEv:20363 + 0: 1002 + 3: _ZN9oceanbase6common12ObIArrayWrapIPNS_7storage18ObStoreRowIteratorEE2atEl:13937 + 6: 1001 + 21.6: _ZN9oceanbase7storage15ObGetTableParamD2Ev:90303 + 0.2: 0 + 0.3: 0 + 0: _ZN9oceanbase7storage15ObGetTableParam5resetEv:73751 + 2: 1042 + 3: _ZN9oceanbase6common10SampleInfo5resetEv:39596 + 3: 1042 + 5: 1042 + 6: 1042 + 4: _ZN9oceanbase7storage21ObTabletTableIterator5resetEv:22693 + 2: 1042 _ZN9oceanbase7storage14ObTabletHandle5resetEv:1087 + 3: 1021 _ZN9oceanbase7storage20ObTableStoreIterator5resetEv:1049 + 0.1: _ZN9oceanbase7storage21ObTabletTableIteratorD2Ev:16552 + 0.1: 1022 _ZN9oceanbase7storage20ObTableStoreIteratorD1Ev:1053 + 0.2: 0 + 0.3: 0 + 0.4: 978 _ZN9oceanbase7storage14ObTabletHandleD1Ev:1015 + 0.5: 0 + 0: _ZN9oceanbase7storage21ObTabletTableIterator5resetEv:8552 + 2: 1051 _ZN9oceanbase7storage14ObTabletHandle5resetEv:1076 + 3: 1087 _ZN9oceanbase7storage20ObTableStoreIterator5resetEv:1121 + 21.7: _ZN9oceanbase7storage8ObNopPosD2Ev:989 + 2: 989 _ZN9oceanbase7storage8ObNopPos7destroyEv:1026 + 2.1: 0 + 21.14: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:91375 + 0: 1075 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEED2Ev:75250 + 0: 1075 + 0.3: 0 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:59125 + 4.1: 1075 + 6: 0 + 7: 0 + 13: 1075 + 14: 1075 + 15: 1075 + 18: 1075 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:0 + 0: 0 + 5.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:0 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase5share15ObSysVarFactory22calc_sys_var_store_idxENS0_17ObSysVarClassTypeERl:414355:5491 + 1: 5245 + 2: 5245 + 3: 5245 + 4: 5245 + 8.1: 5245 + 9: 0 + 10.1: 0 + 13: 5245 + 14: 5245 + 15: 0 + 16.1: 0 + 22: 5245 + 24: 5245 + 26: 5245 + 13: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:57695 + 0: 5245 +_ZN9oceanbase6common13ObSEArrayImplINS_3sql16ObCandiTabletLocELl2ENS0_19ModulePageAllocatorELb1EE5resetEv:413952:4404 + 0: 4312 + 0: _ZN9oceanbase6common13ObSEArrayImplINS_3sql16ObCandiTabletLocELl2ENS0_19ModulePageAllocatorELb1EE7destroyEv:224224 + 4.1: 4312 + 4.3: 0 + 5: 0 + 9: 4312 + 10: 0 + 11: 0 + 13: 4312 + 15: 4312 + 24: 4312 +_ZN9oceanbase3sql11ObResultSet15drive_dml_queryEv:413340:4878 + 1: 4509 + 4: 4509 + 5.1: 4509 + 6: 4509 + 11.1: 0 + 12: 1025 + 13: 0 + 16.1: 0 + 18.1: 1 + 18.2: 1 + 22: 1 + 27: 1 + 29: 1 + 33.1: 1 + 36.1: 1 + 37: 1 + 39: 1 + 43.1: 1 + 47: 4492 + 5: _ZN9oceanbase3sql11ObResultSet17get_physical_planEv:18036 + 2: _ZNK9oceanbase3sql15ObCacheObjGuard13get_cache_objEv:18036 + 2: 4509 + 5.2: _ZNK9oceanbase3sql14ObPhysicalPlan12is_returningEv:31563 + 0: 4509 + 6.3: _ZNK9oceanbase3sql14ObPhysicalPlan23is_local_or_remote_planEv:63126 + 0: 4509 + 0: _ZNK9oceanbase3sql14ObPhysicalPlan13is_local_planEv:27054 + 0: 4509 + 13: _ZN9oceanbase3sql11ObResultSet18inner_get_next_rowERPKNS_6common8ObNewRowE:56304 + 2: 1025 + 6: 1025 + 7: 1 + 8.1: 1 + 9.1: 1036 + 9.2: 1011 _ZN9oceanbase3sql15ObExecuteResult12get_next_rowERNS0_13ObExecContextERPKNS_6common8ObNewRowE:1039 + 11.1: 0 + 16: 0 + 35: 0 + 9.1: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:11275 + 0: 1025 + 0.2: 0 + 13: _ZN9oceanbase3sql14ObPhysicalPlan21set_is_last_exec_succEb:0 + 0: 0 + 18.3: _ZNK9oceanbase3sql14ObPhysicalPlan9is_use_pxEv:7 + 0: 1 + 21.1: _ZNK9oceanbase3sql17ObPlanCacheObject13get_stmt_typeEv:6 + 0: 1 + 29: _ZN9oceanbase3sql11ObResultSet18inner_get_next_rowERPKNS_6common8ObNewRowE:73 + 2: 1 + 6: 1 + 7: 0 + 8.1: 0 + 9.1: 1 + 9.2: 1 + 11.1: 0 + 16: 1 + 35: 1 + 9.1: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:19 + 0: 1 + 0.2: 1 + 13: _ZN9oceanbase3sql14ObPhysicalPlan21set_is_last_exec_succEb:0 + 0: 0 + 36.2: _ZN9oceanbase3sql14ObPhysicalPlan11is_use_pdmlEv:10 + 0: 1 + 39: _ZN9oceanbase3sql11ObResultSet18inner_get_next_rowERPKNS_6common8ObNewRowE:73 + 2: 1 + 6: 1 + 7: 0 + 8.1: 0 + 9.1: 1 + 9.2: 1 + 11.1: 0 + 16: 1 + 35: 1 + 9.1: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:19 + 0: 1 + 0.2: 1 + 13: _ZN9oceanbase3sql14ObPhysicalPlan21set_is_last_exec_succEb:0 + 0: 0 +_ZZN9oceanbase3sql11ObResultSet19auto_end_plan_transERNS0_14ObPhysicalPlanEiRbENKUlPKcE3_clES6_:412976:5094 + 0: 4838 + 0.1: 0 + 0.2: 4838 + 0.3: 4716 _ZN9oceanbase6common8ObLogger13need_to_printEmi:4891 + 0.18: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:80172 + 2: 4716 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKbLb0EEC2EPKcS3_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKbLb0EEC2EPKcS3_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVIRKbLb0EEC2EPKcS3_:0 + 0: 0 + 0.12: _ZN9oceanbase6common7ObLogKVIRKbLb0EEC2EPKcS3_:0 + 0: 0 + 0.14: _ZN9oceanbase6common7ObLogKVIRKbLb0EEC2EPKcS3_:0 + 0: 0 + 0.15: _ZNK9oceanbase3sql11ObResultSet28is_async_end_trans_submittedEv:0 + 3: 0 + 2: _ZNK9oceanbase3sql11ObResultSet16get_exec_contextEv:0 + 1: 0 + 1.2: 0 + 3: _ZNK9oceanbase3sql10TransState21is_end_trans_executedEv:0 + 1: 0 + 0.17: _ZN9oceanbase6common7ObLogKVIRKbLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase3sql16ObSQLSessionInfo21set_show_warnings_bufEi:412524:5295 + 1: 4911 + 6: 4911 + 6.1: 0 + 7.1: 0 + 12: 4911 _ZN9oceanbase6common15ObWarningBufferaSERKS1_:5325 + 7: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 7.2: _ZN9oceanbase6common15ObWarningBuffer9set_errorEPKci:0 + 0: _ZN9oceanbase6common15ObWarningBuffer11WarningItem3setEPKc:0 + 0: 0 + 0.1: _ZN9oceanbase6common15ObWarningBuffer11WarningItem8set_codeEi:0 + 0: 0 + 8: _ZN9oceanbase6common15ObWarningBuffer13reset_warningEv:0 + 2: 0 + 10: _ZN9oceanbase6common15ObWarningBuffer9reset_errEv:191529 + 0: _ZN9oceanbase6common15ObWarningBuffer11WarningItem5resetEv:191529 + 2: 4911 + 3: 4911 + 5: 4911 + 8: 4911 +_ZN9oceanbase6common13ObSEArrayImplINS_3sql16ObCandiTabletLocELl2ENS0_19ModulePageAllocatorELb1EE16prepare_allocateEl:412018:4505 + 2: 4338 + 4: 4338 + 5: 9 + 7: 9 + 8: 4338 + 9: 4338 + 10: 4410 + 13: 4410 + 9: _ZN9oceanbase6common9ObClassOpINS_3sql16ObCandiTabletLocELb0EE23array_default_constructEPS3_l:44098 + 2: 0 + 2.1: 4451 + 3: 4455 _ZN9oceanbase3sql16ObCandiTabletLocC1Ev:4465 +_ZN9oceanbase12blocksstable14ObFuseRowCache7get_rowERKNS0_17ObFuseRowCacheKeyERNS0_20ObFuseRowValueHandleE:411068:3688 + 1: 3430 + 2: 3430 + 3: 3430 + 4: 3430 + 5: 15 + 6.1: 15 + 7.1: 3430 _ZN9oceanbase6common9ObKVCacheINS_12blocksstable17ObFuseRowCacheKeyENS2_19ObFuseRowCacheValueEE3getERKS3_RPKS4_RNS0_15ObKVCacheHandleE:3440 + 9.1: 14 + 11.1: 97 + 11.2: 14 + 11.3: 14 + 11.4: 14 + 11.6: 14 + 11.7: 14 + 13: 3265 + 14: 14 + 15.1: 14 + 17: 3265 + 20: 3348 + 4: _ZNK9oceanbase12blocksstable17ObFuseRowCacheKey8is_validEv:157780 + 2: 3430 + 2.1: 3430 + 2.2: 3430 + 2.3: 3430 + 2.4: 3430 + 2.5: 3430 + 2.1: _ZNK9oceanbase6common10ObTabletID8is_validEv:17150 + 0: 3430 + 2.3: _ZNK9oceanbase12blocksstable13ObDatumRowkey8is_validEv:37730 + 0: 3430 + 0.1: 3430 + 11.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:546 + 2: 98 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:84 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:388 + 2: 97 +_ZN9oceanbase11transaction12ObTxSnapshotaSERKS1_:410700:11383 + 1: 11100 + 2: 11100 + 4: 11100 + 5: 11100 + 6: 11100 + 3: _ZN9oceanbase11transaction9ObTransIDaSERKS1_:88800 + 1: 11100 +_ZN9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EED2Ev:405750:5725 + 1: 5410 + 3: 5410 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EE7destroyEv:248860 + 4.1: 5410 + 4.3: 0 + 9: 5410 + 10: 0 + 11: 0 + 13: 5410 + 15: 5410 + 24: 5410 + 5: _ZN9oceanbase5share6ObLSIDD2Ev:0 + 0: _ZN9oceanbase5share6ObLSID5resetEv:0 + 0: 0 +_ZN9oceanbase6common20get_mem_leak_checkerEv:405560:12523 + 1: 12232 + 2: 12232 + 2: _ZN9oceanbase6common16ObMemLeakChecker12get_instanceEv:185384 + 2: 12232 + 2.1: 16 + 2.3: 16 + 2.4: 16 + 2.6: 16 + 38: 12232 + 2.2: _ZN9oceanbase6common16ObMemLeakCheckerC2Ev:704 + 0: 16 + 2: 16 + 3: 16 + 4: 16 + 5: 16 + 6: 16 + 7: 16 +_ZZN9oceanbase11transaction14ObTransService16revert_store_ctxERNS_7storage10ObStoreCtxEENK6$_1018clEPKc.93feb755617c21c32b229b78773c290c:403944:5388 + 0: 5362 + 0.1: 0 + 0.2: 5362 + 0.3: 5045 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:5292 + 0.7: 0 + 0.10: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:85765 + 2: 5045 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS_11transaction14ObTransServiceELb0EEC2EPKcS5_:0 + 0: 0 + 0.9: _ZN9oceanbase6common7ObLogKVIRKPcLb0EEC2EPKcS4_:0 + 0: 0 +_ZN9oceanbase6common9ObCharset20charset_type_by_collENS0_15ObCollationTypeE:402471:10786 + 1: 10321 + 3: 10321 + 48: 9324 +_ZN9oceanbase11transaction14ObTransService25create_implicit_savepointERNS0_8ObTxDescERKNS0_9ObTxParamERlb:401947:1025 + 4: 969 + 5: 969 + 6: 969 + 7.1: 1015 + 8.1: 993 + 9: 0 + 10.1: 0 + 11.1: 993 + 12: 0 + 16: 0 + 17.2: 993 + 17.3: 0 + 6: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEEC2ERS3_:31811 + 1: 969 + 4: 1042 + 5.1: 0 + 4: _ZN9oceanbase6common10ObSpinLock4lockEv:16473 + 2: 969 _ZN9oceanbase6common12ObLatchMutex4lockEjl:981 + 7: _ZN9oceanbase11transaction14ObTransService16tx_sanity_check_ERKNS0_8ObTxDescE:101846 + 2: 1042 + 3: 1042 + 4: 0 + 4.1: 0 + 5: 0 + 6.1: 1042 + 7: 0 + 8.1: 0 + 10: 1042 + 17: 0 + 20: 0 + 23: 0 + 27: 0 + 30: 0 + 33: 1015 + 34.1: 0 + 35: 0 + 37: 0 + 3: _ZN9oceanbase6common16ObClockGenerator8getClockEv:21882 + 4: 1042 + 5.1: 0 + 8: 1042 + 6: _ZN9oceanbase6common16ObClockGenerator6get_usEv:0 + 2: 0 + 14: _ZN9oceanbase11transaction14ObTransService33create_global_implicit_savepoint_ERNS0_8ObTxDescERKNS0_9ObTxParamERlb:138529 + 0: 0 + 2: 0 + 5: 993 + 6: 993 + 7: 1 _ZN9oceanbase6common16ObClusterVersion12get_instanceEv:1 + 8: 1 + 9: 1 + 10: 1 + 11: 1 + 12: 0 + 13: 0 + 17: 993 + 20: 993 + 21: 993 + 21.1: 1 + 22: 1 _ZNK9oceanbase11transaction8ObTxDesc22has_implicit_savepointEv:1 + 23: 0 + 24.1: 0 + 25.1: 1 _ZN9oceanbase11transaction11ObTxDescMgr3addERNS0_8ObTxDescE:1 + 26.1: 0 + 29: 1002 + 30: 1002 + 31: 1002 _ZN9oceanbase11transaction8ObTxDesc30release_all_implicit_savepointEv:1016 + 33: 1031 _ZN9oceanbase11transaction8ObTxDesc22add_implicit_savepointEl:1035 + 36.3: 1089 + 36.4: 0 + 36.6: 0 + 36.7: 0 + 36.8: 0 + 36.22: 0 + 42.1: 1064 _ZZN9oceanbase11transaction14ObTransService33create_global_implicit_savepoint_ERNS0_8ObTxDescERKNS0_9ObTxParamERlbENK6$_1310clEPKc.93feb755617c21c32b229b78773c290c:1121 + 43: 1038 + 7.1: _ZN9oceanbase6common16ObClusterVersion19get_cluster_versionEv:4 + 0: 1 + 19: _ZN9oceanbase11transaction8ObTxDesc9inc_op_snEv:7944 + 0: 993 + 20: _ZN9oceanbase6common10ObSequence22inc_and_get_max_seq_noEv:20853 + 2: 993 + 21.1: _ZNK9oceanbase11transaction9ObTransID8is_validEv:8 + 0: 1 + 36.3: _ZN9oceanbase3lib20is_trace_log_enabledEv:8643 + 2: 1020 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:1025 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:7623 + 2: 1089 + 36.9: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EE12check_unlockEv:0 + 2: 0 + 3: _ZN9oceanbase3lib7ObMutex6unlockEv:0 + 0: 0 + 36.16: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EE10check_lockEv:0 + 2: 0 + 3: _ZN9oceanbase3lib7ObMutex4lockEv:0 + 0: 0 + 36.17: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EE14get_buffer_posEv:0 + 0: 0 + 36.18: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EE10get_bufferEv:0 + 0: 0 + 36.20: _ZNK9oceanbase11transaction15ObTransHashLinkINS0_8ObTxDescEE7get_refEv:0 + 0: 0 + 36.21: _Z9ob_gettidv:0 + 3: 0 + 4: 0 + 2: _Z13get_tid_cachev:0 + 7: 0 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 + 17.2: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEED2Ev:22341 + 2: 1038 + 3: 1038 + 3.1: 993 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase6common10ObSpinLock6unlockEv:1038 + 2: 1038 _ZN9oceanbase6common12ObLatchMutex6unlockEv:1055 +_ZN9oceanbase3sql3dtl10ObDtlChSetD2Ev:401923:5311 + 0: 4912 + 0: _ZN9oceanbase6common13ObSEArrayImplINS_3sql3dtl16ObDtlChannelInfoELl12ENS0_19ModulePageAllocatorELb0EED2Ev:289241 + 1: 4891 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_3sql3dtl16ObDtlChannelInfoELl12ENS0_19ModulePageAllocatorELb0EE7destroyEv:215876 + 9: 4891 + 11: 0 + 13: 4912 + 15: 4912 + 24: 4912 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_3sql3dtl16ObDtlChannelInfoELl12ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase6common16ObWaitEventGuardC2Elmlllb:401173:5591 + 8: 5166 + 11: 5166 + 12: 5166 + 13: 5095 + 14: 0 + 15: 0 + 16: 0 + 17: 0 + 18: 0 + 20: 0 + 21: 0 + 24: 5095 + 26: 5095 + 13: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:25546 + 2: 5166 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:5291 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:20380 + 2: 5095 +_ZN9oceanbase6common16ObWaitEventGuardC1Elmlllb:401173:5591 + 8: 5166 + 11: 5166 + 12: 5166 + 13: 5095 + 14: 0 + 15: 0 + 16: 0 + 17: 0 + 18: 0 + 20: 0 + 21: 0 + 24: 5095 + 26: 5095 + 13: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:25546 + 2: 5166 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:5291 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:20380 + 2: 5095 +_ZN9oceanbase8memtable9ObRowData9serializeEPclRl:399344:2132 + 1: 2042 + 3: 2042 + 5.1: 0 + 6.1: 2091 + 8: 2124 + 10: 2124 + 4: _ZN9oceanbase6common13serialization11encode_vi32EPclRli:140354 + 3: 2042 + 3.1: 2086 + 4: 2086 + 6: 0 + 6.1: 2086 + 7: 331 + 8: 331 + 11: 2091 + 4: _ZN9oceanbase6common13serialization19encoded_length_vi32Ei:20526 + 4: 2042 + 6.1: 328 + 8.1: 0 + 10.1: 0 + 6.1: _ZN9oceanbase8memtableL14serialize_dataEPclRlPKcl:103171 + 4.1: 2091 + 4.3: 2082 + 6.1: 0 + 7.1: 2082 + 9.1: 1037 + 12: 1037 + 13: 1079 +_ZN9oceanbase5share6schema19ObSchemaGetterGuardC2ENS1_15ObSchemaMgrItem3ModE:399194:1031 + 1: 1003 + 7: 1003 + 9: 1003 + 12: 1003 + 13: 1003 + 1.1: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:115345 + 4: 1003 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:100300 + 2: 1003 + 3: 1003 + 4: 1003 + 5: 1003 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:38114 + 0: 1003 + 5.2: _ZN9oceanbase6common9ObSEArrayINS_5share6schema15ObSchemaMgrInfoELl2ENS0_19ModulePageAllocatorELb0EECI2NS0_13ObSEArrayImplIS4_Ll2ES5_Lb0EEEElRKS5_:134402 + 0: 1003 + 0: _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema15ObSchemaMgrInfoELl2ENS0_19ModulePageAllocatorELb0EEC2ElRKS5_:116348 + 2: 1003 + 5: 1003 + 6: 1003 + 8: 1003 + 17.1: 1003 + 2: _ZN9oceanbase6common8ObIArrayINS_5share6schema15ObSchemaMgrInfoEEC2EPS4_l:20060 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_5share6schema15ObSchemaMgrInfoEEC2EPS4_l:20060 + 0: 1003 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:35105 + 0: 1003 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:21063 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:21063 + 2: 1003 + 8: 1003 + 6.2: _ZN9oceanbase6common9ObSEArrayINS_5share6schema19ObSchemaGetterGuard9SchemaObjELl2ENS0_19ModulePageAllocatorELb0EECI2NS0_13ObSEArrayImplIS5_Ll2ES6_Lb0EEEElRKS6_:107321 + 0: 1003 + 0: _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema19ObSchemaGetterGuard9SchemaObjELl2ENS0_19ModulePageAllocatorELb0EEC2ElRKS6_:89267 + 2: 1003 + 5: 1003 + 6: 1003 + 8: 1003 + 17.1: 1003 + 2: _ZN9oceanbase6common8ObIArrayINS_5share6schema19ObSchemaGetterGuard9SchemaObjEEC2EPS5_l:14042 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_5share6schema19ObSchemaGetterGuard9SchemaObjEEC2EPS5_l:14042 + 0: 1003 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:28084 + 0: 1003 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:14042 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:14042 + 2: 1003 + 8: 1003 +_ZN9oceanbase5share6schema19ObSchemaGetterGuardC1ENS1_15ObSchemaMgrItem3ModE:399194:1031 + 1: 1003 + 7: 1003 + 9: 1003 + 12: 1003 + 13: 1003 + 1.1: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:115345 + 4: 1003 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:100300 + 2: 1003 + 3: 1003 + 4: 1003 + 5: 1003 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:38114 + 0: 1003 + 5.2: _ZN9oceanbase6common9ObSEArrayINS_5share6schema15ObSchemaMgrInfoELl2ENS0_19ModulePageAllocatorELb0EECI2NS0_13ObSEArrayImplIS4_Ll2ES5_Lb0EEEElRKS5_:134402 + 0: 1003 + 0: _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema15ObSchemaMgrInfoELl2ENS0_19ModulePageAllocatorELb0EEC2ElRKS5_:116348 + 2: 1003 + 5: 1003 + 6: 1003 + 8: 1003 + 17.1: 1003 + 2: _ZN9oceanbase6common8ObIArrayINS_5share6schema15ObSchemaMgrInfoEEC2EPS4_l:20060 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_5share6schema15ObSchemaMgrInfoEEC2EPS4_l:20060 + 0: 1003 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:35105 + 0: 1003 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:21063 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:21063 + 2: 1003 + 8: 1003 + 6.2: _ZN9oceanbase6common9ObSEArrayINS_5share6schema19ObSchemaGetterGuard9SchemaObjELl2ENS0_19ModulePageAllocatorELb0EECI2NS0_13ObSEArrayImplIS5_Ll2ES6_Lb0EEEElRKS6_:107321 + 0: 1003 + 0: _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema19ObSchemaGetterGuard9SchemaObjELl2ENS0_19ModulePageAllocatorELb0EEC2ElRKS6_:89267 + 2: 1003 + 5: 1003 + 6: 1003 + 8: 1003 + 17.1: 1003 + 2: _ZN9oceanbase6common8ObIArrayINS_5share6schema19ObSchemaGetterGuard9SchemaObjEEC2EPS5_l:14042 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_5share6schema19ObSchemaGetterGuard9SchemaObjEEC2EPS5_l:14042 + 0: 1003 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:28084 + 0: 1003 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:14042 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:14042 + 2: 1003 + 8: 1003 +_ZN9oceanbase6common13ObSEArrayImplINS_7obmysql10ObCommonKVINS0_5ObObjES4_EELl4ENS0_19ModulePageAllocatorELb0EED2Ev:399092:5173 + 1: 4865 + 3: 4865 + 3.2: 2 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_7obmysql10ObCommonKVINS0_5ObObjES4_EELl4ENS0_19ModulePageAllocatorELb0EE7destroyEv:219071 + 9: 4865 + 11: 2 + 13: 4865 + 15: 4865 + 24: 4865 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_7obmysql10ObCommonKVINS0_5ObObjES4_EELl4ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:134 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:134 + 0: 2 + 0.2: 2 + 0.1: _ZN9oceanbase6common7ob_freeEPv:88 + 2: 2 + 3: 2 + 4: 2 + 5: 2 + 4: _ZL12abort_unlessb:18 + 5: 2 + 6: 2 +_ZN9oceanbase6common20ObGMemstoreAllocator5allocERNS1_11AllocHandleEl:398387:1481 + 1: 1452 + 2: 1452 + 3: 1452 _ZN9oceanbase6common11upper_alignEll:1543 + 4: 1444 + 5: 1444 + 6: 1444 + 7.1: 11 + 9.1: 11 + 13: 11 + 13.1: 11 + 14.1: 1365 + 14.3: 1444 _ZN9oceanbase5share19ObTenantSwitchGuard9switch_toEmb:1507 + 14.4: 1493 + 14.6: 1365 + 14.7: 11 + 16: 1493 + 16.1: 1493 + 18: 0 + 19.1: 0 + 21.1: 1471 _ZN9oceanbase7storage15ObTenantFreezer34check_tenant_out_of_memstore_limitERb:1545 + 21.2: 1365 + 22.1: 11 + 25: 1452 + 26: 11 + 28: 1452 + 28.1: 11 + 28.2: 11 + 28.4: 11 + 28.5: 11 + 29.1: 11 + 31: 11 + 31.2: 1451 _ZN9oceanbase6common11ObFifoArena5allocElRNS1_6HandleEl:1504 + 31.3: 1430 + 4: _ZNK9oceanbase6common11ObFifoArena13get_tenant_idEv:10108 + 0: 1444 + 6: _ZNK9oceanbase6common12ObHandleList6Handle11is_id_validEv:10108 + 0: 1444 + 0: _ZNK9oceanbase6common12ObHandleList6Handle6get_idEv:5776 + 0: 1444 + 8: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEEC2ERS3_:649 + 1: 11 + 4: 11 + 5.1: 11 + 4: _ZN9oceanbase6common10ObSpinLock4lockEv:264 + 2: 11 + 9: _ZNK9oceanbase6common12ObHandleList6Handle11is_id_validEv:77 + 0: 11 + 0: _ZNK9oceanbase6common12ObHandleList6Handle6get_idEv:44 + 0: 11 + 10: _ZNK9oceanbase6common11ObFifoArena7retiredEv:77 + 0: 11 + 10.1: _ZN9oceanbase6common12ObHandleList6Handle9set_clockEl:44 + 0: 11 + 11: _ZN9oceanbase6common12ObHandleList10set_activeERNS1_6HandleE:1210 + 2: 11 + 3: 11 + 4: 11 + 2: _ZN9oceanbase6common12ObHandleList6Handle10set_activeEv:264 + 1: 11 + 2: 11 + 4: _ZNK9oceanbase6common12ObHandleList6Handle9is_activeEv:77 + 0: 11 + 3: _ZN9oceanbase6common12ObHandleList5DList3addINS1_6HandleEEEvPNS0_7ObDLinkERT_:605 + 1: 11 + 3.1: 11 + 4: 11 + 4: _ZN9oceanbase6common12ObHandleList6Handle2geEPNS0_7ObDLinkE:88 + 2: 11 + 9: _ZN9oceanbase6common12ObHandleList5DList12dlink_insertEPNS0_7ObDLinkES4_:165 + 3: 11 + 4: 11 + 5: 11 + 6: 11 + 6: _ZN9oceanbase6common12ObHandleList8alloc_idEv:88 + 0: 11 + 6.1: _ZN9oceanbase6common12ObHandleList6Handle6set_idEl:44 + 0: 11 + 14: _ZN9oceanbase5share25_make_tenant_switch_guardEv:94762 + 2: 1444 + 2.1: 11 + 2.3: 11 + 2.6: 11 + 2.2: _ZN9oceanbase5share19ObTenantSwitchGuardC2Ev:253 + 0.5: 11 + 0.4: _ZNSt8functionIFiRN9oceanbase6common10ObLDHandleEEEC2Ev:165 + 1: _ZNSt14_Function_baseC2Ev:165 + 0: 11 + 3: _ZN9oceanbase5share19ObTenantSwitchGuardC2ERKS1_:69312 + 0.1: _ZNSt8functionIFiRN9oceanbase6common10ObLDHandleEEEC2Ev:11552 + 1: _ZNSt14_Function_baseC2Ev:11552 + 0: 1444 + 2: _ZN9oceanbase5share19ObTenantSwitchGuard5resetEv:57760 + 2: 1444 + 3: 1444 + 4: 1444 + 14.2: _ZN9oceanbase5share19ObTenantSwitchGuardD2Ev:9021 + 2: 1365 _ZN9oceanbase5share19ObTenantSwitchGuard7releaseEv:1422 + 3: 1481 _ZNSt14_Function_baseD2Ev:1531 + 3.1: 11 + 3.2: 11 + 16: _ZN9oceanbase6common20is_virtual_tenant_idEm:14930 + 2: 1493 + 20.1: _ZN9oceanbase5share11ObTenantEnv3mtlIPNS_7storage15ObTenantFreezerEEET_v:11758 + 2: 1461 _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:1512 + 2.1: _ZN9oceanbase5share12ObTenantBase3getIPNS_7storage15ObTenantFreezerEEET_v:10297 + 0: _ZN9oceanbase5share12ObTenantBase9inner_getENS1_8IdentityIPNS_7storage15ObTenantFreezerEEE:10297 + 0: 1471 +_ZN9oceanbase3sql13ObTableScanOp23update_output_tablet_idEv:396035:4240 + 0: 4087 + 1: 4087 + 2: 4087 + 3: 4087 + 3.3: 4494 + 4.2: 0 + 6: 4494 + 8: 0 + 9: 0 + 11: 0 + 11.1: 0 + 11.3: 0 + 12: 0 + 14: 0 + 15.1: 0 + 21: 4553 + 23: 0 + 25.1: 0 + 28: 4553 + 3: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:16348 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:16348 + 0: 4087 + 3.4: _ZNK9oceanbase3sql15ObTableScanSpec17should_scan_indexEv:57218 + 0: 4087 + 6: _ZNK9oceanbase3sql10ObOperator13is_vectorizedEv:44940 + 0: 0 + 0: _ZNK9oceanbase3sql8ObOpSpec13is_vectorizedEv:44940 + 0: 4494 + 10: _ZNK9oceanbase3sql6ObExpr24locate_datums_for_updateERNS0_9ObEvalCtxEl:0 + 6: 0 + 8.1: 0 + 9: 0 + 10: 0 + 12: 0 + 13: 0 + 12: _ZNK9oceanbase6common10ObTabletID2idEv:0 + 0: 0 + 12.1: _ZN9oceanbase6common7ObDatum7set_intEl:0 + 0: 0 + 14: _ZNK9oceanbase3sql6ObExpr23set_evaluated_projectedERNS0_9ObEvalCtxE:0 + 2: 0 + 3: 0 + 2: _ZNK9oceanbase3sql6ObExpr13get_eval_infoERNS0_9ObEvalCtxE:0 + 2: 0 + 3: _ZNK9oceanbase3sql6ObExpr13get_eval_infoERNS0_9ObEvalCtxE:0 + 2: 0 + 23: _ZNK9oceanbase3sql6ObExpr22locate_datum_for_writeERNS0_9ObEvalCtxE:0 + 3: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 5: _ZNK9oceanbase3sql6ObExpr13get_datum_idxERNS0_9ObEvalCtxE:0 + 2: 0 + 2: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 23.1: _ZNK9oceanbase6common10ObTabletID2idEv:0 + 0: 0 + 23.2: _ZN9oceanbase6common7ObDatum7set_intEl:0 + 0: 0 + 24: _ZNK9oceanbase3sql6ObExpr23set_evaluated_projectedERNS0_9ObEvalCtxE:0 + 2: 0 + 3: 0 + 2: _ZNK9oceanbase3sql6ObExpr13get_eval_infoERNS0_9ObEvalCtxE:0 + 2: 0 + 3: _ZNK9oceanbase3sql6ObExpr13get_eval_infoERNS0_9ObEvalCtxE:0 + 2: 0 +_ZZN9oceanbase11transaction14ObTransService19update_max_read_ts_EmRKNS_5share6ObLSIDElENK6$_1153clEPKc.93feb755617c21c32b229b78773c290c:393880:5858 + 0: 5600 + 0.1: 0 + 0.2: 5352 + 0.3: 5600 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:5677 + 0.11: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:95200 + 2: 5600 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKNS_5share6ObLSIDELb0EEC2EPKcS5_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase3lib15CompatModeGuardD2Ev:393432:5527 + 1: 5044 + 2.1: 5044 + 2.2: 0 + 3: 5044 + 2: _ZN9oceanbase3lib6Worker4selfEv:110968 + 3: 5044 + 4: 0 + 2.1: _ZN9oceanbase3lib6Worker22set_compatibility_modeENS1_10CompatModeE:196716 + 2: _ZN9oceanbase3lib15set_compat_modeENS0_6Worker10CompatModeE:196716 + 2: 5044 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:105924 + 2: 5044 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 +_ZN9oceanbase6common13ObSEArrayImplINS_3sql12PCVSchemaObjELl4ENS0_19ModulePageAllocatorELb0EED2Ev:393112:4132 + 1: 3853 + 3: 3852 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_3sql12PCVSchemaObjELl4ENS0_19ModulePageAllocatorELb0EE7destroyEv:215843 + 4.1: 3853 + 4.3: 2 + 9: 3852 + 11: 0 + 13: 3852 + 15: 3852 + 24: 3852 + 5: _ZN9oceanbase3sql12PCVSchemaObjD2Ev:88 + 2.1: 0 + 2: _ZN9oceanbase3sql12PCVSchemaObj5resetEv:88 + 3: 2 + 5: 2 + 6: 2 + 8: 2 + 9: 2 + 9.1: 0 + 10: 0 + 10.1: 0 + 12: 0 + 9.1: _ZN9oceanbase6common8ObString3ptrEv:0 + 0: 0 + 11: _ZN9oceanbase6common8ObString5resetEv:0 + 3: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_3sql12PCVSchemaObjELl4ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase8memtable13ObLockWaitMgr6wakeupEm:392937:1071 + 1: 1069 + 2.1: 1069 _ZZN9oceanbase8memtable13ObLockWaitMgr6wakeupEmENK4$_21clEPKc.1dd22efca7fa83ae50e8099a04ad3959:1082 + 5: 1026 + 7: 0 + 8.1: 0 + 8.2: 0 + 8.3: 0 + 8.4: 0 + 8.6: 0 + 8.7: 0 + 9.1: 0 + 9.2: 0 + 9.3: 0 + 9.4: 0 + 9.6: 0 + 9.7: 0 + 9.11: 0 + 9.12: 0 + 10: 0 + 11: 0 + 15.1: 0 + 15.3: 0 + 16.1: 1054 _ZZN9oceanbase8memtable13ObLockWaitMgr6wakeupEmENK4$_22clEPKc.1dd22efca7fa83ae50e8099a04ad3959:1059 + 17: 1110 + 5: _ZN9oceanbase8memtable13ObLockWaitMgr12fetch_waiterEm:267628 + 2: 1026 + 6.1: 1026 + 9.1: 1026 + 9.3: 1026 + 9.4: 1026 + 10.1: 0 + 11.1: 0 + 11.2: 0 + 16.1: 0 + 16.2: 0 + 19: 0 + 27.1: 0 + 28: 1026 + 31: 0 + 5: _ZN9oceanbase8memtable13ObLockWaitMgr6get_qsEv:10260 + 2: 1026 + 2.1: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common7ObQSyncC2Ev:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ObQSync3RefC2Ev:0 + 0: 0 + 5.1: _ZN9oceanbase6common18QSyncCriticalGuardC2ERNS0_7ObQSyncE:103626 + 0: 1026 + 0: _ZN9oceanbase6common7ObQSync11acquire_refEv:95418 + 2: 1026 + 3: 1026 + 4: 1026 + 5.1: 0 + 7: 1026 + 2: _ZN9oceanbase6common8get_itidEv:28728 + 4: 1026 + 5: 0 + 6: 0 + 8: 0 + 3: _ZN9oceanbase6common7ObQSync7add_refEll:20520 + 6: 1026 + 7: _ZN9oceanbase6common10FixedHash2INS_3rpc14ObLockWaitNodeEE17get_next_internalEm:24624 + 0: _ZN9oceanbase6common10FixedHash2INS_3rpc14ObLockWaitNodeEE7get_preEm:16416 + 0: 1026 + 0.1: _ZN9oceanbase6common9link_nextEPNS0_6ObLinkE:8208 + 2: 1026 + 11: _ZNK9oceanbase3rpc14ObLockWaitNode10get_run_tsEv:0 + 0: 0 + 25: _ZN9oceanbase6common9link_nextEPNS0_6ObLinkE:0 + 2: 0 + 27: _ZN9oceanbase6common18QSyncCriticalGuardD2Ev:72846 + 0: 1026 + 0.2: 0 + 0: _ZN9oceanbase6common7ObQSync11release_refEl:60534 + 2: 1026 + 3: 1026 + 4.1: 0 + 2: _ZN9oceanbase6common7ObQSync7add_refEll:38988 + 3: 1026 + 6: 1026 + 29: _ZN9oceanbase8memtable13ObLockWaitMgr6get_qsEv:0 + 2: 0 + 2.1: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common7ObQSyncC2Ev:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ObQSync3RefC2Ev:0 + 0: 0 + 29.1: _ZN9oceanbase6common7ObQSync4syncEv:868 + 2.1: 0 + 2.3: 0 + 5.1: 124 + 8.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:0 + 2: 0 + 9.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:0 + 2: 0 + 10: _ZN9oceanbase3rpc14ObLockWaitNode13on_retry_lockEm:0 + 0: 0 + 15.1: _ZN9oceanbase8memtableL14is_rowkey_hashEm:0 + 2: 0 +_ZN9oceanbase8memtable21ObMemtableGetIterator18inner_get_next_rowERPKNS_12blocksstable10ObDatumRowE:392734:3357 + 1: 3252 + 2: 3252 + 3: 3252 + 4.1: 6 + 5: 6 + 6.1: 3252 + 7: 6 + 8.1: 3484 _ZN9oceanbase8memtable10ObMemtable3getERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS_12blocksstable13ObDatumRowkeyERNS8_10ObDatumRowE:3309 + 13.1: 6 + 16: 3484 + 17: 3484 + 18: 3484 + 20: 3484 +_ZN9oceanbase6common8ObRandomC2Ev:391119:1248 + 1: 1197 + 2: 1197 + 3: 1289 + 4: 1256 + 5: 1323 + 6: 1323 + 3: _ZN9oceanbase6common8ObRandom4randEll:111261 + 8: 1197 + 9: 0 + 10: 0 + 11: 0 + 12: 0 + 14: 1267 + 15: 1267 + 18: 1289 + 9: _Z9ob_gettidv:0 + 3: 0 + 4: 0 + 2: _Z13get_tid_cachev:0 + 7: 0 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 + 4: _ZN9oceanbase6common8ObRandom4randEll:75798 + 8: 1289 + 9: 0 + 10: 0 + 11: 0 + 12: 0 + 14: 1333 + 15: 1333 + 18: 1256 + 9: _Z9ob_gettidv:0 + 3: 0 + 4: 0 + 2: _Z13get_tid_cachev:0 + 7: 0 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 + 5: _ZN9oceanbase6common8ObRandom4randEll:78175 + 8: 1256 + 9: 0 + 10: 0 + 11: 0 + 12: 0 + 14: 1316 + 15: 1316 + 18: 1323 + 9: _Z9ob_gettidv:0 + 3: 0 + 4: 0 + 2: _Z13get_tid_cachev:0 + 7: 0 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 +_ZN9oceanbase6common8ObRandomC1Ev:391119:1248 + 1: 1197 + 2: 1197 + 3: 1289 + 4: 1256 + 5: 1323 + 6: 1323 + 3: _ZN9oceanbase6common8ObRandom4randEll:111261 + 8: 1197 + 9: 0 + 10: 0 + 11: 0 + 12: 0 + 14: 1267 + 15: 1267 + 18: 1289 + 9: _Z9ob_gettidv:0 + 3: 0 + 4: 0 + 2: _Z13get_tid_cachev:0 + 7: 0 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 + 4: _ZN9oceanbase6common8ObRandom4randEll:75798 + 8: 1289 + 9: 0 + 10: 0 + 11: 0 + 12: 0 + 14: 1333 + 15: 1333 + 18: 1256 + 9: _Z9ob_gettidv:0 + 3: 0 + 4: 0 + 2: _Z13get_tid_cachev:0 + 7: 0 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 + 5: _ZN9oceanbase6common8ObRandom4randEll:78175 + 8: 1256 + 9: 0 + 10: 0 + 11: 0 + 12: 0 + 14: 1316 + 15: 1316 + 18: 1323 + 9: _Z9ob_gettidv:0 + 3: 0 + 4: 0 + 2: _Z13get_tid_cachev:0 + 7: 0 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 +_ZNK9oceanbase6common10ObTabletID9serializeEPclRl:391004:1699 + 1: 1636 + 2: 1636 + 3: 1636 + 4: 0 + 5.1: 0 + 6.1: 1636 + 7.1: 0 + 9: 1636 + 6.1: _ZN9oceanbase6common13serialization10encode_i64EPclRll:297752 + 2.1: 1636 + 3: 1636 + 4: 1636 + 5: 1636 + 6: 1636 + 7: 1636 + 8: 1636 + 9: 1636 + 10: 1636 + 11: 1636 + 12: 1636 +_ZN9oceanbase5share11ObTenantEnv3mtlIPNS_8memtable13ObLockWaitMgrEEET_v:389351:10781 + 1: 10523 + 2: 10523 + 2: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:168368 + 2: 10523 + 2.1: 0 + 2.2: 0 + 7: 10523 + 2.1: _ZN9oceanbase5share12ObTenantBase3getIPNS_8memtable13ObLockWaitMgrEEET_v:126276 + 0: _ZN9oceanbase5share12ObTenantBase9inner_getENS1_8IdentityIPNS_8memtable13ObLockWaitMgrEEE:126276 + 0: 10523 +_ZN9oceanbase11transaction8ObTxDesc5resetEv:386588:837 + 1: 794 + 9: 794 + 9.1: 282 + 11: 5 + 11.4: 5 + 11.5: 5 + 15: 800 + 18: 787 + 20: 787 + 24: 787 _ZN9oceanbase11transaction11ObXATransID5resetEv:814 + 26: 779 + 29: 779 + 31: 779 + 33: 779 + 35: 779 + 38: 779 + 46: 779 + 47: 779 + 48: 761 + 49: 771 + 52: 746 + 53: 746 + 54: 766 + 55: 766 + 56: 766 + 57: 766 + 59: 766 + 62: 766 _ZN9oceanbase11transaction11ObTransCond5resetEv:773 + 63: 787 _ZN9oceanbase11transaction15ObTxTimeoutTask5resetEv:815 + 64: 752 + 66: 752 + 11.2: _ZN9oceanbase6common7ObLogKVIRNS_11transaction15ObTransTraceLogELb0EEC2EPKcS4_:165 + 0: 5 + 17: _ZN9oceanbase11transaction11ObTraceInfo5resetEv:58613 + 2: 800 + 4: 787 + 9: 0 + 3: _ZN9oceanbase6common8ObString3ptrEv:5600 + 0: 800 + 6: _ZN9oceanbase6common7ob_freeEPv:50 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:50 + 5: 0 + 6: 5 + 9: _ZN9oceanbase6common8ObString13assign_bufferEPci:0 + 2: 0 + 3: 0 + 11: _ZN9oceanbase6common8ObString10set_lengthEi:13379 + 2: 787 + 2.1: 787 + 3: 787 + 13: _ZN9oceanbase6common8ObString10set_lengthEi:22823 + 2: 787 + 2.1: 787 + 3: 787 + 22: _ZN9oceanbase6common6ObAddr5resetEv:7870 + 2: 787 + 23: _ZN9oceanbase11transaction9ObTransID5resetEv:8657 + 0: 787 + 47: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction8ObTxPartELl4ENS0_19ModulePageAllocatorELb0EE5resetEv:6234 + 0: 779 _ZN9oceanbase6common13ObSEArrayImplINS_11transaction8ObTxPartELl4ENS0_19ModulePageAllocatorELb0EE7destroyEv:808 + 48: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction13ObTxSavePointELl4ENS0_19ModulePageAllocatorELb0EE5resetEv:6092 + 0: 761 _ZN9oceanbase6common13ObSEArrayImplINS_11transaction13ObTxSavePointELl4ENS0_19ModulePageAllocatorELb0EE7destroyEv:793 + 49: _ZN9oceanbase6common11ObArrayImplINS_11transaction16ObTransIDAndAddrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE5resetEv:6172 + 0: 771 _ZN9oceanbase6common11ObArrayImplINS_11transaction16ObTransIDAndAddrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE7destroyEv:776 + 53: _ZN9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EE5resetEv:5978 + 0: 746 _ZN9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EE7destroyEv:751 + 61: _ZN9oceanbase6common10ObMaskSet2INS_11transaction6ObPairINS_5share6ObLSIDElEEE5resetEv:24512 + 3: 766 + 4: _ZN9oceanbase6common8ObBitSetILl256ENS0_19ModulePageAllocatorELb0EE5reuseEv:16086 + 2: _ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb0EE5reuseEv:16086 + 8: 766 + 9: 766 + 65: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EE5resetEv:17296 + 0: 752 +_ZN9oceanbase3rpc14ObLockWaitNodeC2Ev:385231:5239 + 1.1: 5003 + 2: 5003 + 3: 5003 + 4: 5003 + 4.1: 5003 + 0: _ZN9oceanbase6common10SpHashNodeC2Em:70042 + 0: 5003 +_ZN9oceanbase3rpc14ObLockWaitNodeC1Ev:385231:5239 + 1.1: 5003 + 2: 5003 + 3: 5003 + 4: 5003 + 4.1: 5003 + 0: _ZN9oceanbase6common10SpHashNodeC2Em:70042 + 0: 5003 +_ZN9oceanbase6common21ObSessionStatEstGuardC2Emmb:385062:5545 + 1: 5350 + 3: 5350 + 4: 5344 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 11: 0 + 12: 0 + 16: 5344 + 18: 5344 + 4: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:26726 + 2: 5350 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:5389 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:21376 + 2: 5344 + 7: _ZN9oceanbase6common17ObSessionDIBuffer13get_tenant_idEv:0 + 3: 0 + 4: 0 + 8: _ZN9oceanbase6common17ObSessionDIBuffer16get_curr_sessionEv:0 + 0: 0 +_ZN9oceanbase6common21ObSessionStatEstGuardC1Emmb:385062:5545 + 1: 5350 + 3: 5350 + 4: 5344 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 11: 0 + 12: 0 + 16: 5344 + 18: 5344 + 4: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:26726 + 2: 5350 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:5389 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:21376 + 2: 5344 + 7: _ZN9oceanbase6common17ObSessionDIBuffer13get_tenant_idEv:0 + 3: 0 + 4: 0 + 8: _ZN9oceanbase6common17ObSessionDIBuffer16get_curr_sessionEv:0 + 0: 0 +_ZN9oceanbase3sql8ObParser5parseERKNS_6common8ObStringER11ParseResult9ParseModebbb:383126:531 + 0: 0 + 6: 499 + 7: 499 + 11.1: 499 + 11.2: 499 + 16: 500 + 18.1: 500 + 22.1: 500 + 22.2: 500 + 28: 486 + 29: 499 + 30.1: 499 + 31: 499 + 33: 499 + 34.1: 499 + 35: 499 + 36: 499 + 37: 499 + 38: 499 + 39: 499 + 40: 499 + 41: 550 _ZN9oceanbase6common9ObCharset18is_valid_collationEl:539 + 41.3: 482 + 42: 550 _ZN9oceanbase6common9ObCharset20charset_type_by_collENS0_15ObCollationTypeE:559 + 43: 482 + 44: 482 + 45.1: 482 + 47: 482 + 49: 496 _ZN9oceanbase6common9ObCharset11get_charsetENS0_15ObCollationTypeE:506 + 50: 496 + 51: 496 + 54: 496 + 56: 0 + 57: 0 + 58.1: 0 + 60: 0 + 64: 496 + 65: 0 + 65.3: 0 + 66: 0 + 67: 0 + 68: 0 + 69.1: 0 + 71: 0 + 72: 0 + 75: 496 + 76: 0 + 77.1: 0 + 83: 496 + 84: 496 + 85: 496 + 88: 496 + 88.1: 0 + 88.3: 0 + 92: 496 + 94.1: 496 + 95: 496 + 97: 0 + 99: 501 + 99.1: 501 + 99.2: 0 + 99.3: 0 + 105: 501 + 105.1: 501 _ZN9oceanbase3sql8ObParser10is_pl_stmtERKNS_6common8ObStringEPbS6_:525 + 105.2: 540 + 106: 540 + 106.1: 0 + 106.2: 0 + 106.3: 540 + 107: 517 + 110.1: 0 + 114: 0 + 115: 0 + 116.1: 0 + 118: 0 + 119: 0 + 120.1: 0 + 121: 0 + 121.1: 0 + 122: 0 + 123: 0 + 125.1: 0 + 132: 508 + 10: _ZNK9oceanbase6common8ObString6lengthEv:8483 + 0: 499 + 11.2: _ZNK9oceanbase6common8ObStringixEl:6487 + 0: 499 + 22.2: _ZNK9oceanbase6common8ObStringixEl:6500 + 0: 500 + 27: _ZNK9oceanbase6common8ObString3ptrEv:1944 + 0: 486 + 27.1: _ZN9oceanbase6common8ObStringC2ElPKc:13122 + 1: 486 + 2: 486 + 3: 486 + 5: 486 + 6: 0 + 88.1: _ZNK9oceanbase6common8ObString3ptrEv:0 + 0: 0 + 92: _ZN9oceanbase3lib13is_mysql_modeEv:21824 + 2: 496 + 2: _ZN9oceanbase3lib15get_compat_modeEv:20336 + 2: 496 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:12400 + 2: 496 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 95: _ZNK9oceanbase6common8ObStringixEl:11904 + 0: 496 + 99.1: _ZNK9oceanbase6common8ObStringixEl:2004 + 0: 501 + 107: _ZN9oceanbase3sql8ObParser9parse_sqlERKNS_6common8ObStringER11ParseResultb:34765 + 0: 0 + 5: 540 + 6: 512 + 6.2: 540 _ZN9oceanbase3sql11ObSQLParser5parseEPKclR11ParseResult:540 + 8: 0 + 8.1: 0 + 9: 0 + 10: 0 + 10.2: 0 + 14: 0 + 15.1: 0 + 17.1: 512 + 18: 0 + 19: 0 + 20: 0 + 22: 0 + 24: 512 + 26.1: 0 + 29: 519 + 30: 0 + 31.1: 0 + 51: 0 + 52: 0 + 53: 0 + 57: 0 + 66: 0 + 5: _ZN9oceanbase3sql11ObSQLParserC2ERNS_6common12ObIAllocatorEm:3780 + 1: 540 + 2: 540 + 6: _ZNK9oceanbase6common8ObString3ptrEv:2160 + 0: 540 + 6.1: _ZNK9oceanbase6common8ObString6lengthEv:2160 + 0: 540 + 8: _ZN9oceanbase3lib13is_mysql_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 10: _ZNK9oceanbase6common8ObString3ptrEv:0 + 0: 0 + 10.1: _ZNK9oceanbase6common8ObString6lengthEv:0 + 0: 0 + 30: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 52: _ZNK9oceanbase6common8ObString3ptrEv:0 + 0: 0 + 53: _ZNK9oceanbase6common8ObString6lengthEv:0 + 0: 0 + 58.1: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 114: _ZN9oceanbase2pl10ObPLParserC2ERNS_6common12ObIAllocatorENS2_15ObCollationTypeE:0 + 1: 0 + 2: 0 + 121.1: _ZN9oceanbase3lib13is_mysql_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 +_ZN9oceanbase6common13ObSEArrayImplIPNS_7obmysql12Obp20EncoderELl4ENS0_19ModulePageAllocatorELb0EED2Ev:382660:5265 + 1: 5035 + 3: 5035 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplIPNS_7obmysql12Obp20EncoderELl4ENS0_19ModulePageAllocatorELb0EE7destroyEv:196365 + 9: 5035 + 11: 0 + 13: 5035 + 15: 5035 + 24: 5035 + 10: _ZN9oceanbase6common13ObSEArrayImplIPNS_7obmysql12Obp20EncoderELl4ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase7obmysql7OMPKEOFC2Ev:381836:8095 + 2: 7343 + 4: 7343 + 4.1: 7343 + 0: _ZN9oceanbase7obmysql13ObMySQLPacketC2Ev:183575 + 1.1: 7343 + 1: _ZN9oceanbase7obmysql19ObMySQLPacketHeaderC2Ev:80773 + 1: 7343 +_ZN9oceanbase7obmysql7OMPKEOFC1Ev:381836:8095 + 2: 7343 + 4: 7343 + 4.1: 7343 + 0: _ZN9oceanbase7obmysql13ObMySQLPacketC2Ev:183575 + 1.1: 7343 + 1: _ZN9oceanbase7obmysql19ObMySQLPacketHeaderC2Ev:80773 + 1: 7343 +_ZZNK9oceanbase3sql15ObTableLocation20get_tablet_locationsERNS0_8ObDASCtxEPNS0_16ObSQLSessionInfoEmRKNS_6common8ObIArrayINS6_10ObTabletIDEEERKNS7_ImEERNS7_INS0_16ObCandiTabletLocEEEbbENK6$_1111clEPKc.c0f3ebb58adf60d04e27c69da5b90c06:379938:4909 + 0: 4521 + 0.1: 0 + 0.2: 4521 + 0.3: 4452 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:4592 + 0.19: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:75684 + 2: 4452 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKNS_5share12ObLSLocationELb0EEC2EPKcS5_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVIRKNS0_8ObIArrayINS_3sql16ObCandiTabletLocEEELb0EEC2EPKcS7_:0 + 0: 0 + 0.12: _ZN9oceanbase6common7ObLogKVIRKNS0_8ObIArrayINS0_10ObTabletIDEEELb0EEC2EPKcS6_:0 + 0: 0 + 0.14: _ZN9oceanbase6common7ObLogKVIRKNS0_8ObIArrayImEELb0EEC2EPKcS5_:0 + 0: 0 + 0.16: _ZNK9oceanbase3sql16ObQueryRetryInfo19get_invalid_serversEv:0 + 2: 0 + 0.18: _ZN9oceanbase6common7ObLogKVIRKNS0_8ObIArrayINS0_6ObAddrEEELb0EEC2EPKcS6_:0 + 0: 0 +_ZN9oceanbase6common15ObKVGlobalCache12get_instanceEv:379865:13825 + 1: 12647 + 2: 12647 + 2.1: 5 + 2.2: 5 + 2.3: 5 + 2.4: 5 + 2.6: 5 + 3: 12647 +_Z13get_tp_switchv:378150:15217 + 1: 15126 + 3: 15126 +_ZN9oceanbase6common13ObObjFreeList4freeEPv:377916:984 + 1: 924 + 3: 924 + 5: 924 + 6: 0 + 7.1: 0 + 7.2: 0 + 7.5: 0 + 12: 924 + 13: 0 + 19: 924 + 5: _ZN9oceanbase6commonL16get_thread_cacheEl:36036 + 4: 924 + 5: 0 + 6: 0 + 7.1: 0 + 7.2: 0 + 7.4: 0 + 10: 924 + 15: _ZN9oceanbase6common13ObObjFreeList12reclaim_freeEPNS0_13ObThreadCacheEPv:272580 + 5: 924 + 8: 924 + 9: 924 + 10: 924 + 11: 924 + 12: 924 + 13: 924 + 14: 0 + 17: 0 + 5: _ZN9oceanbase6common13ObObjFreeList14get_chunk_infoEPv:3696 + 2: 924 + 6: _ZN9oceanbase6common13ObObjFreeList22clear_chunk_item_magicEPNS0_11ObChunkInfoEPv:72072 + 4: 924 + 5.1: 0 + 5.2: 0 + 5.5: 0 + 5.7: 0 + 8: 924 + 3: _ZN9oceanbase6common13ObObjFreeList24get_chunk_item_magic_idxEPvPPNS0_11ObChunkInfoEb:48048 + 3: 924 + 5: 924 + 6: 0 + 8: 924 + 9.1: 924 + 10: 924 + 10.1: 924 + 11.1: 0 + 15: 0 + 5.2: _ZN9oceanbase6common7ObLogKVIRhLb0EEC2EPKcS2_:0 + 0: 0 + 5.6: _ZN9oceanbase6common7ObLogKVIKhLb0EEC2EPKcRS2_:0 + 0: 0 + 7: _ZN9oceanbase6common13ObObjFreeList13rcu_read_lockEPNS0_13ObThreadCacheE:11088 + 3: 924 + 3: _ZN9oceanbase6common13ObObjFreeList9get_clockEv:6468 + 0: 924 + 12: _ZN9oceanbase6common13ObObjFreeList13free_to_chunkEPNS0_13ObThreadCacheEPv:101640 + 4: 924 + 5: 924 + 7: 924 + 8: 924 + 10: 924 + 11: 924 + 12: 924 + 13.1: 0 + 17: 0 + 19: 0 + 23: 924 + 23.1: 924 + 24: 924 + 24.1: 924 + 25: 0 + 27: 0 + 29.1: 0 + 29.2: 0 + 30: 0 + 30.1: 0 + 32: 0 + 33: 0 + 34: 0 + 35: 0 + 42: 924 + 43: 924 + 48.1: 0 + 48.2: 0 + 49: 0 + 49.1: 0 + 50: 0 + 4: _ZN9oceanbase6common13ObObjFreeList14get_chunk_infoEPv:3696 + 2: 924 + 13: _ZN9oceanbase6common12ObAtomicList4headEv:3696 + 0: 924 + 19: _ZN9oceanbase6common13ObObjFreeList15rcu_read_unlockEPNS0_13ObThreadCacheE:11088 + 2: 924 + 3: 924 +_ZN9oceanbase6common16ObFixedArrayImplIPKNS_3sql14ObDASBaseCtDefENS0_12ObIAllocatorEED2Ev:377810:5800 + 0: 5393 + 0.1: 5403 + 0.3: 0 + 0: _ZN9oceanbase6common16ObFixedArrayImplIPKNS_3sql14ObDASBaseCtDefENS0_12ObIAllocatorEE7destroyEv:215950 + 2: 5393 + 5: 5393 + 9: 0 + 10: 0 + 12: 5403 + 13: 5403 + 15: 5403 +_ZN9oceanbase3sql16ObSQLSessionInfo29update_stat_from_audit_recordEv:377720:5415 + 1: 4970 + 2: 4970 + 3: 4970 + 6: 4970 + 7: 4970 + 8: 4970 + 9: 4970 + 10: 4970 +_ZN9oceanbase3sql8ObDASRef5reuseEv:375770:1143 + 1: 1017 + 4: 1027 + 5: 1027 + 8: 1027 + 12: 1027 + 2: _ZN9oceanbase3sql16ObDASTaskFactory7cleanupEv:142040 + 2: 1017 + 3.1: 1069 + 6.1: 1011 + 7: 1011 + 8: 1011 _ZN9oceanbase3sql13ObDASUpdateOpD2Ev:373 _ZN9oceanbase3sql13ObDASInsertOpD2Ev:284 _ZN9oceanbase3sql13ObDASDeleteOpD2Ev:231 _ZN9oceanbase3sql11ObDASLockOpD2Ev:151 + 14: 1053 + 15.1: 0 + 18.1: 0 + 19: 0 + 20: 0 + 26: 1053 + 27.1: 0 + 30.1: 0 + 31: 0 + 32: 0 + 38: 1053 + 39.1: 0 + 42.1: 0 + 43: 0 + 44: 0 + 50: 1053 + 51.1: 0 + 54.1: 0 + 55: 0 + 56: 0 + 2: _ZNK9oceanbase6common10ObObjStoreIPNS_3sql12ObIDASTaskOpERNS0_12ObIAllocatorELb0EE5emptyEv:7119 + 0: 1017 + 12: _ZN9oceanbase6common10ObObjStoreIPNS_3sql12ObIDASTaskOpERNS0_12ObIAllocatorELb0EE5clearEv:26325 + 0: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql12ObIDASTaskOpEEEE5clearEv:26325 + 2: 1053 + 3: 1053 + 4: 1053 + 14: _ZNK9oceanbase6common10ObObjStoreIPNS_3sql16ObIDASTaskResultERNS0_12ObIAllocatorELb0EE5emptyEv:8424 + 0: 1053 + 24: _ZN9oceanbase6common10ObObjStoreIPNS_3sql16ObIDASTaskResultERNS0_12ObIAllocatorELb0EE5clearEv:0 + 0: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql16ObIDASTaskResultEEEE5clearEv:0 + 2: 0 + 3: 0 + 4: 0 + 26: _ZNK9oceanbase6common10ObObjStoreIPNS_3sql14ObDASExtraDataERNS0_12ObIAllocatorELb0EE5emptyEv:8424 + 0: 1053 + 36: _ZN9oceanbase6common10ObObjStoreIPNS_3sql14ObDASExtraDataERNS0_12ObIAllocatorELb0EE5clearEv:0 + 0: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql14ObDASExtraDataEEEE5clearEv:0 + 2: 0 + 3: 0 + 4: 0 + 38: _ZNK9oceanbase6common10ObObjStoreIPNS_3sql14ObDASBaseCtDefERNS0_12ObIAllocatorELb0EE5emptyEv:8424 + 0: 1053 + 48: _ZN9oceanbase6common10ObObjStoreIPNS_3sql14ObDASBaseCtDefERNS0_12ObIAllocatorELb0EE5clearEv:0 + 0: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql14ObDASBaseCtDefEEEE5clearEv:0 + 2: 0 + 3: 0 + 4: 0 + 50: _ZNK9oceanbase6common10ObObjStoreIPNS_3sql14ObDASBaseRtDefERNS0_12ObIAllocatorELb0EE5emptyEv:8424 + 0: 1053 + 60: _ZN9oceanbase6common10ObObjStoreIPNS_3sql14ObDASBaseRtDefERNS0_12ObIAllocatorELb0EE5clearEv:0 + 0: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql14ObDASBaseRtDefEEEE5clearEv:0 + 2: 0 + 3: 0 + 4: 0 + 3: _ZN9oceanbase6common10ObObjStoreIPNS_3sql12ObIDASTaskOpERNS0_12ObIAllocatorELb0EE7destroyEv:17010 + 2.1: 3 + 4: 0 + 5: 0 + 2: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql12ObIDASTaskOpEEEE12remove_firstEv:16983 + 2: 1053 + 2: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql12ObIDASTaskOpEEEE6removeEPS6_:6453 + 3: 1053 + 7: 3 + 6: _ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql12ObIDASTaskOpEEEE6unlinkEv:108 + 2: 3 + 4: 3 + 5: 3 + 6: 3 + 7: 3 + 2.5: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql12ObIDASTaskOpEEEE12remove_firstEv:0 + 2: 0 + 2: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql12ObIDASTaskOpEEEE6removeEPS6_:0 + 3: 0 + 7: 0 + 6: _ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql12ObIDASTaskOpEEEE6unlinkEv:0 + 2: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 6: _ZN9oceanbase6common16ObArenaAllocator21reset_remain_one_pageEv:51 + 0: 3 + 8.1: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:109889 + 4: 1027 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:94484 + 2: 1027 + 3: 1027 + 4: 1027 + 5: 1027 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:29783 + 0: 1027 + 9.1: _ZN9oceanbase6common16ObArenaAllocator8set_attrERKNS_3lib9ObMemAttrE:31837 + 2: 1027 + 3: 1027 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE10set_ctx_idEl:7189 + 0: _ZN9oceanbase6common19ModulePageAllocator10set_ctx_idEl:7189 + 0: 1027 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9set_labelERKNS_3lib7ObLabelE:9243 + 0: _ZN9oceanbase6common19ModulePageAllocator9set_labelERKNS_3lib7ObLabelE:9243 + 0: 1027 + 10: _ZN9oceanbase6common18ObWrapperAllocator9set_allocEPNS0_12ObIAllocatorE:4108 + 0: 1027 +_ZN9oceanbase6common16ObFixedArrayImplINS0_13ObCharsetTypeENS0_12ObIAllocatorEED2Ev:375629:5578 + 0: 5368 + 0.1: 5323 + 0.3: 53 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS0_13ObCharsetTypeENS0_12ObIAllocatorEE7destroyEv:214480 + 2: 5368 + 5: 5368 + 9: 53 + 10: 53 + 12: 5323 + 13: 5323 + 15: 5323 +_ZZNK9oceanbase3sql8ObOpSpec25create_operator_recursiveERNS0_13ObExecContextERPNS0_10ObOperatorEENK5$_121clEPKc.68271ef948b9e29c783f97102b0c767d:375325:5675 + 0: 5530 + 0.1: 0 + 0.2: 5530 + 0.3: 5517 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:5800 + 0.9: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:93789 + 2: 5517 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKNS_3sql17ObPhyOperatorTypeELb0EEC2EPKcS5_:0 + 0: 0 +_ZN9oceanbase3sql10ObDASUtils25check_nested_sql_mutatingEmRNS0_13ObExecContextE:375150:5357 + 1: 5157 + 2: 5157 + 11: 5157 + 13.1: 15 + 15.1: 15 + 17.2: 15 + 20.1: 15 + 20.3: 15 + 23.1: 15 + 23.3: 15 + 24: 15 + 25: 15 + 25.1: 15 + 26: 15 + 27: 15 + 28.2: 15 + 29: 15 + 29.1: 15 + 29.2: 15 + 30.1: 15 + 31.1: 15 + 31.2: 15 + 32.1: 15 + 33.1: 15 + 33.3: 15 + 34.2: 15 + 34.3: 15 + 34.4: 15 + 34.5: 15 + 34.6: 15 + 34.7: 15 + 36: 15 + 37.1: 15 + 38: 15 + 38.1: 15 + 42: 15 + 44.1: 15 + 46.1: 15 + 48.1: 15 + 48.2: 15 + 53: 5307 + 3: _ZN9oceanbase3sql13ObExecContext14get_parent_ctxEv:51570 + 0: 5157 + 15.1: _ZN9oceanbase3sql13ObExecContext16get_pl_stack_ctxEv:105 + 0: 15 + 23: _ZN9oceanbase3sql8ObDASCtx18get_table_loc_listEv:375 + 0: 15 + 77: 15 + 23.9: _ZNK9oceanbase6common4list8IteratorINS0_6ObListIPNS_3sql13ObDASTableLocENS0_12ObIAllocatorEEEEneERKS9_:45 + 2: 15 + 28: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:105 + 2: 15 + 28.1: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:105 + 0: 15 + 33.2: _ZN9oceanbase3lib13is_mysql_modeEv:1410 + 2: _ZN9oceanbase3lib15get_compat_modeEv:1410 + 2: 15 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:1170 + 2: 15 + 2.1: 15 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:330 + 1: 15 + 34.3: _ZNK9oceanbase5share6schema21ObSimpleTableSchemaV214get_table_nameEv:180 + 0: 15 + 34.6: _ZNK9oceanbase5share6schema21ObSimpleTableSchemaV214get_table_nameEv:180 + 0: 15 + 41: _ZN9oceanbase3sql13ObExecContext14get_parent_ctxEv:195 + 0: 15 + 65440.7: 15 + 46.1: _ZN9oceanbase3sql13ObExecContext16get_pl_stack_ctxEv:105 + 0: 15 +_ZN9oceanbase3sql5ObSql20handle_physical_planERKNS_6common8ObStringERNS0_8ObSqlCtxERNS0_11ObResultSetERNS0_14ObPlanCacheCtxEib:375029:573 + 6: 510 + 7: 510 + 9: 516 + 10: 516 + 15: 516 + 17: 516 _ZN9oceanbase3sql16ObSQLSessionInfo14get_plan_cacheEv:539 + 21.1: 508 + 25: 548 + 30: 548 + 30.1: 0 + 31.1: 535 + 32.1: 0 + 33.1: 7 + 34.3: 540 + 41.1: 7 + 42.2: 540 + 42.3: 2 + 44: 2 + 44.1: 2 + 48.1: 7 + 49.1: 534 + 50: 2 + 51.1: 2 + 53: 520 _ZN9oceanbase3sql5ObSql15generate_sql_idERNS0_14ObPlanCacheCtxEbR11ParseResultRNS_6common8ObStringEi:525 + 54: 551 + 56.1: 551 _ZN9oceanbase3sql5ObSql16get_outline_dataERNS0_8ObSqlCtxERNS0_14ObPlanCacheCtxERKNS_6common8ObStringERNS0_14ObOutlineStateER11ParseResult:542 + 56.2: 523 + 58.1: 7 + 59.2: 523 _ZN9oceanbase3sql5ObSql22generate_physical_planER11ParseResultPNS0_14ObPlanCacheCtxERNS0_8ObSqlCtxERNS0_11ObResultSetEbbPS2_:514 + 59.3: 506 + 68.2: 7 + 69.1: 7 + 71: 7 + 73.1: 7 + 75.2: 522 + 80.1: 522 + 82.1: 7 + 83.1: 7 + 84: 7 + 85.1: 7 + 86.4: 7 + 87: 7 + 88: 7 + 93: 7 + 93.1: 7 + 94.1: 7 + 97.1: 7 + 102: 522 + 103: 9 + 104: 9 + 106: 9 + 108.2: 9 + 108.3: 9 + 109.1: 7 + 110.1: 9 + 112.2: 9 + 112.3: 9 + 113.1: 7 + 114.1: 9 + 115: 9 + 116: 9 + 118: 9 + 119: 9 + 119.1: 9 + 120.1: 7 + 121.1: 9 + 129: 9 + 130: 9 + 131: 9 + 132.1: 9 + 134: 524 + 135.24: 530 + 135.33: 524 _ZN9oceanbase5trace16__ObFLTSpanGuardD2Ev:554 + 8: _ZN9oceanbase5trace16__ObFLTSpanGuardC2Ejh:12602 + 2: 516 _ZN9oceanbase5trace7ObTrace12get_instanceEv:543 + 2.1: 530 _ZN9oceanbase5trace7ObTrace10begin_spanEjhb:554 + 11: _ZN9oceanbase6common8ObStringC2Ev:5160 + 1: 516 + 12: _ZN9oceanbase3sql14ObOutlineStateC2Ev:20640 + 0: 516 + 0: _ZN9oceanbase5share6schema18ObSchemaObjVersionC2Ev:17028 + 1: 516 + 4: 516 + 5: 516 + 16: _ZN9oceanbase3sql11ObResultSet11get_sessionEv:3612 + 0: 516 + 18: _ZNK9oceanbase3sql18ObBasicSessionInfo30get_local_ob_enable_plan_cacheEv:19340 + 2: 508 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_ob_enable_plan_cacheEv:16764 + 0: 508 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_ob_enable_plan_cacheEb:11176 + 0: 508 + 21: _ZNK9oceanbase3sql18ObBasicSessionInfo21get_enable_exact_modeEv:11684 + 2: 508 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache23get_cursor_sharing_modeEv:10160 + 0: 508 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache23get_cursor_sharing_modeEb:7620 + 0: 508 + 23: _ZN9oceanbase6common8ObBitSetILl256ENS0_19ModulePageAllocatorELb1EE5resetEv:7620 + 2: 508 + 2: _ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb1EE5resetEv:4064 + 0: 508 _ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb1EE7destroyEv:545 + 24: _ZN9oceanbase6common8ObBitSetILl256ENS0_19ModulePageAllocatorELb1EE5resetEv:8295 + 2: 553 + 2: _ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb1EE5resetEv:4424 + 0: 553 _ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb1EE7destroyEv:571 + 31: _ZNK9oceanbase3sql15ObMultiStmtItem21is_batched_multi_stmtEv:7033 + 3: 548 + 4: 0 + 6: 535 + 32: _ZN9oceanbase3sql5ObSql28get_first_batched_multi_stmtERNS0_15ObMultiStmtItemERNS_6common8ObStringE:434 + 2: 7 + 3: 0 + 4: 7 + 5.1: 7 + 6.1: 0 + 7: 7 + 8.1: 7 + 10: 0 + 12: 0 + 3: _ZNK9oceanbase3sql15ObMultiStmtItem11get_queriesEv:0 + 0: 0 + 6.2: _ZNK9oceanbase6common12ObIArrayWrapINS0_8ObStringEE5emptyEv:0 + 0: 0 + 10.1: _ZNK9oceanbase6common12ObIArrayWrapINS0_8ObStringEE2atEl:0 + 6: 0 + 34.1: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:6206 + 0: 564 + 34.2: _ZN9oceanbase3sql5ObSql13handle_parserERKNS_6common8ObStringERNS0_13ObExecContextERNS0_14ObPlanCacheCtxER11ParseResultiRbSC_:92191 + 9: 562 + 11: 528 _ZNK9oceanbase6common16ObArenaAllocator5totalEv:552 + 13.1: 537 + 15: 537 + 16: 7 + 17.1: 7 + 18.1: 556 _ZN9oceanbase3sql5ObSql16parser_and_checkERKNS_6common8ObStringERNS0_13ObExecContextERNS0_14ObPlanCacheCtxER11ParseResultiRbSC_:544 + 18.2: 556 + 20.1: 7 + 22: 7 + 23: 556 + 24: 556 _ZN9oceanbase3sql17ObPhysicalPlanCtx22init_datum_param_storeEv:577 + 24.1: 548 + 25.1: 7 + 29: 7 + 30.9: 7 + 10: _ZN9oceanbase5trace16__ObFLTSpanGuardC2Ejh:11842 + 2: 562 _ZN9oceanbase5trace7ObTrace12get_instanceEv:584 + 2.1: 572 _ZN9oceanbase5trace7ObTrace10begin_spanEjhb:578 + 13: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:3759 + 2: 537 + 23.1: _ZNK9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE5countEv:3892 + 0: 556 + 23.2: _ZN9oceanbase3sql17ObPhysicalPlanCtx22set_original_param_cntEl:3892 + 0: 556 + 30.6: _ZN9oceanbase5trace16__ObFLTSpanGuardD2Ev:3592 + 0: 548 + 0.1: 2 + 0.2: 2 + 0.3: 2 + 0.4: 9 + 0.5: 2 + 0.7: 2 + 0.8: 2 + 0.12: 7 + 0.3: _ZNK9oceanbase5trace4UUID9is_initedEv:67 + 0: 2 + 0.1: 9 + 0.6: _ZN9oceanbase5trace7ObTrace13is_auto_flushEv:14 + 0: 2 + 42.1: _ZNK9oceanbase3sql15ObMultiStmtItem21is_batched_multi_stmtEv:15120 + 3: 540 + 59.1: _ZNK9oceanbase3sql14ObPlanCacheCtx20is_begin_commit_stmtEv:4184 + 0: 523 + 75.1: _ZN9oceanbase3sql5ObSql13need_add_planERKNS0_14ObPlanCacheCtxERNS0_11ObResultSetEbRb:2917 + 6: 506 + 8.1: 9 + 8.2: 9 + 10.1: 9 + 10.2: 9 + 10.1: _ZN9oceanbase3sql11ObResultSet17get_physical_planEv:36 + 2: _ZNK9oceanbase3sql15ObCacheObjGuard13get_cache_objEv:36 + 2: 9 + 11.1: _ZNK9oceanbase3sql14ObPhysicalPlan14has_link_tableEv:63 + 0: 9 + 82: _ZNK9oceanbase3sql15ObCacheObjGuard13get_cache_objEv:49 + 2: 7 + 86.2: _ZNK9oceanbase3sql14ObPhysicalPlan19get_plan_hash_valueEv:49 + 0: 7 + 108.1: _ZN9oceanbase3sql11ObResultSet17get_physical_planEv:72 + 2: _ZNK9oceanbase3sql15ObCacheObjGuard13get_cache_objEv:72 + 2: 9 + 112.1: _ZN9oceanbase3sql11ObResultSet17get_physical_planEv:72 + 2: _ZNK9oceanbase3sql15ObCacheObjGuard13get_cache_objEv:72 + 2: 9 + 135.31: _ZN9oceanbase5trace16__ObFLTSpanGuardD2Ev:567 + 0: 7 + 0.1: 7 + 0.2: 7 + 0.3: 7 + 0.4: 7 + 0.5: 7 + 0.7: 7 + 0.8: 7 + 0.12: 7 + 0.3: _ZNK9oceanbase5trace4UUID9is_initedEv:84 + 0: 7 + 0.1: 7 + 0.6: _ZN9oceanbase5trace7ObTrace13is_auto_flushEv:49 + 0: 7 +_ZNK9oceanbase3lib8BlockSet24get_tenant_ctx_allocatorEv:374582:29292 + 1: 28814 + 2: 28814 +_ZN9oceanbase7storage15ObDMLRunningCtxC2ERNS0_10ObStoreCtxERKNS0_14ObDMLBaseParamERNS_6common12ObIAllocatorES9_NS_12blocksstable9ObDmlFlagE:373643:1053 + 6: 984 + 7: 984 + 8: 984 + 9: 984 + 10: 984 + 11: 984 + 12: 1004 + 15: 1004 + 17: 968 + 18: 968 _ZN9oceanbase5share6schema19ObSchemaGetterGuardC1ENS1_15ObSchemaMgrItem3ModE:1026 + 19: 1057 + 20: 984 + 21: 1057 + 21.4: 0 + 21.5: 0 + 11: _ZN9oceanbase7storage15ObRelativeTableC2Ev:49207 + 0: 1004 + 0: _ZN9oceanbase7storage21ObTabletTableIteratorC2Ev:11383 + 0: 1059 _ZN9oceanbase7storage14ObTabletHandleC1Ev:1075 + 0.2: 0 + 0.4: 1021 _ZN9oceanbase7storage20ObTableStoreIteratorC1Eb:1038 + 15: _ZN9oceanbase6common9ObSEArrayINS_5share6schema9ObColDescELl52ENS0_19ModulePageAllocatorELb0EEC2Ev:161908 + 0.1: 968 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema9ObColDescELl52ENS0_19ModulePageAllocatorELb0EEC2ElRKS5_:144484 + 2: 1004 + 5: 968 + 6: 968 + 8: 968 + 17.1: 968 + 2: _ZN9oceanbase6common8ObIArrayINS_5share6schema9ObColDescEEC2EPS4_l:17424 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEEC2EPS4_l:17424 + 0: 968 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:55176 + 0: 968 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:24200 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:24200 + 2: 968 + 8: 968 + 16: _ZN9oceanbase7storage10ObStoreRowC2Ev:67760 + 1: 968 + 3: 968 + 4.1: 968 + 1: _ZN9oceanbase12blocksstable12ObDmlRowFlagC2Ev:6776 + 1: 968 + 21.3: _ZN9oceanbase7storage10ObStoreRowD2Ev:0 + 0: _ZN9oceanbase11transaction9ObTransIDD2Ev:0 + 0: 0 +_ZN9oceanbase7storage15ObDMLRunningCtxC1ERNS0_10ObStoreCtxERKNS0_14ObDMLBaseParamERNS_6common12ObIAllocatorES9_NS_12blocksstable9ObDmlFlagE:373643:1053 + 6: 984 + 7: 984 + 8: 984 + 9: 984 + 10: 984 + 11: 984 + 12: 1004 + 15: 1004 + 17: 968 + 18: 968 _ZN9oceanbase5share6schema19ObSchemaGetterGuardC1ENS1_15ObSchemaMgrItem3ModE:1026 + 19: 1057 + 20: 984 + 21: 1057 + 21.4: 0 + 21.5: 0 + 11: _ZN9oceanbase7storage15ObRelativeTableC2Ev:49207 + 0: 1004 + 0: _ZN9oceanbase7storage21ObTabletTableIteratorC2Ev:11383 + 0: 1059 _ZN9oceanbase7storage14ObTabletHandleC1Ev:1075 + 0.2: 0 + 0.4: 1021 _ZN9oceanbase7storage20ObTableStoreIteratorC1Eb:1038 + 15: _ZN9oceanbase6common9ObSEArrayINS_5share6schema9ObColDescELl52ENS0_19ModulePageAllocatorELb0EEC2Ev:161908 + 0.1: 968 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema9ObColDescELl52ENS0_19ModulePageAllocatorELb0EEC2ElRKS5_:144484 + 2: 1004 + 5: 968 + 6: 968 + 8: 968 + 17.1: 968 + 2: _ZN9oceanbase6common8ObIArrayINS_5share6schema9ObColDescEEC2EPS4_l:17424 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEEC2EPS4_l:17424 + 0: 968 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:55176 + 0: 968 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:24200 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:24200 + 2: 968 + 8: 968 + 16: _ZN9oceanbase7storage10ObStoreRowC2Ev:67760 + 1: 968 + 3: 968 + 4.1: 968 + 1: _ZN9oceanbase12blocksstable12ObDmlRowFlagC2Ev:6776 + 1: 968 + 21.3: _ZN9oceanbase7storage10ObStoreRowD2Ev:0 + 0: _ZN9oceanbase11transaction9ObTransIDD2Ev:0 + 0: 0 +_ZZN9oceanbase3sql19ObPhyLocationGetter17get_phy_locationsERKNS_6common8ObIArrayINS0_15ObTableLocationEEERKNS0_14ObPlanCacheCtxERNS3_INS0_15ObCandiTableLocEEERbENK5$_355clEPKc.08a2b9b0d59ff83413633eb11fd88a2d:370789:4835 + 0: 4665 + 0.1: 0 + 0.2: 4665 + 0.3: 4549 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:4633 + 0.13: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:77333 + 2: 4549 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKbLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKbLb0EEC2EPKcS3_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKNS0_8ObIArrayINS_3sql15ObCandiTableLocEEELb0EEC2EPKcS7_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVIRKNS0_8ObIArrayINS_3sql15ObTableLocationEEELb0EEC2EPKcS7_:0 + 0: 0 + 0.12: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase7obmysql12ObMySQLFieldC2Ev:370220:3842 + 1: 3460 + 2: 3460 + 4: 3460 + 5: 3460 + 6: 3460 + 7: 3460 + 8: 3460 + 9: 3460 + 0.1: _ZN9oceanbase6common8ObStringC2Ev:58820 + 1: 3460 + 0.2: _ZN9oceanbase6common8ObStringC2Ev:79580 + 1: 3460 + 0.6: _ZN9oceanbase6common10ObAccuracyC2Ev:27680 + 0: _ZN9oceanbase6common10ObAccuracy5resetEv:27680 + 0: 3460 +_ZN9oceanbase7obmysql12ObMySQLFieldC1Ev:370220:3842 + 1: 3460 + 2: 3460 + 4: 3460 + 5: 3460 + 6: 3460 + 7: 3460 + 8: 3460 + 9: 3460 + 0.1: _ZN9oceanbase6common8ObStringC2Ev:58820 + 1: 3460 + 0.2: _ZN9oceanbase6common8ObStringC2Ev:79580 + 1: 3460 + 0.6: _ZN9oceanbase6common10ObAccuracyC2Ev:27680 + 0: _ZN9oceanbase6common10ObAccuracy5resetEv:27680 + 0: 3460 +_ZN9oceanbase6common11ObArrayImplINS0_15ObWarningBuffer11WarningItemENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE7reserveEl:370177:5264 + 1: 5209 + 3: 5209 + 4: 4 + 5: 4 + 6: 4 + 6.3: 4 + 9: 5207 + 7: _ZN9oceanbase6common11ObArrayImplINS0_15ObWarningBuffer11WarningItemENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE10extend_bufEl:238 + 4: 4 + 5: 2 + 6: 2 + 8.2: 0 + 8.3: 0 + 8.5: 0 + 18: 0 + 19: 0 + 36: 2 + 37: 2 + 40.1: 0 + 4: _ZN9oceanbase6common19ModulePageAllocator5allocEl:164 + 2: 4 + 3: 4 _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:4 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:60 + 5: 4 + 7: 4 + 8: 4 + 9: _ZN9oceanbase6common16construct_assignINS0_15ObWarningBuffer11WarningItemEEEiRT_RKS4_:0 + 2: _ZN9oceanbase6common21construct_assign_wrapINS0_15ObWarningBuffer11WarningItemEEEiRT_RKS4_NS0_8BoolTypeILb0EEE:0 + 2: 0 + 19: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase8memtable9ObMvccRow11mvcc_write_ERNS0_14ObIMemtableCtxERNS0_15ObMvccTransNodeElRNS0_17ObMvccWriteResultE:369747:1094 + 4: 1047 + 5: 1047 + 8: 1135 + 9: 1135 _ZN9oceanbase8memtable13ObMemtableCtx18get_tx_table_guardEv:1232 + 12: 1119 _ZNK9oceanbase8memtable13ObMemtableCtx9get_tx_idEv:1134 + 19.1: 1136 + 19.3: 1136 + 20: 1100 + 22: 117 + 24: 117 + 41.1: 2 + 42: 979 + 43.1: 2 + 43.2: 2 + 48.1: 2 + 49.2: 969 + 51: 703 + 53: 703 + 55.2: 270 + 58: 2 + 60.2: 270 + 64.1: 270 + 66.1: 270 + 70: 2 + 76: 278 + 83: 2 + 85: 2 + 87: 2 + 89.1: 2 + 90.1: 2 + 91: 2 + 96: 1080 + 98: 1080 + 99: 1080 + 100: 1080 + 101: 967 + 103: 1074 + 105: 1074 + 106: 967 + 108: 1077 + 111: 1077 + 112: 1077 + 118: 1127 + 119.10: 1062 + 7: _ZN9oceanbase8memtable10ObRowLatch5GuardC2ERS1_:12916 + 0: _ZN9oceanbase8memtable10ObRowLatch4lockEv:12916 + 0: 1047 _ZN9oceanbase6common7ObLatch6wrlockEjlPKj:1062 + 10: _ZNK9oceanbase7storage14ObTxTableGuard12get_tx_tableEv:3357 + 0: 1119 + 11: _ZNK9oceanbase7storage14ObTxTableGuard5epochEv:4476 + 0: 1119 + 40: _ZNK9oceanbase8memtable15ObMvccTransNode9get_tx_idEv:6853 + 0: 979 + 41: _ZNK9oceanbase8memtable15ObMvccTransNode19is_delayed_cleanoutEv:3916 + 2: 979 + 49.1: _ZNK9oceanbase8memtable15ObMvccTransNode12is_committedEv:8 + 0: 2 + 55.1: _ZNK9oceanbase8memtable15ObMvccTransNode10is_abortedEv:542 + 0: 270 + 783.3: 2 + 60.1: _ZNK9oceanbase11transaction9ObTransIDeqERKS1_:2160 + 1: 270 + 64: _ZNK9oceanbase8memtable15ObMvccTransNode12is_lock_nodeERb:1080 + 7.1: 270 + 88: _ZN9oceanbase11transaction9ObTransIDaSERKS1_:8 + 1: 2 + 89: _ZNK9oceanbase8memtable15ObMvccTransNode10get_seq_noEv:8 + 0: 2 + 90: _ZNK9oceanbase8memtable15ObMvccTransNode19is_delayed_cleanoutEv:8 + 2: 2 + 114: _ZN9oceanbase8memtable9ObMvccRow20check_double_insert_ElRNS0_15ObMvccTransNodeE:24970 + 3: 1077 + 4: 966 + 4.1: 0 + 5: 966 + 5.1: 283 + 6: 283 + 7: 0 + 7.1: 0 + 8: 0 + 6.1: _ZNK9oceanbase8memtable15ObMvccTransNode12is_committedEv:0 + 0: 0 + 119.11: _ZN9oceanbase11transaction9ObTransIDD2Ev:0 + 0: 0 + 119.15: _ZN9oceanbase8memtable10ObRowLatch5GuardD2Ev:0 + 0.2: 0 + 0: _ZN9oceanbase8memtable10ObRowLatch6unlockEv:0 + 0: 0 + 119.17: _ZN9oceanbase8memtable10ObRowLatch5GuardD2Ev:3389 + 0.2: 0 + 0: _ZN9oceanbase8memtable10ObRowLatch6unlockEv:3389 + 0: 1127 _ZN9oceanbase6common7ObLatch6unlockEPKj:1125 +_ZN9oceanbase6common13ObSEArrayImplINS_7storage20ObRow2ExprsProjector4ItemELl4ENS0_19ModulePageAllocatorELb0EED2Ev:364900:4499 + 1: 4450 + 3: 4450 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_7storage20ObRow2ExprsProjector4ItemELl4ENS0_19ModulePageAllocatorELb0EE7destroyEv:200250 + 9: 4450 + 11: 0 + 13: 4450 + 15: 4450 + 24: 4450 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_7storage20ObRow2ExprsProjector4ItemELl4ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase6common13ObSEArrayImplIPKNS_3sql15ObTableLocationELl2ENS0_19ModulePageAllocatorELb0EED2Ev:364095:5117 + 1: 4863 + 3: 4845 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplIPKNS_3sql15ObTableLocationELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv:184326 + 9: 4863 + 11: 0 + 13: 4845 + 15: 4845 + 24: 4845 + 10: _ZN9oceanbase6common13ObSEArrayImplIPKNS_3sql15ObTableLocationELl2ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +easy_request_addbuf:364000:5358 + 1: 5200 + 2: 5200 + 3: 5200 + 6: 5200 + 10: 0 + 11: 0 + 12: 0 + 13: 0 + 14.2: 0 + 14.3: 0 + 14.4: 0 + 16.1: 0 + 16.2: 0 + 16.3: 0 + 16.4: 0 + 19: 5200 + 20: 5200 + 19: easy_list_add_tail:124800 + 2: 5200 + 2: __easy_list_add:88400 + 3: 5200 + 4: 5200 + 5: 5200 + 6: 5200 +_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher19try_add_query_rangeERNS1_22ObIndexTreeLevelHandleE:363235:1974 + 1: 1902 + 2: 1902 + 3: 1902 + 3.1: 1902 + 6.1: 918 + 6.2: 0 + 7: 937 + 8: 937 + 9: 999 _ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher19prepare_read_handleERNS1_22ObIndexTreeLevelHandleERNS0_19ObSSTableReadHandleE:952 + 10.1: 10 + 11.1: 999 + 13: 0 + 14.1: 10 + 15.1: 0 + 16: 0 + 17.1: 10 + 18.1: 0 + 23.1: 0 + 30: 948 + 31: 948 + 32.1: 10 + 33.1: 1077 _ZN9oceanbase12blocksstable22ObIndexBlockRowScanner4openERKNS0_12MacroBlockIdERKNS0_16ObMicroBlockDataERKNS0_12ObDatumRangeEsbb:966 + 41.1: 10 + 43: 10 + 51: 1095 + 51.1: 1064 + 52.1: 10 + 55: 2038 + 4: _ZNK9oceanbase7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandle15is_prefetch_endEv:5706 + 1: 1902 + 6.2: _ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandle17reach_scanner_endEv:0 + 1: 0 + 8: _ZN9oceanbase6common16ObFixedArrayImplINS_7storage19ObSSTableReadHandleENS0_12ObIAllocatorEEixEl:14992 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_7storage19ObSSTableReadHandleEE2atEl:14992 + 6: 937 + 16: _ZN9oceanbase12blocksstable9ObSSTable19get_index_tree_rootERKNS_7storage15ObTableReadInfoERNS0_16ObMicroBlockDataEb:0 + 5: 0 + 31: _ZN9oceanbase12blocksstable9ObSSTable19get_index_tree_rootERKNS_7storage15ObTableReadInfoERNS0_16ObMicroBlockDataEb:13272 + 5: 948 _ZN9oceanbase12blocksstable13ObSSTableMeta19get_index_tree_rootERKNS_7storage15ObTableReadInfoERNS0_16ObMicroBlockDataEb:977 + 51.1: _ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandle15check_blockscanERKNS_12blocksstable13ObDatumRowkeyE:14785 + 2: 1095 + 3: 1095 + 4.1: 10 + 5.1: 10 + 7: 10 +_ZN9oceanbase6common13ObSEArrayImplINS0_10ObNewRangeELl1ENS0_19ModulePageAllocatorELb0EED2Ev:362890:4407 + 1: 4152 + 3: 4459 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObNewRangeELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:206503 + 4.1: 4152 + 4.3: 0 + 9: 4459 + 11: 0 + 13: 4459 + 15: 4459 + 24: 4459 + 5: _ZN9oceanbase6common10ObNewRangeD2Ev:0 + 2: _ZN9oceanbase6common10ObNewRange5resetEv:0 + 2: 0 + 3: _ZN9oceanbase6common12ObBorderFlag8set_dataEa:0 + 0: 0 + 4: _ZN9oceanbase6common8ObRowkey6assignEPNS0_5ObObjEl:0 + 2: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObNewRangeELl1ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZZN9oceanbase11transaction14ObTxVersionMgr18update_max_read_tsElENKUlPKcE_clES3_:362371:5277 + 0: 5386 + 0.1: 0 + 0.2: 5386 + 0.3: 5129 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:5594 + 0.5: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:87193 + 2: 5129 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase6common13ObSEArrayImplINS_5share6schema9ObColDescELl32ENS0_19ModulePageAllocatorELb0EED2Ev:361046:4689 + 1: 4403 + 3: 4402 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema9ObColDescELl32ENS0_19ModulePageAllocatorELb0EE7destroyEv:198144 + 9: 4403 + 11: 0 + 13: 4402 + 15: 4402 + 24: 4402 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema9ObColDescELl32ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:42 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:42 + 0: 1 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:31 + 2: 1 + 3: 1 _ZN9oceanbase3lib17ObMallocAllocator12get_instanceEv:1 + 4: 1 + 5: 1 _ZN9oceanbase3lib17ObMallocAllocator4freeEPv:1 + 4: _ZL12abort_unlessb:2 + 5: 1 + 6: 0 +_ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE5resetEv:359351:746 + 1: 718 + 6: 774 _ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE28clean_cur_dumping_partitionsEv:773 + 7: 777 _ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE23clean_dumped_partitionsEv:799 + 8: 749 _ZN9oceanbase3sql30ObHashPartitionExtendHashTableINS0_14ObHashPartColsEE7destroyEv:760 + 9: 780 _ZN9oceanbase3sql17ObChunkDatumStore5resetEv:815 + 13: 764 + 15: 764 + 20: 764 + 21: 764 + 22: 764 + 23: 764 + 24: 764 + 26: 764 + 28: 764 + 30: 764 + 31: 764 + 33: 764 + 34: 764 + 35: 764 + 38: 764 + 2: _ZN9oceanbase3sql17ObChunkDatumStore8Iterator5resetEv:36479 + 0: 754 + 0.1: 718 _ZN9oceanbase3sql17ObChunkDatumStore13ChunkIterator5resetEv:723 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator5resetEv:24703 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator12reset_cursorEv:24703 + 3: 779 + 3: _ZN9oceanbase3sql17ObChunkDatumStore8Iterator5resetEv:32626 + 0: 779 + 0.1: 754 _ZN9oceanbase3sql17ObChunkDatumStore13ChunkIterator5resetEv:764 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator5resetEv:20358 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator12reset_cursorEv:20358 + 3: 754 + 4: _ZN9oceanbase3sql17ObChunkDatumStore8Iterator5resetEv:33145 + 0: 779 + 0.1: 779 _ZN9oceanbase3sql17ObChunkDatumStore13ChunkIterator5resetEv:782 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator5resetEv:21033 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator12reset_cursorEv:21033 + 3: 779 + 5: _ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE17destroy_cur_partsEv:16587 + 2: 733 + 3: 5 + 4: 5 + 5: 5 + 7: 744 + 8: 5 + 9: 5 + 10: 5 + 10: _ZN9oceanbase6common4hash9ObHashMapINS_3sql24ObHashPartInfrastructureINS3_14ObHashPartColsENS3_19ObHashPartStoredRowEE14ObIntraPartKeyEPNS7_16ObIntraPartitionENS1_19NoPthreadDefendModeENS1_9hash_funcIS8_EENS1_8equal_toIS8_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS8_SA_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE5clearEv:9865 + 2: _ZN9oceanbase6common4hash11ObHashTableINS_3sql24ObHashPartInfrastructureINS3_14ObHashPartColsENS3_19ObHashPartStoredRowEE14ObIntraPartKeyENS1_11HashMapPairIS8_PNS7_16ObIntraPartitionEEENS1_9hash_funcIS8_EENS1_8equal_toIS8_EENS1_10pair_firstISC_EENS1_13SimpleAllocerINS1_15ObHashTableNodeISC_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE5clearEv:9865 + 3: 787 + 3.1: 8 + 6.1: 8 + 6.3: 8 + 7: 8 + 10: 8 + 11.1: 8 + 13: 8 + 14: 8 + 18: 8 + 20: 8 + 3: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_3sql24ObHashPartInfrastructureINS5_14ObHashPartColsENS5_19ObHashPartStoredRowEE14ObIntraPartKeyEPNS9_16ObIntraPartitionEEENS1_5NLockENS1_5NCondEEEEEbRKT_:7870 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_3sql24ObHashPartInfrastructureINS5_14ObHashPartColsENS5_19ObHashPartStoredRowEE14ObIntraPartKeyEPNS9_16ObIntraPartitionEEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:7870 + 2: 787 + 12: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_11HashMapPairINS_3sql24ObHashPartInfrastructureINS4_14ObHashPartColsENS4_19ObHashPartStoredRowEE14ObIntraPartKeyEPNS8_16ObIntraPartitionEEEE16check_magic_codeEv:136 + 0: 8 + 12.1: _ZL12abort_unlessb:72 + 5: 8 + 6: 8 + 11: _ZN9oceanbase6common4hash9ObHashMapINS_3sql24ObHashPartInfrastructureINS3_14ObHashPartColsENS3_19ObHashPartStoredRowEE14ObIntraPartKeyEPNS7_16ObIntraPartitionENS1_19NoPthreadDefendModeENS1_9hash_funcIS8_EENS1_8equal_toIS8_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS8_SA_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE5clearEv:10019 + 2: _ZN9oceanbase6common4hash11ObHashTableINS_3sql24ObHashPartInfrastructureINS3_14ObHashPartColsENS3_19ObHashPartStoredRowEE14ObIntraPartKeyENS1_11HashMapPairIS8_PNS7_16ObIntraPartitionEEENS1_9hash_funcIS8_EENS1_8equal_toIS8_EENS1_10pair_firstISC_EENS1_13SimpleAllocerINS1_15ObHashTableNodeISC_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE5clearEv:10019 + 3: 793 + 3.1: 8 + 6.1: 8 + 6.3: 8 + 7: 8 + 10: 8 + 11.1: 8 + 13: 8 + 14: 8 + 18: 8 + 20: 8 + 3: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_3sql24ObHashPartInfrastructureINS5_14ObHashPartColsENS5_19ObHashPartStoredRowEE14ObIntraPartKeyEPNS9_16ObIntraPartitionEEENS1_5NLockENS1_5NCondEEEEEbRKT_:7930 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_3sql24ObHashPartInfrastructureINS5_14ObHashPartColsENS5_19ObHashPartStoredRowEE14ObIntraPartKeyEPNS9_16ObIntraPartitionEEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:7930 + 2: 793 + 12: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_11HashMapPairINS_3sql24ObHashPartInfrastructureINS4_14ObHashPartColsENS4_19ObHashPartStoredRowEE14ObIntraPartKeyEPNS8_16ObIntraPartitionEEEE16check_magic_codeEv:136 + 0: 8 + 12.1: _ZL12abort_unlessb:72 + 5: 8 + 6: 8 + 36: _ZN9oceanbase6common16ObArenaAllocator5resetEv:37376 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:37376 + 4.1: 764 + 6: 8 + 7: 8 + 13: 764 + 14: 764 + 15: 764 + 18: 764 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:24 + 0: 8 + 5.1: _ZL12abort_unlessb:56 + 5: 8 + 6: 8 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:424 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:424 + 0: 8 + 0.2: 8 + 0.1: _ZN9oceanbase6common7ob_freeEPv:280 + 2: 8 + 3: 8 + 4: 8 + 5: 8 + 4: _ZL12abort_unlessb:72 + 5: 8 + 6: 8 +_ZN9oceanbase6common13ObSEArrayImplINS0_8ObStringELl1ENS0_19ModulePageAllocatorELb1EED2Ev:358430:4946 + 1: 4759 + 3: 4802 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS0_8ObStringELl1ENS0_19ModulePageAllocatorELb1EE7destroyEv:181960 + 9: 4759 + 11: 0 + 13: 4802 + 15: 4802 + 24: 4802 + 10: _ZN9oceanbase6common13ObSEArrayImplINS0_8ObStringELl1ENS0_19ModulePageAllocatorELb1EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase8observer8ObMPBase16clear_wb_contentERNS_3sql16ObSQLSessionInfoE:357992:4914 + 1: 4904 + 2: _ZN9oceanbase3sql16ObSQLSessionInfo18reset_warnings_bufEv:338376 + 3: 4904 _ZN9oceanbase6common11ObSqlString5resetEv:5070 + 2: _ZN9oceanbase6common15ObWarningBuffer5resetEv:294240 + 2: 4904 + 5: 4904 + 4: _ZN9oceanbase6common15ObWarningBuffer11WarningItem5resetEv:191256 + 2: 4904 + 3: 4904 + 5: 4904 + 8: 4904 +_ZN9oceanbase6common9ObKVCacheINS_12blocksstable17ObFuseRowCacheKeyENS2_19ObFuseRowCacheValueEE3getERKS3_RPKS4_RNS0_15ObKVCacheHandleE:354965:3440 + 1: 3386 + 2: 3386 + 3: 3386 + 4: 3386 + 5: 0 + 6.1: 0 + 8: 3386 _ZN9oceanbase6common15ObKVCacheHandle5resetEv:3413 + 9: 3361 _ZN9oceanbase6common15ObKVGlobalCache12get_instanceEv:3414 + 9.1: 3258 _ZN9oceanbase6common15ObKVGlobalCache3getElRKNS0_13ObIKVCacheKeyERPKNS0_15ObIKVCacheValueERPNS0_18ObKVMemBlockHandleE:3272 + 11.1: 0 + 14: 3278 + 20: 3361 +_ZN9oceanbase6common13ObSEArrayImplIPNS_3sql15ObCandiTableLocELl2ENS0_19ModulePageAllocatorELb0EED2Ev:353280:5059 + 1: 4653 + 3: 4776 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplIPNS_3sql15ObCandiTableLocELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv:180012 + 9: 4653 + 11: 0 + 13: 4776 + 15: 4776 + 24: 4776 + 10: _ZN9oceanbase6common13ObSEArrayImplIPNS_3sql15ObCandiTableLocELl2ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase8observer9ObMPUtils13init_flt_infoENS_7obmysql13Ob20ExtraInfoERNS_3sql16ObSQLSessionInfoEb:353198:5541 + 3: 5310 + 4: 5310 + 5: 0 + 6.2: 0 + 6.4: 0 + 6.13: 0 + 11.1: 0 + 11.2: 5335 _ZN9oceanbase8observer9ObMPUtils22init_flt_log_frameworkERNS_3sql16ObSQLSessionInfoEb:5476 + 11.4: 0 + 13: 5184 + 5: _ZN9oceanbase7obmysql13Ob20ExtraInfo21exist_full_link_traceEv:42480 + 0: _ZNK9oceanbase6common8ObString5emptyEv:42480 + 2: 5310 + 2.1: 0 + 9.1: _ZN9oceanbase6common8ObString5resetEv:0 + 3: 0 +_ZN9oceanbase6common11ObArrayImplINS_11transaction16ObTransIDAndAddrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev:351416:6038 + 1: 5668 + 3: 5668 + 3.2: 0 + 2: _ZN9oceanbase6common11ObArrayImplINS_11transaction16ObTransIDAndAddrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE7destroyEv:181376 + 2: 5668 + 3.1: 0 + 3.3: 0 + 4: 0 + 6: 0 + 7: 0 + 9: 5668 + 11: 5668 + 4: _ZN9oceanbase11transaction16ObTransIDAndAddrD2Ev:0 + 0: _ZN9oceanbase11transaction9ObTransIDD2Ev:0 + 0: 0 +_ZN9oceanbase11transaction12ObLSTxCtxMgr38get_ls_min_uncommit_tx_prepare_versionERl:350935:1 + 1: 1 + 2: 1 + 3: 1 + 5: 1 + 5.2: 44 + 7: 0 + 7.1: 45 + 8.1: 44 + 10.1: 45 + 13: 44 + 16: 45 + 17.3: 45 _ZN9oceanbase6common8TCRWLock10RLockGuardD2Ev:1 + 17.4: 44 + 3: _ZN9oceanbase6common8TCRWLock10RLockGuardC2ERS1_:8 + 0: 1 _ZN9oceanbase6common8TCRWLock6rdlockEl:1 + 5.1: _ZNK9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE5countEv:308 + 0: 44 + 6: _ZN9oceanbase11transaction31IterateMinPrepareVersionFunctorC2Ev:0 + 0: 0 + 7: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE8for_eachINS0_31IterateMinPrepareVersionFunctorEEEiRT_:346344 + 3.1: 13949 + 3.3: 13949 + 4: 13567 _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE22for_each_in_one_bucketINS0_31IterateMinPrepareVersionFunctorEEEiRT_l:13277 + 10: _ZNK9oceanbase11transaction31IterateMinPrepareVersionFunctor23get_min_prepare_versionEv:180 + 0: 45 +parse_malloc:350680:5527 + 1: 5288 + 4: 5288 + 7: 5522 _Z19parser_alloc_bufferPvl:5410 + 9: 5522 + 10: 5522 + 11: 5522 + 14: 5454 +_ZN9oceanbase6common16ObFixedArrayImplINS_3sql12NotParamInfoENS0_12ObIAllocatorEED2Ev:350420:5262 + 0: 4880 + 0.1: 5174 + 0.3: 0 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS_3sql12NotParamInfoENS0_12ObIAllocatorEE7destroyEv:201962 + 2: 4880 + 5: 4880 + 9: 0 + 10: 0 + 12: 5174 + 13: 5174 + 15: 5174 +_ZN9oceanbase6common16ObFixedArrayImplINS0_10ObTabletIDENS0_12ObIAllocatorEED2Ev:350410:5243 + 0: 5002 + 0.1: 5011 + 0.3: 0 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS0_10ObTabletIDENS0_12ObIAllocatorEE7destroyEv:200287 + 2: 5002 + 5: 5002 + 6.1: 0 + 6.3: 0 + 7: 0 + 9: 0 + 10: 0 + 12: 5011 + 13: 5011 + 15: 5011 + 7: _ZN9oceanbase6common10ObTabletIDD2Ev:0 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:0 + 0: 0 +_ZNK9oceanbase11transaction18ObTxLogBlockHeader9serializeEPclRl:350053:743 + 0: 701 + 0.1: 701 + 0.2: 701 + 0.4: 1 + 0.11: 1 + 0.12: 701 + 0.13: 767 _ZNK9oceanbase11transaction18ObTxLogBlockHeader19serialize_dispatch_EPclRlSt17integral_constantIbLb0EE:711 + 0.15: 1 + 0.21: 767 + 0.22: 767 + 0.24: 763 + 0.25: 1 + 0.32: 1 + 0.33: 1 + 0.35: 1 + 0.2: _ZN9oceanbase6common13serialization6encodeEPclRll:23133 + 2: _ZN9oceanbase6common13serialization11encode_vi64EPclRll:23133 + 3: 701 + 11: 701 + 0.4: _ZN9oceanbase6common8ObLogger10get_loggerEv:92 + 2: 1 + 2.1: 1 + 2.2: 1 + 2.3: 1 + 2.6: 1 + 0.5: _ZN9oceanbase6common7ObLogKVIRA13_KcLb0EEC2EPS2_S4_:40 + 0: 1 + 0.15: _ZN9oceanbase6common8ObLogger10get_loggerEv:92 + 2: 1 + 2.1: 1 + 2.2: 1 + 2.3: 1 + 2.6: 1 + 0.22: _ZN9oceanbase6common13serialization22encode_fixed_bytes_i64EPclRll:249275 + 8: 3835 + 9: 3835 + 0.27: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:44 + 0: 1 + 0.29: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:18 + 0: 1 + 0.31: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:37 + 0: 1 + 0.34: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:37 + 0: 1 +_ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql14ObDASBaseRtDefENS0_12ObIAllocatorEED2Ev:349993:5449 + 0: 4956 + 0.1: 5050 + 0.3: 11 + 0: _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql14ObDASBaseRtDefENS0_12ObIAllocatorEE7destroyEv:200567 + 2: 4956 + 5: 4956 + 9: 11 + 10: 11 + 12: 5050 + 13: 5050 + 15: 5050 +_ZN9oceanbase6common13ObSEArrayImplImLl4ENS0_19ModulePageAllocatorELb0EED2Ev:349798:5072 + 1: 4721 + 3: 4590 + 3.2: 4 + 2: _ZN9oceanbase6common13ObSEArrayImplImLl4ENS0_19ModulePageAllocatorELb0EE7destroyEv:176268 + 9: 4721 + 11: 4 + 13: 4590 + 15: 4590 + 24: 4590 + 10: _ZN9oceanbase6common13ObSEArrayImplImLl4ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:256 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:256 + 0: 4 + 0.2: 4 + 0.1: _ZN9oceanbase6common7ob_freeEPv:176 + 2: 4 + 3: 4 + 4: 4 + 5: 4 + 4: _ZL12abort_unlessb:36 + 5: 4 + 6: 4 +_ZN9oceanbase6common16ObFixedArrayImplINS_3sql14PsNotParamInfoENS0_12ObIAllocatorEED2Ev:349730:5294 + 0: 4997 + 0.1: 4995 + 0.3: 0 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS_3sql14PsNotParamInfoENS0_12ObIAllocatorEE7destroyEv:199834 + 2: 4997 + 5: 4997 + 9: 0 + 10: 0 + 12: 4995 + 13: 4995 + 15: 4995 +_ZN9oceanbase3sql17ObChunkDatumStore18alloc_block_bufferERPNS1_5BlockEllb:349456:764 + 2: 712 + 3: 712 + 4: 712 + 5: 712 + 6: 712 + 7: 0 + 8.1: 0 + 11: 761 + 12: 0 + 13.1: 0 + 14.1: 761 + 15: 0 + 16.1: 761 + 17: 761 + 18: 0 + 21: 761 + 22: 761 + 28: 761 + 4: _ZSt3maxIlERKT_S2_S2_:2136 + 5: 712 + 5: _ZN9oceanbase6common9next_pow2El:23496 + 2: 712 + 6: _ZNK9oceanbase3sql17ObChunkDatumStore9is_initedEv:2848 + 0: 712 + 10: _ZN9oceanbase3sql17ObChunkDatumStore13alloc_blk_memElb:104307 + 3: 712 + 4: 712 + 5.1: 0 + 7: 712 + 8: 768 _ZN9oceanbase6common11ObAllocator5allocElRKNS_3lib9ObMemAttrE:734 + 9: 768 + 10: 0 + 11.1: 0 + 15: 768 + 16: 768 + 17: 768 + 19: 768 + 20: 768 _ZN9oceanbase3sql20ObSqlMemMgrProcessor5allocEl:787 + 7.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:9968 + 5: 712 + 7: 712 + 8: 712 + 17: _ZN9oceanbase6common3maxEll:5376 + 2: 768 + 14.1: _ZN9oceanbase3sql17ObChunkDatumStore17init_block_bufferEPvlRPNS1_5BlockE:130131 + 2: 761 + 3: 761 + 4: 761 + 5: 761 + 6.1: 0 + 8: 761 + 9.1: 0 + 12: 761 + 13: 761 + 14: 761 + 17: 761 + 3: _ZN9oceanbase3sql17ObChunkDatumStore5BlockC2Ev:4566 + 0: 761 + 4: _ZN9oceanbase3sql17ObChunkDatumStore11BlockBufferC2Ev:10654 + 0: 761 + 5: _ZN9oceanbase3sql17ObChunkDatumStore11BlockBuffer4initEPcl:28918 + 2: 761 + 3: 761 + 4: 0 + 5.1: 0 + 7: 761 + 8: 761 + 9: 761 + 11: 0 + 8: _ZN9oceanbase3sql17ObChunkDatumStore11BlockBuffer7advanceEl:33484 + 3: 761 + 6.1: 0 + 7.1: 761 + 9.1: 0 + 11: 761 + 7.1: _ZNK9oceanbase3sql17ObChunkDatumStore11BlockBuffer6remainEv:7610 + 0: 761 + 12.1: _ZN9oceanbase3sql17ObChunkDatumStore5Block14set_block_sizeEj:2283 + 0: 761 + 15: _ZN9oceanbase3sql17ObChunkDatumStore12free_blk_memEPvl:0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 +_ZN9oceanbase8memtable13ObLockWaitMgr12post_processEbRb:348128:5410 + 1: 5048 + 3: 5048 + 4: 5048 + 6: 276 + 7: 276 + 8: 0 + 10: 276 + 11: 0 + 15: 0 + 16: 0 + 17: 0 + 18: 0 + 19: 0 + 19.1: 0 + 22.1: 0 + 24.1: 0 + 26: 0 + 27: 0 + 27.2: 0 + 28: 0 + 34: 0 + 36: 0 + 37.1: 0 + 44: 5064 + 11: _ZN9oceanbase3rpc14ObLockWaitNode9need_waitEv:0 + 0: 0 + 16: _ZN9oceanbase5share8detector21ObDeadLockDetectorMgr19is_deadlock_enabledEv:0 + 0: 0 + 17: _ZN9oceanbase11transaction9ObTransIDC2El:0 + 0: 0 + 18: _ZN9oceanbase11transaction9ObTransIDC2El:0 + 0: 0 +_ZN9oceanbase6common13ObSEArrayImplImLl2ENS0_19ModulePageAllocatorELb0EED2Ev:348040:5068 + 1: 4676 + 3: 4556 + 3.2: 20 + 2: _ZN9oceanbase6common13ObSEArrayImplImLl2ENS0_19ModulePageAllocatorELb0EE7destroyEv:175948 + 9: 4676 + 11: 20 + 13: 4556 + 15: 4556 + 24: 4556 + 10: _ZN9oceanbase6common13ObSEArrayImplImLl2ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:1280 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:1280 + 0: 20 + 0.2: 20 + 0.1: _ZN9oceanbase6common7ob_freeEPv:880 + 2: 20 + 3: 20 + 4: 20 + 5: 20 + 4: _ZL12abort_unlessb:180 + 5: 20 + 6: 20 +_ZZNK9oceanbase5share6schema17ObPartitionSchema24get_tablet_and_object_idERNS_6common10ObTabletIDERmENK5$_330clEPKc.238ab44b22ba0c710eddc3a8b49e8eb3:347209:5186 + 0: 4919 + 0.1: 0 + 0.2: 0 + 0.5: 4783 + 0.7: 4919 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:5017 + 0.9: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:83623 + 2: 4919 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.8: _ZN9oceanbase6common7ObLogKVImLb1EEC2EPKcOKm:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVINS0_10ObTabletIDELb1EEC2EPKcOKS2_:0 + 0: 0 +_ZN9oceanbase3sql17ObChunkDatumStore13ChunkIteratorD2Ev:346560:1858 + 1: 1778 + 3: 1804 _ZN9oceanbase12blocksstable17ObTmpFileIOHandleD1Ev:1939 + 3.1: 0 + 3.2: 0 + 2: _ZN9oceanbase3sql17ObChunkDatumStore13ChunkIterator12reset_cursorEl:273298 + 2: 1778 + 4: 1778 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10.1: 0 + 14: 1778 _ZN9oceanbase12blocksstable17ObTmpFileIOHandle5resetEv:1895 + 17: 1804 + 18: 0 + 20: 1804 + 21: 0 + 25: 1804 + 28.1: 1804 + 29: 0 + 32.1: 1804 + 33: 0 + 36: 1804 + 37: 1804 + 38: 1804 + 39: 1804 + 8: _ZN9oceanbase3sql17ObChunkDatumStore13callback_freeEl:0 + 0: 0 + 0.1: 0 + 9: _ZN9oceanbase3sql17ObChunkDatumStore13ChunkIterator18read_file_iter_endEv:0 + 0: 0 + 18: _ZNK9oceanbase3sql17ObChunkDatumStore11BlockBuffer8mem_sizeEv:0 + 0: 0 + 18.1: _ZN9oceanbase3sql17ObChunkDatumStore13ChunkIterator10free_blockEPNS1_5BlockElb:0 + 31: 0 + 32: 0 + 32: _ZN9oceanbase3sql17ObChunkDatumStore13callback_freeEl:0 + 0: 0 + 0.1: 0 + 21: _ZNK9oceanbase3sql17ObChunkDatumStore11BlockBuffer8mem_sizeEv:0 + 0: 0 + 21.1: _ZN9oceanbase3sql17ObChunkDatumStore13ChunkIterator10free_blockEPNS1_5BlockElb:0 + 31: 0 + 32: 0 + 32: _ZN9oceanbase3sql17ObChunkDatumStore13callback_freeEl:0 + 0: 0 + 0.1: 0 + 28.1: _ZNK9oceanbase3sql17ObChunkDatumStore9BlockList9get_firstEv:12628 + 0: 1804 + 29: _ZN9oceanbase3sql17ObChunkDatumStore9BlockList12remove_firstEv:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 29.1: _ZN9oceanbase3sql17ObChunkDatumStore13ChunkIterator10free_blockEPNS1_5BlockElb:0 + 31: 0 + 32: 0 + 32: _ZN9oceanbase3sql17ObChunkDatumStore13callback_freeEl:0 + 0: 0 + 0.1: 0 + 32.1: _ZNK9oceanbase3sql17ObChunkDatumStore9BlockList9get_firstEv:12628 + 0: 1804 + 33: _ZN9oceanbase3sql17ObChunkDatumStore9BlockList12remove_firstEv:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 33.1: _ZN9oceanbase3sql17ObChunkDatumStore13ChunkIterator10free_blockEPNS1_5BlockElb:0 + 31: 0 + 32: 0 + 32: _ZN9oceanbase3sql17ObChunkDatumStore13callback_freeEl:0 + 0: 0 + 0.1: 0 +_ZN9oceanbase3sql17ObChunkDatumStore13ChunkIteratorD1Ev:346560:1858 + 1: 1778 + 3: 1804 _ZN9oceanbase12blocksstable17ObTmpFileIOHandleD1Ev:1939 + 3.1: 0 + 3.2: 0 + 2: _ZN9oceanbase3sql17ObChunkDatumStore13ChunkIterator12reset_cursorEl:273298 + 2: 1778 + 4: 1778 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10.1: 0 + 14: 1778 _ZN9oceanbase12blocksstable17ObTmpFileIOHandle5resetEv:1895 + 17: 1804 + 18: 0 + 20: 1804 + 21: 0 + 25: 1804 + 28.1: 1804 + 29: 0 + 32.1: 1804 + 33: 0 + 36: 1804 + 37: 1804 + 38: 1804 + 39: 1804 + 8: _ZN9oceanbase3sql17ObChunkDatumStore13callback_freeEl:0 + 0: 0 + 0.1: 0 + 9: _ZN9oceanbase3sql17ObChunkDatumStore13ChunkIterator18read_file_iter_endEv:0 + 0: 0 + 18: _ZNK9oceanbase3sql17ObChunkDatumStore11BlockBuffer8mem_sizeEv:0 + 0: 0 + 18.1: _ZN9oceanbase3sql17ObChunkDatumStore13ChunkIterator10free_blockEPNS1_5BlockElb:0 + 31: 0 + 32: 0 + 32: _ZN9oceanbase3sql17ObChunkDatumStore13callback_freeEl:0 + 0: 0 + 0.1: 0 + 21: _ZNK9oceanbase3sql17ObChunkDatumStore11BlockBuffer8mem_sizeEv:0 + 0: 0 + 21.1: _ZN9oceanbase3sql17ObChunkDatumStore13ChunkIterator10free_blockEPNS1_5BlockElb:0 + 31: 0 + 32: 0 + 32: _ZN9oceanbase3sql17ObChunkDatumStore13callback_freeEl:0 + 0: 0 + 0.1: 0 + 28.1: _ZNK9oceanbase3sql17ObChunkDatumStore9BlockList9get_firstEv:12628 + 0: 1804 + 29: _ZN9oceanbase3sql17ObChunkDatumStore9BlockList12remove_firstEv:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 29.1: _ZN9oceanbase3sql17ObChunkDatumStore13ChunkIterator10free_blockEPNS1_5BlockElb:0 + 31: 0 + 32: 0 + 32: _ZN9oceanbase3sql17ObChunkDatumStore13callback_freeEl:0 + 0: 0 + 0.1: 0 + 32.1: _ZNK9oceanbase3sql17ObChunkDatumStore9BlockList9get_firstEv:12628 + 0: 1804 + 33: _ZN9oceanbase3sql17ObChunkDatumStore9BlockList12remove_firstEv:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 33.1: _ZN9oceanbase3sql17ObChunkDatumStore13ChunkIterator10free_blockEPNS1_5BlockElb:0 + 31: 0 + 32: 0 + 32: _ZN9oceanbase3sql17ObChunkDatumStore13callback_freeEl:0 + 0: 0 + 0.1: 0 +_ZN9oceanbase12blocksstable23ObIMicroBlockRowScanner4initERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextEPKNS0_9ObSSTableE:346545:1149 + 4: 1101 + 5: 1101 + 6: 1101 + 7: 0 + 8.1: 0 + 9.1: 1123 _ZNK9oceanbase7storage16ObTableIterParam8is_validEv:1137 + 9.3: 1116 + 11: 0 + 12.1: 0 + 13.1: 1116 + 14.1: 1116 + 14.3: 1116 + 15: 0 + 16.1: 0 + 19: 1101 + 20: 1101 + 20.1: 1113 _ZN9oceanbase12blocksstable10ObDatumRow4initERNS_6common12ObIAllocatorEl:1186 + 21.1: 0 + 23: 1042 + 24: 1042 + 25: 1042 + 26: 1042 + 27: 1042 + 28: 1042 + 29: 13 + 34: 1069 + 9.2: _ZNK9oceanbase7storage20ObTableAccessContext8is_validEv:42408 + 1: 1116 + 2: 1116 + 2.1: 1116 + 3: 1116 + 3.1: 1116 + 4: 1116 + 4.1: 1116 + 13.1: _ZNK9oceanbase7storage16ObTableIterParam13get_read_infoEb:18972 + 2: 1116 + 2.3: 1116 + 14.2: _ZNK9oceanbase7storage15ObTableReadInfo8is_validEv:55800 + 2: 1116 + 3: 1116 + 3.1: 1116 + 4: 1116 + 5.1: 1116 + 6: 1116 + 7: 1116 + 7.1: 1116 + 3.1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:7812 + 0: 1116 + 6.1: _ZNK9oceanbase12blocksstable19ObStorageDatumUtils8is_validEv:7812 + 0: 1116 + 20: _ZNK9oceanbase7storage16ObTableIterParam19get_max_out_col_cntEv:44404 + 2: 1101 + 2.3: 13 + 2: _ZNK9oceanbase7storage16ObTableIterParam20get_full_out_col_cntEv:18717 + 2: 1101 + 2.1: _ZNK9oceanbase7storage15ObTableReadInfo17get_request_countEv:7707 + 1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:7707 + 0: 1101 + 2.4: _ZNK9oceanbase7storage16ObTableIterParam15get_out_col_cntEv:18873 + 2: 1101 + 2.1: _ZNK9oceanbase7storage15ObTableReadInfo17get_request_countEv:7798 + 1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:7798 + 0: 1101 +_ZN9oceanbase3sql12ObSortOpImpl4initEmPKNS_6common8ObIArrayINS0_20ObSortFieldCollationEEEPKNS3_INS2_9ObCmpFuncEEEPNS0_9ObEvalCtxEPNS0_13ObExecContextEbbblll:346395:579 + 12: 553 + 13: 553 + 14: 553 + 15: 0 + 16.1: 0 + 17.1: 553 + 18: 0 + 19.1: 0 + 20.1: 553 + 21.1: 553 + 23: 0 + 24.1: 0 + 27: 534 + 28: 534 + 29: 534 + 30: 534 + 31: 534 + 32: 534 + 33: 534 + 34: 534 + 35: 534 + 36: 534 + 37: 534 + 41: 534 + 41.1: 511 + 41.2: 0 + 41.6: 0 + 41.7: 540 _ZN9oceanbase3lib17__MemoryContext__14create_contextIJRNS0_12ContextParamEPNS0_10StaticInfoEEEEiRNS0_13MemoryContextERKNS0_11DynamicInfoEDpOT_:512 + 41.8: 540 + 42.1: 0 + 43.1: 540 + 44: 0 + 45.1: 0 + 46.1: 567 _ZN9oceanbase3sql17ObChunkDatumStore4initElmlPKcbjl:567 + 52.1: 0 + 53.1: 567 + 53.2: 0 + 54: 567 + 54.1: 0 + 55.2: 0 + 56: 0 + 57: 0 + 58.1: 0 + 61: 0 + 63: 537 + 65: 537 + 69: 551 + 14: _ZNK9oceanbase3sql12ObSortOpImpl9is_initedEv:2212 + 0: 553 + 38: _ZN9oceanbase3lib12ContextParamC2Ev:11748 + 3: 534 + 4: 534 + 39: _ZN9oceanbase3lib12ContextParam12set_mem_attrIJRKmRA11_KcNS_6common8ObCtxIds11ObCtxIdEnumEEEERS1_DpOT_:16020 + 2: 534 + 40: _ZN9oceanbase3lib12ContextParam14set_propertiesEl:5874 + 2: 534 + 41: _ZN9oceanbase3libeqEDnRKNS0_13MemoryContextE:2670 + 1: 534 + 41.1: _ZN9oceanbase3lib4Flow11current_ctxEv:14952 + 2: _ZN9oceanbase3lib4Flow12current_flowEv:14952 + 3: 534 + 8: 0 + 12: 0 + 8.1: _ZN9oceanbase3lib4FlowC2ERNS0_13MemoryContextE:0 + 1: 0 + 3: 0 + 10: _ZN9oceanbase3lib4Flow4initEv:0 + 4: 0 + 7: 0 + 8: 0 + 9: 0 + 12: 0 + 7: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 41.9: _ZNK9oceanbase3lib13MemoryContextptEv:6408 + 1: 534 + 41.10: _ZN9oceanbase3lib11DynamicInfoC2Ev:37288 + 1: 534 + 2: 511 + 1: _Z9ob_gettidv:28302 + 3: 534 + 4: 0 + 2: _Z13get_tid_cachev:13350 + 7: 534 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:534 + 2: 534 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:535 + 43.1: _ZN9oceanbase3libeqEDnRKNS0_13MemoryContextE:2700 + 1: 540 + 55.1: _ZN9oceanbase3lib17__MemoryContext__19get_arena_allocatorEv:0 + 0: 0 + 60: _ZNK9oceanbase3lib13MemoryContextptEv:2148 + 1: 537 + 60.3: _ZN9oceanbase3lib17__MemoryContext__20get_malloc_allocatorEv:3759 + 0: 537 + 60.6: _ZN9oceanbase6common11ObArrayImplIPNS_3sql17ObChunkDatumStore9StoredRowENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEE19set_block_allocatorERKS6_:18795 + 0: _ZN9oceanbase6common19ModulePageAllocatoraSERKS1_:18795 + 2: 537 + 3: 537 + 4: 537 + 61: _ZN9oceanbase3sql20ObSqlMemMgrProcessor10get_dir_idEv:9129 + 2: 537 + 3.1: 0 + 5: 0 + 61.1: _ZN9oceanbase3sql17ObChunkDatumStore10set_dir_idEl:3759 + 0: 537 + 62: _ZNK9oceanbase3lib13MemoryContextptEv:0 + 1: 0 + 62.1: _ZN9oceanbase3lib17__MemoryContext__20get_malloc_allocatorEv:3759 + 0: 537 + 62.2: _ZN9oceanbase3sql17ObChunkDatumStore13set_allocatorERNS_6common12ObIAllocatorE:3759 + 0: 537 + 63: _ZN9oceanbase3sql17ObChunkDatumStore21set_io_event_observerEPNS0_17ObIOEventObserverE:3759 + 2: 537 + 64: _ZN9oceanbase3sql20ObSqlWorkAreaProfile12set_exec_ctxEPNS0_13ObExecContextE:3759 + 0: 537 +_ZNK9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS_3sql17ObILibCacheObjectEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE18foreach_refactoredINS4_25ObDumpAllCacheObjByTypeOpEEEiRT_:344276:0 + 1: 0 + 2: 0 + 5: 0 + 5.1: 0 + 6.1: 0 + 7: 0 + 9.1: 2905 + 9.2: 2906 + 9.3: 2906 + 9.5: 2905 + 10: 2906 + 13: 3378 + 14.1: 3385 + 14.3: 3385 + 16: 9 _ZN9oceanbase3sql19ObDumpAllCacheObjOpclERNS_6common4hash11HashMapPairImPNS0_17ObILibCacheObjectEEE:9 + 16.1: 7 + 17.1: 0 + 19: 7 + 22.1: 0 + 24: 0 + 5: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImPNS_3sql17ObILibCacheObjectEEENS0_7ObLatchENS1_5NCondEEEEEbRKT_:0 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImPNS_3sql17ObILibCacheObjectEEENS0_7ObLatchENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:0 + 2: 0 + 12: _ZN9oceanbase6common4hash16ObBucketLockCondINS1_11HashMapPairImPNS_3sql17ObILibCacheObjectEEENS1_24LatchReadWriteDefendModeEE4lockEv:31966 + 2: 2906 + 12.1: _ZN9oceanbase6common4hash15LatchReadLockerC2ERNS0_7ObLatchE:161098 + 0: 2906 + 2: 2906 + 3: 3378 _ZN9oceanbase6common7ObLatch6rdlockEjl:2913 + 4.1: 0 + 6: 3378 + 7: 3378 + 15: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_11HashMapPairImPNS_3sql17ObILibCacheObjectEEEE16check_magic_codeEv:117 + 0: 9 + 15.1: _ZL12abort_unlessb:18 + 5: 9 + 6: 0 + 22: _ZN9oceanbase6common4hash15LatchReadLockerD2Ev:40560 + 2: 3380 + 3: 3380 _ZN9oceanbase6common7ObLatch6unlockEPKj:3381 + 3.1: 0 +_ZN9oceanbase7storage11ObLSService6get_lsERKNS_5share6ObLSIDERNS0_10ObLSHandleENS0_10ObLSGetModE:343524:1074 + 4: 998 + 5: 998 + 7: 998 + 8: 0 + 9.1: 0 + 10.1: 998 + 11: 0 + 12.1: 0 + 13.1: 998 + 14: 0 + 15.1: 0 + 16.1: 1067 + 17.1: 0 + 20: 1067 + 13.1: _ZNK9oceanbase5share6ObLSID8is_validEv:3992 + 0: 998 + 16.1: _ZNK9oceanbase7storage7ObLSMap6get_lsERKNS_5share6ObLSIDERNS0_10ObLSHandleENS0_10ObLSGetModE:246785 + 4: 998 + 8: 998 + 9: 0 + 10.1: 0 + 12: 1018 _ZNK9oceanbase5share6ObLSID4hashEv:1031 + 13: 1018 + 14: 980 + 15.1: 980 + 16.2: 980 + 19: 0 + 24: 0 + 25.2: 1021 + 26.1: 0 + 28.1: 0 + 29: 1067 + 13: _ZN9oceanbase5share20ObQSyncLockReadGuardC2ERNS0_11ObQSyncLockE:5090 + 0: 1018 + 1: 1018 _ZN9oceanbase5share11ObQSyncLock6rdlockEv:1030 + 16.1: _ZNK9oceanbase5share6ObLSIDeqERKS1_:9800 + 0: 980 + 25.1: _ZN9oceanbase7storage10ObLSHandle6set_lsERKNS0_7ObLSMapERNS0_4ObLSERKNS0_10ObLSGetModE:150780 + 4: 1021 + 5: 1021 + 6: 1021 + 7: 1021 + 3: _ZN9oceanbase7storage10ObLSHandle5resetEv:7840 + 2: 980 + 2.1: 0 + 3: 0 + 5: 0 + 6: 0 + 3: _ZNK9oceanbase7storage7ObLSMap9revert_lsEPNS0_4ObLSENS0_10ObLSGetModE:0 + 3: 0 + 3.1: 0 + 4.1: 0 + 5: 0 + 3: _ZN9oceanbase7storage4ObLS11get_ref_mgrEv:0 + 0: 0 + 5: _ZNK9oceanbase7storage7ObLSMap7free_lsEPNS0_4ObLSE:0 + 3: 0 + 4: 0 + 4: _ZN9oceanbase7storage4ObLS11get_ref_mgrEv:0 + 0: 0 + 4.1: _ZN9oceanbase6common16ObMultiModRefMgrINS_7storage10ObLSGetModEE3incES3_:121499 + 1: 1021 + 2: 1021 + 3: 1021 + 4: 0 + 5.1: 0 + 6.1: 1021 + 9: 1021 + 10: 1021 + 12: 1021 + 9: _ZN9oceanbase6common8get_itidEv:28588 + 4: 1021 + 5: 0 + 6: 0 + 8: 0 + 10: _ZN9oceanbase6common5ObRef3incEv:16336 + 1.1: 1021 + 28: _ZN9oceanbase5share20ObQSyncLockReadGuardD2Ev:5105 + 1: 1021 _ZN9oceanbase5share11ObQSyncLock8rdunlockEv:1076 + 1.1: 0 +_ZNK9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS_3sql17ObILibCacheObjectEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE18foreach_refactoredINS4_16ObGetAllPlanIdOpEEEiRT_:343184:0 + 1: 0 + 2: 0 + 5: 0 + 5.1: 0 + 6.1: 0 + 7: 0 + 9.1: 2902 + 9.2: 2902 + 9.3: 2902 + 9.5: 2902 + 10: 2902 + 13: 3360 + 14.1: 3372 + 14.3: 3372 + 16: 9 _ZN9oceanbase3sql16ObGetAllPlanIdOpclERNS_6common4hash11HashMapPairImPNS0_17ObILibCacheObjectEEE:9 + 16.1: 9 + 17.1: 0 + 19: 9 + 22.1: 0 + 24: 0 + 5: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImPNS_3sql17ObILibCacheObjectEEENS0_7ObLatchENS1_5NCondEEEEEbRKT_:0 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImPNS_3sql17ObILibCacheObjectEEENS0_7ObLatchENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:0 + 2: 0 + 12: _ZN9oceanbase6common4hash16ObBucketLockCondINS1_11HashMapPairImPNS_3sql17ObILibCacheObjectEEENS1_24LatchReadWriteDefendModeEE4lockEv:31922 + 2: 2902 + 12.1: _ZN9oceanbase6common4hash15LatchReadLockerC2ERNS0_7ObLatchE:160676 + 0: 2902 + 2: 2902 + 3: 3360 _ZN9oceanbase6common7ObLatch6rdlockEjl:2907 + 4.1: 0 + 6: 3360 + 7: 3360 + 15: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_11HashMapPairImPNS_3sql17ObILibCacheObjectEEEE16check_magic_codeEv:117 + 0: 9 + 15.1: _ZL12abort_unlessb:18 + 5: 9 + 6: 0 + 22: _ZN9oceanbase6common4hash15LatchReadLockerD2Ev:40188 + 2: 3349 + 3: 3349 _ZN9oceanbase6common7ObLatch6unlockEPKj:3350 + 3.1: 0 +_ZN9oceanbase3sql12ObDMLService25check_row_whether_changedERKNS0_10ObUpdCtDefERNS0_10ObUpdRtDefERNS0_9ObEvalCtxE:340988:511 + 3: 477 + 4: 477 + 5: 469 + 5.2: 468 + 5.3: 0 + 5.5: 0 + 5.6: 0 + 5.14: 0 + 6: 468 + 9: 0 + 10: 0 + 11: 0 + 12.1: 0 + 27.2: 0 + 27.6: 0 + 27.8: 0 + 27.9: 0 + 27.11: 0 + 28: 0 + 29: 0 + 30: 0 + 31: 0 + 31.1: 0 + 32: 0 + 32.1: 0 + 33.1: 0 + 35: 0 + 41: 0 + 43.1: 468 + 44: 468 + 47.2: 468 + 47.6: 458 + 47.8: 632 + 47.9: 632 + 47.11: 458 + 49: 469 + 50: 469 + 51: 469 + 52: 478 + 52.1: 1 + 53: 1 + 53.1: 488 + 54.1: 1 + 56: 488 _ZN9oceanbase6common7ObDatum12binary_equalERKS1_S3_:527 + 63: 1 + 65: 455 + 65.1: 295 + 66: 455 + 68: 295 + 72.1: 1 + 72.2: 0 + 72.3: 0 + 74: 0 + 75: 0 + 76: 0 + 77: 0 + 78: 0 + 78.1: 0 + 79: 0 + 79.1: 0 + 80.1: 0 + 81.1: 0 + 83: 0 + 84.1: 0 + 93: 449 + 93.2: 1 + 93.3: 1 + 93.5: 1 + 93.6: 1 + 93.14: 1 + 94: 445 + 5: _ZN9oceanbase6common12ObCurTraceId3getEv:11925 + 2: _ZN9oceanbase6common12ObCurTraceId12get_trace_idEv:11925 + 5: 477 + 5.1: 0 + 5.1: _ZN9oceanbase6common12ObCurTraceId7TraceIdC2Ev:0 + 0: 0 + 5.2: _ZN9oceanbase3lib20is_trace_log_enabledEv:3765 + 2: 485 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:503 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:3276 + 2: 468 + 5.5: _ZN9oceanbase3lib20is_trace_log_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:0 + 2: 0 + 5.13: _Z17CHECK_TRACE_TIMESmPKm:50314 + 10.1: 477 + 11.1: 477 + 12: 477 + 13: 469 + 14: 469 + 18: 0 + 19: 0 + 20: 0 + 5.15: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:0 + 0: 0 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 12.1: _ZN9oceanbase3lib13is_mysql_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 27.2: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql13ColumnContentEE5countEv:0 + 0: 0 + 27.11: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql13ColumnContentEE5countEv:0 + 0: 0 + 31: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:0 + 6: 0 + 31.2: _ZNK9oceanbase3sql6ObExpr4evalERNS0_9ObEvalCtxERPNS_6common7ObDatumE:0 + 4: 0 + 6: 0 + 7: 0 + 9: 0 + 10: 0 + 10.1: 0 + 11: 0 + 13: 0 + 15.1: 0 + 15.2: 0 + 17: 0 + 18: 0 + 20: 0 + 21: 0 + 22: 0 + 24: 0 + 9: _ZNK9oceanbase3sql6ObExpr15is_batch_resultEv:0 + 0: 0 + 11: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 32.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:0 + 6: 0 + 32.2: _ZNK9oceanbase3sql6ObExpr4evalERNS0_9ObEvalCtxERPNS_6common7ObDatumE:0 + 4: 0 + 6: 0 + 7: 0 + 9: 0 + 10: 0 + 10.1: 0 + 11: 0 + 13: 0 + 15.1: 0 + 15.2: 0 + 17: 0 + 18: 0 + 20: 0 + 21: 0 + 22: 0 + 24: 0 + 9: _ZNK9oceanbase3sql6ObExpr15is_batch_resultEv:0 + 0: 0 + 11: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 43.1: _ZN9oceanbase3lib13is_mysql_modeEv:20592 + 2: _ZN9oceanbase3lib15get_compat_modeEv:20592 + 2: 468 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:13104 + 2: 468 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 47.2: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql13ColumnContentEE5countEv:4680 + 0: 468 + 47.11: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql13ColumnContentEE5countEv:3206 + 0: 458 + 52: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:3283 + 6: 469 + 52.2: _ZNK9oceanbase3sql6ObExpr4evalERNS0_9ObEvalCtxERPNS_6common7ObDatumE:18047 + 4: 469 + 6: 469 + 7: 469 + 9: 469 + 10: 2 + 10.1: 2 + 11: 2 + 13: 1 + 15.1: 469 + 15.2: 2 + 17: 2 + 18: 2 + 20: 2 + 21: 2 + 22: 2 + 24: 1 + 9: _ZNK9oceanbase3sql6ObExpr15is_batch_resultEv:1876 + 0: 469 + 11: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:8 + 0: 2 + 53.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:3346 + 6: 478 + 53.2: _ZNK9oceanbase3sql6ObExpr4evalERNS0_9ObEvalCtxERPNS_6common7ObDatumE:22161 + 4: 478 + 6: 478 + 7: 478 + 9: 478 + 10: 2 + 10.1: 2 + 11: 2 + 13: 1 + 15.1: 478 + 15.2: 478 + 17: 2 + 18: 2 + 20: 2 + 21: 2 + 22: 2 + 24: 1 + 9: _ZNK9oceanbase3sql6ObExpr15is_batch_resultEv:1912 + 0: 478 + 11: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:8 + 0: 2 + 73: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql13ColumnContentEE2atEl:0 + 6: 0 + 78: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:0 + 6: 0 + 78.2: _ZNK9oceanbase3sql6ObExpr4evalERNS0_9ObEvalCtxERPNS_6common7ObDatumE:0 + 4: 0 + 6: 0 + 7: 0 + 9: 0 + 10: 0 + 10.1: 0 + 11: 0 + 13: 0 + 15.1: 0 + 15.2: 0 + 17: 0 + 18: 0 + 20: 0 + 21: 0 + 22: 0 + 24: 0 + 9: _ZNK9oceanbase3sql6ObExpr15is_batch_resultEv:0 + 0: 0 + 11: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 79.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:0 + 6: 0 + 79.2: _ZNK9oceanbase3sql6ObExpr4evalERNS0_9ObEvalCtxERPNS_6common7ObDatumE:0 + 4: 0 + 6: 0 + 7: 0 + 9: 0 + 10: 0 + 10.1: 0 + 11: 0 + 13: 0 + 15.1: 0 + 15.2: 0 + 17: 0 + 18: 0 + 20: 0 + 21: 0 + 22: 0 + 24: 0 + 9: _ZNK9oceanbase3sql6ObExpr15is_batch_resultEv:0 + 0: 0 + 11: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 93: _ZN9oceanbase6common12ObCurTraceId3getEv:11225 + 2: _ZN9oceanbase6common12ObCurTraceId12get_trace_idEv:11225 + 5: 449 + 5.1: 0 + 5.1: _ZN9oceanbase6common12ObCurTraceId7TraceIdC2Ev:0 + 0: 0 + 93.2: _ZN9oceanbase3lib20is_trace_log_enabledEv:12 + 2: 1 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:7 + 2: 1 + 93.5: _ZN9oceanbase3lib20is_trace_log_enabledEv:12 + 2: 1 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:7 + 2: 1 + 93.13: _Z17CHECK_TRACE_TIMESmPKm:47176 + 10.1: 449 + 11.1: 449 + 12: 449 + 13: 449 + 14: 449 + 18: 1 + 19: 1 + 20: 1 + 93.15: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:23 + 0: 1 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:5 + 2: 1 +_ZN9oceanbase7storage15ObTenantFreezer34check_tenant_out_of_memstore_limitERb:340309:2585 + 1: 2508 + 2: 2508 + 7: 2324 + 8: 0 + 9.1: 0 + 11: 2324 + 12: 2324 + 12.1: 2324 + 13: 2324 + 15: 2322 + 17: 2 + 18: 2 + 19: 2 + 20: 2 + 21: 2 + 22: 2 + 23: 0 + 24.1: 0 + 25.1: 2 _ZN9oceanbase7storage15ObTenantFreezer21get_tenant_mem_usage_ERlS2_S2_S2_:2 + 25.2: 3 + 29.1: 0 + 31: 3 + 33: 3 + 34.1: 0 + 37: 2324 + 38: 2324 + 40: 2324 + 6: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:2508 + 2: 2508 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:2587 + 21: _ZN9oceanbase6common14SpinRLockGuardC2ERKNS0_10SpinRWLockE:58 + 1: 2 + 3: 2 + 4.1: 0 + 3: _ZN9oceanbase6common10SpinRWLock6rdlockEl:28 + 0: 2 _ZN9oceanbase6common7ObLatch6rdlockEjl:2 + 34: _ZN9oceanbase6common14SpinRLockGuardD2Ev:63 + 2: 3 + 3: 3 + 3.1: 2 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase6common10SpinRWLock6unlockEv:9 + 0: 3 _ZN9oceanbase6common7ObLatch6unlockEPKj:3 +_ZN9oceanbase8memtable13ObMemtableCtx10write_authEb:338976:2078 + 1: 1944 + 2: 1944 + 3: 1944 + 3.3: 1976 + 9: 1976 + 10: 11 + 11.1: 11 + 13.1: 1976 + 14: 11 + 15.1: 11 + 17.1: 1976 + 18: 11 + 19.1: 11 + 21.1: 1976 + 26: 11 + 30.1: 11 + 32: 1976 + 37.1: 2038 _ZZN9oceanbase8memtable13ObMemtableCtx10write_authEbENK5$_285clEPKc.1dd22efca7fa83ae50e8099a04ad3959:2150 + 38: 2089 + 4: _ZN9oceanbase6common10SpinRWLock10try_wrlockEv:4008 + 0: 966 _ZN9oceanbase6common7ObLatch10try_wrlockEjPKj:996 + 5: _ZN9oceanbase6common10SpinRWLock10try_rdlockEv:6872 + 0: 1944 _ZN9oceanbase6common7ObLatch10try_rdlockEj:1051 + 26.1: _ZN9oceanbase6common10SpinRWLock6wrlockEl:99 + 0: 11 + 26.2: _ZN9oceanbase6common10SpinRWLock6rdlockEl:154 + 0: 11 + 34: _ZN9oceanbase6common10SpinRWLock6unlockEv:165 + 0: 11 +_ZN9oceanbase8keybtree11WriteHandle9find_pathEPNS0_9BtreeNodeENS_8memtable20ObStoreRowkeyWrapperE:338877:85 + 1: 85 + 9: 0 + 11.3: 0 + 12.3: 0 + 13: 11 + 18.1: 437 + 18.3: 437 + 19: 549 + 21.1: 551 + 23.1: 496 + 23.2: 509 + 26: 509 + 28: 0 + 35.1: 509 + 36: 84 + 39: 95 + 45: 95 + 8: _ZN9oceanbase8keybtree11MultibitSet5resetEv:595 + 0: 85 + 9: _ZN9oceanbase8keybtree4Path3getElRPNS0_9BtreeNodeERi:680 + 3.1: 85 + 3.2: 85 + 11.1: _ZN9oceanbase8keybtree4Path3popERPNS0_9BtreeNodeERi:0 + 3: 0 + 8: 0 + 9: 0 + 31: 0 + 11.2: _ZN9oceanbase8keybtree11WriteHandle14is_hold_wrlockEPNS0_9BtreeNodeE:0 + 0: _ZNK9oceanbase8keybtree9BtreeNode14is_hold_wrlockEt:0 + 0: _ZNK9oceanbase8keybtree6RWLock14is_hold_wrlockEt:0 + 0: 0 + 12.1: _ZN9oceanbase8keybtree4Path3popERPNS0_9BtreeNodeERi:0 + 3: 0 + 8: 0 + 9: 0 + 129.3: 0 + 12.2: _ZN9oceanbase8keybtree11WriteHandle14is_hold_wrlockEPNS0_9BtreeNodeE:0 + 0: _ZNK9oceanbase8keybtree9BtreeNode14is_hold_wrlockEt:0 + 0: _ZNK9oceanbase8keybtree6RWLock14is_hold_wrlockEt:0 + 0: 0 + 15: _ZN9oceanbase8keybtree4Path6resizeEl:945 + 0: 105 + 23.4: _ZN9oceanbase8keybtree9BtreeNode8find_posERNS0_10CompHelperENS_8memtable20ObStoreRowkeyWrapperERbRiPNS0_11MultibitSetE:261309 + 2: 496 + 2: _ZN9oceanbase8keybtree9BtreeNode25binary_search_upper_boundERNS0_10CompHelperENS_8memtable20ObStoreRowkeyWrapperERbRiPNS0_11MultibitSetE:259325 + 9: 496 + 11: 523 + 16.1: 523 + 17: 1739 + 18: 1739 + 19: 1739 + 19.1: 1711 + 19.2: 1710 + 20.1: 11 + 20.5: 11 + 20.10: 11 + 21.1: 1710 + 23: 1710 + 24.1: 1710 + 9: _ZNK9oceanbase8keybtree9BtreeNode7is_leafEv:2976 + 0: 496 + 10: _ZN9oceanbase8keybtree11MultibitSet4loadERKS1_:747 + 0: 83 + 19: _ZN9oceanbase8keybtree9BtreeNode7get_keyEiPNS0_11MultibitSetE:49563 + 2: 1711 + 2: _ZNK9oceanbase8keybtree9BtreeNode12get_real_posEiPNS0_11MultibitSetE:39297 + 2: 1739 + 3.3: 307 + 2: _ZNK9oceanbase8keybtree9BtreeNode7is_leafEv:15651 + 0: 1739 + 3.1: _ZNK9oceanbase8keybtree11MultibitSet2atEi:20679 + 5: 307 + 5.2: 307 + 5.3: 11 + 7: 307 + 4: _ZN9oceanbase8keybtree11MultibitSet4loadERKS1_:921 + 0: 307 + 19.1: _ZNK9oceanbase8keybtree10CompHelper7compareENS_8memtable20ObStoreRowkeyWrapperES3_Ri:27405 + 2: 1711 _ZNK9oceanbase8memtable20ObStoreRowkeyWrapper7compareERKS1_Ri:1791 + 20.1: _ZN9oceanbase6common8ObLogger10get_loggerEv:1232 + 2: 11 + 2.1: 11 + 2.2: 11 + 2.3: 11 + 2.4: 11 + 2.6: 11 + 20.6: _ZN9oceanbase6common7ObLogKVIRKNS_8memtable20ObStoreRowkeyWrapperELb0EEC2EPKcS5_:352 + 0: 11 + 20.7: _ZN9oceanbase8keybtree9BtreeNode7get_keyEiPNS0_11MultibitSetE:1221 + 2: 11 + 2: _ZNK9oceanbase8keybtree9BtreeNode12get_real_posEiPNS0_11MultibitSetE:1012 + 2: 11 + 3.3: 11 + 2: _ZNK9oceanbase8keybtree9BtreeNode7is_leafEv:66 + 0: 11 + 3.1: _ZNK9oceanbase8keybtree11MultibitSet2atEi:847 + 5: 11 + 5.2: 11 + 5.3: 11 + 7: 11 + 4: _ZN9oceanbase8keybtree11MultibitSet4loadERKS1_:33 + 0: 11 + 20.9: _ZN9oceanbase6common7ObLogKVIRKNS_8memtable20ObStoreRowkeyWrapperELb0EEC2EPKcS5_:242 + 0: 11 + 33: _ZN9oceanbase8keybtree4Path4pushEPNS0_9BtreeNodeEi:20360 + 3: 509 + 6: 509 + 7: 509 + 8: 509 + 185: 509 + 35.1: _ZNK9oceanbase8keybtree9BtreeNode7is_leafEv:3054 + 0: 509 + 36: _ZNK9oceanbase8keybtree11MultibitSet4sizeEv:252 + 0: 84 + 37.1: _ZN9oceanbase8keybtree11MultibitSet4loadERKS1_:77 + 0: 11 + 39: _ZN9oceanbase8keybtree4Path12set_is_foundEb:665 + 0: 95 + 42.1: _ZNK9oceanbase8keybtree9BtreeNode7get_valEiPNS0_11MultibitSetE:5244 + 2: _ZNK9oceanbase8keybtree9BtreeNode16get_val_with_tagEiPNS0_11MultibitSetE:5244 + 2: 437 +_ZN9oceanbase3sql9ObLogPlan20weak_select_replicasERKNS_6common6ObAddrENS0_17ObRoutePolicyTypeEbRNS2_8ObIArrayIPNS0_15ObCandiTableLocEEERbRNS_5share27ObFollowerFirstFeedbackTypeE:338868:243 + 6: 225 + 7: 225 + 8: 225 + 9: 225 + 12.4: 239 + 12.6: 239 + 12.7: 238 + 12.10: 243 + 12.13: 243 + 14: 243 + 15: 243 + 16: 243 + 18: 243 _ZN9oceanbase3sql13ObRoutePolicy4initEv:257 + 18.1: 240 + 19.1: 0 + 21.1: 0 + 21.3: 240 + 21.4: 240 + 21.6: 0 + 22.1: 0 + 23: 0 + 24.1: 0 + 27.1: 0 + 27.3: 0 + 27.4: 0 + 29.1: 0 + 32: 0 + 32.1: 0 + 33.1: 0 + 34.1: 0 + 34.2: 0 + 35.1: 0 + 36.1: 0 + 36.2: 0 + 37.1: 0 + 45.1: 240 _ZN9oceanbase3sql13ObRoutePolicy24select_intersect_replicaERNS0_16ObRoutePolicyCtxERNS_6common8ObIArrayIPNS0_15ObCandiTableLocEEERNS4_6ObListINS1_16CandidateReplicaENS4_16ObArenaAllocatorEEERb:257 + 45.2: 236 + 49.1: 0 + 52: 236 + 58.1: 234 + 59.1: 0 + 61: 234 + 61.2: 234 + 62: 0 + 62.1: 0 + 63.1: 0 + 69.1: 234 _ZN9oceanbase6common14ObTscTimestamp12current_timeEv:248 + 69.2: 242 + 69.3: 0 + 69.6: 0 + 70.1: 0 + 78: 242 + 79.25: 239 + 79.27: 0 + 10.1: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:29925 + 4: 225 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:23625 + 2: 225 + 3: 225 + 4: 225 + 5: 225 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:10125 + 0: 225 + 11: _ZN9oceanbase6common6ObListINS_3sql13ObRoutePolicy16CandidateReplicaENS0_16ObArenaAllocatorEEC2ERS5_:3375 + 0: 225 + 2: 225 + 3: 225 + 12.2: _ZN9oceanbase6common8precheckINS_3sql13ObRoutePolicyEEEibRb:17707 + 6: _ZN9oceanbase6common15check_from_heapEiRb:17707 + 4: 225 + 5: 225 + 6: 248 _ZN9oceanbase6common23get_reserved_stack_sizeEv:236 + 6.1: 248 _ZN9oceanbase6common20check_stack_overflowERblPl:257 + 10: 239 + 10.2: 239 + 12.6: _ZN9oceanbase6common2SVINS_3sql13ObRoutePolicyELb0EEC2IZNS2_9ObLogPlan20weak_select_replicasERKNS0_6ObAddrENS2_17ObRoutePolicyTypeEbRNS0_8ObIArrayIPNS2_15ObCandiTableLocEEERbRNS_5share27ObFollowerFirstFeedbackTypeEE5$_306EEibOT_:6931 + 1: 239 + 3: 239 + 5: 0 + 6: 0 + 7: 0 + 9: 0 + 1: _ZN9oceanbase6common6SVBaseC2Eib:1912 + 1: 239 + 2: 239 + 9: _ZZN9oceanbase3sql9ObLogPlan20weak_select_replicasERKNS_6common6ObAddrENS0_17ObRoutePolicyTypeEbRNS2_8ObIArrayIPNS0_15ObCandiTableLocEEERbRNS_5share27ObFollowerFirstFeedbackTypeEENK5$_306clEPv:0 + 0: _ZN9oceanbase3sql13ObRoutePolicyC2ERKNS_6common6ObAddrE:0 + 1: 0 + 2: 0 + 3: 0 + 4: 0 + 6: 0 + 3: _ZN9oceanbase6common9ObSEArrayINS_5share16ObServerLocalityELl32ENS0_19ModulePageAllocatorELb0EEC2Ev:0 + 0.1: 0 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_5share16ObServerLocalityELl32ENS0_19ModulePageAllocatorELb0EEC2ElRKS4_:0 + 5: 0 + 6: 0 + 8: 0 + 17.1: 0 + 2: _ZN9oceanbase6common8ObIArrayINS_5share16ObServerLocalityEEC2EPS3_l:0 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_5share16ObServerLocalityEEC2EPS3_l:0 + 0: 0 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:0 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:0 + 2: 0 + 8: 0 + 12.9: _ZN9oceanbase3sql13ObRoutePolicyC2ERKNS_6common6ObAddrE:49955 + 1: 238 + 2: 238 _ZN9oceanbase5share16ObServerLocalityC1Ev:253 + 3: 255 + 4: 243 + 6: 243 + 3: _ZN9oceanbase6common9ObSEArrayINS_5share16ObServerLocalityELl32ENS0_19ModulePageAllocatorELb0EEC2Ev:35964 + 0.1: 243 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_5share16ObServerLocalityELl32ENS0_19ModulePageAllocatorELb0EEC2ElRKS4_:31590 + 5: 243 + 6: 243 + 8: 243 + 17.1: 243 + 2: _ZN9oceanbase6common8ObIArrayINS_5share16ObServerLocalityEEC2EPS3_l:3402 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_5share16ObServerLocalityEEC2EPS3_l:3402 + 0: 243 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:10449 + 0: 243 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:5346 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:5346 + 2: 243 + 8: 243 + 12.12: _ZN9oceanbase6common2SVINS_3sql13ObRoutePolicyELb0EE3getEv:0 + 2: 0 + 22: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql15ObCandiTableLocEE2atEl:0 + 6: 0 + 28: _ZN9oceanbase6common12ObIArrayWrapINS_3sql16ObCandiTabletLocEE2atEl:0 + 6: 0 + 29: _ZNK9oceanbase3sql16ObCandiTabletLoc20has_selected_replicaEv:0 + 0: 0 + 56.1: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:27848 + 4: 236 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:24544 + 2: 236 + 3: 236 + 4: 236 + 5: 236 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:9204 + 0: 236 + 57: _ZN9oceanbase6common6ObListINS0_6ObAddrENS0_16ObArenaAllocatorEEC2ERS3_:6372 + 0: 236 + 2: 236 + 3: 236 + 58: _ZN9oceanbase3sql9ObLogPlan29calc_hit_partition_for_compatERKNS_6common8ObIArrayIPNS0_15ObCandiTableLocEEERKNS2_6ObAddrERbRNS2_6ObListIS9_NS2_16ObArenaAllocatorEEE:10831 + 5: 236 + 7: 236 + 8: 249 _ZN9oceanbase3sql9ObLogPlan22calc_intersect_serversERKNS_6common8ObIArrayIPNS0_15ObCandiTableLocEEERNS2_6ObListINS2_6ObAddrENS2_16ObArenaAllocatorEEE:256 + 9.1: 0 + 10.1: 249 + 11: 234 + 14.1: 0 + 14.2: 0 + 14.4: 0 + 17: 0 + 18: 0 + 23: 0 + 10.1: _ZNK9oceanbase6common6ObListINS0_6ObAddrENS0_16ObArenaAllocatorEE5emptyEv:1245 + 2: 249 + 14.6: _ZNK9oceanbase6common4list8IteratorINS0_6ObListINS0_6ObAddrENS0_16ObArenaAllocatorEEEEneERKS7_:0 + 2: 0 + 16: _ZNK9oceanbase6common4list8IteratorINS0_6ObListINS0_6ObAddrENS0_16ObArenaAllocatorEEEEdeEv:0 + 3: 0 + 61.1: _ZNK9oceanbase3sql13ObRoutePolicy35is_follower_first_route_policy_typeERKNS0_16ObRoutePolicyCtxE:1872 + 2: 234 + 67: _ZN9oceanbase6common6ObListINS0_6ObAddrENS0_16ObArenaAllocatorEED2Ev:2808 + 2: _ZN9oceanbase6common6ObListINS0_6ObAddrENS0_16ObArenaAllocatorEE5resetEv:2808 + 2: _ZN9oceanbase6common6ObListINS0_6ObAddrENS0_16ObArenaAllocatorEE5clearEv:2808 + 2: 234 + 3.1: 234 + 4: 0 + 67.1: _ZN9oceanbase6common6ObListINS0_6ObAddrENS0_16ObArenaAllocatorEED2Ev:0 + 2: _ZN9oceanbase6common6ObListINS0_6ObAddrENS0_16ObArenaAllocatorEE5resetEv:0 + 2: _ZN9oceanbase6common6ObListINS0_6ObAddrENS0_16ObArenaAllocatorEE5clearEv:0 + 3.1: 0 + 67.2: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:0 + 0: 0 + 67.4: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:8658 + 0: 234 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEED2Ev:5382 + 0: 234 + 0.3: 0 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:3744 + 4.1: 234 + 6: 0 + 7: 0 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:0 + 0: 0 + 5.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:0 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 69: _ZN9oceanbase6common14ObTscTimestamp12get_instanceEv:5616 + 2: 234 + 2.1: 0 + 2.3: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common14ObTscTimestampC2Ev:0 + 1: 0 + 79.25: _ZN9oceanbase6common2SVINS_3sql13ObRoutePolicyELb0EED2Ev:44804 + 2: 242 + 5: 239 + 6: 0 + 6.1: 0 + 8: 239 + 4: _ZN9oceanbase3sql13ObRoutePolicyD2Ev:37356 + 0: 243 + 0.1: 243 _ZN9oceanbase5share16ObServerLocalityD1Ev:249 + 0: _ZN9oceanbase6common13ObSEArrayImplINS_5share16ObServerLocalityELl32ENS0_19ModulePageAllocatorELb0EED2Ev:35412 + 1: 242 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_5share16ObServerLocalityELl32ENS0_19ModulePageAllocatorELb0EE7destroyEv:31056 + 4.1: 243 + 4.3: 243 + 5: 242 _ZN9oceanbase5share16ObServerLocalityD1Ev:248 + 9: 243 + 10: 0 + 11: 0 + 13: 243 + 15: 243 + 24: 243 + 79.29: _ZN9oceanbase6common6ObListINS_3sql13ObRoutePolicy16CandidateReplicaENS0_16ObArenaAllocatorEED2Ev:0 + 2: _ZN9oceanbase6common6ObListINS_3sql13ObRoutePolicy16CandidateReplicaENS0_16ObArenaAllocatorEE5resetEv:0 + 2: _ZN9oceanbase6common6ObListINS_3sql13ObRoutePolicy16CandidateReplicaENS0_16ObArenaAllocatorEE5clearEv:0 + 3.1: 0 + 79.30: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:0 + 0: 0 + 79.32: _ZN9oceanbase6common6ObListINS_3sql13ObRoutePolicy16CandidateReplicaENS0_16ObArenaAllocatorEED2Ev:2868 + 2: _ZN9oceanbase6common6ObListINS_3sql13ObRoutePolicy16CandidateReplicaENS0_16ObArenaAllocatorEE5resetEv:2868 + 2: _ZN9oceanbase6common6ObListINS_3sql13ObRoutePolicy16CandidateReplicaENS0_16ObArenaAllocatorEE5clearEv:2868 + 2: 239 + 3.1: 239 + 4: 0 + 79.33: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:8843 + 0: 239 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEED2Ev:5497 + 0: 239 + 0.3: 0 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:3824 + 4.1: 239 + 6: 0 + 7: 0 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:0 + 0: 0 + 5.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:0 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase6common13ObSEArrayImplINS0_10ObNewRangeELl4ENS0_19ModulePageAllocatorELb0EE9push_backERKS2_:338234:4310 + 2: 4226 + 5: 4226 + 6: 7 + 12: 7 + 15: 7 + 15.1: 4226 + 16: 4226 + 19: 4226 + 15.1: _ZN9oceanbase6common9ObClassOpINS0_10ObNewRangeELb0EE20construct_and_assignERKS2_RS2_:143684 + 3: _ZN9oceanbase6common16construct_assignINS0_10ObNewRangeEEEiRT_RKS3_:143684 + 2: _ZN9oceanbase6common21construct_assign_wrapINS0_10ObNewRangeEEEiRT_RKS3_NS0_8BoolTypeILb0EEE:143684 + 2: 4226 +_ZN9oceanbase6common13ObSEArrayImplIPNS0_10ObNewRangeELl1ENS0_19ModulePageAllocatorELb0EED2Ev:338160:4979 + 1: 4478 + 3: 4544 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplIPNS0_10ObNewRangeELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:171880 + 9: 4478 + 11: 0 + 13: 4544 + 15: 4544 + 24: 4544 + 10: _ZN9oceanbase6common13ObSEArrayImplIPNS0_10ObNewRangeELl1ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase3sql13ObStmtFactory7destoryEv:337551:565 + 1: 534 + 2.1: 534 + 2.3: 534 + 3.1: 534 + 4: 534 + 4.1: 534 + 8: 517 + 10: 531 + 12: 531 + 2: _ZN9oceanbase6common10ObObjStoreIPNS_3sql6ObStmtERNS0_12ObIAllocatorELb1EE12get_obj_listEv:2136 + 0: 534 + 7: _ZN9oceanbase6common10ObObjStoreIPNS_3sql6ObStmtERNS0_12ObIAllocatorELb1EE7destroyEv:69556 + 2.1: 522 + 4: 522 + 5: 522 + 2: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql6ObStmtEEEE12remove_firstEv:34452 + 2: 522 + 2: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql6ObStmtEEEE6removeEPS6_:30798 + 3: 522 + 7: 522 + 6: _ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql6ObStmtEEEE6unlinkEv:18792 + 2: 522 + 4: 522 + 5: 522 + 6: 522 + 7: 522 + 2.5: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql6ObStmtEEEE12remove_firstEv:6786 + 2: 522 + 2: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql6ObStmtEEEE6removeEPS6_:3132 + 3: 522 + 7: 0 + 6: _ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql6ObStmtEEEE6unlinkEv:0 + 2: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 9: _ZN9oceanbase3sql10ObQueryCtxD2Ev:209200 + 0.4: 502 _ZN9oceanbase6common11ObArrayImplIPNS_3sql21ObUserVarIdentRawExprENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS4_EENS0_17DefaultItemEncodeIS4_EEED2Ev:548 + 0.5: 512 _ZN9oceanbase6common11ObArrayImplINS_3sql16ObExprConstraintENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev:517 + 0.7: 512 _ZN9oceanbase6common11ObArrayImplINS_3sql18ObPCParamEqualInfoENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev:521 + 0.8: 534 _ZN9oceanbase6common11ObArrayImplINS_3sql18ObPCConstParamInfoENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev:534 + 0.9: 517 _ZN9oceanbase6common11ObArrayImplINS_3sql18ObPCConstParamInfoENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev:530 + 0.10: 508 _ZN9oceanbase6common11ObArrayImplINS_3sql9ObVarInfoENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev:547 + 0.11: 536 _ZN9oceanbase6common11ObArrayImplINS_5share6schema18ObSchemaObjVersionENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_17DefaultItemEncodeIS4_EEED2Ev:549 + 0.13: 525 _ZN9oceanbase6common13ObSEArrayImplINS_3sql18ObHiddenColumnItemELl1ENS0_19ModulePageAllocatorELb1EED2Ev:524 + 0: _ZN9oceanbase3sql11ObQueryHintD2Ev:99888 + 0.2: 517 _ZN9oceanbase6common11ObArrayImplINS_3sql11ObQueryHint10IdNamePairENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS4_EENS0_17DefaultItemEncodeIS4_EEED2Ev:567 + 0.3: 553 _ZN9oceanbase6common13ObSEArrayImplIPKNS_3sql6ObHintELl8ENS0_19ModulePageAllocatorELb1EED2Ev:557 + 0.4: 551 _ZN9oceanbase6common13ObSEArrayImplIPKNS_3sql6ObHintELl8ENS0_19ModulePageAllocatorELb1EED2Ev:585 + 0.5: 548 _ZN9oceanbase6common13ObSEArrayImplIPKNS_3sql6ObHintELl8ENS0_19ModulePageAllocatorELb1EED2Ev:579 + 0.6: 567 _ZN9oceanbase6common13ObSEArrayImplINS_3sql7ObHintsELl8ENS0_19ModulePageAllocatorELb1EED2Ev:568 + 0.7: 552 _ZN9oceanbase6common13ObSEArrayImplINS_3sql7ObHintsELl8ENS0_19ModulePageAllocatorELb1EED2Ev:552 + 0: _ZN9oceanbase6common4hash9ObHashMapIlNS0_8ObStringENS1_24LatchReadWriteDefendModeENS1_9hash_funcIlEENS1_8equal_toIlEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIlS3_EEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:24849 + 2: _ZN9oceanbase6common4hash11ObHashTableIlNS1_11HashMapPairIlNS0_8ObStringEEENS1_9hash_funcIlEENS1_8equal_toIlEENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:7398 + 2.1: 517 + 2.2: 5 + 3: 5 + 5.2: 5 + 2: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairIlNS0_8ObStringEEENS0_7ObLatchENS1_5NCondEEEEEbRKT_:4136 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairIlNS0_8ObStringEEENS0_7ObLatchENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:4136 + 2: 517 + 2.2: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIlNS0_8ObStringEEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEED2Ev:13797 + 2.1: 5 + 2: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIlNS0_8ObStringEEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEE5clearEv:13757 + 2: 517 + 3.1: 517 + 4: 5 + 5: 5 + 6.1: 5 + 10: 5 + 15: 517 + 0.1: _ZN9oceanbase6common4hash9ObHashMapINS0_8ObStringElNS1_24LatchReadWriteDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_lEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:24849 + 2: _ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_lEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:7398 + 2.1: 517 + 2.2: 5 + 3: 5 + 5.2: 5 + 2: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringElEENS0_7ObLatchENS1_5NCondEEEEEbRKT_:4136 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringElEENS0_7ObLatchENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:4136 + 2: 517 + 2.2: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS0_8ObStringElEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEED2Ev:13797 + 2.1: 5 + 2: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS0_8ObStringElEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEE5clearEv:13757 + 2: 517 + 3.1: 517 + 4: 5 + 5: 5 + 6.1: 5 + 10: 5 + 15: 517 + 0.8: _ZN9oceanbase3sql12ObGlobalHintD2Ev:23886 + 0: 560 _ZN9oceanbase6common11ObArrayImplINS_3sql22ObDDLSchemaVersionHintENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev:561 + 0.2: 522 _ZN9oceanbase6common11ObArrayImplINS_3sql9ObDopHintENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev:561 + 0.3: 541 _ZN9oceanbase6common11ObArrayImplINS_3sql13ObMonitorHintENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev:569 + 0.1: _ZN9oceanbase3sql14ObOptParamHintD2Ev:10902 + 0: 582 _ZN9oceanbase6common13ObSEArrayImplINS0_5ObObjELl1ENS0_19ModulePageAllocatorELb1EED2Ev:582 + 0.1: 543 _ZN9oceanbase6common13ObSEArrayImplINS_3sql14ObOptParamHint12OptParamTypeELl1ENS0_19ModulePageAllocatorELb1EED2Ev:563 + 0.1: _ZN9oceanbase5share6schema19ObReferenceObjTableD2Ev:25319 + 0: _ZN9oceanbase6common4hash9ObHashMapINS_5share6schema19ObReferenceObjTable18ObDependencyObjKeyEPNS5_19ObDependencyObjItemENS1_24LatchReadWriteDefendModeENS1_9hash_funcIS6_EENS1_8equal_toIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS6_S8_EEEELi89ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:25319 + 2: _ZN9oceanbase6common4hash11ObHashTableINS_5share6schema19ObReferenceObjTable18ObDependencyObjKeyENS1_11HashMapPairIS6_PNS5_19ObDependencyObjItemEEENS1_9hash_funcIS6_EENS1_8equal_toIS6_EENS1_10pair_firstISA_EENS1_13SimpleAllocerINS1_15ObHashTableNodeISA_EELi89ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:7538 + 2.1: 527 + 2.2: 5 + 3: 5 + 5.2: 5 + 2: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_5share6schema19ObReferenceObjTable18ObDependencyObjKeyEPNS7_19ObDependencyObjItemEEENS0_7ObLatchENS1_5NCondEEEEEbRKT_:4216 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_5share6schema19ObReferenceObjTable18ObDependencyObjKeyEPNS7_19ObDependencyObjItemEEENS0_7ObLatchENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:4216 + 2: 527 + 2.2: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS_5share6schema19ObReferenceObjTable18ObDependencyObjKeyEPNS7_19ObDependencyObjItemEEEEELi89ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEED2Ev:14057 + 2.1: 5 + 2: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS_5share6schema19ObReferenceObjTable18ObDependencyObjKeyEPNS7_19ObDependencyObjItemEEEEELi89ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEE5clearEv:14017 + 2: 527 + 3.1: 527 + 4: 5 + 5: 5 + 6.1: 5 + 10: 5 + 15: 527 + 0.2: _ZN9oceanbase3sql16ObSqlSchemaGuardD2Ev:4216 + 0: 527 _ZN9oceanbase6common13ObSEArrayImplIPKNS_5share6schema13ObTableSchemaELl1ENS0_19ModulePageAllocatorELb0EED2Ev:530 + 0.3: _ZN9oceanbase6common4hash9ObHashMapImNS0_5ObObjENS1_19NoPthreadDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS3_EEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:9137 + 2: 537 + 2: _ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImNS0_5ObObjEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:4801 + 2.1: 529 + 2.2: 0 + 3: 0 + 5.2: 5 + 2: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImNS0_5ObObjEEENS1_5NLockENS1_5NCondEEEEEbRKT_:4232 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImNS0_5ObObjEEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:4232 + 2: 529 + 2.2: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImNS0_5ObObjEEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEED2Ev:577 + 2: 537 _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImNS0_5ObObjEEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEE5clearEv:551 + 2.1: 5 + 0.12: _ZN9oceanbase6common13ObSEArrayImplIPNS_3sql9ObRawExprELl4ENS0_19ModulePageAllocatorELb1EED2Ev:37283 + 1: 515 + 3.2: 5 + 2: _ZN9oceanbase6common13ObSEArrayImplIPNS_3sql9ObRawExprELl4ENS0_19ModulePageAllocatorELb1EE7destroyEv:27973 + 9: 515 + 11: 2 + 13: 525 + 15: 525 + 24: 525 + 10: _ZN9oceanbase6common13ObSEArrayImplIPNS_3sql9ObRawExprELl4ENS0_19ModulePageAllocatorELb1EE14internal_free_EPv:312 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:312 + 0: 2 + 0.2: 2 + 0.1: _ZN9oceanbase6common7ob_freeEPv:270 + 2: 5 + 3: 5 + 4: 5 + 5: 5 + 4: _ZL12abort_unlessb:80 + 5: 5 + 6: 5 +_ZNK9oceanbase5share19ObLSReplicaLocation8is_validEv:337423:4713 + 1: 4583 + 2.1: 4433 + 3: 4737 + 3.1: 4433 + 4: 4433 + 4.1: 4433 + 2: _ZNK9oceanbase6common6ObAddr8is_validEv:96178 + 3: 4583 + 4: 0 + 5: 0 + 8.1: 4456 + 9.1: 4456 + 10: 4737 + 13.1: 19 + 13.3: 19 + 14: 19 + 4.1: _ZN9oceanbase6common18ObReplicaTypeCheck21is_replica_type_validEi:22298 + 3: 4433 + 5.1: _ZNK9oceanbase6common17ObReplicaProperty8is_validEv:53196 + 2: 4433 +_ZN9oceanbase3sql12ObIDASTaskOpD2Ev:336075:4459 + 0: 4627 _ZN9oceanbase6common16ObFixedArrayImplINS0_10ObTabletIDENS0_12ObIAllocatorEED2Ev:4351 + 0.1: 4384 _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql14ObDASBaseRtDefENS0_12ObIAllocatorEED2Ev:4534 + 0.2: 4621 _ZN9oceanbase6common16ObFixedArrayImplIPKNS_3sql14ObDASBaseCtDefENS0_12ObIAllocatorEED2Ev:4876 + 0.5: 4627 _ZN9oceanbase11transaction14ObTxExecResultD1Ev:4648 + 0.4: _ZN9oceanbase6common10ObTabletIDD2Ev:64778 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:64778 + 0: 4627 +_ZZN9oceanbase3sql8ObDASCtx4initERKNS0_14ObPhysicalPlanERNS0_13ObExecContextEENK4$_38clEPKc.45c27dd3dc8b42ec4ef71c6f367bd924:335985:4477 + 0: 4619 + 0.1: 0 + 0.2: 4619 + 0.3: 4445 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:4530 + 0.11: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:75565 + 2: 4445 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS0_8ObIArrayINS_3sql15ObTableLocationEEELb0EEC2EPKcS7_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKNS0_8ObIArrayINS_3sql15ObTableLocationEEELb0EEC2EPKcS7_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVIRKNS0_6ObListIPNS_3sql13ObDASTableLocENS0_12ObIAllocatorEEELb0EEC2EPKcS9_:0 + 0: 0 +_ZN9oceanbase7storage15ObLobDataReader5reuseEv:334020:4624 + 1: 4395 + 3: 4395 + 2: _ZN9oceanbase6common16ObArenaAllocator5reuseEv:193380 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE5reuseEv:193380 + 2: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16free_large_pagesEv:74715 + 3.1: 4395 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 13: 0 + 14: 0 + 18: 0 + 19: 4395 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:0 + 0: 0 + 5.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 6: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13is_large_pageEPKNS3_4PageE:0 + 2.2: 0 + 2.2: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page8raw_sizeEv:0 + 0: 0 + 9: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page8raw_sizeEv:0 + 0: 0 + 10: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:0 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE10fast_reuseEv:118665 + 2: 4395 + 3: 4395 + 7: 4395 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 +_ZNK9oceanbase10logservice15ObLogBaseHeader9serializeEPclRl:331344:808 + 1: 708 + 2: 708 + 3: 708 + 4: 0 + 5.1: 0 + 6.1: 708 + 7.1: 0 + 8.1: 708 + 9.1: 0 + 10.1: 708 + 11.1: 0 + 12.1: 708 + 13.1: 0 + 15: 708 + 6.1: _ZN9oceanbase6common13serialization10encode_i16EPclRls:46020 + 2.1: 708 + 3: 708 + 4: 708 + 5: 708 + 6: 708 + 8.1: _ZN9oceanbase6common13serialization10encode_i16EPclRls:32568 + 2: 708 + 2.1: 708 + 4: 708 + 5: 708 + 6: 708 + 10.1: _ZN9oceanbase6common13serialization10encode_i32EPclRli:73632 + 2: 708 + 2.1: 708 + 4: 708 + 5: 708 + 6: 708 + 7: 708 + 8: 708 + 12.1: _ZN9oceanbase6common13serialization10encode_i64EPclRll:116112 + 2: 708 + 2.1: 708 + 4: 708 + 5: 708 + 6: 708 + 7: 708 + 8: 708 + 9: 708 + 10: 708 + 11: 708 + 12: 708 +_ZN9oceanbase8memtable17ObMvccRowIteratorD2Ev:330839:986 + 1: 925 + 3: 955 + 3.2: 0 + 2: _ZN9oceanbase8memtable17ObMvccRowIterator5resetEv:275814 + 2: 925 + 3: 925 + 6: 925 + 7: 925 + 8: 912 + 9: 955 + 11: 955 + 5: _ZN9oceanbase8memtable19ObMvccValueIterator5resetEv:18500 + 2: 925 + 3: 925 + 6: 925 + 7: _ZN9oceanbase8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorEE5resetEv:50550 + 4: 912 + 6: 912 + 2: _ZN9oceanbase8keybtree13BtreeIterator5resetEv:27750 + 4: 925 + 6: 925 + 10: 925 + 12: 0 + 2: _ZN9oceanbase8keybtree13BtreeIterator7KVQueue5resetEv:6475 + 3: 925 + 7: _ZN9oceanbase8memtable20ObStoreRowkeyWrapperC2Ev:3700 + 0: 925 + 11: _ZN9oceanbase8keybtree8Iterator5resetEv:0 + 3: 0 + 4: 0 + 11: 0 + 2: _ZN9oceanbase8keybtree10ScanHandle5resetEv:0 + 2: _ZN9oceanbase8keybtree10BaseHandle11release_refEv:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase6common6QClock14leave_criticalEm:0 + 1: 0 + 2: _ZN9oceanbase6common6QClock6locateEm:0 + 0: 0 + 2.1: _ZN9oceanbase6common6QClock9ClockSlot11clear_clockEv:0 + 0: 0 + 3: _ZN9oceanbase8keybtree4Path5resetEv:0 + 2: 0 + 3: 0 + 5: _ZN9oceanbase8memtable20ObStoreRowkeyWrapperC2Ev:0 + 0: 0 + 8: _ZN9oceanbase8memtable13ObQueryEngine11revert_iterEPNS0_22ObIQueryEngineIteratorE:147136 + 2: _ZN9oceanbase8memtable13ObQueryEngine13IteratorAllocINS_8keybtree13BtreeIteratorEE4freeEPNS1_8IteratorIS4_EE:147136 + 0: 912 + 0.1: 912 + 0: _ZN9oceanbase3lib7ObLabelC2IPKcEERKT_:10032 + 2: _ZN9oceanbase3lib7ObLabelaSIPKcvEERS1_T_:10032 + 2: 912 + 0.1: _ZN9oceanbase6common16ObClassAllocatorINS_8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorEEEE4freeEPS7_:80560 + 2: 912 + 3: 912 + 4: 950 _ZN9oceanbase6common13ObObjFreeList4freeEPv:984 + 3: _ZN9oceanbase8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorEED2Ev:40128 + 0: 912 + 0.1: _ZN9oceanbase8keybtree13BtreeIteratorD2Ev:27360 + 0: _ZN9oceanbase8keybtree13BtreeIterator5resetEv:27360 + 4: 912 + 6: 912 + 10: 912 + 12: 0 + 2: _ZN9oceanbase8keybtree13BtreeIterator7KVQueue5resetEv:6384 + 3: 912 + 7: _ZN9oceanbase8memtable20ObStoreRowkeyWrapperC2Ev:3648 + 0: 912 + 11: _ZN9oceanbase8keybtree8Iterator5resetEv:0 + 3: 0 + 4: 0 + 11: 0 + 2: _ZN9oceanbase8keybtree10ScanHandle5resetEv:0 + 2: _ZN9oceanbase8keybtree10BaseHandle11release_refEv:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase6common6QClock14leave_criticalEm:0 + 1: 0 + 2: _ZN9oceanbase6common6QClock6locateEm:0 + 0: 0 + 2.1: _ZN9oceanbase6common6QClock9ClockSlot11clear_clockEv:0 + 0: 0 + 3: _ZN9oceanbase8keybtree4Path5resetEv:0 + 2: 0 + 3: 0 + 5: _ZN9oceanbase8memtable20ObStoreRowkeyWrapperC2Ev:0 + 0: 0 + 0.3: _ZN9oceanbase6common16ObClassAllocatorINS_8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorEEEE3getElNS0_14ObMemCacheTypeERKNS_3lib7ObLabelElb:27360 + 7.1: 912 + 8: 0 + 9: 0 + 11: 0 + 11.1: 0 + 13.1: 0 + 14.1: 0 + 18: 0 + 26: 912 + 9.1: _ZN9oceanbase6common16ObClassAllocatorINS_8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorEEEEC2Ev:0 + 0: 0 +_ZN9oceanbase8memtable17ObMvccRowIteratorD1Ev:330839:986 + 1: 925 + 3: 955 + 3.2: 0 + 2: _ZN9oceanbase8memtable17ObMvccRowIterator5resetEv:275814 + 2: 925 + 3: 925 + 6: 925 + 7: 925 + 8: 912 + 9: 955 + 11: 955 + 5: _ZN9oceanbase8memtable19ObMvccValueIterator5resetEv:18500 + 2: 925 + 3: 925 + 6: 925 + 7: _ZN9oceanbase8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorEE5resetEv:50550 + 4: 912 + 6: 912 + 2: _ZN9oceanbase8keybtree13BtreeIterator5resetEv:27750 + 4: 925 + 6: 925 + 10: 925 + 12: 0 + 2: _ZN9oceanbase8keybtree13BtreeIterator7KVQueue5resetEv:6475 + 3: 925 + 7: _ZN9oceanbase8memtable20ObStoreRowkeyWrapperC2Ev:3700 + 0: 925 + 11: _ZN9oceanbase8keybtree8Iterator5resetEv:0 + 3: 0 + 4: 0 + 11: 0 + 2: _ZN9oceanbase8keybtree10ScanHandle5resetEv:0 + 2: _ZN9oceanbase8keybtree10BaseHandle11release_refEv:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase6common6QClock14leave_criticalEm:0 + 1: 0 + 2: _ZN9oceanbase6common6QClock6locateEm:0 + 0: 0 + 2.1: _ZN9oceanbase6common6QClock9ClockSlot11clear_clockEv:0 + 0: 0 + 3: _ZN9oceanbase8keybtree4Path5resetEv:0 + 2: 0 + 3: 0 + 5: _ZN9oceanbase8memtable20ObStoreRowkeyWrapperC2Ev:0 + 0: 0 + 8: _ZN9oceanbase8memtable13ObQueryEngine11revert_iterEPNS0_22ObIQueryEngineIteratorE:147136 + 2: _ZN9oceanbase8memtable13ObQueryEngine13IteratorAllocINS_8keybtree13BtreeIteratorEE4freeEPNS1_8IteratorIS4_EE:147136 + 0: 912 + 0.1: 912 + 0: _ZN9oceanbase3lib7ObLabelC2IPKcEERKT_:10032 + 2: _ZN9oceanbase3lib7ObLabelaSIPKcvEERS1_T_:10032 + 2: 912 + 0.1: _ZN9oceanbase6common16ObClassAllocatorINS_8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorEEEE4freeEPS7_:80560 + 2: 912 + 3: 912 + 4: 950 _ZN9oceanbase6common13ObObjFreeList4freeEPv:984 + 3: _ZN9oceanbase8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorEED2Ev:40128 + 0: 912 + 0.1: _ZN9oceanbase8keybtree13BtreeIteratorD2Ev:27360 + 0: _ZN9oceanbase8keybtree13BtreeIterator5resetEv:27360 + 4: 912 + 6: 912 + 10: 912 + 12: 0 + 2: _ZN9oceanbase8keybtree13BtreeIterator7KVQueue5resetEv:6384 + 3: 912 + 7: _ZN9oceanbase8memtable20ObStoreRowkeyWrapperC2Ev:3648 + 0: 912 + 11: _ZN9oceanbase8keybtree8Iterator5resetEv:0 + 3: 0 + 4: 0 + 11: 0 + 2: _ZN9oceanbase8keybtree10ScanHandle5resetEv:0 + 2: _ZN9oceanbase8keybtree10BaseHandle11release_refEv:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase6common6QClock14leave_criticalEm:0 + 1: 0 + 2: _ZN9oceanbase6common6QClock6locateEm:0 + 0: 0 + 2.1: _ZN9oceanbase6common6QClock9ClockSlot11clear_clockEv:0 + 0: 0 + 3: _ZN9oceanbase8keybtree4Path5resetEv:0 + 2: 0 + 3: 0 + 5: _ZN9oceanbase8memtable20ObStoreRowkeyWrapperC2Ev:0 + 0: 0 + 0.3: _ZN9oceanbase6common16ObClassAllocatorINS_8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorEEEE3getElNS0_14ObMemCacheTypeERKNS_3lib7ObLabelElb:27360 + 7.1: 912 + 8: 0 + 9: 0 + 11: 0 + 11.1: 0 + 13.1: 0 + 14.1: 0 + 18: 0 + 26: 912 + 9.1: _ZN9oceanbase6common16ObClassAllocatorINS_8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorEEEEC2Ev:0 + 0: 0 +_ZN9oceanbase6common5ObObj9deep_copyERKS1_PclRl:330683:2232 + 1: 2145 + 3.1: 2056 + 4: 88 + 5: 88 + 8: 88 + 9: 80 + 10: 80 + 12: 80 + 15: 82 + 18: 0 + 19: 0 + 22: 0 + 23: 0 + 24: 0 + 25: 0 + 27.1: 2056 + 29: 9 + 32: 9 + 33: 9 + 34: 9 + 35: 8 + 37.1: 2048 + 38: 0 + 41: 0 + 42: 0 + 43: 0 + 47: 0 + 51: 0 + 52: 0 + 53: 0 + 58: 2048 + 60: 2135 + 3: _ZNK9oceanbase6common5ObObj8get_typeEv:15015 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:15015 + 0: 2145 + 3.2: _ZN9oceanbase6common17ob_is_string_typeENS0_9ObObjTypeE:43799 + 0: 2145 + 0: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:10458 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:10458 + 2: 2145 + 4: _ZNK9oceanbase6common5ObObj10get_stringEv:792 + 1: 88 + 1: _ZN9oceanbase6common8ObStringC2ElPKc:264 + 5: 88 + 10: _ZNK9oceanbase6common5ObObj8get_typeEv:160 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:160 + 0: 80 + 10.2: _ZN9oceanbase6common5ObObj10set_stringENS0_9ObObjTypeEPKci:5726 + 4: 80 + 5: 80 + 2: _ZN9oceanbase6common9ObObjMeta8set_typeERKNS0_9ObObjTypeE:4206 + 2: 80 + 3: 80 + 13: 1 + 4: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:0 + 0: 0 + 8: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:0 + 0: 0 + 11: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:0 + 0: 0 + 12.1: _ZN9oceanbase6common17ob_is_string_typeENS0_9ObObjTypeE:1363 + 0: 80 + 0: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:483 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:483 + 2: 80 + 17: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:10 + 0: 1 + 3: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:480 + 0: 80 + 12: _ZNK9oceanbase6common5ObObj19get_collation_levelEv:240 + 0: _ZNK9oceanbase6common9ObObjMeta19get_collation_levelEv:240 + 0: 80 + 13.1: _ZN9oceanbase6common5ObObj19set_collation_levelERKNS0_16ObCollationLevelE:486 + 0: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:486 + 0: 81 + 18: _ZNK9oceanbase6common5ObObj10get_stringEv:0 + 1: 0 + 1: _ZN9oceanbase6common8ObStringC2ElPKc:0 + 5: 0 + 24.1: _ZN9oceanbase6common5ObObj7set_rawEPKci:0 + 4: 0 + 5: 0 + 2: _ZN9oceanbase6common9ObObjMeta7set_rawEv:0 + 0: 0 + 0.1: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:0 + 0: 0 + 27.2: _ZN9oceanbase6common15ob_is_number_tcENS0_9ObObjTypeE:6168 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:6168 + 2: 2056 + 28: _ZNK9oceanbase6common5ObObj22get_number_byte_lengthEv:36 + 0: 9 + 32: _ZNK9oceanbase6common5ObObj17get_number_digitsEv:99 + 0: 9 + 34: _ZNK9oceanbase6common5ObObj8get_typeEv:63 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:63 + 0: 9 + 34.2: _ZN9oceanbase6common5ObObj10set_numberENS0_9ObObjTypeE12ObNumberDescPj:967 + 4: 8 + 5: 8 + 2: _ZN9oceanbase6common9ObObjMeta8set_typeERKNS0_9ObObjTypeE:835 + 2: 9 + 3: 9 + 13: 9 + 4: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:0 + 0: 0 + 8: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:0 + 0: 0 + 11: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:6 + 0: 1 + 12.1: _ZN9oceanbase6common17ob_is_string_typeENS0_9ObObjTypeE:180 + 0: 9 + 0: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:81 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:81 + 2: 9 + 17: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:82 + 0: 9 + 3: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:48 + 0: 8 + 38: _ZNK9oceanbase6common5ObObj14get_string_lenEv:0 + 0: 0 + 41: _ZNK9oceanbase6common5ObObj14get_string_ptrEv:0 + 0: 0 + 43: _ZNK9oceanbase6common5ObObj14get_string_lenEv:0 + 0: 0 + 43.1: _ZN9oceanbase6common5ObObj10set_urowidEPKcl:0 + 3: 0 + 2: _ZN9oceanbase6common9ObObjMeta10set_urowidEv:0 + 2: 0 + 4: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:0 + 0: 0 + 47: _ZNK9oceanbase6common5ObObj11get_val_lenEv:0 + 0: 0 + 51: _ZNK9oceanbase6common5ObObj14get_string_ptrEv:0 + 0: 0 + 54: _ZN9oceanbase6common5ObObj15set_lob_locatorERKNS0_12ObLobLocatorE:0 + 4: 0 + 2: _ZN9oceanbase6common9ObObjMeta8set_typeERKNS0_9ObObjTypeE:0 + 2: 0 + 5: _ZNK9oceanbase6common12ObLobLocator14get_total_sizeEv:0 + 0: 0 + 0: _ZNK9oceanbase6common12ObLobLocator15get_data_lengthEv:0 + 0: 0 +_ZZN9oceanbase8observer9ObMPUtils22init_flt_log_frameworkERNS_3sql16ObSQLSessionInfoEbENK4$_59clEPKc.712a47fc6d4da9894c7fa8e4e81b6498:330365:5669 + 0: 5353 + 0.1: 0 + 0.2: 5236 + 0.3: 5353 _ZN9oceanbase6common8ObLogger13need_to_printEmi:5689 + 0.12: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:91001 + 2: 5353 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.1: _ZN9oceanbase3sql16ObSQLSessionInfo15is_trace_enableEv:0 + 0: 0 + 0.5: _ZN9oceanbase6common7ObLogKVIRKbLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase3sql16ObSQLSessionInfo19is_auto_flush_traceEv:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKbLb0EEC2EPKcS3_:0 + 0: 0 + 0.9: _ZN9oceanbase3sql16ObSQLSessionInfo16get_control_infoEv:0 + 0: 0 + 0.11: _ZN9oceanbase6common7ObLogKVIRKNS_3sql14FLTControlInfoELb0EEC2EPKcS5_:0 + 0: 0 +_ZN9oceanbase12blocksstable23ObIMicroBlockRowScanner10set_readerENS_6common14ObRowStoreTypeE:329873:2810 + 1: 2580 + 15: 2580 + 16: 2589 + 18.1: 2589 + 18.2: 970 + 18.3: 1058 _ZN9oceanbase6common26ObWrapperAllocatorWithAttr5allocEl:1105 + 18.6: 998 + 18.7: 0 + 18.8: 0 + 18.10: 0 + 18.12: 0 + 18.13: 2579 + 18.15: 2579 + 23: 0 + 23.1: 0 + 23.2: 0 + 24: 0 + 25.1: 0 + 27.1: 0 + 27.2: 0 + 27.3: 0 + 27.4: 0 + 27.6: 0 + 27.7: 0 + 27.8: 0 + 27.10: 0 + 27.12: 0 + 27.13: 0 + 32: 0 + 33.1: 0 + 37: 2579 + 18.4: _ZN9oceanbase12blocksstable18ObMicroBlockReaderC2Ev:61118 + 1: 1058 _ZN9oceanbase12blocksstable23ObIMicroBlockFlatReaderC1Ev:1074 + 3.1: 998 + 2: _ZN9oceanbase12blocksstable19ObIMicroBlockReaderC2Ev:29940 + 1: _ZN9oceanbase12blocksstable23ObIMicroBlockReaderInfoC2Ev:29940 + 1: 998 + 2: 998 + 3: 998 +_ZZN9oceanbase5share19ObLSLocationService14get_from_cacheElmRKNS0_6ObLSIDERNS0_12ObLSLocationEENK5$_289clEPKc.db28c62327e16d3ae5c8a88acfd53bbb:329116:4855 + 0: 4661 + 0.1: 0 + 0.2: 4540 + 0.3: 4661 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:4698 + 0.4: 0 + 0.10: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:79237 + 2: 4661 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.1: _ZN9oceanbase6common7ObLogKVIiLb0EEC2EPKcRKi:0 + 0: 0 + 0.5: _ZN9oceanbase6common7ObLogKVIPKcLb1EEC2ES3_OKS3_:0 + 0: 0 + 0.7: _ZN9oceanbase6common7ObLogKVIRKNS_5share20ObLSLocationCacheKeyELb0EEC2EPKcS5_:0 + 0: 0 + 0.9: _ZN9oceanbase6common7ObLogKVIRKNS_5share12ObLSLocationELb0EEC2EPKcS5_:0 + 0: 0 +_ZZN9oceanbase5share6schema19ObSchemaGetterGuard20get_from_local_cacheINS1_13ObTableSchemaEEEiNS1_12ObSchemaTypeEmmRPKT_ENKUlPKcE3_clESB_:328520:4559 + 0: 4634 + 0.1: 0 + 0.2: 4634 + 0.3: 4390 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:4777 + 0.9: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:74630 + 2: 4390 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKNS_5share6schema12ObSchemaTypeELb0EEC2EPKcS6_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase12blocksstable22ObIndexBlockRowScanner18init_by_micro_dataERKNS0_16ObMicroBlockDataE:327660:3108 + 1: 3014 + 2: 3014 + 3: 3014 + 4: 3014 + 5: 3014 + 6: 0 + 7.1: 0 + 9: 3014 + 11.1: 0 + 11.2: 0 + 12.1: 0 + 14.1: 0 + 15.1: 0 + 16.1: 0 + 17.1: 0 + 19: 3193 + 3: _ZNK9oceanbase12blocksstable16ObMicroBlockData13get_extra_bufEv:12056 + 0: 3014 + 5: _ZNK9oceanbase12blocksstable22ObIndexBlockDataHeader8is_validEv:144672 + 2: 3014 + 3: 3014 + 3.1: 3014 + 4: 3014 + 4.1: 3014 + 5: 3014 + 5.1: 3014 + 6: 3014 + 6.1: 3014 + 11.1: _ZNK9oceanbase12blocksstable16ObMicroBlockData14get_store_typeEv:0 + 4: 0 + 5: 0 + 4.1: _ZNK9oceanbase12blocksstable18ObMicroBlockHeader8is_validEv:0 + 3: 0 + 4: 0 + 4.1: 0 + 5: 0 + 5.1: 0 + 6: 0 + 6.1: 0 + 7: 0 + 8.1: 0 + 9: 0 + 9.1: 0 + 3: _ZN9oceanbase12blocksstable18ObMicroBlockHeader18get_serialize_sizeElb:0 + 1: 0 +_ZN9oceanbase6common13ObSEArrayImplIlLl2ENS0_19ModulePageAllocatorELb1EED2Ev:327605:4589 + 1: 4411 + 3: 4319 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplIlLl2ENS0_19ModulePageAllocatorELb1EE7destroyEv:165226 + 9: 4411 + 11: 0 + 13: 4319 + 15: 4319 + 24: 4319 + 10: _ZN9oceanbase6common13ObSEArrayImplIlLl2ENS0_19ModulePageAllocatorELb1EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZNK9oceanbase12blocksstable21ObIndexBlockRowHeader19fill_micro_des_metaEbRNS0_19ObMicroBlockDesMetaE:326554:5382 + 3: 4949 + 4: 4949 + 5: 4949 + 6: 4949 + 7: 4949 + 8: 4949 + 9: 4949 + 10: 0 + 11.1: 0 + 13: 4949 + 17: 0 + 19: 4939 + 5: _ZNK9oceanbase12blocksstable21ObIndexBlockRowHeader19get_compressor_typeEv:14847 + 2: 4949 + 6: _ZNK9oceanbase12blocksstable21ObIndexBlockRowHeader14get_encrypt_idEv:19796 + 0: 4949 + 7: _ZNK9oceanbase12blocksstable21ObIndexBlockRowHeader17get_master_key_idEv:19796 + 0: 4949 +_ZN9oceanbase3omt17ObTenantConfigMgr12get_instanceEv:326100:11121 + 1: 10870 + 2: 10870 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 3: 10870 +_ZZN9oceanbase5share17ObTabletLSService14get_from_cacheEmRKNS_6common10ObTabletIDERNS0_15ObTabletLSCacheEENK5$_358clEPKc.db28c62327e16d3ae5c8a88acfd53bbb:324976:4829 + 0: 4712 + 0.1: 0 + 0.2: 4712 + 0.3: 4541 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:4771 + 0.4: 0 + 0.10: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:77197 + 2: 4541 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.1: _ZN9oceanbase6common7ObLogKVIiLb0EEC2EPKcRKi:0 + 0: 0 + 0.5: _ZN9oceanbase6common7ObLogKVIPKcLb1EEC2ES3_OKS3_:0 + 0: 0 + 0.7: _ZN9oceanbase6common7ObLogKVIRKNS_5share18ObTabletLSCacheKeyELb0EEC2EPKcS5_:0 + 0: 0 + 0.9: _ZN9oceanbase6common7ObLogKVIRKNS_5share15ObTabletLSCacheELb0EEC2EPKcS5_:0 + 0: 0 +_ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl8ENS0_19ModulePageAllocatorELb0EED2Ev:324900:4583 + 1: 4275 + 3: 4275 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl8ENS0_19ModulePageAllocatorELb0EE7destroyEv:166725 + 9: 4275 + 11: 0 + 13: 4275 + 15: 4275 + 24: 4275 + 10: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl8ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase3omt10ObThWorker25set_th_worker_thread_nameEm:324684:5945 + 1: 5598 + 6: 5598 + 7: 0 + 8.2: 0 + 9: 0 + 11: 5598 + 6: _ZNK9oceanbase5share12ObTenantBase2idEv:39186 + 0: 5598 + 8: _ZNK9oceanbase3lib6Worker16get_worker_levelEv:0 + 0: 0 + 8.1: _ZNK9oceanbase3lib6Worker12get_group_idEv:0 + 0: 0 +_ZN9oceanbase6common13ObSEArrayImplImLl8ENS0_19ModulePageAllocatorELb0EED2Ev:324444:4608 + 1: 4269 + 3: 4269 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplImLl8ENS0_19ModulePageAllocatorELb0EE7destroyEv:166491 + 9: 4269 + 11: 0 + 13: 4269 + 15: 4269 + 24: 4269 + 10: _ZN9oceanbase6common13ObSEArrayImplImLl8ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase7storage19ObTabletBindingInfoC2Ev:324368:1379 + 0.1: 1296 + 1: 1296 + 3: 1520 + 3.7: 0 + 0: _ZN9oceanbase8memtable22ObIMultiSourceDataUnitC2Ev:16848 + 1: 1296 + 0: _ZN9oceanbase6common11ObDLinkBaseINS_8memtable22ObIMultiSourceDataUnitEEC2Ev:9072 + 1: 1296 + 0.1: _ZN9oceanbase6common9ObSEArrayINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EEC2Ev:191808 + 0.1: 1296 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EEC2ElRKS3_:172368 + 2: 1296 + 5: 1296 + 6: 1296 + 8: 1296 + 17.1: 1296 + 2: _ZN9oceanbase6common8ObIArrayINS0_10ObTabletIDEEC2EPS2_l:15552 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_10ObTabletIDEEC2EPS2_l:15552 + 0: 1296 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:73872 + 0: 1296 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:32400 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:32400 + 2: 1296 + 8: 1296 + 0.2: _ZN9oceanbase6common10ObTabletIDC2Em:9072 + 0: 1296 + 0.3: _ZN9oceanbase6common10ObTabletIDC2Em:9072 + 0: 1296 + 2: _ZN9oceanbase7storage19ObTabletBindingInfo5resetEv:42416 + 4: 1296 + 5: _ZN9oceanbase6common10ObTabletID5resetEv:10368 + 0: 1296 + 6: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EE5resetEv:5184 + 0: 1296 _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv:1303 + 8: _ZN9oceanbase6common10ObTabletID5resetEv:15200 + 0: 1520 + 3.6: _ZN9oceanbase6common10ObTabletIDD2Ev:0 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:0 + 0: 0 + 3.8: _ZN9oceanbase6common10ObTabletIDD2Ev:0 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:0 + 0: 0 +_ZN9oceanbase7storage19ObTabletBindingInfoC1Ev:324368:1379 + 0.1: 1296 + 1: 1296 + 3: 1520 + 3.7: 0 + 0: _ZN9oceanbase8memtable22ObIMultiSourceDataUnitC2Ev:16848 + 1: 1296 + 0: _ZN9oceanbase6common11ObDLinkBaseINS_8memtable22ObIMultiSourceDataUnitEEC2Ev:9072 + 1: 1296 + 0.1: _ZN9oceanbase6common9ObSEArrayINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EEC2Ev:191808 + 0.1: 1296 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EEC2ElRKS3_:172368 + 2: 1296 + 5: 1296 + 6: 1296 + 8: 1296 + 17.1: 1296 + 2: _ZN9oceanbase6common8ObIArrayINS0_10ObTabletIDEEC2EPS2_l:15552 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_10ObTabletIDEEC2EPS2_l:15552 + 0: 1296 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:73872 + 0: 1296 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:32400 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:32400 + 2: 1296 + 8: 1296 + 0.2: _ZN9oceanbase6common10ObTabletIDC2Em:9072 + 0: 1296 + 0.3: _ZN9oceanbase6common10ObTabletIDC2Em:9072 + 0: 1296 + 2: _ZN9oceanbase7storage19ObTabletBindingInfo5resetEv:42416 + 4: 1296 + 5: _ZN9oceanbase6common10ObTabletID5resetEv:10368 + 0: 1296 + 6: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EE5resetEv:5184 + 0: 1296 _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv:1303 + 8: _ZN9oceanbase6common10ObTabletID5resetEv:15200 + 0: 1520 + 3.6: _ZN9oceanbase6common10ObTabletIDD2Ev:0 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:0 + 0: 0 + 3.8: _ZN9oceanbase6common10ObTabletIDD2Ev:0 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:0 + 0: 0 +_ZZNK9oceanbase11transaction14ObTxVersionMgr17get_max_commit_tsEbENKUlPKcE_clES3_:324322:4748 + 0: 4677 + 0.1: 0 + 0.2: 4441 + 0.3: 4677 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:4695 + 0.7: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:79509 + 2: 4677 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKbLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase3sql10ObResolverC2ERNS0_16ObResolverParamsE:324280:553 + 1: 503 + 2: 503 + 4: 479 + 1: _ZN9oceanbase3sql16ObResolverParamsC2ERKS1_:296472 + 0: 521 + 0.1: 479 + 0: _ZN9oceanbase3sql14ExternalParamsC2ERKS1_:128787 + 0: 503 + 0: _ZN9oceanbase6common9ObSEArrayISt4pairIPNS_3sql9ObRawExprEPNS3_14ObConstRawExprEELl8ENS0_19ModulePageAllocatorELb0EEC2ERKSA_:121745 + 0: 521 + 0: _ZN9oceanbase6common13ObSEArrayImplISt4pairIPNS_3sql9ObRawExprEPNS3_14ObConstRawExprEELl8ENS0_19ModulePageAllocatorELb0EEC2ERKSA_:113930 + 2: 503 + 3: 503 + 4: 503 + 6: 503 + 8: 503 + 10: 503 + 2: _ZN9oceanbase6common8ObIArrayISt4pairIPNS_3sql9ObRawExprEPNS3_14ObConstRawExprEEEC2EPS8_l:6036 + 0: _ZN9oceanbase6common12ObIArrayWrapISt4pairIPNS_3sql9ObRawExprEPNS3_14ObConstRawExprEEEC2EPS8_l:6036 + 0: 503 + 7.1: _ZN9oceanbase6common19ModulePageAllocatorC2ERKNS_3lib7ObLabelEll:28671 + 3: 503 + 4: 503 + 5: 503 + 6: 503 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:14587 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:14587 + 2: 503 + 8: 503 + 16: _ZN9oceanbase6common13ObSEArrayImplISt4pairIPNS_3sql9ObRawExprEPNS3_14ObConstRawExprEELl8ENS0_19ModulePageAllocatorELb0EEaSERKSA_:32444 + 4: 503 + 8: 0 + 8.1: 521 + 8.3: 503 + 9: 0 + 13: 521 + 14: 521 + 15: 521 + 5: _ZN9oceanbase6common13ObSEArrayImplISt4pairIPNS_3sql9ObRawExprEPNS3_14ObConstRawExprEELl8ENS0_19ModulePageAllocatorELb0EE5reuseEv:9054 + 8: 503 + 9: 503 + 6: _ZNK9oceanbase6common12ObIArrayWrapISt4pairIPNS_3sql9ObRawExprEPNS3_14ObConstRawExprEEE5countEv:2012 + 0: 503 + 7: _ZN9oceanbase6common13ObSEArrayImplISt4pairIPNS_3sql9ObRawExprEPNS3_14ObConstRawExprEELl8ENS0_19ModulePageAllocatorELb0EE7reserveEl:9557 + 2: 503 + 3: 503 + 5: 0 + 6: 0 + 7: 0 + 7.3: 0 + 9: 0 + 10: 0 + 11: 0 + 12: 0 + 13: 0 + 15: 0 + 16: 0 + 23: 0 + 24.1: 0 + 27: 0 + 8: _ZN9oceanbase6common13ObSEArrayImplISt4pairIPNS_3sql9ObRawExprEPNS3_14ObConstRawExprEELl8ENS0_19ModulePageAllocatorELb0EE16internal_malloc_El:0 + 7: 0 + 13: 0 + 13: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 10: _ZN9oceanbase6common9ObClassOpISt4pairIPNS_3sql9ObRawExprEPNS3_14ObConstRawExprEELb0EE12array_expandEPKS8_PS8_l:0 + 4: 0 + 4.1: 0 + 4.3: 0 + 4.5: 0 + 5: 0 + 5: _ZN9oceanbase6common16construct_assignISt4pairIPNS_3sql9ObRawExprEPNS3_14ObConstRawExprEEEEiRT_RKS9_:0 + 2: _ZN9oceanbase6common21construct_assign_wrapISt4pairIPNS_3sql9ObRawExprEPNS3_14ObConstRawExprEEEEiRT_RKS9_NS0_8BoolTypeILb0EEE:0 + 2: 0 + 9: _ZN9oceanbase6common16construct_assignISt4pairIPNS_3sql9ObRawExprEPNS3_14ObConstRawExprEEEEiRT_RKS9_:0 + 2: _ZN9oceanbase6common21construct_assign_wrapISt4pairIPNS_3sql9ObRawExprEPNS3_14ObConstRawExprEEEEiRT_RKS9_NS0_8BoolTypeILb0EEE:0 + 2: 0 + 0.2: _ZN9oceanbase3sql14ExternalParamsD2Ev:0 + 0: 0 + 0.4: _ZN9oceanbase6common4hash18ObPlacementHashSetImLm256ELb1EEC2ERKS3_:134487 + 0: 512 + 0: _ZN9oceanbase6common8ObBitSetILl256ENS0_19ModulePageAllocatorELb1EEC2ERKS3_:124247 + 1: 509 + 3.1: 0 + 2: _ZN9oceanbase6common8ObBitSetILl256ENS0_19ModulePageAllocatorELb1EEaSERKS3_:35681 + 0: _ZN9oceanbase6common9ObSEArrayIjLl8ENS0_19ModulePageAllocatorELb1EEaSERKS3_:35681 + 0: _ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb1EEaSERKS3_:35681 + 4: 509 + 8.1: 512 + 8.3: 509 + 8.5: 0 + 9: 0 + 13: 512 + 14: 512 + 15: 512 + 5: _ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb1EE5reuseEv:10689 + 8: 509 + 9: 509 + 6: _ZNK9oceanbase6common12ObIArrayWrapIjE5countEv:3563 + 0: 509 + 7: _ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb1EE7reserveEl:7635 + 2: 509 + 3: 509 + 5: 0 + 6: 0 + 7: 0 + 7.3: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 12: 0 + 13: 0 + 15: 0 + 16: 0 + 23: 0 + 24.1: 0 + 27: 0 + 10: _ZN9oceanbase6common9ObClassOpIjLb1EE12array_expandEPKjPjl:0 + 2: 0 + 9: _ZN9oceanbase6common16construct_assignIjEEiRT_RKS2_:0 + 2: _ZN9oceanbase6common21construct_assign_wrapIjEEiRT_RKS2_NS0_8BoolTypeILb0EEE:0 + 2: 0 + 65079: _ZN9oceanbase6common9ObSEArrayIjLl8ENS0_19ModulePageAllocatorELb1EEC2Ev:79404 + 0.1: 509 + 0.5: _ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb1EEC2ElRKS2_:70242 + 2: 509 + 5: 509 + 6: 509 + 8: 509 + 17.1: 509 + 2: _ZN9oceanbase6common8ObIArrayIjEC2EPjl:9162 + 0: _ZN9oceanbase6common12ObIArrayWrapIjEC2EPjl:9162 + 0: 509 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:23414 + 0: 509 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:12725 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:12725 + 2: 509 + 8: 509 +_ZN9oceanbase3sql10ObResolverC1ERNS0_16ObResolverParamsE:324280:553 + 1: 503 + 2: 503 + 4: 479 + 1: _ZN9oceanbase3sql16ObResolverParamsC2ERKS1_:296472 + 0: 521 + 0.1: 479 + 0: _ZN9oceanbase3sql14ExternalParamsC2ERKS1_:128787 + 0: 503 + 0: _ZN9oceanbase6common9ObSEArrayISt4pairIPNS_3sql9ObRawExprEPNS3_14ObConstRawExprEELl8ENS0_19ModulePageAllocatorELb0EEC2ERKSA_:121745 + 0: 521 + 0: _ZN9oceanbase6common13ObSEArrayImplISt4pairIPNS_3sql9ObRawExprEPNS3_14ObConstRawExprEELl8ENS0_19ModulePageAllocatorELb0EEC2ERKSA_:113930 + 2: 503 + 3: 503 + 4: 503 + 6: 503 + 8: 503 + 10: 503 + 2: _ZN9oceanbase6common8ObIArrayISt4pairIPNS_3sql9ObRawExprEPNS3_14ObConstRawExprEEEC2EPS8_l:6036 + 0: _ZN9oceanbase6common12ObIArrayWrapISt4pairIPNS_3sql9ObRawExprEPNS3_14ObConstRawExprEEEC2EPS8_l:6036 + 0: 503 + 7.1: _ZN9oceanbase6common19ModulePageAllocatorC2ERKNS_3lib7ObLabelEll:28671 + 3: 503 + 4: 503 + 5: 503 + 6: 503 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:14587 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:14587 + 2: 503 + 8: 503 + 16: _ZN9oceanbase6common13ObSEArrayImplISt4pairIPNS_3sql9ObRawExprEPNS3_14ObConstRawExprEELl8ENS0_19ModulePageAllocatorELb0EEaSERKSA_:32444 + 4: 503 + 8: 0 + 8.1: 521 + 8.3: 503 + 9: 0 + 13: 521 + 14: 521 + 15: 521 + 5: _ZN9oceanbase6common13ObSEArrayImplISt4pairIPNS_3sql9ObRawExprEPNS3_14ObConstRawExprEELl8ENS0_19ModulePageAllocatorELb0EE5reuseEv:9054 + 8: 503 + 9: 503 + 6: _ZNK9oceanbase6common12ObIArrayWrapISt4pairIPNS_3sql9ObRawExprEPNS3_14ObConstRawExprEEE5countEv:2012 + 0: 503 + 7: _ZN9oceanbase6common13ObSEArrayImplISt4pairIPNS_3sql9ObRawExprEPNS3_14ObConstRawExprEELl8ENS0_19ModulePageAllocatorELb0EE7reserveEl:9557 + 2: 503 + 3: 503 + 5: 0 + 6: 0 + 7: 0 + 7.3: 0 + 9: 0 + 10: 0 + 11: 0 + 12: 0 + 13: 0 + 15: 0 + 16: 0 + 23: 0 + 24.1: 0 + 27: 0 + 8: _ZN9oceanbase6common13ObSEArrayImplISt4pairIPNS_3sql9ObRawExprEPNS3_14ObConstRawExprEELl8ENS0_19ModulePageAllocatorELb0EE16internal_malloc_El:0 + 7: 0 + 13: 0 + 13: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 10: _ZN9oceanbase6common9ObClassOpISt4pairIPNS_3sql9ObRawExprEPNS3_14ObConstRawExprEELb0EE12array_expandEPKS8_PS8_l:0 + 4: 0 + 4.1: 0 + 4.3: 0 + 4.5: 0 + 5: 0 + 5: _ZN9oceanbase6common16construct_assignISt4pairIPNS_3sql9ObRawExprEPNS3_14ObConstRawExprEEEEiRT_RKS9_:0 + 2: _ZN9oceanbase6common21construct_assign_wrapISt4pairIPNS_3sql9ObRawExprEPNS3_14ObConstRawExprEEEEiRT_RKS9_NS0_8BoolTypeILb0EEE:0 + 2: 0 + 9: _ZN9oceanbase6common16construct_assignISt4pairIPNS_3sql9ObRawExprEPNS3_14ObConstRawExprEEEEiRT_RKS9_:0 + 2: _ZN9oceanbase6common21construct_assign_wrapISt4pairIPNS_3sql9ObRawExprEPNS3_14ObConstRawExprEEEEiRT_RKS9_NS0_8BoolTypeILb0EEE:0 + 2: 0 + 0.2: _ZN9oceanbase3sql14ExternalParamsD2Ev:0 + 0: 0 + 0.4: _ZN9oceanbase6common4hash18ObPlacementHashSetImLm256ELb1EEC2ERKS3_:134487 + 0: 512 + 0: _ZN9oceanbase6common8ObBitSetILl256ENS0_19ModulePageAllocatorELb1EEC2ERKS3_:124247 + 1: 509 + 3.1: 0 + 2: _ZN9oceanbase6common8ObBitSetILl256ENS0_19ModulePageAllocatorELb1EEaSERKS3_:35681 + 0: _ZN9oceanbase6common9ObSEArrayIjLl8ENS0_19ModulePageAllocatorELb1EEaSERKS3_:35681 + 0: _ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb1EEaSERKS3_:35681 + 4: 509 + 8.1: 512 + 8.3: 509 + 8.5: 0 + 9: 0 + 13: 512 + 14: 512 + 15: 512 + 5: _ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb1EE5reuseEv:10689 + 8: 509 + 9: 509 + 6: _ZNK9oceanbase6common12ObIArrayWrapIjE5countEv:3563 + 0: 509 + 7: _ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb1EE7reserveEl:7635 + 2: 509 + 3: 509 + 5: 0 + 6: 0 + 7: 0 + 7.3: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 12: 0 + 13: 0 + 15: 0 + 16: 0 + 23: 0 + 24.1: 0 + 27: 0 + 10: _ZN9oceanbase6common9ObClassOpIjLb1EE12array_expandEPKjPjl:0 + 2: 0 + 9: _ZN9oceanbase6common16construct_assignIjEEiRT_RKS2_:0 + 2: _ZN9oceanbase6common21construct_assign_wrapIjEEiRT_RKS2_NS0_8BoolTypeILb0EEE:0 + 2: 0 + 65079: _ZN9oceanbase6common9ObSEArrayIjLl8ENS0_19ModulePageAllocatorELb1EEC2Ev:79404 + 0.1: 509 + 0.5: _ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb1EEC2ElRKS2_:70242 + 2: 509 + 5: 509 + 6: 509 + 8: 509 + 17.1: 509 + 2: _ZN9oceanbase6common8ObIArrayIjEC2EPjl:9162 + 0: _ZN9oceanbase6common12ObIArrayWrapIjEC2EPjl:9162 + 0: 509 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:23414 + 0: 509 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:12725 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:12725 + 2: 509 + 8: 509 +_ZN9oceanbase7storage31ObSSTableMultiVersionRowScanner10inner_openERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextEPNS0_8ObITableEPKv:323733:997 + 5: 950 + 6: 950 + 7: 950 + 8: 14 + 9.1: 14 + 12: 950 + 13: 950 + 14: 1068 + 15.1: 14 + 16.1: 1075 _ZN9oceanbase7storage19ObSSTableRowScanner10inner_openERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextEPNS0_8ObITableEPKv:1083 + 17.1: 14 + 20: 1075 + 14: _ZNK9oceanbase12blocksstable12ObDatumRange22to_multi_version_rangeERNS_6common12ObIAllocatorERS1_:155608 + 2: 950 + 3: 950 + 4: 950 + 6: 950 + 7: 14 + 8.1: 14 + 9.1: 1024 _ZNK9oceanbase12blocksstable13ObDatumRowkey23to_multi_version_rowkeyEbRNS_6common12ObIAllocatorERS1_:980 + 10.1: 14 + 11.1: 1068 _ZNK9oceanbase12blocksstable13ObDatumRowkey23to_multi_version_rowkeyEbRNS_6common12ObIAllocatorERS1_:1042 + 12.1: 14 + 14: 1068 + 15: 1068 + 18: 1068 + 3.1: _ZNK9oceanbase6common12ObBorderFlag15inclusive_startEv:8550 + 0: 950 + 6: _ZNK9oceanbase12blocksstable12ObDatumRange8is_validEv:37050 + 2: 950 + 2: _ZNK9oceanbase12blocksstable13ObDatumRowkey8is_validEv:17100 + 0: 950 + 0.1: 950 + 2.1: _ZNK9oceanbase12blocksstable13ObDatumRowkey8is_validEv:14250 + 0: 950 + 0.1: 950 +_ZN9oceanbase5share17ObLSRestoreStatusaSERKS1_:323190:18162 + 1: 17955 + 2: 17955 + 3: 17955 + 5: 17955 +_ZN9oceanbase3sql15ObTableInsertOp18inner_get_next_rowEv:322448:266 + 1: 241 + 2: 241 + 3: 241 + 7.1: 571 + 8: 540 + 9.1: 3 + 10.1: 277 + 12.1: 1 + 14: 277 + 16.1: 257 + 17: 3 + 18.1: 1 + 20.1: 289 + 21.1: 1 + 22.1: 289 + 22.2: 3 + 24: 3 + 27: 289 + 33: 280 + 33.1: 280 _ZN9oceanbase3sql15ObTableInsertOp18ins_rows_post_procEv:284 + 34.1: 1 + 40: 1 + 41: 1 + 42: 1 + 42.1: 1 + 43: 1 + 44: 1 + 45.1: 1 + 49: 265 + 8: _ZN9oceanbase3sql10ObOperator16try_check_statusEv:15144 + 2: 540 + 3: 3 + 10.1: _ZN9oceanbase3sql15ObTableInsertOp23get_next_row_from_childEv:57544 + 2: 540 + 3: 540 _ZN9oceanbase3sql10ObOperator12get_next_rowEv:551 + 5.1: 1 + 9.1: 252 _ZZN9oceanbase3sql15ObTableInsertOp23get_next_row_from_childEvENK5$_380clEPKc.d0cfd61ae46f76aef14238838f0240b8:256 + 11: 257 + 8: _ZN9oceanbase3sql10ObOperator20clear_evaluated_flagEv:28045 + 2.1: 250 + 2.3: 3 + 3: 250 + 2.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql10ObEvalInfoEE5countEv:1126 + 0: 250 + 3: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql10ObEvalInfoEE2atEl:4012 + 6: 250 + 3.1: _ZN9oceanbase3sql10ObEvalInfo20clear_evaluated_flagEv:11103 + 2: 250 + 4: 3 + 16.1: _ZN9oceanbase3sql11get_my_specINS0_15ObTableInsertOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:1028 + 5: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:1028 + 2: 257 + 20.1: _ZN9oceanbase3sql15ObTableInsertOp17insert_row_to_dasEv:190931 + 2: 257 + 3: 257 + 4.1: 257 + 4.2: 3 + 4.4: 3 + 4.5: 3 + 4.11: 3 + 6: 257 + 7: 257 + 8: 257 + 9.2: 0 + 9.4: 1 + 12.1: 278 + 12.2: 278 + 12.3: 278 + 15: 248 + 16.1: 278 + 16.2: 506 + 16.3: 506 + 16.5: 278 + 18: 248 + 20: 248 + 21: 248 + 22: 250 _ZN9oceanbase3sql12ObDMLService26init_heap_table_pk_for_insERKNS0_10ObInsCtDefERNS0_9ObEvalCtxE:263 + 23.1: 3 + 24.1: 252 _ZN9oceanbase3sql12ObDMLService18process_insert_rowERKNS0_10ObInsCtDefERNS0_10ObInsRtDefERNS0_15ObTableModifyOpERb:258 + 25: 3 + 25.1: 1 + 28.1: 3 + 30.1: 252 + 32: 253 _ZN9oceanbase3sql15ObTableInsertOp15calc_tablet_locERKNS0_10ObInsCtDefERNS0_10ObInsRtDefERPNS0_14ObDASTabletLocE:264 + 33.1: 3 + 34.1: 265 _ZN9oceanbase3sql12ObDMLService24set_heap_table_hidden_pkERKNS0_10ObInsCtDefERKNS_6common10ObTabletIDERNS0_9ObEvalCtxE:266 + 37.1: 3 + 38.1: 268 + 39.1: 3 + 41.1: 268 + 41.2: 278 + 42: 278 + 42.1: 268 _ZN9oceanbase3sql13TriggerHandle19do_handle_after_rowERNS0_15ObTableModifyOpERKNS0_14ObTrigDMLCtDefERNS0_14ObTrigDMLRtDefEm:269 + 46.1: 3 + 49: 3 + 49.1: 3 + 49.2: 3 + 50: 3 + 52: 1 + 53: 1 + 53.1: 1 + 54: 1 + 62: 265 + 63: 278 _ZN9oceanbase3sql15ObTableModifyOp20merge_implict_cursorEllll:279 + 64.1: 3 + 70: 278 + 71: 3 + 72: 3 + 72.3: 3 + 79.1: 1 + 83: 278 + 89.1: 289 + 89.2: 3 + 89.4: 3 + 89.5: 3 + 89.11: 3 + 90: 289 + 4.1: _ZN9oceanbase3lib20is_trace_log_enabledEv:2056 + 2: 257 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:265 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:1799 + 2: 257 + 4.4: _ZN9oceanbase3lib20is_trace_log_enabledEv:36 + 2: 3 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:21 + 2: 3 + 4.12: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:81 + 0: 3 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:15 + 2: 3 + 6: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:3598 + 2: 257 + 12.2: _ZN9oceanbase3sql11get_my_specINS0_15ObTableInsertOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:3404 + 5: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:3404 + 2: 278 + 13.1: _ZNK9oceanbase6common12ObIArrayWrapINS0_11ObArrayWrapIPNS_3sql10ObInsCtDefEEEE2atEl:1736 + 6: 248 + 14: _ZN9oceanbase6common12ObIArrayWrapINS0_11ObArrayWrapINS_3sql10ObInsRtDefEEEE2atEl:1736 + 6: 248 + 16.2: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql10ObInsCtDefEE5countEv:4216 + 18: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql10ObInsCtDefEE2atEl:2728 + 6: 248 + 19: _ZN9oceanbase6common12ObIArrayWrapINS_3sql10ObInsRtDefEE2atEl:9176 + 6: 248 + 38.1: _ZN9oceanbase3sql12ObDMLService10insert_rowERKNS0_10ObInsCtDefERNS0_10ObInsRtDefEPKNS0_14ObDASTabletLocERNS0_10ObDMLRtCtxE:22511 + 5: 265 + 6: 286 _ZN9oceanbase3sql12ObDMLService25check_dml_tablet_validityERNS0_10ObDMLRtCtxERKNS0_14ObDASTabletLocERKNS_6common12ObFixedArrayIPNS0_6ObExprENS7_12ObIAllocatorEEERKNS0_14ObDMLBaseCtDefERNS0_14ObDMLBaseRtDefE:277 + 11.1: 3 + 12.1: 268 + 17.1: 3 + 19: 3 + 12.1: _ZN9oceanbase3sql12ObDMLService10insert_rowERKNS0_13ObDASInsCtDefERNS0_13ObDASInsRtDefEPKNS0_14ObDASTabletLocERNS0_10ObDMLRtCtxERKNS_6common12ObFixedArrayIPNS0_6ObExprENSC_12ObIAllocatorEEE:8298 + 6: 286 _ZN9oceanbase3sql12ObDMLService19write_row_to_das_opILi2EEEiRKNS0_17ObDASDMLBaseCtDefERNS0_17ObDASDMLBaseRtDefEPKNS0_14ObDASTabletLocERNS0_10ObDMLRtCtxERKNS_6common12ObFixedArrayIPNS0_6ObExprENSD_12ObIAllocatorEEE:304 + 49.1: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:21 + 2: 3 + 50.2: _ZNK9oceanbase3sql16ObSQLSessionInfo25is_load_data_exec_sessionEv:21 + 0: 3 + 52: _ZN9oceanbase6common25ob_get_tsi_warning_bufferEv:9 + 2: 1 + 54: _ZN9oceanbase6common15ObWarningBuffer21set_error_line_columnEii:21 + 1: _ZN9oceanbase6common15ObWarningBuffer11WarningItem11set_line_noEi:6 + 0: 1 + 1.1: _ZN9oceanbase6common15ObWarningBuffer11WarningItem13set_column_noEi:15 + 0: 1 + 72: _ZN9oceanbase3sql11get_my_specINS0_15ObTableInsertOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:12 + 5: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:12 + 2: 3 + 72.1: _ZNK9oceanbase6common12ObIArrayWrapINS0_11ObArrayWrapIPNS_3sql10ObInsCtDefEEEE2atEl:21 + 6: 3 + 72.2: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql10ObInsCtDefEE2atEl:21 + 6: 3 + 84: _ZN9oceanbase3sql17ObPhysicalPlanCtx30record_last_insert_id_cur_stmtEv:6143 + 2: 278 + 2.1: 278 + 3: 3 + 87: _ZN9oceanbase3sql17ObPhysicalPlanCtx27set_last_insert_id_cur_stmtEm:16 + 2: 1 + 89.1: _ZN9oceanbase3lib20is_trace_log_enabledEv:2305 + 2: 278 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:291 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:2023 + 2: 289 + 89.4: _ZN9oceanbase3lib20is_trace_log_enabledEv:36 + 2: 3 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:21 + 2: 3 + 89.12: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:81 + 0: 3 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:15 + 2: 3 + 23: _ZN9oceanbase3sql10ObOperator20clear_evaluated_flagEv:129 + 2.1: 3 + 2.3: 3 + 3: 3 + 2.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql10ObEvalInfoEE5countEv:24 + 0: 3 + 3: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql10ObEvalInfoEE2atEl:12 + 6: 3 + 3.1: _ZN9oceanbase3sql10ObEvalInfo20clear_evaluated_flagEv:36 + 2: 3 + 4: 3 + 25: _ZN9oceanbase3sql13ObErrLogRtDef5resetEv:72 + 2: 3 + 3: 3 + 27: _ZN9oceanbase3sql11get_my_specINS0_15ObTableInsertOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:1156 + 5: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:1156 + 2: 289 + 33: _ZN9oceanbase3sql11get_my_specINS0_15ObTableInsertOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:1120 + 5: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:1120 + 2: 280 + 41: _ZN9oceanbase3sql13ObExecContext11get_sql_ctxEv:7 + 0: 1 + 42: _ZN9oceanbase3sql11get_my_specINS0_15ObTableInsertOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:4 + 5: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:4 + 2: 1 + 42.1: _ZN9oceanbase3sql15ObMultiStmtItem20is_ins_multi_val_optEv:4 + 0: 1 + 42.2: _ZNK9oceanbase6common12ObIArrayWrapINS0_11ObArrayWrapIPNS_3sql10ObInsCtDefEEEE2atEl:7 + 6: 1 + 42.3: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql10ObInsCtDefEE2atEl:4 + 6: 1 +_ZN9oceanbase7storage21ObIndexTreePrefetcherC2Ev:321777:1216 + 1: 1179 + 3: 1179 + 7: 1179 _ZN9oceanbase7storage21ObMicroBlockHandleMgrC1Ev:1193 + 9: 1164 + 12: 1164 _ZN9oceanbase12blocksstable22ObIndexBlockRowScannerC1Ev:1182 + 13.1: 2392 _ZN9oceanbase7storage22ObMicroBlockDataHandleC1Ev:1196 + 13.3: 0 + 13.4: 0 + 14: 1165 _ZN9oceanbase12blocksstable12MacroBlockIdC1Ev:1201 + 15: 1179 + 15.1: 1142 + 15.7: 0 + 15.9: 0 + 0: _ZN9oceanbase6common12ObFixedArrayIiNS0_12ObIAllocatorEEC2Ev:48888 + 0: 1164 + 0: _ZN9oceanbase6common16ObFixedArrayImplIiNS0_12ObIAllocatorEEC2EPS2_l:27936 + 1: _ZN9oceanbase6common8ObIArrayIiEC2Ev:27936 + 0: _ZN9oceanbase6common12ObIArrayWrapIiEC2Ev:27936 + 0: 1164 + 0.1: _ZN9oceanbase6common12ObFixedArrayINS_5share6schema16ObColumnSchemaV2ENS0_12ObIAllocatorEEC2Ev:48888 + 0: 1164 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS_5share6schema16ObColumnSchemaV2ENS0_12ObIAllocatorEEC2EPS5_l:27936 + 3: 1164 + 8: _ZN9oceanbase12blocksstable16ObMicroBlockDataC2Ev:27936 + 0: 1164 + 15.10: _ZN9oceanbase6common16ObFixedArrayImplINS_5share6schema16ObColumnSchemaV2ENS0_12ObIAllocatorEED2Ev:0 + 0: 0 + 0.3: 0 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS_5share6schema16ObColumnSchemaV2ENS0_12ObIAllocatorEE7destroyEv:0 + 2: 0 + 5: 0 + 6.1: 0 + 6.3: 0 + 7: 0 + 9: 0 + 10: 0 + 12: 0 + 13: 0 + 15: 0 + 15.11: _ZN9oceanbase6common16ObFixedArrayImplIiNS0_12ObIAllocatorEED2Ev:0 + 0: 0 + 0.3: 0 + 0: _ZN9oceanbase6common16ObFixedArrayImplIiNS0_12ObIAllocatorEE7destroyEv:0 + 2: 0 + 5: 0 + 9: 0 + 10: 0 + 12: 0 + 13: 0 + 15: 0 + 15.12: _ZN9oceanbase7storage21ObMicroBlockHandleMgrD2Ev:0 + 0: 0 + 0.1: _ZN9oceanbase7storage11ObHandleMgrINS0_22ObMicroBlockDataHandleENS_12blocksstable20ObMicroBlockCacheKeyELl64EED2Ev:0 + 0: 0 + 0: _ZN9oceanbase7storage11ObHandleMgrINS0_22ObMicroBlockDataHandleENS_12blocksstable20ObMicroBlockCacheKeyELl64EE5resetEv:0 + 2: 0 + 4: 0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 10: 0 + 12: 0 +_ZN9oceanbase6common12ObCurTraceId7TraceId3setERKS2_:321741:5551 + 1: 5107 + 2: 5107 + 3: 5107 + 4: 5107 + 5: 5107 + 7: 5107 + 6: _ZN9oceanbase6common12ObCurTraceId7TraceId16check_ipv6_validEv:86819 + 1: 5107 + 2: 0 + 2.1: 0 +_ZN9oceanbase6common13ObSEArrayImplIPNS_7storage18ObStoreRowIteratorELl8ENS0_19ModulePageAllocatorELb0EED2Ev:321368:4478 + 1: 4220 + 3: 4220 + 3.2: 8 + 2: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage18ObStoreRowIteratorELl8ENS0_19ModulePageAllocatorELb0EE7destroyEv:165164 + 9: 4220 + 11: 8 + 13: 4220 + 15: 4220 + 24: 4220 + 10: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage18ObStoreRowIteratorELl8ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:536 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:536 + 0: 8 + 0.2: 8 + 0.1: _ZN9oceanbase6common7ob_freeEPv:352 + 2: 8 + 3: 8 + 4: 8 + 5: 8 + 4: _ZL12abort_unlessb:72 + 5: 8 + 6: 8 +_ZN9oceanbase6common11ObTimeGuard5clickEPKc:320148:5497 + 1: 5377 + 3: 5210 + 4: 5210 + 5: 5210 + 6: 5210 + 8: 5210 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:5377 + 2: 5377 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:5586 +_ZN9oceanbase3sql15ObExecuteResult4openERNS0_13ObExecContextE:320063:4505 + 1: 4363 + 5: 4706 + 4: _ZNK9oceanbase3sql15ObExecuteResult4openEv:256923 + 2: 4363 + 3: 4363 + 4: 0 + 5.1: 0 + 6.1: 4706 _ZN9oceanbase3sql10ObOperator4openEv:4522 + 8.1: 0 + 11: 4706 +_ZN9oceanbase8memtable10ObMemtable3setERNS_7storage10ObStoreCtxEmRKNS2_15ObTableReadInfoERKNS_6common8ObIArrayINS_5share6schema9ObColDescEEERKNS2_10ObStoreRowE:319339:864 + 6: 834 + 9: 834 + 10.1: 3 + 12.2: 834 + 12.3: 834 + 13: 834 + 13.3: 834 + 14: 834 + 14.2: 834 + 15.1: 3 + 18.1: 834 _ZN9oceanbase8memtable16ObMvccWriteGuard10write_authERNS_7storage10ObStoreCtxE:861 + 18.2: 870 + 19.1: 3 + 21: 870 + 23: 870 _ZN9oceanbase8memtable10ObMemtable4set_ERNS_7storage10ObStoreCtxEmRKNS2_15ObTableReadInfoERKNS_6common8ObIArrayINS_5share6schema9ObColDescEEERKNS2_10ObStoreRowEPSH_PKNS9_IlEE:898 + 30: 827 _ZNK9oceanbase7storage9ObFreezer9is_freezeEj:827 + 33.6: 813 _ZN9oceanbase8memtable16ObMvccWriteGuardD1Ev:801 + 33.7: 3 + 8: _ZN9oceanbase8memtable16ObMvccWriteGuardC2Eb:11676 + 1: 834 + 2: 834 + 3: 834 + 13.2: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:3336 + 0: 834 + 21: _ZN9oceanbase3lib15CompatModeGuardC2ENS0_6Worker10CompatModeE:89313 + 2: _ZN9oceanbase3lib6Worker4selfEv:24456 + 3: 870 + 4: 3 + 2.1: _ZN9oceanbase3lib6Worker22get_compatibility_modeEv:40191 + 2: _ZN9oceanbase3lib15get_compat_modeEv:40191 + 2: 870 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:21921 + 2: 870 + 2.1: 3 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:66 + 1: 3 + 3: _ZN9oceanbase3lib6Worker4selfEv:7911 + 3: 870 + 4: 3 + 3.1: _ZN9oceanbase3lib6Worker22set_compatibility_modeENS1_10CompatModeE:16755 + 2: _ZN9oceanbase3lib15set_compat_modeENS0_6Worker10CompatModeE:16755 + 2: 870 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:225 + 2: 3 + 2.1: 3 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:66 + 1: 3 + 30.1: _ZN9oceanbase8memtable16ObMvccWriteGuard13set_is_freezeEb:2379 + 1: 793 + 31: _ZN9oceanbase3lib15CompatModeGuardD2Ev:57342 + 2: _ZN9oceanbase3lib6Worker4selfEv:20714 + 3: 793 + 4: 3 + 2.1: _ZN9oceanbase3lib6Worker22set_compatibility_modeENS1_10CompatModeE:36628 + 2: _ZN9oceanbase3lib15set_compat_modeENS0_6Worker10CompatModeE:36628 + 2: 793 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:19975 + 2: 793 + 2.1: 3 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:66 + 1: 3 + 31.1: _ZN9oceanbase3lib15CompatModeGuardD2Ev:408 + 2: _ZN9oceanbase3lib6Worker4selfEv:147 + 3: 3 + 4: 3 + 2.1: _ZN9oceanbase3lib6Worker22set_compatibility_modeENS1_10CompatModeE:261 + 2: _ZN9oceanbase3lib15set_compat_modeENS0_6Worker10CompatModeE:261 + 2: 3 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:198 + 2: 3 + 2.1: 3 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:66 + 1: 3 +_ZN9oceanbase6common11ObArrayImplIPKNS0_8ObIArrayIlEENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEED2Ev:319114:5511 + 1: 5147 + 3: 5147 + 3.2: 0 + 2: _ZN9oceanbase6common11ObArrayImplIPKNS0_8ObIArrayIlEENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEE7destroyEv:164704 + 2: 5147 + 6: 0 + 7: 0 + 9: 5147 + 11: 5147 +_ZN9oceanbase6common15ObFIFOAllocator5resetEv:318527:1113 + 1: 1087 + 2: 1087 + 3: 1093 + 3.1: 1093 + 6: 1093 + 6.4: 1093 + 7.1: 0 + 9: 0 + 13: 1102 + 15.1: 12 + 16: 12 _ZN9oceanbase6common8ObMalloc4freeEPv:13 + 18.1: 0 + 21: 1123 + 21.3: 1123 + 21.5: 1123 + 22.1: 0 + 23.1: 0 + 25: 1195 + 25.3: 1195 + 25.5: 1195 + 26.1: 0 + 27.1: 0 + 30: 1161 + 32: 1161 + 34: 1161 + 36.11: 1089 + 65445: 1093 + 2: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEEC2ERS3_:37024 + 1: 1087 + 4: 1093 + 5.1: 0 + 4: _ZN9oceanbase6common10ObSpinLock4lockEv:20653 + 2: 1087 _ZN9oceanbase6common12ObLatchMutex4lockEjl:1094 + 6: _ZN9oceanbase6common7ObDListINS0_11ObDLinkNodeIPNS0_15ObFIFOAllocator14BasePageHeaderEEEE9get_firstEv:8744 + 0: 1093 + 8: _ZN9oceanbase6common7ObDListINS0_11ObDLinkNodeIPNS0_15ObFIFOAllocator14BasePageHeaderEEEE6removeEPS6_:0 + 3: 0 + 7: 0 + 6: _ZN9oceanbase6common11ObDLinkBaseINS0_11ObDLinkNodeIPNS0_15ObFIFOAllocator14BasePageHeaderEEEE6unlinkEv:0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 29: _ZN9oceanbase6common7ObDListINS0_11ObDLinkNodeIPNS0_15ObFIFOAllocator14BasePageHeaderEEEE5clearEv:32508 + 2: 1161 + 3: 1161 + 4: 1161 + 31: _ZN9oceanbase6common7ObDListINS0_11ObDLinkNodeIPNS0_15ObFIFOAllocator14BasePageHeaderEEEE5clearEv:32508 + 2: 1161 + 3: 1161 + 4: 1161 + 36.11: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEED2Ev:20394 + 2: 1161 + 3: 1161 + 3.1: 1089 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase6common10ObSpinLock6unlockEv:1161 + 2: 1161 _ZN9oceanbase6common12ObLatchMutex6unlockEv:1166 + 36.12: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEED2Ev:0 + 2: 0 + 3: 0 + 3.1: 0 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase6common10ObSpinLock6unlockEv:0 + 2: 0 +_ZN9oceanbase6common16ObFixedArrayImplISt4pairIlPNS_3sql13ObSqlArrayObjEENS0_12ObIAllocatorEED2Ev:318260:4861 + 0: 4565 + 0.1: 4522 + 0.3: 0 + 0: _ZN9oceanbase6common16ObFixedArrayImplISt4pairIlPNS_3sql13ObSqlArrayObjEENS0_12ObIAllocatorEE7destroyEv:181611 + 2: 4565 + 5: 4565 + 9: 0 + 10: 0 + 12: 4522 + 13: 4522 + 15: 4522 +_ZNK9oceanbase3sql11ObResultSet23need_end_trans_callbackEv:317113:5111 + 1: 4748 + 5: 4748 + 8.1: 1554 + 10.1: 1554 + 10.2: 1554 + 11: 1554 + 13.1: 1554 + 21: 1264 + 21.1: 0 + 22: 0 + 23.1: 1264 + 23.2: 1013 + 24: 1013 + 28: 4740 + 5: _ZNK9oceanbase3sql11ObResultSet13get_stmt_typeEv:61724 + 2: 4748 + 314: 4748 + 10.1: _ZNK9oceanbase3sql16ObSQLSessionInfo23get_has_temp_table_flagEv:10878 + 0: 1554 + 11.1: _ZNK9oceanbase3sql16ObSQLSessionInfo23has_tx_level_temp_tableEv:10878 + 1: 1554 + 16: _ZNK9oceanbase3sql18ObBasicSessionInfo24has_explicit_start_transEv:8848 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo10TransFlags24has_explicit_start_transEv:8848 + 0: 1264 + 18: _ZNK9oceanbase3sql18ObBasicSessionInfo14get_autocommitERb:41712 + 2: 1264 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache14get_autocommitEv:37920 + 0: 1264 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache14get_autocommitEb:29072 + 0: 1264 + 21.1: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 22.2: _ZNK9oceanbase3sql11ObResultSet12is_with_rowsEv:0 + 2: 0 + 23.2: _ZNK9oceanbase3sql14ObPhysicalPlan13is_need_transEv:8104 + 0: 1013 +_ZZN9oceanbase11transaction14ObTransService18get_read_store_ctxERKNS0_16ObTxReadSnapshotEblRNS_7storage10ObStoreCtxEENK5$_992clEPKc.93feb755617c21c32b229b78773c290c:314481:4602 + 0: 4479 + 0.1: 0 + 0.2: 4479 + 0.3: 4416 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:4423 + 0.11: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:75072 + 2: 4416 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS_7storage10ObStoreCtxELb0EEC2EPKcS5_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKbLb0EEC2EPKcS3_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVIRKNS_11transaction16ObTxReadSnapshotELb0EEC2EPKcS5_:0 + 0: 0 +_ZN9oceanbase7storage17ObLSTabletService11insert_rowsERNS0_10ObStoreCtxERKNS0_14ObDMLBaseParamERKNS_6common8ObIArrayImEEPNS7_16ObNewRowIteratorERl:314388:271 + 6: 247 + 7: 247 + 8: 247 _ZN9oceanbase7storage14ObTabletHandleC1Ev:247 + 9: 258 + 13: 226 + 14: 0 + 15.1: 0 + 17: 227 + 18: 227 + 19: 227 + 19.2: 227 + 20: 227 + 21: 0 + 22.1: 0 + 23.1: 227 _ZN9oceanbase7storage17ObLSTabletService20check_and_get_tabletERKNS_6common10ObTabletIDERNS0_14ObTabletHandleEl:236 + 23.2: 245 + 24.1: 0 + 26.1: 245 _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:245 + 27.1: 243 _ZN9oceanbase7storage15ObDMLRunningCtxC1ERNS0_10ObStoreCtxERKNS0_14ObDMLBaseParamERNS_6common12ObIAllocatorES9_NS_12blocksstable9ObDmlFlagE:249 + 29: 233 _ZN9oceanbase8memtable13ObMemtableCtx19get_query_allocatorEv:245 + 32: 273 + 33: 0 + 34: 273 + 35: 273 + 39: 273 + 40: 273 _ZN9oceanbase7storage10ObRowsInfoC1Ev:277 + 43: 242 _ZN9oceanbase7storage17ObLSTabletService23prepare_dml_running_ctxEPKNS_6common8ObIArrayImEES6_RNS0_14ObTabletHandleERNS0_15ObDMLRunningCtxE:246 + 43.1: 246 + 44.1: 0 + 47.1: 248 + 47.2: 503 + 47.3: 522 + 47.4: 522 + 48: 251 + 49: 0 + 50.1: 0 + 51.1: 251 + 55: 251 _ZN9oceanbase7storage10ObRowsInfo4initERKNS0_15ObRelativeTableERNS0_10ObStoreCtxERKNS0_15ObTableReadInfoE:267 + 55.1: 246 + 56.1: 0 + 57.1: 246 _ZN9oceanbase8memtable16ObQueryAllocator5allocEl:261 + 57.2: 256 + 58: 0 + 59.1: 0 + 61: 256 + 61.1: 256 + 61.2: 256 + 61.3: 256 + 61.4: 273 + 62.1: 273 + 62.3: 0 + 63: 0 + 68: 279 + 69.1: 279 + 70: 0 + 71.1: 0 + 72.1: 279 _ZN9oceanbase7storage17ObLSTabletService21insert_rows_to_tabletERNS0_14ObTabletHandleERNS0_15ObDMLRunningCtxEPKNS_6common8ObNewRowElRNS0_10ObRowsInfoEPNS0_10ObStoreRowERlSE_:279 + 72.2: 251 + 74.1: 0 + 78: 259 + 79: 259 + 81: 259 + 82: 259 _ZN9oceanbase8memtable16ObQueryAllocator4freeEPv:278 + 85: 279 + 87: 279 + 88.2: 286 + 88.3: 0 + 88.4: 0 + 88.5: 0 + 88.6: 0 + 88.10: 0 + 88.11: 0 + 88.12: 0 + 90: 286 _ZN9oceanbase7storage10ObRowsInfoD1Ev:313 + 90.1: 0 + 90.2: 0 + 92: 262 + 93.20: 230 + 93.21: 0 + 93.22: 0 + 93.24: 241 _ZN9oceanbase7storage14ObTabletHandleD1Ev:241 + 11: _ZN9oceanbase6common11ObTimeGuardC2EPKcl:9303 + 2: 201 + 3: 201 + 4: 201 + 6: 201 + 7: 201 + 8: 201 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:258 + 2: 258 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:258 + 16.1: _ZNK9oceanbase7storage10ObStoreCtx8is_validEv:4972 + 2: 226 + 2.1: 226 _ZNK9oceanbase8memtable15ObMvccAccessCtx8is_validEv:226 + 2: _ZNK9oceanbase5share6ObLSID8is_validEv:904 + 0: 226 + 17.1: _ZNK9oceanbase7storage10ObStoreCtx8is_writeEv:681 + 0: _ZNK9oceanbase8memtable15ObMvccAccessCtx8is_writeEv:681 + 0: 227 + 18.1: _ZNK9oceanbase7storage14ObDMLBaseParam8is_validEv:908 + 0: 227 + 26.2: _ZNK9oceanbase5share12ObTenantBase2idEv:1631 + 0: 233 + 26.3: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:31921 + 4: 233 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:27727 + 2: 233 + 3: 233 + 4: 233 + 5: 233 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:10718 + 0: 233 + 47.2: _ZN9oceanbase7storage17ObLSTabletService13get_next_rowsEPNS_6common16ObNewRowIteratorERPNS2_8ObNewRowERl:10060 + 5: 503 + 6: 503 _ZN9oceanbase6common16ObNewRowIterator13get_next_rowsERPNS0_8ObNewRowERl:508 + 54.1: _ZNK9oceanbase7storage8ObTablet18get_full_read_infoEv:2008 + 0: 251 + 61.2: _ZN9oceanbase7storage10ObStoreRowC2Ev:12800 + 1: 256 + 3: 256 + 4.1: 256 + 1: _ZN9oceanbase12blocksstable12ObDmlRowFlagC2Ev:2816 + 1: 256 + 1802.2: 256 + 63: _ZN9oceanbase12blocksstable12ObDmlRowFlag8set_flagENS0_9ObDmlFlagE:3276 + 3: 273 + 84: _ZN9oceanbase6common16ObArenaAllocator5resetEv:18414 + 0: 279 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:13671 + 4.1: 279 + 6: 0 + 7: 0 + 8: 0 + 13: 279 + 14: 279 + 15: 279 + 18: 279 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:0 + 0: 0 + 5.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 88.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:1423 + 2: 279 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:283 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:1144 + 2: 286 + 90.3: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:0 + 0: 0 + 90.5: _ZN9oceanbase7storage15ObDMLRunningCtxD2Ev:25378 + 0: 242 _ZN9oceanbase5share6schema19ObSchemaGetterGuardD1Ev:244 + 0.3: 244 _ZN9oceanbase7storage15ObRelativeTableD1Ev:245 + 0.1: _ZN9oceanbase7storage10ObStoreRowD2Ev:2032 + 0: _ZN9oceanbase11transaction9ObTransIDD2Ev:2032 + 0: 254 + 0.2: _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema9ObColDescELl52ENS0_19ModulePageAllocatorELb0EED2Ev:17684 + 1: 254 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema9ObColDescELl52ENS0_19ModulePageAllocatorELb0EE7destroyEv:13112 + 9: 254 + 11: 0 + 13: 244 + 15: 244 + 24: 244 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema9ObColDescELl52ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 90.6: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:8646 + 0: 262 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEED2Ev:4978 + 0: 262 + 0.3: 0 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:3144 + 4.1: 262 + 6: 0 + 7: 0 + 8: 0 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:0 + 0: 0 + 5.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 93.20: _ZN9oceanbase6common11ObTimeGuardD2Ev:5082 + 2.1: 241 + 2.2: 0 + 3.1: 0 + 3.5: 0 + 2: _ZNK9oceanbase6common11ObTimeGuard8get_diffEv:1949 + 2: 241 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:262 + 2: 262 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:262 +_ZN9oceanbase6common11DefHashFuncINS0_19DatumHashCalculatorILNS0_9ObObjTypeE4ENS0_12ObMurmurHashEEEE4hashERKNS0_7ObDatumEm:313806:3473 + 1: 3435 + 3: 3435 + 8: 3472 + 3: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:13740 + 0: 3435 + 6: _ZN9oceanbase6common19DatumHashCalculatorILNS0_9ObObjTypeE4ENS0_12ObMurmurHashEE15calc_datum_hashERKNS0_7ObDatumEm:130530 + 2: _ZN9oceanbase6common17ObjHashCalculatorILNS0_9ObObjTypeE4ENS0_12ObMurmurHashENS0_7ObDatumEE15calc_hash_valueERKS4_m:130530 + 0: _ZNK9oceanbase6common7ObDatum9get_int32Ev:20610 + 0: 3435 + 0.1: _ZN9oceanbase6common12ObMurmurHash4hashEPKvmm:109920 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:109920 + 5: 3435 + 13: 3435 + 14: 3435 + 15: 3435 +_ZNK9oceanbase12blocksstable20ObMicroBlockCacheKeyeqERKNS_6common13ObIKVCacheKeyE:313551:5378 + 1: 4977 + 3: 4977 + 3.2: 4977 + 3.1: _ZNK9oceanbase12blocksstable14ObMicroBlockIdeqERKS1_:233919 + 2: 4977 + 2.1: 4977 + 2.2: 4977 + 2: _ZNK9oceanbase12blocksstable12MacroBlockIdeqERKS1_:139356 + 2: 4977 + 2.1: 4977 + 3: 4977 + 3.1: 4977 +_ZN9oceanbase3sql11ObResultSet16replace_lob_typeERKNS0_16ObSQLSessionInfoERKNS_6common7ObFieldERNS_7obmysql12ObMySQLFieldE:313374:3907 + 3: 3602 + 4: 3602 + 5: 3602 + 10: 0 + 10.1: 0 + 11: 0 + 12: 0 + 14: 0 + 15: 0 + 17: 0 + 21.1: 0 + 23: 3602 + 4: _ZNK9oceanbase3sql18ObBasicSessionInfo25is_client_use_lob_locatorEv:21612 + 2: 3602 + 5: _ZN9oceanbase3lib14is_oracle_modeEv:144080 + 2: 3602 + 2: _ZN9oceanbase3lib15get_compat_modeEv:133274 + 2: 3602 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:75642 + 2: 3602 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 10: _ZNK9oceanbase6common5ObObj8get_typeEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:0 + 0: 0 +_ZN9oceanbase6common15ObFIFOAllocatorC2Em:310649:1170 + 0.1: 1124 + 0.2: 1124 + 0.3: 1124 + 1: 1124 + 2: 1124 + 3: 1124 + 5: 1124 + 7: 1124 + 8: 1124 + 11: 1124 + 12: 1149 + 0.1: _ZN9oceanbase6common7ObDListINS0_11ObDLinkNodeIPNS0_15ObFIFOAllocator14BasePageHeaderEEEEC2Ev:43836 + 2: 1124 + 3: 1124 + 4: 1124 + 65463: _ZN9oceanbase6common11ObDLinkBaseINS0_11ObDLinkNodeIPNS0_15ObFIFOAllocator14BasePageHeaderEEEEC2Ev:16860 + 2: 1124 + 0.2: _ZN9oceanbase6common7ObDListINS0_11ObDLinkNodeIPNS0_15ObFIFOAllocator14BasePageHeaderEEEEC2Ev:34844 + 2: 1124 + 3: 1124 + 4: 1124 + 65463: _ZN9oceanbase6common11ObDLinkBaseINS0_11ObDLinkNodeIPNS0_15ObFIFOAllocator14BasePageHeaderEEEEC2Ev:7868 + 2: 1124 + 0.3: _ZN9oceanbase6common7ObDListINS0_11ObDLinkNodeIPNS0_15ObFIFOAllocator14BasePageHeaderEEEEC2Ev:34844 + 2: 1124 + 3: 1124 + 4: 1124 + 65463: _ZN9oceanbase6common11ObDLinkBaseINS0_11ObDLinkNodeIPNS0_15ObFIFOAllocator14BasePageHeaderEEEEC2Ev:7868 + 2: 1124 + 0.4: _ZN9oceanbase6common8ObMallocC2Ev:41588 + 0: 1124 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:24728 + 5: 1124 + 7: 1124 + 4.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:33720 + 5: 1124 + 6: 1124 + 7: 1124 + 8: 1124 + 10: _ZN9oceanbase6common10ObSpinLockC2Ej:20482 + 0: 1124 _ZN9oceanbase6common12ObLatchMutexC1Ev:1141 + 1: 1149 +_ZN9oceanbase6common15ObFIFOAllocatorC1Em:310649:1170 + 0.1: 1124 + 0.2: 1124 + 0.3: 1124 + 1: 1124 + 2: 1124 + 3: 1124 + 5: 1124 + 7: 1124 + 8: 1124 + 11: 1124 + 12: 1149 + 0.1: _ZN9oceanbase6common7ObDListINS0_11ObDLinkNodeIPNS0_15ObFIFOAllocator14BasePageHeaderEEEEC2Ev:43836 + 2: 1124 + 3: 1124 + 4: 1124 + 65463: _ZN9oceanbase6common11ObDLinkBaseINS0_11ObDLinkNodeIPNS0_15ObFIFOAllocator14BasePageHeaderEEEEC2Ev:16860 + 2: 1124 + 0.2: _ZN9oceanbase6common7ObDListINS0_11ObDLinkNodeIPNS0_15ObFIFOAllocator14BasePageHeaderEEEEC2Ev:34844 + 2: 1124 + 3: 1124 + 4: 1124 + 65463: _ZN9oceanbase6common11ObDLinkBaseINS0_11ObDLinkNodeIPNS0_15ObFIFOAllocator14BasePageHeaderEEEEC2Ev:7868 + 2: 1124 + 0.3: _ZN9oceanbase6common7ObDListINS0_11ObDLinkNodeIPNS0_15ObFIFOAllocator14BasePageHeaderEEEEC2Ev:34844 + 2: 1124 + 3: 1124 + 4: 1124 + 65463: _ZN9oceanbase6common11ObDLinkBaseINS0_11ObDLinkNodeIPNS0_15ObFIFOAllocator14BasePageHeaderEEEEC2Ev:7868 + 2: 1124 + 0.4: _ZN9oceanbase6common8ObMallocC2Ev:41588 + 0: 1124 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:24728 + 5: 1124 + 7: 1124 + 4.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:33720 + 5: 1124 + 6: 1124 + 7: 1124 + 8: 1124 + 10: _ZN9oceanbase6common10ObSpinLockC2Ej:20482 + 0: 1124 _ZN9oceanbase6common12ObLatchMutexC1Ev:1141 + 1: 1149 +_ZZN9oceanbase5share6schema19ObSchemaGetterGuard16get_table_schemaEmmRPKNS1_13ObTableSchemaEENK5$_279clEPKc.bfa63f0f3456173f564c7cf65584fc48:309464:4783 + 0: 4718 + 0.1: 0 + 0.2: 4718 + 0.3: 4595 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:4768 + 0.5: 0 + 0.8: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:78115 + 2: 4595 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 + 0.7: _ZN9oceanbase6common7ObLogKVIRKPcLb0EEC2EPKcS4_:0 + 0: 0 +_ZN9oceanbase6common13ObSEArrayImplINS_11transaction6ObPairINS_5share6ObLSIDElEELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:309396:4552 + 1: 4484 + 4.1: 4484 + 4.3: 0 + 9: 4484 + 11: 0 + 13: 4484 + 15: 4484 + 24: 4484 + 25: 4484 + 5: _ZN9oceanbase11transaction6ObPairINS_5share6ObLSIDElED2Ev:0 + 0: _ZN9oceanbase5share6ObLSIDD2Ev:0 + 0: _ZN9oceanbase5share6ObLSID5resetEv:0 + 0: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction6ObPairINS_5share6ObLSIDElEELl1ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase7storage15ObLobDataReader5resetEv:307972:3621 + 1: 3382 + 2: 3382 + 4: 3382 + 6: 3382 + 3: _ZN9oceanbase6common16ObArenaAllocator5resetEv:172682 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:172682 + 4.1: 3382 + 6: 1 + 7: 1 + 13: 3382 + 14: 3382 + 15: 3382 + 18: 3382 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:6 + 0: 1 + 5.1: _ZL12abort_unlessb:18 + 5: 1 + 6: 1 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:111 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:111 + 0: 1 + 0.2: 1 + 0.1: _ZN9oceanbase6common7ob_freeEPv:75 + 2: 1 + 3: 1 + 4: 1 + 5: 1 + 4: _ZL12abort_unlessb:18 + 5: 1 + 6: 1 +_ZN9oceanbase8observer12ObSrvDeliver7deliverERNS_3rpc9ObRequestE:306860:4894 + 1: 4892 + 2: 4892 + 4: 4892 + 5: 43 + 6: 43 + 6.1: 43 + 6.3: 43 + 6.4: 43 + 7.1: 43 + 12: 5649 _ZN9oceanbase8observer12ObSrvDeliver21deliver_mysql_requestERNS_3rpc9ObRequestE:5529 + 13.1: 86 + 16: 86 + 17: 86 + 21: 0 + 22.1: 0 + 25: 5427 + 4: _ZNK9oceanbase3rpc9ObRequest8get_typeEv:29352 + 0: 4892 + 6: _ZN9oceanbase6common14ObTscTimestamp12get_instanceEv:8127 + 2: 43 + 2.1: 86 + 2.3: 86 + 2.6: 86 + 2.2: _ZN9oceanbase6common14ObTscTimestampC2Ev:2322 + 1: 86 + 16: _ZNK9oceanbase3rpc9ObRequest16is_retry_on_lockEv:430 + 0: 86 +_ZN9oceanbase12blocksstable19ObStorageCacheSuite12get_instanceEv:304920:10738 + 1: 10164 + 2: 10164 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 3: 10164 +_ZN9oceanbase6common11ObTimeWheel8scheduleEPNS0_15ObTimeWheelTaskEl:304700:507 + 1: 490 + 2: 490 + 4: 490 + 5.1: 0 + 6: 0 + 7.1: 490 + 8.1: 0 + 9: 0 + 10.1: 490 + 11.1: 0 + 12: 0 + 13.1: 502 + 14: 502 _ZNK9oceanbase11transaction18ObTransTimeoutTask4hashEv:508 + 15.1: 0 + 20: 502 + 14.1: _ZN9oceanbase6common13TimeWheelBase8scheduleEPNS0_15ObTimeWheelTaskEl:238902 + 2: 484 + 5: 484 + 6.1: 0 + 7: 0 + 8.1: 484 + 9.1: 0 + 10: 0 + 15: 470 + 16: 502 + 17.1: 0 + 21: 0 + 15: _ZN9oceanbase6common16ObClockGenerator12getRealClockEv:484 + 2: _ZN9oceanbase6common16ObClockGenerator6get_usEv:484 + 2: 484 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:518 + 16: _ZN9oceanbase6common13TimeWheelBase9schedule_EPNS0_15ObTimeWheelTaskEl:201036 + 2: 470 + 4: 470 + 5.1: 0 + 6: 0 + 7.1: 470 + 8.1: 0 + 9: 0 + 10.1: 470 + 11.1: 0 + 12: 0 + 13.1: 470 + 14.1: 0 + 15: 0 + 18.1: 494 + 18.3: 494 + 19: 0 + 20: 470 + 21: 470 + 24: 470 + 26: 470 + 29: 502 + 31: 502 + 32.1: 0 + 35: 502 + 36.1: 0 + 38.1: 502 + 39.1: 0 + 47: 494 + 26: _ZN9oceanbase6common15ObTimeWheelTask4lockEv:14100 + 0: _ZN9oceanbase6common15ObSmallSpinLockIhLl0ELl500ELl100EE4lockEv:14100 + 3.1: 470 + 5: 0 + 7: 0 + 9: 0 + 3.1: _ZN9oceanbase6common15ObSmallSpinLockIhLl0ELl500ELl100EE8try_lockEv:10340 + 3: 470 + 4: 470 + 5: 470 + 27: _ZN9oceanbase6common10TaskBucket4lockEv:18800 + 0: _ZN9oceanbase6common10ObSpinLock4lockEv:18800 + 2: 470 _ZN9oceanbase6common12ObLatchMutex4lockEjl:499 + 31: _ZN9oceanbase6common15ObTimeWheelTask8scheduleEll:18574 + 4: 502 + 5.1: 0 + 7.1: 502 + 8.1: 0 + 11: 502 + 12: 502 + 13: 502 + 34: _ZN9oceanbase6common7ObDListINS0_15ObTimeWheelTaskEE8add_lastEPS2_:29618 + 6.1: 502 + 6.2: 502 + 6.3: 502 + 9.1: 0 + 13: 502 + 12: _ZN9oceanbase6common11ObDLinkBaseINS0_15ObTimeWheelTaskEE10add_beforeEPS2_:14056 + 2: 502 + 2: _ZN9oceanbase6common11ObDLinkBaseINS0_15ObTimeWheelTaskEE3addEPS2_S4_S4_:10040 + 2: 502 + 3: 502 + 4: 502 + 5: 502 + 46: _ZN9oceanbase6common10TaskBucket6unlockEv:2008 + 0: _ZN9oceanbase6common10ObSpinLock6unlockEv:2008 + 2: 502 _ZN9oceanbase6common12ObLatchMutex6unlockEv:529 + 47: _ZN9oceanbase6common15ObTimeWheelTask6unlockEv:4446 + 0: _ZN9oceanbase6common15ObSmallSpinLockIhLl0ELl500ELl100EE6unlockEv:4446 + 2: 494 + 3: 494 +_ZNK9oceanbase3omt10ObThWorker10need_retryEv:304668:25684 + 1: 25389 + 2: 25389 +_ZN9oceanbase7storage10ObStoreCtx5resetEv:304648:2300 + 1: 2165 + 6: 2165 + 9: 2123 + 10: 2123 + 2: _ZN9oceanbase5share6ObLSID5resetEv:15155 + 0: 2165 + 4: _ZN9oceanbase6common10ObTabletID5resetEv:32475 + 0: 2165 + 8: _ZN9oceanbase8memtable15ObMvccAccessCtx5resetEv:179666 + 1: 2165 + 1.1: 1120 + 2: 0 + 4: 2151 + 6: 2151 + 7: 2151 _ZN9oceanbase11transaction12ObTxSnapshot5resetEv:2193 + 10: 2123 + 13: 2123 + 1: _ZNK9oceanbase8memtable15ObMvccAccessCtx8is_writeEv:8660 + 0: 2165 + 8: _ZN9oceanbase7storage14ObTxTableGuard5resetEv:30676 + 2: 2098 + 3: 1064 + 4: 1064 +_ZZN9oceanbase11transaction14ObTransService23acquire_local_snapshot_ERKNS_5share6ObLSIDERlENK6$_1031clEPKc.93feb755617c21c32b229b78773c290c:303838:4743 + 0: 4630 + 0.1: 0 + 0.2: 4630 + 0.3: 4512 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:4673 + 0.9: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:76704 + 2: 4512 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS_5share6ObLSIDELb0EEC2EPKcS5_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase7storage29ObTabletTxMultiSourceDataUnit5resetEv:302209:10650 + 1: 10421 + 2: 10421 + 7: 10421 + 4: _ZN9oceanbase11transaction9ObTransID5resetEv:114631 + 0: 10421 + 6: _ZN9oceanbase7storage14ObTabletStatusaSERKNS1_6StatusE:41684 + 2: 10421 +_ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScannerC2ERNS_6common12ObIAllocatorE:301761:1083 + 0: 994 _ZN9oceanbase12blocksstable10ObDatumRowC1Ev:1030 + 0.2: 1021 _ZN9oceanbase12blocksstable10ObDatumRowC1Ev:1054 + 0.4: 1098 _ZN9oceanbase6common14ObVersionRangeC1Ev:1109 + 1: 1012 _ZN9oceanbase12blocksstable23ObIMicroBlockRowScannerC2ERNS_6common12ObIAllocatorE:1047 + 3: 1021 + 4: 1021 + 7: 1098 + 9: 1112 + 10: 1012 + 10.1: 1112 + 10.8: 0 + 10.11: 0 + 10.12: 0 + 0.1: _ZN9oceanbase7storage8ObNopPosC2Ev:20420 + 1: 1021 + 0.3: _ZN9oceanbase11transaction9ObTransIDC2Ev:13176 + 0: 1098 + 2.1: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:147024 + 4: 1021 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:128646 + 2: 1021 + 3: 1021 + 4: 1021 + 5: 1021 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:55134 + 0: 1021 + 10.7: _ZN9oceanbase11transaction9ObTransIDD2Ev:0 + 0: 0 + 10.9: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:0 + 0: 0 + 10.10: _ZN9oceanbase7storage8ObNopPosD2Ev:0 + 2: 0 + 2.1: 0 +_ZZNK9oceanbase3sql15ObTableLocation20calculate_tablet_idsERNS0_13ObExecContextERKNS_6common9Ob2DArrayINS4_10ObObjParamELi2079744ENS4_18ObWrapperAllocatorELb0ENS4_9ObSEArrayIPS6_Ll1ES7_Lb0EEEEERNS4_8ObIArrayINS4_10ObTabletIDEEERNSE_ImEERKNS4_20ObDataTypeCastParamsEENK6$_1105clEPKc.c0f3ebb58adf60d04e27c69da5b90c06:300841:4343 + 0: 4336 + 0.1: 0 + 0.2: 4336 + 0.3: 4289 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:4572 + 0.9: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:72913 + 2: 4289 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKNS_3sql17ObDASTableLocMetaELb0EEC2EPKcS5_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS0_8ObIArrayImEELb0EEC2EPKcS5_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKNS0_8ObIArrayINS0_10ObTabletIDEEELb0EEC2EPKcS6_:0 + 0: 0 +_ZN9oceanbase3sql11ObResultSet41check_and_nonblock_refresh_location_cacheEv:300799:5240 + 1: 4981 + 2: 4981 + 4: 4864 + 5: 0 + 8.1: 0 + 8.3: 0 + 9: 0 + 10: 0 + 10.1: 0 + 11.1: 0 + 19: 4864 + 3: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:54791 + 0: 4981 + 0.2: 0 + 4: _ZNK9oceanbase3sql17ObTaskExecutorCtx28is_need_renew_location_cacheEv:34048 + 0: 4864 + 7: _ZNK9oceanbase3sql17ObTaskExecutorCtx26get_need_renew_tablet_keysEv:0 + 2: 0 + 8.5: _ZN9oceanbase6common4list13ConstIteratorINS0_6ObListINS0_10ObTabletIDENS0_12ObIAllocatorEEEEppEv:0 + 3: 0 + 8.6: _ZNK9oceanbase6common4list13ConstIteratorINS0_6ObListINS0_10ObTabletIDENS0_12ObIAllocatorEEEEneERKS7_:0 + 2: 0 + 10: _ZNK9oceanbase6common4list13ConstIteratorINS0_6ObListINS0_10ObTabletIDENS0_12ObIAllocatorEEEEdeEv:0 + 3: 0 +_ZN9oceanbase7storage8ObNopPos7destroyEv:300503:5443 + 1: 4993 + 3: 5197 + 4: 5197 + 2: _ZN9oceanbase7storage8ObNopPos4freeEv:146429 + 2: 4993 + 2.1: 4993 + 3: 4993 _ZN9oceanbase6common18ObWrapperAllocator4freeEPv:5173 + 4: 5197 +_ZN9oceanbase6common10ObObjParam5resetEv:298980:6922 + 1: 6795 + 4: 6795 + 6: 6795 + 2: _ZN9oceanbase6common5ObObj5resetEv:183465 + 5: 6795 + 6: 6795 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:33975 + 0: 6795 + 3: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:27180 + 0: 6795 + 5: _ZN9oceanbase6common9ParamFlag5resetEv:27180 + 9: 6795 +_ZN9oceanbase12blocksstable23ObIMicroBlockRowScanner16locate_range_posEbbRlS2_:298274:2642 + 5: 2512 + 6: 2512 + 7: 2512 + 8: 13 + 9.1: 13 + 10.1: 2512 + 11: 13 + 12.1: 13 + 13.1: 2623 _ZN9oceanbase12blocksstable19ObIMicroBlockReader12locate_rangeERKNS0_12ObDatumRangeEbbRlS5_b:2615 + 15.1: 13 + 18: 2622 +_ZN9oceanbase3sql13ObExecContext16get_stmt_factoryEv:298036:1612 + 1: 1507 + 2: 1507 + 3: 509 + 3.1: 509 + 3.2: 509 + 3.4: 509 + 4.1: 0 + 9: 1517 + 3.1: _ZN9oceanbase6common16ObArenaAllocator5allocEl:57008 + 0: 509 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13alloc_alignedEll:54972 + 3: 509 + 6: 0 + 7: 509 + 8: 509 + 10: 509 + 11: 509 + 12: 509 + 13: 509 + 15.1: 0 + 16: 0 + 18: 0 + 20: 0 + 28: 0 + 35: 509 + 36: 509 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE15ensure_cur_pageEv:6617 + 2: 509 + 3: 0 + 5.1: 0 + 8: 0 + 9: 0 + 10: 0 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:0 + 2: 0 + 2.2: 0 + 2.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 9: _ZSt3maxIlERKT_S2_S2_:0 + 5: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 8: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:0 + 0: 0 + 7: _ZN9oceanbase6common16get_align_offsetEPvl:5090 + 3: 509 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:3563 + 0: 509 + 11: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:3563 + 7: 509 + 15.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE18is_normal_overflowEl:0 + 2: 0 + 16: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11extend_pageEl:0 + 4: 0 + 5: 0 + 8: 0 + 9: 0 + 10.1: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 12: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_tailEPNS3_4PageE:0 + 2: 0 + 3: 0 + 5: 0 + 23.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16lookup_next_pageEl:0 + 3.1: 0 + 4.1: 0 + 5: 0 + 5.1: 0 + 7: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page10reuse_sizeEv:0 + 0: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 32: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9alloc_bigEl:0 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 3: 0 + 5: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_headEPNS3_4PageE:0 + 4: 0 + 5: 0 + 7: 0 + 3.2: _ZN9oceanbase3sql13ObStmtFactoryC2ERNS_6common12ObIAllocatorE:143029 + 1: 509 + 2: 509 + 3: 509 + 4: 509 + 6.1: 0 + 2: _ZN9oceanbase6common10ObObjStoreIPNS_3sql6ObStmtERNS0_12ObIAllocatorELb1EEC2ES6_:66679 + 1: 509 + 3.2: 509 + 3: _ZN9oceanbase3lib11this_workerEv:14252 + 2: _ZN9oceanbase3lib6Worker4selfEv:14252 + 3: 509 + 4: 0 + 3.1: _ZN9oceanbase3lib6Worker12has_req_flagEv:3054 + 2: 509 + 5: _ZN9oceanbase6common10ObObjStoreIPNS_3sql6ObStmtERNS0_12ObIAllocatorELb1EE13set_allocatorES6_:12216 + 0: 509 + 7: _ZN9oceanbase3lib11this_workerEv:4581 + 2: _ZN9oceanbase3lib6Worker4selfEv:4581 + 3: 509 + 4: 0 + 7.1: _ZN9oceanbase3lib6Worker23get_sql_arena_allocatorEv:14252 + 2: 0 + 2: _ZN9oceanbase3lib4Flow11current_ctxEv:14252 + 2: _ZN9oceanbase3lib4Flow12current_flowEv:14252 + 3: 509 + 8: 0 + 10: 0 + 11: 0 + 12: 0 + 8.1: _ZN9oceanbase3lib4FlowC2ERNS0_13MemoryContextE:0 + 1: 0 + 3: 0 + 11: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 65511: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql6ObStmtEEEEC2Ev:15270 + 2: 509 + 3: 509 + 4: 509 + 65463: _ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql6ObStmtEEEEC2Ev:7635 + 2: 509 + 3: _ZN9oceanbase6common10ObObjStoreIPNS_3sql12ObSelectStmtERNS0_12ObIAllocatorELb1EEC2ES6_:66679 + 1: 509 + 3.2: 509 + 3: _ZN9oceanbase3lib11this_workerEv:14252 + 2: _ZN9oceanbase3lib6Worker4selfEv:14252 + 3: 509 + 4: 0 + 3.1: _ZN9oceanbase3lib6Worker12has_req_flagEv:3054 + 2: 509 + 5: _ZN9oceanbase6common10ObObjStoreIPNS_3sql12ObSelectStmtERNS0_12ObIAllocatorELb1EE13set_allocatorES6_:12216 + 0: 509 + 7: _ZN9oceanbase3lib11this_workerEv:4581 + 2: _ZN9oceanbase3lib6Worker4selfEv:4581 + 3: 509 + 4: 0 + 7.1: _ZN9oceanbase3lib6Worker23get_sql_arena_allocatorEv:14252 + 2: 0 + 2: _ZN9oceanbase3lib4Flow11current_ctxEv:14252 + 2: _ZN9oceanbase3lib4Flow12current_flowEv:14252 + 3: 509 + 8: 0 + 10: 0 + 11: 0 + 12: 0 + 8.1: _ZN9oceanbase3lib4FlowC2ERNS0_13MemoryContextE:0 + 1: 0 + 3: 0 + 11: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 65511: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql12ObSelectStmtEEEEC2Ev:15270 + 2: 509 + 3: 509 + 4: 509 + 65463: _ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql12ObSelectStmtEEEEC2Ev:7635 + 2: 509 +_ZN9oceanbase6common24ObFatalErrExtraInfoGuardC2Ev:297720:5519 + 1: 4962 + 2: 4962 + 3: 4962 + 4: 4962 +_ZN9oceanbase6common24ObFatalErrExtraInfoGuardC1Ev:297720:5519 + 1: 4962 + 2: 4962 + 3: 4962 + 4: 4962 +_ZN9oceanbase3lib9ObjectSet15add_free_objectEPNS0_7AObjectE:297679:1944 + 1: 1930 + 2: 1930 + 5: 1930 + 5.1: 1930 + 6.1: 1930 + 7: 1892 + 8: 1892 + 9: 1422 + 10: 1422 + 11: 1422 + 12: 1422 + 16: 446 + 17: 446 + 21: 1932 + 2: _ZL12abort_unlessb:11580 + 5: 1930 + 6: 0 + 3: _ZNK9oceanbase3lib7AObject8is_validEv:23160 + 2: 1930 + 3.1: _ZL12abort_unlessb:11580 + 5: 1930 + 6: 0 + 8: _ZN9oceanbase3lib7ABitSet5issetEi:73788 + 3: 1892 + 6: 1892 + 9: 1892 + 15: _ZN9oceanbase3lib7ABitSet3setEi:16948 + 7: 446 + 10: 446 + 11: 446 + 13: 446 +_ZN9oceanbase3sql18ObBasicSessionInfo33reset_tx_variable_if_remote_transERKNS0_13ObPhyPlanTypeE:297603:4521 + 1: 4303 + 4: 0 + 8: 4477 + 3: _ZNK9oceanbase3sql18ObBasicSessionInfo20get_local_autocommitEv:146302 + 2: 4303 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache14get_autocommitEv:129090 + 0: 4303 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache14get_autocommitEb:98969 + 0: 4303 + 3.1: _ZNK9oceanbase3sql18ObBasicSessionInfo17is_in_transactionEv:94666 + 0: 4303 + 0.1: _ZNK9oceanbase11transaction8ObTxDesc8is_in_txEv:43030 + 0: 4303 + 3.2: _ZN9oceanbase3sql14ObSqlTransUtil15is_remote_transEbbNS0_13ObPhyPlanTypeE:21515 + 2: 4303 +_ZN9oceanbase6common7ObDatum22get_obj_datum_map_typeENS0_9ObObjTypeE:296854:8946 + 1: 8731 + 56: 8731 + 57.1: 0 + 59: 8731 + 62: 8731 +_ZZN9oceanbase3sql13ObTableScanOp25prepare_single_scan_rangeElENK5$_224clEPKc.4dcb63e5b90b62777233554860a5c667:295552:4582 + 0: 4589 + 0.1: 0 + 0.2: 4589 + 0.3: 4289 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:4550 + 0.10: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:72913 + 2: 4289 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS0_9ObSEArrayIPNS0_10ObNewRangeELl1ENS0_19ModulePageAllocatorELb0EEELb0EEC2EPKcS8_:0 + 0: 0 + 0.7: _ZN9oceanbase3sql12get_my_inputINS0_13ObTableScanOpEEERNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE5InputERKS5_:0 + 7: _ZNK9oceanbase3sql10ObOperator9get_inputEv:0 + 0: 0 + 0.9: _ZN9oceanbase6common7ObLogKVIRKNS0_9ObSEArrayINS0_10ObNewRangeELl1ENS0_19ModulePageAllocatorELb0EEELb0EEC2EPKcS7_:0 + 0: 0 +_ZN9oceanbase3sql8ObDASRef13find_das_taskEPKNS0_14ObDASTabletLocENS0_11ObDASOpTypeE:294822:5598 + 1: 5456 + 3: 5456 + 4: 5456 + 7.4: 5456 + 8.1: 0 + 9: 0 + 10.1: 0 + 11.1: 0 + 16.2: 5555 +_ZNK9oceanbase3sql18ObBasicSessionInfo16get_tx_isolationEv:294624:6393 + 1: 6138 + 3: 6138 + 7: 6138 + 9: 6138 + 7: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache16get_tx_isolationEv:178002 + 0: 6138 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache16get_tx_isolationEb:135036 + 0: 6138 +_ZN9oceanbase11transaction16ObLSTxLogAdapter8get_roleERbRl:294232:4193 + 1: 4168 + 2: 4168 + 4: 4168 + 5: 4168 + 6: 0 + 7.1: 0 + 8.1: 4184 _ZNK9oceanbase10logservice12ObLogHandler8get_roleERNS_6common6ObRoleERl:4199 + 10: 0 + 13.1: 0 + 15.1: 4184 + 16: 4184 + 21: 4388 +_ZN9oceanbase6common11ObArrayImplINS0_15ObWarningBuffer11WarningItemENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE5resetEv:294112:5175 + 0: 5071 + 0: _ZN9oceanbase6common11ObArrayImplINS0_15ObWarningBuffer11WarningItemENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE7destroyEv:131890 + 2: 5069 + 7: 4 + 9: 5071 + 11: 5071 + 6: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:28 + 0: 2 + 0.1: 2 _ZN9oceanbase6common7ob_freeEPv:3 + 0.2: 0 +_ZN9oceanbase3sql18ObBasicSessionInfo21init_system_variablesEbb:293873:1 + 1: 1 + 2: 1 + 8: 1 + 10: 1 _ZN9oceanbase5share14ObSysVariables10get_amountEv:1 + 13: 1 _ZN9oceanbase6common9ObCharset20get_system_collationEv:1 + 14.1: 507 + 14.3: 507 + 14.5: 507 + 15: 476 _ZN9oceanbase5share14ObSysVariables8get_nameEl:486 + 16: 465 _ZN9oceanbase5share14ObSysVariables8get_nameEl:474 + 16.2: 489 + 18.1: 435 + 19.1: 36 + 20.1: 435 + 22: 435 _ZN9oceanbase5share14ObSysVariables8get_typeEl:436 + 22.1: 440 + 23: 440 _ZN9oceanbase5share14ObSysVariables9get_flagsEl:450 + 24: 436 _ZN9oceanbase5share14ObSysVariables9get_valueEl:446 + 24.1: 451 + 25: 451 _ZN9oceanbase6common9ObCharset20get_system_collationEv:475 + 26: 489 _ZN9oceanbase5share14ObSysVariables7get_minEl:504 + 26.1: 498 + 27: 498 _ZN9oceanbase6common9ObCharset20get_system_collationEv:480 + 28: 503 _ZN9oceanbase5share14ObSysVariables7get_maxEl:492 + 28.1: 488 + 29: 488 _ZN9oceanbase6common9ObCharset20get_system_collationEv:470 + 31: 466 + 32.1: 479 + 36: 36 + 37: 498 _ZN9oceanbase3sql18ObBasicSessionInfo17load_sys_variableERNS_6common12ObIAllocatorERKNS2_8ObStringERKNS2_5ObObjESA_SA_SA_lb:462 + 37.1: 498 + 38.1: 36 + 39.1: 498 + 40.1: 498 + 41.1: 110 + 42.1: 36 + 43.1: 507 + 44.1: 39 + 50: 36 + 51: 36 + 51.1: 38 + 52.1: 36 + 54: 38 + 57: 36 + 58.16: 37 + 3: _ZN9oceanbase6common8ObStringC2Ev:18 + 1: 1 + 4: _ZN9oceanbase6common5ObObjC2Ev:14 + 2: _ZN9oceanbase6common5ObObj5resetEv:14 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:7 + 0: 1 + 5: _ZN9oceanbase6common5ObObjC2Ev:8 + 2: _ZN9oceanbase6common5ObObj5resetEv:8 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4 + 0: 1 + 6: _ZN9oceanbase6common5ObObjC2Ev:14 + 2: _ZN9oceanbase6common5ObObj5resetEv:14 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:7 + 0: 1 + 7: _ZN9oceanbase6common5ObObjC2Ev:14 + 2: _ZN9oceanbase6common5ObObj5resetEv:14 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:7 + 0: 1 + 12.1: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:132 + 4: 1 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:114 + 2: 1 + 3: 1 + 4: 1 + 5: 1 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:50 + 0: 1 + 13.1: _ZN9oceanbase6common15ObObjCastParamsC2EPNS0_12ObIAllocatorEPKNS0_20ObDataTypeCastParamsEmNS0_15ObCollationTypeEPNS0_10ObAccuracyE:1825 + 16: _ZN9oceanbase6common15ObObjCastParams24set_compatible_cast_modeEv:1825 + 2: _ZN9oceanbase3lib14is_oracle_modeEv:1825 + 2: _ZN9oceanbase3lib15get_compat_modeEv:1825 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:1825 + 2: 1 + 2.1: 36 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:792 + 1: 36 + 15.2: _ZN9oceanbase6common8ObString10assign_ptrEPKci:8316 + 2: 462 + 3: 462 + 5: 462 + 18: _ZNK9oceanbase3sql18ObBasicSessionInfo19sys_variable_existsERKNS_6common8ObStringERb:44450 + 2: 462 + 5: 462 + 6: 471 _ZN9oceanbase5share15ObSysVarFactory23find_sys_var_id_by_nameERKNS_6common8ObStringEb:467 + 8.1: 471 _ZN9oceanbase5share15ObSysVarFactory22calc_sys_var_store_idxENS0_17ObSysVarClassTypeERl:492 + 9.1: 36 + 10.1: 435 + 11: 36 + 12.1: 36 + 14: 435 + 16: 435 + 24.1: _ZN9oceanbase6common5ObObj11set_varcharERKNS0_8ObStringE:5863 + 4: 451 + 5: 451 + 2: _ZN9oceanbase6common9ObObjMeta11set_varcharEv:2706 + 0: 451 + 25.1: _ZN9oceanbase6common5ObObj18set_collation_typeERKNS0_15ObCollationTypeE:1467 + 0: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:1467 + 0: 489 + 26.1: _ZN9oceanbase6common5ObObj11set_varcharERKNS0_8ObStringE:10956 + 4: 498 + 5: 498 + 2: _ZN9oceanbase6common9ObObjMeta11set_varcharEv:4482 + 0: 498 + 27.1: _ZN9oceanbase6common5ObObj18set_collation_typeERKNS0_15ObCollationTypeE:3018 + 0: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:3018 + 0: 503 + 28.1: _ZN9oceanbase6common5ObObj11set_varcharERKNS0_8ObStringE:10736 + 4: 488 + 5: 488 + 2: _ZN9oceanbase6common9ObObjMeta11set_varcharEv:4392 + 0: 488 + 29.1: _ZN9oceanbase6common5ObObj18set_collation_typeERKNS0_15ObCollationTypeE:2796 + 0: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:2796 + 0: 466 + 30: _ZN9oceanbase6common5ObObj8set_typeERKNS0_9ObObjTypeE:50620 + 2: 466 + 2.2: 466 + 3.1: 36 + 4: _ZN9oceanbase6common9ObObjMeta8set_typeERKNS0_9ObObjTypeE:756 + 2: 36 + 9: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:432 + 0: 36 + 6: _ZN9oceanbase6common9ObObjMeta8set_typeERKNS0_9ObObjTypeE:42942 + 2: 466 + 3: 466 + 14: 285 + 4: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:504 + 0: 36 + 8: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:504 + 0: 36 + 11: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:432 + 0: 36 + 12.1: _ZN9oceanbase6common17ob_is_string_typeENS0_9ObObjTypeE:14957 + 0: 466 + 0: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:10718 + 0: 466 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:4194 + 2: 466 + 17: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:3006 + 0: 285 + 32: _ZN9oceanbase3sql18ObBasicSessionInfo27process_variable_for_tenantERKNS_6common8ObStringERNS2_5ObObjE:23616 + 3: 40 + 5: 36 + 3: _ZNK9oceanbase6common8ObString7compareEPKc:21924 + 8: _ZNK9oceanbase6common8ObString7compareERKS1_:21924 + 3: 466 + 7.1: 517 + 7.2: 478 + 4: _ZN9oceanbase6common5ObObj11set_varcharEPKc:864 + 4: 36 + 5: 36 + 2: _ZN9oceanbase6common9ObObjMeta11set_varcharEv:216 + 0: 36 + 5.1: _ZN9oceanbase6common5ObObj18set_collation_typeERKNS0_15ObCollationTypeE:288 + 0: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:288 + 0: 36 + 40: _ZNK9oceanbase5share13ObBasicSysVar17is_influence_planEv:1992 + 0: 498 + 41: _ZN9oceanbase6common13ObSEArrayImplIlLl32ENS0_19ModulePageAllocatorELb0EE9push_backERKl:5751 + 5: 108 + 6: 38 + 12: 38 _ZN9oceanbase6common13ObSEArrayImplIlLl32ENS0_19ModulePageAllocatorELb0EE7reserveEl:2 + 15: 39 + 15.1: 110 + 16: 110 + 15.1: _ZN9oceanbase6common9ObClassOpIlLb1EE20construct_and_assignERKlRl:440 + 2: 110 + 58.16: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:6091 + 0: 38 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEED2Ev:5825 + 0: 38 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:5559 + 4.1: 38 + 6: 36 + 7: 38 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:114 + 0: 38 + 5.1: _ZL12abort_unlessb:408 + 5: 38 + 6: 36 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:2568 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:2568 + 0: 38 + 0.2: 36 + 0.1: _ZN9oceanbase6common7ob_freeEPv:1716 + 2: 38 + 3: 38 _ZN9oceanbase3lib17ObMallocAllocator12get_instanceEv:2 + 4: 38 + 5: 38 _ZN9oceanbase3lib17ObMallocAllocator4freeEPv:2 + 4: _ZL12abort_unlessb:588 + 5: 38 + 6: 36 + 58.17: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:5364 + 0: 36 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEED2Ev:5112 + 0: 36 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:4860 + 4.1: 36 + 6: 36 + 7: 36 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:108 + 0: 36 + 5.1: _ZL12abort_unlessb:252 + 5: 36 + 6: 36 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:2232 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:2232 + 0: 36 + 0.2: 36 + 0.1: _ZN9oceanbase6common7ob_freeEPv:1476 + 2: 36 + 3: 36 + 4: 36 + 5: 36 + 4: _ZL12abort_unlessb:324 + 5: 36 + 6: 36 +_ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EE7reserveEl:293672:7357 + 1: 7025 + 2: 7025 + 3: 7025 + 5: 0 + 6: 0 + 7: 0 + 7.3: 0 + 9: 0 + 10: 0 + 11: 0 + 12: 0 + 15: 0 + 16: 0 + 23: 0 + 24.1: 0 + 27: 6919 + 8: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EE16internal_malloc_El:0 + 2: 0 + 7: 0 + 13: 0 + 13: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 10: _ZN9oceanbase6common9ObClassOpINS0_10ObTabletIDELb0EE12array_expandEPKS2_PS2_l:0 + 4: 0 + 4.1: 0 + 4.3: 0 + 4.5: 0 + 18: 0 + 5: _ZN9oceanbase6common16construct_assignINS0_10ObTabletIDEEEiRT_RKS3_:0 + 2: _ZN9oceanbase6common21construct_assign_wrapINS0_10ObTabletIDEEEiRT_RKS3_NS0_8BoolTypeILb0EEE:0 + 2: _ZN9oceanbase6common10ObTabletIDC2ERKS1_:0 + 0: 0 + 166: 0 + 19: _ZN9oceanbase6common10ObTabletIDD2Ev:0 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:0 + 0: 0 + 13: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase5trace7ObTrace7set_tagImJ9ObTagTypePcEEEvS3_RKT_DpT0_:293525:5198 + 1: 5114 + 2.1: 0 + 3: 5041 + 3.1: 72 + 4: 72 + 4.1: 0 + 6: 0 + 9.2: 0 + 11: 5276 + 2: _ZNK9oceanbase5trace4UUID9is_initedEv:60930 + 0: 5114 + 0.1: 5041 + 5: _ZN9oceanbase5trace7ObTrace10append_tagImLb1EEEb9ObTagTypeRKT_:0 + 3: 0 + 7: _ZN9oceanbase5trace7ObTrace10append_tagImLb1EEEb9ObTagTypeRKT_:0 + 3: 0 +_ZN9oceanbase6common20ObTenantStatEstGuardC2Em:293300:5279 + 1: 5255 + 2: 5255 + 3: 5480 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 12: 5480 + 14: 5480 + 3: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:27175 + 2: 5255 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:5478 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:21920 + 2: 5480 + 6: _ZN9oceanbase6common17ObSessionDIBuffer13get_tenant_idEv:0 + 3: 0 + 4: 0 +_ZN9oceanbase3sql13ObPxAdmission21enter_query_admissionERNS0_16ObSQLSessionInfoERNS0_13ObExecContextERNS0_14ObPhysicalPlanE:292950:4971 + 3: 4650 + 4: 4650 + 7: 4650 + 7.1: 4650 + 7.2: 0 + 9: 0 + 11: 0 + 13.1: 0 + 13.4: 0 + 14.1: 0 + 16: 0 + 17.1: 0 + 18: 0 + 18.3: 0 + 19: 0 + 20.1: 0 + 26: 0 + 29: 0 + 31: 0 + 33: 0 + 33.1: 0 + 34: 0 + 35: 0 + 36.1: 0 + 37.1: 0 + 37.2: 0 + 38.1: 0 + 39.1: 0 + 42.1: 0 + 44.1: 0 + 45: 0 + 46: 0 + 47.1: 0 + 56: 0 + 57: 0 + 65.1: 0 + 69: 4650 + 7: _ZNK9oceanbase3sql14ObPhysicalPlan9is_use_pxEv:32550 + 0: 4650 + 10: _ZN9oceanbase3sql13ObExecContext22get_admission_addr_mapEv:0 + 2: 0 + 11: _ZNK9oceanbase6common4hash9ObHashMapINS0_6ObAddrElNS1_24LatchReadWriteDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_lEEEELi89ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE7createdEv:0 + 2: _ZNK9oceanbase6common4hash11ObHashTableINS0_6ObAddrENS1_11HashMapPairIS3_lEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi89ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE7createdEv:0 + 2: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_6ObAddrElEENS0_7ObLatchENS1_5NCondEEEEEbRKT_:0 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_6ObAddrElEENS0_7ObLatchENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:0 + 2: 0 + 12: _ZN9oceanbase6common4hash9ObHashMapINS0_6ObAddrElNS1_24LatchReadWriteDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_lEEEELi89ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE5clearEv:0 + 2: 0 + 13.1: _ZN9oceanbase6common4hash14cal_next_primeEl:0 + 7: 0 + 7.3: 0 + 6: _ZSt11lower_boundIPKllET_S2_S2_RKT0_:0 + 9: _ZSt13__lower_boundIPKllN9__gnu_cxx5__ops14_Iter_less_valEET_S5_S5_RKT0_T1_:0 + 8.1: 0 + 10: 0 + 13: 0 + 13: _ZNK9__gnu_cxx5__ops14_Iter_less_valclIPKlS3_EEbT_RT0_:0 + 1: 0 + 13.2: _ZN9oceanbase3lib7ObLabelC2IA6_cEERKT_:0 + 2: _ZN9oceanbase3lib7ObLabelaSILm6EEERS1_RAT__Kc:0 + 4: 0 + 13.3: _ZN9oceanbase3lib7ObLabelC2IA6_cEERKT_:0 + 2: _ZN9oceanbase3lib7ObLabelaSILm6EEERS1_RAT__Kc:0 + 4: 0 + 17: _ZNK9oceanbase6common4hash9ObHashMapINS0_6ObAddrElNS1_24LatchReadWriteDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_lEEEELi89ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE5beginEv:0 + 2: 0 + 18.4: _ZNK9oceanbase6common4hash24ObHashTableConstIteratorINS0_6ObAddrENS1_11HashMapPairIS3_lEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi89ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEneERKSL_:0 + 2: 0 + 19: _ZNK9oceanbase6common4hash24ObHashTableConstIteratorINS0_6ObAddrENS1_11HashMapPairIS3_lEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi89ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEptEv:0 + 2: 0 + 19.2: _ZN9oceanbase6common4hash9ObHashMapINS0_6ObAddrElNS1_24LatchReadWriteDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_lEEEELi89ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE14set_refactoredERKS3_RKliii:0 + 8: 0 + 5: _ZN9oceanbase6common4hash11HashMapPairINS0_6ObAddrElE4initERKS3_RKl:0 + 3: _ZN9oceanbase6common11copy_assignINS0_6ObAddrEEEiRT_RKS3_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapINS0_6ObAddrEEEiRT_RKS3_NS0_8BoolTypeILb0EEE:0 + 2: _ZN9oceanbase6common6ObAddraSERKS1_:0 + 1: 0 + 2: 0 + 3: 0 + 5.1: _ZN9oceanbase6common11copy_assignIlEEiRT_RKS2_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapIlEEiRT_RKS2_NS0_8BoolTypeILb0EEE:0 + 2: 0 + 24: _ZNK9oceanbase3sql14ObPhysicalPlan25get_expected_worker_countEv:0 + 0: 0 + 25: _ZNK9oceanbase3sql14ObPhysicalPlan24get_minimal_worker_countEv:0 + 0: 0 + 30: _ZN9oceanbase3lib6Worker4selfEv:0 + 3: 0 + 4: 0 + 30.1: _ZN9oceanbase3lib6Worker14set_timeout_tsEl:0 + 0: 0 + 33: _ZN9oceanbase3lib6Worker4selfEv:0 + 3: 0 + 4: 0 + 37.1: _ZN9oceanbase3lib6Worker4selfEv:0 + 3: 0 + 4: 0 + 54: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:0 + 2: 0 + 59: _ZN9oceanbase3sql17ObPhysicalPlanCtx16set_worker_countEl:0 + 0: 0 + 61: _ZN9oceanbase3sql17ObTaskExecutorCtx23set_expected_worker_cntEl:0 + 0: 0 + 63: _ZN9oceanbase3sql17ObTaskExecutorCtx24set_allocated_worker_cntEl:0 + 0: 0 +_ZN9oceanbase4palf12LSNAllocator12alloc_lsn_tsEllRNS0_3LSNERlS4_RbS5_S4_:292895:271 + 8: 247 + 9: 247 + 10: 247 + 11: 0 + 12.1: 247 + 13: 0 + 14.1: 0 + 17: 247 + 22: 247 + 26: 0 + 27: 0 + 28.1: 0 + 30: 0 + 31: 0 + 36: 0 + 37.1: 0 + 40: 0 + 41.1: 0 + 43: 0 + 43.2: 0 + 47.1: 247 + 48: 247 + 49: 247 + 50: 247 + 52: 254 + 53: 247 + 54: 247 + 54.1: 247 + 56: 247 + 66: 247 + 79.2: 247 + 81: 247 + 86: 247 + 89.1: 250 + 90: 240 + 92: 0 + 93.1: 0 + 95: 250 + 95.1: 250 + 106: 250 + 114: 262 + 118: 262 + 120: 0 + 121: 0 + 123: 0 + 124: 0 + 132.1: 0 + 141: 0 + 142: 0 + 144: 0 + 145: 0 + 153: 251 + 157: 251 + 161: 251 + 162: 251 + 164: 251 + 167: 254 + 168: 254 + 173: 254 + 174.1: 254 _ZZN9oceanbase4palf12LSNAllocator12alloc_lsn_tsEllRNS0_3LSNERlS4_RbS5_S4_ENK5$_597clEPKc.0e4bf25207570af14a78557c8489c4fc:263 + 178: 0 + 181.1: 252 + 183: 256 + 65299: 0 + 24: _ZN9oceanbase6common8TCRWLock10WLockGuardC2ERS1_:0 + 0: 0 + 25: _Z7load128RoPN5types9uint128_tE:0 + 2: 0 + 28: _ZSt3maxIlERKT_S2_S2_:0 + 5: 0 + 37: _Z6cas128PVN5types9uint128_tEPS0_S0_:0 + 3: 0 + 46: _ZN9oceanbase6common8TCRWLock10RLockGuardC2ERS1_:59145 + 0: _ZN9oceanbase6common8TCRWLock6rdlockEl:59145 + 3.1: 0 + 4: 0 + 5: 0 + 3.2: _ZN9oceanbase6common8TCRWLock10try_rdlockEv:59145 + 3: 247 + 5: 247 + 8.1: 0 + 4: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:1235 + 0: 247 + 4.1: _ZN9oceanbase6common5TCRef7inc_refEPi:46301 + 2: 247 + 4.1: 511 + 4.2: 511 + 6: 748 + 6.1: 247 + 10: 247 + 2: _ZN9oceanbase6common8get_itidEv:6916 + 4: 247 + 5: 0 + 6: 0 + 8: 0 + 11: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 8: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:0 + 0: 0 + 9: _ZN9oceanbase6common9LWaitCond6signalEv:0 + 2: 0 + 2.1: 0 + 3: 0 + 51: _Z7load128RoPN5types9uint128_tE:7904 + 2: 247 + 54: _ZSt3maxIlERKT_S2_S2_:1729 + 5: 247 + 79.1: _ZN9oceanbase4palf12lsn_2_offsetERKNS0_3LSNEm:9139 + 2: 247 + 166: _Z6cas128PVN5types9uint128_tEPS0_S0_:7279 + 3: 251 + 11: 251 + 181: _ZN9oceanbase6common8TCRWLock10RLockGuardD2Ev:53753 + 0.2: 0 + 0: _ZN9oceanbase6common8TCRWLock8rdunlockEv:53753 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:1310 + 0: 262 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPi:46198 + 2: 262 + 4.1: 546 + 4.2: 546 + 6: 778 + 6.1: 252 + 10: 252 + 2: _ZN9oceanbase6common8get_itidEv:7336 + 4: 262 + 5: 0 + 6: 0 + 8: 0 + 11: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:5237 + 2: 252 + 2.1: 0 + 3: 0 + 181.2: _ZN9oceanbase6common8TCRWLock10RLockGuardD2Ev:0 + 0.2: 0 + 0: _ZN9oceanbase6common8TCRWLock8rdunlockEv:0 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:0 + 0: 0 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPi:0 + 2: 0 + 4.1: 0 + 4.2: 0 + 6: 0 + 6.1: 0 + 10: 0 + 2: _ZN9oceanbase6common8get_itidEv:0 + 4: 0 + 5: 0 + 6: 0 + 8: 0 + 11: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:0 + 2: 0 + 2.1: 0 + 3: 0 +_ZZN9oceanbase3sql8ObDASCtx19add_candi_table_locERKNS0_17ObDASTableLocMetaERKNS0_15ObCandiTableLocEENK4$_67clEPKc.45c27dd3dc8b42ec4ef71c6f367bd924:292536:4645 + 0: 4392 + 0.1: 0 + 0.2: 4392 + 0.3: 4360 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:4393 + 0.9: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:74120 + 2: 4360 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKNS_3sql15ObCandiTableLocELb0EEC2EPKcS5_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS_3sql17ObDASTableLocMetaELb0EEC2EPKcS5_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKNS0_6ObListIPNS_3sql14ObDASTabletLocENS0_12ObIAllocatorEEELb0EEC2EPKcS9_:0 + 0: 0 +_ZN9oceanbase3sql9ObPlanSet21match_multi_stmt_infoERKNS_6common9Ob2DArrayINS2_10ObObjParamELi2079744ENS2_18ObWrapperAllocatorELb0ENS2_9ObSEArrayIPS4_Ll1ES5_Lb0EEEEERKNS2_8ObIArrayIlEERb:292446:4875 + 3: 4431 + 4: 4431 + 5: 4431 + 6: 4431 + 7: 4431 + 12.1: 0 + 12.3: 0 + 12.4: 0 + 12.6: 0 + 13.1: 0 + 14: 0 + 15: 0 + 16.1: 0 + 17.1: 0 + 17.3: 0 + 18: 0 + 19.1: 0 + 21.1: 0 + 22: 0 + 23: 0 + 24: 0 + 25.1: 0 + 26.1: 0 + 26.2: 0 + 27.1: 0 + 28.1: 0 + 30.1: 0 + 31: 0 + 32.1: 0 + 37: 0 + 39: 0 + 40: 0 + 40.1: 0 + 41.1: 0 + 43.1: 0 + 43.6: 0 + 45.1: 0 + 45.3: 0 + 45.4: 0 + 45.7: 0 + 46.1: 0 + 46.2: 0 + 49: 0 + 49.1: 0 + 50: 0 + 51: 0 + 52: 0 + 53: 0 + 53.1: 0 + 53.2: 0 + 53.3: 0 + 53.6: 0 + 54.1: 0 + 58: 0 + 58.1: 0 + 59.1: 0 + 62.1: 0 + 67: 0 + 67.1: 0 + 67.2: 0 + 67.4: 0 + 68: 0 + 68.1: 0 + 69: 4431 + 6: _ZNK9oceanbase6common12ObIArrayWrapIlE5emptyEv:31017 + 0: 4431 + 0: _ZNK9oceanbase6common12ObIArrayWrapIlE5countEv:17724 + 0: 4431 + 11: _ZN9oceanbase6common9ObSEArrayIPKNS0_5ObObjELl16ENS0_19ModulePageAllocatorELb0EEC2Ev:0 + 0.1: 0 + 0.5: _ZN9oceanbase6common13ObSEArrayImplIPKNS0_5ObObjELl16ENS0_19ModulePageAllocatorELb0EEC2ElRKS5_:0 + 2: 0 + 5: 0 + 6: 0 + 8: 0 + 17.1: 0 + 2: _ZN9oceanbase6common8ObIArrayIPKNS0_5ObObjEEC2EPS4_l:0 + 0: _ZN9oceanbase6common12ObIArrayWrapIPKNS0_5ObObjEEC2EPS4_l:0 + 0: 0 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:0 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:0 + 2: 0 + 8: 0 + 13: _ZNK9oceanbase6common12ObIArrayWrapIlE2atEl:0 + 6: 0 + 17.2: _ZNK9oceanbase6common5ObObj16is_ext_sql_arrayEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta16is_ext_sql_arrayEv:0 + 0: 0 + 0.1: 0 + 0: _ZNK9oceanbase6common9ObObjMeta6is_extEv:0 + 0: 0 + 22.1: _ZNK9oceanbase6common5ObObj7get_extEv:0 + 3: 0 + 4: 0 + 38: _ZN9oceanbase3sql7HashKeyC2Ev:0 + 0: _ZN9oceanbase6common9ObSEArrayINS0_5ObObjELl4ENS0_19ModulePageAllocatorELb0EEC2Ev:0 + 0.1: 0 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS0_5ObObjELl4ENS0_19ModulePageAllocatorELb0EEC2ElRKS3_:0 + 2: 0 + 5: 0 + 6: 0 + 8: 0 + 17.1: 0 + 2: _ZN9oceanbase6common8ObIArrayINS0_5ObObjEEC2EPS2_l:0 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_5ObObjEEC2EPS2_l:0 + 0: 0 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:0 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:0 + 2: 0 + 8: 0 + 44: _ZN9oceanbase3sql7HashKey5reuseEv:0 + 0: _ZN9oceanbase6common13ObSEArrayImplINS0_5ObObjELl4ENS0_19ModulePageAllocatorELb0EE5reuseEv:0 + 8: 0 + 9: 0 + 46: _ZN9oceanbase6common12ObIArrayWrapIPKNS0_5ObObjEE2atEl:0 + 6: 0 +_ZN9oceanbase11transaction14ObPartTransCtx12start_accessERKNS0_8ObTxDescEl:291860:1014 + 2: 967 + 3: 967 + 4: 967 + 5.1: 944 + 6.1: 944 + 7: 3 + 8.1: 3 + 10.1: 944 + 11.2: 944 + 12.1: 944 + 12.2: 224 + 13.1: 941 + 14: 941 + 17: 3 + 18: 941 _ZN9oceanbase8memtable13ObMemtableCtx7inc_refEv:1020 + 21.1: 1070 _ZZN9oceanbase11transaction14ObPartTransCtx12start_accessERKNS0_8ObTxDescElENK5$_656clEPKc.93feb755617c21c32b229b78773c290c:1076 + 22.1: 1084 + 22.4: 3 + 22.5: 3 + 22.6: 3 + 22.10: 3 + 22.11: 3 + 22.12: 3 + 22.15: 3 + 22.16: 3 + 22.17: 3 + 22.18: 3 + 22.19: 3 + 22.20: 3 + 22.24: 3 + 22.25: 3 + 22.26: 3 + 30: 1084 + 31.8: 1100 _ZN9oceanbase11transaction22CtxTransTableLockGuardD1Ev:1084 + 31.9: 3 + 4: _ZN9oceanbase11transaction22CtxTransTableLockGuardC2ERNS0_7CtxLockERNS0_17TransTableSeqLockEb:13376 + 3: 1065 + 5: 1065 _ZN9oceanbase11transaction17TransTableSeqLock10write_lockEv:1073 + 6.1: 3 + 3: _ZN9oceanbase11transaction12CtxLockGuardC2ERNS0_7CtxLockEb:4835 + 0: 967 + 0.1: 967 _ZN9oceanbase11transaction7CtxLock4lockEv:968 + 5: _ZN9oceanbase11transaction14ObPartTransCtx13check_status_Ev:69173 + 2: 944 + 3: 944 + 4: 3 + 5.1: 3 + 6: 3 + 6.1: 3 + 8: 3 + 10.1: 3 + 11.1: 944 + 13.1: 944 + 14: 3 + 15.1: 3 + 17: 944 + 3: _ZNK9oceanbase11transaction14ObPartTransCtx14is_committing_Ev:27376 + 2: 944 + 2.1: 944 + 3: 944 + 5: _ZNK9oceanbase11transaction10ObTransCtx17is_trans_expired_Ev:27 + 0: 3 + 0: _ZN9oceanbase6common16ObClockGenerator12getRealClockEv:15 + 2: _ZN9oceanbase6common16ObClockGenerator6get_usEv:15 + 2: 3 + 11.1: _ZNK9oceanbase11transaction14ObPartTransCtx12is_follower_Ev:7552 + 0: 944 + 11.1: _ZSt3maxIlERKT_S2_S2_:13216 + 5: 944 + 19: _ZN9oceanbase8memtable10ObIMvccCtx21acquire_callback_listEv:8408 + 0: 1051 _ZN9oceanbase8memtable18ObTransCallbackMgr21acquire_callback_listEv:1096 + 22.3: _ZN9oceanbase3lib20is_trace_log_enabledEv:36 + 2: 3 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:21 + 2: 3 + 22.7: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:81 + 0: 3 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:15 + 2: 3 + 22.9: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:48 + 0: 3 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:15 + 2: 3 + 22.10: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EE10check_lockEv:120 + 2: 3 + 3: _ZN9oceanbase3lib7ObMutex4lockEv:93 + 0: 3 + 22.14: _ZN9oceanbase6common12ObCurTraceId16get_trace_id_strEv:309 + 2: _ZN9oceanbase6common12ObCurTraceId12get_trace_idEv:237 + 5: 3 + 5.1: 3 + 5.1: _ZN9oceanbase6common12ObCurTraceId7TraceIdC2Ev:78 + 0: 3 + 2.1: _ZN9oceanbase6common10to_cstringINS0_12ObCurTraceId7TraceIdEEEPKcRKT_:72 + 2: 3 + 22.15: _ZNK9oceanbase11transaction15ObTransHashLinkINS0_10ObTransCtxEE7get_refEv:12 + 0: 3 + 22.26: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EE12check_unlockEv:90 + 2: 3 + 3: _ZN9oceanbase3lib7ObMutex6unlockEv:51 + 0: 3 +_ZN9oceanbase3sql12ObDMLService14init_dml_paramERKNS0_17ObDASDMLBaseCtDefERNS0_17ObDASDMLBaseRtDefERNS_11transaction16ObTxReadSnapshotERNS_6common12ObIAllocatorERNS_7storage14ObDMLBaseParamE:290492:1133 + 5: 1052 + 7: 1052 + 8: 1052 + 9: 1052 + 10: 1052 + 11: 1052 + 12: 1052 + 13: 1052 + 14: 1052 + 15: 1052 + 16: 1052 + 17: 1052 + 18: 1052 + 19: 1061 + 18: _ZN9oceanbase11transaction16ObTxReadSnapshotaSERKS1_:146269 + 0: 1052 _ZN9oceanbase11transaction12ObTxSnapshotaSERKS1_:1087 + 0.1: _ZN9oceanbase5share6ObLSIDaSERKS1_:11385 + 0: 1035 + 0.2: _ZN9oceanbase6common9ObSEArrayINS_11transaction6ObPairINS_5share6ObLSIDElEELl1ENS0_19ModulePageAllocatorELb0EEaSERKS8_:83812 + 0: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction6ObPairINS_5share6ObLSIDElEELl1ENS0_19ModulePageAllocatorELb0EEaSERKS8_:83812 + 4: 1035 + 5: 1035 _ZN9oceanbase6common13ObSEArrayImplINS_11transaction6ObPairINS_5share6ObLSIDElEELl1ENS0_19ModulePageAllocatorELb0EE5reuseEv:1050 + 7: 1047 _ZN9oceanbase6common13ObSEArrayImplINS_11transaction6ObPairINS_5share6ObLSIDElEELl1ENS0_19ModulePageAllocatorELb0EE7reserveEl:1084 + 8.1: 1084 + 8.3: 1084 + 8.5: 0 + 9: 534 + 13: 541 + 14: 541 + 15: 1061 + 6: _ZNK9oceanbase6common12ObIArrayWrapINS_11transaction6ObPairINS_5share6ObLSIDElEEE5countEv:4188 + 0: 1047 + 9: _ZN9oceanbase6common16construct_assignINS_11transaction6ObPairINS_5share6ObLSIDElEEEEiRT_RKS7_:11748 + 2: _ZN9oceanbase6common21construct_assign_wrapINS_11transaction6ObPairINS_5share6ObLSIDElEEEEiRT_RKS7_NS0_8BoolTypeILb0EEE:11748 + 2: _ZN9oceanbase11transaction6ObPairINS_5share6ObLSIDElEC2ERKS4_:11748 + 0: 534 + 0: _ZN9oceanbase5share6ObLSIDC2ERKS1_:6408 + 0: 534 +_ZN9oceanbase3sql15ObTableUpdateOpC2ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE:288728:512 + 4: 490 + 5: 490 + 0: _ZN9oceanbase6common11ObArrayWrapINS1_INS_3sql10ObUpdRtDefEEEEC2Ev:13720 + 1: 490 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_11ObArrayWrapINS_3sql10ObUpdRtDefEEEEC2Ev:4900 + 0: 490 + 0.1: _ZN9oceanbase6common11ObArrayWrapINS_3sql10ObInsRtDefEEC2Ev:12250 + 1: 490 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_3sql10ObInsRtDefEEC2Ev:3430 + 0: 490 + 2: _ZN9oceanbase3sql15ObTableModifyOpC2ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE:239414 + 3: 479 _ZN9oceanbase3sql10ObOperatorC2ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE:501 + 5: 519 + 11: 519 + 12: 519 + 13: 490 + 16: 519 + 17: 490 + 17.1: 490 + 17.7: 490 + 18: 490 + 22.3: 490 + 23.7: 0 + 0: _ZN9oceanbase6common16ObObjPrintParamsC2Ev:11418 + 1: 519 + 2: 519 + 0.1: _ZN9oceanbase6common9ObSEArrayIPNS_3sql6ObExprELl4ENS0_19ModulePageAllocatorELb0EEC2Ev:81340 + 0.1: 490 + 0.5: _ZN9oceanbase6common13ObSEArrayImplIPNS_3sql6ObExprELl4ENS0_19ModulePageAllocatorELb0EEC2ElRKS5_:72520 + 2: 490 + 5: 490 + 6: 490 + 8: 490 + 17.1: 490 + 2: _ZN9oceanbase6common8ObIArrayIPNS_3sql6ObExprEEC2EPS4_l:8820 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEEC2EPS4_l:8820 + 0: 490 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:27930 + 0: 490 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:11760 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:11760 + 2: 490 + 8: 490 + 12: _ZN9oceanbase3sql10ObDMLRtCtxC2ERNS0_9ObEvalCtxERNS0_13ObExecContextERNS0_15ObTableModifyOpE:16086 + 1: 519 _ZN9oceanbase3sql8ObDASRefC1ERNS0_9ObEvalCtxERNS0_13ObExecContextE:540 + 3: 490 + 2: _ZN9oceanbase3sql13DasTaskStatusC2Ev:5390 + 0: 490 + 14: _ZN9oceanbase3sql13ObErrLogRtDefC2Ev:13720 + 1: 490 + 2: 490 + 4: 490 + 17: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:3430 + 2: 490 + 17.3: _ZNK9oceanbase3sql18ObBasicSessionInfo23create_obj_print_paramsEv:32340 + 3: 490 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo17get_timezone_infoEv:3430 + 0: _ZNK9oceanbase6common18ObTimeZoneInfoWrap18get_time_zone_infoEv:3430 + 0: 490 + 2.1: _ZNK9oceanbase3sql18ObBasicSessionInfo30get_local_collation_connectionEv:23520 + 2: 490 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_collation_connectionEv:16170 + 0: 490 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_collation_connectionEb:8820 + 0: 490 + 22.1: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:3430 + 2: 490 + 22.2: _ZNK9oceanbase3sql18ObBasicSessionInfo12get_sql_modeEv:16660 + 0: 490 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache12get_sql_modeEv:15680 + 0: 490 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache12get_sql_modeEb:10780 + 0: 490 + 3.1: _ZN9oceanbase3sql15ObErrLogServiceC2ERNS0_9ObEvalCtxE:3430 + 1: 490 +_ZN9oceanbase3sql15ObTableUpdateOpC1ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE:288728:512 + 4: 490 + 5: 490 + 0: _ZN9oceanbase6common11ObArrayWrapINS1_INS_3sql10ObUpdRtDefEEEEC2Ev:13720 + 1: 490 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_11ObArrayWrapINS_3sql10ObUpdRtDefEEEEC2Ev:4900 + 0: 490 + 0.1: _ZN9oceanbase6common11ObArrayWrapINS_3sql10ObInsRtDefEEC2Ev:12250 + 1: 490 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_3sql10ObInsRtDefEEC2Ev:3430 + 0: 490 + 2: _ZN9oceanbase3sql15ObTableModifyOpC2ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE:239414 + 3: 479 _ZN9oceanbase3sql10ObOperatorC2ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE:501 + 5: 519 + 11: 519 + 12: 519 + 13: 490 + 16: 519 + 17: 490 + 17.1: 490 + 17.7: 490 + 18: 490 + 22.3: 490 + 23.7: 0 + 0: _ZN9oceanbase6common16ObObjPrintParamsC2Ev:11418 + 1: 519 + 2: 519 + 0.1: _ZN9oceanbase6common9ObSEArrayIPNS_3sql6ObExprELl4ENS0_19ModulePageAllocatorELb0EEC2Ev:81340 + 0.1: 490 + 0.5: _ZN9oceanbase6common13ObSEArrayImplIPNS_3sql6ObExprELl4ENS0_19ModulePageAllocatorELb0EEC2ElRKS5_:72520 + 2: 490 + 5: 490 + 6: 490 + 8: 490 + 17.1: 490 + 2: _ZN9oceanbase6common8ObIArrayIPNS_3sql6ObExprEEC2EPS4_l:8820 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEEC2EPS4_l:8820 + 0: 490 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:27930 + 0: 490 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:11760 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:11760 + 2: 490 + 8: 490 + 12: _ZN9oceanbase3sql10ObDMLRtCtxC2ERNS0_9ObEvalCtxERNS0_13ObExecContextERNS0_15ObTableModifyOpE:16086 + 1: 519 _ZN9oceanbase3sql8ObDASRefC1ERNS0_9ObEvalCtxERNS0_13ObExecContextE:540 + 3: 490 + 2: _ZN9oceanbase3sql13DasTaskStatusC2Ev:5390 + 0: 490 + 14: _ZN9oceanbase3sql13ObErrLogRtDefC2Ev:13720 + 1: 490 + 2: 490 + 4: 490 + 17: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:3430 + 2: 490 + 17.3: _ZNK9oceanbase3sql18ObBasicSessionInfo23create_obj_print_paramsEv:32340 + 3: 490 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo17get_timezone_infoEv:3430 + 0: _ZNK9oceanbase6common18ObTimeZoneInfoWrap18get_time_zone_infoEv:3430 + 0: 490 + 2.1: _ZNK9oceanbase3sql18ObBasicSessionInfo30get_local_collation_connectionEv:23520 + 2: 490 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_collation_connectionEv:16170 + 0: 490 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_collation_connectionEb:8820 + 0: 490 + 22.1: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:3430 + 2: 490 + 22.2: _ZNK9oceanbase3sql18ObBasicSessionInfo12get_sql_modeEv:16660 + 0: 490 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache12get_sql_modeEv:15680 + 0: 490 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache12get_sql_modeEb:10780 + 0: 490 + 3.1: _ZN9oceanbase3sql15ObErrLogServiceC2ERNS0_9ObEvalCtxE:3430 + 1: 490 +_ZN9oceanbase8memtable21ObMemtableGetIteratorC2Ev:288648:3342 + 1: 3228 + 2: 3228 + 3: 3228 + 8: 3228 _ZN9oceanbase12blocksstable10ObDatumRowC1Ev:3317 + 9: 3228 + 10: 3467 + 10.1: 7 + 0: _ZN9oceanbase8memtable19ObIMemtableIteratorC2Ev:61332 + 0: _ZN9oceanbase7storage18ObStoreRowIteratorC2Ev:61332 + 1: 3228 + 2: 3228 + 3: 3228 +_ZN9oceanbase8memtable21ObMemtableGetIteratorC1Ev:288648:3342 + 1: 3228 + 2: 3228 + 3: 3228 + 8: 3228 _ZN9oceanbase12blocksstable10ObDatumRowC1Ev:3317 + 9: 3228 + 10: 3467 + 10.1: 7 + 0: _ZN9oceanbase8memtable19ObIMemtableIteratorC2Ev:61332 + 0: _ZN9oceanbase7storage18ObStoreRowIteratorC2Ev:61332 + 1: 3228 + 2: 3228 + 3: 3228 +_ZZNK9oceanbase8observer8ObMPBase16init_process_varERNS_3sql8ObSqlCtxERKNS2_15ObMultiStmtItemERNS2_16ObSQLSessionInfoERbENK5$_268clEPKc.aab76b6a44351831e19725958b59fc25:287427:4926 + 0: 5219 + 0.1: 0 + 0.2: 5219 + 0.3: 4894 _ZN9oceanbase6common8ObLogger13need_to_printEmi:5504 + 0.5: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:83198 + 2: 4894 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKbLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase3sql11ObQueryHint5resetEv:287283:545 + 1: 533 + 2: 533 + 4: 533 + 5: 533 + 14: 532 + 3: _ZN9oceanbase3sql12ObGlobalHint5resetEv:142311 + 3: 533 + 4: 533 + 6: 533 + 7: 533 + 9: 533 + 10: 533 + 11: 533 + 14: 533 + 15: 533 + 16: 533 + 20: 533 + 21: 533 + 13: _ZN9oceanbase6common8ObString5resetEv:3731 + 2: 533 + 18: _ZN9oceanbase6common11ObArrayImplINS_3sql13ObMonitorHintENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE5reuseEv:22386 + 3: 533 + 6: 0 + 4: _ZN9oceanbase6common11ObArrayImplINS_3sql13ObMonitorHintENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE13do_clear_funcERS6_:11726 + 3: 533 + 4: 533 + 19: _ZN9oceanbase6common11ObArrayImplINS_3sql9ObDopHintENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE5reuseEv:22386 + 3: 533 + 6: 0 + 4: _ZN9oceanbase6common11ObArrayImplINS_3sql9ObDopHintENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE13do_clear_funcERS6_:11726 + 3: 533 + 4: 533 + 22: _ZN9oceanbase3sql14ObOptParamHint5resetEv:23452 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_3sql14ObOptParamHint12OptParamTypeELl1ENS0_19ModulePageAllocatorELb1EE5reuseEv:11726 + 8: 533 + 9: 533 + 3: _ZN9oceanbase6common13ObSEArrayImplINS0_5ObObjELl1ENS0_19ModulePageAllocatorELb1EE5reuseEv:11726 + 8: 533 + 9: 533 + 23: _ZN9oceanbase6common11ObArrayImplINS_3sql22ObDDLSchemaVersionHintENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE5reuseEv:22386 + 3: 533 + 6: 0 + 4: _ZN9oceanbase6common11ObArrayImplINS_3sql22ObDDLSchemaVersionHintENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE13do_clear_funcERS6_:11726 + 3: 533 + 4: 533 + 6: _ZN9oceanbase6common13ObSEArrayImplINS_3sql7ObHintsELl8ENS0_19ModulePageAllocatorELb1EE5reuseEv:19188 + 4.1: 533 + 4.3: 0 + 5: 0 + 8: 533 + 9: 533 + 5: _ZN9oceanbase3sql7ObHintsD2Ev:0 + 0: 0 + 7: _ZN9oceanbase6common13ObSEArrayImplINS_3sql7ObHintsELl8ENS0_19ModulePageAllocatorELb1EE5reuseEv:19188 + 4.1: 533 + 4.3: 0 + 5: 0 + 8: 533 + 9: 533 + 5: _ZN9oceanbase3sql7ObHintsD2Ev:0 + 0: 0 + 8: _ZN9oceanbase6common13ObSEArrayImplIPKNS_3sql6ObHintELl8ENS0_19ModulePageAllocatorELb1EE5reuseEv:11726 + 8: 533 + 9: 533 + 9: _ZN9oceanbase6common13ObSEArrayImplIPKNS_3sql6ObHintELl8ENS0_19ModulePageAllocatorELb1EE5reuseEv:11726 + 8: 533 + 9: 533 + 10: _ZN9oceanbase6common13ObSEArrayImplIPKNS_3sql6ObHintELl8ENS0_19ModulePageAllocatorELb1EE5reuseEv:11726 + 8: 533 + 9: 533 + 11: _ZN9oceanbase6common11ObArrayImplINS_3sql11ObQueryHint10IdNamePairENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS4_EENS0_17DefaultItemEncodeIS4_EEE5reuseEv:22386 + 3: 533 + 6: 0 + 4: _ZN9oceanbase6common11ObArrayImplINS_3sql11ObQueryHint10IdNamePairENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS4_EENS0_17DefaultItemEncodeIS4_EEE13do_clear_funcERS7_:11726 + 3: 533 + 4: 533 + 12: _ZN9oceanbase6common4hash9ObHashMapINS0_8ObStringElNS1_24LatchReadWriteDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_lEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE5reuseEv:5863 + 2: _ZN9oceanbase6common4hash9ObHashMapINS0_8ObStringElNS1_24LatchReadWriteDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_lEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE5clearEv:5863 + 2: _ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_lEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE5clearEv:5863 + 3: 533 + 3.1: 0 + 6.1: 0 + 6.3: 0 + 7: 0 + 8.1: 0 + 10: 0 + 11.1: 0 + 13: 0 + 14: 0 + 18: 0 + 19: 0 + 20: 0 + 3: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringElEENS0_7ObLatchENS1_5NCondEEEEEbRKT_:5330 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringElEENS0_7ObLatchENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:5330 + 2: 533 + 8: _ZN9oceanbase6common4hash16ObBucketLockCondINS1_11HashMapPairINS0_8ObStringElEENS1_24LatchReadWriteDefendModeEE4lockEv:0 + 2: 0 + 12: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_11HashMapPairINS0_8ObStringElEEE16check_magic_codeEv:0 + 0: 0 + 12.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 13: _ZN9oceanbase6common4hash9ObHashMapIlNS0_8ObStringENS1_24LatchReadWriteDefendModeENS1_9hash_funcIlEENS1_8equal_toIlEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIlS3_EEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE5reuseEv:5874 + 2: _ZN9oceanbase6common4hash9ObHashMapIlNS0_8ObStringENS1_24LatchReadWriteDefendModeENS1_9hash_funcIlEENS1_8equal_toIlEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIlS3_EEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE5clearEv:5874 + 2: _ZN9oceanbase6common4hash11ObHashTableIlNS1_11HashMapPairIlNS0_8ObStringEEENS1_9hash_funcIlEENS1_8equal_toIlEENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE5clearEv:5874 + 3: 534 + 3.1: 0 + 6.1: 0 + 6.3: 0 + 7: 0 + 8.1: 0 + 10: 0 + 11.1: 0 + 13: 0 + 14: 0 + 18: 0 + 19: 0 + 20: 0 + 3: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairIlNS0_8ObStringEEENS0_7ObLatchENS1_5NCondEEEEEbRKT_:5340 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairIlNS0_8ObStringEEENS0_7ObLatchENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:5340 + 2: 534 + 8: _ZN9oceanbase6common4hash16ObBucketLockCondINS1_11HashMapPairIlNS0_8ObStringEEENS1_24LatchReadWriteDefendModeEE4lockEv:0 + 2: 0 + 12: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_11HashMapPairIlNS0_8ObStringEEEE16check_magic_codeEv:0 + 0: 0 + 12.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase3sql17ObPhysicalPlanCtx12set_cur_timeERKlRKNS0_16ObSQLSessionInfoE:286398:4766 + 1: 4546 + 5: 4546 + 10: 4546 + 4: _ZNK9oceanbase3sql18ObBasicSessionInfo19get_local_timestampEv:159110 + 2: 4546 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache13get_timestampEv:77282 + 0: 4546 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache13get_timestampEb:31822 + 0: 4546 + 8: _ZN9oceanbase6common5ObObj13set_timestampEl:63644 + 3: 4546 + 2: _ZN9oceanbase6common9ObObjMeta13set_timestampEv:45460 + 0: 4546 + 0.1: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:18184 + 0: 4546 +_ZN9oceanbase8memtable13ObMemtableCtx22get_conflict_trans_idsERNS_6common8ObIArrayINS_11transaction16ObTransIDAndAddrEEE:286173:1075 + 1: 1038 + 2: 1038 + 6: 1057 _ZN9oceanbase6common11ObArrayImplINS_11transaction9ObTransIDENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE6assignERKNS0_8ObIArrayIS3_EE:1114 + 6.1: 933 + 8: 933 + 9.1: 0 + 10.1: 933 + 11: 0 + 12.1: 0 + 14.2: 933 + 14.6: 0 + 16.1: 0 + 16.2: 0 + 16.3: 0 + 20.1: 0 + 22: 0 + 24.1: 0 + 27.1: 0 + 27.2: 0 + 27.3: 0 + 27.4: 0 + 28.1: 0 + 33: 920 + 34.14: 1084 _ZN9oceanbase6common11ObArrayImplINS_11transaction9ObTransIDENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEED2Ev:938 + 34.15: 0 + 3: _ZN9oceanbase6common7ObArrayINS_11transaction9ObTransIDENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEEC2Ev:121446 + 0.1: 1038 + 0.5: _ZN9oceanbase6common11ObArrayImplINS_11transaction9ObTransIDENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEEC2ElRKS4_:99648 + 3: 1038 + 4: 1038 + 7.1: 1038 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:59166 + 0: 1038 + 5: _ZN9oceanbase6common20ObSmallSpinLockGuardINS0_15ObSmallSpinLockIhLl0ELl500ELl100EEEEC2ERS3_:26838 + 0: _ZN9oceanbase6common15ObSmallSpinLockIhLl0ELl500ELl100EE4lockEv:26838 + 5: 0 + 7: 0 + 9: 0 + 3.1: _ZN9oceanbase6common15ObSmallSpinLockIhLl0ELl500ELl100EE8try_lockEv:26838 + 3: 994 + 4: 994 + 5: 994 + 7: _ZN9oceanbase6common20ObSmallSpinLockGuardINS0_15ObSmallSpinLockIhLl0ELl500ELl100EEEED2Ev:13062 + 0: _ZN9oceanbase6common15ObSmallSpinLockIhLl0ELl500ELl100EE6unlockEv:13062 + 2: 933 + 3: 933 + 7.1: _ZN9oceanbase6common20ObSmallSpinLockGuardINS0_15ObSmallSpinLockIhLl0ELl500ELl100EEEED2Ev:0 + 0: _ZN9oceanbase6common15ObSmallSpinLockIhLl0ELl500ELl100EE6unlockEv:0 + 2: 0 + 3: 0 + 15: _ZN9oceanbase6common6ObAddrC2Ev:0 + 1: 0 + 16: _ZN9oceanbase6common12ObIArrayWrapINS_11transaction9ObTransIDEE2atEl:0 + 6: 0 + 16.1: _ZNK9oceanbase11transaction14ObPartTransCtx9get_ls_idEv:0 + 0: _ZN9oceanbase5share6ObLSIDC2ERKS1_:0 + 0: 0 + 16.3: _ZN9oceanbase5share6ObLSIDD2Ev:0 + 0: _ZN9oceanbase5share6ObLSID5resetEv:0 + 0: 0 + 16.4: _ZN9oceanbase5share6ObLSIDD2Ev:0 + 0: _ZN9oceanbase5share6ObLSID5resetEv:0 + 0: 0 + 16.5: _ZN9oceanbase11transaction9ObTransIDD2Ev:0 + 0: 0 + 16.6: _ZN9oceanbase11transaction9ObTransIDD2Ev:0 + 0: 0 + 27.1: _ZN9oceanbase6common11ObArrayImplINS_11transaction9ObTransIDENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEEixEl:0 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_11transaction9ObTransIDEE2atEl:0 + 6: 0 + 27.2: _ZN9oceanbase11transaction16ObTransIDAndAddrC2ENS0_9ObTransIDERKNS_6common6ObAddrE:0 + 0: 0 +_ZN9oceanbase6common13ObPageManager24get_tenant_ctx_allocatorEv:285862:28874 + 1: 28577 + 2: 28577 _ZNK9oceanbase3lib8BlockSet24get_tenant_ctx_allocatorEv:29292 +ev_run:284726:0 + 1: 0 + 3: 0 + 8: 0 + 10: 0 + 19: 555 + 20: 0 + 21: 0 + 22: 0 + 30: 555 + 31: 0 + 33: 0 + 41: 555 + 43: 0 + 48: 555 + 52: 555 + 53: 0 + 64: 544 + 69: 228 + 69.1: 228 + 69.2: 228 + 69.3: 228 + 72: 228 + 73: 228 + 75: 228 + 80: 228 + 81: 0 + 83: 0 + 89: 228 + 93: 228 + 94: 0 + 96: 0 + 99: 0 + 100: 0 + 101: 0 + 107: 228 + 111: 228 epoll_poll.f8d7388e3b0c2a08f5c22fd7550445b6:228 + 115: 993 + 132: 822 + 137: 822 easy_baseth_pool_invoke.4cdd23ddacb096b5c68ec580fb4fcf84:822 + 138.1: 588 + 138.2: 588 + 144: 0 + 145: 0 + 148: 0 + 150: 0 + 32: queue_events:0 + 4.1: 0 + 4.2: 0 + 5: 0 + 42: queue_events:0 + 4.1: 0 + 4.2: 0 + 5: 0 + 56: fd_reify:10979 + 4.1: 555 + 4.2: 0 + 5: 0 + 6: 0 + 9: 0 + 10: 0 + 12: 0 + 27: 0 + 29.1: 0 + 31: 0 + 38: 0 + 39: 0 + 42: 544 + 67: time_update:26976 + 47: 228 + 49: 228 + 49.2: 228 + 51: 0 + 53: 0 + 55: 0 + 57: 228 + 47: ev_time:10560 + 13: 544 + 14: 228 + 115: time_update:79038 + 47: 840 + 49: 840 + 49.2: 840 + 51: 0 + 53: 0 + 57: 840 + 47: ev_time:37878 + 13: 993 + 14: 840 + 119: timers_reify:23382 + 4: 840 + 4.1: 840 + 6: 1 + 11: 1 + 12: 1 + 14: 1 + 15: 0 + 19: 1 + 20: 1 + 22: 0 + 26.1: 1 + 26.2: 1 + 26.3: 1 + 20: downheap:476 + 2: 1 + 3: 1 + 8: 4 + 11: 4 + 12: 3 + 14: 3 + 16: 3 + 18: 3 + 19.1: 1 + 20: 0 + 22: 0 + 22.1: 0 + 24: 0 + 24.1: 0 + 26: 0 + 26.1: 0 + 30: 3 + 33: 3 + 34: 3 + 36: 3 + 39: 1 + 40: 1 + 25: feed_reverse:44 + 2: 1 + 2.1: 0 + 3: 1 + 28: feed_reverse_done:63 + 3: 1 ev_feed_event:1 + 3.1: 1 + 5: 1 + 121: periodics_reify:7650 + 4.1: 850 + 4.2: 0 + 4.3: 0 + 6: 0 + 11: 0 + 12: 0 + 16: 0 + 17: 0 + 18.1: 0 + 19: 0 + 23: 0 + 24: 0 + 29: 0 + 30: 0 + 33: 0 + 34: 0 + 36: 0 + 40.1: 0 + 40.2: 0 + 40.3: 0 + 17: downheap:0 + 2: 0 + 3: 0 + 8: 0 + 11: 0 + 12: 0 + 14: 0 + 16: 0 + 18: 0 + 19.1: 0 + 20: 0 + 22: 0 + 22.1: 0 + 24: 0 + 24.1: 0 + 26: 0 + 26.1: 0 + 30: 0 + 33: 0 + 34: 0 + 36: 0 + 39: 0 + 40: 0 + 34: downheap:0 + 2: 0 + 3: 0 + 8: 0 + 11: 0 + 12: 0 + 14: 0 + 16: 0 + 18: 0 + 19.1: 0 + 20: 0 + 22: 0 + 22.1: 0 + 24: 0 + 24.1: 0 + 26: 0 + 26.1: 0 + 30: 0 + 33: 0 + 34: 0 + 36: 0 + 39: 0 + 40: 0 + 39: feed_reverse:0 + 2: 0 + 2.1: 0 + 3: 0 + 42: feed_reverse_done:0 + 3: 0 + 3.1: 0 + 5: 0 + 126: idle_reify:11508 + 2: 822 + 5.1: 0 + 6: 0 + 9: 0 + 10: queue_events:0 + 4.1: 0 + 4.2: 0 + 5: 0 + 133: queue_events:0 + 4.1: 0 + 4.2: 0 + 5: 0 +_ZN9oceanbase11transaction14ObPartTransCtx18submit_commit_log_Ev:283882:270 + 1: 257 + 2: 257 + 4: 279 _ZN9oceanbase4palf3LSNC1Ev:292 + 5: 263 + 9: 263 + 11: 267 _ZN9oceanbase11transaction12ObTxLogBlock4initElRKNS0_18ObTxLogBlockHeaderE:277 + 11.1: 250 + 12.1: 3 + 13.1: 250 _ZNK9oceanbase11transaction14ObPartTransCtx20gen_final_mds_array_ERNS_6common9ObSEArrayINS0_14ObTxBufferNodeELl1ENS2_19ModulePageAllocatorELb0EEEb:253 + 13.2: 274 + 14.1: 3 + 15.2: 274 + 16: 274 _ZN9oceanbase11transaction14ObPartTransCtx25submit_multi_source_data_ERNS0_12ObTxLogBlockE:272 + 16.1: 286 + 17.1: 3 + 18.1: 286 _ZN9oceanbase11transaction14ObPartTransCtx28submit_redo_commit_info_log_ERNS0_12ObTxLogBlockERbRNS_8memtable21ObRedoLogSubmitHelperE:297 + 18.2: 248 + 19.1: 3 + 22: 3 + 23: 248 _ZN9oceanbase11transaction14ObPartTransCtx17get_prev_log_lsn_ERNS_4palf3LSNE:245 + 23.1: 237 + 24.1: 3 + 26.1: 237 _ZZN9oceanbase11transaction14ObPartTransCtx18submit_commit_log_EvENK5$_358clEPKc.93feb755617c21c32b229b78773c290c:234 + 29: 249 + 31: 249 + 31.1: 249 + 31.2: 250 _ZN9oceanbase8memtable13ObMemtableCtx17calc_checksum_allEv:256 + 33.1: 241 + 34: 3 + 36: 247 + 37: 253 _ZN9oceanbase4palf3LSNC1ERKS1_:259 + 38: 240 + 39: 280 + 41: 280 + 42: 280 _ZNK9oceanbase11transaction11ObCtxTxData11get_tx_dataERPKNS_7storage8ObTxDataE:290 + 42.1: 253 + 43.1: 3 + 44.1: 253 + 44.2: 253 + 45.1: 3 + 46.1: 253 _ZN9oceanbase11transaction12ObTxLogBlock11add_new_logINS0_13ObTxCommitLogEEEiRT_:248 + 46.2: 259 + 48.1: 3 + 49.1: 3 + 51.1: 3 + 53.3: 3 + 54: 3 + 55.1: 3 + 56: 3 + 59.2: 3 + 61.1: 3 + 61.4: 3 + 61.5: 3 + 63.1: 3 + 64: 3 + 65: 3 + 67.1: 3 + 68.1: 3 + 68.2: 3 + 71: 3 + 73: 3 + 74: 3 + 74.1: 3 + 76.1: 3 + 78.1: 3 + 78.2: 3 + 79.1: 3 + 80: 3 + 87.3: 3 + 88: 3 + 89.1: 3 + 90: 3 + 92.2: 3 + 94.1: 3 + 94.4: 3 + 94.5: 3 + 94.6: 3 + 97.1: 3 + 98: 3 + 99: 3 + 103: 3 + 103.2: 3 + 104: 3 + 105: 3 + 106.1: 3 + 106.2: 3 + 107.1: 3 + 110: 3 + 110.1: 3 + 116.1: 3 + 117: 3 + 125.3: 259 + 126: 3 + 127.1: 3 + 128: 3 + 130.2: 271 + 132.1: 3 + 134.2: 252 + 136.1: 252 + 136.4: 252 _ZNK9oceanbase11transaction11ObCtxTxData18get_commit_versionEv:249 + 136.5: 268 _ZN9oceanbase11transaction16ObLSTxLogAdapter10submit_logEPKcllPNS0_13ObTxBaseLogCbEb:281 + 136.6: 284 + 139.1: 3 + 141: 3 + 145: 284 + 145.2: 284 + 146: 295 + 147.1: 295 _ZN9oceanbase11transaction11ObCtxTxData18set_commit_versionEl:296 + 147.2: 289 + 148.1: 5 + 151: 285 _ZN9oceanbase11transaction14ObPartTransCtx17after_submit_log_ERNS0_12ObTxLogBlockEPNS0_9ObTxLogCbEPNS_8memtable21ObRedoLogSubmitHelperE:289 + 151.1: 286 + 152.1: 3 + 159: 286 + 160.42: 256 + 160.44: 3 + 160.48: 3 + 160.50: 286 _ZN9oceanbase6common13ObSEArrayImplINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EED2Ev:280 + 160.53: 274 _ZN9oceanbase11transaction12ObTxLogBlockD1Ev:276 + 3: _ZN9oceanbase11transaction12ObTxLogBlockC2Ev:37038 + 0: 257 + 3.1: 3 + 0: _ZN9oceanbase6common9ObSEArrayINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EEC2Ev:30326 + 0.1: 257 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EEC2ElRKS4_:26471 + 2: 257 + 5: 257 + 6: 257 + 8: 257 + 17.1: 257 + 2: _ZN9oceanbase6common8ObIArrayINS_11transaction9ObTxCbArgEEC2EPS3_l:2056 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_11transaction9ObTxCbArgEEC2EPS3_l:2056 + 0: 257 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:10537 + 0: 257 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:5397 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:5397 + 2: 257 + 8: 257 + 2: _ZN9oceanbase11transaction12ObTxLogBlock5resetEv:4883 + 6: 257 + 9: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EE5resetEv:1028 + 0: 257 _ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EE7destroyEv:257 + 6: _ZNK9oceanbase11transaction9ObTransID6get_idEv:1052 + 0: 263 + 7: _ZN9oceanbase8memtable21ObRedoLogSubmitHelperC2Ev:4471 + 0: 263 + 8: _ZN9oceanbase6common9ObSEArrayINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EEC2Ev:26300 + 0.1: 263 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EEC2ElRKS4_:22355 + 2: 263 + 5: 263 + 6: 263 + 8: 263 + 17.1: 263 + 2: _ZN9oceanbase6common8ObIArrayINS_11transaction14ObTxBufferNodeEEC2EPS3_l:2104 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_11transaction14ObTxBufferNodeEEC2EPS3_l:2104 + 0: 263 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:6049 + 0: 263 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:4734 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:4734 + 2: 263 + 8: 263 + 9: _ZN9oceanbase11transaction18ObTxLogBlockHeaderC2EmlRKNS0_9ObTransIDE:9555 + 3: 263 + 0: _ZN9oceanbase11transaction17ObTxSerCompatByteC2Ev:1841 + 0: _ZN9oceanbase11transaction17ObTxSerCompatByte5resetEv:1841 + 3: 263 + 5: _ZN9oceanbase11transaction18ObTxLogBlockHeader16before_serializeEv:4558 + 4: 267 _ZN9oceanbase11transaction17ObTxSerCompatByte4initEl:285 + 5.1: 3 + 15.1: _ZNK9oceanbase11transaction14ObPartTransCtx12is_local_tx_Ev:2192 + 0: 274 + 33: _ZNK9oceanbase11transaction14ObPartTransCtx12is_local_tx_Ev:1928 + 0: 241 + 36.1: _ZN9oceanbase11transaction13ObTxCommitLogC2ElmRNS_6common9ObSEArrayINS_5share6ObLSIDELl3ENS2_19ModulePageAllocatorELb0EEERNS3_INS0_14ObTxBufferNodeELl1ES6_Lb0EEEiNS_4palf3LSNERNS3_INS0_11ObLSLogInfoELl10ES6_Lb0EEE:17295 + 7: 247 + 8: 247 + 9: 247 _ZN9oceanbase4palf3LSNC1ERKS1_:242 + 11: 240 _ZN9oceanbase11transaction13ObTxCommitLog16before_serializeEv:238 + 0: _ZN9oceanbase11transaction17ObTxSerCompatByteC2Ev:3211 + 0: _ZN9oceanbase11transaction17ObTxSerCompatByte5resetEv:3211 + 3: 247 + 0.1: _ZN9oceanbase11transaction14ObTxDataBackupC2Ev:2717 + 2: _ZN9oceanbase11transaction14ObTxDataBackup5resetEv:2717 + 2: 247 + 44.1: _ZN9oceanbase11transaction13ObTxCommitLog19init_tx_data_backupEPKNS_7storage8ObTxDataE:11484 + 2: 253 + 4: 3 + 5.1: 3 + 9: 3 + 4: _ZN9oceanbase11transaction14ObTxDataBackup4initEPKNS_7storage8ObTxDataE:8626 + 3: 253 + 5.1: 3 + 7: 253 + 49: _ZN9oceanbase11transaction14ObPartTransCtx15prepare_log_cb_EbRPNS0_9ObTxLogCbE:108 + 3: 3 + 4.1: 3 + 6: 3 + 59.1: _ZN9oceanbase11transaction10ObTransCtx16acquire_ctx_ref_Ev:129 + 2: 3 + 2: _ZN9oceanbase11transaction15ObTransHashLinkINS0_10ObTransCtxEE7inc_refEi:105 + 2: 3 + 3.1: 3 + 5: 3 + 61.1: _ZN9oceanbase11transaction12ObLSTxCtxMgr18get_ls_log_adapterEv:21 + 0: 3 + 61.2: _ZN9oceanbase11transaction12ObTxLogBlock7get_bufEv:21 + 3: 3 + 66: _ZN9oceanbase11transaction10ObTransCtx16release_ctx_ref_Ev:93 + 2: _ZN9oceanbase11transaction15ObTransHashLinkINS0_10ObTransCtxEE7dec_refEi:93 + 2: 3 + 3: 3 + 4.1: 3 + 71: _ZNK9oceanbase11transaction13ObTxBaseLogCb7get_lsnEv:39 + 0: 3 + 71.1: _ZN9oceanbase11transaction13ObTxCommitLog12set_prev_lsnERKNS_4palf3LSNE:24 + 0: 3 + 92.1: _ZN9oceanbase11transaction10ObTransCtx16acquire_ctx_ref_Ev:99 + 2: _ZN9oceanbase11transaction15ObTransHashLinkINS0_10ObTransCtxEE7inc_refEi:99 + 2: 3 + 3.1: 3 + 5: 3 + 94.1: _ZN9oceanbase11transaction12ObLSTxCtxMgr18get_ls_log_adapterEv:21 + 0: 3 + 94.2: _ZN9oceanbase11transaction12ObTxLogBlock7get_bufEv:21 + 3: 3 + 100: _ZN9oceanbase11transaction10ObTransCtx16release_ctx_ref_Ev:120 + 2: _ZN9oceanbase11transaction15ObTransHashLinkINS0_10ObTransCtxEE7dec_refEi:120 + 2: 3 + 3: 3 + 4.1: 3 + 103.1: _ZNK9oceanbase11transaction14ObPartTransCtx12is_local_tx_Ev:24 + 0: 3 + 106: _ZNK9oceanbase11transaction13ObTxBaseLogCb10get_log_tsEv:33 + 0: 3 + 130.1: _ZN9oceanbase11transaction14ObPartTransCtx15prepare_log_cb_EbRPNS0_9ObTxLogCbE:5377 + 3: 271 _ZN9oceanbase11transaction14ObPartTransCtx11get_log_cb_EbRPNS0_9ObTxLogCbE:256 + 4.1: 3 + 6: 3 + 134.1: _ZN9oceanbase11transaction10ObTransCtx16acquire_ctx_ref_Ev:4070 + 2: 271 + 2: _ZN9oceanbase11transaction15ObTransHashLinkINS0_10ObTransCtxEE7inc_refEi:2986 + 2: 271 + 3.1: 5 + 5: 252 + 136.1: _ZN9oceanbase11transaction12ObLSTxCtxMgr18get_ls_log_adapterEv:1764 + 0: 252 + 136.2: _ZN9oceanbase11transaction12ObTxLogBlock7get_bufEv:1764 + 3: 252 + 140: _ZN9oceanbase11transaction10ObTransCtx16release_ctx_ref_Ev:84 + 2: _ZN9oceanbase11transaction15ObTransHashLinkINS0_10ObTransCtxEE7dec_refEi:84 + 2: 3 + 3: 3 + 4.1: 3 + 145.1: _ZNK9oceanbase11transaction14ObPartTransCtx12is_local_tx_Ev:2272 + 0: 284 + 147: _ZNK9oceanbase11transaction13ObTxBaseLogCb10get_log_tsEv:3245 + 0: 295 +_ZN9oceanbase7storage19ObStorageTableGuard25refresh_and_protect_tableERNS0_15ObRelativeTableE:283081:1125 + 1: 1056 + 2: 1056 + 4: 1056 + 6: 1056 + 7: 7 + 8.1: 7 + 12.1: 12 + 12.3: 1424 + 16: 12 + 16.3: 12 + 21.1: 7 + 25: 12 + 29: 1395 + 12.2: _ZN9oceanbase7storage19ObStorageTableGuard21need_to_refresh_tableERNS0_20ObTableStoreIteratorERi:171680 + 2: 1056 + 3: 1056 + 4: 1056 + 6: 1224 _ZN9oceanbase7storage20ObTableStoreIterator18get_boundary_tableEb:1233 + 7: 1224 + 7.1: 1280 _ZNK9oceanbase7storage8ObITable11is_memtableEv:1272 + 9: 7 + 10: 7 + 10.1: 7 + 11.1: 7 + 13: 7 + 14: 7 + 15.1: 1263 _ZNK9oceanbase7storage8ObITable16is_data_memtableEv:1273 + 17.1: 1252 + 18: 12 + 19: 12 + 20.1: 1362 _ZN9oceanbase7storage19ObStorageTableGuard29check_freeze_to_inc_write_refEPNS0_8ObITableERb:1250 + 21: 7 + 22: 7 + 23: 7 + 24.1: 7 + 27: 1362 + 30: 1362 + 31: 12 + 32: 12 + 33.1: 12 + 34: 12 + 35.1: 12 + 37.1: 12 + 39.1: 12 + 41.1: 12 + 43.1: 12 + 48: 1424 + 10: _ZN9oceanbase7storage4ObLS14get_tablet_svrEv:28 + 0: 7 + 17.1: _ZNK9oceanbase7storage20ObTableStoreIterator18check_store_expireEv:18780 + 0: 1252 + 0.2: 1252 + 30.1: _ZN9oceanbase7storage19ObStorageTableGuard17check_if_need_logEv:1078 + 3: 7 + 4: 12 + 5: 12 + 6: 12 + 7.1: 12 + 8: 12 + 65280.1: 12 + 16: _ZN9oceanbase7storage4ObLS14get_tablet_svrEv:48 + 0: 12 + 16.1: _ZNK9oceanbase8memtable15ObMvccAccessCtx20get_snapshot_versionEv:48 + 1: 12 + 16.2: _ZNK9oceanbase7storage15ObRelativeTable15allow_not_readyEv:144 + 0: 12 + 25: _ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE7get_objEv:48 + 2: 12 +_ZNK9oceanbase11transaction9ObTransID9serializeEPclRl:282908:749 + 0: 704 + 0.1: 704 + 0.2: 704 + 0.4: 0 + 0.11: 0 + 0.12: 704 + 0.13: 735 + 0.15: 0 + 0.21: 0 + 0.22: 735 + 0.24: 735 + 0.25: 0 + 0.32: 0 + 0.33: 0 + 0.35: 0 + 0.2: _ZN9oceanbase6common13serialization6encodeEPclRll:25437 + 2: _ZN9oceanbase6common13serialization11encode_vi64EPclRll:25437 + 3: 735 + 4: 704 + 5: 704 + 11: 704 + 0.5: _ZN9oceanbase6common7ObLogKVIRA13_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 0.13: _ZNK9oceanbase11transaction9ObTransID19serialize_dispatch_EPclRlSt17integral_constantIbLb0EE:15125 + 0.1: 735 _ZNK9oceanbase11transaction9ObTransID10serialize_EPclRl:735 + 0.3: 0 + 0.9: 0 + 0.10: 0 + 0.12: 0 + 0.11: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.22: _ZN9oceanbase6common13serialization22encode_fixed_bytes_i64EPclRll:181545 + 5: 735 + 8: 2940 + 9: 2940 + 0.27: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.29: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.31: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.34: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 +_ZNK9oceanbase7obmysql13OMPKResheader9serializeEPclRl:281227:3634 + 1: 3600 + 4: 3600 + 5.1: 0 + 8: 3600 _ZN9oceanbase7obmysql11ObMySQLUtil12store_lengthEPclmRl:3639 + 9.1: 0 + 13: 3433 +_ZN9oceanbase3sql16ObSQLSessionInfo20get_raw_audit_recordEv:281021:22068 + 1: 21617 + 2: 21617 +_ZN9oceanbase6common13ObLinkHashMapINS_5share6ObLSIDENS_11transaction12ObLSTxCtxMgrENS4_17ObLSTxCtxMgrAllocENS0_9RefHandleELl8EE6revertEPNS0_12LinkHashNodeIS3_EE:276780:4735 + 1: 4459 + 6: 4459 + 6.1: 4459 + 6.2: 4459 + 7.1: 0 + 10: 0 + 13: 4505 + 11: _ZN9oceanbase6common13ObLinkHashMapINS_5share6ObLSIDENS_11transaction12ObLSTxCtxMgrENS4_17ObLSTxCtxMgrAllocENS0_9RefHandleELl8EE8dec_urefEPNS0_12LinkHashNodeIS3_EE:26754 + 3: 4459 + 3: _ZN9oceanbase6common9RefHandle3decEPNS0_7RefNodeE:22295 + 0: 4459 + 4: _ZN9oceanbase6common13ObLinkHashMapINS_5share6ObLSIDENS_11transaction12ObLSTxCtxMgrENS4_17ObLSTxCtxMgrAllocENS0_9RefHandleELl8EE13on_uref_cleanEPNS0_12LinkHashNodeIS3_EE:0 + 3: 0 + 3: _ZN9oceanbase6common13ObLinkHashMapINS_5share6ObLSIDENS_11transaction12ObLSTxCtxMgrENS4_17ObLSTxCtxMgrAllocENS0_9RefHandleELl8EE10free_valueEPS5_:0 + 2: _ZN9oceanbase11transaction17ObLSTxCtxMgrAlloc10free_valueEPNS0_12ObLSTxCtxMgrE:0 + 2: 0 + 3.1: 0 + 4: 0 + 4: _ZN9oceanbase6common13ObLinkHashMapINS_5share6ObLSIDENS_11transaction12ObLSTxCtxMgrENS4_17ObLSTxCtxMgrAllocENS0_9RefHandleELl8EE8dec_hrefEPNS0_12LinkHashNodeIS3_EE:0 + 3: 0 + 3: _ZN9oceanbase6common7RefNode5xhrefEi:0 + 0: 0 + 4: _ZN9oceanbase11transaction17ObLSTxCtxMgrAlloc9free_nodeEPNS_6common12LinkHashNodeINS_5share6ObLSIDEEE:0 + 3: 0 + 3.3: 0 + 3: _ZN9oceanbase3lib7ObLabelC2IPKcEERKT_:0 + 2: _ZN9oceanbase3lib7ObLabelaSIPKcvEERS1_T_:0 + 2: 0 + 3.1: _ZN9oceanbase6common21ObFixedClassAllocatorINS0_12LinkHashNodeINS_5share6ObLSIDEEEE4freeEPS5_:0 + 4: 0 + 3: _ZN9oceanbase6common12LinkHashNodeINS_5share6ObLSIDEED2Ev:0 + 0: _ZN9oceanbase6common11KeyHashNodeINS_5share6ObLSIDEED2Ev:0 + 0: _ZN9oceanbase5share6ObLSIDD2Ev:0 + 0: _ZN9oceanbase5share6ObLSID5resetEv:0 + 0: 0 + 0.1: _ZN9oceanbase6common6ObLinkD2Ev:0 + 0: 0 + 0.1: _ZN9oceanbase6common7RefNodeD2Ev:0 + 0: _ZN9oceanbase6common6ObLinkD2Ev:0 + 0: 0 +_ZN9oceanbase12blocksstable12MacroBlockIdC2ERKS1_:276500:10105 + 1: 9875 + 2: 9875 + 3: 9875 + 4: 9875 + 5: 9875 +_ZN9oceanbase12blocksstable12MacroBlockIdC1ERKS1_:276500:10105 + 1: 9875 + 2: 9875 + 3: 9875 + 4: 9875 + 5: 9875 +_ZN9oceanbase3sql30eval_assign_question_mark_funcERKNS0_6ObExprERNS0_9ObEvalCtxERNS_6common7ObDatumE:276115:251 + 1: 238 + 2: 238 + 3: 238 + 4: 238 + 4.1: 238 + 5: 0 + 6.1: 0 + 8: 238 + 10: 238 + 11: 0 + 12.1: 0 + 13.1: 245 + 13.2: 238 _ZN9oceanbase3sql10ObSQLUtils21get_default_cast_modeERKNS0_4stmt8StmtTypeEPKNS0_16ObSQLSessionInfoERm:252 + 15.1: 0 + 19: 245 + 19.1: 245 + 20: 245 + 21: 245 _ZN9oceanbase3sql13ObExecContext13get_allocatorEv:255 + 22: 246 + 23.1: 246 + 23.4: 246 + 25: 246 + 25.2: 246 + 26: 0 + 29.1: 245 _ZN9oceanbase6common11ObObjCaster7to_typeENS0_9ObObjTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS5_:249 + 29.2: 246 + 30.1: 0 + 31.2: 260 + 32.1: 0 + 33.2: 260 _ZN9oceanbase3sql15ObDatumObjParam13from_objparamERKNS_6common10ObObjParamEPNS2_12ObIAllocatorE:270 + 33.3: 250 + 34.1: 0 + 36: 250 + 40: 250 + 3: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:1666 + 2: 238 + 4.1: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:1666 + 2: 238 + 9.1: _ZNK9oceanbase3sql17ObPhysicalPlanCtx15get_param_storeEv:952 + 0: 238 + 13.1: _ZNK9oceanbase3sql18ObBasicSessionInfo13get_stmt_typeEv:3094 + 0: 238 + 17: _ZN9oceanbase6common5ObObjC2Ev:3920 + 2: _ZN9oceanbase6common5ObObj5resetEv:3920 + 6: 245 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:2205 + 0: 245 + 18: _ZN9oceanbase3sql15ObDatumObjParamC2Ev:22540 + 0: 245 + 0: _ZN9oceanbase3sql10ObDatumObjC2Ev:11270 + 0: _ZN9oceanbase3sql11ObDatumMetaC2Ev:8085 + 0: 245 + 1: 245 + 0.1: _ZN9oceanbase6common7ObDatumC2Ev:3185 + 0: _ZN9oceanbase6common10ObDatumPtrC2Ev:1715 + 0: 245 + 0.1: _ZN9oceanbase6common11ObDatumDescC2Ev:1470 + 0: 245 + 0.1: _ZN9oceanbase6common10ObAccuracyC2Ev:2695 + 0: _ZN9oceanbase6common10ObAccuracy5resetEv:2695 + 0: 245 + 0.2: _ZN9oceanbase6common9ParamFlagC2Ev:7105 + 7: 245 + 8: 245 + 19: _ZNK9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE2atEl:13965 + 2: 245 + 2.1: 245 + 2.2: 245 + 3.1: 0 + 5: 0 + 5: _ZNK9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE11get_obj_posEl:8575 + 5: 245 + 4: _ZNK9oceanbase6common12ObIArrayWrapIPNS0_10ObObjParamEE2atEl:980 + 6: 245 + 22.2: _ZN9oceanbase3sql18ObBasicSessionInfo17create_dtc_paramsEPKS1_:54612 + 2: 246 + 2.1: _ZNK9oceanbase3sql18ObBasicSessionInfo14get_dtc_paramsEv:53136 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo17get_timezone_infoEv:2706 + 0: _ZNK9oceanbase6common18ObTimeZoneInfoWrap18get_time_zone_infoEv:2706 + 0: 246 + 3: _ZNK9oceanbase3sql18ObBasicSessionInfo25get_local_nls_date_formatEv:15252 + 2: 246 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache19get_nls_date_formatEv:11562 + 0: 246 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache19get_nls_date_formatEb:6150 + 0: 246 + 4: _ZNK9oceanbase3sql18ObBasicSessionInfo30get_local_nls_timestamp_formatEv:7872 + 2: 246 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_nls_timestamp_formatEv:5166 + 0: 246 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_nls_timestamp_formatEb:4428 + 0: 246 + 5: _ZNK9oceanbase3sql18ObBasicSessionInfo33get_local_nls_timestamp_tz_formatEv:7872 + 2: 246 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache27get_nls_timestamp_tz_formatEv:2706 + 0: 246 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache27get_nls_timestamp_tz_formatEb:1722 + 0: 246 + 6: _ZNK9oceanbase3sql18ObBasicSessionInfo17get_nls_collationEv:6642 + 2: 246 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache17get_nls_collationEv:5412 + 0: 246 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache17get_nls_collationEb:4428 + 0: 246 + 7: _ZNK9oceanbase3sql18ObBasicSessionInfo24get_nls_collation_nationEv:6642 + 2: 246 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_nls_nation_collationEv:5412 + 0: 246 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_nls_nation_collationEb:4428 + 0: 246 + 8: _ZNK9oceanbase3sql18ObBasicSessionInfo30get_local_collation_connectionEv:6150 + 2: 246 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_collation_connectionEv:4920 + 0: 246 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_collation_connectionEb:4182 + 0: 246 + 23: _ZN9oceanbase3lib14is_oracle_modeEv:17456 + 2: 246 + 2: _ZN9oceanbase3lib15get_compat_modeEv:10578 + 2: 246 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:6150 + 2: 246 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 25: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:1722 + 2: 246 + 25.1: _ZNK9oceanbase3sql17ObPhysicalPlanCtx14is_ignore_stmtEv:1722 + 0: 246 + 28: _ZNK9oceanbase6common9ObObjMeta18get_collation_typeEv:490 + 0: 245 + 28.1: _ZN9oceanbase6common15ObObjCastParamsC2EPNS0_12ObIAllocatorEPKNS0_20ObDataTypeCastParamsEmNS0_15ObCollationTypeEPNS0_10ObAccuracyE:36260 + 3: 245 + 4: 245 + 5: 245 + 7: 245 + 8: 245 + 9: 245 + 10: 245 + 13: 245 + 18: 245 + 12: _ZN9oceanbase6common20ObDataTypeCastParamsC2Ev:980 + 2.1: _ZN9oceanbase6common8ObStringC2Ev:980 + 1: 245 + 16: _ZN9oceanbase6common15ObObjCastParams24set_compatible_cast_modeEv:7350 + 2: 245 + 29: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:2450 + 0: 245 + 31.1: _ZN9oceanbase3sql15ObDatumObjParam25alloc_datum_reserved_buffINS_6common9ObObjMetaEEEiRKT_RNS3_12ObIAllocatorE:17188 + 2: 246 + 4: 246 _ZN9oceanbase6common7ObDatum22get_obj_datum_map_typeENS0_9ObObjTypeE:263 + 5: 262 + 6: 262 _ZN9oceanbase6common7ObDatum17get_reserved_sizeENS0_17ObObjDatumMapTypeE:273 + 7: 260 _ZN9oceanbase6common16ObArenaAllocator5allocEl:261 + 8: 0 + 9.1: 0 + 12: 0 + 3: _ZNK9oceanbase6common9ObObjMeta16is_ext_sql_arrayEv:5412 + 0: 246 + 33.1: _ZN9oceanbase6common10ObObjParamC2ERKNS0_5ObObjE:17680 + 0: 260 + 1: 260 + 0: _ZN9oceanbase6common5ObObjC2ERKS1_:6240 + 2: 260 + 0.1: _ZN9oceanbase6common9ObObjMetaC2Ev:3640 + 1: 260 + 0.2: _ZN9oceanbase6common10ObAccuracyC2Ev:1040 + 0: _ZN9oceanbase6common10ObAccuracy5resetEv:1040 + 0: 260 + 0.3: _ZN9oceanbase6common9ParamFlagC2Ev:2080 + 7: 260 + 8: 260 +_ZN9oceanbase11transaction9tablelock9ObOBJLock4lockERKNS1_11ObLockParamERNS_7storage10ObStoreCtxERKNS1_13ObTableLockOpERKhRNS_6common8ObMallocERNSE_4hash19ObIteratableHashSetINS0_9ObTransIDELm16EEE:275421:782 + 7: 718 + 8: 718 + 9: 718 + 11: 718 + 15: 718 + 16: 0 + 17.1: 0 + 19: 718 + 21: 718 + 23: 755 + 24: 755 _ZN9oceanbase6common12TCRLockGuardC2ERKNS0_8TCRWLockE:797 + 25: 770 _ZN9oceanbase11transaction9tablelock9ObOBJLock5lock_ERKNS1_11ObLockParamERKNS1_13ObTableLockOpERKhRbRNS_6common8ObMallocERNSC_4hash19ObIteratableHashSetINS0_9ObTransIDELm16EEE:783 + 25.1: 744 + 33.1: 0 + 38: 0 + 38.1: 0 + 46.1: 0 + 52: 833 + 54: 0 + 55: 0 + 56.1: 0 + 57: 0 + 58.1: 0 + 59.1: 0 + 62: 0 + 63: 0 + 64.1: 0 + 67: 0 + 70: 0 + 71: 0 + 73: 0 + 75.1: 0 + 81: 0 + 84: 843 + 84.1: 0 + 84.2: 0 + 84.4: 0 + 84.5: 0 + 85.1: 0 + 86: 0 + 88.1: 843 + 89: 822 + 90: 0 + 91.1: 0 + 97: 822 + 15: _ZNK9oceanbase11transaction9tablelock13ObTableLockOp8is_validEv:51696 + 2: 718 + 3: 718 + 4: 718 + 5: 718 + 6: 718 + 2: _ZNK9oceanbase11transaction9tablelock8ObLockID8is_validEv:12206 + 2: 718 + 2: _ZN9oceanbase6common11is_valid_idEm:3590 + 2: 718 + 3: _ZN9oceanbase11transaction9tablelockL22is_lock_obj_type_validERKNS1_13ObLockOBJTypeE:4308 + 2: 718 + 3: _ZN9oceanbase11transaction9tablelockL18is_lock_mode_validEh:2872 + 2: 718 + 4: _ZNK9oceanbase11transaction9ObTransID8is_validEv:3590 + 0: 718 + 23: _ZNK9oceanbase11transaction9tablelock13ObTableLockOp19need_record_lock_opEv:26884 + 2: 0 + 2: _ZN9oceanbase11transaction9tablelockL20is_out_trans_op_typeENS1_17ObTableLockOpTypeE:5744 + 2: 718 + 3: _ZNK9oceanbase11transaction9tablelock13ObTableLockOp25is_need_record_lock_mode_Ev:6795 + 2: 755 + 65521: 0 + 4: _ZN9oceanbase11transaction9tablelockL30is_in_trans_lock_table_op_typeENS1_17ObTableLockOpTypeE:1510 + 2: 755 + 36: _ZN9oceanbase6common12TCRLockGuardD2Ev:54504 + 2: 744 + 3: 744 + 3.1: 768 + 3.2: 0 + 3: _ZN9oceanbase6common8TCRWLock8rdunlockEl:34968 + 3: 744 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:2976 + 0: 744 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPil:22320 + 2: 744 + 2.1: 744 + 3: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:4464 + 2: 744 + 2.1: 0 + 3: 0 + 36.1: _ZN9oceanbase6common12TCRLockGuardD2Ev:0 + 2: 0 + 3: 0 + 3.1: 0 + 3.2: 0 + 3: _ZN9oceanbase6common8TCRWLock8rdunlockEl:0 + 3: 0 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:0 + 0: 0 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPil:0 + 2: 0 + 2.1: 0 + 3: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:0 + 2: 0 + 2.1: 0 + 3: 0 + 37: _ZN9oceanbase6common12TCWLockGuardC2ERKNS0_8TCRWLockE:0 + 1: 0 + 3: 0 + 4.1: 0 + 49: _ZN9oceanbase6common12TCWLockGuardD2Ev:0 + 2: 0 + 3: 0 + 3.1: 0 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase6common8TCRWLock8wrunlockEv:0 + 3: 0 + 4: 0 + 49.1: _ZN9oceanbase6common12TCWLockGuardD2Ev:0 + 2: 0 + 3: 0 + 3.1: 0 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase6common8TCRWLock8wrunlockEv:0 + 3: 0 + 4: 0 + 56.1: _ZN9oceanbase6common16ObClockGenerator8getClockEv:0 + 4: 0 + 5.1: 0 + 8: 0 + 6: _ZN9oceanbase6common16ObClockGenerator6get_usEv:0 + 2: 0 + 65: _ZNK9oceanbase11transaction9tablelock13ObTableLockOp14is_dml_lock_opEv:0 + 2: _ZN9oceanbase11transaction9tablelockL28is_in_trans_dml_lock_op_typeENS1_17ObTableLockOpTypeE:0 + 2: 0 + 84.1: _ZN9oceanbase6common14ObTscTimestamp12get_instanceEv:0 + 2: 0 + 2.1: 0 + 2.3: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common14ObTscTimestampC2Ev:0 + 1: 0 + 90: _ZN9oceanbase11transaction9tablelock9ObOBJLock34unregister_from_deadlock_detector_ERKNS1_13ObTableLockOpE:0 + 2: 0 + 4: 0 + 6: 0 + 6.1: 0 + 8.1: 0 + 12: 0 + 5: _ZN9oceanbase11transaction9ObTransIDaSERKS1_:0 + 1: 0 +_ZN9oceanbase6common9Ob2DArrayIPNS_3sql14ObHashPartColsELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS4_Ll64ES5_Lb0EEEE9new_blockEl:274717:2173 + 1: 2025 + 5: 2025 + 7: 1916 + 8.1: 0 + 9: 0 + 10.1: 1916 + 11.1: 0 + 15: 1916 + 17: 1916 + 6: _ZN9oceanbase6common9Ob2DArrayIPNS_3sql14ObHashPartColsELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS4_Ll64ES5_Lb0EEEE11alloc_blockEl:103275 + 1: 2025 + 1: _ZN9oceanbase6common19ModulePageAllocator5allocEl:78975 + 2: 2025 + 3: 2025 _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:2067 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:32400 + 5: 2025 + 7: 2025 + 8: 2025 + 10.1: _ZN9oceanbase6common13ObSEArrayImplIPPNS_3sql14ObHashPartColsELl64ENS0_19ModulePageAllocatorELb0EE9push_backERKS5_:49816 + 5: 1916 + 6: 0 + 12: 0 + 15: 0 + 15.1: 1916 + 16: 1916 + 15.1: _ZN9oceanbase6common9ObClassOpIPPNS_3sql14ObHashPartColsELb1EE20construct_and_assignERKS5_RS5_:7664 + 2: 1916 + 12: _ZN9oceanbase6common9Ob2DArrayIPNS_3sql14ObHashPartColsELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS4_Ll64ES5_Lb0EEEE10free_blockES7_:0 + 0: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZZNK9oceanbase3sql8ObOpSpec15create_operatorERNS0_13ObExecContextERPNS0_10ObOperatorEENK5$_115clEPKc.68271ef948b9e29c783f97102b0c767d:272320:4597 + 0: 4306 + 0.1: 0 + 0.2: 4306 + 0.3: 4242 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:4478 + 0.5: 0 + 0.8: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:72114 + 2: 4242 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.7: _ZN9oceanbase6common7ObLogKVIRKPcLb0EEC2EPKcS4_:0 + 0: 0 +_ZN9oceanbase3sql15ObTableDeleteOp18inner_get_next_rowEv:270624:277 + 1: 247 + 2: 247 + 3: 247 + 7.1: 530 + 8: 480 + 9.1: 0 + 10.1: 276 + 12.1: 0 + 14: 276 + 16.1: 259 + 17: 0 + 18.1: 0 + 20.1: 248 + 21.1: 0 + 22.1: 248 + 22.2: 0 + 25: 248 + 30: 277 + 30.1: 252 + 31.1: 0 + 38: 247 + 8: _ZN9oceanbase3sql10ObOperator16try_check_statusEv:16637 + 2: 480 + 3: 0 + 10.1: _ZN9oceanbase3sql15ObTableDeleteOp23get_next_row_from_childEv:27558 + 2: 480 + 4: 543 _ZN9oceanbase3sql10ObOperator12get_next_rowEv:484 + 6.1: 0 + 9.1: 267 _ZZN9oceanbase3sql15ObTableDeleteOp23get_next_row_from_childEvENKUlPKcE0_clES3_:284 + 11: 259 + 3: _ZN9oceanbase3sql10ObOperator20clear_evaluated_flagEv:6240 + 2.1: 480 + 2.3: 0 + 3: 0 + 2.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql10ObEvalInfoEE5countEv:1920 + 0: 480 + 3: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql10ObEvalInfoEE2atEl:0 + 6: 0 + 3.1: _ZN9oceanbase3sql10ObEvalInfo20clear_evaluated_flagEv:0 + 2: 0 + 4: 0 + 16.1: _ZN9oceanbase3sql11get_my_specINS0_15ObTableDeleteOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:1036 + 5: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:1036 + 2: 259 + 20.1: _ZN9oceanbase3sql15ObTableDeleteOp17delete_row_to_dasEv:126732 + 2: 259 + 3.1: 248 + 3.2: 260 + 3.3: 259 + 3.5: 260 + 7.1: 250 + 7.2: 513 + 7.3: 513 + 7.5: 250 + 9: 259 + 11: 259 + 12: 259 + 13: 261 _ZN9oceanbase3sql12ObDMLService18process_delete_rowERKNS0_10ObDelCtDefERNS0_10ObDelRtDefERbRNS0_15ObTableModifyOpE:281 + 14.1: 0 + 15.1: 261 + 19: 261 + 20.1: 0 + 21.1: 261 + 22.1: 0 + 24: 250 + 29: 260 _ZN9oceanbase3sql15ObTableModifyOp20merge_implict_cursorEllll:254 + 30.1: 0 + 36: 248 + 36.1: 0 + 36.2: 0 + 39: 0 + 39.4: 0 + 43.1: 0 + 46: 0 + 50: 248 + 3.2: _ZN9oceanbase3sql11get_my_specINS0_15ObTableDeleteOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:1040 + 5: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:1040 + 2: 260 + 4.1: _ZNK9oceanbase6common12ObIArrayWrapINS0_11ObArrayWrapIPNS_3sql10ObDelCtDefEEEE2atEl:3367 + 6: 259 + 5: _ZN9oceanbase6common12ObIArrayWrapINS0_11ObArrayWrapINS_3sql10ObDelRtDefEEEE2atEl:3626 + 6: 259 + 7.2: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql10ObDelCtDefEE5countEv:5180 + 9: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql10ObDelCtDefEE2atEl:2331 + 6: 259 + 10: _ZN9oceanbase6common12ObIArrayWrapINS_3sql10ObDelRtDefEE2atEl:8029 + 6: 259 + 19: _ZN9oceanbase3sql15ObTableDeleteOp15calc_tablet_locERKNS0_10ObDelCtDefERNS0_10ObDelRtDefERPNS0_14ObDASTabletLocE:13679 + 4: 261 + 5: 261 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 11: 0 + 11.1: 0 + 12.1: 0 + 13.2: 0 + 13.3: 0 + 14.1: 0 + 19: 261 + 21: 0 + 5: _ZN9oceanbase3sql11get_my_specINS0_15ObTableDeleteOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:1044 + 5: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:1044 + 2: 261 + 10: _ZN9oceanbase6common10ObTabletIDC2Em:0 + 0: 0 + 13.1: _ZN9oceanbase3sql13ObExecContext11get_das_ctxEv:0 + 0: 0 + 19: _ZN9oceanbase3sql12get_my_inputINS0_15ObTableDeleteOpEEERNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE5InputERKS5_:1827 + 7: _ZNK9oceanbase3sql15ObTableModifyOp9get_inputEv:1827 + 2: 261 + 19.1: _ZN9oceanbase3sql20ObTableModifyOpInput14get_tablet_locEv:1044 + 0: 261 + 21.1: _ZN9oceanbase3sql12ObDMLService10delete_rowERKNS0_10ObDelCtDefERNS0_10ObDelRtDefEPKNS0_14ObDASTabletLocERNS0_10ObDMLRtCtxE:22447 + 5: 261 + 6: 275 _ZN9oceanbase3sql12ObDMLService25check_dml_tablet_validityERNS0_10ObDMLRtCtxERKNS0_14ObDASTabletLocERKNS_6common12ObFixedArrayIPNS0_6ObExprENS7_12ObIAllocatorEEERKNS0_14ObDMLBaseCtDefERNS0_14ObDMLBaseRtDefE:276 + 11.1: 0 + 12.1: 275 _ZN9oceanbase3sql12ObDMLService19write_row_to_das_opILi4EEEiRKNS0_17ObDASDMLBaseCtDefERNS0_17ObDASDMLBaseRtDefEPKNS0_14ObDASTabletLocERNS0_10ObDMLRtCtxERKNS_6common12ObFixedArrayIPNS0_6ObExprENSD_12ObIAllocatorEEE:276 + 17.1: 0 + 19: 0 + 39: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:0 + 2: 0 + 39.1: _ZN9oceanbase3sql11get_my_specINS0_15ObTableDeleteOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:0 + 5: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:0 + 2: 0 + 39.2: _ZNK9oceanbase6common12ObIArrayWrapINS0_11ObArrayWrapIPNS_3sql10ObDelCtDefEEEE2atEl:0 + 6: 0 + 39.3: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql10ObDelCtDefEE2atEl:0 + 6: 0 + 45: _ZN9oceanbase3sql10ObOperator20clear_evaluated_flagEv:0 + 2.1: 0 + 2.3: 0 + 3: 0 + 2.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql10ObEvalInfoEE5countEv:0 + 0: 0 + 3: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql10ObEvalInfoEE2atEl:0 + 6: 0 + 3.1: _ZN9oceanbase3sql10ObEvalInfo20clear_evaluated_flagEv:0 + 2: 0 + 4: 0 + 23: _ZN9oceanbase3sql13ObErrLogRtDef5resetEv:0 + 2: 0 + 3: 0 + 25: _ZN9oceanbase3sql11get_my_specINS0_15ObTableDeleteOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:992 + 5: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:992 + 2: 248 + 30: _ZN9oceanbase3sql11get_my_specINS0_15ObTableDeleteOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:1108 + 5: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:1108 + 2: 277 + 30.1: _ZN9oceanbase3sql15ObTableDeleteOp18del_rows_post_procEv:39956 + 2: 277 + 3: 277 + 5: 232 + 6.1: 0 + 8.2: 232 + 8.3: 232 + 8.5: 232 + 13: 0 + 13.1: 232 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:242 + 14: 0 + 15.1: 0 + 18: 252 + 3: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:1939 + 2: 277 + 5: _ZN9oceanbase3sql15ObTableModifyOp19submit_all_dml_taskEv:15039 + 2: 277 + 3: 277 + 4: 277 _ZN9oceanbase3sql8ObDASRef16execute_all_taskEv:287 + 5.1: 0 + 6.1: 261 _ZN9oceanbase3sql8ObDASRef14close_all_taskEv:264 + 7.1: 0 + 12: 232 + 3: _ZNK9oceanbase3sql8ObDASRef8has_taskEv:1939 + 0: _ZNK9oceanbase6common10ObObjStoreIPNS_3sql12ObIDASTaskOpERNS0_12ObIAllocatorELb0EE5emptyEv:1939 + 0: 277 + 9: _ZN9oceanbase3sql10ObDMLRtCtx5reuseEv:1044 + 2: 261 _ZN9oceanbase3sql8ObDASRef5reuseEv:271 + 9: _ZN9oceanbase6common12ObIArrayWrapINS0_11ObArrayWrapINS_3sql10ObDelRtDefEEEE2atEl:1624 + 6: 232 + 9.1: _ZN9oceanbase6common12ObIArrayWrapINS_3sql10ObDelRtDefEE2atEl:928 + 6: 232 + 9.2: _ZN9oceanbase3sql17ObPhysicalPlanCtx17add_affected_rowsEl:6496 + 2: 232 + 13.2: _ZNK9oceanbase6common14ObServerConfig22enable_defensive_checkEv:2187 + 3: 243 + 3.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:0 + 2: 0 +_ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScanner4initERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextEPKNS0_9ObSSTableE:270025:989 + 4: 967 + 6: 967 _ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScanner5reuseEv:1012 + 7: 1113 _ZN9oceanbase12blocksstable23ObIMicroBlockRowScanner4initERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextEPKNS0_9ObSSTableE:1149 + 8.1: 5 + 9.1: 1055 + 10: 1055 + 11: 1055 _ZN9oceanbase12blocksstable10ObDatumRow4initERNS_6common12ObIAllocatorEl:1109 + 12.1: 5 + 13.1: 1112 _ZN9oceanbase7storage8ObNopPos4initERNS_6common12ObIAllocatorEl:1039 + 14.1: 5 + 15.1: 1112 _ZN9oceanbase12blocksstable10ObDatumRow4initERNS_6common12ObIAllocatorEl:1169 + 16.1: 5 + 18: 1041 + 19: 1041 + 20: 1041 + 23: 1041 + 24: 1041 + 25: 1041 + 28: 1041 + 10: _ZNK9oceanbase7storage15ObTableReadInfo17get_request_countEv:7385 + 1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:7385 + 0: 1055 + 19: _ZNK9oceanbase7storage15ObTableReadInfo23get_schema_rowkey_countEv:4164 + 1: 1041 + 20: _ZN9oceanbase7storage27ObMultiVersionRowkeyHelpper32get_sql_sequence_col_store_indexElb:5205 + 5: 1041 + 21: _ZNK9oceanbase7storage15ObTableReadInfo23get_schema_rowkey_countEv:3123 + 1: 1041 +_ZN9oceanbase6common7ObDatum17get_reserved_sizeENS0_17ObObjDatumMapTypeE:269876:7474 + 1: 7102 + 19: 7102 + 20.1: 0 + 22: 7102 + 25: 7102 +_ZN9oceanbase11transaction9tablelock12ObLockMemCtx18remove_lock_recordEPNS1_22ObMemCtxLockOpLinkNodeE:269404:860 + 2: 775 + 3: 775 + 4.1: 0 + 7: 775 + 8: 0 + 10: 671 + 11: 671 + 12: 662 + 14.1: 662 + 7: _ZN9oceanbase6common14SpinWLockGuardC2ERKNS0_10SpinRWLockE:22557 + 1: 775 + 3: 712 + 4.1: 0 + 3: _ZN9oceanbase6common10SpinRWLock6wrlockEl:11625 + 0: 775 _ZN9oceanbase6common7ObLatch6wrlockEjlPKj:775 + 8: _ZN9oceanbase6common7ObDListINS_11transaction9tablelock22ObMemCtxLockOpLinkNodeEE6removeEPS4_:42720 + 3: 712 + 7: 712 + 6: _ZN9oceanbase6common11ObDLinkBaseINS_11transaction9tablelock22ObMemCtxLockOpLinkNodeEE6unlinkEv:25632 + 2: 712 + 4: 712 + 5: 712 + 6: 712 + 7: 712 + 9: _ZN9oceanbase6common14SpinWLockGuardD2Ev:16637 + 2: 712 + 3: 712 + 3.1: 671 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase6common10SpinRWLock6unlockEv:2136 + 0: 712 _ZN9oceanbase6common7ObLatch6unlockEPKj:718 + 10: _ZN9oceanbase11transaction9tablelock22ObMemCtxLockOpLinkNodeD2Ev:14762 + 0: 671 + 0: _ZN9oceanbase11transaction9tablelock13ObTableLockOpD2Ev:5368 + 0: _ZN9oceanbase11transaction9ObTransIDD2Ev:5368 + 0: 671 + 11: _ZN9oceanbase11transaction9tablelock12ObLockMemCtx12free_lock_opEPv:99048 + 2: _ZN9oceanbase6common14SpinWLockGuardC2ERKNS0_10SpinRWLockE:21417 + 1: 671 + 3: 666 + 4.1: 0 + 3: _ZN9oceanbase6common10SpinRWLock6wrlockEl:11407 + 0: 671 _ZN9oceanbase6common7ObLatch6wrlockEjlPKj:678 + 3: _ZN9oceanbase11transaction9tablelock12ObLockMemCtx13free_lock_op_EPv:58208 + 2: _ZN9oceanbase11transaction9tablelock14ObArenaObjPoolINS1_22ObMemCtxLockOpLinkNodeELl1EE4freeEPv:58208 + 3: 666 + 4.1: 0 + 7.1: 666 + 8.1: 666 + 8.2: 1118 + 8.3: 1118 + 9: 666 + 15: 445 _ZN9oceanbase8memtable24ObMemtableCtxCbAllocator4freeEPv:463 + 4: _ZN9oceanbase6common14SpinWLockGuardD2Ev:16759 + 2: 729 + 3: 729 + 3.1: 662 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase6common10SpinRWLock6unlockEv:2187 + 0: 729 _ZN9oceanbase6common7ObLatch6unlockEPKj:764 + 4.1: _ZN9oceanbase6common14SpinWLockGuardD2Ev:0 + 2: 0 + 3: 0 + 3.1: 0 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase6common10SpinRWLock6unlockEv:0 + 0: 0 +_ZNK9oceanbase7storage15ObStorageSchema8is_validEv:268974:1119 + 1: 1079 + 3: 1079 + 4: 1079 + 4.1: 1079 + 5: 1079 + 5.1: 1079 + 6: 1079 + 6.1: 1079 + 7: 1079 + 7.1: 1079 + 8: 1079 + 8.1: 1079 + 9: 1079 + 9.1: 1079 _ZNK9oceanbase5share6schema11ObTableMode8is_validEv:1111 + 10: 1094 + 10.1: 1094 + 11: 1094 + 11.1: 1094 _ZNK9oceanbase7storage15ObStorageSchema24check_column_array_validINS0_27ObStorageRowkeyColumnSchemaEEEbRKNS_6common8ObIArrayIT_EE:1135 + 12: 1081 + 14.1: 8 + 16.1: 1033 + 18.1: 8 + 22: 1162 + 12.1: _ZNK9oceanbase7storage15ObStorageSchema24check_column_array_validINS0_21ObStorageColumnSchemaEEEbRKNS_6common8ObIArrayIT_EE:121218 + 3.2: 4218 + 3.3: 4218 + 3.5: 4218 + 4: 4218 + 6.1: 8 + 3.2: _ZNK9oceanbase6common12ObIArrayWrapINS_7storage21ObStorageColumnSchemaEE5countEv:7567 + 4: _ZNK9oceanbase6common12ObIArrayWrapINS_7storage21ObStorageColumnSchemaEE2atEl:7567 + 4.1: _ZNK9oceanbase7storage21ObStorageColumnSchema8is_validEv:12654 + 2.1: _ZN9oceanbase6common20ob_is_valid_obj_typeENS0_9ObObjTypeE:12654 + 0: 4218 +_ZN9oceanbase3sql13ObDatumCaster4initERNS0_13ObExecContextE:268637:265 + 1: 258 + 2: 258 + 3: 258 + 11: 265 _ZN9oceanbase3sql13ObExecContext13get_allocatorEv:259 + 12: 265 _ZN9oceanbase6common7ObDatum17get_reserved_sizeENS0_17ObObjDatumMapTypeE:271 + 17.1: 257 + 17.2: 1 + 17.3: 1 + 19: 257 + 20.1: 257 _ZN9oceanbase6common16ObArenaAllocator5allocEl:268 + 20.2: 1 + 20.3: 1 + 21: 1 + 21.1: 248 _ZN9oceanbase6common16ObArenaAllocator5allocEl:252 + 21.2: 1 + 21.3: 1 + 22: 242 + 22.1: 250 _ZN9oceanbase6common16ObArenaAllocator5allocEl:246 + 22.2: 1 + 22.3: 1 + 23: 250 + 23.1: 257 _ZN9oceanbase6common16ObArenaAllocator5allocEl:265 + 23.2: 1 + 23.3: 1 + 24: 257 + 24.1: 257 _ZN9oceanbase6common16ObArenaAllocator5allocEl:271 + 24.2: 1 + 24.3: 1 + 25: 254 + 25.1: 254 _ZN9oceanbase6common16ObArenaAllocator5allocEl:257 + 25.2: 1 + 25.3: 1 + 26: 245 + 26.1: 245 _ZN9oceanbase6common16ObArenaAllocator5allocEl:256 + 26.2: 1 + 26.3: 1 + 27: 244 + 27.1: 244 + 29: 245 + 33: 245 + 34: 251 + 35: 251 + 36: 251 + 37: 251 + 38: 251 + 39: 251 + 42: 251 _ZN9oceanbase3sql6ObExprC1Ev:259 + 43: 251 + 44: 251 _ZN9oceanbase3sql6ObExprC1Ev:250 + 45: 232 + 46: 232 + 50.1: 464 + 50.3: 464 + 51: 464 + 52: 464 + 53: 464 + 54: 464 + 55: 464 + 56: 464 + 57: 464 + 59: 464 + 60: 464 + 61: 464 + 62: 464 + 63: 464 + 66: 464 + 68: 464 + 69: 464 + 70: 464 + 73: 232 + 73.1: 232 + 75: 232 + 27.1: _ZNK9oceanbase3sql13ObExecContext10get_framesEv:1952 + 0: 244 + 27.2: _ZNK9oceanbase3sql13ObExecContext13get_frame_cntEv:1952 + 0: 244 + 34: _ZN9oceanbase3sql9ObEvalCtxC2ERNS0_13ObExecContextE:16817 + 2: 251 + 3: 251 + 4: 251 + 5: 251 + 6: 251 + 8: 251 + 9: 251 + 4: _ZN9oceanbase3sql13ObExecContext22get_eval_tmp_allocatorEv:2008 + 0: 251 + 8: _ZN9oceanbase3sql13ObExecContext22get_eval_res_allocatorEv:2008 + 0: 251 + 36: _ZNK9oceanbase3sql13ObExecContext13get_frame_cntEv:1757 + 0: 251 + 38: _ZN9oceanbase3sql9ObEvalCtx14set_batch_sizeEl:2008 + 2: 251 + 39: _ZN9oceanbase3sql9ObEvalCtx13set_batch_idxEl:2008 + 5: 251 + 56: _ZNK9oceanbase3sql13ObExecContext13get_frame_cntEv:6496 + 0: 464 +_ZN9oceanbase3sql15ObExecuteResult5closeERNS0_13ObExecContextE:268012:4821 + 1: 4381 + 5: 4697 + 4: _ZNK9oceanbase3sql15ObExecuteResult5closeEv:208183 + 2: 4381 + 3: 4381 + 4: 4697 _ZN9oceanbase3sql10ObOperator5closeEv:4521 + 5.1: 4 + 8: 4 + 65480: 4381 +_ZN9oceanbase8observer8ObMPBase33update_transmission_checksum_flagERKNS_3sql16ObSQLSessionInfoE:267801:5551 + 1: 5251 + 2: 5251 + 2: _ZN9oceanbase8observer16ObMPPacketSender33update_transmission_checksum_flagERKNS_3sql16ObSQLSessionInfoE:210040 + 2: 5251 + 3: 5251 + 4: 0 + 5.1: 0 + 6.1: 5251 + 7: 0 + 8: 0 + 10.1: 0 + 11: 0 + 13.1: 0 + 16: 0 + 17: 0 + 20: 5251 + 64673: 5251 + 6.1: _ZNK9oceanbase7obmysql22ObProxyCapabilityFlags27is_checksum_swittch_supportEv:21004 + 0: 5251 +_ZN9oceanbase11transaction14ObTransService19sql_stmt_start_hookERKNS0_11ObXATransIDERNS0_8ObTxDescE:267217:4748 + 1: 4611 + 2: 4611 + 3: 4805 + 4: 2 + 4.1: 2 + 5.1: 2 + 7.1: 2 + 9: 4805 + 3: _ZNK9oceanbase11transaction8ObTxDesc11is_xa_transEv:56108 + 0: 4805 _ZNK9oceanbase11transaction11ObXATransID5emptyEv:4696 + 4: _ZN9oceanbase5share11ObTenantEnv3mtlIPNS_11transaction11ObXAServiceEEET_v:182 + 2: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:152 + 2: 2 + 2.1: 2 + 2.2: 2 + 2.1: _ZN9oceanbase5share12ObTenantBase3getIPNS_11transaction11ObXAServiceEEET_v:30 + 0: _ZN9oceanbase5share12ObTenantBase9inner_getENS1_8IdentityIPNS_11transaction11ObXAServiceEEE:30 + 0: 2 +_ZZN9oceanbase7storage13ObSingleMerge18inner_get_next_rowERNS_12blocksstable10ObDatumRowEENK5$_451clEPKc.60e5f1555e1608e51e89c573dc1497ed:266833:3473 + 0: 3409 + 0.1: 0 + 0.2: 3409 + 0.3: 3367 _ZN9oceanbase6common8ObLogger13need_to_printEmi:3502 + 0.13: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:57239 + 2: 3367 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKNS_12blocksstable10ObDatumRowELb0EEC2EPKcS5_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS_12blocksstable10ObDatumRowELb0EEC2EPKcS5_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKbLb0EEC2EPKcS3_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVIRKNS0_8ObIArrayIiEELb0EEC2EPKcS5_:0 + 0: 0 + 0.12: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase3sql10ObExprTrim9eval_trimERKNS0_6ObExprERNS0_9ObEvalCtxERNS_6common7ObDatumE:265983:253 + 1: 244 + 2: 244 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 4: 236 + 5.1: 0 + 7: 0 + 7.1: 236 + 8: 236 + 14: 0 + 15.1: 236 + 18: 236 + 20: 236 + 21: 0 + 27: 0 + 28.1: 0 + 31.1: 0 + 34: 0 + 35.1: 0 + 38: 236 + 45: 236 + 45.1: 0 + 46: 0 + 47: 0 + 49: 0 + 49.1: 0 + 50: 0 + 50.1: 0 + 52: 236 + 54: 236 + 54.1: 0 + 55: 0 + 55.1: 0 + 56: 236 + 57: 236 + 58: 236 + 58.1: 0 + 59: 0 + 60: 0 + 61.1: 0 + 61.11: 0 + 61.14: 0 + 64: 0 + 65: 0 + 69.1: 0 + 70: 0 + 71.1: 0 + 80: 236 + 80.1: 0 + 83: 0 + 84.1: 0 + 85.2: 0 + 88: 0 + 88.1: 0 + 90.1: 0 + 91.1: 0 + 91.3: 0 + 91.4: 0 + 92: 0 + 93.1: 0 + 96: 0 + 97.1: 0 + 97.2: 0 + 99.1: 0 + 101.3: 0 + 107: 0 + 107.1: 0 + 107.2: 0 + 107.6: 0 + 108: 236 + 109.1: 239 _ZN9oceanbase3sql10ObExprTrim4trimERNS_6common8ObStringElRKS3_S6_:250 + 110.1: 0 + 112: 239 + 112.1: 0 + 120: 239 + 4: _ZNK9oceanbase3sql6ObExpr16eval_param_valueIJEEEiRNS0_9ObEvalCtxEDpRT_:103299 + 2: 244 + 4: 244 + 5.1: 757 + 5.2: 993 + 5.3: 993 + 5.5: 757 + 8: 742 + 8.3: 757 + 10.1: 0 + 8.3: _ZNK9oceanbase3sql6ObExpr4evalERNS0_9ObEvalCtxERPNS_6common7ObDatumE:61211 + 4: 742 + 6: 742 + 7: 742 + 9: 742 + 10: 0 + 10.1: 0 + 11: 0 + 13: 0 + 15.1: 742 + 15.2: 498 + 17: 498 + 18: 498 + 20: 498 _ZN9oceanbase3sql13cast_eval_argERKNS0_6ObExprERNS0_9ObEvalCtxERNS_6common7ObDatumE:505 + 21: 509 + 22: 509 + 24: 0 + 9: _ZNK9oceanbase3sql6ObExpr15is_batch_resultEv:2968 + 0: 742 + 11: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 24: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:0 + 0: 0 + 8: _ZNK9oceanbase3sql6ObExpr18locate_param_datumERNS0_9ObEvalCtxEi:19588 + 2: 236 + 2: _ZNK9oceanbase3sql6ObExpr17locate_expr_datumERNS0_9ObEvalCtxE:16048 + 3: 236 + 3: _ZNK9oceanbase3sql6ObExpr13get_datum_idxERNS0_9ObEvalCtxE:3068 + 2: 236 + 2: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:944 + 8.1: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:6136 + 0: 236 + 16: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:0 + 0: 0 + 34: _ZNK9oceanbase3sql6ObExpr18locate_param_datumERNS0_9ObEvalCtxEi:0 + 2: 0 + 2: _ZNK9oceanbase3sql6ObExpr17locate_expr_datumERNS0_9ObEvalCtxE:0 + 3: 0 + 3: _ZNK9oceanbase3sql6ObExpr13get_datum_idxERNS0_9ObEvalCtxE:0 + 2: 0 + 2: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 34.1: _ZNK9oceanbase6common7ObDatum7get_intEv:0 + 0: 0 + 38: _ZNK9oceanbase3sql6ObExpr18locate_param_datumERNS0_9ObEvalCtxEi:7552 + 2: 236 + 2: _ZNK9oceanbase3sql6ObExpr17locate_expr_datumERNS0_9ObEvalCtxE:5900 + 3: 236 + 3: _ZNK9oceanbase3sql6ObExpr13get_datum_idxERNS0_9ObEvalCtxE:2596 + 2: 236 + 2: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:944 + 0: 236 + 38.1: _ZNK9oceanbase6common7ObDatum7get_intEv:2596 + 0: 236 + 41: _ZN9oceanbase6common8ObStringC2Ev:1652 + 1: 236 + 43: _ZN9oceanbase6common8ObStringC2Ev:944 + 1: 236 + 46: _ZNK9oceanbase3sql6ObExpr18locate_param_datumERNS0_9ObEvalCtxEi:0 + 2: 0 + 2: _ZNK9oceanbase3sql6ObExpr17locate_expr_datumERNS0_9ObEvalCtxE:0 + 3: 0 + 3: _ZNK9oceanbase3sql6ObExpr13get_datum_idxERNS0_9ObEvalCtxE:0 + 2: 0 + 2: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 46.1: _ZNK9oceanbase6common7ObDatum10get_stringEv:0 + 0: 0 + 0: _ZN9oceanbase6common8ObStringC2ElPKc:0 + 5: 0 + 47: _ZNK9oceanbase3sql6ObExpr18locate_param_datumERNS0_9ObEvalCtxEi:0 + 2: 0 + 2: _ZNK9oceanbase3sql6ObExpr17locate_expr_datumERNS0_9ObEvalCtxE:0 + 3: 0 + 3: _ZNK9oceanbase3sql6ObExpr13get_datum_idxERNS0_9ObEvalCtxE:0 + 2: 0 + 47.1: _ZNK9oceanbase6common7ObDatum10get_stringEv:0 + 0: 0 + 0: _ZN9oceanbase6common8ObStringC2ElPKc:0 + 5: 0 + 48: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 49.1: _ZN9oceanbase6common13ob_is_text_tcENS0_9ObObjTypeE:0 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:0 + 2: 0 + 52: _ZNK9oceanbase3sql6ObExpr18locate_param_datumERNS0_9ObEvalCtxEi:10148 + 2: 236 + 2: _ZNK9oceanbase3sql6ObExpr17locate_expr_datumERNS0_9ObEvalCtxE:7552 + 3: 236 + 3: _ZNK9oceanbase3sql6ObExpr13get_datum_idxERNS0_9ObEvalCtxE:1652 + 2: 236 + 2: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:944 + 0: 236 + 52.1: _ZNK9oceanbase6common7ObDatum10get_stringEv:6608 + 0: 236 + 0: _ZN9oceanbase6common8ObStringC2ElPKc:708 + 5: 236 + 53: _ZN9oceanbase3lib14is_oracle_modeEv:10856 + 2: 236 + 2: _ZN9oceanbase3lib15get_compat_modeEv:10148 + 2: 236 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:5900 + 2: 236 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 54.1: _ZN9oceanbase6common13ob_is_text_tcENS0_9ObObjTypeE:0 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:0 + 2: 0 + 57: _ZNK9oceanbase3sql6ObExpr18locate_param_datumERNS0_9ObEvalCtxEi:4956 + 2: 236 + 2: _ZNK9oceanbase3sql6ObExpr17locate_expr_datumERNS0_9ObEvalCtxE:4012 + 3: 236 + 3: _ZNK9oceanbase3sql6ObExpr13get_datum_idxERNS0_9ObEvalCtxE:1652 + 2: 236 + 57.1: _ZNK9oceanbase6common7ObDatum10get_stringEv:6608 + 0: 236 + 0: _ZN9oceanbase6common8ObStringC2ElPKc:708 + 5: 236 + 58: _ZN9oceanbase3lib14is_oracle_modeEv:708 + 2: 236 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 61.1: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 61.12: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 61.15: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 73: _ZN9oceanbase6common8ObString10assign_ptrEPKci:0 + 2: 0 + 3: 0 + 78: _ZN9oceanbase6common8ObStringC2Ev:2360 + 1: 236 + 81: _ZN9oceanbase3sql9ObEvalCtx14TempAllocGuardC2ERS1_:0 + 0: 0 + 3: 0 + 2: _ZN9oceanbase3sql9ObEvalCtx19get_reset_tmp_allocEv:0 + 7: 0 + 7.1: 0 + 11: 0 + 8: _ZN9oceanbase6common16ObArenaAllocator21reset_remain_one_pageEv:0 + 0: 0 + 85: _ZN9oceanbase6common8ObString3ptrEv:0 + 0: 0 + 85.1: _ZNK9oceanbase6common8ObString6lengthEv:0 + 0: 0 + 86: _ZN9oceanbase6common12ObFixedArrayImNS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplImS2_EEERS2_l:0 + 0: 0 + 0: _ZN9oceanbase6common16ObFixedArrayImplImNS0_12ObIAllocatorEEC2ERS2_l:0 + 2: 0 + 3: 0 + 4: 0 + 6: 0 + 1: _ZN9oceanbase6common8ObIArrayImEC2Ev:0 + 0: _ZN9oceanbase6common12ObIArrayWrapImEC2Ev:0 + 0: 0 + 87: _ZN9oceanbase6common12ObFixedArrayImNS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplImS2_EEERS2_l:0 + 0: 0 + 0: _ZN9oceanbase6common16ObFixedArrayImplImNS0_12ObIAllocatorEEC2ERS2_l:0 + 2: 0 + 3: 0 + 4: 0 + 6: 0 + 1: _ZN9oceanbase6common8ObIArrayImEC2Ev:0 + 0: _ZN9oceanbase6common12ObIArrayWrapImEC2Ev:0 + 0: 0 + 91.2: _ZNK9oceanbase6common12ObIArrayWrapImE5countEv:0 + 0: 0 + 101: _ZNK9oceanbase6common8ObString5emptyEv:0 + 2: 0 + 101.2: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 102: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:0 + 0: 0 + 104: _ZN9oceanbase6common7ObDatum10set_stringERKNS0_8ObStringE:0 + 0: 0 + 107.5: _ZN9oceanbase3sql9ObEvalCtx14TempAllocGuardD2Ev:0 + 0: 0 + 107.7: _ZN9oceanbase3sql9ObEvalCtx14TempAllocGuardD2Ev:0 + 0: 0 + 112: _ZNK9oceanbase6common8ObString5emptyEv:3824 + 2: 239 + 112.1: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 113: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:0 + 0: 0 + 115: _ZN9oceanbase6common7ObDatum10set_stringERKNS0_8ObStringE:1434 + 0: 239 +_ZThn320_N9oceanbase12blocksstable18ObMicroBlockReader14get_row_headerElRPKNS0_11ObRowHeaderE:264914:20503 +_ZN9oceanbase6common2SVINS_8observer16ObMySQLResultSetELb0EEC2IZNS2_9ObMPQuery10do_processERNS_3sql16ObSQLSessionInfoEbbRbSA_EUlPvE_EEibOT_:264576:5238 + 1: 5113 + 2: 5113 + 3: 5113 + 5: 0 + 6: 0 + 7: 0 + 9: 0 + 15: 5013 + 1: _ZN9oceanbase6common6SVBaseC2Eib:81808 + 1: 5113 + 2: 5113 + 16: 5113 + 9: _ZZN9oceanbase8observer9ObMPQuery10do_processERNS_3sql16ObSQLSessionInfoEbbRbS5_ENKUlPvE_clES6_:0 + 0: 0 + 0: _ZN9oceanbase3lib4Flow11current_ctxEv:0 + 2: _ZN9oceanbase3lib4Flow12current_flowEv:0 + 3: 0 + 8: 0 + 12: 0 + 8.1: _ZN9oceanbase3lib4FlowC2ERNS0_13MemoryContextE:0 + 1: 0 + 3: 0 + 10: _ZN9oceanbase3lib4Flow4initEv:0 + 4: 0 + 7: 0 + 8: 0 + 9: 0 + 12: 0 + 7: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 0.3: _ZN9oceanbase8observer16ObMySQLResultSetC2ERNS_3sql16ObSQLSessionInfoERNS_6common12ObIAllocatorE:0 + 1: 0 + 1.1: 0 + 2.1: 0 + 3: 0 + 0: _ZN9oceanbase6common11ObDLinkBaseINS_8observer16ObMySQLResultSetEEC2Ev:0 + 1: 0 +_ZN9oceanbase11transaction14ObTransService17sql_stmt_end_hookERKNS0_11ObXATransIDERNS0_8ObTxDescE:262818:4811 + 1: 4602 + 2: 4602 + 3: 4626 + 5: 0 + 5.1: 0 + 6.1: 0 + 8.1: 0 + 10: 4626 + 3: _ZNK9oceanbase11transaction8ObTxDesc11is_xa_transEv:55320 + 0: 4626 _ZNK9oceanbase11transaction11ObXATransID5emptyEv:4881 + 5: _ZN9oceanbase5share11ObTenantEnv3mtlIPNS_11transaction11ObXAServiceEEET_v:0 + 2: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.1: _ZN9oceanbase5share12ObTenantBase3getIPNS_11transaction11ObXAServiceEEET_v:0 + 0: _ZN9oceanbase5share12ObTenantBase9inner_getENS1_8IdentityIPNS_11transaction11ObXAServiceEEE:0 + 0: 0 +_ZNK9oceanbase3sql9ObPlanSet22match_param_bool_valueERKNS0_11ObParamInfoERKNS_6common10ObObjParamERb:261913:7245 + 3: 6869 + 4: 6869 + 5: 6869 + 8: 6869 + 9: 11 + 10: 11 + 11.1: 11 + 12.1: 11 + 13: 11 + 17: 6869 + 10: _ZN9oceanbase6common14ObObjEvaluator7is_trueERKNS0_5ObObjERb:176 + 2: 11 +_ZN9oceanbase3sql15ObTableModifyOpC2ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE:261808:527 + 3: 490 _ZN9oceanbase3sql10ObOperatorC2ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE:511 + 5: 547 + 11: 547 + 12: 547 + 13: 522 + 16: 547 + 17: 522 + 17.1: 522 + 17.7: 522 + 18: 522 + 22.3: 522 + 23: 522 + 23.7: 0 + 0: _ZN9oceanbase6common16ObObjPrintParamsC2Ev:12034 + 1: 547 + 2: 547 + 0.1: _ZN9oceanbase6common9ObSEArrayIPNS_3sql6ObExprELl4ENS0_19ModulePageAllocatorELb0EEC2Ev:86652 + 0.1: 522 + 0.5: _ZN9oceanbase6common13ObSEArrayImplIPNS_3sql6ObExprELl4ENS0_19ModulePageAllocatorELb0EEC2ElRKS5_:77256 + 2: 522 + 5: 522 + 6: 522 + 8: 522 + 17.1: 522 + 2: _ZN9oceanbase6common8ObIArrayIPNS_3sql6ObExprEEC2EPS4_l:9396 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEEC2EPS4_l:9396 + 0: 522 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:29754 + 0: 522 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:12528 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:12528 + 2: 522 + 8: 522 + 12: _ZN9oceanbase3sql10ObDMLRtCtxC2ERNS0_9ObEvalCtxERNS0_13ObExecContextERNS0_15ObTableModifyOpE:15413 + 1: 547 _ZN9oceanbase3sql8ObDASRefC1ERNS0_9ObEvalCtxERNS0_13ObExecContextE:569 + 3: 522 + 2: _ZN9oceanbase3sql13DasTaskStatusC2Ev:5742 + 0: 522 + 14: _ZN9oceanbase3sql13ObErrLogRtDefC2Ev:14616 + 1: 522 + 2: 522 + 4: 522 + 17: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:3654 + 2: 522 + 17.3: _ZNK9oceanbase3sql18ObBasicSessionInfo23create_obj_print_paramsEv:34452 + 3: 522 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo17get_timezone_infoEv:3654 + 0: _ZNK9oceanbase6common18ObTimeZoneInfoWrap18get_time_zone_infoEv:3654 + 0: 522 + 2.1: _ZNK9oceanbase3sql18ObBasicSessionInfo30get_local_collation_connectionEv:25056 + 2: 522 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_collation_connectionEv:17226 + 0: 522 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_collation_connectionEb:9396 + 0: 522 + 22.1: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:3654 + 2: 522 + 22.2: _ZNK9oceanbase3sql18ObBasicSessionInfo12get_sql_modeEv:17748 + 0: 522 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache12get_sql_modeEv:16704 + 0: 522 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache12get_sql_modeEb:11484 + 0: 522 +_ZN9oceanbase7storage16ObTableStoreStat5reuseEv:261727:4939 + 1: 4631 + 4: 4631 + 5: 4631 + 8: 4519 + 9: 4519 + 2: _ZN9oceanbase5share6ObLSIDC2ERKS1_:32417 + 0: 4631 + 6: _ZN9oceanbase5share6ObLSIDaSERKS1_:13557 + 0: 4519 +_ZN9oceanbase6common13ObPageManager14set_tenant_ctxEmm:261417:5803 + 1: 5441 + 3: 5601 _ZN9oceanbase6common19ObPageManagerCenter12get_instanceEv:5786 + 4: 5601 + 4.1: 5601 + 5: 17 + 6: 17 + 8: 17 + 9: 17 + 10: 17 + 12: 17 + 15: 5601 +_ZN9oceanbase7storage19ObSSTableRowScannerC2Ev:261159:1101 + 2: 1039 + 3: 1039 + 6: 1039 _ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherC2Ev:1069 + 7: 1105 _ZN9oceanbase12blocksstable18ObMacroBlockReaderC1Ev:1134 + 8: 1038 + 9: 1038 + 10: 1039 + 11: 1038 + 12: 1038 + 1: _ZN9oceanbase7storage18ObStoreRowIteratorC2Ev:19741 + 1: 1039 + 2: 1039 + 3: 1039 + 12.2: _ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherD2Ev:136862 + 1: 11 + 1.1: 352 + 1.2: 11 + 1.3: 11 + 1.5: 11 +_ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE19est_partition_countEv:260641:502 + 1: 482 + 4: 482 + 5: 470 + 6: 470 + 7: 470 + 7.3: 470 + 11.1: 2447 + 12: 2443 + 13: 1953 + 15: 2447 + 16: 2447 + 17: 2447 + 19: 469 + 19.3: 469 + 20: 469 + 4: _ZNK9oceanbase3sql20ObSqlMemMgrProcessor13get_mem_boundEv:5882 + 1: 482 + 1.1: 0 + 1.2: 496 + 1.3: 496 + 1.1: _ZNK9oceanbase3sql20ObSqlWorkAreaProfile15get_expect_sizeEv:0 + 0: 0 + 5: _ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE12get_mem_usedEv:15795 + 0: 496 + 0: _ZN9oceanbase3libeqEDnRKNS0_13MemoryContextE:3472 + 1: 496 + 1: _ZNK9oceanbase3lib13MemoryContext11ref_contextEv:1984 + 1: 496 + 0.4: _ZNK9oceanbase3lib17__MemoryContext__4usedEv:11827 + 2: 470 + 2: _ZNK9oceanbase3lib17__MemoryContext__11malloc_usedEv:8537 + 2: 477 _ZNK9oceanbase6common11ObAllocator4usedEv:492 + 5.1: _ZNK9oceanbase3sql20ObSqlMemMgrProcessor13get_data_sizeEv:5170 + 0: 470 + 6: _ZN9oceanbase6common9next_pow2El:17390 + 2: 470 +_ZZN9oceanbase12blocksstable22ObIndexBlockRowScanner12locate_rangeERKNS0_12ObDatumRangeEbbENK5$_773clEPKc.79c84811dffcee7ee47b268264023dc2:260408:3169 + 0: 3137 + 0.1: 0 + 0.2: 3137 + 0.3: 3087 _ZN9oceanbase6common8ObLogger13need_to_printEmi:3230 + 0.19: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:52479 + 2: 3087 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS_12blocksstable12ObDatumRangeELb0EEC2EPKcS5_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.12: _ZN9oceanbase6common7ObLogKVIRKbLb0EEC2EPKcS3_:0 + 0: 0 + 0.14: _ZN9oceanbase6common7ObLogKVIRKbLb0EEC2EPKcS3_:0 + 0: 0 + 0.16: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.17: _ZN9oceanbase6common20ObLogPrintPointerCntIPKNS_12blocksstable22ObIndexBlockDataHeaderEEC2ES5_:0 + 0: 0 + 0.18: _ZN9oceanbase6common7ObLogKVINS0_20ObLogPrintPointerCntIPKNS_12blocksstable22ObIndexBlockDataHeaderEEELb1EEC2EPKcOKS7_:0 + 0: 0 +_ZN9oceanbase11transaction14ObPartTransCtx15on_success_ops_EPNS0_9ObTxLogCbE:259160:250 + 1: 235 + 3: 202 + 4.1: 202 + 9.1: 267 + 10.1: 0 + 13.1: 779 + 13.3: 1008 + 13.4: 1008 + 14.2: 746 + 15: 746 + 19.1: 0 + 19.2: 0 + 20.1: 0 + 21.2: 0 + 21.3: 0 + 22.1: 0 + 25.1: 0 + 25.2: 0 + 26.1: 0 + 28.1: 0 + 31: 0 + 32: 0 + 37: 243 + 37.2: 0 + 40: 254 _ZNK9oceanbase11transaction14ObPartTransCtx9is_sub2pcEv:254 + 40.1: 230 + 41: 0 + 42.1: 0 + 42.2: 0 + 43.1: 0 + 44.1: 0 + 44.2: 0 + 45.1: 0 + 47.1: 0 + 49: 253 _ZN9oceanbase6common11ObTimeGuard5clickEPKc:262 + 52: 0 + 52.1: 0 + 53: 0 + 54: 0 + 55.1: 0 + 60: 0 + 61: 0 + 61.1: 0 + 62.1: 0 + 64: 0 + 70: 251 + 73: 0 + 74: 0 + 74.1: 0 + 75.1: 2 + 78: 2 + 79.1: 0 + 79.2: 0 + 83.1: 2 + 87: 2 + 88.1: 0 + 88.2: 0 + 89.1: 2 + 90.1: 0 + 90.2: 0 + 91.1: 2 + 93: 0 + 96.1: 219 + 96.3: 0 + 96.6: 0 + 97: 0 + 97.1: 0 + 97.2: 0 + 97.3: 0 + 98.1: 0 + 100.1: 224 + 101: 262 _ZN9oceanbase11transaction11ObCtxTxData14set_end_log_tsEl:263 + 101.1: 247 + 102.1: 2 + 103.1: 247 _ZN9oceanbase11transaction11ObCtxTxData9set_stateEi:277 + 103.2: 263 + 104.1: 0 + 106: 261 _ZN9oceanbase6common11ObTimeGuard5clickEPKc:263 + 107: 277 _ZN9oceanbase11transaction11ObCtxTxData20insert_into_tx_tableEv:277 + 107.1: 257 + 108.1: 2 + 111: 247 _ZN9oceanbase11transaction14ObPartTransCtx16on_local_commit_Ev:245 + 111.1: 249 + 112.1: 2 + 119: 0 + 119.1: 0 + 120.1: 2 + 121.1: 0 + 121.2: 0 + 122.1: 0 + 123.1: 0 + 123.2: 0 + 124.1: 2 + 125.1: 0 + 125.2: 0 + 126.1: 0 + 130: 0 + 131.1: 0 + 131.2: 0 + 132.1: 2 + 133.1: 0 + 133.2: 0 + 134.1: 2 + 136: 0 + 139.1: 0 + 139.3: 0 + 139.6: 2 + 140: 0 + 140.1: 2 + 140.2: 2 + 140.3: 2 + 141.1: 2 + 143.1: 0 + 143.3: 0 + 144: 0 + 144.1: 0 + 145.1: 2 + 146.1: 0 + 146.2: 0 + 147.1: 2 + 148.1: 0 + 148.2: 0 + 149.1: 2 + 150.2: 2 + 151.1: 2 + 153: 0 + 157: 0 + 157.1: 0 + 158.1: 2 + 159.1: 0 + 159.2: 0 + 160.1: 0 + 161.1: 2 + 161.2: 2 + 162.1: 2 + 163.1: 2 + 163.2: 2 + 164.1: 2 + 165.1: 2 + 165.2: 2 + 166.1: 2 + 168: 0 + 170: 0 + 171.1: 0 + 171.2: 0 + 172.1: 2 + 173.1: 0 + 173.2: 0 + 174.1: 2 + 176: 0 + 180: 0 + 180.1: 0 + 181.1: 2 + 182.1: 0 + 182.2: 0 + 183.1: 0 + 186: 0 + 187.1: 0 + 190.1: 763 + 190.4: 5 + 190.5: 0 + 190.6: 0 + 190.10: 0 + 190.11: 0 + 190.12: 0 + 190.15: 0 + 190.16: 0 + 190.17: 0 + 190.18: 0 + 190.20: 0 + 190.21: 0 + 190.22: 0 + 196.1: 242 + 197: 1 + 197.1: 1 + 197.2: 1 + 197.3: 1 + 197.5: 1 + 198.1: 1 + 200: 246 + 201.65: 257 _ZN9oceanbase6common13ObSEArrayImplINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EED2Ev:250 + 201.66: 2 + 201.73: 241 _ZN9oceanbase6common11ObTimeGuardD2Ev:245 + 2: _ZN9oceanbase6common11ObTimeGuardC2EPKcl:11611 + 2: 237 + 3: 237 + 4: 237 + 6: 237 + 7: 237 + 8: 237 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:235 + 2: 235 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:235 + 4: _ZNK9oceanbase11transaction13ObTxBaseLogCb10get_log_tsEv:808 + 0: 202 + 5: _ZNK9oceanbase11transaction13ObTxBaseLogCb7get_lsnEv:3030 + 0: 202 _ZN9oceanbase4palf3LSNC1ERKS1_:202 + 7: _ZN9oceanbase6common9ObSEArrayINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EEC2Ev:22800 + 0.1: 190 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EEC2ElRKS4_:19190 + 2: 190 + 5: 190 + 6: 190 + 8: 190 + 17.1: 190 + 2: _ZN9oceanbase6common8ObIArrayINS_11transaction14ObTxBufferNodeEEC2EPS3_l:1520 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_11transaction14ObTxBufferNodeEEC2EPS3_l:1520 + 0: 190 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:7790 + 0: 190 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:3420 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:3420 + 2: 190 + 8: 190 + 9: _ZN9oceanbase11transaction14ObPartTransCtx18common_on_success_EPNS0_9ObTxLogCbE:42444 + 2: 190 + 8: 236 + 9: 236 + 10: 236 + 12: 236 + 13: 237 + 15: 235 _ZNK9oceanbase4palf3LSN8is_validEv:239 + 15.1: 235 + 15.2: 0 + 15.3: 0 + 16: 266 _ZN9oceanbase4palf3LSNaSERKS1_:269 + 18: 267 _ZNK9oceanbase11transaction11ObCtxTxData16get_start_log_tsEv:296 + 18.1: 274 + 19: 274 _ZN9oceanbase11transaction11ObCtxTxData16set_start_log_tsEl:283 + 19.1: 255 + 20.1: 0 + 23: 251 + 24: 251 + 24.1: 251 _ZN9oceanbase8memtable13ObMemtableCtx13sync_log_succElRKNS0_15ObCallbackScopeE:252 + 24.2: 238 + 25.1: 0 + 26.1: 238 _ZN9oceanbase8memtable13ObMemtableCtx32remove_callbacks_for_fast_commitEv:247 + 26.2: 277 + 27.1: 0 + 30: 267 + 5: _ZNK9oceanbase11transaction13ObTxBaseLogCb10get_log_tsEv:2090 + 0: 190 + 6: _ZNK9oceanbase11transaction13ObTxBaseLogCb7get_lsnEv:760 + 0: 190 _ZN9oceanbase4palf3LSNC1ERKS1_:224 + 24: _ZN9oceanbase11transaction9ObTxLogCb13get_callbacksEv:1004 + 0: 251 + 12: _ZN9oceanbase6common11ObTimeGuard5clickEPKc:17662 + 3: 245 + 4: 245 + 5: 245 + 6: 245 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:267 + 2: 267 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:267 + 14: _ZNK9oceanbase6common12ObIArrayWrapINS_11transaction9ObTxCbArgEE2atEl:5222 + 6: 746 + 14.1: _ZNK9oceanbase11transaction9ObTxCbArg12get_log_typeEv:2984 + 0: 746 + 18: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EE5resetEv:0 + 0: 0 + 19: _ZN9oceanbase11transaction9ObTxLogCb13get_mds_rangeEv:0 + 0: 0 + 21.1: _ZN9oceanbase11transaction9ObTxLogCb13get_mds_rangeEv:0 + 0: 0 + 23.1: _ZN9oceanbase11transaction12ObTxMDSCache24clear_submitted_iteratorEv:0 + 0.1: _ZN9oceanbase6common4list8IteratorINS0_6ObListINS_11transaction14ObTxBufferNodeENS4_24TransModulePageAllocatorEEEEaSERKS8_:0 + 2: 0 + 28: _ZN9oceanbase11transaction9ObTxLogCb13get_mds_rangeEv:0 + 0: 0 + 36: _ZN9oceanbase11transaction14ObPartTransCtx14set_2pc_state_ENS0_9ObTxStateE:1944 + 1: 243 + 51: _ZN9oceanbase6common11ObTimeGuard5clickEPKc:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 52: _ZN9oceanbase11transaction9ObTxLogCb11get_tx_dataEv:0 + 0: 0 + 64: _ZN9oceanbase11transaction9ObTxLogCb11set_tx_dataEPNS_7storage8ObTxDataE:0 + 0: 0 + 67: _ZN9oceanbase6common11ObTimeGuard5clickEPKc:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 68.2: _ZN9oceanbase11transaction18ObTxLogTypeChecker12is_state_logENS0_11ObTxLogTypeE:4518 + 2: 251 + 69: _ZN9oceanbase11transaction12ObTxSubState26clear_state_log_submittingEv:2008 + 1: 251 + 73: _ZNK9oceanbase11transaction13ObTxBaseLogCb7get_lsnEv:0 + 0: 0 + 73.1: _ZN9oceanbase11transaction11ObLSLogInfoC2ERKNS_5share6ObLSIDERKNS_4palf3LSNE:0 + 0.4: 0 + 0: _ZN9oceanbase5share6ObLSIDC2ERKS1_:0 + 0: 0 + 88.1: _ZN9oceanbase11transaction14ObPartTransCtx16switch_log_type_ENS0_11ObTxLogTypeERNS0_23ObTwoPhaseCommitLogTypeE:0 + 3: 0 + 4: 0 + 27.1: 0 + 30: 0 + 95: _ZN9oceanbase6common11ObTimeGuard5clickEPKc:14921 + 3: 219 + 4: 219 + 5: 219 + 6: 219 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:248 + 2: 248 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:248 + 96.2: _ZN9oceanbase11transaction14ObPartTransCtx16get_retain_causeEv:0 + 0: 0 + 100: _ZNK9oceanbase11transaction14ObPartTransCtx12is_local_tx_Ev:1792 + 0: 224 + 110: _ZN9oceanbase6common11ObTimeGuard5clickEPKc:16814 + 3: 247 + 4: 247 + 5: 247 + 6: 247 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:265 + 2: 257 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:256 + 117: _ZN9oceanbase6common11ObTimeGuard5clickEPKc:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 128: _ZN9oceanbase6common11ObTimeGuard5clickEPKc:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 131.1: _ZN9oceanbase11transaction14ObPartTransCtx16switch_log_type_ENS0_11ObTxLogTypeERNS0_23ObTwoPhaseCommitLogTypeE:0 + 3: 0 + 4: 0 + 6: 0 + 10: 0 + 14: 0 + 18: 0 + 22: 0 + 26: 0 + 27.1: 0 + 30: 0 + 139.2: _ZN9oceanbase11transaction14ObPartTransCtx16get_retain_causeEv:0 + 0: 0 + 143: _ZNK9oceanbase11transaction14ObPartTransCtx12is_local_tx_Ev:0 + 0: 0 + 143.2: _ZNK9oceanbase11transaction12ObTxSubState14is_force_abortEv:0 + 1: 0 + 150.1: _ZN9oceanbase11transaction14ObPartTransCtx15on_local_abort_Ev:48 + 3: 0 + 4.1: 2 + 8: 2 + 5.1: _ZN9oceanbase11transaction14ObPartTransCtx25local_tx_end_side_effect_Eb:0 + 6.1: 0 + 7: 0 + 11: 0 + 156: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EE5resetEv:0 + 0: 0 + 190.3: _ZN9oceanbase3lib20is_trace_log_enabledEv:60 + 2: 5 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:35 + 2: 5 + 190.7: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:0 + 0: 0 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 190.9: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:0 + 0: 0 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 190.10: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EE10check_lockEv:0 + 2: 0 + 3: _ZN9oceanbase3lib7ObMutex4lockEv:0 + 0: 0 + 190.12: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EE10get_bufferEv:0 + 0: 0 + 190.13: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EE14get_buffer_posEv:0 + 0: 0 + 190.14: _ZNK9oceanbase11transaction15ObTransHashLinkINS0_10ObTransCtxEE7get_refEv:0 + 0: 0 + 190.22: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EE12check_unlockEv:0 + 2: 0 + 3: _ZN9oceanbase3lib7ObMutex6unlockEv:0 + 0: 0 + 196: _ZNK9oceanbase6common11ObTimeGuard8get_diffEv:1957 + 2: 242 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:263 + 2: 259 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:261 + 197.4: _ZN9oceanbase6common7ObLogKVIRNS_11transaction15ObTransTraceLogELb0EEC2EPKcS4_:33 + 0: 1 + 201.70: _ZN9oceanbase6common11ObTimeGuardD2Ev:136 + 2.1: 2 + 3.1: 2 + 2: _ZNK9oceanbase6common11ObTimeGuard8get_diffEv:24 + 2: 2 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:10 + 2: 2 +_ZN9oceanbase6common11ObArrayImplINS0_6ObAddrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_22NotImplementItemEncodeIS2_EEE7destroyEv:258672:5423 + 1: 5389 + 2: 5389 + 7: 0 + 9: 5389 + 11: 5389 + 13: 5389 + 6: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.1: 0 + 0.2: 0 +_ZZN9oceanbase11transaction14ObTransService23check_replica_readable_ElbNS0_16ObTxReadSnapshot3SRCERKNS_5share6ObLSIDElRNS_7storage4ObLSEENK6$_1025clEPKc.93feb755617c21c32b229b78773c290c:258201:4207 + 0: 3969 + 0.1: 0 + 0.2: 3969 + 0.3: 3826 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:3901 + 0.9: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:65042 + 2: 3826 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKNS_5share6ObLSIDELb0EEC2EPKcS5_:0 + 0: 0 +_ZN9oceanbase3lib17ObMallocAllocator5allocElRKNS0_9ObMemAttrE:256755:788 + 1: 758 + 6.3: 758 + 9: 758 + 10: 758 + 11: 758 + 12: 0 + 14: 758 + 15.1: 758 + 16: 758 + 17: 0 + 18.1: 0 + 19.1: 758 + 21.1: 0 + 22.1: 0 + 24: 0 + 27: 758 + 28: 809 _ZN9oceanbase3lib20ObTenantCtxAllocator5allocElRKNS0_9ObMemAttrE:784 + 31: 809 + 32: 809 + 33: 809 + 34: 809 + 35: 809 _ZN9oceanbase6common20get_mem_leak_checkerEv:838 + 35.1: 842 _ZN9oceanbase6common16ObMemLeakChecker8on_allocERNS_3lib7AObjectERKNS2_9ObMemAttrE:872 + 38: 860 + 6: _ZN9oceanbase6common9EventItemC2Ev:11370 + 2: 758 + 6.4: _ZN9oceanbase6common10EventTable8instanceEv:12886 + 2: 758 + 2.1: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common10EventTableC2Ev:0 + 0: 0 + 2: 0 + 6.5: _ZN9oceanbase6common10EventTable9get_eventEl:17434 + 1.4: 758 + 6.6: _ZNK9oceanbase6common9EventItem4callEv:21982 + 2: 758 + 3: 758 + 5.1: 0 + 7.1: 0 + 8: 0 + 9.1: 0 + 11: 0 + 12: 0 + 13.1: 0 + 18: 0 + 19.1: _ZNK9oceanbase3lib17ObMallocAllocator24get_tenant_ctx_allocatorEmm:23498 + 3: 758 + 4: 758 + 7: 0 + 9: 0 + 10.1: 0 + 10.3: 0 + 10.4: 0 + 13.2: 0 + 8: _ZN9oceanbase5obsys12ObRLockGuardC2ERKNS0_8ObRWLockEb:0 + 0: _ZNK9oceanbase5obsys8ObRWLock5rlockEv:0 + 0: 0 + 0.1: _ZN9oceanbase5obsys15ObLockGuardBaseINS0_7ObRLockEEC2ERKS2_b:0 + 2.1: 0 + 2.3: 0 + 10.2: _ZN9oceanbase3lib20ObTenantCtxAllocator13get_tenant_idEv:0 + 2: 0 + 16.1: _ZN9oceanbase5obsys12ObRLockGuardD2Ev:0 + 0: _ZN9oceanbase5obsys15ObLockGuardBaseINS0_7ObRLockEED2Ev:0 + 2: 0 + 3: 0 + 24: _ZNK9oceanbase3lib17ObMallocAllocator24get_tenant_ctx_allocatorEmm:0 + 3: 0 + 4: 0 + 7: 0 + 9: 0 + 10.1: 0 + 10.3: 0 + 10.4: 0 + 13.2: 0 + 8: _ZN9oceanbase5obsys12ObRLockGuardC2ERKNS0_8ObRWLockEb:0 + 0: _ZNK9oceanbase5obsys8ObRWLock5rlockEv:0 + 0: 0 + 0.1: _ZN9oceanbase5obsys15ObLockGuardBaseINS0_7ObRLockEEC2ERKS2_b:0 + 2.1: 0 + 2.3: 0 + 10.2: _ZN9oceanbase3lib20ObTenantCtxAllocator13get_tenant_idEv:0 + 2: 0 + 16.1: _ZN9oceanbase5obsys12ObRLockGuardD2Ev:0 + 0: _ZN9oceanbase5obsys15ObLockGuardBaseINS0_7ObRLockEED2Ev:0 + 2: 0 + 3: 0 + 33.1: _ZL12abort_unlessb:4854 + 5: 809 + 6: 0 +_ZN9oceanbase3sql13ObTableScanOp24init_ddl_column_checksumEv:256395:4787 + 1: 4437 + 2: 4437 + 3: 4437 + 4: 20 + 7: 20 + 8: 20 + 9.1: 20 + 10.1: 20 + 11: 20 + 12.1: 20 + 13.1: 20 + 13.3: 20 + 14.1: 20 + 16: 20 + 17.1: 20 + 17.2: 20 + 17.3: 20 + 18: 20 + 19.1: 20 + 22.1: 20 + 22.2: 20 + 22.3: 20 + 22.5: 20 + 24: 20 + 25.1: 20 + 25.3: 20 + 25.4: 20 + 25.6: 20 + 26: 20 + 27: 20 + 28: 20 + 29.1: 20 + 30.1: 20 + 32: 20 + 36: 20 + 42: 20 + 43.1: 20 + 44.1: 20 + 45.1: 20 + 50: 4437 + 3: _ZN9oceanbase3sql13ObTableScanOp18need_init_checksumEv:48807 + 2: 4437 + 2: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:17748 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:17748 + 0: 4437 + 4.1: _ZN9oceanbase6common16ObFixedArrayImplImNS0_12ObIAllocatorEE13set_allocatorEPS2_:140 + 0: 20 + 7: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:220 + 2: 20 + 10.2: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE5countEv:80 + 0: 20 + 16: _ZN9oceanbase6common11ObArrayImplIbNS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIbEENS0_22NotImplementItemEncodeIbEEE5resetEv:500 + 0: 20 + 17.2: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:80 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:80 + 0: 20 + 22.2: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:80 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:80 + 0: 20 + 26: _ZNK9oceanbase6common12ObIArrayWrapIPNS_5share6schema13ObColumnParamEE2atEl:140 + 6: 20 + 30.1: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:80 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:80 + 0: 20 + 30.2: _ZNK9oceanbase6common12ObIArrayWrapImE2atEl:140 + 6: 20 + 32: _ZNK9oceanbase3sql18ObBasicSessionInfo12get_sql_modeEv:780 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache12get_sql_modeEv:780 + 0: 20 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache12get_sql_modeEb:580 + 0: 20 + 32.1: _ZN9oceanbase6common26is_pad_char_to_full_lengthEm:60 + 2: 20 + 35: _ZNK9oceanbase5share6schema13ObColumnParam18is_virtual_gen_colEv:80 + 0: 20 +_ZNK9oceanbase7storage8ObITable10is_sstableEv:256160:16254 + 0: 16010 + 0: _ZN9oceanbase7storage8ObITable10is_sstableENS1_9TableTypeE:112070 + 2: 16010 +_ZN9oceanbase12blocksstable22ObIndexBlockRowScannerD2Ev:255870:4518 + 0: 4372 + 0.2: _ZN9oceanbase12blocksstable24ObMicroBlockReaderHelperD2Ev:133933 + 0.2: 0 + 0: _ZN9oceanbase12blocksstable24ObMicroBlockReaderHelper5resetEv:133933 + 2: 3971 + 3: 2991 + 4: 0 + 5: 0 + 7: 3211 + 8: 0 + 9: 0 + 11: 3362 + 14: 4372 +_ZN9oceanbase12blocksstable22ObIndexBlockRowScannerD1Ev:255870:4518 + 0: 4372 + 0.2: _ZN9oceanbase12blocksstable24ObMicroBlockReaderHelperD2Ev:133933 + 0.2: 0 + 0: _ZN9oceanbase12blocksstable24ObMicroBlockReaderHelper5resetEv:133933 + 2: 3971 + 3: 2991 + 4: 0 + 5: 0 + 7: 3211 + 8: 0 + 9: 0 + 11: 3362 + 14: 4372 +_ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEEC2Ev:255753:242 + 1: 223 + 2.1: 221 + 2.2: 221 + 3.2: 238 + 9: 251 + 10: 256 + 11: 251 + 12: 251 + 13: 251 + 15.1: 256 + 16: 256 + 17: 256 + 18: 256 + 18.16: 0 + 418: 223 + 1: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:3568 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:3568 + 2: 223 + 6: 223 + 2: _ZN9oceanbase3sql30ObHashPartitionExtendHashTableINS0_14ObHashPartColsEEC2Ev:18732 + 1: 223 + 2: 223 + 5: 223 + 65534: 223 + 65535: 223 + 2.1: _ZN9oceanbase6common7ObDListINS_3sql24ObHashPartInfrastructureINS2_14ObHashPartColsENS2_19ObHashPartStoredRowEE16ObIntraPartitionEEC2Ev:9282 + 2: 221 + 3: 221 + 4: 221 + 65463: _ZN9oceanbase6common11ObDLinkBaseINS_3sql24ObHashPartInfrastructureINS2_14ObHashPartColsENS2_19ObHashPartStoredRowEE16ObIntraPartitionEEC2Ev:3978 + 2: 221 + 2.2: _ZN9oceanbase6common7ObDListINS_3sql24ObHashPartInfrastructureINS2_14ObHashPartColsENS2_19ObHashPartStoredRowEE16ObIntraPartitionEEC2Ev:6851 + 2: 221 + 3: 221 + 4: 221 + 65463: _ZN9oceanbase6common11ObDLinkBaseINS_3sql24ObHashPartInfrastructureINS2_14ObHashPartColsENS2_19ObHashPartStoredRowEE16ObIntraPartitionEEC2Ev:1547 + 2: 221 + 2.3: _ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE16ObIntraPartitionC2Ev:10258 + 1.1: 223 _ZN9oceanbase3sql17ObChunkDatumStoreC1EPNS_6common12ObIAllocatorE:228 + 2: 223 + 0: _ZN9oceanbase6common11ObDLinkBaseINS_3sql24ObHashPartInfrastructureINS2_14ObHashPartColsENS2_19ObHashPartStoredRowEE16ObIntraPartitionEEC2Ev:1561 + 1: 223 + 1: _ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE14ObIntraPartKeyC2Ev:2453 + 0: 223 + 3: _ZN9oceanbase6common4hash9ObHashMapINS_3sql24ObHashPartInfrastructureINS3_14ObHashPartColsENS3_19ObHashPartStoredRowEE14ObIntraPartKeyEPNS7_16ObIntraPartitionENS1_19NoPthreadDefendModeENS1_9hash_funcIS8_EENS1_8equal_toIS8_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS8_SA_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev:52613 + 0.1: 241 + 0: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS_3sql24ObHashPartInfrastructureINS5_14ObHashPartColsENS5_19ObHashPartStoredRowEE14ObIntraPartKeyEPNS9_16ObIntraPartitionEEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEC2Ev:15990 + 0: 221 + 2: 221 + 0.1: _ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocatorC2EmRKNS_3lib7ObLabelE:10166 + 3: 221 + 4: 221 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:4641 + 7: 221 + 2: _ZN9oceanbase6common4hash10SpinIniterC2ERVi:2067 + 2: 247 + 3.1: 0 + 0.1: _ZN9oceanbase6common4hash11ObHashTableINS_3sql24ObHashPartInfrastructureINS3_14ObHashPartColsENS3_19ObHashPartStoredRowEE14ObIntraPartKeyENS1_11HashMapPairIS8_PNS7_16ObIntraPartitionEEENS1_9hash_funcIS8_EENS1_8equal_toIS8_EENS1_10pair_firstISC_EENS1_13SimpleAllocerINS1_15ObHashTableNodeISC_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev:19512 + 0: 241 + 1: 241 + 0: _ZN9oceanbase6common8ObMallocC2Ev:9872 + 0: 241 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:8185 + 5: 241 + 7: 241 + 8: _ZN9oceanbase6common4hash9constructIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_3sql24ObHashPartInfrastructureINS5_14ObHashPartColsENS5_19ObHashPartStoredRowEE14ObIntraPartKeyEPNS9_16ObIntraPartitionEEENS1_5NLockENS1_5NCondEEEEEvRT_:4338 + 2: _ZN9oceanbase6common4hash12do_constructIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_3sql24ObHashPartInfrastructureINS5_14ObHashPartColsENS5_19ObHashPartStoredRowEE14ObIntraPartKeyEPNS9_16ObIntraPartitionEEENS1_5NLockENS1_5NCondEEEEEvRT_NS1_16NormalPointerTagE:4338 + 2: 241 + 0.2: _ZN9oceanbase6common8ObMallocC2Ev:4338 + 0: 241 + 4: _ZN9oceanbase6common8ObMalloc8set_attrERKNS_3lib9ObMemAttrE:11086 + 0: 241 + 3.1: _ZN9oceanbase6common4hash9ObHashMapINS_3sql24ObHashPartInfrastructureINS3_14ObHashPartColsENS3_19ObHashPartStoredRowEE14ObIntraPartKeyEPNS7_16ObIntraPartitionENS1_19NoPthreadDefendModeENS1_9hash_funcIS8_EENS1_8equal_toIS8_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS8_SA_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev:44481 + 0.1: 238 + 0: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS_3sql24ObHashPartInfrastructureINS5_14ObHashPartColsENS5_19ObHashPartStoredRowEE14ObIntraPartKeyEPNS9_16ObIntraPartitionEEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEC2Ev:14969 + 0: 241 + 2: 241 + 0.1: _ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocatorC2EmRKNS_3lib7ObLabelE:9399 + 3: 241 + 4: 241 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:5061 + 7: 241 + 2: _ZN9oceanbase6common4hash10SpinIniterC2ERVi:2196 + 2: 250 + 3.1: 0 + 0.1: _ZN9oceanbase6common4hash11ObHashTableINS_3sql24ObHashPartInfrastructureINS3_14ObHashPartColsENS3_19ObHashPartStoredRowEE14ObIntraPartKeyENS1_11HashMapPairIS8_PNS7_16ObIntraPartitionEEENS1_9hash_funcIS8_EENS1_8equal_toIS8_EENS1_10pair_firstISC_EENS1_13SimpleAllocerINS1_15ObHashTableNodeISC_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev:16898 + 0: 238 + 1: 238 + 0: _ZN9oceanbase6common8ObMallocC2Ev:8330 + 0: 238 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:6664 + 5: 238 + 7: 238 + 8: _ZN9oceanbase6common4hash9constructIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_3sql24ObHashPartInfrastructureINS5_14ObHashPartColsENS5_19ObHashPartStoredRowEE14ObIntraPartKeyEPNS9_16ObIntraPartitionEEENS1_5NLockENS1_5NCondEEEEEvRT_:4284 + 2: _ZN9oceanbase6common4hash12do_constructIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_3sql24ObHashPartInfrastructureINS5_14ObHashPartColsENS5_19ObHashPartStoredRowEE14ObIntraPartKeyEPNS9_16ObIntraPartitionEEENS1_5NLockENS1_5NCondEEEEEvRT_NS1_16NormalPointerTagE:4284 + 2: 238 + 0.2: _ZN9oceanbase6common8ObMallocC2Ev:1666 + 0: 238 + 4: _ZN9oceanbase6common8ObMalloc8set_attrERKNS_3lib9ObMemAttrE:9282 + 0: 238 + 7: _ZN9oceanbase3sql17ObChunkDatumStore8IteratorC2Ev:11504 + 0: 248 _ZN9oceanbase3sql17ObChunkDatumStore13ChunkIteratorC1Ev:238 + 0.4: 248 _ZN9oceanbase3sql17ObChunkDatumStore11RowIteratorC1Ev:258 + 7.1: _ZN9oceanbase3sql17ObChunkDatumStore8IteratorC2Ev:8379 + 0: 263 _ZN9oceanbase3sql17ObChunkDatumStore13ChunkIteratorC1Ev:253 + 0.4: 263 _ZN9oceanbase3sql17ObChunkDatumStore11RowIteratorC1Ev:263 + 8: _ZN9oceanbase3sql17ObChunkDatumStore8IteratorC2Ev:8930 + 0: 274 _ZN9oceanbase3sql17ObChunkDatumStore13ChunkIteratorC1Ev:276 + 0.4: 260 _ZN9oceanbase3sql17ObChunkDatumStore11RowIteratorC1Ev:276 + 15: _ZN9oceanbase6common14ObArrayHashMapINS_3sql14ObHashPartColsEiEC2Ev:9176 + 0: 256 + 0: _ZN9oceanbase6common10ObSpinLockC2Ej:4568 + 0: 251 _ZN9oceanbase6common12ObLatchMutexC1Ev:260 + 1: 256 + 18.9: _ZN9oceanbase3sql17ObChunkDatumStore8IteratorD2Ev:0 + 0: 0 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIteratorD2Ev:0 + 0: 0 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator5resetEv:0 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator12reset_cursorEv:0 + 3: 0 + 18.10: _ZN9oceanbase3sql17ObChunkDatumStore8IteratorD2Ev:0 + 0: 0 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIteratorD2Ev:0 + 0: 0 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator5resetEv:0 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator12reset_cursorEv:0 + 3: 0 + 18.11: _ZN9oceanbase3sql17ObChunkDatumStore8IteratorD2Ev:0 + 0: 0 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIteratorD2Ev:0 + 0: 0 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator5resetEv:0 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator12reset_cursorEv:0 + 3: 0 + 18.12: _ZN9oceanbase6common4hash9ObHashMapINS_3sql24ObHashPartInfrastructureINS3_14ObHashPartColsENS3_19ObHashPartStoredRowEE14ObIntraPartKeyEPNS7_16ObIntraPartitionENS1_19NoPthreadDefendModeENS1_9hash_funcIS8_EENS1_8equal_toIS8_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS8_SA_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:0 + 2.2: 0 + 2: _ZN9oceanbase6common4hash11ObHashTableINS_3sql24ObHashPartInfrastructureINS3_14ObHashPartColsENS3_19ObHashPartStoredRowEE14ObIntraPartKeyENS1_11HashMapPairIS8_PNS7_16ObIntraPartitionEEENS1_9hash_funcIS8_EENS1_8equal_toIS8_EENS1_10pair_firstISC_EENS1_13SimpleAllocerINS1_15ObHashTableNodeISC_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:0 + 2.1: 0 + 2.2: 0 + 3: 0 + 5.2: 0 + 2: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_3sql24ObHashPartInfrastructureINS5_14ObHashPartColsENS5_19ObHashPartStoredRowEE14ObIntraPartKeyEPNS9_16ObIntraPartitionEEENS1_5NLockENS1_5NCondEEEEEbRKT_:0 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_3sql24ObHashPartInfrastructureINS5_14ObHashPartColsENS5_19ObHashPartStoredRowEE14ObIntraPartKeyEPNS9_16ObIntraPartitionEEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:0 + 2: 0 + 18.13: _ZN9oceanbase6common4hash9ObHashMapINS_3sql24ObHashPartInfrastructureINS3_14ObHashPartColsENS3_19ObHashPartStoredRowEE14ObIntraPartKeyEPNS7_16ObIntraPartitionENS1_19NoPthreadDefendModeENS1_9hash_funcIS8_EENS1_8equal_toIS8_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS8_SA_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:0 + 2.2: 0 + 2: _ZN9oceanbase6common4hash11ObHashTableINS_3sql24ObHashPartInfrastructureINS3_14ObHashPartColsENS3_19ObHashPartStoredRowEE14ObIntraPartKeyENS1_11HashMapPairIS8_PNS7_16ObIntraPartitionEEENS1_9hash_funcIS8_EENS1_8equal_toIS8_EENS1_10pair_firstISC_EENS1_13SimpleAllocerINS1_15ObHashTableNodeISC_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:0 + 2.1: 0 + 2.2: 0 + 3: 0 + 5.2: 0 + 2: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_3sql24ObHashPartInfrastructureINS5_14ObHashPartColsENS5_19ObHashPartStoredRowEE14ObIntraPartKeyEPNS9_16ObIntraPartitionEEENS1_5NLockENS1_5NCondEEEEEbRKT_:0 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_3sql24ObHashPartInfrastructureINS5_14ObHashPartColsENS5_19ObHashPartStoredRowEE14ObIntraPartKeyEPNS9_16ObIntraPartitionEEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:0 + 2: 0 + 18.17: _ZN9oceanbase3sql30ObHashPartitionExtendHashTableINS0_14ObHashPartColsEED2Ev:0 + 0: 0 + 0.2: 0 +_ZN9oceanbase4palf3LSN5resetEv:255164:19961 + 1: 19628 + 2: 19628 + 3: 19628 +_ZN9oceanbase7storage15ObDMLRunningCtx22prepare_relative_tableERKNS_5share6schema18ObTableSchemaParamERNS0_14ObTabletHandleEl:252887:1140 + 4: 1071 + 5: 1071 + 6: 1071 + 6.2: 1071 + 8.1: 0 + 9.1: 1071 _ZN9oceanbase7storage14ObTabletHandleaSERKS1_:1071 + 10.1: 1079 + 10.3: 1041 _ZN9oceanbase7storage8ObTablet15get_read_tablesElRNS0_21ObTabletTableIteratorEb:1054 + 12.1: 0 + 14: 1079 + 6: _ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE7get_objEv:4284 + 2: 1071 + 6.2: _ZN9oceanbase7storage15ObRelativeTable4initEPKNS_5share6schema18ObTableSchemaParamERKNS_6common10ObTabletIDEb:67473 + 5: 1071 + 6: 1071 + 7: 0 + 8.1: 0 + 9.2: 1071 + 10.1: 0 + 12: 1071 + 14: 1071 + 15: 1071 + 17: 1071 + 9.2: _ZNK9oceanbase6common10ObTabletID8is_validEv:4284 + 0: 1071 + 13: _ZN9oceanbase6common10ObTabletIDaSERKS1_:10710 + 0: 1071 + 6.4: _ZNK9oceanbase5share6schema18ObTableSchemaParam22is_storage_index_tableEv:13923 + 1: 1071 + 1: _ZNK9oceanbase5share6schema18ObTableSchemaParam14is_index_tableEv:4284 + 0: 1071 + 10.1: _ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE7get_objEv:4164 + 2: 1041 + 10.2: _ZNK9oceanbase7storage15ObRelativeTable15allow_not_readyEv:7287 + 0: 1041 +_ZN9oceanbase8observer8ObMPBase13after_processEi:252857:5010 + 0: 0 + 1: 4908 + 2: 0 + 3: 5146 + 5.1: 0 + 5.2: 0 + 5.4: 0 + 5.5: 0 + 5.7: 0 + 5.8: 0 + 5.9: 0 + 5.10: 0 + 5.17: 0 + 5.18: 0 + 5.20: 0 + 5.22: 0 + 5.24: 0 + 6: 0 + 7: 0 + 8: 0 + 8.1: 0 + 8.2: 0 + 9: 0 + 10: 0 + 10.2: 0 + 13: 0 + 13.1: 0 + 13.2: 0 + 13.4: 0 + 13.6: 0 + 16: 0 + 18.1: 0 + 21.1: 0 + 21.2: 0 + 21.4: 0 + 21.5: 0 + 21.7: 0 + 21.8: 0 + 21.9: 0 + 21.10: 0 + 21.17: 0 + 21.18: 0 + 21.20: 0 + 21.22: 0 + 21.24: 0 + 22: 0 + 22.1: 0 + 22.2: 0 + 22.4: 0 + 22.6: 0 + 23.1: 0 + 23.2: 0 + 24: 0 + 25: 0 + 25.1: 0 + 25.2: 0 + 25.4: 0 + 25.6: 0 + 28: 0 + 28.1: 0 + 28.2: 0 + 28.4: 0 + 28.5: 0 + 28.7: 0 + 31: 5146 _ZN9oceanbase6common20ObActiveSessionGuard8get_statEv:5191 + 32: 4733 + 3: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:25492 + 2: 4908 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:4925 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:20584 + 2: 5146 + 5.1: _ZN9oceanbase3lib20is_trace_log_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:0 + 2: 0 + 5.4: _ZN9oceanbase3lib20is_trace_log_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:0 + 2: 0 + 5.19: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl189ELl1600EE10check_lockEv:0 + 2: 0 + 3: _ZN9oceanbase3lib7ObMutex4lockEv:0 + 0: 0 + 5.26: _ZNK9oceanbase3rpc5frame14ObReqProcessor17get_run_timestampEv:0 + 2: 0 + 5.27: _ZN9oceanbase4yson24databuff_encode_elementsIlEEiPclRltRKT_:0 + 0.1: _ZN9oceanbase4yson23databuff_encode_elementIlEEiPclRltRKT_:0 + 3: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 5.30: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl189ELl1600EE12check_unlockEv:0 + 2: 0 + 3: _ZN9oceanbase3lib7ObMutex6unlockEv:0 + 0: 0 + 8.1: _ZN9oceanbase3lib6Worker4selfEv:0 + 3: 0 + 4: 0 + 10: _ZN9oceanbase3lib6Worker4selfEv:0 + 3: 0 + 4: 0 + 13.5: _ZN9oceanbase6common7ObLogKVIRNS0_24ObTraceEventRecorderBaseILl189ELl1600EEELb0EEC2EPKcS4_:0 + 0: 0 + 21.1: _ZN9oceanbase3lib20is_trace_log_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:0 + 2: 0 + 21.4: _ZN9oceanbase3lib20is_trace_log_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:0 + 2: 0 + 21.19: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl189ELl1600EE10check_lockEv:0 + 2: 0 + 3: _ZN9oceanbase3lib7ObMutex4lockEv:0 + 0: 0 + 21.26: _ZN9oceanbase4yson24databuff_encode_elementsIiEEiPclRltRKT_:0 + 0.1: _ZN9oceanbase4yson23databuff_encode_elementIiEEiPclRltRKT_:0 + 3: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 21.29: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl189ELl1600EE12check_unlockEv:0 + 2: 0 + 3: _ZN9oceanbase3lib7ObMutex6unlockEv:0 + 0: 0 + 22.5: _ZN9oceanbase6common7ObLogKVIRNS0_24ObTraceEventRecorderBaseILl189ELl1600EEELb0EEC2EPKcS4_:0 + 0: 0 + 23.1: _ZN9oceanbase3lib6Worker4selfEv:0 + 3: 0 + 4: 0 + 25.5: _ZN9oceanbase6common7ObLogKVIRNS0_24ObTraceEventRecorderBaseILl189ELl1600EEELb0EEC2EPKcS4_:0 + 0: 0 + 28.6: _ZN9oceanbase6common7ObLogKVIPNS0_24ObTraceEventRecorderBaseILl189ELl1600EEELb1EEC2EPKcOKS4_:0 + 0: 0 +_ZN9oceanbase3sql15ObTableUpdateOp11inner_closeEv:252649:524 + 1: 500 + 2: 500 + 3: 502 + 4.1: 0 + 6: 502 _ZN9oceanbase3sql15ObTableModifyOp11inner_closeEv:523 + 7: 526 + 7.3: 526 + 3: _ZN9oceanbase3sql15ObTableUpdateOp20close_table_for_eachEv:218521 + 2: 500 + 3.1: 500 + 3.2: 1021 + 3.3: 1021 + 4: 500 + 5: 500 + 7: 500 + 11.1: 0 + 16.1: 506 + 16.3: 506 + 19: 502 + 3.2: _ZNK9oceanbase6common12ObIArrayWrapINS0_11ObArrayWrapINS_3sql10ObUpdRtDefEEEE5countEv:8168 + 0: 1021 + 4: _ZN9oceanbase6common12ObIArrayWrapINS0_11ObArrayWrapINS_3sql10ObUpdRtDefEEEE2atEl:4000 + 6: 500 + 4.1: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql10ObUpdRtDefEE5emptyEv:3000 + 0: 500 + 5: _ZN9oceanbase3sql11get_my_specINS0_15ObTableUpdateOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:2500 + 5: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:2500 + 2: 500 + 5.1: _ZNK9oceanbase6common12ObIArrayWrapINS0_11ObArrayWrapIPNS_3sql10ObUpdCtDefEEEE2atEl:3500 + 6: 500 + 5.2: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql10ObUpdCtDefEE2atEl:2000 + 6: 500 + 6.1: _ZN9oceanbase6common12ObIArrayWrapINS_3sql10ObUpdRtDefEE2atEl:2000 + 6: 500 + 7: _ZN9oceanbase3sql12ObDMLService26process_after_stmt_triggerERKNS0_14ObDMLBaseCtDefERNS0_14ObDMLBaseRtDefERNS0_10ObDMLRtCtxERKNS_6common14ObDmlEventTypeE:25500 + 5: 500 + 7: 500 + 7.1: 500 + 8: 0 + 8.1: 0 + 9: 0 + 10: 0 + 11.1: 0 + 14.1: 0 + 18.1: 0 + 21: 500 + 6: _ZN9oceanbase3sql10ObDMLRtCtx12get_exec_ctxEv:4000 + 0: _ZN9oceanbase3sql8ObDASRef12get_exec_ctxEv:4000 + 0: 500 + 6.1: _ZN9oceanbase3sql13ObExecContext13set_dml_eventENS_6common14ObDmlEventTypeE:5000 + 0: 500 + 7.1: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql12ObTriggerArgEE5emptyEv:4000 + 0: 500 + 8: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:0 + 2: 0 + 8.2: _ZNK9oceanbase3sql17ObTableModifySpec12use_dist_dasEv:0 + 0: 0 + 9.1: _ZN9oceanbase3sql10ObDMLRtCtx12get_exec_ctxEv:0 + 0: _ZN9oceanbase3sql8ObDASRef12get_exec_ctxEv:0 + 0: 0 + 9.2: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:0 + 2: 0 + 9.3: _ZNK9oceanbase3sql16ObSQLSessionInfo17is_remote_sessionEv:0 + 0: 0 + 16.1: _ZNK9oceanbase6common12ObIArrayWrapINS0_11ObArrayWrapINS_3sql10ObUpdRtDefEEEE5countEv:4048 + 0: 506 + 17: _ZN9oceanbase6common12ObIArrayWrapINS0_11ObArrayWrapINS_3sql10ObUpdRtDefEEEE2atEl:4000 + 6: 500 + 17.1: _ZN9oceanbase6common11ObArrayWrapINS_3sql10ObUpdRtDefEE13release_arrayEv:78336 + 2: 500 + 3.1: 500 + 4: 487 + 7: 506 + 4: _ZN9oceanbase3sql10ObUpdRtDefD2Ev:40771 + 1: 487 + 2: 487 + 3: 0 + 4: 0 + 6: 487 + 7: 0 + 8: 0 + 10: 487 + 11: 0 + 12: 0 + 14: 487 + 15: 150 _ZN9oceanbase3sql14ObDASBaseRtDefD2Ev:161 + 16: 150 + 18.2: 0 + 18.6: _ZN9oceanbase3sql14ObDMLBaseRtDefD2Ev:0 + 0: 0 + 18.10: _ZN9oceanbase3sql14ObDMLBaseRtDefD2Ev:1956 + 0: 489 +_ZN9oceanbase5share15ObTabletLSCache6assignERKS1_:251644:4909 + 3: 4748 + 4: 4748 + 7: 4748 + 8: 4748 + 10: 4748 + 5: _ZN9oceanbase6common10ObTabletIDaSERKS1_:37984 + 0: 4748 + 6: _ZN9oceanbase5share6ObLSIDaSERKS1_:37984 + 0: 4748 +_ZN9oceanbase12blocksstable11ObRowWriter12write_rowkeyERKNS_6common13ObStoreRowkeyERPcRl:250997:150 + 1: 147 + 2: 147 + 3: 147 + 5: 147 + 6.1: 0 + 7.1: 145 + 8.1: 0 + 10: 145 + 11: 145 + 12: 161 + 14.1: 0 + 17: 161 + 18: 161 + 22.1: 167 + 25.1: 0 + 27: 164 + 5: _ZN9oceanbase12blocksstable11ObRowWriter18alloc_buf_and_initEb:23520 + 2: 147 + 3.1: 0 + 4.1: 0 + 5.1: 147 + 6.1: 0 + 8: 0 + 3.1: _ZN9oceanbase12blocksstable11ObRowBuffer10extend_bufEv:0 + 2: 0 + 4: 0 + 5: 0 + 6.1: 0 + 7.1: 0 + 8: 0 + 9.1: 0 + 12: 0 + 15: 0 + 7.2: _ZN9oceanbase6common9ob_mallocElRKNS_3lib7ObLabelE:0 + 3: 0 + 2.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 4: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 10: _ZN9oceanbase12blocksstable11ObRowBuffer5resetEv:0 + 2: 0 + 3: 0 + 6: 0 + 7: 0 + 4: _ZN9oceanbase6common7ob_freeEPv:0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 5.1: _ZN9oceanbase12blocksstable11ObRowBuffer7get_bufEv:735 + 0: 147 + 5.2: _ZNK9oceanbase12blocksstable11ObRowBuffer12get_buf_sizeEv:3528 + 0: 147 + 5.3: _ZN9oceanbase12blocksstable11ObRowWriter11init_commonEPcll:9261 + 2: 147 + 3: 147 + 3.4: 147 + 4: 0 + 5.1: 0 + 7: 147 + 8: 147 + 10: 147 + 13: 147 + 15: 0 + 7.1: _ZNK9oceanbase6common13ObStoreRowkey11get_obj_cntEv:600 + 0: _ZNK9oceanbase6common8ObRowkey11get_obj_cntEv:600 + 0: 150 + 7.3: _ZN9oceanbase12blocksstable11ObRowWriter17append_row_headerEhhlll:18595 + 7: 150 + 9: 150 + 10: 0 + 11.1: 0 + 13: 145 + 15: 145 + 16: 145 + 17: 145 + 18: 145 + 19: 145 + 20: 145 + 22: 145 + 24: 145 + 14: _ZN9oceanbase12blocksstable11ObRowHeader11set_versionEh:580 + 0: 145 + 15: _ZN9oceanbase12blocksstable11ObRowHeader12set_row_flagEh:580 + 0: 145 + 16: _ZN9oceanbase12blocksstable11ObRowHeader17set_row_mvcc_flagEh:580 + 0: 145 + 17: _ZN9oceanbase12blocksstable11ObRowHeader16set_column_countEt:580 + 0: 145 + 18: _ZN9oceanbase12blocksstable11ObRowHeader16set_rowkey_countEh:435 + 0: 145 + 19: _ZN9oceanbase12blocksstable11ObRowHeader19clear_reserved_bitsEv:1160 + 0: 145 + 20: _ZN9oceanbase12blocksstable11ObRowHeader12set_trans_idEl:1160 + 0: 145 + 11: _ZNK9oceanbase6common13ObStoreRowkey11get_obj_cntEv:580 + 0: _ZNK9oceanbase6common8ObRowkey11get_obj_cntEv:580 + 0: 145 + 12: _ZNK9oceanbase6common13ObStoreRowkey11get_obj_ptrEv:1595 + 0: _ZNK9oceanbase6common8ObRowkey11get_obj_ptrEv:1595 + 0: 145 + 12.1: _ZNK9oceanbase6common13ObStoreRowkey11get_obj_cntEv:580 + 0: _ZNK9oceanbase6common8ObRowkey11get_obj_cntEv:580 + 0: 145 + 12.2: _ZN9oceanbase12blocksstable11ObRowWriter17inner_write_cellsINS_6common5ObObjEEEiPKT_l:178421 + 4: 145 + 5: 145 + 6: 145 + 7: 145 + 9: 0 + 11: 0 + 11.1: 0 + 11.2: 0 + 11.4: 0 + 13: 0 + 14.1: 0 + 15.1: 161 + 17.1: 0 + 20: 161 + 24: 161 + 11.2: _ZN9oceanbase12blocksstable11ObRowHeader16calc_cluster_cntEll:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase12blocksstable11ObRowHeader31need_rowkey_independent_clusterEl:0 + 2: 0 + 3: _ZN9oceanbase12blocksstable11ObRowHeader33calc_cluster_cnt_by_row_col_countEl:0 + 2: 0 + 4: _ZN9oceanbase12blocksstable11ObRowHeader33calc_cluster_cnt_by_row_col_countEl:0 + 2: 0 + 15.1: _ZN9oceanbase12blocksstable11ObRowWriter13build_clusterINS_6common5ObObjEEEilPKT_:164699 + 2: 145 + 6: 145 + 7: 145 + 8: 145 + 9: 145 + 11: 140 + 12: 140 + 12.3: 140 + 13: 158 + 19.1: 0 + 26.1: 158 + 26.2: 165 + 26.3: 165 + 26.4: 0 + 27: 0 + 31: 0 + 32: 0 + 33: 0 + 33.3: 0 + 39.1: 0 + 50.1: 161 + 11: _ZN9oceanbase12blocksstable11ObRowWriter10ObBitArrayILl133EE7set_valEll:3500 + 2: 140 + 3: 140 + 4: 140 + 13: _ZN9oceanbase12blocksstable11ObRowWriter20write_col_in_clusterINS_6common5ObObjEEEiPKT_lll:122952 + 6: 140 + 7: 140 + 7.3: 140 + 8: 0 + 9.1: 0 + 13: 140 + 14: 140 + 17: 167 + 25.1: 0 + 28: 167 + 29: 167 + 29.1: 0 + 30: 158 + 30.3: 158 + 35: 158 + 15: _ZN9oceanbase12blocksstable20ObColClusterInfoMask5resetEv:980 + 0: 140 + 17: _ZN9oceanbase12blocksstable11ObRowWriter20append_row_and_indexINS_6common5ObObjENS0_20ObColClusterInfoMaskEEEiPKT_lllbRT0_:94293 + 8: 140 + 9: 140 + 11: 140 + 12: 0 + 13: 0 + 15.1: 0 + 17.1: 0 + 21.1: 0 + 22.1: 0 + 24.1: 163 + 26.1: 0 + 30: 163 + 31.1: 163 + 35.1: 151 + 37.1: 167 + 17.1: _ZN9oceanbase12blocksstable11ObRowWriter12append_arrayILl48EEEiRNS1_10ObBitArrayIXT_EEElRNS0_20ObColClusterInfoMask9BYTES_LENE:0 + 7: 0 + 8: 0 + 14: 0 + 15: 0 + 17.1: 0 + 19: 0 + 20: 0 + 10: _ZN9oceanbase12blocksstable11ObRowWriter10ObBitArrayILl48EE7get_valEl:0 + 3: 0 + 11: _ZN9oceanbase12blocksstable11ObRowWriter13get_uint_byteEmRl:0 + 3: 0 + 19: _ZN9oceanbase12blocksstable11ObRowWriter10ObBitArrayILl48EE17get_bit_array_ptrENS0_20ObColClusterInfoMask9BYTES_LENE:0 + 3: 0 + 21.1: _ZN9oceanbase12blocksstable20ObColClusterInfoMask19set_column_idx_typeENS1_9BYTES_LENE:0 + 3: 0 + 5.1: 0 + 7: 0 + 3: _ZN9oceanbase12blocksstable20ObColClusterInfoMask21is_valid_col_idx_typeENS1_9BYTES_LENE:0 + 2: 0 + 24.1: _ZN9oceanbase12blocksstable11ObRowWriter22append_flat_cell_arrayINS_6common5ObObjEEEiPKT_lll:41013 + 6: 140 + 7: 140 + 7.3: 140 + 7.6: 140 + 9: 0 + 10.1: 0 + 13.1: 162 + 13.3: 162 + 13.5: 162 + 14: 158 + 15: 0 + 17.1: 158 + 18: 0 + 21: 0 + 22.1: 0 + 24.1: 158 + 25: 158 + 27: 154 + 28: 162 _ZN9oceanbase12blocksstable11ObRowWriter13append_columnERKNS_6common5ObObjE:161 + 30.1: 0 + 35: 0 + 36: 162 + 45: 163 + 15: _ZN9oceanbase12blocksstable11ObRowWriter15check_col_existEl:2212 + 3: 158 + 5.1: 0 + 5.2: 0 + 6: 0 + 6.1: 0 + 7: 0 + 9.1: 0 + 239.3: 0 + 6.1: _ZNK9oceanbase6common12ObIArrayWrapIlE2atEl:0 + 6: 0 + 17.1: _ZNK9oceanbase6common5ObObj6is_extEv:1896 + 0: _ZNK9oceanbase6common9ObObjMeta6is_extEv:1896 + 0: 158 + 18: _ZNK9oceanbase6common5ObObj12is_nop_valueEv:0 + 2.1: 0 + 24.1: _ZNK9oceanbase6common5ObObj7is_nullEv:474 + 0: _ZNK9oceanbase6common9ObObjMeta7is_nullEv:474 + 0: 158 + 27: _ZNK9oceanbase6common5ObObj9is_outrowEv:2370 + 0: _ZNK9oceanbase6common9ObObjMeta9is_outrowEv:2370 + 0: 158 + 0: _ZNK9oceanbase6common9ObObjMeta6is_lobEv:632 + 0.1: _ZN9oceanbase6common13ob_is_text_tcENS0_9ObObjTypeE:632 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:632 + 2: 158 + 0.1: _ZNK9oceanbase6common10ObLobScale10is_out_rowEv:0 + 0: 0 + 36: _ZN9oceanbase12blocksstable11ObRowWriter10ObBitArrayILl48EE7set_valEll:4374 + 2: 162 + 3: 162 + 4: 162 + 31.1: _ZN9oceanbase12blocksstable11ObRowWriter12append_arrayILl48EEEiRNS1_10ObBitArrayIXT_EEElRNS0_20ObColClusterInfoMask9BYTES_LENE:15914 + 7: 163 + 14: 163 + 15: 163 + 17.1: 163 + 19: 163 + 20: 151 + 10: _ZN9oceanbase12blocksstable11ObRowWriter10ObBitArrayILl48EE7get_valEl:1304 + 3: 163 + 11: _ZN9oceanbase12blocksstable11ObRowWriter13get_uint_byteEmRl:4727 + 3: 163 + 19: _ZN9oceanbase12blocksstable11ObRowWriter10ObBitArrayILl48EE17get_bit_array_ptrENS0_20ObColClusterInfoMask9BYTES_LENE:1304 + 3: 163 + 35.1: _ZN9oceanbase12blocksstable20ObColClusterInfoMask15set_offset_typeENS1_9BYTES_LENE:2114 + 7: 151 + 37.1: _ZN9oceanbase12blocksstable11ObRowWriter24append_special_val_arrayEl:18854 + 3: 151 + 4: 151 + 7: 0 + 7.1: 151 + 7.3: 0 + 12: 150 + 13: 150 + 14: 150 + 15: 0 + 16: 165 + 17: 165 + 19: 171 + 20: 167 + 65312: 0 + 28: _ZN9oceanbase12blocksstable20ObColClusterInfoMask19set_sparse_row_flagEb:2839 + 0: 167 + 29.3: _ZN9oceanbase12blocksstable20ObColClusterInfoMask23set_sparse_column_countEh:2528 + 0: 158 + 30.3: _ZN9oceanbase12blocksstable20ObColClusterInfoMask16set_column_countEh:632 + 0: 158 + 28: _ZN9oceanbase12blocksstable11ObRowWriter10ObBitArrayILl133EE7set_valEll:0 + 2: 0 + 3: 0 + 4: 0 + 46.1: _ZN9oceanbase12blocksstable11ObRowWriter12append_arrayILl133EEEiRNS1_10ObBitArrayIXT_EEElRNS0_20ObColClusterInfoMask9BYTES_LENE:16381 + 7: 170 + 14: 170 + 15: 170 + 17.1: 169 + 19: 169 + 20: 184 + 10: _ZN9oceanbase12blocksstable11ObRowWriter10ObBitArrayILl133EE7get_valEl:1360 + 3: 170 + 11: _ZN9oceanbase12blocksstable11ObRowWriter13get_uint_byteEmRl:4930 + 3: 170 + 19: _ZN9oceanbase12blocksstable11ObRowWriter10ObBitArrayILl133EE17get_bit_array_ptrENS0_20ObColClusterInfoMask9BYTES_LENE:1352 + 3: 169 + 50.1: _ZN9oceanbase12blocksstable11ObRowHeader15set_offset_typeENS0_20ObColClusterInfoMask9BYTES_LENE:1771 + 7: 161 + 20: _ZN9oceanbase12blocksstable11ObRowHeader18set_single_clusterEb:2254 + 0: 161 + 17: _ZN9oceanbase12blocksstable11ObRowBuffer7get_bufEv:1932 + 0: 161 + 22.2: _ZNK9oceanbase12blocksstable11ObRowBuffer17is_buf_extendableEv:0 + 0: 0 +_ZZN9oceanbase7storage15ObMultipleMerge4initERKNS0_18ObTableAccessParamERNS0_20ObTableAccessContextERKNS0_15ObGetTableParamEENK5$_483clEPKc.60e5f1555e1608e51e89c573dc1497ed:249854:4506 + 0: 4337 + 0.2: 4337 + 0.3: 4301 _ZN9oceanbase6common8ObLogger13need_to_printEmi:4384 + 0.5: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:73117 + 2: 4301 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKNS_7storage15ObMultipleMergeELb0EEC2EPKcS5_:0 + 0: 0 +_ZN9oceanbase5share19ObTenantSwitchGuard9switch_toEmb:249496:2497 + 1: 2438 + 2: 2438 + 4: 2438 + 6.1: 9 + 7: 0 + 8.1: 0 + 9.1: 9 + 11: 0 + 12: 0 + 13: 0 + 16: 0 + 17: 0 + 20.1: 9 + 20.2: 3 + 21: 0 + 22.1: 0 + 24: 7 + 25: 7 + 26: 7 + 27: 7 + 31: 2432 + 33: 0 + 35.1: 0 + 37: 2432 + 4: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:46322 + 2: 2438 + 2.1: 0 + 2.2: 0 + 4.1: _ZNK9oceanbase5share12ObTenantBase2idEv:36570 + 0: 2438 + 6.1: _ZN9oceanbase6common20is_virtual_tenant_idEm:99 + 2: 9 + 11: _ZStneIiJRN9oceanbase6common10ObLDHandleEEEbRKSt8functionIFT_DpT0_EEDn:0 + 1: _ZNKSt8functionIFiRN9oceanbase6common10ObLDHandleEEEcvbEv:0 + 1: _ZNKSt14_Function_base8_M_emptyEv:0 + 0: 0 + 12: _ZNKSt8functionIFiRN9oceanbase6common10ObLDHandleEEEclES3_:0 + 4.1: 0 + 20.4: _ZN9oceanbase5share18check_allow_switchEmm:203 + 3: 7 + 4: 3 + 5: 3 + 9: 0 + 4: _ZN9oceanbase6common14is_user_tenantEm:21 + 4.1: 3 + 5: _ZN9oceanbase6common18gen_meta_tenant_idEm:9 + 5.2: 3 + 9: _ZN9oceanbase6common18gen_user_tenant_idEm:0 + 5.2: 0 +_ZN9oceanbase7storage15ObAccessService26get_write_store_ctx_guard_ERKNS_5share6ObLSIDElRNS_11transaction8ObTxDescERKNS6_16ObTxReadSnapshotERNS1_15ObStoreCtxGuardE:249252:1145 + 6: 1116 + 7: 1116 + 9: 1079 + 10.1: 0 + 12.1: 1081 + 12.2: 1079 _ZN9oceanbase7storage11ObLSService6get_lsERKNS_5share6ObLSIDERNS0_10ObLSHandleENS0_10ObLSGetModE:1069 + 13.1: 0 + 14.1: 1081 + 15: 0 + 16.1: 0 + 19: 1081 + 20: 1081 + 21: 1111 + 22.1: 0 + 25: 0 + 26: 0 + 28: 1111 + 9: _ZN9oceanbase7storage15ObAccessService15ObStoreCtxGuard4initERKNS_5share6ObLSIDE:84813 + 2: 1116 + 3: 1116 + 4: 0 + 5.1: 0 + 6.1: 1080 + 7: 0 + 8.1: 0 + 12: 1080 + 13: 1080 + 15: 1079 + 6.1: _ZNK9oceanbase5share6ObLSID8is_validEv:7560 + 0: 1080 + 10: _ZN9oceanbase5share6ObLSIDaSERKS1_:7560 + 0: 1080 + 11: _ZN9oceanbase5share6ObLSIDaSERKS1_:7560 + 0: 1080 + 13: _ZN9oceanbase6common16ObClockGenerator8getClockEv:22680 + 4: 1080 + 5.1: 0 + 8: 1080 + 6: _ZN9oceanbase6common16ObClockGenerator6get_usEv:0 + 2: 0 + 12.1: _ZN9oceanbase7storage15ObAccessService15ObStoreCtxGuard13get_ls_handleEv:7553 + 0: 1079 + 14.2: _ZN9oceanbase7storage10ObLSHandle6get_lsEv:7567 + 0: 1081 + 18: _ZN9oceanbase7storage15ObAccessService15ObStoreCtxGuard13get_store_ctxEv:4324 + 0: 1081 + 21: _ZNK9oceanbase7storage4ObLS19get_write_store_ctxIJRNS_11transaction8ObTxDescERKNS3_16ObTxReadSnapshotERNS0_10ObStoreCtxEEEEiDpOT_:17396 + 0: 1081 + 0.3: 1111 _ZNK9oceanbase7storage13ObLSTxService19get_write_store_ctxERNS_11transaction8ObTxDescERKNS2_16ObTxReadSnapshotERNS0_10ObStoreCtxE:1102 +_ZN9oceanbase6common16ObFixedArrayImplINS_7storage19ObSSTableReadHandleENS0_12ObIAllocatorEED2Ev:247642:1017 + 0: 936 + 0.1: 1072 + 0.3: 0 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS_7storage19ObSSTableReadHandleENS0_12ObIAllocatorEE7destroyEv:211786 + 2: 936 + 5: 936 + 6.1: 2996 + 6.3: 2996 + 7: 3093 + 9: 937 _ZN9oceanbase6common18ObWrapperAllocator4freeEPv:970 + 10: 1072 + 12: 1072 + 13: 1072 + 15: 1072 + 7: _ZN9oceanbase7storage19ObSSTableReadHandleD2Ev:49457 + 1: _ZN9oceanbase12blocksstable16ObRowValueHandleD2Ev:49457 + 0: 3093 _ZN9oceanbase6common15ObKVCacheHandleD1Ev:3214 +_ZN9oceanbase3sql13ObTableScanOp26report_ddl_column_checksumEv:247240:4695 + 1: 4415 + 2: 4415 + 3: 4415 + 5: 0 + 8.1: 0 + 8.4: 0 + 8.5: 0 + 8.7: 0 + 10.1: 0 + 10.2: 0 + 11: 0 + 11.2: 0 + 12: 0 + 13.1: 0 + 14.2: 0 + 15: 0 + 15.1: 0 + 16.1: 0 + 16.3: 0 + 16.5: 0 + 26: 0 + 26.1: 0 + 27.1: 0 + 32: 0 + 32.1: 0 + 32.2: 0 + 33.1: 0 + 35.4: 0 + 35.5: 0 + 35.8: 0 + 36.1: 0 + 40: 0 + 40.2: 0 + 41: 4415 + 4: _ZN9oceanbase6common7ObArrayINS_5share17ObDDLChecksumItemENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEEC2Ev:0 + 0.1: 0 + 0.5: _ZN9oceanbase6common11ObArrayImplINS_5share17ObDDLChecksumItemENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEEC2ElRKS4_:0 + 3: 0 + 4: 0 + 7.1: 0 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 7: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:0 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:0 + 0: 0 + 8.2: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:0 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:0 + 0: 0 + 9: _ZN9oceanbase5share17ObDDLChecksumItemC2Ev:0 + 1: 0 + 3: 0 + 10.1: _ZNK9oceanbase3sql14ObPhysicalPlan22get_ddl_schema_versionEv:0 + 0: 0 + 11.1: _ZNK9oceanbase5share12ObTenantBase2idEv:0 + 0: 0 + 13: _ZNK9oceanbase6common10ObTabletID2idEv:0 + 0: 0 + 14: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:0 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:0 + 0: 0 + 14.1: _ZNK9oceanbase6common12ObIArrayWrapImE2atEl:0 + 6: 0 + 15: _ZNK9oceanbase3sql13ObExecContext14get_px_task_idEv:0 + 0: 0 + 16.2: _ZN9oceanbase6common16ObFixedArrayImplImNS0_12ObIAllocatorEEixEl:0 + 0: _ZN9oceanbase6common12ObIArrayWrapImE2atEl:0 + 6: 0 + 35.2: _ZN9oceanbase3sql11get_my_specINS0_13ObTableScanOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:0 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:0 + 0: 0 + 36: _ZN9oceanbase6common16ObFixedArrayImplImNS0_12ObIAllocatorEEixEl:0 + 0: _ZN9oceanbase6common12ObIArrayWrapImE2atEl:0 + 6: 0 +_ZN9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE3getERKS3_RPS4_:247185:285 + 1: 253 + 3: 253 + 5.2: 200 + 8: 197 + 12: 197 + 16.2: 197 + 4: _ZN9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE18get_retire_stationEv:4301 + 1: 253 + 1.1: 0 + 1.2: 0 + 1.5: 0 + 1.7: 0 + 1.3: _ZN9oceanbase6common13RetireStationC2ERNS0_6QClockEl:0 + 0.2: 0 + 1: 0 + 0.1: _ZN9oceanbase6common13RetireStation10RetireListC2Ev:0 + 0: 0 + 0: _ZN9oceanbase6common10HazardListC2Ev:0 + 0: 0 + 0.4: _ZN9oceanbase6common10HazardListC2Ev:0 + 0: 0 + 4.1: _ZN9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE5GuardC2ERNS0_13RetireStationE:24794 + 0: _ZN9oceanbase6common9RefHandleC2ERNS0_13RetireStationE:4301 + 0: _ZN9oceanbase6common13BaseRefHandleC2ERNS0_13RetireStationE:4301 + 0: _ZN9oceanbase6common17get_global_qclockEv:4301 + 2: 253 + 2.1: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common6QClockC2Ev:0 + 0: 0 + 0.1: _ZN9oceanbase6common6QClock9ClockSlotC2Ev:0 + 0: 0 + 0.4: _ZN9oceanbase6common13BaseRefHandle14enter_criticalEv:20493 + 0: _ZN9oceanbase6common6QClock14enter_criticalEv:20493 + 2: 253 + 3.1: 253 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 7.1: 0 + 7.3: 0 + 7.4: 0 + 8.1: 0 + 1: _ZN9oceanbase6common6QClock11get_slot_idEv:7084 + 0: _ZN9oceanbase6common8get_itidEv:7084 + 4: 253 + 5: 0 + 6: 0 + 8: 0 + 3.1: _ZN9oceanbase6common6QClock6locateEm:1518 + 0: 253 + 3.3: _ZN9oceanbase6common6QClock9get_clockEv:2530 + 0: 253 + 3.4: _ZN9oceanbase6common6QClock9ClockSlot9set_clockEm:4301 + 0: 253 + 5.1: _ZN9oceanbase6common6DCHashINS_3sql14SessionInfoKeyELl8EE3getERKS3_RPNS0_11KeyHashNodeIS3_EE:159937 + 1: 253 + 5.1: 191 + 6.1: 200 + 9.1: 0 + 3: _ZN9oceanbase6common11KeyHashNodeINS_3sql14SessionInfoKeyEEC2ERKS3_:759 + 0: _ZN9oceanbase6common11KeyHashNodeINS_3sql14SessionInfoKeyEE9calc_hashERKS3_:759 + 0: _ZNK9oceanbase3sql14SessionInfoKey4hashEv:759 + 2: _ZN9oceanbase6common10murmurhashEPKvim:759 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:759 + 35: 253 + 4: _ZN9oceanbase6common6DCHashINS_3sql14SessionInfoKeyELl8EE6HandleC2ERS4_Rii:14168 + 1: 253 + 2: 253 + 1: _ZN9oceanbase6common6DCHashINS_3sql14SessionInfoKeyELl8EE9get_qsyncEv:2530 + 1: 253 + 1.1: 0 + 1.6: 0 + 1.2: _ZN9oceanbase6common7ObQSyncC2Ev:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ObQSync3RefC2Ev:0 + 0: 0 + 5: _ZN9oceanbase6common6DCHashINS_3sql14SessionInfoKeyELl8EE6Handle10search_preEmRPNS0_8HashNodeE:69303 + 3: 253 + 5.1: 0 + 2: _ZN9oceanbase6common6DCHashINS_3sql14SessionInfoKeyELl8EE6Handle11acquire_refEv:24541 + 0: 253 + 0: _ZN9oceanbase6common7ObQSync11acquire_refEv:23529 + 2: 253 + 3: 253 + 4: 253 + 5.1: 0 + 7: 253 + 2: _ZN9oceanbase6common8get_itidEv:7084 + 4: 253 + 5: 0 + 6: 0 + 8: 0 + 3: _ZN9oceanbase6common7ObQSync7add_refEll:5060 + 6: 253 + 3: _ZN9oceanbase6common6DCHashINS_3sql14SessionInfoKeyELl8EE10search_preEmRPNS0_8HashNodeE:42986 + 2: 191 + 2: _ZN9oceanbase6common6DCHashINS_3sql14SessionInfoKeyELl8EE24alloc_and_init_cur_arrayEv:34773 + 3: 226 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 8.1: 0 + 9: 0 + 10: 0 + 12: 0 + 15: 0 + 15.1: 0 + 16.1: 248 + 17.1: 0 + 20.4: 265 _ZN9oceanbase6common11ObTimeGuardD2Ev:265 + 20.5: 0 + 1: _ZN9oceanbase6common11ObTimeGuardC2EPKcl:25339 + 2: 226 + 3: 226 + 4: 226 + 6: 226 + 8: 226 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:253 + 2: 253 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:254 + 10: _ZN9oceanbase6common7DCArray4initEPNS0_8HashNodeES3_:0 + 2: 0 + 2.1: 0 + 2.3: 0 + 3: 0 + 7: 0 + 8: 0 + 244.2: 0 + 5: _ZN9oceanbase6common8HashNode10set_linkedEv:0 + 0: 0 + 0: _ZN9oceanbase6common8HashNode9load_hashEv:0 + 0: 0 + 11: _ZN9oceanbase6common11ObTimeGuard5clickEPKc:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 16: _ZNK9oceanbase6common11ObTimeGuard8get_diffEv:1962 + 2: 248 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:226 + 2: 226 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:233 + 3: _ZN9oceanbase6common7DCArray10locate_preEm:6494 + 2: 191 + 4: 0 + 2: _ZN9oceanbase6common7DCArray12locate_prev_Em:5348 + 1: _ZN9oceanbase6common7DCArray6locateEm:3438 + 1: 191 + 2.1: _ZN9oceanbase6common8HashNode9is_linkedEv:1910 + 0: 191 + 5: _ZN9oceanbase6common7DCArray12locate_prev_Em:0 + 1: _ZN9oceanbase6common7DCArray6locateEm:0 + 1: 0 + 2.1: _ZN9oceanbase6common8HashNode9is_linkedEv:0 + 0: 0 + 6: _ZN9oceanbase6common6ol_getINS0_11KeyHashNodeINS_3sql14SessionInfoKeyEEEEEiPT_S7_RS7_:8632 + 4: 0 + 4: _ZN9oceanbase6common9ol_searchINS0_11KeyHashNodeINS_3sql14SessionInfoKeyEEEEEPT_S7_S7_RS7_:6733 + 4.1: 191 + 5: 191 + 4.1: _ZN9oceanbase6common9link_nextEPNS0_6ObLinkE:581 + 2: 191 + 5.1: _ZN9oceanbase6common11KeyHashNodeINS_3sql14SessionInfoKeyEE7compareEPS4_:4996 + 2: 193 + 4.1: 193 + 65458: 191 + 7: _ZN9oceanbase3sql14SessionInfoKey7compareERKS1_:1146 + 3: 191 + 5.1: _ZN9oceanbase6common11KeyHashNodeINS_3sql14SessionInfoKeyEE7compareEPS4_:1899 + 2: 211 + 65439.1: 0 + 9.2: _ZN9oceanbase6common6DCHashINS_3sql14SessionInfoKeyELl8EE6HandleD2Ev:46200 + 0: 200 + 0.2: 0 + 0: _ZN9oceanbase6common6DCHashINS_3sql14SessionInfoKeyELl8EE6Handle6retireEil:44600 + 1: 200 + 2: 200 + 4: 200 + 6: 200 + 7: 0 + 9: 0 + 10: 0 + 2: _ZN9oceanbase6common6DCHashINS_3sql14SessionInfoKeyELl8EE17change_node_countEl:19800 + 1: 200 + 4: 200 + 5: 200 + 6: 200 + 8: 200 + 10: 0 + 11.1: 0 + 2: _ZN9oceanbase6common15ObSimpleCounter3incEl:1600 + 0: 200 + 3: _ZNK9oceanbase6common15ObSimpleCounter5valueEv:1400 + 0: 200 + 4: _ZSt3maxIlERKT_S2_S2_:2000 + 5: 200 + 5: _ZSt3minIlERKT_S2_S2_:2000 + 5: 200 + 10: _ZN9oceanbase6common6DCHashINS_3sql14SessionInfoKeyELl8EE6next2nEm:0 + 2: 0 + 4: _ZN9oceanbase6common6DCHashINS_3sql14SessionInfoKeyELl8EE15do_pending_taskEPNS0_7DCArrayE:8200 + 2: 200 + 5: 200 + 5.1: 0 + 6: 200 + 7: 0 + 8: 0 + 10: 0 + 11: 0 + 3: _ZN9oceanbase6common7DCArray20copy_from_prev_arrayEPNS0_8HashNodeEl:3000 + 4: 200 + 5: 0 + 5.1: 0 + 6: 0 + 6.1: 0 + 7.1: 0 + 7.3: 0 + 8: 0 + 10: 0 + 6.1: _ZN9oceanbase6common7DCArray17is_parent_retiredEv:0 + 0: 0 + 7: _ZN9oceanbase6common10ObSpinLock7trylockEv:0 + 2: 0 + 14: _ZN9oceanbase6common10ObSpinLock6unlockEv:0 + 2: 0 + 5: _ZN9oceanbase6common6DCHashINS_3sql14SessionInfoKeyELl8EE6Handle11release_refEv:11400 + 0: 200 + 0: _ZN9oceanbase6common7ObQSync11release_refEl:9000 + 2: 200 + 3: 200 + 4.1: 0 + 2: _ZN9oceanbase6common7ObQSync7add_refEll:6200 + 3: 200 + 6: 200 + 7: _ZN9oceanbase6common7ObQSync4syncEv:0 + 2.1: 0 + 2.3: 0 + 5.1: 0 + 8: _ZN9oceanbase6common7DCArray13retire_parentEv:0 + 0: 0 + 9: _ZN9oceanbase6common7ObQSync4syncEv:0 + 2.1: 0 + 2.3: 0 + 5.1: 0 + 9: _ZN9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE11try_inc_refEPNS0_12LinkHashNodeIS3_EE:8668 + 6.1: 197 + 4: _ZN9oceanbase6common9RefHandle3incEPNS0_7RefNodeE:6501 + 0: _ZN9oceanbase6common15faa_if_positiveEPii:6501 + 2: 197 + 4.1: 197 + 4.2: 197 + 4.3: 197 + 6.1: _ZN9oceanbase6common15is_last_bit_setEm:985 + 2: 197 + 7: _ZN9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE8dec_urefEPNS0_12LinkHashNodeIS3_EE:0 + 3: 0 + 4: 0 + 3: _ZN9oceanbase6common9RefHandle3decEPNS0_7RefNodeE:0 + 0: 0 + 16.2: _ZN9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE5GuardD2Ev:6698 + 0: _ZN9oceanbase6common13BaseRefHandle14leave_criticalEv:6698 + 0: _ZN9oceanbase6common6QClock14leave_criticalEm:6698 + 1: 197 + 2: _ZN9oceanbase6common6QClock6locateEm:2561 + 0: 197 + 2.1: _ZN9oceanbase6common6QClock9ClockSlot11clear_clockEv:2955 + 0: 197 + 16.3: _ZN9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE5GuardD2Ev:0 + 0: _ZN9oceanbase6common13BaseRefHandle14leave_criticalEv:0 + 0: _ZN9oceanbase6common6QClock14leave_criticalEm:0 + 1: 0 + 2: _ZN9oceanbase6common6QClock6locateEm:0 + 0: 0 + 2.1: _ZN9oceanbase6common6QClock9ClockSlot11clear_clockEv:0 + 0: 0 +_ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE1ELS3_1EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE:244842:2943 + 0: 2847 + 0.2: 0 + 0.3: 0 + 0.4: 2847 + 0.6: 0 + 0.7: 0 + 0.8: 2847 + 0.11: 2847 + 0: _ZNK9oceanbase6common5ObObj14get_type_classEv:19929 + 0: _ZNK9oceanbase6common9ObObjMeta14get_type_classEv:19929 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:19929 + 0: 2847 + 0.4: _ZNK9oceanbase6common5ObObj14get_type_classEv:22776 + 0: _ZNK9oceanbase6common9ObObjMeta14get_type_classEv:22776 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:22776 + 0: 2847 + 0.8: _ZNK9oceanbase6common5ObObj7get_intEv:11388 + 0: 2847 +_ZN9oceanbase3sql18ObBasicSessionInfo14set_start_stmtEv:244701:4774 + 1: 4617 + 2: 4617 + 3.1: 4617 + 3.2: 0 + 3.3: 0 + 4: 0 + 4.1: 4617 + 5: 4617 +_ZN9oceanbase12blocksstable11ObRowWriterC2Ev:243880:1126 + 2: 1077 + 12: 1077 + 15: 1015 + 0: _ZN9oceanbase12blocksstable11ObRowWriter10ObBitArrayILl48EEC2Ev:53795 + 2: 1015 + 3: 1015 + 4: 1015 + 5: 1015 + 0.1: _ZN9oceanbase12blocksstable11ObRowWriter10ObBitArrayILl133EEC2Ev:53795 + 2: 1015 + 3: 1015 + 4: 1015 + 5: 1015 + 0.2: _ZN9oceanbase12blocksstable11ObRowWriter10ObBitArrayILl48EEC2Ev:53795 + 2: 1015 + 3: 1015 + 4: 1015 + 5: 1015 + 11: _ZN9oceanbase12blocksstable11ObRowBufferC2Ev:25848 + 0: 1077 +_ZN9oceanbase12blocksstable11ObRowWriterC1Ev:243880:1126 + 2: 1077 + 12: 1077 + 15: 1015 + 0: _ZN9oceanbase12blocksstable11ObRowWriter10ObBitArrayILl48EEC2Ev:53795 + 2: 1015 + 3: 1015 + 4: 1015 + 5: 1015 + 0.1: _ZN9oceanbase12blocksstable11ObRowWriter10ObBitArrayILl133EEC2Ev:53795 + 2: 1015 + 3: 1015 + 4: 1015 + 5: 1015 + 0.2: _ZN9oceanbase12blocksstable11ObRowWriter10ObBitArrayILl48EEC2Ev:53795 + 2: 1015 + 3: 1015 + 4: 1015 + 5: 1015 + 11: _ZN9oceanbase12blocksstable11ObRowBufferC2Ev:25848 + 0: 1077 +_ZNK9oceanbase7storage8ObITable16is_major_sstableEv:243724:19276 + 0: 18748 + 0: _ZN9oceanbase7storage8ObITable16is_major_sstableENS1_9TableTypeE:131236 + 2: 18748 +_ZN9oceanbase3sql13ObTableScanOp7destroyEv:243598:4483 + 1: 4385 + 4: 4844 _ZN9oceanbase3sql8ObDASRef5resetEv:4782 + 5: 4568 + 6: 87 + 7: 87 + 8: 87 + 10: 4594 + 2: _ZN9oceanbase3sql16ObTableScanRtDefD2Ev:84907 + 0: 4385 _ZN9oceanbase3sql14ObDASScanRtDefD1Ev:4706 + 0.1: 4696 _ZN9oceanbase6common16ObFixedArrayImplISt4pairIlPNS_3sql13ObSqlArrayObjEENS0_12ObIAllocatorEED2Ev:4861 +_ZNK9oceanbase6common13ObIKVCacheKey4hashERm:242949:9633 + 0: 9882 _ZNK9oceanbase12blocksstable20ObMicroBlockCacheKey4hashEv:5068 _ZNK9oceanbase5share18ObTabletLSCacheKey4hashEv:4869 _ZNK9oceanbase12blocksstable21ObBloomFilterCacheKey4hashEv:98 _ZNK9oceanbase5share6schema16ObSchemaCacheKey4hashEv:39 +_ZN9oceanbase6common24ObFatalErrExtraInfoGuardD2Ev:241900:5067 + 1: 4838 + 2: 4838 + 2.1: 4838 + 3: 4838 +_ZN9oceanbase6common24ObFatalErrExtraInfoGuardD1Ev:241900:5067 + 1: 4838 + 2: 4838 + 2.1: 4838 + 3: 4838 +_ZNK9oceanbase5share13ObBasicSysVar9get_valueEv:241428:4683 + 1: 4522 + 2: 4522 + 2.3: 4700 + 2: _ZNK9oceanbase5share13ObBasicSysVar18is_inc_value_emptyEv:49730 + 2: _ZNK9oceanbase6common5ObObj12is_nop_valueEv:49730 + 2: 4522 + 2.1: 4520 +_ZN9oceanbase8memtable16ObITransCallback11log_sync_cbEl:241357:1832 + 1: 1657 + 2: 1657 + 3: 1657 + 4.1: 1657 + 5: 8 + 6.1: 8 + 7.1: 1733 _ZN9oceanbase11transaction9tablelock17ObOBJLockCallback8log_syncEl:772 + 8: 1733 + 10: 1733 + 7.1: _ZN9oceanbase8memtable17ObMvccRowCallback8log_syncEl:67593 + 2: 923 + 4: 923 _ZN9oceanbase8memtable10ObMemtable14set_rec_log_tsEl:950 + 5: 901 _ZN9oceanbase8memtable10ObMemtable18set_max_end_log_tsEl:927 + 6: 880 + 7: 880 _ZN9oceanbase8memtable13ObMemtableCtx27update_max_submitted_seq_noEl:986 + 8: 928 + 9.1: 8 + 15: 8 + 6: _ZN9oceanbase8memtable15ObMvccTransNode18fill_log_timestampEl:3520 + 2: 880 + 8: _ZN9oceanbase8memtable17ObMvccRowCallback17dec_unsynced_cnt_Ev:20203 + 4: 1032 + 5: 1032 _ZN9oceanbase8memtable10ObMemtable16dec_unsynced_cntEv:1059 + 6: 982 _ZN9oceanbase8memtable13ObMemtableCtx16dec_unsynced_cntEv:983 +_ZN9oceanbase7storage19ObStorageTableGuard29check_freeze_to_inc_write_refEPNS0_8ObITableERb:240334:1250 + 1: 1197 + 2: 1197 + 3: 1197 + 4: 1197 + 5: 1197 + 6: 1197 + 8: 1197 + 15: 1197 + 16: 10 + 17.1: 10 + 18.1: 1197 + 19.1: 10 + 20.1: 1197 _ZN9oceanbase8memtable10ObMemtable15get_freeze_flagEv:1276 + 21.1: 1275 _ZN9oceanbase8memtable10ObMemtable20get_is_tablet_freezeEv:1295 + 22.1: 1292 _ZNK9oceanbase8memtable10ObMemtable18is_active_memtableEv:1296 + 25: 1292 + 25.1: 1294 + 28: 10 + 28.1: 10 + 31: 10 + 32: 10 + 34.1: 10 + 36.1: 10 + 36.2: 10 + 37.1: 10 + 39: 10 + 40: 10 + 42: 10 + 44: 10 + 44.1: 10 + 45: 1294 _ZN9oceanbase7storage19ObStorageTableGuard26double_check_inc_write_refEjbPNS_8memtable11ObIMemtableERb:1334 + 51: 40 + 52: 40 + 54: 40 + 55.1: 40 + 55.2: 40 + 56.1: 10 + 57.1: 40 + 57.2: 40 + 58: 10 + 59.1: 10 + 60.3: 40 + 60.4: 40 + 60.5: 40 + 63.1: 40 + 66: 40 + 66.1: 10 + 69: 1416 + 6: _ZNK9oceanbase7storage8ObTablet16get_memtable_mgrEv:8379 + 0: 1197 + 27: _ZN9oceanbase7storage15ObTableHandleV2C2Ev:110 + 1: 10 + 55: _ZN9oceanbase5share11ObTenantEnv3mtlIPNS_7storage11ObLSServiceEEET_v:680 + 2: 40 + 2.1: _ZN9oceanbase5share12ObTenantBase3getIPNS_7storage11ObLSServiceEEET_v:480 + 0: _ZN9oceanbase5share12ObTenantBase9inner_getENS1_8IdentityIPNS_7storage11ObLSServiceEEE:480 + 0: 40 + 60.1: _ZN9oceanbase7storage10ObLSHandle6get_lsEv:160 + 0: 40 + 60.2: _ZN9oceanbase7storage4ObLS14get_tablet_svrEv:160 + 0: 40 +_ZN9oceanbase7storage22ObMicroBlockDataHandle20get_index_block_dataERKNS0_15ObTableReadInfoERNS_12blocksstable16ObMicroBlockDataE:240311:2195 + 3: 2124 + 4: 2124 + 5: 2124 + 6: 0 + 7.1: 0 + 8.1: 2124 _ZN9oceanbase7storage22ObMicroBlockDataHandle21get_loaded_block_dataERNS_12blocksstable16ObMicroBlockDataE:2152 + 11: 0 + 13: 0 + 14: 0 + 15: 0 + 15.2: 0 + 22.1: 0 + 25: 0 + 29: 2051 + 5: _ZNK9oceanbase7storage15ObTableReadInfo8is_validEv:106200 + 2: 2124 + 3: 2124 + 3.1: 2124 + 4: 2124 + 5.1: 2124 + 6: 2124 + 7: 2124 + 7.1: 2124 + 3.1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:14868 + 0: 2124 + 6.1: _ZNK9oceanbase12blocksstable19ObStorageDatumUtils8is_validEv:14868 + 0: 2124 + 9: _ZN9oceanbase7storage22ObMicroBlockDataHandle30try_release_loaded_index_blockEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 4: 0 + 6: 0 + 8: 0 + 9: 0 + 12: 0 + 13: 0 + 2.2: _ZNK9oceanbase12blocksstable16ObMicroBlockData8is_validEv:0 + 0: 0 + 0.1: 0 + 0.2: 0 + 12: _ZN9oceanbase12blocksstable16ObMicroBlockData5resetEv:0 + 0: 0 + 12: _ZN9oceanbase12blocksstable12MacroBlockIdaSERKS1_:0 + 2: 0 + 4: 0 + 15.1: _ZN9oceanbase12blocksstable19ObStorageCacheSuite21get_index_block_cacheEv:0 + 0: 0 + 23: _ZN9oceanbase7storage22ObMicroBlockDataHandle30try_release_loaded_index_blockEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 4: 0 + 6: 0 + 8: 0 + 9: 0 + 2.2: _ZNK9oceanbase12blocksstable16ObMicroBlockData8is_validEv:0 + 0: 0 + 0.1: 0 + 0.2: 0 + 12: _ZN9oceanbase12blocksstable16ObMicroBlockData5resetEv:0 + 0: 0 +_ZN9oceanbase7storage17ObLSTabletService15process_lob_rowERNS0_14ObTabletHandleERNS0_15ObDMLRunningCtxERKNS_6common8ObIArrayIlEEbRNS0_10ObStoreRowESC_SC_:240177:328 + 8: 316 + 9: 316 + 10: 316 _ZN9oceanbase7storage19ObTabletBindingInfoC1Ev:323 + 11: 364 _ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE7get_objEv:364 + 11.1: 330 _ZNK9oceanbase7storage8ObTablet12get_ddl_dataERNS0_19ObTabletBindingInfoE:330 + 11.2: 389 + 12.1: 0 + 14: 389 _ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE7get_objEv:422 + 17.1: 374 + 18.2: 374 + 19: 0 + 20.1: 0 + 21.2: 374 + 21.3: 374 + 22: 0 + 23.1: 0 + 25.1: 1452 + 25.3: 1454 + 25.4: 1454 + 25.6: 1454 + 26: 1452 + 26.2: 1452 + 31.1: 0 + 31.3: 0 + 31.4: 0 + 31.7: 0 + 32.1: 0 + 37: 0 + 39.1: 0 + 40: 0 + 41: 0 + 42.1: 0 + 43.1: 0 + 43.2: 0 + 43.3: 0 + 44.1: 0 + 45.1: 0 + 45.2: 0 + 45.3: 0 + 46.1: 0 + 49.1: 0 + 51.2: 0 + 54.1: 0 + 56: 0 + 57.1: 0 + 58: 0 + 59.1: 0 + 61: 0 + 61.1: 0 + 62: 0 + 63: 0 + 64.1: 0 + 66.2: 0 + 70: 0 + 83: 358 + 84.23: 359 + 17: _ZNK9oceanbase6common10ObTabletID8is_validEv:5984 + 0: 374 + 18: _ZNK9oceanbase6common8ObNewRow9get_countEv:6732 + 0: 374 + 18.1: _ZNK9oceanbase6common8ObNewRow9get_countEv:4862 + 0: 374 + 25.2: _ZNK9oceanbase6common8ObNewRow9get_countEv:35396 + 0: 1454 + 26: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE2atEl:5808 + 6: 1452 + 26.1: _ZNK9oceanbase6common9ObObjMeta9is_lob_v2Ev:17424 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:17424 + 0: 1452 + 27: _ZN9oceanbase6common8ObNewRow8get_cellEl:0 + 2: 0 + 3: 0 + 4: 0 + 5.1: 0 + 6: 0 + 8: 0 + 11: 0 + 12.1: 0 + 13: 0 + 15: 0 + 28: _ZN9oceanbase6common8ObNewRow8get_cellEl:0 + 2: 0 + 3: 0 + 4: 0 + 5.1: 0 + 6: 0 + 8: 0 + 11: 0 + 12.1: 0 + 13: 0 + 15: 0 + 29: _ZN9oceanbase6common8ObNewRow8get_cellEl:0 + 2: 0 + 3: 0 + 4: 0 + 5.1: 0 + 6: 0 + 8: 0 + 11: 0 + 12.1: 0 + 13: 0 + 15: 0 + 31.2: _ZNK9oceanbase6common12ObIArrayWrapIlE5countEv:0 + 32: _ZNK9oceanbase6common12ObIArrayWrapIlE2atEl:0 + 38: _ZN9oceanbase7storage16ObLobAccessParamC2Ev:0 + 1: 0 + 1.1: 0 + 2: 0 + 4.2: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 1.2: _ZN9oceanbase11transaction9ObTransIDC2Ev:0 + 0: 0 + 4: _ZN9oceanbase5share6ObLSIDC2Ev:0 + 0: 0 + 39: _ZNK9oceanbase6common5ObObj14get_string_lenEv:0 + 0: 0 + 43.1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE2atEl:0 + 6: 0 + 45.1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE2atEl:0 + 6: 0 + 48: _ZN9oceanbase7storage16ObLobAccessParamD2Ev:0 + 0.3: 0 + 0.1: _ZN9oceanbase5share6ObLSIDD2Ev:0 + 0: _ZN9oceanbase5share6ObLSID5resetEv:0 + 0: 0 + 0.2: _ZN9oceanbase11transaction9ObTransIDD2Ev:0 + 0: 0 + 48.1: _ZN9oceanbase7storage16ObLobAccessParamD2Ev:0 + 0.3: 0 + 0.1: _ZN9oceanbase5share6ObLSIDD2Ev:0 + 0: _ZN9oceanbase5share6ObLSID5resetEv:0 + 0: 0 + 0.2: _ZN9oceanbase11transaction9ObTransIDD2Ev:0 + 0: 0 + 49: _ZNK9oceanbase6common5ObObj7is_nullEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta7is_nullEv:0 + 0: 0 + 50: _ZN9oceanbase6common5ObObj8set_nullEv:0 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:0 + 0: 0 + 0: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:0 + 0: 0 + 51.1: _ZNK9oceanbase6common5ObObj12is_nop_valueEv:0 + 2.1: 0 + 52: _ZN9oceanbase6common5ObObj13set_nop_valueEv:0 + 2: _ZN9oceanbase6common5ObObj7set_extEl:0 + 3: 0 + 4: 0 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:0 + 0: 0 + 0: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:0 + 0: 0 + 0.2: _ZN9oceanbase6common9ObObjMeta15set_extend_typeEh:0 + 0: 0 + 54: _ZNK9oceanbase6common5ObObj10get_stringEv:0 + 1: 0 + 1: _ZN9oceanbase6common8ObStringC2ElPKc:0 + 5: 0 + 66: _ZN9oceanbase6common8ObString3ptrEv:0 + 0: 0 + 66.1: _ZNK9oceanbase6common8ObString6lengthEv:0 + 0: 0 + 71: _ZNK9oceanbase6common5ObObj8get_typeEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:0 + 0: 0 + 71.1: _ZNK9oceanbase6common8ObString6lengthEv:0 + 0: 0 + 71.2: _ZN9oceanbase6common5ObObj10set_stringENS0_9ObObjTypeEPKci:0 + 4: 0 + 5: 0 + 2: _ZN9oceanbase6common9ObObjMeta8set_typeERKNS0_9ObObjTypeE:0 + 3: 0 + 13: 0 + 14: 0 + 4: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:0 + 0: 0 + 8: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:0 + 0: 0 + 11: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:0 + 0: 0 + 12.1: _ZN9oceanbase6common17ob_is_string_typeENS0_9ObObjTypeE:0 + 0: 0 + 0: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:0 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:0 + 2: 0 + 17: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:0 + 0: 0 + 3: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:0 + 0: 0 + 75: _ZNK9oceanbase6common5ObObj8get_typeEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:0 + 0: 0 + 75.1: _ZN9oceanbase6common5ObObj10set_stringENS0_9ObObjTypeERKNS0_8ObStringE:0 + 4: 0 + 5: 0 + 2: _ZN9oceanbase6common9ObObjMeta8set_typeERKNS0_9ObObjTypeE:0 + 3: 0 + 13: 0 + 14: 0 + 4: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:0 + 0: 0 + 8: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:0 + 0: 0 + 11: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:0 + 0: 0 + 12.1: _ZN9oceanbase6common17ob_is_string_typeENS0_9ObObjTypeE:0 + 0: 0 + 0: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:0 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:0 + 2: 0 + 17: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:0 + 0: 0 + 3: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:0 + 0: 0 + 4: _ZNK9oceanbase6common8ObString3ptrEv:0 + 0: 0 + 5: _ZNK9oceanbase6common8ObString6lengthEv:0 + 0: 0 + 84.23: _ZN9oceanbase7storage19ObTabletBindingInfoD2Ev:26244 + 0: 358 + 0.1: _ZN9oceanbase6common10ObTabletIDD2Ev:3580 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:3580 + 0: 358 + 0.2: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EED2Ev:16220 + 1: 358 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv:9776 + 4.1: 358 + 4.3: 0 + 9: 368 + 11: 0 + 5: _ZN9oceanbase6common10ObTabletIDD2Ev:0 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:0 + 0: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 84.24: _ZN9oceanbase7storage19ObTabletBindingInfoD2Ev:0 + 0: 0 + 0.1: _ZN9oceanbase6common10ObTabletIDD2Ev:0 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:0 + 0: 0 + 0.2: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EED2Ev:0 + 1: 0 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv:0 + 4.1: 0 + 4.3: 0 + 9: 0 + 11: 0 + 5: _ZN9oceanbase6common10ObTabletIDD2Ev:0 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:0 + 0: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase3sql16ObQueryRetryInfo5resetEv:239142:5700 + 1: 5234 + 2: 5234 + 4: 5234 + 5: 5406 + 6: 5406 + 8: 5406 + 4: _ZN9oceanbase6common11ObArrayImplINS0_6ObAddrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_22NotImplementItemEncodeIS2_EEE5resetEv:26170 + 0: 5234 _ZN9oceanbase6common11ObArrayImplINS0_6ObAddrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_22NotImplementItemEncodeIS2_EEE7destroyEv:5422 +_ZN9oceanbase8memtable21ObMemtableGetIteratorD2Ev:239111:3231 + 1: 3175 + 3: 3159 _ZN9oceanbase12blocksstable10ObDatumRowD1Ev:3275 + 3.1: 0 + 3.2: 0 + 3.3: 3250 _ZN9oceanbase7storage18ObStoreRowIteratorD1Ev:3559 + 3.4: 0 + 2: _ZN9oceanbase8memtable21ObMemtableGetIterator5resetEv:95250 + 2: 3175 + 3: 3175 + 8: 3175 _ZN9oceanbase12blocksstable10ObDatumRow5resetEv:3289 +_ZN9oceanbase8memtable21ObMemtableGetIteratorD1Ev:239111:3231 + 1: 3175 + 3: 3159 _ZN9oceanbase12blocksstable10ObDatumRowD1Ev:3275 + 3.1: 0 + 3.2: 0 + 3.3: 3250 _ZN9oceanbase7storage18ObStoreRowIteratorD1Ev:3559 + 3.4: 0 + 2: _ZN9oceanbase8memtable21ObMemtableGetIterator5resetEv:95250 + 2: 3175 + 3: 3175 + 8: 3175 _ZN9oceanbase12blocksstable10ObDatumRow5resetEv:3289 +_ZNK9oceanbase6common13ObIKVCacheKey5equalERKS1_Rb:238682:9770 + 0: 10152 _ZNK9oceanbase12blocksstable20ObMicroBlockCacheKeyeqERKNS_6common13ObIKVCacheKeyE:5378 _ZNK9oceanbase5share18ObTabletLSCacheKeyeqERKNS_6common13ObIKVCacheKeyE:4724 _ZNK9oceanbase5share6schema16ObSchemaCacheKeyeqERKNS_6common13ObIKVCacheKeyE:45 +_ZN9oceanbase3sql12ObSortOpImpl4sortEv:238474:524 + 1: 493 + 2: 493 + 3: 493 + 4: 0 + 5.1: 0 + 6.1: 493 + 8: 493 + 9: 524 + 10: 524 + 11.1: 0 + 12.1: 524 _ZN9oceanbase3sql17ObChunkDatumStore8Iterator4initEPS1_lPKNS1_12IterationAgeE:544 + 13.1: 0 + 15: 498 + 16: 498 + 17: 498 + 19: 0 + 22.1: 0 + 23.1: 0 + 26: 498 + 26.1: 498 + 31: 0 + 32.1: 0 + 33: 0 + 34.1: 0 + 37: 0 + 40: 0 + 56: 0 + 57: 0 + 58.1: 0 + 61.1: 0 + 61.3: 0 + 63: 0 + 64: 0 + 64.2: 0 + 73: 0 + 76: 498 + 3: _ZNK9oceanbase3sql12ObSortOpImpl9is_initedEv:1972 + 0: 493 + 6.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql17ObChunkDatumStore9StoredRowEE5emptyEv:3944 + 0: 493 + 8: _ZNK9oceanbase6common7ObDListINS_3sql13ObSortOpChunkEE8is_emptyEv:6902 + 0: 493 + 9: _ZN9oceanbase3sql17ObChunkDatumStore8Iterator5resetEv:22990 + 0: 532 + 0.1: 493 _ZN9oceanbase3sql17ObChunkDatumStore13ChunkIterator5resetEv:507 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator5resetEv:14790 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator12reset_cursorEv:14790 + 3: 493 + 10: _ZN9oceanbase3sql12ObSortOpImpl15sort_inmem_dataEv:111973 + 2: 532 + 3: 532 + 4: 0 + 5.1: 0 + 6.1: 532 + 7: 532 + 7.1: 532 + 11: 532 + 13.1: 0 + 14: 0 + 20: 521 + 21.2: 0 + 21.4: 0 + 21.10: 0 + 22.1: 521 + 23.3: 0 + 24: 0 + 25.1: 0 + 26: 0 + 26.1: 0 + 29: 524 + 30: 0 + 31.1: 0 + 34: 524 + 34.1: 524 + 35: 0 + 36.1: 0 + 36.2: 0 + 36.4: 0 + 36.7: 0 + 38: 0 + 39.1: 0 + 45: 0 + 46.1: 0 + 46.2: 0 + 47: 0 + 47.1: 0 + 48.1: 0 + 50: 0 + 51.1: 0 + 53: 0 + 55.1: 0 + 59.1: 0 + 59.2: 0 + 59.3: 0 + 59.5: 0 + 60: 0 + 60.1: 0 + 61: 0 + 61.1: 0 + 62.1: 0 + 67: 0 + 71: 524 + 3: _ZNK9oceanbase3sql12ObSortOpImpl9is_initedEv:2660 + 0: 532 + 6.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql17ObChunkDatumStore9StoredRowEE5emptyEv:5320 + 0: 532 + 0: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql17ObChunkDatumStore9StoredRowEE5countEv:3724 + 0: 532 + 11: _ZNK9oceanbase3sql12ObSortOpImpl9need_immsEv:3724 + 2: 532 + 14: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql17ObChunkDatumStore9StoredRowEE2atEl:0 + 6: 0 + 23: _ZNK9oceanbase3lib13MemoryContextptEv:0 + 1: 0 + 23.1: _ZN9oceanbase3lib17__MemoryContext__20get_malloc_allocatorEv:0 + 0: 0 + 25: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql17ObChunkDatumStore9StoredRowEE5countEv:0 + 0: 0 + 27.4: _ZSt4sortIPPN9oceanbase3sql17ObChunkDatumStore9StoredRowENS1_12ObSortOpImpl16CopyableComparerEEvT_S8_T0_:25610 + 11.1: _ZSt6__sortIPPN9oceanbase3sql17ObChunkDatumStore9StoredRowEN9__gnu_cxx5__ops15_Iter_comp_iterINS1_12ObSortOpImpl16CopyableComparerEEEEvT_SC_T0_:25610 + 3: 521 + 5: 521 _ZSt16__introsort_loopIPPN9oceanbase3sql17ObChunkDatumStore9StoredRowElN9__gnu_cxx5__ops15_Iter_comp_iterINS1_12ObSortOpImpl16CopyableComparerEEEEvT_SC_T0_T1_:531 + 6: 521 + 8: 477 _ZSt22__final_insertion_sortIPPN9oceanbase3sql17ObChunkDatumStore9StoredRowEN9__gnu_cxx5__ops15_Iter_comp_iterINS1_12ObSortOpImpl16CopyableComparerEEEEvT_SC_T0_:491 + 6: _ZSt4__lgl:4168 + 1: 521 + 34.1: _ZNK9oceanbase3sql12ObSortOpImpl9need_immsEv:7336 + 2: 524 + 2: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql17ObChunkDatumStore9StoredRowEE5countEv:3668 + 0: 524 + 36: _ZNK9oceanbase3lib13MemoryContextptEv:0 + 1: 0 + 36.2: _ZNK9oceanbase3lib13MemoryContextptEv:0 + 1: 0 + 36.6: _ZN9oceanbase3lib17__MemoryContext__20get_malloc_allocatorEv:0 + 0: 0 + 36.8: _ZN9oceanbase3lib17__MemoryContext__20get_malloc_allocatorEv:0 + 0: 0 + 36.9: _ZN9oceanbase6common12ObBinaryHeapIPPNS_3sql17ObChunkDatumStore9StoredRowENS2_12ObSortOpImpl7CompareELl16EEC2ERS8_PNS0_12ObIAllocatorE:0 + 1: 0 + 2: 0 + 42: _ZN9oceanbase6common16ObBinaryHeapBaseIPPNS_3sql17ObChunkDatumStore9StoredRowENS2_12ObSortOpImpl7CompareELl16EE5resetEv:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplIPPNS_3sql17ObChunkDatumStore9StoredRowELl16ENS0_19ModulePageAllocatorELb0EE5resetEv:0 + 0: 0 + 46.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql17ObChunkDatumStore9StoredRowEE5countEv:0 + 0: 0 + 46.3: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql17ObChunkDatumStore9StoredRowEE2atEl:0 + 6: 0 + 50: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql17ObChunkDatumStore9StoredRowEE5countEv:0 + 0: 0 + 15: _ZNK9oceanbase3sql12ObSortOpImpl9need_immsEv:6972 + 2: 498 + 2: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql17ObChunkDatumStore9StoredRowEE5countEv:3486 + 0: 498 + 26.1: _ZNK9oceanbase6common7ObDListINS_3sql13ObSortOpChunkEE8is_emptyEv:5976 + 0: 498 + 28: _ZN9oceanbase3sql12ObSortOpImpl17set_iteration_ageEPNS0_17ObChunkDatumStore12IterationAgeE:0 + 2.1: 0 + 2.3: 0 + 3: _ZN9oceanbase3sql17ObChunkDatumStore8Iterator17set_iteration_ageEPKNS1_12IterationAgeE:0 + 0: _ZN9oceanbase3sql17ObChunkDatumStore13ChunkIterator17set_iteration_ageEPKNS1_12IterationAgeE:0 + 0: 0 + 37: _ZNK9oceanbase6common7ObDListINS_3sql13ObSortOpChunkEE8get_sizeEv:0 + 0: 0 + 56: _ZN9oceanbase6common7ObDListINS_3sql13ObSortOpChunkEE9get_firstEv:0 + 0: 0 + 60: _ZN9oceanbase3sql20ObSqlMemMgrProcessor15set_number_passEi:0 + 0: 0 + 0: _ZN9oceanbase3sql20ObSqlWorkAreaProfile15set_number_passEi:0 + 2: 0 + 3: 0 + 62: _ZN9oceanbase6common7ObDListINS_3sql13ObSortOpChunkEE12remove_firstEv:0 + 2: 0 + 2: _ZN9oceanbase6common7ObDListINS_3sql13ObSortOpChunkEE6removeEPS3_:0 + 3: 0 + 7: 0 + 6: _ZN9oceanbase6common11ObDLinkBaseINS_3sql13ObSortOpChunkEE6unlinkEv:0 + 2: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 64: _ZNK9oceanbase3lib13MemoryContextptEv:0 + 1: 0 + 64.1: _ZN9oceanbase3lib17__MemoryContext__20get_malloc_allocatorEv:0 + 0: 0 + 72: _ZN9oceanbase3sql12ObSortOpImpl17set_iteration_ageEPNS0_17ObChunkDatumStore12IterationAgeE:0 + 2.1: 0 + 2.3: 0 + 3: _ZN9oceanbase3sql17ObChunkDatumStore8Iterator17set_iteration_ageEPKNS1_12IterationAgeE:0 + 0: _ZN9oceanbase3sql17ObChunkDatumStore13ChunkIterator17set_iteration_ageEPKNS1_12IterationAgeE:0 + 0: 0 +_ZNK9oceanbase11transaction8ObTxDesc14can_free_routeEv:238049:13681 + 1: 13335 + 3: 13335 + 3.1: 518 + 4: 518 + 4.1: 518 + 5: 518 + 6.1: 0 + 8: 13329 + 2: _ZNK9oceanbase11transaction8ObTxDesc8is_in_txEv:93345 + 0: 13335 +_ZN9oceanbase6common13ObSEArrayImplINS0_8ObStringELl1ENS0_19ModulePageAllocatorELb0EE9push_backERKS2_:236866:4758 + 2: 4644 + 5: 4644 + 6: 1 + 12: 1 + 15: 1 + 15.1: 4644 + 16: 4644 + 19: 4644 + 15.1: _ZN9oceanbase6common9ObClassOpINS0_8ObStringELb0EE20construct_and_assignERKS2_RS2_:37152 + 3: _ZN9oceanbase6common16construct_assignINS0_8ObStringEEEiRT_RKS3_:37152 + 2: _ZN9oceanbase6common21construct_assign_wrapINS0_8ObStringEEEiRT_RKS3_NS0_8BoolTypeILb0EEE:37152 + 2: 4644 +find_word:236324:518 + 1: 505 + 4: 505 + 7: 505 + 7.1: 2750 + 7.3: 2750 + 10: 2750 + 13: 2750 + 17: 497 + 17.1: 497 + 17.2: 497 + 18: 497 + 20: 496 + 9: get_next_id:132280 + 3: 2750 + 7: 2750 + 9.1: 2750 + 10: 2750 + 11.1: 0 +_ZZN9oceanbase8observer16ObMySQLResultSet14to_mysql_fieldERKNS_6common7ObFieldERNS_7obmysql12ObMySQLFieldEENK4$_58clEPKc.aab76b6a44351831e19725958b59fc25:235648:3951 + 0: 3864 + 0.1: 0 + 0.2: 3864 + 0.3: 3784 _ZN9oceanbase6common8ObLogger13need_to_printEmi:3900 + 0.9: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:64328 + 2: 3784 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS_7obmysql12ObMySQLFieldELb0EEC2EPKcS5_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKNS0_7ObFieldELb0EEC2EPKcS4_:0 + 0: 0 +_ZN9oceanbase7storage13ObSingleMergeC2Ev:235025:3479 + 0: 3418 _ZN9oceanbase7storage15ObMultipleMergeC2Ev:3527 + 1.1: 3423 _ZN9oceanbase7storage21ObFuseRowCacheFetcherC1Ev:3480 + 2: 3464 + 3: 3479 + 3.3: 7 + 0.1: _ZN9oceanbase12blocksstable20ObFuseRowValueHandleC2Ev:72772 + 1: 3464 _ZN9oceanbase6common15ObKVCacheHandleC1Ev:3573 + 3.2: _ZN9oceanbase12blocksstable20ObFuseRowValueHandleD2Ev:70 + 0: 7 +_ZN9oceanbase7storage13ObSingleMergeC1Ev:235025:3479 + 0: 3418 _ZN9oceanbase7storage15ObMultipleMergeC2Ev:3527 + 1.1: 3423 _ZN9oceanbase7storage21ObFuseRowCacheFetcherC1Ev:3480 + 2: 3464 + 3: 3479 + 3.3: 7 + 0.1: _ZN9oceanbase12blocksstable20ObFuseRowValueHandleC2Ev:72772 + 1: 3464 _ZN9oceanbase6common15ObKVCacheHandleC1Ev:3573 + 3.2: _ZN9oceanbase12blocksstable20ObFuseRowValueHandleD2Ev:70 + 0: 7 +_ZN9oceanbase3sql15ObTableModifyOp10inner_openEv:235019:558 + 1: 519 + 2: 519 + 3: 519 + 4: 519 + 5.1: 0 + 6.1: 519 + 6.2: 0 + 7.1: 0 + 8.1: 283 + 9.1: 0 + 13: 541 + 4: _ZN9oceanbase3sql15ObTableModifyOp26init_foreign_key_operationEv:49305 + 2: 519 + 3: 519 + 4: 519 + 5: 0 + 6.1: 0 + 7.1: 519 + 12: 0 + 3: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:3633 + 2: 519 + 7.1: _ZN9oceanbase3lib13is_mysql_modeEv:22317 + 2: _ZN9oceanbase3lib15get_compat_modeEv:22317 + 2: 519 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:12975 + 2: 519 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 7.2: _ZNK9oceanbase3sql17ObPhysicalPlanCtx23need_foreign_key_checksEv:4671 + 0: 519 + 10: _ZN9oceanbase3sql15ObTableModifyOp22set_foreign_key_checksEv:4152 + 0: 519 + 6.1: _ZN9oceanbase3sqlL11get_my_specERKNS0_15ObTableModifyOpE:2076 + 2: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:2076 + 2: 519 + 6.3: _ZNK9oceanbase3sql14ObPhysicalPlan14has_nested_sqlEv:3633 + 0: 519 + 8.1: _ZN9oceanbase3sql15ObTableModifyOp21calc_single_table_locEv:67381 + 2: 519 + 3: 519 + 4: 267 + 5: 267 + 8: 267 + 9: 0 + 10.1: 0 + 12.1: 291 + 13.1: 0 + 14.1: 291 _ZN9oceanbase3sql8ObDASCtx19get_table_loc_by_idEmm:300 + 15: 0 + 16.1: 0 + 19: 283 + 20: 283 + 23: 283 + 3: _ZN9oceanbase3sqlL11get_my_specERKNS0_15ObTableModifyOpE:0 + 2: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:0 + 2: 0 + 12.2: _ZNK9oceanbase3sql17ObTableModifySpec23get_single_table_loc_idERmS2_:33325 + 3: 267 + 4: 275 + 5: 291 + 6: 291 + 7: 291 + 4: _ZNK9oceanbase3sql17ObTableDeleteSpec20get_single_dml_ctdefERPKNS0_14ObDMLBaseCtDefE:9350 + 2: 275 + 3: 275 + 4: 0 + 5.1: 0 + 6.1: 275 + 7: 0 + 8.1: 0 + 6.1: _ZNK9oceanbase6common12ObIArrayWrapINS0_11ObArrayWrapIPNS_3sql10ObDelCtDefEEEE2atEl:1925 + 6: 275 + 4: _ZNK9oceanbase3sql17ObTableUpdateSpec20get_single_dml_ctdefERPKNS0_14ObDMLBaseCtDefE:0 + 2: 0 + 3: 0 + 4: 0 + 5.1: 0 + 6.1: 0 + 7: 0 + 8.1: 0 + 6.1: _ZNK9oceanbase6common12ObIArrayWrapINS0_11ObArrayWrapIPNS_3sql10ObUpdCtDefEEEE2atEl:0 + 6: 0 + 19: _ZNK9oceanbase3sql15ObTableModifyOp9get_inputEv:1981 + 2: 283 + 20: _ZN9oceanbase6common6ObListIPNS_3sql14ObDASTabletLocENS0_12ObIAllocatorEE9get_firstEv:1132 + 0: 283 + 20.1: _ZNK9oceanbase3sql15ObTableModifyOp9get_inputEv:1981 + 2: 283 + 11: _ZN9oceanbase3sql15ObTableModifyOp16init_das_dml_ctxEv:72938 + 2: 545 + 4: 545 + 22: 541 + 26: 541 + 2: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:3815 + 2: 545 + 4: _ZN9oceanbase3sqlL11get_my_specERKNS0_15ObTableModifyOpE:1132 + 2: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:1132 + 2: 283 + 21: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:3787 + 0: 541 + 22.3: _ZN9oceanbase3sql8ObDASRef19set_expr_frame_infoEPKNS0_15ObExprFrameInfoE:3787 + 0: 541 + 25: _ZN9oceanbase3sql8ObDASRef12set_mem_attrERKNS_3lib9ObMemAttrE:19476 + 0: _ZN9oceanbase6common26ObWrapperAllocatorWithAttr8set_attrERKNS_3lib9ObMemAttrE:19476 + 0: 541 + 26.1: _ZN9oceanbase3sql8ObDASRef20set_execute_directlyEb:16771 + 0: 541 +_ZN9oceanbase3sql19ObScalarAggregateOp7destroyEv:234810:246 + 1: 233 + 2: 233 + 4: 254 + 3: _ZN9oceanbase3sql11ObGroupByOp7destroyEv:224643 + 2: _ZN9oceanbase3sql20ObAggregateProcessorD2Ev:224643 + 0.2: 0 + 0.3: 0 + 0.5: 260 _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql20ObAggregateProcessor12IAggrFuncCtxENS0_12ObIAllocatorEED2Ev:279 + 0.7: 0 + 0.8: 0 + 0.9: 0 + 0: _ZN9oceanbase3sql20ObAggregateProcessor7destroyEv:160115 + 2.1: 233 + 2.3: 0 + 3: 0 + 3.1: 0 + 5: 233 + 7: 0 + 9: 233 + 11: 0 + 13: 233 + 14: 233 _ZN9oceanbase3sql17ObChunkDatumStore15ShadowStoredRow5resetEv:237 + 15: 249 + 19: 291 + 22: 279 + 22.6: 279 + 23: 279 + 24: 0 + 25: 0 + 17: _ZN9oceanbase6common9Ob2DArrayIPNS_3sql20ObAggregateProcessor8GroupRowELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS5_Ll64ES6_Lb0EEEE5resetEv:47107 + 0: 249 + 0: _ZN9oceanbase6common9Ob2DArrayIPNS_3sql20ObAggregateProcessor8GroupRowELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS5_Ll64ES6_Lb0EEEE7destroyEv:42127 + 4.1: 275 + 4.3: 275 + 5: 255 + 9: 272 + 2: _ZN9oceanbase6common9Ob2DArrayIPNS_3sql20ObAggregateProcessor8GroupRowELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS5_Ll64ES6_Lb0EEEE13destruct_objsEv:2739 + 11: 249 + 3: _ZNK9oceanbase6common9Ob2DArrayIPNS_3sql20ObAggregateProcessor8GroupRowELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS5_Ll64ES6_Lb0EEEE15get_block_countEv:1743 + 0: _ZNK9oceanbase6common12ObIArrayWrapIPPNS_3sql20ObAggregateProcessor8GroupRowEE5countEv:1743 + 0: 249 + 5: _ZN9oceanbase6common12ObIArrayWrapIPPNS_3sql20ObAggregateProcessor8GroupRowEE2atEl:1785 + 6: 255 + 6: _ZN9oceanbase6common9Ob2DArrayIPNS_3sql20ObAggregateProcessor8GroupRowELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS5_Ll64ES6_Lb0EEEE10free_blockES8_:13123 + 0: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:13123 + 0: 255 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:9043 + 2: 255 + 3: 255 _ZN9oceanbase3lib17ObMallocAllocator12get_instanceEv:253 + 4: 248 + 5: 248 _ZN9oceanbase3lib17ObMallocAllocator4freeEPv:245 + 4: _ZL12abort_unlessb:1488 + 5: 248 + 6: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplIPPNS_3sql20ObAggregateProcessor8GroupRowELl64ENS0_19ModulePageAllocatorELb0EE7destroyEv:15776 + 9: 272 + 11: 0 + 13: 272 + 15: 272 + 24: 272 + 10: _ZN9oceanbase6common13ObSEArrayImplIPPNS_3sql20ObAggregateProcessor8GroupRowELl64ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: 0 + 20: _ZN9oceanbase6common16ObArenaAllocator5resetEv:38274 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:38274 + 4.1: 291 + 6: 0 + 7: 276 + 13: 279 + 14: 279 + 15: 279 + 18: 279 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:828 + 0: 276 + 5.1: _ZL12abort_unlessb:1656 + 5: 276 + 6: 0 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:12623 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:12623 + 0: 276 + 0.2: 4 + 0.1: _ZN9oceanbase6common7ob_freeEPv:9531 + 2: 277 + 3: 277 _ZN9oceanbase3lib17ObMallocAllocator12get_instanceEv:287 + 4: 270 + 5: 274 _ZN9oceanbase3lib17ObMallocAllocator4freeEPv:272 + 4: _ZL12abort_unlessb:1620 + 5: 270 + 6: 0 + 22: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql20ObAggregateProcessor12IAggrFuncCtxEE5countEv:1953 + 0: 279 + 22.1: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql20ObAggregateProcessor12IAggrFuncCtxEE2atEl:5301 + 6: 279 + 22.6: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql20ObAggregateProcessor12IAggrFuncCtxEE5countEv:0 + 0: 0 + 28: _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql20ObAggregateProcessor12IAggrFuncCtxENS0_12ObIAllocatorEE5resetEv:24494 + 0: 279 + 0: _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql20ObAggregateProcessor12IAggrFuncCtxENS0_12ObIAllocatorEE7destroyEv:18914 + 2: 279 + 5: 279 + 9: 279 _ZN9oceanbase6common16ObArenaAllocator4freeEPv:276 + 10: 258 + 12: 258 + 13: 258 + 15: 258 + 29: _ZN9oceanbase3sql11RemovalInfo5resetEv:9804 + 1: 258 + 2: 258 + 4: 258 + 5: 258 + 0.4: _ZN9oceanbase6common9Ob2DArrayIPNS_3sql20ObAggregateProcessor8GroupRowELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS5_Ll64ES6_Lb0EEEED2Ev:31844 + 1: 258 + 3: 258 _ZN9oceanbase6common13ObSEArrayImplIPPNS_3sql20ObAggregateProcessor8GroupRowELl64ENS0_19ModulePageAllocatorELb0EED2Ev:271 + 3.1: 0 + 3.2: 0 + 2: _ZN9oceanbase6common9Ob2DArrayIPNS_3sql20ObAggregateProcessor8GroupRowELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS5_Ll64ES6_Lb0EEEE7destroyEv:26926 + 4.1: 258 + 4.3: 4 + 5: 4 + 9: 258 + 2: _ZN9oceanbase6common9Ob2DArrayIPNS_3sql20ObAggregateProcessor8GroupRowELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS5_Ll64ES6_Lb0EEEE13destruct_objsEv:2838 + 11: 258 + 3: _ZNK9oceanbase6common9Ob2DArrayIPNS_3sql20ObAggregateProcessor8GroupRowELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS5_Ll64ES6_Lb0EEEE15get_block_countEv:1806 + 0: _ZNK9oceanbase6common12ObIArrayWrapIPPNS_3sql20ObAggregateProcessor8GroupRowEE5countEv:1806 + 0: 258 + 5: _ZN9oceanbase6common12ObIArrayWrapIPPNS_3sql20ObAggregateProcessor8GroupRowEE2atEl:28 + 6: 4 + 6: _ZN9oceanbase6common9Ob2DArrayIPNS_3sql20ObAggregateProcessor8GroupRowELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS5_Ll64ES6_Lb0EEEE10free_blockES8_:236 + 0: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:236 + 0: 4 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:172 + 2: 4 + 3: 4 + 4: 4 + 5: 4 + 4: _ZL12abort_unlessb:24 + 5: 4 + 6: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplIPPNS_3sql20ObAggregateProcessor8GroupRowELl64ENS0_19ModulePageAllocatorELb0EE7destroyEv:16770 + 9: 258 + 11: 0 + 13: 258 + 15: 258 + 24: 258 + 10: _ZN9oceanbase6common13ObSEArrayImplIPPNS_3sql20ObAggregateProcessor8GroupRowELl64ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: 0 + 0.6: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:25146 + 0: 254 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEED2Ev:20574 + 0: 254 + 0.3: 0 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:16002 + 4.1: 254 + 6: 0 + 7: 0 + 13: 254 + 14: 254 + 15: 254 + 18: 254 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:0 + 0: 0 + 5.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:0 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase3sql8ObDASCtx19get_table_loc_by_idEmm:234689:5607 + 1: 5579 + 3.1: 5579 + 4: 5363 + 4.1: 5363 + 5: 5363 + 9: 5837 + 3.4: _ZNK9oceanbase6common4list8IteratorINS0_6ObListIPNS_3sql13ObDASTableLocENS0_12ObIAllocatorEEEEneERKS9_:32826 + 2: 5579 +_ZZN9oceanbase12blocksstable22ObIndexBlockRowScanner12locate_rangeERKNS0_12ObDatumRangeEbbENK5$_770clEPKc.79c84811dffcee7ee47b268264023dc2:234060:3094 + 0: 3045 + 0.1: 0 + 0.2: 3045 + 0.3: 2886 _ZN9oceanbase6common8ObLogger13need_to_printEmi:3011 + 0.13: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:49062 + 2: 2886 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS_12blocksstable12ObDatumRangeELb0EEC2EPKcS5_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.9: _ZN9oceanbase6common20ObLogPrintPointerCntIPKNS_12blocksstable13ObDatumRowkeyEEC2ES5_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVINS0_20ObLogPrintPointerCntIPKNS_12blocksstable13ObDatumRowkeyEEELb1EEC2EPKcOKS7_:0 + 0: 0 + 0.12: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 +_ZNK9oceanbase11transaction9tablelock12ObLockMemCtx16check_lock_existERKNS1_8ObLockIDERKlhRbRh:233665:1039 + 6: 983 + 7: 983 + 8: 983 + 10: 983 + 12: 0 + 13.1: 0 + 15: 983 + 16.4: 1142 + 17.2: 298 + 18: 298 + 19: 298 + 20: 298 + 21: 298 + 24: 0 + 29: 1021 + 10: _ZNK9oceanbase11transaction9tablelock8ObLockID8is_validEv:10813 + 2: 983 + 2: _ZN9oceanbase6common11is_valid_idEm:4915 + 2: 983 + 15: _ZN9oceanbase6common14SpinRLockGuardC2ERKNS0_10SpinRWLockE:32593 + 1: 983 + 3: 997 + 4.1: 0 + 5: 0 + 3: _ZN9oceanbase6common10SpinRWLock6rdlockEl:17694 + 0: 983 _ZN9oceanbase6common7ObLatch6rdlockEjl:986 + 16: _ZNK9oceanbase6common7ObDListINS_11transaction9tablelock22ObMemCtxLockOpLinkNodeEE9get_firstEv:6979 + 0: 997 + 17: _ZNK9oceanbase11transaction9tablelock8ObLockIDeqERKS2_:33401 + 2: _ZNK9oceanbase11transaction9tablelock8ObLockID7compareERKS2_:33401 + 3: 1433 + 7.1: 1433 + 28.1: _ZN9oceanbase6common14SpinRLockGuardD2Ev:20758 + 2: 1047 + 3: 1047 + 3.1: 1021 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase6common10SpinRWLock6unlockEv:3141 + 0: 1047 _ZN9oceanbase6common7ObLatch6unlockEPKj:1074 +_ZN9oceanbase3sql18ObBasicSessionInfo12set_end_stmtEv:232087:4640 + 1: 4379 + 2: 4379 + 3.1: 4379 + 3.2: 0 + 3.3: 0 + 4: 0 + 4.1: 4379 + 5: 4379 +_ZN9oceanbase3sql13ObExecContext12init_expr_opEm:231990:4483 + 1: 4218 + 2: 4218 + 3: 4218 + 4: 0 + 5.1: 0 + 6.1: 4218 + 7: 0 + 8: 0 + 9: 0 + 10.1: 0 + 12: 0 + 13: 0 + 16: 4218 +_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher15check_blockscanERb:229866:2598 + 1: 2361 + 3: 2361 + 4: 2361 + 5: 2361 + 6: 0 + 7.1: 0 + 8.1: 0 + 9: 0 + 10.1: 2449 + 11.1: 0 + 11.4: 0 + 11.5: 0 + 16.1: 0 + 19: 0 + 20: 0 + 24: 2540 + 8.1: _ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher18current_micro_infoEv:51942 + 1: 2361 + 8.2: _ZNK9oceanbase12blocksstable16ObMicroIndexInfo13can_blockscanEv:30693 + 2: 2361 + 2.1: _ZNK9oceanbase12blocksstable16ObMicroIndexInfo18has_out_row_columnEv:0 + 2: 0 + 11.4: _ZNK9oceanbase6common11ObQueryFlag15is_reverse_scanEv:0 + 0: 0 + 19: _ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher18current_micro_infoEv:0 + 1: 0 + 19.1: _ZNK9oceanbase12blocksstable16ObMicroIndexInfo13can_blockscanEv:0 + 2: 0 + 2.1: _ZNK9oceanbase12blocksstable16ObMicroIndexInfo18has_out_row_columnEv:0 + 2: 0 + 3: _ZNK9oceanbase12blocksstable21ObIndexBlockRowHeader18has_out_row_columnEv:0 + 0: 0 + 21: _ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher26clean_blockscan_check_infoEv:0 + 2: 0 + 3.1: 0 + 4: 0 + 4: _ZN9oceanbase6common16ObFixedArrayImplINS_7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandleENS0_12ObIAllocatorEEixEl:0 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandleEE2atEl:0 + 6: 0 + 6: _ZN9oceanbase12blocksstable13ObDatumRowkey5resetEv:0 + 0: 0 +_ZN9oceanbase11transaction14ObTxExecResultD2Ev:229516:5739 + 1: 5543 + 2: 5543 + 3: 5543 _ZN9oceanbase6common11ObArrayImplINS_11transaction16ObTransIDAndAddrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev:5786 + 3.1: 5496 _ZN9oceanbase6common13ObSEArrayImplINS_11transaction8ObTxPartELl4ENS0_19ModulePageAllocatorELb0EED2Ev:5590 + 3.2: 5332 _ZN9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EED2Ev:5475 +_ZN9oceanbase11transaction14ObTxExecResultD1Ev:229516:5739 + 1: 5543 + 2: 5543 + 3: 5543 _ZN9oceanbase6common11ObArrayImplINS_11transaction16ObTransIDAndAddrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev:5786 + 3.1: 5496 _ZN9oceanbase6common13ObSEArrayImplINS_11transaction8ObTxPartELl4ENS0_19ModulePageAllocatorELb0EED2Ev:5590 + 3.2: 5332 _ZN9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EED2Ev:5475 +_ZN9oceanbase3sql13AllocOpHelperILi10EE5allocERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputElRPNS0_10ObOperatorE:229402:281 + 3: 264 + 4: 264 + 7: 264 + 8: 264 + 9: 0 + 10.1: 0 + 12.1: 264 + 13: 0 + 14.1: 0 + 16: 264 + 17: 264 _ZN9oceanbase6common16ObArenaAllocator5allocEl:264 + 18: 265 + 19: 0 + 20.1: 0 + 22: 265 + 23: 274 + 24: 274 + 25.1: 274 + 33: 274 + 23: _ZN9oceanbase3sql19ObScalarAggregateOpC2ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE:180346 + 1: 274 + 2: 274 + 1: _ZN9oceanbase3sql11ObGroupByOpC2ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE:167468 + 2: 266 + 2.1: 266 _ZN9oceanbase3sql20ObAggregateProcessorC1ERNS0_9ObEvalCtxERNS_6common8ObIArrayINS0_10ObAggrInfoEEERKNS_3lib7ObLabelE:268 + 3: 266 + 5: 266 + 6.1: 0 + 1: _ZN9oceanbase3sql10ObOperatorC2ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE:154168 + 1: 257 + 2: 257 + 3: 257 _ZN9oceanbase3sql9ObEvalCtxC1ERNS0_13ObExecContextE:266 + 5: 264 + 7: 264 + 9: 264 + 14: 264 + 14.1: 264 + 15: 264 + 17: 264 + 19: 266 + 20: 266 + 22: 266 + 23: 257 + 24: 266 + 25: 266 + 0: _ZN9oceanbase3sql13ObMonitorNodeC2Ev:64164 + 2: 264 + 7: 264 + 8: 264 + 9: 264 + 30: 264 + 33: 266 + 35.1: 266 + 0: _ZN9oceanbase6common11ObDLinkBaseINS_3sql13ObMonitorNodeEEC2Ev:2376 + 1: 264 + 0.1: _ZN9oceanbase6common12ObCurTraceId7TraceIdC2Ev:4752 + 0: 264 + 31: _ZN9oceanbase6common12ObCurTraceId12get_trace_idEv:6650 + 5: 266 + 5.1: 0 + 5.1: _ZN9oceanbase6common12ObCurTraceId7TraceIdC2Ev:0 + 0: 0 + 35: _Z9ob_gettidv:15162 + 3: 266 + 4: 0 + 2: _Z13get_tid_cachev:6650 + 7: 266 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 + 0.1: _ZN9oceanbase3sql11ObBatchRowsC2Ev:4788 + 0: 266 + 0.2: _ZN9oceanbase3sql14ObBatchRowIterC2Ev:14630 + 0: 266 + 0.1: _ZN9oceanbase3sql19ObBatchResultHolderC2Ev:6118 + 0: 266 + 4: _ZN9oceanbase3sql13ObExecContext13get_allocatorEv:1848 + 2: 264 + 4.1: _ZN9oceanbase6common12ObFixedArrayIPNS_3sql10ObEvalInfoENS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplIS4_S5_EEERS5_l:13728 + 0: 264 + 0: _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql10ObEvalInfoENS0_12ObIAllocatorEEC2ERS5_l:9504 + 2: 264 + 3: 264 + 4: 264 + 1: _ZN9oceanbase6common8ObIArrayIPNS_3sql10ObEvalInfoEEC2Ev:2376 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql10ObEvalInfoEEC2Ev:2376 + 0: 264 + 14: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE5emptyEv:2112 + 0: 264 + 18: _ZN9oceanbase3sql17ObIOEventObserverC2ERNS0_13ObMonitorNodeE:2394 + 0: 266 + 4: _ZN9oceanbase3lib7ObLabelC2IA15_cEERKT_:3724 + 2: _ZN9oceanbase3lib7ObLabelaSILm15EEERS1_RAT__Kc:3724 + 4: 266 + 24: _ZN9oceanbase3sql10ObOperator20set_children_pointerEPPS1_j:10960 + 7: 274 + 8: 274 + 9: 274 + 10: 274 + 12: 0 + 14: 274 + 15: 0 + 17: 274 +_ZN9oceanbase6common18do_with_segv_catchIRZNS0_12ObMemoryDump6handleEPvE4$_22EEvOT_RbRDTclfL0p_EE.a1b49044713ee2b295a5be406ce610bf:228768:1 + 1: 1 + 2: 1 + 4: 1 _ZN9oceanbase6common18get_signal_handlerEv:1 + 5: 9 _ZTWN9oceanbase6common3jmpE:1 + 5.1: 1 + 6: 9 + 7: 9 _ZN9oceanbase6common18get_signal_handlerEv:10 + 8: 7 + 10: 5 + 12.1: 5 + 13: 5 + 15: 7 _ZN9oceanbase6common18get_signal_handlerEv:2 + 16: 7 + 8: _ZZN9oceanbase6common12ObMemoryDump6handleEPvENK4$_22clEv:227976 + 1: 9 + 10: 9 + 28: 7 + 29.1: 5 + 31: 5 + 1: _ZN9oceanbase6common16parse_chunk_metaIZZNS0_12ObMemoryDump6handleEPvENK4$_22clEvEUlPNS_3lib6AChunkEE_ZZNS2_6handleES3_ENKS4_clEvEUlS7_PNS5_6ABlockEE_ZZNS2_6handleES3_ENKS4_clEvEUlS7_SA_PNS5_7AObjectEE_EEiS7_T_T0_T1_:227120 + 5: 9 + 7: 9 + 10: 203 + 10.1: 203 + 11: 203 + 13: 203 + 19: 207 + 9: _ZNK9oceanbase3lib6AChunk10offset2blkEi:1502 + 2: 203 + 16: _ZN9oceanbase6common16parse_block_metaIZZNS0_12ObMemoryDump6handleEPvENK4$_22clEvEUlPNS_3lib6AChunkEPNS5_6ABlockEE_ZZNS2_6handleES3_ENKS4_clEvEUlS7_S9_PNS5_7AObjectEE_EEiS7_S9_T_T0_:158762 + 4: 203 + 5: 202 + 6: 191 + 7: 0 + 10.1: 238 + 11: 408 + 11.1: 408 + 12: 408 + 12.1: 408 + 17: 450 + 17.1: 437 + 6: _ZNK9oceanbase3lib6ABlock4dataEv:12185 + 2: _ZNK9oceanbase3lib6ABlock5chunkEv:2020 + 2: _ZN9oceanbase3lib6AChunk9ptr2chunkEPKv:2020 + 2: 202 + 3: _ZNK9oceanbase3lib6AChunk8is_validEv:2424 + 2: 202 + 3.1: _ZL12abort_unlessb:1277 + 5: 202 + 6: 5 + 4: _ZNK9oceanbase3lib6AChunk8blk_dataEPKNS0_6ABlockE:6464 + 2: 202 + 3: 202 + 4: 202 + 6.1: _ZNK9oceanbase3lib6ABlock4holdEPm:54103 + 5: 202 + 5.1: 202 + 5.2: 10 + 8: 191 + 3: _ZNK9oceanbase3lib6AChunk10blk_offsetEPKNS0_6ABlockE:10387 + 2: 202 + 3: 202 + 3.2: _ZL12abort_unlessb:1297 + 5: 202 + 6: 5 + 5.1: _ZNK9oceanbase3lib6AChunk19is_first_blk_offsetEiPi:404 + 2: 202 + 5.2: _ZNK9oceanbase3lib6AChunk18is_last_blk_offsetEiPi:2057 + 4: 10 + 4: _ZNK9oceanbase3lib6AChunk17min_blk_offset_geEi:2027 + 2: _ZNK9oceanbase3lib13ASimpleBitSetILi256EE10min_bit_geEi:2027 + 8: 36 + 9: 36 + 12: 10 + 8: _ZN9oceanbase3lib13ASimpleBitSetILi256EE10min_bit_geEmi:684 + 2: 9 + 3: 0 + 4: 36 + 6: _ZNK9oceanbase3lib6AChunk4holdEPm:777 + 2: 10 + 2: _ZN9oceanbase3lib6AChunk9calc_holdEllPm:697 + 3: 10 + 4: 9 + 2: _ZN9oceanbase3lib9align_up2Emm:200 + 2: 10 + 3.2: _ZN9oceanbase3libL13get_page_sizeEv:390 + 2: 0 + 2.1: 5 + 2.2: 5 + 2.3: 5 + 3: 0 + 3.4: _ZN9oceanbase3lib9align_up2Emm:0 + 2: 0 + 8: _ZNK9oceanbase3lib6AChunk11blk_nblocksEPKNS0_6ABlockE:37821 + 4: 191 + 4.3: 191 + 2: _ZNK9oceanbase3lib6AChunk10blk_offsetEPKNS0_6ABlockE:1805 + 3.2: _ZL12abort_unlessb:1805 + 5: 190 + 6: 5 + 4: _ZNK9oceanbase3lib6AChunk18is_last_blk_offsetEiPi:34106 + 4: 191 + 4: _ZNK9oceanbase3lib6AChunk17min_blk_offset_geEi:32583 + 2: _ZNK9oceanbase3lib13ASimpleBitSetILi256EE10min_bit_geEi:32583 + 2: 190 + 7: 190 + 8: 950 + 9: 950 + 11.1: 55 + 12: 191 + 8: _ZN9oceanbase3lib13ASimpleBitSetILi256EE10min_bit_geEmi:15650 + 2: 950 + 3: 190 + 4: 950 + 7.2: _ZNK9oceanbase3lib6AChunk4holdEPm:330 + 2: 0 + 2: _ZN9oceanbase3lib6AChunk9calc_holdEllPm:330 + 3: 0 + 3.3: 0 + 4: 0 + 2: _ZN9oceanbase3lib9align_up2Emm:0 + 2: 0 + 3.2: _ZN9oceanbase3libL13get_page_sizeEv:330 + 2: 0 + 2.1: 5 + 2.2: 5 + 2.3: 5 + 3: 0 + 3.4: _ZN9oceanbase3lib9align_up2Emm:0 + 2: 0 + 9: _ZNK9oceanbase3lib6ABlock4dataEv:12917 + 3: _ZNK9oceanbase3lib6AChunk8is_validEv:2268 + 2: 189 + 3.1: _ZL12abort_unlessb:1199 + 5: 189 + 6: 5 + 4: _ZNK9oceanbase3lib6AChunk8blk_dataEPKNS0_6ABlockE:9450 + 2: 189 + 3: 189 + 4: 189 + 12: _ZNK9oceanbase3lib7AObject8is_validEv:6120 + 2: 408 + 12.1: _ZN9oceanbase3lib11AllocHelper15cells_per_blockEj:1224 + 1: 408 + 15: _ZZZN9oceanbase6common12ObMemoryDump6handleEPvENK4$_22clEvENKUlPNS_3lib6AChunkEPNS4_6ABlockEPNS4_7AObjectEE_clES6_S8_SA_:26075 + 2: 408 + 3: 251 + 4: 251 + 5: 251 + 5.3: 5 + 6.1: 1 + 6.2: 5 + 6.5: 1 + 7: 5 + 8: 5 + 9: 5 + 10.1: 5 + 14: 450 _ZN9oceanbase6common10label_statEPNS_3lib6AChunkEPNS1_6ABlockEPNS1_7AObjectERNS0_4hash9ObHashMapINS0_8ObStringENS0_13LabelInfoItemENS8_24LatchReadWriteDefendModeENS8_9hash_funcISA_EENS8_8equal_toISA_EENS8_13SimpleAllocerINS8_15ObHashTableNodeINS8_11HashMapPairISA_SB_EEEELi82ENS8_19SpinMutexDefendModeENS8_29DefaultSimpleAllocerAllocatorEEENS8_13NormalPointerENS0_8ObMallocELl1EEEPNS0_9LabelItemElRl:462 + 15: 419 + 16: 419 + 6.1: _ZN9oceanbase6common14ObTscTimestamp12get_instanceEv:463 + 2: 1 + 2.1: 5 + 2.3: 5 + 2.6: 5 + 2.2: _ZN9oceanbase6common14ObTscTimestampC2Ev:95 + 1: 5 + 7: _ZNK9oceanbase3lib7AObject5labelEv:20 + 2: _ZN9oceanbase3lib7ObLabelC2IA16_cEERKT_:20 + 2: _ZN9oceanbase3lib7ObLabelaSILm16EEERS1_RAT__Kc:20 + 4: 5 + 17.1: _ZN9oceanbase3lib11AllocHelper15cells_per_blockEj:2185 + 1: 437 + 17.2: _ZNK9oceanbase3lib7AObject7is_lastEj:6118 + 2: 437 + 20: _ZNK9oceanbase3lib7AObject8phy_nextEi:952 + 2: 238 + 18: _ZNK9oceanbase3lib6AChunk18is_last_blk_offsetEiPi:36808 + 4: 208 + 4: _ZNK9oceanbase3lib6AChunk17min_blk_offset_geEi:35147 + 2: _ZNK9oceanbase3lib13ASimpleBitSetILi256EE10min_bit_geEi:35147 + 2: 208 + 7: 208 + 8: 1040 + 9: 1040 + 11.1: 55 + 12: 207 + 8: _ZN9oceanbase3lib13ASimpleBitSetILi256EE10min_bit_geEmi:15902 + 2: 1040 + 3: 205 + 4: 1040 +_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher15init_basic_infoEiRNS_12blocksstable9ObSSTableERNS0_20ObTableAccessContextEPKvRb:228692:1084 + 6: 1017 + 8: 1017 + 9: 1017 + 10: 1017 + 11: 1017 + 12: 1017 + 13: 1017 _ZNK9oceanbase7storage8ObITable16is_major_sstableEv:1033 + 13.1: 0 + 13.3: 987 + 14: 987 + 15: 987 + 16: 987 + 17: 987 + 19: 0 + 20: 0 + 21: 0 + 22: 0 + 23: 0 + 24.1: 0 + 31: 1007 + 32: 1007 + 36: 0 + 37: 0 + 38: 0 + 39: 0 + 40: 5 + 41.1: 5 + 48: 5 + 49.1: 5 + 51: 1007 + 52.1: 1007 + 53: 5 + 54.1: 5 + 55.1: 1064 _ZN9oceanbase7storage23ObReallocatedFixedArrayINS0_30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandleEE18prepare_reallocateEl:1070 + 56.1: 5 + 57.1: 1064 _ZN9oceanbase7storage23ObReallocatedFixedArrayINS0_19ObSSTableReadHandleEE18prepare_reallocateEl:1064 + 58.1: 5 + 60: 1007 + 13.4: _ZNK9oceanbase7storage8ObITable8TableKey14get_end_log_tsEv:5085 + 0: 1017 + 16.1: _ZNK9oceanbase12blocksstable13ObSSTableMeta21get_index_tree_heightEv:6909 + 0: 987 + 20: _ZNK9oceanbase6common12ObIArrayWrapINS_12blocksstable13ObDatumRowkeyEE5countEv:0 + 0: 0 + 21: _ZN9oceanbase6common3minEii:0 + 2: 0 + 37: _ZNK9oceanbase6common12ObIArrayWrapINS_12blocksstable12ObDatumRangeEE5countEv:0 + 0: 0 +_ZNK9oceanbase6common6ObAddr10serialize_EPclRl:228507:288 + 1: 276 + 3: 276 + 4: 276 + 5: 276 + 6: 276 + 7: 276 + 7.1: 276 + 7.3: 0 + 7.9: 0 + 7.10: 276 + 7.12: 0 + 7.18: 0 + 7.19: 267 + 7.21: 0 + 7.27: 0 + 7.28: 267 + 7.30: 0 + 7.36: 0 + 7.37: 267 + 7.39: 0 + 7.45: 0 + 7.46: 267 + 7.48: 0 + 7.54: 0 + 7.61: 0 + 7.62: 0 + 7.69: 0 + 7.70: 0 + 7.77: 0 + 7.78: 0 + 7.85: 0 + 7.86: 0 + 7.93: 0 + 7.94: 0 + 7.101: 0 + 8: 267 + 7.1: _ZN9oceanbase6common13serialization6encodeINS0_6ObAddr3VEREEEiPclRlRKT_:22800 + 2: _ZN9oceanbase6common13serialization11EnumEncoderILb1ENS0_6ObAddr3VEREE6encodeEPclRlRKS4_:22800 + 2: _ZN9oceanbase6common13serialization11encode_vi32EPclRli:22248 + 3: 276 + 3.1: 276 + 4: 276 + 6.1: 276 + 7: 0 + 8: 0 + 11: 276 + 4: _ZN9oceanbase6common13serialization19encoded_length_vi32Ei:3036 + 4: 276 + 6.1: 0 + 8.1: 0 + 10.1: 0 + 7.4: _ZN9oceanbase6common7ObLogKVIRA9_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 7.10: _ZN9oceanbase6common13serialization6encodeEPclRlj:71640 + 2: _ZN9oceanbase6common13serialization11encode_vi32EPclRli:71640 + 3: 276 + 3.1: 276 + 4: 276 + 6.1: 545 + 7: 545 + 8: 545 + 11: 545 + 4: _ZN9oceanbase6common13serialization19encoded_length_vi32Ei:15180 + 4: 276 + 6.1: 276 + 8.1: 276 + 10.1: 276 + 7.13: _ZN9oceanbase6common7ObLogKVIRA5_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 7.19: _ZN9oceanbase6common13serialization6encodeEPclRlj:18423 + 2: _ZN9oceanbase6common13serialization11encode_vi32EPclRli:18423 + 3: 267 + 3.1: 267 + 4: 267 + 6.1: 267 + 7: 0 + 8: 0 + 11: 267 + 4: _ZN9oceanbase6common13serialization19encoded_length_vi32Ei:3471 + 4: 267 + 6.1: 0 + 8.1: 0 + 10.1: 0 + 7.22: _ZN9oceanbase6common7ObLogKVIRA5_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 7.28: _ZN9oceanbase6common13serialization6encodeEPclRlj:17889 + 2: _ZN9oceanbase6common13serialization11encode_vi32EPclRli:17889 + 3: 267 + 3.1: 267 + 4: 267 + 6.1: 267 + 7: 0 + 8: 0 + 11: 267 + 4: _ZN9oceanbase6common13serialization19encoded_length_vi32Ei:3204 + 4: 267 + 6.1: 0 + 8.1: 0 + 10.1: 0 + 7.31: _ZN9oceanbase6common7ObLogKVIRA5_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 7.37: _ZN9oceanbase6common13serialization6encodeEPclRlj:18423 + 2: _ZN9oceanbase6common13serialization11encode_vi32EPclRli:18423 + 3: 267 + 3.1: 267 + 4: 267 + 6.1: 267 + 7: 0 + 8: 0 + 11: 267 + 4: _ZN9oceanbase6common13serialization19encoded_length_vi32Ei:3471 + 4: 267 + 6.1: 0 + 8.1: 0 + 10.1: 0 + 7.40: _ZN9oceanbase6common7ObLogKVIRA5_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 7.46: _ZN9oceanbase6common13serialization6encodeEPclRli:42720 + 2: _ZN9oceanbase6common13serialization11encode_vi32EPclRli:42720 + 3: 267 + 3.1: 267 + 4: 267 + 6.1: 267 + 7: 267 + 8: 267 + 11: 267 + 4: _ZN9oceanbase6common13serialization19encoded_length_vi32Ei:10947 + 4: 267 + 6.1: 267 + 8.1: 267 + 10.1: 0 + 7.49: _ZN9oceanbase6common7ObLogKVIRA6_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 7.56: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 7.58: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 7.60: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 7.64: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 7.66: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 7.68: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 7.72: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 7.74: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 7.76: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 7.80: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 7.82: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 7.84: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 7.88: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 7.90: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 7.92: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 7.96: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 7.98: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 7.100: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase7storage19ObSSTableRowScanner10inner_openERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextEPNS0_8ObITableEPKv:227347:1084 + 5: 1042 + 6: 1042 + 7: 1042 + 8: 0 + 9.1: 0 + 10.1: 1042 + 10.3: 1042 _ZNK9oceanbase7storage8ObITable10is_sstableEv:1046 + 10.4: 1061 + 13: 0 + 14.1: 0 + 16: 1061 + 17: 1061 + 18: 1061 + 19: 1061 + 20: 1061 + 21: 1082 _ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher4initEiRNS_12blocksstable9ObSSTableERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextEPKv:1131 + 23.1: 0 + 25.1: 0 + 26: 0 + 27.1: 0 + 28.1: 0 + 29.1: 0 + 31: 0 + 32: 982 + 32.1: 0 + 32.2: 0 + 33: 0 + 35: 1044 _ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher8prefetchEv:984 + 36.1: 0 + 38: 1044 + 43: 1044 + 44: 0 + 46: 1044 + 16: _ZNK9oceanbase7storage16ObTableIterParam18get_full_read_infoEv:4244 + 2: 1061 + 16.1: _ZNK9oceanbase7storage15ObTableReadInfo19get_index_read_infoEv:7427 + 0: 1061 + 20: _ZN9oceanbase7storage21ObIndexTreePrefetcher8is_validEv:9549 + 0: 1061 + 32: _ZNK9oceanbase7storage16ObTableIterParam19enable_pd_aggregateEv:3928 + 1: 982 +_Z19parser_alloc_bufferPvl:226837:5955 + 1: 5787 + 2: 5787 + 4: 5787 + 5: 0 + 6.1: 0 + 9: 5891 _ZN9oceanbase6common16ObArenaAllocator5allocEl:6033 + 10: 0 + 11.1: 0 + 16: 5891 +_ZN9oceanbase7storage17ObLSTabletService11delete_rowsERNS0_10ObStoreCtxERKNS0_14ObDMLBaseParamERKNS_6common8ObIArrayImEEPNS7_16ObNewRowIteratorERl:226186:290 + 6: 276 + 7: 276 + 9: 276 _ZN9oceanbase7storage14ObTabletHandleC1Ev:276 + 14: 238 + 15: 0 + 16.1: 0 + 17.1: 238 + 17.3: 239 + 18: 239 + 18.2: 239 + 19: 0 + 20.1: 0 + 22.1: 239 _ZN9oceanbase7storage17ObLSTabletService20check_and_get_tabletERKNS_6common10ObTabletIDERNS0_14ObTabletHandleEl:247 + 22.2: 266 + 23.1: 0 + 26.1: 260 _ZN9oceanbase7storage15ObDMLRunningCtxC1ERNS0_10ObStoreCtxERKNS0_14ObDMLBaseParamERNS_6common12ObIAllocatorES9_NS_12blocksstable9ObDmlFlagE:266 + 28: 266 _ZN9oceanbase8memtable13ObMemtableCtx19get_query_allocatorEv:267 + 31: 234 + 32: 234 _ZN9oceanbase7storage17ObLSTabletService23prepare_dml_running_ctxEPKNS_6common8ObIArrayImEES6_RNS0_14ObTabletHandleERNS0_15ObDMLRunningCtxE:252 + 32.1: 285 + 33.1: 0 + 36: 285 + 37.1: 224 + 37.2: 512 _ZN9oceanbase3sql16ObDASDMLIterator12get_next_rowERPNS_6common8ObNewRowE:543 + 37.3: 523 + 37.4: 523 + 38: 271 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:271 + 38.1: 237 + 39: 237 + 40: 0 + 41.1: 0 + 42.1: 237 + 43: 0 + 44.1: 0 + 45.1: 237 _ZN9oceanbase7storage17ObLSTabletService20delete_row_in_tabletERNS0_14ObTabletHandleERNS0_15ObDMLRunningCtxERKNS_6common8ObNewRowE:239 + 45.2: 222 + 46.1: 0 + 48: 222 + 52: 252 + 53: 252 + 56: 252 + 57.2: 247 + 57.3: 0 + 57.4: 0 + 57.5: 0 + 57.6: 0 + 57.10: 0 + 57.11: 0 + 57.12: 0 + 59.2: 0 + 61: 250 + 62.15: 260 + 62.16: 0 + 62.17: 0 + 62.19: 214 _ZN9oceanbase7storage14ObTabletHandleD1Ev:214 + 12: _ZN9oceanbase6common11ObTimeGuardC2EPKcl:10172 + 2: 220 + 3: 220 + 4: 220 + 6: 220 + 7: 220 + 8: 220 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:272 + 2: 272 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:272 + 17.2: _ZNK9oceanbase7storage10ObStoreCtx8is_validEv:4284 + 2: 238 + 2.1: 238 _ZNK9oceanbase8memtable15ObMvccAccessCtx8is_validEv:239 + 2: _ZNK9oceanbase5share6ObLSID8is_validEv:952 + 0: 238 + 17.4: _ZNK9oceanbase7storage10ObStoreCtx8is_writeEv:717 + 0: _ZNK9oceanbase8memtable15ObMvccAccessCtx8is_writeEv:717 + 0: 239 + 25.1: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:4522 + 2: 266 + 2.1: 0 + 2.2: 0 + 25.2: _ZNK9oceanbase5share12ObTenantBase2idEv:3990 + 0: 266 + 25.3: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:37506 + 4: 266 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:31654 + 2: 266 + 3: 266 + 4: 266 + 5: 266 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:12236 + 0: 266 + 51: _ZN9oceanbase6common16ObArenaAllocator5resetEv:16128 + 0: 252 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:11844 + 4.1: 252 + 6: 0 + 7: 0 + 8: 0 + 13: 252 + 14: 252 + 15: 252 + 18: 252 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:0 + 0: 0 + 5.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 57.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:1240 + 2: 252 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:252 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:988 + 2: 247 + 59: _ZN9oceanbase7storage15ObDMLRunningCtxD2Ev:25163 + 0: 247 _ZN9oceanbase5share6schema19ObSchemaGetterGuardD1Ev:250 + 0.3: 246 _ZN9oceanbase7storage15ObRelativeTableD1Ev:249 + 0.1: _ZN9oceanbase7storage10ObStoreRowD2Ev:1976 + 0: _ZN9oceanbase11transaction9ObTransIDD2Ev:1976 + 0: 247 + 0.2: _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema9ObColDescELl52ENS0_19ModulePageAllocatorELb0EED2Ev:17502 + 1: 247 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema9ObColDescELl52ENS0_19ModulePageAllocatorELb0EE7destroyEv:13056 + 9: 247 + 11: 0 + 13: 246 + 15: 246 + 24: 246 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema9ObColDescELl52ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 59.3: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:0 + 0: 0 + 59.5: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:8500 + 0: 250 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEED2Ev:5750 + 0: 250 + 0.3: 0 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:4000 + 4.1: 250 + 6: 0 + 7: 0 + 8: 0 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:0 + 0: 0 + 5.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 62.15: _ZN9oceanbase6common11ObTimeGuardD2Ev:4530 + 2.1: 214 + 2.2: 0 + 3.1: 0 + 3.5: 0 + 2: _ZNK9oceanbase6common11ObTimeGuard8get_diffEv:1748 + 2: 214 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:250 + 2: 250 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:250 +_ZN9oceanbase7storage17ObLSTabletService9lock_rowsERNS0_10ObStoreCtxERKNS0_14ObDMLBaseParamElNS0_10ObLockFlagEbPNS_6common16ObNewRowIteratorERl:225219:177 + 8: 159 + 10: 159 + 13: 157 _ZN9oceanbase7storage14ObTabletHandleC1Ev:157 + 18: 148 + 19: 0 + 20.1: 0 + 21.1: 148 _ZNK9oceanbase7storage10ObStoreCtx8is_validEv:148 + 21.2: 148 + 21.4: 148 + 21.6: 148 + 25: 0 + 26.1: 0 + 27.1: 148 _ZN9oceanbase7storage17ObLSTabletService20check_and_get_tabletERKNS_6common10ObTabletIDERNS0_14ObTabletHandleEl:153 + 27.2: 193 + 28.1: 0 + 31.1: 167 _ZN9oceanbase7storage15ObDMLRunningCtxC1ERNS0_10ObStoreCtxERKNS0_14ObDMLBaseParamERNS_6common12ObIAllocatorES9_NS_12blocksstable9ObDmlFlagE:175 + 33: 170 _ZN9oceanbase8memtable13ObMemtableCtx19get_query_allocatorEv:170 + 34: 173 _ZN9oceanbase8memtable13ObMemtableCtx19get_query_allocatorEv:179 + 36: 180 + 37: 180 _ZN9oceanbase7storage17ObLSTabletService23prepare_dml_running_ctxEPKNS_6common8ObIArrayImEES6_RNS0_14ObTabletHandleERNS0_15ObDMLRunningCtxE:184 + 37.1: 181 + 38.1: 0 + 40.1: 186 _ZNK9oceanbase7storage15ObRelativeTable21get_rowkey_column_idsERNS_6common8ObIArrayINS_5share6schema9ObColDescEEE:187 + 40.2: 178 + 41.1: 0 + 42.1: 178 _ZNK9oceanbase7storage15ObRelativeTable21get_rowkey_column_idsERNS_6common8ObIArrayImEE:185 + 42.2: 151 + 43.1: 0 + 46: 153 + 47: 153 + 48: 153 + 49.1: 159 + 49.2: 315 _ZN9oceanbase3sql16ObDASDMLIterator12get_next_rowERPNS_6common8ObNewRowE:323 + 49.3: 340 + 49.4: 340 + 52: 157 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:170 + 52.1: 180 + 53: 0 + 54: 0 + 54.1: 0 + 55.1: 0 + 56.2: 182 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:191 + 56.4: 0 + 57: 0 + 57.1: 0 + 57.2: 0 + 58.1: 0 + 59.1: 181 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:181 + 59.3: 0 + 60: 0 + 60.1: 0 + 60.2: 0 + 61.1: 0 + 63.2: 159 _ZN9oceanbase7storage8ObTablet8lock_rowERNS0_15ObRelativeTableERNS0_10ObStoreCtxERKNS_6common8ObNewRowE:161 + 63.3: 191 + 65.1: 0 + 68: 191 + 72: 172 + 73: 172 + 74: 172 + 77: 172 _ZN9oceanbase7storage15ObDMLRunningCtxD2Ev:172 + 77.1: 0 + 78: 166 + 79.18: 188 + 79.21: 0 + 79.25: 174 _ZN9oceanbase7storage14ObTabletHandleD1Ev:176 + 12: _ZN9oceanbase6common11ObTimeGuardC2EPKcl:20569 + 2: 157 + 3: 157 + 4: 157 + 6: 157 + 8: 157 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:159 + 2: 159 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:160 + 15: _ZN9oceanbase6common9ObSEArrayINS_5share6schema9ObColDescELl52ENS0_19ModulePageAllocatorELb0EEC2Ev:24716 + 0.1: 148 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema9ObColDescELl52ENS0_19ModulePageAllocatorELb0EEC2ElRKS5_:22052 + 2: 148 + 5: 148 + 6: 148 + 8: 148 + 17.1: 148 + 2: _ZN9oceanbase6common8ObIArrayINS_5share6schema9ObColDescEEC2EPS4_l:2664 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEEC2EPS4_l:2664 + 0: 148 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:8436 + 0: 148 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:3700 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:3700 + 2: 148 + 8: 148 + 16: _ZN9oceanbase6common9ObSEArrayImLl1ENS0_19ModulePageAllocatorELb0EEC2Ev:19980 + 0.1: 148 + 0.5: _ZN9oceanbase6common13ObSEArrayImplImLl1ENS0_19ModulePageAllocatorELb0EEC2ElRKS2_:17316 + 2: 148 + 5: 148 + 6: 148 + 8: 148 + 17.1: 148 + 2: _ZN9oceanbase6common8ObIArrayImEC2EPml:2664 + 0: _ZN9oceanbase6common12ObIArrayWrapImEC2EPml:2664 + 0: 148 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:4736 + 0: 148 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:2664 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:2664 + 2: 148 + 8: 148 + 21.3: _ZNK9oceanbase7storage10ObStoreCtx8is_writeEv:740 + 0: _ZNK9oceanbase8memtable15ObMvccAccessCtx8is_writeEv:740 + 0: 148 + 21.5: _ZNK9oceanbase7storage14ObDMLBaseParam8is_validEv:2516 + 0: 148 + 0.1: 148 + 30: _ZN9oceanbase6common11ObTimeGuard5clickEPKc:12093 + 3: 170 + 4: 170 + 5: 170 + 6: 170 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:193 + 2: 193 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:193 + 39.1: _ZN9oceanbase6common11ObTimeGuard5clickEPKc:13201 + 3: 186 + 4: 186 + 5: 186 + 6: 186 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:181 + 2: 181 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:181 + 45: _ZN9oceanbase6common11ObTimeGuard5clickEPKc:10861 + 3: 153 + 4: 153 + 5: 153 + 6: 153 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:151 + 2: 151 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:151 + 48: _ZN9oceanbase7storage8ObTablet21get_lock_wait_timeoutEll:2601 + 4: 153 + 56.3: _ZNK9oceanbase6common14ObServerConfig22enable_defensive_checkEv:1566 + 3: 174 + 3.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:0 + 2: 0 + 59.2: _ZNK9oceanbase6common14ObServerConfig22enable_defensive_checkEv:1620 + 3: 180 + 3.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:0 + 2: 0 + 62.1: _ZN9oceanbase6common11ObTimeGuard5clickEPKc:11309 + 3: 159 + 4: 159 + 5: 159 + 6: 159 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:179 + 2: 179 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:183 + 63.1: _ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE7get_objEv:1113 + 2: 159 + 70: _ZN9oceanbase6common11ObTimeGuard5clickEPKc:10208 + 3: 159 + 4: 159 + 5: 159 + 6: 159 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:191 + 2: 191 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:198 + 79.18: _ZN9oceanbase6common13ObSEArrayImplImLl1ENS0_19ModulePageAllocatorELb0EED2Ev:6002 + 1: 166 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplImLl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:3014 + 9: 166 + 11: 1 + 10: _ZN9oceanbase6common13ObSEArrayImplImLl1ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:11 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:11 + 0: 1 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 79.19: _ZN9oceanbase6common13ObSEArrayImplImLl1ENS0_19ModulePageAllocatorELb0EED2Ev:0 + 1: 0 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplImLl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:0 + 9: 0 + 11: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplImLl1ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 79.20: _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema9ObColDescELl52ENS0_19ModulePageAllocatorELb0EED2Ev:0 + 1: 0 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema9ObColDescELl52ENS0_19ModulePageAllocatorELb0EE7destroyEv:0 + 9: 0 + 11: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema9ObColDescELl52ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 79.22: _ZN9oceanbase6common11ObTimeGuardD2Ev:0 + 2.1: 0 + 2.2: 0 + 3.1: 0 + 3.5: 0 + 2: _ZNK9oceanbase6common11ObTimeGuard8get_diffEv:0 + 2: 0 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 79.24: _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema9ObColDescELl52ENS0_19ModulePageAllocatorELb0EED2Ev:5940 + 1: 165 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema9ObColDescELl52ENS0_19ModulePageAllocatorELb0EE7destroyEv:2970 + 9: 165 + 11: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema9ObColDescELl52ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 79.26: _ZN9oceanbase6common11ObTimeGuardD2Ev:3937 + 2.1: 188 + 2.2: 0 + 3.1: 0 + 3.5: 0 + 2: _ZNK9oceanbase6common11ObTimeGuard8get_diffEv:1493 + 2: 188 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:177 + 2: 177 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:183 +_ZN9oceanbase12blocksstable11ObRowWriter5writeElRKNS_7storage10ObStoreRowEPKNS_6common8ObIArrayIlEERPcRl:224651:912 + 6: 880 + 7: 880 + 8: 880 + 9: 880 + 9.1: 0 + 9.2: 0 + 10: 0 + 11.1: 0 + 14: 886 + 15.1: 0 + 16.1: 882 _ZN9oceanbase12blocksstable11ObRowWriter15inner_write_rowElRKNS_7storage10ObStoreRowEPKNS_6common8ObIArrayIlEE:918 + 18.1: 0 + 21: 882 + 22: 882 + 24.1: 883 + 24.3: 6 + 27.1: 3 + 30: 857 + 65460.1: 6 + 9.1: _ZNK9oceanbase6common12ObIArrayWrapIlE5countEv:0 + 0: 0 + 14: _ZN9oceanbase12blocksstable11ObRowWriter18alloc_buf_and_initEb:101432 + 2: 886 + 3.1: 6 + 4.1: 0 + 5.1: 886 + 6.1: 3 + 8: 3 + 3.1: _ZN9oceanbase12blocksstable11ObRowBuffer10extend_bufEv:927 + 2: 6 + 4: 6 + 5: 3 + 6.1: 3 + 7.1: 6 + 8: 0 + 9.1: 0 + 12: 6 + 15: 6 + 7.2: _ZN9oceanbase6common9ob_mallocElRKNS_3lib7ObLabelE:516 + 3: 6 + 2.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:138 + 5: 6 + 7: 6 + 4: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:264 + 3: 6 + 4: 6 + 5: 6 + 6: 6 + 7: 0 + 8: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 10: _ZN9oceanbase12blocksstable11ObRowBuffer5resetEv:0 + 2: 0 + 3: 0 + 6: 0 + 7: 0 + 4: _ZN9oceanbase6common7ob_freeEPv:0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 5.1: _ZN9oceanbase12blocksstable11ObRowBuffer7get_bufEv:3544 + 0: 886 + 5.2: _ZNK9oceanbase12blocksstable11ObRowBuffer12get_buf_sizeEv:20378 + 0: 886 + 5.3: _ZN9oceanbase12blocksstable11ObRowWriter11init_commonEPcll:53337 + 2: 886 + 3: 886 + 3.4: 886 + 4: 3 + 5.1: 3 + 7: 886 + 8: 886 + 10: 886 + 13: 886 + 15: 3 + 22: _ZN9oceanbase12blocksstable11ObRowBuffer7get_bufEv:3528 + 0: 882 + 24.2: _ZNK9oceanbase12blocksstable11ObRowBuffer17is_buf_extendableEv:48 + 0: 6 +_ZN9oceanbase3sql17ObChunkDatumStore13ChunkIteratorC2Ev:224140:1754 + 2: 1686 + 3: 1686 _ZN9oceanbase12blocksstable17ObTmpFileIOHandleC1Ev:1761 + 4: 1685 + 6: 1685 + 12: 1685 + 16: 1685 + 17: 1686 + 18: 1685 +_ZN9oceanbase3sql17ObChunkDatumStore13ChunkIteratorC1Ev:224140:1754 + 2: 1686 + 3: 1686 _ZN9oceanbase12blocksstable17ObTmpFileIOHandleC1Ev:1761 + 4: 1685 + 6: 1685 + 12: 1685 + 16: 1685 + 17: 1686 + 18: 1685 +_ZN9oceanbase6common14ObMaxWaitGuardC2EPNS0_15ObWaitEventDescEPNS0_21ObDiagnoseSessionInfoE:224105:5641 + 1: 5570 + 2: 5570 + 3: 5657 + 4: 0 + 5: 0 + 7: 0 + 8: 0 + 10: 0 + 11: 0 + 16: 5657 + 18: 5657 + 3: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:28198 + 2: 5570 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:5782 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:22628 + 2: 5657 + 6: _ZN9oceanbase6common15ObWaitEventDesc5resetEv:0 + 3: 0 + 11: _ZN9oceanbase6common21ObDiagnoseSessionInfo12get_max_waitEv:0 + 0: 0 + 12: _ZN9oceanbase6common21ObDiagnoseSessionInfo12set_max_waitEPNS0_15ObWaitEventDescE:0 + 2: 0 +_ZN9oceanbase6common14ObMaxWaitGuardC1EPNS0_15ObWaitEventDescEPNS0_21ObDiagnoseSessionInfoE:224105:5641 + 1: 5570 + 2: 5570 + 3: 5657 + 4: 0 + 5: 0 + 7: 0 + 8: 0 + 10: 0 + 11: 0 + 16: 5657 + 18: 5657 + 3: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:28198 + 2: 5570 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:5782 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:22628 + 2: 5657 + 6: _ZN9oceanbase6common15ObWaitEventDesc5resetEv:0 + 3: 0 + 11: _ZN9oceanbase6common21ObDiagnoseSessionInfo12get_max_waitEv:0 + 0: 0 + 12: _ZN9oceanbase6common21ObDiagnoseSessionInfo12set_max_waitEPNS0_15ObWaitEventDescE:0 + 2: 0 +_ZN9oceanbase7storage21ObIndexTreePrefetcherD2Ev:223854:1130 + 1: 1050 + 1.1: 2516 _ZN9oceanbase7storage22ObMicroBlockDataHandleD1Ev:1267 + 1.2: 1239 _ZN9oceanbase12blocksstable22ObIndexBlockRowScannerD1Ev:1242 + 1.3: _ZN9oceanbase6common16ObFixedArrayImplINS_5share6schema16ObColumnSchemaV2ENS0_12ObIAllocatorEED2Ev:31233 + 0: 1077 + 0.3: 0 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS_5share6schema16ObColumnSchemaV2ENS0_12ObIAllocatorEE7destroyEv:11847 + 2: 1077 + 5: 0 + 6.1: 0 + 6.3: 0 + 7: 0 + 9: 0 + 10: 0 + 12: 0 + 13: 0 + 15: 0 + 1.4: _ZN9oceanbase6common16ObFixedArrayImplIiNS0_12ObIAllocatorEED2Ev:30508 + 0: 1052 + 0.3: 0 + 0: _ZN9oceanbase6common16ObFixedArrayImplIiNS0_12ObIAllocatorEE7destroyEv:11572 + 2: 1052 + 5: 0 + 9: 0 + 10: 0 + 12: 0 + 13: 0 + 15: 0 + 1.5: _ZN9oceanbase7storage21ObMicroBlockHandleMgrD2Ev:71056 + 0: 1095 _ZN9oceanbase6common15ObFIFOAllocatorD1Ev:1115 + 0.1: _ZN9oceanbase7storage11ObHandleMgrINS0_22ObMicroBlockDataHandleENS_12blocksstable20ObMicroBlockCacheKeyELl64EED2Ev:45871 + 0: 1069 + 0: _ZN9oceanbase7storage11ObHandleMgrINS0_22ObMicroBlockDataHandleENS_12blocksstable20ObMicroBlockCacheKeyELl64EE5resetEv:29836 + 2: 1069 + 4: 1069 + 5: 0 + 6: 0 + 8: 1087 + 9: 0 + 10: 0 + 12: 1021 +_ZN9oceanbase3sql16ObFastParserBase12process_hintEv:223798:1023 + 1: 990 + 2: 990 + 4: 990 + 5: 990 + 7: 0 + 9: 0 + 12.1: 0 + 17: 0 + 21: 0 + 22.1: 0 + 26: 1018 + 4: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:24750 + 2: 990 + 2.1: 990 + 5: 990 + 5: _ZN9oceanbase3sql16ObFastParserBase19is_multi_byte_spaceEPKcllRl:31680 + 0: 990 + 0.2: 990 + 0.4: 0 + 0.5: 0 + 0.7: 0 + 0.14: 0 + 0.2: _ZN9oceanbase3sql16ObFastParserBase8is_spaceEc:22770 + 2: 990 + 2.1: 990 + 2: _ZN9oceanbase3sql16ObFastParserBase13is_valid_charEc:2970 + 2: 990 + 0.8: _ZN9oceanbase3sql16ObFastParserBase24is_utf8_multi_byte_spaceEPKcl:0 + 3: 0 + 4: 0 + 5: 0 + 0.15: _ZN9oceanbase3sql16ObFastParserBase23is_gbk_multi_byte_spaceEPKcl:0 + 3: 0 + 4: 0 + 6: _ZN9oceanbase3sql16ObFastParserBase13is_hint_beginEl:118410 + 3: 990 + 6: 992 + 9: 1028 + 10.1: 1028 + 10.3: 1028 + 11: 0 + 12: 0 + 13.1: 0 + 14: 0 + 16: 0 + 17: 0 + 18.1: 0 + 19: 0 + 26: 0 + 31: 0 + 33: 0 + 33.1: 0 + 38: 0 + 39.1: 0 + 40: 0 + 43: 0 + 5.1: _ZN9oceanbase3sql16ObFastParserBase19is_multi_byte_spaceEPKcllRl:65056 + 0: 992 + 0.2: 1994 + 0.3: 992 + 0.4: 1028 + 0.5: 0 + 0.7: 0 + 0.8: 0 + 0.9: 0 + 0.14: 0 + 0.15: 0 + 0.16: 0 + 0.2: _ZN9oceanbase3sql16ObFastParserBase8is_spaceEc:11964 + 2: 1994 + 2.1: 1994 + 0.8: _ZN9oceanbase3sql16ObFastParserBase24is_utf8_multi_byte_spaceEPKcl:0 + 4: 0 + 5: 0 + 0.15: _ZN9oceanbase3sql16ObFastParserBase23is_gbk_multi_byte_spaceEPKcl:0 + 4: 0 + 8: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:9252 + 2: 1028 + 9: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:5140 + 2: 0 + 2.1: 1028 + 11: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:0 + 2.1: 0 + 26: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql13is_search_endEv:0 + 2: 0 + 2.1: 0 + 30: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:0 + 2.1: 0 + 5: 0 + 31: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:0 + 2.1: 0 + 5: 0 + 34: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:0 + 2: 0 + 2.1: 0 + 5: 0 + 35: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:0 + 2: 0 + 2.1: 0 + 5: 0 + 42: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:0 + 2: 0 + 2.1: 0 + 5: 0 + 43: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:0 + 2: 0 + 2.1: 0 + 10: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4peekEv:0 + 2: 0 + 5: 0 + 11: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:0 + 2: 0 + 5: 0 + 12.3: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql13is_search_endEv:0 + 2: 0 + 13: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEv:0 + 0: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:0 + 2: 0 + 3: 0 + 4: 0 + 7: 0 + 8: 0 + 14: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4peekEv:0 + 2: 0 + 5: 0 + 16: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql13is_search_endEv:0 + 2: 0 + 18: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEv:0 + 0: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:0 + 2: 0 + 3: 0 + 19: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEv:0 + 0: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:0 + 2: 0 + 3: 0 + 4: 0 + 7: 0 +_ZN9oceanbase3lib4Flow11current_ctxEv:223643:5558 + 1: 5201 + 2: 5201 + 2: _ZN9oceanbase3lib4Flow12current_flowEv:150829 + 3: 5201 + 8: 0 + 12: 0 + 17: 5201 + 8.1: _ZN9oceanbase3lib4FlowC2ERNS0_13MemoryContextE:0 + 1: 0 + 3: 0 + 10: _ZN9oceanbase3lib4Flow4initEv:0 + 4: 0 + 7: 0 + 8: 0 + 9: 0 + 12: 0 + 7: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase6common18ObBucketWLockGuardD2Ev:223219:3823 + 1: 3823 + 2: 3823 + 3: 3823 _ZN9oceanbase6common12ObBucketLock6unlockEm:3830 + 3.1: 3900 + 4.1: 0 + 6: 3900 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:4182 + 6.1: 4027 + 7: 4027 + 8.1: 0 + 15.3: 4027 +_ZN9oceanbase3sql15DASOpResultIter11next_resultEv:223056:4551 + 1: 4282 + 3: 4282 + 6: 4282 + 10: 4338 + 3: _ZNK9oceanbase6common10ObObjStoreIPNS_3sql12ObIDASTaskOpERNS0_12ObIAllocatorELb0EE8Iterator6is_endEv:42820 + 0: 4282 + 4: _ZN9oceanbase6common10ObObjStoreIPNS_3sql12ObIDASTaskOpERNS0_12ObIAllocatorELb0EE8IteratorppEv:29974 + 0: 4282 + 0: _ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql12ObIDASTaskOpEEEE8get_nextEv:17128 + 0: 4282 + 6: _ZNK9oceanbase6common10ObObjStoreIPNS_3sql12ObIDASTaskOpERNS0_12ObIAllocatorELb0EE8Iterator6is_endEv:59948 + 0: 4282 +_ZN9oceanbase3lib20ObTenantCtxAllocator5allocElRKNS0_9ObMemAttrE:222782:784 + 1: 756 + 2: 756 + 3: 756 + 4.1: 756 + 4.3: 0 + 6: 0 + 7: 1 + 10: 1 + 10.1: 0 + 10.2: 0 + 10.4: 0 + 10.5: 0 + 11.1: 0 + 12.1: 0 + 18: 0 + 20: 793 + 2: _ZL12abort_unlessb:4536 + 5: 756 + 6: 0 + 3: _ZL12abort_unlessb:4536 + 5: 756 + 6: 0 + 4.1: _ZNK9oceanbase3lib7ObLabel8is_validEv:3780 + 0: 756 + 6: _ZN9oceanbase3lib9ObjectMgr12alloc_objectEmRKNS0_9ObMemAttrE:150144 + 5.1: 809 + 5.2: 774 + 5.3: 774 + 5.5: 809 + 6: 774 + 7: 774 + 8: 774 + 10.1: 787 + 16: 0 + 17: 0 + 18: 0 + 19: 0 + 20: 0 + 22.1: 0 + 24: 0 + 28: 0 + 3: _ZN9oceanbase6common8get_itidEv:21168 + 4: 756 + 5: 0 + 6: 0 + 8: 0 + 10.1: _ZN9oceanbase3lib12SubObjectMgr7trylockEv:32534 + 0: 774 + 0: _ZN9oceanbase3lib9SetLocker7trylockEv:11636 + 2: 787 + 2: _ZN9oceanbase3lib7ObMutex7trylockEv:6966 + 0: 774 _ZN9oceanbase6common12ObLatchMutex8try_lockEjPKj:787 + 11: _ZN9oceanbase3lib12SubObjectMgr12alloc_objectEmRKNS0_9ObMemAttrE:14600 + 2: 770 _ZN9oceanbase3lib9ObjectSet12alloc_objectEmRKNS0_9ObMemAttrE:794 + 12: _ZN9oceanbase3lib12SubObjectMgr6unlockEv:24320 + 0: 760 + 0: _ZN9oceanbase3lib9SetLocker6unlockEv:3800 + 2: 760 + 2: _ZN9oceanbase3lib7ObMutex6unlockEv:760 + 0: 760 _ZN9oceanbase6common12ObLatchMutex6unlockEv:797 + 16.1: _ZNK9oceanbase6common13ObCtxParallel15parallel_of_ctxEl:0 + 3: 0 + 4: 0 + 21: _ZN9oceanbase3lib12SubObjectMgr12alloc_objectEmRKNS0_9ObMemAttrE:0 + 2: 0 + 29: _ZN9oceanbase3lib12SubObjectMgr4lockEv:0 + 0: 0 + 30: _ZN9oceanbase3lib12SubObjectMgr12alloc_objectEmRKNS0_9ObMemAttrE:0 + 2: 0 + 31: _ZN9oceanbase3lib12SubObjectMgr6unlockEv:0 + 0: 0 +_ZN9oceanbase8memtable12ObMvccEngine9ensure_kvEPKNS0_13ObMemtableKeyEPNS0_9ObMvccRowE:221146:1008 + 2: 967 + 3: 967 + 5: 967 + 6: 0 + 7.1: 0 + 10: 1035 + 10.1: 1042 + 12.1: 0 + 14.1: 0 + 16: 1069 + 9: _ZN9oceanbase8memtable10ObRowLatch5GuardC2ERS1_:24175 + 0: 967 + 0: _ZN9oceanbase8memtable10ObRowLatch4lockEv:10637 + 0: 967 _ZN9oceanbase6common7ObLatch6wrlockEjlPKj:979 + 10: _ZN9oceanbase8memtable13ObQueryEngine6ensureEPKNS0_13ObMemtableKeyEPNS0_9ObMvccRowE:117284 + 2: 1035 + 3: 1035 + 4.1: 0 + 5: 0 + 6.1: 1035 + 7: 0 + 8.1: 0 + 10: 1035 + 11: 1035 + 12: 0 + 12.2: 0 + 13: 0 + 14: 1035 + 15: 1035 + 16: 943 + 17: 0 + 18.1: 0 + 18.2: 0 + 19.1: 0 + 21: 0 + 25: 90 + 26.1: 90 _ZN9oceanbase8keybtree10ObKeyBtree6insertENS_8memtable20ObStoreRowkeyWrapperERPNS2_9ObMvccRowE:92 + 26.2: 94 + 27.1: 0 + 29: 94 + 34: 1042 + 11: _ZNK9oceanbase8memtable13ObQueryEngine15get_table_indexERPNS1_10TableIndexE:33120 + 8.1: 1035 + 9: 1035 + 12.1: 1035 + 14: 0 + 17: 1035 + 12: _ZNK9oceanbase8memtable13ObMemtableKey10get_rowkeyEv:0 + 0: 0 + 12.1: _ZNK9oceanbase6common13ObStoreRowkey11get_obj_cntEv:0 + 0: _ZNK9oceanbase6common8ObRowkey11get_obj_cntEv:0 + 0: 0 + 15: _ZN9oceanbase8memtable9ObMvccRow16is_btree_indexedEv:5175 + 0: 1035 + 16: _ZN9oceanbase8memtable9ObMvccRow16is_btree_tag_delEv:1886 + 0: 943 + 17: _ZNK9oceanbase8memtable13ObMemtableKey10get_rowkeyEv:0 + 0: 0 + 18: _ZN9oceanbase8memtable13ObQueryEngine10TableIndex12get_keybtreeEv:0 + 0: 0 + 21: _ZN9oceanbase8memtable9ObMvccRow19clear_btree_tag_delEv:0 + 0: 0 + 25: _ZNK9oceanbase8memtable13ObMemtableKey10get_rowkeyEv:270 + 0: 90 + 26: _ZN9oceanbase8memtable13ObQueryEngine10TableIndex12get_keybtreeEv:720 + 0: 90 + 29: _ZN9oceanbase8memtable9ObMvccRow17set_btree_indexedEv:470 + 0: 94 + 14: _ZN9oceanbase8memtable10ObRowLatch5GuardD2Ev:7294 + 0: 1042 + 0.2: 0 + 0: _ZN9oceanbase8memtable10ObRowLatch6unlockEv:3126 + 0: 1042 _ZN9oceanbase6common7ObLatch6unlockEPKj:1105 +_ZN9oceanbase3lib21ObMallocCallbackGuardC2ERNS0_16ObMallocCallbackE:220895:4999 + 1: 4875 + 2: 4875 + 3: 4875 + 8: 5027 + 6: _ZN9oceanbase3lib16ObMallocCallback13insert_beforeEPS1_:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 +_ZN9oceanbase3lib21ObMallocCallbackGuardC1ERNS0_16ObMallocCallbackE:220895:4999 + 1: 4875 + 2: 4875 + 3: 4875 + 8: 5027 + 6: _ZN9oceanbase3lib16ObMallocCallback13insert_beforeEPS1_:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 +_ZN9oceanbase3omt10ObThWorker20check_qtime_throttleEv:220748:5027 + 1: 5017 + 3: 5017 + 5: 5017 + 5.1: 0 + 6: 0 + 6.1: 0 + 7: 0 + 8: 0 + 10.1: 0 + 17: 5017 + 7: _ZNK9oceanbase3omt10ObThWorker20get_query_start_timeEv:0 + 2: 0 +_ZN9oceanbase3sql13ObDASUpdateOp7open_opEv:220466:402 + 1: 384 + 2: 384 + 3: 384 + 4: 384 + 6: 380 + 8: 380 + 10: 380 + 11: 380 + 14: 380 + 15: 380 + 16: 380 _ZN9oceanbase3sql20ObDASIndexDMLAdaptorILi3ENS0_16ObDASUpdIteratorEE12write_tabletERS2_Rl:380 + 16.1: 371 + 18.1: 0 + 21: 371 + 23: 0 + 24.3: 371 _ZN9oceanbase3sql20ObDASIndexDMLAdaptorILi3ENS0_16ObDASUpdIteratorEED2Ev:374 + 24.4: 0 + 4: _ZN9oceanbase3sql16ObDASUpdIteratorC2EPKNS0_13ObDASUpdCtDefERNS0_16ObDASWriteBufferERNS_6common12ObIAllocatorE:19968 + 3: 384 + 4: 384 + 6: 384 + 8: 384 + 9: 384 + 0: _ZN9oceanbase6common16ObNewRowIteratorC2Ev:2688 + 0: 384 + 5: _ZN9oceanbase3sql20ObDASIndexDMLAdaptorILi3ENS0_16ObDASUpdIteratorEEC2Ev:114894 + 2: 384 + 10: 384 + 8: _ZN9oceanbase5share6ObLSIDC2Ev:4224 + 0: 384 + 11: _ZN9oceanbase7storage14ObDMLBaseParamC2Ev:95694 + 2: 384 + 3: 384 + 5: 384 + 6: 384 + 8: 384 + 11: 384 + 14: 378 + 15: 378 _ZN9oceanbase11transaction16ObTxReadSnapshotC1Ev:388 + 13: _ZN9oceanbase6common9ObSEArrayINS_11transaction18ObEncryptMetaCacheELl1ENS0_19ModulePageAllocatorELb0EEC2Ev:63168 + 0.1: 378 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction18ObEncryptMetaCacheELl1ENS0_19ModulePageAllocatorELb0EEC2ElRKS4_:56364 + 2: 384 + 5: 378 + 6: 378 + 8: 378 + 17.1: 378 + 2: _ZN9oceanbase6common8ObIArrayINS_11transaction18ObEncryptMetaCacheEEC2EPS3_l:6804 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_11transaction18ObEncryptMetaCacheEEC2EPS3_l:6804 + 0: 378 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:21546 + 0: 378 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:9450 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:9450 + 2: 378 + 8: 378 + 17.1: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction18ObEncryptMetaCacheELl1ENS0_19ModulePageAllocatorELb0EED2Ev:0 + 1: 0 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction18ObEncryptMetaCacheELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:0 + 9: 0 + 11: 0 + 13: 0 + 15: 0 + 24: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction18ObEncryptMetaCacheELl1ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 12.3: _ZN9oceanbase6common10ObTabletIDD2Ev:0 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:0 + 0: 0 + 12: _ZN9oceanbase6common10ObTabletIDaSERKS1_:5700 + 0: 380 +_ZN9oceanbase6common10ObObjStoreIPNS_3sql14ObDASBaseRtDefERNS0_12ObIAllocatorELb0EED2Ev:220172:5449 + 0: 5352 + 0.1: 5330 + 0.3: 10 + 0: _ZN9oceanbase6common10ObObjStoreIPNS_3sql14ObDASBaseRtDefERNS0_12ObIAllocatorELb0EE7destroyEv:172034 + 2.1: 10 + 4: 10 + 5: 10 + 2: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql14ObDASBaseRtDefEEEE12remove_firstEv:64224 + 2: 5352 + 65347: 5352 + 2: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql14ObDASBaseRtDefEEEE6removeEPS6_:10704 + 3: 5352 + 2.5: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql14ObDASBaseRtDefEEEE12remove_firstEv:90 + 2: 10 + 2: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql14ObDASBaseRtDefEEEE6removeEPS6_:20 + 3: 10 +_ZN9oceanbase7storage21ObFuseRowCacheFetcher4initERKNS_6common10ObTabletIDEPKNS0_15ObTableReadInfoEl:219120:3465 + 3: 3320 + 4: 3320 + 5: 3320 + 6: 0 + 7.1: 0 + 10: 3320 + 11: 3320 + 12: 3320 + 14: 3320 + 9: _ZN9oceanbase6common10ObTabletIDaSERKS1_:13280 + 0: 3320 +_ZN9oceanbase4palf14LogGroupBuffer4fillERKNS0_3LSNEPKcl:218007:505 + 3: 481 + 4: 481 + 5: 481 + 6: 481 _ZN9oceanbase4palfplERKNS0_3LSNEm:487 + 7: 510 _ZN9oceanbase4palf3LSNC1Ev:527 + 7.1: 525 _ZN9oceanbase4palf3LSNC1Ev:527 + 11.1: 532 + 12: 532 + 13: 0 + 14.1: 532 _ZNK9oceanbase4palf3LSN8is_validEv:538 + 14.2: 514 + 15: 0 + 16.1: 0 + 17.1: 514 _ZNK9oceanbase4palf3LSNltERKS1_:537 + 17.2: 544 + 18: 0 + 19.1: 0 + 20.1: 537 _ZNK9oceanbase4palf3LSNleERKS1_:550 + 20.2: 559 + 22: 4 + 23.1: 4 + 24.1: 547 _ZN9oceanbase4palfplERKNS0_3LSNEm:553 + 24.2: 527 _ZNK9oceanbase4palf3LSNgtERKS1_:531 + 24.3: 536 + 26: 4 + 27.1: 4 + 28.1: 536 _ZNK9oceanbase4palf14LogGroupBuffer15get_buffer_pos_ERKNS0_3LSNERl:546 + 28.2: 539 + 29.1: 0 + 31: 539 + 32: 539 + 32.1: 539 + 33: 539 + 34: 543 + 36: 4 + 38.1: 549 _ZZN9oceanbase4palf14LogGroupBuffer4fillERKNS0_3LSNEPKclENK5$_605clES6_.1598dc2348996c1ae1caea6120522988:557 + 41: 556 + 42.14: 556 + 8: _ZNK9oceanbase4palf14LogGroupBuffer21get_buffer_start_lsn_ERNS0_3LSNE:10544 + 2: 526 _ZN9oceanbase4palf3LSNC1Em:541 + 2.4: 528 _ZN9oceanbase4palf3LSNaSERKS1_:578 + 9: _ZNK9oceanbase4palf14LogGroupBuffer14get_reuse_lsn_ERNS0_3LSNE:11568 + 2: 552 _ZN9oceanbase4palf3LSNC1Em:555 + 2.4: 550 _ZN9oceanbase4palf3LSNaSERKS1_:570 + 10: _ZNK9oceanbase4palf14LogGroupBuffer24get_reserved_buffer_sizeEv:5852 + 3: 532 + 11: _ZNK9oceanbase4palf14LogGroupBuffer25get_available_buffer_sizeEv:2128 + 3: 532 + 32: _ZN9oceanbase6common3minEll:3773 + 2: 539 +_ZN9oceanbase11transaction14ObTransService41fetch_cflict_tx_ids_from_mem_ctx_to_desc_ERNS_8memtable15ObMvccAccessCtxE:217379:1141 + 1: 1074 + 3: 1074 + 5: 1074 + 6: 0 + 7.1: 0 + 8.1: 1074 _ZN9oceanbase8memtable13ObMemtableCtx22get_conflict_trans_idsERNS_6common8ObIArrayINS_11transaction16ObTransIDAndAddrEEE:1075 + 8.2: 1069 + 9.1: 0 + 10.1: 1069 _ZN9oceanbase8memtable13ObMemtableCtx24reset_conflict_trans_idsEv:1143 + 11.1: 1055 _ZN9oceanbase11transaction8ObTxDesc18merge_conflict_txsERKNS_6common8ObIArrayINS0_16ObTransIDAndAddrEEE:1114 + 11.2: 1088 + 12.1: 0 + 14.1: 1088 _ZZN9oceanbase11transaction14ObTransService41fetch_cflict_tx_ids_from_mem_ctx_to_desc_ERNS_8memtable15ObMvccAccessCtxEENK6$_1014clEPKc.93feb755617c21c32b229b78773c290c:1103 + 16.5: 1106 _ZN9oceanbase6common11ObArrayImplINS_11transaction16ObTransIDAndAddrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEED2Ev:1192 + 16.6: 0 + 4: _ZN9oceanbase6common7ObArrayINS_11transaction16ObTransIDAndAddrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEEC2Ev:96660 + 0.1: 1074 + 0.5: _ZN9oceanbase6common11ObArrayImplINS_11transaction16ObTransIDAndAddrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEEC2ElRKS4_:77328 + 3: 1074 + 4: 1074 + 7.1: 1074 + 2: _ZN9oceanbase6common8ObIArrayINS_11transaction16ObTransIDAndAddrEEC2Ev:7518 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_11transaction16ObTransIDAndAddrEEC2Ev:7518 + 0: 1074 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:48330 + 0: 1074 +_ZN9oceanbase3sql17ObChunkDatumStore13row_copy_sizeERKNS_6common8ObIArrayIPNS0_6ObExprEEERNS0_9ObEvalCtxERl:216946:1314 + 2: 1242 + 3: 1242 + 4: 1242 + 5: 1242 + 6: 1242 + 7.1: 1268 + 8: 1233 + 9: 1233 + 10.1: 1268 + 11.1: 0 + 13: 1268 + 16: 1247 + 6: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE5countEv:4968 + 0: 1242 + 8: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:4932 + 6: 1233 + 10.1: _ZNK9oceanbase3sql6ObExpr4evalERNS0_9ObEvalCtxERPNS_6common7ObDatumE:46279 + 4: 1233 + 6: 1233 + 7: 1233 + 9: 1233 + 10: 23 + 10.1: 0 + 11: 23 + 13: 0 + 15.1: 1248 + 15.2: 0 + 17: 0 + 18: 0 + 20: 0 + 21: 0 + 22: 0 + 24: 0 + 9: _ZNK9oceanbase3sql6ObExpr15is_batch_resultEv:4932 + 0: 1233 + 11: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:92 + 0: 23 + 24: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:0 + 0: 0 +easy_buf_create:216941:3846 + 1: 3793 + 4: 3793 easy_pool_calloc:3777 + 8: 2660 + 9: 38 + 11: 2660 easy_pool_alloc_ex:2622 + 14: 1852 + 15: 1852 + 16: 1852 + 17: 1852 + 18: 1852 + 19.1: 1852 + 22: 1852 +_ZNK9oceanbase7storage13ObLSTxService18get_read_store_ctxERKNS_11transaction16ObTxReadSnapshotEblRNS0_10ObStoreCtxE:216836:4737 + 4: 4573 + 5: 4573 + 6: 4573 + 7: 27 + 8.1: 27 + 11: 4573 _ZN9oceanbase11transaction14ObTransService18get_read_store_ctxERKNS0_16ObTxReadSnapshotEblRNS_7storage10ObStoreCtxE:4605 + 13: 4236 + 10: _ZN9oceanbase5share6ObLSIDaSERKS1_:32011 + 0: 4573 +_ZNK9oceanbase12blocksstable22ObIndexBlockRowScanner12end_of_blockEv:216578:5565 + 1: 5384 + 2: 5384 + 2.1: 0 + 3: 5384 + 3.1: 5442 + 4: 5442 +_ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScanner5reuseEv:216137:2100 + 1: 2033 + 4: 2033 _ZN9oceanbase6common16ObArenaAllocator5reuseEv:2066 + 5: 1992 + 6: 1992 + 8: 1992 + 9: 1992 + 2: _ZN9oceanbase12blocksstable23ObIMicroBlockRowScanner5reuseEv:91485 + 2: 2033 + 3: 2033 + 5: 2033 + 7: 2033 + 9: 2033 + 3: _ZN9oceanbase7storage8ObNopPos5resetEv:22363 + 2: 2033 +_ZN9oceanbase6common16ObFixedArrayImplINS_7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandleENS0_12ObIAllocatorEE16prepare_allocateEl:215941:1040 + 1: 965 + 2: 965 + 3: 965 + 4: 10 + 5.1: 10 + 5.5: 10 + 5.9: 10 + 6.1: 1021 _ZN9oceanbase6common16ObFixedArrayImplINS_7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandleENS0_12ObIAllocatorEE7reserveEl:987 + 7.1: 10 + 7.5: 10 + 7.9: 10 + 9: 10 + 10: 1021 + 10.1: 3047 + 10.3: 3047 + 11: 3057 _ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandleC2Ev:3260 + 14: 1040 + 14.3: 1040 + 15: 1040 + 15.3: 1040 + 17: 1040 + 5.1: _ZN9oceanbase6common8ObLogger10get_loggerEv:920 + 2: 10 + 2.1: 10 + 2.2: 10 + 2.3: 10 + 2.6: 10 + 5.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:340 + 0: 10 + 5.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:420 + 0: 10 + 7.1: _ZN9oceanbase6common8ObLogger10get_loggerEv:920 + 2: 10 + 2.1: 10 + 2.2: 10 + 2.3: 10 + 2.6: 10 + 7.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:340 + 0: 10 + 7.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:420 + 0: 10 +_ZN9oceanbase11transaction9tablelock11get_lock_idERKNS_6common10ObTabletIDERNS1_8ObLockIDE:215832:1145 + 2: 1058 + 3: 1058 + 4: 1058 + 5: 0 + 6.1: 0 + 7.1: 1058 + 9.1: 0 + 11: 1058 + 4: _ZNK9oceanbase6common10ObTabletID8is_validEv:6348 + 0: 1058 + 7.2: _ZN9oceanbase11transaction9tablelock8ObLockID3setERKNS1_13ObLockOBJTypeEm:134366 + 2: 1058 + 4.1: 1058 + 5: 0 + 6.1: 0 + 7: 0 + 8: 1058 + 9: 1058 + 11: 1058 + 12: 1058 + 4.1: _ZN9oceanbase6common11is_valid_idEm:4232 + 2: 1058 + 11: _ZNK9oceanbase11transaction9tablelock8ObLockID10inner_hashEv:90988 + 3: _ZN9oceanbase6common10murmurhashEPKvim:25392 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:25392 + 37: 0 + 41: 1058 + 42: 1058 + 43: 1058 + 4: _ZN9oceanbase6common10murmurhashEPKvim:65596 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:65596 + 5: 1058 + 11: 0 + 13: 1058 + 14: 1058 + 15: 1058 + 17: 1058 + 18: 1058 + 41: 1058 + 42: 1058 + 43: 1058 +_ZN9oceanbase3sql6ObStmt13is_write_stmtENS0_4stmt8StmtTypeEb:215118:4995 + 1: 4921 + 2: 5600 _ZN9oceanbase3sql6ObStmt11is_ddl_stmtENS0_4stmt8StmtTypeEb:4943 + 2.2: 5493 + 3: 5600 +_ZN9oceanbase6common13ObSEArrayImplIPcLl1ENS0_19ModulePageAllocatorELb1EE9push_backERKS2_:214866:4890 + 2: 4671 + 5: 4671 + 6: 0 + 12: 0 + 15: 0 + 15.1: 4671 + 16: 4671 + 19: 4671 + 15.1: _ZN9oceanbase6common9ObClassOpIPcLb1EE20construct_and_assignERKS2_RS2_:32697 + 2: 4671 +_ZNK9oceanbase8observer11ObSMHandler23is_in_ssl_connect_phaseEP17easy_connection_t:214841:4799 + 1: 4765 + 3: 4765 + 4: 4765 + 4.1: 4765 + 5: 16 + 6.1: 16 + 11: 4765 + 9: _ZN9oceanbase8observer14ObSMConnection23is_in_ssl_connect_phaseEv:33355 + 0: 4765 +_ZN9oceanbase7obmysql24ObEasySqlRequestOperator25alloc_sql_response_bufferEPNS_3rpc9ObRequestEl:214662:5351 + 1: 5111 + 4: 5111 + 4.1: 5111 + 4.2: 5111 + 5.1: 0 + 7: 5111 easy_pool_alloc_ex:5196 + 10: 0 + 3: _ZNK9oceanbase3rpc9ObRequest10get_ez_reqEv:35777 + 2: 5111 +_ZN9oceanbase11transaction14ObPartTransCtx4initEmRKNS_6common6ObAddrEjRKNS0_9ObTransIDElRKNS_5share6ObLSIDEmPNS0_14ObTransServiceEmlbPNS0_12ObLSTxCtxMgrEb:213481:271 + 13: 260 + 14: 260 + 16: 260 + 19: 263 _ZN9oceanbase11transaction14ObPartTransCtx13default_init_Ev:272 + 22: 270 + 23.1: 1 + 24: 1 + 25.1: 270 + 25.2: 270 + 25.5: 270 + 26: 270 + 28.1: 1 + 30: 1 + 33: 270 + 34: 270 + 35: 270 _ZN9oceanbase11transaction7CtxLock4initEPNS0_10ObTransCtxE:288 + 35.1: 266 + 36.1: 1 + 37.1: 266 + 37.2: 266 + 38: 266 + 38.2: 266 + 39.1: 1 + 40: 1 + 41.2: 268 + 42.1: 1 + 43.1: 268 _ZN9oceanbase11transaction14ObPartTransCtx18init_memtable_ctx_EmRKNS_5share6ObLSIDE:288 + 43.2: 317 + 44.1: 1 + 45.1: 317 _ZN9oceanbase11transaction17ObCLogEncryptInfo4initEv:324 + 45.2: 320 + 46.1: 1 + 47.1: 320 _ZN9oceanbase11transaction14ObPartTransCtx13init_log_cbs_ERKNS_5share6ObLSIDERKNS0_9ObTransIDE:331 + 47.2: 258 + 48.1: 1 + 49.1: 258 + 49.2: 258 _ZN9oceanbase11transaction11ObCtxTxData4initEPNS0_12ObLSTxCtxMgrEl:268 + 49.3: 250 + 50.1: 1 + 54: 1 + 55: 250 + 56: 250 + 57: 250 + 59: 250 + 60.1: 250 + 61: 250 + 62: 250 + 63: 250 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:251 + 63.2: 226 + 66: 226 + 67: 226 + 69: 226 + 70: 226 + 71: 226 + 72: 226 + 75.1: 226 + 76: 1 + 78: 228 _ZN9oceanbase8memtable13ObMemtableCtx11trans_beginEv:231 + 81: 229 _ZN9oceanbase8memtable13ObMemtableCtx13set_trans_ctxEPNS_11transaction14ObPartTransCtxE:251 + 84: 256 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:255 + 84.2: 247 + 85: 248 + 86.1: 1 + 86.2: 1 + 87: 1 + 88.1: 1 + 93: 248 + 96.1: 248 + 96.4: 1 + 96.5: 1 + 96.10: 1 + 96.11: 1 + 96.12: 1 + 96.14: 1 + 96.15: 1 + 96.16: 1 + 96.17: 1 + 96.18: 1 + 96.19: 1 + 96.22: 1 + 96.23: 1 + 96.24: 1 + 101.1: 249 _ZZN9oceanbase11transaction14ObPartTransCtx4initEmRKNS_6common6ObAddrEjRKNS0_9ObTransIDElRKNS_5share6ObLSIDEmPNS0_14ObTransServiceEmlbPNS0_12ObLSTxCtxMgrEbENK4$_55clEPKc.93feb755617c21c32b229b78773c290c:248 + 103: 224 + 104.15: 266 _ZN9oceanbase11transaction22CtxTransTableLockGuardD1Ev:223 + 104.17: 1 + 16: _ZN9oceanbase11transaction22CtxTransTableLockGuardC2ERNS0_7CtxLockERNS0_17TransTableSeqLockEb:6085 + 3: 292 + 5: 292 _ZN9oceanbase11transaction17TransTableSeqLock10write_lockEv:295 + 6.1: 1 + 3: _ZN9oceanbase11transaction12CtxLockGuardC2ERNS0_7CtxLockEb:2860 + 0: 260 + 0.1: 260 _ZN9oceanbase11transaction7CtxLock4lockEv:265 + 25.1: _ZN9oceanbase6common18is_valid_tenant_idEm:2160 + 2: 270 + 25.3: _ZNK9oceanbase11transaction9ObTransID8is_validEv:1080 + 0: 270 + 27.2: _ZNK9oceanbase5share6ObLSID8is_validEv:2970 + 0: 270 + 32: _ZN9oceanbase5share6ObLSIDaSERKS1_:1890 + 0: 270 + 37.1: _ZN9oceanbase11transaction14ObTransService13get_trans_rpcEv:1862 + 0: 266 + 41.1: _ZN9oceanbase11transaction18ObTransTimeoutTask4initEPNS0_10ObTransCtxE:5886 + 4: 266 + 5.1: 1 + 11: 268 + 12: 268 + 49.1: _ZNK9oceanbase11transaction9ObTransIDcvlEv:774 + 0: 258 + 57.1: _ZN9oceanbase6common6ObAddraSERKS1_:7250 + 1: 250 + 2: 250 + 3: 250 + 58: _ZN9oceanbase11transaction9ObTransIDaSERKS1_:1750 + 1: 250 + 60: _ZN9oceanbase6common16ObClockGenerator8getClockEv:5279 + 4: 250 + 5.1: 1 + 8: 250 + 6: _ZN9oceanbase6common16ObClockGenerator6get_usEv:10 + 2: 1 + 65: _ZN9oceanbase6common6ObAddraSERKS1_:7684 + 1: 226 + 2: 226 + 3: 226 + 73: _ZN9oceanbase11transaction14ObPartTransCtx14set_role_stateEb:2260 + 2: 226 + 82: _ZNK9oceanbase11transaction14ObPartTransCtx12is_follower_Ev:3248 + 0: 232 + 82.1: _ZN9oceanbase8memtable10ObIMvccCtx14set_for_replayEb:1860 + 0: 232 _ZN9oceanbase8memtable18ObTransCallbackMgr14set_for_replayEb:242 + 96.3: _ZN9oceanbase3lib20is_trace_log_enabledEv:12 + 2: 1 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:7 + 2: 1 + 96.5: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EE9add_eventERb:85 + 2: 1 + 3.1: 1 + 7: 1 + 12: 1 + 13: 1 + 96.7: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:27 + 0: 1 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:5 + 2: 1 + 96.9: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:40 + 0: 1 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:5 + 2: 1 + 96.10: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EE10check_lockEv:40 + 2: 1 + 3: _ZN9oceanbase3lib7ObMutex4lockEv:31 + 0: 1 + 96.12: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EE10get_bufferEv:7 + 0: 1 + 96.13: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EE14get_buffer_posEv:7 + 0: 1 + 96.14: _ZNK9oceanbase5share6ObLSID2idEv:7 + 0: 1 + 96.15: _ZNK9oceanbase11transaction15ObTransHashLinkINS0_10ObTransCtxEE7get_refEv:3 + 0: 1 + 96.24: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EE12check_unlockEv:23 + 2: 1 + 3: _ZN9oceanbase3lib7ObMutex6unlockEv:14 + 0: 1 +_ZN9oceanbase6common16ObTotalWaitGuardC2EPNS0_15ObWaitEventStatEPNS0_21ObDiagnoseSessionInfoE:212710:5551 + 1: 5377 + 2: 5377 + 3: 5219 + 4: 0 + 5: 0 + 7: 0 + 8: 0 + 10: 0 + 11: 0 + 16: 5219 + 18: 5219 + 3: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:26253 + 2: 5377 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:5460 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:20876 + 2: 5219 + 6: _ZN9oceanbase6common15ObWaitEventStat5resetEv:0 + 3: 0 + 11: _ZN9oceanbase6common21ObDiagnoseSessionInfo14get_total_waitEv:0 + 0: 0 + 12: _ZN9oceanbase6common21ObDiagnoseSessionInfo14set_total_waitEPNS0_15ObWaitEventStatE:0 + 2: 0 +_ZN9oceanbase6common16ObTotalWaitGuardC1EPNS0_15ObWaitEventStatEPNS0_21ObDiagnoseSessionInfoE:212710:5551 + 1: 5377 + 2: 5377 + 3: 5219 + 4: 0 + 5: 0 + 7: 0 + 8: 0 + 10: 0 + 11: 0 + 16: 5219 + 18: 5219 + 3: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:26253 + 2: 5377 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:5460 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:20876 + 2: 5219 + 6: _ZN9oceanbase6common15ObWaitEventStat5resetEv:0 + 3: 0 + 11: _ZN9oceanbase6common21ObDiagnoseSessionInfo14get_total_waitEv:0 + 0: 0 + 12: _ZN9oceanbase6common21ObDiagnoseSessionInfo14set_total_waitEPNS0_15ObWaitEventStatE:0 + 2: 0 +_ZN9oceanbase5share16ObServerLocality6assignERKS1_:212050:534 + 1: 515 + 2: 515 + 3: 530 + 4.1: 0 + 5.1: 530 + 6.1: 0 + 7.1: 518 + 8.1: 0 + 11: 487 + 12: 487 + 13: 487 + 14: 487 + 15: 487 + 16: 487 + 17: 487 + 18: 487 + 20: 487 + 3: _ZN9oceanbase6common19ObFixedLengthStringILl128EE6assignERKS2_:35510 + 2: 515 + 3: 515 + 4: 530 + 5.1: 0 + 8: 0 + 4: _ZN9oceanbase6common19ObFixedLengthStringILl128EE6assignEPKc:23560 + 2: 515 + 6: 545 + 7: 545 + 8: 0 + 9.1: 0 + 11: 0 + 12: 0 + 14: 545 + 15: 530 + 18: 0 + 5.1: _ZN9oceanbase6common19ObFixedLengthStringILl128EE6assignERKS2_:32570 + 2: 530 + 4: 518 + 5.1: 0 + 8: 0 + 4: _ZN9oceanbase6common19ObFixedLengthStringILl128EE6assignEPKc:25234 + 2: 530 + 6: 546 + 7: 546 + 8: 0 + 9.1: 0 + 11: 0 + 12: 0 + 14: 546 + 15: 518 + 18: 0 + 7.1: _ZN9oceanbase6common19ObFixedLengthStringILl128EE6assignERKS2_:31777 + 2: 518 + 4: 487 + 5.1: 0 + 8: 0 + 4: _ZN9oceanbase6common19ObFixedLengthStringILl128EE6assignEPKc:24742 + 2: 518 + 6: 543 + 7: 543 + 8: 0 + 9.1: 0 + 11: 0 + 12: 0 + 14: 543 + 15: 487 + 18: 0 + 10: _ZN9oceanbase6common6ObAddraSERKS1_:12662 + 1: 487 + 2: 487 + 3: 487 +_ZN9oceanbase7storage21ObMicroBlockHandleMgr4initEbbRNS_6common12ObIAllocatorE:211656:1095 + 4: 1058 + 5: 1058 + 7: 1114 _ZN9oceanbase7storage11ObHandleMgrINS0_22ObMicroBlockDataHandleENS_12blocksstable20ObMicroBlockCacheKeyELl64EE4initEbbRNS_6common12ObIAllocatorE:1113 + 8.1: 10 + 9.1: 1114 _ZN9oceanbase3lib17ObMallocAllocator12get_instanceEv:1146 + 9.2: 1125 _ZN9oceanbase6common15ObFIFOAllocator4initEPNS0_12ObIAllocatorElRKNS_3lib9ObMemAttrElll:1175 + 13.1: 10 + 15: 1087 + 6: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:20762 + 2: 1058 + 2.1: 10 + 2.2: 10 + 6.1: _ZNK9oceanbase5share12ObTenantBase2idEv:15870 + 0: 1058 + 6.3: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:31740 + 5: 1058 + 6: 1058 + 7: 1058 + 8: 1058 +ev_time:211030:4881 + 1: 4881 + 13: 4881 + 14: 4918 +_ZN9oceanbase7storage15ObTableHandleV2C2Ev:210528:13290 + 1: 13158 + 2: 13158 + 4: 13158 +_ZN9oceanbase7storage15ObTableHandleV2C1Ev:210528:13290 + 1: 13158 + 2: 13158 + 4: 13158 +_ZNK9oceanbase3sql18ObBasicSessionInfo25get_capture_plan_baselineERb:210408:4818 + 1: 4782 + 2: 4782 + 3: 4782 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache40get_optimizer_capture_sql_plan_baselinesEv:153024 + 0: 4782 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache40get_optimizer_capture_sql_plan_baselinesEb:105204 + 0: 4782 +_ZN9oceanbase12blocksstable18ObMicroBlockReader10find_boundERKNS0_13ObDatumRowkeyEblRlRb:210256:2012 + 6: 1943 + 7: 1943 + 8: 1943 + 9: 5 + 10.1: 5 + 11.1: 1943 + 11.3: 1943 + 11.4: 1943 + 12: 5 + 13.1: 5 + 15.1: 1943 _ZN9oceanbase12blocksstable23ObIMicroBlockFlatReader11find_bound_ERKNS0_13ObDatumRowkeyEbllRKNS_7storage15ObTableReadInfoERlRb:2027 + 23.1: 5 + 25: 1940 + 11.1: _ZNK9oceanbase12blocksstable13ObDatumRowkey8is_validEv:13601 + 0: 1943 +_ZN9oceanbase11transaction8ObTxDesc12update_part_ERNS0_8ObTxPartEb:210166:1029 + 1: 932 + 2: 932 + 4: 932 + 4.1: 932 + 6: 642 + 8: 642 + 9: 0 + 10.1: 642 + 11: 2 + 12: 2 + 13.1: 2 + 15: 642 + 17: 642 + 18: 642 + 19: 642 + 25: 272 + 26: 272 + 27: 272 + 28: 0 + 29.1: 0 + 31: 272 _ZN9oceanbase11transaction8ObTxDesc18implicit_start_tx_Ev:271 + 34: 0 + 37: 907 + 4: _ZNK9oceanbase6common12ObIArrayWrapINS_11transaction8ObTxPartEE5countEv:6524 + 0: 932 + 5: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction8ObTxPartELl4ENS0_19ModulePageAllocatorELb0EEixEl:14790 + 2.1: 642 + 2.2: 642 + 3.1: 0 + 5: 642 + 6: _ZNK9oceanbase5share6ObLSIDeqERKS1_:4494 + 0: 642 + 16: _ZN9oceanbase6common6ObAddraSERKS1_:16692 + 1: 642 + 2: 642 + 3: 642 + 17: _ZSt3minIlERKT_S2_S2_:7704 + 5: 642 + 18: _ZSt3maxIlERKT_S2_S2_:7704 + 5: 642 + 27: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction8ObTxPartELl4ENS0_19ModulePageAllocatorELb0EE9push_backERKS3_:22032 + 5: 272 + 6: 0 + 12: 0 + 15: 0 + 15.1: 272 + 16: 272 + 15.1: _ZN9oceanbase6common9ObClassOpINS_11transaction8ObTxPartELb0EE20construct_and_assignERKS3_RS3_:12784 + 3: _ZN9oceanbase6common16construct_assignINS_11transaction8ObTxPartEEEiRT_RKS4_:12784 + 2: _ZN9oceanbase6common21construct_assign_wrapINS_11transaction8ObTxPartEEEiRT_RKS4_NS0_8BoolTypeILb0EEE:12784 + 2: _ZN9oceanbase11transaction8ObTxPartC2ERKS1_:12784 + 0: 272 + 0: _ZN9oceanbase5share6ObLSIDC2ERKS1_:2992 + 0: 272 +_ZN9oceanbase11transaction9tablelock12ObOBJLockMap4lockERKNS1_11ObLockParamERNS_7storage10ObStoreCtxERKNS1_13ObTableLockOpERKhRNS_6common4hash19ObIteratableHashSetINS0_9ObTransIDELm16EEE:210106:819 + 6: 759 + 7: 759 + 8: 759 + 10: 759 + 11: 0 + 12.1: 0 + 13.1: 759 + 14: 0 + 15.1: 0 + 18: 759 + 19: 759 _ZN9oceanbase11transaction9tablelock12ObOBJLockMap32get_or_create_obj_lock_with_ref_ERKNS1_8ObLockIDERPNS1_9ObOBJLockE:759 + 21.1: 0 + 22.1: 829 _ZN9oceanbase11transaction9tablelock9ObOBJLock4lockERKNS1_11ObLockParamERNS_7storage10ObStoreCtxERKNS1_13ObTableLockOpERKhRNS_6common8ObMallocERNSE_4hash19ObIteratableHashSetINS0_9ObTransIDELm16EEE:782 + 31.1: 0 + 36: 829 + 36.1: 0 + 38: 0 + 40: 829 + 43: 850 + 43.1: 0 + 43.2: 0 + 43.4: 0 + 43.5: 0 + 44.1: 0 + 47.1: 0 + 51: 852 + 13.1: _ZNK9oceanbase11transaction9tablelock13ObTableLockOp8is_validEv:54648 + 2: 759 + 3: 759 + 4: 759 + 5: 759 + 6: 759 + 2: _ZNK9oceanbase11transaction9tablelock8ObLockID8is_validEv:12903 + 2: 759 + 2: _ZN9oceanbase6common11is_valid_idEm:3795 + 2: 759 + 3: _ZN9oceanbase11transaction9tablelockL22is_lock_obj_type_validERKNS1_13ObLockOBJTypeE:4554 + 2: 759 + 3: _ZN9oceanbase11transaction9tablelockL18is_lock_mode_validEh:3036 + 2: 759 + 4: _ZNK9oceanbase11transaction9ObTransID8is_validEv:3795 + 0: 759 + 41: _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9tablelock8ObLockIDENS3_9ObOBJLockENS3_14ObOBJLockAllocENS0_9RefHandleELl8EE6revertEPS5_:5803 + 3: 829 _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9tablelock8ObLockIDENS3_9ObOBJLockENS3_14ObOBJLockAllocENS0_9RefHandleELl8EE6revertEPNS0_12LinkHashNodeIS4_EE:829 + 43.1: _ZN9oceanbase6common14ObTscTimestamp12get_instanceEv:0 + 2: 0 + 2.1: 0 + 2.3: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common14ObTscTimestampC2Ev:0 + 1: 0 +_ZN9oceanbase8observer15ObSqlEndTransCb8callbackEi:209726:239 + 1: 230 + 2: 230 + 3: 230 + 4: 230 + 5: 230 + 6: 230 + 7: 0 + 8.1: 0 + 11: 261 + 12: 244 + 14: 245 _ZN9oceanbase3sql17ObSqlTransControl22reset_session_tx_stateEPNS0_16ObSQLSessionInfoEb:247 + 15: 268 + 15.1: 268 + 16.1: 268 + 18.1: 268 + 19: 0 + 20.1: 0 + 23.2: 268 + 25: 0 + 26.1: 0 + 29: 277 _ZN9oceanbase3sql16ObSQLSessionInfo21set_show_warnings_bufEi:283 + 30: 261 + 33.1: 261 + 34.1: 261 + 35.1: 261 + 36: 261 + 36.2: 261 + 37.1: 261 + 38: 261 _ZN9oceanbase8observer16ObMPPacketSender14send_ok_packetERNS_3sql16ObSQLSessionInfoERNS0_10ObOKPParamEPNS_7obmysql13ObMySQLPacketE:263 + 38.1: 228 + 39.1: 0 + 44.1: 0 + 44.2: 0 + 45.1: 0 + 49: 202 + 52: 199 _ZN9oceanbase3sql16ObSQLSessionInfo15get_piece_cacheEb:220 + 53: 229 + 57: 0 + 58.1: 0 + 58.2: 0 + 58.3: 0 + 58.5: 0 + 59.1: 0 + 59.2: 0 + 61: 0 + 62: 0 + 64: 0 + 66.1: 0 + 72: 228 + 73: 228 + 74: 0 + 77: 229 _ZN9oceanbase8observer16ObMPPacketSender12flush_bufferEb:230 + 79: 0 + 80: 0 + 86: 246 + 87: 246 + 90: 236 _ZN9oceanbase3lib11ObLockGuardINS_6common16ObRecursiveMutexEED2Ev:237 + 90.2: 0 + 92: 227 + 93: 230 + 94: 257 _ZN9oceanbase8observer16ObMPPacketSender14revert_sessionEPNS_3sql16ObSQLSessionInfoE:233 + 95: 257 + 96.1: 0 + 99.12: 260 + 10: _ZN9oceanbase3sql18ObBasicSessionInfo14get_query_lockEv:1610 + 0: 230 + 10.1: _ZN9oceanbase3lib11ObLockGuardINS_6common16ObRecursiveMutexEEC2ERS3_:29448 + 1: 230 + 2: 230 + 4: 244 + 5.1: 0 + 4: _ZN9oceanbase6common16ObRecursiveMutex4lockEv:25154 + 2: 230 + 3: 230 + 6: 244 _ZN9oceanbase6common7ObLatch6wrlockEjlPKj:242 + 7.1: 0 + 12: 244 + 3: _ZNK9oceanbase6common7ObLatch14is_wrlocked_byEPKj:14030 + 3: 230 + 4: 230 + 2.1: _Z9ob_gettidv:12190 + 3: 230 + 4: 0 + 2: _Z13get_tid_cachev:5750 + 7: 230 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 + 15: _ZNK9oceanbase3sql18ObBasicSessionInfo10get_sessidEv:1608 + 0: 268 + 16: _ZNK9oceanbase3sql18ObBasicSessionInfo16get_proxy_sessidEv:1876 + 0: 268 + 18: _ZNK9oceanbase3sql23ObEndTransCbPacketParam8is_validEv:2144 + 0: 268 + 21.2: _ZN9oceanbase6common12ObCurTraceId3setERKNS1_7TraceIdE:31088 + 2: _ZN9oceanbase6common12ObCurTraceId12get_trace_idEv:6700 + 5: 268 + 5.1: 0 + 5.1: _ZN9oceanbase6common12ObCurTraceId7TraceIdC2Ev:0 + 0: 0 + 4: _ZN9oceanbase6common12ObCurTraceId7TraceId3setERKS2_:24388 + 2: 268 + 4: 268 + 6: _ZN9oceanbase6common12ObCurTraceId7TraceId16check_ipv6_validEv:6968 + 1: 268 + 2: 0 + 2.1: 0 + 23.1: _ZNK9oceanbase8observer16ObMPPacketSender13is_conn_validEv:1340 + 0: 268 + 28: _ZN9oceanbase8observer16ObMPPacketSender19update_last_pkt_posEv:2144 + 2: 268 + 3: 0 + 3: _ZN9oceanbase7obmysql20ObCompressionContext19update_last_pkt_posEPc:0 + 2: 0 + 2.1: 0 + 4: 0 + 2: _ZNK9oceanbase7obmysql20ObCompressionContext23is_proxy_compress_basedEv:0 + 0: _ZNK9oceanbase7obmysql20ObCompressionContext17is_proxy_checksumEv:0 + 0: 0 + 32: _ZN9oceanbase8observer10ObOKPParamC2Ev:6264 + 2: 261 + 6: 261 + 8: 261 + 12: 261 + 33: _ZNK9oceanbase3sql23ObEndTransCbPacketParam11get_messageEv:1827 + 0: 261 + 34: _ZNK9oceanbase3sql23ObEndTransCbPacketParam17get_affected_rowsEv:1827 + 0: 261 + 35: _ZNK9oceanbase3sql23ObEndTransCbPacketParam28get_last_insert_id_to_clientEv:1827 + 0: 261 + 36.1: _ZNK9oceanbase6common15ObWarningBuffer26get_readable_warning_countEv:3654 + 2: 261 + 37: _ZNK9oceanbase3sql23ObEndTransCbPacketParam20get_is_partition_hitEv:1827 + 0: 261 + 43.1: _ZNK9oceanbase6common15ObWarningBuffer11get_err_msgEv:0 + 0: _ZNK9oceanbase6common15ObWarningBuffer11WarningItem3getEv:0 + 0: 0 + 49: _ZN9oceanbase3sql16ObSQLSessionInfo18reset_warnings_bufEv:12120 + 3: 202 _ZN9oceanbase6common11ObSqlString5resetEv:202 + 2: _ZN9oceanbase6common15ObWarningBuffer5resetEv:10504 + 2: 202 + 5: 202 + 4: _ZN9oceanbase6common15ObWarningBuffer11WarningItem5resetEv:7070 + 2: 202 + 3: 202 + 5: 202 + 8: 202 + 60: _ZN9oceanbase8observer12ObPieceCache13get_piece_keyEis:0 + 2: 0 + 84: _ZN9oceanbase6common27ob_setup_tsi_warning_bufferEPNS0_15ObWarningBufferE:1473 + 2: 246 + 2: _ZN9oceanbase6common25ob_get_tsi_warning_bufferEv:243 + 2: 243 _ZTWN9oceanbase6common16g_warning_bufferE:243 + 85: _ZN9oceanbase3sql23ObEndTransCbPacketParam5resetEv:13982 + 2: 246 + 3: 246 + 5: 246 + 7: 246 + 88: _ZN9oceanbase8observer16ObMPPacketSender5resetEv:24076 + 2: 246 + 3: 246 + 4: 246 + 10: 236 + 11: 236 + 15: 236 + 16: 236 + 17: 236 + 18: 236 + 19: 236 + 5: _ZN9oceanbase3rpc20ObSqlRequestOperator7destroyEPNS0_9ObRequestE:0 + 1: 0 + 1.1: 0 + 12: _ZN9oceanbase7obmysql20ObCompressionContext5resetEv:7552 + 0: 236 +_ZN9oceanbase3sql11ObResultSet8open_cmdEv:209543:541 + 1: 524 + 2: 524 + 4: 495 + 5.1: 0 + 6: 0 + 7.3: 480 + 8.1: 0 + 9.2: 251 + 10.1: 0 + 11.2: 496 _ZN9oceanbase3sql13ObCmdExecutor7executeERNS0_13ObExecContextERNS0_6ObICmdE:505 + 11.3: 500 + 12.1: 0 + 15: 500 + 16.5: 509 + 16.6: 0 + 3: _ZN9oceanbase5trace16__ObFLTSpanGuardC2Ejh:10776 + 2: 524 _ZN9oceanbase5trace7ObTrace12get_instanceEv:536 + 2.1: 517 _ZN9oceanbase5trace7ObTrace10begin_spanEjhb:518 + 7.1: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:5445 + 0: 495 + 0.2: 0 + 7.2: _ZN9oceanbase3sql11ObResultSet21init_cmd_exec_contextERNS0_13ObExecContextE:115523 + 2: 492 + 3: 492 + 5: 492 + 6: 0 + 7.1: 0 + 9.1: 492 + 9.3: 0 + 10.1: 0 + 10.2: 0 + 11: 0 + 12: 0 + 13.1: 0 + 14.1: 504 + 14.2: 504 _ZN9oceanbase6common16ObArenaAllocator5allocEl:512 + 15: 0 + 16.1: 0 + 19: 480 + 21: 480 + 25: 480 + 29: 480 + 3: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:3444 + 2: 492 + 9.1: _ZN9oceanbase3sql6ObStmt11is_ddl_stmtENS0_4stmt8StmtTypeEb:7380 + 5: 492 + 120.2: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 9.2: _ZN9oceanbase3sql6ObStmt11is_dcl_stmtENS0_4stmt8StmtTypeE:8771 + 1: 518 + 10.2: _ZNK9oceanbase3sql18ObBasicSessionInfo13associated_xaEv:0 + 0: 0 + 14.1: _ZN9oceanbase3sql11ObResultSet12get_mem_poolEv:3528 + 0: 504 + 18: _ZN9oceanbase6common8ObNewRowC2Ev:4800 + 2: 480 + 18.1: _ZN9oceanbase3sql13ObExecContext14set_output_rowEPNS_6common8ObNewRowE:3360 + 0: 480 + 19: _ZN9oceanbase3sql13ObExecContext17set_field_columnsEPNS_6common8ObIArrayINS2_7ObFieldEEE:3360 + 2: 480 + 21: _ZNK9oceanbase3sql18ObBasicSessionInfo17get_query_timeoutERl:17280 + 2: 480 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache20get_ob_query_timeoutEv:15840 + 0: 480 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache20get_ob_query_timeoutEb:11040 + 0: 480 + 25: _ZN9oceanbase3sql17ObPhysicalPlanCtx21set_timeout_timestampEl:1920 + 2: 480 + 26: _ZN9oceanbase3lib6Worker4selfEv:13440 + 3: 480 + 4: 0 + 26.1: _ZNK9oceanbase3sql17ObPhysicalPlanCtx21get_timeout_timestampEv:0 + 2: 0 + 26.2: _ZN9oceanbase3lib6Worker14set_timeout_tsEl:3840 + 0: 480 + 9.1: _ZN9oceanbase3sql11ObResultSet14on_cmd_executeEv:22360 + 2: 480 + 5: 480 + 6: 0 + 7.1: 0 + 8.1: 480 _ZNK9oceanbase3sql6ObICmd21cause_implicit_commitEv:253 _ZThn32_NK9oceanbase3sql16ObStartTransStmt21cause_implicit_commitEv:229 + 10: 236 + 10.1: 217 _ZN9oceanbase3sql17ObSqlTransControl18implicit_end_transERNS0_13ObExecContextEbPNS0_23ObEndTransAsyncCallbackE:218 + 11.1: 0 + 14: 251 + 10: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:2453 + 0: 223 + 0.2: 0 + 11.1: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:5368 + 0: 488 + 0.2: 0 + 16.5: _ZN9oceanbase5trace16__ObFLTSpanGuardD2Ev:3000 + 0: 500 + 0.1: 0 + 0.2: 0 + 0.3: 0 + 0.4: 0 + 0.5: 0 + 0.7: 0 + 0.8: 0 + 0.12: 0 + 0.3: _ZNK9oceanbase5trace4UUID9is_initedEv:0 + 0: 0 + 0.1: 0 + 0.6: _ZN9oceanbase5trace7ObTrace13is_auto_flushEv:0 + 0: 0 +_ZNK9oceanbase6common13ObSEArrayImplINS_5share6schema15ObSchemaMgrInfoELl2ENS0_19ModulePageAllocatorELb0EEixEl:209382:5257 + 1: 4944 + 2: 4944 + 2.1: 4944 + 2.2: 4944 + 3.1: 51 + 5: 4944 +_ZN9oceanbase7storage17ObLSTabletService15process_old_rowERNS0_14ObTabletHandleERNS0_15ObDMLRunningCtxEbbRNS0_10ObStoreRowE:208910:371 + 6: 352 + 7: 352 + 8: 352 + 9: 352 + 10: 352 + 12: 366 _ZNK9oceanbase7storage15ObRelativeTable8is_validEv:380 + 13: 0 + 14.1: 0 + 15.1: 366 _ZNK9oceanbase7storage10ObStoreCtx8is_validEv:366 + 15.2: 341 + 15.3: 341 + 19: 0 + 20.1: 0 + 21.1: 346 _ZN9oceanbase7storage17ObLSTabletService24check_old_row_legitimacyERNS0_14ObTabletHandleERNS0_15ObDMLRunningCtxERKNS_6common8ObNewRowE:353 + 23: 0 + 25.1: 0 + 26.1: 364 _ZN9oceanbase7storage17ObLSTabletService23process_old_row_lob_colERNS0_14ObTabletHandleERNS0_15ObDMLRunningCtxERNS0_10ObStoreRowE:350 + 27.1: 0 + 29: 364 + 30: 364 _ZNK9oceanbase7storage15ObRelativeTable12get_table_idEv:375 + 31: 364 _ZNK9oceanbase7storage15ObRelativeTable21get_rowkey_column_numEv:374 + 34: 352 + 36: 341 + 37: 0 + 38: 0 + 38.1: 0 + 39.1: 0 + 40.2: 0 + 40.3: 0 + 41.1: 0 + 42.1: 0 + 42.2: 0 + 43.1: 0 + 44.1: 0 + 45: 0 + 49: 341 + 50.1: 341 + 51: 0 + 53: 0 + 54: 0 + 54.1: 0 + 54.2: 0 + 57.1: 0 + 63: 0 + 66: 0 + 66.1: 0 + 66.2: 0 + 69.1: 0 + 73.2: 332 + 75: 0 + 75.1: 0 + 76.1: 0 + 77.2: 0 + 77.3: 0 + 78.1: 0 + 79.1: 0 + 79.2: 0 + 79.3: 0 + 81.1: 0 + 86: 324 _ZN9oceanbase12blocksstable19ObDatumRowkeyHelperD2Ev:366 + 86.1: 0 + 87: 327 + 15.4: _ZNK9oceanbase7storage10ObStoreRow8is_validEv:34348 + 3: 341 + 5.1: 341 + 7.1: 0 + 8.1: 0 + 9: 341 + 11: 337 + 11.1: 0 + 11.2: 323 + 12: 0 + 12.1: 323 + 13: 0 + 7.1: _ZNK9oceanbase12blocksstable12ObDmlRowFlag8is_validEv:5456 + 2: 341 + 3.1: 0 + 10.1: _ZNK9oceanbase6common8ObNewRow8is_validEv:9548 + 2: _ZNK9oceanbase6common8ObNewRow10is_invalidEv:9548 + 2: 341 + 2.1: 341 + 2.2: 341 + 2.3: 0 + 12.1: _ZNK9oceanbase12blocksstable21ObMultiVersionRowFlag18is_uncommitted_rowEv:1292 + 0: 323 + 32: _ZN9oceanbase6common13ObStoreRowkeyC2Ev:3872 + 0: 352 + 33: _ZN9oceanbase12blocksstable13ObDatumRowkeyC2Ev:11264 + 0.4: _ZN9oceanbase12blocksstable13ObDatumRowkey5resetEv:11264 + 0: 352 + 34: _ZN9oceanbase12blocksstable19ObDatumRowkeyHelperC2ERNS_6common12ObIAllocatorE:65846 + 1: 352 + 1.3: 352 _ZN9oceanbase12blocksstable20ObStorageDatumBufferC1EPNS_6common12ObIAllocatorE:363 + 1.1: _ZN9oceanbase7storage13ObObjBufArrayC2Ev:11286 + 1: 342 + 2: 342 + 3: 342 + 1.2: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:49280 + 4: 352 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:42944 + 2: 352 + 3: 352 + 4: 352 + 5: 352 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:19008 + 0: 352 + 2.3: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:0 + 0: 0 + 38: _ZN9oceanbase6common13ObStoreRowkey6assignEPNS0_5ObObjEl:0 + 3: 0 + 3.2: 0 + 5.1: 0 + 8: 0 + 7: _ZN9oceanbase6common8ObRowkey6assignEPNS0_5ObObjEl:0 + 2: 0 + 3: 0 + 52: _ZN9oceanbase12blocksstable12ObDmlRowFlag8set_flagENS0_9ObDmlFlagE:0 + 3: 0 + 61: _ZN9oceanbase7storage10ObStoreRowC2Ev:0 + 1: 0 + 3: 0 + 4.1: 0 + 62: _ZN9oceanbase12blocksstable12ObDmlRowFlag8set_flagENS0_9ObDmlFlagE:0 + 3: 0 + 64: _ZN9oceanbase12blocksstable12ObDmlRowFlag8set_flagENS0_9ObDmlFlagE:0 + 3: 0 + 65: _ZN9oceanbase6common9ObSEArrayIlLl8ENS0_19ModulePageAllocatorELb0EEC2Ev:0 + 0.1: 0 + 0.5: _ZN9oceanbase6common13ObSEArrayImplIlLl8ENS0_19ModulePageAllocatorELb0EEC2ElRKS2_:0 + 2: 0 + 5: 0 + 6: 0 + 8: 0 + 17.1: 0 + 2: _ZN9oceanbase6common8ObIArrayIlEC2EPll:0 + 0: _ZN9oceanbase6common12ObIArrayWrapIlEC2EPll:0 + 0: 0 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:0 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:0 + 2: 0 + 8: 0 + 72: _ZN9oceanbase6common13ObSEArrayImplIlLl8ENS0_19ModulePageAllocatorELb0EED2Ev:0 + 1: 0 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplIlLl8ENS0_19ModulePageAllocatorELb0EE7destroyEv:0 + 9: 0 + 11: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplIlLl8ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 72.1: _ZN9oceanbase6common13ObSEArrayImplIlLl8ENS0_19ModulePageAllocatorELb0EED2Ev:0 + 1: 0 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplIlLl8ENS0_19ModulePageAllocatorELb0EE7destroyEv:0 + 9: 0 + 11: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplIlLl8ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 75: _ZN9oceanbase6common13ObStoreRowkey6assignEPNS0_5ObObjEl:0 + 3: 0 + 3.2: 0 + 5.1: 0 + 8: 0 + 7: _ZN9oceanbase6common8ObRowkey6assignEPNS0_5ObObjEl:0 + 2: 0 + 3: 0 +_ZN9oceanbase6common9ObCharset11is_bin_sortENS0_15ObCollationTypeE:207700:3644 + 1: 3350 + 2: 3350 + 3: 3350 + 3.3: 3350 + 4: 3350 + 5: 3350 + 6.1: 0 + 10: 3350 + 12: 3350 +_ZN9oceanbase6common13ObLinkHashMapINS0_9ObIntWarpENS_3sql11ObPxResInfoENS3_13ObPxInfoAllocENS0_9RefHandleELl8EE4nextEPNS0_12LinkHashNodeIS2_EE:207328:0 + 1: 0 + 2: 0 + 4: 0 + 2.1: _ZN9oceanbase6common13ObLinkHashMapINS0_9ObIntWarpENS_3sql11ObPxResInfoENS3_13ObPxInfoAllocENS0_9RefHandleELl8EE5GuardC2ERNS0_13RetireStationE:0 + 0: _ZN9oceanbase6common9RefHandleC2ERNS0_13RetireStationE:0 + 0: _ZN9oceanbase6common13BaseRefHandleC2ERNS0_13RetireStationE:0 + 0: _ZN9oceanbase6common17get_global_qclockEv:0 + 2: 0 + 2.1: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common6QClockC2Ev:0 + 0: 0 + 0.1: _ZN9oceanbase6common6QClock9ClockSlotC2Ev:0 + 0: 0 + 0.4: _ZN9oceanbase6common13BaseRefHandle14enter_criticalEv:0 + 0: 0 + 3: _ZN9oceanbase6common13ObLinkHashMapINS0_9ObIntWarpENS_3sql11ObPxResInfoENS3_13ObPxInfoAllocENS0_9RefHandleELl8EE5next_EPNS0_12LinkHashNodeIS2_EE:207328 + 5.1: 0 + 7: 0 + 4.4: _ZN9oceanbase6common6DCHashINS0_9ObIntWarpELl8EE4nextEPNS0_11KeyHashNodeIS2_EE:185504 + 1.2: 5456 + 2: 5456 + 1.1: _ZN9oceanbase6common6DCHashINS0_9ObIntWarpELl8EE9next_nodeEPNS0_11KeyHashNodeIS2_EE:76384 + 2: 5456 + 4.1: 5456 + 5: 0 + 6.1: 0 + 6.3: 0 + 9: 0 + 4.1: _ZN9oceanbase6common15is_last_bit_setEm:21824 + 2: 5456 + 6.1: _ZN9oceanbase6common6DCHashINS0_9ObIntWarpELl8EE10search_preEmRPNS0_8HashNodeE:0 + 2: 0 + 3: 0 + 2.1: _ZN9oceanbase6common8HashNode13is_dummy_nodeEv:76384 + 0: 5456 + 5.1: _ZN9oceanbase6common13ObLinkHashMapINS0_9ObIntWarpENS_3sql11ObPxResInfoENS3_13ObPxInfoAllocENS0_9RefHandleELl8EE11try_inc_refEPNS0_12LinkHashNodeIS2_EE:0 + 6.1: 0 + 4: _ZN9oceanbase6common9RefHandle3incEPNS0_7RefNodeE:0 + 0: _ZN9oceanbase6common15faa_if_positiveEPii:0 + 2: 0 + 4.1: 0 + 4.2: 0 + 4.3: 0 + 6.1: _ZN9oceanbase6common15is_last_bit_setEm:0 + 2: 0 + 7: _ZN9oceanbase6common13ObLinkHashMapINS0_9ObIntWarpENS_3sql11ObPxResInfoENS3_13ObPxInfoAllocENS0_9RefHandleELl8EE8dec_urefEPNS0_12LinkHashNodeIS2_EE:0 + 3: 0 + 4: 0 + 3: _ZN9oceanbase6common9RefHandle3decEPNS0_7RefNodeE:0 + 0: 0 + 4: _ZN9oceanbase6common13ObLinkHashMapINS0_9ObIntWarpENS_3sql11ObPxResInfoENS3_13ObPxInfoAllocENS0_9RefHandleELl8EE5GuardD2Ev:0 + 0: _ZN9oceanbase6common13BaseRefHandle14leave_criticalEv:0 + 0: _ZN9oceanbase6common6QClock14leave_criticalEm:0 + 1: 0 + 2: _ZN9oceanbase6common6QClock6locateEm:0 + 0: 0 + 2.1: _ZN9oceanbase6common6QClock9ClockSlot11clear_clockEv:0 + 0: 0 + 4.1: _ZN9oceanbase6common13ObLinkHashMapINS0_9ObIntWarpENS_3sql11ObPxResInfoENS3_13ObPxInfoAllocENS0_9RefHandleELl8EE5GuardD2Ev:0 + 0: _ZN9oceanbase6common13BaseRefHandle14leave_criticalEv:0 + 0: _ZN9oceanbase6common6QClock14leave_criticalEm:0 + 1: 0 + 2: _ZN9oceanbase6common6QClock6locateEm:0 + 0: 0 + 2.1: _ZN9oceanbase6common6QClock9ClockSlot11clear_clockEv:0 + 0: 0 +_ZN9oceanbase6common14ObTscTimestamp12get_instanceEv:206943:6792 + 1: 6271 + 2: 6271 + 2.1: 0 + 2.3: 0 + 2.6: 0 + 3: 6271 + 2.2: _ZN9oceanbase6common14ObTscTimestampC2Ev:0 + 1: 0 +_ZN9oceanbase11transaction9tablelock9ObOBJLock5lock_ERKNS1_11ObLockParamERKNS1_13ObTableLockOpERKhRbRNS_6common8ObMallocERNSC_4hash19ObIteratableHashSetINS0_9ObTransIDELm16EEE:206925:783 + 7: 730 + 8: 730 + 11: 730 + 14: 730 + 20: 730 + 21: 0 + 22: 0 + 23.1: 761 _ZN9oceanbase11transaction9tablelock9ObOBJLock17check_allow_lock_ERKNS1_13ObTableLockOpERKhRNS_6common4hash19ObIteratableHashSetINS0_9ObTransIDELm16EEERbRNS8_8ObMallocE:804 + 29.1: 0 + 31.1: 701 + 32: 701 + 37.1: 0 + 41.1: 0 + 42.1: 0 + 43: 0 + 44.1: 0 + 47.1: 0 + 48.1: 0 + 49.1: 0 + 50: 0 + 51.1: 0 + 55: 0 + 56: 0 + 57: 0 + 60: 0 + 61: 0 + 64: 694 + 64.1: 0 + 65: 0 + 70: 695 + 71: 0 + 71.1: 0 + 73: 0 + 74: 0 + 75: 0 + 79: 805 + 13: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:10220 + 2: 730 + 2.1: 0 + 2.2: 0 + 13.1: _ZNK9oceanbase5share12ObTenantBase2idEv:10950 + 0: 730 + 17.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:30660 + 5: 730 + 6: 730 + 7: 730 + 8: 730 + 31.1: _ZNK9oceanbase11transaction9tablelock13ObTableLockOp19need_record_lock_opEv:26455 + 2: 761 + 2: _ZN9oceanbase11transaction9tablelockL20is_out_trans_op_typeENS1_17ObTableLockOpTypeE:1522 + 2: 761 + 3: _ZNK9oceanbase11transaction9tablelock13ObTableLockOp25is_need_record_lock_mode_Ev:8371 + 2: 761 + 4: _ZN9oceanbase11transaction9tablelockL30is_in_trans_lock_table_op_typeENS1_17ObTableLockOpTypeE:2103 + 2: 701 + 33: _ZN9oceanbase11transaction9tablelock9ObOBJLock19lock_row_exclusive_Ev:7010 + 2.1: 701 + 35: _ZN9oceanbase11transaction9tablelock9ObOBJLock15lock_row_share_Ev:0 + 2.1: 0 + 45.1: _ZN9oceanbase11transaction9tablelock21ObTableLockOpLinkNodeC2Ev:0 + 2: 0 + 0: _ZN9oceanbase6common11ObDLinkBaseINS_11transaction9tablelock21ObTableLockOpLinkNodeEEC2Ev:0 + 1: 0 + 1: _ZN9oceanbase11transaction9tablelock13ObTableLockOpC2Ev:0 + 2: 0 + 3: 0 + 7: 0 + 10: 0 + 1: _ZN9oceanbase11transaction9tablelock8ObLockIDC2Ev:0 + 1: 0 + 2: 0 + 47.1: _ZN9oceanbase11transaction9tablelock21ObTableLockOpLinkNode4initERKNS1_13ObTableLockOpE:0 + 2: 0 + 3: 0 + 4: 0 + 5.1: 0 + 9: 0 + 3: _ZNK9oceanbase11transaction9tablelock13ObTableLockOp8is_validEv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 2: _ZNK9oceanbase11transaction9tablelock8ObLockID8is_validEv:0 + 2: 0 + 2: _ZN9oceanbase6common11is_valid_idEm:0 + 2: 0 + 3: _ZN9oceanbase11transaction9tablelockL22is_lock_obj_type_validERKNS1_13ObLockOBJTypeE:0 + 2: 0 + 3: _ZN9oceanbase11transaction9tablelockL18is_lock_mode_validEh:0 + 2: 0 + 4: _ZNK9oceanbase11transaction9ObTransID8is_validEv:0 + 0: 0 + 7: _ZN9oceanbase11transaction9tablelock13ObTableLockOpaSERKS2_:0 + 0: 0 + 0: _ZN9oceanbase11transaction9ObTransIDaSERKS1_:0 + 1: 0 + 49.1: _ZN9oceanbase6common7ObDListINS_11transaction9tablelock21ObTableLockOpLinkNodeEE8add_lastEPS4_:0 + 6.1: 0 + 6.2: 0 + 6.3: 0 + 9.1: 0 + 13: 0 + 12: _ZN9oceanbase6common11ObDLinkBaseINS_11transaction9tablelock21ObTableLockOpLinkNodeEE10add_beforeEPS4_:0 + 2: 0 + 2: _ZN9oceanbase6common11ObDLinkBaseINS_11transaction9tablelock21ObTableLockOpLinkNodeEE3addEPS4_S6_S6_:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 60: _ZN9oceanbase11transaction9tablelock9ObOBJLock22drop_op_list_if_empty_EhPKNS_6common7ObDListINS1_21ObTableLockOpLinkNodeEEERNS3_8ObMallocE:0 + 5: 0 + 8: 0 + 9: 0 + 10.1: 0 + 12.1: 0 + 13: 0 + 16: 0 + 17: 0 + 11.1: _ZN9oceanbase11transaction9tablelock9ObOBJLock22get_index_by_lock_modeEh:0 + 3: 0 + 71: _ZNK9oceanbase11transaction9tablelock13ObTableLockOp14is_dml_lock_opEv:0 + 2: _ZN9oceanbase11transaction9tablelockL28is_in_trans_dml_lock_op_typeENS1_17ObTableLockOpTypeE:0 + 2: 0 +_ZNK9oceanbase11transaction13ObTxCommitLog10serialize_EPclRl:206624:291 + 0: 282 + 0.1: 281 + 0.3: 0 + 0.7: 0 + 0.8: 300 _ZNK9oceanbase11transaction17ObTxSerCompatByte15is_object_validEl:298 + 0.9: 0 + 0.11: 6 + 0.17: 291 + 0.18: 298 _ZNK9oceanbase11transaction17ObTxSerCompatByte15is_object_validEl:296 + 0.19: 298 + 0.21: 6 + 0.27: 6 + 0.28: 284 _ZNK9oceanbase11transaction17ObTxSerCompatByte15is_object_validEl:293 + 0.29: 6 + 0.31: 6 + 0.37: 283 + 0.38: 284 _ZNK9oceanbase11transaction17ObTxSerCompatByte15is_object_validEl:296 + 0.39: 1 + 0.41: 5 + 0.47: 281 + 0.48: 278 _ZNK9oceanbase11transaction17ObTxSerCompatByte15is_object_validEl:276 + 0.49: 281 + 0.51: 6 + 0.57: 2 + 0.58: 275 _ZNK9oceanbase11transaction17ObTxSerCompatByte15is_object_validEl:276 + 0.59: 276 + 0.61: 6 + 0.67: 3 + 0.68: 237 _ZNK9oceanbase11transaction17ObTxSerCompatByte15is_object_validEl:231 + 0.69: 258 + 0.71: 6 + 0.77: 6 + 0.78: 270 _ZNK9oceanbase11transaction17ObTxSerCompatByte15is_object_validEl:267 + 0.79: 4 + 0.81: 4 + 0.87: 260 + 0.88: 6 + 0.95: 4 + 0.96: 6 + 0.103: 4 + 0.104: 6 + 0.111: 6 + 0.112: 5 + 0.119: 4 + 0.120: 6 + 0.127: 6 + 0.128: 6 + 0.135: 6 + 0.136: 6 + 0.143: 4 + 0.144: 4 + 0.151: 4 + 0.1: _ZNK9oceanbase11transaction17ObTxSerCompatByte9serializeEPclRl:41004 + 2: 282 + 4.1: 563 + 4.3: 563 + 5: 563 + 6.1: 6 + 10: 281 + 5: _ZN9oceanbase6common13serialization9encode_i8EPclRla:20552 + 4: 563 + 5: 563 + 0.9: _ZN9oceanbase6common13serialization6encodeEPclRll:0 + 2: 0 + 0.11: _ZN9oceanbase6common8ObLogger10get_loggerEv:402 + 2: 6 + 2.1: 4 + 2.2: 4 + 2.3: 4 + 2.6: 4 + 0.12: _ZN9oceanbase6common7ObLogKVIRA16_KcLb0EEC2EPS2_S4_:160 + 0: 4 + 0.19: _ZN9oceanbase6common13serialization6encodeEPclRlm:78176 + 2: _ZN9oceanbase6common13serialization11encode_vi64EPclRll:78176 + 3: 298 + 4: 298 + 5: 296 + 6.1: 1133 + 7: 1133 + 8: 1133 + 11: 1133 + 4: _ZN9oceanbase6common13serialization19encoded_length_vi64El:18807 + 4: 298 + 6.1: 298 + 8.1: 298 + 10.1: 297 + 12.1: 277 + 14.1: 1 + 16.1: 1 + 18.1: 1 + 0.21: _ZN9oceanbase6common8ObLogger10get_loggerEv:402 + 2: 6 + 2.1: 4 + 2.2: 4 + 2.3: 4 + 2.6: 4 + 0.22: _ZN9oceanbase6common7ObLogKVIRA10_KcLb0EEC2EPS2_S4_:160 + 0: 4 + 0.29: _ZN9oceanbase6common13serialization6encodeINS0_9ObSEArrayINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EEEEEiPclRlRKT_:66 + 2: _ZN9oceanbase6common13serialization11EnumEncoderILb0ENS0_9ObSEArrayINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EEEE6encodeEPclRlRKS7_:66 + 2: 6 + 0.31: _ZN9oceanbase6common8ObLogger10get_loggerEv:402 + 2: 6 + 2.1: 4 + 2.2: 4 + 2.3: 4 + 2.6: 4 + 0.32: _ZN9oceanbase6common7ObLogKVIRA26_KcLb0EEC2EPS2_S4_:240 + 0: 6 + 0.39: _ZN9oceanbase6common13serialization6encodeINS0_9ObSEArrayINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EEEEEiPclRlRKT_:11 + 2: _ZN9oceanbase6common13serialization11EnumEncoderILb0ENS0_9ObSEArrayINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EEEE6encodeEPclRlRKS7_:11 + 2: 1 + 0.41: _ZN9oceanbase6common8ObLogger10get_loggerEv:385 + 2: 5 + 2.1: 4 + 2.2: 4 + 2.3: 4 + 2.6: 4 + 0.42: _ZN9oceanbase6common7ObLogKVIRA19_KcLb0EEC2EPS2_S4_:160 + 0: 4 + 0.49: _ZN9oceanbase6common13serialization6encodeEPclRli:1983 + 2: 281 _ZN9oceanbase6common13serialization11encode_vi32EPclRli:280 + 0.52: _ZN9oceanbase6common7ObLogKVIRA12_KcLb0EEC2EPS2_S4_:240 + 0: 6 + 0.59: _ZN9oceanbase6common13serialization6encodeINS_11transaction14ObTxDataBackupEEEiPclRlRKT_:1956 + 2: _ZN9oceanbase6common13serialization11EnumEncoderILb0ENS_11transaction14ObTxDataBackupEE6encodeEPclRlRKS4_:1956 + 2: 276 _ZNK9oceanbase11transaction14ObTxDataBackup9serializeEPclRl:293 + 0.62: _ZN9oceanbase6common7ObLogKVIRA16_KcLb0EEC2EPS2_S4_:240 + 0: 6 + 0.69: _ZN9oceanbase6common13serialization6encodeINS_4palf3LSNEEEiPclRlRKT_:1671 + 2: _ZN9oceanbase6common13serialization11EnumEncoderILb0ENS_4palf3LSNEE6encodeEPclRlRKS4_:1671 + 2: 237 _ZNK9oceanbase4palf3LSN9serializeEPclRl:264 + 0.71: _ZN9oceanbase6common8ObLogger10get_loggerEv:402 + 2: 6 + 2.1: 4 + 2.2: 4 + 2.3: 4 + 2.6: 4 + 0.72: _ZN9oceanbase6common7ObLogKVIRA10_KcLb0EEC2EPS2_S4_:160 + 0: 4 + 0.79: _ZN9oceanbase6common13serialization6encodeINS0_9ObSEArrayINS_11transaction11ObLSLogInfoELl10ENS0_19ModulePageAllocatorELb0EEEEEiPclRlRKT_:44 + 2: _ZN9oceanbase6common13serialization11EnumEncoderILb0ENS0_9ObSEArrayINS_11transaction11ObLSLogInfoELl10ENS0_19ModulePageAllocatorELb0EEEE6encodeEPclRlRKS7_:44 + 2: 4 + 0.81: _ZN9oceanbase6common8ObLogger10get_loggerEv:368 + 2: 4 + 2.1: 4 + 2.2: 4 + 2.3: 4 + 2.6: 4 + 0.82: _ZN9oceanbase6common7ObLogKVIRA17_KcLb0EEC2EPS2_S4_:160 + 0: 4 + 0.90: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:176 + 0: 4 + 0.92: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:72 + 0: 4 + 0.94: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:160 + 0: 4 + 0.98: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:176 + 0: 4 + 0.100: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:72 + 0: 4 + 0.102: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:160 + 0: 4 + 0.106: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:264 + 0: 6 + 0.108: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:108 + 0: 6 + 0.110: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:240 + 0: 6 + 0.114: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:176 + 0: 4 + 0.116: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:72 + 0: 4 + 0.118: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:160 + 0: 4 + 0.122: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:264 + 0: 6 + 0.124: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:108 + 0: 6 + 0.126: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:240 + 0: 6 + 0.130: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:264 + 0: 6 + 0.132: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:108 + 0: 6 + 0.134: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:240 + 0: 6 + 0.138: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:176 + 0: 4 + 0.140: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:72 + 0: 4 + 0.142: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:160 + 0: 4 + 0.146: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:176 + 0: 4 + 0.148: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:72 + 0: 4 + 0.150: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:160 + 0: 4 +easy_request_sleeping:206529:5236 + 2: 4803 + 4: 4803 + 5: 4803 + 6: 4803 easy_pool_set_lock:4992 + 8: 0 + 4: easy_atomic_inc:28818 + 2: 4803 + 5: easy_atomic_inc:28818 + 2: 4803 +_ZN9oceanbase6common9Ob2DArrayIPNS_3sql14ObHashPartColsELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS4_Ll64ES5_Lb0EEEE11set_defaultEl:206247:242 + 1: 234 + 2: 234 + 3: 234 + 4: 0 + 5.1: 0 + 7: 234 + 8: 234 + 10.1: 1885 + 10.3: 1885 + 10.5: 1885 + 11: 1947 + 12: 1659 + 13: 0 + 14.1: 0 + 16: 1659 + 17: 1659 + 18: 1659 + 22: 258 + 23: 0 + 24.1: 0 + 26: 258 + 27: 229 + 28: 229 + 32: 221 + 32.1: 221 + 33: 0 + 34.1: 0 + 38: 221 + 16: _ZN9oceanbase6common12ObIArrayWrapIPPNS_3sql14ObHashPartColsEE2atEl:8295 + 6: 1659 + 16.1: _ZN9oceanbase6common9Ob2DArrayIPNS_3sql14ObHashPartColsELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS4_Ll64ES5_Lb0EEEE15construct_itemsES7_l:13276 + 2: _ZN9oceanbase6common9ObClassOpIPNS_3sql14ObHashPartColsELb1EE15array_constructEPS4_l:13276 + 2: 1659 + 26: _ZN9oceanbase6common12ObIArrayWrapIPPNS_3sql14ObHashPartColsEE2atEl:1290 + 6: 258 + 26.1: _ZN9oceanbase6common9Ob2DArrayIPNS_3sql14ObHashPartColsELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS4_Ll64ES5_Lb0EEEE15construct_itemsES7_l:2584 + 2: _ZN9oceanbase6common9ObClassOpIPNS_3sql14ObHashPartColsELb1EE15array_constructEPS4_l:2584 + 2: 258 +_ZN9oceanbase3sql13AllocOpHelperILi25EE5allocERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputElRPNS0_10ObOperatorE:205095:547 + 3: 522 + 4: 522 + 7: 522 + 9: 0 + 10.1: 0 + 12.1: 522 + 13: 0 + 14.1: 0 + 16: 522 + 17: 522 + 18: 0 + 19: 0 + 20.1: 0 + 22: 522 + 23: 543 _ZN9oceanbase3sql15ObTableUpdateOpC1ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE:512 + 24: 543 + 25.1: 543 + 33: 543 + 17: _ZN9oceanbase6common16ObArenaAllocator5allocEl:67338 + 0: 522 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13alloc_alignedEll:65250 + 3: 522 + 6: 522 + 7: 522 + 8: 522 + 10: 522 + 11: 522 + 12: 522 + 13: 522 + 15.1: 0 + 16: 0 + 18: 0 + 20: 0 + 28: 0 + 35: 522 + 36: 522 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE15ensure_cur_pageEv:6786 + 2: 522 + 3: 0 + 5.1: 0 + 8: 0 + 9: 0 + 10: 0 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:0 + 2: 0 + 2.2: 0 + 2.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 9: _ZSt3maxIlERKT_S2_S2_:0 + 5: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 8: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:0 + 0: 0 + 7: _ZN9oceanbase6common16get_align_offsetEPvl:7308 + 3: 522 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:3654 + 0: 522 + 11: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:3654 + 7: 522 + 15.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE18is_normal_overflowEl:0 + 2: 0 + 16: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11extend_pageEl:0 + 4: 0 + 5: 0 + 8: 0 + 9: 0 + 10.1: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 12: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_tailEPNS3_4PageE:0 + 2: 0 + 3: 0 + 5: 0 + 23.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16lookup_next_pageEl:0 + 3.1: 0 + 4.1: 0 + 5: 0 + 5.1: 0 + 7: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page10reuse_sizeEv:0 + 0: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 32: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9alloc_bigEl:0 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 3: 0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_headEPNS3_4PageE:0 + 4: 0 + 5: 0 + 7: 0 + 7: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:0 + 3: 0 + 24: _ZN9oceanbase3sql10ObOperator20set_children_pointerEPPS1_j:29322 + 7: 543 + 8: 543 + 9: 543 + 10: 543 + 12: 0 + 14: 543 + 15: 0 + 17: 543 +_ZN9oceanbase3sql20datum_accuracy_checkERKNS0_6ObExprEmRNS0_9ObEvalCtxERKNS_6common7ObDatumERS7_Ri:204752:1641 + 6: 1577 + 8: 1577 + 9: 1577 + 10: 1577 + 17.3: 1633 + 7: _ZN9oceanbase6common10ObAccuracyC2Ev:12616 + 0: _ZN9oceanbase6common10ObAccuracy5resetEv:12616 + 0: 1577 + 8: _ZN9oceanbase6common10ObAccuracy10set_lengthEi:4731 + 0: 1577 + 9: _ZN9oceanbase6common10ObAccuracy9set_scaleEs:6308 + 0: 1577 + 10: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:4731 + 2: 1577 + 16: _ZN9oceanbase3sql20datum_accuracy_checkERKNS0_6ObExprEmRNS0_9ObEvalCtxERKNS_6common10ObAccuracyERKNS6_7ObDatumERSA_Ri:106562 + 9: 1577 + 12: 1577 + 14: 1 + 19: 1 + 24: 3 + 29: 0 + 34: 3 + 39: 3 + 57: 3 + 61: 3 + 65: 0 + 9: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:9462 + 0: 1577 + 12: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:25232 + 2: 1577 + 2.1: 1577 + 48: _ZN9oceanbase3sql16raw_length_checkERKmRKNS_6common10ObAccuracyENS3_9ObObjTypeERKNS3_7ObDatumERS8_Ri:16 + 11: 1 + 12: 1 + 13: 1 + 15.1: 0 + 75: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:0 + 0: 0 +_ZN9oceanbase7obmysql14ObMySQLHandler6encodeEP14easy_request_tPv:204511:5009 + 1: 4914 + 3: 4914 + 4.1: 15 + 8: 4914 easy_request_addbuf:5358 + 10: 5232 +_ZN9oceanbase3sql10ObResolver7resolveENS1_10IsPreparedERK10_ParseNodeRPNS0_6ObStmtE:204309:496 + 1: 470 + 12: 470 + 13: 470 + 16: 470 + 16.1: 470 + 17: 470 + 17.1: 470 + 18: 470 + 18.1: 470 + 19: 470 + 19.1: 470 + 20: 470 + 20.1: 470 + 21: 0 + 22.1: 0 + 25.1: 470 + 26: 0 + 27: 0 + 27.1: 0 + 28: 0 + 29: 0 + 31: 0 + 32: 0 + 34: 0 + 35.1: 0 + 35.2: 0 + 35.3: 0 + 35.5: 0 + 36: 0 + 36.1: 0 + 36.2: 0 + 36.3: 0 + 37: 470 + 40: 470 + 41: 470 + 42: 470 + 43: 470 _ZN9oceanbase3sql15ObResolverUtils26get_stmt_type_by_item_typeE10ObItemType:470 + 44: 469 + 45: 469 + 45.1: 469 + 49: 469 _ZN9oceanbase3sql15ObResolverUtils26get_stmt_type_by_item_typeE10ObItemType:474 + 52: 429 + 54.1: 0 + 58.1: 0 + 62.1: 0 + 66.1: 0 + 70.1: 0 + 74.1: 0 + 78.1: 0 + 82.1: 0 + 86.1: 0 + 90.1: 0 + 94.1: 0 + 98.1: 0 + 102.1: 0 + 106.1: 0 + 110.1: 0 + 114.1: 0 + 118.1: 0 + 122.1: 0 + 126.1: 0 + 138: 0 + 139.1: 0 + 144.1: 0 + 148.1: 0 + 152.1: 0 + 156.1: 0 + 160.1: 0 + 164.1: 0 + 168.1: 0 + 172.1: 0 + 176.1: 0 + 180.1: 260 _ZN9oceanbase3sql10ObResolver18stmt_resolver_funcINS0_20ObStartTransResolverEEEiRNS0_16ObResolverParamsERK10_ParseNodeRPNS0_6ObStmtE:237 + 186.1: 281 _ZN9oceanbase3sql10ObResolver18stmt_resolver_funcINS0_18ObEndTransResolverEEEiRNS0_16ObResolverParamsERK10_ParseNodeRPNS0_6ObStmtE:218 + 190.1: 0 + 194.1: 0 + 198.1: 0 + 202.1: 0 + 206.1: 0 + 210.1: 0 + 214.1: 0 + 218.1: 0 + 222.1: 0 + 226.1: 0 + 230.1: 0 + 234.1: 0 + 238.1: 0 + 242.1: 0 + 246.1: 0 + 250.1: 0 + 254.1: 0 + 258.1: 0 + 262.1: 0 + 266.1: 0 + 270.1: 0 + 274.1: 0 + 278.1: 0 + 282.1: 0 + 286.1: 0 + 290.1: 0 + 294.1: 0 + 298.1: 0 + 302.1: 0 + 306.1: 0 + 310.1: 0 + 314.1: 0 + 318.1: 0 + 322.1: 0 + 326.1: 0 + 330.1: 0 + 334.1: 0 + 338.1: 0 + 342.1: 0 + 346.1: 0 + 350.1: 0 + 354.1: 0 + 358.1: 0 + 362.1: 0 + 366.1: 0 + 371: 0 + 372.1: 0 + 372.11: 0 + 372.14: 0 + 377.1: 0 + 381.1: 0 + 385.1: 0 + 389.1: 0 + 393.1: 0 + 397.1: 0 + 401.1: 0 + 405.1: 0 + 409.1: 0 + 413.1: 0 + 417.1: 0 + 421: 0 + 422: 0 + 423.1: 0 + 425.1: 0 + 430: 0 + 431: 0 + 432.1: 0 + 434.1: 0 + 439: 0 + 440: 0 + 441.1: 0 + 443.1: 0 + 448.1: 0 + 452.1: 0 + 490.1: 0 + 494.1: 0 + 498.1: 0 + 502.1: 0 + 506.1: 0 + 510.1: 0 + 516.1: 0 + 520.1: 0 + 526.1: 0 + 532.1: 0 + 536.1: 0 + 540.1: 0 + 544.1: 0 + 548.1: 0 + 552.1: 0 + 558.1: 0 + 562.1: 0 + 566.1: 0 + 570.1: 0 + 574.1: 0 + 578.1: 0 + 582.1: 0 + 586.1: 0 + 590.1: 0 + 594.1: 0 + 598.1: 0 + 602.1: 0 + 606.1: 0 + 610.1: 0 + 618.1: 0 + 622.1: 0 + 626.1: 0 + 630.1: 0 + 634.1: 0 + 638.1: 0 + 642.1: 0 + 646.1: 0 + 650.1: 0 + 654.1: 0 + 658.1: 0 + 662.1: 0 + 666.1: 0 + 670.1: 0 + 674.1: 0 + 680.1: 0 + 684.1: 0 + 685: 0 + 687: 0 + 688.1: 0 + 690.1: 0 + 696.1: 0 + 700.1: 0 + 704.1: 0 + 708.1: 0 + 712.1: 0 + 716.1: 0 + 720.1: 0 + 725.1: 0 + 729.1: 0 + 733.1: 0 + 737.1: 0 + 741.1: 0 + 745.1: 0 + 749.1: 0 + 753.1: 0 + 757.1: 0 + 761.1: 0 + 765.1: 0 + 773.1: 0 + 780.1: 0 + 784.1: 0 + 788.1: 0 + 792.1: 0 + 810.1: 0 + 826.1: 0 + 830.1: 0 + 834.1: 0 + 838.1: 0 + 842.1: 0 + 846.1: 0 + 850.1: 0 + 854.1: 0 + 858.1: 0 + 862.1: 0 + 866.1: 0 + 870.1: 0 + 874.1: 0 + 878.1: 0 + 882.1: 0 + 886.1: 0 + 890.1: 0 + 894.1: 0 + 898.1: 0 + 902.1: 0 + 906.1: 0 + 910: 0 + 911: 0 + 912.1: 0 + 917: 545 + 917.1: 545 + 921: 549 + 921.1: 575 _ZNK9oceanbase3sql6ObStmt11is_dml_stmtEv:566 + 922: 1 + 923: 1 + 924: 1 + 924.1: 1 + 925.1: 0 + 929: 551 + 929.1: 571 _ZNK9oceanbase3sql6ObStmt11is_dml_stmtEv:571 + 929.2: 1 + 930: 0 + 933.1: 0 + 934.1: 0 + 936.1: 0 + 940: 569 + 940.1: 569 + 941: 1 + 942: 1 + 944: 1 + 945.1: 0 + 946.1: 1 + 948.1: 0 + 950: 1 + 951: 1 + 952: 1 + 954: 1 + 955: 1 + 956: 554 + 957: 574 _ZNK9oceanbase3sql6ObStmt19has_global_variableEv:560 + 957.1: 574 _ZN9oceanbase3sql6ObStmt11is_dcl_stmtENS0_4stmt8StmtTypeE:606 + 957.2: 558 _ZN9oceanbase3sql6ObStmt11is_ddl_stmtENS0_4stmt8StmtTypeEb:557 + 958: 1 + 959: 1 + 960: 1 + 961: 1 + 962: 0 + 963.1: 0 + 965: 1 + 967: 1 + 968.1: 0 + 973: 538 + 29: _ZN9oceanbase3sql15ObSchemaChecker16get_schema_guardEv:0 + 0: 0 + 42: _ZN9oceanbase3sql18ObBasicSessionInfo13set_stmt_typeENS0_4stmt8StmtTypeE:2814 + 0: 469 + 44: _ZN9oceanbase3sql16ObSQLSessionInfo16get_cur_exec_ctxEv:3283 + 0: 469 + 45.1: _ZN9oceanbase3sql13ObExecContext11get_sql_ctxEv:3283 + 0: 469 + 372.1: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 917.1: _ZNK9oceanbase3sql6ObStmt17is_dml_write_stmtEv:2184 + 1: 545 _ZN9oceanbase3sql6ObStmt17is_dml_write_stmtENS0_4stmt8StmtTypeE:573 + 923: _ZN9oceanbase3sql20ObRawExprWrapEnumSetC2ERNS0_16ObRawExprFactoryEPNS0_16ObSQLSessionInfoE:44 + 2: 1 + 3: 1 + 4: 1 + 5: 1 + 6: 1 + 929.2: _ZNK9oceanbase3sql6ObStmt15is_explain_stmtEv:4 + 0: 1 + 940.1: _ZNK9oceanbase3sql6ObStmt11is_dml_stmtEv:16815 + 2: 569 + 2: _ZN9oceanbase3sql6ObStmt11is_dml_stmtENS0_4stmt8StmtTypeE:15108 + 3: 569 + 952: _ZNK9oceanbase3sql6ObStmt17is_dml_write_stmtEv:8 + 1: 1 + 956: _ZNK9oceanbase3sql6ObStmt13get_stmt_typeEv:1662 + 2: 554 + 960: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:7 + 0: 1 +_ZN9oceanbase5trace16__ObFLTSpanGuardD2Ev:203457:11803 + 0: 11169 + 0.1: 0 + 0.2: 0 + 0.3: 0 + 0.4: 0 + 0.5: 0 + 0.7: 0 + 0.8: 0 + 0.11: 11514 + 0.12: 0 + 0.3: _ZNK9oceanbase5trace4UUID9is_initedEv:0 + 0: 0 + 0.1: 0 + 0.6: _ZN9oceanbase5trace7ObTrace13is_auto_flushEv:0 + 0: 0 +_ZN9oceanbase3sql16ObCandiTabletLocD2Ev:202955:4619 + 1: 4583 + 2: 4583 _ZN9oceanbase6common13ObSEArrayImplIlLl2ENS0_19ModulePageAllocatorELb1EED2Ev:4589 + 2.1: 4339 _ZN9oceanbase3sql14ObOptTabletLocD1Ev:4320 +_ZN9oceanbase3sql16ObCandiTabletLocD1Ev:202955:4619 + 1: 4583 + 2: 4583 _ZN9oceanbase6common13ObSEArrayImplIlLl2ENS0_19ModulePageAllocatorELb1EED2Ev:4589 + 2.1: 4339 _ZN9oceanbase3sql14ObOptTabletLocD1Ev:4320 +easy_socket_read:202838:1104 + 1: 1014 + 7: 1014 + 8.1: 5293 + 8.2: 0 + 8.3: 0 + 10: 5293 + 12: 0 + 16.1: 0 + 16.2: 0 + 16.3: 0 + 16.4: 0 + 16.8: 0 + 16.11: 0 + 24: 5293 + 16.10: easy_socket_err_reason:0 + 4: 0 +_ZN9oceanbase3lib21ObMallocCallbackGuardD2Ev:202171:5276 + 1: 4931 + 2: 4931 + 2.1: 4931 + 3: 4931 + 7: 4931 + 2: _ZNK9oceanbase3lib16ObMallocCallback4nextEv:19724 + 0: 4931 + 5: _ZN9oceanbase3lib16ObMallocCallback6unlinkEv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 +_ZN9oceanbase3lib21ObMallocCallbackGuardD1Ev:202171:5276 + 1: 4931 + 2: 4931 + 2.1: 4931 + 3: 4931 + 7: 4931 + 2: _ZNK9oceanbase3lib16ObMallocCallback4nextEv:19724 + 0: 4931 + 5: _ZN9oceanbase3lib16ObMallocCallback6unlinkEv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 +_ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl8ENS0_19ModulePageAllocatorELb0EE9push_backERKS2_:201958:4464 + 2: 4388 + 5: 4388 + 6: 5 + 12: 5 + 15: 5 + 15.1: 4388 + 16: 4388 + 19: 4388 + 15.1: _ZN9oceanbase6common9ObClassOpINS0_10ObTabletIDELb0EE20construct_and_assignERKS2_RS2_:30716 + 3: _ZN9oceanbase6common16construct_assignINS0_10ObTabletIDEEEiRT_RKS3_:30716 + 2: _ZN9oceanbase6common21construct_assign_wrapINS0_10ObTabletIDEEEiRT_RKS3_NS0_8BoolTypeILb0EEE:30716 + 2: _ZN9oceanbase6common10ObTabletIDC2ERKS1_:30716 + 0: 4388 +_ZN9oceanbase11transaction14ObPartTransCtx17after_submit_log_ERNS0_12ObTxLogBlockEPNS0_9ObTxLogCbEPNS_8memtable21ObRedoLogSubmitHelperE:201532:289 + 0: 1 + 2: 1 + 3: 263 + 4: 263 + 6: 263 + 7: 1 + 8.1: 1 + 9.1: 263 + 9.2: 263 _ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EE6assignERKNS0_8ObIArrayIS3_EE:273 + 10.1: 1 + 16: 1 + 16.1: 1 + 16.3: 1 + 20: 238 + 20.1: 246 _ZN9oceanbase11transaction14ObPartTransCtx18update_rec_log_ts_Ebl:238 + 21.1: 1 + 23: 1 + 24: 222 + 25: 222 + 26: 238 _ZN9oceanbase8memtable13ObMemtableCtx13log_submittedERKNS0_21ObRedoLogSubmitHelperE:235 + 27.1: 1 + 30: 1 + 35: 1 + 35.1: 1 + 37: 233 + 46: 1 + 52: 247 + 53: 1 + 54.1: 1 + 56: 1 + 59: 1 + 68.1: 1 + 75.1: 216 + 75.3: 1 + 75.4: 1 + 75.6: 1 + 75.7: 1 + 75.8: 1 + 75.10: 1 + 75.11: 1 + 75.24: 1 + 86: 214 + 88: 214 + 89.1: 255 _ZN9oceanbase11transaction12ObTxLogBlock5reuseElRKNS0_18ObTxLogBlockHeaderE:254 + 90: 281 + 91.2: 281 + 12: _ZN9oceanbase11transaction10is_containERKNS_6common9ObSEArrayINS0_9ObTxCbArgELl3ENS1_19ModulePageAllocatorELb0EEENS0_11ObTxLogTypeE:8076 + 3.1: 252 + 4: 252 + 3.1: _ZNK9oceanbase6common12ObIArrayWrapINS_11transaction9ObTxCbArgEE5countEv:1008 + 0: 252 + 4: _ZNK9oceanbase6common12ObIArrayWrapINS_11transaction9ObTxCbArgEE2atEl:2520 + 13: _ZN9oceanbase11transaction10is_containERKNS_6common9ObSEArrayINS0_9ObTxCbArgELl3ENS1_19ModulePageAllocatorELb0EEENS0_11ObTxLogTypeE:27 + 3.1: 1 + 4: 1 + 4: _ZNK9oceanbase6common12ObIArrayWrapINS_11transaction9ObTxCbArgEE2atEl:10 + 14: _ZN9oceanbase11transaction10is_containERKNS_6common9ObSEArrayINS0_9ObTxCbArgELl3ENS1_19ModulePageAllocatorELb0EEENS0_11ObTxLogTypeE:17 + 3.1: 1 + 4: 1 + 15: _ZN9oceanbase11transaction10is_containERKNS_6common9ObSEArrayINS0_9ObTxCbArgELl3ENS1_19ModulePageAllocatorELb0EEENS0_11ObTxLogTypeE:6276 + 3.1: 252 + 4: 499 + 16: _ZNK9oceanbase11transaction13ObTxBaseLogCb7get_lsnEv:16 + 0: 1 + 23.1: _ZN9oceanbase11transaction10is_containERKNS_6common9ObSEArrayINS0_9ObTxCbArgELl3ENS1_19ModulePageAllocatorELb0EEENS0_11ObTxLogTypeE:6655 + 3.1: 246 + 4: 246 + 3.1: _ZNK9oceanbase6common12ObIArrayWrapINS_11transaction9ObTxCbArgEE5countEv:984 + 0: 246 + 4: _ZNK9oceanbase6common12ObIArrayWrapINS_11transaction9ObTxCbArgEE2atEl:984 + 24: _ZN9oceanbase11transaction9ObTxLogCb13set_callbacksERKNS_8memtable15ObCallbackScopeE:4662 + 0: _ZN9oceanbase8memtable15ObCallbackScopeaSERKS1_:4662 + 0: _ZN9oceanbase8memtable24ObITransCallbackIteratoraSERKS1_:2220 + 2: 222 + 0.1: _ZN9oceanbase8memtable24ObITransCallbackIteratoraSERKS1_:2442 + 2: 222 + 25: _ZN9oceanbase11transaction14ObPartTransCtx27update_max_submitted_seq_noEl:8881 + 2: _ZN9oceanbase6common10inc_updateIlEElPT_S2_:8881 + 3: 222 + 4.1: 444 + 5: 222 + 30.1: _ZN9oceanbase11transaction10is_containERKNS_6common9ObSEArrayINS0_9ObTxCbArgELl3ENS1_19ModulePageAllocatorELb0EEENS0_11ObTxLogTypeE:1666 + 3.1: 238 + 3.1: _ZNK9oceanbase6common12ObIArrayWrapINS_11transaction9ObTxCbArgEE5countEv:952 + 0: 238 + 33.1: _ZN9oceanbase11transaction10is_containERKNS_6common9ObSEArrayINS0_9ObTxCbArgELl3ENS1_19ModulePageAllocatorELb0EEENS0_11ObTxLogTypeE:13610 + 3.1: 717 + 4: 717 + 4: _ZNK9oceanbase6common12ObIArrayWrapINS_11transaction9ObTxCbArgEE2atEl:952 + 35: _ZN9oceanbase11transaction9ObTxLogCb13get_mds_rangeEv:4 + 0: 1 + 37.1: _ZN9oceanbase11transaction10is_containERKNS_6common9ObSEArrayINS0_9ObTxCbArgELl3ENS1_19ModulePageAllocatorELb0EEENS0_11ObTxLogTypeE:1631 + 3.1: 233 + 3.1: _ZNK9oceanbase6common12ObIArrayWrapINS_11transaction9ObTxCbArgEE5countEv:932 + 0: 233 + 40.1: _ZN9oceanbase11transaction10is_containERKNS_6common9ObSEArrayINS0_9ObTxCbArgELl3ENS1_19ModulePageAllocatorELb0EEENS0_11ObTxLogTypeE:9531 + 3.1: 234 + 4: 459 + 4: _ZNK9oceanbase6common12ObIArrayWrapINS_11transaction9ObTxCbArgEE2atEl:1631 + 41: _ZN9oceanbase11transaction12ObTxSubState22set_info_log_submittedEv:1768 + 1: 221 + 43.1: _ZN9oceanbase11transaction10is_containERKNS_6common9ObSEArrayINS0_9ObTxCbArgELl3ENS1_19ModulePageAllocatorELb0EEENS0_11ObTxLogTypeE:18137 + 3.1: 711 + 4: 711 + 3.1: _ZNK9oceanbase6common12ObIArrayWrapINS_11transaction9ObTxCbArgEE5countEv:884 + 0: 221 + 4: _ZNK9oceanbase6common12ObIArrayWrapINS_11transaction9ObTxCbArgEE2atEl:1547 + 45: _ZN9oceanbase11transaction12ObTxSubState23set_state_log_submittedEv:8 + 1: 1 + 46: _ZNK9oceanbase11transaction13ObTxBaseLogCb10get_log_tsEv:4 + 0: 1 + 48.1: _ZN9oceanbase11transaction10is_containERKNS_6common9ObSEArrayINS0_9ObTxCbArgELl3ENS1_19ModulePageAllocatorELb0EEENS0_11ObTxLogTypeE:14709 + 3.1: 487 + 4: 743 + 3.1: _ZNK9oceanbase6common12ObIArrayWrapINS_11transaction9ObTxCbArgEE5countEv:4 + 0: 1 + 4: _ZNK9oceanbase6common12ObIArrayWrapINS_11transaction9ObTxCbArgEE2atEl:972 + 50: _ZN9oceanbase11transaction12ObTxSubState23set_state_log_submittedEv:1976 + 1: 247 + 59.1: _ZN9oceanbase11transaction10is_containERKNS_6common9ObSEArrayINS0_9ObTxCbArgELl3ENS1_19ModulePageAllocatorELb0EEENS0_11ObTxLogTypeE:21817 + 3.1: 745 + 4: 745 + 3.1: _ZNK9oceanbase6common12ObIArrayWrapINS_11transaction9ObTxCbArgEE5countEv:988 + 0: 247 + 4: _ZNK9oceanbase6common12ObIArrayWrapINS_11transaction9ObTxCbArgEE2atEl:988 + 61: _ZN9oceanbase11transaction12ObTxSubState23set_state_log_submittedEv:13 + 1: 1 + 63.1: _ZN9oceanbase11transaction10is_containERKNS_6common9ObSEArrayINS0_9ObTxCbArgELl3ENS1_19ModulePageAllocatorELb0EEENS0_11ObTxLogTypeE:19111 + 3.1: 703 + 4: 703 + 3.1: _ZNK9oceanbase6common12ObIArrayWrapINS_11transaction9ObTxCbArgEE5countEv:960 + 0: 240 + 4: _ZNK9oceanbase6common12ObIArrayWrapINS_11transaction9ObTxCbArgEE2atEl:960 + 65: _ZN9oceanbase11transaction12ObTxSubState23set_state_log_submittedEv:8 + 1: 1 + 75.3: _ZN9oceanbase3lib20is_trace_log_enabledEv:12 + 2: 1 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:7 + 2: 1 + 75.11: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EE12check_unlockEv:30 + 2: 1 + 3: _ZN9oceanbase3lib7ObMutex6unlockEv:17 + 0: 1 + 75.18: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EE10check_lockEv:40 + 2: 1 + 3: _ZN9oceanbase3lib7ObMutex4lockEv:31 + 0: 1 + 75.20: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EE10get_bufferEv:13 + 0: 1 + 75.21: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EE14get_buffer_posEv:3 + 0: 1 + 75.22: _ZNK9oceanbase11transaction13ObTxBaseLogCb10get_log_tsEv:8 + 0: 1 + 75.23: _ZNK9oceanbase11transaction13ObTxBaseLogCb7get_lsnEv:13 + 0: 1 + 88: _ZN9oceanbase11transaction18ObTxLogBlockHeaderC2EmlRKNS0_9ObTransIDE:7280 + 3: 214 + 5: 214 _ZN9oceanbase11transaction18ObTxLogBlockHeader16before_serializeEv:217 + 0: _ZN9oceanbase11transaction17ObTxSerCompatByteC2Ev:2996 + 0: _ZN9oceanbase11transaction17ObTxSerCompatByte5resetEv:2996 + 3: 214 + 89: _ZNK9oceanbase11transaction9ObTransIDcvlEv:1020 + 0: 255 +_ZZN9oceanbase8memtable10ObMemtable3getERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS_12blocksstable13ObDatumRowkeyERPNS2_18ObStoreRowIteratorEENK5$_114clEPKc.1dd22efca7fa83ae50e8099a04ad3959:201518:3282 + 0: 3358 + 0.1: 0 + 0.2: 3358 + 0.3: 3165 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:3276 + 0.5: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:53805 + 2: 3165 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKNS_12blocksstable13ObDatumRowkeyELb0EEC2EPKcS5_:0 + 0: 0 +_ZN9oceanbase11transaction12ObTxSnapshot5resetEv:201432:7624 + 1: 7194 + 2: 7194 + 4: 7194 + 5: 7194 + 6: 7194 +_ZNK9oceanbase11transaction11ObCtxTxData18get_commit_versionEv:200352:2067 + 1: 2015 + 2: 2015 + 3: 2123 + 3.3: 2123 + 4: 2034 + 2: _ZN9oceanbase6common14SpinRLockGuardC2ERKNS0_10SpinRWLockE:55377 + 1: 2015 + 3: 2123 + 4.1: 0 + 5: 0 + 3: _ZN9oceanbase6common10SpinRWLock6rdlockEl:28210 + 0: 2015 _ZN9oceanbase6common7ObLatch6rdlockEjl:2139 + 4: _ZN9oceanbase6common14SpinRLockGuardD2Ev:37591 + 2: 2123 + 3: 2123 + 3.1: 2034 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase6common10SpinRWLock6unlockEv:6369 + 0: 2123 _ZN9oceanbase6common7ObLatch6unlockEPKj:2149 +_ZN9oceanbase5trace7ObTrace7set_tagImJEEEv9ObTagTypeRKT_DpT0_:200079:5016 + 1: 4663 + 2.1: 0 + 3: 4607 + 3.1: 56 + 4: 56 + 4.1: 0 + 6: 0 + 11: 4629 + 2: _ZNK9oceanbase5trace4UUID9is_initedEv:55620 + 0: 4663 + 0.1: 4607 + 5: _ZN9oceanbase5trace7ObTrace10append_tagImLb1EEEb9ObTagTypeRKT_:0 + 3: 0 + 7: _ZN9oceanbase5trace7ObTrace10append_tagImLb1EEEb9ObTagTypeRKT_:0 + 3: 0 +_ZNK9oceanbase11transaction11ObXATransID5emptyEv:199620:10690 + 1: 9981 + 2: 9981 + 2: _ZNK9oceanbase6common8ObString5emptyEv:139734 + 2: 9981 + 2.1: 9981 +_ZN9oceanbase6common13ObSEArrayImplINS_5share6schema9ObColDescELl32ENS0_19ModulePageAllocatorELb0EE7destroyEv:199036:3017 + 1: 2927 + 9: 2927 + 11: 0 + 13: 2927 + 15: 2927 + 24: 2927 + 25: 2927 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema9ObColDescELl32ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase6commonL10string_intENS0_9ObObjTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS4_m.db28c62327e16d3ae5c8a88acfd53bbb:198258:377 + 2: 372 + 2.1: 5 + 2.2: 5 + 2.3: 5 + 2.6: 5 + 3: 372 + 7: 372 + 7.1: 0 + 7.2: 366 + 7.3: 366 + 10: 5 + 11.1: 5 + 13.1: 366 + 13.2: 0 + 14: 7 + 15.1: 7 + 16.1: 7 + 16.11: 7 + 16.14: 7 + 17.1: 371 + 17.3: 371 _ZN9oceanbase6common9ObCharset20get_system_collationEv:391 + 17.4: 402 _ZN9oceanbase6commonL24convert_string_collationERKNS0_8ObStringENS0_15ObCollationTypeERS1_S4_RNS0_15ObObjCastParamsE.db28c62327e16d3ae5c8a88acfd53bbb:418 + 18.1: 5 + 21: 357 + 23: 402 + 23.2: 357 _ZN9oceanbase6common21common_string_integerERKmRKNS0_9ObObjTypeERKNS0_15ObCollationTypeERKNS0_8ObStringEbRl:365 + 25.1: 402 + 25.2: 5 + 27.2: 429 + 27.8: 420 + 27.9: 5 + 30: 387 + 33: 376 + 33.2: 7 + 34: 378 + 4: _ZN9oceanbase6common8ObStringC2Ev:2604 + 1: 372 + 7: _ZNK9oceanbase6common5ObObj14get_type_classEv:4836 + 0: _ZNK9oceanbase6common9ObObjMeta14get_type_classEv:4836 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:2604 + 0: 372 + 0.1: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:2232 + 2: 372 + 7.2: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:4026 + 2: 366 + 2.1: 366 + 13.1: _ZN9oceanbase3lib14is_oracle_modeEv:16354 + 2: _ZN9oceanbase3lib15get_compat_modeEv:16354 + 2: 366 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:10498 + 2: 366 + 2.1: 5 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:110 + 1: 5 + 13.2: _ZNK9oceanbase6common5ObObj7is_blobEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta7is_blobEv:0 + 2.1: 0 + 16.1: _ZN9oceanbase3lib14is_oracle_modeEv:589 + 2: _ZN9oceanbase3lib15get_compat_modeEv:589 + 2: 7 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:477 + 2: 7 + 2.1: 5 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:110 + 1: 5 + 16.12: _ZN9oceanbase6common8ObLogger10get_loggerEv:459 + 2: 7 + 2.1: 5 + 2.2: 5 + 2.3: 5 + 2.6: 5 + 16.15: _ZN9oceanbase6common8ObLogger10get_loggerEv:459 + 2: 7 + 2.1: 5 + 2.2: 5 + 2.3: 5 + 2.6: 5 + 17.1: _ZNK9oceanbase6common5ObObj10get_stringEv:4823 + 1: 371 + 1: _ZN9oceanbase6common8ObStringC2ElPKc:1113 + 5: 371 + 17.2: _ZNK9oceanbase6common5ObObj18get_collation_typeEv:1855 + 0: _ZNK9oceanbase6common9ObObjMeta18get_collation_typeEv:1855 + 0: 371 + 23: _ZNK9oceanbase6common5ObObj8get_typeEv:1785 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:1785 + 0: 357 + 23.1: _ZNK9oceanbase6common5ObObj18get_collation_typeEv:1785 + 0: _ZNK9oceanbase6common9ObObjMeta18get_collation_typeEv:1785 + 0: 357 + 23.3: _ZN9oceanbase6common12get_cast_retEmiRi:1359 + 6: 403 + 8.2: 5 + 10: 5 + 11: 5 + 25.2: _ZN9oceanbase6common15int_range_checkIlEEiNS0_9ObObjTypeET_Rl:180 + 4: 5 + 4: _ZN9oceanbase6common19numeric_range_checkIllEEiT_T0_S3_RS3_:70 + 8: 5 + 11.1: 5 + 25.3: _ZN9oceanbase6common12get_cast_retEmiRi:70 + 8.2: 5 + 10: 5 + 11: 5 + 27.8: _ZN9oceanbase6common5ObObj7set_intENS0_9ObObjTypeEl:38182 + 4: 387 + 2: _ZN9oceanbase6common9ObObjMeta8set_typeERKNS0_9ObObjTypeE:27735 + 2: 420 + 3: 420 + 13: 407 + 14: 407 + 4: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:110 + 0: 10 + 8: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:40 + 0: 5 + 11: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:30 + 0: 5 + 12.1: _ZN9oceanbase6common17ob_is_string_typeENS0_9ObObjTypeE:8140 + 0: 407 + 0: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:3663 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:3663 + 2: 407 + 17: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:2904 + 0: 412 + 3: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:1548 + 0: 387 + 27.10: _ZN9oceanbase6common5ObObj7set_intENS0_9ObObjTypeEl:960 + 4: 7 + 2: _ZN9oceanbase6common9ObObjMeta8set_typeERKNS0_9ObObjTypeE:680 + 2: 5 + 3: 5 + 13: 7 + 14: 7 + 4: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:55 + 0: 5 + 8: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:77 + 0: 7 + 11: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:42 + 0: 7 + 12.1: _ZN9oceanbase6common17ob_is_string_typeENS0_9ObObjTypeE:140 + 0: 7 + 0: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:63 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:63 + 2: 7 + 17: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:55 + 0: 5 + 3: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:28 + 0: 7 + 27.11: _ZN9oceanbase6common5ObObj8set_nullEv:98 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:98 + 0: 7 + 0.1: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:63 + 0: 7 + 31: _ZNK9oceanbase6common5ObObj7get_intEv:1548 + 0: 387 + 31.1: _ZN9oceanbase6common25get_precision_for_integerIlEEsT_:24542 + 42: 387 + 43: 387 + 45: 146 + 45.1: 722 + 49: 7 + 33.2: _ZN9oceanbase6common10ObAccuracy9set_scaleEs:42 + 0: 7 + 33.3: _ZN9oceanbase6common10ObAccuracy13set_precisionEs:28 + 0: 7 + 33.4: _ZN9oceanbase6common10ObAccuracy10set_lengthEi:42 + 0: 7 +_ZN9oceanbase6common16ObFixedArrayImplINS0_8ObStringENS0_12ObIAllocatorEED2Ev:198058:5505 + 0: 5195 + 0.1: 5099 + 0.3: 24 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS0_8ObStringENS0_12ObIAllocatorEE7destroyEv:42688 + 2: 5195 + 5: 24 + 9: 24 + 10: 24 + 12: 24 + 13: 24 + 15: 24 +_ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EE5reuseEv:197548:7453 + 1: 7287 + 4.1: 7287 + 4.3: 0 + 5: 0 + 8: 7334 + 9: 7334 + 10: 7334 + 5: _ZN9oceanbase6common10ObTabletIDD2Ev:0 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:0 + 0: 0 +_ZN9oceanbase6common16ObFixedArrayImplINS_3sql18LocationConstraintENS0_12ObIAllocatorEED2Ev:197486:5648 + 0: 5149 + 0.1: 5386 + 0.3: 3 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS_3sql18LocationConstraintENS0_12ObIAllocatorEE7destroyEv:41333 + 2: 5149 + 5: 3 + 9: 3 + 10: 3 + 12: 3 + 13: 3 + 15: 3 +_ZNK9oceanbase8observer16ObMPPacketSender8get_connEv:197288:7155 + 1: 7046 + 3: 7046 + 4.1: 0 + 5.1: 7046 + 6: 7046 _ZN9oceanbase3rpc20ObSqlRequestOperator15get_sql_sessionEPNS0_9ObRequestE:7466 + 10: 0 +_ZN9oceanbase7storage17ObLSTabletService23process_old_row_lob_colERNS0_14ObTabletHandleERNS0_15ObDMLRunningCtxERNS0_10ObStoreRowE:196921:601 + 4: 572 + 5: 572 + 6: 572 _ZN9oceanbase7storage19ObTabletBindingInfoC1Ev:586 + 7: 552 + 8: 552 _ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE7get_objEv:548 + 8.1: 528 _ZNK9oceanbase7storage8ObTablet12get_ddl_dataERNS0_19ObTabletBindingInfoE:524 + 8.2: 650 + 9.1: 5 + 11: 650 _ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE7get_objEv:672 + 15: 607 + 15.1: 607 + 16: 607 + 17: 5 + 18.1: 5 + 20.1: 607 + 20.3: 607 + 28: 616 + 29: 5 + 29.1: 5 + 30.1: 5 + 35: 621 + 36.7: 634 + 15: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:2428 + 0: 607 + 21: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE2atEl:2428 + 22: _ZNK9oceanbase6common9ObObjMeta9is_lob_v2Ev:71147 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:7527 + 0: 2509 + 0.3: _ZN9oceanbase6common16ob_is_large_textENS0_9ObObjTypeE:63620 + 0: 2509 + 36.7: _ZN9oceanbase7storage19ObTabletBindingInfoD2Ev:20513 + 0: 621 + 0.2: 621 _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EED2Ev:636 + 0.1: _ZN9oceanbase6common10ObTabletIDD2Ev:4347 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:4347 + 0: 621 + 36.8: _ZN9oceanbase7storage19ObTabletBindingInfoD2Ev:225 + 0: 5 + 0.2: 5 + 0.1: _ZN9oceanbase6common10ObTabletIDD2Ev:50 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:50 + 0: 5 +_ZN9oceanbase6common21ObSessionStatEstGuardD2Ev:196755:5483 + 1: 5045 + 2: 5045 + 3: 0 + 3.1: 0 + 4: 0 + 5: 0 + 7: 0 + 10: 5045 +_ZN9oceanbase6common21ObSessionStatEstGuardD1Ev:196755:5483 + 1: 5045 + 2: 5045 + 3: 0 + 3.1: 0 + 4: 0 + 5: 0 + 7: 0 + 10: 5045 +_ZN9oceanbase3sql10ObExecutor4initEPNS0_14ObPhysicalPlanE:196513:5263 + 1: 4793 + 2: 4793 + 3: 4793 + 4: 0 + 5.1: 0 + 6.1: 4793 + 7: 0 + 8.1: 0 + 10: 4793 + 11: 4793 + 13: 4793 +_ZNK9oceanbase6common9EventItem4callEv:195800:4924 + 1: 4895 + 2: 4895 + 3: 4895 + 5.1: 0 + 7.1: 0 + 8: 0 + 9.1: 0 + 11: 0 + 12: 0 + 13.1: 0 + 18: 4895 +_ZNK9oceanbase8observer11ObSMHandler20get_connection_phaseEP17easy_connection_t:195488:4968 + 1: 4768 + 3: 4768 + 4: 4768 + 4.1: 4768 + 5: 0 + 6.1: 0 + 9: 4768 + 11: 4768 +_ZN9oceanbase6common13ObObjFreeList5allocEv:195260:979 + 1: 949 + 6: 949 + 7: 0 + 8.1: 0 + 8.2: 0 + 8.5: 0 + 13: 949 + 14: 0 + 19: 1009 + 6: _ZN9oceanbase6commonL16get_thread_cacheEl:37011 + 4: 949 + 5: 0 + 6: 0 + 7.1: 0 + 7.2: 0 + 7.4: 0 + 10: 949 + 16: _ZN9oceanbase6common13ObObjFreeList13reclaim_allocEPNS0_13ObThreadCacheE:102367 + 4: 949 + 10: 0 + 14: 0 + 18: 0 + 22: 0 + 23: 1009 + 24: 1009 + 6: _ZN9oceanbase6common13ObObjFreeList16alloc_from_cacheEPNS0_13ObThreadCacheE:37322 + 4: 949 + 5: 949 + 10: 0 + 12: 0 + 5.1: _ZN9oceanbase6common13ObObjFreeList16alloc_from_chunkEPNS0_11ObChunkInfoE:28781 + 4: 949 + 5: 1009 + 6: 1009 + 7: 1009 + 6: _ZN9oceanbase6common13ObObjFreeList14get_chunk_infoEPv:4036 + 2: 1009 + 9: _ZN9oceanbase6common3DLLINS0_11ObChunkInfoENS2_10Link_link_EE4pushEPS2_:0 + 2: 0 + 3: 0 + 5: 0 + 6: 0 + 12: _ZN9oceanbase6common5QueueINS0_11ObChunkInfoENS2_10Link_link_EE3popEv:0 + 3: 0 + 4: 0 + 2: _ZN9oceanbase6common3DLLINS0_11ObChunkInfoENS2_10Link_link_EE3popEv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 15.1: _ZN9oceanbase6common13ObObjFreeList16alloc_from_chunkEPNS0_11ObChunkInfoE:0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 6: _ZN9oceanbase6common13ObObjFreeList14get_chunk_infoEPv:0 + 2: 0 + 10: _ZN9oceanbase6common13ObObjFreeList26alloc_from_public_freelistEPNS0_13ObThreadCacheE:0 + 2: 0 + 25: _ZN9oceanbase6common13ObObjFreeList20set_chunk_item_magicEPNS0_11ObChunkInfoEPv:44396 + 4: 1009 + 5.1: 0 + 5.5: 0 + 5.6: 0 + 7: 1009 + 3: _ZN9oceanbase6common13ObObjFreeList24get_chunk_item_magic_idxEPvPPNS0_11ObChunkInfoEb:21189 + 6: 1009 + 8: 1009 + 5.2: _ZN9oceanbase6common7ObLogKVIRhLb0EEC2EPKcS2_:0 + 0: 0 +_ZN9oceanbase6common9ObDFMUtil14parse_one_elemERNS0_13ObDFMParseCtxERNS0_9ObDFMElemEb:195206:63 + 1: 57 + 2: 57 + 3: 57 + 4: 0 + 5.1: 0 + 9: 57 + 10: 0 + 11: 0 + 12.1: 0 + 16: 0 + 16.1: 0 + 16.2: 0 + 16.3: 0 + 24.1: 4040 + 24.3: 4040 + 26: 4038 + 26.1: 2716 + 34: 0 + 35: 62 + 36: 62 + 37: 62 + 38: 62 + 39: 62 + 48: 9 + 49: 0 + 50.1: 0 + 51.1: 9 + 51.2: 9 + 54: 0 + 65: 0 + 66: 0 + 67.1: 0 + 68.1: 0 + 80: 0 + 81.1: 0 + 86: 61 + 3: _ZN9oceanbase6common13ObDFMParseCtx8is_validEv:627 + 2: 57 + 26.1: _ZN9oceanbase6common9ObDFMUtil25match_pattern_ignore_caseERNS0_13ObDFMParseCtxERKNS0_14ObTimeConstStrE:52106 + 4: 2754 + 78: _ZN9oceanbase6common13ObDFMParseCtx6updateEl:488 + 2: 61 + 3: 61 +_ZN9oceanbase3sql13ObPxAdmission20exit_query_admissionERNS0_16ObSQLSessionInfoERNS0_13ObExecContextERNS0_14ObPhysicalPlanE:195177:4952 + 3: 4539 + 4: 4539 + 4.1: 4539 + 4.2: 0 + 6: 0 + 8: 0 + 8.2: 0 + 11.1: 0 + 13: 0 + 16: 4539 + 4: _ZNK9oceanbase3sql14ObPhysicalPlan9is_use_pxEv:72624 + 0: 4539 + 65522: 4539 + 6: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:0 + 0: 0 + 7: _ZN9oceanbase3sql13ObExecContext22get_admission_addr_mapEv:0 + 2: 0 + 8.1: _ZNK9oceanbase3sql13ObExecContext21get_admission_versionEv:0 + 2: 0 +_ZN9oceanbase6common13ObSEArrayImplImLl8ENS0_19ModulePageAllocatorELb0EE9push_backERKm:194984:4331 + 2: 4234 + 5: 4234 + 6: 10 + 12: 10 + 15: 10 + 15.1: 4234 + 16: 4234 + 19: 4234 + 15.1: _ZN9oceanbase6common9ObClassOpImLb1EE20construct_and_assignERKmRm:29638 + 2: 4234 +_ZN9oceanbase6common11ObObjCaster7to_typeENS0_9ObObjTypeENS0_15ObCollationTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS6_:194743:711 + 5: 652 + 6: 652 + 7: 652 + 8: 652 + 9: 652 + 12: 652 + 13: 652 + 15: 1 + 22: 652 + 23: 1 + 24.1: 1 + 25.1: 652 + 31: 1 + 32.1: 1 + 36: 740 _ZN9oceanbase6commonL10string_intENS0_9ObObjTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS4_m.db28c62327e16d3ae5c8a88acfd53bbb:377 _ZN9oceanbase6commonL11string_uintENS0_9ObObjTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS4_m.db28c62327e16d3ae5c8a88acfd53bbb:134 _ZN9oceanbase6commonL13string_stringENS0_9ObObjTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS4_m.db28c62327e16d3ae5c8a88acfd53bbb:134 _ZN9oceanbase6commonL13string_numberENS0_9ObObjTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS4_m.db28c62327e16d3ae5c8a88acfd53bbb:18 + 37.1: 1 + 40: 1 + 41: 740 + 42: 177 + 47: 177 + 50: 1 + 51.1: 1 + 59: 744 + 7: _ZNK9oceanbase6common5ObObj14get_type_classEv:20864 + 0: _ZNK9oceanbase6common9ObObjMeta14get_type_classEv:20864 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:8476 + 0: 652 + 0.1: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:12388 + 2: 652 + 2.1: 652 + 2.3: 652 + 8: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:13040 + 2: 652 + 2.1: 652 + 22: _ZN9oceanbase6common20ob_is_invalid_obj_tcENS0_14ObObjTypeClassE:2608 + 0: _ZN9oceanbase6common18ob_is_valid_obj_tcENS0_14ObObjTypeClassE:2608 + 0: 652 + 25.1: _ZN9oceanbase3lib14is_oracle_modeEv:28733 + 2: 652 + 2: _ZN9oceanbase3lib15get_compat_modeEv:26777 + 2: 652 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:16345 + 2: 652 + 2.1: 1 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:22 + 1: 1 + 43: _ZNK9oceanbase6common5ObObj19get_collation_levelEv:708 + 0: _ZNK9oceanbase6common9ObObjMeta19get_collation_levelEv:708 + 0: 177 + 48: _ZN9oceanbase6common5ObObj18set_collation_typeERKNS0_15ObCollationTypeE:708 + 0: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:708 + 0: 177 +obsql_mysql_yy_scan_bytes:194699:532 + 1: 512 + 9: 535 + 10: 0 + 12: 535 + 14: 500 + 18: 0 + 23: 548 + 25: 548 + 8: obsql_mysql_yyalloc:10240 + 4: 512 + 6: 512 parse_malloc:512 + 3: obsql_mysql_yyget_extra:1536 + 3: 512 + 16: obsql_mysql_yy_scan_buffer:137464 + 4: 500 + 11: 547 + 12: 0 + 14: 547 + 15: 547 + 16: 547 + 17: 547 + 18: 547 + 19: 547 + 21: 547 + 10: obsql_mysql_yyalloc:11000 + 4: 500 + 6: 500 parse_malloc:539 + 3: obsql_mysql_yyget_extra:1500 + 3: 500 + 24: obsql_mysql_yy_switch_to_buffer:82268 + 10: 534 + 10.1: 534 + 10.3: 534 + 13.1: 532 + 16: 0 + 17: 0 + 18: 0 + 21: 532 + 29: 532 + 9: obsql_mysql_yyensure_buffer_stack:34896 + 5: 547 + 12: 534 + 15: 534 + 18: 534 + 21: 534 + 25: 0 + 31: 0 + 33: 0 + 35: 0 + 39: 0 + 40: 0 + 12: obsql_mysql_yyalloc:12364 + 4: 562 + 6: 562 parse_malloc:587 + 3: obsql_mysql_yyget_extra:1686 + 3: 562 + 31: obsql_mysql_yyrealloc:0 + 4: 0 + 6: 0 + 3: obsql_mysql_yyget_extra:0 + 3: 0 + 22: obsql_mysql_yy_load_buffer_state:29260 + 3: 532 + 4: 532 + 5: 532 + 6: 532 +_ZNK9oceanbase7storage13ObLSTxService16revert_store_ctxERNS0_10ObStoreCtxE:194362:5539 + 1: 5279 + 2: 5279 + 3: 5279 + 4: 18 + 5.1: 18 + 7: 5664 _ZN9oceanbase11transaction14ObTransService16revert_store_ctxERNS_7storage10ObStoreCtxE:5393 + 9: 5664 +_ZN9oceanbase11transaction12ObTxMDSRange5resetEv:192860:9745 + 1: 9643 + 5: 9643 + 3.1: _ZN9oceanbase6common4list8IteratorINS0_6ObListINS_11transaction14ObTxBufferNodeENS4_24TransModulePageAllocatorEEEEaSERKS8_:135002 + 2: 9643 +_ZN9oceanbase7storage10ObRowsInfo15check_duplicateEPNS0_10ObStoreRowElRNS0_15ObRelativeTableE:192541:254 + 1: 237 + 2: 237 + 6: 237 + 7: 0 + 8.1: 0 + 9.1: 237 + 10: 0 + 11.1: 0 + 14: 237 _ZN9oceanbase7storage20ObTableStoreIterator6resumeEv:258 + 15: 243 + 18: 243 + 19.1: 248 + 19.3: 243 + 19.6: 239 + 20: 243 + 21: 0 + 22.1: 0 + 25: 243 + 26: 243 _ZN9oceanbase12blocksstable13ObDatumRowkey11from_rowkeyERKNS_6common8ObRowkeyERNS2_12ObIAllocatorE:261 + 26.1: 239 + 27.1: 0 + 28.2: 239 + 29.1: 0 + 33: 248 + 34: 248 + 35: 0 + 38: 248 + 39: 248 + 45: 248 + 13: _ZN9oceanbase7storage10ObRowsInfo5reuseEv:51666 + 3: 237 + 4: 237 + 2: _ZN9oceanbase12blocksstable13ObDatumRowkey14set_max_rowkeyEv:14457 + 0: 237 + 0: _ZN9oceanbase6common13ObStoreRowkey7set_maxEv:7584 + 0: 237 + 5: _ZN9oceanbase6common23ObReserveArenaAllocatorILl1024EE5reuseEv:14220 + 2: 237 + 3: 237 + 4: _ZN9oceanbase6common16ObArenaAllocator5reuseEv:11376 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE5reuseEv:11376 + 2: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16free_large_pagesEv:5925 + 3.1: 237 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 13: 0 + 14: 0 + 18: 0 + 19: 237 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:0 + 0: 0 + 5.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 6: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13is_large_pageEPKNS3_4PageE:0 + 2.2: 0 + 2.2: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page8raw_sizeEv:0 + 0: 0 + 9: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page8raw_sizeEv:0 + 0: 0 + 10: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:0 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE10fast_reuseEv:5451 + 2: 237 + 3: 237 + 7: 237 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 6: _ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable13ObDatumRowkeyELl1ENS0_19ModulePageAllocatorELb0EE5reuseEv:4266 + 8: 237 + 9: 237 + 7: _ZN9oceanbase6common23ObReserveArenaAllocatorILl1024EE5reuseEv:15405 + 2: 237 + 3: 237 + 4: _ZN9oceanbase6common16ObArenaAllocator5reuseEv:11850 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE5reuseEv:11850 + 2: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16free_large_pagesEv:5925 + 3.1: 237 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 13: 0 + 14: 0 + 18: 0 + 19: 237 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:0 + 0: 0 + 5.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 6: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13is_large_pageEPKNS3_4PageE:0 + 2.2: 0 + 2.2: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page8raw_sizeEv:0 + 0: 0 + 9: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page8raw_sizeEv:0 + 0: 0 + 10: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:0 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE10fast_reuseEv:5925 + 2: 237 + 3: 237 + 7: 237 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 20: _ZNK9oceanbase7storage10ObStoreRow8is_validEv:34749 + 3: 243 + 5.1: 243 + 8.1: 0 + 9: 243 + 11: 243 + 11.1: 0 + 11.2: 243 + 12.1: 243 + 13: 0 + 7.1: _ZNK9oceanbase12blocksstable12ObDmlRowFlag8is_validEv:8505 + 2: 243 + 10.1: _ZNK9oceanbase6common8ObNewRow8is_validEv:8748 + 2: _ZNK9oceanbase6common8ObNewRow10is_invalidEv:8748 + 2: 243 + 2.1: 243 + 2.2: 243 + 2.3: 0 + 12.1: _ZNK9oceanbase12blocksstable21ObMultiVersionRowFlag18is_uncommitted_rowEv:1215 + 0: 243 + 24: _ZN9oceanbase12blocksstable13ObDatumRowkeyC2Ev:6318 + 0.4: _ZN9oceanbase12blocksstable13ObDatumRowkey5resetEv:6318 + 0: 243 + 25: _ZN9oceanbase6common8ObRowkeyC2EPNS0_5ObObjEl:3402 + 0: 243 + 28.1: _ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable13ObDatumRowkeyELl1ENS0_19ModulePageAllocatorELb0EE9push_backERKS3_:18881 + 5: 239 + 6: 0 + 12: 0 + 15: 0 + 15.1: 239 + 16: 239 + 15.1: _ZN9oceanbase6common9ObClassOpINS_12blocksstable13ObDatumRowkeyELb0EE20construct_and_assignERKS3_RS3_:9799 + 3: _ZN9oceanbase6common16construct_assignINS_12blocksstable13ObDatumRowkeyEEEiRT_RKS4_:9799 + 2: _ZN9oceanbase6common21construct_assign_wrapINS_12blocksstable13ObDatumRowkeyEEEiRT_RKS4_NS0_8BoolTypeILb0EEE:9799 + 2: 239 + 36.1: _ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable13ObDatumRowkeyELl1ENS0_19ModulePageAllocatorELb0EE3endEv:0 + 2: 0 + 36.2: _ZSt4sortIN9oceanbase6common5array17ObSEArrayIteratorINS0_12blocksstable13ObDatumRowkeyELl1ENS1_19ModulePageAllocatorELb0EEENS0_7storage10ObRowsInfo11RowsCompareEEvT_SB_T0_:0 + 11.1: _ZSt6__sortIN9oceanbase6common5array17ObSEArrayIteratorINS0_12blocksstable13ObDatumRowkeyELl1ENS1_19ModulePageAllocatorELb0EEEN9__gnu_cxx5__ops15_Iter_comp_iterINS0_7storage10ObRowsInfo11RowsCompareEEEEvT_SF_T0_:0 + 3: 0 + 5: 0 + 6: 0 + 7: 0 + 3: _ZNK9oceanbase6common5array17ObSEArrayIteratorINS_12blocksstable13ObDatumRowkeyELl1ENS0_19ModulePageAllocatorELb0EEneERKS6_:0 + 3: 0 + 6.1: _ZSt4__lgl:0 + 1: 0 + 8: _ZSt22__final_insertion_sortIN9oceanbase6common5array17ObSEArrayIteratorINS0_12blocksstable13ObDatumRowkeyELl1ENS1_19ModulePageAllocatorELb0EEEN9__gnu_cxx5__ops15_Iter_comp_iterINS0_7storage10ObRowsInfo11RowsCompareEEEEvT_SF_T0_:0 + 3: 0 + 5.1: 0 + 6.1: 0 + 10: 0 + 39: _ZN9oceanbase6common12ObIArrayWrapINS_12blocksstable13ObDatumRowkeyEE2atEl:1736 + 6: 248 +_ZNK9oceanbase7storage8ObITable11is_memtableEv:192517:14991 + 0: 14809 + 0: _ZN9oceanbase7storage8ObITable11is_memtableENS1_9TableTypeE:103663 + 4: 14809 +_ZN9oceanbase12blocksstable23ObIMicroBlockFlatReaderC2Ev:191195:1178 + 2: 1106 + 6: 1106 _ZN9oceanbase12blocksstable11ObRowReaderC1Ev:1119 + 7: 1106 + 8: 1093 + 5.1: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:128296 + 4: 1106 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:111706 + 2: 1106 + 3: 1106 + 4: 1106 + 5: 1106 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:56406 + 0: 1106 + 8.1: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:0 + 0: 0 +_ZN9oceanbase12blocksstable23ObIMicroBlockFlatReaderC1Ev:191195:1178 + 2: 1106 + 6: 1106 _ZN9oceanbase12blocksstable11ObRowReaderC1Ev:1119 + 7: 1106 + 8: 1093 + 5.1: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:128296 + 4: 1106 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:111706 + 2: 1106 + 3: 1106 + 4: 1106 + 5: 1106 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:56406 + 0: 1106 + 8.1: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:0 + 0: 0 +_ZNK9oceanbase11transaction18ObTxLogBlockHeader10serialize_EPclRl:190607:710 + 0: 666 + 0.1: 666 + 0.3: 0 + 0.7: 0 + 0.8: 690 _ZNK9oceanbase11transaction17ObTxSerCompatByte15is_object_validEl:704 + 0.9: 791 _ZN9oceanbase6common13serialization6encodeEPclRlm:751 + 0.11: 9 + 0.17: 0 + 0.18: 803 _ZNK9oceanbase11transaction17ObTxSerCompatByte15is_object_validEl:824 + 0.19: 795 + 0.21: 11 + 0.27: 1 + 0.28: 793 _ZNK9oceanbase11transaction17ObTxSerCompatByte15is_object_validEl:809 + 0.29: 756 + 0.31: 11 + 0.37: 756 + 0.38: 9 + 0.45: 9 + 0.46: 11 + 0.53: 11 + 0.54: 11 + 0.61: 11 + 0.1: _ZNK9oceanbase11transaction17ObTxSerCompatByte9serializeEPclRl:57537 + 2: 666 + 4.1: 666 + 4.3: 666 + 5: 666 + 6.1: 9 + 10: 666 + 5: _ZN9oceanbase6common13serialization9encode_i8EPclRla:23310 + 4: 666 + 5: 666 + 0.12: _ZN9oceanbase6common7ObLogKVIRA16_KcLb0EEC2EPS2_S4_:360 + 0: 9 + 0.19: _ZN9oceanbase6common13serialization6encodeEPclRll:5440 + 2: 772 _ZN9oceanbase6common13serialization11encode_vi64EPclRll:784 + 0.22: _ZN9oceanbase6common7ObLogKVIRA14_KcLb0EEC2EPS2_S4_:440 + 0: 11 + 0.29: _ZN9oceanbase6common13serialization6encodeINS_11transaction9ObTransIDEEEiPclRlRKT_:7286 + 2: _ZN9oceanbase6common13serialization11EnumEncoderILb0ENS_11transaction9ObTransIDEE6encodeEPclRlRKS4_:7286 + 2: 727 _ZNK9oceanbase11transaction9ObTransID9serializeEPclRl:747 + 0.32: _ZN9oceanbase6common7ObLogKVIRA7_KcLb0EEC2EPS2_S4_:440 + 0: 11 + 0.40: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:396 + 0: 9 + 0.42: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:162 + 0: 9 + 0.44: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:360 + 0: 9 + 0.48: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:484 + 0: 11 + 0.50: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:198 + 0: 11 + 0.52: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:440 + 0: 11 + 0.56: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:484 + 0: 11 + 0.58: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:198 + 0: 11 + 0.60: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:440 + 0: 11 +_ZN9oceanbase6common13ObSEArrayImplImLl4ENS0_19ModulePageAllocatorELb0EE7reserveEl:190550:4746 + 1: 4451 + 2: 4451 + 3: 4451 + 5: 3 + 6: 3 + 7: 3 + 7.3: 3 + 9: 0 + 10: 0 + 11: 0 + 12: 0 + 15: 0 + 16: 0 + 23: 0 + 24.1: 0 + 27: 4705 + 8: _ZN9oceanbase6common13ObSEArrayImplImLl4ENS0_19ModulePageAllocatorELb0EE16internal_malloc_El:177 + 2: 3 + 7: 3 + 13: 3 + 13: _ZN9oceanbase6common19ModulePageAllocator5allocEl:117 + 2: 3 + 3: 3 _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:3 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:48 + 5: 3 + 7: 3 + 8: 3 + 10: _ZN9oceanbase6common9ObClassOpImLb1EE12array_expandEPKmPml:0 + 2: 0 + 13: _ZN9oceanbase6common13ObSEArrayImplImLl4ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase6common20ObActiveSessionGuard17setup_default_ashEv:189501:5093 + 1: 4859 + 2: 4859 + 3: 4859 +_ZNK9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE8is_validEv:189168:9329 + 1: 9008 + 2: 9008 + 2.1: 9008 + 2.2: 9008 +_ZN9oceanbase6common13ObSEArrayImplINS_11transaction6ObPairINS_5share6ObLSIDElEELl1ENS0_19ModulePageAllocatorELb0EE7reserveEl:189000:5648 + 1: 5400 + 2: 5400 + 3: 5400 + 5: 0 + 6: 0 + 7: 0 + 7.3: 0 + 9: 0 + 10: 0 + 11: 0 + 12: 0 + 13: 0 + 15: 0 + 16: 0 + 23: 0 + 24.1: 0 + 27: 5400 + 8: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction6ObPairINS_5share6ObLSIDElEELl1ENS0_19ModulePageAllocatorELb0EE16internal_malloc_El:0 + 2: 0 + 7: 0 + 13: 0 + 13: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 10: _ZN9oceanbase6common9ObClassOpINS_11transaction6ObPairINS_5share6ObLSIDElEELb0EE12array_expandEPKS6_PS6_l:0 + 4: 0 + 4.1: 0 + 4.3: 0 + 4.5: 0 + 18: 0 + 18.1: 0 + 18.3: 0 + 5: _ZN9oceanbase6common16construct_assignINS_11transaction6ObPairINS_5share6ObLSIDElEEEEiRT_RKS7_:0 + 2: _ZN9oceanbase6common21construct_assign_wrapINS_11transaction6ObPairINS_5share6ObLSIDElEEEEiRT_RKS7_NS0_8BoolTypeILb0EEE:0 + 2: _ZN9oceanbase11transaction6ObPairINS_5share6ObLSIDElEC2ERKS4_:0 + 0: 0 + 0: _ZN9oceanbase5share6ObLSIDC2ERKS1_:0 + 0: 0 + 19: _ZN9oceanbase11transaction6ObPairINS_5share6ObLSIDElED2Ev:0 + 0: _ZN9oceanbase5share6ObLSIDD2Ev:0 + 0: _ZN9oceanbase5share6ObLSID5resetEv:0 + 0: 0 +_ZNK9oceanbase7storage14ObIMemtableMgr19get_active_memtableERNS0_15ObTableHandleV2E:188046:1267 + 1: 1249 + 2: 1249 + 3: 1249 _ZN9oceanbase6common12TCRLockGuardC2ERKNS0_8TCRWLockE:1323 + 4: 1286 + 5: 0 + 6.1: 0 + 8: 1286 + 8.1: 1286 _ZN9oceanbase7storage15ObTableHandleV2aSERKS1_:1296 + 10.1: 1204 + 11: 0 + 12.1: 0 + 15: 1164 + 16.3: 1180 + 8: _ZNK9oceanbase7storage14ObIMemtableMgr17get_memtable_idx_El:3858 + 0: 1286 + 10: _ZNK9oceanbase7storage15ObTableHandleV28is_validEv:13244 + 2: 1204 + 2.1: 1204 + 16.3: _ZN9oceanbase6common12TCRLockGuardD2Ev:69952 + 2: 1164 + 3: 1164 + 3.1: 1180 + 3.2: 0 + 3: _ZN9oceanbase6common8TCRWLock8rdunlockEl:45396 + 3: 1164 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:4656 + 0: 1164 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPil:25608 + 2: 1164 + 2.1: 1164 + 3: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:6984 + 2: 1164 + 2.1: 0 + 3: 0 + 16.4: _ZN9oceanbase6common12TCRLockGuardD2Ev:0 + 2: 0 + 3: 0 + 3.1: 0 + 3.2: 0 + 3: _ZN9oceanbase6common8TCRWLock8rdunlockEl:0 + 3: 0 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:0 + 0: 0 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPil:0 + 2: 0 + 2.1: 0 + 3: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:0 + 2: 0 + 2.1: 0 + 3: 0 +_ZNK9oceanbase11transaction9tablelock8ObLockID9serializeEPclRl:187803:756 + 1: 693 + 2: 693 + 3: 693 + 4: 0 + 5.1: 0 + 6.1: 693 + 7.1: 0 + 8.1: 693 + 9.1: 0 + 11: 693 + 6.1: _ZN9oceanbase6common13serialization9encode_i8EPclRla:28413 + 2.1: 693 + 3: 693 + 4: 693 + 5: 693 + 8.1: _ZN9oceanbase6common13serialization10encode_i64EPclRll:113652 + 2: 693 + 2.1: 693 + 4: 693 + 5: 693 + 6: 693 + 7: 693 + 8: 693 + 9: 693 + 10: 693 + 11: 693 + 12: 693 +_ZN9oceanbase3sql16ObQueryRetryInfo4initEv:186760:5438 + 1: 5336 + 2: 5336 + 3: 5336 + 4: 0 + 5.1: 0 + 7: 5336 + 9: 5336 +_ZN9oceanbase6common12ObLatchMutexD2Ev:186000:31539 + 1: 31000 + 5: 31000 +_ZN9oceanbase6common12ObLatchMutexD1Ev:186000:31539 + 1: 31000 + 5: 31000 +_ZN9oceanbase6common20ObTenantStatEstGuardD2Ev:185495:5690 + 1: 5475 + 2: 5475 + 3: 0 + 3.1: 0 + 5: 5344 + 3: _ZN9oceanbase6common17ObSessionDIBuffer13switch_tenantEm:0 + 3: 0 + 4: 0 + 6: 0 + 8: 0 + 10: 0 +_ZN9oceanbase6common8ObIOFlag5resetEv:185406:14477 + 1: 14262 + 2: 14262 + 3: 14262 +_ZNK9oceanbase11transaction16ObTxReadSnapshot15get_source_nameEv:185090:5287 + 1: 4836 + 3: 4836 + 3: _ZN9oceanbase6common8ObStringC2EPKc:19344 + 6: 4836 +_ZN9oceanbase11transaction14ObTransService14acquire_tx_ctxERKNS_5share6ObLSIDERKNS0_8ObTxDescERPNS0_14ObPartTransCtxEPNS_7storage4ObLSE:184873:1027 + 1: 965 + 2: 965 + 4.2: 965 + 4.4: 690 + 6: 736 + 7.1: 0 + 8: 0 + 9.1: 0 + 12.1: 268 _ZN9oceanbase11transaction14ObTransService14create_tx_ctx_ERKNS_5share6ObLSIDEPNS_7storage4ObLSERKNS0_8ObTxDescERPNS0_14ObPartTransCtxE:271 + 13.1: 0 + 15.1: 972 _ZZN9oceanbase11transaction14ObTransService14acquire_tx_ctxERKNS_5share6ObLSIDERKNS0_8ObTxDescERPNS0_14ObPartTransCtxEPNS_7storage4ObLSEENK6$_1006clEPKc.93feb755617c21c32b229b78773c290c:980 + 16: 1010 + 4.1: _ZNK9oceanbase6common12ObIArrayWrapINS_11transaction8ObTxPartEE5countEv:6755 + 0: 965 + 4.4: _ZNK9oceanbase6common12ObIArrayWrapINS_11transaction8ObTxPartEE2atEl:4830 + 4.11: _ZNK9oceanbase5share6ObLSIDeqERKS1_:4140 + 0: 690 + 6: _ZN9oceanbase11transaction14ObTransService11get_tx_ctx_ERKNS_5share6ObLSIDEPNS_7storage4ObLSERKNS0_9ObTransIDERPNS0_14ObPartTransCtxE:55194 + 5: 690 + 6: 690 + 9: 0 + 12.1: 801 _ZZN9oceanbase11transaction14ObTransService11get_tx_ctx_ERKNS_5share6ObLSIDEPNS_7storage4ObLSERKNS0_9ObTransIDERPNS0_14ObPartTransCtxEENK6$_1007clEPKc.93feb755617c21c32b229b78773c290c:810 + 13: 736 + 7: _ZNK9oceanbase7storage4ObLS10get_tx_ctxIJRKNS_11transaction9ObTransIDEbRPNS3_14ObPartTransCtxEEEEiDpOT_:13110 + 0: 690 + 0.3: 690 _ZNK9oceanbase7storage13ObLSTxService10get_tx_ctxERKNS_11transaction9ObTransIDEbRPNS2_14ObPartTransCtxE:723 +_ZN9oceanbase6common9ObCharset12strntoullrndEPKcmiPPcPi:184323:489 + 5: 479 + 11: 486 + 18: 527 + 8: _ZN9oceanbase6common9ObCharset17is_argument_validEPK13ObCharsetInfoPKcl:5339 + 7: 486 + 8: 0 + 8.2: 0 + 11: 0 + 13.2: 0 + 7: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:2423 + 2: 479 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:500 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:1944 + 2: 486 + 11: _Z22ob_strntoull10rnd_8bitPK13ObCharsetInfoPKcmiPPcPi:131947 + 11: 486 + 11.1: 486 + 11.2: 486 + 11.6: 0 + 16: 486 + 18: 4 + 23: 510 + 25.1: 1427 + 25.2: 1427 + 25.3: 1427 + 25.4: 1427 + 27: 1427 + 30: 526 + 32: 454 + 33: 454 + 35: 4 + 37: 0 + 53: 74 + 56.1: 296 + 56.2: 296 + 58: 296 + 60: 296 + 60.1: 8 + 62: 296 + 63: 296 + 71: 0 + 79: 0 + 81: 0 + 81.1: 0 + 81.2: 0 + 81.3: 0 + 82.1: 0 + 85.1: 0 + 85.2: 0 + 85.3: 0 + 90: 0 + 91.1: 0 + 91.2: 0 + 91.3: 0 + 91.5: 0 + 96: 0 + 98: 0 + 108: 0 + 114: 69 + 114.3: 69 + 119: 69 + 125: 69 + 128: 69 + 128.1: 0 + 130: 0 + 131: 0 + 134: 0 + 136: 0 + 139.1: 0 + 140: 0 + 140.1: 0 + 141: 0 + 143: 0 + 145: 0 + 145.3: 0 + 149: 69 + 151: 69 + 153: 0 + 155: 0 + 160: 0 + 164: 0 + 167: 0 + 169: 0 + 170: 0 + 171: 0 + 176: 0 + 178: 0 + 183: 0 + 183.1: 0 + 183.2: 0 + 185: 0 + 190: 69 + 192: 69 + 194: 24 + 196: 0 + 198: 0 + 206: 24 + 208: 0 + 217: 45 + 219: 0 + 226: 0 + 227: 0 + 231: 0 + 232: 0 + 236: 0 + 237: 0 + 238: 0 +_ZN9oceanbase3sql12ObDMLService18init_das_dml_rtdefERNS0_10ObDMLRtCtxERKNS0_17ObDASDMLBaseCtDefERNS0_17ObDASDMLBaseRtDefEPKNS0_17ObDASTableLocMetaE:183888:722 + 4: 674 + 5: 674 + 9: 674 + 10: 674 + 11: 674 + 12: 674 + 13: 674 + 14: 674 + 15: 674 + 16: 255 _ZN9oceanbase3sql8ObDASCtx19get_table_loc_by_idEmm:257 + 17: 252 + 18: 252 + 19: 0 + 20.1: 0 + 21.1: 252 _ZN9oceanbase3sql8ObDASCtx18extended_table_locERKNS0_17ObDASTableLocMetaERPNS0_13ObDASTableLocE:256 + 22.1: 0 + 33: 414 + 33.1: 681 + 34: 681 + 35: 681 + 35.1: 0 + 36: 0 + 40: 0 + 40.1: 0 + 42.1: 0 + 43.1: 0 + 43.2: 0 + 44.1: 0 + 46: 0 + 46.1: 0 + 46.2: 0 + 46.3: 0 + 48: 718 + 6: _ZN9oceanbase3sql10ObDMLRtCtx12get_exec_ctxEv:4718 + 0: _ZN9oceanbase3sql8ObDASRef12get_exec_ctxEv:4718 + 0: 674 + 6.1: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:4718 + 2: 674 + 7.1: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:4718 + 2: 674 + 8.1: _ZN9oceanbase3sql13ObExecContext11get_das_ctxEv:4718 + 0: 674 + 11: _ZNK9oceanbase3sql17ObPhysicalPlanCtx24get_ps_timeout_timestampEv:2696 + 2: 674 + 12: _ZN9oceanbase3sql16ObSQLSessionInfo11get_prelockEv:4718 + 0: 674 + 13: _ZNK9oceanbase3sql17ObPhysicalPlanCtx25get_tenant_schema_versionEv:4718 + 0: 674 + 14: _ZNK9oceanbase3sql18ObBasicSessionInfo12get_sql_modeEv:24264 + 0: 674 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache12get_sql_modeEv:22242 + 0: 674 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache12get_sql_modeEb:12132 + 0: 674 + 15: _ZNK9oceanbase3sql15ObTableModifyOp9get_inputEv:4718 + 2: 674 + 15.1: _ZN9oceanbase3sql20ObTableModifyOpInput13get_table_locEv:2696 + 0: 674 + 33.2: _ZNK9oceanbase5share6schema18ObTableSchemaParam14is_index_tableEv:6129 + 0: _ZN9oceanbase5share6schema21ObSimpleTableSchemaV214is_index_tableENS1_11ObTableTypeE:6129 + 0: 681 + 35: _ZNK9oceanbase6common12ObIArrayWrapImE5emptyEv:3405 + 0: 681 + 36: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:0 + 2: 0 + 36.1: _ZNK9oceanbase3sql14ObPhysicalPlan19is_distributed_planEv:0 + 0: 0 + 37: _ZN9oceanbase3sql17ObDASTabletMapperC2Ev:0 + 2: 0 + 38: _ZN9oceanbase6common7ObArrayINS0_10ObTabletIDENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_22NotImplementItemEncodeIS2_EEEC2Ev:0 + 0.1: 0 + 0.5: _ZN9oceanbase6common11ObArrayImplINS0_10ObTabletIDENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_22NotImplementItemEncodeIS2_EEEC2ElRKS3_:0 + 3: 0 + 4: 0 + 7.1: 0 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 39: _ZN9oceanbase6common7ObArrayImNS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackImEENS0_22NotImplementItemEncodeImEEEC2Ev:0 + 0.1: 0 + 0.5: _ZN9oceanbase6common11ObArrayImplImNS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackImEENS0_22NotImplementItemEncodeImEEEC2ElRKS2_:0 + 3: 0 + 4: 0 + 7.1: 0 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 +_ZN9oceanbase11transaction9ObTxParamC2Ev:183768:4903 + 1: 4836 + 3: 4836 + 5: 4836 + 6: 4836 +_ZN9oceanbase11transaction9ObTxParamC1Ev:183768:4903 + 1: 4836 + 3: 4836 + 5: 4836 + 6: 4836 +_ZZN9oceanbase7storage13ObSingleMerge22get_and_fuse_cache_rowEllRNS_12blocksstable10ObDatumRowERbS5_S5_ENK5$_444clEPKc.60e5f1555e1608e51e89c573dc1497ed:183583:3376 + 0: 3179 + 0.1: 0 + 0.2: 3179 + 0.3: 3162 _ZN9oceanbase6common8ObLogger13need_to_printEmi:3279 + 0.7: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:53754 + 2: 3162 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKNS_12blocksstable10ObDatumRowELb0EEC2EPKcS5_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS_12blocksstable10ObDatumRowELb0EEC2EPKcS5_:0 + 0: 0 +_ZN9oceanbase11transaction10ObTxCtxMgr20revert_ls_tx_ctx_mgrEPNS0_12ObLSTxCtxMgrE:183381:4676 + 1: 4437 + 2: 4437 + 4: 4437 + 5: 0 + 6.1: 0 + 8: 4437 + 11: 4620 + 8: _ZN9oceanbase6common13ObLinkHashMapINS_5share6ObLSIDENS_11transaction12ObLSTxCtxMgrENS4_17ObLSTxCtxMgrAllocENS0_9RefHandleELl8EE6revertEPS5_:31425 + 3: 4437 _ZN9oceanbase6common13ObLinkHashMapINS_5share6ObLSIDENS_11transaction12ObLSTxCtxMgrENS4_17ObLSTxCtxMgrAllocENS0_9RefHandleELl8EE6revertEPNS0_12LinkHashNodeIS3_EE:4734 +_ZN9oceanbase12blocksstable18ObMacroBlockReaderC2Ev:183365:1220 + 2: 1085 + 8: 1085 + 9: 1085 + 6.1: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:141050 + 4: 1085 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:124775 + 2: 1085 + 3: 1085 + 4: 1085 + 5: 1085 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:58590 + 0: 1085 +_ZN9oceanbase12blocksstable18ObMacroBlockReaderC1Ev:183365:1220 + 2: 1085 + 8: 1085 + 9: 1085 + 6.1: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:141050 + 4: 1085 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:124775 + 2: 1085 + 3: 1085 + 4: 1085 + 5: 1085 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:58590 + 0: 1085 +_ZThn56_N9oceanbase8observer8ObMPBase25need_send_extra_ok_packetEv:183117:3464 + 0: 3311 + 1: 3842 _ZNK9oceanbase8observer16ObMPPacketSender8get_connEv:3703 + 1.1: 3842 _ZNK9oceanbase8observer16ObMPPacketSender8get_connEv:3452 +_ZN9oceanbase6common20ObActiveSessionGuard9setup_ashERNS0_17ActiveSessionStatE:182525:5330 + 1: 5215 + 2: 5215 + 3: 5215 +yy_get_previous_state.609565a8af3f883a2d183bfc9d8bb068:182488:532 + 1: 526 + 6: 526 + 8: 526 + 8.1: 2937 + 8.2: 2937 + 10: 2930 + 16: 2930 + 18: 2930 + 19: 2930 + 23: 535 +_ZN9oceanbase7obmysql13OMPKResheaderC2Ev:182070:3607 + 1: 3570 + 2: 3570 + 4: 3570 + 0: _ZN9oceanbase7obmysql13ObMySQLPacketC2Ev:82110 + 1.1: 3570 + 1: _ZN9oceanbase7obmysql19ObMySQLPacketHeaderC2Ev:39270 + 1: 3570 +_ZN9oceanbase7obmysql13OMPKResheaderC1Ev:182070:3607 + 1: 3570 + 2: 3570 + 4: 3570 + 0: _ZN9oceanbase7obmysql13ObMySQLPacketC2Ev:82110 + 1.1: 3570 + 1: _ZN9oceanbase7obmysql19ObMySQLPacketHeaderC2Ev:39270 + 1: 3570 +_ZN9oceanbase3sql6ObStmt11is_ddl_stmtENS0_4stmt8StmtTypeEb:181454:5721 + 1: 5506 + 2: 5926 + 5: 5506 + 84: 10 + 122: 10 + 120.2: _ZN9oceanbase3lib14is_oracle_modeEv:400 + 2: _ZN9oceanbase3lib15get_compat_modeEv:400 + 2: 10 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:240 + 2: 10 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 +_ZN9oceanbase8memtable22ObMemtableScanIteratorC2Ev:181068:1075 + 1: 1003 + 2: 1003 + 4: 1003 + 9: 1003 _ZN9oceanbase8memtable17ObMvccRowIteratorC1Ev:1041 + 10: 1044 _ZN9oceanbase12blocksstable10ObDatumRowC1Ev:1082 + 11: 1152 + 12: 1003 + 14: 1152 + 14.5: 0 + 14.7: 0 + 0: _ZN9oceanbase8memtable23ObIMemtableScanIteratorC2Ev:19057 + 0: _ZN9oceanbase8memtable19ObIMemtableIteratorC2Ev:19057 + 0: _ZN9oceanbase7storage18ObStoreRowIteratorC2Ev:19057 + 1: 1003 + 2: 1003 + 3: 1003 + 0.1: _ZN9oceanbase8memtable11ObNopBitMapC2Ev:19584 + 1: 1152 +_ZN9oceanbase8memtable22ObMemtableScanIteratorC1Ev:181068:1075 + 1: 1003 + 2: 1003 + 4: 1003 + 9: 1003 _ZN9oceanbase8memtable17ObMvccRowIteratorC1Ev:1041 + 10: 1044 _ZN9oceanbase12blocksstable10ObDatumRowC1Ev:1082 + 11: 1152 + 12: 1003 + 14: 1152 + 14.5: 0 + 14.7: 0 + 0: _ZN9oceanbase8memtable23ObIMemtableScanIteratorC2Ev:19057 + 0: _ZN9oceanbase8memtable19ObIMemtableIteratorC2Ev:19057 + 0: _ZN9oceanbase7storage18ObStoreRowIteratorC2Ev:19057 + 1: 1003 + 2: 1003 + 3: 1003 + 0.1: _ZN9oceanbase8memtable11ObNopBitMapC2Ev:19584 + 1: 1152 +_ZN9oceanbase3sql13ObExecContext16get_expr_factoryEv:180354:558 + 1: 519 + 2: 519 + 3: 498 + 3.1: 498 + 3.2: 498 + 3.4: 498 + 4.1: 0 + 9: 525 + 3.1: _ZN9oceanbase6common16ObArenaAllocator5allocEl:54282 + 0: 498 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13alloc_alignedEll:52290 + 3: 498 + 6: 0 + 7: 498 + 8: 498 + 10: 498 + 11: 498 + 12: 498 + 13: 498 + 15.1: 0 + 16: 0 + 18: 0 + 20: 0 + 28: 0 + 35: 498 + 36: 498 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE15ensure_cur_pageEv:6474 + 2: 498 + 3: 0 + 5.1: 0 + 8: 0 + 9: 0 + 10: 0 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:0 + 2: 0 + 2.2: 0 + 2.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 9: _ZSt3maxIlERKT_S2_S2_:0 + 5: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 8: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:0 + 0: 0 + 7: _ZN9oceanbase6common16get_align_offsetEPvl:4980 + 3: 498 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:3486 + 0: 498 + 11: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:3486 + 7: 498 + 15.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE18is_normal_overflowEl:0 + 2: 0 + 16: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11extend_pageEl:0 + 4: 0 + 5: 0 + 8: 0 + 9: 0 + 10.1: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 12: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_tailEPNS3_4PageE:0 + 2: 0 + 3: 0 + 5: 0 + 23.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16lookup_next_pageEl:0 + 3.1: 0 + 4.1: 0 + 5: 0 + 5.1: 0 + 7: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page10reuse_sizeEv:0 + 0: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 32: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9alloc_bigEl:0 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 3: 0 + 5: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_headEPNS3_4PageE:0 + 4: 0 + 5: 0 + 7: 0 + 3.2: _ZN9oceanbase3sql16ObRawExprFactoryC2ERNS_6common12ObIAllocatorE:74202 + 1: 498 + 2: 498 + 3: 498 + 4: 498 + 2: _ZN9oceanbase6common10ObObjStoreIPNS_3sql9ObRawExprERNS0_12ObIAllocatorELb1EEC2ES6_:64740 + 1: 498 + 3.2: 498 + 3: _ZN9oceanbase3lib11this_workerEv:13944 + 2: _ZN9oceanbase3lib6Worker4selfEv:13944 + 3: 498 + 4: 0 + 3.1: _ZN9oceanbase3lib6Worker12has_req_flagEv:2490 + 2: 498 + 5: _ZN9oceanbase6common10ObObjStoreIPNS_3sql9ObRawExprERNS0_12ObIAllocatorELb1EE13set_allocatorES6_:11952 + 0: 498 + 7: _ZN9oceanbase3lib11this_workerEv:4482 + 2: _ZN9oceanbase3lib6Worker4selfEv:4482 + 3: 498 + 4: 0 + 7.1: _ZN9oceanbase3lib6Worker23get_sql_arena_allocatorEv:13944 + 2: 0 + 2: _ZN9oceanbase3lib4Flow11current_ctxEv:13944 + 2: _ZN9oceanbase3lib4Flow12current_flowEv:13944 + 3: 498 + 8: 0 + 10: 0 + 11: 0 + 12: 0 + 8.1: _ZN9oceanbase3lib4FlowC2ERNS0_13MemoryContextE:0 + 1: 0 + 3: 0 + 11: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 65511: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql9ObRawExprEEEEC2Ev:14940 + 2: 498 + 3: 498 + 4: 498 + 65463: _ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql9ObRawExprEEEEC2Ev:7470 + 2: 498 +_ZNK9oceanbase3sql13ObExecContext8get_addrEv:180044:4756 + 1: 4738 + 2: 4738 + 2: _ZN9oceanbase8observer8ObServer12get_instanceEv:71070 + 2: 4738 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 149: 4738 +_ZNK9oceanbase11transaction9ObTransID10serialize_EPclRl:179464:735 + 0: 704 + 0.1: 746 + 0.3: 0 + 0.9: 746 + 0.10: 0 + 0.17: 0 + 0.1: _ZN9oceanbase6common13serialization6encodeEPclRll:140524 + 2: _ZN9oceanbase6common13serialization11encode_vi64EPclRll:140524 + 3: 704 + 3.1: 692 + 4: 704 + 6.1: 719 + 7: 719 + 8: 719 + 11: 746 + 4: _ZN9oceanbase6common13serialization19encoded_length_vi64El:35144 + 4: 704 + 6.1: 704 + 8.1: 702 + 10.1: 702 + 12.1: 0 + 14.1: 0 + 16.1: 0 + 18.1: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRA7_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 0.12: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.14: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.16: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase3sql20ObAggregateProcessor4initEv:179126:264 + 1: 235 + 2: 235 + 4: 235 + 6: 235 + 7: 235 + 10: 235 + 12: 235 + 13: 0 + 14.1: 0 + 15.1: 236 _ZN9oceanbase6common9Ob2DArrayIPNS_3sql20ObAggregateProcessor8GroupRowELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS5_Ll64ES6_Lb0EEEE7reserveEl:252 + 16.1: 0 + 17.1: 241 + 17.2: 236 _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql20ObAggregateProcessor12IAggrFuncCtxENS0_12ObIAllocatorEE16prepare_allocateEl:243 + 18.1: 1 + 21.1: 263 + 21.2: 496 + 21.3: 496 + 21.5: 263 + 23: 244 + 24: 244 + 25: 1 + 26.1: 1 + 28: 244 + 29: 236 + 29.1: 237 + 32: 237 + 33: 237 + 34: 237 + 35: 237 + 36: 237 + 37: 255 + 40: 255 + 40.1: 255 + 41: 255 + 41.1: 255 + 42: 1 + 42.1: 1 + 42.5: 1 + 45: 1 + 46.1: 1 + 48: 1 + 55: 255 + 57: 0 + 57.1: 0 + 58: 1 + 59.1: 1 + 61: 0 + 62: 0 + 65: 253 + 65.1: 253 + 66.1: 256 _ZN9oceanbase3sql13ObExecContext13get_allocatorEv:264 + 66.2: 251 _ZN9oceanbase6common16ObArenaAllocator5allocEl:257 + 70: 1 + 71.1: 1 + 74: 247 _ZN9oceanbase3sql13ObExecContext13get_allocatorEv:251 + 74.1: 254 _ZN9oceanbase3sql17ObChunkDatumStore15ShadowStoredRow4initERNS_6common12ObIAllocatorEl:260 + 75.1: 1 + 79: 218 + 9: _ZN9oceanbase3sql11RemovalInfo5resetEv:8225 + 1: 235 + 2: 235 + 4: 235 + 5: 235 + 10: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:1645 + 2: 235 + 10.1: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:1645 + 0: 235 + 10.2: _ZN9oceanbase3sql20ObAggregateProcessor13set_tenant_idEm:940 + 0: _ZN9oceanbase6common16ObArenaAllocator13set_tenant_idEm:940 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13set_tenant_idEm:940 + 0: _ZN9oceanbase6common19ModulePageAllocator13set_tenant_idEm:940 + 0: 235 + 17.1: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql10ObAggrInfoEE5countEv:944 + 0: 236 + 22: _ZN9oceanbase6common12ObIArrayWrapINS_3sql10ObAggrInfoEE2atEl:3904 + 6: 244 + 23: _ZNK9oceanbase3sql10ObAggrInfo22get_child_output_countEv:4636 + 2: 244 + 2: _ZNK9oceanbase3sql10ObAggrInfo22is_implicit_first_aggrEv:1464 + 0: 244 + 2.2: _ZNK9oceanbase3sql10ObAggrInfo13get_expr_typeEv:1464 + 1: 244 + 2.3: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE5emptyEv:1220 + 0: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE5countEv:1220 + 0: 244 + 23.1: _ZSt3maxIlERKT_S2_S2_:732 + 5: 244 + 29: _ZNK9oceanbase3sql10ObAggrInfo13get_expr_typeEv:8855 + 1: 244 + 1.1: 236 + 1.4: 236 + 32: _ZNK9oceanbase3sql10ObAggrInfo13get_expr_typeEv:0 + 1.4: 0 + 33: _ZNK9oceanbase3sql10ObAggrInfo13get_expr_typeEv:4266 + 1: 237 + 37: _ZNK9oceanbase3sql10ObAggrInfo13get_expr_typeEv:6162 + 1: 237 + 1.4: 237 + 37.1: _ZN9oceanbase3sql20ObAggregateProcessor15need_extra_infoE10ObItemType:8342 + 3: 249 + 40: _ZNK9oceanbase3sql10ObAggrInfo13get_expr_typeEv:8160 + 1: 255 + 1.1: 255 + 1.4: 255 + 42.2: _ZN9oceanbase3sql20ObAggregateProcessor22LinearInterAggrFuncCtxC2Ev:11 + 0: 1 + 1: 1 + 48: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql20ObAggregateProcessor12IAggrFuncCtxEE2atEl:7 + 6: 1 + 55: _ZNK9oceanbase3sql9ObEvalCtx13is_vectorizedEv:1785 + 0: 255 + 57: _ZN9oceanbase3sql11ObBitVector11memory_sizeEl:0 + 2: 0 + 2: _ZN9oceanbase3sql11ObBitVector10word_countEl:0 + 2: 0 + 62: _ZN9oceanbase3sql11ObBitVector5resetEl:0 + 0: _ZN9oceanbase3sql11ObBitVector4initEl:0 + 0: 0 + 0: _ZN9oceanbase3sql11ObBitVector11memory_sizeEl:0 + 2: 0 + 2: _ZN9oceanbase3sql11ObBitVector10word_countEl:0 + 2: 0 + 73: _ZN9oceanbase3sql17ObChunkDatumStore15ShadowStoredRowC2Ev:6175 + 1: 247 + 3: 247 +_ZN9oceanbase6common15ObFIFOAllocator4initEPNS0_12ObIAllocatorElRKNS_3lib9ObMemAttrElll:178876:1180 + 6: 1124 + 7: 1124 + 8: 1124 + 9: 0 + 10.1: 0 + 11.1: 1124 + 12: 0 + 13.1: 0 + 17: 1124 + 19: 1124 + 21: 0 + 22.1: 0 + 25: 1124 + 26: 1124 + 30: 1124 + 31: 1124 + 33: 1124 + 34: 0 + 36.1: 0 + 37: 0 + 38.1: 0 + 39: 0 + 41: 0 + 42: 1129 + 43: 1129 + 44: 1129 + 47: 1129 + 36.1: _ZNK9oceanbase6common15ObFIFOAllocator12normal_totalEv:0 + 3: 0 + 4: 0 + 3.1: _ZNK9oceanbase6common7ObDListINS0_11ObDLinkNodeIPNS0_15ObFIFOAllocator14BasePageHeaderEEEE8get_sizeEv:0 + 0: 0 +_ZN9oceanbase7storage17ObLSTabletService22process_data_table_rowERNS0_14ObTabletHandleERNS0_15ObDMLRunningCtxERKNS_6common8ObIArrayIlEERKNS0_10ObStoreRowESD_b:178859:401 + 7: 367 + 8: 367 + 9: 367 + 11: 367 + 13: 366 + 13.1: 366 _ZNK9oceanbase7storage15ObRelativeTable8is_validEv:367 + 13.2: 359 + 13.3: 359 + 13.4: 359 + 13.5: 359 + 20: 1 + 21.1: 1 + 26: 354 + 27: 354 + 27.1: 0 + 27.2: 0 + 32.1: 1 + 33.1: 0 + 36: 1 + 37: 1 + 38.1: 1 + 39.1: 1 + 39.2: 1 + 40.1: 1 + 43: 1 + 43.1: 1 + 44: 1 + 46.2: 1 + 46.7: 1 + 46.11: 1 + 46.19: 1 + 46.23: 1 + 48.1: 1 + 52: 358 + 53: 358 + 56: 0 + 57: 1 + 57.1: 1 + 57.2: 1 + 60.1: 0 + 64: 356 _ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE7get_objEv:359 + 64.1: 355 _ZN9oceanbase7storage8ObTablet31insert_row_without_rowkey_checkERNS0_15ObRelativeTableERNS0_10ObStoreCtxERKNS_6common8ObIArrayINS_5share6schema9ObColDescEEERKNS0_10ObStoreRowE:359 + 64.2: 341 + 67.1: 1 + 73: 325 + 13: _ZNK9oceanbase7storage10ObStoreCtx8is_validEv:5505 + 2: 367 + 2.1: 367 _ZNK9oceanbase8memtable15ObMvccAccessCtx8is_validEv:370 + 2: _ZNK9oceanbase5share6ObLSID8is_validEv:1468 + 0: 367 + 13.6: _ZNK9oceanbase7storage10ObStoreRow8is_validEv:26 + 3: 0 + 5.1: 0 + 8.1: 1 + 9: 0 + 11: 0 + 11.1: 1 + 11.2: 0 + 12: 1 + 12.1: 0 + 13: 0 + 7.1: _ZNK9oceanbase12blocksstable12ObDmlRowFlag8is_validEv:0 + 2: 0 + 10.1: _ZNK9oceanbase6common8ObNewRow8is_validEv:6 + 2: _ZNK9oceanbase6common8ObNewRow10is_invalidEv:6 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 1 + 12.1: _ZNK9oceanbase12blocksstable21ObMultiVersionRowFlag18is_uncommitted_rowEv:0 + 0: 0 + 13.7: _ZNK9oceanbase7storage10ObStoreRow8is_validEv:42029 + 3: 359 + 5.1: 359 + 8.1: 1 + 9: 359 + 11: 359 + 11.1: 1 + 11.2: 359 + 12: 1 + 12.1: 359 + 13: 0 + 7.1: _ZNK9oceanbase12blocksstable12ObDmlRowFlag8is_validEv:10770 + 2: 359 + 10.1: _ZNK9oceanbase6common8ObNewRow8is_validEv:11852 + 2: _ZNK9oceanbase6common8ObNewRow10is_invalidEv:11852 + 2: 359 + 2.1: 359 + 2.2: 359 + 2.3: 1 + 12.1: _ZNK9oceanbase12blocksstable21ObMultiVersionRowFlag18is_uncommitted_rowEv:1795 + 0: 359 + 35: _ZN9oceanbase6common13ObStoreRowkeyC2Ev:17 + 0: 1 + 37.1: _ZN9oceanbase6common13ObStoreRowkey6assignEPNS0_5ObObjEl:73 + 3: 1 + 3.2: 1 + 5.1: 1 + 8: 1 + 7: _ZN9oceanbase6common8ObRowkey6assignEPNS0_5ObObjEl:7 + 2: 1 + 3: 1 + 42: _ZN9oceanbase6common8ObStringC2EPKc:15 + 1: 1 + 3: 1 + 46.1: _ZN9oceanbase3lib14is_oracle_modeEv:89 + 2: 1 + 2: _ZN9oceanbase3lib15get_compat_modeEv:86 + 2: 1 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:70 + 2: 1 + 2.1: 1 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:22 + 1: 1 + 46.4: _ZN9oceanbase6common8ObLogger10get_loggerEv:81 + 2: 1 + 2.1: 1 + 2.2: 1 + 2.3: 1 + 2.6: 1 + 46.5: _ZNK9oceanbase6common8ObString6lengthEv:4 + 0: 1 + 46.8: _ZN9oceanbase6common8ObLogger10get_loggerEv:87 + 2: 1 + 2.1: 1 + 2.2: 1 + 2.3: 1 + 2.6: 1 + 46.9: _ZNK9oceanbase6common8ObString6lengthEv:3 + 0: 1 + 46.16: _ZN9oceanbase6common8ObLogger10get_loggerEv:81 + 2: 1 + 2.1: 1 + 2.2: 1 + 2.3: 1 + 2.6: 1 + 46.17: _ZNK9oceanbase6common8ObString6lengthEv:4 + 0: 1 + 46.20: _ZN9oceanbase6common8ObLogger10get_loggerEv:92 + 2: 1 + 2.1: 1 + 2.2: 1 + 2.3: 1 + 2.6: 1 + 46.21: _ZNK9oceanbase6common8ObString6lengthEv:3 + 0: 1 + 50: _ZN9oceanbase7storage10ObStoreRowC2Ev:23628 + 1: 358 + 3: 358 + 4.1: 358 + 51: _ZN9oceanbase12blocksstable12ObDmlRowFlag8set_flagENS0_9ObDmlFlagE:3938 + 3: 358 + 54: _ZN9oceanbase7storage10ObStoreRowC2Ev:0 + 1: 0 + 3: 0 + 4.1: 0 + 55: _ZN9oceanbase12blocksstable12ObDmlRowFlag8set_flagENS0_9ObDmlFlagE:0 + 3: 0 + 57: _ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE7get_objEv:0 + 2: 0 +_ZN9oceanbase11transaction14ObTransService8reuse_txERNS0_8ObTxDescE:178845:518 + 1: 475 + 2: 475 + 3: 475 + 4.1: 551 + 5.1: 7 + 8.1: 551 + 9.2: 551 + 10: 7 + 11: 7 + 11.1: 7 + 12: 7 + 13.1: 7 + 15: 7 + 19: 551 + 20: 551 _ZN9oceanbase11transaction8ObTxDesc5resetEv:568 + 21: 531 _ZN9oceanbase11transaction14ObTransService8init_tx_ERNS0_8ObTxDescEj:549 + 23.1: 534 _ZZN9oceanbase11transaction14ObTransService8reuse_txERNS0_8ObTxDescEENK6$_1272clEPKc.93feb755617c21c32b229b78773c290c:540 + 25.4: 509 + 25.5: 5 + 25.6: 5 + 25.12: 5 + 25.14: 5 + 25.15: 5 + 25.16: 5 + 25.18: 5 + 25.20: 7 + 25.21: 7 + 29: 523 + 30.10: 523 + 4: _ZN9oceanbase11transaction14ObTransService12finalize_tx_ERNS0_8ObTxDescE:56354 + 3: 475 + 4: 571 + 5: 571 + 9.1: 0 + 10: 0 + 12: 569 _ZN9oceanbase11transaction8ObTxDesc16cancel_commit_cbEv:579 + 14.1: 539 + 15: 267 _ZN9oceanbase11transaction11ObTxDescMgr6removeERNS0_8ObTxDescE:270 + 18.2: 562 _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEED2Ev:588 + 18.3: 7 + 3: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEEC2ERS3_:16396 + 1: 475 + 4: 571 + 5.1: 7 + 4: _ZN9oceanbase6common10ObSpinLock4lockEv:8075 + 2: 475 _ZN9oceanbase6common12ObLatchMutex4lockEjl:500 + 14: _ZNK9oceanbase11transaction9ObTransID8is_validEv:4312 + 0: 539 + 8: _ZN9oceanbase6common10ObSpinLock11self_lockedEv:41920 + 2: 551 + 2: _ZN9oceanbase6common12ObLatchMutex7get_widEv:7714 + 2: 551 + 3: 551 + 2.1: _Z9ob_gettidv:29798 + 3: 551 + 4: 7 + 2: _Z13get_tid_cachev:14097 + 7: 551 + 7.1: 7 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:161 + 0: 7 + 9.1: _ZNK9oceanbase11transaction15ObTransHashLinkINS0_8ObTxDescEE7get_refEv:21 + 0: 7 + 12.1: _Z22TC_REACH_TIME_INTERVALl:1141 + 4.1: 7 + 5: 7 + 6: 7 + 4: _ZN9oceanbase6common14ObTscTimestamp12get_instanceEv:679 + 2: 7 + 2.1: 7 + 2.3: 7 + 2.6: 7 + 2.2: _ZN9oceanbase6common14ObTscTimestampC2Ev:147 + 1: 7 + 25.3: _ZN9oceanbase3lib20is_trace_log_enabledEv:4092 + 2: 509 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:519 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:3563 + 2: 509 + 25.7: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:177 + 0: 7 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:35 + 2: 7 + 25.9: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:80 + 0: 5 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:25 + 2: 5 + 25.10: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EE10check_lockEv:195 + 2: 5 + 3: _ZN9oceanbase3lib7ObMutex4lockEv:145 + 0: 5 + 25.11: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EE14get_buffer_posEv:35 + 0: 5 + 25.12: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EE10get_bufferEv:35 + 0: 5 + 25.14: _Z9ob_gettidv:860 + 3: 5 + 4: 7 + 2: _Z13get_tid_cachev:447 + 7: 5 + 7.1: 7 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:161 + 0: 7 + 25.22: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EE12check_unlockEv:125 + 2: 5 + 3: _ZN9oceanbase3lib7ObMutex6unlockEv:75 + 0: 5 +_ZN9oceanbase7storage14ObDMLBaseParamC2Ev:178678:711 + 2: 701 + 3: 701 + 5: 701 + 6: 701 + 8: 701 + 11: 701 + 14: 688 + 15: 688 _ZN9oceanbase11transaction16ObTxReadSnapshotC1Ev:703 + 16: 701 + 17: 703 + 13: _ZN9oceanbase6common9ObSEArrayINS_11transaction18ObEncryptMetaCacheELl1ENS0_19ModulePageAllocatorELb0EEC2Ev:106692 + 0.1: 688 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction18ObEncryptMetaCacheELl1ENS0_19ModulePageAllocatorELb0EEC2ElRKS4_:96372 + 2: 701 + 5: 688 + 6: 688 + 8: 688 + 17.1: 688 + 2: _ZN9oceanbase6common8ObIArrayINS_11transaction18ObEncryptMetaCacheEEC2EPS3_l:8256 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_11transaction18ObEncryptMetaCacheEEC2EPS3_l:8256 + 0: 688 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:39216 + 0: 688 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:17200 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:17200 + 2: 688 + 8: 688 + 17.1: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction18ObEncryptMetaCacheELl1ENS0_19ModulePageAllocatorELb0EED2Ev:0 + 1: 0 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction18ObEncryptMetaCacheELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:0 + 9: 0 + 11: 0 + 13: 0 + 15: 0 + 24: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction18ObEncryptMetaCacheELl1ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase3sql17ObSqlTransControl22reset_session_tx_stateEPNS0_18ObBasicSessionInfoEb:178471:499 + 1: 465 + 2: 465 + 4: 465 + 7.1: 527 + 7.3: 465 _ZN9oceanbase5share19ObTenantSwitchGuard9switch_toEmb:483 + 7.4: 480 + 7.6: 527 + 7.7: 1 + 9.2: 480 + 9.3: 508 + 9.5: 1 + 10: 508 + 11.1: 508 + 11.2: 508 _ZN9oceanbase11transaction14ObTransService8reuse_txERNS0_8ObTxDescE:518 + 11.3: 527 + 11.5: 1 + 13.1: 1 + 13.2: 1 + 13.3: 1 + 13.5: 1 + 14: 1 + 14.1: 1 + 14.2: 1 + 18: 508 + 19.1: 508 _ZN9oceanbase11transaction14ObTxExecResult5resetEv:534 + 20: 517 _ZThn8_N9oceanbase3sql16ObSQLSessionInfo17reset_tx_variableEv:529 + 21: 547 + 6: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:3255 + 0: 465 + 7: _ZN9oceanbase5share25_make_tenant_switch_guardEv:27982 + 2: 465 + 2.1: 1 + 2.3: 1 + 2.6: 1 + 2.2: _ZN9oceanbase5share19ObTenantSwitchGuardC2Ev:23 + 0.5: 1 + 0.4: _ZNSt8functionIFiRN9oceanbase6common10ObLDHandleEEEC2Ev:15 + 1: _ZNSt14_Function_baseC2Ev:15 + 0: 1 + 3: _ZN9oceanbase5share19ObTenantSwitchGuardC2ERKS1_:19995 + 0.1: _ZNSt8functionIFiRN9oceanbase6common10ObLDHandleEEEC2Ev:3720 + 1: _ZNSt14_Function_baseC2Ev:3720 + 0: 465 + 2: _ZN9oceanbase5share19ObTenantSwitchGuard5resetEv:16275 + 2: 465 + 3: 465 + 4: 465 + 7.2: _ZN9oceanbase5share19ObTenantSwitchGuardD2Ev:4939 + 2: 527 _ZN9oceanbase5share19ObTenantSwitchGuard7releaseEv:563 + 3: 549 _ZNSt14_Function_baseD2Ev:560 + 3.1: 1 + 3.2: 1 + 9.2: _ZN9oceanbase3sqlL14get_tx_serviceEPNS0_18ObBasicSessionInfoERPNS_11transaction14ObTransServiceE:45812 + 3: 480 + 4: 480 + 5: 480 + 6: 480 + 7: 480 + 8: 0 + 9.1: 0 + 12: 0 + 13: 508 + 14: 1 + 15.1: 1 + 18: 508 + 4: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:3360 + 0: 480 + 6.1: _ZNK9oceanbase11transaction8ObTxDesc13get_tenant_idEv:1920 + 0: 480 + 13: _ZN9oceanbase5share11ObTenantEnv3mtlIPNS_11transaction14ObTransServiceEEET_m:19524 + 3: 499 + 3: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:8546 + 2: 499 + 2.1: 1 + 2.2: 1 + 18: _ZN9oceanbase3sql18ObBasicSessionInfo30reset_first_need_txn_stmt_typeEv:5080 + 0: 508 + 19: _ZN9oceanbase3sql18ObBasicSessionInfo16get_trans_resultEv:3556 + 0: 508 +ev_async_send:178152:4720 + 1: 4542 + 2: 4542 + 3: 4542 + 5: 5006 + 4: evpipe_write:50706 + 2: 4542 + 4: 212 + 5: 139 + 7: 139 + 11: 139 + 12: 139 + 13: 139 + 21: 0 + 23: 726 +_ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE11ELS3_11EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE:177434:2120 + 0: 2062 + 0.1: 3 + 0.2: 2062 + 0.3: 2061 + 0.5: 3 + 0.6: 1031 + 0.8: 1031 + 0: _ZNK9oceanbase6common5ObObj12is_min_valueEv:39186 + 2: 2062 + 2: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:6186 + 0: 2062 + 0.1: _ZNK9oceanbase6common5ObObj12is_min_valueEv:36 + 2: 3 + 2.1: 3 + 0.2: _ZNK9oceanbase6common5ObObj12is_max_valueEv:12372 + 2: 2062 + 2.1: 2062 + 0.3: _ZNK9oceanbase6common5ObObj12is_max_valueEv:32976 + 2: 2061 + 0.6: _ZNK9oceanbase6common5ObObj12is_max_valueEv:11341 + 2: 1031 + 2: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:3093 + 0: 1031 + 0.8: _ZNK9oceanbase6common5ObObj12is_max_valueEv:4124 + 2: 1031 + 0.9: _ZNK9oceanbase6common5ObObj12is_min_valueEv:0 + 2: 0 +_ZN9oceanbase3sql12ObDMLService17check_column_typeERKNS_6common12ObFixedArrayIPNS0_6ObExprENS2_12ObIAllocatorEEElRKNS2_8ObIArrayINS0_13ColumnContentEEERNS0_15ObTableModifyOpE:176823:260 + 4: 257 + 6.1: 257 + 6.3: 7 + 7.2: 1069 + 7.3: 257 + 7.5: 1069 + 9: 1050 + 10: 1050 + 11: 7 + 12: 7 + 15: 287 + 863: 0 + 6.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE5countEv:1028 + 0: 257 + 8: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql13ColumnContentEE2atEl:4200 + 6: 1050 + 9: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:4200 + 6: 1050 + 11.1: _ZNK9oceanbase3sql6ObExpr4evalERNS0_9ObEvalCtxERPNS_6common7ObDatumE:98038 + 4: 1050 + 6: 1050 + 7: 1050 + 9: 1050 + 10: 7 + 10.1: 7 + 11: 0 + 13: 7 + 15.1: 1050 + 15.2: 1050 + 17: 1050 + 18: 1050 + 20: 1050 _ZN9oceanbase3sql16ObExprColumnConv14column_convertERKNS0_6ObExprERNS0_9ObEvalCtxERNS_6common7ObDatumE:1077 + 21: 1125 + 22: 1125 + 24: 7 + 9: _ZNK9oceanbase3sql6ObExpr15is_batch_resultEv:4200 + 0: 1050 + 11: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 24: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:49 + 0: 7 +_ZN9oceanbase10logservice12ObLogHandler6appendEPKvllbPNS0_8AppendCbERNS_4palf3LSNERl:176746:297 + 7: 261 + 8: 261 + 11: 261 + 12: 261 + 13: 261 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:264 + 16: 232 + 18: 232 _ZN9oceanbase6common8TCRWLock10RLockGuardC2ERS1_:242 + 21: 248 + 22: 0 + 23.1: 248 + 24: 0 + 25.1: 248 + 26: 0 + 27.1: 248 _ZN9oceanbase4palf10PalfHandle6appendERKNS0_17PalfAppendOptionsEPKvllRNS0_3LSNERl:248 + 27.2: 268 + 28.1: 0 + 32: 256 + 33: 256 _ZN9oceanbase10logservice13ObApplyStatus14push_append_cbEPNS0_8AppendCbE:260 + 33.1: 258 + 34.1: 258 _ZZN9oceanbase10logservice12ObLogHandler6appendEPKvllbPNS0_8AppendCbERNS_4palf3LSNERlENK5$_196clEPKc.1291a23568de5f940ae06fb9e7354412:258 + 36.2: 0 + 38: 216 + 44: 0 + 45: 0 + 46: 0 + 49: 0 + 55: 254 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:226 + 56: 254 _ZN9oceanbase6common10ObMiniStat10ObStatItem4statEl:254 + 57: 256 + 10: _ZN9oceanbase4palf17PalfAppendOptionsC2Ev:2088 + 25: 261 + 19: _ZN9oceanbase6common18QSyncCriticalGuardC2ERNS0_7ObQSyncE:28194 + 0: 254 + 0: _ZN9oceanbase6common7ObQSync11acquire_refEv:25400 + 2: 254 + 3: 254 + 4: 254 + 5.1: 0 + 7: 254 + 2: _ZN9oceanbase6common8get_itidEv:8128 + 4: 254 + 5: 0 + 6: 0 + 8: 0 + 3: _ZN9oceanbase6common7ObQSync7add_refEll:5842 + 6: 254 + 20: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:254 + 2: 254 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:280 + 20.1: _ZN9oceanbase10logservice8AppendCb19set_append_start_tsEl:992 + 0: 248 + 30: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:268 + 2: 268 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:289 + 30.1: _ZN9oceanbase10logservice8AppendCb20set_append_finish_tsEl:2596 + 0: 236 + 31: _ZN9oceanbase10logservice12AppendCbBase9__set_lsnERKNS_4palf3LSNE:3732 + 0: 236 _ZN9oceanbase4palf3LSNaSERKS1_:251 + 32: _ZN9oceanbase10logservice12AppendCbBase11__set_ts_nsEl:1024 + 0: 256 + 36: _ZN9oceanbase6common18QSyncCriticalGuardD2Ev:11067 + 0: 217 + 0.2: 0 + 0: _ZN9oceanbase6common7ObQSync11release_refEl:7812 + 2: 217 + 3: 217 + 4.1: 0 + 2: _ZN9oceanbase6common7ObQSync7add_refEll:5859 + 3: 217 + 6: 217 + 36.3: _ZN9oceanbase6common8TCRWLock10RLockGuardD2Ev:0 + 0: 0 + 0.2: 0 + 0: _ZN9oceanbase6common8TCRWLock8rdunlockEv:0 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:0 + 0: 0 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPi:0 + 2: 0 + 4.1: 0 + 4.2: 0 + 6: 0 + 6.1: 0 + 10: 0 + 2: _ZN9oceanbase6common8get_itidEv:0 + 4: 0 + 5: 0 + 6: 0 + 8: 0 + 11: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:0 + 2: 0 + 2.1: 0 + 3: 0 + 36.4: _ZN9oceanbase6common8TCRWLock10RLockGuardD2Ev:32832 + 0: 216 + 0.2: 0 + 0: _ZN9oceanbase6common8TCRWLock8rdunlockEv:31968 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:1080 + 0: 216 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPi:26352 + 2: 216 + 4.1: 216 + 4.2: 0 + 6: 216 + 6.1: 216 + 10: 216 + 2: _ZN9oceanbase6common8get_itidEv:6048 + 4: 216 + 5: 0 + 6: 0 + 8: 0 + 11: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:2808 + 2: 216 + 2.1: 0 + 3: 0 +_ZN9oceanbase7obmysql9OMPKFieldC2ERNS0_12ObMySQLFieldE:176203:3919 + 1: 3749 + 2: 3749 + 0: _ZN9oceanbase7obmysql13ObMySQLPacketC2Ev:86227 + 1.1: 3749 + 1: _ZN9oceanbase7obmysql19ObMySQLPacketHeaderC2Ev:41239 + 1: 3749 +_ZN9oceanbase7obmysql9OMPKFieldC1ERNS0_12ObMySQLFieldE:176203:3919 + 1: 3749 + 2: 3749 + 0: _ZN9oceanbase7obmysql13ObMySQLPacketC2Ev:86227 + 1.1: 3749 + 1: _ZN9oceanbase7obmysql19ObMySQLPacketHeaderC2Ev:41239 + 1: 3749 +merge_tree:176136:499 + 2: 483 + 5: 483 + 6: 13 + 7.1: 483 + 11: 483 + 13: 551 count_child:494 + 15: 13 + 16: 13 + 17.1: 551 + 22: 13 + 23: 13 + 24.1: 517 + 25: 13 + 30: 13 + 33: 517 + 17.1: new_node:48414 + 3: 551 parse_malloc:571 + 4: 557 + 5: 13 + 7: 557 + 8: 557 + 9: 557 + 10: 557 + 15: 557 + 16: 557 + 17: 562 parse_malloc:565 + 18: 562 + 19: 13 + 23: 13 + 18: merge_child:66342 + 13: 517 + 17.1: 517 + 19: 13 + 22: 517 + 26.1: 517 + 27: 517 + 29: 13 + 30: 517 + 31.1: 517 + 33: 13 + 35: 517 + 36: 517 + 38.1: 13 + 40.1: 13 + 42: 13 + 45: 13 + 45.1: 13 + 45.3: 13 + 45.5: 13 + 46: 13 + 48.1: 13 + 53: 13 + 54: 13 + 59.1: 517 + 59.3: 517 + 9.1: new_link_node:13021 + 2: 562 parse_malloc:579 + 3: 517 + 4: 13 + 7: 517 +_ZN9oceanbase3sql12ObDMLService14check_row_nullERKNS_6common8ObIArrayIPNS0_6ObExprEEERNS0_9ObEvalCtxElRKNS3_INS0_13ColumnContentEEEbRNS0_15ObTableModifyOpE:175889:263 + 0: 0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 6: 259 + 8: 259 + 8.1: 259 + 8.2: 0 + 8.3: 0 + 9.1: 1047 + 9.2: 1319 + 9.3: 1319 + 9.5: 1047 + 10: 1047 + 11: 1047 + 12: 1047 + 13: 1047 + 14: 0 + 14.1: 0 + 15.1: 1047 + 15.2: 1047 + 16: 0 + 18: 0 + 19: 0 + 20.1: 0 + 21.1: 0 + 21.5: 0 + 25.1: 0 + 26.1: 0 + 26.3: 0 + 27.1: 0 + 30: 0 + 31.1: 0 + 31.13: 0 + 31.17: 0 + 31.20: 0 + 31.21: 0 + 31.24: 0 + 35: 0 + 36: 0 + 37.1: 0 + 37.13: 0 + 37.20: 0 + 41: 268 + 8.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE5countEv:1036 + 0: 259 + 11: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql13ColumnContentEE2atEl:4188 + 6: 1047 + 13: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:4188 + 6: 1047 + 13.1: _ZNK9oceanbase3sql6ObExpr4evalERNS0_9ObEvalCtxERPNS_6common7ObDatumE:54444 + 4: 1047 + 6: 1047 + 7: 1047 + 9: 1047 + 10: 0 + 10.1: 0 + 11: 0 + 13: 0 + 15.1: 1047 + 15.2: 1047 + 17: 0 + 18: 0 + 20: 0 + 21: 0 + 22: 0 + 24: 0 + 9: _ZNK9oceanbase3sql6ObExpr15is_batch_resultEv:4188 + 0: 1047 + 11: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 24: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:0 + 0: 0 + 14: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql13ColumnContentEE2atEl:0 + 6: 0 + 15.2: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:4188 + 0: 1047 + 17: _ZN9oceanbase6common5ObObjC2Ev:0 + 2: _ZN9oceanbase6common5ObObj5resetEv:0 + 6: 0 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:0 + 0: 0 + 18: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 21.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:0 + 6: 0 + 21.2: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:0 + 0: 0 + 21.4: _ZNK9oceanbase6common9ObObjMeta18get_collation_typeEv:0 + 0: 0 + 26.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:0 + 6: 0 + 26.2: _ZNK9oceanbase3sql6ObExpr22locate_datum_for_writeERNS0_9ObEvalCtxE:0 + 3: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 5: _ZNK9oceanbase3sql6ObExpr13get_datum_idxERNS0_9ObEvalCtxE:0 + 2: 0 + 2: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 30: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql13ColumnContentEE2atEl:0 + 6: 0 + 31.1: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 31.14: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 31.15: _ZNK9oceanbase6common8ObString6lengthEv:0 + 0: 0 + 31.22: _ZNK9oceanbase6common8ObString6lengthEv:0 + 0: 0 + 35: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql13ColumnContentEE2atEl:0 + 6: 0 + 37.1: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 +_ZN9oceanbase6common4hash11ObHashTableImNS1_12ObReferedMapImNS_10rootserver14DRUnitStatInfoEE4ItemENS1_9hash_funcImEENS1_8equal_toImEENS7_6GetKeyENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi5ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv:175491:0 + 1: 0 + 3: 0 + 3.1: 0 + 6.1: 10323 + 6.3: 10323 + 8: 10323 + 9.1: 0 + 11: 0 + 12: 0 + 15: 0 + 19: 0 + 22: 0 + 24: 0 + 26: 0 + 3: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_12ObReferedMapImNS_10rootserver14DRUnitStatInfoEE4ItemENS1_5NLockENS1_5NCondEEEEEbRKT_:0 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_12ObReferedMapImNS_10rootserver14DRUnitStatInfoEE4ItemENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:0 + 2: 0 + 65226: 0 + 10: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_12ObReferedMapImNS_10rootserver14DRUnitStatInfoEE4ItemEE16check_magic_codeEv:0 + 0: 0 + 10.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 22: _ZN9oceanbase6common4hash7destroyIPNS1_17ObHashTableBucketINS1_12ObReferedMapImNS_10rootserver14DRUnitStatInfoEE4ItemENS1_5NLockENS1_5NCondEEENS0_8ObMallocEEEvRT_RT0_:0 + 2: _ZN9oceanbase6common4hash10do_destroyIPNS1_17ObHashTableBucketINS1_12ObReferedMapImNS_10rootserver14DRUnitStatInfoEE4ItemENS1_5NLockENS1_5NCondEEENS0_8ObMallocEEEvRT_NS1_16NormalPointerTagERT0_:0 + 2: 0 + 3: 0 + 4: 0 +_ZN9oceanbase7storage16ObTxDataMemtable6insertEPNS0_8ObTxDataE:175098:247 + 1: 234 + 3: 211 + 4: 211 + 5: 1 + 6.1: 1 + 7.1: 211 + 8: 1 + 9.1: 1 + 10.1: 211 + 11: 1 + 12.1: 1 + 13.1: 211 + 14.1: 1 + 16.1: 211 _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9ObTransIDENS_7storage8ObTxDataENS4_24TxDataHashMapAllocHandleENS0_9RefHandleELl8EE14insert_and_getERKS3_PS5_:242 + 16.2: 253 + 19.1: 1 + 22.1: 1 + 28: 236 + 29: 236 + 30: 265 + 31: 261 + 32.1: 240 + 35.1: 254 + 36: 254 + 39: 255 + 40: 255 + 41: 255 + 49: 220 + 50: 220 + 53: 220 _ZN9oceanbase6common13ObTimeUtility15current_time_nsEv:242 + 55: 233 + 56: 263 _ZN9oceanbase6common11ObTimeGuard5clickEPKc:268 + 58.1: 255 + 59.1: 1 + 62: 259 + 63.11: 259 _ZN9oceanbase6common11ObTimeGuardD2Ev:279 + 2: _ZN9oceanbase6common11ObTimeGuardC2EPKcl:10044 + 2: 218 + 3: 218 + 4: 218 + 6: 218 + 7: 218 + 8: 218 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:234 + 2: 234 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:246 + 26: _ZN9oceanbase6common11ObTimeGuard5clickEPKc:16069 + 3: 236 + 4: 236 + 5: 236 + 6: 236 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:257 + 2: 253 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:270 + 29: _ZN9oceanbase6common10inc_updateIlEElPT_S2_:4945 + 3: 236 + 4.1: 264 + 5: 29 + 30: _ZN9oceanbase6common10dec_updateIlEElPT_S2_:2928 + 3: 265 + 4.1: 265 + 5: 1 + 31: _ZN9oceanbase6common10dec_updateIlEElPT_S2_:2884 + 3: 261 + 4.1: 261 + 5: 1 + 33: _ZN9oceanbase6common11ObTimeGuard5clickEPKc:17262 + 3: 254 + 4: 254 + 5: 254 + 6: 254 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:244 + 2: 240 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:240 + 35: _ZN9oceanbase6common8get_itidEv:7171 + 4: 254 + 5: 1 + 6: 1 + 8: 1 + 36: _ZN9oceanbase7storage8ObTxData29get_sort_list_node_by_tx_dataEPS1_:2794 + 2: 254 + 37: _ZN9oceanbase6common11ObTimeGuard5clickEPKc:17343 + 3: 255 + 4: 255 + 5: 255 + 6: 255 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:258 + 2: 254 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:253 + 45: _ZN9oceanbase6common11ObTimeGuard5clickEPKc:14999 + 3: 220 + 4: 220 + 5: 220 + 6: 220 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:259 + 2: 255 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:254 + 53.1: _ZN9oceanbase6common10inc_updateIlEElPT_S2_:8775 + 3: 231 + 4.1: 461 + 5: 231 + 55: _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9ObTransIDENS_7storage8ObTxDataENS4_24TxDataHashMapAllocHandleENS0_9RefHandleELl8EE6revertEPS5_:2334 + 2: 233 + 3: 233 _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9ObTransIDENS_7storage8ObTxDataENS4_24TxDataHashMapAllocHandleENS0_9RefHandleELl8EE6revertEPNS0_12LinkHashNodeIS3_EE:235 + 58: _ZNK9oceanbase6common11ObTimeGuard8get_diffEv:2062 + 2: 255 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:277 + 2: 273 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:276 + 63.12: _ZN9oceanbase6common11ObTimeGuardD2Ev:71 + 2.1: 1 + 2.2: 1 + 3.1: 1 + 3.5: 1 + 2: _ZNK9oceanbase6common11ObTimeGuard8get_diffEv:12 + 2: 1 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:5 + 2: 1 +_ZN9oceanbase3sql18ObPushdownOperator28init_pushdown_storage_filterEv:175014:4663 + 1: 4167 + 2: 4167 + 3: 4167 + 4: 0 + 5: 0 + 6: 0 + 6.1: 0 + 9.1: 0 + 10.1: 0 + 11: 0 + 12.1: 0 + 15: 0 + 15.1: 0 + 16: 0 + 16.1: 0 + 20.1: 0 + 21.1: 0 + 22: 0 + 23.1: 0 + 27: 4167 + 4.1: _ZN9oceanbase3sql27ObFilterExecutorConstructorC2EPNS_6common12ObIAllocatorE:0 + 1: _ZN9oceanbase3sql23ObPushdownFilterFactoryC2EPNS_6common12ObIAllocatorE:0 + 1: 0 + 5: _ZNK9oceanbase3sql16ObPushdownFilter19get_pushdown_filterEv:0 + 0: 0 + 15.1: _ZNK9oceanbase3sql16ObPushdownFilter19get_pushdown_filterEv:0 + 0: 0 +_ZNK9oceanbase8memtable10ObMemtable18is_frozen_memtableEv:174479:3256 + 1: 3152 + 8: 3152 + 8.1: 3152 + 8.2: 3152 + 10: 3152 + 10.1: 1 + 11: 1 + 14: 3241 + 8.1: _ZN9oceanbase7storage9ObFreezer16get_freeze_clockEv:25216 + 0: 3152 +_ZNK9oceanbase7storage8ObITable16is_data_memtableEv:174343:13734 + 0: 13411 + 0: _ZN9oceanbase7storage8ObITable16is_data_memtableENS1_9TableTypeE:93877 + 2: 13411 +_ZN9oceanbase7storage9ObTxTable18get_tx_table_guardERNS0_14ObTxTableGuardE:174125:6273 + 1: 6189 + 2: 5903 + 2: _ZN9oceanbase7storage14ObTxTableGuard4initEPNS0_9ObTxTableE:137537 + 5: 5903 + 7.1: 13 + 9: 5903 + 10: 5903 + 3: _ZN9oceanbase7storage14ObTxTableGuard5resetEv:31153 + 2: 6189 + 3: 13 + 4: 13 + 9: _ZNK9oceanbase7storage9ObTxTable9get_epochEv:23612 + 0: 5903 +_ZN9oceanbase10logservice13ObApplyStatus19try_handle_cb_queueEPNS0_23ObApplyServiceQueueTaskERb:173356:201 + 2: 196 + 3: 196 + 4: 196 + 5: 196 + 6: 0 + 7.1: 0 + 8.1: 196 + 9: 0 + 10.1: 0 + 12: 196 _ZN9oceanbase6common13ObTimeUtility15current_time_nsEv:201 + 13: 210 _ZN9oceanbase4palf3LSNC1Ev:211 + 14: 195 + 16: 180 + 17: 180 + 18: 180 + 19: 195 _ZN9oceanbase6common8TCRWLock10RLockGuardC2ERS1_:202 + 21: 419 + 22: 419 + 23: 419 + 23.1: 337 + 24.1: 72 _ZZN9oceanbase10logservice13ObApplyStatus19try_handle_cb_queueEPNS0_23ObApplyServiceQueueTaskERbENK4$_29clEPKc.d3a41d52a3cfae37a6a74713ee8e7132:72 + 25: 76 + 26: 76 + 27.1: 337 _ZN9oceanbase10logservice12AppendCbBase19__get_class_addressEPNS_6common6ObLinkE:356 + 27.2: 345 + 28: 0 + 29.1: 0 + 30.2: 345 _ZN9oceanbase4palf3LSNaSERKS1_:349 + 30.3: 329 _ZN9oceanbase4palf3LSNC1Em:352 + 30.4: 359 _ZNK9oceanbase4palf3LSNltERKS1_:406 + 30.5: 377 + 32: 242 + 32.1: 242 + 33.1: 1 + 35: 242 + 35.1: 242 + 37.1: 180 _ZZN9oceanbase10logservice13ObApplyStatus19try_handle_cb_queueEPNS0_23ObApplyServiceQueueTaskERbENK4$_32clEPKc.d3a41d52a3cfae37a6a74713ee8e7132:180 + 38: 222 _ZN9oceanbase11transaction9ObTxLogCb10on_successEv:225 + 38.1: 246 + 40.1: 0 + 41: 0 + 43: 246 _ZN9oceanbase10logservice13ObApplyStatus19statistics_cb_cost_ERKNS_4palf3LSNElllll:246 + 45: 247 + 47.1: 126 + 49: 0 + 49.1: 0 + 50.1: 0 + 52: 0 + 52.1: 0 + 54.1: 0 + 55: 0 + 55.1: 0 + 56.1: 0 + 57: 0 + 59: 0 + 61: 0 + 64: 126 + 64.1: 117 _ZN9oceanbase10logservice8AppendCb22set_cb_first_handle_tsEl:124 + 65.1: 119 _ZZN9oceanbase10logservice13ObApplyStatus19try_handle_cb_queueEPNS0_23ObApplyServiceQueueTaskERbENK4$_37clEPKc.d3a41d52a3cfae37a6a74713ee8e7132:131 + 67: 124 + 69: 447 + 70: 248 _ZN9oceanbase6common13ObTimeUtility15current_time_nsEv:260 + 70.1: 254 + 71: 254 + 72: 1 + 75.1: 440 + 76: 195 + 78: 119 + 80.1: 190 _ZN9oceanbase6common8TCRWLock10RLockGuardD2Ev:191 + 81.1: 174 _ZZN9oceanbase10logservice13ObApplyStatus19try_handle_cb_queueEPNS0_23ObApplyServiceQueueTaskERbENK4$_38clEPKc.d3a41d52a3cfae37a6a74713ee8e7132:176 + 82: 150 + 23: _ZN9oceanbase10logservice23ObApplyServiceQueueTask3topEv:12978 + 3: _ZN9oceanbase6common13ObSpLinkQueue3topERPNS0_6ObLinkE:12458 + 3: 419 + 4: 419 + 6.1: 199 + 9: 129 + 10: 129 + 389.1: 1 + 11: _ZN9oceanbase6common13ObSpLinkQueue4pushEPNS0_6ObLinkE:2580 + 7: 129 + 8: 129 + 9: 129 + 30.1: _ZNK9oceanbase10logservice12AppendCbBase9__get_lsnEv:1380 + 0: 345 + 32: _ZN9oceanbase10logservice23ObApplyServiceQueueTask3popEv:15544 + 3: _ZN9oceanbase6common13ObSpLinkQueue3popERPNS0_6ObLinkE:15544 + 3.1: 242 + 3.1: _ZN9oceanbase6common13ObSpLinkQueue6do_popERPNS0_6ObLinkE:14092 + 4.1: 242 + 5: 1 + 7: 242 + 9: 1 + 12.1: 242 + 13: 15 + 15: 242 + 4: _ZN9oceanbase6common13ObSpLinkQueue4pushEPNS0_6ObLinkE:0 + 7: 0 + 8: 0 + 9: 0 + 35: _ZNK9oceanbase10logservice12AppendCbBase11__get_ts_nsEv:968 + 0: 242 + 36: _ZN9oceanbase10logservice13ObApplyStatus13get_cb_trace_EPNS0_8AppendCbERlS4_S4_S4_:9012 + 6: 242 + 10: 180 + 7: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:962 + 2: 242 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:242 + 8: _ZNK9oceanbase10logservice8AppendCb19get_append_start_tsEv:1980 + 0: 180 + 9: _ZNK9oceanbase10logservice8AppendCb20get_append_finish_tsEv:1980 + 0: 180 + 10: _ZNK9oceanbase10logservice8AppendCb22get_cb_first_handle_tsEv:720 + 0: 180 + 45: _ZN9oceanbase10logservice23ObApplyServiceQueueTask22inc_total_apply_cb_cntEv:1482 + 2.1: 247 + 49: _ZN9oceanbase10logservice23ObApplyServiceQueueTask3popEv:87 + 3: _ZN9oceanbase6common13ObSpLinkQueue3popERPNS0_6ObLinkE:87 + 3.2: 1 + 3.3: 1 + 3.1: _ZN9oceanbase6common13ObSpLinkQueue6do_popERPNS0_6ObLinkE:47 + 4.1: 1 + 5: 1 + 7: 1 + 9: 0 + 12.1: 1 + 13: 1 + 15: 1 + 4: _ZN9oceanbase6common13ObSpLinkQueue4pushEPNS0_6ObLinkE:31 + 4: 1 + 7: 1 + 8: 1 + 9: 1 + 52: _ZNK9oceanbase10logservice12AppendCbBase11__get_ts_nsEv:0 + 0: 0 + 53: _ZN9oceanbase10logservice13ObApplyStatus13get_cb_trace_EPNS0_8AppendCbERlS4_S4_S4_:0 + 6: 0 + 10: 0 + 7: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 8: _ZNK9oceanbase10logservice8AppendCb19get_append_start_tsEv:0 + 0: 0 + 9: _ZNK9oceanbase10logservice8AppendCb20get_append_finish_tsEv:0 + 0: 0 + 10: _ZNK9oceanbase10logservice8AppendCb22get_cb_first_handle_tsEv:0 + 0: 0 + 61: _ZN9oceanbase10logservice23ObApplyServiceQueueTask22inc_total_apply_cb_cntEv:0 + 2.1: 0 + 64: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:130 + 2: 126 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:126 + 80: _ZN9oceanbase6common8TCRWLock10RLockGuardD2Ev:0 + 0: 0 + 0.2: 0 + 0: _ZN9oceanbase6common8TCRWLock8rdunlockEv:0 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:0 + 0: 0 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPi:0 + 2: 0 + 4.1: 0 + 4.2: 0 + 6: 0 + 6.1: 0 + 10: 0 + 2: _ZN9oceanbase6common8get_itidEv:0 + 4: 0 + 5: 0 + 6: 0 + 8: 0 + 11: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:0 + 2: 0 + 2.1: 0 + 3: 0 +_ZN9oceanbase3sql15ObTableDeleteOp10inner_openEv:172952:288 + 1: 277 + 4: 296 _ZN9oceanbase3sql15ObTableModifyOp10inner_openEv:283 + 5.1: 3 + 6.1: 296 + 7: 3 + 8.1: 3 + 9.1: 296 + 11.1: 288 + 12.1: 3 + 14: 288 + 6.1: _ZN9oceanbase3sql11get_my_specINS0_15ObTableDeleteOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:1184 + 5: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:1184 + 2: 296 + 6.2: _ZNK9oceanbase6common12ObIArrayWrapINS0_11ObArrayWrapIPNS_3sql10ObDelCtDefEEEE5emptyEv:2368 + 0: 296 + 11.1: _ZN9oceanbase3sql15ObTableDeleteOp19inner_open_with_dasEv:146351 + 2: 296 + 3: 3 + 4.1: 3 + 6: 3 + 3: _ZN9oceanbase3sql15ObTableDeleteOp19open_table_for_eachEv:145370 + 2: 296 + 3: 300 _ZN9oceanbase3sql13ObExecContext13get_allocatorEv:307 + 4.1: 3 + 6.1: 268 + 6.2: 581 + 6.3: 581 + 6.5: 268 + 9: 308 _ZN9oceanbase3sql13ObExecContext13get_allocatorEv:297 + 9.4: 301 _ZN9oceanbase6common11ObArrayWrapINS_3sql10ObDelRtDefEE14allocate_arrayERNS0_12ObIAllocatorEl:296 + 10.1: 3 + 12.1: 288 + 12.2: 554 + 12.3: 554 + 12.5: 288 + 14: 283 + 15: 288 _ZN9oceanbase3sql12ObDMLService14init_del_rtdefERNS0_10ObDMLRtCtxERNS0_10ObDelRtDefERKNS0_10ObDelCtDefE:271 + 16.1: 3 + 19.1: 268 + 20: 268 + 22: 268 + 23: 3 + 25: 268 + 29.1: 3 + 32: 268 + 3.1: _ZN9oceanbase3sql11get_my_specINS0_15ObTableDeleteOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:1176 + 5: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:1176 + 2: 294 + 3.2: _ZNK9oceanbase6common12ObIArrayWrapINS0_11ObArrayWrapIPNS_3sql10ObDelCtDefEEEE5countEv:3234 + 0: 294 + 3.3: _ZN9oceanbase6common11ObArrayWrapINS1_INS_3sql10ObDelRtDefEEEE14allocate_arrayERNS0_12ObIAllocatorEl:29856 + 2: 294 + 4: 294 + 5: 294 + 6: 3 + 7.1: 3 + 8.1: 300 _ZN9oceanbase6common16ObArenaAllocator5allocEl:301 + 9: 3 + 10.1: 3 + 12.3: 300 + 12.4: 300 + 13: 300 + 15: 300 + 12.2: _ZN9oceanbase6common11ObArrayWrapINS_3sql10ObDelRtDefEEC2Ev:6327 + 1: 300 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_3sql10ObDelRtDefEEC2Ev:2112 + 0: 300 + 7: _ZN9oceanbase6common12ObIArrayWrapINS0_11ObArrayWrapINS_3sql10ObDelRtDefEEEE2atEl:7084 + 6: 308 + 8: _ZN9oceanbase3sql11get_my_specINS0_15ObTableDeleteOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:1232 + 5: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:1232 + 2: 308 + 8.1: _ZNK9oceanbase6common12ObIArrayWrapINS0_11ObArrayWrapIPNS_3sql10ObDelCtDefEEEE2atEl:2156 + 6: 308 + 9.1: _ZN9oceanbase3sql11get_my_specINS0_15ObTableDeleteOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:1204 + 5: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:1204 + 2: 301 + 9.2: _ZNK9oceanbase6common12ObIArrayWrapINS0_11ObArrayWrapIPNS_3sql10ObDelCtDefEEEE2atEl:2107 + 6: 301 + 9.3: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql10ObDelCtDefEE5countEv:2709 + 0: 301 + 12.2: _ZN9oceanbase6common12ObIArrayWrapINS0_11ObArrayWrapINS_3sql10ObDelRtDefEEEE2atEl:3878 + 6: 554 + 12.6: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql10ObDelRtDefEE5countEv:2216 + 0: 554 + 13: _ZN9oceanbase6common12ObIArrayWrapINS_3sql10ObDelRtDefEE2atEl:5600 + 14: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql10ObDelCtDefEE2atEl:5618 + 6: 283 + 19.1: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql10ObDelRtDefEE5emptyEv:1608 + 0: 268 + 20: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql10ObDelCtDefEE2atEl:804 + 6: 268 + 21: _ZN9oceanbase6common12ObIArrayWrapINS_3sql10ObDelRtDefEE2atEl:804 + 6: 268 + 25: _ZN9oceanbase3sql12ObDMLService27process_before_stmt_triggerERKNS0_14ObDMLBaseCtDefERNS0_14ObDMLBaseRtDefERNS0_10ObDMLRtCtxERKNS_6common14ObDmlEventTypeE:13814 + 5: 268 + 7: 268 + 7.1: 268 + 8: 3 + 8.1: 3 + 9: 3 + 10: 3 + 11.1: 3 + 14.1: 3 + 18.1: 3 + 21: 268 + 6: _ZN9oceanbase3sql10ObDMLRtCtx12get_exec_ctxEv:1876 + 0: _ZN9oceanbase3sql8ObDASRef12get_exec_ctxEv:1876 + 0: 268 + 6.1: _ZN9oceanbase3sql13ObExecContext13set_dml_eventENS_6common14ObDmlEventTypeE:2680 + 0: 268 + 7.1: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql12ObTriggerArgEE5emptyEv:2144 + 0: 268 + 8: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:12 + 2: 3 + 8.2: _ZNK9oceanbase3sql17ObTableModifySpec12use_dist_dasEv:21 + 0: 3 + 9.1: _ZN9oceanbase3sql10ObDMLRtCtx12get_exec_ctxEv:21 + 0: _ZN9oceanbase3sql8ObDASRef12get_exec_ctxEv:21 + 0: 3 + 9.2: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:21 + 2: 3 + 9.3: _ZNK9oceanbase3sql16ObSQLSessionInfo17is_remote_sessionEv:21 + 0: 3 +_ZN9oceanbase12blocksstable13ObSSTableMeta19get_index_tree_rootERKNS_7storage15ObTableReadInfoERNS0_16ObMicroBlockDataEb:172350:1052 + 4: 1009 + 5: 1009 + 6: 1009 + 7: 1 + 8.1: 1 + 9.1: 1009 + 11: 1 + 12.1: 1 + 13.1: 996 + 13.3: 996 + 13.4: 1009 _ZNK9oceanbase7storage14ObMetaDiskAddr8is_validEv:1022 + 15: 1 + 16.1: 1 + 17.1: 996 + 20.1: 996 + 23.1: 1 + 24.1: 1 + 28: 996 + 9.1: _ZNK9oceanbase12blocksstable13ObSSTableMeta8is_emptyEv:5045 + 0: 1009 + 10: _ZN9oceanbase12blocksstable16ObMicroBlockData5resetEv:20 + 0: 1 + 13.1: _ZNK9oceanbase12blocksstable15ObRootBlockInfo8get_addrEv:7063 + 0: 1009 + 13.5: _ZNK9oceanbase12blocksstable16ObMicroBlockData8is_validEv:26892 + 0: 996 + 0.1: 996 + 0.2: 996 +easy_connection_recycle_message.8d7a091449e6908669a41293537a4cf4:172045:5460 + 1: 5455 + 6: 5455 + 15: 0 + 16: 0 + 16.3: 0 + 17: 0 + 18: 0 + 19: 0 + 24: 0 + 25: 0 + 26: 0 + 27: 0 + 30: 0 + 36: 0 + 39: 0 + 42: 5651 +_ZN9oceanbase11transaction14ObPartTransCtx6commitERKNS_6common9ObSEArrayINS_5share6ObLSIDELl3ENS2_19ModulePageAllocatorELb0EEERKNS0_11MonotonicTsERKlRKNS2_8ObStringESE_:171979:257 + 5: 240 + 6: 240 + 8: 240 + 10: 258 + 11.1: 4 + 12: 4 + 13.1: 258 + 14: 4 + 15.1: 4 + 16.2: 258 + 17: 4 + 18.1: 4 + 19.2: 258 + 20.1: 4 + 21.1: 258 _ZNK9oceanbase11transaction14ObPartTransCtx20get_downstream_stateEv:258 + 21.2: 251 + 21.3: 0 + 22: 0 + 22.1: 0 + 22.2: 0 + 23: 0 + 23.1: 0 + 24: 0 + 26: 4 + 30: 0 + 34: 4 + 36.1: 0 + 37.2: 251 + 38: 4 + 39.1: 4 + 40.1: 251 + 41: 4 + 42.1: 4 + 45.1: 291 + 45.2: 291 + 47.1: 291 _ZN9oceanbase11transaction10ObTransCtx19set_app_trace_info_ERKNS_6common8ObStringE:291 + 47.2: 277 + 48.1: 4 + 49.1: 277 + 50.1: 277 _ZN9oceanbase11transaction10ObTransCtx24unregister_timeout_task_Ev:277 + 50.2: 242 + 51.1: 4 + 52.1: 242 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:245 + 52.4: 230 _ZN9oceanbase11transaction10ObTransCtx22register_timeout_task_El:266 + 52.5: 267 + 54.1: 4 + 55.1: 267 _ZN9oceanbase11transaction14ObPartTransCtx31prepare_mul_data_source_tx_end_Eb:268 + 55.2: 247 + 56.1: 4 + 58.1: 247 + 59: 247 _ZN9oceanbase11transaction10ObTransCtx8set_stc_ENS0_11MonotonicTsE:246 + 61: 4 + 63.1: 253 + 63.4: 253 + 64: 253 + 65.1: 262 + 66.1: 4 + 69: 4 + 70: 4 + 70.1: 4 + 71.1: 4 + 75: 0 + 76: 262 + 78.1: 262 + 78.4: 4 + 78.5: 4 + 78.6: 4 + 78.10: 4 + 78.11: 4 + 78.12: 4 + 78.15: 4 + 78.16: 4 + 78.17: 4 + 78.18: 4 + 78.19: 4 + 78.22: 4 + 78.23: 4 + 78.24: 4 + 81.1: 254 _ZZN9oceanbase11transaction14ObPartTransCtx6commitERKNS_6common9ObSEArrayINS_5share6ObLSIDELl3ENS2_19ModulePageAllocatorELb0EEERKNS0_11MonotonicTsERKlRKNS2_8ObStringESE_ENK5$_113clEPKc.93feb755617c21c32b229b78773c290c:254 + 82: 266 + 83.22: 292 _ZN9oceanbase11transaction12CtxLockGuardD1Ev:262 + 83.24: 4 + 8: _ZN9oceanbase11transaction12CtxLockGuardC2ERNS0_7CtxLockEb:1200 + 0: 240 + 0.1: 240 _ZN9oceanbase11transaction7CtxLock4lockEv:240 + 16.1: _ZNK9oceanbase11transaction14ObPartTransCtx12is_follower_Ev:2064 + 0: 258 + 19.1: _ZNK9oceanbase11transaction14ObPartTransCtx15is_2pc_logging_Ev:2064 + 1: 258 + 43.1: _ZN9oceanbase11transaction14ObPartTransCtx21set_2pc_participants_ERKNS_6common9ObSEArrayINS_5share6ObLSIDELl3ENS2_19ModulePageAllocatorELb0EEE:25837 + 4: _ZN9oceanbase6common9ObSEArrayINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EEaSERKS5_:25837 + 0: 251 + 0: _ZN9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EEaSERKS5_:24080 + 4: 251 + 5: 251 _ZN9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EE5reuseEv:271 + 7: 276 _ZN9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EE7reserveEl:282 + 8.1: 273 + 8.3: 273 + 8.5: 4 + 9: 273 + 13: 282 + 14: 0 + 15: 291 + 6: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6ObLSIDEE5countEv:1104 + 0: 276 + 9: _ZN9oceanbase6common16construct_assignINS_5share6ObLSIDEEEiRT_RKS4_:1670 + 2: _ZN9oceanbase6common21construct_assign_wrapINS_5share6ObLSIDEEEiRT_RKS4_NS0_8BoolTypeILb0EEE:1670 + 2: _ZN9oceanbase5share6ObLSIDC2ERKS1_:1670 + 0: 273 + 45.1: _ZN9oceanbase11transaction14ObPartTransCtx19set_2pc_request_id_El:2037 + 4: 291 + 52.3: _ZNK9oceanbase11transaction9ObTransID4hashEv:15870 + 2: _ZN9oceanbase6common10murmurhashEPKvim:15870 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:15870 + 13: 230 + 14: 230 + 15: 230 + 17: 230 + 18: 230 + 41: 230 + 42: 230 + 43: 230 + 58: _ZNK9oceanbase11transaction11MonotonicTs8is_validEv:1482 + 0: 247 + 59.1: _ZN9oceanbase11transaction11MonotonicTsD2Ev:2024 + 0: _ZN9oceanbase11transaction11MonotonicTs5resetEv:2024 + 0: 253 + 59.2: _ZN9oceanbase11transaction11MonotonicTsD2Ev:40 + 0: _ZN9oceanbase11transaction11MonotonicTs5resetEv:40 + 0: 4 + 63.2: _ZNK9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EEixEl:1012 + 5: 253 + 63.3: _ZNK9oceanbase5share6ObLSIDeqERKS1_:2530 + 0: 253 + 65: _ZN9oceanbase11transaction14ObPartTransCtx17one_phase_commit_Ev:9438 + 3: 265 _ZN9oceanbase11transaction14ObPartTransCtx24generate_commit_version_Ev:263 + 7.1: 4 + 9.1: 265 _ZN9oceanbase11transaction14ObPartTransCtx16submit_log_impl_ENS0_11ObTxLogTypeE:291 + 11.1: 4 + 14: 4 + 78.3: _ZN9oceanbase3lib20is_trace_log_enabledEv:48 + 2: 4 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:28 + 2: 4 + 78.7: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:80 + 0: 4 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:20 + 2: 4 + 78.9: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:84 + 0: 4 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:20 + 2: 4 + 78.10: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EE10check_lockEv:160 + 2: 4 + 3: _ZN9oceanbase3lib7ObMutex4lockEv:124 + 0: 4 + 78.12: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EE10get_bufferEv:52 + 0: 4 + 78.13: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EE14get_buffer_posEv:12 + 0: 4 + 78.14: _Z9ob_gettidv:552 + 3: 4 + 4: 4 + 2: _Z13get_tid_cachev:284 + 7: 4 + 7.1: 4 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:92 + 0: 4 + 78.15: _ZNK9oceanbase11transaction15ObTransHashLinkINS0_10ObTransCtxEE7get_refEv:32 + 0: 4 + 78.24: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EE12check_unlockEv:84 + 2: 4 + 3: _ZN9oceanbase3lib7ObMutex6unlockEv:48 + 0: 4 +_ZN9oceanbase3sql8ObParserC2ERNS_6common12ObIAllocatorEmNS2_15ObCollationTypeE:171430:5720 + 1: 5530 + 2: 5530 + 3: 5530 + 4: 5530 +_ZN9oceanbase3sql8ObParserC1ERNS_6common12ObIAllocatorEmNS2_15ObCollationTypeE:171430:5720 + 1: 5530 + 2: 5530 + 3: 5530 + 4: 5530 +_ZN9oceanbase3sql8ObDASRef17begin_result_iterEv:171175:4402 + 1: 4175 + 2: 4175 + 2.1: 4175 + 2: _ZN9oceanbase6common10ObObjStoreIPNS_3sql12ObIDASTaskOpERNS0_12ObIAllocatorELb0EE5beginEv:29225 + 0: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql12ObIDASTaskOpEEEE9get_firstEv:29225 + 0: 4175 + 2.4: _ZN9oceanbase3sql15DASOpResultIterC2ERKNS_6common10ObObjStoreIPNS0_12ObIDASTaskOpERNS2_12ObIAllocatorELb0EE8IteratorERNS1_16WildDatumPtrInfoE:45925 + 1: 4175 + 2: 4175 +_ZNK9oceanbase7storage8ObITable20get_snapshot_versionEv:170830:17216 + 0: 17083 + 0: _ZNK9oceanbase7storage8ObITable8TableKey20get_snapshot_versionEv:68332 + 3: 17083 +_ZN9oceanbase8memtable13ObMemtableCtx15add_lock_recordERKNS_11transaction9tablelock13ObTableLockOpE:170675:910 + 1: 843 + 2: 843 + 4: 843 + 5: 843 + 6: 843 _ZNK9oceanbase11transaction9tablelock13ObTableLockOp8is_validEv:858 + 7: 10 + 8.1: 10 + 9.1: 826 _ZN9oceanbase11transaction9tablelock12ObLockMemCtx15add_lock_recordERKNS1_13ObTableLockOpERPNS1_22ObMemCtxLockOpLinkNodeEb:827 + 12.1: 10 + 13.1: 772 + 14.1: 10 + 18.1: 754 _ZN9oceanbase11transaction9tablelock12ObLockMemCtx17get_lock_memtableERPNS1_14ObLockMemtableE:752 + 19.1: 10 + 20.1: 808 _ZN9oceanbase8memtable10ObIMvccCtx22register_table_lock_cbEPNS_11transaction9tablelock14ObLockMemtableEPNS3_22ObMemCtxLockOpLinkNodeE:705 + 22.1: 10 + 24: 808 + 25: 11 + 27: 766 + 13.1: _ZN9oceanbase8memtable13ObMemtableCtx35register_multi_source_data_if_need_ERKNS_11transaction9tablelock13ObTableLockOpEb:28315 + 4: 791 + 10.1: 8 + 12: 10 + 13.1: 10 + 16: 8 + 17: 8 + 20: 8 + 21: 10 + 22.1: 10 + 23.1: 8 + 24.1: 10 + 26.1: 8 + 29.1: 10 + 35: 8 + 8.1: _ZNK9oceanbase11transaction9tablelock13ObTableLockOp22need_multi_source_dataEv:12656 + 1: 791 + 1: _ZN9oceanbase11transaction9tablelockL20is_out_trans_op_typeENS1_17ObTableLockOpTypeE:4746 + 2: 791 + 15.1: _ZNK9oceanbase11transaction9tablelock13ObTableLockOp22need_register_callbackEv:2398 + 1: 8 + 1: _ZN9oceanbase11transaction9tablelockL20is_out_trans_op_typeENS1_17ObTableLockOpTypeE:2358 + 2: 772 +_ZN9oceanbase6common13ObSEArrayImplIbLl2ENS0_19ModulePageAllocatorELb1EE7reserveEl:170196:4422 + 1: 4364 + 2: 4364 + 3: 4364 + 6: 0 + 7: 0 + 7.3: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 12: 0 + 13: 0 + 15: 0 + 16: 0 + 23: 0 + 24.1: 0 + 27: 4364 + 10: _ZN9oceanbase6common9ObClassOpIbLb1EE12array_expandEPKbPbl:0 + 2: 0 +_ZN9oceanbase8memtable22ObMemtableScanIteratorD2Ev:169791:1015 + 1: 957 + 4: 962 _ZN9oceanbase12blocksstable10ObDatumRowD1Ev:995 + 4.1: 0 + 4.2: 0 + 4.3: 962 _ZN9oceanbase8memtable17ObMvccRowIteratorD1Ev:986 + 4.5: 988 _ZN9oceanbase7storage18ObStoreRowIteratorD1Ev:1020 + 4.6: 0 + 4.8: 0 + 3: _ZN9oceanbase8memtable22ObMemtableScanIterator5resetEv:118596 + 2: 957 + 4: 957 + 9: 957 _ZN9oceanbase12blocksstable10ObDatumRow5resetEv:1001 + 11: 957 + 10: _ZN9oceanbase8memtable11ObNopBitMap5reuseEv:42993 + 2: 954 + 3: 957 +_ZN9oceanbase8memtable22ObMemtableScanIteratorD1Ev:169791:1015 + 1: 957 + 4: 962 _ZN9oceanbase12blocksstable10ObDatumRowD1Ev:995 + 4.1: 0 + 4.2: 0 + 4.3: 962 _ZN9oceanbase8memtable17ObMvccRowIteratorD1Ev:986 + 4.5: 988 _ZN9oceanbase7storage18ObStoreRowIteratorD1Ev:1020 + 4.6: 0 + 4.8: 0 + 3: _ZN9oceanbase8memtable22ObMemtableScanIterator5resetEv:118596 + 2: 957 + 4: 957 + 9: 957 _ZN9oceanbase12blocksstable10ObDatumRow5resetEv:1001 + 11: 957 + 10: _ZN9oceanbase8memtable11ObNopBitMap5reuseEv:42993 + 2: 954 + 3: 957 +_ZN9oceanbase3sql10ObSQLUtils13is_nested_sqlEPNS0_13ObExecContextE:169218:5453 + 1: 4977 + 2: 0 + 2.2: 4977 + 2: _ZN9oceanbase3sql10ObSQLUtils16is_pl_nested_sqlEPNS0_13ObExecContextE:114471 + 3: 4977 + 3.1: 4977 + 6: 0 + 6.2: 0 + 7: 0 + 7.1: 0 + 8: 0 + 8.2: 0 + 30: 4977 + 3.1: _ZN9oceanbase3sql13ObExecContext14get_parent_ctxEv:34839 + 0: 4977 + 6: _ZN9oceanbase3sql13ObExecContext11get_sql_ctxEv:0 + 0: 0 + 7.1: _ZN9oceanbase3sql13ObExecContext16get_pl_stack_ctxEv:0 + 0: 0 + 2.1: _ZN9oceanbase3sql10ObSQLUtils16is_fk_nested_sqlEPNS0_13ObExecContextE:0 + 4: 0 + 5: 0 + 4: _ZN9oceanbase3sql13ObExecContext14get_parent_ctxEv:0 + 0: 0 +_ZN9oceanbase6common19ObPageManagerCenter12get_instanceEv:168840:5786 + 1: 5628 + 2: 5628 + 2.1: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 3: 5628 + 2.2: _ZN9oceanbase6common19ObPageManagerCenterC2Ev:0 + 0: _ZN9oceanbase3lib7ObMutexC2Ej:0 + 1: 0 + 0.1: _ZN9oceanbase9container8ObRbTreeINS_6common13ObPageManagerENS0_17ObDummyCompHelperIS3_EENS3_15ObRbNode_rblinkEEC2Ev:0 + 1: 0 + 2: _ZN9oceanbase3lib7ObMutex18enable_record_statEb:0 + 0: _ZN9oceanbase6common12ObLatchMutex18enable_record_statEb:0 + 0: 0 +_ZN9oceanbase3sql15ObTableInsertOp10inner_openEv:168183:278 + 1: 272 + 2: 272 + 3.1: 275 + 3.2: 0 + 3.4: 0 + 3.5: 0 + 3.11: 0 + 6: 275 _ZN9oceanbase3sql15ObTableModifyOp10inner_openEv:275 + 7.1: 0 + 8.1: 246 + 9: 0 + 10.1: 0 + 11.1: 246 + 13.1: 232 + 14.1: 0 + 16: 232 + 3.1: _ZN9oceanbase3lib20is_trace_log_enabledEv:2197 + 2: 272 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:275 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:1925 + 2: 275 + 3.2: _ZN9oceanbase6common18get_trace_recorderEv:0 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:0 + 7: 0 + 8: 0 + 8.1: 0 + 3.4: _ZN9oceanbase3lib20is_trace_log_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:0 + 2: 0 + 3.12: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:0 + 0: 0 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 8.1: _ZN9oceanbase3sql11get_my_specINS0_15ObTableInsertOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:984 + 5: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:984 + 2: 246 + 8.2: _ZNK9oceanbase6common12ObIArrayWrapINS0_11ObArrayWrapIPNS_3sql10ObInsCtDefEEEE5emptyEv:1968 + 0: 246 + 13.1: _ZN9oceanbase3sql15ObTableInsertOp19inner_open_with_dasEv:139022 + 2: 246 + 3: 0 + 4.1: 0 + 6: 0 + 3: _ZN9oceanbase3sql15ObTableInsertOp19open_table_for_eachEv:138284 + 2: 246 + 3: 258 _ZN9oceanbase3sql13ObExecContext13get_allocatorEv:254 + 4.1: 0 + 6: 258 + 7.1: 265 + 7.2: 480 + 7.3: 480 + 7.5: 214 + 10: 267 _ZN9oceanbase3sql13ObExecContext13get_allocatorEv:273 + 10.2: 288 _ZN9oceanbase6common11ObArrayWrapINS_3sql10ObInsRtDefEE14allocate_arrayERNS0_12ObIAllocatorEl:290 + 11.1: 0 + 13.1: 230 + 13.2: 499 + 13.3: 499 + 13.5: 230 + 15: 267 + 16: 267 _ZN9oceanbase3sql12ObDMLService14init_ins_rtdefERNS0_10ObDMLRtCtxERNS0_10ObInsRtDefERKNS0_10ObInsCtDefERNS_6common8ObIArrayIPNS0_6ObExprEEE:280 + 17.1: 0 + 20.1: 214 + 21: 214 + 23: 214 + 24: 0 + 26: 214 + 30.1: 0 + 36: 214 + 37: 214 + 37.2: 214 + 3.1: _ZN9oceanbase3sql11get_my_specINS0_15ObTableInsertOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:1004 + 5: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:1004 + 2: 251 + 3.2: _ZNK9oceanbase6common12ObIArrayWrapINS0_11ObArrayWrapIPNS_3sql10ObInsCtDefEEEE5countEv:2761 + 0: 251 + 3.3: _ZN9oceanbase6common11ObArrayWrapINS1_INS_3sql10ObInsRtDefEEEE14allocate_arrayERNS0_12ObIAllocatorEl:25276 + 2: 251 + 4: 251 + 5: 251 + 6: 0 + 7.1: 0 + 8.1: 258 _ZN9oceanbase6common16ObArenaAllocator5allocEl:260 + 9: 0 + 10.1: 0 + 12.3: 258 + 12.4: 258 + 13: 258 + 15: 258 + 12.2: _ZN9oceanbase6common11ObArrayWrapINS_3sql10ObInsRtDefEEC2Ev:5418 + 1: 258 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_3sql10ObInsRtDefEEC2Ev:1806 + 0: 258 + 6: _ZN9oceanbase6common13ObSEArrayImplIPNS_3sql6ObExprELl4ENS0_19ModulePageAllocatorELb0EE5resetEv:3096 + 0: 258 _ZN9oceanbase6common13ObSEArrayImplIPNS_3sql6ObExprELl4ENS0_19ModulePageAllocatorELb0EE7destroyEv:273 + 8: _ZN9oceanbase6common12ObIArrayWrapINS0_11ObArrayWrapINS_3sql10ObInsRtDefEEEE2atEl:6095 + 6: 265 + 9: _ZN9oceanbase3sql11get_my_specINS0_15ObTableInsertOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:1060 + 5: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:1060 + 2: 265 + 9.1: _ZNK9oceanbase6common12ObIArrayWrapINS0_11ObArrayWrapIPNS_3sql10ObInsCtDefEEEE2atEl:1855 + 6: 265 + 10.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql10ObInsCtDefEE5countEv:1440 + 0: 288 + 13.2: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql10ObInsRtDefEE5countEv:3633 + 0: 499 + 15: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql10ObInsCtDefEE2atEl:5340 + 6: 267 + 20.1: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql10ObInsRtDefEE5emptyEv:642 + 0: 214 + 21: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql10ObInsCtDefEE2atEl:642 + 6: 214 + 22: _ZN9oceanbase6common12ObIArrayWrapINS_3sql10ObInsRtDefEE2atEl:856 + 6: 214 + 26: _ZN9oceanbase3sql12ObDMLService27process_before_stmt_triggerERKNS0_14ObDMLBaseCtDefERNS0_14ObDMLBaseRtDefERNS0_10ObDMLRtCtxERKNS_6common14ObDmlEventTypeE:10914 + 5: 214 + 7: 214 + 7.1: 214 + 8: 0 + 8.1: 0 + 9: 0 + 10: 0 + 11.1: 0 + 14.1: 0 + 18.1: 0 + 21: 214 + 6: _ZN9oceanbase3sql10ObDMLRtCtx12get_exec_ctxEv:1498 + 0: _ZN9oceanbase3sql8ObDASRef12get_exec_ctxEv:1498 + 0: 214 + 6.1: _ZN9oceanbase3sql13ObExecContext13set_dml_eventENS_6common14ObDmlEventTypeE:2140 + 0: 214 + 7.1: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql12ObTriggerArgEE5emptyEv:1712 + 0: 214 + 8: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:0 + 2: 0 + 8.2: _ZNK9oceanbase3sql17ObTableModifySpec12use_dist_dasEv:0 + 0: 0 + 9.1: _ZN9oceanbase3sql10ObDMLRtCtx12get_exec_ctxEv:0 + 0: _ZN9oceanbase3sql8ObDASRef12get_exec_ctxEv:0 + 0: 0 + 9.2: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:0 + 2: 0 + 9.3: _ZNK9oceanbase3sql16ObSQLSessionInfo17is_remote_sessionEv:0 + 0: 0 + 37.1: _ZN9oceanbase3lib14is_oracle_modeEv:10914 + 2: 214 + 2: _ZN9oceanbase3lib15get_compat_modeEv:9202 + 2: 214 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:5350 + 2: 214 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 +_ZN9oceanbase11transaction7ObTsMgr7get_gtsEmNS0_11MonotonicTsEPNS0_10ObTsCbTaskERlRS2_:167272:246 + 5: 239 + 7: 215 + 9: 215 + 10: 0 + 11.1: 0 + 12.1: 215 + 13: 0 + 14.1: 0 + 15.1: 215 + 15.2: 215 + 16: 0 + 17.1: 0 + 25: 0 + 25.1: 220 + 26.1: 0 + 27.2: 220 + 28: 0 + 29.1: 0 + 30.1: 220 + 30.2: 241 + 31.1: 0 + 32.1: 241 + 33.1: 241 + 34: 0 + 35.1: 0 + 36.1: 241 _ZN9oceanbase11transaction11ObGtsSource7get_gtsENS0_11MonotonicTsEPNS0_10ObTsCbTaskERlRS2_:244 + 36.2: 255 + 38.1: 0 + 44: 0 + 46.1: 255 _ZN9oceanbase11transaction15ObTsSourceGuardD1Ev:261 + 46.4: 0 + 46.5: 0 + 46.6: 261 _ZN9oceanbase11transaction19ObTsSourceInfoGuardD1Ev:263 + 48: 262 + 50: 270 + 52: 268 + 55: 272 + 6: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:1744 + 2: 239 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:260 + 15.1: _ZN9oceanbase6common18is_valid_tenant_idEm:1720 + 2: 215 + 15.2: _ZNK9oceanbase11transaction11MonotonicTs8is_validEv:860 + 0: 215 + 23: _ZN9oceanbase11transaction19ObTsSourceInfoGuardC2Ev:1720 + 0: 215 + 24: _ZN9oceanbase11transaction15ObTsSourceGuardC2Ev:4515 + 0: 215 + 25: _ZN9oceanbase11transaction7ObTsMgr23get_ts_source_info_opt_EmRNS0_19ObTsSourceInfoGuardEbb:21620 + 3: 215 + 5: 215 + 6: 215 _ZN9oceanbase5share11ObQSyncLock6rdlockEv:226 + 8: 220 + 9: 220 + 10: 0 + 11.1: 0 + 13: 0 + 23: 220 + 24: 0 + 27: 0 + 28.1: 0 + 31: 0 + 13: _ZN9oceanbase11transaction19ObTsSourceInfoGuard18get_ts_source_infoEv:0 + 0: 0 + 19: _ZN9oceanbase11transaction14ObTsSourceInfo21update_last_access_tsEv:4620 + 0: 220 + 0: _ZN9oceanbase6common16ObClockGenerator8getClockEv:3080 + 4: 220 + 5.1: 0 + 8: 220 + 6: _ZN9oceanbase6common16ObClockGenerator6get_usEv:0 + 2: 0 + 21: _ZN9oceanbase11transaction19ObTsSourceInfoGuard3setEPNS0_14ObTsSourceInfoEPNS0_7ObTsMgrEb:1760 + 2: 220 + 3: 220 + 27.1: _ZN9oceanbase11transaction19ObTsSourceInfoGuard18get_ts_source_infoEv:880 + 0: 220 + 30.1: _ZN9oceanbase11transaction14ObTsSourceInfo13get_ts_sourceEmRNS0_15ObTsSourceGuardERb:22758 + 2: 220 + 3: 220 _ZN9oceanbase5share11ObQSyncLock6rdlockEv:246 + 4: 241 + 5: 0 + 6.1: 0 + 7.1: 241 + 7.2: 241 + 8: 0 + 9.1: 0 + 11: 241 + 12: 241 + 13: 241 + 15: 241 + 16: 0 + 18: 0 + 7.1: _ZN9oceanbase6common18is_valid_tenant_idEm:1928 + 2: 241 + 13: _ZN9oceanbase11transaction15ObTsSourceGuard3setEPNS0_14ObTsSourceInfoEPNS0_11ObITsSourceEi:4820 + 2: 241 + 3: 241 + 4: 241 + 33: _ZN9oceanbase11transaction15ObTsSourceGuard13get_ts_sourceEv:1687 + 0: 241 + 36.2: _ZN9oceanbase11transaction11MonotonicTsD2Ev:2805 + 0: _ZN9oceanbase11transaction11MonotonicTs5resetEv:2805 + 0: 255 + 36.3: _ZN9oceanbase11transaction11MonotonicTsD2Ev:0 + 0: _ZN9oceanbase11transaction11MonotonicTs5resetEv:0 + 0: 0 + 48: _ZN9oceanbase11transaction16ObTransStatistic12get_instanceEv:4716 + 2: 262 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 48.1: _ZN9oceanbase11transaction16ObTransStatistic27add_gts_acquire_total_countEml:18746 + 3.2: 270 + 3.3: 0 + 3.4: 0 + 3.5: 0 + 3.6: 0 + 3.10: 0 + 3.11: 0 + 3.12: 0 + 2: _ZN9oceanbase6common20ObTenantStatEstGuardC2Em:11184 + 1: 262 + 2: 262 + 3: 272 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 12: 272 + 3: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:1350 + 2: 262 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:272 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:1088 + 2: 272 + 6: _ZN9oceanbase6common17ObSessionDIBuffer13get_tenant_idEv:0 + 3: 0 + 4: 0 + 3.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:1352 + 2: 272 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:272 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:1080 + 2: 270 + 4.3: _ZN9oceanbase6common20ObTenantStatEstGuardD2Ev:4590 + 1: 270 + 2: 270 + 3: 0 + 3.1: 0 + 51: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:1074 + 2: 270 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:270 + 52: _ZN9oceanbase11transaction16ObTransStatistic12get_instanceEv:2948 + 2: 268 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 52.1: _ZN9oceanbase11transaction16ObTransStatistic26add_gts_acquire_total_timeEml:13839 + 3.2: 272 + 3.3: 0 + 3.4: 0 + 3.5: 0 + 3.6: 0 + 3.10: 0 + 3.11: 0 + 3.12: 0 + 2: _ZN9oceanbase6common20ObTenantStatEstGuardC2Em:8398 + 1: 268 + 2: 268 + 3: 273 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 12: 273 + 3: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:1360 + 2: 268 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:279 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:1092 + 2: 273 + 6: _ZN9oceanbase6common17ObSessionDIBuffer13get_tenant_idEv:0 + 3: 0 + 4: 0 + 3.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:1361 + 2: 273 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:281 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:1088 + 2: 272 + 4.3: _ZN9oceanbase6common20ObTenantStatEstGuardD2Ev:3536 + 1: 272 + 2: 272 + 3: 0 + 3.1: 0 +_ZN9oceanbase3lib12SubObjectMgr24get_tenant_ctx_allocatorEv:167024:12989 + 1: 12848 + 2: 12848 + 2: _ZNK9oceanbase3lib8BlockSet24get_tenant_ctx_allocatorEv:89936 + 2: 12848 +_ZN9oceanbase3sql10ObSQLUtils16is_batch_executeERNS0_8ObSqlCtxE:166881:5153 + 1: 5057 + 2: 5057 + 2: _ZNK9oceanbase3sql15ObMultiStmtItem21is_batched_multi_stmtEv:136539 + 3: 5057 +_ZN9oceanbase6common12ObKVCacheMap18internal_data_moveERPNS1_4NodeES4_S4_NS0_15ObKVCachePolicyE:166710:443 + 1: 411 + 2: 411 + 5: 411 + 6: 411 + 7: 468 + 8: 0 + 9.1: 0 + 10.1: 468 _ZN9oceanbase6common15ObIKVCacheStoreINS0_18ObKVMemBlockHandleEE5storeERNS0_13ObKVCacheInstERKNS0_13ObIKVCacheKeyERKNS0_15ObIKVCacheValueERPNS0_13ObKVCachePairERPS2_NS0_15ObKVCachePolicyE:502 + 11: 0 + 12.1: 0 + 17: 410 + 18: 410 + 19: 410 + 20: 410 + 21: 410 + 22: 410 + 23: 410 + 24: 410 + 27: 410 + 28: 410 + 29: 410 + 30: 410 + 31: 410 + 34: 410 _ZN9oceanbase6common14ObKVCacheStore13de_handle_refEPNS0_18ObKVMemBlockHandleE:411 + 40: 459 + 45: 459 _ZN9oceanbase6common19GlobalHazardVersion11delete_nodeEPNS0_17KVCacheHazardNodeE:481 + 47: 441 + 7: _ZN9oceanbase6common17ObLfFIFOAllocator5allocEl:2466 + 0: 411 _ZN9oceanbase6common13ObVSliceAlloc5allocEl:413 + 11: _ZN9oceanbase6common17ObLfFIFOAllocator4freeEPv:0 + 0: _ZN9oceanbase6common13ObVSliceAlloc4freeEPv:0 + 4: 0 + 6: 0 + 7: 0 + 7: _ZN9oceanbase6common14ObBlockVSlicer9free_itemEPNS1_4ItemE:0 + 0: 0 + 8: _ZN9oceanbase6common13ObVSliceAlloc13destroy_blockEPNS0_14ObBlockVSlicerE:0 + 1.1: _ZN9oceanbase6common15ObBlockAllocMgr10free_blockEPvl:0 + 1: 0 + 3: 0 + 2: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 14: _ZN9oceanbase6common12ObKVCacheMap4NodeC2Ev:24600 + 2: 410 + 4: 410 + 9: 410 + 0: _ZN9oceanbase6common17KVCacheHazardNodeC2Ev:6560 + 1: 410 + 2: 410 + 19: _ZNK9oceanbase6common18ObKVMemBlockHandle11get_seq_numEv:1230 + 0: _ZNK9oceanbase6common17ObAtomicReference11get_seq_numEv:1230 + 0: 410 +_ZN9oceanbase6common9ObCharset18is_valid_collationEl:166466:5462 + 1: 5363 + 3.1: 5576 + 4: 5363 + 15.1: 0 +_ZN9oceanbase6common14ObVersionRangeC2Ev:166254:7698 + 2: 7557 + 4: 7557 + 5: 7557 +_ZN9oceanbase6common14ObVersionRangeC1Ev:166254:7698 + 2: 7557 + 4: 7557 + 5: 7557 +_ZN9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE6revertEl:165103:683 + 1: 628 + 2: 628 + 3: 628 + 4: 1 + 5.1: 1 + 7.1: 628 + 7.2: 628 + 8: 1 + 9.1: 1 + 19: 628 + 20: 628 + 21: 628 + 22: 628 + 23: 1 + 24.1: 1 + 25.1: 628 + 26: 573 + 27.1: 573 _ZZN9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE6revertElENKUlPKcE2_clES5_:586 + 28: 575 + 28.1: 575 + 28.2: 344 + 28.3: 344 + 30: 7 + 31.1: 7 _ZZN9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE6revertElENKUlPKcE3_clES5_:7 + 33.1: 11 + 33.2: 11 + 37.1: 11 _ZZN9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE6revertElENKUlPKcE4_clES5_:10 + 38: 11 _ZN9oceanbase4palf7LogTask5resetEv:11 + 39: 11 + 40: 11 + 40.1: 11 + 41: 11 + 42: 11 + 45: 1 + 46.1: 1 + 52.1: 54 _ZZN9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE6revertElENKUlPKcE6_clES5_:53 + 55: 618 + 7.1: _ZNK9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE11get_end_sn_Ev:4396 + 0: 628 + 7.2: _ZNK9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE12get_begin_snEv:5024 + 0: 628 + 19: _ZNK9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE9calc_idx_El:4396 + 2: 628 + 26: _ZNK9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE11get_end_sn_Ev:4584 + 0: 573 + 28.1: _ZNK9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE9calc_idx_El:9365 + 2: 575 + 28.2: _ZNK9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE12get_begin_snEv:2752 + 0: 344 + 30: _ZN9oceanbase6common20ObSmallSpinLockGuardINS0_15ObSmallSpinLockIhLl0ELl500ELl100EEEEC2ERS3_:300 + 0: _ZN9oceanbase6common15ObSmallSpinLockIhLl0ELl500ELl100EE4lockEv:300 + 3.1: 7 + 5: 1 + 7: 1 + 9: 1 + 3.1: _ZN9oceanbase6common15ObSmallSpinLockIhLl0ELl500ELl100EE8try_lockEv:217 + 3: 7 + 4: 7 + 5: 7 + 33: _ZNK9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE11get_end_sn_Ev:88 + 0: 11 + 40: _ZNK9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE9calc_idx_El:154 + 2: 11 + 50.1: _ZN9oceanbase6common20ObSmallSpinLockGuardINS0_15ObSmallSpinLockIhLl0ELl500ELl100EEEED2Ev:77 + 0: _ZN9oceanbase6common15ObSmallSpinLockIhLl0ELl500ELl100EE6unlockEv:77 + 2: 11 + 3: 11 + 50.2: _ZN9oceanbase6common20ObSmallSpinLockGuardINS0_15ObSmallSpinLockIhLl0ELl500ELl100EEEED2Ev:11 + 0: _ZN9oceanbase6common15ObSmallSpinLockIhLl0ELl500ELl100EE6unlockEv:11 + 2: 1 + 3: 1 +_ZN9oceanbase6common12ObKVCacheMap18clean_garbage_nodeERll:164262:0 + 1: 0 + 2: 0 + 3: 0 + 4: 0 + 5.1: 0 + 6.1: 0 + 7: 0 + 8: 0 + 9: 0 + 10.1: 0 + 12: 0 + 13: 0 + 15: 0 + 16: 0 + 19: 0 + 20.1: 0 + 21.1: 0 + 23.1: 882 + 23.5: 882 + 25.1: 838 + 26.1: 4 + 28: 838 + 30: 838 + 31.1: 838 + 32: 80 _ZN9oceanbase6common14ObKVCacheStore14add_handle_refEPNS0_18ObKVMemBlockHandleEj:76 + 32.1: 84 + 33: 84 _ZN9oceanbase6common14ObKVCacheStore13de_handle_refEPNS0_18ObKVMemBlockHandleE:80 + 35: 98 + 37: 4 + 39: 4 + 45: 0 + 45.3: 0 + 46: 0 + 46.1: 0 + 47: 0 + 48.1: 0 + 50.1: 0 + 51.1: 0 + 55: 0 + 13: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 20: _ZNK9oceanbase6common24GlobalHazardVersionGuard7get_retEv:0 + 0: 0 + 24: _ZN9oceanbase6common18ObBucketWLockGuardC2ERNS0_12ObBucketLockEm:38933 + 1: 867 + 2: 867 + 3: 867 + 4: 867 + 6: 1002 _ZN9oceanbase6common12ObBucketLock6wrlockEm:886 + 7.1: 4 + 9: 1002 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:999 + 25: _ZNK9oceanbase6common18ObBucketWLockGuard7get_retEv:2514 + 0: 838 + 28: _ZN9oceanbase6common12ObKVCacheMap15get_bucket_nodeEl:22626 + 2: 838 + 3: 838 + 38: _ZN9oceanbase6common12ObKVCacheMap18internal_map_eraseERPNS1_4NodeES4_S4_:148 + 5: 4 + 10: 4 + 11: 4 + 43: _ZN9oceanbase6common18ObBucketWLockGuardD2Ev:46459 + 2: 851 + 3: 851 _ZN9oceanbase6common12ObBucketLock6unlockEm:853 + 3.1: 949 + 4.1: 0 + 6: 949 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:947 + 6.1: 882 + 7: 882 + 8.1: 0 + 488.1: 4 + 43.1: _ZN9oceanbase6common18ObBucketWLockGuardD2Ev:0 + 2: 0 + 3: 0 + 3.1: 0 + 4.1: 0 + 6: 0 + 6.1: 0 + 7: 0 + 8.1: 0 + 50: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 53: _ZN9oceanbase6common24GlobalHazardVersionGuardD2Ev:0 + 2: 0 + 2.1: 0 + 53.2: _ZN9oceanbase6common24GlobalHazardVersionGuardD2Ev:0 + 2: 0 + 2.1: 0 +_ZN9oceanbase12blocksstable18ObMicroBlockReaderD2Ev:164244:995 + 1: 979 + 1.3: 0 + 1.4: 997 _ZN9oceanbase12blocksstable23ObIMicroBlockFlatReaderD1Ev:1034 + 1.5: 0 + 1: _ZN9oceanbase12blocksstable18ObMicroBlockReader5resetEv:73186 + 4: 994 + 8: 994 _ZN9oceanbase12blocksstable11ObRowReader5resetEv:1012 + 9: 986 _ZN9oceanbase6common16ObArenaAllocator5reuseEv:1028 + 2: _ZN9oceanbase12blocksstable23ObIMicroBlockFlatReader5resetEv:24520 + 3: 994 + 6: 979 _ZN9oceanbase12blocksstable11ObRowReader5resetEv:1009 + 3: _ZN9oceanbase12blocksstable19ObIMicroBlockReader5resetEv:28826 + 0: _ZN9oceanbase12blocksstable23ObIMicroBlockReaderInfo5resetEv:28826 + 2: 994 + 3: 994 + 4: 994 + 1.1: _ZN9oceanbase12blocksstable23ObIMicroBlockReaderInfoD2Ev:46859 + 0: 997 + 0: _ZN9oceanbase12blocksstable23ObIMicroBlockReaderInfo5resetEv:28913 + 2: 997 + 3: 997 + 4: 997 + 1.2: _ZN9oceanbase12blocksstable23ObIMicroBlockReaderInfoD2Ev:0 + 0: 0 + 0: _ZN9oceanbase12blocksstable23ObIMicroBlockReaderInfo5resetEv:0 + 2: 0 + 3: 0 + 4: 0 +_ZN9oceanbase11transaction14ObPartTransCtx10on_successEPNS0_9ObTxLogCbE:163938:280 + 1: 275 + 3: 284 + 4: 284 + 5: 284 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:284 + 6.1: 260 + 6.2: 260 _ZN9oceanbase11transaction16ObTransStatistic18add_clog_sync_timeEml:261 + 7.1: 282 _ZN9oceanbase11transaction16ObTransStatistic19add_clog_sync_countEml:283 + 9: 267 + 10: 284 _ZN9oceanbase6common11ObTimeGuard5clickEPKc:286 + 11: 239 + 11.1: 239 + 12.1: 239 + 13: 239 + 16.1: 5 + 17.2: 239 + 18.1: 5 + 22.1: 239 + 24.2: 224 + 24.4: 0 + 25: 224 + 25.1: 224 + 28: 245 _ZN9oceanbase11transaction14ObPartTransCtx15on_success_ops_EPNS0_9ObTxLogCbE:250 + 28.1: 247 + 29.1: 5 + 30: 5 + 34: 5 + 37: 247 + 39: 263 + 42.1: 0 + 45: 260 _ZN9oceanbase6common11ObTimeGuard5clickEPKc:260 + 46: 279 + 47: 3 + 48.1: 3 + 51: 277 + 55: 244 + 56: 277 _ZN9oceanbase6common11ObTimeGuard5clickEPKc:275 + 57.1: 3 + 59: 3 + 59.1: 3 + 60.1: 3 + 63: 263 _ZN9oceanbase6common11ObTimeGuard5clickEPKc:265 + 64: 236 + 65: 5 + 67: 236 _ZN9oceanbase6common11ObTimeGuard5clickEPKc:242 + 71.1: 291 + 72: 5 + 72.1: 5 + 72.2: 5 + 72.3: 5 + 72.5: 5 + 73.1: 5 + 75: 293 _ZN9oceanbase11transaction12CtxLockGuardD1Ev:313 + 75.3: 5 + 76: 249 _ZN9oceanbase11transaction12ObLSTxCtxMgr26revert_tx_ctx_without_lockEPNS0_10ObTransCtxE:246 + 76.1: 242 + 77.1: 5 + 79: 243 + 80.15: 243 _ZN9oceanbase6common11ObTimeGuardD2Ev:239 + 80.16: 5 + 2: _ZN9oceanbase6common11ObTimeGuardC2EPKcl:11837 + 2: 246 + 3: 246 + 4: 246 + 6: 246 + 7: 246 + 8: 246 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:275 + 2: 275 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:277 + 6: _ZN9oceanbase11transaction16ObTransStatistic12get_instanceEv:5055 + 2: 260 + 2.1: 5 + 2.2: 5 + 2.3: 5 + 2.6: 5 + 7: _ZN9oceanbase11transaction16ObTransStatistic12get_instanceEv:3477 + 2: 282 + 2.1: 5 + 2.2: 5 + 2.3: 5 + 2.6: 5 + 9: _ZN9oceanbase11transaction12CtxLockGuardC2ERNS0_7CtxLockEb:1335 + 0: 267 + 0.1: 267 _ZN9oceanbase11transaction7CtxLock4lockEv:280 + 11: _ZNK9oceanbase11transaction13ObTxBaseLogCb10get_log_tsEv:956 + 0: 239 + 12: _ZNK9oceanbase11transaction9ObTxLogCb17get_last_log_typeEv:7648 + 3: 239 + 4: 239 + 3: _ZNK9oceanbase6common12ObIArrayWrapINS_11transaction9ObTxCbArgEE5countEv:1673 + 0: 239 + 4.1: _ZNK9oceanbase6common12ObIArrayWrapINS_11transaction9ObTxCbArgEE2atEl:1673 + 6: 239 + 4.2: _ZNK9oceanbase11transaction9ObTxCbArg12get_log_typeEv:1195 + 0: 239 + 17.1: _ZNK9oceanbase11transaction9ObTxLogCb13is_callbackedEv:1673 + 0: 239 + 22: _ZN9oceanbase6common7ObDListINS_11transaction9ObTxLogCbEE9get_firstEv:1673 + 0: 239 + 23: _ZN9oceanbase6common11ObTimeGuard5clickEPKc:15247 + 3: 224 + 4: 224 + 5: 224 + 6: 224 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:239 + 2: 239 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:251 + 24.1: _ZNK9oceanbase6common7ObDListINS_11transaction9ObTxLogCbEE8get_sizeEv:0 + 0: 0 + 25: _ZNK9oceanbase11transaction9ObTxLogCb13is_callbackedEv:4256 + 0: 224 + 1591: 224 + 37: _ZN9oceanbase11transaction9ObTxLogCb14set_callbackedEv:1976 + 0: 247 + 42: _ZN9oceanbase6common11ObDLinkBaseINS_11transaction9ObTxLogCbEE8get_nextEv:0 + 0: 0 + 55: _ZN9oceanbase11transaction14ObPartTransCtx14return_log_cb_EPNS0_9ObTxLogCbE:19743 + 3: 244 + 5: 244 _ZN9oceanbase11transaction9ObTxLogCb5reuseEv:241 + 6: 281 + 7: 3 + 4: _ZN9oceanbase6common7ObDListINS_11transaction9ObTxLogCbEE6removeEPS3_:14396 + 3: 244 + 3.2: 244 + 7: 244 + 6: _ZN9oceanbase6common11ObDLinkBaseINS_11transaction9ObTxLogCbEE6unlinkEv:8784 + 2: 244 + 4: 244 + 5: 244 + 6: 244 + 7: 244 + 57: _ZNK9oceanbase11transaction14ObPartTransCtx16need_record_log_Ev:2871 + 13: 237 + 13.1: _ZNK9oceanbase11transaction12ObTxSubState21is_info_log_submittedEv:24 + 1: 3 + 64: _ZN9oceanbase11transaction18ObTxLogTypeChecker12is_state_logENS0_11ObTxLogTypeE:4248 + 2: 236 + 71: _ZNK9oceanbase6common11ObTimeGuard8get_diffEv:2339 + 2: 291 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:302 + 2: 282 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:286 + 72.4: _ZN9oceanbase6common7ObLogKVIRNS_11transaction15ObTransTraceLogELb0EEC2EPKcS4_:165 + 0: 5 +_ZN9oceanbase7storage10ObRowsInfoC2Ev:163756:277 + 6: 236 + 8: 236 + 13: 268 + 15: 236 + 15.9: 0 + 15.10: 0 + 15.11: 0 + 1.1: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:4824 + 2: 268 + 2.1: 0 + 2.2: 0 + 1.2: _ZNK9oceanbase5share12ObTenantBase2idEv:4020 + 0: 268 + 1.3: _ZN9oceanbase6common23ObReserveArenaAllocatorILl1024EEC2ERKNS_3lib7ObLabelEll:42076 + 3: 268 + 5: 268 + 4: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:35108 + 4: 268 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:30284 + 2: 268 + 3: 268 + 4: 268 + 5: 268 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:12328 + 0: 268 + 2.1: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:2680 + 2: 268 + 2.1: 0 + 2.2: 0 + 2.2: _ZNK9oceanbase5share12ObTenantBase2idEv:2144 + 0: 268 + 2.3: _ZN9oceanbase6common23ObReserveArenaAllocatorILl1024EEC2ERKNS_3lib7ObLabelEll:30284 + 3: 268 + 5: 268 + 4: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:25728 + 4: 268 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:23852 + 2: 268 + 3: 268 + 4: 268 + 5: 268 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:9380 + 0: 268 + 3: _ZN9oceanbase6common9ObSEArrayINS_12blocksstable13ObDatumRowkeyELl1ENS0_19ModulePageAllocatorELb0EEC2Ev:36036 + 0.1: 244 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable13ObDatumRowkeyELl1ENS0_19ModulePageAllocatorELb0EEC2ElRKS4_:31644 + 2: 268 + 5: 244 + 6: 244 + 8: 244 + 17.1: 244 + 2: _ZN9oceanbase6common8ObIArrayINS_12blocksstable13ObDatumRowkeyEEC2EPS3_l:3416 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_12blocksstable13ObDatumRowkeyEEC2EPS3_l:3416 + 0: 244 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:10248 + 0: 244 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:5856 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:5856 + 2: 244 + 8: 244 + 5: _ZN9oceanbase7storage10ObRowsInfo11ExistHelperC2Ev:6456 + 1: 244 _ZN9oceanbase7storage16ObTableIterParamC1Ev:265 + 2: 265 _ZN9oceanbase7storage20ObTableAccessContextC1Ev:279 + 3: 236 + 5.1: 0 + 14: _ZN9oceanbase12blocksstable13ObDatumRowkey14set_max_rowkeyEv:13216 + 0: 236 + 0: _ZN9oceanbase6common13ObStoreRowkey7set_maxEv:6608 + 0: 236 +_ZN9oceanbase7storage10ObRowsInfoC1Ev:163756:277 + 6: 236 + 8: 236 + 13: 268 + 15: 236 + 15.9: 0 + 15.10: 0 + 15.11: 0 + 1.1: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:4824 + 2: 268 + 2.1: 0 + 2.2: 0 + 1.2: _ZNK9oceanbase5share12ObTenantBase2idEv:4020 + 0: 268 + 1.3: _ZN9oceanbase6common23ObReserveArenaAllocatorILl1024EEC2ERKNS_3lib7ObLabelEll:42076 + 3: 268 + 5: 268 + 4: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:35108 + 4: 268 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:30284 + 2: 268 + 3: 268 + 4: 268 + 5: 268 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:12328 + 0: 268 + 2.1: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:2680 + 2: 268 + 2.1: 0 + 2.2: 0 + 2.2: _ZNK9oceanbase5share12ObTenantBase2idEv:2144 + 0: 268 + 2.3: _ZN9oceanbase6common23ObReserveArenaAllocatorILl1024EEC2ERKNS_3lib7ObLabelEll:30284 + 3: 268 + 5: 268 + 4: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:25728 + 4: 268 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:23852 + 2: 268 + 3: 268 + 4: 268 + 5: 268 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:9380 + 0: 268 + 3: _ZN9oceanbase6common9ObSEArrayINS_12blocksstable13ObDatumRowkeyELl1ENS0_19ModulePageAllocatorELb0EEC2Ev:36036 + 0.1: 244 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable13ObDatumRowkeyELl1ENS0_19ModulePageAllocatorELb0EEC2ElRKS4_:31644 + 2: 268 + 5: 244 + 6: 244 + 8: 244 + 17.1: 244 + 2: _ZN9oceanbase6common8ObIArrayINS_12blocksstable13ObDatumRowkeyEEC2EPS3_l:3416 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_12blocksstable13ObDatumRowkeyEEC2EPS3_l:3416 + 0: 244 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:10248 + 0: 244 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:5856 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:5856 + 2: 244 + 8: 244 + 5: _ZN9oceanbase7storage10ObRowsInfo11ExistHelperC2Ev:6456 + 1: 244 _ZN9oceanbase7storage16ObTableIterParamC1Ev:265 + 2: 265 _ZN9oceanbase7storage20ObTableAccessContextC1Ev:279 + 3: 236 + 5.1: 0 + 14: _ZN9oceanbase12blocksstable13ObDatumRowkey14set_max_rowkeyEv:13216 + 0: 236 + 0: _ZN9oceanbase6common13ObStoreRowkey7set_maxEv:6608 + 0: 236 +_ZN9oceanbase8memtable10ObMemtable8is_emptyEv:162482:4819 + 1: 4697 + 2: 4697 _ZNK9oceanbase8memtable10ObMemtable14get_end_log_tsEv:4687 + 2.1: 4606 + 2.2: 4527 _ZNK9oceanbase8memtable10ObMemtable16get_start_log_tsEv:4524 + 3: 54 + 3: _ZNK9oceanbase8memtable10ObMemtable18get_max_end_log_tsEv:378 + 0: 54 +_ZN9oceanbase7storage22ObMicroBlockDataHandle19get_data_block_dataERNS_12blocksstable18ObMacroBlockReaderERNS2_16ObMicroBlockDataE:162456:2937 + 3: 2836 + 5: 2976 _ZN9oceanbase7storage22ObMicroBlockDataHandle21get_loaded_block_dataERNS_12blocksstable16ObMicroBlockDataE:2921 + 7: 0 + 9: 0 + 10: 0 + 11: 0 + 11.2: 0 + 18.1: 0 + 21: 2976 + 8: _ZN9oceanbase12blocksstable12MacroBlockIdaSERKS1_:0 + 2: 0 + 4: 0 + 11.1: _ZN9oceanbase12blocksstable19ObStorageCacheSuite15get_block_cacheEv:0 + 0: 0 +_ZNK9oceanbase8memtable10ObMemtable14get_end_log_tsEv:161970:16655 + 1: 16197 + 2: 16197 +_ZN9oceanbase11transaction22CtxTransTableLockGuardD2Ev:161345:2920 + 1: 2715 + 3: 3006 + 3.1: 0 + 3.2: 0 + 2: _ZN9oceanbase11transaction22CtxTransTableLockGuard5resetEv:105885 + 2: 2715 + 4: 2715 + 6: 2715 _ZN9oceanbase11transaction12CtxLockGuard5resetEv:2839 + 3: _ZN9oceanbase11transaction17TransTableSeqLock12write_unlockEv:48870 + 2: 2715 + 3: 2715 + 4: 2715 + 3: _ZN9oceanbase11transaction12CtxLockGuardD2Ev:13280 + 2: 3320 _ZN9oceanbase11transaction12CtxLockGuard5resetEv:3408 + 2.1: 0 +_ZN9oceanbase11transaction22CtxTransTableLockGuardD1Ev:161345:2920 + 1: 2715 + 3: 3006 + 3.1: 0 + 3.2: 0 + 2: _ZN9oceanbase11transaction22CtxTransTableLockGuard5resetEv:105885 + 2: 2715 + 4: 2715 + 6: 2715 _ZN9oceanbase11transaction12CtxLockGuard5resetEv:2839 + 3: _ZN9oceanbase11transaction17TransTableSeqLock12write_unlockEv:48870 + 2: 2715 + 3: 2715 + 4: 2715 + 3: _ZN9oceanbase11transaction12CtxLockGuardD2Ev:13280 + 2: 3320 _ZN9oceanbase11transaction12CtxLockGuard5resetEv:3408 + 2.1: 0 +_ZN9oceanbase4palf14LogEntryHeader11deserializeEPKclRl:160831:226 + 1: 201 + 4: 201 + 4.2: 201 + 13.1: 236 + 16: 236 + 18: 236 + 6.1: _ZN9oceanbase6common13serialization10decode_i16EPKclRlPs:9246 + 2.1: 201 + 3: 201 + 4: 201 + 5: 201 + 7.1: _ZN9oceanbase6common13serialization10decode_i16EPKclRlPs:7839 + 2: 201 + 3: 201 + 4: 201 + 5: 201 + 8.1: _ZN9oceanbase6common13serialization10decode_i32EPKclRlPi:13467 + 3: 201 + 4: 201 + 5: 201 + 6: 201 + 7: 201 + 8: 201 + 9.1: _ZN9oceanbase6common13serialization10decode_i64EPKclRlPl:28743 + 2: 201 + 3: 201 + 4: 201 + 5: 201 + 6: 201 + 7: 201 + 8: 201 + 9: 201 + 10: 201 + 11: 201 + 10.1: _ZN9oceanbase6common13serialization10decode_i64EPKclRlPl:28743 + 2: 201 + 3: 201 + 4: 201 + 5: 201 + 6: 201 + 7: 201 + 8: 201 + 9: 201 + 10: 201 + 11: 201 + 11.1: _ZN9oceanbase6common13serialization10decode_i64EPKclRlPl:28743 + 2: 201 + 3: 201 + 4: 201 + 5: 201 + 6: 201 + 7: 201 + 8: 201 + 9: 201 + 10: 201 + 11: 201 + 13.1: _ZNK9oceanbase4palf14LogEntryHeader22check_header_integrityEv:28126 + 2: _ZNK9oceanbase4palf14LogEntryHeader8is_validEv:7236 + 2: 201 + 2.1: _ZNK9oceanbase4palf14LogEntryHeader22check_header_checksum_Ev:20890 + 4: 236 + 2: _ZNK9oceanbase4palf14LogEntryHeader28get_header_parity_check_res_Ev:18766 + 2: 242 _ZN9oceanbase6common12parity_checkEt:209 + 3: 266 _ZN9oceanbase6common12parity_checkEt:245 + 4: 266 _ZN9oceanbase6common12parity_checkEj:266 + 5: 254 _ZN9oceanbase6common12parity_checkEm:254 + 6: 242 _ZN9oceanbase6common12parity_checkEm:248 + 7: 242 + 8: 242 _ZN9oceanbase6common12parity_checkEm:248 +_ZN9oceanbase3sql17ObChunkDatumStore8Iterator4initEPS1_lPKNS1_12IterationAgeE:159725:544 + 3: 525 + 6: 500 + 7.1: 500 + 8.1: 0 + 10: 500 + 4: _ZN9oceanbase3sql17ObChunkDatumStore8Iterator5resetEv:103000 + 0: 500 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator5resetEv:14700 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator12reset_cursorEv:14700 + 3: 525 + 0.1: _ZN9oceanbase3sql17ObChunkDatumStore13ChunkIterator5resetEv:84300 + 4: 500 + 2: _ZN9oceanbase3sql17ObChunkDatumStore13ChunkIterator12reset_cursorEl:78800 + 2: 525 + 4: 525 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10.1: 0 + 14: 525 _ZN9oceanbase12blocksstable17ObTmpFileIOHandle5resetEv:526 + 17: 500 + 18: 0 + 20: 500 + 21: 0 + 25: 500 + 28.1: 500 + 29: 0 + 32.1: 500 + 33: 0 + 36: 500 + 37: 500 + 38: 500 + 39: 500 + 8: _ZN9oceanbase3sql17ObChunkDatumStore13callback_freeEl:0 + 0: 0 + 0.1: 0 + 9: _ZN9oceanbase3sql17ObChunkDatumStore13ChunkIterator18read_file_iter_endEv:0 + 0: 0 + 18: _ZNK9oceanbase3sql17ObChunkDatumStore11BlockBuffer8mem_sizeEv:0 + 0: 0 + 18.1: _ZN9oceanbase3sql17ObChunkDatumStore13ChunkIterator10free_blockEPNS1_5BlockElb:0 + 31: 0 + 32: 0 + 32: _ZN9oceanbase3sql17ObChunkDatumStore13callback_freeEl:0 + 0: 0 + 0.1: 0 + 21: _ZNK9oceanbase3sql17ObChunkDatumStore11BlockBuffer8mem_sizeEv:0 + 0: 0 + 21.1: _ZN9oceanbase3sql17ObChunkDatumStore13ChunkIterator10free_blockEPNS1_5BlockElb:0 + 31: 0 + 32: 0 + 32: _ZN9oceanbase3sql17ObChunkDatumStore13callback_freeEl:0 + 0: 0 + 0.1: 0 + 28.1: _ZNK9oceanbase3sql17ObChunkDatumStore9BlockList9get_firstEv:3500 + 0: 500 + 29: _ZN9oceanbase3sql17ObChunkDatumStore9BlockList12remove_firstEv:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 29.1: _ZN9oceanbase3sql17ObChunkDatumStore13ChunkIterator10free_blockEPNS1_5BlockElb:0 + 31: 0 + 32: 0 + 32: _ZN9oceanbase3sql17ObChunkDatumStore13callback_freeEl:0 + 0: 0 + 0.1: 0 + 32.1: _ZNK9oceanbase3sql17ObChunkDatumStore9BlockList9get_firstEv:3500 + 0: 500 + 33: _ZN9oceanbase3sql17ObChunkDatumStore9BlockList12remove_firstEv:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 33.1: _ZN9oceanbase3sql17ObChunkDatumStore13ChunkIterator10free_blockEPNS1_5BlockElb:0 + 31: 0 + 32: 0 + 32: _ZN9oceanbase3sql17ObChunkDatumStore13callback_freeEl:0 + 0: 0 + 0.1: 0 + 6: _ZN9oceanbase3sql17ObChunkDatumStore13ChunkIterator4initEPS1_lPKNS1_12IterationAgeE:16000 + 5: 500 + 6: 500 + 7: 500 + 8: 500 + 7.1: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator4initEPNS1_13ChunkIteratorE:8000 + 3.1: 500 + 5.1: 0 + 7: 500 + 3.1: _ZN9oceanbase3sql17ObChunkDatumStore13ChunkIterator8is_validEv:1500 + 0: 500 +_ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl16ENS0_19ModulePageAllocatorELb0EE7reserveEl:159220:4362 + 1: 4190 + 2: 4190 + 3: 4190 + 5: 0 + 6: 0 + 7: 0 + 7.3: 0 + 9: 0 + 10: 0 + 11: 0 + 12: 0 + 13: 0 + 15: 0 + 16: 0 + 23: 0 + 24.1: 0 + 27: 4190 + 8: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl16ENS0_19ModulePageAllocatorELb0EE16internal_malloc_El:0 + 2: 0 + 7: 0 + 13: 0 + 13: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 10: _ZN9oceanbase6common9ObClassOpIPNS_7storage8ObITableELb1EE12array_expandEPKS4_PS4_l:0 + 2: 0 +_ZN9oceanbase7storage15ObAccessService11update_rowsERKNS_5share6ObLSIDERKNS_6common10ObTabletIDERNS_11transaction8ObTxDescERKNS0_14ObDMLBaseParamERKNS6_8ObIArrayImEESJ_PNS6_16ObNewRowIteratorERl:159151:368 + 9: 357 + 10: 357 + 12: 331 + 14: 331 + 15: 2 + 16.1: 2 + 17.3: 331 + 18: 331 + 19: 331 + 20: 331 + 21: 331 + 21.2: 331 + 22: 331 + 22.2: 331 + 23: 2 + 24.1: 2 + 26.1: 331 _ZN9oceanbase7storage15ObAccessService20check_write_allowed_ERKNS_5share6ObLSIDERKNS_6common10ObTabletIDENS0_17ObStoreAccessTypeERKNS0_14ObDMLBaseParamERNS_11transaction8ObTxDescERNS1_15ObStoreCtxGuardE:331 + 26.2: 289 + 32.1: 2 + 33.3: 289 + 34: 2 + 35.1: 2 + 40.1: 289 _ZN9oceanbase7storage17ObLSTabletService11update_rowsERNS0_10ObStoreCtxERKNS0_14ObDMLBaseParamERKNS_6common8ObIArrayImEESB_PNS7_16ObNewRowIteratorERl:325 + 46: 377 + 47: 377 _ZN9oceanbase7storage15ObAccessService25audit_tablet_opt_dml_statERKNS0_14ObDMLBaseParamERKNS_6common10ObTabletIDENS5_16ObOptDmlStatTypeEl:380 + 50: 377 + 53: 404 + 54.7: 404 _ZN9oceanbase7storage15ObAccessService15ObStoreCtxGuardD2Ev:419 + 54.8: 2 + 11: _ZN9oceanbase7storage15ObAccessService15ObStoreCtxGuardC2Ev:52679 + 0: 357 + 0.2: 331 + 0: _ZN9oceanbase7storage10ObStoreCtxC2Ev:37054 + 0.2: 362 _ZN9oceanbase7storage10ObStoreCtx5resetEv:368 + 0.6: 2 + 0: _ZN9oceanbase5share6ObLSIDC2Ev:3927 + 0: 357 + 0.1: _ZN9oceanbase8memtable15ObMvccAccessCtxC2Ev:28810 + 1: 357 + 3: 357 + 4: 357 _ZN9oceanbase11transaction12ObTxSnapshotC1Ev:362 + 7: 362 + 10: 362 + 5: _ZN9oceanbase7storage14ObTxTableGuardC2Ev:7964 + 0: 362 + 0.10: _ZN9oceanbase6common10ObTabletIDC2Em:3927 + 0: 357 + 0.1: _ZN9oceanbase7storage10ObLSHandleC2Ev:5296 + 2: 331 + 3: 331 + 0.3: _ZN9oceanbase5share6ObLSIDC2Ev:2648 + 0: 331 + 17.1: _ZNK9oceanbase5share6ObLSID8is_validEv:1655 + 0: 331 + 18.1: _ZNK9oceanbase6common10ObTabletID8is_validEv:1324 + 0: 331 + 19.1: _ZNK9oceanbase11transaction8ObTxDesc8is_validEv:2979 + 0: _ZNK9oceanbase11transaction8ObTxDesc8is_in_txEv:2979 + 0: 331 + 20.1: _ZNK9oceanbase7storage14ObDMLBaseParam8is_validEv:1324 + 0: 331 + 33.2: _ZN9oceanbase7storage10ObLSHandle6get_lsEv:1156 + 0: 289 + 36.1: _ZN9oceanbase7storage4ObLS14get_tablet_svrEv:1156 + 0: 289 +_ZN9oceanbase7storage17ObLSTabletService21insert_lob_tablet_rowERNS0_14ObTabletHandleERNS0_15ObDMLRunningCtxERNS0_10ObStoreRowE:157491:234 + 4: 219 + 5: 219 + 6: 219 + 8: 219 _ZN9oceanbase7storage19ObTabletBindingInfoC1Ev:225 + 9: 240 + 10: 0 + 11.1: 0 + 12.1: 240 + 13: 0 + 14.1: 0 + 15.1: 240 _ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE7get_objEv:240 + 15.2: 227 _ZNK9oceanbase7storage8ObTablet12get_ddl_dataERNS0_19ObTabletBindingInfoE:227 + 15.3: 263 + 16.1: 0 + 19: 263 _ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE7get_objEv:265 + 22.1: 257 + 23.1: 1150 + 23.3: 1150 + 23.5: 1150 + 24: 1131 + 26: 2 + 27: 2 + 28: 2 + 29.1: 2 + 30.1: 2 + 30.2: 2 + 31.1: 0 + 36: 282 + 37.10: 272 + 6: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:876 + 0: 219 + 7: _ZN9oceanbase5share11ObTenantEnv3mtlIPNS_7storage12ObLobManagerEEET_v:5475 + 2: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:3942 + 2: 219 + 2.1: 0 + 2.2: 0 + 2.1: _ZN9oceanbase5share12ObTenantBase3getIPNS_7storage12ObLobManagerEEET_v:1533 + 0: _ZN9oceanbase5share12ObTenantBase9inner_getENS1_8IdentityIPNS_7storage12ObLobManagerEEE:1533 + 0: 219 + 22: _ZNK9oceanbase6common10ObTabletID8is_validEv:2313 + 0: 257 + 24: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE2atEl:9048 + 6: 1131 + 25: _ZNK9oceanbase6common9ObObjMeta9is_lob_v2Ev:13572 + 0: 1131 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:11310 + 0: 1131 + 37.10: _ZN9oceanbase7storage19ObTabletBindingInfoD2Ev:19707 + 0: 282 + 0.1: _ZN9oceanbase6common10ObTabletIDD2Ev:1974 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:1974 + 0: 282 + 0.2: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EED2Ev:12657 + 1: 282 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv:7581 + 4.1: 282 + 4.3: 0 + 9: 279 + 11: 0 + 5: _ZN9oceanbase6common10ObTabletIDD2Ev:0 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:0 + 0: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 37.11: _ZN9oceanbase7storage19ObTabletBindingInfoD2Ev:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common10ObTabletIDD2Ev:0 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:0 + 0: 0 +_ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE7get_objEv:157080:16528 + 1: 15708 + 2: 15708 +_ZN9oceanbase8memtable16ObMvccWriteGuard10write_authERNS_7storage10ObStoreCtxE:155094:2054 + 1: 2005 + 2: 2005 + 3: 2005 + 4: 2005 + 5: 0 + 6.1: 0 + 7.1: 2136 _ZN9oceanbase8memtable13ObMemtableCtx10write_authEb:2078 + 8.1: 3 + 11: 2136 + 13: 2194 + 4: _ZNK9oceanbase8memtable15ObMvccAccessCtx8is_writeEv:8020 + 0: 2005 +_ZN9oceanbase6common13ObVSliceAlloc5allocEl:154650:708 + 0: 692 + 5: 692 _ZN9oceanbase6common11upper_alignEll:737 + 6: 688 + 9: 0 + 10: 0 + 15: 0 + 16: 0 + 17: 0 + 23.1: 753 + 23.3: 753 + 26: 688 + 29: 688 + 37: 0 + 38: 0 + 42: 0 + 44: 0 + 51: 0 + 52: 0 + 57: 758 + 57.3: 758 + 11: _ZN9oceanbase6common14ObBlockVSlicerC2El:0 + 0: 0 + 13: _ZN9oceanbase6common14ObBlockVSlicer10alloc_itemElRl:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: _ZN9oceanbase6common14ObBlockVSlicer4ItemC2EPS1_l:0 + 0: 0 + 15: _ZN9oceanbase6common14ObBlockVSlicer6freezeERl:0 + 1: 0 + 2: 0 + 16: _ZN9oceanbase6common14ObBlockVSlicer6retireEl:0 + 0: 0 + 26: _ZN9oceanbase6common8get_itidEv:19264 + 4: 688 + 5: 0 + 6: 0 + 8: 0 + 27: _ZN9oceanbase6common12ObSimpleSync3refEi:12384 + 0: 688 + 28: _ZN9oceanbase6common13ObVSliceAlloc5Arena3blkEv:2752 + 0: 688 + 30: _ZN9oceanbase6common14ObBlockVSlicer10alloc_itemElRl:41269 + 3: 688 + 4: 688 + 5: 688 + 6: 753 + 8.1: 0 + 7: _ZN9oceanbase6common14ObBlockVSlicer4ItemC2EPS1_l:7530 + 0: 753 + 31: _ZN9oceanbase6common13ObVSliceAlloc5Arena3casEPNS0_14ObBlockVSlicerES4_:0 + 0: 0 + 42: _ZN9oceanbase6common13ObVSliceAlloc5Arena3casEPNS0_14ObBlockVSlicerES4_:0 + 0: 0 + 48: _ZN9oceanbase6common12ObSimpleSync3refEi:2259 + 0: 753 + 50: _ZN9oceanbase6common12ObSimpleSync4syncEv:0 + 1.1: 0 + 2: 0 + 51: _ZN9oceanbase6common14ObBlockVSlicer6retireEl:0 + 0: 0 +_ZN9oceanbase6common13ObSEArrayImplINS_11transaction6ObPairINS_5share6ObLSIDElEELl1ENS0_19ModulePageAllocatorELb0EE5reuseEv:154560:5666 + 1: 5520 + 4.1: 5520 + 4.3: 0 + 5: 0 + 8: 5520 + 9: 5520 + 10: 5520 + 5: _ZN9oceanbase11transaction6ObPairINS_5share6ObLSIDElED2Ev:0 + 0: _ZN9oceanbase5share6ObLSIDD2Ev:0 + 0: _ZN9oceanbase5share6ObLSID5resetEv:0 + 0: 0 +_ZN9oceanbase11transaction11ObCtxTxData20insert_into_tx_tableEv:154517:277 + 1: 264 + 2: 264 + 4: 284 + 7: 260 _ZN9oceanbase11transaction11ObCtxTxData23check_tx_data_writable_Ev:266 + 7.1: 253 + 8.1: 4 + 10: 253 _ZN9oceanbase6common11ObTimeGuard5clickEPKc:251 + 12.1: 233 + 12.2: 4 + 12.3: 4 + 12.9: 262 + 12.11: 4 + 12.17: 262 + 12.18: 4 + 12.19: 4 + 13: 4 + 16: 254 + 17.1: 251 + 18.1: 4 + 21: 271 + 22: 271 + 23: 271 + 27.1: 250 + 28.1: 4 + 31: 250 + 32.10: 260 _ZN9oceanbase6common14SpinWLockGuardD2Ev:269 + 32.11: 4 + 32.12: 4 + 32.14: 274 _ZN9oceanbase6common11ObTimeGuardD2Ev:270 + 3: _ZN9oceanbase6common11ObTimeGuardC2EPKcl:13089 + 2: 285 + 3: 285 + 4: 285 + 6: 285 + 7: 285 + 8: 285 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:264 + 2: 264 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:266 + 4: _ZN9oceanbase6common14SpinWLockGuardC2ERKNS0_10SpinRWLockE:10174 + 1: 284 + 3: 298 + 4.1: 4 + 3: _ZN9oceanbase6common10SpinRWLock6wrlockEl:4828 + 0: 284 _ZN9oceanbase6common7ObLatch6wrlockEjlPKj:295 + 5: _ZN9oceanbase6common11ObTimeGuard5clickEPKc:17718 + 3: 260 + 4: 260 + 5: 260 + 6: 260 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:298 + 2: 298 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:298 + 12: _ZN9oceanbase7storage14ObTxTableGuardC2Ev:3728 + 0: 233 + 12.8: _ZN9oceanbase11transaction12ObLSTxCtxMgr18get_tx_table_guardERNS_7storage14ObTxTableGuardE:2804 + 1: 233 _ZN9oceanbase7storage9ObTxTable18get_tx_table_guardERNS0_14ObTxTableGuardE:250 + 12.16: _ZNK9oceanbase7storage14ObTxTableGuard12get_tx_tableEv:1048 + 0: 262 + 15: _ZN9oceanbase6common11ObTimeGuard5clickEPKc:17288 + 3: 254 + 4: 254 + 5: 254 + 6: 254 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:270 + 2: 262 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:263 + 16: _ZN9oceanbase7storage14ObTxCommitDataaSERKS1_:7366 + 0: 254 + 0: _ZN9oceanbase11transaction9ObTransIDaSERKS1_:1778 + 1: 254 + 17: _ZN9oceanbase11transaction11ObCtxTxData15insert_tx_data_EPNS_7storage9ObTxTableERPNS2_8ObTxDataE:12914 + 2: 254 + 4: 254 + 5: 4 + 6.1: 4 + 7.1: 254 + 8.1: 4 + 10.1: 254 _ZN9oceanbase7storage9ObTxTable6insertERPNS0_8ObTxDataE:252 + 11.1: 4 + 13: 251 + 16: 4 + 20: _ZN9oceanbase6common11ObTimeGuard5clickEPKc:18424 + 3: 271 + 4: 271 + 5: 271 + 6: 271 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:267 + 2: 251 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:247 + 26: _ZN9oceanbase7storage14ObTxTableGuardD2Ev:6233 + 0: _ZN9oceanbase7storage14ObTxTableGuard5resetEv:6233 + 2: 271 + 3: 271 + 4: 271 + 26.1: _ZN9oceanbase7storage14ObTxTableGuardD2Ev:100 + 0: _ZN9oceanbase7storage14ObTxTableGuard5resetEv:100 + 2: 4 + 3: 4 + 4: 4 + 27: _ZNK9oceanbase6common11ObTimeGuard8get_diffEv:2037 + 2: 250 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:287 + 2: 271 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:277 +_ZN9oceanbase6common7ObLatch10try_wrlockEjPKj:153471:1000 + 1: 963 + 2: 963 + 3: 963 + 3.2: 0 + 3.3: 963 + 5: 963 + 7: 0 + 8.1: 0 + 10: 963 + 11: 0 + 14.1: 1104 _ZN9oceanbase6common20ObDiagnoseTenantInfo23get_local_diagnose_infoEv:1019 + 14.2: 0 + 14.5: 0 + 17: 1104 + 3.1: _Z9ob_gettidv:51039 + 3: 963 + 4: 0 + 2: _Z13get_tid_cachev:24075 + 7: 963 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 +_ZN9oceanbase3lib9ObjectMgr10free_blockEPNS0_6ABlockE:151869:981 + 1: 956 + 2: 956 + 5: 956 + 7: 956 + 9: 991 _ZN9oceanbase3lib8BlockSet10free_blockEPNS0_6ABlockE:1020 + 2: _ZL12abort_unlessb:5736 + 5: 956 + 6: 0 + 3: _ZNK9oceanbase3lib6ABlock8is_validEv:7648 + 2: 956 + 3.1: _ZL12abort_unlessb:5736 + 5: 956 + 6: 0 + 5: _ZL12abort_unlessb:5736 + 5: 956 + 6: 0 + 6: _ZNK9oceanbase3lib6AChunk8is_validEv:6692 + 2: 956 + 6.1: _ZL12abort_unlessb:5736 + 5: 956 + 6: 0 + 8: _ZN9oceanbase3lib8BlockSet4lockEv:41108 + 2: 956 + 2: _ZN9oceanbase3lib9SetLocker4lockEv:20076 + 2: 956 + 2: _ZN9oceanbase3lib7ObMutex4lockEv:16252 + 0: 956 _ZN9oceanbase6common12ObLatchMutex4lockEjl:981 + 10: _ZN9oceanbase3lib8BlockSet6unlockEv:31168 + 2: 974 + 2: _ZN9oceanbase3lib9SetLocker6unlockEv:8766 + 2: 974 + 2: _ZN9oceanbase3lib7ObMutex6unlockEv:4870 + 0: 974 _ZN9oceanbase6common12ObLatchMutex6unlockEv:989 +_ZN9oceanbase8memtable18ObTransCallbackMgr20revert_callback_listEv:150588:1127 + 1: 1068 + 2: 1068 + 3: 1068 + 4: 1068 + 6: 1068 + 7: 0 + 9: 0 + 10: 0 + 13.2: 1068 + 14: 1068 + 17: 0 + 21: 0 + 22: 0 + 23: 0 + 27.2: 1068 + 3: _ZN9oceanbase6common8get_itidEv:29904 + 4: 1068 + 5: 0 + 6: 0 + 8: 0 +_ZN9oceanbase3sql19string_length_checkERKNS0_6ObExprERKmRKNS_6common10ObAccuracyENS6_9ObObjTypeENS6_15ObCollationTypeERNS0_9ObEvalCtxERKNS6_7ObDatumERSE_Ri:150549:792 + 9: 749 + 10: 749 + 13: 749 + 14: 749 + 15: 749 + 16: 749 + 23: 749 + 24: 0 + 27: 0 + 28: 0 + 30: 0 + 31.1: 0 + 33.2: 0 + 34: 0 + 35: 0 + 35.3: 0 + 37: 0 + 38: 749 + 39.1: 0 + 39.5: 0 + 39.9: 0 + 44: 0 + 45: 0 + 45.1: 0 + 47.3: 0 + 48.1: 0 + 49: 0 + 50: 0 + 51: 0 + 52.1: 0 + 55.1: 0 + 56: 0 + 57: 0 + 58: 0 + 59.1: 0 + 61.1: 0 + 62: 0 + 63: 0 + 64: 0 + 66: 0 + 67.1: 0 + 70.1: 0 + 71: 0 + 72.1: 0 + 81: 0 + 82: 0 + 82.3: 0 + 84: 0 + 86: 0 + 87: 0 + 88.1: 0 + 90.1: 0 + 91: 0 + 92.1: 0 + 95: 0 + 95.3: 0 + 97: 0 + 98: 0 + 99: 0 + 100.1: 0 + 105: 0 + 106.1: 0 + 108: 0 + 109: 0 + 118: 0 + 119: 0 + 120: 0 + 121: 0 + 123: 0 + 124: 0 + 126: 0 + 136: 0 + 137: 0 + 138: 0 + 139: 0 + 141: 0 + 155: 749 + 13: _ZNK9oceanbase6common10ObAccuracy10get_lengthEv:2247 + 0: 749 + 15: _ZN9oceanbase3lib14is_oracle_modeEv:34454 + 2: 749 + 2: _ZN9oceanbase3lib15get_compat_modeEv:32207 + 2: 749 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:18725 + 2: 749 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 17: _ZN9oceanbase6common9ObObjMetaC2Ev:8239 + 2: 749 + 4: 749 + 18: _ZN9oceanbase6common9ObObjMeta15set_type_simpleERKNS0_9ObObjTypeE:5243 + 2: 749 + 19: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:2996 + 0: 749 + 21: _ZN9oceanbase6common7ObDatum9set_datumERKS1_:12733 + 0: 749 + 32: _ZN9oceanbase6common7ObDatum10set_stringEPKcl:0 + 0: 0 + 35: _ZNK9oceanbase6common9ObObjMeta6is_lobEv:0 + 0.1: _ZN9oceanbase6common13ob_is_text_tcENS0_9ObObjTypeE:0 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:0 + 2: 0 + 39.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 39.8: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 45: _ZNK9oceanbase6common9ObObjMeta12is_varbinaryEv:0 + 2: 0 + 2.1: 0 + 45.1: _ZNK9oceanbase6common9ObObjMeta9is_binaryEv:0 + 2: _ZN9oceanbase6common9ObObjMeta9is_binaryENS0_9ObObjTypeENS0_15ObCollationTypeE:0 + 2: 0 + 46: _ZNK9oceanbase6common9ObObjMeta7is_blobEv:0 + 2: 0 + 2.3: _ZN9oceanbase6common13ob_is_text_tcENS0_9ObObjTypeE:0 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:0 + 2: 0 + 47: _ZNK9oceanbase6common9ObObjMeta7is_blobEv:0 + 2: 0 + 56: _ZNK9oceanbase6common10ObAccuracy10get_lengthEv:0 + 0: 0 + 61.2: _ZNK9oceanbase6common9ObObjMeta7is_charEv:0 + 2: 0 + 82: _ZNK9oceanbase6common9ObObjMeta6is_lobEv:0 + 0.1: _ZN9oceanbase6common13ob_is_text_tcENS0_9ObObjTypeE:0 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:0 + 2: 0 + 117: _ZNK9oceanbase6common9ObObjMeta7is_textEv:0 + 2: 0 + 2: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:0 + 0: 0 + 2.3: _ZN9oceanbase6common13ob_is_text_tcENS0_9ObObjTypeE:0 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:0 + 2: 0 + 134.1: _ZNK9oceanbase6common9ObObjMeta22is_fixed_len_char_typeEv:0 + 0: 0 + 0: _ZNK9oceanbase6common9ObObjMeta7is_charEv:0 + 2: 0 + 2.1: 0 +_ZN9oceanbase6common13ObSEArrayImplIPNS0_10ObNewRangeELl1ENS0_19ModulePageAllocatorELb0EE9push_backERKS3_:149730:3317 + 2: 3255 + 5: 3255 + 6: 0 + 12: 0 + 15: 0 + 15.1: 3255 + 16: 3255 + 19: 3255 + 15.1: _ZN9oceanbase6common9ObClassOpIPNS0_10ObNewRangeELb1EE20construct_and_assignERKS3_RS3_:22785 + 2: 3255 +_ZN9oceanbase4palf16LogSlidingWindow20append_to_group_log_ERKNS0_3LSNElllPKclRb:149089:255 + 7: 244 + 8: 244 + 9: 244 + 12.1: 244 + 14: 1 + 15.1: 1 + 17.2: 259 + 18.1: 1 + 21: 259 _ZN9oceanbase4palf14LogEntryHeaderC1Ev:260 + 23: 256 + 24: 256 + 26: 256 + 27: 256 + 31: 256 + 31.1: 248 + 32.1: 1 + 33.1: 248 _ZN9oceanbase4palf14LogGroupBuffer4fillERKNS0_3LSNEPKcl:262 + 33.2: 256 + 34.1: 1 + 35.1: 256 _ZN9oceanbase4palf14LogEntryHeader15generate_headerEPKcll:259 + 35.2: 220 + 36.1: 1 + 37.1: 220 _ZNK9oceanbase4palf14LogEntryHeader9serializeEPclRl:223 + 37.2: 211 + 38.1: 1 + 39.1: 211 _ZN9oceanbase4palf14LogGroupBuffer4fillERKNS0_3LSNEPKcl:219 + 39.2: 245 + 40.1: 1 + 44: 245 + 46.1: 245 + 47.1: 2 + 50.3: 1 + 50.5: 257 _ZN9oceanbase4palf14LogEntryHeaderD1Ev:272 + 51: 289 + 52.12: 266 + 10: _ZN9oceanbase4palf16LogSlidingWindow12LogTaskGuardC2EPS1_:3660 + 0: 244 + 17.1: _ZN9oceanbase4palf16LogSlidingWindow12LogTaskGuard12get_log_taskElRPNS0_7LogTaskE:14880 + 2: 244 + 3: 244 + 5.1: 244 + 7.1: 259 _ZN9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE3getElRPS2_:252 + 8: 259 + 9: 259 + 5.1: _ZN9oceanbase4palf15is_valid_log_idEl:732 + 2: 244 + 23: _ZN9oceanbase4palf7LogTask21inc_update_max_log_tsEl:9486 + 2: _ZN9oceanbase6common10inc_updateIlEElPT_S2_:9486 + 3: 256 + 4.1: 257 + 5: 257 + 24: _ZN9oceanbase4palf7LogTask15update_data_lenEl:1280 + 2: 256 + 26: _ZN9oceanbase4palfplERKNS0_3LSNEm:3584 + 4: 256 + 3: _ZN9oceanbase4palf3LSNaSERKS1_:1024 + 2: 256 + 31: _ZN9oceanbase4palf16LogSlidingWindow24wait_group_buffer_ready_ERKNS0_3LSNEl:5951 + 8.1: 263 _ZN9oceanbase4palf14LogGroupBuffer4waitERKNS0_3LSNEl:260 + 14: 0 + 17: 0 + 18.1: 0 + 44: _ZN9oceanbase4palf7LogTask3refElb:4165 + 3.1: 245 + 5: 245 + 46: _ZNK9oceanbase4palf7LogTask10is_freezedEv:1470 + 2: _ZNK9oceanbase4palf15LogSimpleBitMap8test_mapEl:1470 + 2: 245 + 47: _ZNK9oceanbase4palf7LogTask11get_ref_cntEv:14 + 0: 2 + 52.12: _ZN9oceanbase4palf16LogSlidingWindow12LogTaskGuardD2Ev:11504 + 2.1: 1 + 2: _ZN9oceanbase4palf16LogSlidingWindow12LogTaskGuard15revert_log_taskEv:11496 + 1: 289 + 2: 289 + 2.1: 289 + 3: 289 _ZN9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE6revertEl:296 + 4: 1 + 5: 1 + 6.1: 1 + 2.1: _ZN9oceanbase4palf15is_valid_log_idEl:867 + 2: 289 + 5: _ZNK9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE12get_begin_snEv:7 + 0: 1 + 52.13: _ZN9oceanbase4palf16LogSlidingWindow12LogTaskGuardD2Ev:157 + 2.1: 1 + 2: _ZN9oceanbase4palf16LogSlidingWindow12LogTaskGuard15revert_log_taskEv:141 + 1: 1 + 2: 1 + 2.1: 1 + 3: 1 + 4: 1 + 5: 1 + 6.1: 1 + 2.1: _ZN9oceanbase4palf15is_valid_log_idEl:3 + 2: 1 + 5: _ZNK9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE12get_begin_snEv:7 + 0: 1 +_ZNK9oceanbase11transaction17ObTxCommitInfoLog10serialize_EPclRl:148692:284 + 0: 277 + 0.1: 268 + 0.3: 0 + 0.7: 0 + 0.8: 292 _ZNK9oceanbase11transaction17ObTxSerCompatByte15is_object_validEl:299 + 0.9: 304 + 0.11: 0 + 0.17: 0 + 0.18: 269 _ZNK9oceanbase11transaction17ObTxSerCompatByte15is_object_validEl:275 + 0.19: 274 + 0.21: 0 + 0.27: 0 + 0.28: 274 _ZNK9oceanbase11transaction17ObTxSerCompatByte15is_object_validEl:290 + 0.29: 0 + 0.31: 0 + 0.37: 262 + 0.38: 287 _ZNK9oceanbase11transaction17ObTxSerCompatByte15is_object_validEl:276 + 0.39: 4 + 0.41: 0 + 0.47: 276 + 0.48: 296 _ZNK9oceanbase11transaction17ObTxSerCompatByte15is_object_validEl:281 + 0.49: 0 + 0.51: 0 + 0.57: 290 + 0.58: 296 _ZNK9oceanbase11transaction17ObTxSerCompatByte15is_object_validEl:296 + 0.59: 0 + 0.61: 0 + 0.67: 302 + 0.68: 302 _ZNK9oceanbase11transaction17ObTxSerCompatByte15is_object_validEl:302 + 0.69: 0 + 0.71: 0 + 0.77: 267 + 0.78: 286 _ZNK9oceanbase11transaction17ObTxSerCompatByte15is_object_validEl:281 + 0.79: 285 _ZN9oceanbase6common13serialization6encodeEPclRlm:285 + 0.81: 0 + 0.87: 0 + 0.88: 284 _ZNK9oceanbase11transaction17ObTxSerCompatByte15is_object_validEl:283 + 0.89: 0 + 0.91: 0 + 0.97: 276 + 0.98: 276 _ZNK9oceanbase11transaction17ObTxSerCompatByte15is_object_validEl:285 + 0.99: 0 + 0.101: 0 + 0.107: 272 + 0.108: 272 _ZNK9oceanbase11transaction17ObTxSerCompatByte15is_object_validEl:291 + 0.109: 0 + 0.111: 0 + 0.117: 270 + 0.118: 270 _ZNK9oceanbase11transaction17ObTxSerCompatByte15is_object_validEl:286 + 0.119: 0 + 0.121: 0 + 0.127: 269 + 0.128: 275 _ZNK9oceanbase11transaction17ObTxSerCompatByte15is_object_validEl:282 + 0.129: 0 + 0.131: 0 + 0.137: 270 + 0.138: 0 + 0.145: 0 + 0.146: 0 + 0.153: 0 + 0.154: 0 + 0.161: 0 + 0.162: 0 + 0.169: 0 + 0.170: 0 + 0.177: 0 + 0.178: 0 + 0.185: 0 + 0.186: 0 + 0.193: 0 + 0.194: 0 + 0.201: 0 + 0.202: 0 + 0.209: 0 + 0.210: 0 + 0.217: 0 + 0.218: 0 + 0.225: 0 + 0.226: 0 + 0.233: 0 + 0.234: 0 + 0.241: 0 + 0.1: _ZNK9oceanbase11transaction17ObTxSerCompatByte9serializeEPclRl:39135 + 2: 277 + 4.1: 546 + 4.3: 546 + 5: 546 + 6.1: 0 + 10: 268 + 5: _ZN9oceanbase6common13serialization9encode_i8EPclRla:18857 + 4: 546 + 5: 546 + 0.9: _ZN9oceanbase6common13serialization6encodeINS0_6ObAddrEEEiPclRlRKT_:2144 + 2: _ZN9oceanbase6common13serialization11EnumEncoderILb0ENS0_6ObAddrEE6encodeEPclRlRKS3_:2144 + 2: 304 _ZNK9oceanbase6common6ObAddr9serializeEPclRl:300 + 0.12: _ZN9oceanbase6common7ObLogKVIRA11_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 0.19: _ZN9oceanbase6common13serialization6encodeINS0_9ObSEArrayINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EEEEEiPclRlRKT_:1899 + 2: _ZN9oceanbase6common13serialization11EnumEncoderILb0ENS0_9ObSEArrayINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EEEE6encodeEPclRlRKS7_:1899 + 2: 269 _ZNK9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EE9serializeEPclRl:281 + 0.22: _ZN9oceanbase6common7ObLogKVIRA14_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 0.29: _ZN9oceanbase6common13serialization6encodeINS_5share6ObLSIDEEEiPclRlRKT_:0 + 2: _ZN9oceanbase6common13serialization11EnumEncoderILb0ENS_5share6ObLSIDEE6encodeEPclRlRKS4_:0 + 2: 0 + 0.32: _ZN9oceanbase6common7ObLogKVIRA10_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 0.39: _ZN9oceanbase6common13serialization6encodeEPclRlb:132 + 2: _ZN9oceanbase6common13serialization11encode_boolEPclRlb:132 + 2: 4 + 4: 4 + 5: 4 + 0.42: _ZN9oceanbase6common7ObLogKVIRA11_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 0.49: _ZN9oceanbase6common13serialization6encodeEPclRlb:0 + 2: _ZN9oceanbase6common13serialization11encode_boolEPclRlb:0 + 2: 0 + 4: 0 + 5: 0 + 0.52: _ZN9oceanbase6common7ObLogKVIRA11_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 0.59: _ZN9oceanbase6common13serialization6encodeEPclRlb:0 + 2: _ZN9oceanbase6common13serialization11encode_boolEPclRlb:0 + 2: 0 + 4: 0 + 5: 0 + 0.62: _ZN9oceanbase6common7ObLogKVIRA9_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 0.69: _ZN9oceanbase6common13serialization6encodeINS0_9ObSEArrayINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EEEEEiPclRlRKT_:0 + 2: _ZN9oceanbase6common13serialization11EnumEncoderILb0ENS0_9ObSEArrayINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EEEE6encodeEPclRlRKS7_:0 + 2: 0 + 0.72: _ZN9oceanbase6common7ObLogKVIRA26_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 0.82: _ZN9oceanbase6common7ObLogKVIRA17_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 0.89: _ZN9oceanbase6common13serialization6encodeINS0_8ObStringEEEiPclRlRKT_:0 + 2: _ZN9oceanbase6common13serialization11EnumEncoderILb0ENS0_8ObStringEE6encodeEPclRlRKS3_:0 + 2: 0 + 0.91: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.92: _ZN9oceanbase6common7ObLogKVIRA18_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 0.99: _ZN9oceanbase6common13serialization6encodeINS0_8ObStringEEEiPclRlRKT_:0 + 2: _ZN9oceanbase6common13serialization11EnumEncoderILb0ENS0_8ObStringEE6encodeEPclRlRKS3_:0 + 2: 0 + 0.102: _ZN9oceanbase6common7ObLogKVIRA16_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 0.109: _ZN9oceanbase6common13serialization6encodeINS_4palf3LSNEEEiPclRlRKT_:0 + 2: _ZN9oceanbase6common13serialization11EnumEncoderILb0ENS_4palf3LSNEE6encodeEPclRlRKS4_:0 + 2: 0 + 0.112: _ZN9oceanbase6common7ObLogKVIRA17_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 0.119: _ZN9oceanbase6common13serialization6encodeINS0_9ObSEArrayINS_4palf3LSNELl10ENS0_19ModulePageAllocatorELb0EEEEEiPclRlRKT_:0 + 2: _ZN9oceanbase6common13serialization11EnumEncoderILb0ENS0_9ObSEArrayINS_4palf3LSNELl10ENS0_19ModulePageAllocatorELb0EEEE6encodeEPclRlRKS7_:0 + 2: 0 + 0.122: _ZN9oceanbase6common7ObLogKVIRA11_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 0.129: _ZN9oceanbase6common13serialization6encodeINS_11transaction11ObXATransIDEEEiPclRlRKT_:0 + 2: _ZN9oceanbase6common13serialization11EnumEncoderILb0ENS_11transaction11ObXATransIDEE6encodeEPclRlRKS4_:0 + 2: 0 + 0.132: _ZN9oceanbase6common7ObLogKVIRA5_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 0.140: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.142: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.144: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.148: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.150: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.152: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.156: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.158: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.160: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.164: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.166: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.168: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.172: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.174: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.176: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.180: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.182: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.184: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.188: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.190: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.192: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.196: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.198: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.200: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.204: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.206: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.208: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.212: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.214: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.216: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.220: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.222: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.224: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.228: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.230: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.232: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.236: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.238: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.240: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase6common18ObInterruptChecker22clear_interrupt_statusEv:148016:5308 + 1: 5104 + 2: 5104 + 3.1: 0 + 5: 5104 + 6: 5104 +_ZN9oceanbase7storage17ObLSTabletService24check_old_row_legitimacyERNS0_14ObTabletHandleERNS0_15ObDMLRunningCtxERKNS_6common8ObNewRowE:147740:599 + 4: 573 + 5: 573 + 7: 573 + 9: 573 + 11: 573 _ZNK9oceanbase7storage15ObRelativeTable21get_rowkey_column_numEv:578 + 12.1: 602 + 12.2: 602 + 13: 0 + 14.1: 0 + 15.2: 603 + 16.1: 0 + 17.1: 603 + 20: 0 + 23: 0 + 23.1: 0 + 24: 0 + 28: 0 + 29.1: 0 + 29.2: 0 + 30.1: 0 + 31.1: 0 + 31.2: 0 + 32.1: 0 + 33.1: 0 + 33.2: 0 + 34.1: 0 + 35.1: 0 + 35.2: 0 + 36.1: 0 + 37.1: 0 + 37.2: 0 + 39: 0 + 40.1: 0 + 42.1: 0 + 44.1: 0 + 45: 0 + 46.1: 0 + 47.3: 0 + 48: 0 + 49.1: 0 + 51.1: 0 + 51.3: 0 + 51.4: 0 + 51.6: 0 + 52: 0 + 53: 0 + 54: 0 + 55.1: 0 + 55.3: 0 + 57.2: 0 + 58: 0 + 59: 0 + 59.1: 0 + 59.2: 0 + 60.1: 0 + 61.1: 0 + 62: 0 + 63.1: 0 + 66.3: 0 + 69.1: 0 + 69.2: 0 + 70.1: 0 + 72: 0 + 75: 0 + 75.1: 0 + 75.2: 0 + 75.3: 0 + 76: 0 + 77.1: 0 + 84: 0 + 85: 0 + 86: 0 + 87.1: 0 + 90.2: 0 + 90.4: 0 + 90.7: 0 + 90.8: 0 + 90.11: 0 + 90.16: 0 + 90.19: 0 + 90.20: 0 + 90.23: 0 + 91.1: 0 + 98.1: 0 + 99: 0 + 102: 0 + 102.1: 0 + 102.3: 0 + 102.7: 0 + 103: 603 + 104.29: 603 + 8: _ZN9oceanbase6common13ObStoreRowkeyC2Ev:9741 + 0: 573 + 11.1: _ZN9oceanbase6common13ObStoreRowkey6assignEPNS0_5ObObjEl:25886 + 3: 602 + 3.2: 602 + 5.1: 0 + 8: 602 + 7: _ZN9oceanbase6common8ObRowkey6assignEPNS0_5ObObjEl:8428 + 2: 602 + 3: 602 + 12: _ZNK9oceanbase6common13ObStoreRowkey11get_obj_cntEv:0 + 0: _ZNK9oceanbase6common8ObRowkey11get_obj_cntEv:0 + 0: 0 + 15.1: _ZN9oceanbase7storage17ObLSTabletService29need_check_old_row_legitimacyERNS0_15ObDMLRunningCtxERbS4_:37704 + 6: 602 + 7: 602 + 10: 628 _ZNK9oceanbase7storage15ObRelativeTable14has_udf_columnERb:603 + 11.1: 0 + 12.1: 628 + 28.1: 628 + 28.2: 0 + 31: 0 + 32.1: 628 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:634 + 33: 0 + 34: 0 + 34.1: 0 + 36: 0 + 39: 0 + 32.2: _ZNK9oceanbase6common14ObServerConfig22enable_defensive_checkEv:5490 + 3: 610 + 3.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:0 + 2: 0 + 21.1: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:0 + 4: 0 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 26: _ZN9oceanbase12blocksstable13ObDatumRowkeyC2Ev:0 + 0.4: _ZN9oceanbase12blocksstable13ObDatumRowkey5resetEv:0 + 0: 0 + 27: _ZN9oceanbase12blocksstable19ObDatumRowkeyHelperC2Ev:0 + 1: 0 + 1.3: 0 + 1.1: _ZN9oceanbase7storage13ObObjBufArrayC2Ev:0 + 1: 0 + 2: 0 + 3: 0 + 1.2: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:0 + 4: 0 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 2.3: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:0 + 0: 0 + 47.1: _ZNK9oceanbase6common8ObNewRow9get_countEv:0 + 0: 0 + 0.2: 0 + 47.2: _ZNK9oceanbase6common8ObNewRow9get_countEv:0 + 0: 0 + 51.2: _ZNK9oceanbase6common8ObNewRow9get_countEv:0 + 0: 0 + 52: _ZN9oceanbase6common8ObNewRow8get_cellEl:0 + 2: 0 + 3: 0 + 4: 0 + 4.1: 0 + 5.1: 0 + 6: 0 + 8: 0 + 11: 0 + 12.1: 0 + 13: 0 + 15: 0 + 53: _ZNK9oceanbase6common8ObNewRow8get_cellEl:0 + 2: 0 + 3: 0 + 4: 0 + 4.1: 0 + 5.1: 0 + 7: 0 + 10: 0 + 11.1: 0 + 13: 0 + 55: _ZNK9oceanbase6common5ObObj8get_typeEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:0 + 0: 0 + 55.2: _ZNK9oceanbase6common5ObObj14is_lob_locatorEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta14is_lob_locatorEv:0 + 0: 0 + 57.1: _ZNK9oceanbase6common5ObObj12is_nop_valueEv:0 + 2.1: 0 + 59: _ZNK9oceanbase6common12ObIArrayWrapImE2atEl:0 + 6: 0 + 66.2: _ZNK9oceanbase6common5ObObj12is_nop_valueEv:0 + 2: 0 + 2.1: 0 + 90.1: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 102.4: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:0 + 0: 0 + 102.8: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:0 + 0: 0 +_ZN9oceanbase3sql19ObDASLocationRouterC2ERNS_6common12ObIAllocatorE:147668:5219 + 2: 5092 + 3: 5092 + 4: 5092 + 1: _ZN9oceanbase6common6ObListINS_3sql14VirtualSvrPairENS0_12ObIAllocatorEEC2ERS4_:96748 + 0: 5092 + 2: 5092 + 3: 5092 +_ZN9oceanbase3sql19ObDASLocationRouterC1ERNS_6common12ObIAllocatorE:147668:5219 + 2: 5092 + 3: 5092 + 4: 5092 + 1: _ZN9oceanbase6common6ObListINS_3sql14VirtualSvrPairENS0_12ObIAllocatorEEC2ERS4_:96748 + 0: 5092 + 2: 5092 + 3: 5092 +_ZN9oceanbase7storage15ObDMLRunningCtx27check_tenant_schema_versionERNS_5share6schema27ObMultiVersionSchemaServiceEmml:147425:1120 + 5: 1080 + 6: 1080 + 7: 1080 + 8: 1080 + 11.1: 1078 + 11.2: 1029 + 12: 1078 + 12.1: 1083 _ZNK9oceanbase5share6schema27ObMultiVersionSchemaService35get_tenant_refreshed_schema_versionEmRlb:1088 + 13.1: 0 + 14.1: 1029 + 16.1: 1159 _ZN9oceanbase5share6schema15ObSchemaService17is_formal_versionEl:1039 + 17: 0 + 18.1: 0 + 20.1: 1159 + 22: 1159 + 24: 0 + 25.1: 0 + 28: 1160 + 8: _ZN9oceanbase6common14is_inner_tableEm:11880 + 2: 1080 +_ZN9oceanbase8memtable10ObMemtable18set_max_end_log_tsEl:147083:927 + 1: 879 + 2: 879 + 3: 879 + 5: 879 + 6: 0 + 7.1: 0 + 8.1: 879 + 9: 0 + 10.1: 0 + 11.1: 879 + 11.2: 879 + 11.3: 879 + 11.4: 879 + 12: 0 + 13.1: 0 + 18.1: 1231 + 19: 343 + 20: 343 + 27: 859 + 28.5: 859 + 3.1: _ZN9oceanbase5share6ObLSIDC2ERKS1_:7032 + 0: 879 + 11.1: _ZNK9oceanbase8memtable10ObMemtable16get_start_log_tsEv:3516 + 2: 879 + 11.3: _ZNK9oceanbase8memtable10ObMemtable14get_end_log_tsEv:3516 + 2: 879 + 17: _ZNK9oceanbase8memtable10ObMemtable18get_max_end_log_tsEv:6153 + 0: 879 +_ZN9oceanbase8memtable16ObITransCallback16log_submitted_cbEv:146410:1855 + 1: 1701 + 3: 1701 + 4: 1701 + 5: 1696 + 8: 1696 + 4: _ZN9oceanbase8memtable17ObMvccRowCallback13log_submittedEv:35133 + 2: 958 + 4: 958 + 5: 926 + 6.1: 1 + 9: 1 + 10.1: 1 + 13: 926 + 5: _ZN9oceanbase8memtable17ObMvccRowCallback20dec_unsubmitted_cnt_Ev:10503 + 5: 958 _ZN9oceanbase8memtable10ObMemtable19dec_unsubmitted_cntEv:1002 + 6: 954 _ZN9oceanbase8memtable13ObMemtableCtx19dec_unsubmitted_cntEv:985 +_ZZN9oceanbase8memtable13ObMemtableCtx10write_authEbENK5$_285clEPKc.1dd22efca7fa83ae50e8099a04ad3959:146252:2150 + 0: 2063 + 0.1: 0 + 0.2: 2046 + 0.3: 2063 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:2122 + 0.7: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:35071 + 2: 2063 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.5: _ZN9oceanbase6common20ObLogPrintPointerCntIPNS_8memtable13ObMemtableCtxEEC2ES4_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVINS0_20ObLogPrintPointerCntIPNS_8memtable13ObMemtableCtxEEELb1EEC2EPKcOKS6_:0 + 0: 0 +_ZN9oceanbase6common10ObObjStoreIPNS_3sql14ObDASBaseCtDefERNS0_12ObIAllocatorELb0EED2Ev:145494:5553 + 0: 5158 + 0.1: 5372 + 0.3: 0 + 0: _ZN9oceanbase6common10ObObjStoreIPNS_3sql14ObDASBaseCtDefERNS0_12ObIAllocatorELb0EE7destroyEv:98002 + 2.1: 0 + 4: 0 + 5: 0 + 2: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql14ObDASBaseCtDefEEEE12remove_firstEv:98002 + 2: 5158 + 65347: 5158 + 2: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql14ObDASBaseCtDefEEEE6removeEPS6_:46422 + 3: 5158 + 7: 0 + 6: _ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql14ObDASBaseCtDefEEEE6unlinkEv:0 + 2: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 2.5: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql14ObDASBaseCtDefEEEE12remove_firstEv:0 + 2: 0 + 2: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql14ObDASBaseCtDefEEEE6removeEPS6_:0 + 3: 0 + 7: 0 + 6: _ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql14ObDASBaseCtDefEEEE6unlinkEv:0 + 2: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 +_ZN9oceanbase11transaction10ObTxCtxMgr13revert_tx_ctxEPNS0_14ObPartTransCtxE:145445:272 + 1: 247 + 2: 247 + 3: 247 + 5: 247 + 6.1: 0 + 7: 0 + 8.1: 247 + 9.1: 0 + 10: 0 + 16: 247 _ZN9oceanbase11transaction10ObTxCtxMgr17get_ls_tx_ctx_mgrERKNS_5share6ObLSIDERPNS0_12ObLSTxCtxMgrE:283 + 16.1: 232 + 17.1: 0 + 18: 0 + 20: 232 + 20.1: 232 + 21.1: 0 + 25: 232 + 29: 252 + 15: _ZNK9oceanbase11transaction14ObPartTransCtx9get_ls_idEv:4693 + 0: _ZN9oceanbase5share6ObLSIDC2ERKS1_:4693 + 0: 247 + 20: _ZN9oceanbase11transaction12ObLSTxCtxMgr13revert_tx_ctxEPNS0_14ObPartTransCtxE:93496 + 2: 232 + 4.1: 0 + 2: _ZN9oceanbase6common8TCRWLock10RLockGuardC2ERS1_:41064 + 0: 232 + 0: _ZN9oceanbase6common8TCRWLock6rdlockEl:40136 + 3.1: 0 + 4: 0 + 5: 0 + 3.2: _ZN9oceanbase6common8TCRWLock10try_rdlockEv:40136 + 3: 232 + 5: 232 + 8.1: 0 + 4: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:1624 + 0: 232 + 4.1: _ZN9oceanbase6common5TCRef7inc_refEPi:29928 + 2: 232 + 4.1: 232 + 4.2: 0 + 6: 232 + 6.1: 232 + 10: 232 + 2: _ZN9oceanbase6common8get_itidEv:6496 + 4: 232 + 5: 0 + 6: 0 + 8: 0 + 11: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 8: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:0 + 0: 0 + 9: _ZN9oceanbase6common9LWaitCond6signalEv:0 + 2: 0 + 2.1: 0 + 3: 0 + 3: _ZN9oceanbase11transaction12ObLSTxCtxMgr26revert_tx_ctx_without_lockEPNS0_10ObTransCtxE:12528 + 5: 232 + 6.1: 0 + 8.1: 232 + 9.1: 0 + 12: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE6revertEPS3_:6728 + 3: 232 + 3: _ZN9oceanbase11transaction15ObTransHashLinkINS0_10ObTransCtxEE7dec_refEi:3480 + 2: 232 + 3: 232 + 4.1: 0 + 4: _ZN9oceanbase11transaction13TransCtxAlloc10free_valueEPNS0_10ObTransCtxE:0 + 3: 0 + 4: _ZN9oceanbase6common8TCRWLock10RLockGuardD2Ev:36424 + 0: 232 + 0.2: 0 + 0: _ZN9oceanbase6common8TCRWLock8rdunlockEv:35496 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:928 + 0: 232 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPi:30392 + 2: 232 + 4.1: 232 + 4.2: 0 + 6: 232 + 6.1: 232 + 10: 232 + 2: _ZN9oceanbase6common8get_itidEv:6496 + 4: 232 + 5: 0 + 6: 0 + 8: 0 + 11: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:2552 + 2: 232 + 2.1: 0 + 3: 0 + 25: _ZN9oceanbase11transaction10ObTxCtxMgr20revert_ls_tx_ctx_mgrEPNS0_12ObLSTxCtxMgrE:14384 + 2: 232 + 4: 232 + 5: 0 + 6.1: 0 + 8: 232 + 8: _ZN9oceanbase6common13ObLinkHashMapINS_5share6ObLSIDENS_11transaction12ObLSTxCtxMgrENS4_17ObLSTxCtxMgrAllocENS0_9RefHandleELl8EE6revertEPS5_:9744 + 3: 232 + 3: _ZN9oceanbase6common13ObLinkHashMapINS_5share6ObLSIDENS_11transaction12ObLSTxCtxMgrENS4_17ObLSTxCtxMgrAllocENS0_9RefHandleELl8EE6revertEPNS0_12LinkHashNodeIS3_EE:7888 + 6: 232 + 6.1: 232 + 6.2: 232 + 7.1: 0 + 10: 232 + 11: 232 _ZN9oceanbase6common13ObLinkHashMapINS_5share6ObLSIDENS_11transaction12ObLSTxCtxMgrENS4_17ObLSTxCtxMgrAllocENS0_9RefHandleELl8EE8dec_urefEPNS0_12LinkHashNodeIS3_EE:241 +_ZN9oceanbase3rpc20ObSqlRequestOperator12get_operatorEPKNS0_9ObRequestE:144663:5128 + 1: 4921 + 3: 4993 + 13: 5430 + 3: _ZNK9oceanbase3rpc9ObRequest16get_nio_protocolEv:29526 + 0: 4921 +_ZN9oceanbase8observer8ObMPBase14before_processEv:144466:5749 + 1: 5565 + 3: 5565 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:5565 + 4: 5551 +_ZN9oceanbase3sql16ObHashDistinctOpC2ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE:144358:303 + 1: 291 _ZN9oceanbase3sql10ObOperatorC2ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE:293 + 2: 273 + 6: 273 + 7: 273 + 9: 242 + 10: 242 _ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEEC2Ev:242 + 12: 246 + 13: 246 + 14: 246 + 16: 291 + 17: 246 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:246 + 17.2: 225 + 18: 225 + 18.4: 0 + 18.7: 0 + 34: 273 + 8: _ZN9oceanbase3sql20ObSqlWorkAreaProfileC2ENS0_17ObSqlWorkAreaTypeE:51453 + 2: 273 + 3: 273 + 4: 273 + 5: 273 + 7: 273 + 9: 273 + 10: 273 _ZN9oceanbase6common8ObRandomC1Ev:287 + 11: 252 _ZN9oceanbase6common8ObRandom3getEv:268 + 11.1: 247 + 12: 247 _ZN9oceanbase6common8ObRandomD1Ev:249 + 12.2: 0 + 1: _ZN9oceanbase6common11ObDLinkBaseINS_3sql20ObSqlWorkAreaProfileEEC2Ev:2730 + 1: 273 + 9: _ZN9oceanbase3sql20ObSqlMemMgrProcessorC2ERNS0_20ObSqlWorkAreaProfileERNS0_13ObMonitorNodeE:22518 + 1: 242 + 2: 246 + 4: 242 + 5: 242 + 7: 242 + 15: _ZN9oceanbase3sql20ObAdaptiveByPassCtrlC2Ev:21894 + 0: 246 + 1: 246 + 2: 246 + 3: 246 + 17.1: _ZNK9oceanbase6common14ObServerConfig28is_sql_operator_dump_enabledEv:1350 + 0: 225 +_ZN9oceanbase3sql16ObHashDistinctOpC1ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE:144358:303 + 1: 291 _ZN9oceanbase3sql10ObOperatorC2ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE:293 + 2: 273 + 6: 273 + 7: 273 + 9: 242 + 10: 242 _ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEEC2Ev:242 + 12: 246 + 13: 246 + 14: 246 + 16: 291 + 17: 246 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:246 + 17.2: 225 + 18: 225 + 18.4: 0 + 18.7: 0 + 34: 273 + 8: _ZN9oceanbase3sql20ObSqlWorkAreaProfileC2ENS0_17ObSqlWorkAreaTypeE:51453 + 2: 273 + 3: 273 + 4: 273 + 5: 273 + 7: 273 + 9: 273 + 10: 273 _ZN9oceanbase6common8ObRandomC1Ev:287 + 11: 252 _ZN9oceanbase6common8ObRandom3getEv:268 + 11.1: 247 + 12: 247 _ZN9oceanbase6common8ObRandomD1Ev:249 + 12.2: 0 + 1: _ZN9oceanbase6common11ObDLinkBaseINS_3sql20ObSqlWorkAreaProfileEEC2Ev:2730 + 1: 273 + 9: _ZN9oceanbase3sql20ObSqlMemMgrProcessorC2ERNS0_20ObSqlWorkAreaProfileERNS0_13ObMonitorNodeE:22518 + 1: 242 + 2: 246 + 4: 242 + 5: 242 + 7: 242 + 15: _ZN9oceanbase3sql20ObAdaptiveByPassCtrlC2Ev:21894 + 0: 246 + 1: 246 + 2: 246 + 3: 246 + 17.1: _ZNK9oceanbase6common14ObServerConfig28is_sql_operator_dump_enabledEv:1350 + 0: 225 +_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcher19prepare_read_handleERNS1_22ObIndexTreeLevelHandleERNS0_19ObSSTableReadHandleE:144197:952 + 3: 927 + 4: 927 + 5: 927 + 6: 0 + 7.1: 0 + 9: 927 + 12: 0 + 13: 0 + 14: 0 + 22: 940 + 23: 940 + 24: 940 + 25: 940 + 31: 0 + 32: 0 + 33: 0 + 34: 0 + 41: 0 + 42.1: 0 + 45: 940 + 11: _ZN9oceanbase7storage19ObSSTableReadHandle5reuseEv:0 + 2: 0 + 4: 0 + 6: 0 + 8: 0 + 9: _ZN9oceanbase12blocksstable16ObRowValueHandle5resetEv:0 + 0: 0 + 12: _ZNK9oceanbase6common12ObIArrayWrapINS_12blocksstable13ObDatumRowkeyEE2atEl:0 + 6: 0 + 21: _ZN9oceanbase7storage19ObSSTableReadHandle5reuseEv:42504 + 2: 924 + 4: 924 + 6: 924 + 8: 924 + 9: _ZN9oceanbase12blocksstable16ObRowValueHandle5resetEv:12012 + 0: 924 _ZN9oceanbase6common15ObKVCacheHandle5resetEv:984 + 30: _ZN9oceanbase7storage19ObSSTableReadHandle5reuseEv:0 + 2: 0 + 4: 0 + 6: 0 + 8: 0 + 9: _ZN9oceanbase12blocksstable16ObRowValueHandle5resetEv:0 + 0: 0 + 31: _ZNK9oceanbase6common12ObIArrayWrapINS_12blocksstable12ObDatumRangeEE2atEl:0 + 6: 0 +_ZN9oceanbase6common10ObObjStoreIPNS_3sql16ObIDASTaskResultERNS0_12ObIAllocatorELb0EED2Ev:144074:5536 + 0: 5113 + 0.1: 5108 + 0.3: 11 + 0: _ZN9oceanbase6common10ObObjStoreIPNS_3sql16ObIDASTaskResultERNS0_12ObIAllocatorELb0EE7destroyEv:97994 + 2.1: 11 + 4: 11 + 5: 11 + 2: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql16ObIDASTaskResultEEEE12remove_firstEv:61356 + 2: 5113 + 65347: 5113 + 2: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql16ObIDASTaskResultEEEE6removeEPS6_:10226 + 3: 5113 + 2.5: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql16ObIDASTaskResultEEEE12remove_firstEv:99 + 2: 11 + 2: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql16ObIDASTaskResultEEEE6removeEPS6_:22 + 3: 11 +_ZN9oceanbase8memtable13ObLockWaitMgr6wakeupERKNS_6common10ObTabletIDERKNS0_13ObMemtableKeyE:144015:780 + 1: 779 + 2.1: 779 _ZZN9oceanbase8memtable13ObLockWaitMgr6wakeupERKNS_6common10ObTabletIDERKNS0_13ObMemtableKeyEENK4$_42clEPKc.1dd22efca7fa83ae50e8099a04ad3959:783 + 3.1: 801 _ZN9oceanbase8memtable13ObLockWaitMgr6wakeupEm:816 + 3: _ZN9oceanbase8memtableL11hash_rowkeyERKNS_6common10ObTabletIDERKNS0_13ObMemtableKeyE:102360 + 2: 756 _ZNK9oceanbase6common10ObTabletID4hashEv:763 + 5: 801 + 3: _ZNK9oceanbase8memtable13ObMemtableKey4hashEv:25926 + 0: 707 + 0.1: _ZNK9oceanbase8memtable13ObMemtableKey9calc_hashEv:18856 + 2: 707 + 3: 707 + 4: 801 _ZNK9oceanbase6common13ObStoreRowkey10murmurhashEm:771 + 4: _ZN9oceanbase6common10murmurhashEPKvim:57672 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:57672 + 5: 801 + 13: 801 + 14: 801 + 15: 801 + 17: 801 + 18: 801 + 41: 801 + 42: 801 + 43: 801 +_ZN9oceanbase12blocksstable18ObMicroBlockReader5resetEv:143840:1698 + 1: 1644 + 4: 1633 + 8: 1633 _ZN9oceanbase12blocksstable11ObRowReader5resetEv:1642 + 9: 1612 _ZN9oceanbase6common16ObArenaAllocator5reuseEv:1630 + 2: _ZN9oceanbase12blocksstable23ObIMicroBlockFlatReader5resetEv:41079 + 3: 1644 + 6: 1644 _ZN9oceanbase12blocksstable11ObRowReader5resetEv:1662 + 3: _ZN9oceanbase12blocksstable19ObIMicroBlockReader5resetEv:47357 + 0: _ZN9oceanbase12blocksstable23ObIMicroBlockReaderInfo5resetEv:47357 + 2: 1633 + 3: 1633 + 4: 1633 +_ZN9oceanbase6common10ObObjStoreIPNS_3sql14ObDASExtraDataERNS0_12ObIAllocatorELb0EED2Ev:143606:5498 + 0: 5087 + 0.1: 5321 + 0.3: 0 + 0: _ZN9oceanbase6common10ObObjStoreIPNS_3sql14ObDASExtraDataERNS0_12ObIAllocatorELb0EE7destroyEv:96653 + 2.1: 0 + 4: 0 + 5: 0 + 2: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql14ObDASExtraDataEEEE12remove_firstEv:61044 + 2: 5087 + 65347: 5087 + 2: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql14ObDASExtraDataEEEE6removeEPS6_:10174 + 3: 5087 + 2.5: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql14ObDASExtraDataEEEE12remove_firstEv:0 + 2: 0 + 2: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql14ObDASExtraDataEEEE6removeEPS6_:0 + 3: 0 +_ZNK9oceanbase5share6schema18ObTableSchemaParam14has_udf_columnERb:143311:623 + 1: 604 + 2: 604 + 3: 604 + 4: 604 + 5.1: 595 + 5.2: 2378 + 6: 2378 + 7: 0 + 8.1: 0 + 10: 2378 + 13: 595 + 6: _ZNK9oceanbase6common12ObIArrayWrapIPNS_5share6schema13ObColumnParamEE2atEl:11890 + 6: 2378 + 10: _ZNK9oceanbase5share6schema13ObColumnParam19is_gen_col_udf_exprEv:9512 + 0: 2378 +_ZNK9oceanbase11transaction14ObTxDataBackup10serialize_EPclRl:143241:270 + 0: 262 + 0.1: 264 + 0.3: 0 + 0.9: 264 + 0.10: 0 + 0.17: 0 + 0.1: _ZN9oceanbase6common13serialization6encodeEPclRll:129049 + 2: _ZN9oceanbase6common13serialization11encode_vi64EPclRll:129049 + 3: 262 + 3.1: 262 + 4: 262 + 6.1: 1819 + 7: 1819 + 8: 1819 + 11: 1819 + 4: _ZN9oceanbase6common13serialization19encoded_length_vi64El:27510 + 4: 262 + 6.1: 262 + 8.1: 262 + 10.1: 262 + 12.1: 262 + 14.1: 262 + 16.1: 262 + 18.1: 262 + 0.4: _ZN9oceanbase6common7ObLogKVIRA14_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 0.12: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.14: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.16: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 +_ZNK9oceanbase5share6schema21ObSimpleTableSchemaV213get_object_idEv:142361:5009 + 1: 4909 + 2: 4909 + 2: _ZNK9oceanbase5share6schema21ObSimpleTableSchemaV212get_table_idEv:34363 + 0: 4909 +_ZNK9oceanbase3lib7ObLabelcvPKcEv:142020:16018 + 1: 15780 + 2: 15780 +_ZN9oceanbase5share19ObLSLocationService10get_leaderElmRKNS0_6ObLSIDEbRNS_6common6ObAddrE:141955:288 + 6: 270 + 7: 270 + 8: 270 + 9: 270 + 11: 259 + 12: 0 + 13.1: 0 + 14.2: 0 + 15: 0 + 16.1: 0 + 18.1: 246 _ZN9oceanbase5share19ObLSLocationService3getElmRKNS0_6ObLSIDElRbRNS0_12ObLSLocationE:256 + 18.2: 240 + 25.1: 0 + 27.2: 225 + 28.1: 0 + 31: 255 + 32.5: 255 _ZN9oceanbase5share12ObLSLocationD1Ev:263 + 32.6: 0 + 10: _ZN9oceanbase5share12ObLSLocationC2Ev:52201 + 3: 270 + 4: 270 + 1: _ZN9oceanbase6common6ObLinkC2Ev:1080 + 0: 270 + 2: _ZN9oceanbase5share20ObLSLocationCacheKeyC2Ev:9180 + 1: 270 + 4: 270 + 3: _ZN9oceanbase5share6ObLSIDC2Ev:2160 + 0: 270 + 5: _ZN9oceanbase6common9ObSEArrayINS_5share19ObLSReplicaLocationELl3ENS0_19ModulePageAllocatorELb0EEC2Ev:37891 + 0.1: 259 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_5share19ObLSReplicaLocationELl3ENS0_19ModulePageAllocatorELb0EEC2ElRKS4_:34006 + 2: 270 + 5: 259 + 6: 259 + 8: 259 + 17.1: 259 + 2: _ZN9oceanbase6common8ObIArrayINS_5share19ObLSReplicaLocationEEC2EPS3_l:2072 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_5share19ObLSReplicaLocationEEC2EPS3_l:2072 + 0: 259 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:13986 + 0: 259 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:5698 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:5698 + 2: 259 + 8: 259 + 14.1: _ZN9oceanbase5share19ObLSLocationService12is_valid_keyElmRKNS0_6ObLSIDE:11654 + 5: 259 + 6: 259 + 7.1: _ZNK9oceanbase5share6ObLSID20is_valid_with_tenantEm:8028 + 4: _ZN9oceanbase6common14is_user_tenantEm:6783 + 3: 261 + 4: 249 + 2: _ZN9oceanbase6common13is_sys_tenantEm:1044 + 2: 261 + 3.1: _ZN9oceanbase6common20is_virtual_tenant_idEm:2490 + 2: 249 + 4.1: _ZNK9oceanbase5share6ObLSID8is_validEv:1245 + 0: 249 + 5.2: _ZN9oceanbase6common14is_meta_tenantEm:0 + 3: 0 + 5.3: _ZNK9oceanbase5share6ObLSID9is_sys_lsEv:0 + 0: 0 + 27.1: _ZNK9oceanbase5share12ObLSLocation10get_leaderERNS_6common6ObAddrE:33240 + 2: 240 + 5: 0 + 6.1: 0 + 8.1: 240 + 8.3: 240 + 9: 225 + 15: 0 + 3: _ZN9oceanbase6common6ObAddr5resetEv:1680 + 2: 240 + 4: _ZNK9oceanbase5share12ObLSLocation8is_validEv:10560 + 3: 240 + 2: _ZNK9oceanbase5share20ObLSLocationCacheKey8is_validEv:7680 + 2: 240 + 3: 240 + 4.1: _ZNK9oceanbase5share6ObLSID8is_validEv:1920 + 0: 240 + 8: _ZNK9oceanbase6common12ObIArrayWrapINS_5share19ObLSReplicaLocationEE5countEv:1680 + 0: 240 + 9: _ZNK9oceanbase6common12ObIArrayWrapINS_5share19ObLSReplicaLocationEE2atEl:1680 + 6: 240 + 9.1: _ZNK9oceanbase5share19ObLSReplicaLocation16is_strong_leaderEv:1440 + 0: 240 _ZN9oceanbase6common16is_strong_leaderENS0_6ObRoleE:240 + 10: _ZNK9oceanbase6common12ObIArrayWrapINS_5share19ObLSReplicaLocationEE2atEl:1575 + 6: 225 + 10.2: _ZN9oceanbase6common6ObAddraSERKS1_:6585 + 1: 225 + 2: 225 + 3: 225 +_ZN9oceanbase3sql10ObExecutor5closeERNS0_13ObExecContextE:141608:4860 + 1: 4568 + 5: 4568 + 9: 4568 + 4: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:31976 + 2: 4568 + 7: _ZN9oceanbase3sql18ObBasicSessionInfo26reset_cur_phy_plan_to_nullEv:50248 + 0: 4568 +_ZN9oceanbase8memtable13ObMemtableCtx26pending_log_size_too_largeEv:141588:3056 + 1: 3049 + 4: 3165 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:3129 + 7: 3184 + 7.1: 3165 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:3294 + 10: 3184 + 7: _ZN9oceanbase8memtable18ObTransCallbackMgr20get_pending_log_sizeEv:22155 + 0: 3165 +_ZN9oceanbase7storage15ObAccessService15ObStoreCtxGuardD2Ev:141533:1143 + 1: 1106 + 2: 1106 _ZN9oceanbase7storage15ObAccessService15ObStoreCtxGuard5resetEv:1135 + 3: 1185 _ZN9oceanbase7storage10ObLSHandleD1Ev:1137 + 3.1: 7 + 3.2: 7 + 3.6: 7 + 3.3: _ZN9oceanbase5share6ObLSIDD2Ev:13035 + 0: _ZN9oceanbase5share6ObLSID5resetEv:13035 + 0: 1185 + 3.4: _ZN9oceanbase7storage10ObStoreCtxD2Ev:96939 + 0: 1185 _ZN9oceanbase7storage10ObStoreCtx5resetEv:1210 + 0.2: 7 + 0.3: 7 + 0.1: _ZN9oceanbase8memtable15ObMvccAccessCtxD2Ev:78019 + 1: 1081 + 3: 1081 + 5: 1081 + 8: 1081 + 9: 1089 + 9.4: 1089 _ZN9oceanbase11transaction12ObTxSnapshotD1Ev:1143 + 9: _ZN9oceanbase11transaction9ObTransIDD2Ev:11891 + 0: 1081 + 9.3: _ZN9oceanbase7storage14ObTxTableGuardD2Ev:6605 + 0: _ZN9oceanbase7storage14ObTxTableGuard5resetEv:6605 + 2: 1081 + 3: 7 + 4: 7 + 0.4: _ZN9oceanbase6common10ObTabletIDD2Ev:8752 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:8752 + 0: 1094 + 0.5: _ZN9oceanbase5share6ObLSIDD2Ev:8752 + 0: _ZN9oceanbase5share6ObLSID5resetEv:8752 + 0: 1094 + 0.6: _ZN9oceanbase6common10ObTabletIDD2Ev:56 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:56 + 0: 7 + 0.7: _ZN9oceanbase5share6ObLSIDD2Ev:56 + 0: _ZN9oceanbase5share6ObLSID5resetEv:56 + 0: 7 + 3.5: _ZN9oceanbase5share6ObLSIDD2Ev:77 + 0: _ZN9oceanbase5share6ObLSID5resetEv:77 + 0: 7 +_ZN9oceanbase3sql10ObSQLUtils21get_default_cast_modeERKNS0_4stmt8StmtTypeEPKNS0_16ObSQLSessionInfoERm:141229:488 + 3: 482 + 4: 482 + 5: 482 + 6: 482 + 7: 0 + 8.1: 0 + 9.1: 482 + 10: 0 + 11.2: 512 + 12: 512 + 15: 0 + 17: 0 + 17.1: 512 + 18: 510 + 19: 0 + 21: 508 + 22: 0 + 25: 495 + 9.1: _ZN9oceanbase3lib14is_oracle_modeEv:20726 + 2: _ZN9oceanbase3lib15get_compat_modeEv:20726 + 2: 482 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:13014 + 2: 482 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 13.1: _ZNK9oceanbase3sql18ObBasicSessionInfo12get_sql_modeEv:16384 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache12get_sql_modeEv:16384 + 0: 512 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache12get_sql_modeEb:11776 + 0: 512 + 13.2: _ZN9oceanbase6common14is_strict_modeEm:4096 + 2: 512 + 14.1: _ZNK9oceanbase3sql16ObSQLSessionInfo14is_ignore_stmtEv:3584 + 0: 512 + 17.1: _ZN9oceanbase3lib13is_mysql_modeEv:23040 + 2: 512 + 2: _ZN9oceanbase3lib15get_compat_modeEv:21504 + 2: 512 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:10752 + 2: 512 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 18: _ZNK9oceanbase3sql18ObBasicSessionInfo12get_sql_modeEv:24480 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache12get_sql_modeEv:24480 + 0: 510 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache12get_sql_modeEb:13260 + 0: 510 + 18.1: _ZN9oceanbase6common22is_allow_invalid_datesEm:2040 + 2: 510 + 21: _ZNK9oceanbase3sql18ObBasicSessionInfo12get_sql_modeEv:5588 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache12get_sql_modeEv:5588 + 0: 508 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache12get_sql_modeEb:3048 + 0: 508 + 21.1: _ZN9oceanbase6common15is_no_zero_dateEm:2032 + 2: 508 +_ZN9oceanbase6common10ObObjStoreIPNS_3sql12ObIDASTaskOpERNS0_12ObIAllocatorELb0EED2Ev:141166:5176 + 0: 4967 + 0.1: 5385 + 0.3: 0 + 0: _ZN9oceanbase6common10ObObjStoreIPNS_3sql12ObIDASTaskOpERNS0_12ObIAllocatorELb0EE7destroyEv:94373 + 2.1: 0 + 4: 0 + 5: 0 + 2: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql12ObIDASTaskOpEEEE12remove_firstEv:94373 + 2: 4967 + 65347: 4967 + 2: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql12ObIDASTaskOpEEEE6removeEPS6_:44703 + 3: 4967 + 7: 0 + 6: _ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql12ObIDASTaskOpEEEE6unlinkEv:0 + 2: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 2.5: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql12ObIDASTaskOpEEEE12remove_firstEv:0 + 2: 0 + 2: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql12ObIDASTaskOpEEEE6removeEPS6_:0 + 3: 0 + 7: 0 + 6: _ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql12ObIDASTaskOpEEEE6unlinkEv:0 + 2: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 +_ZN9oceanbase11transaction7CtxLock4lockEv:140934:6285 + 1: 6126 + 2: 6126 _ZN9oceanbase6common7ObLatch6wrlockEjlPKj:6286 +_ZN9oceanbase6common23get_reserved_stack_sizeEv:140777:11320 + 1: 10829 + 2: 10829 +_ZN9oceanbase6common6DCHashINS_11transaction9ObTransIDELl8EE6Handle10search_preEmRPNS0_8HashNodeE:140281:469 + 0: 446 + 3: 473 + 5.1: 473 + 8: 0 + 2: _ZN9oceanbase6common6DCHashINS_11transaction9ObTransIDELl8EE6Handle11acquire_refEv:45046 + 0: 446 + 0: _ZN9oceanbase6common7ObQSync11acquire_refEv:41032 + 2: 446 + 3: 446 + 4: 446 + 5.1: 0 + 7: 446 + 2: _ZN9oceanbase6common8get_itidEv:12488 + 4: 446 + 5: 0 + 6: 0 + 8: 0 + 3: _ZN9oceanbase6common7ObQSync7add_refEll:8474 + 6: 446 + 3: _ZN9oceanbase6common6DCHashINS_11transaction9ObTransIDELl8EE10search_preEmRPNS0_8HashNodeE:63016 + 2: 473 + 3: 473 + 2: _ZN9oceanbase6common6DCHashINS_11transaction9ObTransIDELl8EE24alloc_and_init_cur_arrayEv:42677 + 3: 492 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 8.1: 0 + 9: 0 + 10: 0 + 12: 0 + 15: 0 + 15.1: 0 + 16.1: 509 + 17.1: 0 + 20.4: 547 _ZN9oceanbase6common11ObTimeGuardD2Ev:564 + 20.5: 0 + 1: _ZN9oceanbase6common11ObTimeGuardC2EPKcl:22811 + 2: 497 + 3: 497 + 4: 497 + 6: 497 + 7: 497 + 8: 497 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:446 + 2: 446 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:456 + 10: _ZN9oceanbase6common7DCArray4initEPNS0_8HashNodeES3_:0 + 2: 0 + 2.1: 0 + 2.3: 0 + 3: 0 + 7: 0 + 8: 0 + 5: _ZN9oceanbase6common8HashNode10set_linkedEv:0 + 0: 0 + 0: _ZN9oceanbase6common8HashNode9load_hashEv:0 + 0: 0 + 11: _ZN9oceanbase6common11ObTimeGuard5clickEPKc:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 16: _ZNK9oceanbase6common11ObTimeGuard8get_diffEv:4055 + 2: 509 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:492 + 2: 492 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:534 + 3: _ZN9oceanbase6common7DCArray10locate_preEm:11352 + 2: 473 + 4: 0 + 2: _ZN9oceanbase6common7DCArray12locate_prev_Em:6149 + 1: _ZN9oceanbase6common7DCArray6locateEm:6149 + 1: 473 + 5: _ZN9oceanbase6common7DCArray12locate_prev_Em:0 + 2.1: 0 + 1: _ZN9oceanbase6common7DCArray6locateEm:0 + 1: 0 + 2.1: _ZN9oceanbase6common8HashNode9is_linkedEv:0 + 0: 0 +_ZN9oceanbase6common13ObLinkHashMapINS_11transaction9ObTransIDENS_7storage8ObTxDataENS4_24TxDataHashMapAllocHandleENS0_9RefHandleELl8EE14insert_and_getERKS3_PS5_:139944:242 + 1: 232 + 4: 272 _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9ObTransIDENS_7storage8ObTxDataENS4_24TxDataHashMapAllocHandleENS0_9RefHandleELl8EE18get_retire_stationEv:272 + 14: 229 _ZN9oceanbase6common11KeyHashNodeINS_11transaction9ObTransIDEE3setERKS3_:259 + 16.1: 244 _ZN9oceanbase6common6DCHashINS_11transaction9ObTransIDELl8EE6insertERKS3_PNS0_11KeyHashNodeIS3_EE:253 + 16.2: 239 + 18: 239 _ZN9oceanbase6common11ObTimeGuard5clickEPKc:251 + 19: 209 + 24: 0 + 26: 0 + 27: 0 + 28: 0 + 31.1: 244 + 32.1: 0 + 35.3: 249 + 35.5: 0 + 35.7: 225 _ZN9oceanbase6common11ObTimeGuardD2Ev:225 + 2: _ZN9oceanbase6common11ObTimeGuardC2EPKcl:10897 + 2: 237 + 3: 237 + 4: 237 + 6: 237 + 7: 237 + 8: 237 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:232 + 2: 232 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:247 + 4.1: _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9ObTransIDENS_7storage8ObTxDataENS4_24TxDataHashMapAllocHandleENS0_9RefHandleELl8EE5GuardC2ERNS0_13RetireStationE:7134 + 0: _ZN9oceanbase6common9RefHandleC2ERNS0_13RetireStationE:4182 + 0: _ZN9oceanbase6common13BaseRefHandleC2ERNS0_13RetireStationE:4182 + 0: _ZN9oceanbase6common17get_global_qclockEv:4182 + 2: 246 + 2.1: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common6QClockC2Ev:0 + 0: 0 + 0.1: _ZN9oceanbase6common6QClock9ClockSlotC2Ev:0 + 0: 0 + 0.4: _ZN9oceanbase6common13BaseRefHandle14enter_criticalEv:2952 + 0: 246 _ZN9oceanbase6common6QClock14enter_criticalEv:254 + 6: _ZN9oceanbase6common11ObTimeGuard5clickEPKc:16125 + 3: 237 + 4: 237 + 5: 237 + 6: 237 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:246 + 2: 246 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:255 + 7: _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9ObTransIDENS_7storage8ObTxDataENS4_24TxDataHashMapAllocHandleENS0_9RefHandleELl8EE10alloc_nodeEPS5_:13006 + 3: 237 + 4.1: 259 _ZN9oceanbase7storage24TxDataHashMapAllocHandle10alloc_nodeEPNS0_8ObTxDataE:262 + 5: 0 + 7: 259 + 8: 259 + 9: 259 + 10: _ZN9oceanbase6common11ObTimeGuard5clickEPKc:15602 + 3: 229 + 4: 229 + 5: 229 + 6: 229 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:259 + 2: 259 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:272 + 11: _ZN9oceanbase6common9RefHandle4bornEPNS0_7RefNodeE:2290 + 0: 229 + 12: _ZN9oceanbase6common9RefHandle3incEPNS0_7RefNodeE:8244 + 0: _ZN9oceanbase6common15faa_if_positiveEPii:8244 + 2: 229 + 4.1: 229 + 4.2: 229 + 4.3: 229 + 13: _ZN9oceanbase6common7RefNode5xhrefEi:1603 + 0: 229 + 15: _ZN9oceanbase6common11ObTimeGuard5clickEPKc:16608 + 3: 244 + 4: 244 + 5: 244 + 6: 244 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:260 + 2: 260 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:261 + 20: _ZN9oceanbase6common11CountHandle3addEl:1463 + 0: 209 + 22: _ZN9oceanbase6common7RefNode5xhrefEi:0 + 0: 0 + 23: _ZN9oceanbase6common9RefHandle3decEPNS0_7RefNodeE:0 + 0: 0 + 25: _ZN9oceanbase6common9RefHandle3endEPNS0_7RefNodeE:0 + 0: 0 + 31: _ZNK9oceanbase6common11ObTimeGuard8get_diffEv:1917 + 2: 244 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:209 + 2: 209 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:237 + 34: _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9ObTransIDENS_7storage8ObTxDataENS4_24TxDataHashMapAllocHandleENS0_9RefHandleELl8EE12err_code_mapEi:4208 + 3: 263 + 35.3: _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9ObTransIDENS_7storage8ObTxDataENS4_24TxDataHashMapAllocHandleENS0_9RefHandleELl8EE5GuardD2Ev:7650 + 0: _ZN9oceanbase6common13BaseRefHandle14leave_criticalEv:7650 + 0: _ZN9oceanbase6common6QClock14leave_criticalEm:7650 + 1: 225 + 2: _ZN9oceanbase6common6QClock6locateEm:2925 + 0: 225 + 2.1: _ZN9oceanbase6common6QClock9ClockSlot11clear_clockEv:3375 + 0: 225 + 35.4: _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9ObTransIDENS_7storage8ObTxDataENS4_24TxDataHashMapAllocHandleENS0_9RefHandleELl8EE5GuardD2Ev:0 + 0: _ZN9oceanbase6common13BaseRefHandle14leave_criticalEv:0 + 0: _ZN9oceanbase6common6QClock14leave_criticalEm:0 + 1: 0 + 2: _ZN9oceanbase6common6QClock6locateEm:0 + 0: 0 + 2.1: _ZN9oceanbase6common6QClock9ClockSlot11clear_clockEv:0 + 0: 0 +_ZN9oceanbase6common16ObFixedArrayImplINS_7storage19ObSSTableReadHandleENS0_12ObIAllocatorEE4initEl:139476:1086 + 1: 1012 + 2: 1012 + 3: 1012 + 4: 0 + 5.1: 0 + 6.1: 1012 + 7: 0 + 8.1: 0 + 8.2: 0 + 8.5: 0 + 8.11: 0 + 9.1: 1012 + 10: 0 + 11.1: 0 + 11.5: 0 + 11.9: 0 + 12.1: 1012 + 15: 1012 + 16: 1012 _ZN9oceanbase6common26ObWrapperAllocatorWithAttr5allocEl:1041 + 17: 1008 + 18: 0 + 19.1: 0 + 21: 1008 + 22: 1008 + 23: 1008 + 26: 1008 + 8.1: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 8.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 8.8: _ZN9oceanbase6common7ObLogKVIRKPNS_7storage19ObSSTableReadHandleELb0EEC2EPKcS6_:0 + 0: 0 + 8.10: _ZN9oceanbase6common7ObLogKVIRKjLb0EEC2EPKcS3_:0 + 0: 0 + 11.1: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 11.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 11.8: _ZN9oceanbase6common7ObLogKVIRKPNS0_12ObIAllocatorELb0EEC2EPKcS5_:0 + 0: 0 +_ZN9oceanbase12blocksstable22ObIndexBlockRowScanner10locate_keyERKNS0_13ObDatumRowkeyE:139421:251 + 1: 248 + 2: 248 + 3: 248 + 4: 248 + 5: 248 + 11: 0 + 11.1: 0 + 13.1: 0 + 15: 0 + 16: 0 + 19.1: 0 + 22: 239 + 23: 239 + 24: 253 + 25: 253 + 26.1: 0 + 27.1: 253 + 28: 0 + 30: 243 + 32.1: 243 _ZZN9oceanbase12blocksstable22ObIndexBlockRowScanner10locate_keyERKNS0_13ObDatumRowkeyEENK5$_767clEPKc.79c84811dffcee7ee47b268264023dc2:244 + 36: 249 + 37: 249 + 38: 249 + 39: 249 + 41: 249 + 7: _ZN9oceanbase12blocksstable12ObDatumRange13set_start_keyERKNS0_13ObDatumRowkeyE:0 + 0: 0 + 8: _ZN9oceanbase12blocksstable13ObDatumRowkey14set_max_rowkeyEv:0 + 0: 0 + 0: _ZN9oceanbase6common13ObStoreRowkey7set_maxEv:0 + 0: 0 + 10: _ZN9oceanbase12blocksstable12ObDatumRange14set_right_openEv:0 + 0: _ZN9oceanbase6common12ObBorderFlag19unset_inclusive_endEv:0 + 0: 0 + 21: _ZNK9oceanbase7storage15ObTableReadInfo15get_datum_utilsEv:1673 + 0: 239 + 24: _ZSt11lower_boundIPKN9oceanbase12blocksstable13ObDatumRowkeyES2_NS1_15ObDatumComparorIS2_EEET_S7_S7_RKT0_T1_:77791 + 13: _ZSt13__lower_boundIPKN9oceanbase12blocksstable13ObDatumRowkeyES2_N9__gnu_cxx5__ops14_Iter_comp_valINS1_15ObDatumComparorIS2_EEEEET_SB_SB_RKT0_T1_:77791 + 8.1: 1359 + 10: 1349 + 13: 1402 _ZN9__gnu_cxx5__ops14_Iter_comp_valIN9oceanbase12blocksstable15ObDatumComparorINS3_13ObDatumRowkeyEEEEclIPKS5_S9_EEbT_RT0_:1362 + 22: 253 + 6: _ZSt8distanceIPKN9oceanbase12blocksstable13ObDatumRowkeyEENSt15iterator_traitsIT_E15difference_typeES6_S6_:4780 + 3: _ZSt10__distanceIPKN9oceanbase12blocksstable13ObDatumRowkeyEENSt15iterator_traitsIT_E15difference_typeES6_S6_St26random_access_iterator_tag:4780 + 6: 239 + 12: _ZSt7advanceIPKN9oceanbase12blocksstable13ObDatumRowkeyElEvRT_T0_:16188 + 4.1: _ZSt9__advanceIPKN9oceanbase12blocksstable13ObDatumRowkeyElEvRT_T0_St26random_access_iterator_tag:16188 + 6: 1349 +_ZNK9oceanbase6common4hash11ObHashTableINS_3sql3dtl20ObDTLIntermResultKeyENS1_11HashMapPairIS5_PNS4_21ObDTLIntermResultInfoEEENS1_9hash_funcIS5_EENS1_8equal_toIS5_EENS1_10pair_firstIS9_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS9_EELi82ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE18foreach_refactoredINS4_19ObDTLIntermResultGCEEEiRT_:139141:0 + 1: 0 + 5: 0 + 5.1: 0 + 6.1: 0 + 9.2: 1315 + 9.3: 1315 + 9.5: 1315 + 10: 1315 + 13: 1482 + 14.1: 1482 + 14.3: 1482 + 16: 0 + 22.1: 0 + 24: 0 + 5: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_3sql3dtl20ObDTLIntermResultKeyEPNS6_21ObDTLIntermResultInfoEEENS0_7ObLatchENS1_5NCondEEEEEbRKT_:0 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_3sql3dtl20ObDTLIntermResultKeyEPNS6_21ObDTLIntermResultInfoEEENS0_7ObLatchENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:0 + 2: 0 + 12: _ZN9oceanbase6common4hash16ObBucketLockCondINS1_11HashMapPairINS_3sql3dtl20ObDTLIntermResultKeyEPNS5_21ObDTLIntermResultInfoEEENS1_24LatchReadWriteDefendModeEE4lockEv:14498 + 2: 1318 + 12.1: _ZN9oceanbase6common4hash15LatchReadLockerC2ERNS0_7ObLatchE:72314 + 0: 1318 + 2: 1318 + 3: 1482 _ZN9oceanbase6common7ObLatch6rdlockEjl:1377 + 4.1: 0 + 6: 1482 + 7: 1482 + 15: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_11HashMapPairINS_3sql3dtl20ObDTLIntermResultKeyEPNS5_21ObDTLIntermResultInfoEEEE16check_magic_codeEv:0 + 0: 0 + 15.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 22: _ZN9oceanbase6common4hash15LatchReadLockerD2Ev:17784 + 2: 1482 + 3: 1482 _ZN9oceanbase6common7ObLatch6unlockEPKj:1482 + 3.1: 0 +_ZN9oceanbase3sql8ObDASCtx24unmark_need_check_serverEv:139100:4514 + 1: 4258 + 2: 4258 + 2.1: 4001 + 3: 4001 + 5: 4249 + 2: _ZNK9oceanbase6common6ObListIPNS_3sql13ObDASTableLocENS0_12ObIAllocatorEE5emptyEv:21290 + 2: 4258 + 2.1: _ZN9oceanbase6common6ObListIPNS_3sql13ObDASTableLocENS0_12ObIAllocatorEE9get_firstEv:12003 + 0: 4001 + 2.2: _ZNK9oceanbase6common6ObListIPNS_3sql14ObDASTabletLocENS0_12ObIAllocatorEE5emptyEv:20005 + 2: 4001 +_ZN9oceanbase6common24GlobalHazardVersionGuardD2Ev:139072:13842 + 1: 13831 + 2: 13831 _ZN9oceanbase6common19GlobalHazardVersion7releaseEv:14379 + 2.1: 1 + 3: 14206 +_ZN9oceanbase6common24GlobalHazardVersionGuardD1Ev:139072:13842 + 1: 13831 + 2: 13831 _ZN9oceanbase6common19GlobalHazardVersion7releaseEv:14379 + 2.1: 1 + 3: 14206 +_ZN9oceanbase6common13ObSEArrayImplIbLl2ENS0_19ModulePageAllocatorELb1EE9push_backERKb:138690:3246 + 2: 3082 + 5: 3082 + 6: 0 + 12: 0 + 15: 0 + 15.1: 3082 + 16: 3082 + 19: 3082 + 15.1: _ZN9oceanbase6common9ObClassOpIbLb1EE20construct_and_assignERKbRb:18492 + 2: 3082 +_ZZN9oceanbase7storage19ObMultipleScanMerge15construct_itersEvENK5$_637clEPKc.60e5f1555e1608e51e89c573dc1497ed:138016:2114 + 0: 2104 + 0.1: 0 + 0.2: 2104 + 0.3: 2088 _ZN9oceanbase6common8ObLogger13need_to_printEmi:2194 + 0.7: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:35496 + 2: 2088 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.1: _ZN9oceanbase6common20ObLogPrintPointerCntIPNS_7storage8ObITableEEC2ES4_:0 + 0: 0 + 0.4: _ZN9oceanbase6common7ObLogKVINS0_20ObLogPrintPointerCntIPNS_7storage8ObITableEEELb1EEC2EPKcOKS6_:0 + 0: 0 + 0.5: _ZN9oceanbase6common20ObLogPrintPointerCntIPKNS_7storage18ObTableAccessParamEEC2ES5_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVINS0_20ObLogPrintPointerCntIPKNS_7storage18ObTableAccessParamEEELb1EEC2EPKcOKS7_:0 + 0: 0 +_ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocEE3delERKS2_PS3_:137924:271 + 1: 258 + 2: 258 + 4: 258 + 5: 0 + 6.1: 0 + 7.1: 258 + 8: 0 + 9.1: 0 + 11: 258 + 12: 258 + 13: 250 + 14: 23 + 14.1: 0 + 18: 249 + 21: 279 + 11: _ZNK9oceanbase11transaction9ObTransID4hashEv:14964 + 2: _ZN9oceanbase6common10murmurhashEPKvim:14964 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:14964 + 13: 258 + 14: 258 + 15: 258 + 17: 258 + 18: 258 + 41: 258 + 42: 258 + 43: 258 + 12: _ZN9oceanbase6common8get_itidEv:7224 + 4: 258 + 5: 0 + 6: 0 + 8: 0 + 12.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocEE16BucketWLockGuardC2ERKNS_6common10SpinRWLockEm:40808 + 1: 258 + 4: 258 + 5: 0 + 6.1: 0 + 8: 250 + 9.1: 0 + 11: 250 + 4: _ZN9oceanbase6common8get_itidEv:3096 + 4: 258 + 5: 0 + 6: 0 + 8: 258 + 4.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocEE15get_thread_nodeEv:6450 + 2: 258 + 2.1: 0 + 2.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocEE4NodeC2Ev:0 + 0: 0 + 4.2: _ZNK9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocEE4Node13get_thread_idEv:4902 + 0: 258 + 8: _ZN9oceanbase6common10SpinRWLock6wrlockEl:5418 + 0: 258 _ZN9oceanbase6common7ObLatch6wrlockEjlPKj:260 + 12: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocEE15get_thread_nodeEv:6250 + 2: 250 + 2.1: 0 + 2.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocEE4NodeC2Ev:0 + 0: 0 + 12.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocEE4Node13set_thread_idEl:4750 + 0: 250 + 17: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocEE16del_from_bucket_ElPS3_:10117 + 3: 226 + 4: 222 + 6: 3 + 7: 3 + 10: 23 + 11: 23 + 12: 0 + 15: 249 + 16: 249 + 17.1: 249 + 18: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocEE6revertEPS3_:7470 + 2: 249 + 3: 249 + 4: 0 + 3: _ZN9oceanbase11transaction15ObTransHashLinkINS0_8ObTxDescEE7dec_refEi:2988 + 2: 249 + 3: 249 + 4.1: 0 + 20: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocEE16BucketWLockGuardD2Ev:0 + 2: 0 + 3: 0 + 3.1: 0 + 4.1: 0 + 3: _ZN9oceanbase6common10SpinRWLock6unlockEv:0 + 0: 0 + 6: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocEE15get_thread_nodeEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocEE4NodeC2Ev:0 + 0: 0 + 6.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocEE4Node5resetEv:0 + 0: 0 + 20.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocEE16BucketWLockGuardD2Ev:21192 + 2: 249 + 3: 249 + 3.1: 279 + 4.1: 0 + 3: _ZN9oceanbase6common10SpinRWLock6unlockEv:747 + 0: 249 _ZN9oceanbase6common7ObLatch6unlockEPKj:271 + 6: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocEE15get_thread_nodeEv:6975 + 2: 279 + 2.1: 0 + 2.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocEE4NodeC2Ev:0 + 0: 0 + 6.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocEE4Node5resetEv:6417 + 0: 279 +_ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE3delERKS2_PS3_:136890:276 + 1: 255 + 2: 255 + 4: 255 + 5: 0 + 6.1: 0 + 7.1: 255 + 8: 0 + 9.1: 0 + 11: 255 + 12: 255 + 13: 243 + 14: 2 + 14.1: 0 + 18: 242 + 21: 287 + 11: _ZNK9oceanbase11transaction9ObTransID4hashEv:14790 + 2: _ZN9oceanbase6common10murmurhashEPKvim:14790 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:14790 + 13: 255 + 14: 255 + 15: 255 + 17: 255 + 18: 255 + 41: 255 + 42: 255 + 43: 255 + 12: _ZN9oceanbase6common8get_itidEv:7140 + 4: 255 + 5: 0 + 6: 0 + 8: 0 + 12.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE16BucketWLockGuardC2ERKNS_6common10SpinRWLockEm:40092 + 1: 255 + 4: 255 + 5: 0 + 6.1: 0 + 8: 243 + 9.1: 0 + 11: 243 + 4: _ZN9oceanbase6common8get_itidEv:3060 + 4: 255 + 5: 0 + 6: 0 + 8: 255 + 4.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE15get_thread_nodeEv:6375 + 2: 255 + 2.1: 0 + 2.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE4NodeC2Ev:0 + 0: 0 + 4.2: _ZNK9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE4Node13get_thread_idEv:4845 + 0: 255 + 8: _ZN9oceanbase6common10SpinRWLock6wrlockEl:5355 + 0: 255 _ZN9oceanbase6common7ObLatch6wrlockEjlPKj:257 + 12: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE15get_thread_nodeEv:6075 + 2: 243 + 2.1: 0 + 2.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE4NodeC2Ev:0 + 0: 0 + 12.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE4Node13set_thread_idEl:4617 + 0: 243 + 17: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE16del_from_bucket_ElPS3_:9933 + 3: 241 + 4: 238 + 6: 3 + 7: 3 + 10: 1 + 11: 1 + 12: 0 + 15: 242 + 16: 242 + 17.1: 242 + 18: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE6revertEPS3_:7502 + 2: 242 + 3: 242 + 3: _ZN9oceanbase11transaction15ObTransHashLinkINS0_10ObTransCtxEE7dec_refEi:3146 + 2: 242 + 3: 242 + 4.1: 0 + 4: _ZN9oceanbase11transaction13TransCtxAlloc10free_valueEPNS0_10ObTransCtxE:0 + 3: 0 + 20: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE16BucketWLockGuardD2Ev:0 + 2: 0 + 3: 0 + 3.1: 0 + 4.1: 0 + 3: _ZN9oceanbase6common10SpinRWLock6unlockEv:0 + 0: 0 + 6: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE15get_thread_nodeEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE4NodeC2Ev:0 + 0: 0 + 6.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE4Node5resetEv:0 + 0: 0 + 20.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE16BucketWLockGuardD2Ev:21531 + 2: 242 + 3: 242 + 3.1: 287 + 4.1: 0 + 3: _ZN9oceanbase6common10SpinRWLock6unlockEv:726 + 0: 242 _ZN9oceanbase6common7ObLatch6unlockEPKj:273 + 6: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE15get_thread_nodeEv:7175 + 2: 287 + 2.1: 0 + 2.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE4NodeC2Ev:0 + 0: 0 + 6.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE4Node5resetEv:6601 + 0: 287 +_ZN9oceanbase6common16ObClockGenerator8getClockEv:136772:4784 + 1: 4412 + 4: 4412 + 5.1: 0 + 8: 4412 + 11: 4412 + 6: _ZN9oceanbase6common16ObClockGenerator6get_usEv:0 + 2: 0 +_ZN9oceanbase7storage8ObTablet14rowkeys_existsERNS0_10ObStoreCtxERNS0_15ObRelativeTableERNS0_10ObRowsInfoERb:136743:250 + 5: 234 + 6: 234 + 9: 255 + 10: 0 + 11.1: 0 + 12.2: 255 + 12.3: 255 _ZNK9oceanbase7storage15ObRelativeTable8is_validEv:281 + 12.5: 265 + 13: 0 + 14.1: 0 + 15.1: 265 _ZNK9oceanbase7storage15ObRelativeTable13get_tablet_idEv:265 + 15.3: 252 + 16: 0 + 17.1: 0 + 18.2: 254 + 19.1: 0 + 20.3: 246 _ZN9oceanbase7storage8ObTablet15get_read_tablesElRNS0_20ObTableStoreIteratorEb:252 + 20.4: 211 + 21.1: 0 + 24: 211 _ZN9oceanbase7storage19ObStorageTableGuardC1EPNS0_8ObTabletERNS0_10ObStoreCtxEbblb:209 + 25: 204 _ZN9oceanbase7storage19ObStorageTableGuard25refresh_and_protect_tableERNS0_15ObRelativeTableE:210 + 25.1: 273 + 26.1: 0 + 28: 273 _ZN9oceanbase7storage19ObStorageTableGuardD1Ev:285 + 28.1: 0 + 30: 234 + 31: 234 _ZN9oceanbase7storage8ObTablet16do_rowkeys_existERNS0_20ObTableStoreIteratorERNS0_10ObRowsInfoERb:234 + 31.1: 282 + 32.1: 0 + 37: 282 + 38.10: 282 _ZN9oceanbase7storage20ObTableStoreIteratorD1Ev:281 + 38.11: 0 + 7: _ZN9oceanbase7storage20ObTableStoreIteratorC2Eb:49032 + 1: 234 + 2: 255 + 3: 255 + 4: 234 + 1: _ZN9oceanbase6common9ObSEArrayIPNS_7storage8ObITableELl16ENS0_19ModulePageAllocatorELb0EEC2Ev:35700 + 0.1: 255 + 0.5: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl16ENS0_19ModulePageAllocatorELb0EEC2ElRKS5_:31875 + 5: 255 + 6: 255 + 8: 255 + 17.1: 255 + 2: _ZN9oceanbase6common8ObIArrayIPNS_7storage8ObITableEEC2EPS4_l:2040 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_7storage8ObITableEEC2EPS4_l:2040 + 0: 255 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:13770 + 0: 255 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:5610 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:5610 + 2: 255 + 8: 255 + 12.1: _ZNK9oceanbase7storage10ObRowsInfo8is_validEv:19635 + 2: 255 + 2.1: 255 + 2.2: 255 + 3: 255 + 3.1: 255 + 3.2: 255 + 2.1: _ZNK9oceanbase7storage10ObRowsInfo11ExistHelper8is_validEv:2295 + 0: 255 + 15.2: _ZNK9oceanbase6common10ObTabletIDneERKS1_:2520 + 0: 252 + 18.1: _ZN9oceanbase7storage8ObTablet14allow_to_read_Ev:4032 + 2: 252 + 5: 252 + 6: 0 + 7.1: 0 + 9: 0 + 3: _ZNK9oceanbase7storage16ObTabletHAStatus7is_noneEv:2016 + 0: 252 + 20.1: _ZNK9oceanbase8memtable15ObMvccAccessCtx20get_snapshot_versionEv:984 + 1: 246 + 20.2: _ZNK9oceanbase7storage15ObRelativeTable15allow_not_readyEv:3690 + 0: 246 +_ZN9oceanbase3sql8ObSortOp5resetEv:136694:542 + 1: 522 + 2: 522 _ZN9oceanbase3sql12ObSortOpImpl5resetEv:543 + 4: 459 _ZN9oceanbase3sql22ObInMemoryTopnSortImpl5resetEv:496 + 5: 518 + 6: 518 + 7: 518 + 8: 518 + 9: 518 + 10: 518 + 3: _ZN9oceanbase3sql16ObPrefixSortImpl5resetEv:86330 + 3: 483 + 8: 515 + 9: 515 + 14: 515 + 15: 515 + 16: 515 _ZN9oceanbase3sql17ObChunkDatumStore5resetEv:536 + 18: 521 + 21: 521 _ZN9oceanbase3sql12ObSortOpImpl5resetEv:524 + 4: _ZN9oceanbase6common13ObArrayHelperINS_3sql20ObSortFieldCollationEE5resetEv:11688 + 3: 515 + 5: _ZN9oceanbase6common13ObArrayHelperINS0_9ObCmpFuncEE5resetEv:8694 + 3: 483 + 6: _ZN9oceanbase3sql19ObBatchResultHolder5resetEv:5313 + 0: 483 + 7: _ZN9oceanbase3sql17ObChunkDatumStore15ShadowStoredRow5resetEv:13329 + 2: 483 + 2.1: 0 + 3: 0 + 6: 515 +_ZN9oceanbase7storage17ObLSTabletService20update_row_to_tabletERNS0_14ObTabletHandleERNS0_15ObDMLRunningCtxEbRKNS_6common8ObIArrayIlEEbbRNS0_10ObStoreRowESC_PNS6_10ObRowStoreERb:136618:371 + 11: 334 + 12: 334 + 14: 334 + 15: 334 + 16: 334 _ZNK9oceanbase7storage15ObRelativeTable21get_rowkey_column_numEv:344 + 18: 325 + 20: 325 + 22.2: 325 + 22.5: 325 + 22.6: 325 + 24: 0 + 25.1: 0 + 27.1: 325 + 27.3: 0 + 31.1: 0 + 33.1: 371 _ZN9oceanbase7storage17ObLSTabletService15process_old_rowERNS0_14ObTabletHandleERNS0_15ObDMLRunningCtxEbbRNS0_10ObStoreRowE:371 + 33.2: 326 + 38: 0 + 39.1: 0 + 42.1: 326 _ZN9oceanbase7storage17ObLSTabletService15process_lob_rowERNS0_14ObTabletHandleERNS0_15ObDMLRunningCtxERKNS_6common8ObIArrayIlEEbRNS0_10ObStoreRowESC_SC_:328 + 42.2: 355 + 49.1: 0 + 50.1: 355 + 50.3: 0 + 54: 0 + 55: 0 + 56.1: 0 + 57.1: 0 + 57.2: 0 + 58.1: 0 + 59.1: 0 + 59.2: 0 + 60.1: 0 + 64.1: 369 _ZN9oceanbase7storage17ObLSTabletService15process_new_rowERNS0_14ObTabletHandleERNS0_15ObDMLRunningCtxERKNS_6common8ObIArrayIlEERKNS0_10ObStoreRowESD_b:377 + 64.2: 326 + 71.1: 0 + 75: 307 + 76.9: 307 + 19: _ZN9oceanbase7storage10ObStoreRowC2Ev:23725 + 1: 325 + 3: 325 + 4.1: 325 + 1: _ZN9oceanbase12blocksstable12ObDmlRowFlagC2Ev:2275 + 1: 325 + 22: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:1625 + 0: 325 + 22.1: _ZNK9oceanbase6common8ObNewRow9get_countEv:4875 + 0: 325 + 22.4: _ZNK9oceanbase6common8ObNewRow9get_countEv:4875 + 0: 325 + 27.2: _ZN9oceanbase7storage17ObLSTabletService25check_rowkey_value_changeERKNS_6common8ObNewRowES5_lRb:1089 + 6: 0 + 7: 0 + 8: 0 + 10: 0 + 11.1: 0 + 14: 0 + 15.1: 0 + 15.3: 0 + 16: 0 + 17: 0 + 22: 0 + 50.2: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 +_ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:136457:2615 + 1: 2512 + 2: 2512 + 2.2: 2252 _ZN9oceanbase6common11ObAllocator5allocElRKNS_3lib9ObMemAttrE:2284 _ZN9oceanbase6common16ObArenaAllocator5allocElRKNS_3lib9ObMemAttrE:4 + 2.3: 285 + 2.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:8098 + 3: 270 _ZN9oceanbase3lib17ObMallocAllocator12get_instanceEv:291 + 4: 283 + 5: 283 _ZN9oceanbase3lib17ObMallocAllocator5allocElRKNS0_9ObMemAttrE:295 + 6: 285 + 7: 5 + 8: 5 + 9: 5 + 10: 5 + 11: 5 + 13: 5 + 14.1: 5 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:35 + 2: 5 + 9: _ZSt3maxIlERKT_S2_S2_:60 + 5: 5 +_ZN9oceanbase3sql17ObSqlWorkareaUtil17get_workarea_sizeENS0_17ObSqlWorkAreaTypeElRl:136353:850 + 1: 779 + 2: 779 + 3: 779 _ZN9oceanbase3omt17ObTenantConfigMgr12get_instanceEv:779 + 3.2: 735 _ZNK9oceanbase3omt17ObTenantConfigMgr27get_tenant_config_with_lockEmmm:750 + 3.3: 782 _ZN9oceanbase3omt19ObTenantConfigGuardC1EPNS0_14ObTenantConfigE:797 + 4.1: 758 + 5: 758 + 6.2: 254 + 8.2: 490 + 10: 0 + 11.1: 0 + 15: 0 + 16.1: 0 + 18: 754 + 19.3: 783 _ZN9oceanbase3omt19ObTenantConfigGuardD1Ev:793 + 19.4: 0 + 3.1: _ZN9oceanbase3omt17ObTenantConfigMgr26default_fallback_tenant_idEv:47710 + 4: 734 + 4.1: 734 + 2: _ZN9oceanbase5share5GuardILNS0_12ObEntityTypeE0EE13current_guardEv:20552 + 3: 734 + 8: 0 + 10: 0 + 11: 0 + 12: 0 + 8.1: _ZN9oceanbase5share5GuardILNS0_12ObEntityTypeE0EEC2ERNS0_13ObTenantSpaceE:0 + 1: 0 + 3: 0 + 11: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 2.1: _ZN9oceanbase5share5GuardILNS0_12ObEntityTypeE0EEptEv:2202 + 0: 734 + 2.2: _ZNK9oceanbase5share13ObTenantSpace10get_tenantEv:6606 + 0: 734 + 4.1: _ZNK9oceanbase5share12ObTenantBase2idEv:5138 + 0: 734 + 4: _ZN9oceanbase3omt19ObTenantConfigGuard8is_validEv:5306 + 0: 758 +_ZN9oceanbase8memtable13ObMemtableCtx13callback_freeEPNS0_16ObITransCallbackE:136110:1789 + 1: 1762 + 2: 1762 + 3.1: 15 + 4.1: 1762 _ZNK9oceanbase8memtable16ObITransCallback22is_table_lock_callbackEv:1067 _ZNK9oceanbase11transaction9tablelock17ObOBJLockCallback22is_table_lock_callbackEv:709 + 7.1: 976 + 9: 976 + 10: 1056 + 12: 1056 + 5: _ZN9oceanbase8memtable13ObMemtableCtx24free_table_lock_callbackEPNS0_16ObITransCallbackE:16494 + 6: 747 _ZN9oceanbase11transaction9tablelock12ObLockMemCtx21free_lock_op_callbackEPv:788 + 9: _ZN9oceanbase8memtable24ObMemtableCtxCbAllocator4freeEPv:24460 + 2: 976 + 5.1: 976 + 6: 976 _ZN9oceanbase6common15ObFIFOAllocator4freeEPv:978 +_ZN9oceanbase8memtable10ObMemtable5existERNS_7storage10ObStoreCtxEmRKNS2_15ObTableReadInfoERKNS_12blocksstable13ObDatumRowkeyERbSC_:135923:221 + 7: 216 + 8: 216 + 14: 216 + 15: 216 _ZN9oceanbase8memtable10ObMemtable9get_beginERNS0_15ObMvccAccessCtxE:241 + 16: 237 + 17: 1 + 18.1: 1 + 19.2: 237 + 20: 237 + 21: 237 + 22: 1 + 23.1: 1 + 24.3: 237 _ZN9oceanbase8memtable13ObMemtableKey6encodeERKNS_6common8ObIArrayINS_5share6schema9ObColDescEEEPKNS2_13ObStoreRowkeyE:242 + 24.4: 227 + 26.1: 1 + 27.1: 227 _ZN9oceanbase8memtable12ObMvccEngine3getERNS0_15ObMvccAccessCtxERKNS_6common11ObQueryFlagEbPKNS0_13ObMemtableKeyEPS8_RNS0_19ObMvccValueIteratorE:227 + 27.2: 255 + 30.1: 1 + 32: 255 + 34.1: 255 + 35: 255 _ZN9oceanbase8memtable19ObMvccValueIterator13get_next_nodeERPKv:256 + 35.1: 244 + 37: 1 + 40.1: 1 + 42.1: 244 + 43: 1 + 44.1: 1 + 49: 244 + 50: 244 + 56: 247 _ZN9oceanbase8memtable10ObMemtable7get_endERNS0_15ObMvccAccessCtxEi:247 + 57: 258 + 58.11: 258 + 9: _ZN9oceanbase8memtable13ObMemtableKeyC2Ev:1512 + 0: 216 + 10: _ZN9oceanbase8memtable13ObMemtableKeyC2Ev:1512 + 0: 216 + 11: _ZN9oceanbase8memtable19ObMvccValueIteratorC2Ev:14472 + 1: 216 + 2: 216 + 5: 216 + 6: 216 + 7: 216 + 19.1: _ZNK9oceanbase8memtable15ObMvccAccessCtx8is_validEv:21645 + 1: 237 + 2: _ZNK9oceanbase8memtable15ObMvccAccessCtx15is_read_valid__Ev:43 + 1: 1 + 2: 1 + 3: 1 + 4: 1 + 4.1: 1 + 4.2: 1 + 2.1: _ZNK9oceanbase11transaction12ObTxSnapshot8is_validEv:5 + 0: 1 + 3.1: _ZNK9oceanbase7storage14ObTxTableGuard8is_validEv:5 + 0: 1 + 3: _ZNK9oceanbase8memtable15ObMvccAccessCtx16is_write_valid__Ev:18960 + 1: 237 + 2: 237 + 3: 237 + 3.1: 237 + 4: 237 + 4.1: 237 + 5: 237 + 5.1: 237 + 6: 237 + 7: 237 + 2.1: _ZNK9oceanbase11transaction12ObTxSnapshot8is_validEv:1185 + 0: 237 + 6.1: _ZNK9oceanbase11transaction9ObTransID8is_validEv:1185 + 0: 237 + 7.1: _ZNK9oceanbase7storage14ObTxTableGuard8is_validEv:1185 + 0: 237 + 4: _ZNK9oceanbase8memtable15ObMvccAccessCtx17is_replay_valid__Ev:25 + 1: 1 + 2: 1 + 2.1: 1 + 3: 1 + 3.1: _ZNK9oceanbase11transaction9ObTransID8is_validEv:5 + 0: 1 + 20.1: _ZNK9oceanbase12blocksstable13ObDatumRowkey17is_memtable_validEv:7110 + 0: 237 + 0: _ZNK9oceanbase6common13ObStoreRowkey8is_validEv:1422 + 0: _ZNK9oceanbase6common8ObRowkey8is_validEv:1422 + 0: 237 + 0.1: _ZNK9oceanbase12blocksstable13ObDatumRowkey8is_validEv:1422 + 0: 237 + 21.1: _ZNK9oceanbase7storage15ObTableReadInfo8is_validEv:16827 + 2: 237 + 3: 237 + 3.1: 237 + 4: 237 + 5.1: 237 + 6: 237 + 7: 237 + 7.1: 237 + 3.1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:1659 + 0: 237 + 6.1: _ZNK9oceanbase12blocksstable19ObStorageDatumUtils8is_validEv:1896 + 0: 237 + 24.1: _ZNK9oceanbase7storage15ObTableReadInfo16get_columns_descEv:948 + 1: 237 + 24.2: _ZNK9oceanbase12blocksstable13ObDatumRowkey16get_store_rowkeyEv:1896 + 0: 237 +_ZN9oceanbase11transaction11ObXATransID5resetEv:135696:2131 + 1: 2056 + 5: 2056 + 6: 2056 + 8: 2056 + 9: 2056 + 3: _ZN9oceanbase6common8ObString13assign_bufferEPci:34952 + 2: 2056 + 3: 2056 + 5: 2056 + 6: 0 + 5: _ZN9oceanbase6common8ObString13assign_bufferEPci:37008 + 2: 2056 + 3: 2056 +_ZN9oceanbase8memtable16ObMvccWriteGuardD2Ev:135313:2014 + 1: 1873 + 2: 1873 + 3.1: 1873 + 4: 1873 _ZN9oceanbase8memtable13ObMemtableCtx10write_doneEv:1897 + 6: 2025 + 7: 2025 _ZN9oceanbase11transaction14ObPartTransCtx15submit_redo_logEb:2162 + 7.1: 2243 + 8.1: 35 + 11.3: 35 + 12.3: 2243 + 3: _ZNK9oceanbase8memtable13ObMemtableCtx13get_trans_ctxEv:13111 + 0: 1873 +_ZN9oceanbase8memtable16ObMvccWriteGuardD1Ev:135313:2014 + 1: 1873 + 2: 1873 + 3.1: 1873 + 4: 1873 _ZN9oceanbase8memtable13ObMemtableCtx10write_doneEv:1897 + 6: 2025 + 7: 2025 _ZN9oceanbase11transaction14ObPartTransCtx15submit_redo_logEb:2162 + 7.1: 2243 + 8.1: 35 + 11.3: 35 + 12.3: 2243 + 3: _ZNK9oceanbase8memtable13ObMemtableCtx13get_trans_ctxEv:13111 + 0: 1873 +_ZN9oceanbase3sql20ObAggregateProcessorC2ERNS0_9ObEvalCtxERNS_6common8ObIArrayINS0_10ObAggrInfoEEERKNS_3lib7ObLabelE:135121:268 + 4: 260 + 8: 260 + 13: 260 + 15: 260 + 16: 260 _ZN9oceanbase3sql13ObExecContext13get_allocatorEv:260 + 18: 257 + 20: 257 + 22: 257 + 24: 257 + 30: 257 + 32: 257 + 34: 260 + 35: 257 + 9: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:25991 + 4: 260 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKNS_3lib7ObLabelEll:780 + 4: 260 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:21311 + 2: 260 + 3: 260 + 4: 260 + 5: 260 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:8840 + 0: 260 + 16.1: _ZN9oceanbase6common12ObFixedArrayIPNS_3sql20ObAggregateProcessor12IAggrFuncCtxENS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplIS5_S6_EEERS6_l:11822 + 0: 257 + 0: _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql20ObAggregateProcessor12IAggrFuncCtxENS0_12ObIAllocatorEEC2ERS6_l:7196 + 2: 257 + 3: 257 + 4: 257 + 1: _ZN9oceanbase6common8ObIArrayIPNS_3sql20ObAggregateProcessor12IAggrFuncCtxEEC2Ev:1799 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql20ObAggregateProcessor12IAggrFuncCtxEEC2Ev:1799 + 0: 257 + 17.2: _ZN9oceanbase6common9Ob2DArrayIPNS_3sql20ObAggregateProcessor8GroupRowELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS5_Ll64ES6_Lb0EEEEC2ERKS6_:52428 + 1: 257 + 5: 257 + 6: 257 + 2: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:10794 + 0: 257 + 3: _ZN9oceanbase6common9ObSEArrayIPPNS_3sql20ObAggregateProcessor8GroupRowELl64ENS0_19ModulePageAllocatorELb0EECI2NS0_13ObSEArrayImplIS6_Ll64ES7_Lb0EEEElRKS7_:32639 + 0: 257 + 0: _ZN9oceanbase6common13ObSEArrayImplIPPNS_3sql20ObAggregateProcessor8GroupRowELl64ENS0_19ModulePageAllocatorELb0EEC2ElRKS7_:28013 + 2: 257 + 5: 257 + 6: 257 + 8: 257 + 17.1: 257 + 2: _ZN9oceanbase6common8ObIArrayIPPNS_3sql20ObAggregateProcessor8GroupRowEEC2EPS6_l:3598 + 0: _ZN9oceanbase6common12ObIArrayWrapIPPNS_3sql20ObAggregateProcessor8GroupRowEEC2EPS6_l:3598 + 0: 257 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:7196 + 0: 257 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:5397 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:5397 + 2: 257 + 8: 257 + 33: _ZN9oceanbase3sql11RemovalInfoC2Ev:7710 + 1: 257 + 2: 257 + 4: 257 + 5: 257 + 35.5: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:0 + 0: 0 +_ZN9oceanbase3sql20ObAggregateProcessorC1ERNS0_9ObEvalCtxERNS_6common8ObIArrayINS0_10ObAggrInfoEEERKNS_3lib7ObLabelE:135121:268 + 4: 260 + 8: 260 + 13: 260 + 15: 260 + 16: 260 _ZN9oceanbase3sql13ObExecContext13get_allocatorEv:260 + 18: 257 + 20: 257 + 22: 257 + 24: 257 + 30: 257 + 32: 257 + 34: 260 + 35: 257 + 9: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:25991 + 4: 260 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKNS_3lib7ObLabelEll:780 + 4: 260 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:21311 + 2: 260 + 3: 260 + 4: 260 + 5: 260 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:8840 + 0: 260 + 16.1: _ZN9oceanbase6common12ObFixedArrayIPNS_3sql20ObAggregateProcessor12IAggrFuncCtxENS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplIS5_S6_EEERS6_l:11822 + 0: 257 + 0: _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql20ObAggregateProcessor12IAggrFuncCtxENS0_12ObIAllocatorEEC2ERS6_l:7196 + 2: 257 + 3: 257 + 4: 257 + 1: _ZN9oceanbase6common8ObIArrayIPNS_3sql20ObAggregateProcessor12IAggrFuncCtxEEC2Ev:1799 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql20ObAggregateProcessor12IAggrFuncCtxEEC2Ev:1799 + 0: 257 + 17.2: _ZN9oceanbase6common9Ob2DArrayIPNS_3sql20ObAggregateProcessor8GroupRowELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS5_Ll64ES6_Lb0EEEEC2ERKS6_:52428 + 1: 257 + 5: 257 + 6: 257 + 2: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:10794 + 0: 257 + 3: _ZN9oceanbase6common9ObSEArrayIPPNS_3sql20ObAggregateProcessor8GroupRowELl64ENS0_19ModulePageAllocatorELb0EECI2NS0_13ObSEArrayImplIS6_Ll64ES7_Lb0EEEElRKS7_:32639 + 0: 257 + 0: _ZN9oceanbase6common13ObSEArrayImplIPPNS_3sql20ObAggregateProcessor8GroupRowELl64ENS0_19ModulePageAllocatorELb0EEC2ElRKS7_:28013 + 2: 257 + 5: 257 + 6: 257 + 8: 257 + 17.1: 257 + 2: _ZN9oceanbase6common8ObIArrayIPPNS_3sql20ObAggregateProcessor8GroupRowEEC2EPS6_l:3598 + 0: _ZN9oceanbase6common12ObIArrayWrapIPPNS_3sql20ObAggregateProcessor8GroupRowEEC2EPS6_l:3598 + 0: 257 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:7196 + 0: 257 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:5397 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:5397 + 2: 257 + 8: 257 + 33: _ZN9oceanbase3sql11RemovalInfoC2Ev:7710 + 1: 257 + 2: 257 + 4: 257 + 5: 257 + 35.5: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:0 + 0: 0 +_ZN9oceanbase3sql12ObDMLService19write_row_to_das_opILi3EEEiRKNS0_17ObDASDMLBaseCtDefERNS0_17ObDASDMLBaseRtDefEPKNS0_14ObDASTabletLocERNS0_10ObDMLRtCtxERKNS_6common12ObFixedArrayIPNS0_6ObExprENSD_12ObIAllocatorEEE:134705:398 + 5: 365 + 6: 365 + 14: 365 + 17: 365 + 19: 334 + 20.1: 1 + 24: 334 + 26: 1 + 26.1: 334 + 26.2: 334 + 27: 1 + 31.1: 1 + 36: 350 + 37: 1 + 38: 1 + 38.1: 1 + 38.2: 1 + 40.1: 361 + 40.2: 350 _ZNK9oceanbase6common12ObIAllocator4usedEv:351 + 42.1: 348 + 42.2: 345 _ZN9oceanbase3sql13ObDASUpdateOp9write_rowERKNS_6common12ObFixedArrayIPNS0_6ObExprENS2_12ObIAllocatorEEERNS0_9ObEvalCtxERb:370 + 43.1: 1 + 50: 349 + 52: 0 + 52.2: 0 + 53.1: 1 + 55: 0 + 59: 1 + 61: 0 + 61.1: 0 + 62: 0 + 63.1: 1 + 64.1: 0 + 65.1: 1 + 66.1: 0 + 67.1: 1 + 74.1: 349 + 74.3: 349 + 75: 359 + 18: _ZN9oceanbase3sql8ObDASRef10has_das_opINS0_13ObDASUpdateOpEEEbPKNS0_14ObDASTabletLocERPT_:5916 + 4: 365 _ZN9oceanbase3sql8ObDASRef13find_das_taskEPKNS0_14ObDASTabletLocENS0_11ObDASOpTypeE:379 + 5: 384 + 8: 0 + 19: _ZN9oceanbase3sql8ObDASRef16prepare_das_taskINS0_13ObDASUpdateOpEEEiPKNS0_14ObDASTabletLocERPT_:13490 + 3: 354 + 4: 354 _ZN9oceanbase3sql8ObDASRef15create_das_taskEPKNS0_14ObDASTabletLocENS0_11ObDASOpTypeERPNS0_12ObIDASTaskOpE:371 + 5: 334 + 6: 334 + 22: _ZN9oceanbase3sql13ObDASUpdateOp13set_das_ctdefEPKNS0_13ObDASUpdCtDefE:3674 + 0: 334 + 23: _ZN9oceanbase3sql13ObDASUpdateOp13set_das_rtdefEPNS0_13ObDASUpdRtDefE:2338 + 0: 334 + 26.2: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql17ObDASDMLBaseCtDefEE5emptyEv:2338 + 0: 334 + 0: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql17ObDASDMLBaseCtDefEE5countEv:1336 + 0: 334 + 27: _ZN9oceanbase3sql12ObDMLService22add_related_index_infoERKNS0_14ObDASTabletLocERKNS_6common12ObFixedArrayIPNS0_17ObDASDMLBaseCtDefENS5_12ObIAllocatorEEERNS5_11ObArrayWrapIPNS0_17ObDASDMLBaseRtDefEEERNS0_12ObIDASTaskOpE:320 + 5: 1 + 9.1: 1 + 9.5: 1 + 10: 1 + 11: 1 + 12: 1 + 12.2: 1 + 13.1: 1 + 14.1: 1 + 14.3: 1 + 15.1: 1 + 16.1: 1 + 16.2: 1 + 17.1: 1 + 6.2: _ZN9oceanbase6common16ObFixedArrayImplIPKNS_3sql14ObDASBaseCtDefENS0_12ObIAllocatorEE12set_capacityEj:13 + 0: 1 + 7.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql17ObDASDMLBaseRtDefEE5countEv:3 + 0: 1 + 7.2: _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql14ObDASBaseRtDefENS0_12ObIAllocatorEE12set_capacityEj:6 + 0: 1 + 8.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql17ObDASDMLBaseCtDefEE5countEv:3 + 0: 1 + 8.2: _ZN9oceanbase6common16ObFixedArrayImplINS0_10ObTabletIDENS0_12ObIAllocatorEE12set_capacityEj:6 + 0: 1 + 11: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql17ObDASDMLBaseCtDefEE2atEl:4 + 6: 1 + 12.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql17ObDASDMLBaseCtDefEE2atEl:4 + 6: 1 + 14.2: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql17ObDASDMLBaseRtDefEE2atEl:4 + 6: 1 + 37: _ZN9oceanbase6common9EventItemC2Ev:5250 + 2: 350 + 37.1: _ZN9oceanbase6common10EventTable8instanceEv:6008 + 2: 350 + 2.1: 1 + 2.6: 1 + 2.2: _ZN9oceanbase6common10EventTableC2Ev:21 + 0: 1 + 2: 1 + 37.2: _ZN9oceanbase6common10EventTable9get_eventEl:8750 + 1.4: 350 + 37.3: _ZNK9oceanbase6common9EventItem4callEv:8873 + 2: 350 + 3: 350 + 5.1: 1 + 7.1: 1 + 8: 1 + 9.1: 1 + 11: 1 + 12: 1 + 13.1: 1 + 18: 1 + 38.1: _ZNK9oceanbase3sql13ObDASUpdateOp11get_row_cntEv:33 + 0: _ZNK9oceanbase3sql16ObDASWriteBuffer11get_row_cntEv:33 + 2: 1 + 2.3: 1 + 2.1: _ZNK9oceanbase3sql17ObChunkDatumStore11get_row_cntEv:7 + 0: 1 + 42.1: _ZN9oceanbase3sql10ObDMLRtCtx12get_eval_ctxEv:4830 + 0: _ZN9oceanbase3sql8ObDASRef12get_eval_ctxEv:4830 + 0: 345 + 55: _ZN9oceanbase3sql10ObDMLRtCtx22need_non_sub_full_taskEv:0 + 1: _ZN9oceanbase3sql13DasTaskStatus22need_non_sub_full_taskEv:0 + 0: 0 + 61: _ZN9oceanbase3sql10ObDMLRtCtx24need_pick_del_task_firstEv:0 + 1: _ZN9oceanbase3sql13DasTaskStatus24need_pick_del_task_firstEv:0 + 0: 0 + 70: _ZN9oceanbase3sql10ObDMLRtCtx5reuseEv:0 + 2: 0 +_ZN9oceanbase3sql17ObSqlTransControl9end_transERNS0_13ObExecContextEbbPNS0_23ObEndTransAsyncCallbackE:134525:526 + 4: 512 + 5: 512 + 7: 512 + 8: 512 + 15: 512 + 16: 0 + 17.1: 0 + 18.1: 512 + 20: 257 + 25: 0 + 26.1: 506 + 27: 249 + 28: 0 + 29.1: 0 + 33: 0 + 40.1: 247 _ZN9oceanbase3sql16ObSQLSessionInfo20get_raw_audit_recordEv:252 + 40.2: 248 + 41: 248 + 42: 264 _ZN9oceanbase3sql17ObSqlTransControl13do_end_trans_EPNS0_16ObSQLSessionInfoEbblPNS0_23ObEndTransAsyncCallbackE:264 + 54.1: 264 + 55: 0 + 56: 0 + 58: 0 + 61: 520 + 62: 255 + 64: 526 + 7: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:3584 + 2: 512 + 8: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:3584 + 2: 512 + 19: _ZN9oceanbase3sql27ObExclusiveEndTransCallback20set_is_need_rollbackEb:3341 + 2: 257 + 3: 257 + 20: _ZN9oceanbase3sql27ObExclusiveEndTransCallback18set_end_trans_typeENS1_12EndTransTypeE:771 + 2: 257 + 26.1: _ZNK9oceanbase3sql18ObBasicSessionInfo17is_in_transactionEv:9614 + 0: 506 + 0.1: _ZNK9oceanbase11transaction8ObTxDesc8is_in_txEv:3542 + 0: 506 + 28: _ZN9oceanbase3sql17ObSqlTransControl15inc_session_refEPKNS0_16ObSQLSessionInfoE:0 + 2: 0 + 3: 0 + 4: 0 + 5.1: 0 + 7: 0 + 7.1: 0 + 9: 0 + 31: _ZN9oceanbase3sql19ObIEndTransCallback7handoutEv:0 + 0.1: 0 + 35: _ZN9oceanbase3sql17ObSqlTransControl22reset_session_tx_stateEPNS0_16ObSQLSessionInfoEb:8330 + 2: 245 + 4: 245 + 5: 0 + 6: 0 + 7.1: 0 + 10: 245 + 10.2: 245 _ZN9oceanbase3sql17ObSqlTransControl22reset_session_tx_stateEPNS0_18ObBasicSessionInfoEb:246 + 4: _ZNK9oceanbase3sql16ObSQLSessionInfo23has_tx_level_temp_tableEv:1960 + 1: 245 + 36: _ZN9oceanbase3sql13ObExecContext19set_need_disconnectEb:2304 + 0: 256 + 40: _ZNK9oceanbase3sql18ObBasicSessionInfo9get_tx_idEv:1729 + 0.1: 247 + 41: _ZN9oceanbase3sql17ObSqlTransControl18get_stmt_expire_tsEPKNS0_17ObPhysicalPlanCtxERKNS0_16ObSQLSessionInfoE:16608 + 5: 248 + 5.1: 248 + 7: _ZNK9oceanbase3sql17ObPhysicalPlanCtx27get_trans_timeout_timestampEv:0 + 2: 0 + 11: _ZNK9oceanbase3sql18ObBasicSessionInfo17get_query_timeoutERl:9240 + 2: 264 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache20get_ob_query_timeoutEv:5544 + 0: 264 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache20get_ob_query_timeoutEb:3168 + 0: 264 + 15: _ZNK9oceanbase3sql18ObBasicSessionInfo20get_query_start_timeEv:2112 + 0: 264 + 49: _ZN9oceanbase3sql10ObSQLUtils40check_if_need_disconnect_after_end_transEibbRb:6970 + 10: 247 + 12: 0 + 12.2: 0 + 15.1: 0 + 24.1: 0 + 22: _ZN9oceanbase3sql10ObSQLUtils35is_trans_commit_need_disconnect_errEi:4994 + 4: 256 + 53: _ZN9oceanbase3sql13ObExecContext19set_need_disconnectEb:2640 + 0: 264 + 58: _ZN9oceanbase3sql17ObSqlTransControl22reset_session_tx_stateEPNS0_16ObSQLSessionInfoEb:0 + 2: 0 + 4: 0 + 5: 0 + 6: 0 + 7.1: 0 + 10: 0 + 10.2: 0 + 4: _ZNK9oceanbase3sql16ObSQLSessionInfo23has_tx_level_temp_tableEv:0 + 1: 0 + 62.1: _ZN9oceanbase3sql10TransState22set_end_trans_executedEb:5100 + 1: 255 +_ZNK9oceanbase4palf16LogSlidingWindow14get_max_log_idEv:134198:251 + 1: 242 + 2: 252 + 2: _ZNK9oceanbase4palf12LSNAllocator14get_max_log_idEv:128694 + 3: 242 + 8: 261 + 2952: 242 + 5: _ZN9oceanbase6common8TCRWLock10RLockGuardC2ERS1_:60171 + 0: _ZN9oceanbase6common8TCRWLock6rdlockEl:60171 + 3.1: 0 + 4: 0 + 5: 0 + 3.2: _ZN9oceanbase6common8TCRWLock10try_rdlockEv:60171 + 3: 242 + 5: 261 + 8.1: 0 + 4: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:1694 + 0: 242 + 4.1: _ZN9oceanbase6common5TCRef7inc_refEPi:46818 + 2: 242 + 4.1: 554 + 4.2: 554 + 6: 780 + 6.1: 261 + 10: 261 + 2: _ZN9oceanbase6common8get_itidEv:6776 + 4: 242 + 5: 0 + 6: 0 + 8: 0 + 11: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 8: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:0 + 0: 0 + 9: _ZN9oceanbase6common9LWaitCond6signalEv:0 + 2: 0 + 2.1: 0 + 3: 0 + 7: _Z7load128RoPN5types9uint128_tE:6264 + 2: 261 + 9: _ZN9oceanbase6common8TCRWLock10RLockGuardD2Ev:51326 + 0.2: 0 + 0: _ZN9oceanbase6common8TCRWLock8rdunlockEv:51326 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:1827 + 0: 261 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPi:45719 + 2: 261 + 4.1: 538 + 4.2: 538 + 6: 773 + 6.1: 252 + 10: 252 + 2: _ZN9oceanbase6common8get_itidEv:7308 + 4: 261 + 5: 0 + 6: 0 + 8: 0 + 11: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:3780 + 2: 252 + 2.1: 0 + 3: 0 +_ZN9oceanbase11transaction14ObPartTransCtx10end_accessEv:134026:1082 + 1: 1008 + 2: 1008 + 3: 1008 + 4: 1022 + 5: 1022 _ZN9oceanbase8memtable13ObMemtableCtx7dec_refEv:1106 + 7.1: 1067 _ZZN9oceanbase11transaction14ObPartTransCtx10end_accessEvENK5$_657clEPKc.93feb755617c21c32b229b78773c290c:1069 + 8.1: 1086 + 8.4: 0 + 8.5: 0 + 8.6: 0 + 8.10: 0 + 8.11: 0 + 8.12: 0 + 8.15: 0 + 8.16: 0 + 8.17: 0 + 8.18: 0 + 8.19: 0 + 8.22: 0 + 8.23: 0 + 8.24: 0 + 13: 1086 + 14.6: 1124 _ZN9oceanbase11transaction22CtxTransTableLockGuardD1Ev:1093 + 14.7: 0 + 3: _ZN9oceanbase11transaction22CtxTransTableLockGuardC2ERNS0_7CtxLockERNS0_17TransTableSeqLockEb:13944 + 3: 1113 + 5: 1113 _ZN9oceanbase11transaction17TransTableSeqLock10write_lockEv:1162 + 6.1: 0 + 3: _ZN9oceanbase11transaction12CtxLockGuardC2ERNS0_7CtxLockEb:5040 + 0: 1008 + 0.1: 1008 _ZN9oceanbase11transaction7CtxLock4lockEv:1010 + 6: _ZN9oceanbase8memtable10ObIMvccCtx20revert_callback_listEv:8688 + 0: 1086 _ZN9oceanbase8memtable18ObTransCallbackMgr20revert_callback_listEv:1127 + 8.3: _ZN9oceanbase3lib20is_trace_log_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:0 + 2: 0 + 8.7: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:0 + 0: 0 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 8.9: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:0 + 0: 0 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 8.10: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EE10check_lockEv:0 + 2: 0 + 3: _ZN9oceanbase3lib7ObMutex4lockEv:0 + 0: 0 + 8.14: _ZNK9oceanbase11transaction15ObTransHashLinkINS0_10ObTransCtxEE7get_refEv:0 + 0: 0 + 8.15: _ZN9oceanbase6common8get_itidEv:0 + 4: 0 + 5: 0 + 6: 0 + 8: 0 + 8.24: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EE12check_unlockEv:0 + 2: 0 + 3: _ZN9oceanbase3lib7ObMutex6unlockEv:0 + 0: 0 +_ZNK9oceanbase8memtable18ObMutatorRowHeader9serializeEPclRl:133908:694 + 1: 666 + 2: 666 + 3: 666 + 4: 666 + 5: 0 + 6.1: 0 + 7.1: 666 + 8.1: 0 + 9.1: 666 + 10.1: 0 + 11.1: 734 _ZNK9oceanbase6common10ObTabletID9serializeEPclRl:674 + 12.1: 0 + 14: 734 + 17: 734 + 7.1: _ZN9oceanbase6common13serialization10encode_i32EPclRli:41292 + 2.1: 666 + 3: 666 + 4: 666 + 5: 666 + 7: 666 + 8: 666 + 9.1: _ZN9oceanbase6common13serialization9encode_i8EPclRla:16650 + 2: 666 + 2.1: 666 + 4: 666 + 5: 666 +_ZN9oceanbase8memtable22ObMemtableRowCompactor23construct_compact_node_ElPNS0_15ObMvccTransNodeE:133635:54 + 2: 51 + 3: 51 + 4: 51 _ZN9oceanbase12blocksstable11ObRowReaderC1Ev:52 + 5: 52 _ZN9oceanbase12blocksstable10ObDatumRowC1Ev:55 + 6: 56 _ZN9oceanbase12blocksstable10ObDatumRowC1Ev:58 + 7: 64 + 8: 64 + 11: 64 + 15: 64 + 16: 0 + 17.1: 0 + 18.2: 70 + 19.1: 0 + 20.2: 70 + 21: 1 + 22.1: 1 + 23.1: 70 _ZN9oceanbase12blocksstable10ObDatumRow4initEl:71 + 23.2: 69 + 24.1: 0 + 29.1: 140 + 29.3: 140 + 31: 144 + 33: 144 _ZN9oceanbase8memtable22ObMemtableRowCompactor36try_cleanout_tx_node_during_compact_ERNS_7storage14ObTxTableGuardEPNS0_15ObMvccTransNodeE:148 + 33.1: 146 + 34.1: 0 + 35.1: 146 + 35.2: 146 + 35.4: 145 + 36: 0 + 37.1: 0 + 39.1: 0 + 40: 0 + 42.1: 147 + 43: 0 + 44.1: 0 + 45.1: 148 + 47.1: 148 + 48.1: 0 + 49: 0 + 51.1: 145 + 51.2: 65 + 52: 0 + 53.1: 144 + 54: 66 + 55: 66 _ZN9oceanbase12blocksstable11ObRowReader15read_row_headerEPKclRPKNS0_11ObRowHeaderE:67 + 55.1: 62 + 56.1: 0 + 57.1: 62 + 58: 0 + 59.1: 0 + 64: 141 + 65: 141 + 67: 64 + 68: 7 _ZN9oceanbase12blocksstable11ObRowReader8read_rowEPKclPKNS_7storage15ObTableReadInfoERNS0_10ObDatumRowE:6 + 68.1: 8 + 69.1: 0 + 72: 8 + 75: 8 + 78: 57 + 80.1: 81 _ZN9oceanbase12blocksstable11ObRowReader8read_rowEPKclPKNS_7storage15ObTableReadInfoERNS0_10ObDatumRowE:81 + 80.2: 90 + 81.1: 0 + 82.2: 90 _ZN9oceanbase12blocksstable10ObDatumRow7reserveElb:92 + 82.3: 91 + 83.1: 0 + 85.1: 91 + 86: 91 + 87: 60 + 90.2: 342 + 90.5: 342 + 91: 343 + 91.1: 280 + 92: 280 + 96: 73 + 97: 73 + 99: 0 + 102: 73 + 107: 58 + 110: 58 + 111.2: 60 + 111.3: 1 + 111.4: 1 + 111.5: 1 + 111.6: 1 + 111.10: 1 + 111.11: 1 + 111.12: 1 + 112: 61 + 112.4: 58 + 112.6: 58 _ZN9oceanbase6common2SVINS_12blocksstable11ObRowWriterELb0EEC2IZNS_8memtable22ObMemtableRowCompactor23construct_compact_node_ElPNS6_15ObMvccTransNodeEE5$_651EEibOT_.1dd22efca7fa83ae50e8099a04ad3959:59 + 112.7: 55 + 112.9: 55 _ZN9oceanbase12blocksstable11ObRowWriterC1Ev:54 + 112.10: 58 + 112.13: 58 + 113: 58 + 114: 58 + 115: 58 _ZN9oceanbase12blocksstable11ObRowWriter5writeElRKNS0_10ObDatumRowERPcRl:57 + 115.1: 70 + 116.1: 0 + 117.1: 70 + 118: 0 + 119.1: 0 + 122: 70 + 123: 70 + 124.1: 70 + 126: 70 _ZN9oceanbase6common20ObGMemstoreAllocator11AllocHandle5allocEl:70 + 126.1: 53 + 127: 0 + 128.1: 0 + 129.2: 62 + 130.1: 0 + 131.1: 62 _ZNK9oceanbase8memtable15ObMvccTransNode12is_lock_nodeERb:62 + 131.2: 60 + 132.1: 0 + 133.1: 60 + 134: 1 + 135.1: 1 + 136.1: 60 + 137: 0 + 138.1: 0 + 140: 60 + 141: 60 + 142: 60 + 143: 60 + 144: 60 + 145: 60 + 146: 60 + 147: 60 + 148: 60 + 149: 60 _ZN9oceanbase8memtable15ObMvccTransNode28set_snapshot_version_barrierEl:61 + 154: 70 + 154.1: 63 _ZN9oceanbase6common2SVINS_12blocksstable11ObRowWriterELb0EED2Ev:66 + 154.3: 0 + 155: 70 + 156.37: 69 + 156.39: 0 + 156.40: 0 + 156.43: 70 _ZN9oceanbase12blocksstable10ObDatumRowD1Ev:73 + 156.44: 48 _ZN9oceanbase12blocksstable10ObDatumRowD1Ev:51 + 156.45: 73 _ZN9oceanbase12blocksstable11ObRowReaderD2Ev:72 + 9: _ZN9oceanbase7storage14ObTxTableGuardC2Ev:1152 + 0: 64 + 18.1: _ZN9oceanbase8memtable10ObMemtable18get_tx_table_guardERNS_7storage14ObTxTableGuardE:3010 + 2: 64 + 4: 64 + 5: 0 + 6.1: 0 + 7.1: 70 + 8.1: 0 + 11: 0 + 7.1: _ZN9oceanbase7storage4ObLS18get_tx_table_guardIJRNS0_14ObTxTableGuardEEEEiDpOT_:960 + 0: 64 + 0.1: 64 _ZN9oceanbase7storage9ObTxTable18get_tx_table_guardERNS0_14ObTxTableGuardE:70 + 20.1: _ZNK9oceanbase7storage14ObTxTableGuard8is_validEv:560 + 0: 70 + 35.1: _ZNK9oceanbase8memtable15ObMvccTransNode10is_abortedEv:2946 + 0: 146 + 35.3: _ZNK9oceanbase8memtable15ObMvccTransNode12is_committedEv:1305 + 61: _ZNK9oceanbase12blocksstable11ObRowHeader16get_rowkey_countEv:310 + 0: 62 + 74: _ZN9oceanbase12blocksstable12ObDmlRowFlag8set_flagENS0_9ObDmlFlagE:128 + 3: 8 + 82.1: _ZNK9oceanbase12blocksstable10ObDatumRow16get_column_countEv:630 + 0: 90 + 85: _ZNK9oceanbase12blocksstable10ObDatumRow16get_column_countEv:637 + 0: 91 + 88: _ZN9oceanbase12blocksstable12ObDmlRowFlag8set_flagENS0_9ObDmlFlagE:1624 + 2: 60 + 2.2: 60 + 3: 60 + 90.1: _ZNK9oceanbase12blocksstable10ObDatumRow16get_column_countEv:2394 + 0: 342 + 91: _ZNK9oceanbase6common7ObDatum6is_nopEv:6881 + 0: 343 + 0.1: 280 + 0: _ZNK9oceanbase6common11ObDatumDesc6is_extEv:2058 + 0: 343 + 0.1: _ZNK9oceanbase6common5ObObj12is_nop_valueEv:2800 + 2: 280 + 2.1: 280 + 92: _ZN9oceanbase12blocksstable14ObStorageDatumaSERKS1_:21898 + 2: 280 + 4: 280 + 5: 284 + 7.1: 284 + 8: 182 + 9: 182 + 10: 171 + 12: 104 + 3: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:5040 + 0: 280 + 5: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:560 + 0: 280 + 7.1: _ZNK9oceanbase12blocksstable14ObStorageDatum12is_local_bufEv:3408 + 0: 284 + 111.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:302 + 2: 58 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:59 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:240 + 2: 60 + 112.2: _ZN9oceanbase6common8precheckINS_12blocksstable11ObRowWriterEEEibRb:358 + 6: 59 _ZN9oceanbase6common15check_from_heapEiRb:58 + 112.12: _ZN9oceanbase6common2SVINS_12blocksstable11ObRowWriterELb0EE3getEv:4 + 2: 1 + 129.1: _ZN9oceanbase8memtable20ObMemtableDataHeader5buildINS0_14ObMemtableDataEEEiPS1_PKT_:2018 + 3: 53 + 5.1: 53 + 10: 53 + 7.1: _ZN9oceanbase8memtable20ObMemtableDataHeaderC2ENS_12blocksstable9ObDmlFlagEl:424 + 1: 53 + 140: _ZN9oceanbase11transaction9ObTransIDaSERKS1_:360 + 1: 60 + 156.37: _ZN9oceanbase7storage14ObTxTableGuardD2Ev:2240 + 0: _ZN9oceanbase7storage14ObTxTableGuard5resetEv:2240 + 2: 70 + 3: 70 + 4: 70 + 156.38: _ZN9oceanbase7storage14ObTxTableGuardD2Ev:0 + 0: _ZN9oceanbase7storage14ObTxTableGuard5resetEv:0 + 2: 0 + 3: 0 + 4: 0 + 156.41: _ZN9oceanbase12blocksstable11ObRowReaderD2Ev:0 + 0: 0 + 0.2: 0 +_ZN9oceanbase4palf16LogSlidingWindow10submit_logEPKcllRNS0_3LSNERl:133490:266 + 5: 253 + 6: 253 + 7: 253 + 8: 253 + 10: 253 + 12: 253 + 14: 253 + 16: 253 + 18: 253 + 19: 0 + 20.1: 253 + 21: 0 + 22.1: 0 + 23.1: 253 _ZN9oceanbase4palf16LogSlidingWindow26leader_can_submit_new_log_El:253 + 24: 239 + 24.1: 239 _ZNK9oceanbase4palf16LogSlidingWindow14get_max_log_idEv:249 + 24.2: 250 + 25: 0 + 26.1: 0 + 29.1: 270 _ZN9oceanbase4palf12LSNAllocator12alloc_lsn_tsEllRNS0_3LSNERlS4_RbS5_S4_:271 + 29.2: 262 + 31.1: 0 + 32.1: 262 _ZN9oceanbase4palf16LogSlidingWindow26leader_wait_sw_slot_ready_El:267 + 32.2: 208 + 33.1: 0 + 35.1: 208 _ZZN9oceanbase4palf16LogSlidingWindow10submit_logEPKcllRNS0_3LSNERlENK5$_105clES3_.0e4bf25207570af14a78557c8489c4fc:221 + 37: 253 + 38: 253 + 39: 253 + 41: 0 + 42: 0 + 42.1: 0 + 44.1: 0 + 46.1: 0 + 46.2: 0 + 47.1: 0 + 47.2: 0 + 49.1: 0 + 51.1: 0 + 51.2: 0 + 53.1: 0 + 56: 0 + 57: 0 + 58: 0 + 61: 256 + 63: 256 + 64: 256 + 66: 12 + 67: 12 _ZN9oceanbase4palf16LogSlidingWindow20try_freeze_prev_log_ElRKNS0_3LSNERb:13 + 67.1: 7 + 68.1: 0 + 69.1: 7 + 69.2: 6 + 70.1: 10 _ZN9oceanbase4palf16LogSlidingWindow23generate_new_group_log_ERKNS0_3LSNElllRKNS0_7LogTypeEPKclRb:7 + 70.2: 10 + 72.1: 0 + 73.1: 10 + 73.2: 0 + 75.1: 9 _ZZN9oceanbase4palf16LogSlidingWindow10submit_logEPKcllRNS0_3LSNERlENK5$_111clES3_.0e4bf25207570af14a78557c8489c4fc:9 + 80: 261 _ZN9oceanbase4palf16LogSlidingWindow20append_to_group_log_ERKNS0_3LSNElllPKclRb:255 + 80.1: 261 + 81.1: 0 + 82.1: 261 + 82.2: 1 + 84.1: 247 _ZZN9oceanbase4palf16LogSlidingWindow10submit_logEPKcllRNS0_3LSNERlENK5$_113clES3_.0e4bf25207570af14a78557c8489c4fc:275 + 90: 272 + 95: 9 + 96: 9 _ZN9oceanbase4palf16LogSlidingWindow23handle_next_submit_log_ERb:9 + 99: 259 + 100.19: 259 + 17: _ZN9oceanbase4palf3LSNC2Ev:1012 + 2: _ZN9oceanbase4palf3LSN5resetEv:1012 + 2: 253 + 24.2: _ZNK9oceanbase4palf16LogSlidingWindow29leader_can_submit_larger_log_El:5530 + 4: 252 _ZNK9oceanbase4palf16LogSlidingWindow12get_start_idEv:260 + 5: 252 + 14: 0 + 15.1: 0 + 62: _ZN9oceanbase4palf3LSNaSERKS1_:2048 + 2: 256 +_ZN9oceanbase3sql17ObChunkDatumStore4initElmlPKcbjl:132444:1052 + 8: 1014 + 10: 1014 + 11: 1014 + 12: 1014 + 13: 1014 + 14: 1014 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:1023 + 15: 999 + 17: 0 + 19: 999 + 20: 999 + 21: 999 + 22: 999 + 23: 999 + 24: 999 + 25: 999 + 20: _ZSt3maxIlERKT_S2_S2_:11988 + 5: 999 +_ZN9oceanbase8memtable13ObMemtableCtx24reset_conflict_trans_idsEv:132426:1143 + 1: 1051 + 4: 1051 + 2: _ZN9oceanbase6common20ObSmallSpinLockGuardINS0_15ObSmallSpinLockIhLl0ELl500ELl100EEEEC2ERS3_:27326 + 0: _ZN9oceanbase6common15ObSmallSpinLockIhLl0ELl500ELl100EE4lockEv:27326 + 3.1: 1051 + 5: 0 + 7: 0 + 9: 0 + 3.1: _ZN9oceanbase6common15ObSmallSpinLockIhLl0ELl500ELl100EE8try_lockEv:25224 + 3: 1051 + 4: 1051 + 5: 1051 + 3: _ZN9oceanbase6common11ObArrayImplINS_11transaction9ObTransIDENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE5resetEv:71468 + 0: 1051 + 0: _ZN9oceanbase6common11ObArrayImplINS_11transaction9ObTransIDENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE7destroyEv:46244 + 2: 1051 + 3.1: 0 + 3.3: 0 + 4: 0 + 6: 0 + 7: 0 + 9: 1051 + 11: 1051 + 4: _ZN9oceanbase11transaction9ObTransIDD2Ev:0 + 0: 0 + 4: _ZN9oceanbase6common20ObSmallSpinLockGuardINS0_15ObSmallSpinLockIhLl0ELl500ELl100EEEED2Ev:14714 + 0: _ZN9oceanbase6common15ObSmallSpinLockIhLl0ELl500ELl100EE6unlockEv:14714 + 2: 1051 + 3: 1051 + 4.1: _ZN9oceanbase6common20ObSmallSpinLockGuardINS0_15ObSmallSpinLockIhLl0ELl500ELl100EEEED2Ev:0 + 0: _ZN9oceanbase6common15ObSmallSpinLockIhLl0ELl500ELl100EE6unlockEv:0 + 2: 0 + 3: 0 +_ZN9oceanbase3sql17ObSqlTransControl20explicit_start_transERNS0_13ObExecContextEb:132313:270 + 1: 247 + 2: 247 + 3: 247 + 4: 247 + 5: 247 + 6: 247 + 7: 247 + 8: 247 + 10: 247 + 11: 0 + 12.1: 0 + 13.2: 247 + 15: 0 + 16.1: 0 + 17.2: 247 + 18: 0 + 19.1: 0 + 20.2: 228 + 21.1: 228 + 21.2: 228 + 23.2: 228 + 24.1: 228 + 24.3: 228 _ZN9oceanbase3sqlL14get_tx_serviceEPNS0_18ObBasicSessionInfoERPNS_11transaction14ObTransServiceE.2477d7488918a1107364fd115ff965f5:230 + 24.4: 213 + 25.1: 0 + 27: 213 + 28: 213 + 29: 213 _ZNK9oceanbase3sql18ObBasicSessionInfo16get_tx_isolationEv:224 + 29.1: 205 + 30: 205 + 31: 205 + 32: 205 + 32.1: 205 + 35: 205 + 36.1: 205 + 37.1: 0 + 39: 279 _ZN9oceanbase11transaction14ObTransService10release_txERNS0_8ObTxDescE:279 + 40: 231 + 43: 231 + 43.1: 231 _ZN9oceanbase11transaction14ObTransService10acquire_txERPNS0_8ObTxDescEj:241 + 43.2: 293 + 44.1: 0 + 45.1: 293 _ZN9oceanbase11transaction14ObTransService8start_txERNS0_8ObTxDescERKNS0_9ObTxParamE:293 + 45.2: 282 + 46.1: 0 + 47: 0 + 48: 0 + 50: 282 + 51: 282 + 54.2: 317 + 54.3: 0 + 54.4: 0 + 54.7: 0 + 54.8: 0 + 54.9: 0 + 54.10: 0 + 54.14: 0 + 54.16: 0 + 54.18: 0 + 54.20: 0 + 54.23: 0 + 54.24: 0 + 54.25: 0 + 54.26: 0 + 54.28: 0 + 54.31: 0 + 54.33: 0 + 54.34: 0 + 61: 311 + 62.15: 311 + 3: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:1729 + 2: 247 + 4: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:1729 + 2: 247 + 13.1: _ZNK9oceanbase3sql18ObBasicSessionInfo9is_zombieEv:1729 + 0: 247 + 17.1: _ZNK9oceanbase3sql18ObBasicSessionInfo17is_in_transactionEv:4693 + 0: 247 + 0.1: _ZNK9oceanbase11transaction8ObTxDesc8is_in_txEv:1729 + 0: 247 + 20.1: _ZN9oceanbase3sql17ObSqlTransControl19get_org_cluster_id_EPNS0_16ObSQLSessionInfoERl:19214 + 2: 247 + 4.1: 247 + 6: 247 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:247 + 12: 234 + 13: 0 + 14.1: 0 + 18: 0 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo21get_ob_org_cluster_idERl:9633 + 2: 247 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache21get_ob_org_cluster_idEv:7904 + 0: 247 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache21get_ob_org_cluster_idEb:5434 + 0: 247 + 21.1: _ZNK9oceanbase3sql18ObBasicSessionInfo14get_tx_timeoutERl:9120 + 2: 228 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache18get_ob_trx_timeoutEv:7524 + 0: 228 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache18get_ob_trx_timeoutEb:5244 + 0: 228 + 23.1: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:1596 + 0: 228 + 32: _ZNK9oceanbase3sql18ObBasicSessionInfo20get_trx_lock_timeoutEv:10045 + 2: 205 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache23get_ob_trx_lock_timeoutEv:9430 + 0: 205 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache23get_ob_trx_lock_timeoutEb:4715 + 0: 205 + 34: _ZN9oceanbase3sql18ObBasicSessionInfo11get_tx_descEv:1435 + 0: 205 + 36: _ZNK9oceanbase11transaction8ObTxDesc13get_tenant_idEv:820 + 0: 205 + 43: _ZNK9oceanbase3sql18ObBasicSessionInfo10get_sessidEv:1386 + 0: 231 + 50.1: _ZN9oceanbase11transaction9ObTransIDaSERKS1_:1974 + 1: 282 + 51: _ZN9oceanbase3sql18ObBasicSessionInfo24set_explicit_start_transEb:3102 + 0: _ZN9oceanbase3sql18ObBasicSessionInfo10TransFlags24set_explicit_start_transEb:3102 + 0: _ZN9oceanbase3sql18ObBasicSessionInfo10TransFlags8set_flagEbm:3102 + 3: 282 + 54.1: _ZN9oceanbase3lib20is_trace_log_enabledEv:2501 + 2: 282 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:282 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:2219 + 2: 317 + 54.6: _ZN9oceanbase3lib20is_trace_log_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:0 + 2: 0 + 54.11: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:0 + 0: 0 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 54.13: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:0 + 0: 0 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 54.15: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl189ELl1600EE10check_lockEv:0 + 2: 0 + 3: _ZN9oceanbase3lib7ObMutex4lockEv:0 + 0: 0 + 54.19: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl189ELl1600EE10get_bufferEv:0 + 0: 0 + 54.21: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl189ELl1600EE14get_buffer_posEv:0 + 0: 0 + 54.23: _ZNK9oceanbase3sql18ObBasicSessionInfo20get_query_start_timeEv:0 + 0: 0 + 54.35: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl189ELl1600EE12check_unlockEv:0 + 2: 0 + 3: _ZN9oceanbase3lib7ObMutex6unlockEv:0 + 0: 0 +_ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocEE8insert__ERKS2_PS3_iPS9_:132258:249 + 1: 230 + 2: 230 + 4: 230 + 5: 0 + 6.1: 0 + 7.1: 230 + 8: 0 + 9.1: 0 + 11: 230 + 12: 230 + 15.1: 258 + 16.1: 37 + 24: 274 + 25: 252 + 26: 36 + 28: 262 + 29: 262 + 30: 262 + 31.1: 262 + 33: 0 + 34: 0 + 36: 0 + 40: 295 + 11: _ZNK9oceanbase11transaction9ObTransID4hashEv:13340 + 2: _ZN9oceanbase6common10murmurhashEPKvim:13340 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:13340 + 13: 230 + 14: 230 + 15: 230 + 17: 230 + 18: 230 + 41: 230 + 42: 230 + 43: 230 + 12: _ZN9oceanbase6common8get_itidEv:6440 + 4: 230 + 5: 0 + 6: 0 + 8: 0 + 12.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocEE16BucketWLockGuardC2ERKNS_6common10SpinRWLockEm:39372 + 1: 230 + 4: 230 + 5: 0 + 6.1: 0 + 8: 258 + 9.1: 0 + 11: 258 + 4: _ZN9oceanbase6common8get_itidEv:2760 + 4: 230 + 5: 0 + 6: 0 + 8: 230 + 4.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocEE15get_thread_nodeEv:5750 + 2: 230 + 2.1: 0 + 2.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocEE4NodeC2Ev:0 + 0: 0 + 4.2: _ZNK9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocEE4Node13get_thread_idEv:4370 + 0: 230 + 8: _ZN9oceanbase6common10SpinRWLock6wrlockEl:4830 + 0: 230 _ZN9oceanbase6common7ObLatch6wrlockEjlPKj:234 + 12: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocEE15get_thread_nodeEv:6450 + 2: 258 + 2.1: 0 + 2.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocEE4NodeC2Ev:0 + 0: 0 + 12.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocEE4Node13set_thread_idEl:4902 + 0: 258 + 16: _ZNK9oceanbase11transaction8ObTxDesc7containERKNS0_9ObTransIDE:583 + 0: _ZNK9oceanbase11transaction9ObTransIDeqERKS1_:583 + 1: 37 + 24: _ZN9oceanbase11transaction15ObTransHashLinkINS0_8ObTxDescEE7inc_refEi:2608 + 2: 274 + 3.1: 0 + 5: 252 + 35: _ZN9oceanbase11transaction15ObTransHashLinkINS0_8ObTxDescEE7inc_refEi:0 + 2: 0 + 3.1: 0 + 5: 0 + 39: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocEE16BucketWLockGuardD2Ev:0 + 2: 0 + 3: 0 + 3.1: 0 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase6common10SpinRWLock6unlockEv:0 + 0: 0 + 6: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocEE15get_thread_nodeEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocEE4NodeC2Ev:0 + 0: 0 + 6.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocEE4Node5resetEv:0 + 0: 0 + 39.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocEE16BucketWLockGuardD2Ev:22573 + 2: 272 + 3: 272 + 3.1: 295 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase6common10SpinRWLock6unlockEv:816 + 0: 272 _ZN9oceanbase6common7ObLatch6unlockEPKj:283 + 6: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocEE15get_thread_nodeEv:7375 + 2: 295 + 2.1: 0 + 2.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocEE4NodeC2Ev:0 + 0: 0 + 6.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocEE4Node5resetEv:6785 + 0: 295 +_ZNK9oceanbase8observer11ObSMHandler10get_sessidEP17easy_connection_t:132076:4738 + 1: 4717 + 3: 4717 + 3.1: 4717 + 6: 4717 + 8: 4717 +_ZN9oceanbase3sql12ObGlobalHint5resetEv:131552:515 + 1: 494 + 3: 494 + 4: 494 + 6: 494 + 7: 494 + 9: 494 + 10: 494 + 11: 494 + 14: 494 + 15: 494 + 16: 494 + 20: 502 + 21: 502 + 24: 502 + 13: _ZN9oceanbase6common8ObString5resetEv:3458 + 3: 494 + 18: _ZN9oceanbase6common11ObArrayImplINS_3sql13ObMonitorHintENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE5reuseEv:17290 + 3: 494 + 6: 0 + 4: _ZN9oceanbase6common11ObArrayImplINS_3sql13ObMonitorHintENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE13do_clear_funcERS6_:9386 + 3: 494 + 4: 494 + 19: _ZN9oceanbase6common11ObArrayImplINS_3sql9ObDopHintENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE5reuseEv:19570 + 3: 515 + 6: 0 + 4: _ZN9oceanbase6common11ObArrayImplINS_3sql9ObDopHintENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE13do_clear_funcERS6_:11330 + 3: 515 + 4: 515 + 22: _ZN9oceanbase3sql14ObOptParamHint5resetEv:21084 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_3sql14ObOptParamHint12OptParamTypeELl1ENS0_19ModulePageAllocatorELb1EE5reuseEv:10542 + 8: 502 + 9: 502 + 3: _ZN9oceanbase6common13ObSEArrayImplINS0_5ObObjELl1ENS0_19ModulePageAllocatorELb1EE5reuseEv:10542 + 8: 502 + 9: 502 + 23: _ZN9oceanbase6common11ObArrayImplINS_3sql22ObDDLSchemaVersionHintENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE5reuseEv:18574 + 3: 502 + 6: 0 + 4: _ZN9oceanbase6common11ObArrayImplINS_3sql22ObDDLSchemaVersionHintENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE13do_clear_funcERS6_:10542 + 3: 502 + 4: 502 +_ZN9oceanbase3sql23ObExprCalcPartitionBase26calc_no_partition_locationERKNS0_6ObExprERNS0_9ObEvalCtxERNS_6common7ObDatumE:131178:257 + 3: 252 + 4: 252 + 9: 252 + 10.1: 252 _ZN9oceanbase3sql8ObDASCtx21get_das_tablet_mapperEmRNS0_17ObDASTabletMapperEPKNS_6common12ObIArrayWrapImEE:264 + 10.2: 238 + 13.1: 0 + 14.1: 238 _ZN9oceanbase3sql17ObDASTabletMapper27get_non_partition_tablet_idERNS_6common8ObIArrayINS2_10ObTabletIDEEERNS3_ImEE:242 + 14.2: 262 + 15.1: 0 + 17: 262 + 18.1: 0 + 24.1: 0 + 30.1: 262 + 30.4: 262 + 30.5: 262 + 30.6: 262 + 30.12: 262 + 33.1: 0 + 38: 262 + 39.5: 262 _ZN9oceanbase6common13ObSEArrayImplImLl1ENS0_19ModulePageAllocatorELb0EED2Ev:263 + 39.6: 0 + 39.7: 0 + 39.9: 276 _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl1ENS0_19ModulePageAllocatorELb0EED2Ev:285 + 6: _ZN9oceanbase3sql17ObDASTabletMapperC2Ev:3528 + 2: 252 + 7: _ZN9oceanbase6common9ObSEArrayINS0_10ObTabletIDELl1ENS0_19ModulePageAllocatorELb0EEC2Ev:28476 + 0.1: 252 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl1ENS0_19ModulePageAllocatorELb0EEC2ElRKS3_:24696 + 2: 252 + 5: 252 + 6: 252 + 8: 252 + 17.1: 252 + 2: _ZN9oceanbase6common8ObIArrayINS0_10ObTabletIDEEC2EPS2_l:3528 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_10ObTabletIDEEC2EPS2_l:3528 + 0: 252 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:10332 + 0: 252 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:3780 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:3780 + 2: 252 + 8: 252 + 8: _ZN9oceanbase6common9ObSEArrayImLl1ENS0_19ModulePageAllocatorELb0EEC2Ev:17136 + 0.1: 252 + 0.5: _ZN9oceanbase6common13ObSEArrayImplImLl1ENS0_19ModulePageAllocatorELb0EEC2ElRKS2_:13356 + 2: 252 + 5: 252 + 6: 252 + 8: 252 + 17.1: 252 + 2: _ZN9oceanbase6common8ObIArrayImEC2EPml:2016 + 0: _ZN9oceanbase6common12ObIArrayWrapImEC2EPml:2016 + 0: 252 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:4032 + 0: 252 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:2016 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:2016 + 2: 252 + 8: 252 + 10: _ZN9oceanbase3sql13ObExecContext11get_das_ctxEv:1008 + 0: 252 + 19: _ZN9oceanbase6common7ObDatum7set_intEl:0 + 0: 0 + 21: _ZN9oceanbase6common12ObIArrayWrapINS0_10ObTabletIDEE2atEl:0 + 6: 0 + 21.2: _ZN9oceanbase6common7ObDatum7set_intEl:0 + 0: 0 + 25: _ZN9oceanbase6common7ObDatum7set_intEl:0 + 0: 0 + 27: _ZN9oceanbase6common12ObIArrayWrapImE2atEl:0 + 6: 0 + 27.1: _ZN9oceanbase6common7ObDatum7set_intEl:0 + 0: 0 + 30.3: _ZN9oceanbase6common12ObIArrayWrapImE2atEl:1834 + 6: 262 + 30.8: _ZN9oceanbase6common12ObIArrayWrapINS0_10ObTabletIDEE2atEl:1834 + 6: 262 + 30.9: _ZNK9oceanbase6common10ObTabletID2idEv:786 + 0: 262 + 30.11: _ZN9oceanbase3sql23ObExprCalcPartitionBase25concat_part_and_tablet_idERKNS0_6ObExprERNS0_9ObEvalCtxERNS_6common7ObDatumEmm:22270 + 6: 262 + 9: 262 + 10: 0 + 11.1: 0 + 13: 262 + 14: 262 + 17: 262 + 8: _ZNK9oceanbase3sql6ObExpr15get_str_res_memERNS0_9ObEvalCtxEl:12576 + 2: _ZNK9oceanbase3sql6ObExpr13get_datum_idxERNS0_9ObEvalCtxE:2882 + 2: 262 + 2: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:1048 + 0: 262 + 2.1: _ZNK9oceanbase3sql6ObExpr15get_str_res_memERNS0_9ObEvalCtxEll:9694 + 2: 262 + 3: 262 + 4: 0 + 15: _ZN9oceanbase6common7ObDatum10set_stringEPKcl:2882 + 0: 262 +_ZN9oceanbase6common15ObIKVCacheStoreINS0_18ObKVMemBlockHandleEE12alloc_kvpairERNS0_13ObKVCacheInstEllRPNS0_13ObKVCachePairERPS2_NS0_15ObKVCachePolicyE:131043:595 + 7: 552 + 8: 552 + 9: 556 _ZNK9oceanbase6common14ObKVCacheStore14get_block_sizeEv:567 + 10: 556 + 12: 556 + 13: 556 + 15: 556 + 17: 13 + 18: 13 + 19.1: 13 + 21: 13 + 22: 13 + 24: 13 + 25.1: 13 + 28: 13 + 31: 13 + 32.1: 13 + 38: 565 _ZN9oceanbase6common14ObKVCacheStore11get_curr_mbERNS0_13ObKVCacheInstENS0_15ObKVCachePolicyE:580 + 39: 555 + 40: 591 _ZN9oceanbase6common14ObKVCacheStore14add_handle_refEPNS0_18ObKVMemBlockHandleE:565 + 41: 606 _ZN9oceanbase6common14ObKVCacheStore15mb_status_matchERNS0_13ObKVCacheInstENS0_15ObKVCachePolicyEPNS0_18ObKVMemBlockHandleE:613 + 42: 606 + 44.1: 13 + 46: 13 + 52: 13 + 56: 0 + 57: 0 + 58: 0 + 59.1: 13 + 60.1: 0 + 61: 0 + 62: 0 + 64.1: 0 + 65.1: 13 + 68.1: 0 + 71: 13 + 72: 13 + 73: 13 + 75: 583 + 11: _ZN9oceanbase6common17ObKVStoreMemBlock14get_align_sizeEll:11120 + 2: _ZN9oceanbase6common17ObKVStoreMemBlock11upper_alignEll:11120 + 2: 556 + 22: _ZN9oceanbase6common18ObKVMemBlockHandle5allocElllRPNS0_13ObKVCachePairE:923 + 4: 13 + 6.1: 13 + 9: 13 + 28: _ZN9oceanbase6common18ObKVMemBlockHandle8set_fullEd:234 + 2: 13 + 3: 13 + 42: _ZN9oceanbase6common18ObKVMemBlockHandle5allocElllRPNS0_13ObKVCachePairE:16483 + 4: 606 _ZN9oceanbase6common17ObKVStoreMemBlock5allocElllRPNS0_13ObKVCachePairE:605 + 6.1: 13 + 9: 13 + 62: _ZN9oceanbase6common18ObKVMemBlockHandle8set_fullEd:0 + 2: 0 + 3: 0 +_ZN9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EE7destroyEv:130797:2046 + 1: 2004 + 4.1: 2004 + 4.3: 0 + 9: 2014 + 10: 0 + 11: 0 + 13: 2014 + 15: 2014 + 24: 2014 + 25: 2014 + 5: _ZN9oceanbase5share6ObLSIDD2Ev:3563 + 0: _ZN9oceanbase5share6ObLSID5resetEv:3563 + 0: 509 +_ZN9oceanbase8memtable18ObRedoLogGenerator13log_submittedERKNS0_15ObCallbackScopeE:130726:250 + 1: 249 + 2: 249 + 3: 249 + 5: 249 + 6: 7 + 7.1: 7 + 8.1: 249 + 11: 1827 + 12: 1827 + 13: 1827 _ZN9oceanbase8memtable16ObITransCallback16log_submitted_cbEv:1855 + 14: 7 + 15: 7 + 17.1: 7 + 19: 1725 + 22: 1725 + 27.1: 7 + 29.1: 1853 + 34: 253 + 8.1: _ZNK9oceanbase8memtable15ObCallbackScope8is_emptyEv:3237 + 0: 249 + 0.1: 249 + 0: _ZNK9oceanbase8memtable24ObITransCallbackIteratordeEv:747 + 0: 249 + 12: _ZNK9oceanbase8memtable16ObITransCallback15need_submit_logEv:9135 + 0: 1827 + 22: _ZNK9oceanbase8memtable18ObRedoLogGenerator17check_dup_tablet_EPKNS0_16ObITransCallbackE:22943 + 6: 1846 _ZNK9oceanbase8memtable17ObMvccRowCallback16get_mutator_typeEv:1012 _ZNK9oceanbase11transaction9tablelock17ObOBJLockCallback16get_mutator_typeEv:801 + 8: 1048 _ZNK9oceanbase8memtable17ObMvccRowCallback13get_tablet_idEv:1079 + 29.1: _ZN9oceanbase8memtable24ObITransCallbackIteratorneERKS1_:12971 + 0: 1853 + 29.2: _ZN9oceanbase8memtable24ObITransCallbackIteratorppEi:14308 + 2: _ZNK9oceanbase8memtable16ObITransCallback8get_nextEv:6356 + 0: 1589 + 3: _ZNK9oceanbase8memtable16ObITransCallback8get_prevEv:7952 + 0: 1589 + 31: _ZN9oceanbase8memtable24ObITransCallbackIteratoraSERKS1_:1012 + 2: 253 +_ZN9oceanbase6common13serialization6encodeEPclRlm:130267:1036 + 1: 1015 + 2: 1044 + 2: _ZN9oceanbase6common13serialization11encode_vi64EPclRll:119044 + 3: 1015 + 4: 1054 + 5: 1054 + 6.1: 1091 + 7: 1091 + 8: 1091 + 11: 1091 + 4: _ZN9oceanbase6common13serialization19encoded_length_vi64El:24740 + 4: 1015 + 6.1: 277 + 8.1: 277 + 10.1: 277 + 12.1: 277 + 14.1: 0 + 16.1: 0 + 18.1: 0 +_ZN9oceanbase7storage15ObTableHandleV217get_lock_memtableERPNS_11transaction9tablelock14ObLockMemtableE:130113:1856 + 1: 1647 + 2: 1647 + 3: 1647 + 5: 1647 + 6: 0 + 7.1: 0 + 8.1: 1647 + 9: 0 + 10.1: 0 + 12: 1647 + 14: 1647 + 8.1: _ZNK9oceanbase7storage8ObITable16is_lock_memtableEv:6588 + 0: _ZN9oceanbase7storage8ObITable16is_lock_memtableENS1_9TableTypeE:6588 + 2: 1647 +_ZN9oceanbase11transaction12ObLSTxCtxMgr14create_tx_ctx_ERKNS0_13ObTxCreateArgERbRPNS0_14ObPartTransCtxE:129932:245 + 3: 244 + 4: 244 + 5: 244 + 6: 244 + 7: 244 + 8: 244 + 9.1: 3 + 10: 3 + 11.1: 244 + 12.1: 3 + 13: 3 + 14.1: 244 + 14.2: 237 + 15: 3 + 16.1: 237 + 16.2: 237 + 17.1: 5 + 18: 5 + 19.1: 230 + 20.1: 3 + 21: 3 + 22.1: 230 + 22.2: 243 _ZN9oceanbase11transaction12ObLSTxCtxMgr35try_wait_gts_and_inc_max_commit_ts_Ev:256 + 23.1: 3 + 24.1: 243 + 24.2: 267 _ZN9oceanbase11transaction16ObLSTxLogAdapter8get_roleERbRl:243 + 25.1: 3 + 26.1: 267 + 27: 3 + 28.1: 3 + 29.1: 267 _ZN9oceanbase11transaction17ObTransCtxFactory5allocEl:295 + 30.1: 3 + 31: 3 + 33: 267 + 35: 267 + 36: 267 _ZN9oceanbase11transaction14ObPartTransCtx4initEmRKNS_6common6ObAddrEjRKNS0_9ObTransIDElRKNS_5share6ObLSIDEmPNS0_14ObTransServiceEmlbPNS0_12ObLSTxCtxMgrEb:271 + 36.1: 248 + 50.1: 248 _ZN9oceanbase11transaction10ObTransCtx13get_ctx_guardERNS0_12CtxLockGuardE:253 + 51.1: 287 + 51.2: 271 + 53: 3 + 54: 3 + 55.1: 3 + 57: 3 + 60.1: 3 + 63.1: 271 + 63.2: 267 _ZN9oceanbase11transaction14ObPartTransCtx11start_transEv:262 + 63.3: 273 + 64.1: 3 + 66: 267 + 68: 267 _ZN9oceanbase11transaction12CtxLockGuardD1Ev:274 + 70: 274 + 71: 3 + 72: 3 + 75: 3 + 79: 274 + 80: 5 + 82: 5 + 83: 5 + 84: 5 + 85: 278 _ZN9oceanbase6common14ObTscTimestamp12get_instanceEv:273 + 85.1: 3 + 85.3: 3 + 85.4: 270 _ZN9oceanbase6common14ObTscTimestamp12current_timeEv:265 + 86.1: 3 + 88: 240 + 11.1: _ZNK9oceanbase11transaction13ObTxCreateArg8is_validEv:9272 + 3: 244 + 4: 244 + 4.1: 244 + 5: 244 + 5.1: 244 + 2: _ZNK9oceanbase5share6ObLSID8is_validEv:1220 + 0: 244 + 3.1: _ZNK9oceanbase11transaction9ObTransID8is_validEv:1220 + 0: 244 + 14.2: _ZNK9oceanbase11transaction12ObLSTxCtxMgr10is_master_Ev:3081 + 1: 237 + 1: _ZNK9oceanbase11transaction12ObLSTxCtxMgr10is_master_El:1896 + 1: 237 + 16.2: _ZNK9oceanbase11transaction12ObLSTxCtxMgr11is_blocked_Ev:3081 + 1: 237 + 1: _ZNK9oceanbase11transaction12ObLSTxCtxMgr11is_blocked_El:1896 + 2: 237 + 19.1: _ZNK9oceanbase11transaction12ObLSTxCtxMgr11is_stopped_Ev:2070 + 1: 230 + 1: _ZNK9oceanbase11transaction12ObLSTxCtxMgr11is_stopped_El:920 + 1: 230 + 22.1: _ZNK9oceanbase11transaction12ObLSTxCtxMgr10is_master_Ev:2990 + 1: 230 + 1: _ZNK9oceanbase11transaction12ObLSTxCtxMgr10is_master_El:1840 + 1: 230 + 34: _ZN9oceanbase11transaction12CtxLockGuardC2Ev:2136 + 0: 267 + 49.1: _ZN9oceanbase11transaction12ObLSTxCtxMgr22inc_total_tx_ctx_countEv:3224 + 0: 248 + 51.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE14insert_and_getERKS2_PS3_PS8_:3448 + 1: 287 _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE8insert__ERKS2_PS3_iPS8_:291 + 74: _ZN9oceanbase11transaction10ObTransCtx11set_exitingEv:24 + 0: 3 + 81: _ZN9oceanbase11transaction12CtxLockGuardC2Ev:35 + 0: 5 +_ZN9oceanbase11transaction9tablelock12ObLockMemCtx21free_lock_op_callbackEPv:129461:788 + 1: 759 + 2: 759 + 3: 657 + 4: 741 + 2: _ZN9oceanbase6common14SpinWLockGuardC2ERKNS0_10SpinRWLockE:24684 + 1: 759 + 3: 657 + 4.1: 0 + 3: _ZN9oceanbase6common10SpinRWLock6wrlockEl:14421 + 0: 759 _ZN9oceanbase6common7ObLatch6wrlockEjlPKj:802 + 3: _ZN9oceanbase11transaction9tablelock14ObArenaObjPoolINS1_17ObOBJLockCallbackELl1EE4freeEPv:58768 + 3: 657 + 4.1: 0 + 7.1: 657 + 8.1: 657 + 8.2: 1137 + 8.3: 1137 + 9: 657 + 15: 488 _ZN9oceanbase8memtable24ObMemtableCtxCbAllocator4freeEPv:504 + 4: _ZN9oceanbase6common14SpinWLockGuardD2Ev:13897 + 2: 670 + 3: 670 + 3.1: 741 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase6common10SpinRWLock6unlockEv:2010 + 0: 670 _ZN9oceanbase6common7ObLatch6unlockEPKj:771 + 4.1: _ZN9oceanbase6common14SpinWLockGuardD2Ev:0 + 2: 0 + 3: 0 + 3.1: 0 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase6common10SpinRWLock6unlockEv:0 + 0: 0 +_ZNK9oceanbase6common6ObAddr9serializeEPclRl:129344:301 + 0: 274 + 0.1: 274 + 0.2: 274 + 0.4: 0 + 0.11: 0 + 0.12: 274 + 0.13: 271 + 0.15: 0 + 0.21: 271 + 0.22: 271 + 0.24: 274 + 0.25: 0 + 0.32: 0 + 0.33: 0 + 0.35: 0 + 0.2: _ZN9oceanbase6common13serialization6encodeEPclRll:9042 + 2: _ZN9oceanbase6common13serialization11encode_vi64EPclRll:9042 + 3: 274 + 11: 274 + 0.5: _ZN9oceanbase6common7ObLogKVIRA13_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 0.13: _ZNK9oceanbase6common6ObAddr19serialize_dispatch_EPclRlSt17integral_constantIbLb0EE:5721 + 0.1: 274 _ZNK9oceanbase6common6ObAddr10serialize_EPclRl:288 + 0.3: 0 + 0.9: 0 + 0.10: 0 + 0.12: 0 + 0.11: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.22: _ZN9oceanbase6common13serialization22encode_fixed_bytes_i64EPclRll:88075 + 8: 1355 + 9: 1355 + 0.27: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.29: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.31: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.34: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase8memtable10ObIMvccCtx22register_table_lock_cbEPNS_11transaction9tablelock14ObLockMemtableEPNS3_22ObMemCtxLockOpLinkNodeE:129344:705 + 3: 639 + 4: 639 + 5: 639 + 6: 639 + 8: 13 + 9.1: 13 + 10.1: 816 + 13.1: 13 + 17: 816 + 10.1: _ZN9oceanbase8memtable10ObIMvccCtx23register_table_lock_cb_EPNS_11transaction9tablelock14ObLockMemtableEPNS3_22ObMemCtxLockOpLinkNodeERPNS3_17ObOBJLockCallbackE:70599 + 5: 639 + 6: 639 + 6.1: 13 + 6.5: 13 + 9: 639 + 10: 639 _ZN9oceanbase8memtable13ObMemtableCtx25alloc_table_lock_callbackERNS0_10ObIMvccCtxEPNS_11transaction9tablelock14ObLockMemtableE:701 + 10.1: 757 + 11: 13 + 12.1: 13 + 13.2: 757 + 17.1: 816 + 18.1: 13 + 23: 13 + 23.1: 13 + 24: 13 + 26: 13 + 6.2: _ZN9oceanbase8memtable17ObFakeStoreRowKeyC2EPKcl:910 + 0: _ZN9oceanbase6common13ObStoreRowkeyC2Ev:143 + 0: 13 + 0.1: _ZN9oceanbase6common5ObObjC2Ev:312 + 0: _ZN9oceanbase6common9ObObjMetaC2Ev:221 + 4: 13 + 2: _ZN9oceanbase6common5ObObj5resetEv:91 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:91 + 0: 13 + 3: _ZN9oceanbase6common5ObObj14set_char_valueEPKci:182 + 3: 13 + 5: _ZN9oceanbase6common13ObStoreRowkey6assignEPNS0_5ObObjEl:273 + 7: _ZN9oceanbase6common8ObRowkey6assignEPNS0_5ObObjEl:273 + 2: 13 + 3: 13 + 16: _ZN9oceanbase11transaction9tablelock17ObOBJLockCallback3setERKNS_8memtable13ObMemtableKeyEPNS1_22ObMemCtxLockOpLinkNodeE:17411 + 4: 757 + 3: _ZN9oceanbase8memtable13ObMemtableKey6encodeERKS1_:14383 + 3: 757 + 4: 757 + 17: _ZN9oceanbase8memtable10ObIMvccCtx15append_callbackEPNS0_16ObITransCallbackE:6108 + 2: 757 _ZN9oceanbase8memtable18ObTransCallbackMgr6appendEPNS0_16ObITransCallbackE:751 +_ZN9oceanbase3sql12ObDMLService10update_rowERKNS0_10ObUpdCtDefERNS0_10ObUpdRtDefEPKNS0_14ObDASTabletLocES9_RNS0_10ObDMLRtCtxE:128171:559 + 5: 536 + 8: 549 _ZN9oceanbase3sql12ObDMLService25check_dml_tablet_validityERNS0_10ObDMLRtCtxERKNS0_14ObDASTabletLocERKNS_6common12ObFixedArrayIPNS0_6ObExprENS7_12ObIAllocatorEEERKNS0_14ObDMLBaseCtDefERNS0_14ObDMLBaseRtDefE:544 + 13.1: 0 + 14.1: 559 _ZN9oceanbase3sql12ObDMLService25check_dml_tablet_validityERNS0_10ObDMLRtCtxERKNS0_14ObDASTabletLocERKNS_6common12ObFixedArrayIPNS0_6ObExprENS7_12ObIAllocatorEEERKNS0_14ObDMLBaseCtDefERNS0_14ObDMLBaseRtDefE:564 + 19.1: 0 + 20.1: 559 + 22: 165 + 23.1: 165 _ZN9oceanbase3sql13ObExecContext13get_allocatorEv:171 + 24: 175 _ZN9oceanbase3sql12ObDMLService30init_das_lock_rtdef_for_updateERNS0_10ObDMLRtCtxERKNS0_10ObUpdCtDefERNS0_10ObUpdRtDefE:180 + 25.1: 0 + 26: 0 + 27: 175 + 31: 0 + 32: 171 _ZN9oceanbase3sql12ObDMLService19write_row_to_das_opILi5EEEiRKNS0_17ObDASDMLBaseCtDefERNS0_17ObDASDMLBaseRtDefEPKNS0_14ObDASTabletLocERNS0_10ObDMLRtCtxERKNS_6common12ObFixedArrayIPNS0_6ObExprENSD_12ObIAllocatorEEE:182 + 37.1: 2 + 40.1: 387 + 42: 2 + 43: 2 + 44.1: 2 + 46.1: 0 + 47: 0 + 48.1: 0 + 49.1: 0 + 50.1: 0 + 53: 2 + 58: 2 + 63.1: 0 + 64.1: 2 + 64.2: 2 + 65: 2 + 65.1: 2 + 68.1: 0 + 69.1: 2 + 74.1: 2 + 81.1: 387 _ZN9oceanbase3sql12ObDMLService19write_row_to_das_opILi3EEEiRKNS0_17ObDASDMLBaseCtDefERNS0_17ObDASDMLBaseRtDefEPKNS0_14ObDASTabletLocERNS0_10ObDMLRtCtxERKNS_6common12ObFixedArrayIPNS0_6ObExprENSD_12ObIAllocatorEEE:398 + 86.1: 2 + 92: 491 + 7: _ZN9oceanbase3sql10ObDMLRtCtx12get_exec_ctxEv:3752 + 0: _ZN9oceanbase3sql8ObDASRef12get_exec_ctxEv:3752 + 0: 536 + 7.1: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:5896 + 2: 536 + 23: _ZN9oceanbase3sql10ObDMLRtCtx12get_exec_ctxEv:1155 + 0: _ZN9oceanbase3sql8ObDASRef12get_exec_ctxEv:1155 + 0: 165 + 27: _ZNK9oceanbase3sql17ObPhysicalPlanCtx24get_ps_timeout_timestampEv:1225 + 2: 175 + 65: _ZN9oceanbase3sql10ObDMLRtCtx12get_eval_ctxEv:14 + 0: _ZN9oceanbase3sql8ObDASRef12get_eval_ctxEv:14 + 0: 2 + 69.1: _ZN9oceanbase3sql12ObDMLService19write_row_to_das_opILi2EEEiRKNS0_17ObDASDMLBaseCtDefERNS0_17ObDASDMLBaseRtDefEPKNS0_14ObDASTabletLocERNS0_10ObDMLRtCtxERKNS_6common12ObFixedArrayIPNS0_6ObExprENSD_12ObIAllocatorEEE:1386 + 6: 2 + 14: 2 + 17: 2 + 19: 2 + 20.1: 0 + 24: 2 + 26: 0 + 26.1: 2 + 26.2: 2 + 27: 2 + 31.1: 2 + 36: 2 + 37: 0 + 38: 0 + 38.1: 0 + 38.2: 0 + 40.1: 2 + 40.2: 2 + 42.1: 2 + 42.2: 2 + 43.1: 2 + 50: 2 + 52: 2 + 52.2: 2 + 53.1: 2 + 55: 2 + 59: 0 + 61: 2 + 61.1: 2 + 62: 2 + 63.1: 0 + 64.1: 2 + 65.1: 0 + 66.1: 2 + 67.1: 0 + 74.1: 2 + 18: _ZN9oceanbase3sql8ObDASRef10has_das_opINS0_13ObDASInsertOpEEEbPKNS0_14ObDASTabletLocERPT_:52 + 4: 2 + 5: 2 + 8: 2 + 19: _ZN9oceanbase3sql8ObDASRef16prepare_das_taskINS0_13ObDASInsertOpEEEiPKNS0_14ObDASTabletLocERPT_:90 + 3: 2 + 4: 2 + 5: 2 + 6: 2 + 22: _ZN9oceanbase3sql13ObDASInsertOp13set_das_ctdefEPKNS0_13ObDASInsCtDefE:22 + 0: 2 + 23: _ZN9oceanbase3sql13ObDASInsertOp13set_das_rtdefEPNS0_13ObDASInsRtDefE:14 + 0: 2 + 26.2: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql17ObDASDMLBaseCtDefEE5emptyEv:10 + 0: 2 + 37: _ZN9oceanbase6common9EventItemC2Ev:30 + 2: 2 + 37.1: _ZN9oceanbase6common10EventTable8instanceEv:34 + 2: 2 + 2.1: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common10EventTableC2Ev:0 + 0: 0 + 2: 0 + 37.2: _ZN9oceanbase6common10EventTable9get_eventEl:44 + 1.4: 2 + 37.3: _ZNK9oceanbase6common9EventItem4callEv:50 + 2: 2 + 3: 2 + 4: 2 + 5.1: 0 + 7.1: 0 + 8: 0 + 9.1: 0 + 11: 0 + 12: 0 + 13.1: 0 + 18: 0 + 38.1: _ZNK9oceanbase3sql13ObDASInsertOp11get_row_cntEv:0 + 0: _ZNK9oceanbase3sql16ObDASWriteBuffer11get_row_cntEv:0 + 2: 0 + 2.3: 0 + 2.1: _ZNK9oceanbase3sql17ObChunkDatumStore11get_row_cntEv:0 + 0: 0 + 42.1: _ZN9oceanbase3sql10ObDMLRtCtx12get_eval_ctxEv:14 + 0: _ZN9oceanbase3sql8ObDASRef12get_eval_ctxEv:14 + 0: 2 + 55: _ZN9oceanbase3sql10ObDMLRtCtx22need_non_sub_full_taskEv:18 + 1: _ZN9oceanbase3sql13DasTaskStatus22need_non_sub_full_taskEv:18 + 0: 2 + 61: _ZN9oceanbase3sql10ObDMLRtCtx24need_pick_del_task_firstEv:4 + 1: _ZN9oceanbase3sql13DasTaskStatus24need_pick_del_task_firstEv:4 + 0: 2 + 70: _ZN9oceanbase3sql10ObDMLRtCtx5reuseEv:16 + 2: 2 +_ZN9oceanbase6common12ObSliceAlloc5allocEv:127541:507 + 0: 500 + 5: 500 + 6: 500 + 8: 0 + 9: 0 + 9.1: 0 + 9.3: 0 + 9.4: 0 + 10.1: 0 + 13.1: 550 + 13.3: 550 + 14: 529 + 16: 529 + 17: 9 _ZN9oceanbase6common12ObSliceAlloc13prepare_blockEv:9 + 18: 7 + 20: 0 + 22: 7 + 28: 520 + 30: 520 + 31: 562 _ZN9oceanbase6common13ObBlockSlicer10alloc_itemEv:569 + 44: 539 + 44.3: 551 + 9: _ZN9oceanbase6common14ObTscTimestamp12get_instanceEv:0 + 2: 0 + 2.1: 0 + 2.3: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common14ObTscTimestampC2Ev:0 + 1: 0 + 14: _ZN9oceanbase6common8get_itidEv:14812 + 4: 529 + 5: 0 + 6: 0 + 8: 0 + 15: _ZN9oceanbase6common12ObSliceAlloc5Arena3blkEv:2116 + 0: 529 + 22: _ZN9oceanbase6common12ObSliceAlloc5Arena3casEPNS0_13ObBlockSlicerES4_:56 + 0: 7 + 23: _ZN9oceanbase6common12ObSliceAlloc13release_blockEPNS0_13ObBlockSlicerE:0 + 1: 0 + 2: 0 + 1: _ZN9oceanbase6common11ObStockCtrl7releaseEv:0 + 0: 0 + 0: _ZN9oceanbase6common11ObStockCtrl3faaEi:0 + 0: 0 + 28: _ZN9oceanbase6common13ObBlockSlicer4hashEm:26520 + 2: 520 + 3: 520 + 4: 520 + 5: 520 + 6: 520 + 29: _ZN9oceanbase6common12ObSimpleSync3refEi:4680 + 0: 520 + 30: _ZN9oceanbase6common12ObSliceAlloc5Arena3blkEv:2080 + 0: 520 + 32: _ZN9oceanbase6common12ObSliceAlloc5Arena3casEPNS0_13ObBlockSlicerES4_:126 + 0: 7 + 37: _ZN9oceanbase6common12ObSimpleSync3refEi:4885 + 0: 535 + 39.1: _ZN9oceanbase6common12ObSimpleSync4syncEv:553 + 1.1: 39 + 2: 31 + 40: _ZN9oceanbase6common12ObSliceAlloc13release_blockEPNS0_13ObBlockSlicerE:112 + 1: 8 + 2: 0 + 1: _ZN9oceanbase6common11ObStockCtrl7releaseEv:104 + 0: 8 + 0: _ZN9oceanbase6common11ObStockCtrl3faaEi:88 + 0: 8 +_ZN9oceanbase12blocksstable16ObTmpFileManager9alloc_dirERl:127246:974 + 1: 893 + 2: 893 + 3: 893 + 4: 0 + 5.1: 0 + 6.1: 876 + 7.1: 0 + 9: 876 + 6.1: _ZN9oceanbase12blocksstable16ObTmpFileManager12get_next_dirERl:89978 + 4: 876 + 3: _ZN9oceanbase12blocksstable16ObTmpFileManager10next_valueERlS2_:66326 + 2: 893 + 5.1: 893 + 6: 893 + 7: 893 + 8: 893 +_ZNK9oceanbase11transaction11ObCtxTxData14get_end_log_tsEv:127242:1393 + 1: 1336 + 2: 1336 + 3: 1309 + 3.3: 1309 + 4: 1272 + 2: _ZN9oceanbase6common14SpinRLockGuardC2ERKNS0_10SpinRWLockE:35829 + 1: 1336 + 3: 1309 + 4.1: 0 + 5: 0 + 3: _ZN9oceanbase6common10SpinRWLock6rdlockEl:18704 + 0: 1336 _ZN9oceanbase6common7ObLatch6rdlockEjl:1393 + 4: _ZN9oceanbase6common14SpinRLockGuardD2Ev:23303 + 2: 1309 + 3: 1309 + 3.1: 1272 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase6common10SpinRWLock6unlockEv:3927 + 0: 1309 _ZN9oceanbase6common7ObLatch6unlockEPKj:1329 +_ZN9oceanbase8memtable13ObMemtableCtx5resetEv:127227:514 + 1: 489 + 2: 489 + 3: 221 + 3.1: 6 + 3.2: 6 + 3.4: 6 + 3.5: 6 + 4.1: 6 + 6: 221 + 7.1: 6 + 9: 221 + 10.1: 6 + 12: 6 + 14: 221 + 15.1: 6 + 17: 6 + 19: 221 + 24: 221 + 26: 221 + 32: 221 _ZN9oceanbase11transaction9tablelock12ObLockMemCtx5resetEv:225 + 34: 272 + 36: 6 + 41: 265 _ZN9oceanbase8memtable18ObTransCallbackMgr5resetEv:266 + 43: 265 + 45: 265 + 46: 265 + 53: 568 + 31: _ZN9oceanbase11transaction25ObPartitionAuditInfoCache5resetEv:9298 + 1: 272 + 33: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:19718 + 4.1: 272 + 6: 6 + 7: 6 + 13: 272 + 14: 272 + 15: 272 + 18: 272 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:36 + 0: 6 + 5.1: _ZL12abort_unlessb:132 + 5: 6 + 6: 6 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:852 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:852 + 0: 6 + 0.2: 6 + 0.1: _ZN9oceanbase6common7ob_freeEPv:552 + 2: 6 + 3: 6 + 4: 6 + 5: 6 + 4: _ZL12abort_unlessb:126 + 5: 6 + 6: 6 + 35: _ZN9oceanbase8memtable24ObMemtableCtxCbAllocator4freeEPv:126 + 5.1: 6 + 6: 6 + 40: _ZN9oceanbase8memtable15MemtableCtxStat5resetEv:4330 + 2: 295 + 42: _ZN9oceanbase8memtable18ObRedoLogGenerator5resetEv:7420 + 2: 265 + 3: 265 + 48: _ZN9oceanbase7storage14ObTxTableGuard5resetEv:8480 + 2: 265 + 3: 265 + 4: 265 + 51: _ZN9oceanbase8memtable10ObIMvccCtx5resetEv:15329 + 2: 265 + 3: 265 _ZN9oceanbase8memtable18ObTransCallbackMgr5resetEv:266 + 4: 295 + 8: 295 +_ZNK9oceanbase5share18ObTabletLSCacheKeyeqERKNS_6common13ObIKVCacheKeyE:126603:4724 + 1: 4689 + 4: 4689 + 4.1: 4689 + 5: 4689 + 5.1: _ZNK9oceanbase6common10ObTabletIDeqERKS1_:51579 + 0: 4689 +_ZNK9oceanbase3lib6Worker10is_timeoutEv:126408:4753 + 1: 4593 + 2: 4734 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:4839 +_ZN9oceanbase12blocksstable22ObIndexBlockRowScanner5reuseEv:126270:2146 + 1: 2070 + 2: 2070 + 3: 2070 + 5: 2070 + 7: 2070 + 8: 2070 + 10: 2070 +_ZN9oceanbase8memtable10ObMemtable14set_rec_log_tsEl:126195:950 + 1: 895 + 2: 895 + 3: 895 + 5: 895 + 6: 0 + 7.1: 0 + 8.1: 895 + 9: 0 + 10.1: 0 + 11.1: 895 + 11.2: 895 + 12: 0 + 13.1: 0 + 16: 895 + 17.1: 895 + 18: 0 + 25: 895 + 26.5: 895 + 3.1: _ZN9oceanbase5share6ObLSIDC2ERKS1_:7160 + 0: 895 + 11.1: _ZNK9oceanbase8memtable10ObMemtable16get_start_log_tsEv:3580 + 2: 895 + 16: _ZN9oceanbase8memtable10ObMemtable14get_rec_log_tsEv:6265 + 0: 895 +_ZN9oceanbase3sql17ObMergeDistinctOp7Compare5equalEPKNS_6common8ObIArrayIPNS0_6ObExprEEEPKNS0_17ObChunkDatumStore9StoredRowE:126195:541 + 3: 536 + 4: 536 + 6: 536 + 6.1: 536 + 6.2: 536 + 7: 0 + 8.1: 536 + 9: 0 + 10: 0 + 11.1: 0 + 19: 536 + 20: 536 + 21.1: 571 + 21.2: 536 + 21.6: 571 + 22: 530 + 23.1: 1 + 25: 530 + 25.1: 530 _ZN9oceanbase6common21ObNullSafeDatumStrCmpILNS0_15ObCollationTypeE45ELb0ELb0EE3cmpERKNS0_7ObDatumES6_:546 + 28: 597 + 30: 597 + 31: 597 + 22: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:2084 + 6: 521 + 22.1: _ZNK9oceanbase3sql6ObExpr4evalERNS0_9ObEvalCtxERPNS_6common7ObDatumE:20424 + 4: 521 + 6: 521 + 7: 521 + 9: 521 + 10: 1 + 10.1: 1 + 11: 1 + 13: 1 + 15.1: 521 + 15.2: 1 + 17: 1 + 18: 1 + 20: 1 + 21: 1 + 22: 1 + 24: 1 + 9: _ZNK9oceanbase3sql6ObExpr15is_batch_resultEv:2084 + 0: 521 + 11: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:4 + 0: 1 + 24: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:7 + 0: 1 + 25: _ZNK9oceanbase6common12ObIArrayWrapINS0_9ObCmpFuncEE2atEl:2120 + 6: 530 +_ZN9oceanbase11transaction9tablelock11ObLockTable17get_lock_memtableERNS_7storage15ObTableHandleV2E:125958:1234 + 1: 1211 + 2: 1211 + 4: 1211 _ZN9oceanbase7storage19ObMemtableMgrHandleC1Ev:1309 + 5: 1268 _ZN9oceanbase7storage15ObTableHandleV25resetEv:1394 + 6: 1205 + 7: 0 + 8.1: 0 + 9.1: 1205 + 9.2: 1205 _ZN9oceanbase7storage17ObLSTabletService21get_lock_memtable_mgrERNS0_19ObMemtableMgrHandleE:1237 + 9.3: 1256 + 11.1: 0 + 12.2: 1256 + 13: 0 + 14.1: 0 + 15.1: 1256 _ZNK9oceanbase7storage14ObIMemtableMgr19get_active_memtableERNS0_15ObTableHandleV2E:1267 + 15.2: 1353 + 16.1: 0 + 20: 1353 + 21.5: 1354 _ZN9oceanbase7storage19ObMemtableMgrHandleD1Ev:1367 + 21.6: 0 + 9.1: _ZN9oceanbase7storage4ObLS14get_tablet_svrEv:9640 + 0: 1205 + 12.1: _ZN9oceanbase7storage19ObMemtableMgrHandle16get_memtable_mgrEv:5024 + 0: 1256 +_ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE17init_default_partEPNS4_16ObIntraPartitionElli:125685:500 + 2: 473 + 3: 473 + 4: 473 + 5: 0 + 6.1: 0 + 8: 473 + 9: 473 + 10: 473 + 11: 473 + 12: 473 _ZN9oceanbase3sql17ObChunkDatumStore4initElmlPKcbjl:485 + 15.1: 0 + 16.1: 467 + 17: 0 + 18.1: 0 + 21: 467 + 22: 467 + 23: 467 + 26: 467 + 20: _ZN9oceanbase3sql20ObSqlMemMgrProcessor10get_dir_idEv:4670 + 2: 467 + 3.1: 0 + 5: 0 + 20.1: _ZN9oceanbase3sql17ObChunkDatumStore10set_dir_idEl:3269 + 0: 467 + 21: _ZN9oceanbase3sql17ObChunkDatumStore13set_allocatorERNS_6common12ObIAllocatorE:3269 + 0: 467 + 22: _ZN9oceanbase3sql17ObChunkDatumStore12set_callbackEPNS0_19ObSqlMemoryCallbackE:3269 + 0: 467 + 23: _ZN9oceanbase3sql17ObChunkDatumStore21set_io_event_observerEPNS0_17ObIOEventObserverE:3269 + 2: 467 +_ZN9oceanbase6common19GlobalHazardVersion11delete_nodeEPNS0_17KVCacheHazardNodeE:125308:674 + 1: 638 + 2: 638 + 4: 638 + 5: 638 + 6: 0 + 7.1: 0 + 8.1: 638 + 9: 0 + 10.1: 0 + 11.1: 650 _ZN9oceanbase6common19GlobalHazardVersion16get_thread_storeERPNS0_24KVCacheHazardThreadStoreE:650 + 12.1: 0 + 14: 650 + 15: 650 + 16.1: 0 + 20: 650 + 14: _ZN9oceanbase6common17KVCacheHazardNode11set_versionEm:2600 + 0: 650 + 15: _ZN9oceanbase6common24KVCacheHazardThreadStore11delete_nodeERNS0_17KVCacheHazardNodeE:43550 + 2: 650 + 4: 650 + 5: 0 + 6.1: 0 + 9: 650 + 12: 650 + 8: _ZN9oceanbase6common24KVCacheHazardThreadStore9add_nodesERNS0_17KVCacheHazardNodeE:26650 + 5.1: 650 + 9: 650 + 12.1: 650 + 5.1: _ZNK9oceanbase6common17KVCacheHazardNode8get_nextEv:2600 + 0: 650 + 11: _ZN9oceanbase6common17KVCacheHazardNode8set_nextEPS1_:5850 + 2: 650 + 3: 650 + 14: _ZN9oceanbase6common17KVCacheHazardNode8set_nextEPS1_:0 + 2: 0 + 3: 0 +_ZN9oceanbase6common4hash9ObHashMapINS_3sql24ObHashPartInfrastructureINS3_14ObHashPartColsENS3_19ObHashPartStoredRowEE14ObIntraPartKeyEPNS7_16ObIntraPartitionENS1_19NoPthreadDefendModeENS1_9hash_funcIS8_EENS1_8equal_toIS8_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS8_SA_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv:125266:1964 + 1: 1845 + 2: 1845 _ZN9oceanbase6common4hash11ObHashTableINS_3sql24ObHashPartInfrastructureINS3_14ObHashPartColsENS3_19ObHashPartStoredRowEE14ObIntraPartKeyENS1_11HashMapPairIS8_PNS7_16ObIntraPartitionEEENS1_9hash_funcIS8_EENS1_8equal_toIS8_EENS1_10pair_firstISC_EENS1_13SimpleAllocerINS1_15ObHashTableNodeISC_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv:1987 + 4: 1908 + 3: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS_3sql24ObHashPartInfrastructureINS5_14ObHashPartColsENS5_19ObHashPartStoredRowEE14ObIntraPartKeyEPNS9_16ObIntraPartitionEEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEE5clearEv:44776 + 2: 1915 + 3.1: 1915 + 4: 8 + 5: 8 + 6.1: 8 + 15: 1908 + 10: _ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocator4freeEPv:288 + 2: 8 + 3: _ZN9oceanbase6common7ob_freeEPv:272 + 3: 8 + 4: 8 + 5: 8 + 4: _ZL12abort_unlessb:72 + 5: 8 + 6: 8 +_ZN9oceanbase7storage19ObStorageTableGuard26double_check_inc_write_refEjbPNS_8memtable11ObIMemtableERb:125096:1334 + 5: 1283 + 6: 1283 + 7.1: 0 + 9: 1283 _ZN9oceanbase8memtable10ObMemtable13inc_write_refEv:1331 + 10: 1276 _ZN9oceanbase8memtable10ObMemtable15get_freeze_flagEv:1273 + 11: 1276 _ZN9oceanbase8memtable10ObMemtable20get_is_tablet_freezeEv:1283 + 13: 1344 + 14: 0 + 16: 1344 + 17: 1344 + 20: 1344 +_ZN9oceanbase11transaction14ObPartTransCtx11get_log_cb_EbRPNS0_9ObTxLogCbE:123685:469 + 1: 449 + 2: 449 + 3: 449 + 4: 246 + 5: 0 + 6.1: 0 + 11: 190 + 12: 0 + 14.1: 0 + 15: 0 + 16.1: 0 + 21: 447 + 22: 447 + 23: 495 + 25: 495 + 4: _ZNK9oceanbase11transaction9ObTxLogCb8is_validEv:1968 + 2: 246 + 11: _ZNK9oceanbase6common7ObDListINS_11transaction9ObTxLogCbEE8is_emptyEv:3230 + 0: 190 + 0.3: 190 + 14.1: _ZN9oceanbase6common7ObDListINS_11transaction9ObTxLogCbEE12remove_firstEv:13300 + 2: _ZN9oceanbase6common7ObDListINS_11transaction9ObTxLogCbEE6removeEPS3_:13300 + 3: 190 + 3.2: 190 + 7: 190 + 6: _ZN9oceanbase6common11ObDLinkBaseINS_11transaction9ObTxLogCbEE6unlinkEv:6840 + 2: 190 + 4: 190 + 5: 190 + 6: 190 + 7: 190 + 22: _ZN9oceanbase11transaction9ObTxLogCb5reuseEv:27231 + 3: 487 + 6: 487 + 7: 516 _ZN9oceanbase11transaction12ObTxMDSRange5resetEv:535 + 2: _ZN9oceanbase11transaction13ObTxBaseLogCb5reuseEv:5971 + 2: 447 + 3: 447 _ZN9oceanbase4palf3LSN5resetEv:479 + 4: 487 + 6: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EE5resetEv:3896 + 0: 487 _ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EE7destroyEv:510 + 23: _ZN9oceanbase6common7ObDListINS_11transaction9ObTxLogCbEE8add_lastEPS3_:33660 + 3: 495 + 5.1: 0 + 6.1: 495 + 6.2: 495 + 6.3: 495 + 9.1: 0 + 13: 495 + 12: _ZN9oceanbase6common11ObDLinkBaseINS_11transaction9ObTxLogCbEE10add_beforeEPS3_:14850 + 2: 495 + 2: _ZN9oceanbase6common11ObDLinkBaseINS_11transaction9ObTxLogCbEE3addEPS3_S5_S5_:9405 + 2: 495 + 3: 495 + 4: 495 + 5: 495 +_ZN9oceanbase7obmysql11ObMySQLUtil20get_number_store_lenEm:122900:6311 + 1: 6145 + 3: 6145 + 5.1: 0 + 7.1: 0 + 9.1: 0 +_ZNK9oceanbase12blocksstable9ObSSTable23get_upper_trans_versionEv:122785:9663 + 1: 9445 + 2: 9445 +_ZN9oceanbase11transaction8ObTxDesc16cancel_commit_cbEv:122761:873 + 1: 757 + 2: 757 + 7: 757 + 7.1: 564 + 8.1: 0 + 10: 819 + 12: 6 + 14: 851 + 19: 750 + 6: _ZN9oceanbase6common10ObSpinLock11self_lockedEv:55543 + 2: 851 + 2: _ZN9oceanbase6common12ObLatchMutex7get_widEv:10598 + 2: 757 + 3: 757 + 2.1: _Z9ob_gettidv:40121 + 3: 757 + 4: 0 + 2: _Z13get_tid_cachev:18925 + 7: 757 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 + 7.1: _ZN9oceanbase6common10ObSpinLock4lockEv:10755 + 2: 511 _ZN9oceanbase6common12ObLatchMutex4lockEjl:514 + 15: _ZN9oceanbase6common10ObSpinLock6unlockEv:2324 + 2: 575 _ZN9oceanbase6common12ObLatchMutex6unlockEv:582 +_ZN9oceanbase3omt19ObTenantConfigGuardC2EPNS0_14ObTenantConfigE:122472:5241 + 1: 5103 + 2: 5103 + 3: 5103 +_ZN9oceanbase3omt19ObTenantConfigGuardC1EPNS0_14ObTenantConfigE:122472:5241 + 1: 5103 + 2: 5103 + 3: 5103 +_ZN9oceanbase6common16ObFixedArrayImplINS_7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandleENS0_12ObIAllocatorEE4initEl:122055:976 + 1: 920 + 2: 920 + 3: 920 + 4: 0 + 5.1: 0 + 6.1: 920 + 7: 0 + 8.1: 0 + 8.2: 0 + 8.5: 0 + 8.11: 0 + 9.1: 920 + 10: 0 + 11.1: 0 + 11.5: 0 + 11.9: 0 + 12.1: 920 + 15: 920 + 16: 995 _ZN9oceanbase6common26ObWrapperAllocatorWithAttr5allocEl:1013 + 17: 995 + 18: 0 + 19.1: 0 + 21: 995 + 22: 995 + 23: 995 + 26: 995 + 8.1: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 8.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 8.8: _ZN9oceanbase6common7ObLogKVIRKPNS_7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandleELb0EEC2EPKcS7_:0 + 0: 0 + 8.10: _ZN9oceanbase6common7ObLogKVIRKjLb0EEC2EPKcS3_:0 + 0: 0 + 11.1: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 11.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 11.8: _ZN9oceanbase6common7ObLogKVIRKPNS0_12ObIAllocatorELb0EEC2EPKcS5_:0 + 0: 0 +_ZN9oceanbase7storage15ObAccessService11insert_rowsERKNS_5share6ObLSIDERKNS_6common10ObTabletIDERNS_11transaction8ObTxDescERKNS0_14ObDMLBaseParamERKNS6_8ObIArrayImEEPNS6_16ObNewRowIteratorERl:122004:293 + 8: 280 + 9: 280 + 11: 272 + 13: 272 + 14: 0 + 15.1: 0 + 17: 272 + 18: 272 + 19: 272 + 20: 272 + 20.2: 272 + 21: 272 + 22: 0 + 23.1: 0 + 25.1: 272 _ZN9oceanbase7storage15ObAccessService20check_write_allowed_ERKNS_5share6ObLSIDERKNS_6common10ObTabletIDENS0_17ObStoreAccessTypeERKNS0_14ObDMLBaseParamERNS_11transaction8ObTxDescERNS1_15ObStoreCtxGuardE:272 + 25.2: 255 + 31.1: 0 + 32.3: 255 + 33: 0 + 34.1: 0 + 39.1: 255 _ZN9oceanbase7storage17ObLSTabletService11insert_rowsERNS0_10ObStoreCtxERKNS0_14ObDMLBaseParamERKNS_6common8ObIArrayImEEPNS7_16ObNewRowIteratorERl:271 + 42: 255 + 44: 265 + 45: 265 _ZN9oceanbase7storage15ObAccessService25audit_tablet_opt_dml_statERKNS0_14ObDMLBaseParamERKNS_6common10ObTabletIDENS5_16ObOptDmlStatTypeEl:270 + 48: 265 + 51: 277 + 52.7: 281 _ZN9oceanbase7storage15ObAccessService15ObStoreCtxGuardD2Ev:278 + 52.8: 0 + 10: _ZN9oceanbase7storage15ObAccessService15ObStoreCtxGuardC2Ev:37690 + 0: 280 + 0.2: 272 + 0: _ZN9oceanbase7storage10ObStoreCtxC2Ev:23193 + 0.2: 279 _ZN9oceanbase7storage10ObStoreCtx5resetEv:291 + 0.6: 0 + 0: _ZN9oceanbase5share6ObLSIDC2Ev:2240 + 0: 280 + 0.1: _ZN9oceanbase8memtable15ObMvccAccessCtxC2Ev:16481 + 1: 280 + 3: 280 + 4: 280 _ZN9oceanbase11transaction12ObTxSnapshotC1Ev:281 + 7: 279 + 10: 279 + 5: _ZN9oceanbase7storage14ObTxTableGuardC2Ev:5301 + 0: 279 + 0.10: _ZN9oceanbase6common10ObTabletIDC2Em:2240 + 0: 280 + 0.1: _ZN9oceanbase7storage10ObLSHandleC2Ev:6528 + 2: 272 + 3: 272 + 0.3: _ZN9oceanbase5share6ObLSIDC2Ev:2992 + 0: 272 + 16.1: _ZNK9oceanbase5share6ObLSID8is_validEv:1088 + 0: 272 + 17.1: _ZNK9oceanbase6common10ObTabletID8is_validEv:1088 + 0: 272 + 18.1: _ZNK9oceanbase11transaction8ObTxDesc8is_validEv:2448 + 0: _ZNK9oceanbase11transaction8ObTxDesc8is_in_txEv:2448 + 0: 272 + 19.1: _ZNK9oceanbase7storage14ObDMLBaseParam8is_validEv:1088 + 0: 272 + 32.2: _ZN9oceanbase7storage10ObLSHandle6get_lsEv:1785 + 0: 255 + 35.1: _ZN9oceanbase7storage4ObLS14get_tablet_svrEv:1020 + 0: 255 +_ZN9oceanbase11transaction8ObTxDesc18merge_conflict_txsERKNS_6common8ObIArrayINS0_16ObTransIDAndAddrEEE:121524:1114 + 1: 1099 + 2: 1099 + 4: 1073 + 4.1: 0 + 2: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEEC2ERS3_:37070 + 1: 1099 + 4: 1172 + 5.1: 0 + 4: _ZN9oceanbase6common10ObSpinLock4lockEv:19782 + 2: 1099 _ZN9oceanbase6common12ObLatchMutex4lockEjl:1101 + 3: _ZN9oceanbase11transaction8ObTxDesc19merge_conflict_txs_ERKNS_6common8ObIArrayINS0_16ObTransIDAndAddrEEE:12892 + 3.1: 1172 + 3.5: 0 + 4: 0 + 5: 0 + 6.1: 0 + 10: 0 + 10.1: 0 + 11.1: 0 + 3.1: _ZNK9oceanbase6common12ObIArrayWrapINS_11transaction16ObTransIDAndAddrEE5countEv:7032 + 0: 1172 + 4: _ZNK9oceanbase6common12ObIArrayWrapINS_11transaction16ObTransIDAndAddrEE5countEv:0 + 0: 0 + 8.1: _ZNK9oceanbase6common12ObIArrayWrapINS_11transaction16ObTransIDAndAddrEE2atEl:0 + 6: 0 + 8.2: _ZN9oceanbase6common10is_containINS_11transaction16ObTransIDAndAddrEEEbRKNS0_8ObIArrayIT_EERKS5_:0 + 3.1: 0 + 5: 0 + 4: _ZNK9oceanbase6common12ObIArrayWrapINS_11transaction16ObTransIDAndAddrEE2atEl:0 + 4.1: _ZNK9oceanbase11transaction16ObTransIDAndAddreqERKS1_:0 + 0: 0 + 0: _ZNK9oceanbase11transaction9ObTransIDeqERKS1_:0 + 1: 0 + 1: _ZNK9oceanbase6common6ObAddreqERKS1_:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 4: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEED2Ev:24695 + 2: 1172 + 3: 1172 + 3.1: 1073 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase6common10ObSpinLock6unlockEv:1172 + 2: 1172 _ZN9oceanbase6common12ObLatchMutex6unlockEv:1206 +_ZNK9oceanbase11transaction13ObTxCommitLog9serializeEPclRl:121500:290 + 0: 285 + 0.1: 285 + 0.2: 285 + 0.4: 0 + 0.11: 0 + 0.12: 285 + 0.13: 247 + 0.15: 0 + 0.21: 247 + 0.22: 247 + 0.24: 253 + 0.25: 0 + 0.32: 0 + 0.33: 0 + 0.35: 0 + 0.2: _ZN9oceanbase6common13serialization6encodeEPclRll:9405 + 2: _ZN9oceanbase6common13serialization11encode_vi64EPclRll:9405 + 3: 285 + 11: 285 + 0.5: _ZN9oceanbase6common7ObLogKVIRA13_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 0.13: _ZNK9oceanbase11transaction13ObTxCommitLog19serialize_dispatch_EPclRlSt17integral_constantIbLb0EE:5567 + 0.1: 285 _ZNK9oceanbase11transaction13ObTxCommitLog10serialize_EPclRl:291 + 0.3: 0 + 0.9: 0 + 0.10: 0 + 0.12: 0 + 0.11: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.22: _ZN9oceanbase6common13serialization22encode_fixed_bytes_i64EPclRll:80275 + 8: 1235 + 9: 1235 + 0.27: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.29: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.31: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.34: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EE7destroyEv:121500:2308 + 1: 2250 + 9: 2250 + 10: 0 + 11: 0 + 13: 2250 + 15: 2250 + 24: 2250 + 25: 2250 +_ZNK9oceanbase11transaction14ObTxDataBackup9serializeEPclRl:121320:293 + 0: 270 + 0.1: 270 + 0.2: 270 + 0.4: 0 + 0.11: 0 + 0.12: 270 + 0.13: 251 + 0.15: 0 + 0.21: 251 + 0.22: 251 + 0.24: 246 + 0.25: 0 + 0.32: 0 + 0.33: 0 + 0.35: 0 + 0.2: _ZN9oceanbase6common13serialization6encodeEPclRll:8910 + 2: _ZN9oceanbase6common13serialization11encode_vi64EPclRll:8910 + 3: 270 + 11: 270 + 0.5: _ZN9oceanbase6common7ObLogKVIRA13_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 0.13: _ZNK9oceanbase11transaction14ObTxDataBackup19serialize_dispatch_EPclRlSt17integral_constantIbLb0EE:5461 + 0.1: 270 _ZNK9oceanbase11transaction14ObTxDataBackup10serialize_EPclRl:270 + 0.3: 0 + 0.9: 0 + 0.10: 0 + 0.12: 0 + 0.11: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.22: _ZN9oceanbase6common13serialization22encode_fixed_bytes_i64EPclRll:81575 + 8: 1255 + 9: 1255 + 0.27: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.29: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.31: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.34: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase3sql12ObDMLService25check_dml_tablet_validityERNS0_10ObDMLRtCtxERKNS0_14ObDASTabletLocERKNS_6common12ObFixedArrayIPNS0_6ObExprENS7_12ObIAllocatorEEERKNS0_14ObDMLBaseCtDefERNS0_14ObDMLBaseRtDefE:120834:1661 + 5: 1602 + 6: 1602 + 7: 1602 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:1650 + 12: 0 + 13.1: 0 + 14: 0 + 15: 0 + 16: 0 + 17: 0 + 18.1: 0 + 20: 0 + 20.1: 0 + 22.2: 0 + 25: 0 + 25.1: 0 + 25.2: 0 + 29.1: 0 + 35: 0 + 36.2: 0 + 36.3: 0 + 36.4: 0 + 40.1: 0 + 41.2: 0 + 41.3: 0 + 47.1: 0 + 48.2: 0 + 48.5: 0 + 49: 0 + 51.2: 0 + 51.7: 0 + 51.11: 0 + 51.19: 0 + 51.23: 0 + 52.1: 0 + 58: 1634 + 7.1: _ZNK9oceanbase6common14ObServerConfig29enable_strict_defensive_checkEv:14454 + 3: 1606 + 3.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:0 + 2: 0 + 10: _ZN9oceanbase6common9ObSEArrayINS0_10ObTabletIDELl1ENS0_19ModulePageAllocatorELb0EEC2Ev:0 + 0.1: 0 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl1ENS0_19ModulePageAllocatorELb0EEC2ElRKS3_:0 + 2: 0 + 5: 0 + 6: 0 + 8: 0 + 17.1: 0 + 2: _ZN9oceanbase6common8ObIArrayINS0_10ObTabletIDEEC2EPS2_l:0 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_10ObTabletIDEEC2EPS2_l:0 + 0: 0 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:0 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:0 + 2: 0 + 8: 0 + 11: _ZN9oceanbase6common9ObSEArrayImLl1ENS0_19ModulePageAllocatorELb0EEC2Ev:0 + 0.1: 0 + 0.5: _ZN9oceanbase6common13ObSEArrayImplImLl1ENS0_19ModulePageAllocatorELb0EEC2ElRKS2_:0 + 2: 0 + 5: 0 + 6: 0 + 8: 0 + 17.1: 0 + 2: _ZN9oceanbase6common8ObIArrayImEC2EPml:0 + 0: _ZN9oceanbase6common12ObIArrayWrapImEC2EPml:0 + 0: 0 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:0 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:0 + 2: 0 + 8: 0 + 13: _ZN9oceanbase3sql10ObDMLRtCtx12get_exec_ctxEv:0 + 0: _ZN9oceanbase3sql8ObDASRef12get_exec_ctxEv:0 + 0: 0 + 22: _ZN9oceanbase3sql10ObDMLRtCtx12get_exec_ctxEv:0 + 0: _ZN9oceanbase3sql8ObDASRef12get_exec_ctxEv:0 + 0: 0 + 22.1: _ZN9oceanbase3sql13ObExecContext11get_sql_ctxEv:0 + 0: 0 + 23: _ZN9oceanbase3sql16ObSqlSchemaGuardC2Ev:0 + 1: 0 + 0.1: _ZN9oceanbase6common19ModulePageAllocatorC2ERKNS_3lib7ObLabelEll:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 0.2: _ZN9oceanbase6common9ObSEArrayIPKNS_5share6schema13ObTableSchemaELl1ENS0_19ModulePageAllocatorELb0EEC2Ev:0 + 0.1: 0 + 0.5: _ZN9oceanbase6common13ObSEArrayImplIPKNS_5share6schema13ObTableSchemaELl1ENS0_19ModulePageAllocatorELb0EEC2ElRKS7_:0 + 2: 0 + 5: 0 + 6: 0 + 8: 0 + 17.1: 0 + 2: _ZN9oceanbase6common8ObIArrayIPKNS_5share6schema13ObTableSchemaEEC2EPS6_l:0 + 0: _ZN9oceanbase6common12ObIArrayWrapIPKNS_5share6schema13ObTableSchemaEEC2EPS6_l:0 + 0: 0 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:0 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:0 + 2: 0 + 8: 0 + 1.3: _ZN9oceanbase6common13ObSEArrayImplIPKNS_5share6schema13ObTableSchemaELl1ENS0_19ModulePageAllocatorELb0EED2Ev:0 + 1: 0 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplIPKNS_5share6schema13ObTableSchemaELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:0 + 9: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplIPKNS_5share6schema13ObTableSchemaELl1ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 24: _ZN9oceanbase3sql16ObSqlSchemaGuard16set_schema_guardEPNS_5share6schema19ObSchemaGetterGuardE:0 + 1: 0 + 25: _ZN9oceanbase3sql10ObDMLRtCtx12get_exec_ctxEv:0 + 0: _ZN9oceanbase3sql8ObDASRef12get_exec_ctxEv:0 + 0: 0 + 31: _ZN9oceanbase3sql16ObSqlSchemaGuardD2Ev:0 + 0: _ZN9oceanbase6common13ObSEArrayImplIPKNS_5share6schema13ObTableSchemaELl1ENS0_19ModulePageAllocatorELb0EED2Ev:0 + 1: 0 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplIPKNS_5share6schema13ObTableSchemaELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:0 + 9: 0 + 11: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplIPKNS_5share6schema13ObTableSchemaELl1ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 31.1: _ZN9oceanbase3sql16ObSqlSchemaGuardD2Ev:0 + 0: _ZN9oceanbase6common13ObSEArrayImplIPKNS_5share6schema13ObTableSchemaELl1ENS0_19ModulePageAllocatorELb0EED2Ev:0 + 1: 0 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplIPKNS_5share6schema13ObTableSchemaELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:0 + 9: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplIPKNS_5share6schema13ObTableSchemaELl1ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 36: _ZN9oceanbase3sql10ObDMLRtCtx12get_eval_ctxEv:0 + 0: _ZN9oceanbase3sql8ObDASRef12get_eval_ctxEv:0 + 0: 0 + 36.1: _ZN9oceanbase3sql10ObDMLRtCtx12get_exec_ctxEv:0 + 0: _ZN9oceanbase3sql8ObDASRef12get_exec_ctxEv:0 + 0: 0 + 41.1: _ZN9oceanbase3sql10ObDMLRtCtx12get_exec_ctxEv:0 + 0: _ZN9oceanbase3sql8ObDASRef12get_exec_ctxEv:0 + 0: 0 + 48.3: _ZN9oceanbase6common12ObIArrayWrapINS0_10ObTabletIDEE2atEl:0 + 6: 0 + 48.4: _ZNK9oceanbase6common10ObTabletIDneERKS1_:0 + 0: 0 + 51.1: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 51.4: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 51.8: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 51.16: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 51.20: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 57: _ZN9oceanbase6common13ObSEArrayImplImLl1ENS0_19ModulePageAllocatorELb0EED2Ev:0 + 1: 0 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplImLl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:0 + 9: 0 + 11: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplImLl1ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 57.1: _ZN9oceanbase6common13ObSEArrayImplImLl1ENS0_19ModulePageAllocatorELb0EED2Ev:0 + 1: 0 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplImLl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:0 + 9: 0 + 11: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplImLl1ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 57.2: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl1ENS0_19ModulePageAllocatorELb0EED2Ev:0 + 1: 0 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:0 + 4.1: 0 + 4.3: 0 + 9: 0 + 11: 0 + 5: _ZN9oceanbase6common10ObTabletIDD2Ev:0 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:0 + 0: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl1ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 57.3: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl1ENS0_19ModulePageAllocatorELb0EED2Ev:0 + 1: 0 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:0 + 4.1: 0 + 4.3: 0 + 9: 0 + 11: 0 + 5: _ZN9oceanbase6common10ObTabletIDD2Ev:0 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:0 + 0: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl1ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase6common13ObSEArrayImplIPKNS_3sql6ObHintELl8ENS0_19ModulePageAllocatorELb1EED2Ev:120800:1721 + 1: 1592 + 3: 1632 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplIPKNS_3sql6ObHintELl8ENS0_19ModulePageAllocatorELb1EE7destroyEv:61536 + 9: 1592 + 11: 0 + 13: 1632 + 15: 1632 + 24: 1632 + 10: _ZN9oceanbase6common13ObSEArrayImplIPKNS_3sql6ObHintELl8ENS0_19ModulePageAllocatorELb1EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase7storage20ObTableStoreIterator6resumeEv:120075:5022 + 1: 4803 + 2: 4803 + 2.1: 0 + 2.3: 4803 + 3: 4803 + 2.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_7storage8ObITableEE5countEv:0 + 0: 0 +_ZN9oceanbase3sql10ObExecutor5resetEv:120000:5154 + 1: 4800 + 2: 4800 + 3: 4800 + 4: 4800 + 5: 4800 +yy_get_next_buffer.609565a8af3f883a2d183bfc9d8bb068:119605:1097 + 1: 1062 + 3: 1062 + 8: 1062 + 9: 0 + 12: 1062 + 14: 1093 + 36: 0 + 36.1: 0 + 37: 0 + 39: 0 + 43: 0 + 48: 0 + 50.1: 0 + 54: 0 + 59: 0 + 61: 0 + 63: 0 + 70: 0 + 76: 0 + 77: 0 + 80: 0 + 82: 0 + 83: 0 + 87: 0 + 91: 0 + 91.2: 0 + 91.3: 0 + 91.5: 0 + 91.6: 0 + 91.8: 0 + 91.9: 0 + 91.11: 0 + 91.13: 0 + 91.14: 0 + 91.15: 0 + 91.16: 0 + 91.17: 0 + 91.18: 0 + 91.20: 0 + 91.21: 0 + 94: 0 + 97: 0 + 99: 0 + 102: 0 + 108: 0 + 116: 0 + 118: 0 + 119: 0 + 120: 0 + 121: 0 + 124: 0 + 125: 0 + 126: 0 + 128: 0 + 131: 1066 + 70: obsql_mysql_yyrealloc:0 + 4: 0 + 6: 0 + 3: obsql_mysql_yyget_extra:0 + 3: 0 + 119: obsql_mysql_yyrealloc:0 + 4: 0 + 6: 0 + 3: obsql_mysql_yyget_extra:0 + 3: 0 +_ZN9oceanbase3sql16ObHashDistinctOp26init_hash_partition_infrasEv:119426:250 + 1: 240 + 3: 240 + 4: 260 + 4.1: 240 _ZN9oceanbase3sql20ObPxEstimateSizeUtil11get_px_sizeEPNS0_13ObExecContextENS0_14PxOpSizeFactorElRl:252 + 6.1: 0 + 7.1: 260 _ZN9oceanbase3sql13ObExecContext13get_allocatorEv:260 + 7.5: 254 _ZN9oceanbase3sql20ObSqlMemMgrProcessor4initEPNS_6common12ObIAllocatorEmlNS0_17ObPhyOperatorTypeEmPNS0_13ObExecContextE:261 + 14.1: 0 + 15.1: 251 _ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE4initEmbbblPNS0_20ObSqlMemMgrProcessorE:255 + 18.1: 0 + 20: 251 + 21: 251 + 24: 265 + 24.1: 265 _ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE16est_bucket_countEllll:271 + 26: 245 + 29.1: 245 _ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE11start_roundEv:246 + 30.1: 0 + 31.1: 229 + 33.1: 0 + 35: 229 + 36: 229 + 37: 229 + 38: 229 + 41: 229 + 3: _ZN9oceanbase3sql11get_my_specINS0_16ObHashDistinctOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:960 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:960 + 0: 240 + 7.2: _ZN9oceanbase3sql11get_my_specINS0_16ObHashDistinctOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:1016 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:1016 + 0: 254 + 20: _ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE21set_io_event_observerEPNS0_17ObIOEventObserverE:1757 + 2: 251 + 21: _ZN9oceanbase3sql11get_my_specINS0_16ObHashDistinctOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:1004 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:1004 + 0: 251 + 22: _ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE13set_push_downEv:0 + 0: 0 + 26: _ZN9oceanbase3sql11get_my_specINS0_16ObHashDistinctOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:980 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:980 + 0: 245 + 26.3: _ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE9set_funcsEPKNS_6common8ObIArrayINS5_10ObHashFuncEEEPKNS6_INS0_20ObSortFieldCollationEEEPKNS6_INS5_9ObCmpFuncEEEPNS0_9ObEvalCtxE:13720 + 11: 245 + 12: 245 + 13: 245 + 14: 245 + 15: _ZN9oceanbase3sql30ObHashPartitionExtendHashTableINS0_14ObHashPartColsEE9set_funcsEPKNS_6common8ObIArrayINS4_10ObHashFuncEEEPKNS5_INS0_20ObSortFieldCollationEEEPKNS5_INS4_9ObCmpFuncEEEPNS0_9ObEvalCtxE:6860 + 6: 245 + 7: 245 + 8: 245 + 9: 245 + 31.1: _ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE15init_hash_tableElll:18287 + 3: 219 + 4: 219 + 4.1: 219 + 5: 0 + 6.1: 0 + 7.1: 229 _ZN9oceanbase3sql30ObHashPartitionExtendHashTableINS0_14ObHashPartColsEE4initEPNS_6common12ObIAllocatorElPNS0_20ObSqlMemMgrProcessorEllb:229 + 9.1: 0 + 11: 0 + 37: _ZN9oceanbase3sql11get_my_specINS0_16ObHashDistinctOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:916 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:916 + 0: 229 +_ZN9oceanbase8memtable18ObRedoLogGenerator13sync_log_succElRKNS0_15ObCallbackScopeE:119204:247 + 1: 214 + 5: 214 + 6: 214 + 8: 214 + 9: 20 + 10.1: 20 + 11.1: 214 + 12.1: 214 _ZN9oceanbase8memtable18ObTransCallbackMgr11RDLockGuardC1ERKNS_6common10SpinRWLockE:255 + 13: 223 + 15.1: 1696 + 16.1: 1696 + 17: 1696 _ZN9oceanbase8memtable16ObITransCallback10set_log_tsEl:1779 + 18: 1791 _ZN9oceanbase8memtable16ObITransCallback11log_sync_cbEl:1832 + 18.1: 1726 + 19: 20 + 20: 20 + 22.1: 20 + 24: 1726 + 27.1: 20 + 29.2: 1726 + 30: 284 _ZN9oceanbase8memtable18ObTransCallbackMgr11RDLockGuardD2Ev:287 + 30.1: 20 + 34: 264 + 11.1: _ZNK9oceanbase8memtable15ObCallbackScope8is_emptyEv:2354 + 0: 214 + 0.1: 214 + 12: _ZN9oceanbase8memtable18ObTransCallbackMgr10get_rwlockEv:1712 + 0: 214 + 16: _ZNK9oceanbase8memtable16ObITransCallback14need_fill_redoEv:6784 + 0: 1696 + 29.1: _ZN9oceanbase8memtable24ObITransCallbackIteratorneERKS1_:6904 + 0: 1726 + 29.3: _ZN9oceanbase8memtable24ObITransCallbackIteratorppEi:13259 + 2: _ZNK9oceanbase8memtable16ObITransCallback8get_nextEv:5884 + 0: 1471 + 3: _ZNK9oceanbase8memtable16ObITransCallback8get_prevEv:7375 + 0: 1471 +_ZN9oceanbase12blocksstableL18nonext_ext_compareERKNS0_14ObStorageDatumES3_RKNS_6common9ObCmpFuncERi.8f1e732d6655d093e942b32e16c602d8:118952:2255 + 1: 2200 + 2: 2200 + 4: 2200 + 5: 1066 + 6.1: 1127 + 7: 1127 + 9: 0 + 10.1: 0 + 13: 2210 + 4: _ZNK9oceanbase6common7ObDatum6is_maxEv:41800 + 0: 2200 + 0.1: 2200 + 0: _ZNK9oceanbase6common11ObDatumDesc6is_extEv:8800 + 0: 2200 + 0.1: _ZNK9oceanbase6common5ObObj12is_max_valueEv:22000 + 2: 2200 + 2.1: 2200 + 6.1: _ZNK9oceanbase6common7ObDatum6is_minEv:5635 + 0.1: _ZNK9oceanbase6common5ObObj12is_min_valueEv:5635 + 2.1: 1127 +_ZN9oceanbase7storage15ObDMLRunningCtx20check_schema_versionERNS_5share6schema27ObMultiVersionSchemaServiceEmmllRNS0_14ObTabletHandleE:118408:1194 + 7: 1118 + 8: 1118 + 9: 1118 + 11: 1118 _ZN9oceanbase7storage15ObDMLRunningCtx27check_tenant_schema_versionERNS_5share6schema27ObMultiVersionSchemaServiceEmml:1120 + 12: 1160 + 14.1: 2 _ZN9oceanbase5share6schema27ObMultiVersionSchemaService23get_tenant_schema_guardEmRNS1_19ObSchemaGetterGuardEllNS2_17RefreshSchemaModeE:3 + 15.1: 2 + 16.1: 0 + 16.2: 0 + 17.1: 2 + 18.1: 2 + 19.1: 2 + 20.1: 2 + 21: 2 + 22.1: 2 + 23.1: 2 _ZNK9oceanbase5share6schema21ObSimpleTableSchemaV218get_schema_versionEv:2 + 24: 2 + 25.1: 2 + 27: 1168 + 28: 1168 _ZN9oceanbase7storage21ObTabletBindingHelper20check_schema_versionERNS0_14ObTabletHandleEl:1193 + 29.1: 2 + 32: 1102 + 10: _ZN9oceanbase6common14is_inner_tableEm:0 + 2: 0 +_ZN9oceanbase3sql22ObInMemoryTopnSortImpl5resetEv:118305:496 + 1: 450 + 3: 508 + 7: 450 + 10: 450 + 12: 508 + 14: 514 + 10: _ZN9oceanbase6common16ObBinaryHeapBaseIPNS_3sql22ObInMemoryTopnSortImpl13SortStoredRowENS2_12ObSortOpImpl7CompareELl50EE5resetEv:12085 + 2: 450 + 3: 485 _ZN9oceanbase6common16ObBinaryHeapBaseIPNS_3sql22ObInMemoryTopnSortImpl13SortStoredRowENS2_12ObSortOpImpl7CompareELl50EE20reset_root_cmp_cacheEv:495 + 2: _ZN9oceanbase6common13ObSEArrayImplIPNS_3sql22ObInMemoryTopnSortImpl13SortStoredRowELl50ENS0_19ModulePageAllocatorELb0EE5resetEv:3600 + 0: 450 _ZN9oceanbase6common13ObSEArrayImplIPNS_3sql22ObInMemoryTopnSortImpl13SortStoredRowELl50ENS0_19ModulePageAllocatorELb0EE7destroyEv:467 + 11: _ZN9oceanbase6common16ObArenaAllocator5resetEv:34036 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:34036 + 4.1: 508 + 6: 0 + 7: 0 + 13: 508 + 14: 508 + 15: 508 + 18: 508 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:0 + 0: 0 + 5.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:0 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 12: _ZN9oceanbase6common11ObArrayImplIPNS_3sql22ObInMemoryTopnSortImpl13SortStoredRowENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEE5resetEv:4064 + 0: 508 _ZN9oceanbase6common11ObArrayImplIPNS_3sql22ObInMemoryTopnSortImpl13SortStoredRowENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEE7destroyEv:520 + 13: _ZN9oceanbase6common16ObArenaAllocator5resetEv:35980 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:35980 + 4.1: 514 + 6: 0 + 7: 0 + 13: 514 + 14: 514 + 15: 514 + 18: 514 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:0 + 0: 0 + 5.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:0 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase7storage18ObStoreRowIterator4initERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextEPNS0_8ObITableEPKv:117500:1091 + 5: 1051 + 6: 1051 + 7: 1082 _ZNK9oceanbase7storage8ObITable10is_sstableEv:1125 + 8: 1082 + 9: 1082 + 11: 1120 _ZN9oceanbase7storage31ObSSTableMultiVersionRowScanner10inner_openERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextEPNS0_8ObITableEPKv:997 _ZN9oceanbase7storage18ObSSTableRowGetter10inner_openERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextEPNS0_8ObITableEPKv:91 + 12.1: 0 + 14: 1120 +_ZZN9oceanbase11transaction14ObTransService11get_tx_ctx_ERKNS_5share6ObLSIDEPNS_7storage4ObLSERKNS0_9ObTransIDERPNS0_14ObPartTransCtxEENK6$_1007clEPKc.93feb755617c21c32b229b78773c290c:117446:1551 + 0: 1462 + 0.1: 0 + 0.2: 1462 + 0.3: 1446 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:1462 + 0.11: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:24582 + 2: 1446 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS_11transaction9ObTransIDELb0EEC2EPKcS5_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKNS_5share6ObLSIDELb0EEC2EPKcS5_:0 + 0: 0 + 0.9: _ZN9oceanbase6common7ObLogKVIPKvLb1EEC2EPKcOKS3_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVIPKvLb1EEC2EPKcOKS3_:0 + 0: 0 +_ZNK9oceanbase11transaction17ObTxCommitInfoLog9serializeEPclRl:117380:273 + 0: 265 + 0.1: 265 + 0.2: 265 + 0.4: 0 + 0.11: 0 + 0.12: 265 + 0.13: 241 + 0.15: 0 + 0.21: 241 + 0.22: 241 + 0.24: 257 + 0.25: 0 + 0.32: 0 + 0.33: 0 + 0.35: 0 + 0.2: _ZN9oceanbase6common13serialization6encodeEPclRll:8745 + 2: _ZN9oceanbase6common13serialization11encode_vi64EPclRll:8745 + 3: 265 + 11: 265 + 0.5: _ZN9oceanbase6common7ObLogKVIRA13_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 0.13: _ZNK9oceanbase11transaction17ObTxCommitInfoLog19serialize_dispatch_EPclRlSt17integral_constantIbLb0EE:5301 + 0.1: 265 _ZNK9oceanbase11transaction17ObTxCommitInfoLog10serialize_EPclRl:284 + 0.3: 0 + 0.9: 0 + 0.10: 0 + 0.12: 0 + 0.11: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.22: _ZN9oceanbase6common13serialization22encode_fixed_bytes_i64EPclRll:78325 + 8: 1205 + 9: 1205 + 0.27: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.29: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.31: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.34: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 +_ZNK9oceanbase7storage12ObTabletMeta8is_validEv:117375:969 + 1: 941 + 4: 941 + 5: 962 + 7: 962 + 7.1: 962 + 8: 962 + 8.1: 962 + 9: 962 + 9.1: 962 + 10: 962 + 10.1: 962 + 11: 962 + 11.1: 962 _ZNK9oceanbase7storage16ObTabletHAStatus8is_validEv:978 + 12: 1076 + 13: 1076 + 14.1: 1076 + 15: 1076 + 15.1: 1076 + 16: 1076 + 3: _ZNK9oceanbase5share6ObLSID8is_validEv:7528 + 0: 941 + 200: 941 + 4.1: _ZNK9oceanbase6common10ObTabletID8is_validEv:4810 + 0: 962 + 5.1: _ZNK9oceanbase6common10ObTabletID8is_validEv:4810 + 0: 962 + 12.1: _ZNK9oceanbase7storage16ObTabletHAStatus25is_restore_status_pendingEv:4304 + 0: _ZN9oceanbase7storage21ObTabletRestoreStatus10is_pendingERKNS1_6STATUSE:4304 + 0: 1076 +_ZZN9oceanbase11transaction14ObTransService14revert_tx_ctx_EPNS_7storage4ObLSEPNS0_14ObPartTransCtxEENK6$_1008clEPKc.93feb755617c21c32b229b78773c290c:117372:1950 + 0: 1873 + 0.1: 0 + 0.2: 1816 + 0.3: 1873 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:1960 + 0.4: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:31841 + 2: 1873 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.1: _ZN9oceanbase6common7ObLogKVIPKvLb1EEC2EPKcOKS3_:0 + 0: 0 +_ZN9oceanbase6common14ObKVCacheStore13de_handle_refEPNS0_18ObKVMemBlockHandleE:116913:1791 + 1: 1771 + 2: 1771 + 3: 1771 + 4: 1771 + 5: 0 + 6.1: 0 + 7.1: 1771 _ZN9oceanbase6common17ObAtomicReference27dec_ref_cnt_and_inc_seq_numERj:1860 + 8.1: 0 + 9.1: 1762 + 10: 0 + 11.1: 0 + 14: 1786 +_ZN9oceanbase7storage15ObAccessService11delete_rowsERKNS_5share6ObLSIDERKNS_6common10ObTabletIDERNS_11transaction8ObTxDescERKNS0_14ObDMLBaseParamERKNS6_8ObIArrayImEEPNS6_16ObNewRowIteratorERl:116669:278 + 8: 265 + 9: 265 + 11: 255 + 13: 255 + 14: 0 + 15.1: 0 + 17: 255 + 18: 255 + 19: 255 + 20: 255 + 20.2: 255 + 21: 255 + 22: 0 + 23.1: 0 + 25.1: 255 _ZN9oceanbase7storage15ObAccessService20check_write_allowed_ERKNS_5share6ObLSIDERKNS_6common10ObTabletIDENS0_17ObStoreAccessTypeERKNS0_14ObDMLBaseParamERNS_11transaction8ObTxDescERNS1_15ObStoreCtxGuardE:255 + 25.2: 265 + 31.1: 0 + 32.3: 265 + 33: 0 + 34.1: 0 + 39.1: 265 _ZN9oceanbase7storage17ObLSTabletService11delete_rowsERNS0_10ObStoreCtxERKNS0_14ObDMLBaseParamERKNS_6common8ObIArrayImEEPNS7_16ObNewRowIteratorERl:290 + 42: 265 + 44: 263 + 45: 263 _ZN9oceanbase7storage15ObAccessService25audit_tablet_opt_dml_statERKNS0_14ObDMLBaseParamERKNS_6common10ObTabletIDENS5_16ObOptDmlStatTypeEl:272 + 48: 263 + 51: 268 + 52.7: 268 _ZN9oceanbase7storage15ObAccessService15ObStoreCtxGuardD2Ev:269 + 52.8: 0 + 10: _ZN9oceanbase7storage15ObAccessService15ObStoreCtxGuardC2Ev:35620 + 0: 265 + 0.2: 255 + 0: _ZN9oceanbase7storage10ObStoreCtxC2Ev:21995 + 0.2: 265 _ZN9oceanbase7storage10ObStoreCtx5resetEv:270 + 0.6: 0 + 0: _ZN9oceanbase5share6ObLSIDC2Ev:2120 + 0: 265 + 0.1: _ZN9oceanbase8memtable15ObMvccAccessCtxC2Ev:15635 + 1: 265 + 3: 265 + 4: 265 _ZN9oceanbase11transaction12ObTxSnapshotC1Ev:268 + 7: 265 + 10: 265 + 5: _ZN9oceanbase7storage14ObTxTableGuardC2Ev:5035 + 0: 265 + 0.10: _ZN9oceanbase6common10ObTabletIDC2Em:2120 + 0: 265 + 0.1: _ZN9oceanbase7storage10ObLSHandleC2Ev:6120 + 2: 255 + 3: 255 + 0.3: _ZN9oceanbase5share6ObLSIDC2Ev:2805 + 0: 255 + 16.1: _ZNK9oceanbase5share6ObLSID8is_validEv:1020 + 0: 255 + 17.1: _ZNK9oceanbase6common10ObTabletID8is_validEv:1020 + 0: 255 + 18.1: _ZNK9oceanbase11transaction8ObTxDesc8is_validEv:2295 + 0: _ZNK9oceanbase11transaction8ObTxDesc8is_in_txEv:2295 + 0: 255 + 19.1: _ZNK9oceanbase7storage14ObDMLBaseParam8is_validEv:1020 + 0: 255 + 32.2: _ZN9oceanbase7storage10ObLSHandle6get_lsEv:1855 + 0: 265 + 35.1: _ZN9oceanbase7storage4ObLS14get_tablet_svrEv:1060 + 0: 265 +_ZN9oceanbase5share17ObLSRestoreStatusaSERKNS1_6StatusE:116480:9071 + 1: 8960 + 2: 8960 + 3: 8960 +_ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE4nextEPNS0_12LinkHashNodeIS3_EE:116381:93 + 1: 91 + 2: 91 _ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE18get_retire_stationEv:92 + 4: 84 + 2.1: _ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE5GuardC2ERNS0_13RetireStationE:2800 + 0: _ZN9oceanbase6common9RefHandleC2ERNS0_13RetireStationE:1676 + 0: _ZN9oceanbase6common13BaseRefHandleC2ERNS0_13RetireStationE:1676 + 0: _ZN9oceanbase6common17get_global_qclockEv:1676 + 2: 94 + 2.1: 1 + 2.6: 1 + 2.2: _ZN9oceanbase6common6QClockC2Ev:41 + 0: 1 + 0.1: _ZN9oceanbase6common6QClock9ClockSlotC2Ev:19 + 0: 1 + 0.4: _ZN9oceanbase6common13BaseRefHandle14enter_criticalEv:1124 + 0: 94 _ZN9oceanbase6common6QClock14enter_criticalEv:96 + 3: _ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE5next_EPNS0_12LinkHashNodeIS3_EE:106412 + 5.1: 53 + 7: 84 + 4.4: _ZN9oceanbase6common6DCHashINS_4palf5LSKeyELl8EE4nextEPNS0_11KeyHashNodeIS3_EE:91486 + 1.2: 2642 + 2: 2645 + 1.1: _ZN9oceanbase6common6DCHashINS_4palf5LSKeyELl8EE9next_nodeEPNS0_11KeyHashNodeIS3_EE:38393 + 2: 2753 + 4.1: 2725 + 5: 31 + 6.1: 31 + 6.3: 31 + 8: 1 + 9: 31 + 115.1: 1 + 4.1: _ZN9oceanbase6common15is_last_bit_setEm:10900 + 2: 2725 + 6.1: _ZN9oceanbase6common6DCHashINS_4palf5LSKeyELl8EE10search_preEmRPNS0_8HashNodeE:961 + 2: 31 + 3: 31 + 2.1: _ZN9oceanbase6common8HashNode13is_dummy_nodeEv:36988 + 0: 2642 + 5.1: _ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE11try_inc_refEPNS0_12LinkHashNodeIS3_EE:1766 + 6.1: 53 + 7: 1 + 4: _ZN9oceanbase6common9RefHandle3incEPNS0_7RefNodeE:1431 + 0: _ZN9oceanbase6common15faa_if_positiveEPii:1431 + 2: 53 + 4.1: 53 + 4.2: 53 + 4.3: 53 + 6.1: _ZN9oceanbase6common15is_last_bit_setEm:265 + 2: 53 + 4: _ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE5GuardD2Ev:2856 + 0: _ZN9oceanbase6common13BaseRefHandle14leave_criticalEv:2856 + 0: _ZN9oceanbase6common6QClock14leave_criticalEm:2856 + 1: 84 + 2: _ZN9oceanbase6common6QClock6locateEm:1092 + 0: 84 + 2.1: _ZN9oceanbase6common6QClock9ClockSlot11clear_clockEv:1260 + 0: 84 + 4.1: _ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE5GuardD2Ev:34 + 0: _ZN9oceanbase6common13BaseRefHandle14leave_criticalEv:34 + 0: _ZN9oceanbase6common6QClock14leave_criticalEm:34 + 1: 1 + 2: _ZN9oceanbase6common6QClock6locateEm:13 + 0: 1 + 2.1: _ZN9oceanbase6common6QClock9ClockSlot11clear_clockEv:15 + 0: 1 +parse_sql:115564:534 + 1: 501 + 3: 501 + 4.1: 501 + 4.3: 501 + 5: 3 + 8: 501 + 9: 501 + 10: 501 + 14: 501 + 21: 501 + 22: 501 + 36: 501 + 37: 501 + 38: 531 + 39: 3 + 52: 531 + 53: 3 + 58: 3 + 59: 3 + 61: 3 + 62: 3 + 63.1: 3 + 64: 3 + 65.1: 3 + 66: 3 + 68: 3 + 70: 3 + 75: 3 + 81: 3 + 88: 3 + 89: 3 + 91: 3 + 92: 3 + 93.1: 3 + 94: 3 + 95.1: 3 + 96: 3 + 98: 3 + 100: 3 + 105: 3 + 111: 3 + 116: 3 + 122: 555 obsql_mysql_yy_scan_bytes:532 + 123: 555 obsql_mysql_yy_switch_to_buffer:579 + 125: 544 + 126: 1 + 127.1: 544 + 128: 3 + 129.1: 544 + 130: 3 + 132: 544 obsql_mysql_yyparse:558 + 134: 494 + 139: 1 + 145: 478 obsql_mysql_yy_delete_buffer:491 + 150: 487 +_ZN9oceanbase7storage15ObAccessService25audit_tablet_opt_dml_statERKNS0_14ObDMLBaseParamERKNS_6common10ObTabletIDENS5_16ObOptDmlStatTypeEl:115223:922 + 5: 837 + 6: 837 + 7: 837 + 8: 2 + 9.1: 2 + 10.1: 837 + 14: 837 + 15: 837 + 16: 837 + 17: 837 + 24: 951 _ZN9oceanbase6common23ObOptStatMonitorManager12get_instanceEv:839 + 24.1: 794 _ZN9oceanbase6common23ObOptStatMonitorManager18update_local_cacheEmRNS0_12ObOptDmlStatE:794 + 25.1: 2 + 27.1: 951 _ZZN9oceanbase7storage15ObAccessService25audit_tablet_opt_dml_statERKNS0_14ObDMLBaseParamERKNS_6common10ObTabletIDENS5_16ObOptDmlStatTypeElENK5$_125clEPKc.a13d96b7c27110f7acdd340c58275d80:1000 + 30: 930 + 13: _ZN9oceanbase6common12ObOptDmlStatC2Ev:16547 + 4: 837 + 5: 338 + 6: 265 + 15.1: _ZNK9oceanbase5share6schema18ObTableSchemaParam12get_table_idEv:3348 + 0: 837 + 16: _ZNK9oceanbase6common10ObTabletID2idEv:2511 + 0: 837 +_ZN9oceanbase11transaction14ObTransService16submit_commit_txERNS0_8ObTxDescElRNS0_13ObITxCallbackEPKNS_6common8ObStringE:115056:245 + 4: 237 + 5: 237 + 7: 234 + 8: 234 + 11: 234 + 13.1: 0 + 14: 0 + 15: 0 + 16: 0 + 23: 0 + 24.1: 0 + 27: 0 + 28.1: 0 + 33: 0 + 34.1: 0 + 38: 223 + 39: 0 + 39.1: 0 + 40.1: 0 + 41: 0 + 42: 0 + 43.1: 223 + 44.1: 0 + 45: 0 + 48.1: 223 + 49.1: 0 + 50: 0 + 55.1: 223 + 55.3: 223 + 58: 241 + 60: 0 + 62: 0 + 63: 0 + 68.1: 0 + 69: 0 + 74: 243 + 75: 243 + 78: 243 + 80: 243 + 80.1: 256 + 81: 256 _ZN9oceanbase11transaction11ObTraceInfo18set_app_trace_infoERKNS_6common8ObStringE:243 + 82.1: 2 + 84: 256 + 85: 2 + 85.1: 254 + 86: 256 _ZN9oceanbase11transaction14ObTransService13do_commit_tx_ERNS0_8ObTxDescElRNS0_13ObITxCallbackERl:256 + 87.1: 2 + 90: 2 + 93: 2 + 94: 2 + 95: 2 + 105: 254 + 123: 254 + 123.4: 259 + 124.4: 263 + 124.5: 2 + 124.12: 2 + 124.15: 2 + 124.16: 2 + 124.17: 2 + 124.19: 2 + 124.22: 2 + 124.23: 2 + 129: 261 + 130.6: 257 + 6: _ZN9oceanbase6common10ObSpinLock4lockEv:6399 + 2: 237 _ZN9oceanbase6common12ObLatchMutex4lockEjl:237 + 8: _ZN9oceanbase6common16ObClockGenerator8getClockEv:4966 + 4: 234 + 5.1: 2 + 8: 234 + 6: _ZN9oceanbase6common16ObClockGenerator6get_usEv:20 + 2: 2 + 10: _ZN9oceanbase11transaction8ObTxDesc9inc_op_snEv:1872 + 0: 234 + 38: _ZN9oceanbase6common16ObClockGenerator8getClockEv:4683 + 4: 223 + 5.1: 0 + 8: 223 + 6: _ZN9oceanbase6common16ObClockGenerator6get_usEv:0 + 2: 0 + 39: _ZN9oceanbase11transaction16ObTransStatistic12get_instanceEv:196 + 2: 0 + 2.1: 2 + 2.2: 2 + 2.3: 2 + 2.4: 2 + 2.6: 2 + 55: _ZNK9oceanbase6common12ObIArrayWrapINS_11transaction8ObTxPartEE5countEv:1561 + 0: 223 + 56: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction8ObTxPartELl4ENS0_19ModulePageAllocatorELb0EEixEl:3345 + 2.1: 223 + 2.2: 223 + 3.1: 0 + 5: 223 + 56.1: _ZNK9oceanbase11transaction8ObTxPart8is_cleanEv:3845 + 0: 241 + 61: _ZN9oceanbase11transaction14ObTransService19abort_participants_ERKNS0_8ObTxDescE:0 + 2: 0 + 5.1: 0 + 7: 0 + 8.1: 0 + 5: _ZNK9oceanbase6common12ObIArrayWrapINS_11transaction8ObTxPartEE5countEv:0 + 0: 0 + 123.2: _ZNK9oceanbase6common8ObString3ptrEv:1272 + 0: 254 + 124.3: _ZN9oceanbase3lib20is_trace_log_enabledEv:2108 + 2: 259 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:262 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:1841 + 2: 263 + 124.5: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EE9add_eventERb:158 + 2: 2 + 3.1: 2 + 7: 2 + 12: 2 + 13: 2 + 124.7: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:96 + 0: 2 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:10 + 2: 2 + 124.9: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:50 + 0: 2 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:10 + 2: 2 + 124.10: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EE10check_lockEv:78 + 2: 2 + 3: _ZN9oceanbase3lib7ObMutex4lockEv:58 + 0: 2 + 124.11: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EE14get_buffer_posEv:14 + 0: 2 + 124.12: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EE10get_bufferEv:22 + 0: 2 + 124.14: _ZNK9oceanbase11transaction15ObTransHashLinkINS0_8ObTxDescEE7get_refEv:6 + 0: 2 + 124.15: _Z9ob_gettidv:284 + 3: 2 + 4: 2 + 2: _Z13get_tid_cachev:150 + 7: 2 + 7.1: 2 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:46 + 0: 2 + 124.24: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EE12check_unlockEv:86 + 2: 2 + 3: _ZN9oceanbase3lib7ObMutex6unlockEv:28 + 0: 2 + 130.6: _ZN9oceanbase6common12ScopedLambdaIZNS_11transaction14ObTransService16submit_commit_txERNS2_8ObTxDescElRNS2_13ObITxCallbackEPKNS0_8ObStringEE6$_1292ED2Ev:3924 + 1.3: 2 + 1.1: _ZZN9oceanbase11transaction14ObTransService16submit_commit_txERNS0_8ObTxDescElRNS0_13ObITxCallbackEPKNS_6common8ObStringEEN6$_1292clEv:3908 + 0: 258 + 0.2: 2 + 0: _ZN9oceanbase6common10ObSpinLock6unlockEv:1052 + 2: 261 _ZN9oceanbase6common12ObLatchMutex6unlockEv:269 + 130.8: _ZN9oceanbase6common12ScopedLambdaIZNS_11transaction14ObTransService16submit_commit_txERNS2_8ObTxDescElRNS2_13ObITxCallbackEPKNS0_8ObStringEE6$_1292ED2Ev:82 + 1.3: 2 + 1.1: _ZZN9oceanbase11transaction14ObTransService16submit_commit_txERNS0_8ObTxDescElRNS0_13ObITxCallbackEPKNS_6common8ObStringEEN6$_1292clEv:50 + 0: 2 + 0.2: 2 + 0: _ZN9oceanbase6common10ObSpinLock6unlockEv:10 + 2: 2 +_ZN9oceanbase6common11ObArrayImplINS_11transaction9ObTransIDENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE6assignERKNS0_8ObIArrayIS3_EE:114811:1114 + 1: 1075 + 3: 1075 + 4: 1022 _ZN9oceanbase6common11ObArrayImplINS_11transaction9ObTransIDENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE5resetEv:1025 + 6: 1017 + 6.1: 1017 _ZN9oceanbase6common11ObArrayImplINS_11transaction9ObTransIDENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE7reserveEl:1039 + 7: 1041 + 8.1: 0 + 11: 1041 + 12.1: 1041 + 12.3: 1041 + 12.5: 0 + 13: 0 + 18: 0 + 18.1: 1085 + 18.3: 1085 + 18.5: 0 + 19: 0 + 25: 1023 + 27: 1023 + 28: 0 + 32: 980 + 5: _ZNK9oceanbase6common12ObIArrayWrapINS_11transaction9ObTransIDEE5countEv:4068 + 0: 1017 + 11: _ZSt3minIlERKT_S2_S2_:7287 + 5: 1041 + 13: _ZNK9oceanbase6common12ObIArrayWrapINS_11transaction9ObTransIDEE2atEl:0 + 6: 0 + 13.1: _ZN9oceanbase6common11copy_assignINS_11transaction9ObTransIDEEEiRT_RKS4_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapINS_11transaction9ObTransIDEEEiRT_RKS4_NS0_8BoolTypeILb0EEE:0 + 2: _ZN9oceanbase11transaction9ObTransIDaSERKS1_:0 + 1: 0 + 19: _ZNK9oceanbase6common12ObIArrayWrapINS_11transaction9ObTransIDEE2atEl:0 + 6: 0 + 19.1: _ZN9oceanbase6common16construct_assignINS_11transaction9ObTransIDEEEiRT_RKS4_:0 + 2: _ZN9oceanbase6common21construct_assign_wrapINS_11transaction9ObTransIDEEEiRT_RKS4_NS0_8BoolTypeILb0EEE:0 + 2: 0 +_ZN9oceanbase3sql15ObTableModifyOp11inner_closeEv:114591:1062 + 1: 1009 + 2: 1009 + 3: 1009 + 5: 1045 _ZN9oceanbase5share22ObAutoincrementService12get_instanceEv:1062 + 7.1: 1045 + 7.3: 0 + 8: 0 + 9.1: 0 + 13: 1045 + 14: 0 + 15.1: 0 + 17: 0 + 20: 1045 + 3: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:7063 + 2: 1009 + 7.1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share12AutoincParamEE5countEv:7315 + 0: 1045 + 8: _ZN9oceanbase6common12ObIArrayWrapINS_5share12AutoincParamEE2atEl:0 + 6: 0 + 12: _ZN9oceanbase3sql15ObTableModifyOp16close_inner_connEv:31350 + 6: 1045 + 7: 1045 + 8: 0 + 9: 0 + 10: 0 + 11.1: 0 + 13.2: 0 + 13.4: 0 + 13.10: 0 + 14: 0 + 14.1: 0 + 16: 0 + 19: 1045 + 8: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:0 + 2: 0 + 13.2: _ZN9oceanbase3sql16ObSQLSessionInfo14get_inner_connEv:0 + 0: 0 + 14.1: _ZN9oceanbase3sql16ObSQLSessionInfo14set_inner_connEPv:0 + 2: 0 + 13: _ZNK9oceanbase3sql8ObDASRef8has_taskEv:7315 + 0: _ZNK9oceanbase6common10ObObjStoreIPNS_3sql12ObIDASTaskOpERNS0_12ObIAllocatorELb0EE5emptyEv:7315 + 0: 1045 +_ZN9oceanbase11transaction9tablelock11ObLockParam3setERKNS1_8ObLockIDEhRKlNS1_17ObTableLockOpTypeElbbl:114400:1035 + 9: 988 + 10: 988 + 11: 988 + 11.1: 988 + 14: 0 + 15.1: 0 + 18: 949 + 19: 949 + 20: 949 + 21: 949 + 22: 949 + 23: 949 + 24: 949 + 25: 949 + 27: 949 + 11: _ZNK9oceanbase11transaction9tablelock8ObLockID8is_validEv:6916 + 2: 988 + 2: _ZN9oceanbase6common11is_valid_idEm:4940 + 2: 988 +_ZNK9oceanbase11transaction17ObCLogEncryptInfo16get_encrypt_infoEmRbRNS_5share13ObEncryptMetaE:114321:1070 + 2: 1048 + 3: 1048 + 4: 1060 + 5: 0 + 7: 1060 + 8: 1060 + 10.1: 0 + 12: 1103 + 4: _ZNK9oceanbase11transaction17ObCLogEncryptInfo4get_EmRNS_5share13ObEncryptMetaE:46196 + 2: 1048 + 3: 1048 + 4.1: 0 + 6.1: 1048 + 8.1: 0 + 9: 0 + 10: 0 + 14.1: 0 + 16: 0 + 17: 0 + 20.1: 0 + 23: 0 + 24: 0 + 26: 0 +_ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE23ELS3_11EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE:113316:2022 + 0: 1988 + 0.3: 1988 + 0: _ZNK9oceanbase6common5ObObj12is_min_valueEv:41748 + 2: 1988 + 2: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:3976 + 0: 1988 +_ZNK9oceanbase6common5ObObj32check_collation_free_and_compareERKS1_:113220:1961 + 1: 1887 + 3: 1887 + 3.1: 1887 + 4: 1887 + 6.1: 0 + 6.2: 0 + 6.3: 0 + 6.5: 0 + 9: 0 + 12.1: 0 + 13: 0 + 18: 0 + 21: 0 + 21.2: 0 + 22: 0 + 23: 0 + 28.1: 0 + 32.1: 0 + 32.2: 0 + 36: 0 + 38: 0 + 38.3: 0 + 39: 0 + 44.1: 0 + 45: 0 + 52: 0 + 3: _ZNK9oceanbase6common5ObObj18get_collation_typeEv:5661 + 0: _ZNK9oceanbase6common9ObObjMeta18get_collation_typeEv:5661 + 0: 1887 + 6.1: _ZNK9oceanbase6common5ObObj7is_nullEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta7is_nullEv:0 + 0: 0 + 6.2: _ZNK9oceanbase6common5ObObj7is_nullEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta7is_nullEv:0 + 0: 0 + 6.3: _ZNK9oceanbase6common5ObObj12is_min_valueEv:0 + 2: 0 + 2.1: 0 + 6.5: _ZNK9oceanbase6common5ObObj12is_min_valueEv:0 + 2: 0 + 2.1: 0 + 11.1: _ZNK9oceanbase6common5ObObj17is_character_typeEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta17is_character_typeEv:0 + 0: 0 + 16: _ZNK9oceanbase6common5ObObj11get_val_lenEv:0 + 0: 0 + 17: _ZNK9oceanbase6common5ObObj11get_val_lenEv:0 + 0: 0 + 18: _ZSt3minIiERKT_S2_S2_:0 + 5: 0 + 19: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 21: _ZNK9oceanbase6common5ObObj14get_string_ptrEv:0 + 0: 0 + 21.1: _ZNK9oceanbase6common5ObObj14get_string_ptrEv:0 + 0: 0 + 25: _ZNK9oceanbase6common5ObObj24is_varying_len_char_typeEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta24is_varying_len_char_typeEv:0 + 0: 0 + 0: _ZNK9oceanbase6common9ObObjMeta10is_varcharEv:0 + 2: 0 + 2.1: 0 +_ZNK9oceanbase11transaction11ObTxRedoLog9serializeEPclRl:112742:243 + 0: 232 + 0.1: 232 + 0.2: 232 + 0.4: 0 + 0.11: 0 + 0.12: 232 + 0.13: 238 + 0.15: 0 + 0.21: 238 + 0.22: 238 + 0.24: 242 + 0.25: 0 + 0.32: 0 + 0.33: 0 + 0.35: 0 + 0.2: _ZN9oceanbase6common13serialization6encodeEPclRll:7656 + 2: _ZN9oceanbase6common13serialization11encode_vi64EPclRll:7656 + 3: 232 + 11: 232 + 0.5: _ZN9oceanbase6common7ObLogKVIRA13_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 0.13: _ZNK9oceanbase11transaction11ObTxRedoLog19serialize_dispatch_EPclRlSt17integral_constantIbLb0EE:4938 + 0.1: 238 _ZNK9oceanbase11transaction11ObTxRedoLog10serialize_EPclRl:232 + 0.3: 0 + 0.9: 0 + 0.10: 0 + 0.12: 0 + 0.11: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.22: _ZN9oceanbase6common13serialization22encode_fixed_bytes_i64EPclRll:77350 + 8: 1190 + 9: 1190 + 0.27: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.29: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.31: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.34: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase6common9Ob2DArrayIPNS_3sql14ObHashPartColsELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS4_Ll64ES5_Lb0EEEE7reserveEl:112568:259 + 0: 250 + 1: 250 + 2: 250 + 3: 250 + 4: 250 + 7: 0 + 8: 0 + 9.1: 0 + 12: 0 + 13.1: 0 + 17: 243 + 18: 0 + 19.1: 6 + 20: 6 + 23: 6 + 25: 243 + 27.1: 2054 + 27.3: 2054 + 28: 2080 _ZN9oceanbase6common9Ob2DArrayIPNS_3sql14ObHashPartColsELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS4_Ll64ES5_Lb0EEEE9new_blockEl:2173 + 29.1: 6 + 36: 234 + 3: _ZNK9oceanbase6common9Ob2DArrayIPNS_3sql14ObHashPartColsELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS4_Ll64ES5_Lb0EEEE12get_capacityEv:1750 + 2: 250 + 26: _ZNK9oceanbase6common9Ob2DArrayIPNS_3sql14ObHashPartColsELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS4_Ll64ES5_Lb0EEEE15get_block_countEv:948 + 0: _ZNK9oceanbase6common12ObIArrayWrapIPPNS_3sql14ObHashPartColsEE5countEv:948 + 0: 237 +_ZN9oceanbase3sql15ObSchemaCheckerC2Ev:112565:517 + 2: 479 + 3: 479 + 4: 479 + 0: _ZN9oceanbase6common7ObArrayIPNS_5share6schema13ObTableSchemaENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEEC2Ev:86220 + 0.1: 479 + 0.5: _ZN9oceanbase6common11ObArrayImplIPNS_5share6schema13ObTableSchemaENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEEC2ElRKS6_:79035 + 3: 479 + 4: 479 + 6: 479 + 7.1: 479 + 2: _ZN9oceanbase6common8ObIArrayIPNS_5share6schema13ObTableSchemaEEC2Ev:3353 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_5share6schema13ObTableSchemaEEC2Ev:3353 + 0: 479 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:21555 + 0: 479 + 11: _ZN9oceanbase6common11ObArrayImplIPNS_5share6schema13ObTableSchemaENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEE19set_block_allocatorERKS6_:11017 + 0: _ZN9oceanbase6common19ModulePageAllocatoraSERKS1_:11017 + 2: 479 + 3: 479 + 5: 479 + 13: _ZN9oceanbase3lib11this_workerEv:10538 + 2: _ZN9oceanbase3lib6Worker4selfEv:10538 + 3: 479 + 4: 0 + 13.1: _ZN9oceanbase3lib6Worker23get_sql_arena_allocatorEv:15807 + 2: 479 + 2: _ZN9oceanbase3lib4Flow11current_ctxEv:11496 + 2: _ZN9oceanbase3lib4Flow12current_flowEv:11496 + 3: 479 + 8: 0 + 10: 0 + 11: 0 + 12: 0 + 8.1: _ZN9oceanbase3lib4FlowC2ERNS0_13MemoryContextE:0 + 1: 0 + 3: 0 + 11: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase3sql15ObSchemaCheckerC1Ev:112565:517 + 2: 479 + 3: 479 + 4: 479 + 0: _ZN9oceanbase6common7ObArrayIPNS_5share6schema13ObTableSchemaENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEEC2Ev:86220 + 0.1: 479 + 0.5: _ZN9oceanbase6common11ObArrayImplIPNS_5share6schema13ObTableSchemaENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEEC2ElRKS6_:79035 + 3: 479 + 4: 479 + 6: 479 + 7.1: 479 + 2: _ZN9oceanbase6common8ObIArrayIPNS_5share6schema13ObTableSchemaEEC2Ev:3353 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_5share6schema13ObTableSchemaEEC2Ev:3353 + 0: 479 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:21555 + 0: 479 + 11: _ZN9oceanbase6common11ObArrayImplIPNS_5share6schema13ObTableSchemaENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEE19set_block_allocatorERKS6_:11017 + 0: _ZN9oceanbase6common19ModulePageAllocatoraSERKS1_:11017 + 2: 479 + 3: 479 + 5: 479 + 13: _ZN9oceanbase3lib11this_workerEv:10538 + 2: _ZN9oceanbase3lib6Worker4selfEv:10538 + 3: 479 + 4: 0 + 13.1: _ZN9oceanbase3lib6Worker23get_sql_arena_allocatorEv:15807 + 2: 479 + 2: _ZN9oceanbase3lib4Flow11current_ctxEv:11496 + 2: _ZN9oceanbase3lib4Flow12current_flowEv:11496 + 3: 479 + 8: 0 + 10: 0 + 11: 0 + 12: 0 + 8.1: _ZN9oceanbase3lib4FlowC2ERNS0_13MemoryContextE:0 + 1: 0 + 3: 0 + 11: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase11transaction14ObPartTransCtx13local_tx_end_Eb:112292:273 + 1: 247 + 2: 247 + 8: 247 _ZNK9oceanbase11transaction11ObCtxTxData18get_commit_versionEv:249 + 8.1: 244 _ZN9oceanbase11transaction14ObPartTransCtx7tx_end_Ebl:246 + 8.2: 241 + 9.1: 0 + 10.2: 245 + 11.1: 0 + 12.2: 255 + 13.1: 0 + 14.1: 255 _ZNK9oceanbase11transaction11ObCtxTxData14get_end_log_tsEv:277 + 14.3: 271 + 15.1: 0 + 22: 271 _ZN9oceanbase11transaction10ObTransCtx24unregister_timeout_task_Ev:272 + 25: 263 + 26.5: 263 _ZN9oceanbase6common13ObSEArrayImplINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EED2Ev:263 + 26.6: 0 + 6: _ZN9oceanbase6common9ObSEArrayINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EEC2Ev:28405 + 0.1: 247 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EEC2ElRKS4_:24700 + 2: 247 + 5: 247 + 6: 247 + 8: 247 + 17.1: 247 + 2: _ZN9oceanbase6common8ObIArrayINS_11transaction14ObTxBufferNodeEEC2EPS3_l:1976 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_11transaction14ObTxBufferNodeEEC2EPS3_l:1976 + 0: 247 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:10127 + 0: 247 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:4446 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:4446 + 2: 247 + 8: 247 + 10.1: _ZN9oceanbase11transaction14ObPartTransCtx12trans_clear_Ev:2169 + 3: 241 _ZN9oceanbase8memtable13ObMemtableCtx11trans_clearEv:251 + 12.1: _ZNK9oceanbase11transaction14ObPartTransCtx20gen_total_mds_array_ERNS_6common9ObSEArrayINS0_14ObTxBufferNodeELl1ENS2_19ModulePageAllocatorELb0EEE:15433 + 2: 245 + 4: 259 _ZN9oceanbase6common13ObSEArrayImplINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EE6assignERKNS0_8ObIArrayIS3_EE:249 + 5.1: 0 + 6.1: 259 _ZNK9oceanbase11transaction12ObTxMDSCache7copy_toERNS_6common9ObSEArrayINS0_14ObTxBufferNodeELl1ENS2_19ModulePageAllocatorELb0EEE:263 + 7.1: 0 + 10: 0 + 14.2: _ZN9oceanbase11transaction14ObPartTransCtx19notify_data_source_ENS0_10NotifyTypeElbRKNS_6common9ObSEArrayINS0_14ObTxBufferNodeELl1ENS3_19ModulePageAllocatorELb0EEE:22891 + 5: 235 + 8: 235 + 9: 235 _ZNK9oceanbase11transaction11ObCtxTxData18get_commit_versionEv:262 + 9.1: 258 + 10: 258 + 11: 258 + 13: 258 _ZN9oceanbase11transaction25ObMulSourceTxDataNotifier6notifyERKNS_6common9ObSEArrayINS0_14ObTxBufferNodeELl1ENS2_19ModulePageAllocatorELb0EEENS0_10NotifyTypeERKNS0_24ObMulSourceDataNotifyArgEPNS0_14ObPartTransCtxE:301 + 13.1: 287 + 14.1: 0 + 16.1: 287 + 17.1: 0 + 26: 271 + 7: _ZN9oceanbase11transaction9ObTransIDaSERKS1_:2820 + 1: 235 +_ZN9oceanbase7obmysql14ObMySQLHandler7cleanupEP14easy_request_tPv:111667:5324 + 1: 5315 + 4: 5315 + 4.1: 5315 + 7: 0 + 10: 5328 + 8: _Z9do_wakeupP14easy_request_t:0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 +_ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE19generate_value_arr_ElRNS_6common9ObSEArrayIPS3_Ll32ENS6_19ModulePageAllocatorELb0EEE:111160:419 + 1: 407 + 2: 407 + 4: 407 + 5: 435 + 7.1: 5 + 7.2: 440 + 7.3: 440 + 8: 5 + 9.1: 5 + 10.1: 0 + 13: 5 + 18.1: 0 + 18.3: 0 + 19.1: 0 + 22: 0 + 23.4: 387 + 23.5: 0 + 4: _ZN9oceanbase6common8get_itidEv:11396 + 4: 407 + 5: 0 + 6: 0 + 8: 0 + 4.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE16BucketRLockGuardC2ERKNS_6common10SpinRWLockEm:33286 + 1: 407 + 3: 435 + 4.1: 0 + 3: _ZN9oceanbase6common10SpinRWLock6rdlockEl:7733 + 0: 407 _ZN9oceanbase6common7ObLatch6rdlockEjl:410 + 6: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE15get_thread_nodeEv:10875 + 2: 435 + 2.1: 0 + 2.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE4NodeC2Ev:0 + 0: 0 + 6.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE4Node13set_thread_idEl:8265 + 0: 435 + 8: _ZN9oceanbase11transaction15ObTransHashLinkINS0_10ObTransCtxEE7inc_refEi:55 + 2: 5 + 3.1: 0 + 5: 5 + 9: _ZN9oceanbase6common13ObSEArrayImplIPNS_11transaction10ObTransCtxELl32ENS0_19ModulePageAllocatorELb0EE9push_backERKS4_:130 + 5: 5 + 6: 0 + 12: 0 + 15: 0 + 15.1: 5 + 16: 5 + 15.1: _ZN9oceanbase6common9ObClassOpIPNS_11transaction10ObTransCtxELb1EE20construct_and_assignERKS4_RS4_:20 + 2: 5 + 11: _ZN9oceanbase11transaction15ObTransHashLinkINS0_10ObTransCtxEE7dec_refEi:0 + 2: 0 + 3: 0 + 4.1: 0 + 17: _ZNK9oceanbase6common12ObIArrayWrapIPNS_11transaction10ObTransCtxEE5countEv:0 + 0: 0 + 19: _ZN9oceanbase6common12ObIArrayWrapIPNS_11transaction10ObTransCtxEE2atEl:0 + 6: 0 + 19.1: _ZN9oceanbase11transaction15ObTransHashLinkINS0_10ObTransCtxEE7dec_refEi:0 + 2: 0 + 3: 0 + 4.1: 0 + 23.4: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE16BucketRLockGuardD2Ev:26849 + 2: 428 + 3: 428 + 3.1: 387 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase6common10SpinRWLock6unlockEv:1284 + 0: 428 _ZN9oceanbase6common7ObLatch6unlockEPKj:435 + 6: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE15get_thread_nodeEv:8127 + 2: 387 + 2.1: 0 + 2.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE4NodeC2Ev:0 + 0: 0 + 6.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE4Node5resetEv:8901 + 0: 387 +_ZN9oceanbase11transaction14ObPartTransCtxD2Ev:111157:4 + 0: 4 _ZN9oceanbase11transaction14ObPartTransCtx7destroyEv:4 + 0.1: 4 + 0.2: 288 _ZN9oceanbase11transaction9ObTxLogCbD2Ev:1 + 0.3: 9 + 0.4: 4 + 0.5: 128 + 0.6: 4 + 0.7: 4 + 0.8: 4 _ZN9oceanbase6common13ObSEArrayImplINS_11transaction11ObLSLogInfoELl10ENS0_19ModulePageAllocatorELb0EED2Ev:4 + 0.9: 4 _ZN9oceanbase11transaction9ObTxLogCbD2Ev:4 + 0.14: 5 _ZN9oceanbase11transaction12ObTxExecInfoD2Ev:1 + 0.18: 6 _ZN9oceanbase8memtable13ObMemtableCtxD1Ev:2 + 0.22: 4 + 0.23: 4 + 0.26: 4 + 0.27: 4 + 0.28: 4 + 0.30: 4 + 0.32: 4 + 0.33: 4 + 0.35: 4 + 0.1: _ZN9oceanbase11transaction24TransModulePageAllocatorD2Ev:188 + 0: 4 + 0: _ZN9oceanbase11transaction18ObReserveAllocatorD2Ev:116 + 0: 4 + 0: _ZN9oceanbase11transaction18ObReserveAllocator5resetEv:44 + 3: 4 + 0.4: _ZN9oceanbase11transaction24TransModulePageAllocatorD2Ev:188 + 0: 4 + 0: _ZN9oceanbase11transaction18ObReserveAllocatorD2Ev:116 + 0: 4 + 0: _ZN9oceanbase11transaction18ObReserveAllocator5resetEv:44 + 3: 4 + 0.12: _ZN9oceanbase11transaction12ObTxMDSCacheD2Ev:355 + 0: 5 + 0: _ZN9oceanbase6common6ObListINS_11transaction14ObTxBufferNodeENS2_24TransModulePageAllocatorEED2Ev:320 + 2.1: 4 + 2: _ZN9oceanbase6common6ObListINS_11transaction14ObTxBufferNodeENS2_24TransModulePageAllocatorEE5resetEv:288 + 2: _ZN9oceanbase6common6ObListINS_11transaction14ObTxBufferNodeENS2_24TransModulePageAllocatorEE5clearEv:288 + 2: 5 + 3.1: 5 + 4: 4 + 5: 4 + 8: 5 + 9: 5 + 10: 5 + 0.13: _ZN9oceanbase11transaction11ObCtxTxDataD2Ev:111 + 0: _ZN9oceanbase6common10SpinRWLockD2Ev:56 + 2: 5 _ZN9oceanbase6common7ObLatchD1Ev:1 + 0.1: _ZN9oceanbase7storage14ObTxCommitDataD2Ev:55 + 0: _ZN9oceanbase11transaction9ObTransIDD2Ev:55 + 0: 5 + 0.15: _ZN9oceanbase5share6ObLSIDD2Ev:44 + 0: _ZN9oceanbase5share6ObLSID5resetEv:44 + 0: 4 + 0.16: _ZN9oceanbase11transaction17ObCLogEncryptInfoD2Ev:124 + 0: 4 + 0.3: 4 + 0.19: _ZN9oceanbase11transaction26ObTxCycleTwoPhaseCommitterD2Ev:1374 + 0: 9 + 0: _ZN9oceanbase6common8ObBitSetILl256ENS0_19ModulePageAllocatorELb0EED2Ev:1212 + 0: 9 + 0: _ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb0EED2Ev:1050 + 1: 9 + 3.2: 4 + 2: _ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb0EE7destroyEv:856 + 9: 9 + 11: 4 + 13: 9 + 15: 9 + 24: 9 + 10: _ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:268 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:268 + 0: 4 + 0.2: 4 + 0.1: _ZN9oceanbase6common7ob_freeEPv:176 + 2: 4 + 3: 4 + 4: 4 + 5: 4 + 4: _ZL12abort_unlessb:36 + 5: 4 + 6: 4 + 0.20: _ZN9oceanbase11transaction10ObTsCbTaskD2Ev:99 + 0: _ZN9oceanbase6common6ObLinkD2Ev:99 + 0: 9 + 0.21: _ZN9oceanbase11transaction10ObTransCtxD2Ev:1267 + 0: 9 + 0.1: _ZN9oceanbase6common15ObTimeWheelTaskD2Ev:162 + 0: 9 + 0.2: _ZN9oceanbase11transaction19ObTransNeedWaitWrapD2Ev:99 + 0.1: _ZN9oceanbase11transaction11MonotonicTsD2Ev:99 + 0: _ZN9oceanbase11transaction11MonotonicTs5resetEv:99 + 0: 9 + 0.3: _ZN9oceanbase11transaction18ObTxCommitCallbackD2Ev:459 + 0: _ZN9oceanbase11transaction18ObTxCommitCallback5resetEv:360 + 2: 9 + 4: 9 + 7: 9 + 8: 9 + 0.1: _ZN9oceanbase11transaction9ObTransIDD2Ev:99 + 0: 9 + 0.4: _ZN9oceanbase11transaction11MonotonicTsD2Ev:99 + 0: _ZN9oceanbase11transaction11MonotonicTs5resetEv:99 + 0: 9 + 0.5: _ZN9oceanbase11transaction7CtxLockD2Ev:61 + 0: 9 _ZN9oceanbase6common7ObLatchD1Ev:5 + 0.7: _ZN9oceanbase5share6ObLSIDD2Ev:108 + 0: _ZN9oceanbase5share6ObLSID5resetEv:108 + 0: 9 + 0.8: _ZN9oceanbase11transaction15ObTransHashLinkINS0_10ObTransCtxEED2Ev:144 + 2: 9 + 3: 9 + 0.29: _ZN9oceanbase5share6ObLSIDD2Ev:44 + 0: _ZN9oceanbase5share6ObLSID5resetEv:44 + 0: 4 + 0.34: _ZN9oceanbase11transaction10ObTsCbTaskD2Ev:44 + 0: _ZN9oceanbase6common6ObLinkD2Ev:44 + 0: 4 +_ZN9oceanbase6common7ObLatch10try_rdlockEj:111144:1091 + 1: 1013 + 2: 1013 + 3: 1013 + 4: 0 + 5.1: 0 + 7: 1013 + 11: 1013 + 12: 1013 + 13: 1013 + 14: 0 + 15.1: 0 + 18: 1013 + 20: 0 + 25: 1022 + 26: 1022 + 27: 1022 + 33: 0 + 36.1: 1114 _ZN9oceanbase6common20ObDiagnoseTenantInfo23get_local_diagnose_infoEv:1069 + 36.2: 0 + 36.5: 0 + 39: 1114 +_ZN9oceanbase11transaction14ObPartTransCtx31prepare_mul_data_source_tx_end_Eb:110915:268 + 1: 231 + 4: 231 + 7: 231 + 7.1: 231 _ZN9oceanbase11transaction14ObPartTransCtx25submit_multi_source_data_Ev:235 + 7.2: 275 + 8.1: 5 + 9.2: 232 + 10.1: 5 + 11.2: 264 + 13.1: 5 + 16: 264 + 5: _ZN9oceanbase6common9ObSEArrayINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EEC2Ev:38577 + 0.1: 231 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EEC2ElRKS4_:34419 + 2: 231 + 5: 231 + 6: 231 + 8: 231 + 17.1: 231 + 2: _ZN9oceanbase6common8ObIArrayINS_11transaction14ObTxBufferNodeEEC2EPS3_l:4158 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_11transaction14ObTxBufferNodeEEC2EPS3_l:4158 + 0: 231 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:13167 + 0: 231 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:5775 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:5775 + 2: 231 + 8: 231 + 9.1: _ZNK9oceanbase11transaction14ObPartTransCtx20gen_total_mds_array_ERNS_6common9ObSEArrayINS0_14ObTxBufferNodeELl1ENS2_19ModulePageAllocatorELb0EEE:13152 + 4: 275 _ZN9oceanbase6common13ObSEArrayImplINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EE6assignERKNS0_8ObIArrayIS3_EE:279 + 5.1: 5 + 6.1: 240 _ZNK9oceanbase11transaction12ObTxMDSCache7copy_toERNS_6common9ObSEArrayINS0_14ObTxBufferNodeELl1ENS2_19ModulePageAllocatorELb0EEE:238 + 7.1: 5 + 10: 5 + 11.1: _ZN9oceanbase11transaction14ObPartTransCtx19notify_data_source_ENS0_10NotifyTypeElbRKNS_6common9ObSEArrayINS0_14ObTxBufferNodeELl1ENS3_19ModulePageAllocatorELb0EEE:24502 + 5: 232 + 8: 232 + 9: 232 _ZNK9oceanbase11transaction11ObCtxTxData18get_commit_versionEv:245 + 9.1: 272 + 10: 272 + 11: 272 + 13: 272 _ZN9oceanbase11transaction25ObMulSourceTxDataNotifier6notifyERKNS_6common9ObSEArrayINS0_14ObTxBufferNodeELl1ENS2_19ModulePageAllocatorELb0EEENS0_10NotifyTypeERKNS0_24ObMulSourceDataNotifyArgEPNS0_14ObPartTransCtxE:281 + 13.1: 277 + 14.1: 5 + 16.1: 277 + 17.1: 5 + 26: 264 + 7: _ZN9oceanbase11transaction9ObTransIDaSERKS1_:1856 + 1: 232 + 15: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EED2Ev:8430 + 1: 264 + 3.2: 5 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:3598 + 9: 264 + 11: 5 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:370 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:370 + 0: 5 + 0.2: 5 + 0.1: _ZN9oceanbase6common7ob_freeEPv:220 + 2: 5 + 3: 5 + 4: 5 + 5: 5 + 4: _ZL12abort_unlessb:45 + 5: 5 + 6: 5 + 15.1: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EED2Ev:590 + 1: 5 + 3.2: 5 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:420 + 9: 5 + 11: 5 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:325 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:325 + 0: 5 + 0.2: 5 + 0.1: _ZN9oceanbase6common7ob_freeEPv:220 + 2: 5 + 3: 5 + 4: 5 + 5: 5 + 4: _ZL12abort_unlessb:35 + 5: 5 + 6: 5 +_ZN9oceanbase6common13ObSEArrayImplINS_3sql7ObHintsELl8ENS0_19ModulePageAllocatorELb1EED2Ev:110880:1120 + 1: 1056 + 3: 1056 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_3sql7ObHintsELl8ENS0_19ModulePageAllocatorELb1EE7destroyEv:59136 + 4.1: 1056 + 4.3: 0 + 9: 1056 + 11: 0 + 13: 1056 + 15: 1056 + 24: 1056 + 5: _ZN9oceanbase3sql7ObHintsD2Ev:0 + 0: _ZN9oceanbase6common13ObSEArrayImplIPNS_3sql6ObHintELl8ENS0_19ModulePageAllocatorELb1EED2Ev:0 + 1: 0 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplIPNS_3sql6ObHintELl8ENS0_19ModulePageAllocatorELb1EE7destroyEv:0 + 9: 0 + 11: 0 + 13: 0 + 15: 0 + 24: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplIPNS_3sql6ObHintELl8ENS0_19ModulePageAllocatorELb1EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_3sql7ObHintsELl8ENS0_19ModulePageAllocatorELb1EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase6common17ObKVStoreMemBlock5allocElllRPNS0_13ObKVCachePairE:110858:605 + 5: 514 + 6: 514 + 9: 514 + 12: 514 + 13: 0 + 14.1: 0 + 15.1: 514 + 16: 0 + 17.1: 0 + 18.1: 514 + 19: 0 + 20.1: 0 + 24.1: 516 + 25: 516 + 26: 516 + 27: 516 + 28: 0 + 31: 516 + 33: 516 + 40: 514 + 41: 514 + 42: 514 + 43: 514 + 44: 514 + 45: 514 + 48: 534 +_ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE23clean_dumped_partitionsEv:110758:799 + 1: 724 + 2: 724 + 3: 724 + 3.1: 724 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8.1: 0 + 9.1: 0 + 10.1: 0 + 11.1: 0 + 12: 0 + 13.1: 0 + 15: 0 + 16: 0 + 19: 723 + 19.1: 723 + 20: 0 + 21: 0 + 22: 0 + 23: 0 + 24.1: 0 + 25.1: 0 + 26.1: 0 + 27.1: 0 + 28: 0 + 29.1: 0 + 31: 0 + 32: 0 + 37: 721 _ZN9oceanbase6common4hash9ObHashMapINS_3sql24ObHashPartInfrastructureINS3_14ObHashPartColsENS3_19ObHashPartStoredRowEE14ObIntraPartKeyEPNS7_16ObIntraPartitionENS1_19NoPthreadDefendModeENS1_9hash_funcIS8_EENS1_8equal_toIS8_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS8_SA_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv:739 + 38: 683 _ZN9oceanbase6common4hash9ObHashMapINS_3sql24ObHashPartInfrastructureINS3_14ObHashPartColsENS3_19ObHashPartStoredRowEE14ObIntraPartKeyEPNS7_16ObIntraPartitionENS1_19NoPthreadDefendModeENS1_9hash_funcIS8_EENS1_8equal_toIS8_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS8_SA_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv:699 + 39: 746 + 40: 746 + 3: _ZN9oceanbase6common7ObDListINS_3sql24ObHashPartInfrastructureINS2_14ObHashPartColsENS2_19ObHashPartStoredRowEE16ObIntraPartitionEE9get_firstEv:7240 + 0: 724 + 5: _ZN9oceanbase6common7ObDListINS_3sql24ObHashPartInfrastructureINS2_14ObHashPartColsENS2_19ObHashPartStoredRowEE16ObIntraPartitionEE6removeEPS7_:0 + 3: 0 + 7: 0 + 6: _ZN9oceanbase6common11ObDLinkBaseINS_3sql24ObHashPartInfrastructureINS2_14ObHashPartColsENS2_19ObHashPartStoredRowEE16ObIntraPartitionEE6unlinkEv:0 + 2: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 9.1: _ZN9oceanbase6common4hash9ObHashMapINS_3sql24ObHashPartInfrastructureINS3_14ObHashPartColsENS3_19ObHashPartStoredRowEE14ObIntraPartKeyEPNS7_16ObIntraPartitionENS1_19NoPthreadDefendModeENS1_9hash_funcIS8_EENS1_8equal_toIS8_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS8_SA_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE16erase_refactoredERKS8_PSA_:0 + 5: 0 + 3: _ZN9oceanbase6common4hash11HashMapPairINS_3sql24ObHashPartInfrastructureINS3_14ObHashPartColsENS3_19ObHashPartStoredRowEE14ObIntraPartKeyEPNS7_16ObIntraPartitionEEC2Ev:0 + 0: 0 + 6.1: _ZN9oceanbase6common11copy_assignIPNS_3sql24ObHashPartInfrastructureINS2_14ObHashPartColsENS2_19ObHashPartStoredRowEE16ObIntraPartitionEEEiRT_RKS9_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapIPNS_3sql24ObHashPartInfrastructureINS2_14ObHashPartColsENS2_19ObHashPartStoredRowEE16ObIntraPartitionEEEiRT_RKS9_NS0_8BoolTypeILb0EEE:0 + 2: 0 + 19: _ZN9oceanbase6common7ObDListINS_3sql24ObHashPartInfrastructureINS2_14ObHashPartColsENS2_19ObHashPartStoredRowEE16ObIntraPartitionEE9get_firstEv:7230 + 0: 723 + 21: _ZN9oceanbase6common7ObDListINS_3sql24ObHashPartInfrastructureINS2_14ObHashPartColsENS2_19ObHashPartStoredRowEE16ObIntraPartitionEE6removeEPS7_:0 + 3: 0 + 7: 0 + 6: _ZN9oceanbase6common11ObDLinkBaseINS_3sql24ObHashPartInfrastructureINS2_14ObHashPartColsENS2_19ObHashPartStoredRowEE16ObIntraPartitionEE6unlinkEv:0 + 2: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 25.1: _ZN9oceanbase6common4hash9ObHashMapINS_3sql24ObHashPartInfrastructureINS3_14ObHashPartColsENS3_19ObHashPartStoredRowEE14ObIntraPartKeyEPNS7_16ObIntraPartitionENS1_19NoPthreadDefendModeENS1_9hash_funcIS8_EENS1_8equal_toIS8_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS8_SA_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE16erase_refactoredERKS8_PSA_:0 + 5: 0 + 3: _ZN9oceanbase6common4hash11HashMapPairINS_3sql24ObHashPartInfrastructureINS3_14ObHashPartColsENS3_19ObHashPartStoredRowEE14ObIntraPartKeyEPNS7_16ObIntraPartitionEEC2Ev:0 + 0: 0 + 6.1: _ZN9oceanbase6common11copy_assignIPNS_3sql24ObHashPartInfrastructureINS2_14ObHashPartColsENS2_19ObHashPartStoredRowEE16ObIntraPartitionEEEiRT_RKS9_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapIPNS_3sql24ObHashPartInfrastructureINS2_14ObHashPartColsENS2_19ObHashPartStoredRowEE16ObIntraPartitionEEEiRT_RKS9_NS0_8BoolTypeILb0EEE:0 + 2: 0 + 35: _ZN9oceanbase6common7ObDListINS_3sql24ObHashPartInfrastructureINS2_14ObHashPartColsENS2_19ObHashPartStoredRowEE16ObIntraPartitionEE5resetEv:17304 + 1: _ZN9oceanbase6common7ObDListINS_3sql24ObHashPartInfrastructureINS2_14ObHashPartColsENS2_19ObHashPartStoredRowEE16ObIntraPartitionEE5clearEv:17304 + 2: 721 + 3: 721 + 4: 721 + 36: _ZN9oceanbase6common7ObDListINS_3sql24ObHashPartInfrastructureINS2_14ObHashPartColsENS2_19ObHashPartStoredRowEE16ObIntraPartitionEE5resetEv:17304 + 1: _ZN9oceanbase6common7ObDListINS_3sql24ObHashPartInfrastructureINS2_14ObHashPartColsENS2_19ObHashPartStoredRowEE16ObIntraPartitionEE5clearEv:17304 + 2: 721 + 3: 721 + 4: 721 +_ZN9oceanbase11transaction17ObTxCommitInfoLog16before_serializeEv:110525:267 + 1: 264 + 4: 264 _ZN9oceanbase11transaction17ObTxSerCompatByte4initEl:264 + 5.1: 8 + 8: 228 + 8.1: 238 + 8.2: 0 + 8.4: 8 + 9: 8 + 9.1: 237 + 9.2: 0 + 9.4: 8 + 10: 8 + 10.1: 255 + 10.2: 255 _ZN9oceanbase11transaction17ObTxSerCompatByte15set_object_flagElb:255 + 10.4: 8 + 11: 8 + 11.1: 247 + 11.2: 249 _ZN9oceanbase11transaction17ObTxSerCompatByte15set_object_flagElb:253 + 11.4: 8 + 12: 8 + 12.1: 249 + 12.2: 274 _ZN9oceanbase11transaction17ObTxSerCompatByte15set_object_flagElb:271 + 12.4: 8 + 13: 8 + 13.1: 274 + 13.2: 274 _ZN9oceanbase11transaction17ObTxSerCompatByte15set_object_flagElb:276 + 13.4: 8 + 13.6: 8 + 14: 8 + 14.1: 243 + 14.2: 273 _ZN9oceanbase11transaction17ObTxSerCompatByte15set_object_flagElb:262 + 14.4: 8 + 14.6: 8 + 15: 8 + 15.1: 273 + 15.2: 3 + 15.4: 8 + 15.6: 8 + 16: 8 + 16.1: 268 + 16.2: 281 _ZN9oceanbase11transaction17ObTxSerCompatByte15set_object_flagElb:266 + 16.4: 8 + 16.6: 8 + 17: 8 + 17.1: 281 + 17.2: 281 _ZN9oceanbase11transaction17ObTxSerCompatByte15set_object_flagElb:285 + 17.4: 8 + 17.6: 8 + 18: 8 + 18.1: 281 _ZNK9oceanbase4palf3LSN8is_validEv:292 + 18.2: 294 _ZN9oceanbase11transaction17ObTxSerCompatByte15set_object_flagElb:274 + 18.4: 8 + 18.6: 8 + 19: 8 + 19.1: 294 + 19.2: 311 _ZN9oceanbase11transaction17ObTxSerCompatByte15set_object_flagElb:308 + 19.4: 8 + 19.6: 8 + 20: 8 + 20.1: 311 _ZNK9oceanbase11transaction11ObXATransID5emptyEv:305 + 20.2: 301 _ZN9oceanbase11transaction17ObTxSerCompatByte15set_object_flagElb:292 + 20.4: 8 + 23: 301 + 8.1: _ZNK9oceanbase6common6ObAddr8is_validEv:4720 + 3: 228 + 4: 0 + 5: 0 + 8.1: 240 + 9.1: 240 + 10: 238 + 13.1: 0 + 13.3: 0 + 14: 0 + 9.1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6ObLSIDEE5emptyEv:1185 + 0: 237 + 10.1: _ZNK9oceanbase5share6ObLSID8is_validEv:1275 + 0: 255 + 14.1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6ObLSIDEE5emptyEv:1215 + 0: 243 + 16.1: _ZNK9oceanbase6common8ObString5emptyEv:2948 + 2: 268 + 2.1: 268 + 17.1: _ZNK9oceanbase6common8ObString5emptyEv:3091 + 2: 281 + 2.1: 281 + 19.1: _ZNK9oceanbase6common12ObIArrayWrapINS_4palf3LSNEE5emptyEv:1470 + 0: 294 +_ZN9oceanbase11transaction14ObPartTransCtx13default_init_Ev:110203:272 + 1: 251 + 8: 251 + 10: 251 + 12: 251 + 13: 251 + 14: 251 + 15: 276 _ZN9oceanbase11transaction11ObTraceInfo5resetEv:282 + 18: 268 _ZN9oceanbase11transaction17ObCLogEncryptInfo5resetEv:281 + 19: 253 + 20: 277 + 21: 277 _ZN9oceanbase8memtable13ObMemtableCtx5resetEv:279 + 22: 263 + 23: 263 + 25: 263 + 28: 263 + 29: 263 _ZN9oceanbase11transaction12ObTxExecInfo5resetEv:265 + 30: 240 _ZN9oceanbase11transaction11ObCtxTxData5resetEv:242 + 32: 250 _ZN9oceanbase11transaction14ObPartTransCtx14reset_log_cbs_Ev:248 + 34: 248 + 37: 248 + 38: 248 + 39: 248 _ZN9oceanbase11transaction12ObTxMDSCache5resetEv:249 + 41: 255 + 42: 255 + 43: 255 + 46: 274 + 4: _ZN9oceanbase11transaction11MonotonicTs5resetEv:1757 + 0: 251 + 5: _ZN9oceanbase11transaction18ObTxCommitCallback5resetEv:12550 + 2: 251 + 4: 251 + 7: 251 + 8: 251 + 7: _ZN9oceanbase11transaction19ObTransNeedWaitWrap5resetEv:3514 + 3: 251 + 14: _ZN9oceanbase11transaction18ObTransTimeoutTask5resetEv:9884 + 2: 251 _ZN9oceanbase6common15ObTimeWheelTask5resetEv:265 + 4: 276 + 5: 276 + 3: _ZN9oceanbase11transaction14ObITimeoutTask5resetEv:5016 + 2: 264 + 4: 264 + 5: 264 _ZN9oceanbase6common15ObTimeWheelTask5resetEv:266 + 19: _ZN9oceanbase11transaction26ObTxCycleTwoPhaseCommitter5resetEv:7651 + 3: 241 _ZThn664_N9oceanbase11transaction14ObPartTransCtx18set_upstream_stateENS0_9ObTxStateE:281 + 2: _ZN9oceanbase6common8ObBitSetILl256ENS0_19ModulePageAllocatorELb0EE5resetEv:3795 + 2: 253 + 2: _ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb0EE5resetEv:2024 + 0: 253 _ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb0EE7destroyEv:253 + 26: _ZN9oceanbase11transaction14ObPartTransCtx19clean_retain_cause_Ev:1841 + 2: 263 + 31: _ZN9oceanbase11transaction12ObTxSubState5resetEv:1750 + 0: 250 + 43: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction11ObLSLogInfoELl10ENS0_19ModulePageAllocatorELb0EE5resetEv:2050 + 0: 255 _ZN9oceanbase6common13ObSEArrayImplINS_11transaction11ObLSLogInfoELl10ENS0_19ModulePageAllocatorELb0EE7destroyEv:255 + 44: _ZN9oceanbase11transaction24TransModulePageAllocator5resetEv:3288 + 3: _ZN9oceanbase11transaction18ObReserveAllocator5resetEv:3288 + 3: 274 + 45: _ZN9oceanbase11transaction14ObTxELRHandler5resetEv:3836 + 2: 274 + 3: 274 +_ZN9oceanbase3sql17ObChunkDatumStore13LastStoredRow14save_store_rowERKNS_6common8ObIArrayIPNS0_6ObExprEEERNS0_9ObEvalCtxEl:110065:610 + 3: 550 + 4: 550 + 5: 550 + 7: 550 + 8: 550 + 10: 550 + 13.1: 550 _ZN9oceanbase3sql17ObChunkDatumStore13row_copy_sizeERKNS_6common8ObIArrayIPNS0_6ObExprEEERNS0_9ObEvalCtxERl:561 + 14.1: 0 + 17: 499 + 18: 499 + 19: 498 + 21: 520 + 21.1: 265 + 22: 0 + 23.1: 0 + 26.3: 543 + 29: 543 + 33: 1 + 33.3: 1 + 36: 7 _ZN9oceanbase6common16ObArenaAllocator5allocEl:1 + 37: 0 + 38.1: 0 + 39.1: 8 _ZN9oceanbase6common16ObArenaAllocator5allocEl:7 + 40: 0 + 41.1: 0 + 42.1: 8 + 45.1: 8 + 53: 558 + 55: 558 _ZN9oceanbase3sql17ObChunkDatumStore9StoredRow5buildERPS2_RKNS_6common8ObIArrayIPNS0_6ObExprEEERNS0_9ObEvalCtxEPcljb:587 + 56.1: 0 + 58: 529 + 62: 529 + 42.1: _ZN9oceanbase3sql17ObChunkDatumStore9StoredRowC2Ev:24 + 0: 8 + 45.1: _ZN9oceanbase3sql17ObChunkDatumStore9StoredRowC2Ev:24 + 0: 8 +_ZN9oceanbase3sql15ObCacheObjGuardD2Ev:109575:5611 + 1: 5498 + 2: 5498 + 5: 0 + 5.1: 0 + 6: 0 + 8: 5443 + 5: _ZN9oceanbase3sql20ObCacheObjectFactory4freeINS0_17ObILibCacheObjectEEEvRPT_NS0_16CacheRefHandleIDE:0 + 2: 0 + 3: 0 +_ZN9oceanbase7storage17ObLSTabletService23prepare_dml_running_ctxEPKNS_6common8ObIArrayImEES6_RNS0_14ObTabletHandleERNS0_15ObDMLRunningCtxE:109113:1034 + 5: 995 + 6: 995 + 8: 1049 + 8.2: 1049 _ZN9oceanbase7storage15ObDMLRunningCtx4initEPKNS_6common8ObIArrayImEES6_PNS_5share6schema27ObMultiVersionSchemaServiceERNS0_14ObTabletHandleE:996 + 13.1: 3 + 16: 1049 + 8: _ZN9oceanbase5share11ObTenantEnv3mtlIPNS0_6schema21ObTenantSchemaServiceEEET_v:30039 + 2: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:15114 + 2: 995 + 2.1: 3 + 2.2: 3 + 2.1: _ZN9oceanbase5share12ObTenantBase3getIPNS0_6schema21ObTenantSchemaServiceEEET_v:14925 + 0: _ZN9oceanbase5share12ObTenantBase9inner_getENS1_8IdentityIPNS0_6schema21ObTenantSchemaServiceEEE:14925 + 0: 995 + 8.1: _ZN9oceanbase5share6schema21ObTenantSchemaService18get_schema_serviceEv:2985 + 0: 995 +_ZN9oceanbase8memtable19ObIMemtableIterator12get_next_rowERPKNS_12blocksstable10ObDatumRowE:109097:3326 + 0: 3256 + 2: 3475 _ZN9oceanbase8memtable21ObMemtableGetIterator18inner_get_next_rowERPKNS_12blocksstable10ObDatumRowE:3357 + 3.1: 3460 + 3.2: 4 + 3.3: 4 + 3.4: 4 + 3.6: 4 + 3.7: 4 + 5: 3460 + 3.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:17331 + 2: 3475 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:3545 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:13840 + 2: 3460 +_ZN9oceanbase11transaction12ObTxLogBlock27serialize_log_block_header_ElRKNS0_18ObTxLogBlockHeaderE:108988:794 + 2: 779 + 3: 779 + 5: 779 _ZN9oceanbase10logservice15ObLogBaseHeaderC1ENS0_13ObLogBaseTypeENS0_19ObReplayBarrierTypeEl:787 + 7: 812 + 7.1: 812 + 7.2: 810 + 8: 16 + 18.1: 810 _ZNK9oceanbase10logservice15ObLogBaseHeader9serializeEPclRl:808 + 18.2: 751 + 19.1: 16 + 22.1: 751 _ZNK9oceanbase11transaction18ObTxLogBlockHeader9serializeEPclRl:743 + 22.2: 796 + 23.1: 16 + 25: 824 + 26.4: 824 _ZN9oceanbase10logservice15ObLogBaseHeaderD1Ev:827 + 26.5: 16 +_ZN9oceanbase6common9Ob2DArrayIPNS_3sql14ObHashPartColsELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS4_Ll64ES5_Lb0EEEE7destroyEv:108253:233 + 1: 230 + 4.1: 2345 + 4.3: 2345 + 5: 2256 + 9: 284 + 11: 270 + 2: _ZN9oceanbase6common9Ob2DArrayIPNS_3sql14ObHashPartColsELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS4_Ll64ES5_Lb0EEEE13destruct_objsEv:2530 + 11: 230 + 3: _ZNK9oceanbase6common9Ob2DArrayIPNS_3sql14ObHashPartColsELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS4_Ll64ES5_Lb0EEEE15get_block_countEv:920 + 0: _ZNK9oceanbase6common12ObIArrayWrapIPPNS_3sql14ObHashPartColsEE5countEv:920 + 0: 230 + 5: _ZN9oceanbase6common12ObIArrayWrapIPPNS_3sql14ObHashPartColsEE2atEl:9024 + 6: 2256 + 6: _ZN9oceanbase6common9Ob2DArrayIPNS_3sql14ObHashPartColsELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS4_Ll64ES5_Lb0EEEE10free_blockES7_:42117 + 0: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:42117 + 0: 2256 + 0.2: 2256 + 0.1: _ZN9oceanbase6common7ob_freeEPv:1470 + 2: 35 + 3: 35 + 4: 35 + 5: 35 + 42.2: 35 + 4: _ZL12abort_unlessb:70 + 5: 35 + 6: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplIPPNS_3sql14ObHashPartColsELl64ENS0_19ModulePageAllocatorELb0EE7destroyEv:12588 + 9: 284 + 11: 0 + 13: 270 + 15: 270 + 24: 270 + 10: _ZN9oceanbase6common13ObSEArrayImplIPPNS_3sql14ObHashPartColsELl64ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE11ELS3_23EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE:108108:2064 + 0: 2002 + 0.3: 2002 + 0: _ZNK9oceanbase6common5ObObj12is_min_valueEv:42042 + 2: 2002 + 2: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:4004 + 0: 2002 +_ZN9oceanbase3sql13ObDASUpdateOpC2ERNS_6common12ObIAllocatorE:107817:363 + 3: 322 + 4: 341 + 5: 322 + 1: _ZN9oceanbase3sql12ObIDASTaskOpC2ERNS_6common12ObIAllocatorE:80200 + 0: 341 _ZN9oceanbase11transaction14ObTxExecResultC1Ev:352 + 2: 341 + 3: 341 + 5: 341 + 6: 341 + 8: 322 + 9: 322 + 13: 341 + 0.2: _ZN9oceanbase6common10ObTabletIDC2Em:4508 + 0: 322 + 10: _ZN9oceanbase6common12ObFixedArrayIPKNS_3sql14ObDASBaseCtDefENS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplIS5_S6_EEERS6_l:17066 + 0: 322 + 0: _ZN9oceanbase6common16ObFixedArrayImplIPKNS_3sql14ObDASBaseCtDefENS0_12ObIAllocatorEEC2ERS6_l:11270 + 2: 322 + 3: 322 + 4: 322 + 1: _ZN9oceanbase6common8ObIArrayIPKNS_3sql14ObDASBaseCtDefEEC2Ev:2254 + 0: _ZN9oceanbase6common12ObIArrayWrapIPKNS_3sql14ObDASBaseCtDefEEC2Ev:2254 + 0: 322 + 11: _ZN9oceanbase6common12ObFixedArrayIPNS_3sql14ObDASBaseRtDefENS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplIS4_S5_EEERS5_l:17066 + 0: 322 + 0: _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql14ObDASBaseRtDefENS0_12ObIAllocatorEEC2ERS5_l:11270 + 2: 322 + 3: 322 + 4: 322 + 1: _ZN9oceanbase6common8ObIArrayIPNS_3sql14ObDASBaseRtDefEEC2Ev:2254 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql14ObDASBaseRtDefEEC2Ev:2254 + 0: 322 + 12: _ZN9oceanbase6common12ObFixedArrayINS0_10ObTabletIDENS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplIS2_S3_EEERS3_l:17066 + 0: 322 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS0_10ObTabletIDENS0_12ObIAllocatorEEC2ERS3_l:11270 + 2: 322 + 3: 322 + 4: 322 + 1: _ZN9oceanbase6common8ObIArrayINS0_10ObTabletIDEEC2Ev:2254 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_10ObTabletIDEEC2Ev:2254 + 0: 322 +_ZN9oceanbase3sql13ObDASUpdateOpC1ERNS_6common12ObIAllocatorE:107817:363 + 3: 322 + 4: 341 + 5: 322 + 1: _ZN9oceanbase3sql12ObIDASTaskOpC2ERNS_6common12ObIAllocatorE:80200 + 0: 341 _ZN9oceanbase11transaction14ObTxExecResultC1Ev:352 + 2: 341 + 3: 341 + 5: 341 + 6: 341 + 8: 322 + 9: 322 + 13: 341 + 0.2: _ZN9oceanbase6common10ObTabletIDC2Em:4508 + 0: 322 + 10: _ZN9oceanbase6common12ObFixedArrayIPKNS_3sql14ObDASBaseCtDefENS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplIS5_S6_EEERS6_l:17066 + 0: 322 + 0: _ZN9oceanbase6common16ObFixedArrayImplIPKNS_3sql14ObDASBaseCtDefENS0_12ObIAllocatorEEC2ERS6_l:11270 + 2: 322 + 3: 322 + 4: 322 + 1: _ZN9oceanbase6common8ObIArrayIPKNS_3sql14ObDASBaseCtDefEEC2Ev:2254 + 0: _ZN9oceanbase6common12ObIArrayWrapIPKNS_3sql14ObDASBaseCtDefEEC2Ev:2254 + 0: 322 + 11: _ZN9oceanbase6common12ObFixedArrayIPNS_3sql14ObDASBaseRtDefENS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplIS4_S5_EEERS5_l:17066 + 0: 322 + 0: _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql14ObDASBaseRtDefENS0_12ObIAllocatorEEC2ERS5_l:11270 + 2: 322 + 3: 322 + 4: 322 + 1: _ZN9oceanbase6common8ObIArrayIPNS_3sql14ObDASBaseRtDefEEC2Ev:2254 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql14ObDASBaseRtDefEEC2Ev:2254 + 0: 322 + 12: _ZN9oceanbase6common12ObFixedArrayINS0_10ObTabletIDENS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplIS2_S3_EEERS3_l:17066 + 0: 322 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS0_10ObTabletIDENS0_12ObIAllocatorEEC2ERS3_l:11270 + 2: 322 + 3: 322 + 4: 322 + 1: _ZN9oceanbase6common8ObIArrayINS0_10ObTabletIDEEC2Ev:2254 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_10ObTabletIDEEC2Ev:2254 + 0: 322 +_ZN9oceanbase6common9ObCharset15well_formed_lenENS0_15ObCollationTypeEPKclRl:107270:829 + 2: 799 + 3: 799 + 4: 799 + 4.3: 799 + 5: 799 + 6: 799 + 7: 0 + 8.1: 0 + 9.1: 799 + 9.3: 799 + 10: 0 + 11.1: 0 + 13.1: 806 + 14: 806 + 15: 806 + 16: 0 + 17.1: 0 + 19: 806 + 20: 806 _ZL26ob_well_formed_len_utf8mb4PK13ObCharsetInfoPKcS3_mPi.5aa8bf9a2f1d92c2672c2bb9fbfc2e97:828 + 21: 754 + 22: 0 + 23.1: 0 + 28: 0 + 30: 754 +_ZN9oceanbase3sql16ForeignKeyHandle9do_handleERNS0_15ObTableModifyOpERKNS0_14ObDMLBaseCtDefERNS0_14ObDMLBaseRtDefE:106572:512 + 3: 483 + 4: 483 + 5: 483 + 8: 483 + 10: 522 + 11.1: 0 + 13.1: 0 + 13.2: 522 + 13.3: 522 + 13.5: 0 + 15.1: 0 + 16: 0 + 18: 0 + 19: 0 + 20.1: 0 + 21.1: 0 + 24.1: 0 + 25.1: 0 + 29: 0 + 30: 0 + 32: 0 + 33: 0 + 34.1: 0 + 36.1: 0 + 38.1: 0 + 39.1: 0 + 43: 0 + 44: 0 + 44.1: 0 + 45.1: 0 + 46.1: 0 + 48.1: 0 + 49.1: 0 + 50.1: 0 + 58.2: 0 + 58.3: 0 + 58.5: 0 + 59: 0 + 60: 0 + 62: 0 + 64: 0 + 66: 0 + 69.1: 0 + 70.1: 0 + 78: 522 + 82: 522 + 5: _ZN9oceanbase3sql15ObTableModifyOp23need_foreign_key_checksEv:3381 + 0: 483 + 8: _ZN9oceanbase3sql10ObOperator12get_exec_ctxEv:1932 + 0: 483 + 10: _ZN9oceanbase3sql15ObTableModifyOp11check_stackEv:46038 + 2: 483 + 3: 483 + 4: 483 + 5: 483 + 6: 483 + 7: 0 + 8.1: 0 + 9.1: 483 + 10: 0 + 11.1: 0 + 12.1: 522 _ZN9oceanbase6common23get_reserved_stack_sizeEv:495 + 12.2: 503 _ZN9oceanbase6common20check_stack_overflowERblPl:541 + 13.1: 0 + 14.1: 522 + 15: 0 + 16.1: 0 + 18: 0 + 5: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:3381 + 2: 483 + 14: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql15ObForeignKeyArgEE2atEl:0 + 6: 0 + 15.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE5emptyEv:0 + 0: 0 + 44: _ZN9oceanbase3sql10ObOperator12get_eval_ctxEv:0 + 46.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE5emptyEv:0 + 0: 0 + 59: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql18ObForeignKeyColumnEE2atEl:0 + 6: 0 + 62: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:0 + 6: 0 + 63.1: _ZNK9oceanbase3sql6ObExpr17locate_expr_datumERNS0_9ObEvalCtxE:0 + 3: 0 + 3: _ZNK9oceanbase3sql6ObExpr13get_datum_idxERNS0_9ObEvalCtxE:0 + 2: 0 + 2: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 65.1: _ZNK9oceanbase3sql6ObExpr17locate_expr_datumERNS0_9ObEvalCtxE:0 + 3: 0 + 3: _ZNK9oceanbase3sql6ObExpr13get_datum_idxERNS0_9ObEvalCtxE:0 + 2: 0 + 66: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:0 + 6: 0 + 67.1: _ZNK9oceanbase3sql6ObExpr17locate_expr_datumERNS0_9ObEvalCtxE:0 + 3: 0 + 3: _ZNK9oceanbase3sql6ObExpr13get_datum_idxERNS0_9ObEvalCtxE:0 + 2: 0 + 78: _ZN9oceanbase3sql10ObOperator12get_exec_ctxEv:2088 + 0: 522 +_ZN9oceanbase6common13ObSEArrayImplINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EE6assignERKNS0_8ObIArrayIS3_EE:106141:772 + 1: 709 + 2: 0 + 3: 709 + 3.1: 793 + 3.3: 793 + 3.5: 0 + 4: 709 _ZN9oceanbase6common13ObSEArrayImplINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EE5reuseEv:743 + 6: 745 _ZN9oceanbase6common13ObSEArrayImplINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EE7reserveEl:769 + 7: 733 + 8: 733 + 18: 765 + 21: 765 + 64695: 0 + 5: _ZNK9oceanbase6common12ObIArrayWrapINS_11transaction14ObTxBufferNodeEE5countEv:3725 + 0: 745 + 8: _ZNKSt9type_info9hash_codeEv:23071 + 3.2: 0 + 3.4: 733 + 3.5: 762 _ZSt11_Hash_bytesPKvmm:807 + 3: _ZNKSt9type_info4nameEv:10995 + 1: 733 + 8.1: _ZNKSt9type_info9hash_codeEv:13896 + 3.2: 0 + 3.5: 772 _ZSt11_Hash_bytesPKvmm:786 +_ZN9oceanbase3sql12ObSortOpImpl5reuseEv:105847:451 + 1: 428 + 2: 428 + 5: 519 _ZN9oceanbase3sql17ObChunkDatumStore5resetEv:528 + 6: 503 + 8: 503 + 9: 503 + 10.1: 503 + 12: 0 + 13: 0 + 14: 0 + 14.2: 0 + 17: 503 + 20: 503 + 21: 503 + 24: 503 + 3: _ZN9oceanbase3sql17ObChunkDatumStore8Iterator5resetEv:19041 + 0: 519 + 0.1: 428 _ZN9oceanbase3sql17ObChunkDatumStore13ChunkIterator5resetEv:431 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator5resetEv:11984 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator12reset_cursorEv:11984 + 2: 428 + 4: _ZN9oceanbase6common11ObArrayImplIPNS_3sql17ObChunkDatumStore9StoredRowENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEE5reuseEv:21279 + 3: 519 + 6: 0 + 4: _ZN9oceanbase6common11ObArrayImplIPNS_3sql17ObChunkDatumStore9StoredRowENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEE13do_clear_funcERS8_:10899 + 3: 519 + 4: 519 + 10.1: _ZNK9oceanbase6common7ObDListINS_3sql13ObSortOpChunkEE8is_emptyEv:5030 + 0: 503 + 11: _ZN9oceanbase6common7ObDListINS_3sql13ObSortOpChunkEE12remove_firstEv:0 + 2: _ZN9oceanbase6common7ObDListINS_3sql13ObSortOpChunkEE6removeEPS3_:0 + 3: 0 + 7: 0 + 6: _ZN9oceanbase6common11ObDLinkBaseINS_3sql13ObSortOpChunkEE6unlinkEv:0 + 2: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 13: _ZN9oceanbase3libneEDnRKNS0_13MemoryContextE:0 + 1: 0 + 1: _ZNK9oceanbase3lib13MemoryContext11ref_contextEv:0 + 1: 0 + 14.1: _ZN9oceanbase3lib17__MemoryContext__20get_malloc_allocatorEv:0 + 0: 0 + 18: _ZN9oceanbase6common16ObBinaryHeapBaseIPPNS_3sql17ObChunkDatumStore9StoredRowENS2_12ObSortOpImpl7CompareELl16EE5resetEv:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplIPPNS_3sql17ObChunkDatumStore9StoredRowELl16ENS0_19ModulePageAllocatorELb0EE5resetEv:0 + 0: 0 + 22: _ZN9oceanbase6common16ObBinaryHeapBaseIPNS_3sql13ObSortOpChunkENS2_12ObSortOpImpl7CompareELl256EE5resetEv:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplIPNS_3sql13ObSortOpChunkELl256ENS0_19ModulePageAllocatorELb0EE5resetEv:0 + 0: 0 +ev_now:105730:21683 + 2: 21146 +_ZN9oceanbase7storage19ObStorageTableGuardD2Ev:105492:1230 + 1: 1158 + 3: 1158 + 5: 0 + 8: 0 + 9: 0 + 9.1: 0 + 11: 0 + 12: 0 + 16: 0 + 18.1: 0 + 18.3: 0 + 22: 0 + 24: 0 + 24.1: 0 + 25: 0 + 26: 0 + 26.1: 0 + 26.2: 0 + 27: 0 + 28.1: 0 + 29.1: 0 + 35.1: 0 + 35.2: 0 + 37.6: 1203 + 37.8: 0 + 10: _ZN9oceanbase6common3minEll:0 + 2: 0 + 15: _ZN9oceanbase7storage19ObStorageTableGuard5resetEv:0 + 2: 0 + 3: 0 + 4: 0 + 21: _ZN9oceanbase6common3minEli:0 + 2: 0 + 24: _ZNK9oceanbase8memtable15ObMvccAccessCtx8is_writeEv:0 + 0: 0 + 27.1: _ZNK9oceanbase5share12ObTenantBase2idEv:0 + 0: 0 + 31: _ZNK9oceanbase6common20ObGMemstoreAllocator24need_do_writing_throttleEv:0 + 0: 0 + 36: _ZN9oceanbase7storage19ObStorageTableGuard5resetEv:26829 + 2: 1143 + 3: 1143 _ZN9oceanbase8memtable10ObMemtable13dec_write_refEv:1179 + 4: 1203 +_ZN9oceanbase7storage19ObStorageTableGuardD1Ev:105492:1230 + 1: 1158 + 3: 1158 + 5: 0 + 8: 0 + 9: 0 + 9.1: 0 + 11: 0 + 12: 0 + 16: 0 + 18.1: 0 + 18.3: 0 + 22: 0 + 24: 0 + 24.1: 0 + 25: 0 + 26: 0 + 26.1: 0 + 26.2: 0 + 27: 0 + 28.1: 0 + 29.1: 0 + 35.1: 0 + 35.2: 0 + 37.6: 1203 + 37.8: 0 + 10: _ZN9oceanbase6common3minEll:0 + 2: 0 + 15: _ZN9oceanbase7storage19ObStorageTableGuard5resetEv:0 + 2: 0 + 3: 0 + 4: 0 + 21: _ZN9oceanbase6common3minEli:0 + 2: 0 + 24: _ZNK9oceanbase8memtable15ObMvccAccessCtx8is_writeEv:0 + 0: 0 + 27.1: _ZNK9oceanbase5share12ObTenantBase2idEv:0 + 0: 0 + 31: _ZNK9oceanbase6common20ObGMemstoreAllocator24need_do_writing_throttleEv:0 + 0: 0 + 36: _ZN9oceanbase7storage19ObStorageTableGuard5resetEv:26829 + 2: 1143 + 3: 1143 _ZN9oceanbase8memtable10ObMemtable13dec_write_refEv:1179 + 4: 1203 +_ZN9oceanbase6common15ObIKVCacheStoreINS0_18ObKVMemBlockHandleEE5storeERNS0_13ObKVCacheInstERKNS0_13ObIKVCacheKeyERKNS0_15ObIKVCacheValueERPNS0_13ObKVCachePairERPS2_NS0_15ObKVCachePolicyE:105451:589 + 7: 565 + 9: 565 _ZNK9oceanbase12blocksstable17ObFuseRowCacheKey4sizeEv:588 + 10: 578 _ZNK9oceanbase12blocksstable19ObFuseRowCacheValue4sizeEv:598 + 11: 587 _ZN9oceanbase6common15ObIKVCacheStoreINS0_18ObKVMemBlockHandleEE12alloc_kvpairERNS0_13ObKVCacheInstEllRPNS0_13ObKVCachePairERPS2_NS0_15ObKVCachePolicyE:595 + 12.1: 0 + 14: 587 _ZNK9oceanbase12blocksstable17ObFuseRowCacheKey9deep_copyEPclRPNS_6common13ObIKVCacheKeyE:613 + 15.1: 0 + 16.1: 538 _ZNK9oceanbase12blocksstable19ObFuseRowCacheValue9deep_copyEPclRPNS_6common15ObIKVCacheValueE:568 + 17.1: 0 + 19: 0 + 20: 0 + 21: 0 + 22: 0 + 24: 0 + 27: 520 +_ZNK9oceanbase11transaction13ObCtxRedoInfo10serialize_EPclRl:104787:248 + 0: 231 + 0.1: 241 + 0.3: 0 + 0.7: 0 + 0.8: 246 _ZNK9oceanbase11transaction17ObTxSerCompatByte15is_object_validEl:244 + 0.9: 246 + 0.11: 0 + 0.17: 216 + 0.18: 0 + 0.25: 0 + 0.1: _ZNK9oceanbase11transaction17ObTxSerCompatByte9serializeEPclRl:21744 + 2: 231 + 4.1: 231 + 4.3: 231 + 5: 231 + 6.1: 0 + 10: 241 + 5: _ZN9oceanbase6common13serialization9encode_i8EPclRla:9009 + 4: 231 + 5: 231 + 0.9: _ZN9oceanbase6common13serialization6encodeEPclRlm:61518 + 2: _ZN9oceanbase6common13serialization11encode_vi64EPclRll:61518 + 3: 246 + 4: 246 + 5: 236 + 6.1: 909 + 7: 909 + 8: 909 + 11: 909 + 4: _ZN9oceanbase6common13serialization19encoded_length_vi64El:15744 + 4: 246 + 6.1: 246 + 8.1: 246 + 10.1: 246 + 12.1: 246 + 14.1: 0 + 16.1: 0 + 18.1: 0 + 0.11: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.12: _ZN9oceanbase6common7ObLogKVIRA17_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 0.20: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.22: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.24: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase6common16ObWaitEventGuardD2Ev:104634:6100 + 1: 5813 + 3: 5813 + 4: 0 + 5: 0 + 6: 0 + 7.1: 0 + 7.3: 0 + 8.1: 0 + 9: 0 + 10: 0 + 10.1: 0 + 11: 0 + 12: 0 + 13: 0 + 15: 0 + 16: 0 + 20.3: 5813 + 20.4: 0 + 8.1: _ZN9oceanbase6common11ObStatArrayINS0_15ObWaitEventStatELl195EE3getEl:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 +_ZN9oceanbase6common16ObWaitEventGuardD1Ev:104634:6100 + 1: 5813 + 3: 5813 + 4: 0 + 5: 0 + 6: 0 + 7.1: 0 + 7.3: 0 + 8.1: 0 + 9: 0 + 10: 0 + 10.1: 0 + 11: 0 + 12: 0 + 13: 0 + 15: 0 + 16: 0 + 20.3: 5813 + 20.4: 0 + 8.1: _ZN9oceanbase6common11ObStatArrayINS0_15ObWaitEventStatELl195EE3getEl:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 +_ZN9oceanbase12blocksstable23ObIMicroBlockFlatReaderD2Ev:104402:1094 + 1: 1025 + 3.1: 0 + 3.2: 0 + 3.4: 0 + 2: _ZN9oceanbase12blocksstable23ObIMicroBlockFlatReader5resetEv:22550 + 3: 1025 + 6: 1025 _ZN9oceanbase12blocksstable11ObRowReader5resetEv:1071 + 3: _ZN9oceanbase12blocksstable11ObRowReaderD2Ev:19098 + 0: 1061 _ZN9oceanbase12blocksstable11ObRowReader5resetEv:1092 + 0.2: 0 + 3.3: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:35079 + 0: 1063 _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEED2Ev:1098 +_ZN9oceanbase12blocksstable23ObIMicroBlockFlatReaderD1Ev:104402:1094 + 1: 1025 + 3.1: 0 + 3.2: 0 + 3.4: 0 + 2: _ZN9oceanbase12blocksstable23ObIMicroBlockFlatReader5resetEv:22550 + 3: 1025 + 6: 1025 _ZN9oceanbase12blocksstable11ObRowReader5resetEv:1071 + 3: _ZN9oceanbase12blocksstable11ObRowReaderD2Ev:19098 + 0: 1061 _ZN9oceanbase12blocksstable11ObRowReader5resetEv:1092 + 0.2: 0 + 3.3: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:35079 + 0: 1063 _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEED2Ev:1098 +_ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl16ENS0_19ModulePageAllocatorELb0EE5reuseEv:104160:4380 + 1: 4340 + 8: 4340 + 9: 4340 + 10: 4340 +_ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE16init_mem_contextEm:103834:240 + 1: 224 + 2: 224 + 3: 224 + 10: 279 + 10.1: 0 + 10.5: 0 + 10.6: 279 _ZN9oceanbase3lib17__MemoryContext__14create_contextIJRNS0_12ContextParamEPNS0_10StaticInfoEEEEiRNS0_13MemoryContextERKNS0_11DynamicInfoEDpOT_:289 + 11.1: 0 + 12.1: 218 + 13: 0 + 14.1: 0 + 15.1: 223 + 16: 0 + 17.1: 0 + 19: 223 + 21: 223 + 24: 223 + 3: _ZN9oceanbase3libeqEDnRKNS0_13MemoryContextE:1120 + 1: 224 + 5: _ZN9oceanbase3lib12ContextParamC2Ev:1792 + 3: 224 + 6: _ZN9oceanbase3lib12ContextParam14set_propertiesEl:2464 + 2: 224 + 7: _ZN9oceanbase3lib12ContextParam12set_mem_attrIJRmRA14_KcNS_6common8ObCtxIds11ObCtxIdEnumEEEERS1_DpOT_:8960 + 2: 224 + 9: _ZN9oceanbase3lib12ContextParam15set_ablock_sizeEj:896 + 2: 224 + 10: _ZN9oceanbase3lib4Flow11current_ctxEv:6272 + 2: _ZN9oceanbase3lib4Flow12current_flowEv:6272 + 3: 224 + 8: 0 + 12: 0 + 8.1: _ZN9oceanbase3lib4FlowC2ERNS0_13MemoryContextE:0 + 1: 0 + 3: 0 + 10: _ZN9oceanbase3lib4Flow4initEv:0 + 4: 0 + 7: 0 + 8: 0 + 9: 0 + 12: 0 + 7: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 10.7: _ZNK9oceanbase3lib13MemoryContextptEv:896 + 1: 224 + 10.8: _ZN9oceanbase3lib11DynamicInfoC2Ev:15900 + 1: 224 + 2: 279 + 1: _Z9ob_gettidv:11872 + 3: 224 + 4: 0 + 2: _Z13get_tid_cachev:5600 + 7: 224 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:224 + 2: 224 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:229 + 12.1: _ZN9oceanbase3libeqEDnRKNS0_13MemoryContextE:1744 + 1: 218 + 1: _ZNK9oceanbase3lib13MemoryContext11ref_contextEv:1090 + 1: 218 + 15.2: _ZN9oceanbase3lib17__MemoryContext__6allocpElRKNS0_9ObMemAttrE:2834 + 5: 218 _ZN9oceanbase6common16ObArenaAllocator5allocEl:223 + 19: _ZNK9oceanbase3lib13MemoryContextptEv:1115 + 1: 223 + 19.1: _ZN9oceanbase3lib17__MemoryContext__20get_malloc_allocatorEv:1561 + 0: 223 + 19.2: _ZN9oceanbase6common16ObArenaAllocatorC2ERNS0_12ObIAllocatorEl:20293 + 1: 223 + 1.2: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:17171 + 2: 223 + 3: 223 + 4: 223 + 5: 223 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:6021 + 0: 223 + 20.1: _ZN9oceanbase6common16ObArenaAllocator9set_labelERKNS_3lib7ObLabelE:892 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9set_labelERKNS_3lib7ObLabelE:892 + 0: _ZN9oceanbase6common19ModulePageAllocator9set_labelERKNS_3lib7ObLabelE:892 + 0: 223 + 21: _ZNK9oceanbase3lib13MemoryContextptEv:1115 + 1: 223 + 21.1: _ZN9oceanbase3lib17__MemoryContext__20get_malloc_allocatorEv:1561 + 0: 223 +_ZN9oceanbase3sql13ObCmdExecutor7executeERNS0_13ObExecContextERNS0_6ObICmdE:103708:505 + 1: 478 + 2: 478 + 9: 478 _ZThn32_NK9oceanbase3sql9ObTCLStmt12get_cmd_typeEv:480 + 9.1: 474 + 10.1: 474 _ZThn32_NK9oceanbase3sql9ObTCLStmt12get_cmd_typeEv:495 + 10.2: 478 _ZN9oceanbase3sql6ObStmt11is_dcl_stmtENS0_4stmt8StmtTypeE:484 + 11: 0 + 12: 0 + 13.1: 0 + 14.1: 0 + 14.2: 0 + 15: 0 + 15.1: 0 + 15.4: 0 + 22: 0 + 24: 0 + 24.1: 0 + 25: 0 + 28.1: 0 + 30.1: 0 + 31.1: 0 + 33.1: 0 + 36: 0 + 36.1: 0 + 38: 0 + 38.1: 0 + 40: 0 + 43: 0 + 43.1: 1 + 44: 0 + 44.1: 1 + 47: 1 + 47.1: 1 + 52.1: 1 + 52.2: 1 + 53.1: 1 + 59: 485 + 60: 485 _ZThn32_NK9oceanbase3sql9ObTCLStmt12get_cmd_typeEv:486 + 62: 0 + 66: 0 + 70: 0 + 74: 0 + 78: 0 + 82: 0 + 86: 0 + 90: 0 + 94: 0 + 98: 0 + 102: 0 + 106: 0 + 110: 0 + 114: 0 + 119: 0 + 123: 0 + 127: 205 _ZZN9oceanbase3sql13ObCmdExecutor7executeERNS0_13ObExecContextERNS0_6ObICmdEENK4$_20clEv.9f50165c44148c1c108cb64accd07fe7:259 + 132: 247 _ZZN9oceanbase3sql13ObCmdExecutor7executeERNS0_13ObExecContextERNS0_6ObICmdEENK4$_21clEv.9f50165c44148c1c108cb64accd07fe7:250 + 137: 0 + 142: 0 + 147: 0 + 153: 0 + 157: 0 + 161: 0 + 165: 0 + 170: 0 + 175: 0 + 179: 0 + 184: 0 + 188: 0 + 192: 0 + 196: 0 + 200: 0 + 204: 0 + 208: 0 + 215: 0 + 219: 0 + 223: 0 + 227: 0 + 231: 0 + 235: 0 + 239: 0 + 243: 0 + 247: 0 + 251: 0 + 255: 0 + 259: 0 + 263: 0 + 267: 0 + 273: 0 + 278: 0 + 282: 0 + 287: 0 + 291: 0 + 295: 0 + 299: 0 + 305: 1 + 311: 1 + 315: 0 + 320: 1 + 321.1: 1 + 326: 0 + 335: 0 + 339: 0 + 343: 0 + 347: 0 + 351: 0 + 355: 0 + 359: 0 + 363: 0 + 367: 0 + 371: 0 + 375: 0 + 379: 0 + 383: 0 + 387: 0 + 391: 0 + 395: 0 + 399: 0 + 403: 0 + 407: 0 + 411: 0 + 415: 0 + 419: 0 + 423: 0 + 427: 0 + 431: 0 + 435: 0 + 439: 0 + 443: 0 + 447: 0 + 451: 0 + 455: 0 + 459: 0 + 463: 0 + 467: 0 + 471: 0 + 476: 0 + 480: 0 + 484: 0 + 488: 0 + 492: 0 + 496: 0 + 500: 0 + 504: 0 + 508: 0 + 512: 0 + 516: 0 + 521: 0 + 526: 0 + 530: 0 + 534: 0 + 538: 0 + 542: 0 + 546: 0 + 550: 0 + 554: 0 + 558: 0 + 562: 0 + 566: 0 + 570: 0 + 574: 0 + 578: 0 + 582: 0 + 586: 0 + 590: 0 + 594: 0 + 598: 0 + 602: 0 + 606: 0 + 610: 0 + 615: 0 + 619: 0 + 623: 0 + 627: 0 + 631: 0 + 635: 0 + 639: 0 + 643: 0 + 647: 0 + 651: 0 + 655: 0 + 663: 0 + 667: 0 + 671: 0 + 675: 0 + 679: 0 + 685: 1 + 689: 0 + 693: 0 + 697: 0 + 701: 0 + 705: 0 + 709: 0 + 713: 0 + 717: 0 + 721: 0 + 725: 0 + 729: 0 + 733: 0 + 737: 0 + 741: 0 + 745: 0 + 749: 0 + 753: 0 + 757: 0 + 761: 0 + 765: 0 + 769: 0 + 773: 0 + 777: 0 + 781: 0 + 795: 1 + 796.1: 1 + 802: 1 + 802.1: 1 + 802.3: 1 + 808: 509 + 810: 1 + 815: 1 + 816: 0 + 817.1: 0 + 818.1: 1 + 819: 0 + 820.1: 0 + 821.1: 1 + 824.1: 0 + 826.1: 1 + 829.1: 0 + 831.1: 1 + 831.4: 1 + 834.1: 0 + 841: 487 + 3: _ZN9oceanbase6common8ObStringC2Ev:3346 + 1: 478 + 4: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:3346 + 2: 478 + 9.2: _ZN9oceanbase3sql6ObStmt11is_ddl_stmtENS0_4stmt8StmtTypeEb:8402 + 5: 464 + 122: 1 + 120.2: _ZN9oceanbase3lib14is_oracle_modeEv:44 + 2: _ZN9oceanbase3lib15get_compat_modeEv:44 + 2: 1 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:28 + 2: 1 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 19: _ZNK9oceanbase3sql18ObBasicSessionInfo17get_query_timeoutERl:0 + 2: 0 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache20get_ob_query_timeoutEv:0 + 0: 0 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache20get_ob_query_timeoutEb:0 + 0: 0 + 20: _ZNK9oceanbase3sql18ObBasicSessionInfo14get_tx_timeoutERl:0 + 2: 0 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache18get_ob_trx_timeoutEv:0 + 0: 0 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache18get_ob_trx_timeoutEb:0 + 0: 0 + 21: _ZN9oceanbase6common5ObObjC2Ev:0 + 0: _ZN9oceanbase6common9ObObjMetaC2Ev:0 + 4: 0 + 2: _ZN9oceanbase6common5ObObj5resetEv:0 + 5: 0 + 22.2: _ZN9oceanbase6common5ObObj7set_intEl:0 + 3: 0 + 2: _ZN9oceanbase6common9ObObjMeta7set_intEv:0 + 0: 0 + 0.1: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:0 + 0: 0 + 25.4: _ZN9oceanbase3sql19ObTruncateTableStmt29is_truncate_oracle_temp_tableEv:0 + 0: 0 + 35: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:0 + 2: 0 + 35.1: _ZN9oceanbase3sql17ObPhysicalPlanCtx21set_timeout_timestampEl:0 + 2: 0 + 36: _ZNK9oceanbase3sql18ObBasicSessionInfo20get_query_start_timeEv:0 + 0: 0 + 37: _ZN9oceanbase3lib6Worker4selfEv:0 + 3: 0 + 4: 0 + 37.1: _ZN9oceanbase3lib6Worker14set_timeout_tsEl:0 + 0: 0 + 38: _ZNK9oceanbase3sql18ObBasicSessionInfo20get_query_start_timeEv:0 + 0: 0 + 52.1: _ZN9oceanbase3sql13ObExecContext11get_sql_ctxEv:7 + 0: 1 + 801: _ZNK9oceanbase6common8ObString5emptyEv:13 + 2: 1 + 802.2: _ZN9oceanbase6common17ObHexEscapeSqlStrC2ERKNS0_8ObStringE:15 + 0: 1 + 1: 1 + 813: _ZN9oceanbase6common5ObObj7set_intEl:15 + 3: 1 + 2: _ZN9oceanbase6common9ObObjMeta7set_intEv:11 + 0: 1 + 814: _ZN9oceanbase6common5ObObj7set_intEl:8 + 3: 1 + 2: _ZN9oceanbase6common9ObObjMeta7set_intEv:4 + 0: 1 + 831.2: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:7 + 0: 1 + 831.3: _ZN9oceanbase3sql13ObExecContext11get_sql_ctxEv:7 + 0: 1 +_ZThn56_N9oceanbase8observer8ObMPBase19update_last_pkt_posEv:103596:3371 + 0: 3338 + 2: 3338 + 2.1: 0 + 3: 3338 + 4: 0 +_ZN9oceanbase3sql17ObMergeDistinctOp18inner_get_next_rowEv:103586:608 + 1: 529 + 2: 529 + 4: 529 + 5.1: 8 + 5.3: 8 + 7: 539 _ZN9oceanbase3sql10ObOperator12get_next_rowEv:534 + 9.1: 5 + 13: 608 + 13.1: 536 _ZN9oceanbase3sql17ObMergeDistinctOp7Compare5equalEPKNS_6common8ObIArrayIPNS0_6ObExprEEEPKNS0_17ObChunkDatumStore9StoredRowE:541 + 15: 600 + 17: 600 + 17.1: 529 + 18: 600 + 18.1: 600 _ZN9oceanbase3sql17ObChunkDatumStore13LastStoredRow14save_store_rowERKNS_6common8ObIArrayIPNS0_6ObExprEEERNS0_9ObEvalCtxEl:609 + 19.1: 5 + 25: 7 + 27.1: 7 _ZN9oceanbase3sql10ObOperator12get_next_rowEv:2 + 29.1: 5 + 31.1: 13 + 31.2: 6 _ZN9oceanbase3sql17ObChunkDatumStore13LastStoredRow14save_store_rowERKNS_6common8ObIArrayIPNS0_6ObExprEEERNS0_9ObEvalCtxEl:1 + 32.1: 5 + 34: 13 + 37: 521 + 65532: 0 + 6: _ZN9oceanbase3sql10ObOperator20clear_evaluated_flagEv:10540 + 2.1: 527 + 2.3: 0 + 3: 0 + 2.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql10ObEvalInfoEE5countEv:8432 + 0: 527 + 3: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql10ObEvalInfoEE2atEl:0 + 6: 0 + 3.1: _ZN9oceanbase3sql10ObEvalInfo20clear_evaluated_flagEv:0 + 2: 0 + 4: 0 + 25.1: _ZN9oceanbase3sql17ObMergeDistinctOp7Compare4initEPNS0_9ObEvalCtxEPKNS_6common8ObIArrayINS5_9ObCmpFuncEEE:175 + 7: 7 + 8: 7 + 9: 7 +_ZN9oceanbase7storage13ObTxDataTable7insert_ERPNS0_8ObTxDataERNS_6common8ObIArrayINS0_15ObTableHandleV2EEE:103566:260 + 1: 249 + 2: 249 + 4: 260 + 6.2: 232 + 6.3: 490 + 6.7: 232 + 7: 260 + 8: 260 + 8.1: 260 _ZN9oceanbase7storage15ObTableHandleV220get_tx_data_memtableERPNS0_16ObTxDataMemtableE:259 + 8.2: 253 + 9: 0 + 10.1: 0 + 12.1: 253 + 13: 3 + 14.1: 3 + 16.2: 253 + 17: 3 + 18.1: 3 + 23.1: 241 _ZNK9oceanbase7storage8ObITable16get_start_log_tsEv:239 + 23.2: 250 + 23.3: 258 + 24: 250 + 24.1: 250 _ZNK9oceanbase7storage8ObITable14get_end_log_tsEv:257 + 24.2: 258 + 25: 258 _ZN9oceanbase6common11ObTimeGuard5clickEPKc:267 + 26: 242 _ZN9oceanbase7storage13ObTxDataTable21insert_into_memtable_EPNS0_16ObTxDataMemtableERPNS0_8ObTxDataE:247 + 26.1: 239 + 31: 229 _ZN9oceanbase6common11ObTimeGuard5clickEPKc:262 + 35: 227 + 36.2: 3 + 37: 3 + 40.1: 3 + 41: 3 + 42: 3 + 43: 3 + 46: 3 + 47.1: 3 + 51.1: 242 + 52.1: 3 + 55: 242 + 56.9: 242 _ZN9oceanbase6common11ObTimeGuardD2Ev:260 + 56.10: 3 + 3: _ZN9oceanbase6common11ObTimeGuardC2EPKcl:12224 + 2: 243 + 3: 243 + 4: 243 + 6: 243 + 7: 243 + 8: 243 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:249 + 2: 249 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:262 + 6: _ZNK9oceanbase6common12ObIArrayWrapINS_7storage15ObTableHandleV2EE5countEv:1040 + 0: 260 + 8: _ZN9oceanbase6common12ObIArrayWrapINS_7storage15ObTableHandleV2EE2atEl:3120 + 6: 260 + 21.1: _ZN9oceanbase6common11ObTimeGuard5clickEPKc:16416 + 3: 241 + 4: 241 + 5: 241 + 6: 241 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:269 + 2: 253 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:257 + 36.1: _ZNK9oceanbase7storage8ObITable8TableKey16get_start_log_tsEv:12 + 0: 3 + 51: _ZNK9oceanbase6common11ObTimeGuard8get_diffEv:1966 + 2: 242 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:272 + 2: 260 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:257 +_ZN9oceanbase3sql12ObDMLService18process_insert_rowERKNS0_10ObInsCtDefERNS0_10ObInsRtDefERNS0_15ObTableModifyOpERb:103366:258 + 4: 252 + 5: 252 + 6: 252 + 7: 252 + 8: 252 + 10: 252 + 14: 271 _ZN9oceanbase3sql12ObDMLService17check_column_typeERKNS_6common12ObFixedArrayIPNS0_6ObExprENS2_12ObIAllocatorEEElRKNS2_8ObIArrayINS0_13ColumnContentEEERNS0_15ObTableModifyOpE:260 + 18.1: 0 + 19.1: 271 + 20: 0 + 21.1: 0 + 22.1: 271 + 22.2: 271 _ZN9oceanbase3sql12ObDMLService25check_nested_sql_legalityERNS0_13ObExecContextEm:275 + 23.1: 0 + 24.1: 263 _ZN9oceanbase3sql13TriggerHandle18init_param_new_rowERNS0_9ObEvalCtxERKNS0_14ObTrigDMLCtDefERNS0_14ObTrigDMLRtDefE:263 + 26.1: 0 + 27.1: 260 _ZN9oceanbase3sql13TriggerHandle20do_handle_before_rowERNS0_15ObTableModifyOpERNS0_17ObDASDMLBaseCtDefERKNS0_14ObTrigDMLCtDefERNS0_14ObTrigDMLRtDefE:266 + 29.1: 0 + 30.1: 269 + 30.2: 252 _ZN9oceanbase3sql12ObDMLService14check_row_nullERKNS_6common8ObIArrayIPNS0_6ObExprEEERNS0_9ObEvalCtxElRKNS3_INS0_13ColumnContentEEEbRNS0_15ObTableModifyOpE:263 + 36.1: 0 + 37.1: 272 _ZN9oceanbase3sql16ForeignKeyHandle9do_handleERNS0_15ObTableModifyOpERKNS0_14ObDMLBaseCtDefERNS0_14ObDMLBaseRtDefE:270 + 38.1: 0 + 39.1: 272 _ZN9oceanbase3sql12ObDMLService25filter_row_for_view_checkERKNS_6common12ObFixedArrayIPNS0_6ObExprENS2_12ObIAllocatorEEERNS0_9ObEvalCtxERb:283 + 42.1: 0 + 43.1: 259 + 44: 0 + 45.1: 0 + 46.1: 259 _ZN9oceanbase3sql12ObDMLService24filter_row_for_check_cstERKNS_6common12ObFixedArrayIPNS0_6ObExprENS2_12ObIAllocatorEEERNS0_9ObEvalCtxERb:264 + 49.1: 0 + 50.1: 253 + 51: 0 + 51.1: 0 + 52: 0 + 53.1: 0 + 53.11: 0 + 53.14: 0 + 54.1: 0 + 56: 0 + 57.1: 0 + 61: 0 + 61.1: 0 + 61.2: 0 + 62: 0 + 64: 0 + 65.1: 0 + 65.2: 0 + 65.3: 0 + 65.5: 0 + 66: 0 + 67: 0 + 68: 0 + 69: 0 + 69.1: 0 + 78: 253 + 80: 253 + 9: _ZN9oceanbase3sql10ObOperator12get_eval_ctxEv:2016 + 0: 252 + 19.1: _ZN9oceanbase3sql10ObOperator12get_exec_ctxEv:1084 + 0: 271 + 51: _ZN9oceanbase3lib13is_mysql_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 53.1: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 66: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:0 + 6: 0 + 68.1: _ZNK9oceanbase3sql6ObExpr4evalERNS0_9ObEvalCtxERPNS_6common7ObDatumE:0 + 4: 0 + 6: 0 + 7: 0 + 9: 0 + 10: 0 + 10.1: 0 + 11: 0 + 13: 0 + 15.1: 0 + 15.2: 0 + 17: 0 + 18: 0 + 20: 0 + 21: 0 + 22: 0 + 24: 0 + 9: _ZNK9oceanbase3sql6ObExpr15is_batch_resultEv:0 + 0: 0 + 11: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 24: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:0 + 0: 0 + 70.1: _ZNK9oceanbase3sql6ObExpr22locate_datum_for_writeERNS0_9ObEvalCtxE:0 + 3: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 5: _ZNK9oceanbase3sql6ObExpr13get_datum_idxERNS0_9ObEvalCtxE:0 + 2: 0 + 2: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 70.2: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:0 + 0: 0 + 71.1: _ZNK9oceanbase3sql6ObExpr18set_evaluated_flagERNS0_9ObEvalCtxE:0 + 2: 0 + 3: 0 + 2: _ZNK9oceanbase3sql6ObExpr13get_eval_infoERNS0_9ObEvalCtxE:0 + 2: 0 + 4: _ZNK9oceanbase3sql6ObExpr19get_evaluated_flagsERNS0_9ObEvalCtxE:0 + 2: 0 + 4.1: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 4.2: _ZN9oceanbase3sql11ObBitVector3setEl:0 + 3: 0 +_ZN9oceanbase3sql18ObTableScanOpInputD2Ev:103248:4345 + 1: 4302 + 2: 4302 _ZN9oceanbase6common13ObSEArrayImplINS0_10ObNewRangeELl1ENS0_19ModulePageAllocatorELb0EED2Ev:4407 +_ZN9oceanbase3sql18ObTableScanOpInputD1Ev:103248:4345 + 1: 4302 + 2: 4302 _ZN9oceanbase6common13ObSEArrayImplINS0_10ObNewRangeELl1ENS0_19ModulePageAllocatorELb0EED2Ev:4407 +_ZN9oceanbase11transaction14ObTransService22decide_tx_commit_info_ERNS0_8ObTxDescERPNS0_8ObTxPartE:102601:241 + 1: 225 + 2: 225 + 4: 225 + 6: 225 + 7.1: 256 + 7.3: 256 + 8: 241 + 9.1: 0 + 10.1: 241 + 10.2: 241 + 12: 241 + 13.1: 0 + 14: 0 + 17: 236 + 17.2: 0 + 21.1: 230 _ZZN9oceanbase11transaction14ObTransService22decide_tx_commit_info_ERNS0_8ObTxDescERPNS0_8ObTxPartEENK5$_953clEPKc.93feb755617c21c32b229b78773c290c:255 + 22: 238 + 5: _ZN9oceanbase5share6ObLSID5resetEv:2475 + 0: 225 + 6: _ZN9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EE5resetEv:2475 + 0: 225 _ZN9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EE7destroyEv:236 + 7: _ZNK9oceanbase6common12ObIArrayWrapINS_11transaction8ObTxPartEE5countEv:1792 + 0: 256 + 8: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction8ObTxPartELl4ENS0_19ModulePageAllocatorELb0EEixEl:4579 + 2.1: 241 + 2.2: 241 + 3.1: 0 + 5: 241 + 8.1: _ZN9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EE9push_backERKS3_:11086 + 5: 241 + 6: 0 + 12: 0 + 15: 0 + 15.1: 241 + 16: 241 + 15.1: _ZN9oceanbase6common9ObClassOpINS_5share6ObLSIDELb0EE20construct_and_assignERKS3_RS3_:2892 + 3: _ZN9oceanbase6common16construct_assignINS_5share6ObLSIDEEEiRT_RKS4_:2892 + 2: _ZN9oceanbase6common21construct_assign_wrapINS_5share6ObLSIDEEEiRT_RKS4_NS0_8BoolTypeILb0EEE:2892 + 2: _ZN9oceanbase5share6ObLSIDC2ERKS1_:2892 + 0: 241 + 10.1: _ZNK9oceanbase5share6ObLSID8is_validEv:3856 + 0: 241 + 10.2: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction8ObTxPartELl4ENS0_19ModulePageAllocatorELb0EEixEl:5543 + 2.1: 241 + 2.2: 241 + 3.1: 0 + 5: 241 + 10.3: _ZNK9oceanbase6common6ObAddreqERKS1_:16147 + 2: 241 + 2.1: 241 + 2.2: 241 + 11: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction8ObTxPartELl4ENS0_19ModulePageAllocatorELb0EEixEl:4579 + 2.1: 241 + 2.2: 241 + 3.1: 0 + 5: 241 + 11.1: _ZN9oceanbase5share6ObLSIDaSERKS1_:4579 + 0: 241 + 12: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction8ObTxPartELl4ENS0_19ModulePageAllocatorELb0EEixEl:4579 + 2.1: 241 + 2.2: 241 + 3.1: 0 + 5: 241 + 18: _ZN9oceanbase5share6ObLSIDaSERKS1_:0 + 0: 0 +_ZN9oceanbase8memtable10ObMemtable16dec_unsynced_cntEv:102504:1059 + 1: 1040 + 2: 1040 + 3: 1040 + 4: 1040 _ZNK9oceanbase8memtable10ObMemtable18is_frozen_memtableEv:1052 + 5: 1010 _ZNK9oceanbase8memtable10ObMemtable13get_write_refEv:1059 + 7: 937 + 9: 937 + 10.1: 0 + 14.1: 937 + 15: 0 + 16.1: 0 + 17: 0 + 17.1: 0 + 17.2: 0 + 17.3: 0 + 18.1: 0 + 20.1: 0 + 22: 0 + 25: 948 + 26.7: 948 + 3.1: _ZN9oceanbase5share6ObLSIDC2ERKS1_:8320 + 0: 1040 +_ZN9oceanbase3sql20ObAggregateProcessor8AggrCell14collect_resultENS_6common14ObObjTypeClassERNS0_9ObEvalCtxERKNS0_10ObAggrInfoE:102238:241 + 2: 230 + 3: 230 + 4: 230 + 5: 1 + 7: 230 + 7.1: 230 + 8: 1 + 9: 1 + 10: 1 + 11.1: 1 + 14.1: 230 + 14.2: 230 + 19: 230 + 20.1: 223 + 21.1: 1 + 24.1: 1 + 25.1: 1 + 29: 1 + 30.1: 223 + 34: 1 + 34.1: 1 + 35.1: 1 + 42: 1 + 44: 219 + 4: _ZNK9oceanbase3sql6ObExpr22locate_datum_for_writeERNS0_9ObEvalCtxE:16104 + 3: 230 + 6: 230 + 7: 230 + 8: 230 + 9: 1 + 5: _ZNK9oceanbase3sql6ObExpr13get_datum_idxERNS0_9ObEvalCtxE:2530 + 2: 230 + 2: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:920 + 0: 230 + 5: _ZNK9oceanbase3sql6ObExpr23set_evaluated_projectedERNS0_9ObEvalCtxE:5766 + 2: 230 + 3: 230 + 2: _ZNK9oceanbase3sql6ObExpr13get_eval_infoERNS0_9ObEvalCtxE:706 + 2: 230 + 3: _ZNK9oceanbase3sql6ObExpr13get_eval_infoERNS0_9ObEvalCtxE:3220 + 2: 230 + 7: _ZN9oceanbase3lib14is_oracle_modeEv:10170 + 2: 230 + 2: _ZN9oceanbase3lib15get_compat_modeEv:9480 + 2: 230 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:5800 + 2: 230 + 2.1: 1 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:22 + 1: 1 + 7.1: _ZNK9oceanbase3sql10ObAggrInfo13get_expr_typeEv:6210 + 1: 230 + 8: _ZN9oceanbase6common7ObDatum7set_intEl:20 + 0: 1 + 15: _ZN9oceanbase3sql19ObNumStackAllocatorILl2EEC2Ev:10580 + 0: 230 + 1: 230 + 0: _ZN9oceanbase6common12ObDataBufferC2EPcl:4370 + 1: 230 + 16: _ZN9oceanbase6common6number8ObNumberC2Ev:2070 + 0: 230 + 0: _ZN12ObNumberDescC2Ej:1150 + 0: 230 + 18: _ZN9oceanbase6common6number8ObNumberC2Ev:1610 + 0: 230 + 0: _ZN12ObNumberDescC2Ej:690 + 0: 230 + 20: _ZN9oceanbase6common6number8ObNumber4fromINS_3sql19ObNumStackAllocatorILl2EEEEEilRT_:8510 + 3: 230 _ZN9oceanbase6common6number8ObNumber5from_ElRNS2_10IAllocatorE:242 + 2: _ZN9oceanbase6common6number8ObNumber10TAllocatorINS_3sql19ObNumStackAllocatorILl2EEEEC2ERS6_:7590 + 0: 230 + 24: _ZN9oceanbase6common6number8ObNumber4fromINS_3sql19ObNumStackAllocatorILl2EEEEEimRT_:41 + 3: 1 + 2: _ZN9oceanbase6common6number8ObNumber10TAllocatorINS_3sql19ObNumStackAllocatorILl2EEEEC2ERS6_:33 + 0: 1 + 30: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:1115 + 0: 223 + 31: _ZN9oceanbase6common7ObDatum10set_numberERKNS0_6number8ObNumberE:6467 + 2: 223 + 3: 223 + 4: 223 + 4.1: _ZNK9oceanbase6common6number8ObNumber10get_digitsEv:892 + 2: 223 + 33: _ZNK9oceanbase6common7ObDatum10get_numberEv:4 + 0: 1 + 33.1: _ZN9oceanbase6common6number8ObNumberC2ERKNS1_15ObCompactNumberE:31 + 1: 1 + 1: _ZN12ObNumberDescC2Ej:2 + 0: 1 + 37: _ZN9oceanbase6common7ObDatum10set_numberERKNS0_6number8ObNumberE:34 + 2: 1 + 3: 1 + 4: 1 + 4.1: _ZNK9oceanbase6common6number8ObNumber10get_digitsEv:9 + 2: 1 + 42: _ZNK9oceanbase3sql6ObExpr15deep_copy_datumERNS0_9ObEvalCtxERKNS_6common7ObDatumE:192 + 2: 1 + 4: 1 + 6: 1 + 7: 1 + 8: 1 + 10: 1 + 11: 1 + 12.1: 1 + 20: 1 + 5: _ZNK9oceanbase3sql6ObExpr22locate_datum_for_writeERNS0_9ObEvalCtxE:63 + 3: 1 + 6: 1 + 7: 1 + 8: 1 + 9: 1 + 5: _ZNK9oceanbase3sql6ObExpr13get_datum_idxERNS0_9ObEvalCtxE:11 + 2: 1 + 2: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:4 + 0: 1 + 10: _ZNK9oceanbase3sql6ObExpr15get_str_res_memERNS0_9ObEvalCtxEl:22 + 2: _ZNK9oceanbase3sql6ObExpr13get_datum_idxERNS0_9ObEvalCtxE:11 + 2: 1 + 2.1: _ZNK9oceanbase3sql6ObExpr15get_str_res_memERNS0_9ObEvalCtxEll:11 + 4: 1 +_ZN9oceanbase6common15ObFastFormatInt15format_unsignedEmPc:102197:258 + 1: 253 + 3: 257 + 4: 257 + 7: 0 + 7.1: 257 + 8: 257 + 9: 257 + 10: 257 + 11: 257 + 13: 257 + 14: 0 + 16: 265 + 17: 265 + 18: 265 + 20: 276 + 2: _ZN9oceanbase6common16ob_fast_digits10Em:19177 + 18: 253 + 20.1: 259 + 22.1: 259 + 24.1: 259 + 25: 253 + 26: 253 + 27: 0 + 30: 0 + 33: 254 + 35.1: 0 + 36: 0 + 37: 253 + 38: 0 + 41: 257 +_ZN9oceanbase3sql10ObSQLUtils24is_same_type_for_compareERKNS_6common9ObObjMetaES5_:102161:7039 + 1: 6803 + 3: 6803 + 5: 3 + 6: 0 + 10: 6804 + 3: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:20409 + 0: 6803 + 5: _ZNK9oceanbase6common9ObObjMeta14is_string_typeEv:54 + 0: 3 + 0.3: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:27 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:27 + 2: 3 + 6: _ZNK9oceanbase6common9ObObjMeta18get_collation_typeEv:0 + 0: 0 +_ZN9oceanbase6common12parity_checkEm:101970:2392 + 1: 2266 + 4: 2266 + 5: 2266 + 6: 2266 + 7: 2266 + 13: 2266 +_ZN9oceanbase3sql19ObArithExprOperator19def_arith_eval_funcINS0_13ObArithOpWrapINS0_19ObIntIntBatchAddRawEEEJEEEiRKNS0_6ObExprERNS0_9ObEvalCtxERNS_6common7ObDatumEDpRT0_:101784:273 + 1: 266 + 2: 266 + 3: 266 + 4: 266 + 6: 280 + 7.1: 0 + 8.1: 280 + 9: 281 + 11: 281 + 6: _ZN9oceanbase3sql19ObArithExprOperator17get_arith_operandERKNS0_6ObExprERNS0_9ObEvalCtxERPNS_6common7ObDatumESA_RS8_Rb:65940 + 0: 266 + 3: 266 + 4: 266 + 5: 280 + 6: 266 + 7: 266 + 7.1: 0 + 8.1: 0 + 9: 266 + 10: 0 + 10.1: 0 + 11: 0 + 11.1: 0 + 12.1: 0 + 13: 0 + 13.1: 0 + 15.1: 266 + 15.2: 0 + 17: 0 + 18: 280 + 19.1: 0 + 20: 0 + 20.1: 280 + 21: 0 + 21.1: 0 + 22: 0 + 22.1: 280 + 22.2: 280 + 29: 280 + 5: _ZN9oceanbase3lib14is_oracle_modeEv:15008 + 2: 280 + 2: _ZN9oceanbase3lib15get_compat_modeEv:12768 + 2: 266 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:7714 + 2: 266 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 8.1: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:0 + 0: 0 + 11.1: _ZNK9oceanbase3sql6ObExpr4evalERNS0_9ObEvalCtxERPNS_6common7ObDatumE:0 + 4: 0 + 6: 0 + 7: 0 + 9: 0 + 10: 0 + 10.1: 0 + 11: 0 + 13: 0 + 15.1: 0 + 15.2: 0 + 17: 0 + 18: 0 + 20: 0 + 21: 0 + 22: 0 + 9: _ZNK9oceanbase3sql6ObExpr15is_batch_resultEv:0 + 0: 0 + 11: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 24: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:0 + 0: 0 + 13.1: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:0 + 0: 0 + 20.1: _ZNK9oceanbase3sql6ObExpr4evalERNS0_9ObEvalCtxERPNS_6common7ObDatumE:13440 + 4: 280 + 6: 280 + 7: 280 + 9: 280 + 10: 0 + 10.1: 0 + 11: 0 + 13: 0 + 15.1: 280 + 15.2: 0 + 17: 0 + 18: 0 + 20: 0 + 21: 0 + 22: 0 + 9: _ZNK9oceanbase3sql6ObExpr15is_batch_resultEv:1120 + 0: 280 + 11: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 24: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:0 + 0: 0 + 22.1: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:2240 + 0: 280 + 22.2: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:1120 + 0: 280 + 9: _ZNK9oceanbase3sql13ObArithOpWrapINS0_19ObIntIntBatchAddRawEEclERNS_6common7ObDatumERKS5_S8_:12320 + 4: 280 + 5: 280 + 6: 280 + 7: 280 + 8: 280 _ZN9oceanbase3sql19ObIntIntBatchAddRaw9raw_checkElll:289 + 9: 280 + 10: 280 + 2: _ZN9oceanbase3sql19ObIntIntBatchAddRaw6raw_opERlll:1680 + 2: 280 +_ZN9oceanbase6common13TimeWheelBase6cancelEPNS0_15ObTimeWheelTaskE:101279:488 + 1: 465 + 4: 465 + 5.1: 0 + 9.1: 465 + 10.1: 0 + 14: 465 + 17: 465 + 18: 465 + 19.1: 0 + 28: 464 + 31: 464 + 13: _ZN9oceanbase6common15ObTimeWheelTask4lockEv:13020 + 0: _ZN9oceanbase6common15ObSmallSpinLockIhLl0ELl500ELl100EE4lockEv:13020 + 3.1: 465 + 5: 0 + 7: 0 + 9: 0 + 3.1: _ZN9oceanbase6common15ObSmallSpinLockIhLl0ELl500ELl100EE8try_lockEv:10230 + 3: 465 + 4: 465 + 5: 465 + 14: _ZNK9oceanbase6common15ObTimeWheelTask12is_scheduledEv:1860 + 0: 465 + 17: _ZNK9oceanbase6common15ObTimeWheelTask14get_bucket_idxEv:1860 + 0: 465 + 23: _ZN9oceanbase6common10TaskBucket4lockEv:17205 + 0: _ZN9oceanbase6common10ObSpinLock4lockEv:17205 + 2: 465 _ZN9oceanbase6common12ObLatchMutex4lockEjl:501 + 24: _ZN9oceanbase6common15ObTimeWheelTask6cancelEv:21758 + 4: 473 + 7: 473 + 8: 473 + 8.1: 473 + 10.2: 0 + 13.1: 0 + 14.2: 0 + 9: _ZN9oceanbase6common11ObDLinkBaseINS0_15ObTimeWheelTaskEE6unlinkEv:6622 + 5: 473 + 6: 473 + 7: 473 + 25: _ZN9oceanbase6common10TaskBucket6unlockEv:2820 + 0: _ZN9oceanbase6common10ObSpinLock6unlockEv:2820 + 2: 473 _ZN9oceanbase6common12ObLatchMutex6unlockEv:524 + 28: _ZN9oceanbase6common15ObTimeWheelTask6unlockEv:4176 + 0: _ZN9oceanbase6common15ObSmallSpinLockIhLl0ELl500ELl100EE6unlockEv:4176 + 2: 464 + 3: 464 +_ZN9oceanbase5share15ObSysVarFactory14create_sys_varENS0_17ObSysVarClassTypeERPNS0_13ObBasicSysVarE:100958:453 + 1: 418 + 2: 418 + 3: 418 + 4: 0 + 5: 418 + 6.1: 0 + 7.1: 418 + 8: 0 + 9.1: 0 + 10.1: 418 + 11: 0 + 12.1: 0 + 14: 429 + 16: 429 + 20: 0 + 23: 0 + 24: 0 + 25.1: 0 + 34: 0 + 35: 0 + 36.1: 0 + 45: 0 + 46: 0 + 47.1: 0 + 56: 0 + 57: 0 + 58.1: 0 + 67: 0 + 68: 0 + 69.1: 0 + 78: 0 + 79: 0 + 80.1: 0 + 89: 0 + 90: 0 + 91.1: 0 + 100: 0 + 101: 0 + 102.1: 0 + 111: 0 + 112: 0 + 113.1: 0 + 122: 0 + 123: 0 + 124.1: 0 + 133: 0 + 134: 0 + 135.1: 0 + 144: 0 + 145: 0 + 146.1: 0 + 155: 0 + 156: 0 + 157.1: 0 + 166: 0 + 167: 0 + 168.1: 0 + 177: 0 + 178: 0 + 179.1: 0 + 188: 0 + 189: 0 + 190.1: 0 + 199: 0 + 200: 0 + 201.1: 0 + 210: 0 + 211: 0 + 212.1: 0 + 221: 0 + 222: 0 + 223.1: 0 + 232: 0 + 233: 0 + 234.1: 0 + 243: 0 + 244: 0 + 245.1: 0 + 254: 0 + 255: 0 + 256.1: 0 + 265: 0 + 266: 0 + 267.1: 0 + 276: 0 + 277: 0 + 278.1: 0 + 287: 0 + 288: 0 + 289.1: 0 + 298: 0 + 299: 0 + 300.1: 0 + 309: 0 + 310: 0 + 311.1: 0 + 320: 0 + 321: 0 + 322.1: 0 + 331: 0 + 332: 0 + 333.1: 0 + 342: 0 + 343: 0 + 344.1: 0 + 353: 0 + 354: 0 + 355.1: 0 + 364: 0 + 365: 0 + 366.1: 0 + 375: 0 + 376: 0 + 377.1: 0 + 386: 0 + 387: 0 + 388.1: 0 + 397: 0 + 398: 0 + 399.1: 0 + 408: 0 + 409: 0 + 410.1: 0 + 419: 0 + 420: 0 + 421.1: 0 + 430: 0 + 431: 0 + 432.1: 0 + 441: 0 + 442: 0 + 443.1: 0 + 452: 0 + 453: 0 + 454.1: 0 + 463: 0 + 464: 0 + 465.1: 0 + 474: 0 + 475: 0 + 476.1: 0 + 485: 0 + 486: 0 + 487.1: 0 + 496: 0 + 497: 0 + 498.1: 0 + 507: 0 + 508: 0 + 509.1: 0 + 518: 0 + 519: 0 + 520.1: 0 + 529: 0 + 530: 0 + 531.1: 0 + 540: 0 + 541: 0 + 542.1: 0 + 551: 0 + 552: 0 + 553.1: 0 + 562: 0 + 563: 0 + 564.1: 0 + 573: 0 + 574: 0 + 575.1: 0 + 584: 0 + 585: 0 + 586.1: 0 + 595: 0 + 596: 0 + 597.1: 0 + 606: 0 + 607: 0 + 608.1: 0 + 609.1: 0 + 617: 0 + 618: 0 + 619.1: 0 + 620.1: 0 + 628: 0 + 629: 0 + 630.1: 0 + 631.1: 0 + 639: 0 + 640: 0 + 641.1: 0 + 642.1: 0 + 650: 0 + 651: 0 + 652.1: 0 + 653.1: 0 + 661: 0 + 662: 0 + 663.1: 0 + 664.1: 0 + 672: 0 + 673: 0 + 674.1: 0 + 675.1: 0 + 683: 0 + 684: 0 + 685.1: 0 + 686.1: 0 + 694: 0 + 695: 0 + 696.1: 0 + 697.1: 0 + 705: 0 + 706: 0 + 707.1: 0 + 708.1: 0 + 716: 0 + 717: 0 + 718.1: 0 + 719.1: 0 + 727: 0 + 728: 0 + 729.1: 0 + 730.1: 0 + 738: 0 + 739: 0 + 740.1: 0 + 741.1: 0 + 749: 0 + 750: 0 + 751.1: 0 + 752.1: 0 + 760: 0 + 761: 0 + 762.1: 0 + 763.1: 0 + 771: 0 + 772: 0 + 773.1: 0 + 774.1: 0 + 782: 0 + 783: 0 + 784.1: 0 + 785.1: 0 + 793: 0 + 794: 0 + 795.1: 0 + 796.1: 0 + 804: 0 + 805: 0 + 806.1: 0 + 807.1: 0 + 815: 0 + 816: 0 + 817.1: 0 + 818.1: 0 + 826: 0 + 827: 0 + 828.1: 0 + 829.1: 0 + 837: 0 + 838: 0 + 839.1: 0 + 840.1: 0 + 848: 0 + 849: 0 + 850.1: 0 + 851.1: 0 + 859: 0 + 860: 0 + 861.1: 0 + 862.1: 0 + 870: 0 + 871: 0 + 872.1: 0 + 881: 0 + 882: 0 + 883.1: 0 + 892: 0 + 893: 0 + 894.1: 0 + 903: 0 + 904: 0 + 905.1: 0 + 914: 0 + 915: 0 + 916.1: 0 + 925: 0 + 926: 0 + 927.1: 0 + 936: 0 + 937: 0 + 938.1: 0 + 947: 0 + 948: 0 + 949.1: 0 + 958: 0 + 959: 0 + 960.1: 0 + 969: 0 + 970: 0 + 971.1: 0 + 980: 0 + 981: 0 + 982.1: 0 + 991: 0 + 992: 0 + 993.1: 0 + 1002: 0 + 1003: 0 + 1004.1: 0 + 1013: 0 + 1014: 0 + 1015.1: 0 + 1024: 0 + 1025: 0 + 1026.1: 0 + 1035: 0 + 1036: 0 + 1037.1: 0 + 1046: 0 + 1047: 0 + 1048.1: 0 + 1057: 0 + 1058: 0 + 1059.1: 0 + 1068: 0 + 1069: 0 + 1070.1: 0 + 1079: 0 + 1080: 0 + 1081.1: 0 + 1090: 0 + 1091: 0 + 1092.1: 0 + 1101: 0 + 1102: 0 + 1103.1: 0 + 1112: 0 + 1113: 0 + 1114.1: 0 + 1123: 0 + 1124: 0 + 1125.1: 0 + 1134: 0 + 1135: 0 + 1136.1: 0 + 1145: 0 + 1146: 0 + 1147.1: 0 + 1156: 0 + 1157: 0 + 1158.1: 0 + 1167: 0 + 1168: 0 + 1169.1: 0 + 1178: 0 + 1179: 0 + 1180.1: 0 + 1189: 0 + 1190: 0 + 1191.1: 0 + 1200: 0 + 1201: 0 + 1202.1: 0 + 1211: 0 + 1212: 0 + 1213.1: 0 + 1222: 0 + 1223: 0 + 1224.1: 0 + 1233: 0 + 1234: 0 + 1235.1: 0 + 1236.1: 0 + 1244: 0 + 1245: 0 + 1246.1: 0 + 1247.1: 0 + 1255: 0 + 1256: 0 + 1257.1: 0 + 1258.1: 0 + 1266: 0 + 1267: 0 + 1268.1: 0 + 1269.1: 0 + 1277: 0 + 1278: 0 + 1279.1: 0 + 1280.1: 0 + 1288: 0 + 1289: 0 + 1290.1: 0 + 1291.1: 0 + 1299: 0 + 1300: 0 + 1301.1: 0 + 1302.1: 0 + 1310: 0 + 1311: 0 + 1312.1: 0 + 1313.1: 0 + 1321: 0 + 1322: 0 + 1323.1: 0 + 1324.1: 0 + 1332: 0 + 1333: 0 + 1334.1: 0 + 1335.1: 0 + 1343: 0 + 1344: 0 + 1345.1: 0 + 1346.1: 0 + 1354: 0 + 1355: 0 + 1356.1: 0 + 1357.1: 0 + 1365: 0 + 1366: 0 + 1367.1: 0 + 1368.1: 0 + 1376: 0 + 1377: 0 + 1378.1: 0 + 1379.1: 0 + 1387: 0 + 1388: 0 + 1389.1: 0 + 1390.1: 0 + 1398: 0 + 1399: 0 + 1400.1: 0 + 1401.1: 0 + 1409: 0 + 1410: 0 + 1411.1: 0 + 1412.1: 0 + 1420: 0 + 1421: 0 + 1422.1: 0 + 1423.1: 0 + 1431: 0 + 1432: 0 + 1433.1: 0 + 1434.1: 0 + 1442: 0 + 1443: 0 + 1444.1: 0 + 1445.1: 0 + 1453: 0 + 1454: 0 + 1455.1: 0 + 1456.1: 0 + 1464: 0 + 1465: 0 + 1466.1: 0 + 1467.1: 0 + 1475: 0 + 1476: 0 + 1477.1: 0 + 1478.1: 0 + 1486: 0 + 1487: 0 + 1488.1: 0 + 1489.1: 0 + 1497: 0 + 1498: 0 + 1499.1: 0 + 1500.1: 0 + 1508: 0 + 1509: 0 + 1510.1: 0 + 1511.1: 0 + 1519: 0 + 1520: 0 + 1521.1: 0 + 1530: 0 + 1531: 0 + 1532.1: 0 + 1541: 0 + 1542: 0 + 1543.1: 0 + 1552: 0 + 1553: 0 + 1554.1: 0 + 1563: 0 + 1564: 0 + 1565.1: 0 + 1574: 0 + 1575: 0 + 1576.1: 0 + 1585: 0 + 1586: 0 + 1587.1: 0 + 1596: 0 + 1597: 0 + 1598.1: 0 + 1607: 0 + 1608: 0 + 1609.1: 0 + 1618: 0 + 1619: 0 + 1620.1: 0 + 1629: 0 + 1630: 0 + 1631.1: 0 + 1640: 0 + 1641: 0 + 1642.1: 0 + 1651: 0 + 1652: 0 + 1653.1: 0 + 1662: 0 + 1663: 0 + 1664.1: 0 + 1673: 0 + 1674: 0 + 1675.1: 0 + 1684: 0 + 1685: 0 + 1686.1: 0 + 1695: 0 + 1696: 0 + 1697.1: 0 + 1706: 0 + 1707: 0 + 1708.1: 0 + 1717: 0 + 1718: 0 + 1719.1: 0 + 1728: 0 + 1729: 0 + 1730.1: 0 + 1739: 0 + 1740: 0 + 1741.1: 0 + 1750: 0 + 1751: 0 + 1752.1: 0 + 1761: 0 + 1762: 0 + 1763.1: 0 + 1772: 0 + 1773: 0 + 1774.1: 0 + 1783: 0 + 1784: 0 + 1785.1: 0 + 1794: 0 + 1795: 0 + 1796.1: 0 + 1805: 0 + 1806: 0 + 1807.1: 0 + 1808.1: 0 + 1816: 0 + 1817: 0 + 1818.1: 0 + 1819.1: 0 + 1827: 0 + 1828: 0 + 1829.1: 0 + 1830.1: 0 + 1838: 0 + 1839: 0 + 1840.1: 0 + 1841.1: 0 + 1849: 0 + 1850: 0 + 1851.1: 0 + 1852.1: 0 + 1860: 0 + 1861: 0 + 1862.1: 0 + 1863.1: 0 + 1871: 0 + 1872: 0 + 1873.1: 0 + 1874.1: 0 + 1882: 0 + 1883: 0 + 1884.1: 0 + 1885.1: 0 + 1893: 0 + 1894: 0 + 1895.1: 0 + 1896.1: 0 + 1904: 0 + 1905: 0 + 1906.1: 0 + 1907.1: 0 + 1915: 0 + 1916: 0 + 1917.1: 0 + 1918.1: 0 + 1926: 0 + 1927: 0 + 1928.1: 0 + 1929.1: 0 + 1937: 0 + 1938: 0 + 1939.1: 0 + 1940.1: 0 + 1948: 0 + 1949: 0 + 1950.1: 0 + 1951.1: 0 + 1959: 0 + 1960: 0 + 1961.1: 0 + 1962.1: 0 + 1970: 0 + 1971: 0 + 1972.1: 0 + 1973.1: 0 + 1981: 0 + 1982: 0 + 1983.1: 0 + 1992: 0 + 1993: 0 + 1994.1: 0 + 2003: 0 + 2004: 0 + 2005.1: 0 + 2014: 0 + 2015: 0 + 2016.1: 0 + 2025: 0 + 2026: 0 + 2027.1: 0 + 2036: 0 + 2037: 0 + 2038.1: 0 + 2047: 0 + 2048: 0 + 2049.1: 0 + 2058: 0 + 2059: 0 + 2060.1: 0 + 2069: 0 + 2070: 0 + 2071.1: 0 + 2080: 0 + 2081: 0 + 2082.1: 0 + 2091: 0 + 2092: 0 + 2093.1: 0 + 2102: 0 + 2103: 0 + 2104.1: 0 + 2113: 0 + 2114: 0 + 2115.1: 0 + 2124: 0 + 2125: 0 + 2126.1: 0 + 2135: 0 + 2136: 0 + 2137.1: 0 + 2146: 0 + 2147: 0 + 2148.1: 0 + 2157: 0 + 2158: 0 + 2159.1: 0 + 2168: 0 + 2169: 0 + 2170.1: 0 + 2179: 0 + 2180: 0 + 2181.1: 0 + 2190: 0 + 2191: 0 + 2192.1: 0 + 2201: 0 + 2202: 0 + 2203.1: 0 + 2212: 0 + 2213: 0 + 2214.1: 0 + 2223: 0 + 2224: 0 + 2225.1: 0 + 2234: 0 + 2235: 0 + 2236.1: 0 + 2245: 0 + 2246: 0 + 2247.1: 0 + 2256: 0 + 2257: 0 + 2258.1: 0 + 2267: 0 + 2268: 0 + 2269.1: 0 + 2278: 0 + 2279: 0 + 2280.1: 0 + 2289: 0 + 2290: 0 + 2291.1: 0 + 2300: 0 + 2301: 0 + 2302.1: 0 + 2311: 0 + 2312: 0 + 2313.1: 0 + 2322: 0 + 2323: 0 + 2324.1: 0 + 2333: 0 + 2334: 0 + 2335.1: 0 + 2344: 0 + 2345: 0 + 2346.1: 0 + 2355: 0 + 2356: 0 + 2357.1: 0 + 2366: 0 + 2367: 0 + 2368.1: 0 + 2377: 0 + 2378: 0 + 2379.1: 0 + 2388: 0 + 2389: 0 + 2390.1: 0 + 2399: 0 + 2400: 0 + 2401.1: 0 + 2402.1: 0 + 2410: 0 + 2411: 0 + 2412.1: 0 + 2422: 0 + 2423.1: 0 + 2424.1: 0 + 2432: 0 + 2433: 0 + 2434.1: 0 + 2435.1: 0 + 2443: 0 + 2444.1: 0 + 2449: 455 + 2450: 455 + 2451: 0 + 2452.1: 0 + 2453.1: 455 + 2454: 0 + 2455.1: 0 + 2457: 487 + 2458: 487 + 2461: 0 + 2462: 0 + 2465: 490 + 5: _ZN9oceanbase5share15ObSysVarFactory22calc_sys_var_store_idxENS0_17ObSysVarClassTypeERl:30514 + 2: 418 + 3: 418 + 4: 418 + 8.1: 418 + 9: 0 + 10.1: 0 + 13: 418 + 14: 418 + 15: 0 + 16.1: 0 + 22: 418 + 24: 418 + 13: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:4598 + 0: 418 + 26.1: _ZN9oceanbase5share30ObSysVarAutoIncrementIncrementC2Ev:0 + 0: 0 + 37.1: _ZN9oceanbase5share27ObSysVarAutoIncrementOffsetC2Ev:0 + 0: 0 + 48.1: _ZN9oceanbase5share18ObSysVarAutocommitC2Ev:0 + 0: 0 + 59.1: _ZN9oceanbase5share26ObSysVarCharacterSetClientC2Ev:0 + 0: 0 + 70.1: _ZN9oceanbase5share30ObSysVarCharacterSetConnectionC2Ev:0 + 0: 0 + 81.1: _ZN9oceanbase5share28ObSysVarCharacterSetDatabaseC2Ev:0 + 0: 0 + 92.1: _ZN9oceanbase5share27ObSysVarCharacterSetResultsC2Ev:0 + 0: 0 + 103.1: _ZN9oceanbase5share26ObSysVarCharacterSetServerC2Ev:0 + 0: 0 + 114.1: _ZN9oceanbase5share26ObSysVarCharacterSetSystemC2Ev:0 + 0: 0 + 125.1: _ZN9oceanbase5share27ObSysVarCollationConnectionC2Ev:0 + 0: 0 + 136.1: _ZN9oceanbase5share25ObSysVarCollationDatabaseC2Ev:0 + 0: 0 + 147.1: _ZN9oceanbase5share23ObSysVarCollationServerC2Ev:0 + 0: 0 + 158.1: _ZN9oceanbase5share26ObSysVarInteractiveTimeoutC2Ev:0 + 0: 0 + 169.1: _ZN9oceanbase5share20ObSysVarLastInsertIdC2Ev:0 + 0: 0 + 180.1: _ZN9oceanbase5share24ObSysVarMaxAllowedPacketC2Ev:0 + 0: 0 + 191.1: _ZN9oceanbase5share15ObSysVarSqlModeC2Ev:0 + 0: 0 + 202.1: _ZN9oceanbase5share16ObSysVarTimeZoneC2Ev:0 + 0: 0 + 213.1: _ZN9oceanbase5share19ObSysVarTxIsolationC2Ev:0 + 0: 0 + 224.1: _ZN9oceanbase5share22ObSysVarVersionCommentC2Ev:0 + 0: 0 + 235.1: _ZN9oceanbase5share19ObSysVarWaitTimeoutC2Ev:0 + 0: 0 + 246.1: _ZN9oceanbase5share22ObSysVarBinlogRowImageC2Ev:0 + 0: 0 + 257.1: _ZN9oceanbase5share30ObSysVarCharacterSetFilesystemC2Ev:0 + 0: 0 + 268.1: _ZN9oceanbase5share22ObSysVarConnectTimeoutC2Ev:0 + 0: 0 + 279.1: _ZN9oceanbase5share15ObSysVarDatadirC2Ev:0 + 0: 0 + 290.1: _ZN9oceanbase5share17ObSysVarDebugSyncC2Ev:0 + 0: 0 + 301.1: _ZN9oceanbase5share29ObSysVarDivPrecisionIncrementC2Ev:0 + 0: 0 + 312.1: _ZN9oceanbase5share36ObSysVarExplicitDefaultsForTimestampC2Ev:0 + 0: 0 + 323.1: _ZN9oceanbase5share25ObSysVarGroupConcatMaxLenC2Ev:0 + 0: 0 + 334.1: _ZN9oceanbase5share16ObSysVarIdentityC2Ev:0 + 0: 0 + 345.1: _ZN9oceanbase5share27ObSysVarLowerCaseTableNamesC2Ev:0 + 0: 0 + 356.1: _ZN9oceanbase5share22ObSysVarNetReadTimeoutC2Ev:0 + 0: 0 + 367.1: _ZN9oceanbase5share23ObSysVarNetWriteTimeoutC2Ev:0 + 0: 0 + 378.1: _ZN9oceanbase5share16ObSysVarReadOnlyC2Ev:0 + 0: 0 + 389.1: _ZN9oceanbase5share21ObSysVarSqlAutoIsNullC2Ev:0 + 0: 0 + 400.1: _ZN9oceanbase5share22ObSysVarSqlSelectLimitC2Ev:0 + 0: 0 + 411.1: _ZN9oceanbase5share17ObSysVarTimestampC2Ev:0 + 0: 0 + 422.1: _ZN9oceanbase5share18ObSysVarTxReadOnlyC2Ev:0 + 0: 0 + 433.1: _ZN9oceanbase5share15ObSysVarVersionC2Ev:0 + 0: 0 + 444.1: _ZN9oceanbase5share19ObSysVarSqlWarningsC2Ev:0 + 0: 0 + 455.1: _ZN9oceanbase5share26ObSysVarMaxUserConnectionsC2Ev:0 + 0: 0 + 466.1: _ZN9oceanbase5share19ObSysVarInitConnectC2Ev:0 + 0: 0 + 477.1: _ZN9oceanbase5share15ObSysVarLicenseC2Ev:0 + 0: 0 + 488.1: _ZN9oceanbase5share23ObSysVarNetBufferLengthC2Ev:0 + 0: 0 + 499.1: _ZN9oceanbase5share22ObSysVarSystemTimeZoneC2Ev:0 + 0: 0 + 510.1: _ZN9oceanbase5share22ObSysVarQueryCacheSizeC2Ev:0 + 0: 0 + 521.1: _ZN9oceanbase5share22ObSysVarQueryCacheTypeC2Ev:0 + 0: 0 + 532.1: _ZN9oceanbase5share26ObSysVarSqlQuoteShowCreateC2Ev:0 + 0: 0 + 543.1: _ZN9oceanbase5share27ObSysVarMaxSpRecursionDepthC2Ev:0 + 0: 0 + 554.1: _ZN9oceanbase5share22ObSysVarSqlSafeUpdatesC2Ev:0 + 0: 0 + 565.1: _ZN9oceanbase5share24ObSysVarConcurrentInsertC2Ev:0 + 0: 0 + 576.1: _ZN9oceanbase5share35ObSysVarDefaultAuthenticationPluginC2Ev:0 + 0: 0 + 587.1: _ZN9oceanbase5share30ObSysVarDisabledStorageEnginesC2Ev:0 + 0: 0 + 598.1: _ZN9oceanbase5share18ObSysVarErrorCountC2Ev:0 + 0: 0 + 873.1: _ZN9oceanbase5share20ObSysVarUniqueChecksC2Ev:0 + 0: 0 + 884.1: _ZN9oceanbase5share29ObSysVarVersionCompileMachineC2Ev:0 + 0: 0 + 895.1: _ZN9oceanbase5share24ObSysVarVersionCompileOsC2Ev:0 + 0: 0 + 906.1: _ZN9oceanbase5share20ObSysVarWarningCountC2Ev:0 + 0: 0 + 917.1: _ZN9oceanbase5share26ObSysVarSessionTrackSchemaC2Ev:0 + 0: 0 + 928.1: _ZN9oceanbase5share35ObSysVarSessionTrackSystemVariablesC2Ev:0 + 0: 0 + 939.1: _ZN9oceanbase5share31ObSysVarSessionTrackStateChangeC2Ev:0 + 0: 0 + 950.1: _ZN9oceanbase5share22ObSysVarHaveQueryCacheC2Ev:0 + 0: 0 + 961.1: _ZN9oceanbase5share23ObSysVarQueryCacheLimitC2Ev:0 + 0: 0 + 972.1: _ZN9oceanbase5share28ObSysVarQueryCacheMinResUnitC2Ev:0 + 0: 0 + 983.1: _ZN9oceanbase5share33ObSysVarQueryCacheWlockInvalidateC2Ev:0 + 0: 0 + 994.1: _ZN9oceanbase5share20ObSysVarBinlogFormatC2Ev:0 + 0: 0 + 1005.1: _ZN9oceanbase5share22ObSysVarBinlogChecksumC2Ev:0 + 0: 0 + 1016.1: _ZN9oceanbase5share32ObSysVarBinlogRowsQueryLogEventsC2Ev:0 + 0: 0 + 1027.1: _ZN9oceanbase5share14ObSysVarLogBinC2Ev:0 + 0: 0 + 1038.1: _ZN9oceanbase5share18ObSysVarServerUuidC2Ev:0 + 0: 0 + 1049.1: _ZN9oceanbase5share28ObSysVarDefaultStorageEngineC2Ev:0 + 0: 0 + 1060.1: _ZN9oceanbase5share30ObSysVarObIntermResultMemLimitC2Ev:0 + 0: 0 + 1071.1: _ZN9oceanbase5share27ObSysVarObProxyPartitionHitC2Ev:0 + 0: 0 + 1082.1: _ZN9oceanbase5share18ObSysVarObLogLevelC2Ev:0 + 0: 0 + 1093.1: _ZN9oceanbase5share22ObSysVarObQueryTimeoutC2Ev:0 + 0: 0 + 1104.1: _ZN9oceanbase5share25ObSysVarObReadConsistencyC2Ev:0 + 0: 0 + 1115.1: _ZN9oceanbase5share30ObSysVarObEnableTransformationC2Ev:0 + 0: 0 + 1126.1: _ZN9oceanbase5share20ObSysVarObTrxTimeoutC2Ev:0 + 0: 0 + 1137.1: _ZN9oceanbase5share25ObSysVarObEnablePlanCacheC2Ev:0 + 0: 0 + 1148.1: _ZN9oceanbase5share33ObSysVarObEnableIndexDirectSelectC2Ev:0 + 0: 0 + 1159.1: _ZN9oceanbase5share29ObSysVarObProxySetTrxExecutedC2Ev:0 + 0: 0 + 1170.1: _ZN9oceanbase5share35ObSysVarObEnableAggregationPushdownC2Ev:0 + 0: 0 + 1181.1: _ZN9oceanbase5share27ObSysVarObLastSchemaVersionC2Ev:0 + 0: 0 + 1192.1: _ZN9oceanbase5share25ObSysVarObGlobalDebugSyncC2Ev:0 + 0: 0 + 1203.1: _ZN9oceanbase5share37ObSysVarObProxyGlobalVariablesVersionC2Ev:0 + 0: 0 + 1214.1: _ZN9oceanbase5share24ObSysVarObEnableTraceLogC2Ev:0 + 0: 0 + 1225.1: _ZN9oceanbase5share27ObSysVarObEnableHashGroupByC2Ev:0 + 0: 0 + 1522.1: _ZN9oceanbase5share31ObSysVarSqlThrottleLogicalReadsC2Ev:0 + 0: 0 + 1533.1: _ZN9oceanbase5share30ObSysVarAutoIncrementCacheSizeC2Ev:0 + 0: 0 + 1544.1: _ZN9oceanbase5share19ObSysVarObEnableJitC2Ev:0 + 0: 0 + 1555.1: _ZN9oceanbase5share38ObSysVarObTempTablespaceSizePercentageC2Ev:0 + 0: 0 + 1566.1: _ZN9oceanbase5share38ObSysVarOptimizerAdaptiveCursorSharingC2Ev:0 + 0: 0 + 1577.1: _ZN9oceanbase5share17ObSysVarPluginDirC2Ev:0 + 0: 0 + 1588.1: _ZN9oceanbase5share30ObSysVarObUseParallelExecutionC2Ev:0 + 0: 0 + 1599.1: _ZN9oceanbase5share28ObSysVarObSqlAuditPercentageC2Ev:0 + 0: 0 + 1610.1: _ZN9oceanbase5share24ObSysVarObEnableSqlAuditC2Ev:0 + 0: 0 + 1621.1: _ZN9oceanbase5share36ObSysVarOptimizerUseSqlPlanBaselinesC2Ev:0 + 0: 0 + 1632.1: _ZN9oceanbase5share40ObSysVarOptimizerCaptureSqlPlanBaselinesC2Ev:0 + 0: 0 + 1643.1: _ZN9oceanbase5share26ObSysVarParallelMaxServersC2Ev:0 + 0: 0 + 1654.1: _ZN9oceanbase5share29ObSysVarParallelServersTargetC2Ev:0 + 0: 0 + 1665.1: _ZN9oceanbase5share26ObSysVarObEarlyLockReleaseC2Ev:0 + 0: 0 + 1676.1: _ZN9oceanbase5share24ObSysVarObTrxIdleTimeoutC2Ev:0 + 0: 0 + 1687.1: _ZN9oceanbase5share27ObSysVarBlockEncryptionModeC2Ev:0 + 0: 0 + 1698.1: _ZN9oceanbase5share21ObSysVarNlsDateFormatC2Ev:0 + 0: 0 + 1709.1: _ZN9oceanbase5share26ObSysVarNlsTimestampFormatC2Ev:0 + 0: 0 + 1720.1: _ZN9oceanbase5share28ObSysVarNlsTimestampTzFormatC2Ev:0 + 0: 0 + 1731.1: _ZN9oceanbase5share38ObSysVarObReservedMetaMemoryPercentageC2Ev:0 + 0: 0 + 1742.1: _ZN9oceanbase5share26ObSysVarObCheckSysVariableC2Ev:0 + 0: 0 + 1753.1: _ZN9oceanbase5share19ObSysVarNlsLanguageC2Ev:0 + 0: 0 + 1764.1: _ZN9oceanbase5share20ObSysVarNlsTerritoryC2Ev:0 + 0: 0 + 1775.1: _ZN9oceanbase5share15ObSysVarNlsSortC2Ev:0 + 0: 0 + 1786.1: _ZN9oceanbase5share15ObSysVarNlsCompC2Ev:0 + 0: 0 + 1797.1: _ZN9oceanbase5share23ObSysVarNlsCharactersetC2Ev:0 + 0: 0 + 1984.1: _ZN9oceanbase5share30ObSysVarValidatePasswordPolicyC2Ev:0 + 0: 0 + 1995.1: _ZN9oceanbase5share40ObSysVarValidatePasswordSpecialCharCountC2Ev:0 + 0: 0 + 2006.1: _ZN9oceanbase5share31ObSysVarDefaultPasswordLifetimeC2Ev:0 + 0: 0 + 2017.1: _ZN9oceanbase5share32ObSysVarObOlsPolicySessionLabelsC2Ev:0 + 0: 0 + 2028.1: _ZN9oceanbase5share19ObSysVarObTraceInfoC2Ev:0 + 0: 0 + 2039.1: _ZN9oceanbase5share32ObSysVarPxPartitionScanThresholdC2Ev:0 + 0: 0 + 2050.1: _ZN9oceanbase5share29ObSysVarObPxBcastOptimizationC2Ev:0 + 0: 0 + 2061.1: _ZN9oceanbase5share33ObSysVarObPxSlaveMappingThresholdC2Ev:0 + 0: 0 + 2072.1: _ZN9oceanbase5share25ObSysVarEnableParallelDmlC2Ev:0 + 0: 0 + 2083.1: _ZN9oceanbase5share29ObSysVarPxMinGranulesPerSlaveC2Ev:0 + 0: 0 + 2094.1: _ZN9oceanbase5share22ObSysVarSecureFilePrivC2Ev:0 + 0: 0 + 2105.1: _ZN9oceanbase5share21ObSysVarPlsqlWarningsC2Ev:0 + 0: 0 + 2116.1: _ZN9oceanbase5share27ObSysVarEnableParallelQueryC2Ev:0 + 0: 0 + 2127.1: _ZN9oceanbase5share29ObSysVarForceParallelQueryDopC2Ev:0 + 0: 0 + 2138.1: _ZN9oceanbase5share27ObSysVarForceParallelDmlDopC2Ev:0 + 0: 0 + 2149.1: _ZN9oceanbase5share24ObSysVarObPlBlockTimeoutC2Ev:0 + 0: 0 + 2160.1: _ZN9oceanbase5share27ObSysVarTransactionReadOnlyC2Ev:0 + 0: 0 + 2171.1: _ZN9oceanbase5share27ObSysVarResourceManagerPlanC2Ev:0 + 0: 0 + 2182.1: _ZN9oceanbase5share25ObSysVarPerformanceSchemaC2Ev:0 + 0: 0 + 2193.1: _ZN9oceanbase5share19ObSysVarNlsCurrencyC2Ev:0 + 0: 0 + 2204.1: _ZN9oceanbase5share22ObSysVarNlsIsoCurrencyC2Ev:0 + 0: 0 + 2215.1: _ZN9oceanbase5share23ObSysVarNlsDualCurrencyC2Ev:0 + 0: 0 + 2226.1: _ZN9oceanbase5share20ObSysVarPlsqlCcflagsC2Ev:0 + 0: 0 + 2237.1: _ZN9oceanbase5share40ObSysVarObProxySessionTemporaryTableUsedC2Ev:0 + 0: 0 + 2248.1: _ZN9oceanbase5share25ObSysVarEnableParallelDdlC2Ev:0 + 0: 0 + 2259.1: _ZN9oceanbase5share27ObSysVarForceParallelDdlDopC2Ev:0 + 0: 0 + 2270.1: _ZN9oceanbase5share21ObSysVarCursorSharingC2Ev:0 + 0: 0 + 2281.1: _ZN9oceanbase5share34ObSysVarOptimizerNullAwareAntijoinC2Ev:0 + 0: 0 + 2292.1: _ZN9oceanbase5share31ObSysVarPxPartialRollupPushdownC2Ev:0 + 0: 0 + 2303.1: _ZN9oceanbase5share38ObSysVarPxDistAggPartialRollupPushdownC2Ev:0 + 0: 0 + 2314.1: _ZN9oceanbase5share27ObSysVarCreateAuditPurgeJobC2Ev:0 + 0: 0 + 2325.1: _ZN9oceanbase5share25ObSysVarDropAuditPurgeJobC2Ev:0 + 0: 0 + 2336.1: _ZN9oceanbase5share27ObSysVarSetPurgeJobIntervalC2Ev:0 + 0: 0 + 2347.1: _ZN9oceanbase5share25ObSysVarSetPurgeJobStatusC2Ev:0 + 0: 0 + 2358.1: _ZN9oceanbase5share31ObSysVarSetLastArchiveTimestampC2Ev:0 + 0: 0 + 2369.1: _ZN9oceanbase5share33ObSysVarClearLastArchiveTimestampC2Ev:0 + 0: 0 + 2380.1: _ZN9oceanbase5share39ObSysVarAggregationOptimizationSettingsC2Ev:0 + 0: 0 + 2391.1: _ZN9oceanbase5share24ObSysVarPxSharedHashJoinC2Ev:0 + 0: 0 + 2413.1: _ZN9oceanbase5share24ObSysVarInnodbStrictModeC2Ev:0 + 0: 0 + 2421: _ZN9oceanbase6common16ObArenaAllocator5allocEl:0 + 0: 0 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13alloc_alignedEll:0 + 3: 0 + 6: 0 + 7: 0 + 8: 0 + 10: 0 + 11: 0 + 12: 0 + 13: 0 + 15.1: 0 + 16: 0 + 18: 0 + 20: 0 + 28: 0 + 35: 0 + 36: 0 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE15ensure_cur_pageEv:0 + 2: 0 + 3: 0 + 5.1: 0 + 8: 0 + 9: 0 + 10: 0 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:0 + 2: 0 + 2.2: 0 + 2.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 9: _ZSt3maxIlERKT_S2_S2_:0 + 5: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 8: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:0 + 0: 0 + 7: _ZN9oceanbase6common16get_align_offsetEPvl:0 + 3: 0 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:0 + 0: 0 + 11: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:0 + 7: 0 + 15.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE18is_normal_overflowEl:0 + 2: 0 + 16: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11extend_pageEl:0 + 4: 0 + 5: 0 + 8: 0 + 9: 0 + 10.1: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 12: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_tailEPNS3_4PageE:0 + 2: 0 + 3: 0 + 5: 0 + 23.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16lookup_next_pageEl:0 + 3.1: 0 + 4.1: 0 + 5: 0 + 5.1: 0 + 7: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page10reuse_sizeEv:0 + 0: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 32: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9alloc_bigEl:0 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 3: 0 + 5: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_headEPNS3_4PageE:0 + 4: 0 + 5: 0 + 7: 0 +_ZN9oceanbase6common7ObArrayIPNS_3sql21ObUserVarIdentRawExprENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS4_EENS0_17DefaultItemEncodeIS4_EEEC2Ev:100902:519 + 0: 502 + 0.1: 502 + 0.5: _ZN9oceanbase6common11ObArrayImplIPNS_3sql21ObUserVarIdentRawExprENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS4_EENS0_17DefaultItemEncodeIS4_EEEC2ElRKS5_:82328 + 3: 502 + 4: 502 + 6: 502 + 7.1: 502 + 2: _ZN9oceanbase6common8ObIArrayIPNS_3sql21ObUserVarIdentRawExprEEC2Ev:3514 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql21ObUserVarIdentRawExprEEC2Ev:3514 + 0: 502 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:22590 + 0: 502 + 11: _ZN9oceanbase6common11ObArrayImplIPNS_3sql21ObUserVarIdentRawExprENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS4_EENS0_17DefaultItemEncodeIS4_EEE19set_block_allocatorERKS5_:11546 + 0: _ZN9oceanbase6common19ModulePageAllocatoraSERKS1_:11546 + 2: 502 + 3: 502 + 5: 502 + 13: _ZN9oceanbase3lib11this_workerEv:11044 + 2: _ZN9oceanbase3lib6Worker4selfEv:11044 + 3: 502 + 4: 0 + 13.1: _ZN9oceanbase3lib6Worker23get_sql_arena_allocatorEv:16566 + 2: 502 + 2: _ZN9oceanbase3lib4Flow11current_ctxEv:12048 + 2: _ZN9oceanbase3lib4Flow12current_flowEv:12048 + 3: 502 + 8: 0 + 12: 0 + 8.1: _ZN9oceanbase3lib4FlowC2ERNS0_13MemoryContextE:0 + 1: 0 + 3: 0 + 10: _ZN9oceanbase3lib4Flow4initEv:0 + 4: 0 + 7: 0 + 8: 0 + 9: 0 + 12: 0 + 7: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase3sql22string_collation_checkEbNS_6common15ObCollationTypeENS1_9ObObjTypeERNS1_8ObStringE:100798:839 + 4: 802 + 5: 802 + 6: 802 + 12: 802 + 13: 754 + 13.2: 802 _ZN9oceanbase6common9ObCharset15well_formed_lenENS0_15ObCollationTypeEPKclRl:829 + 17.1: 0 + 19: 0 + 21: 0 + 22.1: 0 + 23: 0 + 25: 0 + 33: 754 + 6: _ZN9oceanbase6common17ob_is_string_typeENS0_9ObObjTypeE:28070 + 0: 802 + 0: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:15238 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:15238 + 2: 802 + 13: _ZN9oceanbase6common8ObString3ptrEv:3208 + 0: 802 + 13.1: _ZNK9oceanbase6common8ObString6lengthEv:6416 + 0: 802 + 19: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 26.1: _ZN9oceanbase6common8ObString10assign_ptrEPKci:0 + 3: 0 + 5: 0 +_ZN9oceanbase7storage13ObTxDataTable6insertERPNS0_8ObTxDataE:100773:263 + 1: 261 + 2: 261 + 5: 270 + 7: 270 + 8: 0 + 9.1: 0 + 13.1: 270 _ZNK9oceanbase7storage8ObTxData25is_valid_in_tx_data_tableEv:270 + 13.2: 274 + 14: 0 + 15.1: 0 + 19.1: 235 _ZN9oceanbase7storage13ObTxDataTable17get_memtable_mgr_Ev:240 + 19.2: 235 _ZN9oceanbase7storage19ObTxDataMemtableMgr27get_all_memtables_for_writeERNS0_26ObTxDataMemtableWriteGuardE:247 + 19.3: 233 + 20.1: 0 + 21.1: 233 _ZN9oceanbase6common11ObTimeGuard5clickEPKc:238 + 23.1: 247 _ZN9oceanbase7storage13ObTxDataTable7insert_ERPNS0_8ObTxDataERNS_6common8ObIArrayINS0_15ObTableHandleV2EEE:260 + 23.2: 229 + 24.1: 0 + 29.1: 249 + 30.1: 0 + 33: 251 + 34.8: 264 + 34.12: 251 _ZN9oceanbase7storage26ObTxDataMemtableWriteGuardD2Ev:259 + 34.13: 279 _ZN9oceanbase6common11ObTimeGuardD2Ev:280 + 34.14: 0 + 3: _ZN9oceanbase6common11ObTimeGuardC2EPKcl:11961 + 2: 260 + 3: 260 + 4: 260 + 6: 260 + 7: 260 + 8: 260 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:261 + 2: 261 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:261 + 4: _ZN9oceanbase7storage26ObTxDataMemtableWriteGuardC2Ev:30960 + 0: _ZN9oceanbase6common9ObSEArrayINS_7storage15ObTableHandleV2ELl1ENS0_19ModulePageAllocatorELb0EEC2Ev:30702 + 0.1: 258 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_7storage15ObTableHandleV2ELl1ENS0_19ModulePageAllocatorELb0EEC2ElRKS4_:25026 + 2: 258 + 5: 258 + 6: 258 + 8: 258 + 17.1: 258 + 2: _ZN9oceanbase6common8ObIArrayINS_7storage15ObTableHandleV2EEC2EPS3_l:2064 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_7storage15ObTableHandleV2EEC2EPS3_l:2064 + 0: 258 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:10578 + 0: 258 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:3870 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:3870 + 2: 258 + 8: 258 + 0.2: _ZN9oceanbase6common13ObSEArrayImplINS_7storage15ObTableHandleV2ELl1ENS0_19ModulePageAllocatorELb0EED2Ev:0 + 1: 0 + 2: 0 + 0.4: _ZN9oceanbase6common13ObSEArrayImplINS_7storage15ObTableHandleV2ELl1ENS0_19ModulePageAllocatorELb0EE5resetEv:258 + 0: 258 _ZN9oceanbase6common13ObSEArrayImplINS_7storage15ObTableHandleV2ELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:258 + 17.1: _ZN9oceanbase6common11ObTimeGuard5clickEPKc:16011 + 3: 235 + 4: 235 + 5: 235 + 6: 235 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:266 + 2: 266 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:266 + 29: _ZNK9oceanbase6common11ObTimeGuard8get_diffEv:1972 + 2: 249 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:229 + 2: 229 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:234 + 34.10: _ZN9oceanbase6common11ObTimeGuardD2Ev:0 + 2.1: 0 + 3.1: 0 + 2: _ZNK9oceanbase6common11ObTimeGuard8get_diffEv:0 + 2: 0 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 +_ZN9oceanbase7storage14ObTabletMapKeyC2ERKNS_5share6ObLSIDERKNS_6common10ObTabletIDE:100586:5302 + 5: 5294 + 6: 5294 + 3: _ZN9oceanbase5share6ObLSIDC2ERKS1_:31764 + 0: 5294 + 4: _ZN9oceanbase6common10ObTabletIDC2ERKS1_:37058 + 0: 5294 +_ZN9oceanbase7storage14ObTabletMapKeyC1ERKNS_5share6ObLSIDERKNS_6common10ObTabletIDE:100586:5302 + 5: 5294 + 6: 5294 + 3: _ZN9oceanbase5share6ObLSIDC2ERKS1_:31764 + 0: 5294 + 4: _ZN9oceanbase6common10ObTabletIDC2ERKS1_:37058 + 0: 5294 +_ZN9oceanbase3sql14ObStmtResolver11create_stmtINS0_14ObEndTransStmtEEEPT_v:100496:254 + 1: 254 + 2: 254 + 4: 254 + 5.1: 4 + 6.1: 0 + 7.1: 4 + 8.1: 252 + 9.1: 4 + 11.1: 4 + 13: 252 + 14: 252 + 15: 252 + 17: 252 + 17.1: 4 + 18: 252 + 18.1: 252 _ZN9oceanbase3sql17get_timezone_infoEPKNS0_16ObSQLSessionInfoE:256 + 19: 273 + 19.1: 273 _ZN9oceanbase3sql20get_obj_print_paramsEPKNS0_16ObSQLSessionInfoE:273 + 20: 264 _ZN9oceanbase3sql14ObStmtResolver9init_stmtEv:261 + 22.1: 4 + 25: 252 + 6.1: _ZN9oceanbase3sql13ObStmtFactory13get_query_ctxEv:1838 + 3: 254 + 4: 0 + 5: 0 + 7.1: 4 + 10: 4 + 8.1: _ZN9oceanbase3sql13ObStmtFactory11create_stmtINS0_14ObEndTransStmtEEEiRPT_:41920 + 2: 252 + 3: 252 _ZN9oceanbase6common16ObArenaAllocator5allocEl:292 + 6: 262 + 7: 4 + 8.1: 4 + 11: 4 + 12.1: 4 + 13: 4 + 17: 4 + 10: _ZN9oceanbase3sql14ObEndTransStmtC2Ev:13100 + 0: 262 + 0: _ZN9oceanbase3sql9ObTCLStmtC2ENS0_4stmt8StmtTypeE:6026 + 0: _ZN9oceanbase3sql6ObStmtC2ENS0_4stmt8StmtTypeE:6026 + 1: 262 + 2: 262 + 3: 262 + 11: _ZN9oceanbase6common10ObObjStoreIPNS_3sql6ObStmtERNS0_12ObIAllocatorELb1EE9store_objERKS4_:20392 + 4: 262 _ZN9oceanbase6common16ObArenaAllocator5allocEl:269 + 5: 252 + 7.1: 4 + 10: 252 + 9: _ZN9oceanbase6common9ObObjNodeIPNS_3sql6ObStmtEEC2ERKS4_:6300 + 0: 252 + 0: _ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql6ObStmtEEEEC2Ev:1764 + 1: 252 + 10: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql6ObStmtEEEE8add_lastEPS6_:6804 + 13: 252 + 12: _ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql6ObStmtEEEE10add_beforeEPS6_:5544 + 2: 252 + 2: _ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql6ObStmtEEEE3addEPS6_S8_S8_:4284 + 2: 252 + 3: 252 + 4: 252 + 5: 252 + 14: _ZN9oceanbase3sql6ObStmt13set_query_ctxEPNS0_10ObQueryCtxE:1008 + 0: 252 + 15: _ZN9oceanbase3sql6ObStmt11set_stmt_idEv:9576 + 2: 252 + 3: 252 + 5: _ZN9oceanbase3sql10ObQueryCtx15get_new_stmt_idEv:4536 + 0: 252 + 17: _ZNK9oceanbase3sql6ObStmt13get_query_ctxEv:1008 + 0: 252 + 17.2: _ZN9oceanbase3sql10ObQueryCtx19set_is_prepare_stmtEb:1512 + 0: 252 + 18: _ZNK9oceanbase3sql6ObStmt13get_query_ctxEv:1008 + 0: 252 + 18.2: _ZN9oceanbase3sql10ObQueryCtx17set_timezone_infoEPKNS_6common14ObTimeZoneInfoE:1911 + 0: 273 + 19: _ZNK9oceanbase3sql6ObStmt13get_query_ctxEv:1092 + 0: 273 + 19.2: _ZN9oceanbase3sql10ObQueryCtx22set_sql_stmt_coll_typeENS_6common15ObCollationTypeE:1584 + 0: 264 +_ZN9oceanbase11transaction14ObPartTransCtx16submit_redo_log_ERNS0_12ObTxLogBlockERbRNS_8memtable21ObRedoLogSubmitHelperE:100114:257 + 3: 254 + 4: 254 + 5: 254 + 9: 254 + 11.1: 252 + 11.3: 252 + 13: 213 + 16: 213 + 19: 235 + 21.1: 9 + 23.1: 243 _ZN9oceanbase11transaction12ObTxLogBlock19prepare_mutator_bufERNS0_11ObTxRedoLogE:244 + 24.1: 9 + 28: 243 + 28.2: 243 _ZN9oceanbase11transaction14ObPartTransCtx14fill_redo_log_EPclRlRNS_8memtable21ObRedoLogSubmitHelperE:245 + 29: 236 + 30: 236 + 31: 238 _ZN9oceanbase11transaction12ObTxLogBlock18finish_mutator_bufERNS0_11ObTxRedoLogERKl:244 + 32.1: 9 + 33.1: 238 _ZN9oceanbase11transaction12ObTxLogBlock11add_new_logINS0_11ObTxRedoLogEEEiRT_:237 + 34.1: 9 + 44: 9 + 45: 9 + 46.1: 9 + 47.1: 9 + 48.1: 9 + 57.1: 9 + 59: 9 + 59.3: 9 + 60: 9 + 61: 9 + 61.1: 9 + 61.2: 9 + 62.1: 9 + 63: 9 + 64: 9 + 68.1: 9 + 72.1: 9 + 78: 9 + 80.1: 9 + 80.4: 9 + 82.1: 9 + 83: 9 + 84: 9 + 87.1: 9 + 93: 235 + 94: 235 _ZN9oceanbase11transaction14ObPartTransCtx14return_log_cb_EPNS0_9ObTxLogCbE:241 + 95: 252 + 104: 252 + 12.1: _ZN9oceanbase11transaction11ObTxRedoLogC2ERNS0_17ObCLogEncryptInfoERKlRKm:17781 + 1: 254 + 2: 254 + 2: _ZN9oceanbase11transaction13ObCtxRedoInfoC2ERNS0_17ObCLogEncryptInfoEl:5588 + 1: 254 + 0: _ZN9oceanbase11transaction17ObTxSerCompatByteC2Ev:2794 + 0: _ZN9oceanbase11transaction17ObTxSerCompatByte5resetEv:2794 + 3: 254 + 5: _ZN9oceanbase11transaction11ObTxRedoLog16before_serializeEv:4065 + 0: _ZN9oceanbase11transaction13ObCtxRedoInfo16before_serializeEv:4065 + 4: 254 _ZN9oceanbase11transaction17ObTxSerCompatByte4initEl:261 + 5.1: 9 + 17: _ZN9oceanbase8memtable21ObRedoLogSubmitHelper5resetEv:1491 + 3: 213 + 19: _ZN9oceanbase11transaction14ObPartTransCtx15prepare_log_cb_EbRPNS0_9ObTxLogCbE:6422 + 2: 213 + 3: 235 _ZN9oceanbase11transaction14ObPartTransCtx11get_log_cb_EbRPNS0_9ObTxLogCbE:213 + 4.1: 9 + 6: 9 + 28: _ZN9oceanbase11transaction11ObTxRedoLog15get_mutator_bufEv:1701 + 0: 243 + 78: _ZN9oceanbase11transaction10ObTransCtx16acquire_ctx_ref_Ev:405 + 2: _ZN9oceanbase11transaction15ObTransHashLinkINS0_10ObTransCtxEE7inc_refEi:369 + 2: 9 + 3.1: 9 + 5: 9 + 80.1: _ZN9oceanbase11transaction12ObLSTxCtxMgr18get_ls_log_adapterEv:63 + 0: 9 + 80.2: _ZN9oceanbase11transaction12ObTxLogBlock7get_bufEv:36 + 3: 9 + 86: _ZN9oceanbase11transaction10ObTransCtx16release_ctx_ref_Ev:396 + 2: _ZN9oceanbase11transaction15ObTransHashLinkINS0_10ObTransCtxEE7dec_refEi:396 + 2: 9 + 3: 9 + 4.1: 9 +_ZN9oceanbase6common11upper_alignEll:99840:5057 + 1: 4992 + 3: 4992 + 4: 4992 +_ZN9oceanbase10logservice13ObApplyStatus19statistics_cb_cost_ERKNS_4palf3LSNElllll:99732:246 + 6: 242 + 7: 239 + 8: 239 + 9: 239 + 10: 239 + 11: 239 + 12: 239 + 14: 254 + 15: 244 + 16: 260 + 17: 252 + 18.1: 0 + 22: 252 + 7: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:242 + 2: 242 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:242 + 13: _ZN9oceanbase6common10ObMiniStat10ObStatItem4statEl:15607 + 3: 226 + 4: 226 + 5: 226 + 6: 0 + 7.1: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:2273 + 2: 239 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:239 + 14: _ZN9oceanbase6common10ObMiniStat10ObStatItem4statEl:13820 + 3: 238 + 4: 238 + 5: 238 + 6: 0 + 7.1: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:968 + 2: 254 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:254 + 15: _ZN9oceanbase6common10ObMiniStat10ObStatItem4statEl:16088 + 3: 233 + 4: 233 + 5: 233 + 6: 0 + 7.1: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:2341 + 2: 244 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:254 + 16: _ZN9oceanbase6common10ObMiniStat10ObStatItem4statEl:14225 + 3: 245 + 4: 245 + 5: 245 + 6: 0 + 7.1: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:995 + 2: 260 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:263 +_ZN9oceanbase7storage17ObLSTabletService20check_and_get_tabletERKNS_6common10ObTabletIDERNS0_14ObTabletHandleEl:99610:995 + 4: 964 + 5: 964 + 6: 964 + 6.3: 964 _ZN9oceanbase7storage14ObTabletMapKeyC1ERKNS_5share6ObLSIDERKNS_6common10ObTabletIDE:991 + 8: 1062 _ZN9oceanbase7storage26ObTabletCreateDeleteHelper20check_and_get_tabletERKNS0_14ObTabletMapKeyERNS0_14ObTabletHandleEl:1066 + 8.1: 1103 + 9.1: 0 + 12: 0 + 13.3: 1104 _ZN9oceanbase7storage14ObTabletMapKeyD1Ev:1140 + 13.4: 0 + 6: _ZNK9oceanbase7storage4ObLS9get_ls_idEv:18316 + 0: _ZN9oceanbase5share6ObLSIDC2ERKS1_:18316 + 0: 964 +_ZN9oceanbase3sql13ObStmtFactory13get_query_ctxEv:99520:532 + 1: 498 + 3: 498 + 4: 498 + 5: 517 _ZN9oceanbase3sql10ObQueryCtxC2Ev:519 + 7.1: 0 + 10: 517 + 4: _ZN9oceanbase6common16ObArenaAllocator5allocEl:57768 + 0: 498 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13alloc_alignedEll:55278 + 3: 498 + 6: 0 + 7: 498 + 8: 498 + 10: 498 + 11: 498 + 12: 498 + 13: 498 + 15.1: 0 + 16: 0 + 18: 0 + 20: 0 + 28: 0 + 35: 498 + 36: 498 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE15ensure_cur_pageEv:6972 + 2: 498 + 3: 0 + 5.1: 0 + 8: 0 + 9: 0 + 10: 0 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:0 + 2: 0 + 2.2: 0 + 2.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 9: _ZSt3maxIlERKT_S2_S2_:0 + 5: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 8: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:0 + 0: 0 + 7: _ZN9oceanbase6common16get_align_offsetEPvl:4980 + 3: 498 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:3486 + 0: 498 + 11: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:3486 + 7: 498 + 15.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE18is_normal_overflowEl:0 + 2: 0 + 16: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11extend_pageEl:0 + 4: 0 + 5: 0 + 8: 0 + 9: 0 + 10.1: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 12: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_tailEPNS3_4PageE:0 + 2: 0 + 3: 0 + 5: 0 + 23.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16lookup_next_pageEl:0 + 3.1: 0 + 4.1: 0 + 5: 0 + 5.1: 0 + 7: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page10reuse_sizeEv:0 + 0: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 32: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9alloc_bigEl:0 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 3: 0 + 5: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_headEPNS3_4PageE:0 + 4: 0 + 5: 0 + 7: 0 +_ZN9oceanbase11transaction7ObTsMgr15wait_gts_elapseEmlPNS0_10ObTsCbTaskERb:99286:269 + 2: 264 + 4: 254 + 5: 254 + 6: 1 + 7.1: 1 + 8.1: 254 + 9: 1 + 10.1: 1 + 11.1: 254 + 12: 0 + 13.1: 0 + 16: 254 + 21: 254 _ZN9oceanbase11transaction7ObTsMgr23get_ts_source_info_opt_EmRNS0_19ObTsSourceInfoGuardEbb:270 + 21.1: 248 + 22.1: 0 + 23.2: 248 + 24: 0 + 25.1: 0 + 26.1: 248 _ZN9oceanbase11transaction14ObTsSourceInfo13get_ts_sourceEmRNS0_15ObTsSourceGuardERb:251 + 26.2: 245 + 27.1: 0 + 28.1: 245 + 29.1: 245 + 30: 0 + 31.1: 0 + 32.1: 245 _ZN9oceanbase11transaction11ObGtsSource15wait_gts_elapseElPNS0_10ObTsCbTaskERb:251 + 32.2: 230 + 33.1: 0 + 38: 0 + 40.1: 230 _ZN9oceanbase11transaction15ObTsSourceGuardD1Ev:238 + 40.4: 1 + 40.5: 1 + 40.6: 237 _ZN9oceanbase11transaction19ObTsSourceInfoGuardD1Ev:248 + 42: 260 + 42.1: 260 _ZN9oceanbase11transaction16ObTransStatistic31add_gts_wait_elapse_total_countEml:260 + 43: 258 + 45: 251 + 45.1: 251 _ZN9oceanbase11transaction16ObTransStatistic30add_gts_wait_elapse_total_timeEml:288 + 48: 265 + 3: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:264 + 2: 264 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:264 + 11.1: _ZN9oceanbase6common18is_valid_tenant_idEm:2032 + 2: 254 + 19: _ZN9oceanbase11transaction19ObTsSourceInfoGuardC2Ev:2032 + 0: 254 + 20: _ZN9oceanbase11transaction15ObTsSourceGuardC2Ev:4318 + 0: 254 + 23.1: _ZN9oceanbase11transaction19ObTsSourceInfoGuard18get_ts_source_infoEv:992 + 0: 248 + 29: _ZN9oceanbase11transaction15ObTsSourceGuard13get_ts_sourceEv:1715 + 0: 245 + 42: _ZN9oceanbase11transaction16ObTransStatistic12get_instanceEv:4755 + 2: 260 + 2.1: 1 + 2.2: 1 + 2.3: 1 + 2.6: 1 + 44: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:1011 + 2: 258 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:260 + 45: _ZN9oceanbase11transaction16ObTransStatistic12get_instanceEv:2836 + 2: 251 + 2.1: 1 + 2.2: 1 + 2.3: 1 + 2.6: 1 +_ZN9oceanbase8memtable8ObMtHash9fill_pairEPNS0_10ObHashNodeES3_l:99278:131 + 1: 121 + 2: 121 + 5: 121 + 8: 121 + 11.1: 119 + 14: 119 + 15: 119 + 16: 119 + 16.1: 119 + 17: 119 + 17.1: 119 + 19: 114 + 22.1: 0 + 28.1: 0 + 29: 0 + 32.3: 114 + 4: _ZN9oceanbase8memtable12ObMtHashNodeC2Ev:2057 + 0.4: _ZN9oceanbase8memtable20ObStoreRowkeyWrapperC2Ev:2057 + 0: 121 + 5: _ZN9oceanbase8memtable10ObHashNode11set_arr_idxEl:13068 + 2: 121 + 2: _ZN9oceanbase8memtable6bitrevEm:12221 + 2: 121 + 3: 121 + 4: 121 + 5: 121 + 6: 121 + 7: 121 + 11: _ZN9oceanbase8memtable8ObMtHash21search_sub_range_listEPNS0_10ObHashNodeES3_RS3_S4_Ri:22490 + 7: 121 + 11.1: 232 + 12: 232 + 12.1: 239 + 13: 239 + 14: 109 + 65215: 0 + 11.1: _ZN9oceanbase8memtable8ObMtHash19not_reach_list_tailEPKNS0_10ObHashNodeE:2511 + 2: 232 + 12.1: _ZN9oceanbase8memtableL12compare_nodeEPKNS0_10ObHashNodeES3_Ri:10767 + 2: 232 + 4: 232 + 5: 232 + 6: 232 + 7: 232 + 8: 109 + 9.1: 129 + 10: 129 + 11.1: 0 + 13.1: 0 + 14.1: 0 + 15.1: 0 + 16: 0 + 17.1: 0 + 18.1: 0 + 22: 239 + 11.1: _ZNK9oceanbase8memtable10ObHashNode14is_bucket_nodeEv:0 + 2: 0 + 13.1: _ZNK9oceanbase8memtable20ObStoreRowkeyWrapper5equalERKS1_Rb:0 + 0: 0 + 0: _ZNK9oceanbase8memtable20ObStoreRowkeyWrapper10get_rowkeyEv:0 + 0: 0 + 0.1: _ZNK9oceanbase6common13ObStoreRowkey5equalERKS1_Rb:0 + 2: 0 + 3: 0 + 4: 0 + 5.1: 0 + 6.1: 0 + 10: 0 + 3: _ZNK9oceanbase6common13ObStoreRowkey4hashEv:0 + 2: 0 + 3: 0 + 3: _ZNK9oceanbase6common8ObRowkey4hashEv:0 + 2: 0 + 3.1: _ZNK9oceanbase6common13ObStoreRowkey4hashEv:0 + 2: 0 + 3: 0 + 3: _ZNK9oceanbase6common8ObRowkey4hashEv:0 + 2: 0 + 15: _ZN9oceanbase8memtable10ObHashNode11set_arr_idxEl:15351 + 2: 119 + 2: _ZN9oceanbase8memtable6bitrevEm:14875 + 2: 119 + 3: 119 + 4: 119 + 5: 119 + 6: 119 + 7: 119 + 19: _ZN9oceanbase8memtable10ObHashNode17set_bucket_filledEl:15960 + 5: 114 + 5: _ZN9oceanbase8memtable6bitrevEm:14592 + 2: 114 + 3: 114 + 4: 114 + 5: 114 + 6: 114 + 28.1: _ZNK9oceanbase8memtable10ObHashNode16is_bucket_filledEv:0 + 2: 0 +_ZN9oceanbase8memtable13ObMemtableCtx14callback_allocEl:99232:1083 + 1: 1057 + 3: 0 + 4.1: 0 + 6: 1022 + 7.1: 1022 + 10: 1022 + 3: _ZN9oceanbase8memtable24ObMemtableCtxCbAllocator5allocEl:38094 + 3: 1057 _ZN9oceanbase6common15ObFIFOAllocator5allocEl:1057 + 4.1: 0 + 7.1: 1022 + 8: 1022 +_ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE9end_roundEv:98484:233 + 1: 224 + 2: 224 + 3: 224 + 3.1: 223 + 4: 0 + 5.1: 0 + 7.1: 223 _ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE21append_all_dump_partsEv:237 + 8.1: 0 + 13: 241 _ZN9oceanbase3sql17ObChunkDatumStore5resetEv:254 + 14: 243 + 15: 243 + 17: 243 + 18: 243 + 19: 243 + 20: 243 + 21: 243 + 23: 243 + 27: 257 + 10: _ZN9oceanbase3sql17ObChunkDatumStore8Iterator5resetEv:11926 + 0: 244 + 0.1: 222 _ZN9oceanbase3sql17ObChunkDatumStore13ChunkIterator5resetEv:223 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator5resetEv:8442 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator12reset_cursorEv:8442 + 3: 255 + 11: _ZN9oceanbase3sql17ObChunkDatumStore8Iterator5resetEv:9837 + 0: 255 + 0.1: 244 _ZN9oceanbase3sql17ObChunkDatumStore13ChunkIterator5resetEv:245 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator5resetEv:6100 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator12reset_cursorEv:6100 + 3: 244 + 12: _ZN9oceanbase3sql17ObChunkDatumStore8Iterator5resetEv:10102 + 0: 255 + 0.1: 255 _ZN9oceanbase3sql17ObChunkDatumStore13ChunkIterator5resetEv:258 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator5resetEv:6375 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator12reset_cursorEv:6375 + 3: 255 + 24: _ZN9oceanbase6common16ObArenaAllocator5resetEv:26658 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:26658 + 4.1: 280 + 6: 0 + 7: 257 + 13: 266 + 14: 266 + 15: 266 + 18: 266 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:771 + 0: 257 + 5.1: _ZL12abort_unlessb:514 + 5: 257 + 6: 0 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:4116 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:4116 + 0: 257 + 0.2: 257 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase11transaction9tablelock12ObLockMemCtx22alloc_lock_op_callbackEv:98341:686 + 1: 682 + 2: 682 + 4: 786 + 4.1: 0 + 2: _ZN9oceanbase6common14SpinWLockGuardC2ERKNS0_10SpinRWLockE:20628 + 1: 682 + 3: 706 + 4.1: 0 + 3: _ZN9oceanbase6common10SpinRWLock6wrlockEl:12958 + 0: 682 _ZN9oceanbase6common7ObLatch6wrlockEjlPKj:722 + 3: _ZN9oceanbase11transaction9tablelock14ObArenaObjPoolINS1_17ObOBJLockCallbackELl1EE5allocEv:32745 + 3: 706 + 4: 279 + 7: 449 _ZN9oceanbase8memtable24ObMemtableCtxCbAllocator5allocEl:469 + 9: 478 + 10.1: 0 + 12.1: 741 + 4: _ZN9oceanbase6common14SpinWLockGuardD2Ev:15135 + 2: 741 + 3: 741 + 3.1: 786 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase6common10SpinRWLock6unlockEv:2223 + 0: 741 _ZN9oceanbase6common7ObLatch6unlockEPKj:741 +_ZN9oceanbase3sql15ObTableModifyOp7destroyEv:98172:1067 + 1: 1030 + 5: 1008 + 2: _ZN9oceanbase3sql10ObDMLRtCtx7cleanupEv:8240 + 2: 1030 _ZN9oceanbase3sql8ObDASRef5resetEv:1072 + 3: _ZN9oceanbase6common13ObSEArrayImplIPNS_3sql6ObExprELl4ENS0_19ModulePageAllocatorELb0EE5resetEv:74592 + 0: 1008 + 0: _ZN9oceanbase6common13ObSEArrayImplIPNS_3sql6ObExprELl4ENS0_19ModulePageAllocatorELb0EE7destroyEv:54432 + 9: 1008 + 11: 0 + 13: 1008 + 15: 1008 + 24: 1008 + 10: _ZN9oceanbase6common13ObSEArrayImplIPNS_3sql6ObExprELl4ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: 0 +_ZNK9oceanbase11transaction18ObTransTimeoutTask4hashEv:97667:1016 + 1: 967 + 3: 967 + 4.1: 0 + 7: 967 + 8.1: 0 + 13: 967 + 7: _ZNK9oceanbase11transaction9ObTransID8is_validEv:6769 + 0: 967 + 10: _ZNK9oceanbase11transaction9ObTransID4hashEv:57053 + 2: _ZN9oceanbase6common10murmurhashEPKvim:57053 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:57053 + 13: 967 + 14: 967 + 15: 967 + 17: 967 + 18: 967 + 41: 967 + 42: 967 + 43: 967 +_ZN9oceanbase3sql13ObMonitorNode19add_rt_monitor_nodeEPS1_:97544:2139 + 1: 2080 + 3: 2080 + 3.1: 2076 + 4: 2080 + 5: 2076 + 7.1: 0 + 9: 2076 + 10: 2076 + 12: 2056 +_ZN9oceanbase7storage13ObTxDataTable21insert_into_memtable_EPNS0_16ObTxDataMemtableERPNS0_8ObTxDataE:97446:247 + 1: 238 + 3: 242 + 6: 242 + 6.1: 255 + 7: 0 + 9: 0 + 10: 0 + 10.1: 0 + 11.1: 4 + 13.1: 0 + 14: 4 + 15.1: 4 + 17.1: 0 + 18: 0 + 19: 0 + 19.1: 0 + 20.1: 4 + 23: 0 + 32: 0 + 38: 244 + 39: 244 + 40: 244 _ZN9oceanbase6common11ObTimeGuard5clickEPKc:255 + 41: 246 _ZN9oceanbase7storage16ObTxDataMemtable6insertEPNS0_8ObTxDataE:247 + 41.1: 255 + 42.1: 4 + 45: 255 + 49: 4 + 50: 4 + 53.1: 230 + 54.1: 4 + 57: 233 + 58.9: 233 _ZN9oceanbase6common11ObTimeGuardD2Ev:232 + 58.10: 4 + 2: _ZN9oceanbase6common11ObTimeGuardC2EPKcl:11308 + 2: 246 + 3: 246 + 4: 246 + 6: 246 + 7: 246 + 8: 246 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:238 + 2: 238 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:238 + 6: _ZN9oceanbase7storage16ObTxDataMemtable15contain_tx_dataENS_11transaction9ObTransIDE:12407 + 2: 242 + 2: _ZNK9oceanbase6common13ObLinkHashMapINS_11transaction9ObTransIDENS_7storage8ObTxDataENS4_24TxDataHashMapAllocHandleENS0_9RefHandleELl8EE12contains_keyERKS3_:9745 + 3: 242 + 4.1: 255 _ZN9oceanbase6common6DCHashINS_11transaction9ObTransIDELl8EE3getERKS3_RPNS0_11KeyHashNodeIS3_EE:243 + 6.1: _ZN9oceanbase11transaction9ObTransIDD2Ev:2040 + 0: 255 + 6.2: _ZN9oceanbase11transaction9ObTransIDD2Ev:32 + 0: 4 + 19.1: _ZN9oceanbase11transaction9ObTransIDD2Ev:0 + 0: 0 + 19.2: _ZN9oceanbase11transaction9ObTransIDD2Ev:40 + 0: 4 + 32: _ZN9oceanbase7storage16ObTxDataMemtable14revert_tx_dataEPNS0_8ObTxDataE:0 + 0: 0 + 0: _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9ObTransIDENS_7storage8ObTxDataENS4_24TxDataHashMapAllocHandleENS0_9RefHandleELl8EE6revertEPS5_:0 + 3: 0 + 35: _ZN9oceanbase6common11ObTimeGuard5clickEPKc:16608 + 3: 244 + 4: 244 + 5: 244 + 6: 244 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:260 + 2: 260 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:282 + 47: _ZN9oceanbase6common11ObTimeGuard5clickEPKc:14475 + 3: 212 + 4: 212 + 5: 212 + 6: 212 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:271 + 2: 255 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:251 + 53: _ZNK9oceanbase6common11ObTimeGuard8get_diffEv:1838 + 2: 230 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:228 + 2: 212 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:215 +_ZN9oceanbase6common18ObBaseResourcePoolINS_11transaction6LogBufILl1965056EEENS0_10RPStrLabelIXadL_ZNS0_8ObModIds17OB_TRANS_CLOG_BUFEEEEEE10free_node_EPNS8_4NodeE:97076:540 + 1: 524 + 2: 524 + 4: 524 + 5: 524 + 7: 524 + 8: 524 + 9.1: 0 + 15: 0 + 16: 0 + 18: 525 + 21: 0 + 23.1: 0 + 26: 525 + 8: _ZN9oceanbase6common12ObFixedQueueINS0_18ObBaseResourcePoolINS_11transaction6LogBufILl1965056EEENS0_10RPStrLabelIXadL_ZNS0_8ObModIds17OB_TRANS_CLOG_BUFEEEEEE4NodeEE4pushEPSA_:50952 + 3: 524 + 8: 524 + 9: 524 + 11.1: 530 + 11.2: 0 + 11.3: 530 + 12.1: 530 + 13: 6 + 15: 525 + 16: 525 + 17.1: 525 + 18: 31 +_ZN9oceanbase3sql12ObDMLService19write_row_to_das_opILi2EEEiRKNS0_17ObDASDMLBaseCtDefERNS0_17ObDASDMLBaseRtDefEPKNS0_14ObDASTabletLocERNS0_10ObDMLRtCtxERKNS_6common12ObFixedArrayIPNS0_6ObExprENSD_12ObIAllocatorEEE:96869:304 + 5: 286 + 6: 286 + 14: 286 + 17: 286 + 19: 254 + 20.1: 0 + 24: 254 + 26: 0 + 26.1: 254 + 26.2: 254 + 27: 0 + 31.1: 0 + 36: 256 + 37: 0 + 38: 0 + 38.1: 0 + 38.2: 0 + 40.1: 256 + 40.2: 256 _ZNK9oceanbase6common12ObIAllocator4usedEv:257 + 42.1: 289 + 42.2: 257 _ZN9oceanbase3sql13ObDASInsertOp9write_rowERKNS_6common12ObFixedArrayIPNS0_6ObExprENS2_12ObIAllocatorEEERNS0_9ObEvalCtxERb:257 + 43.1: 0 + 50: 273 + 52: 1 + 52.2: 1 + 53.1: 0 + 55: 1 + 59: 0 + 61: 1 + 61.1: 1 + 62: 1 + 63.1: 0 + 64.1: 1 + 65.1: 0 + 66.1: 1 + 67.1: 0 + 74.1: 279 + 74.3: 279 + 75: 259 + 18: _ZN9oceanbase3sql8ObDASRef10has_das_opINS0_13ObDASInsertOpEEEbPKNS0_14ObDASTabletLocERPT_:4624 + 4: 286 _ZN9oceanbase3sql8ObDASRef13find_das_taskEPKNS0_14ObDASTabletLocENS0_11ObDASOpTypeE:294 + 5: 298 + 8: 0 + 19: _ZN9oceanbase3sql8ObDASRef16prepare_das_taskINS0_13ObDASInsertOpEEEiPKNS0_14ObDASTabletLocERPT_:10712 + 3: 277 + 4: 277 _ZN9oceanbase3sql8ObDASRef15create_das_taskEPKNS0_14ObDASTabletLocENS0_11ObDASOpTypeERPNS0_12ObIDASTaskOpE:285 + 5: 254 + 6: 254 + 22: _ZN9oceanbase3sql13ObDASInsertOp13set_das_ctdefEPKNS0_13ObDASInsCtDefE:2794 + 0: 254 + 23: _ZN9oceanbase3sql13ObDASInsertOp13set_das_rtdefEPNS0_13ObDASInsRtDefE:1778 + 0: 254 + 26.2: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql17ObDASDMLBaseCtDefEE5emptyEv:1270 + 0: 254 + 37: _ZN9oceanbase6common9EventItemC2Ev:3840 + 2: 256 + 37.1: _ZN9oceanbase6common10EventTable8instanceEv:4352 + 2: 256 + 2.1: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common10EventTableC2Ev:0 + 0: 0 + 2: 0 + 37.2: _ZN9oceanbase6common10EventTable9get_eventEl:5888 + 1.4: 256 + 37.3: _ZNK9oceanbase6common9EventItem4callEv:6400 + 2: 256 + 3: 256 + 5.1: 0 + 7.1: 0 + 8: 0 + 9.1: 0 + 11: 0 + 12: 0 + 13.1: 0 + 18: 0 + 38.1: _ZNK9oceanbase3sql13ObDASInsertOp11get_row_cntEv:0 + 0: _ZNK9oceanbase3sql16ObDASWriteBuffer11get_row_cntEv:0 + 2: 0 + 2.3: 0 + 2.1: _ZNK9oceanbase3sql17ObChunkDatumStore11get_row_cntEv:0 + 0: 0 + 42.1: _ZN9oceanbase3sql10ObDMLRtCtx12get_eval_ctxEv:1799 + 0: _ZN9oceanbase3sql8ObDASRef12get_eval_ctxEv:1799 + 0: 257 + 55: _ZN9oceanbase3sql10ObDMLRtCtx22need_non_sub_full_taskEv:8 + 1: _ZN9oceanbase3sql13DasTaskStatus22need_non_sub_full_taskEv:8 + 0: 1 + 61: _ZN9oceanbase3sql10ObDMLRtCtx24need_pick_del_task_firstEv:2 + 1: _ZN9oceanbase3sql13DasTaskStatus24need_pick_del_task_firstEv:2 + 0: 1 + 70: _ZN9oceanbase3sql10ObDMLRtCtx5reuseEv:8 + 2: 1 +_ZNK9oceanbase6common6number8ObNumber9format_v2EPclRlsb:96802:269 + 6: 262 + 7: 262 + 8: 262 + 9: 262 + 10: 262 + 10.4: 262 + 11: 262 + 11.1: 262 + 12: 262 + 12.1: 262 + 13: 0 + 14.1: 0 + 15.1: 262 + 16: 0 + 17.1: 0 + 19.1: 262 _ZNK9oceanbase6common6number8ObNumber12format_int64EPcRlsRb:265 + 20.1: 0 + 21.1: 239 + 24: 0 + 26: 0 + 26.3: 0 + 28: 0 + 30: 0 + 31: 0 + 32.1: 0 + 33.1: 0 + 34: 0 + 35.1: 0 + 43: 0 + 44.1: 0 + 45: 0 + 47: 0 + 48: 0 + 51: 0 + 51.1: 0 + 52: 0 + 57: 0 + 59.1: 0 + 59.3: 0 + 62: 0 + 63: 0 + 64: 0 + 65.1: 0 + 67: 0 + 69: 0 + 74: 0 + 76: 0 + 79: 0 + 82: 0 + 83: 0 + 84: 0 + 85.1: 0 + 87: 0 + 89: 0 + 90: 0 + 91: 0 + 97: 0 + 99: 0 + 102: 0 + 103: 0 + 104: 0 + 105.1: 0 + 107: 0 + 110: 0 + 111: 0 + 112: 0 + 113: 0 + 125: 0 + 126: 0 + 127: 0 + 129: 0 + 130: 0 + 131.1: 0 + 132.1: 0 + 133: 0 + 134.1: 0 + 136: 0 + 137: 0 + 141: 0 + 142: 0 + 146: 0 + 147: 239 + 148: 0 + 149.1: 0 + 152.1: 239 + 153: 0 + 154.1: 0 + 157.1: 239 + 157.3: 0 + 158: 0 + 159: 0 + 160: 0 + 161.1: 0 + 165: 231 + 10: _ZNK9oceanbase6common6number8ObNumber21get_max_format_lengthEv:18864 + 3: 262 + 5: 262 + 6: 262 + 8: 0 + 3: _ZNK9oceanbase6common6number8ObNumber7is_zeroEv:4978 + 2: 262 + 4: _ZN9oceanbase6common6number8ObNumber14get_decode_expERK12ObNumberDesc:6288 + 2: 262 + 6: _ZSt3maxIiERKT_S2_S2_:524 + 5: 262 + 10.5: _ZN9oceanbase3lib14is_oracle_modeEv:12052 + 2: 262 + 2: _ZN9oceanbase3lib15get_compat_modeEv:11266 + 2: 262 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:6550 + 2: 262 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 26: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 27: _ZN9oceanbase6common6number8ObNumberC2Ev:0 + 0: 0 + 0: _ZN12ObNumberDescC2Ej:0 + 0: 0 + 30: _ZN9oceanbase6common6number8ObNumber14get_decode_expERK12ObNumberDesc:0 + 2: 0 + 30.2: _ZNK9oceanbase6common6number8ObNumber10is_integerEi:0 + 3: 0 + 5.1: 0 + 7.1: 0 + 8.1: 0 + 3: _ZNK9oceanbase6common6number8ObNumber7is_zeroEv:0 + 2: 0 + 31: _ZN9oceanbase6common6number8ObNumber5from_ERKS2_Pj:0 + 3: 0 + 5.1: 0 + 7.3: 0 + 10: 0 + 11: 0 + 12: 0 + 13: 0 + 6: _ZN9oceanbase6common6number8ObNumber8set_zeroEv:0 + 2: 0 + 4: 0 + 32.1: _ZN9oceanbase6common6number8ObNumber5roundElb:0 + 2: _ZN9oceanbase6common6number8ObNumber8round_v3Elb:0 + 2: 0 + 3: 0 + 5.1: 0 + 7.1: 0 + 8: 0 + 9.1: 0 + 10.1: 0 + 13: 0 + 3: _ZNK9oceanbase6common6number8ObNumber7is_zeroEv:0 + 2: 0 + 33.1: _ZNK9oceanbase6common6number8ObNumber21get_max_format_lengthEv:0 + 3: 0 + 5: 0 + 3: _ZNK9oceanbase6common6number8ObNumber7is_zeroEv:0 + 2: 0 + 4: _ZN9oceanbase6common6number8ObNumber14get_decode_expERK12ObNumberDesc:0 + 2: 0 + 44.1: _ZNK9oceanbase6common6number8ObNumber7is_zeroEv:0 + 2: 0 + 47: _ZNK9oceanbase6common6number8ObNumber11is_negativeEv:0 + 2: 0 + 51: _ZNK9oceanbase6common6number8ObNumber10is_decimalEv:0 + 3: 0 + 51.1: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 56.1: _ZNK9oceanbase6common6number8ObNumber10get_digitsEv:0 + 2: 0 + 56.2: _ZN9oceanbase6common6number15ObDigitIterator6assignEjPj:0 + 3: _ZN9oceanbase6common6number15ObDigitIterator10reset_iterEv:0 + 3: 0 + 4: _ZN9oceanbase6common6number8ObNumber14get_decode_expEj:0 + 5: 0 + 6: 0 + 10: 0 + 59.2: _ZN9oceanbase6common6number15ObDigitIterator14get_next_digitERj:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 10: 0 + 12: 0 + 13: 0 + 14: 0 + 15: 0 + 20: 0 + 21: 0 + 82: _ZN9oceanbase6common15ObFastFormatIntC2Ej:0 + 1: 0 + 90: _ZNK9oceanbase6common15ObFastFormatInt6lengthEv:0 + 0: 0 + 90.1: _ZNK9oceanbase6common15ObFastFormatInt3ptrEv:0 + 0: 0 + 102: _ZN9oceanbase6common15ObFastFormatIntC2Ej:0 + 1: 0 + 109: _ZNK9oceanbase6common15ObFastFormatInt19get_tail_zero_countEv:0 + 3: 0 + 5.1: 0 + 5.2: 0 + 5.3: 0 + 6: 0 + 8: 0 + 111: _ZNK9oceanbase6common15ObFastFormatInt6lengthEv:0 + 0: 0 + 111.1: _ZNK9oceanbase6common15ObFastFormatInt3ptrEv:0 + 0: 0 + 157.1: _ZN9oceanbase3lib14is_oracle_modeEv:10516 + 2: _ZN9oceanbase3lib15get_compat_modeEv:10516 + 2: 239 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:6692 + 2: 239 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 158: _ZN9oceanbase6common8ObStringC2ElPKc:0 + 1: 0 + 2: 0 + 3: 0 + 5: 0 + 6: 0 +_ZNK9oceanbase7storage15ObRelativeTable8is_validEv:96732:2788 + 1: 2687 + 2: 2687 + 2.1: 2687 + 2.3: 2687 + 2.1: _ZNK9oceanbase5share6schema18ObTableSchemaParam8is_validEv:13435 + 0: 2687 + 2.2: _ZNK9oceanbase6common10ObTabletID8is_validEv:29557 + 0: 2687 +_ZN9oceanbase11transaction12ObLSTxCtxMgr13create_tx_ctxERKNS0_13ObTxCreateArgERbRPNS0_14ObPartTransCtxE:96576:259 + 3: 245 + 5: 245 + 7: 245 _ZN9oceanbase11transaction12ObLSTxCtxMgr14create_tx_ctx_ERKNS0_13ObTxCreateArgERbRPNS0_14ObPartTransCtxE:245 + 14: 0 + 14.1: 234 + 5: _ZN9oceanbase6common8TCRWLock10RLockGuardC2ERS1_:42385 + 0: 245 + 0: _ZN9oceanbase6common8TCRWLock6rdlockEl:41405 + 3.1: 0 + 4: 0 + 5: 0 + 3.2: _ZN9oceanbase6common8TCRWLock10try_rdlockEv:41405 + 3: 245 + 5: 245 + 8.1: 0 + 4: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:1715 + 0: 245 + 4.1: _ZN9oceanbase6common5TCRef7inc_refEPi:31115 + 2: 245 + 4.1: 245 + 4.2: 0 + 6: 245 + 6.1: 245 + 10: 245 + 2: _ZN9oceanbase6common8get_itidEv:6860 + 4: 245 + 5: 0 + 6: 0 + 8: 0 + 11: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 8: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:0 + 0: 0 + 9: _ZN9oceanbase6common9LWaitCond6signalEv:0 + 2: 0 + 2.1: 0 + 3: 0 + 14.1: _ZN9oceanbase6common8TCRWLock10RLockGuardD2Ev:35802 + 0: 234 + 0.2: 0 + 0: _ZN9oceanbase6common8TCRWLock8rdunlockEv:34866 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:1170 + 0: 234 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPi:28782 + 2: 234 + 4.1: 234 + 4.2: 0 + 6: 234 + 6.1: 234 + 10: 234 + 2: _ZN9oceanbase6common8get_itidEv:6552 + 4: 234 + 5: 0 + 6: 0 + 8: 0 + 11: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:3042 + 2: 234 + 2.1: 0 + 3: 0 +_ZN9oceanbase3sql13cast_eval_argERKNS0_6ObExprERNS0_9ObEvalCtxERNS_6common7ObDatumE:96128:756 + 3: 718 + 4: 718 + 7: 742 + 8.1: 1 + 11: 1 + 13: 742 + 7: _ZNK9oceanbase3sql6ObExpr4evalERNS0_9ObEvalCtxERPNS_6common7ObDatumE:47142 + 4: 718 + 6: 718 + 7: 718 + 9: 718 + 10: 1 + 10.1: 1 + 11: 1 + 13: 1 + 15.1: 718 + 15.2: 489 + 17: 489 + 18: 489 + 20: 489 _ZN9oceanbase3sql10ObExprTrim9eval_trimERKNS0_6ObExprERNS0_9ObEvalCtxERNS_6common7ObDatumE:253 _ZN9oceanbase3sql30eval_assign_question_mark_funcERKNS0_6ObExprERNS0_9ObEvalCtxERNS_6common7ObDatumE:251 + 21: 492 + 22: 492 + 9: _ZNK9oceanbase3sql6ObExpr15is_batch_resultEv:2872 + 0: 718 + 11: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:4 + 0: 1 + 24: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:7 + 0: 1 + 11: _ZN9oceanbase6common7ObDatum9set_datumERKS1_:11130 + 0: 742 +_ZZN9oceanbase11transaction14ObTransService19get_write_store_ctxERNS0_8ObTxDescERKNS0_16ObTxReadSnapshotERNS_7storage10ObStoreCtxEENK6$_1002clEPKc.93feb755617c21c32b229b78773c290c:96074:1120 + 0: 1084 + 0.1: 0 + 0.2: 1084 + 0.3: 1078 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:1121 + 0.13: 0 + 0.16: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:18326 + 2: 1078 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS_7storage10ObStoreCtxELb0EEC2EPKcS5_:0 + 0: 0 + 0.7: _ZN9oceanbase6common20ObLogPrintPointerCntIPNS_11transaction14ObTransServiceEEC2ES4_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVINS0_20ObLogPrintPointerCntIPNS_11transaction14ObTransServiceEEELb1EEC2EPKcOKS6_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVIRKNS_11transaction8ObTxDescELb0EEC2EPKcS5_:0 + 0: 0 + 0.12: _ZN9oceanbase6common7ObLogKVIRKNS_11transaction16ObTxReadSnapshotELb0EEC2EPKcS5_:0 + 0: 0 + 0.15: _ZN9oceanbase6common7ObLogKVIRKPcLb0EEC2EPKcS4_:0 + 0: 0 +_ZN9oceanbase6common11ObArrayWrapINS_3sql10ObDelRtDefEE14allocate_arrayERNS0_12ObIAllocatorEl:95888:296 + 1: 284 + 2: 284 + 4: 284 + 5: 284 + 6: 0 + 7.1: 0 + 8.1: 284 _ZN9oceanbase6common16ObArenaAllocator5allocEl:287 + 9: 0 + 10.1: 0 + 12.2: 0 + 12.3: 271 + 12.4: 271 + 13: 271 + 15: 271 + 12.2: _ZN9oceanbase3sql10ObDelRtDefC2Ev:67750 + 1: 271 + 4: 271 + 5: 271 + 1: _ZN9oceanbase3sql14ObDMLBaseRtDefC2ERNS0_17ObDASDMLBaseRtDefE:33333 + 2: 271 + 5: 271 + 1: _ZN9oceanbase3sql14ObTrigDMLRtDefC2Ev:27642 + 1: 0 + 2: 271 + 7: _ZN9oceanbase2pl14ObPLCollectionC2ENS0_8ObPLTypeEm:21951 + 2: 271 + 5: 271 + 1: _ZN9oceanbase2pl13ObPLCompositeC2ENS0_8ObPLTypeEmb:5420 + 0: 271 + 3: _ZN9oceanbase2pl10ObElemDescC2Ev:10298 + 0: 271 + 0: _ZN9oceanbase6common10ObDataTypeC2Ev:5691 + 3: 271 + 4: 271 + 1: _ZN9oceanbase6common9ObObjMetaC2Ev:1897 + 1: 271 + 2: _ZN9oceanbase6common10ObAccuracyC2Ev:1084 + 0: _ZN9oceanbase6common10ObAccuracy5resetEv:1084 + 0: 271 + 2: _ZN9oceanbase3sql13ObDASDelRtDefC2Ev:18699 + 2: 271 + 1: _ZN9oceanbase3sql17ObDASDMLBaseRtDefC2ENS0_11ObDASOpTypeE:13821 + 2: 271 + 4: 271 + 5: 271 + 1: _ZN9oceanbase3sql14ObDASBaseRtDefC2ENS0_11ObDASOpTypeE:4607 + 1: 271 + 3: 271 + 3: _ZN9oceanbase6common11ObArrayWrapIPNS_3sql17ObDASDMLBaseRtDefEEC2Ev:6775 + 1: 271 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql17ObDASDMLBaseRtDefEEC2Ev:1897 + 0: 271 +_ZN9oceanbase3sql20ObDASIndexDMLAdaptorILi3ENS0_16ObDASUpdIteratorEE12write_tabletERS2_Rl:95590:380 + 1: 363 + 2: 363 + 3: 363 + 4.1: 363 _ZZN9oceanbase3sql20ObDASIndexDMLAdaptorILi3ENS0_16ObDASUpdIteratorEE12write_tabletERS2_RlENKUlPKcE_clES7_:363 + 6: 371 + 7: 0 + 8.1: 0 + 10.1: 371 _ZN9oceanbase3sql12ObDMLService14init_dml_paramERKNS0_17ObDASDMLBaseCtDefERNS0_17ObDASDMLBaseRtDefERNS_11transaction16ObTxReadSnapshotERNS_6common12ObIAllocatorERNS_7storage14ObDMLBaseParamE:390 + 11.1: 0 + 12.1: 366 + 13.1: 0 + 15.1: 366 + 15.2: 366 + 17.1: 0 + 17.2: 0 + 17.3: 0 + 17.5: 0 + 18: 0 + 19: 0 + 20: 0 + 21: 0 + 22.1: 0 + 24: 0 + 24.1: 0 + 26.1: 0 + 26.2: 0 + 27.1: 0 + 29.1: 0 + 29.2: 0 + 35.1: 0 + 37.1: 0 + 37.2: 0 + 43.1: 0 + 47: 363 + 12.1: _ZN9oceanbase3sql20ObDASIndexDMLAdaptorILi3ENS0_16ObDASUpdIteratorEE10write_rowsERKNS_5share6ObLSIDERKNS_6common10ObTabletIDERKNS0_13ObDASUpdCtDefERKNS0_13ObDASUpdRtDefERS2_Rl:35623 + 7: 349 + 9: 366 _ZN9oceanbase7storage15ObAccessService11update_rowsERKNS_5share6ObLSIDERKNS_6common10ObTabletIDERNS_11transaction8ObTxDescERKNS0_14ObDMLBaseParamERKNS6_8ObIArrayImEESJ_PNS6_16ObNewRowIteratorERl:368 + 18.1: 0 + 21: 0 + 8: _ZN9oceanbase5share11ObTenantEnv3mtlIPNS_7storage15ObAccessServiceEEET_v:13262 + 2: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:8027 + 2: 349 + 2.1: 0 + 2.2: 0 + 2.1: _ZN9oceanbase5share12ObTenantBase3getIPNS_7storage15ObAccessServiceEEET_v:5235 + 0: _ZN9oceanbase5share12ObTenantBase9inner_getENS1_8IdentityIPNS_7storage15ObAccessServiceEEE:5235 + 0: 349 + 15.2: _ZNK9oceanbase6common12ObIArrayWrapIPKNS_3sql14ObDASBaseCtDefEE5emptyEv:1830 + 0: 366 + 18: _ZNK9oceanbase6common12ObIArrayWrapIPKNS_3sql14ObDASBaseCtDefEE2atEl:0 + 6: 0 + 19: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql14ObDASBaseRtDefEE2atEl:0 + 6: 0 + 20: _ZN9oceanbase6common12ObIArrayWrapINS0_10ObTabletIDEE2atEl:0 + 6: 0 + 20.1: _ZN9oceanbase6common10ObTabletIDC2ERKS1_:0 + 0: 0 + 24: _ZN9oceanbase3sql16ObDASUpdIterator6rewindEPKNS0_17ObDASDMLBaseCtDefE:0 + 3: 0 + 4: 0 + 5: 0 +_ZN9oceanbase6common13ObSEArrayImplINS_5share6schema19ObSchemaGetterGuard9SchemaObjELl2ENS0_19ModulePageAllocatorELb0EED2Ev:95513:973 + 1: 947 + 3: 970 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema19ObSchemaGetterGuard9SchemaObjELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv:51606 + 4.1: 947 + 4.3: 10 + 9: 970 + 11: 1 + 13: 970 + 15: 970 + 24: 970 + 5: _ZN9oceanbase5share6schema19ObSchemaGetterGuard9SchemaObjD2Ev:175 + 0: 13 _ZN9oceanbase6common15ObKVCacheHandleD1Ev:13 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema19ObSchemaGetterGuard9SchemaObjELl2ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:20 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:20 + 0: 1 + 0.2: 1 _ZN9oceanbase6common16ObArenaAllocator4freeEPv:1 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase3sql20ObPxEstimateSizeUtil11get_px_sizeEPNS0_13ObExecContextENS0_14PxOpSizeFactorElRl:94995:806 + 5: 779 + 6: 779 + 12: 779 + 13: 779 + 15: 2 + 16: 2 + 20.1: 2 + 22: 0 + 23.1: 2 + 30: 2 + 31: 2 + 32: 0 + 33.1: 0 + 43: 779 + 52: 779 + 53.1: 0 + 55: 0 + 56: 0 + 58: 750 + 59: 2 + 63: 750 + 13: _ZNK9oceanbase3sql14PxOpSizeFactor16has_leaf_granuleEv:3116 + 1: 779 + 15: _ZNK9oceanbase3sql14PxOpSizeFactor12has_exchangeEv:8 + 1: 2 + 16: _ZNK9oceanbase3sql14PxOpSizeFactor17has_block_granuleEv:8 + 1: 2 + 21: _ZN9oceanbase3sql11ObPxSqcUtil25get_total_partition_countEPNS0_13ObExecContextE:0 + 4: 0 + 7: 0 + 3: _ZN9oceanbase3sql13ObExecContext15get_sqc_handlerEv:0 + 0: 0 + 5: _ZN9oceanbase3sql14ObPxSqcHandler16get_sqc_init_argEv:0 + 0: 0 + 6: _ZNK9oceanbase3sql11ObPxSqcMeta20get_total_part_countEv:0 + 0: 0 + 31: _ZNK9oceanbase3sql14PxOpSizeFactor17has_block_granuleEv:8 + 1: 2 +_ZN9oceanbase3sql15ObTableInsertOp11inner_closeEv:94591:284 + 1: 264 + 2.1: 263 + 2.2: 0 + 2.4: 0 + 2.5: 0 + 2.9: 0 + 3: 263 + 4: 267 + 5.1: 0 + 7: 267 _ZN9oceanbase3sql15ObTableModifyOp11inner_closeEv:288 + 8: 283 + 8.3: 283 + 2.1: _ZN9oceanbase3lib20is_trace_log_enabledEv:2105 + 2: 264 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:270 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:1841 + 2: 263 + 2.4: _ZN9oceanbase3lib20is_trace_log_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:0 + 2: 0 + 2.10: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:0 + 0: 0 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 4: _ZN9oceanbase3sql15ObTableInsertOp20close_table_for_eachEv:72747 + 2: 263 + 3.1: 263 + 3.2: 536 + 3.3: 536 + 4: 263 + 5: 263 + 7: 263 + 11.1: 0 + 16.1: 267 + 16.3: 267 + 19: 267 + 3.2: _ZNK9oceanbase6common12ObIArrayWrapINS0_11ObArrayWrapINS_3sql10ObInsRtDefEEEE5countEv:3752 + 0: 536 + 4: _ZN9oceanbase6common12ObIArrayWrapINS0_11ObArrayWrapINS_3sql10ObInsRtDefEEEE2atEl:1841 + 6: 263 + 4.1: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql10ObInsRtDefEE5emptyEv:1578 + 0: 263 + 5: _ZN9oceanbase3sql11get_my_specINS0_15ObTableInsertOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:1052 + 5: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:1052 + 2: 263 + 5.1: _ZNK9oceanbase6common12ObIArrayWrapINS0_11ObArrayWrapIPNS_3sql10ObInsCtDefEEEE2atEl:1841 + 6: 263 + 5.2: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql10ObInsCtDefEE2atEl:1052 + 6: 263 + 6.1: _ZN9oceanbase6common12ObIArrayWrapINS_3sql10ObInsRtDefEE2atEl:1052 + 6: 263 + 7: _ZN9oceanbase3sql12ObDMLService26process_after_stmt_triggerERKNS0_14ObDMLBaseCtDefERNS0_14ObDMLBaseRtDefERNS0_10ObDMLRtCtxERKNS_6common14ObDmlEventTypeE:13150 + 5: 263 + 7: 263 + 7.1: 263 + 8: 0 + 8.1: 0 + 9: 0 + 10: 0 + 11.1: 0 + 14.1: 0 + 18.1: 0 + 21: 263 + 6: _ZN9oceanbase3sql10ObDMLRtCtx12get_exec_ctxEv:1841 + 0: _ZN9oceanbase3sql8ObDASRef12get_exec_ctxEv:1841 + 0: 263 + 6.1: _ZN9oceanbase3sql13ObExecContext13set_dml_eventENS_6common14ObDmlEventTypeE:2630 + 0: 263 + 7.1: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql12ObTriggerArgEE5emptyEv:2104 + 0: 263 + 8: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:0 + 2: 0 + 8.2: _ZNK9oceanbase3sql17ObTableModifySpec12use_dist_dasEv:0 + 0: 0 + 9.1: _ZN9oceanbase3sql10ObDMLRtCtx12get_exec_ctxEv:0 + 0: _ZN9oceanbase3sql8ObDASRef12get_exec_ctxEv:0 + 0: 0 + 9.2: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:0 + 2: 0 + 9.3: _ZNK9oceanbase3sql16ObSQLSessionInfo17is_remote_sessionEv:0 + 0: 0 + 16.1: _ZNK9oceanbase6common12ObIArrayWrapINS0_11ObArrayWrapINS_3sql10ObInsRtDefEEEE5countEv:1869 + 0: 267 + 17: _ZN9oceanbase6common12ObIArrayWrapINS0_11ObArrayWrapINS_3sql10ObInsRtDefEEEE2atEl:1820 + 6: 260 + 17.1: _ZN9oceanbase6common11ObArrayWrapINS_3sql10ObInsRtDefEE13release_arrayEv:13914 + 2: 260 + 3.1: 277 + 3.3: 0 + 4: 260 _ZN9oceanbase3sql10ObInsRtDefD2Ev:263 + 7: 267 +_ZN9oceanbase6common13ObSEArrayImplImLl4ENS0_19ModulePageAllocatorELb0EE5reuseEv:94374:4528 + 1: 4494 + 8: 4494 + 9: 4494 + 10: 4494 +_ZN9oceanbase6common11ObArrayWrapINS_3sql10ObInsRtDefEE14allocate_arrayERNS0_12ObIAllocatorEl:94264:290 + 1: 266 + 2: 266 + 4: 266 + 5: 266 + 6: 0 + 7.1: 0 + 8.1: 270 _ZN9oceanbase6common16ObArenaAllocator5allocEl:282 + 9: 0 + 10.1: 0 + 12.2: 0 + 12.3: 270 + 12.4: 270 + 13: 270 + 15: 270 + 12.2: _ZN9oceanbase3sql10ObInsRtDefC2Ev:67230 + 1: 270 + 4: 270 + 1: _ZN9oceanbase3sql14ObDMLBaseRtDefC2ERNS0_17ObDASDMLBaseRtDefE:33750 + 2: 270 + 5: 270 + 1: _ZN9oceanbase3sql14ObTrigDMLRtDefC2Ev:28080 + 1: 0 + 2: 270 + 7: _ZN9oceanbase2pl14ObPLCollectionC2ENS0_8ObPLTypeEm:22410 + 2: 270 + 5: 270 + 1: _ZN9oceanbase2pl13ObPLCompositeC2ENS0_8ObPLTypeEmb:5400 + 0: 270 + 3: _ZN9oceanbase2pl10ObElemDescC2Ev:9720 + 0: 270 + 0: _ZN9oceanbase6common10ObDataTypeC2Ev:5130 + 3: 270 + 4: 270 + 1: _ZN9oceanbase6common9ObObjMetaC2Ev:1890 + 1: 270 + 2: _ZN9oceanbase6common10ObAccuracyC2Ev:1080 + 0: _ZN9oceanbase6common10ObAccuracy5resetEv:1080 + 0: 270 + 2: _ZN9oceanbase3sql13ObDASInsRtDefC2Ev:19710 + 2: 270 + 4: 270 + 1: _ZN9oceanbase3sql17ObDASDMLBaseRtDefC2ENS0_11ObDASOpTypeE:12960 + 2: 270 + 4: 270 + 5: 270 + 1: _ZN9oceanbase3sql14ObDASBaseRtDefC2ENS0_11ObDASOpTypeE:3780 + 1: 270 + 3: 270 + 3: _ZN9oceanbase6common11ObArrayWrapIPNS_3sql17ObDASDMLBaseRtDefEEC2Ev:8100 + 1: 270 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql17ObDASDMLBaseRtDefEEC2Ev:1890 + 0: 270 +_ZN9oceanbase8memtable18ObTransCallbackMgr21acquire_callback_listEv:93574:1096 + 1: 1022 + 2: 1022 + 3: 1022 + 4: 1022 + 5: 1022 + 8.1: 0 + 9: 0 + 10.1: 0 + 16: 1066 + 3: _ZN9oceanbase6common8get_itidEv:24528 + 4: 1022 + 5: 0 + 6: 0 + 8: 0 +_ZNK9oceanbase5share6ObLSID4hashEv:93258:10408 + 1: 10362 + 2: 10362 + 3: 10362 +_ZN9oceanbase7storage17ObLSTabletService20delete_row_in_tabletERNS0_14ObTabletHandleERNS0_15ObDMLRunningCtxERKNS_6common8ObNewRowE:92573:239 + 4: 224 + 5: 224 + 6: 224 + 7: 224 + 13: 224 + 15: 224 _ZN9oceanbase7storage17ObLSTabletService24check_old_row_legitimacyERNS0_14ObTabletHandleERNS0_15ObDMLRunningCtxERKNS_6common8ObNewRowE:246 + 15.1: 247 + 17: 0 + 19.1: 0 + 20.1: 247 _ZN9oceanbase7storage17ObLSTabletService23process_old_row_lob_colERNS0_14ObTabletHandleERNS0_15ObDMLRunningCtxERNS0_10ObStoreRowE:251 + 20.2: 264 + 21.1: 0 + 22.1: 264 + 23: 259 _ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE7get_objEv:264 + 23.1: 250 _ZN9oceanbase7storage8ObTablet31insert_row_without_rowkey_checkERNS0_15ObRelativeTableERNS0_10ObStoreCtxERKNS_6common8ObIArrayINS_5share6schema9ObColDescEEERKNS0_10ObStoreRowE:259 + 23.2: 253 + 26.1: 0 + 29.1: 0 + 29.2: 0 + 30.1: 0 + 33: 0 + 35: 0 + 37: 0 + 37.1: 0 + 37.2: 0 + 40.1: 0 + 47: 259 + 48.7: 259 _ZN9oceanbase6common13ObSEArrayImplIlLl8ENS0_19ModulePageAllocatorELb0EED2Ev:259 + 48.8: 0 + 10: _ZN9oceanbase7storage10ObStoreRowC2Ev:12096 + 1: 224 + 3: 224 + 4.1: 224 + 1: _ZN9oceanbase12blocksstable12ObDmlRowFlagC2Ev:1344 + 1: 224 + 11: _ZN9oceanbase6common9ObSEArrayIlLl8ENS0_19ModulePageAllocatorELb0EEC2Ev:26880 + 0.1: 224 + 0.5: _ZN9oceanbase6common13ObSEArrayImplIlLl8ENS0_19ModulePageAllocatorELb0EEC2ElRKS2_:23520 + 2: 224 + 5: 224 + 6: 224 + 8: 224 + 17.1: 224 + 2: _ZN9oceanbase6common8ObIArrayIlEC2EPll:1792 + 0: _ZN9oceanbase6common12ObIArrayWrapIlEC2EPll:1792 + 0: 224 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:9184 + 0: 224 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:4704 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:4704 + 2: 224 + 8: 224 + 12: _ZN9oceanbase12blocksstable12ObDmlRowFlag8set_flagENS0_9ObDmlFlagE:3584 + 3: 224 + 32: _ZN9oceanbase6common13ObSEArrayImplIlLl8ENS0_19ModulePageAllocatorELb0EE5resetEv:0 + 0: 0 + 34: _ZN9oceanbase12blocksstable12ObDmlRowFlag8set_flagENS0_9ObDmlFlagE:0 + 3: 0 + 36: _ZN9oceanbase12blocksstable12ObDmlRowFlag8set_flagENS0_9ObDmlFlagE:0 + 3: 0 +_ZN9oceanbase3sql30ObHashPartitionExtendHashTableINS0_14ObHashPartColsEE4initEPNS_6common12ObIAllocatorElPNS0_20ObSqlMemMgrProcessorEllb:92413:229 + 7: 218 + 8: 218 + 9: 218 + 10: 218 + 11: 218 + 12: 218 + 13: 218 + 14: 0 + 15.1: 0 + 18: 218 + 21.2: 251 + 23: 0 + 24.1: 0 + 25.1: 251 + 26.1: 251 + 26.4: 251 _ZN9oceanbase3sql30ObHashPartitionExtendHashTableINS0_14ObHashPartColsEE19create_bucket_arrayElRPNS_6common9Ob2DArrayIPS2_Li65408ENS4_19ModulePageAllocatorELb0ENS4_9ObSEArrayIPS6_Ll64ES7_Lb0EEEEE:260 + 28.1: 0 + 32: 236 + 34: 0 + 36: 0 + 39: 236 + 18: _ZN9oceanbase3sql30ObHashPartitionExtendHashTableINS0_14ObHashPartColsEE19estimate_bucket_numElll:26784 + 5: 216 + 8.1: 216 + 8.3: 216 + 12: 216 + 15: 216 + 63030: 216 + 6: _ZN9oceanbase6common9next_pow2El:4536 + 2: 216 + 19: _ZNK9oceanbase3sql20ObSqlMemMgrProcessor13get_mem_boundEv:2602 + 1: 218 + 1.1: 0 + 1.2: 216 + 1.3: 216 + 1.1: _ZNK9oceanbase3sql20ObSqlWorkAreaProfile15get_expect_sizeEv:0 + 0: 0 + 21.3: _ZN9oceanbase6common9ob_mallocElRKNS_3lib7ObLabelE:17487 + 3: 216 + 2.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:4968 + 5: 216 + 7: 216 + 4: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:8415 + 3: 216 _ZN9oceanbase3lib17ObMallocAllocator12get_instanceEv:231 + 4: 224 + 5: 224 _ZN9oceanbase3lib17ObMallocAllocator5allocElRKNS0_9ObMemAttrE:234 + 6: 251 + 7: 0 + 8: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 21.4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKNS_3lib7ObLabelEll:7279 + 4: 251 + 5: 251 + 6: 251 + 25.1: _ZN9oceanbase6common19ModulePageAllocator13set_allocatorEPNS0_12ObIAllocatorE:1004 + 0: 251 + 35: _ZN9oceanbase6common9ob_deleteINS0_19ModulePageAllocatorEEEvRPT_:0 + 2: 0 + 3: 0 + 5: 0 + 4: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase3sql14ObStmtResolver11create_stmtINS0_16ObStartTransStmtEEEPT_v:92241:237 + 1: 232 + 2: 232 + 4: 232 + 5.1: 0 + 6.1: 0 + 7.1: 0 + 8.1: 228 + 9.1: 0 + 11.1: 0 + 13: 228 + 14: 228 + 15: 228 + 17: 228 + 17.1: 0 + 18: 228 + 18.1: 228 _ZN9oceanbase3sql17get_timezone_infoEPKNS0_16ObSQLSessionInfoE:235 + 19: 233 + 19.1: 233 _ZN9oceanbase3sql20get_obj_print_paramsEPKNS0_16ObSQLSessionInfoE:244 + 20: 284 _ZN9oceanbase3sql14ObStmtResolver9init_stmtEv:252 + 22.1: 0 + 25: 284 + 6.1: _ZN9oceanbase3sql13ObStmtFactory13get_query_ctxEv:1624 + 3: 232 + 4: 0 + 5: 0 + 7.1: 0 + 10: 0 + 8.1: _ZN9oceanbase3sql13ObStmtFactory11create_stmtINS0_16ObStartTransStmtEEEiRPT_:38424 + 2: 225 + 3: 225 _ZN9oceanbase6common16ObArenaAllocator5allocEl:251 + 6: 242 + 7: 0 + 8.1: 0 + 11: 0 + 12.1: 0 + 13: 0 + 17: 0 + 10: _ZN9oceanbase3sql16ObStartTransStmtC2Ev:12584 + 2: 242 + 4: 242 + 1: _ZN9oceanbase3sql9ObTCLStmtC2ENS0_4stmt8StmtTypeE:5566 + 0: _ZN9oceanbase3sql6ObStmtC2ENS0_4stmt8StmtTypeE:5566 + 1: 242 + 2: 242 + 3: 242 + 11: _ZN9oceanbase6common10ObObjStoreIPNS_3sql6ObStmtERNS0_12ObIAllocatorELb1EE9store_objERKS4_:18436 + 4: 242 _ZN9oceanbase6common16ObArenaAllocator5allocEl:245 + 5: 228 + 7.1: 0 + 10: 228 + 9: _ZN9oceanbase6common9ObObjNodeIPNS_3sql6ObStmtEEC2ERKS4_:5700 + 0: 228 + 0: _ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql6ObStmtEEEEC2Ev:1596 + 1: 228 + 10: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql6ObStmtEEEE8add_lastEPS6_:6156 + 13: 228 + 12: _ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql6ObStmtEEEE10add_beforeEPS6_:5016 + 2: 228 + 2: _ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql6ObStmtEEEE3addEPS6_S8_S8_:3876 + 2: 228 + 3: 228 + 4: 228 + 5: 228 + 14: _ZN9oceanbase3sql6ObStmt13set_query_ctxEPNS0_10ObQueryCtxE:912 + 0: 228 + 15: _ZN9oceanbase3sql6ObStmt11set_stmt_idEv:8664 + 2: 228 + 3: 228 + 5: _ZN9oceanbase3sql10ObQueryCtx15get_new_stmt_idEv:4104 + 0: 228 + 17: _ZNK9oceanbase3sql6ObStmt13get_query_ctxEv:912 + 0: 228 + 17.2: _ZN9oceanbase3sql10ObQueryCtx19set_is_prepare_stmtEb:1368 + 0: 228 + 18: _ZNK9oceanbase3sql6ObStmt13get_query_ctxEv:912 + 0: 228 + 18.2: _ZN9oceanbase3sql10ObQueryCtx17set_timezone_infoEPKNS_6common14ObTimeZoneInfoE:1631 + 0: 233 + 19: _ZNK9oceanbase3sql6ObStmt13get_query_ctxEv:932 + 0: 233 + 19.2: _ZN9oceanbase3sql10ObQueryCtx22set_sql_stmt_coll_typeENS_6common15ObCollationTypeE:1470 + 0: 245 +_ZN9oceanbase8memtable10ObMemtable5existERNS_7storage10ObRowsInfoERbS5_:91671:218 + 4: 213 + 5: 213 + 6: 213 + 7: 1 + 8.1: 1 + 12: 213 + 13: 1 + 14.1: 1 + 16: 213 + 17: 213 + 18.1: 272 + 18.7: 272 + 20: 213 + 22.1: 274 _ZN9oceanbase8memtable10ObMemtable5existERNS_7storage10ObStoreCtxEmRKNS2_15ObTableReadInfoERKNS_12blocksstable13ObDatumRowkeyERbSC_:221 + 28.1: 1 + 29.1: 274 + 30: 1 + 31: 1 + 32.1: 274 + 33.1: 274 _ZN9oceanbase7storage10ObRowsInfo18clear_found_rowkeyEl:273 + 34.1: 1 + 36: 272 + 40: 280 + 6: _ZNK9oceanbase7storage10ObRowsInfo8is_validEv:13419 + 2: 213 + 2.1: 213 + 2.2: 213 + 3: 213 + 3.1: 213 + 3.2: 213 + 2.1: _ZNK9oceanbase7storage10ObRowsInfo11ExistHelper8is_validEv:1491 + 0: 213 + 10: _ZN9oceanbase7storage10ObRowsInfo11ExistHelper13get_store_ctxEv:3621 + 1: 213 + 11: _ZNK9oceanbase7storage10ObRowsInfo11ExistHelper13get_read_infoEv:1491 + 1: 213 + 19: _ZN9oceanbase6common12ObIArrayWrapINS_12blocksstable13ObDatumRowkeyEE2atEl:5751 + 6: 213 + 21: _ZNK9oceanbase12blocksstable13ObDatumRowkey13is_max_rowkeyEv:10043 + 0.1: 213 + 0.2: 213 + 0.3: 213 + 0: _ZNK9oceanbase12blocksstable13ObDatumRowkey8is_validEv:3195 + 0: 213 + 0.1: 213 + 0.5: _ZNK9oceanbase6common7ObDatum6is_maxEv:2364 + 0: 213 + 0.1: 1 + 0: _ZNK9oceanbase6common11ObDatumDesc6is_extEv:1065 + 0: 213 + 0.1: _ZNK9oceanbase6common5ObObj12is_max_valueEv:17 + 2: 1 + 2.1: 1 + 30: _ZN9oceanbase7storage10ObRowsInfo20get_duplicate_rowkeyEv:2982 + 36: _ZN9oceanbase7storage10ObRowsInfo14all_rows_foundEv:4896 + 0: 272 +_ZN9oceanbase6common6DCHashINS_11transaction9ObTransIDELl8EE6Handle6retireEil:90956:508 + 0: 467 + 1: 467 + 2: 219 + 4: 448 + 6: 448 + 7: 0 + 9: 0 + 10: 0 + 12: 448 + 2: _ZN9oceanbase6common6DCHashINS_11transaction9ObTransIDELl8EE17change_node_countEl:19710 + 1: 219 + 4: 219 + 5: 219 + 6: 219 + 8: 219 + 10: 0 + 11.1: 0 + 2: _ZN9oceanbase6common15ObSimpleCounter3incEl:1752 + 0: 219 + 3: _ZNK9oceanbase6common15ObSimpleCounter5valueEv:1533 + 0: 219 + 4: _ZSt3maxIlERKT_S2_S2_:2190 + 5: 219 + 5: _ZSt3minIlERKT_S2_S2_:2190 + 5: 219 + 10: _ZN9oceanbase6common6DCHashINS_11transaction9ObTransIDELl8EE6next2nEm:0 + 2: 0 + 4: _ZN9oceanbase6common6DCHashINS_11transaction9ObTransIDELl8EE15do_pending_taskEPNS0_7DCArrayE:19264 + 2: 448 + 5: 448 + 5.1: 0 + 6: 448 + 7: 0 + 8: 0 + 10: 0 + 11: 0 + 3: _ZN9oceanbase6common7DCArray20copy_from_prev_arrayEPNS0_8HashNodeEl:5824 + 4: 448 + 5: 0 + 5.1: 0 + 6: 0 + 6.1: 0 + 7.1: 0 + 7.3: 0 + 8: 0 + 10: 0 + 6.1: _ZN9oceanbase6common7DCArray17is_parent_retiredEv:0 + 0: 0 + 7: _ZN9oceanbase6common10ObSpinLock7trylockEv:0 + 2: 0 + 14: _ZN9oceanbase6common10ObSpinLock6unlockEv:0 + 2: 0 + 5: _ZN9oceanbase6common6DCHashINS_11transaction9ObTransIDELl8EE6Handle11release_refEv:25536 + 0: 448 + 0: _ZN9oceanbase6common7ObQSync11release_refEl:20160 + 2: 448 + 3: 448 + 4.1: 0 + 2: _ZN9oceanbase6common7ObQSync7add_refEll:13888 + 3: 448 + 6: 448 + 7: _ZN9oceanbase6common7ObQSync4syncEv:0 + 2.1: 0 + 2.3: 0 + 5.1: 0 + 8: _ZN9oceanbase6common7DCArray13retire_parentEv:0 + 0: 0 + 9: _ZN9oceanbase6common7ObQSync4syncEv:0 + 2.1: 0 + 2.3: 0 + 5.1: 0 +_ZN9oceanbase11transaction11ObGtsSource7get_gtsENS0_11MonotonicTsEPNS0_10ObTsCbTaskERlRS2_:90873:244 + 4: 228 + 5: 228 + 6: 228 + 11: 228 + 12: 5 + 13.1: 5 + 14.1: 228 + 15: 5 + 16.1: 5 + 17.1: 228 + 17.2: 223 + 22: 43 + 24.1: 5 + 29: 187 _ZN9oceanbase11transaction11ObGtsSource15get_gts_leader_ERNS_6common6ObAddrE:190 + 30.1: 5 + 31: 5 + 32.1: 171 + 33: 174 _ZN9oceanbase5share25_make_tenant_switch_guardEv:179 + 33.1: 183 + 33.2: 197 _ZN9oceanbase5share19ObTenantSwitchGuardD2Ev:210 + 33.3: 174 _ZN9oceanbase5share19ObTenantSwitchGuard9switch_toEmb:209 + 33.4: 192 + 33.6: 183 + 33.7: 5 + 37: 192 _ZN9oceanbase11transaction11ObGtsSource37get_gts_from_local_timestamp_service_ERNS_6common6ObAddrERlRNS0_11MonotonicTsE:199 + 37.1: 193 + 39.4: 0 + 39.8: 0 + 39.11: 0 + 39.14: 0 + 40.1: 0 + 45: 188 + 53: 0 + 54: 0 + 55.1: 0 + 61: 200 + 63: 5 + 65: 5 + 67.1: 5 + 69: 5 + 71.2: 5 + 71.5: 5 + 71.7: 5 + 71.10: 5 + 72.1: 5 + 80: 241 + 9: _ZN9oceanbase6common6ObAddrC2Ev:4332 + 1: 228 + 14.1: _ZNK9oceanbase11transaction11MonotonicTs8is_validEv:1368 + 0: 228 + 17.1: _ZNK9oceanbase11transaction15ObGTSLocalCache7get_gtsENS0_11MonotonicTsERlRS2_Rb:18550 + 5: 228 + 11: 228 + 13: 228 + 14: 228 + 15: 228 + 16: 228 + 19.1: 228 + 20: 187 + 21: 187 + 25: 41 + 30: 223 + 17.2: _ZN9oceanbase11transaction11MonotonicTsD2Ev:1859 + 0: _ZN9oceanbase11transaction11MonotonicTs5resetEv:1859 + 0: 223 + 32.1: _ZNK9oceanbase6common6ObAddreqERKS1_:8721 + 2: 171 + 2.1: 171 + 2.2: 171 + 39: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 39.3: _Z7load128RoPN5types9uint128_tE:0 + 2: 0 + 39.10: _Z6cas128PVN5types9uint128_tEPS0_S0_:0 + 3: 0 + 11: 0 + 42: _ZN9oceanbase11transaction11ObGtsSource20refresh_gts_locationEv:0 + 0: 0 + 49: _ZN9oceanbase11transaction11ObGtsSource20refresh_gts_locationEv:65 + 0: 5 + 65: _ZN9oceanbase11transaction14ObGTSTaskQueue4pushEPNS0_10ObTsCbTaskE:675 + 2: 5 + 3: 5 + 4: 5 + 5.1: 5 + 6.1: 5 + 7: 5 + 8.1: 5 + 9.1: 5 + 14: 5 + 9.3: _ZN9oceanbase6common11ObLinkQueue4pushEPNS0_6ObLinkE:205 + 6: 5 + 7: _ZN9oceanbase6common11ObLinkQueue3idxEl:30 + 0: 5 + 8.1: _ZN9oceanbase6common13ObSpLinkQueue4pushEPNS0_6ObLinkE:130 + 7: 5 + 8: 5 + 9: 5 + 71: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:95 + 2: 5 + 71.2: _Z7load128RoPN5types9uint128_tE:145 + 2: 5 + 71.7: _Z6cas128PVN5types9uint128_tEPS0_S0_:75 + 3: 5 + 11: 5 + 78: _ZN9oceanbase11transaction15ObGtsStatistics24inc_get_gts_with_stc_cntEv:1928 + 0.1: 241 +_ZN9oceanbase11transaction30ObTransDeadlockDetectorAdapter36maintain_deadlock_info_when_end_stmtERNS_3sql13ObExecContextEb:90770:1078 + 2: 1029 + 4: 1029 + 5.1: 1071 + 5.2: 1079 _ZN9oceanbase6common14ObTscTimestamp12get_instanceEv:1095 + 5.3: 0 + 5.5: 0 + 5.7: 0 + 5.13: 1068 _ZN9oceanbase6common14ObTscTimestamp12current_timeEv:1107 + 8: 0 + 10.1: 0 + 11: 0 + 12.1: 0 + 13.2: 0 + 15.1: 4 + 17.2: 4 + 18: 0 + 19.1: 0 + 20.2: 4 + 22.1: 4 + 23: 4 + 23.1: 4 + 23.2: 4 + 24.1: 4 + 25.1: 4 + 25.2: 4 + 26.1: 0 + 27.2: 4 + 29.1: 4 + 29.2: 4 + 29.3: 4 + 29.4: 4 + 32.1: 0 + 34: 4 + 37.1: 4 + 38.1: 4 + 40.1: 4 + 43: 0 + 45.8: 0 + 45.9: 0 + 45.10: 1025 + 5.1: _ZN9oceanbase5share8detector21ObDeadLockDetectorMgr19is_deadlock_enabledEv:9597 + 0: 1071 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:1038 + 9: _ZN9oceanbase6common7ObArrayINS_11transaction16ObTransIDAndAddrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEEC2Ev:0 + 0.1: 0 + 0.5: _ZN9oceanbase6common11ObArrayImplINS_11transaction16ObTransIDAndAddrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEEC2ElRKS4_:0 + 3: 0 + 4: 0 + 7.1: 0 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 10: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:0 + 2: 0 + 13.1: _ZNK9oceanbase3sql16ObSQLSessionInfo8is_innerEv:0 + 2: 0 + 20.1: _ZNK9oceanbase11transaction8ObTxDesc8is_validEv:68 + 0: 4 + 0: _ZNK9oceanbase11transaction8ObTxDesc8is_in_txEv:28 + 0: 4 + 0.1: _ZNK9oceanbase11transaction9ObTransID8is_validEv:32 + 0: 4 + 27.1: _ZNK9oceanbase6common12ObIArrayWrapINS_11transaction16ObTransIDAndAddrEE5emptyEv:32 + 0: 4 + 29.2: _ZNK9oceanbase11transaction8ObTxDesc14get_session_idEv:52 + 0: 4 + 29.4: _ZN9oceanbase11transaction9ObTransIDD2Ev:32 + 0: 4 + 29.5: _ZN9oceanbase11transaction9ObTransIDD2Ev:0 + 0: 0 + 37: _ZNK9oceanbase3sql16ObSQLSessionInfo25is_registered_to_deadlockEv:32 + 0: 4 + 38: _ZNK9oceanbase11transaction8ObTxDesc3tidEv:16 + 0: 4 + 39: _ZN9oceanbase3sql16ObSQLSessionInfo26set_registered_to_deadlockEb:56 + 0: 4 +_ZN9oceanbase7storage30ObSSTableMultiVersionRowGetterD2Ev:90424:1039 + 0: 974 _ZN9oceanbase12blocksstable10ObDatumRowD1Ev:998 + 0.3: 989 _ZN9oceanbase7storage19ObSSTableRowScannerD1Ev:1014 + 0.1: _ZN9oceanbase7storage13ObObjBufArrayD2Ev:50340 + 2.1: 0 + 2: _ZN9oceanbase7storage13ObObjBufArray5resetEv:50340 + 2: 980 + 2.1: 0 + 3: 0 + 5: 989 + 6: 989 + 7: 989 + 8: 989 +_ZN9oceanbase3sql12ObDMLService19write_row_to_das_opILi4EEEiRKNS0_17ObDASDMLBaseCtDefERNS0_17ObDASDMLBaseRtDefEPKNS0_14ObDASTabletLocERNS0_10ObDMLRtCtxERKNS_6common12ObFixedArrayIPNS0_6ObExprENSD_12ObIAllocatorEEE:90313:276 + 5: 258 + 6: 258 + 14: 258 + 17: 258 + 19: 236 + 20.1: 0 + 24: 236 + 26: 0 + 26.1: 236 + 26.2: 236 + 27: 0 + 31.1: 0 + 36: 238 + 37: 0 + 38: 0 + 38.1: 0 + 38.2: 0 + 40.1: 260 + 40.2: 238 _ZNK9oceanbase6common12ObIAllocator4usedEv:252 + 42.1: 260 + 42.2: 255 _ZN9oceanbase3sql13ObDASDeleteOp9write_rowERKNS_6common12ObFixedArrayIPNS0_6ObExprENS2_12ObIAllocatorEEERNS0_9ObEvalCtxERb:254 + 43.1: 1 + 50: 256 + 52: 2 + 52.2: 2 + 53.1: 1 + 55: 2 + 59: 0 + 61: 2 + 61.1: 2 + 62: 2 + 63.1: 0 + 64.1: 2 + 65.1: 0 + 66.1: 2 + 67.1: 0 + 74.1: 253 + 74.3: 253 + 75: 242 + 18: _ZN9oceanbase3sql8ObDASRef10has_das_opINS0_13ObDASDeleteOpEEEbPKNS0_14ObDASTabletLocERPT_:4232 + 4: 258 _ZN9oceanbase3sql8ObDASRef13find_das_taskEPKNS0_14ObDASTabletLocENS0_11ObDASOpTypeE:274 + 5: 284 + 8: 0 + 19: _ZN9oceanbase3sql8ObDASRef16prepare_das_taskINS0_13ObDASDeleteOpEEEiPKNS0_14ObDASTabletLocERPT_:10236 + 3: 269 + 4: 269 _ZN9oceanbase3sql8ObDASRef15create_das_taskEPKNS0_14ObDASTabletLocENS0_11ObDASOpTypeERPNS0_12ObIDASTaskOpE:271 + 5: 236 + 6: 236 + 22: _ZN9oceanbase3sql13ObDASDeleteOp13set_das_ctdefEPKNS0_13ObDASDelCtDefE:2596 + 0: 236 + 23: _ZN9oceanbase3sql13ObDASDeleteOp13set_das_rtdefEPNS0_13ObDASDelRtDefE:1652 + 0: 236 + 26.2: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql17ObDASDMLBaseCtDefEE5emptyEv:1180 + 0: 236 + 37: _ZN9oceanbase6common9EventItemC2Ev:3570 + 2: 238 + 37.1: _ZN9oceanbase6common10EventTable8instanceEv:4046 + 2: 238 + 2.1: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common10EventTableC2Ev:0 + 0: 0 + 2: 0 + 37.2: _ZN9oceanbase6common10EventTable9get_eventEl:5474 + 1.4: 238 + 37.3: _ZNK9oceanbase6common9EventItem4callEv:5950 + 2: 238 + 3: 238 + 5.1: 0 + 7.1: 0 + 8: 0 + 9.1: 0 + 11: 0 + 12: 0 + 13.1: 0 + 18: 0 + 38.1: _ZNK9oceanbase3sql13ObDASDeleteOp11get_row_cntEv:0 + 0: _ZNK9oceanbase3sql16ObDASWriteBuffer11get_row_cntEv:0 + 2: 0 + 2.3: 0 + 2.1: _ZNK9oceanbase3sql17ObChunkDatumStore11get_row_cntEv:0 + 0: 0 + 42.1: _ZN9oceanbase3sql10ObDMLRtCtx12get_eval_ctxEv:1785 + 0: _ZN9oceanbase3sql8ObDASRef12get_eval_ctxEv:1785 + 0: 255 + 55: _ZN9oceanbase3sql10ObDMLRtCtx22need_non_sub_full_taskEv:16 + 1: _ZN9oceanbase3sql13DasTaskStatus22need_non_sub_full_taskEv:16 + 0: 2 + 61: _ZN9oceanbase3sql10ObDMLRtCtx24need_pick_del_task_firstEv:4 + 1: _ZN9oceanbase3sql13DasTaskStatus24need_pick_del_task_firstEv:4 + 0: 2 + 70: _ZN9oceanbase3sql10ObDMLRtCtx5reuseEv:16 + 2: 2 +_ZN9oceanbase3sql13ObDASInsertOpC2ERNS_6common12ObIAllocatorE:90055:298 + 3: 275 + 5: 277 + 6: 275 + 1: _ZN9oceanbase3sql12ObIDASTaskOpC2ERNS_6common12ObIAllocatorE:67754 + 0: 277 _ZN9oceanbase11transaction14ObTxExecResultC1Ev:285 + 2: 277 + 3: 277 + 5: 277 + 6: 277 + 8: 275 + 9: 275 + 13: 277 + 0.2: _ZN9oceanbase6common10ObTabletIDC2Em:3850 + 0: 275 + 10: _ZN9oceanbase6common12ObFixedArrayIPKNS_3sql14ObDASBaseCtDefENS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplIS5_S6_EEERS6_l:14575 + 0: 275 + 0: _ZN9oceanbase6common16ObFixedArrayImplIPKNS_3sql14ObDASBaseCtDefENS0_12ObIAllocatorEEC2ERS6_l:9625 + 2: 275 + 3: 275 + 4: 275 + 1: _ZN9oceanbase6common8ObIArrayIPKNS_3sql14ObDASBaseCtDefEEC2Ev:1925 + 0: _ZN9oceanbase6common12ObIArrayWrapIPKNS_3sql14ObDASBaseCtDefEEC2Ev:1925 + 0: 275 + 11: _ZN9oceanbase6common12ObFixedArrayIPNS_3sql14ObDASBaseRtDefENS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplIS4_S5_EEERS5_l:14575 + 0: 275 + 0: _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql14ObDASBaseRtDefENS0_12ObIAllocatorEEC2ERS5_l:9625 + 2: 275 + 3: 275 + 4: 275 + 1: _ZN9oceanbase6common8ObIArrayIPNS_3sql14ObDASBaseRtDefEEC2Ev:1925 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql14ObDASBaseRtDefEEC2Ev:1925 + 0: 275 + 12: _ZN9oceanbase6common12ObFixedArrayINS0_10ObTabletIDENS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplIS2_S3_EEERS3_l:14575 + 0: 275 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS0_10ObTabletIDENS0_12ObIAllocatorEEC2ERS3_l:9625 + 2: 275 + 3: 275 + 4: 275 + 1: _ZN9oceanbase6common8ObIArrayINS0_10ObTabletIDEEC2Ev:1925 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_10ObTabletIDEEC2Ev:1925 + 0: 275 +_ZN9oceanbase3sql13ObDASInsertOpC1ERNS_6common12ObIAllocatorE:90055:298 + 3: 275 + 5: 277 + 6: 275 + 1: _ZN9oceanbase3sql12ObIDASTaskOpC2ERNS_6common12ObIAllocatorE:67754 + 0: 277 _ZN9oceanbase11transaction14ObTxExecResultC1Ev:285 + 2: 277 + 3: 277 + 5: 277 + 6: 277 + 8: 275 + 9: 275 + 13: 277 + 0.2: _ZN9oceanbase6common10ObTabletIDC2Em:3850 + 0: 275 + 10: _ZN9oceanbase6common12ObFixedArrayIPKNS_3sql14ObDASBaseCtDefENS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplIS5_S6_EEERS6_l:14575 + 0: 275 + 0: _ZN9oceanbase6common16ObFixedArrayImplIPKNS_3sql14ObDASBaseCtDefENS0_12ObIAllocatorEEC2ERS6_l:9625 + 2: 275 + 3: 275 + 4: 275 + 1: _ZN9oceanbase6common8ObIArrayIPKNS_3sql14ObDASBaseCtDefEEC2Ev:1925 + 0: _ZN9oceanbase6common12ObIArrayWrapIPKNS_3sql14ObDASBaseCtDefEEC2Ev:1925 + 0: 275 + 11: _ZN9oceanbase6common12ObFixedArrayIPNS_3sql14ObDASBaseRtDefENS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplIS4_S5_EEERS5_l:14575 + 0: 275 + 0: _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql14ObDASBaseRtDefENS0_12ObIAllocatorEEC2ERS5_l:9625 + 2: 275 + 3: 275 + 4: 275 + 1: _ZN9oceanbase6common8ObIArrayIPNS_3sql14ObDASBaseRtDefEEC2Ev:1925 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql14ObDASBaseRtDefEEC2Ev:1925 + 0: 275 + 12: _ZN9oceanbase6common12ObFixedArrayINS0_10ObTabletIDENS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplIS2_S3_EEERS3_l:14575 + 0: 275 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS0_10ObTabletIDENS0_12ObIAllocatorEEC2ERS3_l:9625 + 2: 275 + 3: 275 + 4: 275 + 1: _ZN9oceanbase6common8ObIArrayINS0_10ObTabletIDEEC2Ev:1925 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_10ObTabletIDEEC2Ev:1925 + 0: 275 +_ZN9oceanbase8memtable10ObMemtable13dec_write_refEv:89874:1179 + 1: 1145 + 2: 1145 + 3: 1145 _ZNK9oceanbase8memtable10ObMemtable18is_frozen_memtableEv:1192 + 4: 1103 + 5: 1103 + 10: 1103 + 10.3: 0 + 11: 0 + 11.1: 0 + 12.1: 0 + 14.1: 0 + 15: 0 + 16: 0 + 16.1: 0 + 16.2: 0 + 16.3: 0 + 17.1: 0 + 24.3: 1129 + 5.1: _ZN9oceanbase5share6ObLSIDC2ERKS1_:8824 + 0: 1103 + 10.2: _ZNK9oceanbase8memtable10ObMemtable19get_unsubmitted_cntEv:0 + 0: 0 + 14: _ZN9oceanbase8memtable10ObMemtable16get_unsynced_cntEv:0 + 0: 0 +obsql_mysql_yy_switch_to_buffer:89631:579 + 1: 532 + 10: 559 + 10.1: 559 + 10.3: 559 + 13.1: 0 + 16: 0 + 17: 0 + 18: 0 + 21: 0 + 29: 0 + 30.2: 559 + 9: obsql_mysql_yyensure_buffer_stack:62672 + 5: 532 + 12: 0 + 15: 0 + 18: 0 + 21: 0 + 25: 532 + 31: 552 + 33: 552 + 35: 552 + 39: 552 + 40: 552 + 12: obsql_mysql_yyalloc:0 + 4: 0 + 6: 0 + 3: obsql_mysql_yyget_extra:0 + 3: 0 + 31: obsql_mysql_yyrealloc:9044 + 4: 532 + 6: 532 parse_realloc:551 + 3: obsql_mysql_yyget_extra:1596 + 3: 532 + 22: obsql_mysql_yy_load_buffer_state:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 +_ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:89626:2299 + 1: 2186 + 2: 2186 + 2.1: 0 + 2.2: 0 + 3: 2186 +_ZN9oceanbase4palf14PalfHandleImpl10submit_logERKNS0_17PalfAppendOptionsEPKcllRNS0_3LSNERl:89569:249 + 7: 234 + 8: 234 + 9: 234 _ZN9oceanbase6common13ObTimeUtility15current_time_nsEv:235 + 10: 257 + 11: 0 + 12.1: 0 + 13.1: 257 + 15: 0 + 16.1: 0 + 18: 259 + 19: 242 + 20: 0 + 21.1: 0 + 22.1: 242 + 22.2: 251 + 23: 0 + 24.1: 0 + 27.1: 251 _ZN9oceanbase4palf16LogSlidingWindow10submit_logEPKcllRNS0_3LSNERl:266 + 27.2: 248 + 28.1: 0 + 30.1: 248 _ZZN9oceanbase4palf14PalfHandleImpl10submit_logERKNS0_17PalfAppendOptionsEPKcllRNS0_3LSNERlENK5$_823clES6_.0e4bf25207570af14a78557c8489c4fc:250 + 32.1: 0 + 36: 262 _ZN9oceanbase6common8TCRWLock10RLockGuardD2Ev:280 + 36.1: 0 + 37: 260 + 18: _ZN9oceanbase6common8TCRWLock10RLockGuardC2ERS1_:3885 + 0: 259 _ZN9oceanbase6common8TCRWLock6rdlockEl:267 + 22.1: _ZNK9oceanbase4palf11LogStateMgr10can_appendElb:18241 + 4: 242 + 4.1: 242 + 4.2: 251 _ZNK9oceanbase4palf11LogStateMgr15get_proposal_idEv:261 + 5: 251 + 6.1: 251 + 3: _ZNK9oceanbase4palf11LogStateMgr17is_leader_active_Ev:6050 + 2: _ZNK9oceanbase4palf11LogStateMgr21check_role_and_state_ERKNS_6common6ObRoleERKNS0_14ObReplicaStateE:6050 + 3: 242 + 4: 242 + 6.1: _ZNK9oceanbase4palf10LogModeMgr10can_appendEv:5020 + 2: 251 + 2.1: _ZNK9oceanbase4palf10LogModeMgr19can_do_paxos_acceptEv:1757 + 2: 251 + 31: _ZN9oceanbase4palf24palf_reach_time_intervalElRl:5766 + 3: 270 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:272 + 5: 0 + 33: _ZN9oceanbase4palf3LSNaSERKS1_:0 + 2: 0 +_ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE11start_roundEv:89497:507 + 1: 485 + 2: 485 + 3: 485 + 4: 0 + 5.1: 0 + 7: 485 + 8: 485 + 8.1: 0 + 8.3: 485 _ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE17init_default_partEPNS4_16ObIntraPartitionElli:500 + 9.1: 0 + 13: 468 + 14: 468 + 15: 468 + 16: 468 + 17: 468 + 18: 468 + 19: 468 + 21: 468 + 14: _ZN9oceanbase6common3maxEll:3276 + 2: 468 +_ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScannerD2Ev:89492:968 + 0: 1009 + 0.1: 945 _ZN9oceanbase12blocksstable10ObDatumRowD1Ev:1029 + 0.4: 1009 _ZN9oceanbase12blocksstable10ObDatumRowD1Ev:1105 + 0.5: 976 _ZN9oceanbase12blocksstable23ObIMicroBlockRowScannerD2Ev:1011 + 0: _ZN9oceanbase11transaction9ObTransIDD2Ev:10395 + 0: 945 + 0.2: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:24466 + 0: 941 _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEED2Ev:979 + 0.3: _ZN9oceanbase7storage8ObNopPosD2Ev:938 + 2: 938 _ZN9oceanbase7storage8ObNopPos7destroyEv:968 + 2.1: 0 +_ZN9oceanbase7storage17ObLSTabletService15process_new_rowERNS0_14ObTabletHandleERNS0_15ObDMLRunningCtxERKNS_6common8ObIArrayIlEERKNS0_10ObStoreRowESD_b:89338:377 + 7: 365 + 8: 365 + 9: 365 + 10: 0 + 11.1: 0 + 12.1: 376 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:376 + 12.2: 0 + 13: 0 + 13.1: 0 + 14.1: 0 + 17: 389 _ZN9oceanbase7storage17ObLSTabletService22process_data_table_rowERNS0_14ObTabletHandleERNS0_15ObDMLRunningCtxERKNS_6common8ObIArrayIlEERKNS0_10ObStoreRowESD_b:401 + 24.1: 0 + 29: 326 + 9.1: _ZNK9oceanbase7storage10ObStoreRow8is_validEv:44530 + 3: 365 + 5.1: 365 + 8.1: 0 + 9: 365 + 11: 365 + 11.1: 0 + 11.2: 365 + 12: 0 + 12.1: 365 + 13: 0 + 7.1: _ZNK9oceanbase12blocksstable12ObDmlRowFlag8is_validEv:11315 + 2: 365 + 10.1: _ZNK9oceanbase6common8ObNewRow8is_validEv:12045 + 2: _ZNK9oceanbase6common8ObNewRow10is_invalidEv:12045 + 2: 365 + 2.1: 365 + 2.2: 365 + 2.3: 0 + 12.1: _ZNK9oceanbase12blocksstable21ObMultiVersionRowFlag18is_uncommitted_rowEv:1460 + 0: 365 + 12.3: _ZNK9oceanbase6common14ObServerConfig22enable_defensive_checkEv:3402 + 3: 378 + 3.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:0 + 2: 0 +_ZNK9oceanbase7storage15ObStorageSchema24check_column_array_validINS0_27ObStorageRowkeyColumnSchemaEEEbRKNS_6common8ObIArrayIT_EE:89285:1135 + 1: 1068 + 3.2: 1079 + 3.3: 1079 + 3.5: 1079 + 4: 1079 + 6.1: 0 + 9: 1125 + 3.2: _ZNK9oceanbase6common12ObIArrayWrapINS_7storage27ObStorageRowkeyColumnSchemaEE5countEv:6408 + 4.1: _ZNK9oceanbase7storage27ObStorageRowkeyColumnSchema8is_validEv:27867 + 2: 1079 + 3: 1079 + 3.2: _ZN9oceanbase6common20ob_is_valid_obj_typeENS0_9ObObjTypeE:3237 + 0: 1079 +_ZN9oceanbase6common10label_statEPNS_3lib6AChunkEPNS1_6ABlockEPNS1_7AObjectERNS0_4hash9ObHashMapINS0_8ObStringENS0_13LabelInfoItemENS8_24LatchReadWriteDefendModeENS8_9hash_funcISA_EENS8_8equal_toISA_EENS8_13SimpleAllocerINS8_15ObHashTableNodeINS8_11HashMapPairISA_SB_EEEELi82ENS8_19SpinMutexDefendModeENS8_29DefaultSimpleAllocerAllocatorEEENS8_13NormalPointerENS0_8ObMallocELl1EEEPNS0_9LabelItemElRl:89180:462 + 3: 462 + 4: 462 + 5: 462 + 7: 268 + 8: 246 + 9.1: 20 + 10: 21 + 12: 0 + 14: 258 + 15: 258 + 16: 301 + 16.3: 301 + 20: 250 + 22: 250 + 23: 250 + 24: 250 + 25: 250 + 26: 250 + 27: 9 + 28: 9 + 30: 253 + 31: 183 + 32: 183 + 35: 0 + 36: 0 + 37.1: 0 + 39: 0 + 40: 0 + 41: 0 + 42: 0 + 43: 0 + 44: 0 + 45: 0 + 47: 0 + 48: 1 + 52: 451 + 10: _ZNK9oceanbase3lib6AChunk11blk_nblocksEPKNS0_6ABlockE:7928 + 4: 21 + 4.3: 21 + 2: _ZNK9oceanbase3lib6AChunk10blk_offsetEPKNS0_6ABlockE:1080 + 2: 20 + 3: 20 + 3.2: _ZL12abort_unlessb:360 + 5: 20 + 6: 0 + 4: _ZNK9oceanbase3lib6AChunk18is_last_blk_offsetEiPi:6701 + 4: 21 + 4: _ZNK9oceanbase3lib6AChunk17min_blk_offset_geEi:6432 + 2: _ZNK9oceanbase3lib13ASimpleBitSetILi256EE10min_bit_geEi:6432 + 2: 20 + 7: 20 + 8: 100 + 9: 100 + 11.1: 60 + 12: 21 + 8: _ZN9oceanbase3lib13ASimpleBitSetILi256EE10min_bit_geEmi:1398 + 2: 100 + 3: 12 + 4: 100 + 12: _ZN9oceanbase3libL13get_page_sizeEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 3: 0 + 12.1: _ZN9oceanbase3lib9align_up2Emm:0 + 2: 0 + 17: _ZN9oceanbase6common8ObStringC2ElPKc:6923 + 1: 301 + 2: 301 + 3: 301 + 19: _ZN9oceanbase6common4hash9ObHashMapINS0_8ObStringENS0_13LabelInfoItemENS1_24LatchReadWriteDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_S4_EEEELi82ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE3getERS3_:11336 + 2: _ZNK9oceanbase6common4hash9ObHashMapINS0_8ObStringENS0_13LabelInfoItemENS1_24LatchReadWriteDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_S4_EEEELi82ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE3getERKS3_:11336 + 3: 301 + 4: 301 _ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_NS0_13LabelInfoItemEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS6_EELi82ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKS3_RPKS6_l:305 + 48: _ZN9oceanbase6common8ObStringC2ElPKc:0 + 1: 0 + 2: 0 + 3: 0 + 5: 0 + 6: 0 + 48.2: _ZN9oceanbase6common4hash9ObHashMapINS0_8ObStringENS0_13LabelInfoItemENS1_24LatchReadWriteDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_S4_EEEELi82ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE14set_refactoredERKS3_RKS4_iii:0 + 8: 0 + 5: _ZN9oceanbase6common4hash11HashMapPairINS0_8ObStringENS0_13LabelInfoItemEE4initERKS3_RKS4_:0 + 3: _ZN9oceanbase6common11copy_assignINS0_8ObStringEEEiRT_RKS3_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapINS0_8ObStringEEEiRT_RKS3_NS0_8BoolTypeILb0EEE:0 + 2: 0 + 5.1: _ZN9oceanbase6common11copy_assignINS0_13LabelInfoItemEEEiRT_RKS3_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapINS0_13LabelInfoItemEEEiRT_RKS3_NS0_8BoolTypeILb0EEE:0 + 2: 0 +_ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocEE3getERKS2_RPS3_:89056:273 + 1: 263 + 2: 263 + 4: 263 + 5: 0 + 6.1: 0 + 7.1: 263 + 8: 0 + 9.1: 0 + 12: 263 + 14: 263 + 17.1: 200 + 18.1: 217 + 19: 202 + 27: 0 + 32: 0 + 33: 217 + 7.1: _ZNK9oceanbase11transaction9ObTransID8is_validEv:1578 + 0: 263 + 12: _ZNK9oceanbase11transaction9ObTransID4hashEv:15254 + 2: _ZN9oceanbase6common10murmurhashEPKvim:15254 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:15254 + 13: 263 + 14: 263 + 15: 263 + 17: 263 + 18: 263 + 41: 263 + 42: 263 + 43: 263 + 14: _ZN9oceanbase6common8get_itidEv:7364 + 4: 263 + 5: 0 + 6: 0 + 8: 0 + 14.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocEE16BucketRLockGuardC2ERKNS_6common10SpinRWLockEm:17049 + 1: 263 + 3: 200 + 4.1: 0 + 3: _ZN9oceanbase6common10SpinRWLock6rdlockEl:4997 + 0: 263 _ZN9oceanbase6common7ObLatch6rdlockEjl:266 + 6: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocEE15get_thread_nodeEv:5000 + 2: 200 + 2.1: 0 + 2.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocEE4NodeC2Ev:0 + 0: 0 + 6.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocEE4Node13set_thread_idEl:3800 + 0: 200 + 18: _ZNK9oceanbase11transaction8ObTxDesc7containERKNS0_9ObTransIDE:2119 + 0: _ZNK9oceanbase11transaction9ObTransIDeqERKS1_:2119 + 1: 217 + 30: _ZN9oceanbase11transaction15ObTransHashLinkINS0_8ObTxDescEE7inc_refEi:1616 + 2: 202 + 3.1: 0 + 5: 202 + 32.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocEE16BucketRLockGuardD2Ev:15429 + 2: 202 + 3: 202 + 3.1: 217 + 4.1: 0 + 3: _ZN9oceanbase6common10SpinRWLock6unlockEv:606 + 0: 202 _ZN9oceanbase6common7ObLatch6unlockEPKj:217 + 6: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocEE15get_thread_nodeEv:5425 + 2: 217 + 2.1: 0 + 2.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocEE4NodeC2Ev:0 + 0: 0 + 6.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocEE4Node5resetEv:4991 + 0: 217 +_ZN9oceanbase7storage19ObMemtableMgrHandle16set_memtable_mgrEPNS0_14ObIMemtableMgrEPNS0_20ObITenantMetaObjPoolE:89044:1373 + 1: 1288 + 2: 1288 + 4: 1246 + 5: 4 + 6.1: 4 + 8: 1246 + 9: 1246 + 12: 1246 + 3: _ZN9oceanbase7storage19ObMemtableMgrHandle5resetEv:9244 + 0: 4 + 2: 1288 + 3: 4 + 8: 4 + 10: 4 + 11: 4 + 14: 4 + 10: _ZN9oceanbase7storage14ObIMemtableMgr7inc_refEv:7476 + 0.1: 1246 +_ZN9oceanbase8observer16ObAsyncCmdDriver15response_resultERNS0_16ObMySQLResultSetE:88948:289 + 1: 283 + 2: 283 _ZN9oceanbase6common20ObActiveSessionGuard8get_statEv:290 + 3: 276 + 4: 276 + 11.1: 279 + 11.2: 5 + 11.3: 5 + 12.1: 5 + 13.1: 279 _ZN9oceanbase3sql23ObEndTransCbPacketParam4fillERNS0_11ObResultSetERNS0_16ObSQLSessionInfoERKNS_6common12ObCurTraceId7TraceIdE:288 + 13.3: 275 + 14.1: 5 + 15.1: 275 _ZN9oceanbase3sql11ObResultSet4openEv:271 + 15.2: 235 + 18: 5 + 19: 5 + 20: 5 + 20.1: 5 + 21.1: 5 + 23.1: 5 + 24: 5 + 25.1: 5 + 27: 5 + 29.1: 5 + 32: 5 + 32.1: 5 + 32.4: 5 + 33: 5 + 34: 5 + 35: 5 + 35.1: 5 + 36.1: 5 + 44: 5 + 45: 5 + 45.2: 5 + 46.1: 5 + 47: 5 + 47.1: 5 + 48.1: 5 + 51: 247 + 52: 247 _ZN9oceanbase3sql11ObResultSet5closeEv:247 + 52.1: 257 + 53.1: 5 + 56: 247 _ZN9oceanbase6common20ObActiveSessionGuard8get_statEv:262 + 56.1: 228 + 57: 228 + 58.15: 228 + 5: _ZN9oceanbase3sql23ObEndTransCbPacketParamC2Ev:16836 + 2: 276 + 3: 276 + 5: 276 + 6: 276 + 7: 276 + 6: _ZN9oceanbase3sql11ObResultSet19set_end_trans_asyncEb:4710 + 2: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:3036 + 0: 276 + 2.1: _ZN9oceanbase3sql13ObExecContext19set_end_trans_asyncEb:1674 + 0: 279 + 8: _ZN9oceanbase6common12ObCurTraceId12get_trace_idEv:6966 + 5: 279 + 5.1: 5 + 5.1: _ZN9oceanbase6common12ObCurTraceId7TraceIdC2Ev:130 + 0: 5 + 13.2: _ZN9oceanbase8observer15ObSqlEndTransCb16set_packet_paramERKNS_3sql23ObEndTransCbPacketParamE:10990 + 2: 295 + 3: 295 + 4: 5 + 5.1: 5 + 7: 295 _ZN9oceanbase3sql23ObEndTransCbPacketParamaSERKS1_:298 + 9: 275 + 3: _ZNK9oceanbase3sql23ObEndTransCbPacketParam8is_validEv:2065 + 0: 295 + 23: _ZNK9oceanbase3sql11ObResultSet28is_async_end_trans_submittedEv:155 + 3: 5 + 2: _ZNK9oceanbase3sql11ObResultSet16get_exec_contextEv:60 + 1: 5 + 3: _ZNK9oceanbase3sql10TransState21is_end_trans_executedEv:30 + 1: 5 + 32.1: _ZNK9oceanbase8observer16ObQueryRetryCtrl10need_retryEv:50 + 3: 5 + 32.3: _ZNK9oceanbase3sql11ObResultSet28is_async_end_trans_submittedEv:155 + 3: 5 + 2: _ZNK9oceanbase3sql11ObResultSet16get_exec_contextEv:60 + 1: 5 + 3: _ZNK9oceanbase3sql10TransState21is_end_trans_executedEv:30 + 1: 5 + 34.1: _ZN9oceanbase3sql18ObPartitionHitInfo8get_boolEv:35 + 0: 5 + 42: _ZNK9oceanbase3sql11ObResultSet28is_async_end_trans_submittedEv:5724 + 3: 238 + 2: _ZNK9oceanbase3sql11ObResultSet16get_exec_contextEv:2590 + 1: 235 + 3: _ZNK9oceanbase3sql10TransState21is_end_trans_executedEv:1428 + 1: 238 + 43: _ZN9oceanbase8observer10ObOKPParamC2Ev:140 + 2: 5 + 7: 5 + 8: 5 + 12: 5 + 45.1: _ZN9oceanbase3sql18ObPartitionHitInfo8get_boolEv:30 + 0: 5 + 46: _ZNK9oceanbase8observer16ObMySQLResultSet15has_more_resultEv:35 + 2: 5 +_ZN9oceanbase7storage14ObTabletMapKeyD2Ev:88864:5977 + 1: 5554 + 3: 5554 + 3.3: _ZN9oceanbase5share6ObLSIDD2Ev:55540 + 0: _ZN9oceanbase5share6ObLSID5resetEv:55540 + 0: 5554 +_ZN9oceanbase7storage14ObTabletMapKeyD1Ev:88864:5977 + 1: 5554 + 3: 5554 + 3.3: _ZN9oceanbase5share6ObLSIDD2Ev:55540 + 0: _ZN9oceanbase5share6ObLSID5resetEv:55540 + 0: 5554 +_ZN9oceanbase3sql24ObTenantSqlMemoryManager28unregister_work_area_profileERNS0_20ObSqlWorkAreaProfileE:88615:786 + 1: 749 + 2: 749 + 3: 749 + 9.1: 0 + 9.2: 0 + 12: 0 + 12.2: 0 + 15.1: 0 + 16.1: 0 + 16.2: 0 + 17.1: 0 + 18.1: 0 + 18.2: 0 + 19.1: 0 + 21.1: 0 + 24: 957 + 25.7: 832 + 25.8: 0 + 3: _ZN9oceanbase3lib11ObLockGuardINS0_7ObMutexEEC2ERS2_:25964 + 1: 749 + 4: 905 + 5.1: 14 + 4: _ZN9oceanbase3lib7ObMutex4lockEv:12733 + 0: 749 _ZN9oceanbase6common12ObLatchMutex4lockEjl:777 + 4: _ZNK9oceanbase3sql20ObSqlWorkAreaProfile13is_registeredEv:10890 + 0: 905 + 1: 905 + 1.1: 910 + 5.1: _ZN9oceanbase3sql24ObTenantSqlMemoryManager14get_hash_valueEl:0 + 3: 0 + 2: _ZN9oceanbase6common10murmurhashEPKvim:0 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:0 + 13: 0 + 14: 0 + 15: 0 + 17: 0 + 18: 0 + 41: 0 + 42: 0 + 43: 0 + 12.1: _ZNK9oceanbase3sql20ObSqlWorkAreaProfile15get_auto_policyEv:0 + 0: 0 + 13: _ZNK9oceanbase3sql20ObSqlWorkAreaProfile14get_cache_sizeEv:0 + 0: 0 + 13.1: _ZN9oceanbase3sql24ObTenantSqlMemoryManager8decreaseEl:0 + 1: 0 + 1.1: 0 + 15: _ZN9oceanbase3sql20ObSqlWorkAreaProfile13need_profiledEv:0 + 4: 0 + 5: 0 + 3: _ZN9oceanbase3sql20ObSqlWorkAreaProfile10get_sql_idEv:0 + 3: 0 + 4: 0 + 25.7: _ZN9oceanbase3lib11ObLockGuardINS0_7ObMutexEED2Ev:16407 + 2: 957 + 3: 957 + 3.1: 832 + 4.1: 0 + 3: _ZN9oceanbase3lib7ObMutex6unlockEv:1013 + 0: 957 _ZN9oceanbase6common12ObLatchMutex6unlockEv:952 +_ZN9oceanbase11transaction14ObTransService14revert_tx_ctx_EPNS_7storage4ObLSEPNS0_14ObPartTransCtxE:88551:1649 + 1: 1556 + 3: 1556 + 6: 3 + 9.1: 1630 _ZZN9oceanbase11transaction14ObTransService14revert_tx_ctx_EPNS_7storage4ObLSEPNS0_14ObPartTransCtxEENK6$_1008clEPKc.93feb755617c21c32b229b78773c290c:1686 + 10: 1582 + 4: _ZNK9oceanbase7storage4ObLS13revert_tx_ctxIJRPNS_11transaction14ObPartTransCtxEEEEiDpOT_:21792 + 0: 1556 + 0.1: 1556 _ZNK9oceanbase7storage13ObLSTxService13revert_tx_ctxEPNS_11transaction10ObTransCtxE:1606 +_ZN9oceanbase8memtable10ObMemtable19dec_unsubmitted_cntEv:88225:1002 + 1: 948 + 2: 948 + 3: 948 + 4: 948 _ZNK9oceanbase8memtable10ObMemtable18is_frozen_memtableEv:1012 + 5: 1075 _ZNK9oceanbase8memtable10ObMemtable13get_write_refEv:1094 + 7: 943 + 9: 943 + 10.1: 0 + 14.1: 943 + 15: 0 + 15.1: 0 + 16.1: 0 + 18.1: 0 + 20: 0 + 23: 951 + 24.6: 951 + 3.1: _ZN9oceanbase5share6ObLSIDC2ERKS1_:7584 + 0: 948 +_ZNK9oceanbase11transaction13ObCtxRedoInfo9serializeEPclRl:88218:226 + 0: 219 + 0.1: 219 + 0.2: 219 + 0.4: 0 + 0.11: 0 + 0.12: 219 + 0.13: 235 _ZNK9oceanbase11transaction13ObCtxRedoInfo19serialize_dispatch_EPclRlSt17integral_constantIbLb0EE:229 + 0.15: 0 + 0.21: 0 + 0.22: 235 + 0.24: 235 + 0.25: 0 + 0.32: 0 + 0.33: 0 + 0.35: 0 + 0.2: _ZN9oceanbase6common13serialization6encodeEPclRll:7932 + 2: _ZN9oceanbase6common13serialization11encode_vi64EPclRll:7932 + 3: 235 + 4: 219 + 5: 219 + 11: 219 + 0.4: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 0.5: _ZN9oceanbase6common7ObLogKVIRA13_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 0.15: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 0.22: _ZN9oceanbase6common13serialization22encode_fixed_bytes_i64EPclRll:58045 + 5: 235 + 8: 940 + 9: 940 + 0.27: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.29: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.31: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.34: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase3sql12ObDMLService18process_delete_rowERKNS0_10ObDelCtDefERNS0_10ObDelRtDefERbRNS0_15ObTableModifyOpE:88023:281 + 4: 273 + 5: 273 + 6: 273 + 7: 273 + 8: 273 + 10: 273 + 11: 0 + 12.1: 0 + 13.1: 273 + 13.2: 273 _ZN9oceanbase3sql12ObDMLService25check_nested_sql_legalityERNS0_13ObExecContextEm:283 + 14.1: 0 + 16: 0 + 16.1: 234 + 17: 0 + 18: 0 + 18.1: 0 + 22.1: 0 + 23.1: 0 + 24: 0 + 27: 234 + 28: 234 + 29: 234 + 29.3: 234 _ZN9oceanbase3sql12ObDMLService29check_rowkey_whether_distinctERKNS_6common8ObIArrayIPNS0_6ObExprEEEllNS0_12DistinctTypeERNS0_9ObEvalCtxERPNS2_4hash9ObHashSetINS0_12SeRowkeyItemENSC_19NoPthreadDefendModeENSC_9hash_funcISE_EENSC_8equal_toISE_EENSC_13SimpleAllocerINSC_15ObHashTableNodeINSC_11HashMapPairISE_NSC_11HashNullObjEEEEELi89ENSC_19SpinMutexDefendModeENSC_29DefaultSimpleAllocerAllocatorEEENSC_13NormalPointerENS2_8ObMallocELl1EEERb:234 + 36.1: 0 + 38.1: 213 + 39: 0 + 42: 213 + 43: 275 _ZN9oceanbase3sql16ForeignKeyHandle9do_handleERNS0_15ObTableModifyOpERKNS0_14ObDMLBaseCtDefERNS0_14ObDMLBaseRtDefE:242 + 44.1: 0 + 45.1: 275 + 45.2: 275 _ZN9oceanbase3sql13TriggerHandle18init_param_old_rowERNS0_9ObEvalCtxERKNS0_14ObTrigDMLCtDefERNS0_14ObTrigDMLRtDefE:276 + 47.1: 0 + 48.1: 275 _ZN9oceanbase3sql13TriggerHandle20do_handle_before_rowERNS0_15ObTableModifyOpERNS0_17ObDASDMLBaseCtDefERKNS0_14ObTrigDMLCtDefERNS0_14ObTrigDMLRtDefE:290 + 50.1: 0 + 51.1: 267 + 51.2: 254 + 51.3: 267 _ZN9oceanbase3sql13TriggerHandle19do_handle_after_rowERNS0_15ObTableModifyOpERKNS0_14ObTrigDMLCtDefERNS0_14ObTrigDMLRtDefEm:270 + 53.1: 0 + 57: 0 + 57.1: 0 + 57.2: 0 + 58: 0 + 65: 254 + 10: _ZN9oceanbase3sql10ObOperator12get_exec_ctxEv:1092 + 0: 273 + 18: _ZN9oceanbase3sql10ObOperator12get_eval_ctxEv:0 + 0: 0 + 29: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE5countEv:1638 + 0: 234 + 29.1: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:936 + 2: 234 + 29.2: _ZN9oceanbase3sql10ObOperator12get_eval_ctxEv:936 + 0: 234 + 45.1: _ZN9oceanbase3sql10ObOperator12get_eval_ctxEv:1100 + 0: 275 +_ZN9oceanbase3sql18ObPushdownOperatorC2ERNS0_9ObEvalCtxERKNS0_18ObPushdownExprSpecE:87860:4435 + 2: 4393 + 3: 4393 + 4: 4393 + 5: 4393 + 6: 4393 +_ZN9oceanbase3sql18ObPushdownOperatorC1ERNS0_9ObEvalCtxERKNS0_18ObPushdownExprSpecE:87860:4435 + 2: 4393 + 3: 4393 + 4: 4393 + 5: 4393 + 6: 4393 +_ZN9oceanbase3lib18SetDoNothingLocker6unlockEv:87414:14876 + 0: 14569 +_ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE8insert__ERKS2_PS3_iPS8_:87318:291 + 1: 250 + 2: 250 + 4: 250 + 5: 0 + 6.1: 0 + 7.1: 250 + 8: 0 + 9.1: 0 + 11: 250 + 12: 250 + 12.1: 250 _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE16BucketWLockGuardC2ERKNS_6common10SpinRWLockEm:259 + 15.1: 261 + 16.1: 5 + 24: 268 + 25: 237 + 26: 5 + 28: 227 + 29: 227 + 30: 237 + 31.1: 227 + 33: 0 + 34: 0 + 36: 0 + 40: 226 + 11: _ZNK9oceanbase11transaction9ObTransID4hashEv:14500 + 2: _ZN9oceanbase6common10murmurhashEPKvim:14500 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:14500 + 13: 250 + 14: 250 + 15: 250 + 17: 250 + 18: 250 + 41: 250 + 42: 250 + 43: 250 + 12: _ZN9oceanbase6common8get_itidEv:7000 + 4: 250 + 5: 0 + 6: 0 + 8: 0 + 16: _ZN9oceanbase11transaction10ObTransCtx7containENS0_9ObTransIDE:95 + 0: _ZNK9oceanbase11transaction9ObTransIDeqERKS1_:95 + 1: 5 + 24: _ZN9oceanbase11transaction15ObTransHashLinkINS0_10ObTransCtxEE7inc_refEi:2762 + 2: 268 + 3.1: 0 + 5: 237 + 35: _ZN9oceanbase11transaction15ObTransHashLinkINS0_10ObTransCtxEE7inc_refEi:0 + 2: 0 + 3.1: 0 + 5: 0 + 39: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE16BucketWLockGuardD2Ev:16876 + 2: 234 + 2.1: 234 + 3: 234 + 3.1: 226 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase6common10SpinRWLock6unlockEv:702 + 0: 234 _ZN9oceanbase6common7ObLatch6unlockEPKj:244 + 6: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE15get_thread_nodeEv:4746 + 2: 226 + 2.1: 0 + 2.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE4NodeC2Ev:0 + 0: 0 + 6.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE4Node5resetEv:5198 + 0: 226 + 39.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE16BucketWLockGuardD2Ev:0 + 2: 0 + 2.1: 0 + 3: 0 + 3.1: 0 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase6common10SpinRWLock6unlockEv:0 + 0: 0 + 6: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE15get_thread_nodeEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE4NodeC2Ev:0 + 0: 0 + 6.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE4Node5resetEv:0 + 0: 0 +_ZN9oceanbase3sql5ObSql16get_outline_dataERNS0_8ObSqlCtxERNS0_14ObPlanCacheCtxERKNS_6common8ObStringERNS0_14ObOutlineStateER11ParseResult:87236:542 + 5: 516 + 6.1: 508 + 6.2: 0 + 6.4: 0 + 7: 532 + 8: 532 + 10: 553 + 11: 553 + 12: 0 + 13.1: 0 + 14.1: 553 + 14.2: 522 + 15: 553 + 17.1: 522 + 19.1: 0 + 22: 0 + 23: 0 + 24.1: 0 + 26: 0 + 28.1: 0 + 29.1: 0 + 32: 533 + 32.1: 0 + 33: 0 + 33.2: 0 + 34.1: 0 + 36.2: 0 + 36.3: 0 + 38.1: 0 + 39.1: 0 + 39.2: 0 + 39.3: 0 + 40.1: 0 + 41.1: 0 + 41.2: 0 + 42: 0 + 43.1: 0 + 45.1: 0 + 47: 0 + 50: 0 + 50.1: 0 + 50.2: 0 + 50.3: 0 + 51.1: 525 + 51.2: 0 + 51.4: 0 + 52: 489 + 6.1: _ZN9oceanbase3lib20is_trace_log_enabledEv:4072 + 2: 516 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:526 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:3556 + 2: 508 + 6.2: _ZN9oceanbase6common18get_trace_recorderEv:0 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:0 + 7: 0 + 8: 0 + 8.1: 0 + 6.4: _ZN9oceanbase3lib20is_trace_log_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:0 + 2: 0 + 6.5: _ZN9oceanbase6common18get_trace_recorderEv:0 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:0 + 7: 0 + 8: 0 + 8.1: 0 + 6.9: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl189ELl1600EE9add_eventEv:0 + 2: 0 + 3.1: 0 + 6: 0 + 10: 0 + 11: 0 + 12: 0 + 6.10: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:0 + 0: 0 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 9: _ZN9oceanbase6common8ObStringC2Ev:3871 + 1: 553 + 15.1: _ZNK9oceanbase3sql15ObMultiStmtItem21is_batched_multi_stmtEv:5375 + 3: 553 + 4: 0 + 6: 522 + 17.1: _ZNK9oceanbase3sql14ObPlanCacheCtx20is_begin_commit_stmtEv:4176 + 0: 522 + 21: _ZNK9oceanbase3sql15ObCacheObjGuard13get_cache_objEv:0 + 2: 0 + 32.1: _ZNK9oceanbase6common8ObString5emptyEv:4264 + 2: 533 + 2.1: 0 + 33: _ZNK9oceanbase3sql18ObBasicSessionInfo12get_sql_modeEv:0 + 0: 0 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache12get_sql_modeEv:0 + 0: 0 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache12get_sql_modeEb:0 + 0: 0 + 33.1: _ZNK9oceanbase3sql18ObBasicSessionInfo30get_local_collation_connectionEv:0 + 2: 0 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_collation_connectionEv:0 + 0: 0 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_collation_connectionEb:0 + 0: 0 + 34: _ZN9oceanbase3lib7ObLabelC2IA10_cEERKT_:0 + 2: _ZN9oceanbase3lib7ObLabelaSILm10EEERS1_RAT__Kc:0 + 4: 0 + 35: _ZN9oceanbase6common8ObStringC2Ev:0 + 1: 0 + 39.2: _ZN9oceanbase6common15ob_write_stringINS0_12ObIAllocatorEEEiRT_RKNS0_8ObStringERS5_b:0 + 2: 0 + 3: 0 + 5: 0 + 7.1: 0 + 9: 0 + 10.1: 0 + 12: 0 + 18: 0 + 6: _ZN9oceanbase6common8ObString6assignEPci:0 + 3: 0 + 8: _ZN9oceanbase6common8ObString6assignEPci:0 + 3: 0 + 16: _ZN9oceanbase6common8ObString10assign_ptrEPKci:0 + 2: 0 + 3: 0 + 46: _ZN9oceanbase3sql14ObOutlineState5resetEv:0 + 3: 0 + 2: _ZN9oceanbase5share6schema18ObSchemaObjVersion5resetEv:0 + 2: 0 + 5: 0 + 6: 0 + 51.1: _ZN9oceanbase3lib20is_trace_log_enabledEv:4197 + 2: 522 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:540 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:3675 + 2: 525 + 51.2: _ZN9oceanbase6common18get_trace_recorderEv:0 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:0 + 7: 0 + 8: 0 + 8.1: 0 + 51.4: _ZN9oceanbase3lib20is_trace_log_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:0 + 2: 0 + 51.5: _ZN9oceanbase6common18get_trace_recorderEv:0 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:0 + 7: 0 + 8: 0 + 8.1: 0 + 51.11: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl189ELl1600EE9add_eventEv:0 + 2: 0 + 3.1: 0 + 6: 0 + 10: 0 + 11: 0 + 12: 0 + 51.12: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:0 + 0: 0 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 +_ZN9oceanbase12blocksstable19ObDatumRowkeyHelperD2Ev:87218:538 + 0: 510 + 0: _ZN9oceanbase7storage13ObObjBufArrayD2Ev:28560 + 2.1: 0 + 2: _ZN9oceanbase7storage13ObObjBufArray5resetEv:28560 + 2: 510 + 2.1: 0 + 3: 0 + 5: 510 + 6: 510 + 7: 510 + 8: 510 + 0.1: _ZN9oceanbase12blocksstable20ObStorageDatumBufferD2Ev:510 + 0: 510 _ZN9oceanbase12blocksstable20ObStorageDatumBuffer5resetEv:527 + 0.2: 0 + 0.2: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:38423 + 0: 499 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEED2Ev:31437 + 0: 499 + 0.3: 0 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:23952 + 4.1: 499 + 6: 0 + 7: 0 + 13: 499 + 14: 499 + 15: 499 + 18: 499 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:0 + 0: 0 + 5.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:0 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase7storage15ObRelativeTableD2Ev:87182:964 + 1: 952 + 3.2: 0 + 3.4: 0 + 2: _ZN9oceanbase7storage15ObRelativeTable7destroyEv:33614 + 2: 952 + 3: 952 + 6: 1098 + 5: _ZN9oceanbase7storage21ObTabletTableIterator5resetEv:9744 + 2: 952 _ZN9oceanbase7storage14ObTabletHandle5resetEv:1005 + 3: 1099 _ZN9oceanbase7storage20ObTableStoreIterator5resetEv:1105 + 3: _ZN9oceanbase6common10ObTabletIDD2Ev:12078 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:12078 + 0: 1098 + 3.1: _ZN9oceanbase6common10ObTabletIDD2Ev:0 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:0 + 0: 0 + 3.3: _ZN9oceanbase7storage21ObTabletTableIteratorD2Ev:29114 + 0.1: 1078 _ZN9oceanbase7storage20ObTableStoreIteratorD1Ev:1103 + 0.2: 0 + 0.3: 0 + 0.4: 1115 _ZN9oceanbase7storage14ObTabletHandleD1Ev:1137 + 0.5: 0 + 0: _ZN9oceanbase7storage21ObTabletTableIterator5resetEv:9192 + 2: 1098 _ZN9oceanbase7storage14ObTabletHandle5resetEv:1149 + 3: 1200 _ZN9oceanbase7storage20ObTableStoreIterator5resetEv:1217 +_ZN9oceanbase7storage15ObRelativeTableD1Ev:87182:964 + 1: 952 + 3.2: 0 + 3.4: 0 + 2: _ZN9oceanbase7storage15ObRelativeTable7destroyEv:33614 + 2: 952 + 3: 952 + 6: 1098 + 5: _ZN9oceanbase7storage21ObTabletTableIterator5resetEv:9744 + 2: 952 _ZN9oceanbase7storage14ObTabletHandle5resetEv:1005 + 3: 1099 _ZN9oceanbase7storage20ObTableStoreIterator5resetEv:1105 + 3: _ZN9oceanbase6common10ObTabletIDD2Ev:12078 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:12078 + 0: 1098 + 3.1: _ZN9oceanbase6common10ObTabletIDD2Ev:0 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:0 + 0: 0 + 3.3: _ZN9oceanbase7storage21ObTabletTableIteratorD2Ev:29114 + 0.1: 1078 _ZN9oceanbase7storage20ObTableStoreIteratorD1Ev:1103 + 0.2: 0 + 0.3: 0 + 0.4: 1115 _ZN9oceanbase7storage14ObTabletHandleD1Ev:1137 + 0.5: 0 + 0: _ZN9oceanbase7storage21ObTabletTableIterator5resetEv:9192 + 2: 1098 _ZN9oceanbase7storage14ObTabletHandle5resetEv:1149 + 3: 1200 _ZN9oceanbase7storage20ObTableStoreIterator5resetEv:1217 +_ZN9oceanbase11transaction14ObTransService8start_txERNS0_8ObTxDescERKNS0_9ObTxParamE:87148:293 + 1: 264 + 2: 264 + 3: 264 + 3.1: 264 _ZN9oceanbase11transaction16ObTransStatistic21add_trans_start_countEml:264 + 4: 269 + 6: 282 _ZN9oceanbase11transaction11ObTxDescMgr3addERNS0_8ObTxDescE:284 + 6.1: 295 + 7.1: 1 + 9: 295 _ZN9oceanbase6common16ObClusterVersion12get_instanceEv:303 + 9.2: 273 + 10: 273 + 11: 273 + 12: 273 + 13.1: 273 + 14: 273 + 15: 273 + 16: 273 + 17: 273 + 17.3: 273 + 19: 273 + 21.1: 273 + 22: 273 + 28.4: 280 + 28.5: 1 + 28.6: 1 + 28.12: 1 + 28.14: 1 + 28.15: 1 + 28.16: 1 + 28.17: 1 + 28.19: 1 + 28.22: 1 + 28.23: 1 + 33: 288 + 34.8: 288 _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEED2Ev:296 + 3: _ZN9oceanbase11transaction16ObTransStatistic12get_instanceEv:4580 + 2: 264 + 2.1: 1 + 2.2: 1 + 2.3: 1 + 2.4: 1 + 2.6: 1 + 4: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEEC2ERS3_:6892 + 1: 269 + 4: 282 + 5.1: 1 + 4: _ZN9oceanbase6common10ObSpinLock4lockEv:2694 + 2: 269 _ZN9oceanbase6common12ObLatchMutex4lockEjl:274 + 5: _ZN9oceanbase11transaction8ObTxDesc9inc_op_snEv:1974 + 0: 282 + 9.1: _ZN9oceanbase6common16ObClusterVersion19get_cluster_versionEv:1092 + 0: 273 + 13: _ZN9oceanbase6common16ObClockGenerator8getClockEv:5759 + 4: 273 + 5.1: 1 + 8: 273 + 6: _ZN9oceanbase6common16ObClockGenerator6get_usEv:10 + 2: 1 + 21: _ZN9oceanbase6common10ObSequence14get_max_seq_noEv:2730 + 2: 273 + 28.3: _ZN9oceanbase3lib20is_trace_log_enabledEv:2237 + 2: 273 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:278 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:1960 + 2: 280 + 28.7: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:27 + 0: 1 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:5 + 2: 1 + 28.9: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:16 + 0: 1 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:5 + 2: 1 + 28.10: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EE10check_lockEv:37 + 2: 1 + 3: _ZN9oceanbase3lib7ObMutex4lockEv:28 + 0: 1 + 28.11: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EE14get_buffer_posEv:7 + 0: 1 + 28.12: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EE10get_bufferEv:7 + 0: 1 + 28.14: _ZNK9oceanbase11transaction15ObTransHashLinkINS0_8ObTxDescEE7get_refEv:2 + 0: 1 + 28.15: _Z9ob_gettidv:138 + 3: 1 + 4: 1 + 2: _Z13get_tid_cachev:71 + 7: 1 + 7.1: 1 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:23 + 0: 1 + 28.24: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EE12check_unlockEv:24 + 2: 1 + 3: _ZN9oceanbase3lib7ObMutex6unlockEv:15 + 0: 1 + 34.10: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEED2Ev:63 + 2: 1 + 3: 1 + 3.1: 1 + 4.1: 1 + 3: _ZN9oceanbase6common10ObSpinLock6unlockEv:5 + 2: 1 +_ZN9oceanbase6common16ObFixedArrayImplINS_7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandleENS0_12ObIAllocatorEE7reserveEl:87135:987 + 1: 959 + 2: 959 + 3: 959 + 4: 6 + 5.1: 6 + 5.5: 6 + 5.9: 6 + 6.1: 959 + 7: 1023 _ZN9oceanbase6common16ObFixedArrayImplINS_7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandleENS0_12ObIAllocatorEE4initEl:976 + 8.1: 6 + 8.5: 6 + 8.9: 6 + 11: 0 + 11.1: 1023 + 12: 6 + 13.1: 6 + 13.5: 6 + 13.11: 6 + 17: 1023 + 5.1: _ZN9oceanbase6common8ObLogger10get_loggerEv:552 + 2: 6 + 2.1: 6 + 2.2: 6 + 2.3: 6 + 2.6: 6 + 5.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:204 + 0: 6 + 5.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:252 + 0: 6 + 8.1: _ZN9oceanbase6common8ObLogger10get_loggerEv:552 + 2: 6 + 2.1: 6 + 2.2: 6 + 2.3: 6 + 2.6: 6 + 8.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:204 + 0: 6 + 8.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:252 + 0: 6 + 13.1: _ZN9oceanbase6common8ObLogger10get_loggerEv:552 + 2: 6 + 2.1: 6 + 2.2: 6 + 2.3: 6 + 2.6: 6 + 13.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:204 + 0: 6 + 13.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:204 + 0: 6 + 13.10: _ZN9oceanbase6common7ObLogKVIRKjLb0EEC2EPKcS3_:180 + 0: 6 +_ZN9oceanbase3sql20ObAggregateProcessor18generate_group_rowERPNS1_8GroupRowEl:86419:237 + 2: 223 + 3: 223 + 4: 223 + 5: 223 + 6: 223 + 7: 259 + 9: 0 + 10.1: 0 + 14: 259 + 18: 0 + 19: 266 + 20: 266 + 20.1: 266 + 20.3: 266 + 21: 266 + 22: 266 + 24: 266 + 25: 266 + 26: 266 + 29.1: 266 + 30.1: 0 + 30.2: 0 + 30.3: 0 + 32: 0 + 33: 0 + 53: 0 + 54: 0 + 55.1: 0 + 57: 0 + 59: 0 + 60: 0 + 60.2: 0 + 65.1: 0 + 66.1: 0 + 67: 0 + 68: 0 + 69: 0 + 70.1: 0 + 71.1: 0 + 72.1: 0 + 74: 0 + 75: 0 + 75.3: 0 + 76: 0 + 77: 0 + 78: 0 + 79.1: 0 + 82: 0 + 83: 0 + 84.1: 0 + 96: 0 + 97: 0 + 98.1: 0 + 100: 0 + 107.1: 0 + 107.2: 0 + 107.3: 0 + 109: 0 + 110.1: 0 + 113: 0 + 114.1: 0 + 118: 0 + 119.2: 0 + 119.4: 0 + 123.1: 0 + 123.2: 0 + 123.4: 0 + 124: 0 + 125: 0 + 127.2: 0 + 127.4: 0 + 135: 0 + 135.1: 0 + 136: 0 + 138: 0 + 139: 0 + 140.1: 0 + 147: 0 + 156: 0 + 157: 0 + 157.3: 0 + 163.1: 0 + 169: 266 + 5: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql10ObAggrInfoEE5countEv:892 + 0: 223 + 7: _ZN9oceanbase6common16ObArenaAllocator5allocEl:2899 + 0: 223 _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13alloc_alignedEll:234 + 19: _ZN9oceanbase3sql20ObAggregateProcessor8GroupRowC2Ev:5586 + 1: 266 + 20: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql10ObAggrInfoEE5countEv:1064 + 0: 266 + 20.2: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCellC2Ev:5054 + 2: 266 + 6: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:1862 + 0: 266 + 21: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql10ObAggrInfoEE5countEv:798 + 0: 266 + 31: _ZN9oceanbase6common12ObIArrayWrapINS_3sql10ObAggrInfoEE2atEl:0 + 6: 0 + 33: _ZNK9oceanbase3sql10ObAggrInfo13get_expr_typeEv:0 + 1: 0 + 1.1: 0 + 1.4: 0 + 58: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell9set_extraEPNS1_11ExtraResultE:0 + 0: 0 + 60: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:0 + 2: 0 + 60.1: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:0 + 0: 0 + 68: _ZNK9oceanbase6common9ObObjMeta14is_string_typeEv:0 + 0: 0 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:0 + 0: 0 + 0.3: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:0 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:0 + 2: 0 + 71.1: _ZNK9oceanbase3sql6ObExpr4evalERNS0_9ObEvalCtxERPNS_6common7ObDatumE:0 + 4: 0 + 6: 0 + 7: 0 + 9: 0 + 10: 0 + 10.1: 0 + 11: 0 + 13: 0 + 15.1: 0 + 15.2: 0 + 17: 0 + 18: 0 + 20: 0 + 21: 0 + 22: 0 + 24: 0 + 9: _ZNK9oceanbase3sql6ObExpr15is_batch_resultEv:0 + 0: 0 + 11: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 24: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:0 + 0: 0 + 82: _ZN9oceanbase6common7ObDatumC2Ev:0 + 0: _ZN9oceanbase6common10ObDatumPtrC2Ev:0 + 0: 0 + 0.1: _ZN9oceanbase6common11ObDatumDescC2Ev:0 + 0: 0 + 83: _ZN9oceanbase6common7ObDatum9deep_copyERKS1_PclRl:0 + 3: 0 + 4: 0 + 5: 0 + 8: 0 + 9: 0 + 10: 0 + 101: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell9set_extraEPNS1_11ExtraResultE:0 + 0: 0 + 110.2: _ZN9oceanbase3sql20ObAggregateProcessor11DllUdfExtraC2ERNS_6common12ObIAllocatorE:0 + 2: 0 + 0: _ZN9oceanbase3sql13ObUdfFunction8ObUdfCtxC2Ev:0 + 0: 0 + 1: _ZN9oceanbase3sql20ObAggregateProcessor11ExtraResultC2ERNS_6common12ObIAllocatorE:0 + 1: 0 + 116: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell9set_extraEPNS1_11ExtraResultE:0 + 0: 0 + 142: _ZN9oceanbase3sql20ObAggregateProcessor11ExtraResultC2ERNS_6common12ObIAllocatorE:0 + 1: 0 + 2: 0 + 143: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell9set_extraEPNS1_11ExtraResultE:0 + 0: 0 + 157: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell9get_extraEv:0 + 0: 0 + 157.1: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:0 + 2: 0 + 157.2: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:0 + 0: 0 +_ZN9oceanbase6common16ObFixedArrayImplINS_7storage19ObSSTableReadHandleENS0_12ObIAllocatorEE7reserveEl:85713:1052 + 1: 1024 + 2: 1024 + 3: 1024 + 4: 0 + 5.1: 0 + 5.5: 0 + 5.9: 0 + 6.1: 1024 + 7: 1055 _ZN9oceanbase6common16ObFixedArrayImplINS_7storage19ObSSTableReadHandleENS0_12ObIAllocatorEE4initEl:1086 + 8.1: 0 + 8.5: 0 + 8.9: 0 + 11: 0 + 11.1: 1038 + 12: 0 + 13.1: 0 + 13.5: 0 + 13.11: 0 + 17: 1038 + 5.1: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 5.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 5.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 8.1: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 8.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 8.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 13.1: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 13.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 13.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 13.10: _ZN9oceanbase6common7ObLogKVIRKjLb0EEC2EPKcS3_:0 + 0: 0 +_ZNK9oceanbase5share6schema21ObSimpleTableSchemaV213get_tablet_idEv:85614:4818 + 0: 4506 + 0: _ZN9oceanbase6common10ObTabletIDC2ERKS1_:45060 + 0: 4506 +_ZN9oceanbase3sql15ObTableDeleteOp11inner_closeEv:85229:268 + 1: 251 + 2: 251 + 3: 240 + 4.1: 0 + 6: 240 _ZN9oceanbase3sql15ObTableModifyOp11inner_closeEv:251 + 7: 250 + 7.3: 250 + 3: _ZN9oceanbase3sql15ObTableDeleteOp20close_table_for_eachEv:68600 + 2: 251 + 3.1: 251 + 3.2: 509 + 3.3: 509 + 4: 251 + 5: 251 + 7: 251 + 11.1: 0 + 16.1: 243 + 16.3: 240 + 19: 240 + 3.2: _ZNK9oceanbase6common12ObIArrayWrapINS0_11ObArrayWrapINS_3sql10ObDelRtDefEEEE5countEv:3563 + 0: 509 + 4: _ZN9oceanbase6common12ObIArrayWrapINS0_11ObArrayWrapINS_3sql10ObDelRtDefEEEE2atEl:1757 + 6: 251 + 4.1: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql10ObDelRtDefEE5emptyEv:1506 + 0: 251 + 5: _ZN9oceanbase3sql11get_my_specINS0_15ObTableDeleteOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:1004 + 5: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:1004 + 2: 251 + 5.1: _ZNK9oceanbase6common12ObIArrayWrapINS0_11ObArrayWrapIPNS_3sql10ObDelCtDefEEEE2atEl:1757 + 6: 251 + 5.2: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql10ObDelCtDefEE2atEl:1004 + 6: 251 + 6.1: _ZN9oceanbase6common12ObIArrayWrapINS_3sql10ObDelRtDefEE2atEl:1004 + 6: 251 + 7: _ZN9oceanbase3sql12ObDMLService26process_after_stmt_triggerERKNS0_14ObDMLBaseCtDefERNS0_14ObDMLBaseRtDefERNS0_10ObDMLRtCtxERKNS_6common14ObDmlEventTypeE:12550 + 5: 251 + 7: 251 + 7.1: 251 + 8: 0 + 8.1: 0 + 9: 0 + 10: 0 + 11.1: 0 + 14.1: 0 + 18.1: 0 + 21: 251 + 6: _ZN9oceanbase3sql10ObDMLRtCtx12get_exec_ctxEv:1757 + 0: _ZN9oceanbase3sql8ObDASRef12get_exec_ctxEv:1757 + 0: 251 + 6.1: _ZN9oceanbase3sql13ObExecContext13set_dml_eventENS_6common14ObDmlEventTypeE:2510 + 0: 251 + 7.1: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql12ObTriggerArgEE5emptyEv:2008 + 0: 251 + 8: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:0 + 2: 0 + 8.2: _ZNK9oceanbase3sql17ObTableModifySpec12use_dist_dasEv:0 + 0: 0 + 9.1: _ZN9oceanbase3sql10ObDMLRtCtx12get_exec_ctxEv:0 + 0: _ZN9oceanbase3sql8ObDASRef12get_exec_ctxEv:0 + 0: 0 + 9.2: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:0 + 2: 0 + 9.3: _ZNK9oceanbase3sql16ObSQLSessionInfo17is_remote_sessionEv:0 + 0: 0 + 16.1: _ZNK9oceanbase6common12ObIArrayWrapINS0_11ObArrayWrapINS_3sql10ObDelRtDefEEEE5countEv:1680 + 0: 240 + 17: _ZN9oceanbase6common12ObIArrayWrapINS0_11ObArrayWrapINS_3sql10ObDelRtDefEEEE2atEl:1701 + 6: 243 + 17.1: _ZN9oceanbase6common11ObArrayWrapINS_3sql10ObDelRtDefEE13release_arrayEv:12908 + 2: 243 + 3.1: 253 + 3.3: 0 + 4: 243 _ZN9oceanbase3sql10ObDelRtDefD2Ev:251 + 7: 240 +_ZNK9oceanbase8memtable10ObMemtable18is_active_memtableEv:84893:1296 + 1: 1194 + 2: 1211 + 2: _ZNK9oceanbase8memtable10ObMemtable18is_frozen_memtableEv:42984 + 8: 1194 + 8.1: 1194 + 8.2: 1194 + 10: 1194 + 10.1: 0 + 11: 0 + 8.1: _ZN9oceanbase7storage9ObFreezer16get_freeze_clockEv:10746 + 0: 1194 +_ZN9oceanbase8memtable18ObTransCallbackMgr5resetEv:84810:532 + 1: 497 + 2: 497 + 4: 497 + 5: 497 + 5.1: 0 + 6.1: 0 + 6.3: 0 + 7: 0 + 8: 0 + 9.1: 0 + 13: 497 + 14: 0 + 15: 0 + 17: 515 + 18: 515 + 19: 515 + 28: 515 + 4: _ZN9oceanbase8memtable16ObTxCallbackList5resetEv:21868 + 6: 497 + 8: 497 + 2: _ZN9oceanbase8memtable16ObITransCallback8set_prevEPS1_:3479 + 0: 497 + 3: _ZN9oceanbase8memtable16ObITransCallback8set_nextEPS1_:1988 + 0: 497 + 7: _ZNK9oceanbase8memtable16ObTxCallbackList5emptyEv:0 + 0: 0 + 0: _ZNK9oceanbase8memtable16ObITransCallback8get_nextEv:0 + 0: 0 + 14: _ZN9oceanbase8memtable24ObMemtableCtxCbAllocator4freeEPv:0 + 5.1: 0 + 6: 0 +_ZNK9oceanbase3sql16ObSQLSessionInfo24has_user_super_privilegeEv:84779:5165 + 1: 4987 + 3: 4987 + 6: 4987 +_ZN9oceanbase8memtable17ObMvccRowIteratorC2Ev:84672:1041 + 1: 1008 + 2: 1008 + 5: 1008 + 7: 1008 + 8: 1008 + 4: _ZN9oceanbase8memtable19ObMvccValueIteratorC2Ev:49392 + 1: 1008 + 2: 1008 + 5: 1008 + 6: 1008 + 7: 1008 +_ZN9oceanbase8memtable17ObMvccRowIteratorC1Ev:84672:1041 + 1: 1008 + 2: 1008 + 5: 1008 + 7: 1008 + 8: 1008 + 4: _ZN9oceanbase8memtable19ObMvccValueIteratorC2Ev:49392 + 1: 1008 + 2: 1008 + 5: 1008 + 6: 1008 + 7: 1008 +_ZNK9oceanbase8memtable13ObMemtableCtx9get_tx_idEv:84479:3807 + 1: 3673 + 2: 3673 +_ZN9oceanbase11transaction11ObCtxTxData18set_commit_versionEl:84464:612 + 1: 582 + 2: 582 + 3: 582 + 5.1: 571 + 6.1: 0 + 8: 571 + 11: 0 + 12.2: 546 + 12.3: 0 + 3: _ZN9oceanbase6common14SpinRLockGuardC2ERKNS0_10SpinRWLockE:16757 + 1: 582 + 3: 571 + 4.1: 0 + 3: _ZN9oceanbase6common10SpinRWLock6rdlockEl:8148 + 0: 582 _ZN9oceanbase6common7ObLatch6rdlockEjl:595 + 5: _ZN9oceanbase11transaction11ObCtxTxData23check_tx_data_writable_Ev:19985 + 2: 571 + 4: 571 + 5: 0 + 6.1: 0 + 7.1: 571 + 8: 0 + 9.1: 0 + 10.1: 571 + 11: 0 + 12.1: 0 + 14: 571 + 12.2: _ZN9oceanbase6common14SpinRLockGuardD2Ev:13429 + 2: 571 + 3: 571 + 3.1: 546 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase6common10SpinRWLock6unlockEv:1713 + 0: 571 _ZN9oceanbase6common7ObLatch6unlockEPKj:573 +_ZN9oceanbase11transaction10ObTransCtx24unregister_timeout_task_Ev:84309:813 + 0: 1 + 1: 756 + 2: 756 + 4: 756 + 5.1: 1 + 6: 1 + 7.1: 756 _ZN9oceanbase11transaction12ObTransTimer23unregister_timeout_taskERNS0_14ObITimeoutTaskE:767 + 10: 256 + 14: 473 + 15.1: 1 + 16: 1 + 21.1: 719 + 21.3: 1 + 21.4: 1 + 21.6: 1 + 21.7: 1 + 21.8: 0 + 21.9: 1 + 21.21: 1 + 24: 719 + 18: _ZN9oceanbase11transaction12ObLSTxCtxMgr26revert_tx_ctx_without_lockEPNS0_10ObTransCtxE:13752 + 5: 473 + 6.1: 0 + 12: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE6revertEPS3_:6657 + 3: 473 + 3: _ZN9oceanbase11transaction15ObTransHashLinkINS0_10ObTransCtxEE7dec_refEi:4747 + 2: 473 + 3: 473 + 4.1: 1 + 4: _ZN9oceanbase11transaction13TransCtxAlloc10free_valueEPNS0_10ObTransCtxE:10 + 3: 1 + 21.3: _ZN9oceanbase3lib20is_trace_log_enabledEv:12 + 2: 1 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:7 + 2: 1 + 21.9: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EE12check_unlockEv:30 + 2: 1 + 3: _ZN9oceanbase3lib7ObMutex6unlockEv:17 + 0: 1 + 21.16: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EE10check_lockEv:40 + 2: 1 + 3: _ZN9oceanbase3lib7ObMutex4lockEv:31 + 0: 1 + 21.18: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EE10get_bufferEv:12 + 0: 1 + 21.19: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EE14get_buffer_posEv:3 + 0: 1 + 21.20: _ZNK9oceanbase11transaction15ObTransHashLinkINS0_10ObTransCtxEE7get_refEv:7 + 0: 1 +_ZN9oceanbase6common8TCRWLock10RLockGuardC2ERS1_:83951:461 + 0: 465 + 0: _ZN9oceanbase6common8TCRWLock6rdlockEl:67270 + 3.1: 0 + 4: 0 + 5: 0 + 3.2: _ZN9oceanbase6common8TCRWLock10try_rdlockEv:67270 + 3: 422 + 5: 424 + 4: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:1688 + 0: 422 + 4.1: _ZN9oceanbase6common5TCRef7inc_refEPi:51216 + 2: 422 + 4.1: 422 + 4.2: 23 + 6: 442 + 6.1: 419 + 10: 424 + 2: _ZN9oceanbase6common8get_itidEv:11816 + 4: 422 + 5: 0 + 6: 0 + 8: 0 + 11: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 8: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:0 + 0: 0 + 8.1: _ZN9oceanbase6common5TCRef7dec_refEPi:0 + 2: 0 + 4.1: 0 + 4.2: 0 + 6: 0 + 6.1: 0 + 10: 0 + 2: _ZN9oceanbase6common8get_itidEv:0 + 4: 0 + 5: 0 + 6: 0 + 8: 0 + 11: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 9: _ZN9oceanbase6common9LWaitCond6signalEv:0 + 2: 0 + 2.1: 0 + 3: 0 +_ZN9oceanbase11transaction9tablelock12ObOBJLockMap32get_or_create_obj_lock_with_ref_ERKNS1_8ObLockIDERPNS1_9ObOBJLockE:83765:759 + 3: 739 + 4: 739 + 6: 739 + 7: 739 + 8: 0 + 9.1: 0 + 12: 739 _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9tablelock8ObLockIDENS3_9ObOBJLockENS3_14ObOBJLockAllocENS0_9RefHandleELl8EE3getERKS4_RPS5_:784 + 14: 0 + 15: 0 + 16.1: 0 + 17.1: 1 + 19: 0 + 20: 0 + 21: 0 + 22.1: 0 + 30.1: 0 + 34.1: 0 + 36: 717 + 5: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:9607 + 2: 739 + 2.1: 0 + 2.2: 0 + 5.1: _ZNK9oceanbase5share12ObTenantBase2idEv:11085 + 0: 739 +_ZN9oceanbase3sql5ObSql15generate_sql_idERNS0_14ObPlanCacheCtxEbR11ParseResultRNS_6common8ObStringEi:83568:525 + 5: 502 + 7: 502 + 7.1: 502 + 8: 502 + 8.1: 502 + 11: 502 + 12: 0 + 13: 538 + 18: 538 + 20: 558 + 21: 535 + 17: _ZN9oceanbase3sql10ObSQLUtils3md5ERKNS_6common8ObStringEPci:26936 + 3: 538 + 11: 517 + 11.1: 538 MD5:555 + 14: 517 + 20: 7 + 21.1: 7 + 22.1: 558 _ZN9oceanbase6common11to_hex_cstrEPKvlPcl:530 + 23.1: 7 + 11: _ZNK9oceanbase6common8ObString3ptrEv:2152 + 0: 538 + 12: _ZNK9oceanbase6common8ObString6lengthEv:4304 + 0: 538 + 20.1: _ZN9oceanbase6common8ObString10assign_ptrEPKci:12305 + 2: 535 + 3: 535 +_ZN9oceanbase7storage23ObStorageSchemaRecorder25try_update_storage_schemaEll:83125:932 + 3: 875 + 4: 875 + 7: 875 + 8: 0 + 9.1: 0 + 10.1: 875 + 11.1: 0 + 14.1: 875 + 17: 0 + 18.1: 0 + 20: 0 + 21: 0 + 22.1: 0 + 23.1: 0 + 24.1: 0 + 28: 0 + 29: 0 + 30.1: 0 + 32.1: 0 + 35.1: 0 + 35.2: 0 + 35.6: 0 + 42: 0 + 46: 0 + 49: 875 + 12.1: _ZNK9oceanbase6common10ObTabletID23is_special_merge_tabletEv:8750 + 2: 875 + 16: _ZN9oceanbase7storage23ObStorageSchemaRecorder12wait_to_lockEl:0 + 3.1: 0 + 4: 0 + 5: 0 + 5.1: 0 + 5.4: 0 + 9: 0 + 12: 0 + 5: _ZN9oceanbase6common14ObTscTimestamp12get_instanceEv:0 + 2: 0 + 2.1: 0 + 2.3: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common14ObTscTimestampC2Ev:0 + 1: 0 + 26: _ZN9oceanbase7storage23ObStorageSchemaRecorder14wait_for_logcbEl:0 + 2.1: 0 + 3: 0 + 3.1: 0 + 3.4: 0 + 7: 0 + 3: _ZN9oceanbase6common14ObTscTimestamp12get_instanceEv:0 + 2: 0 + 2.1: 0 + 2.3: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common14ObTscTimestampC2Ev:0 + 1: 0 + 41: _ZN9oceanbase7storage23ObStorageSchemaRecorder20ObStorageSchemaLogCb19clear_table_versionEv:0 + 2: 0 + 44: _ZN9oceanbase7storage23ObStorageSchemaRecorder24free_schema_related_infoEv:0 + 2: 0 + 3: 0 + 4: 0 + 6: 0 +_ZN9oceanbase11transaction14ObTransService14create_tx_ctx_ERKNS_5share6ObLSIDEPNS_7storage4ObLSERKNS0_8ObTxDescERPNS0_14ObPartTransCtxE:82806:271 + 4: 242 + 5: 242 + 6: 242 + 8: 242 + 10: 242 + 13: 242 + 14: 242 + 15: 242 + 16: 242 + 17: 242 _ZNK9oceanbase11transaction8ObTxDesc13get_expire_tsEv:251 + 19: 250 + 21: 0 + 22: 253 + 23.1: 0 + 24: 0 + 26.1: 253 _ZZN9oceanbase11transaction14ObTransService14create_tx_ctx_ERKNS_5share6ObLSIDEPNS_7storage4ObLSERKNS0_8ObTxDescERPNS0_14ObPartTransCtxEENK6$_1010clEPKc.93feb755617c21c32b229b78773c290c:255 + 27: 240 + 28.2: 240 + 8: _ZN9oceanbase11transaction13ObTxCreateArgC2EbbmRKNS0_9ObTransIDERKNS_5share6ObLSIDEmmjRKNS_6common6ObAddrElPNS0_14ObTransServiceE:23500 + 11: 250 + 12: 250 + 13: 250 + 14: 250 + 16: 250 + 17: 250 + 18: 250 + 19: 250 + 20: 250 + 21: 250 + 15: _ZN9oceanbase5share6ObLSIDC2ERKS1_:3500 + 0: 250 + 20: _ZNK9oceanbase7storage4ObLS13create_tx_ctxIJRNS_11transaction13ObTxCreateArgERbRPNS3_14ObPartTransCtxEEEEiDpOT_:17750 + 0: 250 + 0.7: 250 _ZNK9oceanbase7storage13ObLSTxService13create_tx_ctxENS_11transaction13ObTxCreateArgERbRPNS2_14ObPartTransCtxE:254 + 0.4: _ZN9oceanbase11transaction13ObTxCreateArgC2ERKS1_:13250 + 0: 250 + 0.1: 250 + 0: _ZN9oceanbase5share6ObLSIDC2ERKS1_:1000 + 0: 250 +_ZN9oceanbase5share6schema19ObSchemaGetterGuardD2Ev:82728:1020 + 1: 952 + 3: 952 _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema19ObSchemaGetterGuard9SchemaObjELl2ENS0_19ModulePageAllocatorELb0EED2Ev:973 + 3.1: 957 + 3.1: _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema15ObSchemaMgrInfoELl2ENS0_19ModulePageAllocatorELb0EED2Ev:18247 + 1: 957 + 2: 957 _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema15ObSchemaMgrInfoELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv:955 + 3.2: 6 + 3.2: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:28270 + 0: 974 _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEED2Ev:978 +_ZN9oceanbase5share6schema19ObSchemaGetterGuardD1Ev:82728:1020 + 1: 952 + 3: 952 _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema19ObSchemaGetterGuard9SchemaObjELl2ENS0_19ModulePageAllocatorELb0EED2Ev:973 + 3.1: 957 + 3.1: _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema15ObSchemaMgrInfoELl2ENS0_19ModulePageAllocatorELb0EED2Ev:18247 + 1: 957 + 2: 957 _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema15ObSchemaMgrInfoELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv:955 + 3.2: 6 + 3.2: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:28270 + 0: 974 _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEED2Ev:978 +_ZN9oceanbase10rootserver26ObMigrateUnitFinishChecker23try_finish_migrate_unitERKNS_6common4hash12ObReferedMapImNS0_14DRUnitStatInfoEEE:82708:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 6.1: 0 + 7.1: 0 + 8: 0 + 9.1: 0 + 12: 0 + 13.1: 0 + 13.3: 0 + 15.1: 0 + 16: 0 + 16.1: 0 + 16.2: 0 + 17: 0 + 17.1: 0 + 18: 0 + 18.1: 0 + 20.1: 0 + 26: 0 + 11: _ZNK9oceanbase6common4hash12ObReferedMapImNS_10rootserver14DRUnitStatInfoEE14get_hash_tableEv:0 + 0: 0 + 13.4: _ZN9oceanbase6common4hash24ObHashTableConstIteratorImNS1_12ObReferedMapImNS_10rootserver14DRUnitStatInfoEE4ItemENS1_9hash_funcImEENS1_8equal_toImEENS7_6GetKeyENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi5ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEppEv:82708 + 2: 0 + 3.1: 0 + 4.1: 0 + 4.2: 0 + 7: 0 + 7.1: 2852 + 8: 2852 + 9: 0 + 14: 0 + 13.5: _ZNK9oceanbase6common4hash24ObHashTableConstIteratorImNS1_12ObReferedMapImNS_10rootserver14DRUnitStatInfoEE4ItemENS1_9hash_funcImEENS1_8equal_toImEENS7_6GetKeyENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi5ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEneERKSM_:0 + 2: 0 + 15: _ZNK9oceanbase10rootserver14DRUnitStatInfo10is_in_poolEv:0 + 0: 0 +_ZN9oceanbase3sql8ObDASCtx19extended_tablet_locERNS0_13ObDASTableLocERKNS_6common10ObTabletIDERPNS0_14ObDASTabletLocE:82356:269 + 3: 260 + 4: 260 + 5: 260 + 5.1: 260 + 6: 0 + 7: 0 + 10: 260 + 12: 260 _ZN9oceanbase6common16ObArenaAllocator5allocEl:260 + 13: 253 + 14: 0 + 15.1: 0 + 16.1: 253 + 18.1: 253 _ZN9oceanbase3sql19ObDASLocationRouter14get_tablet_locERKNS0_17ObDASTableLocMetaERKNS_6common10ObTabletIDERNS0_14ObDASTabletLocE:256 + 21.1: 0 + 22.1: 249 _ZN9oceanbase6common6ObListIPNS_3sql14ObDASTabletLocENS0_12ObIAllocatorEE9push_backERKS4_:247 + 23.1: 0 + 25: 249 + 28: 249 + 28.1: 268 + 29.1: 0 + 31: 0 + 31.1: 268 + 31.2: 275 _ZN9oceanbase3sql8ObDASCtx17check_same_serverEPKNS0_14ObDASTabletLocE:268 + 32.1: 0 + 35: 275 + 5.4: _ZNK9oceanbase6common4list8IteratorINS0_6ObListIPNS_3sql14ObDASTabletLocENS0_12ObIAllocatorEEEEneERKS9_:1820 + 2: 260 + 6.1: _ZNK9oceanbase6common10ObTabletIDeqERKS1_:0 + 0: 0 + 16.1: _ZN9oceanbase3sql14ObDASTabletLocC2Ev:10120 + 4: 253 + 5: 253 + 6: 253 + 1: _ZN9oceanbase6common10ObTabletIDC2Em:2530 + 0: 253 + 3: _ZN9oceanbase6common6ObAddrC2Ev:1771 + 1: 253 + 28.1: _ZN9oceanbase3sql8ObDASCtx24build_related_tablet_locERNS0_14ObDASTabletLocE:12051 + 2: 249 + 3.1: 0 + 3.2: 260 + 3.3: 260 + 3.5: 0 + 4: 0 + 8: 0 + 9: 0 + 10: 0 + 11.1: 0 + 12.2: 0 + 14: 0 + 15.1: 0 + 17.3: 0 + 19.1: 0 + 25: 0 + 26: 0 + 27: 0 + 28.1: 0 + 29.1: 0 + 4: _ZNK9oceanbase6common12ObIArrayWrapImE2atEl:0 + 6: 0 + 12.1: _ZN9oceanbase3sql8ObDASCtx19get_table_loc_by_idEmm:0 + 3.1: 0 + 4: 0 + 4.1: 0 + 5: 0 + 3.4: _ZNK9oceanbase6common4list8IteratorINS0_6ObListIPNS_3sql13ObDASTableLocENS0_12ObIAllocatorEEEEneERKS9_:0 + 2: 0 + 17.1: _ZN9oceanbase6common10ObTabletIDC2ERKS1_:0 + 0: 0 + 17.2: _ZN9oceanbase3sql19DASRelatedTabletMap21get_related_tablet_idENS_6common10ObTabletIDEmRSt4pairIS3_mE:1743 + 4: 0 + 6.1: 0 + 6.3: 0 + 16: 0 + 17.1: 0 + 19: 0 + 6.6: _ZNK9oceanbase6common4list8IteratorINS0_6ObListINS_3sql19DASRelatedTabletMap8MapEntryENS0_12ObIAllocatorEEEEneERKS9_:0 + 2: 0 + 8: _ZNK9oceanbase6common10ObTabletIDeqERKS1_:0 + 0: 0 + 13: _ZN9oceanbase6common10ObTabletIDaSERKS1_:0 + 0: 0 + 17.3: _ZN9oceanbase6common10ObTabletIDD2Ev:0 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:0 + 0: 0 + 17.4: _ZN9oceanbase6common10ObTabletIDD2Ev:0 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:0 + 0: 0 + 21: _ZN9oceanbase3sql14ObDASTabletLocC2Ev:0 + 4: 0 + 5: 0 + 6: 0 + 2: _ZN9oceanbase5share6ObLSIDC2Ev:0 + 0: 0 + 3: _ZN9oceanbase6common6ObAddrC2Ev:0 + 1: 0 + 22: _ZN9oceanbase6common10ObTabletIDaSERKS1_:0 + 0: 0 + 23: _ZN9oceanbase5share6ObLSIDaSERKS1_:0 + 0: 0 + 24: _ZN9oceanbase6common6ObAddraSERKS1_:3735 + 1: 0 + 2: 0 + 3: 0 + 28: _ZN9oceanbase6common6ObListIPNS_3sql14ObDASTabletLocENS0_12ObIAllocatorEE9push_backERKS4_:0 + 3: 0 + 4: 0 + 12: 0 + 13: 0 + 14: 0 + 15: 0 + 16: 0 + 7: _ZN9oceanbase6common16construct_assignIPNS_3sql14ObDASTabletLocEEEiRT_RKS5_:0 + 2: _ZN9oceanbase6common21construct_assign_wrapIPNS_3sql14ObDASTabletLocEEEiRT_RKS5_NS0_8BoolTypeILb0EEE:0 + 2: 0 +pipecb.f8d7388e3b0c2a08f5c22fd7550445b6:81775:166 + 1: 152 + 6: 152 + 8: 152 + 14: 0 + 17: 682 + 18: 0 + 20.1: 0 + 21: 0 + 22: 0 + 27: 692 + 28: 692 + 29: 692 + 31: 692 + 31.1: 692 + 32: 680 + 33: 679 + 34: 679 ev_feed_event:681 + 39: 687 +_ZN9oceanbase12blocksstable15ObTmpFileIOInfoC2Ev:81742:1915 + 1: 1777 _ZN9oceanbase6common8ObIOFlagC1Ev:1815 + 2: 1777 +_ZN9oceanbase12blocksstable15ObTmpFileIOInfoC1Ev:81742:1915 + 1: 1777 _ZN9oceanbase6common8ObIOFlagC1Ev:1815 + 2: 1777 +_ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13alloc_alignedEll:81601:234 + 1: 223 + 3: 223 + 6: 234 + 7: 234 + 8: 234 + 10: 234 + 11: 234 + 12: 234 + 13: 234 + 15.1: 0 + 16: 0 + 18: 0 + 20: 0 + 28: 0 + 35: 234 + 36: 234 + 38: 234 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE15ensure_cur_pageEv:46364 + 2: 223 + 3: 230 + 5.1: 230 + 8: 249 + 9: 249 + 10: 249 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:31725 + 5: 230 + 6: 230 + 8: 230 + 9: 230 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:19765 + 2: 215 + 3: 215 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:3440 + 5: 215 + 7: 215 + 8: 215 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:8585 + 2: 215 + 2.2: 0 + 2.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:6865 + 3: 219 _ZN9oceanbase3lib17ObMallocAllocator12get_instanceEv:227 + 4: 215 + 5: 215 _ZN9oceanbase3lib17ObMallocAllocator5allocElRKNS0_9ObMemAttrE:221 + 6: 264 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 9: _ZSt3maxIlERKT_S2_S2_:0 + 5: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:5520 + 1: 230 + 3: 230 + 8: _ZL12abort_unlessb:1494 + 5: 249 + 6: 0 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:1992 + 0: 249 + 7: _ZN9oceanbase6common16get_align_offsetEPvl:2340 + 3: 234 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:1638 + 0: 234 + 11: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:3744 + 3: 234 + 7: 234 + 15.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE18is_normal_overflowEl:0 + 2: 0 + 16: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11extend_pageEl:0 + 4: 0 + 5: 0 + 8: 0 + 9: 0 + 10.1: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 12: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_tailEPNS3_4PageE:0 + 2: 0 + 3: 0 + 5: 0 + 23.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16lookup_next_pageEl:0 + 3.1: 0 + 4.1: 0 + 5: 0 + 5.1: 0 + 7: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page10reuse_sizeEv:0 + 0: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 32: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9alloc_bigEl:0 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 3: 0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_headEPNS3_4PageE:0 + 4: 0 + 5: 0 + 7: 0 + 7: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:0 + 3: 0 +_ZN9oceanbase3sql20ObAggregateProcessor19collect_aggr_resultERNS1_8AggrCellEPKNS0_6ObExprERKNS0_10ObAggrInfoEll:81450:249 + 4: 238 + 5: 238 + 6: 238 + 7: 238 + 8: 238 + 10: 0 + 16.2: 0 + 17.1: 0 + 27: 241 _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell14collect_resultENS_6common14ObObjTypeClassERNS0_9ObEvalCtxERKNS0_10ObAggrInfoE:241 + 28.1: 0 + 34: 0 + 35.1: 0 + 41: 0 + 41.1: 0 + 46: 0 + 52.1: 0 + 53.1: 0 + 62: 0 + 66.1: 0 + 66.3: 0 + 67: 0 + 68: 0 + 69: 0 + 74: 0 + 80.1: 0 + 81.1: 0 + 89: 0 + 90: 0 + 93.1: 0 + 93.2: 0 + 93.3: 0 + 93.5: 0 + 94: 0 + 103: 0 + 109.1: 0 + 110.1: 0 + 121: 0 + 125: 0 + 126: 0 + 126.2: 0 + 127: 0 + 128: 0 + 134.1: 0 + 135.1: 0 + 146: 0 + 147: 0 + 149.1: 0 + 156: 0 + 157: 0 + 158.1: 0 + 165: 0 + 166: 0 + 167.1: 0 + 174: 0 + 176: 0 + 177: 0 + 180.1: 0 + 181.1: 0 + 181.2: 0 + 182.1: 0 + 183.1: 0 + 184: 0 + 185.1: 0 + 188: 0 + 188.3: 0 + 189: 0 + 190: 0 + 191.1: 0 + 193: 0 + 198: 0 + 199.1: 0 + 200: 0 + 201.1: 0 + 202.1: 0 + 203: 0 + 204.1: 0 + 205.1: 0 + 205.2: 0 + 207.1: 0 + 208.1: 0 + 208.2: 0 + 209.1: 0 + 211: 0 + 212: 0 + 213: 0 + 214.1: 0 + 216: 0 + 219: 0 + 220: 0 + 223: 0 + 228: 0 + 229: 0 + 230: 0 + 231: 0 + 234: 0 + 235.1: 0 + 235.2: 0 + 236: 0 + 237.1: 0 + 239.1: 0 + 239.3: 0 + 247: 0 + 248: 0 + 249: 0 + 250: 0 + 252.1: 0 + 253.1: 0 + 254: 0 + 255.1: 0 + 257.1: 0 + 258: 0 + 259: 0 + 263.1: 0 + 264: 0 + 265: 0 + 266: 0 + 268.1: 0 + 269.1: 0 + 270: 0 + 271.1: 0 + 273.1: 0 + 274: 0 + 275: 0 + 280: 0 + 287: 0 + 288.1: 0 + 290: 0 + 292: 0 + 293: 0 + 299: 0 + 309: 0 + 310: 0 + 311.1: 0 + 312.1: 0 + 313: 0 + 314.1: 0 + 315.1: 0 + 315.2: 0 + 317.1: 0 + 318.1: 0 + 318.2: 0 + 319.1: 0 + 321: 0 + 323: 0 + 324: 0 + 327.1: 0 + 327.2: 0 + 327.3: 0 + 327.4: 0 + 328: 0 + 329: 0 + 330.1: 0 + 332: 0 + 334: 0 + 335: 0 + 337.1: 0 + 338: 0 + 338.3: 0 + 339: 0 + 340: 0 + 341.1: 0 + 342: 0 + 342.2: 0 + 343: 0 + 344.1: 0 + 345.2: 0 + 345.3: 0 + 345.4: 0 + 351.1: 0 + 352.1: 0 + 353: 0 + 354.1: 0 + 355.1: 0 + 357.1: 0 + 361.1: 0 + 365.1: 0 + 369.1: 0 + 375: 0 + 376: 0 + 377: 0 + 378: 0 + 379: 0 + 379.1: 0 + 380.1: 0 + 384.1: 0 + 384.2: 0 + 388.1: 0 + 389.1: 0 + 392: 0 + 392.1: 0 + 393.1: 0 + 396: 0 + 402.1: 0 + 408: 0 + 409.1: 0 + 411: 0 + 412: 0 + 414: 0 + 415.1: 0 + 416.1: 0 + 421: 0 + 422: 0 + 424.1: 0 + 425.1: 0 + 426.2: 0 + 427.1: 0 + 428.2: 0 + 429.1: 0 + 432: 0 + 443: 0 + 444: 0 + 445.1: 0 + 446.1: 0 + 447: 0 + 448.1: 0 + 449.1: 0 + 449.2: 0 + 451.1: 0 + 452.1: 0 + 452.2: 0 + 453.1: 0 + 454.1: 0 + 454.2: 0 + 455: 0 + 457: 0 + 458.1: 0 + 461: 0 + 462: 0 + 466: 0 + 468: 0 + 470: 0 + 471: 0 + 472.1: 0 + 472.3: 0 + 473.1: 0 + 473.2: 0 + 474: 0 + 475: 0 + 476.1: 0 + 478: 0 + 479.1: 0 + 479.2: 0 + 484: 0 + 485.1: 0 + 488.1: 0 + 489: 0 + 490: 0 + 491: 0 + 491.2: 0 + 493.1: 0 + 496: 0 + 497.1: 0 + 497.2: 0 + 497.3: 0 + 501.1: 0 + 503.1: 0 + 503.2: 0 + 503.3: 0 + 504: 0 + 504.1: 0 + 504.2: 0 + 505: 0 + 506: 0 + 507.1: 0 + 509: 0 + 512: 0 + 513: 0 + 517.1: 0 + 518.1: 0 + 518.2: 0 + 519.1: 0 + 520.1: 0 + 522: 0 + 522.1: 0 + 523.1: 0 + 524.1: 0 + 525: 0 + 526.1: 0 + 527.1: 0 + 527.2: 0 + 527.3: 0 + 527.4: 0 + 531.1: 0 + 535.1: 0 + 535.2: 0 + 536.1: 0 + 546.2: 0 + 546.3: 0 + 546.4: 0 + 548.1: 0 + 563: 0 + 563.2: 0 + 565: 0 + 566.1: 0 + 569: 0 + 570: 0 + 571.1: 0 + 572.1: 0 + 573: 0 + 574.1: 0 + 576.1: 0 + 576.2: 0 + 577.1: 0 + 578.1: 0 + 578.2: 0 + 579.1: 0 + 581: 0 + 582: 0 + 584.1: 0 + 584.2: 0 + 584.3: 0 + 584.4: 0 + 585: 0 + 586: 0 + 587: 0 + 588.1: 0 + 589.1: 0 + 589.2: 0 + 589.3: 0 + 590.1: 0 + 591.2: 0 + 591.3: 0 + 595.1: 0 + 596.1: 0 + 598: 0 + 600: 0 + 600.2: 0 + 601.1: 0 + 603: 0 + 609: 0 + 609.2: 0 + 610.1: 0 + 612: 0 + 618: 0 + 618.2: 0 + 619.1: 0 + 624: 0 + 624.1: 0 + 625: 0 + 631: 0 + 632.1: 0 + 640: 0 + 641.1: 0 + 643: 0 + 646: 0 + 646.2: 0 + 648.1: 0 + 650: 0 + 656: 0 + 656.1: 0 + 657.1: 0 + 659: 0 + 667.2: 0 + 668.1: 0 + 670: 0 + 676: 0 + 677.1: 0 + 686: 0 + 687: 0 + 688.1: 0 + 689.1: 0 + 690.1: 0 + 696: 0 + 697: 0 + 698.1: 0 + 700.1: 0 + 705: 0 + 706: 0 + 707.1: 0 + 709.1: 0 + 714: 0 + 715.1: 0 + 716: 0 + 716.2: 0 + 716.3: 0 + 719.1: 0 + 719.2: 0 + 719.3: 0 + 719.4: 0 + 719.6: 0 + 722: 0 + 723: 0 + 724.2: 0 + 724.3: 0 + 724.5: 0 + 725.1: 0 + 725.2: 0 + 725.3: 0 + 725.5: 0 + 727.1: 0 + 727.2: 0 + 727.3: 0 + 727.5: 0 + 738: 0 + 739.1: 0 + 743: 250 + 744: 250 + 6: _ZNK9oceanbase3sql6ObExpr22locate_datum_for_writeERNS0_9ObEvalCtxE:18326 + 3: 238 + 6: 238 + 7: 238 + 8: 238 + 9: 238 + 5: _ZNK9oceanbase3sql6ObExpr13get_datum_idxERNS0_9ObEvalCtxE:2618 + 2: 238 + 2: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:952 + 0: 238 + 7: _ZNK9oceanbase3sql10ObAggrInfo13get_expr_typeEv:7616 + 1: 238 + 1.1: 238 + 1.4: 238 + 10: _ZN9oceanbase3lib13is_mysql_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 11: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell13get_row_countEv:0 + 0: 0 + 11.1: _ZN9oceanbase6common7ObDatum7set_intEl:0 + 0: 0 + 13: _ZN9oceanbase6common6number8ObNumberC2Ev:0 + 0: 0 + 0: _ZN12ObNumberDescC2Ej:0 + 0: 0 + 15: _ZN9oceanbase6common12ObDataBufferC2EPcl:0 + 1: 0 + 2: 0 + 16: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell13get_row_countEv:0 + 0: 0 + 16.1: _ZN9oceanbase6common6number8ObNumber4fromINS0_12ObDataBufferEEEilRT_:0 + 3: 0 + 2: _ZN9oceanbase6common6number8ObNumber10TAllocatorINS0_12ObDataBufferEEC2ERS4_:0 + 0: 0 + 19: _ZN9oceanbase6common7ObDatum10set_numberERKNS0_6number8ObNumberE:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4.1: _ZNK9oceanbase6common6number8ObNumber10get_digitsEv:0 + 2: 0 + 26: _ZNK9oceanbase3sql10ObAggrInfo20get_first_child_typeEv:2410 + 3: 241 + 3: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:964 + 6: 241 + 26.1: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:4579 + 2: 241 + 2.1: 241 + 39: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell16get_tiny_num_intEv:0 + 0: 0 + 41.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:0 + 6: 0 + 43: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell16set_tiny_num_intEl:0 + 0: 0 + 46: _ZN9oceanbase3lib13is_mysql_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 47: _ZN9oceanbase6common7ObDatum7set_intEl:0 + 0: 0 + 49: _ZN9oceanbase6common6number8ObNumberC2Ev:0 + 0: 0 + 0: _ZN12ObNumberDescC2Ej:0 + 0: 0 + 51: _ZN9oceanbase6common12ObDataBufferC2EPcl:0 + 1: 0 + 2: 0 + 52: _ZN9oceanbase6common6number8ObNumber4fromINS0_12ObDataBufferEEEilRT_:0 + 3: 0 + 2: _ZN9oceanbase6common6number8ObNumber10TAllocatorINS0_12ObDataBufferEEC2ERS4_:0 + 0: 0 + 55: _ZN9oceanbase6common7ObDatum10set_numberERKNS0_6number8ObNumberE:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4.1: _ZNK9oceanbase6common6number8ObNumber10get_digitsEv:0 + 2: 0 + 66.1: _ZNK9oceanbase6common12ObIArrayWrapIlE5countEv:0 + 0: 0 + 68: _ZNK9oceanbase6common12ObIArrayWrapIlE2atEl:0 + 74: _ZN9oceanbase3lib13is_mysql_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 75: _ZN9oceanbase6common7ObDatum7set_intEl:0 + 0: 0 + 77: _ZN9oceanbase6common6number8ObNumberC2Ev:0 + 0: 0 + 0: _ZN12ObNumberDescC2Ej:0 + 0: 0 + 79: _ZN9oceanbase6common12ObDataBufferC2EPcl:0 + 1: 0 + 2: 0 + 80: _ZN9oceanbase6common6number8ObNumber4fromINS0_12ObDataBufferEEEimRT_:0 + 3: 0 + 2: _ZN9oceanbase6common6number8ObNumber10TAllocatorINS0_12ObDataBufferEEC2ERS4_:0 + 0: 0 + 83: _ZN9oceanbase6common7ObDatum10set_numberERKNS0_6number8ObNumberE:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4.1: _ZNK9oceanbase6common6number8ObNumber10get_digitsEv:0 + 2: 0 + 89: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell17get_tiny_num_uintEv:0 + 0: 0 + 93.2: _ZNK9oceanbase6common12ObIArrayWrapIlE5countEv:0 + 94: _ZNK9oceanbase6common12ObIArrayWrapIlE2atEl:0 + 103: _ZN9oceanbase3lib13is_mysql_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 104: _ZN9oceanbase6common7ObDatum7set_intEl:0 + 0: 0 + 106: _ZN9oceanbase6common6number8ObNumberC2Ev:0 + 0: 0 + 0: _ZN12ObNumberDescC2Ej:0 + 0: 0 + 108: _ZN9oceanbase6common12ObDataBufferC2EPcl:0 + 1: 0 + 2: 0 + 109: _ZN9oceanbase6common6number8ObNumber4fromINS0_12ObDataBufferEEEimRT_:0 + 3: 0 + 2: _ZN9oceanbase6common6number8ObNumber10TAllocatorINS0_12ObDataBufferEEC2ERS4_:0 + 0: 0 + 112: _ZN9oceanbase6common7ObDatum10set_numberERKNS0_6number8ObNumberE:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4.1: _ZNK9oceanbase6common6number8ObNumber10get_digitsEv:0 + 2: 0 + 121.1: _ZNK9oceanbase3sql6ObExpr15deep_copy_datumERNS0_9ObEvalCtxERKNS_6common7ObDatumE:0 + 2: 0 + 4: 0 + 6: 0 + 7: 0 + 8: 0 + 10: 0 + 11: 0 + 12.1: 0 + 20: 0 + 5: _ZNK9oceanbase3sql6ObExpr22locate_datum_for_writeERNS0_9ObEvalCtxE:0 + 3: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 5: _ZNK9oceanbase3sql6ObExpr13get_datum_idxERNS0_9ObEvalCtxE:0 + 2: 0 + 2: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 10: _ZNK9oceanbase3sql6ObExpr15get_str_res_memERNS0_9ObEvalCtxEl:0 + 2: _ZNK9oceanbase3sql6ObExpr13get_datum_idxERNS0_9ObEvalCtxE:0 + 2: 0 + 2.1: _ZNK9oceanbase3sql6ObExpr15get_str_res_memERNS0_9ObEvalCtxEll:0 + 4: 0 + 126.1: _ZNK9oceanbase6common7ObDatum10get_stringEv:0 + 0: 0 + 0: _ZN9oceanbase6common8ObStringC2ElPKc:0 + 5: 0 + 128: _ZN9oceanbase3lib13is_mysql_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 129: _ZN9oceanbase6common7ObDatum7set_intEl:0 + 0: 0 + 132: _ZN9oceanbase6common12ObDataBufferC2EPcl:0 + 1: 0 + 2: 0 + 133: _ZN9oceanbase6common6number8ObNumberC2Ev:0 + 0: 0 + 0: _ZN12ObNumberDescC2Ej:0 + 0: 0 + 134: _ZN9oceanbase6common6number8ObNumber4fromINS0_12ObDataBufferEEEilRT_:0 + 3: 0 + 2: _ZN9oceanbase6common6number8ObNumber10TAllocatorINS0_12ObDataBufferEEC2ERS4_:0 + 0: 0 + 137: _ZN9oceanbase6common7ObDatum10set_numberERKNS0_6number8ObNumberE:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4.1: _ZNK9oceanbase6common6number8ObNumber10get_digitsEv:0 + 2: 0 + 146: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell9get_extraEv:0 + 0: 0 + 156: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell9get_extraEv:0 + 0: 0 + 165: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell9get_extraEv:0 + 0: 0 + 175: _ZN9oceanbase6common8ObStringC2Ev:0 + 1: 0 + 177: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 181.1: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:0 + 2: 0 + 199.1: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell9get_extraEv:0 + 0: 0 + 202.1: _ZNK9oceanbase3sql20ObAggregateProcessor22GroupConcatExtraResult5emptyEv:0 + 0: 0 + 205.1: _ZNK9oceanbase3sql20ObAggregateProcessor22GroupConcatExtraResult11is_iteratedEv:0 + 0: 0 + 208.1: _ZNK9oceanbase3sql20ObAggregateProcessor22GroupConcatExtraResult11is_iteratedEv:0 + 0: 0 + 216.1: _ZNK9oceanbase6common7ObDatum10get_stringEv:0 + 0: 0 + 0: _ZN9oceanbase6common8ObStringC2ElPKc:0 + 5: 0 + 219: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 241.1: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:0 + 0: 0 + 249: _ZNK9oceanbase6common8ObString6lengthEv:0 + 0: 0 + 258: _ZN9oceanbase6common8ObString3ptrEv:0 + 0: 0 + 264.1: _ZNK9oceanbase6common7ObDatum10get_stringEv:0 + 0: 0 + 0: _ZN9oceanbase6common8ObStringC2ElPKc:0 + 5: 0 + 265: _ZNK9oceanbase6common8ObString6lengthEv:0 + 0: 0 + 274: _ZNK9oceanbase6common8ObString3ptrEv:0 + 0: 0 + 299: _ZNK9oceanbase3sql6ObExpr15deep_copy_datumERNS0_9ObEvalCtxERKNS_6common7ObDatumE:0 + 2: 0 + 6: 0 + 7: 0 + 8: 0 + 10: 0 + 11: 0 + 12.1: 0 + 20: 0 + 5: _ZNK9oceanbase3sql6ObExpr22locate_datum_for_writeERNS0_9ObEvalCtxE:0 + 3: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 5: _ZNK9oceanbase3sql6ObExpr13get_datum_idxERNS0_9ObEvalCtxE:0 + 2: 0 + 2: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 10: _ZNK9oceanbase3sql6ObExpr15get_str_res_memERNS0_9ObEvalCtxEl:0 + 2: _ZNK9oceanbase3sql6ObExpr13get_datum_idxERNS0_9ObEvalCtxE:0 + 2: 0 + 2.1: _ZNK9oceanbase3sql6ObExpr15get_str_res_memERNS0_9ObEvalCtxEll:0 + 4: 0 + 309: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell9get_extraEv:0 + 0: 0 + 312.1: _ZNK9oceanbase3sql20ObAggregateProcessor22GroupConcatExtraResult5emptyEv:0 + 0: 0 + 315.1: _ZNK9oceanbase3sql20ObAggregateProcessor22GroupConcatExtraResult11is_iteratedEv:0 + 0: 0 + 318.1: _ZNK9oceanbase3sql20ObAggregateProcessor22GroupConcatExtraResult11is_iteratedEv:0 + 0: 0 + 324: _ZN9oceanbase3sql17ObChunkDatumStore13LastStoredRowC2ERNS_6common12ObIAllocatorE:0 + 1: 0 + 2: 0 + 325: _ZNK9oceanbase3sql20ObAggregateProcessor22GroupConcatExtraResult13get_row_countEv:0 + 0: 0 + 341: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql20ObSortFieldCollationEE2atEl:0 + 6: 0 + 413: _ZN9oceanbase6common6number8ObNumberC2Ev:0 + 0: 0 + 0: _ZN12ObNumberDescC2Ej:0 + 0: 0 + 415: _ZN9oceanbase6common6number8ObNumber4fromINS0_16ObArenaAllocatorEEEilRT_:0 + 3: 0 + 2: _ZN9oceanbase6common6number8ObNumber10TAllocatorINS0_16ObArenaAllocatorEEC2ERS4_:0 + 0: 0 + 419: _ZN9oceanbase6common6number8ObNumberC2Ev:0 + 0: 0 + 0: _ZN12ObNumberDescC2Ej:0 + 0: 0 + 420: _ZN9oceanbase6common6number8ObNumberC2Ev:0 + 0: 0 + 0: _ZN12ObNumberDescC2Ej:0 + 0: 0 + 424: _ZN9oceanbase6common6number8ObNumber4fromINS0_16ObArenaAllocatorEEEilRT_:0 + 3: 0 + 2: _ZN9oceanbase6common6number8ObNumber10TAllocatorINS0_16ObArenaAllocatorEEC2ERS4_:0 + 0: 0 + 426.1: _ZN9oceanbase6common6number8ObNumber4fromINS0_16ObArenaAllocatorEEEilRT_:0 + 3: 0 + 2: _ZN9oceanbase6common6number8ObNumber10TAllocatorINS0_16ObArenaAllocatorEEC2ERS4_:0 + 0: 0 + 428.1: _ZNK9oceanbase6common6number8ObNumber3divINS0_16ObArenaAllocatorEEEiRKS2_RS2_RT_ib:0 + 4: 0 + 3: _ZN9oceanbase6common6number8ObNumber10TAllocatorINS0_16ObArenaAllocatorEEC2ERS4_:0 + 0: 0 + 433: _ZN9oceanbase6common7ObDatum10set_numberERKNS0_6number8ObNumberE:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4.1: _ZNK9oceanbase6common6number8ObNumber10get_digitsEv:0 + 2: 0 + 443: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell9get_extraEv:0 + 0: 0 + 446.1: _ZNK9oceanbase3sql20ObAggregateProcessor22GroupConcatExtraResult5emptyEv:0 + 0: 0 + 449.1: _ZNK9oceanbase3sql20ObAggregateProcessor22GroupConcatExtraResult11is_iteratedEv:0 + 0: 0 + 452.1: _ZNK9oceanbase3sql20ObAggregateProcessor22GroupConcatExtraResult11is_iteratedEv:0 + 0: 0 + 455: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql20ObSortFieldCollationEE2atEl:0 + 6: 0 + 463: _ZNK9oceanbase3sql20ObAggregateProcessor22GroupConcatExtraResult13get_row_countEv:0 + 0: 0 + 465: _ZN9oceanbase6common12ObDataBufferC2EPcl:0 + 1: 0 + 2: 0 + 466: _ZN9oceanbase3sql17ObChunkDatumStore13LastStoredRowC2ERNS_6common12ObIAllocatorE:0 + 1: 0 + 2: 0 + 467: _ZN9oceanbase6common6number8ObNumberC2Ev:0 + 0: 0 + 0: _ZN12ObNumberDescC2Ej:0 + 0: 0 + 479.1: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:0 + 0: 0 + 491.1: _ZN9oceanbase6common6number8ObNumber4fromINS0_12ObDataBufferEEEiRKS2_RT_:0 + 3: 0 + 2: _ZN9oceanbase6common6number8ObNumber10TAllocatorINS0_12ObDataBufferEEC2ERS4_:0 + 0: 0 + 497.1: _ZNK9oceanbase3sql17ObChunkDatumStore9StoredRow5cellsEv:0 + 1: 0 + 514: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:0 + 0: 0 + 521: _ZN9oceanbase6common7ObDatumC2Ev:0 + 0: _ZN9oceanbase6common10ObDatumPtrC2Ev:0 + 0: 0 + 0.1: _ZN9oceanbase6common11ObDatumDescC2Ev:0 + 0: 0 + 535.1: _ZNK9oceanbase3sql6ObExpr15deep_copy_datumERNS0_9ObEvalCtxERKNS_6common7ObDatumE:0 + 2: 0 + 4: 0 + 6: 0 + 7: 0 + 8: 0 + 10: 0 + 11: 0 + 12.1: 0 + 20: 0 + 5: _ZNK9oceanbase3sql6ObExpr22locate_datum_for_writeERNS0_9ObEvalCtxE:0 + 3: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 5: _ZNK9oceanbase3sql6ObExpr13get_datum_idxERNS0_9ObEvalCtxE:0 + 2: 0 + 2: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 10: _ZNK9oceanbase3sql6ObExpr15get_str_res_memERNS0_9ObEvalCtxEl:0 + 2: _ZNK9oceanbase3sql6ObExpr13get_datum_idxERNS0_9ObEvalCtxE:0 + 2: 0 + 2.1: _ZNK9oceanbase3sql6ObExpr15get_str_res_memERNS0_9ObEvalCtxEll:0 + 4: 0 + 546.3: _ZNK9oceanbase3sql6ObExpr15deep_copy_datumERNS0_9ObEvalCtxERKNS_6common7ObDatumE:0 + 2: 0 + 4: 0 + 6: 0 + 7: 0 + 8: 0 + 10: 0 + 11: 0 + 12.1: 0 + 20: 0 + 5: _ZNK9oceanbase3sql6ObExpr22locate_datum_for_writeERNS0_9ObEvalCtxE:0 + 3: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 5: _ZNK9oceanbase3sql6ObExpr13get_datum_idxERNS0_9ObEvalCtxE:0 + 2: 0 + 2: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 10: _ZNK9oceanbase3sql6ObExpr15get_str_res_memERNS0_9ObEvalCtxEl:0 + 2: _ZNK9oceanbase3sql6ObExpr13get_datum_idxERNS0_9ObEvalCtxE:0 + 2: 0 + 2.1: _ZNK9oceanbase3sql6ObExpr15get_str_res_memERNS0_9ObEvalCtxEll:0 + 4: 0 + 569: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell9get_extraEv:0 + 0: 0 + 572.1: _ZNK9oceanbase3sql20ObAggregateProcessor22GroupConcatExtraResult5emptyEv:0 + 0: 0 + 576.1: _ZNK9oceanbase3sql20ObAggregateProcessor22GroupConcatExtraResult11is_iteratedEv:0 + 0: 0 + 578.1: _ZNK9oceanbase3sql20ObAggregateProcessor22GroupConcatExtraResult11is_iteratedEv:0 + 0: 0 + 582: _ZN9oceanbase3sql17ObChunkDatumStore13LastStoredRowC2ERNS_6common12ObIAllocatorE:0 + 1: 0 + 2: 0 + 600: _ZNK9oceanbase3sql17ObChunkDatumStore9StoredRow5cellsEv:0 + 1: 0 + 600.1: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:0 + 0: 0 + 604: _ZNK9oceanbase3sql10ObAggrInfo9is_numberEv:0 + 3: 0 + 4: 0 + 3: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:0 + 6: 0 + 609: _ZNK9oceanbase3sql17ObChunkDatumStore9StoredRow5cellsEv:0 + 1: 0 + 609.1: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:0 + 0: 0 + 610: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell15get_iter_resultEv:0 + 613: _ZNK9oceanbase3sql10ObAggrInfo9is_numberEv:0 + 3: 0 + 4: 0 + 3: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:0 + 6: 0 + 618: _ZNK9oceanbase3sql17ObChunkDatumStore9StoredRow5cellsEv:0 + 1: 0 + 618.1: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:0 + 0: 0 + 625.1: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:0 + 0: 0 + 626: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell13inc_row_countEv:0 + 0: 0 + 646.1: _ZNK9oceanbase3sql6ObExpr15deep_copy_datumERNS0_9ObEvalCtxERKNS_6common7ObDatumE:0 + 2: 0 + 4: 0 + 6: 0 + 7: 0 + 8: 0 + 10: 0 + 11: 0 + 12.1: 0 + 20: 0 + 5: _ZNK9oceanbase3sql6ObExpr22locate_datum_for_writeERNS0_9ObEvalCtxE:0 + 3: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 5: _ZNK9oceanbase3sql6ObExpr13get_datum_idxERNS0_9ObEvalCtxE:0 + 2: 0 + 2: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 10: _ZNK9oceanbase3sql6ObExpr15get_str_res_memERNS0_9ObEvalCtxEl:0 + 2: _ZNK9oceanbase3sql6ObExpr13get_datum_idxERNS0_9ObEvalCtxE:0 + 2: 0 + 2.1: _ZNK9oceanbase3sql6ObExpr15get_str_res_memERNS0_9ObEvalCtxEll:0 + 4: 0 + 655: _ZNK9oceanbase3sql10ObAggrInfo20get_first_child_typeEv:0 + 3: 0 + 3: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:0 + 6: 0 + 655.1: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:0 + 2: 0 + 2.1: 0 + 664: _ZN9oceanbase6common6number8ObNumberC2Ev:0 + 0: 0 + 0: _ZN12ObNumberDescC2Ej:0 + 0: 0 + 666: _ZN9oceanbase6common12ObDataBufferC2EPcl:0 + 1: 0 + 2: 0 + 667: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell13get_row_countEv:0 + 0: 0 + 667.1: _ZN9oceanbase6common6number8ObNumber4fromINS0_12ObDataBufferEEEilRT_:0 + 3: 0 + 2: _ZN9oceanbase6common6number8ObNumber10TAllocatorINS0_12ObDataBufferEEC2ERS4_:0 + 0: 0 + 671: _ZN9oceanbase6common7ObDatum10set_numberERKNS0_6number8ObNumberE:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4.1: _ZNK9oceanbase6common6number8ObNumber10get_digitsEv:0 + 2: 0 + 685: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell9get_extraEv:0 + 0: 0 + 696: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell9get_extraEv:0 + 0: 0 + 705: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell9get_extraEv:0 + 0: 0 + 715: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell9get_extraEv:0 + 0: 0 + 717: _ZN9oceanbase6common5ObObjC2Ev:0 + 2: _ZN9oceanbase6common5ObObj5resetEv:0 + 6: 0 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:0 + 0: 0 + 719.2: _ZN9oceanbase3sql9ObEvalCtx14TempAllocGuard13get_allocatorEv:0 + 0: 0 + 723: _ZNK9oceanbase3sql6ObExpr22locate_datum_for_writeERNS0_9ObEvalCtxE:0 + 3: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 5: _ZNK9oceanbase3sql6ObExpr13get_datum_idxERNS0_9ObEvalCtxE:0 + 2: 0 + 2: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 725.2: _ZNK9oceanbase3sql6ObExpr15deep_copy_datumERNS0_9ObEvalCtxERKNS_6common7ObDatumE:0 + 2: 0 + 4: 0 + 6: 0 + 7: 0 + 8: 0 + 10: 0 + 11: 0 + 12.1: 0 + 20: 0 + 5: _ZNK9oceanbase3sql6ObExpr22locate_datum_for_writeERNS0_9ObEvalCtxE:0 + 3: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 5: _ZNK9oceanbase3sql6ObExpr13get_datum_idxERNS0_9ObEvalCtxE:0 + 2: 0 + 2: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 10: _ZNK9oceanbase3sql6ObExpr15get_str_res_memERNS0_9ObEvalCtxEl:0 + 2: _ZNK9oceanbase3sql6ObExpr13get_datum_idxERNS0_9ObEvalCtxE:0 + 2: 0 + 2.1: _ZNK9oceanbase3sql6ObExpr15get_str_res_memERNS0_9ObEvalCtxEll:0 + 4: 0 + 730: _ZN9oceanbase3sql9ObEvalCtx14TempAllocGuardD2Ev:0 + 0: 0 + 730.2: _ZN9oceanbase3sql9ObEvalCtx14TempAllocGuardD2Ev:0 + 0: 0 + 734: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell17get_tiny_num_uintEv:0 + 0: 0 + 734.1: _ZN9oceanbase6common7ObDatum8set_uintEm:0 + 0: 0 + 743: _ZNK9oceanbase3sql6ObExpr23set_evaluated_projectedERNS0_9ObEvalCtxE:9000 + 2: 250 + 3: 250 + 2: _ZNK9oceanbase3sql6ObExpr13get_eval_infoERNS0_9ObEvalCtxE:3500 + 2: 250 + 3: _ZNK9oceanbase3sql6ObExpr13get_eval_infoERNS0_9ObEvalCtxE:3500 + 2: 250 +_ZN9oceanbase6common6DCHashINS_11transaction9ObTransIDELl8EE6insertERKS3_PNS0_11KeyHashNodeIS3_EE:81399:253 + 0: 247 + 2: 221 + 3: 221 + 7: 221 _ZN9oceanbase6common11ObTimeGuard5clickEPKc:228 + 8: 223 _ZN9oceanbase6common6DCHashINS_11transaction9ObTransIDELl8EE6Handle10search_preEmRPNS0_8HashNodeE:227 + 8.1: 236 + 9: 236 _ZN9oceanbase6common11ObTimeGuard5clickEPKc:245 + 10: 245 _ZN9oceanbase6common10_ol_insertINS0_11KeyHashNodeINS_11transaction9ObTransIDEEEEEiPT_S7_:261 + 10.1: 236 + 11: 236 _ZN9oceanbase6common11ObTimeGuard5clickEPKc:248 + 13: 0 + 13.1: 250 _ZN9oceanbase6common6DCHashINS_11transaction9ObTransIDELl8EE6HandleD2Ev:252 + 14: 263 _ZN9oceanbase6common11ObTimeGuard5clickEPKc:267 + 15.1: 244 + 16.1: 0 + 19: 243 + 20.5: 239 + 20.7: 0 + 20.9: 243 _ZN9oceanbase6common11ObTimeGuardD2Ev:245 + 1: _ZN9oceanbase6common11ObTimeGuardC2EPKcl:11137 + 2: 242 + 3: 242 + 4: 242 + 6: 242 + 7: 242 + 8: 242 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:247 + 2: 247 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:264 + 4: _ZN9oceanbase6common11KeyHashNodeINS_11transaction9ObTransIDEEC2ERKS3_:884 + 0: _ZN9oceanbase6common11KeyHashNodeINS_11transaction9ObTransIDEE9calc_hashERKS3_:884 + 0: _ZNK9oceanbase11transaction9ObTransID4hashEv:884 + 2: _ZN9oceanbase6common10murmurhashEPKvim:884 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:884 + 13: 221 + 6: _ZN9oceanbase6common6DCHashINS_11transaction9ObTransIDELl8EE6HandleC2ERS4_Rii:15470 + 1: 221 + 2: 221 + 1: _ZN9oceanbase6common6DCHashINS_11transaction9ObTransIDELl8EE9get_qsyncEv:3757 + 1: 221 + 1.1: 0 + 1.6: 0 + 1.2: _ZN9oceanbase6common7ObQSyncC2Ev:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ObQSync3RefC2Ev:0 + 0: 0 + 15: _ZNK9oceanbase6common11ObTimeGuard8get_diffEv:1940 + 2: 244 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:232 + 2: 232 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:267 +_ZN9oceanbase5share19ObLSLocationService3getElmRKNS0_6ObLSIDElRbRNS0_12ObLSLocationE:81202:256 + 2: 249 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:243 + 7: 245 + 8: 245 + 10: 245 + 11: 245 + 12: 3 + 13.1: 3 + 14.1: 3 + 15: 0 + 16.1: 0 + 19: 249 _ZN9oceanbase5share19ObLSLocationService14get_from_cacheElmRKNS0_6ObLSIDERNS0_12ObLSLocationE:241 + 20: 249 + 21.1: 0 + 23.2: 249 + 24.1: 249 + 25: 0 + 26.1: 0 + 30: 249 + 33: 249 + 34.1: 249 + 34.2: 3 + 34.3: 3 + 34.4: 3 + 34.6: 3 + 34.7: 3 + 36.1: 3 + 36.2: 3 + 36.3: 3 + 36.4: 3 + 36.6: 3 + 36.7: 3 + 38: 249 + 9: _ZN9oceanbase5share12ObLSLocation5resetEv:28910 + 4: 245 + 5: 245 + 2: _ZN9oceanbase5share20ObLSLocationCacheKey5resetEv:4655 + 2: 245 + 4: _ZN9oceanbase5share6ObLSID5resetEv:1960 + 0: 245 + 5: _ZN9oceanbase6common13ObSEArrayImplINS_5share19ObLSReplicaLocationELl3ENS0_19ModulePageAllocatorELb0EE5resetEv:19845 + 0: 245 + 0: _ZN9oceanbase6common13ObSEArrayImplINS_5share19ObLSReplicaLocationELl3ENS0_19ModulePageAllocatorELb0EE7destroyEv:14700 + 4.1: 245 + 4.3: 0 + 5: 0 + 9: 245 + 10: 0 + 11: 0 + 13: 245 + 15: 245 + 24: 245 + 6: _ZN9oceanbase6common6ObLink5resetEv:1715 + 0: 245 + 14.1: _ZN9oceanbase5share19ObLSLocationService12is_valid_keyElmRKNS0_6ObLSIDE:12120 + 5: 245 + 6: 245 + 7.1: _ZNK9oceanbase5share6ObLSID20is_valid_with_tenantEm:9670 + 5: 240 + 4: _ZN9oceanbase6common14is_user_tenantEm:7018 + 3: 251 + 4: 240 + 2: _ZN9oceanbase6common13is_sys_tenantEm:1004 + 2: 251 + 3.1: _ZN9oceanbase6common20is_virtual_tenant_idEm:2640 + 2: 240 + 4.1: _ZNK9oceanbase5share6ObLSID8is_validEv:960 + 0: 240 + 5.2: _ZN9oceanbase6common14is_meta_tenantEm:0 + 3: 0 + 5.3: _ZNK9oceanbase5share6ObLSID9is_sys_lsEv:12 + 0: 3 +_ZN9oceanbase7storage19ObStorageTableGuardC2EPNS0_8ObTabletERNS0_10ObStoreCtxEbblb:80869:1259 + 7: 1207 + 8: 1207 + 9: 1207 + 11: 1207 + 13: 1207 + 14: 1207 + 15: 1207 + 16: 1207 + 17: 1207 + 18: 1207 +_ZN9oceanbase7storage19ObStorageTableGuardC1EPNS0_8ObTabletERNS0_10ObStoreCtxEbblb:80869:1259 + 7: 1207 + 8: 1207 + 9: 1207 + 11: 1207 + 13: 1207 + 14: 1207 + 15: 1207 + 16: 1207 + 17: 1207 + 18: 1207 +_ZN9oceanbase3sql13ObDASInsertOp11insert_rowsEv:80772:294 + 1: 271 + 2: 271 + 3: 271 + 4: 271 + 6: 285 + 8: 285 + 10: 285 + 11: 285 + 14: 285 + 15: 285 + 16: 285 _ZN9oceanbase3sql20ObDASIndexDMLAdaptorILi2ENS0_16ObDASDMLIteratorEE12write_tabletERS2_Rl:285 + 16.1: 274 + 18.1: 0 + 21: 274 + 23: 0 + 24.3: 274 _ZN9oceanbase3sql20ObDASIndexDMLAdaptorILi2ENS0_16ObDASDMLIteratorEED2Ev:285 + 24.4: 0 + 4: _ZN9oceanbase3sql16ObDASDMLIteratorC2EPKNS0_17ObDASDMLBaseCtDefERNS0_16ObDASWriteBufferERNS_6common12ObIAllocatorE:18970 + 3: 271 + 6: 271 + 7: 271 + 8: 271 + 0: _ZN9oceanbase6common16ObNewRowIteratorC2Ev:813 + 0: 271 + 0.1: _ZN9oceanbase3sql16ObDASWriteBuffer8IteratorC2Ev:1897 + 1: 271 + 9: _ZN9oceanbase3sql16ObDASDMLIterator9set_ctdefEPKNS0_17ObDASDMLBaseCtDefE:8943 + 2: 271 + 3: 271 + 3.3: 271 + 3: _ZNK9oceanbase6common12ObIArrayWrapIlE5emptyEv:3794 + 0: 271 + 0: _ZNK9oceanbase6common12ObIArrayWrapIlE5countEv:1897 + 0: 271 + 5: _ZN9oceanbase3sql20ObDASIndexDMLAdaptorILi2ENS0_16ObDASDMLIteratorEEC2Ev:9756 + 2: 271 + 10: 271 + 11: 271 _ZN9oceanbase7storage14ObDMLBaseParamC2Ev:278 + 8: _ZN9oceanbase5share6ObLSIDC2Ev:2168 + 0: 271 + 12.3: _ZN9oceanbase6common10ObTabletIDD2Ev:0 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:0 + 0: 0 + 12: _ZN9oceanbase6common10ObTabletIDaSERKS1_:3135 + 0: 285 +_ZN9oceanbase7storage21ObFuseRowCacheFetcherC2Ev:80280:3480 + 1: 3345 + 2: 3345 + 3: 3345 + 1: _ZN9oceanbase6common10ObTabletIDC2Em:50175 + 0: 3345 +_ZN9oceanbase7storage21ObFuseRowCacheFetcherC1Ev:80280:3480 + 1: 3345 + 2: 3345 + 3: 3345 + 1: _ZN9oceanbase6common10ObTabletIDC2Em:50175 + 0: 3345 +_ZN9oceanbase3sql10ObSQLUtils21get_default_cast_modeEbjPKNS0_16ObSQLSessionInfoERm:80181:242 + 4: 231 + 5: 231 + 6: 231 + 7: 231 + 8: 1 + 9.1: 1 + 10.1: 255 + 10.2: 231 _ZN9oceanbase3sql10ObSQLUtils21get_default_cast_modeERKNS0_4stmt8StmtTypeEPKNS0_16ObSQLSessionInfoERm:236 + 13.1: 1 + 15: 255 + 20: 255 + 23: 255 + 23.1: 255 + 25: 255 + 27.1: 255 + 28: 258 + 29: 1 + 31: 246 + 32: 1 + 35: 244 + 39: 244 + 10.1: _ZNK9oceanbase3sql18ObBasicSessionInfo13get_stmt_typeEv:2310 + 0: 231 + 23: _ZN9oceanbase3lib14is_oracle_modeEv:10762 + 2: 255 + 2: _ZN9oceanbase3lib15get_compat_modeEv:9997 + 2: 255 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:5407 + 2: 255 + 2.1: 1 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:22 + 1: 1 + 23.1: _ZNK9oceanbase3sql18ObBasicSessionInfo12get_sql_modeEv:8925 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache12get_sql_modeEv:8925 + 0: 255 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache12get_sql_modeEb:6120 + 0: 255 + 23.2: _ZN9oceanbase6common14is_strict_modeEm:2040 + 2: 255 + 27.1: _ZN9oceanbase3lib13is_mysql_modeEv:5910 + 2: _ZN9oceanbase3lib15get_compat_modeEv:5910 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:5910 + 2: 255 + 2.1: 1 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:22 + 1: 1 + 28: _ZNK9oceanbase3sql18ObBasicSessionInfo12get_sql_modeEv:11610 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache12get_sql_modeEv:11610 + 0: 258 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache12get_sql_modeEb:3612 + 0: 258 + 28.1: _ZN9oceanbase6common22is_allow_invalid_datesEm:1032 + 2: 258 + 31: _ZNK9oceanbase3sql18ObBasicSessionInfo12get_sql_modeEv:2226 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache12get_sql_modeEv:2226 + 0: 246 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache12get_sql_modeEb:984 + 0: 246 + 31.1: _ZN9oceanbase6common15is_no_zero_dateEm:1230 + 2: 246 +_ZN9oceanbase3sql13ObDASDeleteOpC2ERNS_6common12ObIAllocatorE:80102:253 + 3: 242 + 4: 242 + 5: 242 + 1: _ZN9oceanbase3sql12ObIDASTaskOpC2ERNS_6common12ObIAllocatorE:59532 + 0: 242 _ZN9oceanbase11transaction14ObTxExecResultC1Ev:242 + 2: 242 + 3: 242 + 5: 242 + 6: 242 + 8: 242 + 9: 242 + 13: 242 + 0.2: _ZN9oceanbase6common10ObTabletIDC2Em:3388 + 0: 242 + 10: _ZN9oceanbase6common12ObFixedArrayIPKNS_3sql14ObDASBaseCtDefENS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplIS5_S6_EEERS6_l:12826 + 0: 242 + 0: _ZN9oceanbase6common16ObFixedArrayImplIPKNS_3sql14ObDASBaseCtDefENS0_12ObIAllocatorEEC2ERS6_l:8470 + 2: 242 + 3: 242 + 4: 242 + 1: _ZN9oceanbase6common8ObIArrayIPKNS_3sql14ObDASBaseCtDefEEC2Ev:1694 + 0: _ZN9oceanbase6common12ObIArrayWrapIPKNS_3sql14ObDASBaseCtDefEEC2Ev:1694 + 0: 242 + 11: _ZN9oceanbase6common12ObFixedArrayIPNS_3sql14ObDASBaseRtDefENS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplIS4_S5_EEERS5_l:12826 + 0: 242 + 0: _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql14ObDASBaseRtDefENS0_12ObIAllocatorEEC2ERS5_l:8470 + 2: 242 + 3: 242 + 4: 242 + 1: _ZN9oceanbase6common8ObIArrayIPNS_3sql14ObDASBaseRtDefEEC2Ev:1694 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql14ObDASBaseRtDefEEC2Ev:1694 + 0: 242 + 12: _ZN9oceanbase6common12ObFixedArrayINS0_10ObTabletIDENS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplIS2_S3_EEERS3_l:12826 + 0: 242 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS0_10ObTabletIDENS0_12ObIAllocatorEEC2ERS3_l:8470 + 2: 242 + 3: 242 + 4: 242 + 1: _ZN9oceanbase6common8ObIArrayINS0_10ObTabletIDEEC2Ev:1694 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_10ObTabletIDEEC2Ev:1694 + 0: 242 +_ZN9oceanbase3sql13ObDASDeleteOpC1ERNS_6common12ObIAllocatorE:80102:253 + 3: 242 + 4: 242 + 5: 242 + 1: _ZN9oceanbase3sql12ObIDASTaskOpC2ERNS_6common12ObIAllocatorE:59532 + 0: 242 _ZN9oceanbase11transaction14ObTxExecResultC1Ev:242 + 2: 242 + 3: 242 + 5: 242 + 6: 242 + 8: 242 + 9: 242 + 13: 242 + 0.2: _ZN9oceanbase6common10ObTabletIDC2Em:3388 + 0: 242 + 10: _ZN9oceanbase6common12ObFixedArrayIPKNS_3sql14ObDASBaseCtDefENS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplIS5_S6_EEERS6_l:12826 + 0: 242 + 0: _ZN9oceanbase6common16ObFixedArrayImplIPKNS_3sql14ObDASBaseCtDefENS0_12ObIAllocatorEEC2ERS6_l:8470 + 2: 242 + 3: 242 + 4: 242 + 1: _ZN9oceanbase6common8ObIArrayIPKNS_3sql14ObDASBaseCtDefEEC2Ev:1694 + 0: _ZN9oceanbase6common12ObIArrayWrapIPKNS_3sql14ObDASBaseCtDefEEC2Ev:1694 + 0: 242 + 11: _ZN9oceanbase6common12ObFixedArrayIPNS_3sql14ObDASBaseRtDefENS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplIS4_S5_EEERS5_l:12826 + 0: 242 + 0: _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql14ObDASBaseRtDefENS0_12ObIAllocatorEEC2ERS5_l:8470 + 2: 242 + 3: 242 + 4: 242 + 1: _ZN9oceanbase6common8ObIArrayIPNS_3sql14ObDASBaseRtDefEEC2Ev:1694 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql14ObDASBaseRtDefEEC2Ev:1694 + 0: 242 + 12: _ZN9oceanbase6common12ObFixedArrayINS0_10ObTabletIDENS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplIS2_S3_EEERS3_l:12826 + 0: 242 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS0_10ObTabletIDENS0_12ObIAllocatorEEC2ERS3_l:8470 + 2: 242 + 3: 242 + 4: 242 + 1: _ZN9oceanbase6common8ObIArrayINS0_10ObTabletIDEEC2Ev:1694 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_10ObTabletIDEEC2Ev:1694 + 0: 242 +_ZZN9oceanbase11transaction14ObTransService14acquire_tx_ctxERKNS_5share6ObLSIDERKNS0_8ObTxDescERPNS0_14ObPartTransCtxEPNS_7storage4ObLSEENK6$_1006clEPKc.93feb755617c21c32b229b78773c290c:79835:980 + 0: 966 + 0.1: 0 + 0.2: 966 + 0.3: 931 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:959 + 0.12: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:15827 + 2: 931 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS_11transaction14ObTransServiceELb0EEC2EPKcS5_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKNS_5share6ObLSIDELb0EEC2EPKcS5_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVIRKNS_11transaction8ObTxDescELb0EEC2EPKcS5_:0 + 0: 0 + 0.11: _ZN9oceanbase6common7ObLogKVIPKvLb1EEC2EPKcOKS3_:0 + 0: 0 +_ZN9oceanbase3lib9ObjectMgr24get_tenant_ctx_allocatorEv:79640:8054 + 1: 7964 + 2: 7964 +_ZN9oceanbase7storage18ObSimpleRowsMergerINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpEE4initElRNS_6common12ObIAllocatorE:79481:1059 + 1: 1008 + 2: 1008 + 3: 1008 + 4: 0 + 5.1: 0 + 6.1: 997 + 7: 0 + 8.1: 0 + 10: 997 + 11: 997 + 12: 1021 _ZN9oceanbase6common26ObWrapperAllocatorWithAttr5allocEl:1027 + 13: 0 + 14.1: 0 + 17: 1009 + 18: 1009 + 20: 1009 +_ZN9oceanbase7storage21ObMicroBlockHandleMgrC2Ev:79335:1193 + 0: 1151 + 0.1: 1115 + 0.4: 1151 _ZN9oceanbase6common15ObFIFOAllocatorC1Em:1164 + 0: _ZN9oceanbase7storage11ObHandleMgrINS0_22ObMicroBlockDataHandleENS_12blocksstable20ObMicroBlockCacheKeyELl64EEC2Ev:24171 + 1: 1151 + 3: 1151 + 4: 1151 + 0.2: _ZN9oceanbase7storage11ObHandleMgrINS0_22ObMicroBlockDataHandleENS_12blocksstable20ObMicroBlockCacheKeyELl64EED2Ev:300 + 0: 4 + 0: _ZN9oceanbase7storage11ObHandleMgrINS0_22ObMicroBlockDataHandleENS_12blocksstable20ObMicroBlockCacheKeyELl64EE5resetEv:244 + 2: 4 + 4: 4 + 5: 4 + 6: 4 + 8: 4 + 9: 4 + 10: 4 + 12: 4 +_ZN9oceanbase7storage21ObMicroBlockHandleMgrC1Ev:79335:1193 + 0: 1151 + 0.1: 1115 + 0.4: 1151 _ZN9oceanbase6common15ObFIFOAllocatorC1Em:1164 + 0: _ZN9oceanbase7storage11ObHandleMgrINS0_22ObMicroBlockDataHandleENS_12blocksstable20ObMicroBlockCacheKeyELl64EEC2Ev:24171 + 1: 1151 + 3: 1151 + 4: 1151 + 0.2: _ZN9oceanbase7storage11ObHandleMgrINS0_22ObMicroBlockDataHandleENS_12blocksstable20ObMicroBlockCacheKeyELl64EED2Ev:300 + 0: 4 + 0: _ZN9oceanbase7storage11ObHandleMgrINS0_22ObMicroBlockDataHandleENS_12blocksstable20ObMicroBlockCacheKeyELl64EE5resetEv:244 + 2: 4 + 4: 4 + 5: 4 + 6: 4 + 8: 4 + 9: 4 + 10: 4 + 12: 4 +_ZN9oceanbase12blocksstable23ObIMicroBlockRowScannerD2Ev:79258:1011 + 1: 951 + 2: 951 + 3: 951 _ZN9oceanbase12blocksstable18ObMicroBlockReaderD2Ev:995 + 4: 989 _ZN9oceanbase6common18ObWrapperAllocator4freeEPv:1019 + 6: 1004 + 7: 0 + 8: 0 + 10: 0 + 10.1: 1031 _ZN9oceanbase12blocksstable10ObDatumRowD1Ev:1142 + 10.2: 0 +_ZN9oceanbase12blocksstable23ObIMicroBlockRowScannerD1Ev:79258:1011 + 1: 951 + 2: 951 + 3: 951 _ZN9oceanbase12blocksstable18ObMicroBlockReaderD2Ev:995 + 4: 989 _ZN9oceanbase6common18ObWrapperAllocator4freeEPv:1019 + 6: 1004 + 7: 0 + 8: 0 + 10: 0 + 10.1: 1031 _ZN9oceanbase12blocksstable10ObDatumRowD1Ev:1142 + 10.2: 0 +_ZN9oceanbase3sql30ObHashPartitionExtendHashTableINS0_14ObHashPartColsEE19create_bucket_arrayElRPNS_6common9Ob2DArrayIPS2_Li65408ENS4_19ModulePageAllocatorELb0ENS4_9ObSEArrayIPS6_Ll64ES7_Lb0EEEEE:79206:260 + 3: 253 + 4: 253 + 7: 253 + 8: 253 + 9: 0 + 10.1: 0 + 11.1: 253 _ZN9oceanbase6common19ModulePageAllocator5allocEl:259 + 12: 0 + 13.1: 0 + 15: 214 + 16: 214 _ZN9oceanbase6common9Ob2DArrayIPNS_3sql14ObHashPartColsELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS4_Ll64ES5_Lb0EEEE4initEl:227 + 17: 0 + 18: 0 + 19: 0 + 23: 213 + 6: _ZN9oceanbase6common9next_pow2El:8602 + 2: 253 + 15: _ZN9oceanbase6common9Ob2DArrayIPNS_3sql14ObHashPartColsELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS4_Ll64ES5_Lb0EEEEC2ERKS5_:46652 + 1: 214 + 5: 214 + 6: 214 + 2: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:6634 + 0: 214 + 3: _ZN9oceanbase6common9ObSEArrayIPPNS_3sql14ObHashPartColsELl64ENS0_19ModulePageAllocatorELb0EECI2NS0_13ObSEArrayImplIS5_Ll64ES6_Lb0EEEElRKS6_:33384 + 0: 214 + 0: _ZN9oceanbase6common13ObSEArrayImplIPPNS_3sql14ObHashPartColsELl64ENS0_19ModulePageAllocatorELb0EEC2ElRKS6_:30174 + 2: 214 + 3: 214 + 5: 214 + 6: 214 + 8: 214 + 10: 214 + 17.1: 214 + 2: _ZN9oceanbase6common8ObIArrayIPPNS_3sql14ObHashPartColsEEC2EPS5_l:2568 + 0: _ZN9oceanbase6common12ObIArrayWrapIPPNS_3sql14ObHashPartColsEEC2EPS5_l:2568 + 0: 214 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:6206 + 0: 214 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:5350 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:5350 + 2: 214 + 8: 214 +_ZN9oceanbase11transaction14ObTransService18tx_post_terminate_ERNS0_8ObTxDescE:78791:232 + 1: 225 + 3: 225 + 23: 237 + 23.1: 237 _ZN9oceanbase11transaction16ObTransStatistic22add_commit_trans_countEml:249 + 24: 278 + 24.1: 278 _ZN9oceanbase11transaction16ObTransStatistic21add_trans_commit_timeEml:284 + 27: 3 + 27.1: 3 + 28: 3 + 28.1: 3 + 33: 281 + 34: 3 + 34.1: 3 + 35: 272 + 35.1: 272 _ZN9oceanbase11transaction16ObTransStatistic15add_local_countEml:270 + 36: 3 + 36.1: 3 + 38: 297 + 39: 303 + 39.1: 303 _ZN9oceanbase11transaction16ObTransStatistic25add_trans_total_used_timeEml:309 + 43: 244 + 44: 244 + 46: 255 + 47: 255 + 48: 255 + 13: _ZN9oceanbase11transaction14ObTransService28invalid_registered_snapshot_ERNS0_8ObTxDescE:2475 + 3.1: 225 + 3.3: 225 + 5: 0 + 6: 0 + 3: _ZNK9oceanbase6common12ObIArrayWrapINS_11transaction13ObTxSavePointEE5countEv:1575 + 0: 225 + 4: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction13ObTxSavePointELl4ENS0_19ModulePageAllocatorELb0EEixEl:0 + 2.1: 0 + 2.2: 0 + 3.1: 0 + 5: 0 + 5: _ZNK9oceanbase11transaction13ObTxSavePoint11is_snapshotEv:0 + 0: 0 + 21: _ZN9oceanbase11transaction8ObTxDesc9is_tx_endEv:2133 + 1: 0 + 2: 237 + 23: _ZN9oceanbase11transaction16ObTransStatistic12get_instanceEv:4491 + 2: 237 + 2.1: 3 + 2.2: 3 + 2.3: 3 + 2.6: 3 + 24: _ZN9oceanbase11transaction16ObTransStatistic12get_instanceEv:3283 + 2: 278 + 2.1: 3 + 2.2: 3 + 2.3: 3 + 2.6: 3 + 27: _ZN9oceanbase11transaction16ObTransStatistic12get_instanceEv:279 + 2: 3 + 2.1: 3 + 2.2: 3 + 2.3: 3 + 2.6: 3 + 28: _ZN9oceanbase11transaction16ObTransStatistic12get_instanceEv:258 + 2: 3 + 2.1: 3 + 2.2: 3 + 2.3: 3 + 2.6: 3 + 33: _ZNK9oceanbase6common12ObIArrayWrapINS_11transaction8ObTxPartEE5countEv:1967 + 0: 281 + 34: _ZN9oceanbase11transaction16ObTransStatistic12get_instanceEv:276 + 2: 3 + 2.1: 3 + 2.2: 3 + 2.3: 3 + 2.6: 3 + 35: _ZN9oceanbase11transaction16ObTransStatistic12get_instanceEv:4849 + 2: 272 + 2.1: 3 + 2.2: 3 + 2.3: 3 + 2.6: 3 + 36: _ZN9oceanbase11transaction16ObTransStatistic12get_instanceEv:276 + 2: 3 + 2.1: 3 + 2.2: 3 + 2.3: 3 + 2.6: 3 + 39: _ZN9oceanbase11transaction16ObTransStatistic12get_instanceEv:5376 + 2: 303 + 2.1: 3 + 2.2: 3 + 2.3: 3 + 2.6: 3 + 44: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction13ObTxSavePointELl4ENS0_19ModulePageAllocatorELb0EE5resetEv:1958 + 0: 244 _ZN9oceanbase6common13ObSEArrayImplINS_11transaction13ObTxSavePointELl4ENS0_19ModulePageAllocatorELb0EE7destroyEv:242 +_ZN9oceanbase6common11ObArrayImplINS_11transaction16ObTransIDAndAddrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEED2Ev:78330:1192 + 1: 1119 + 3: 1119 + 3.2: 0 + 2: _ZN9oceanbase6common11ObArrayImplINS_11transaction16ObTransIDAndAddrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE7destroyEv:35808 + 2: 1119 + 3.1: 0 + 3.3: 0 + 4: 0 + 6: 0 + 7: 0 + 9: 1119 + 11: 1119 + 4: _ZN9oceanbase11transaction16ObTransIDAndAddrD2Ev:0 + 0: _ZN9oceanbase11transaction9ObTransIDD2Ev:0 + 0: 0 + 6: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase3sql30ObHashPartitionExtendHashTableINS0_14ObHashPartColsEE7destroyEv:78102:1263 + 1: 1182 + 2: 1182 + 3: 233 _ZN9oceanbase6common9Ob2DArrayIPNS_3sql14ObHashPartColsELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS4_Ll64ES5_Lb0EEEE7destroyEv:233 + 4: 272 + 5: 272 _ZN9oceanbase6common19ModulePageAllocator4freeEPv:276 + 7.1: 0 + 9: 223 + 11: 1222 + 13: 288 + 15: 1303 + 16: 1303 + 12: _ZN9oceanbase6common9ob_deleteINS0_19ModulePageAllocatorEEEvRPT_:8647 + 3: 223 _ZN9oceanbase6common12ObIAllocatorD2Ev:235 + 4: _ZN9oceanbase6common7ob_freeEPv:6879 + 2: 219 + 3: 224 _ZN9oceanbase3lib17ObMallocAllocator12get_instanceEv:226 + 4: 224 + 5: 224 _ZN9oceanbase3lib17ObMallocAllocator4freeEPv:225 + 4: _ZL12abort_unlessb:448 + 5: 224 + 6: 0 +_ZN9oceanbase3sql13ObDASDeleteOp7open_opEv:77500:273 + 1: 263 + 2: 263 + 3: 263 + 4: 263 + 6: 268 + 8: 268 + 10: 268 + 11: 268 + 14: 268 + 15: 268 + 16: 268 _ZN9oceanbase3sql20ObDASIndexDMLAdaptorILi4ENS0_16ObDASDMLIteratorEE12write_tabletERS2_Rl:267 + 16.1: 256 + 18.1: 1 + 21: 256 + 23: 1 + 24.3: 274 _ZN9oceanbase3sql20ObDASIndexDMLAdaptorILi4ENS0_16ObDASDMLIteratorEED2Ev:257 + 24.4: 1 + 4: _ZN9oceanbase3sql16ObDASDMLIteratorC2EPKNS0_17ObDASDMLBaseCtDefERNS0_16ObDASWriteBufferERNS_6common12ObIAllocatorE:18410 + 3: 263 + 6: 263 + 7: 263 + 8: 263 + 0: _ZN9oceanbase6common16ObNewRowIteratorC2Ev:789 + 0: 263 + 0.1: _ZN9oceanbase3sql16ObDASWriteBuffer8IteratorC2Ev:1841 + 1: 263 + 9: _ZN9oceanbase3sql16ObDASDMLIterator9set_ctdefEPKNS0_17ObDASDMLBaseCtDefE:8679 + 2: 263 + 3: 263 + 3.3: 263 + 3: _ZNK9oceanbase6common12ObIArrayWrapIlE5emptyEv:3682 + 0: 263 + 0: _ZNK9oceanbase6common12ObIArrayWrapIlE5countEv:1841 + 0: 263 + 5: _ZN9oceanbase3sql20ObDASIndexDMLAdaptorILi4ENS0_16ObDASDMLIteratorEEC2Ev:9482 + 2: 263 + 10: 263 + 11: 263 _ZN9oceanbase7storage14ObDMLBaseParamC2Ev:280 + 8: _ZN9oceanbase5share6ObLSIDC2Ev:2104 + 0: 263 + 12.3: _ZN9oceanbase6common10ObTabletIDD2Ev:14 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:14 + 0: 1 + 12: _ZN9oceanbase6common10ObTabletIDaSERKS1_:2948 + 0: 268 +_ZN9oceanbase11transaction11ObGtsSource37get_gts_from_local_timestamp_service_ERNS_6common6ObAddrERlRNS0_11MonotonicTsE:77045:199 + 3: 183 + 4: 183 + 5: 183 + 8.1: 171 + 9: 171 + 10: 3 + 11.1: 3 + 12.1: 171 _ZN9oceanbase6common13ObTimeUtility15current_time_nsEv:171 + 12.2: 224 _ZN9oceanbase11transaction17ObTimestampAccess10get_numberElRl:224 + 12.3: 217 + 13.4: 3 + 13.8: 3 + 13.11: 3 + 13.14: 3 + 14.1: 3 + 16: 3 + 20.1: 228 + 24: 195 + 25: 195 + 25.1: 196 + 29.1: 3 + 31.1: 196 + 33: 196 + 34: 196 + 35: 196 + 37: 3 + 41: 196 + 42.7: 196 + 6: _ZN9oceanbase11transaction11MonotonicTs12current_timeEv:867 + 0: 183 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:185 + 0.1: _ZN9oceanbase11transaction11MonotonicTsC2El:684 + 0: 171 + 8: _ZN9oceanbase5share11ObTenantEnv3mtlIPNS_11transaction17ObTimestampAccessEEET_v:5691 + 2: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:3126 + 2: 171 + 2.1: 3 + 2.2: 3 + 2.1: _ZN9oceanbase5share12ObTenantBase3getIPNS_11transaction17ObTimestampAccessEEET_v:2565 + 0: _ZN9oceanbase5share12ObTenantBase9inner_getENS1_8IdentityIPNS_11transaction17ObTimestampAccessEEE:2565 + 0: 171 + 13: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:15 + 2: 3 + 13.3: _Z7load128RoPN5types9uint128_tE:63 + 2: 3 + 13.10: _Z6cas128PVN5types9uint128_tEPS0_S0_:45 + 3: 3 + 11: 3 + 17: _ZN9oceanbase6common6ObAddr5resetEv:48 + 2: 3 + 20: _ZNK9oceanbase6common6ObAddr8is_validEv:6956 + 3: 217 + 4: 0 + 5: 0 + 8.1: 234 + 9.1: 234 + 10: 228 + 13.1: 3 + 13.3: 3 + 14: 3 + 21: _ZN9oceanbase6common6ObAddraSERKS1_:6963 + 1: 211 + 2: 211 + 3: 211 + 23: _ZN9oceanbase11transaction11MonotonicTs12current_timeEv:808 + 0: 211 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:208 + 25: _ZN9oceanbase11transaction15ObGTSLocalCache28update_gts_and_check_barrierENS0_11MonotonicTsElS2_Rb:21897 + 5: 195 + 7: 195 + 9: 3 + 10.1: 3 + 14: 196 + 15: 196 + 16: 196 + 19: 196 + 7: _ZNK9oceanbase11transaction11MonotonicTs8is_validEv:585 + 0: 195 + 13: _ZN9oceanbase11transaction13atomic_updateEPll:3261 + 4.1: 195 + 5: 189 + 14: _ZN9oceanbase11transaction13atomic_updateEPll:3332 + 4.1: 196 + 5: 196 + 15: _ZN9oceanbase11transaction13atomic_updateEPll:3269 + 4.1: 196 + 5: 189 + 25.3: _ZN9oceanbase11transaction11MonotonicTsD2Ev:1568 + 0: _ZN9oceanbase11transaction11MonotonicTs5resetEv:1568 + 0: 196 + 25.4: _ZN9oceanbase11transaction11MonotonicTsD2Ev:0 + 0: _ZN9oceanbase11transaction11MonotonicTs5resetEv:0 + 0: 0 +_ZN9oceanbase3sql10ObSQLUtils22is_oracle_empty_stringERKNS_6common10ObObjParamE:77002:6009 + 1: 5901 + 2: 5901 + 2.1: 17 + 2.2: 5901 + 3: 17 + 2: _ZNK9oceanbase6common5ObObj7is_nullEv:17703 + 0: _ZNK9oceanbase6common9ObObjMeta7is_nullEv:17703 + 0: 5901 + 2.3: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:51 + 0: 17 +_ZN9oceanbase8memtable13ObMemtableCtx25alloc_table_lock_callbackERNS0_10ObIMvccCtxEPNS_11transaction9tablelock14ObLockMemtableE:76902:701 + 2: 674 + 3: 674 + 6: 758 _ZN9oceanbase11transaction9tablelock12ObLockMemCtx22alloc_lock_op_callbackEv:686 + 7: 0 + 8.1: 0 + 16: 758 + 11: _ZN9oceanbase11transaction9tablelock17ObOBJLockCallbackC2ERNS_8memtable10ObIMvccCtxEPNS1_14ObLockMemtableE:44722 + 1: 758 + 3: 758 + 4: 758 + 4.1: 758 + 0: _ZN9oceanbase8memtable16ObITransCallbackC2Ev:18950 + 2: 758 + 3: 758 + 5: 758 +_ZN9oceanbase11transaction14ObTransService19get_tx_table_guard_EPNS_7storage4ObLSERKNS_5share6ObLSIDERNS2_14ObTxTableGuardE:76500:1054 + 3: 995 + 4: 995 + 5: 995 + 6: 990 + 7.1: 0 + 10: 0 + 11: 0 + 12.1: 0 + 13.1: 0 + 14.1: 0 + 16: 0 + 17: 0 + 20: 990 + 6: _ZN9oceanbase7storage4ObLS18get_tx_table_guardIJRNS0_14ObTxTableGuardEEEEiDpOT_:13930 + 0: 995 + 0.1: 995 _ZN9oceanbase7storage9ObTxTable18get_tx_table_guardERNS0_14ObTxTableGuardE:1043 + 13.1: _ZN9oceanbase11transaction12ObLSTxCtxMgr18get_tx_table_guardERNS_7storage14ObTxTableGuardE:0 + 1: 0 +easy_buf_check_read_space:76448:1568 + 1: 1350 + 5: 1350 + 9: 58 + 10: 58 + 11: 58 + 14: 58 + 18: 58 + 19: 58 + 21: 58 + 22: 58 + 23: 58 + 24: 58 + 27: 1350 +_ZNK9oceanbase7storage19ObTabletBindingInfo4typeEv:76329:7058 + 0: 6939 +_ZN9oceanbase6common8TCRWLock10RLockGuardD2Ev:75594:477 + 0: 439 + 0.1: 416 + 0.2: 0 + 0: _ZN9oceanbase6common8TCRWLock8rdunlockEv:65704 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:1756 + 0: 439 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPi:57547 + 2: 439 + 4.1: 439 + 4.2: 264 + 6: 688 + 6.1: 416 + 10: 416 + 2: _ZN9oceanbase6common8get_itidEv:10536 + 4: 439 + 5: 0 + 6: 0 + 8: 0 + 11: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:3328 + 2: 416 + 2.1: 0 + 3: 0 +_ZN9oceanbase3sql17ObSqlTransControl13do_end_trans_EPNS0_16ObSQLSessionInfoEbblPNS0_23ObEndTransAsyncCallbackE:75427:264 + 5: 241 + 6: 241 + 8: 241 + 9: 0 + 9.2: 0 + 10.1: 0 + 12.1: 0 + 16: 241 + 17: 0 + 27: 235 + 28: 235 + 30.2: 259 _ZN9oceanbase3sqlL14get_tx_serviceEPNS0_18ObBasicSessionInfoERPNS_11transaction14ObTransServiceE.2477d7488918a1107364fd115ff965f5:235 + 31.1: 0 + 32.1: 259 + 33: 0 + 34.1: 259 + 35: 229 + 36.1: 0 + 38: 229 + 39: 250 _ZN9oceanbase11transaction14ObTransService16submit_commit_txERNS0_8ObTxDescElRNS0_13ObITxCallbackEPKNS_6common8ObStringE:245 + 40.1: 0 + 41: 0 + 42: 0 + 45.1: 0 + 46.1: 0 + 50: 0 + 54: 0 + 55.1: 243 _ZZN9oceanbase3sql17ObSqlTransControl13do_end_trans_EPNS0_16ObSQLSessionInfoEbblPNS0_23ObEndTransAsyncCallbackEENK6$_2311clEPKc.2477d7488918a1107364fd115ff965f5:243 + 62: 262 + 7: _ZN9oceanbase3sql18ObBasicSessionInfo11get_tx_descEv:1687 + 0: 241 + 8: _ZNK9oceanbase3sql16ObSQLSessionInfo25is_registered_to_deadlockEv:1928 + 0: 241 + 9: _ZN9oceanbase5share11ObTenantEnv3mtlIPNS0_8detector21ObDeadLockDetectorMgrEEET_v:0 + 2: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.1: _ZN9oceanbase5share12ObTenantBase3getIPNS0_8detector21ObDeadLockDetectorMgrEEET_v:0 + 0: _ZN9oceanbase5share12ObTenantBase9inner_getENS1_8IdentityIPNS0_8detector21ObDeadLockDetectorMgrEEE:0 + 0: 0 + 9.1: _ZNK9oceanbase11transaction8ObTxDesc3tidEv:0 + 0: 0 + 14: _ZN9oceanbase3sql16ObSQLSessionInfo26set_registered_to_deadlockEb:0 + 0: 0 + 16: _ZNK9oceanbase3sql18ObBasicSessionInfo13associated_xaEv:1687 + 0: 241 + 28: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:1645 + 0: 235 + 29: _ZNK9oceanbase3sql18ObBasicSessionInfo17get_ob_trace_infoEv:9400 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache17get_ob_trace_infoEv:9400 + 0: 235 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache17get_ob_trace_infoEb:5170 + 0: 235 + 35: _ZN9oceanbase3sql17ObSqlTransControl15inc_session_refEPKNS0_16ObSQLSessionInfoE:9553 + 2: 254 + 3: 254 _ZN9oceanbase8observer14global_contextEv:265 + 4: 0 + 5.1: 0 + 7: 279 _ZN9oceanbase8observer14global_contextEv:251 + 7.1: 279 _ZN9oceanbase3sql15ObSQLSessionMgr15inc_session_refEPKNS0_16ObSQLSessionInfoE:279 + 9: 0 + 38: _ZN9oceanbase3sql19ObIEndTransCallback7handoutEv:1374 + 0.1: 229 + 41.1: _ZN9oceanbase3sql15ObSQLSessionMgr14revert_sessionEPNS0_16ObSQLSessionInfoE:0 + 2: 0 + 3: 0 + 5: 0 + 8: 0 + 8: _ZN9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE6revertEPS4_:0 + 3: 0 + 42: _ZN9oceanbase3sql19ObIEndTransCallback6handinEv:0 + 0.1: 0 +_ZN9oceanbase6common21check_convert_str_errEPKcS2_iiRKNS0_15ObCollationTypeE:75070:421 + 5: 392 + 6: 392 + 8: 392 + 9: 1 + 10.1: 1 + 11.1: 392 + 12: 1 + 15: 391 + 16: 1 + 18: 391 + 20: 391 _ZN9oceanbase6common9ObCharset8scan_strEPKcS3_i:401 + 23: 383 + 24: 1 + 28: 383 + 11.1: _ZN9oceanbase3lib14is_oracle_modeEv:16516 + 2: _ZN9oceanbase3lib15get_compat_modeEv:16516 + 2: 392 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:8284 + 2: 392 + 2.1: 1 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:22 + 1: 1 + 18: _ZN9oceanbase3lib13is_mysql_modeEv:782 + 2: 391 +_ZN9oceanbase7storage10ObRowsInfo11ExistHelper4initERKNS0_15ObRelativeTableERNS0_10ObStoreCtxERKNS0_15ObTableReadInfoERNS_6common23ObReserveArenaAllocatorILl1024EEE:74990:257 + 4: 250 + 5: 250 + 8: 250 + 9: 0 + 10.1: 0 + 13: 250 _ZN9oceanbase6common14ObVersionRangeC1Ev:251 + 17: 234 + 19: 234 + 21: 234 + 23.1: 0 + 25: 246 _ZNK9oceanbase7storage15ObRelativeTable12get_table_idEv:240 + 26: 246 _ZNK9oceanbase7storage15ObRelativeTable13get_tablet_idEv:260 + 27: 247 + 28: 247 + 29: 247 + 30: 247 + 34: 247 + 21: _ZN9oceanbase7storage20ObTableAccessContext4initERKNS_6common11ObQueryFlagERNS0_10ObStoreCtxERNS2_12ObIAllocatorERKNS2_14ObVersionRangeE:37440 + 5: 234 + 6: 234 + 7: 0 + 8.1: 0 + 10: 234 + 11: 234 + 12: 234 + 13: 234 + 14: 234 + 15: 234 + 16: 234 + 21: 234 + 22: 234 + 23: 234 + 25: 0 + 17: _ZN9oceanbase5share6ObLSIDaSERKS1_:2574 + 0: 234 + 18: _ZN9oceanbase6common10ObTabletIDaSERKS1_:2808 + 0: 234 + 19: _ZN9oceanbase5share6ObLSIDaSERKS1_:2574 + 0: 234 + 20: _ZN9oceanbase6common10ObTabletIDaSERKS1_:2808 + 0: 234 + 21: _ZNK9oceanbase6common10ObTabletID2idEv:1170 + 0: 234 + 26.1: _ZN9oceanbase6common10ObTabletIDaSERKS1_:1729 + 0: 247 +_ZZN9oceanbase11transaction14ObPartTransCtx12start_accessERKNS0_8ObTxDescElENK5$_656clEPKc.93feb755617c21c32b229b78773c290c:74657:1076 + 0: 1057 + 0.1: 0 + 0.2: 1027 + 0.3: 1057 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:1129 + 0.7: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:17969 + 2: 1057 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.5: _ZN9oceanbase6common20ObLogPrintPointerCntIPNS_11transaction14ObPartTransCtxEEC2ES4_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVINS0_20ObLogPrintPointerCntIPNS_11transaction14ObPartTransCtxEEELb1EEC2EPKcOKS6_:0 + 0: 0 +_ZN9oceanbase4palf3LSNaSERKS1_:74475:5195 + 1: 4965 + 2: 4965 + 3: 4965 +_ZN9oceanbase6common4hash11ObHashTableINS_3sql24ObHashPartInfrastructureINS3_14ObHashPartColsENS3_19ObHashPartStoredRowEE14ObIntraPartKeyENS1_11HashMapPairIS8_PNS7_16ObIntraPartitionEEENS1_9hash_funcIS8_EENS1_8equal_toIS8_EENS1_10pair_firstISC_EENS1_13SimpleAllocerINS1_15ObHashTableNodeISC_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv:74379:1987 + 1: 1898 + 3: 1898 + 3.1: 0 + 6.1: 0 + 6.3: 0 + 8: 0 + 9.1: 0 + 11: 0 + 12: 0 + 15: 0 + 19: 0 + 22: 0 + 24: 0 + 26: 1919 + 3: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_3sql24ObHashPartInfrastructureINS5_14ObHashPartColsENS5_19ObHashPartStoredRowEE14ObIntraPartKeyEPNS9_16ObIntraPartitionEEENS1_5NLockENS1_5NCondEEEEEbRKT_:32266 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_3sql24ObHashPartInfrastructureINS5_14ObHashPartColsENS5_19ObHashPartStoredRowEE14ObIntraPartKeyEPNS9_16ObIntraPartitionEEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:32266 + 2: 1898 + 65226: 1898 + 10: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_11HashMapPairINS_3sql24ObHashPartInfrastructureINS4_14ObHashPartColsENS4_19ObHashPartStoredRowEE14ObIntraPartKeyEPNS8_16ObIntraPartitionEEEE16check_magic_codeEv:0 + 0: 0 + 762: 0 + 10.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 22: _ZN9oceanbase6common4hash7destroyIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_3sql24ObHashPartInfrastructureINS5_14ObHashPartColsENS5_19ObHashPartStoredRowEE14ObIntraPartKeyEPNS9_16ObIntraPartitionEEENS1_5NLockENS1_5NCondEEENS0_8ObMallocEEEvRT_RT0_:0 + 2: _ZN9oceanbase6common4hash10do_destroyIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_3sql24ObHashPartInfrastructureINS5_14ObHashPartColsENS5_19ObHashPartStoredRowEE14ObIntraPartKeyEPNS9_16ObIntraPartitionEEENS1_5NLockENS1_5NCondEEENS0_8ObMallocEEEvRT_NS1_16NormalPointerTagERT0_:0 + 2: 0 + 3: 0 + 4: 0 +_ZN9oceanbase11transaction14ObPartTransCtx14return_log_cb_EPNS0_9ObTxLogCbE:74095:241 + 1: 232 + 3: 232 + 6: 257 + 10: 257 + 4: _ZN9oceanbase6common7ObDListINS_11transaction9ObTxLogCbEE6removeEPS3_:13920 + 3: 232 + 3.2: 232 + 7: 232 + 6: _ZN9oceanbase6common11ObDLinkBaseINS_11transaction9ObTxLogCbEE6unlinkEv:8352 + 2: 232 + 4: 232 + 5: 232 + 6: 232 + 7: 232 + 5: _ZN9oceanbase11transaction9ObTxLogCb5reuseEv:31320 + 3: 232 + 6: 232 + 7: 232 _ZN9oceanbase11transaction12ObTxMDSRange5resetEv:238 + 2: _ZN9oceanbase11transaction13ObTxBaseLogCb5reuseEv:4872 + 2: 232 + 3: 232 _ZN9oceanbase4palf3LSN5resetEv:245 + 4: 232 + 6: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EE5resetEv:19024 + 0: 232 + 0: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EE7destroyEv:13456 + 9: 232 + 10: 0 + 11: 0 + 13: 232 + 15: 232 + 24: 232 + 7: _ZN9oceanbase6common7ObDListINS_11transaction9ObTxLogCbEE9add_firstEPS3_:13107 + 6.1: 257 + 6.2: 257 + 7: 257 + 7.1: 257 + 9.1: 0 + 13: 257 + 12: _ZN9oceanbase6common11ObDLinkBaseINS_11transaction9ObTxLogCbEE9add_afterEPS3_:7710 + 2: 257 + 2: _ZN9oceanbase6common11ObDLinkBaseINS_11transaction9ObTxLogCbEE3addEPS3_S5_S5_:4883 + 2: 257 + 3: 257 + 4: 257 + 5: 257 +_ZN9oceanbase3sql16LinkExecCtxGuardD2Ev:74085:11213 + 1: 10723 + 2: 10723 _ZN9oceanbase3sql16LinkExecCtxGuard22unlink_current_contextEv:10841 + 2.1: 10 + 3: 10195 +_ZN9oceanbase11transaction11ObIDService10get_numberEllRlS2_:73814:193 + 1: 193 + 2: 193 + 4: 215 + 5.1: 0 + 6.1: 215 + 7: 0 + 8.2: 0 + 8.5: 0 + 8.7: 0 + 8.10: 0 + 9.1: 0 + 13: 215 + 14: 215 + 15: 215 + 16: 215 + 19: 215 + 20: 215 + 21: 215 + 29: 231 + 30: 231 + 33: 215 + 34: 215 + 37: 215 + 37.1: 215 + 38: 215 + 39: 0 + 42: 214 + 42.1: 0 + 42.3: 0 + 42.4: 217 _ZN9oceanbase6common14ObTscTimestamp12current_timeEv:232 + 43.1: 0 + 45: 214 + 4: _ZN9oceanbase11transaction11ObIDService12check_leaderERb:12346 + 3: 193 + 4: 193 + 6: 193 _ZN9oceanbase11transaction11ObIDService17check_and_fill_lsEv:194 + 7.1: 0 + 8.1: 215 + 8.2: 191 _ZNK9oceanbase10logservice12ObLogHandler8get_roleERNS_6common6ObRoleERl:207 + 9.1: 0 + 10.1: 215 + 16: 0 + 8.1: _ZN9oceanbase7storage4ObLS15get_log_handlerEv:2483 + 0: 191 + 8: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 8.2: _Z7load128RoPN5types9uint128_tE:0 + 2: 0 + 8.7: _Z6cas128PVN5types9uint128_tEPS0_S0_:0 + 3: 0 + 11: 0 + 15: _ZN9oceanbase6common3minEll:3440 + 2: 215 + 15.1: _ZN9oceanbase6common3minEll:1505 + 2: 215 + 34: _ZN9oceanbase6common3minEll:1505 + 2: 215 + 38: _ZN9oceanbase6common3maxEll:0 + 2: 0 + 38.1: _ZN9oceanbase6common3maxEll:0 + 2: 0 + 42: _ZN9oceanbase6common14ObTscTimestamp12get_instanceEv:3689 + 2: 217 + 2.1: 0 + 2.3: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common14ObTscTimestampC2Ev:0 + 1: 0 +_ZN9oceanbase3sql13AllocOpHelperILi24EE5allocERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputElRPNS0_10ObOperatorE:73808:286 + 3: 271 + 4: 271 + 7: 271 + 9: 1 + 10.1: 1 + 12.1: 271 + 13: 1 + 14.1: 1 + 16: 271 + 17: 271 _ZN9oceanbase6common16ObArenaAllocator5allocEl:286 + 18: 280 + 19: 1 + 20.1: 1 + 22: 280 + 23: 268 + 24: 268 + 25.1: 268 + 33: 268 + 23: _ZN9oceanbase3sql15ObTableInsertOpC2ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE:19531 + 1: 265 _ZN9oceanbase3sql15ObTableModifyOpC2ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE:273 + 4: 268 + 2: _ZN9oceanbase6common11ObArrayWrapINS1_INS_3sql10ObInsRtDefEEEEC2Ev:8308 + 1: 268 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_11ObArrayWrapINS_3sql10ObInsRtDefEEEEC2Ev:3216 + 0: 268 + 3: _ZN9oceanbase3sql10ObOperator12get_eval_ctxEv:2144 + 0: 268 + 3.1: _ZN9oceanbase3sql15ObErrLogServiceC2ERNS0_9ObEvalCtxE:2144 + 1: 268 + 24: _ZN9oceanbase3sql10ObOperator20set_children_pointerEPPS1_j:13429 + 7: 268 + 8: 268 + 9: 268 + 10: 268 + 12: 1 + 14: 268 + 15: 1 + 17: 268 +_ZN9oceanbase7storage11ObHandleMgrINS0_22ObMicroBlockDataHandleENS_12blocksstable20ObMicroBlockCacheKeyELl64EE4initEbbRNS_6common12ObIAllocatorE:73669:1113 + 1: 1079 + 2: 1079 + 4: 1079 + 5: 0 + 6.1: 0 + 7.1: 1079 + 8: 0 + 9: 0 + 10: 0 + 11.1: 0 + 13: 0 + 16: 0 + 17: 0 + 18.1: 0 + 20: 0 + 24: 0 + 25: 1090 + 26: 1090 + 27: 1090 + 29: 1090 +_ZN9oceanbase11transaction14ObPartTransCtx20post_tx_commit_resp_Ei:73544:269 + 0: 3 + 1: 261 + 2: 261 + 3: 261 _ZNK9oceanbase11transaction11ObCtxTxData18get_commit_versionEv:262 + 5: 252 + 6: 271 + 7: 271 _ZN9oceanbase11transaction10ObTransCtx22defer_commit_callback_Eil:269 + 8.1: 1 + 18: 1 + 19: 1 + 20: 1 + 20.1: 1 + 21.1: 1 + 23.1: 1 + 27.1: 255 + 27.3: 3 + 27.4: 3 + 27.6: 3 + 27.7: 3 + 27.8: 1 + 27.9: 3 + 27.20: 3 + 30: 255 + 5: _ZNK9oceanbase6common6ObAddreqERKS1_:14112 + 2: 252 + 2.1: 252 + 2.2: 252 + 6: _ZN9oceanbase11transaction14ObPartTransCtx24need_callback_scheduler_Ev:32587 + 1: 252 _ZNK9oceanbase11transaction14ObPartTransCtx7is_rootEv:263 + 2: 261 + 2.1: 263 _ZNK9oceanbase11transaction14ObPartTransCtx9is_sub2pcEv:260 + 3: 271 + 3.1: 271 + 4: 271 + 5: 271 + 6: 271 + 4.1: _ZNK9oceanbase6common6ObAddreqERKS1_:15176 + 2: 271 + 2.1: 271 + 2.2: 271 + 5.1: _ZN9oceanbase11transaction18ObTxCommitCallback10is_enabledEv:1897 + 0: 271 + 6.1: _ZN9oceanbase11transaction18ObTxCommitCallback9is_initedEv:1897 + 0: 271 + 16: _ZN9oceanbase11transaction17ObTxCommitRespMsgC2Ev:35 + 1: 1 + 2: 1 + 3: 1 + 17: _ZN9oceanbase11transaction14ObPartTransCtx20build_tx_common_msg_ERKNS_5share6ObLSIDERNS0_7ObTxMsgE:94 + 4: 1 + 5: 1 + 9: 1 + 3: _ZN9oceanbase11transaction14ObPartTransCtx20build_tx_common_msg_ERKNS_5share6ObLSIDElllRKNS_6common6ObAddrES5_lRNS0_7ObTxMsgE:72 + 10: 1 + 11: 1 + 15: 1 + 16: 1 + 9: _ZN9oceanbase5share6ObLSIDaSERKS1_:11 + 0: 1 + 12: _ZN9oceanbase11transaction9ObTransIDaSERKl:4 + 1: 1 + 13: _ZN9oceanbase6common6ObAddraSERKS1_:25 + 1: 1 + 2: 1 + 3: 1 + 14: _ZN9oceanbase5share6ObLSIDaSERKS1_:11 + 0: 1 + 6: _ZNK9oceanbase11transaction9ObTransIDcvlEv:4 + 0: 1 + 27.3: _ZN9oceanbase3lib20is_trace_log_enabledEv:36 + 2: 3 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:21 + 2: 3 + 27.9: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EE12check_unlockEv:90 + 2: 3 + 3: _ZN9oceanbase3lib7ObMutex6unlockEv:51 + 0: 3 + 27.16: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EE10check_lockEv:120 + 2: 3 + 3: _ZN9oceanbase3lib7ObMutex4lockEv:93 + 0: 3 + 27.18: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EE10get_bufferEv:36 + 0: 3 + 27.19: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EE14get_buffer_posEv:9 + 0: 3 +_ZZN9oceanbase11transaction14ObPartTransCtx10end_accessEvENK5$_657clEPKc.93feb755617c21c32b229b78773c290c:73494:1069 + 0: 1116 + 0.1: 0 + 0.2: 1116 + 0.3: 1017 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:1060 + 0.7: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:17289 + 2: 1017 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.5: _ZN9oceanbase6common20ObLogPrintPointerCntIPNS_11transaction14ObPartTransCtxEEC2ES4_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVINS0_20ObLogPrintPointerCntIPNS_11transaction14ObPartTransCtxEEELb1EEC2EPKcOKS6_:0 + 0: 0 +_ZN9oceanbase11transaction16ObLSTxLogAdapter10submit_logEPKcllPNS0_13ObTxBaseLogCbEb:72964:281 + 5: 271 + 6: 271 + 7: 271 _ZN9oceanbase4palf3LSNC1Ev:271 + 8: 259 + 10: 259 + 10.1: 259 _ZNK9oceanbase10logservice12ObLogHandler8is_validEv:259 + 10.2: 264 + 10.5: 294 + 11.1: 264 _ZN9oceanbase6common13ObTimeUtility15current_time_nsEv:267 + 11.2: 294 + 12: 4 + 13.1: 4 + 14.1: 294 _ZN9oceanbase10logservice12ObLogHandler6appendEPKvllbPNS0_8AppendCbERNS_4palf3LSNERl:297 + 14.2: 268 + 15.1: 4 + 18: 268 _ZN9oceanbase11transaction13ObTxBaseLogCb7set_lsnERKNS_4palf3LSNE:269 + 19: 275 _ZN9oceanbase11transaction13ObTxBaseLogCb10set_log_tsEl:282 + 20: 259 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:268 + 21: 251 _ZN9oceanbase11transaction16ObTransStatistic12get_instanceEv:247 + 21.1: 234 _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:231 + 21.3: 226 _ZN9oceanbase11transaction16ObTransStatistic21add_clog_submit_countEml:267 + 22: 293 _ZN9oceanbase11transaction16ObTransStatistic12get_instanceEv:294 + 22.1: 302 _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:309 + 22.3: 299 _ZN9oceanbase11transaction16ObTransStatistic24add_trans_log_total_sizeEml:304 + 26: 288 + 27.3: 288 + 20.1: _ZN9oceanbase11transaction13ObTxBaseLogCb13set_submit_tsEl:1004 + 0: 251 + 21.2: _ZNK9oceanbase5share12ObTenantBase2idEv:1582 + 0: 226 + 22.2: _ZNK9oceanbase5share12ObTenantBase2idEv:2093 + 0: 299 +_ZN9oceanbase11transaction9tablelock17ObOBJLockCallback8log_syncEl:72909:772 + 1: 689 + 2: 689 + 3: 689 + 4: 689 + 5: 0 + 6.1: 0 + 7.1: 689 + 7.2: 689 + 8: 0 + 9.1: 0 + 12: 689 _ZN9oceanbase8memtable13ObMemtableCtx27update_max_submitted_seq_noEl:710 + 14: 708 _ZN9oceanbase8memtable13ObMemtableCtx14set_log_syncedEPNS_11transaction9tablelock22ObMemCtxLockOpLinkNodeEl:725 + 15: 747 + 17: 747 +_ZZN9oceanbase8memtable10ObMemtable4set_ERNS_7storage10ObStoreCtxEmRKNS2_15ObTableReadInfoERKNS_6common8ObIArrayINS_5share6schema9ObColDescEEERKNS2_10ObStoreRowEPSH_PKNS9_IlEEENK5$_243clEPKc.1dd22efca7fa83ae50e8099a04ad3959:72602:881 + 0: 816 + 0.1: 0 + 0.4: 0 + 0.5: 815 + 0.6: 816 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:819 + 0.11: 0 + 0.22: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:13872 + 2: 816 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.1: _ZN9oceanbase6common7ObLogKVIiLb0EEC2EPKcRKi:0 + 0: 0 + 0.3: _ZN9oceanbase6common10to_cstringIKNS0_8ObIArrayIlEEEEPKcPT_:0 + 6: _ZN9oceanbase6common10to_cstringINS0_8ObIArrayIlEEEEPKcRKT_:0 + 2: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIPKcLb1EEC2ES3_OKS3_:0 + 0: 0 + 0.7: _ZN9oceanbase6common7ObLogKVINS0_10ObTabletIDELb0EEC2EPKcRKS2_:0 + 0: 0 + 0.8: _ZNK9oceanbase12blocksstable12ObDmlRowFlag12get_dml_flagEv:0 + 0: 0 + 0.9: _ZN9oceanbase6common7ObLogKVINS_12blocksstable9ObDmlFlagELb1EEC2EPKcOKS3_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVIRKNS_7storage15ObTableReadInfoELb0EEC2EPKcS5_:0 + 0: 0 + 0.12: _ZN9oceanbase6common7ObLogKVIPKcLb1EEC2ES3_OKS3_:0 + 0: 0 + 0.13: _ZN9oceanbase6common10to_cstringIKNS_7storage10ObStoreRowEEEPKcPT_:0 + 3: 0 + 6: _ZN9oceanbase6common10to_cstringINS_7storage10ObStoreRowEEEPKcRKT_:0 + 2: 0 + 0.14: _ZN9oceanbase6common7ObLogKVIPKcLb1EEC2ES3_OKS3_:0 + 0: 0 + 0.15: _ZN9oceanbase6common10to_cstringINS_7storage10ObStoreRowEEEPKcRKT_:0 + 2: 0 + 0.16: _ZN9oceanbase6common7ObLogKVIPKcLb1EEC2ES3_OKS3_:0 + 0: 0 + 0.17: _ZN9oceanbase6common10to_cstringINS_8memtable14ObMemtableDataEEEPKcRKT_:0 + 2: 0 + 0.18: _ZN9oceanbase6common7ObLogKVIPKcLb1EEC2ES3_OKS3_:0 + 0: 0 + 0.19: _ZN9oceanbase6common7ObLogKVIRNS_7storage10ObStoreCtxELb0EEC2EPKcS4_:0 + 0: 0 + 0.21: _ZN9oceanbase6common7ObLogKVIRKNS_8memtable11ObTxNodeArgELb0EEC2EPKcS5_:0 + 0: 0 +_ZN9oceanbase12blocksstable11ObRowWriterD2Ev:72588:1123 + 1: 1052 + 3: 1052 + 2: _ZN9oceanbase12blocksstable11ObRowWriter5resetEv:28404 + 3: 1052 + 9: 1052 + 3: _ZN9oceanbase12blocksstable11ObRowBufferD2Ev:13676 + 0.2: 0 + 0: _ZN9oceanbase12blocksstable11ObRowBuffer5resetEv:13676 + 2: 1052 + 3: 0 + 4: 0 + 6: 0 + 7: 0 +_ZN9oceanbase12blocksstable11ObRowWriterD1Ev:72588:1123 + 1: 1052 + 3: 1052 + 2: _ZN9oceanbase12blocksstable11ObRowWriter5resetEv:28404 + 3: 1052 + 9: 1052 + 3: _ZN9oceanbase12blocksstable11ObRowBufferD2Ev:13676 + 0.2: 0 + 0: _ZN9oceanbase12blocksstable11ObRowBuffer5resetEv:13676 + 2: 1052 + 3: 0 + 4: 0 + 6: 0 + 7: 0 +_ZN9oceanbase6common6DCHashINS_11transaction9ObTransIDELl8EE3getERKS3_RPNS0_11KeyHashNodeIS3_EE:72375:245 + 0: 234 + 1: 234 + 2: 234 + 5: 234 _ZN9oceanbase6common6DCHashINS_11transaction9ObTransIDELl8EE6Handle10search_preEmRPNS0_8HashNodeE:242 + 5.1: 252 + 6: 252 + 6.1: 255 + 9.1: 0 + 9.2: 234 + 3: _ZN9oceanbase6common11KeyHashNodeINS_11transaction9ObTransIDEEC2ERKS3_:22230 + 0: 234 + 0: _ZN9oceanbase6common11KeyHashNodeINS_11transaction9ObTransIDEE9calc_hashERKS3_:19422 + 0: 234 + 0: _ZNK9oceanbase11transaction9ObTransID4hashEv:17550 + 2: _ZN9oceanbase6common10murmurhashEPKvim:17550 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:17550 + 11: 234 + 13: 234 + 14: 234 + 15: 234 + 17: 234 + 18: 234 + 41: 234 + 42: 234 + 43: 234 + 0.1: _ZN9oceanbase6common8HashNodeC2Em:1872 + 0: 234 + 0: _ZN9oceanbase6common6ObLinkC2Ev:936 + 0: 234 + 4: _ZN9oceanbase6common6DCHashINS_11transaction9ObTransIDELl8EE6HandleC2ERS4_Rii:15678 + 1: 234 + 2: 234 + 1: _ZN9oceanbase6common6DCHashINS_11transaction9ObTransIDELl8EE9get_qsyncEv:3978 + 1: 234 + 1.1: 0 + 1.6: 0 + 1.2: _ZN9oceanbase6common7ObQSyncC2Ev:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ObQSync3RefC2Ev:0 + 0: 0 + 6: _ZN9oceanbase6common6ol_getINS0_11KeyHashNodeINS_11transaction9ObTransIDEEEEEiPT_S7_RS7_:13392 + 4: 246 + 5.1: 0 + 4: _ZN9oceanbase6common9ol_searchINS0_11KeyHashNodeINS_11transaction9ObTransIDEEEEEPT_S7_S7_RS7_:11424 + 4.1: 454 + 4.2: 204 + 5: 454 + 5.1: 204 + 4.1: _ZN9oceanbase6common9link_nextEPNS0_6ObLinkE:1362 + 2: 454 + 5.1: _ZN9oceanbase6common11KeyHashNodeINS_11transaction9ObTransIDEE7compareEPS4_:6726 + 2: 454 + 4.1: 204 + 7: 0 + 5.1: _ZN9oceanbase6common11KeyHashNodeINS_11transaction9ObTransIDEE7compareEPS4_:1230 + 2: 246 + 7: 0 + 9.2: _ZN9oceanbase6common6DCHashINS_11transaction9ObTransIDELl8EE6HandleD2Ev:2805 + 0: 255 _ZN9oceanbase6common6DCHashINS_11transaction9ObTransIDELl8EE6Handle6retireEil:261 + 0.2: 0 +_ZN9oceanbase7storage15ObAccessService9lock_rowsERKNS_5share6ObLSIDERKNS_6common10ObTabletIDERNS_11transaction8ObTxDescERKNS0_14ObDMLBaseParamElNS0_10ObLockFlagEPNS6_16ObNewRowIteratorERl:72255:161 + 9: 159 + 10: 159 + 12: 154 + 14: 154 + 15: 0 + 16.1: 0 + 18: 154 + 19: 154 + 20: 154 + 21: 154 + 22: 0 + 23.1: 0 + 25.1: 176 _ZN9oceanbase7storage15ObAccessService20check_write_allowed_ERKNS_5share6ObLSIDERKNS_6common10ObTabletIDENS0_17ObStoreAccessTypeERKNS0_14ObDMLBaseParamERNS_11transaction8ObTxDescERNS1_15ObStoreCtxGuardE:154 + 25.2: 176 + 31.1: 0 + 32.3: 176 + 33: 0 + 34.1: 0 + 39.1: 178 _ZN9oceanbase7storage17ObLSTabletService9lock_rowsERNS0_10ObStoreCtxERKNS0_14ObDMLBaseParamElNS0_10ObLockFlagEbPNS_6common16ObNewRowIteratorERl:177 + 39.2: 178 + 41: 176 + 42: 176 + 47: 177 + 48.6: 177 _ZN9oceanbase7storage15ObAccessService15ObStoreCtxGuardD2Ev:177 + 48.7: 0 + 11: _ZN9oceanbase7storage15ObAccessService15ObStoreCtxGuardC2Ev:25673 + 0: 159 + 0.2: 154 + 0: _ZN9oceanbase7storage10ObStoreCtxC2Ev:16692 + 0.2: 156 _ZN9oceanbase7storage10ObStoreCtx5resetEv:159 + 0: _ZN9oceanbase5share6ObLSIDC2Ev:1749 + 0: 159 + 0.1: _ZN9oceanbase8memtable15ObMvccAccessCtxC2Ev:13038 + 1: 159 + 3: 159 + 4: 159 _ZN9oceanbase11transaction12ObTxSnapshotC1Ev:160 + 7: 156 + 10: 156 + 5: _ZN9oceanbase7storage14ObTxTableGuardC2Ev:3432 + 0: 156 + 0.6: _ZN9oceanbase8memtable15ObMvccAccessCtxD2Ev:0 + 1: 0 + 3: 0 + 5: 0 + 8: 0 + 9.4: 0 + 9: _ZN9oceanbase11transaction9ObTransIDD2Ev:0 + 0: 0 + 9.3: _ZN9oceanbase7storage14ObTxTableGuardD2Ev:0 + 0: _ZN9oceanbase7storage14ObTxTableGuard5resetEv:0 + 2: 0 + 3: 0 + 4: 0 + 0.10: _ZN9oceanbase6common10ObTabletIDC2Em:1749 + 0: 159 + 0.1: _ZN9oceanbase7storage10ObLSHandleC2Ev:3388 + 2: 154 + 3: 154 + 0.3: _ZN9oceanbase5share6ObLSIDC2Ev:1694 + 0: 154 + 17.1: _ZNK9oceanbase5share6ObLSID8is_validEv:616 + 0: 154 + 18.1: _ZNK9oceanbase6common10ObTabletID8is_validEv:616 + 0: 154 + 19.1: _ZNK9oceanbase11transaction8ObTxDesc8is_validEv:2618 + 0: 154 + 0: _ZNK9oceanbase11transaction8ObTxDesc8is_in_txEv:1078 + 0: 154 + 0.1: _ZNK9oceanbase11transaction9ObTransID8is_validEv:1232 + 0: 154 + 20.1: _ZNK9oceanbase7storage14ObDMLBaseParam8is_validEv:2464 + 0: 154 + 0.1: 154 + 32.2: _ZN9oceanbase7storage10ObLSHandle6get_lsEv:1232 + 0: 176 + 35.1: _ZN9oceanbase7storage4ObLS14get_tablet_svrEv:704 + 0: 176 +_ZN9oceanbase3sql12ObSqlPlanSet16get_plan_specialERNS0_14ObPlanCacheCtxERPNS0_14ObPhysicalPlanE:72089:236 + 2: 219 + 4: 219 + 5: 219 + 6: 219 + 8: 219 + 8.2: 1 + 8.3: 219 + 9: 219 + 13: 219 + 16.1: 219 + 17.3: 219 _ZN9oceanbase3sql12ObSqlPlanSet13get_plan_typeERKNS_6common8ObIArrayINS0_15ObTableLocationEEEbRNS0_14ObPlanCacheCtxERNS3_INS0_15ObCandiTableLocEEERNS0_13ObPhyPlanTypeE:227 + 17.4: 250 + 22.1: 1 + 23.1: 250 + 25: 1 + 30: 1 + 33: 1 + 34: 1 + 37.3: 1 + 37.4: 1 + 42.1: 1 + 43.1: 1 + 45: 1 + 48: 1 + 49: 1 + 54: 1 + 55: 1 + 55.1: 1 + 62: 1 + 62.1: 1 + 64.1: 1 + 64.3: 1 + 64.4: 1 + 69.1: 1 + 75: 250 + 76: 1 + 80.5: 248 _ZN9oceanbase6common13ObSEArrayImplINS_3sql15ObCandiTableLocELl2ENS0_19ModulePageAllocatorELb0EED2Ev:247 + 80.6: 1 + 7: _ZN9oceanbase6common9ObSEArrayINS_3sql15ObCandiTableLocELl2ENS0_19ModulePageAllocatorELb0EEC2Ev:31098 + 0.1: 219 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_3sql15ObCandiTableLocELl2ENS0_19ModulePageAllocatorELb0EEC2ElRKS4_:27813 + 2: 219 + 5: 219 + 6: 219 + 8: 219 + 17.1: 219 + 2: _ZN9oceanbase6common8ObIArrayINS_3sql15ObCandiTableLocEEC2EPS3_l:1752 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_3sql15ObCandiTableLocEEC2EPS3_l:1752 + 0: 219 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:11607 + 0: 219 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:4599 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:4599 + 2: 219 + 8: 219 + 8.1: _ZNK9oceanbase3sql15ObEvolutionPlan20get_is_evolving_flagEv:6 + 0: 1 + 9: _ZN9oceanbase3sql13ObSpmCacheCtx24force_get_evolution_planEv:2628 + 2: 219 + 17.1: _ZN9oceanbase3sql14ObPhysicalPlan19get_table_locationsEv:1533 + 0: 219 + 17.2: _ZNK9oceanbase3sql14ObPhysicalPlan28has_uncertain_local_operatorEv:5037 + 0: 219 + 32: _ZN9oceanbase6common13ObSEArrayImplINS_3sql15ObCandiTableLocELl2ENS0_19ModulePageAllocatorELb0EE5resetEv:6 + 0: 1 + 37.1: _ZN9oceanbase3sql14ObPhysicalPlan19get_table_locationsEv:7 + 0: 1 + 37.2: _ZNK9oceanbase3sql14ObPhysicalPlan28has_uncertain_local_operatorEv:23 + 0: 1 + 48: _ZN9oceanbase3sql17ObILibCacheObject22set_dynamic_ref_handleENS0_16CacheRefHandleIDE:3 + 2: 1 + 64.1: _ZN9oceanbase3sql14ObPhysicalPlan19get_table_locationsEv:7 + 0: 1 + 64.2: _ZNK9oceanbase3sql14ObPhysicalPlan28has_uncertain_local_operatorEv:23 + 0: 1 +_ZN9oceanbase3sql13AllocOpHelperILi26EE5allocERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputElRPNS0_10ObOperatorE:72043:271 + 3: 255 + 4: 255 + 7: 255 + 9: 0 + 10.1: 0 + 12.1: 255 + 13: 0 + 14.1: 0 + 16: 255 + 17: 255 _ZN9oceanbase6common16ObArenaAllocator5allocEl:259 + 18: 263 + 19: 0 + 20.1: 0 + 22: 263 + 23: 271 + 24: 271 + 25.1: 271 + 33: 271 + 23: _ZN9oceanbase3sql15ObTableDeleteOpC2ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE:19563 + 1: 251 _ZN9oceanbase3sql15ObTableModifyOpC2ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE:254 + 4: 271 + 2: _ZN9oceanbase6common11ObArrayWrapINS1_INS_3sql10ObDelRtDefEEEEC2Ev:8401 + 1: 271 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_11ObArrayWrapINS_3sql10ObDelRtDefEEEEC2Ev:3252 + 0: 271 + 3: _ZN9oceanbase3sql10ObOperator12get_eval_ctxEv:2168 + 0: 271 + 3.1: _ZN9oceanbase3sql15ObErrLogServiceC2ERNS0_9ObEvalCtxE:2168 + 1: 271 + 24: _ZN9oceanbase3sql10ObOperator20set_children_pointerEPPS1_j:13550 + 7: 271 + 8: 271 + 9: 271 + 10: 271 + 12: 0 + 14: 271 + 15: 0 + 17: 271 +_ZN9oceanbase3sql10ObResolver18stmt_resolver_funcINS0_18ObEndTransResolverEEEiRNS0_16ObResolverParamsERK10_ParseNodeRPNS0_6ObStmtE:71954:218 + 1: 211 + 3: 211 + 3.3: 211 + 3.5: 241 + 3.10: 241 + 4: 241 + 4.1: 241 + 5.1: 6 + 7.1: 241 + 9: 6 + 10.4: 306 + 10.7: 5 + 3.5: _ZN9oceanbase6common2SVINS_3sql18ObEndTransResolverELb1EEC2IZNS2_10ObResolver18stmt_resolver_funcIS3_EEiRNS2_16ObResolverParamsERK10_ParseNodeRPNS2_6ObStmtEEUlPvE_EEibOT_:25694 + 1: 211 + 5: 211 _ZN9oceanbase6common11smart_allocElPKc:212 + 6: 241 + 7: 6 + 9: 241 + 1: _ZN9oceanbase6common6SVBaseC2Eib:1477 + 1: 211 + 2: 211 + 9: _ZZN9oceanbase3sql10ObResolver18stmt_resolver_funcINS0_18ObEndTransResolverEEEiRNS0_16ObResolverParamsERK10_ParseNodeRPNS0_6ObStmtEENKUlPvE_clESC_:15906 + 0: _ZN9oceanbase3sql18ObEndTransResolverC2ERNS0_16ObResolverParamsE:15906 + 2: 241 + 1: _ZN9oceanbase3sql13ObTCLResolverC2ERNS0_16ObResolverParamsE:12532 + 1: _ZN9oceanbase3sql14ObStmtResolverC2ERNS0_16ObResolverParamsE:12532 + 1: 241 + 2: 241 + 3: 241 + 4: 241 + 5: 241 + 6: 241 + 4: _ZN9oceanbase3sql18ObEndTransResolver7resolveERK10_ParseNode:10808 + 4: 241 + 4.2: 252 + 4.3: 252 + 6: 252 _ZN9oceanbase3sql14ObStmtResolver11create_stmtINS0_14ObEndTransStmtEEEPT_v:254 + 8.1: 5 + 10: 241 + 11: 241 + 15.1: 6 + 11: _ZN9oceanbase3sql14ObEndTransStmt15set_is_rollbackEb:964 + 0: 241 + 7: _ZN9oceanbase3sql14ObStmtResolver14get_basic_stmtEv:964 + 0: 241 + 10.4: _ZN9oceanbase6common2SVINS_3sql18ObEndTransResolverELb1EED2Ev:9188 + 2: 241 + 4: 241 _ZN9oceanbase3sql18ObEndTransResolverD1Ev:246 + 5: 249 + 6: 248 _ZN9oceanbase6common10smart_freeEPv:247 + 6.1: 5 + 8: 306 +_ZN9oceanbase8memtable17ObMvccRowIterator5resetEv:71780:1005 + 1: 970 + 2: 970 + 3: 970 + 6: 970 + 7: 0 + 8: 0 + 9: 0 + 11: 970 + 12: 970 + 5: _ZN9oceanbase8memtable19ObMvccValueIterator5resetEv:29100 + 2: 970 + 3: 970 + 6: 970 +_ZZN9oceanbase11transaction14ObTransService33create_global_implicit_savepoint_ERNS0_8ObTxDescERKNS0_9ObTxParamERlbENK6$_1310clEPKc.93feb755617c21c32b229b78773c290c:71560:1121 + 0: 1010 + 0.1: 0 + 0.2: 1000 + 0.3: 1010 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:1101 + 0.11: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:17170 + 2: 1010 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS_11transaction8ObTxDescELb0EEC2EPKcS5_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKNS_11transaction9ObTxParamELb0EEC2EPKcS5_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 +_ZNK9oceanbase6common4hash9hash_funcINS0_8ObStringEEclERKS3_:71394:397 + 1: 385 + 2: 363 + 2: _ZNK9oceanbase6common8ObString3ptrEv:1540 + 0: 385 + 2.1: _ZNK9oceanbase6common8ObString6lengthEv:2695 + 0: 385 + 2.2: _ZN9oceanbase6common10murmurhashEPKvim:61043 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:61043 + 8: 385 + 10: 0 + 10.1: 385 + 13: 334 + 14: 334 + 15: 334 + 17: 334 + 23: 385 + 25: 25 + 27: 95 + 29: 249 + 31: 277 + 33: 283 + 35: 323 + 37: 337 + 38: 337 + 41: 363 + 42: 363 + 43: 363 +_ZN9oceanbase12blocksstable9ObSSTable16check_row_lockedERNS_7storage10ObStoreCtxERKNS2_15ObTableReadInfoERKNS0_13ObDatumRowkeyERNS2_19ObStoreRowLockStateE:70925:169 + 4: 155 + 5: 155 + 10: 155 + 11: 155 + 13.1: 155 + 14: 0 + 15.1: 0 + 16.2: 155 + 17: 0 + 18.1: 0 + 19.1: 155 _ZNK9oceanbase7storage8ObITable30is_multi_version_minor_sstableEv:157 + 19.2: 162 + 21.1: 80 _ZNK9oceanbase12blocksstable9ObSSTable23get_upper_trans_versionEv:80 + 21.2: 80 + 23.1: 77 + 26: 77 _ZNK9oceanbase12blocksstable9ObSSTable23get_upper_trans_versionEv:80 + 26.1: 79 + 28.1: 0 + 28.2: 0 + 29: 0 + 30.1: 0 + 32: 0 + 33: 0 + 34: 0 + 35: 0 + 39: 0 + 40: 0 + 41: 0 + 43: 0 + 44: 0 + 46: 0 + 46.1: 0 + 48.1: 0 + 49.1: 0 + 49.2: 0 + 50.1: 0 + 52.1: 0 + 52.2: 0 + 53.1: 0 + 56: 0 + 57: 0 + 57.2: 0 + 57.3: 0 + 57.5: 0 + 59: 161 + 60.11: 147 + 8: _ZNK9oceanbase8memtable15ObMvccAccessCtx20get_snapshot_versionEv:1240 + 1: 155 + 9.1: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:22165 + 4: 155 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:19375 + 2: 155 + 3: 155 + 4: 155 + 5: 155 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:8370 + 0: 155 + 13: _ZNK9oceanbase12blocksstable9ObSSTable8is_validEv:1085 + 0: 155 + 16.1: _ZNK9oceanbase7storage15ObTableReadInfo23is_valid_full_read_infoEv:25110 + 3: 155 + 3.1: 155 + 4: 155 + 2: _ZNK9oceanbase7storage15ObTableReadInfo8is_validEv:10850 + 2: 155 + 3: 155 + 3.1: 155 + 4: 155 + 5.1: 155 + 6: 155 + 7: 155 + 7.1: 155 + 3.1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:1085 + 0: 155 + 6.1: _ZNK9oceanbase12blocksstable19ObStorageDatumUtils8is_validEv:1085 + 0: 155 + 4.1: _ZNK9oceanbase7storage15ObTableReadInfo8is_validEv:10850 + 2: 155 + 3: 155 + 3.1: 155 + 4: 155 + 5.1: 155 + 6: 155 + 7: 155 + 7.1: 155 + 3.1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:1085 + 0: 155 + 6.1: _ZNK9oceanbase12blocksstable19ObStorageDatumUtils8is_validEv:1085 + 0: 155 + 23: _ZNK9oceanbase12blocksstable13ObSSTableMeta8is_emptyEv:616 + 0: 77 + 42: _ZN9oceanbase6common10ObTabletIDaSERKS1_:0 + 0: 0 + 60.11: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:2415 + 0: 161 _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEED2Ev:167 + 60.12: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:0 + 0: 0 +_ZN9oceanbase6commonL13string_stringENS0_9ObObjTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS4_m.db28c62327e16d3ae5c8a88acfd53bbb:70394:134 + 2: 130 + 2.1: 4 + 2.2: 4 + 2.3: 4 + 2.6: 4 + 3: 130 + 6: 130 + 6.2: 130 + 10: 0 + 11.1: 0 + 13: 139 + 13.1: 0 + 14: 0 + 16: 0 + 17.1: 0 + 18.1: 0 + 18.11: 0 + 18.14: 0 + 19.1: 163 + 19.2: 0 + 20: 4 + 21.1: 4 + 22.2: 0 + 23: 168 + 24: 0 + 24.1: 0 + 25: 0 + 31: 178 _ZNK9oceanbase6common5ObObj10get_stringERNS0_8ObStringE:179 + 32.1: 4 + 33.1: 159 + 33.2: 106 + 34: 159 + 35: 76 + 35.1: 76 + 36: 76 + 36.2: 87 _ZN9oceanbase6common9ObCharset20charset_type_by_collENS0_15ObCollationTypeE:78 + 37: 106 _ZN9oceanbase6common9ObCharset20charset_type_by_collENS0_15ObCollationTypeE:86 + 42: 4 + 43: 4 + 44: 4 + 45: 4 + 46.1: 4 + 47.1: 4 + 47.4: 4 + 54.1: 4 + 57: 4 + 57.1: 4 + 58: 4 + 60: 4 + 61.1: 4 + 61.2: 4 + 61.3: 4 + 62.1: 4 + 63: 4 + 64: 4 + 67: 4 + 67.2: 4 + 68: 4 + 69: 4 + 70: 4 + 71: 4 + 73: 4 + 77: 4 + 78: 4 + 79.1: 4 + 81: 4 + 82: 4 + 83.1: 4 + 91: 4 + 92: 4 + 97: 4 + 106: 185 + 106.2: 4 + 107: 1 + 107.1: 4 + 108: 4 + 108.1: 4 + 109: 4 + 112: 189 _ZN9oceanbase6commonL20check_convert_stringENS0_9ObObjTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS4_.db28c62327e16d3ae5c8a88acfd53bbb:193 + 113.1: 4 + 114.1: 175 + 117: 175 + 120: 175 + 126: 180 + 129: 180 + 129.2: 5 + 131: 177 + 5: _ZN9oceanbase6common5ObObjC2Ev:2340 + 2: _ZN9oceanbase6common5ObObj5resetEv:2340 + 6: 130 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:910 + 0: 130 + 6: _ZNK9oceanbase6common5ObObj14get_type_classEv:1820 + 0: _ZNK9oceanbase6common9ObObjMeta14get_type_classEv:1820 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:1040 + 0: 130 + 0.1: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:780 + 2: 130 + 6.2: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:910 + 2.1: 130 + 12.1: _ZN9oceanbase3lib14is_oracle_modeEv:6394 + 2: _ZN9oceanbase3lib15get_compat_modeEv:6394 + 2: 139 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:3892 + 2: 139 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 13.1: _ZNK9oceanbase6common5ObObj7is_blobEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta7is_blobEv:0 + 2: 0 + 2.1: 0 + 2.3: _ZN9oceanbase6common13ob_is_text_tcENS0_9ObObjTypeE:0 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:0 + 2: 0 + 13.2: _ZN9oceanbase6common10ob_is_blobENS0_9ObObjTypeENS0_15ObCollationTypeE:0 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:0 + 2: 0 + 18.1: _ZN9oceanbase3lib14is_oracle_modeEv:208 + 2: _ZN9oceanbase3lib15get_compat_modeEv:208 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:208 + 2: 0 + 2.1: 4 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:88 + 1: 4 + 18.12: _ZN9oceanbase6common8ObLogger10get_loggerEv:316 + 2: 0 + 2.1: 4 + 2.2: 4 + 2.3: 4 + 2.6: 4 + 18.15: _ZN9oceanbase6common8ObLogger10get_loggerEv:316 + 2: 0 + 2.1: 4 + 2.2: 4 + 2.3: 4 + 2.6: 4 + 19.2: _ZNK9oceanbase6common5ObObj9is_outrowEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta9is_outrowEv:0 + 0.1: _ZNK9oceanbase6common10ObLobScale10is_out_rowEv:0 + 0: 0 + 22.1: _ZN9oceanbase3lib14is_oracle_modeEv:504 + 2: _ZN9oceanbase3lib15get_compat_modeEv:504 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:504 + 2: 168 + 23.1: _ZNK9oceanbase6common5ObObj7is_clobEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta7is_clobEv:0 + 2.2: 0 + 25.1: _ZN9oceanbase6common10ob_is_clobENS0_9ObObjTypeENS0_15ObCollationTypeE:0 + 0: 0 + 27: _ZN9oceanbase6common5ObObj8set_nullEv:64 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:64 + 0: 4 + 0.1: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:40 + 0: 4 + 29: _ZN9oceanbase6common8ObStringC2Ev:3026 + 1: 178 + 34.1: _ZNK9oceanbase6common5ObObj18get_collation_typeEv:684 + 0: _ZNK9oceanbase6common9ObObjMeta18get_collation_typeEv:684 + 0: 76 + 42: _ZNK9oceanbase6common8ObString6lengthEv:28 + 0: 4 + 44: _ZNK9oceanbase6common15ObObjCastParams5allocEl:136 + 3: 4 + 5.1: 4 + 47.1: _ZNK9oceanbase6common5ObObj18get_collation_typeEv:24 + 0: _ZNK9oceanbase6common9ObObjMeta18get_collation_typeEv:24 + 0: 4 + 47.2: _ZN9oceanbase6common8ObString3ptrEv:28 + 0: 4 + 47.3: _ZNK9oceanbase6common8ObString6lengthEv:24 + 0: 4 + 58: _ZN9oceanbase6common14ObCharsetUtils13get_const_strENS0_15ObCollationTypeEi:384 + 3.2: 4 + 4.1: 4 + 5: 4 + 61.1: _ZNK9oceanbase6common8ObString6lengthEv:48 + 0: 4 + 62: _ZNK9oceanbase6common5ObObj18get_collation_typeEv:24 + 0: _ZNK9oceanbase6common9ObObjMeta18get_collation_typeEv:24 + 0: 4 + 67: _ZNK9oceanbase6common5ObObj18get_collation_typeEv:52 + 0: _ZNK9oceanbase6common9ObObjMeta18get_collation_typeEv:52 + 0: 4 + 77: _ZNK9oceanbase6common8ObString6lengthEv:40 + 0: 4 + 92: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:36 + 2: 4 + 93: _ZN9oceanbase6common5ObObj13set_lob_valueENS0_9ObObjTypeEPKci:684 + 2: _ZN9oceanbase6common9ObObjMeta8set_typeERKNS0_9ObObjTypeE:404 + 2: 4 + 3: 4 + 13: 4 + 14: 4 + 4: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:28 + 0: 4 + 8: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:28 + 0: 4 + 11: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:20 + 0: 4 + 12.1: _ZN9oceanbase6common17ob_is_string_typeENS0_9ObObjTypeE:76 + 0: 4 + 0: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:36 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:36 + 2: 4 + 17: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:48 + 0: 4 + 3: _ZN9oceanbase6common9ObObjMeta9set_inrowEv:160 + 0: _ZN9oceanbase6common10ObLobScale10set_in_rowEv:160 + 0: 4 + 95: _ZN9oceanbase6common5ObObj10set_stringENS0_9ObObjTypeEPKci:400 + 2: _ZN9oceanbase6common9ObObjMeta8set_typeERKNS0_9ObObjTypeE:400 + 3: 4 + 13: 4 + 14: 4 + 4: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:36 + 0: 4 + 8: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:36 + 0: 4 + 11: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:28 + 0: 4 + 12.1: _ZN9oceanbase6common17ob_is_string_typeENS0_9ObObjTypeE:76 + 0: 4 + 0: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:36 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:36 + 2: 4 + 17: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:36 + 0: 4 + 98: _ZN9oceanbase6common5ObObj18set_collation_typeERKNS0_15ObCollationTypeE:52 + 0: 4 + 0: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:36 + 0: 4 + 106.1: _ZN9oceanbase3lib13is_mysql_modeEv:224 + 2: _ZN9oceanbase3lib15get_compat_modeEv:224 + 2: 1 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:208 + 2: 1 + 2.1: 4 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:88 + 1: 4 + 108.1: _ZNK9oceanbase6common5ObObj14get_string_lenEv:20 + 0: 4 + 114.1: _ZNK9oceanbase6common5ObObj10get_stringEv:1730 + 1: 173 + 1: _ZN9oceanbase6common8ObStringC2ElPKc:519 + 5: 173 + 114.2: _ZN9oceanbase6commonL11copy_stringERKNS0_15ObObjCastParamsENS0_9ObObjTypeERKNS0_8ObStringERNS0_5ObObjEl:3983 + 6: 173 + 6.2: 173 _ZN9oceanbase6commonL11copy_stringERKNS0_15ObObjCastParamsENS0_9ObObjTypeEPKclRNS0_5ObObjEl.db28c62327e16d3ae5c8a88acfd53bbb:183 + 117: _ZNK9oceanbase6common5ObObj18get_collation_typeEv:1050 + 0: _ZNK9oceanbase6common9ObObjMeta18get_collation_typeEv:1050 + 0: 175 + 118.1: _ZN9oceanbase6common5ObObj18set_collation_typeERKNS0_15ObCollationTypeE:700 + 0: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:700 + 0: 175 + 120: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:875 + 2: 175 + 121: _ZN9oceanbase6common5ObObj9set_inrowEv:25 + 0: _ZN9oceanbase6common9ObObjMeta9set_inrowEv:25 + 0: _ZN9oceanbase6common10ObLobScale10set_in_rowEv:25 + 0: 5 + 127: _ZNK9oceanbase6common5ObObj14get_string_lenEv:20 + 0: 5 + 129.2: _ZN9oceanbase6common10ObAccuracy13set_precisionEs:30 + 0: 5 + 129.3: _ZN9oceanbase6common10ObAccuracy9set_scaleEs:40 + 0: 5 + 129.4: _ZN9oceanbase6common10ObAccuracy9set_scaleEs:30 + 0: 5 + 129.6: _ZN9oceanbase6common10ObAccuracy10set_lengthEi:10 + 0: 5 + 129.7: _ZN9oceanbase6common13ob_is_text_tcENS0_9ObObjTypeE:15 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:15 + 2: 5 +_ZN9oceanbase6common16ObArenaAllocator4freeEPv:70386:11935 + 0: 11731 +_ZN9oceanbase11transaction14ObTransService13do_commit_tx_ERNS0_8ObTxDescElRNS0_13ObITxCallbackERl:70254:256 + 4: 246 + 6: 246 + 7: 246 _ZN9oceanbase11transaction8ObTxDesc13set_commit_cbEPNS0_13ObITxCallbackE:264 + 8: 240 + 9: 240 _ZN9oceanbase11transaction14ObTransService22decide_tx_commit_info_ERNS0_8ObTxDescERPNS0_8ObTxPartE:241 + 10.1: 0 + 11.1: 221 + 12.1: 0 + 13.1: 221 + 13.2: 221 + 14: 240 + 14.1: 240 _ZN9oceanbase11transaction14ObTransService19local_ls_commit_tx_ERKNS0_9ObTransIDERKNS_5share6ObLSIDERKNS_6common9ObSEArrayIS6_Ll3ENS9_19ModulePageAllocatorELb0EEERKlRKNS9_8ObStringESG_Rl:234 + 21: 240 + 23.1: 0 + 25.1: 240 _ZZN9oceanbase11transaction14ObTransService13do_commit_tx_ERNS0_8ObTxDescElRNS0_13ObITxCallbackERlENK5$_919clEPKc.93feb755617c21c32b229b78773c290c:242 + 27.1: 0 + 28.1: 0 + 31.1: 0 + 34: 254 + 35: 0 + 37: 254 + 11.1: _ZN9oceanbase11transaction15ObTxTimeoutTask4initEPNS0_8ObTxDescEPNS0_14ObTransServiceE:10829 + 4: 221 + 5.1: 0 + 7.1: 221 + 8.1: 0 + 11: 221 + 12: 221 + 13: 221 + 13.1: _ZNK9oceanbase6common6ObAddreqERKS1_:13039 + 2: 221 + 2.1: 221 + 2.2: 221 + 14: _ZNK9oceanbase11transaction11ObTraceInfo18get_app_trace_infoEv:1768 + 0: 221 +_ZN9oceanbase12blocksstable19ObDatumRowkeyHelper20convert_datum_rowkeyERKNS_6common8ObRowkeyERNS0_13ObDatumRowkeyE:70157:166 + 1: 161 + 2: 161 + 4: 161 + 5: 0 + 6.1: 0 + 7.1: 166 + 8.1: 0 + 11: 166 + 4: _ZNK9oceanbase6common8ObRowkey8is_validEv:966 + 0: 161 + 7.1: _ZN9oceanbase12blocksstable13ObDatumRowkey11from_rowkeyERKNS_6common8ObRowkeyERNS0_20ObStorageDatumBufferE:55562 + 2: 161 + 11.1: 161 + 12.1: 0 + 15: 161 + 16: 161 + 17.1: 0 + 17.2: 166 + 17.3: 161 + 17.5: 166 + 18: 166 + 19.1: 0 + 23: 166 + 24: 166 + 25: 166 + 27: 166 + 7.1: _ZNK9oceanbase6common8ObRowkey10is_max_rowEv:3059 + 4: 0 + 4.1: 0 + 4.2: 0 + 5: 0 + 9: 0 + 5: _ZNK9oceanbase6common5ObObj12is_max_valueEv:3059 + 2: 161 + 2.1: 0 + 2: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:322 + 0: 161 + 8: _ZN9oceanbase12blocksstable13ObDatumRowkey14set_max_rowkeyEv:0 + 0: 0 + 0: _ZN9oceanbase6common13ObStoreRowkey7set_maxEv:0 + 0: 0 + 9.1: _ZNK9oceanbase6common8ObRowkey10is_min_rowEv:1449 + 4.1: 0 + 5: 0 + 9: 0 + 5: _ZNK9oceanbase6common5ObObj12is_min_valueEv:1449 + 2: 161 + 2.1: 0 + 10: _ZN9oceanbase12blocksstable13ObDatumRowkey14set_min_rowkeyEv:0 + 0: 0 + 0: _ZN9oceanbase6common13ObStoreRowkey7set_minEv:0 + 0: 0 + 11.2: _ZN9oceanbase12blocksstable20ObStorageDatumBuffer7reserveElb:6762 + 2: 161 + 5: 161 + 6: 0 + 7.1: 0 + 8.1: 161 + 9: 0 + 10.1: 0 + 11.1: 161 + 12.1: 0 + 13: 0 + 14.1: 0 + 16.1: 0 + 16.2: 0 + 22: 0 + 23: 0 + 25: 0 + 26: 0 + 29: 161 + 16.2: _ZN9oceanbase12blocksstable14ObStorageDatumC2Ev:0 + 0.1: _ZN9oceanbase12blocksstable14ObStorageDatum7set_nopEv:0 + 0: _ZN9oceanbase12blocksstable14ObStorageDatum13set_ext_valueEl:0 + 1: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:0 + 0: 0 + 1.1: _ZN9oceanbase6common11ObDatumDesc7set_extEv:0 + 0: 0 + 1.3: _ZN9oceanbase6common5ObObj7set_extEl:0 + 4: 0 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:0 + 0: 0 + 14: _ZN9oceanbase12blocksstable20ObStorageDatumBuffer10get_datumsEv:1127 + 0: 161 + 15: _ZNK9oceanbase6common8ObRowkey11get_obj_cntEv:644 + 0: 161 + 18: _ZNK9oceanbase6common8ObRowkey11get_obj_ptrEv:483 + 0: 161 + 18.1: _ZN9oceanbase12blocksstable14ObStorageDatum16from_obj_enhanceERKNS_6common5ObObjE:15928 + 2: 161 + 5: 161 + 7.1: 166 + 8.1: 0 + 12: 0 + 4: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:3381 + 0: 161 + 5: _ZNK9oceanbase6common5ObObj6is_extEv:644 + 0: _ZNK9oceanbase6common9ObObjMeta6is_extEv:644 + 0: 161 + 6: _ZNK9oceanbase6common5ObObj7get_extEv:0 + 4: 0 + 6.1: _ZN9oceanbase12blocksstable14ObStorageDatum13set_ext_valueEl:0 + 1: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:0 + 0: 0 + 1.1: _ZN9oceanbase6common11ObDatumDesc7set_extEv:0 + 0: 0 + 1.3: _ZN9oceanbase6common5ObObj7set_extEl:0 + 3: 0 + 4: 0 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:0 + 0: 0 + 0: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:0 + 0: 0 + 0.2: _ZN9oceanbase6common9ObObjMeta15set_extend_typeEh:0 + 0: 0 + 7.1: _ZN9oceanbase6common7ObDatum8from_objERKNS0_5ObObjE:7984 + 2: 161 + 3: 161 + 83: 0 + 84.1: 0 + 88: 166 + 3: _ZNK9oceanbase6common5ObObj7is_nullEv:1288 + 0: _ZNK9oceanbase6common9ObObjMeta7is_nullEv:1288 + 0: 161 + 4: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:0 + 0: 0 + 26: _ZN9oceanbase6common7ObDatum9obj2datumILNS0_17ObObjDatumMapTypeE1EEEvRKNS0_5ObObjE:0 + 2: 0 + 3: 0 + 65240.2: 0 + 32: _ZN9oceanbase6common7ObDatum9obj2datumILNS0_17ObObjDatumMapTypeE2EEEvRKNS0_5ObObjE:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 7: 0 + 9: 0 + 10: 0 + 55: _ZN9oceanbase6common7ObDatum9obj2datumILNS0_17ObObjDatumMapTypeE3EEEvRKNS0_5ObObjE:2656 + 2: 166 + 3: 166 + 61: _ZN9oceanbase6common7ObDatum9obj2datumILNS0_17ObObjDatumMapTypeE4EEEvRKNS0_5ObObjE:0 + 2: 0 + 3: 0 + 65: _ZN9oceanbase6common7ObDatum9obj2datumILNS0_17ObObjDatumMapTypeE5EEEvRKNS0_5ObObjE:0 + 2: 0 + 3: 0 + 70: _ZN9oceanbase6common7ObDatum9obj2datumILNS0_17ObObjDatumMapTypeE6EEEvRKNS0_5ObObjE:0 + 2: 0 + 3: 0 + 4: 0 + 75: _ZN9oceanbase6common7ObDatum9obj2datumILNS0_17ObObjDatumMapTypeE7EEEvRKNS0_5ObObjE:0 + 2: 0 + 3: 0 + 4: 0 + 79: _ZN9oceanbase6common7ObDatum9obj2datumILNS0_17ObObjDatumMapTypeE8EEEvRKNS0_5ObObjE:0 + 2: 0 + 3: _ZN9oceanbase6common11ObDatumDesc7set_extEv:0 + 0: 0 +_ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEED2Ev:70110:256 + 1: 246 + 2: 246 _ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE7destroyEv:251 + 3: 271 + 3.1: 0 + 3.2: 0 + 3.10: 269 _ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE16ObIntraPartitionD2Ev:277 + 3.12: 0 + 3.13: 0 + 3.14: 0 + 3.15: 0 + 3.16: 0 + 3.19: 0 + 3.20: 0 + 3: _ZN9oceanbase6common14ObArrayHashMapINS_3sql14ObHashPartColsEiED2Ev:8938 + 0.2: 0 + 0.3: 0 + 0: _ZN9oceanbase6common14ObArrayHashMapINS_3sql14ObHashPartColsEiE7destroyEv:7866 + 2: 271 + 4: 0 + 7: 268 + 3: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 0.1: _ZN9oceanbase6common10ObSpinLockD2Ev:1072 + 2: 268 _ZN9oceanbase6common12ObLatchMutexD1Ev:268 + 3.3: _ZN9oceanbase3sql17ObChunkDatumStore8IteratorD2Ev:16629 + 0: 241 + 0.1: 241 _ZN9oceanbase3sql17ObChunkDatumStore13ChunkIteratorD1Ev:259 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIteratorD2Ev:10363 + 0: 241 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator5resetEv:6025 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator12reset_cursorEv:6025 + 3: 241 + 3.4: _ZN9oceanbase3sql17ObChunkDatumStore8IteratorD2Ev:11374 + 0: 242 + 0.1: 242 _ZN9oceanbase3sql17ObChunkDatumStore13ChunkIteratorD1Ev:261 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIteratorD2Ev:7744 + 0: 242 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator5resetEv:6050 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator12reset_cursorEv:6050 + 3: 242 + 3.5: _ZN9oceanbase3sql17ObChunkDatumStore8IteratorD2Ev:11844 + 0: 252 + 0.1: 252 _ZN9oceanbase3sql17ObChunkDatumStore13ChunkIteratorD1Ev:257 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIteratorD2Ev:8064 + 0: 252 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator5resetEv:6300 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator12reset_cursorEv:6300 + 3: 252 + 3.6: _ZN9oceanbase6common4hash9ObHashMapINS_3sql24ObHashPartInfrastructureINS3_14ObHashPartColsENS3_19ObHashPartStoredRowEE14ObIntraPartKeyEPNS7_16ObIntraPartitionENS1_19NoPthreadDefendModeENS1_9hash_funcIS8_EENS1_8equal_toIS8_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS8_SA_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:4539 + 2: 267 + 2.2: 267 _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS_3sql24ObHashPartInfrastructureINS5_14ObHashPartColsENS5_19ObHashPartStoredRowEE14ObIntraPartKeyEPNS9_16ObIntraPartitionEEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEED2Ev:270 + 2: _ZN9oceanbase6common4hash11ObHashTableINS_3sql24ObHashPartInfrastructureINS3_14ObHashPartColsENS3_19ObHashPartStoredRowEE14ObIntraPartKeyENS1_11HashMapPairIS8_PNS7_16ObIntraPartitionEEENS1_9hash_funcIS8_EENS1_8equal_toIS8_EENS1_10pair_firstISC_EENS1_13SimpleAllocerINS1_15ObHashTableNodeISC_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:2403 + 2.1: 267 + 2.2: 0 + 3: 0 + 5.2: 0 + 2: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_3sql24ObHashPartInfrastructureINS5_14ObHashPartColsENS5_19ObHashPartStoredRowEE14ObIntraPartKeyEPNS9_16ObIntraPartitionEEENS1_5NLockENS1_5NCondEEEEEbRKT_:2136 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_3sql24ObHashPartInfrastructureINS5_14ObHashPartColsENS5_19ObHashPartStoredRowEE14ObIntraPartKeyEPNS9_16ObIntraPartitionEEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:2136 + 2: 267 + 3.7: _ZN9oceanbase6common4hash9ObHashMapINS_3sql24ObHashPartInfrastructureINS3_14ObHashPartColsENS3_19ObHashPartStoredRowEE14ObIntraPartKeyEPNS7_16ObIntraPartitionENS1_19NoPthreadDefendModeENS1_9hash_funcIS8_EENS1_8equal_toIS8_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS8_SA_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:4503 + 2: 267 + 2.2: 267 _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS_3sql24ObHashPartInfrastructureINS5_14ObHashPartColsENS5_19ObHashPartStoredRowEE14ObIntraPartKeyEPNS9_16ObIntraPartitionEEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEED2Ev:279 + 2: _ZN9oceanbase6common4hash11ObHashTableINS_3sql24ObHashPartInfrastructureINS3_14ObHashPartColsENS3_19ObHashPartStoredRowEE14ObIntraPartKeyENS1_11HashMapPairIS8_PNS7_16ObIntraPartitionEEENS1_9hash_funcIS8_EENS1_8equal_toIS8_EENS1_10pair_firstISC_EENS1_13SimpleAllocerINS1_15ObHashTableNodeISC_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:2367 + 2.1: 263 + 2.2: 0 + 3: 0 + 5.2: 0 + 2: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_3sql24ObHashPartInfrastructureINS5_14ObHashPartColsENS5_19ObHashPartStoredRowEE14ObIntraPartKeyEPNS9_16ObIntraPartitionEEENS1_5NLockENS1_5NCondEEEEEbRKT_:2104 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_3sql24ObHashPartInfrastructureINS5_14ObHashPartColsENS5_19ObHashPartStoredRowEE14ObIntraPartKeyEPNS9_16ObIntraPartitionEEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:2104 + 2: 263 + 3.11: _ZN9oceanbase3sql30ObHashPartitionExtendHashTableINS0_14ObHashPartColsEED2Ev:1084 + 0: 271 _ZN9oceanbase3sql30ObHashPartitionExtendHashTableINS0_14ObHashPartColsEE7destroyEv:271 + 0.2: 0 +_ZN9oceanbase3sql20ObDASIndexDMLAdaptorILi2ENS0_16ObDASDMLIteratorEE12write_tabletERS2_Rl:70102:285 + 1: 265 + 2: 265 + 3: 265 + 4.1: 265 _ZZN9oceanbase3sql20ObDASIndexDMLAdaptorILi2ENS0_16ObDASDMLIteratorEE12write_tabletERS2_RlENKUlPKcE_clES7_:265 + 6: 279 + 7: 0 + 8.1: 0 + 10.1: 279 _ZN9oceanbase3sql12ObDMLService14init_dml_paramERKNS0_17ObDASDMLBaseCtDefERNS0_17ObDASDMLBaseRtDefERNS_11transaction16ObTxReadSnapshotERNS_6common12ObIAllocatorERNS_7storage14ObDMLBaseParamE:298 + 11.1: 0 + 12.1: 280 + 13.1: 0 + 15.1: 280 + 15.2: 280 + 17.1: 0 + 17.2: 0 + 17.3: 0 + 17.5: 0 + 18: 0 + 19: 0 + 20: 0 + 21: 0 + 22.1: 0 + 24: 0 + 24.1: 0 + 26.1: 0 + 26.2: 0 + 27.1: 0 + 29.1: 0 + 29.2: 0 + 35.1: 0 + 37.1: 0 + 37.2: 0 + 43.1: 0 + 47: 287 + 12.1: _ZN9oceanbase3sql20ObDASIndexDMLAdaptorILi2ENS0_16ObDASDMLIteratorEE10write_rowsERKNS_5share6ObLSIDERKNS_6common10ObTabletIDERKNS0_13ObDASInsCtDefERKNS0_13ObDASInsRtDefERS2_Rl:24792 + 7: 274 + 9: 280 _ZN9oceanbase7storage15ObAccessService11insert_rowsERKNS_5share6ObLSIDERKNS_6common10ObTabletIDERNS_11transaction8ObTxDescERKNS0_14ObDMLBaseParamERKNS6_8ObIArrayImEEPNS6_16ObNewRowIteratorERl:293 + 17.1: 0 + 20: 0 + 8: _ZN9oceanbase5share11ObTenantEnv3mtlIPNS_7storage15ObAccessServiceEEET_v:10412 + 2: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:6302 + 2: 274 + 2.1: 0 + 2.2: 0 + 2.1: _ZN9oceanbase5share12ObTenantBase3getIPNS_7storage15ObAccessServiceEEET_v:4110 + 0: _ZN9oceanbase5share12ObTenantBase9inner_getENS1_8IdentityIPNS_7storage15ObAccessServiceEEE:4110 + 0: 274 + 15.2: _ZNK9oceanbase6common12ObIArrayWrapIPKNS_3sql14ObDASBaseCtDefEE5emptyEv:1400 + 0: 280 + 18: _ZNK9oceanbase6common12ObIArrayWrapIPKNS_3sql14ObDASBaseCtDefEE2atEl:0 + 6: 0 + 19: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql14ObDASBaseRtDefEE2atEl:0 + 6: 0 + 20: _ZN9oceanbase6common12ObIArrayWrapINS0_10ObTabletIDEE2atEl:0 + 6: 0 + 20.1: _ZN9oceanbase6common10ObTabletIDC2ERKS1_:0 + 0: 0 + 24: _ZN9oceanbase3sql16ObDASDMLIterator6rewindEPKNS0_17ObDASDMLBaseCtDefE:0 + 2: 0 + 3: _ZN9oceanbase3sql16ObDASDMLIterator9set_ctdefEPKNS0_17ObDASDMLBaseCtDefE:0 + 2: 0 + 3: 0 + 3.3: 0 + 3: _ZNK9oceanbase6common12ObIArrayWrapIlE5emptyEv:0 + 0: 0 + 0: _ZNK9oceanbase6common12ObIArrayWrapIlE5countEv:0 + 0: 0 +_ZN9oceanbase3sql7int_intERKNS0_6ObExprERNS0_9ObEvalCtxERNS_6common7ObDatumE:69765:288 + 1: 273 + 2: 279 + 2.2: 0 + 2.5: 279 + 4: 279 + 5: 279 + 6: 279 + 6.1: 280 + 7.1: 0 + 12: 280 + 2: _ZNK9oceanbase3sql6ObExpr4evalERNS0_9ObEvalCtxERPNS_6common7ObDatumE:26983 + 4: 273 + 6: 273 + 7: 273 + 9: 273 + 10: 0 + 10.1: 0 + 11: 0 + 13: 0 + 15.1: 273 + 15.2: 269 + 17: 269 + 18: 269 + 20: 269 _ZN9oceanbase3sql9ObExprAdd11add_int_intERKNS0_6ObExprERNS0_9ObEvalCtxERNS_6common7ObDatumE:280 + 21: 281 + 22: 281 + 9: _ZNK9oceanbase3sql6ObExpr15is_batch_resultEv:1092 + 0: 273 + 11: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 24: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:0 + 0: 0 + 2.5: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:1116 + 0: 279 + 2.6: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:0 + 0: 0 + 5: _ZNK9oceanbase6common7ObDatum7get_intEv:1674 + 0: 279 + 6.1: _ZN9oceanbase6common15int_range_checkIlEEiNS0_9ObObjTypeET_Rl:8649 + 4: 279 + 4: _ZN9oceanbase6common19numeric_range_checkIllEEiT_T0_S3_RS3_:2511 + 8: 279 + 11.1: 279 + 6.2: _ZN9oceanbase3sqlL12get_cast_retERKmiRi:0 + 6.2: 0 + 9: _ZN9oceanbase6common7ObDatum7set_intEl:3640 + 0: 280 +_ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_NS0_13LabelInfoItemEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS6_EELi82ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE5clearEv:69459:1 + 1: 1 + 3: 1 + 3.1: 1 + 6.1: 729 + 6.3: 729 + 7: 729 + 10: 817 + 11.1: 4 + 13: 2 + 14: 3 _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS0_8ObStringENS0_13LabelInfoItemEEEEELi82ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEE4freeEPS8_:1 + 18: 785 + 20: 0 + 22: 0 + 3: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringENS0_13LabelInfoItemEEENS0_7ObLatchENS1_5NCondEEEEEbRKT_:25 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringENS0_13LabelInfoItemEEENS0_7ObLatchENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:25 + 2: 1 + 65255: 1 + 8: _ZN9oceanbase6common4hash16ObBucketLockCondINS1_11HashMapPairINS0_8ObStringENS0_13LabelInfoItemEEENS1_24LatchReadWriteDefendModeEE4lockEv:5110 + 2: 730 + 8.1: _ZN9oceanbase6common4hash16LatchWriteLockerC2ERNS0_7ObLatchE:21053 + 3: 817 _ZN9oceanbase6common7ObLatch6wrlockEjlPKj:732 + 4.1: 0 + 12: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_11HashMapPairINS0_8ObStringENS0_13LabelInfoItemEEEE16check_magic_codeEv:8 + 0: 2 + 12.1: _ZL12abort_unlessb:11 + 5: 2 + 6: 1 + 19: _ZN9oceanbase6common4hash16LatchWriteLockerD2Ev:8639 + 2: 785 + 3: 785 _ZN9oceanbase6common7ObLatch6unlockEPKj:785 + 3.1: 0 + 19.1: _ZN9oceanbase6common4hash16LatchWriteLockerD2Ev:0 + 2: 0 + 3: 0 + 3.1: 0 +_ZN9oceanbase7storage10ObRowsInfoD2Ev:69063:313 + 1: 288 + 2: 243 + 2.3: 259 _ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable13ObDatumRowkeyELl1ENS0_19ModulePageAllocatorELb0EED2Ev:288 + 2.1: _ZN9oceanbase6common10ObTabletIDD2Ev:2016 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:2016 + 0: 288 + 2.2: _ZN9oceanbase7storage10ObRowsInfo11ExistHelperD2Ev:5456 + 2: 288 _ZN9oceanbase7storage20ObTableAccessContextD1Ev:293 + 2.1: 283 _ZN9oceanbase7storage16ObTableIterParamD1Ev:301 + 2.4: _ZN9oceanbase6common23ObReserveArenaAllocatorILl1024EED2Ev:30273 + 1: 243 + 3.1: 1 + 2: _ZN9oceanbase6common23ObReserveArenaAllocatorILl1024EE5resetEv:7405 + 2: 243 + 3: 243 + 4: _ZN9oceanbase6common16ObArenaAllocator5resetEv:4003 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:4003 + 4.1: 243 + 6: 1 + 7: 1 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:3 + 0: 1 + 5.1: _ZL12abort_unlessb:7 + 5: 1 + 6: 1 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:67 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:67 + 0: 1 + 0.2: 1 + 0.1: _ZN9oceanbase6common7ob_freeEPv:46 + 2: 1 + 3: 1 + 4: 1 + 5: 1 + 4: _ZL12abort_unlessb:9 + 5: 1 + 6: 1 + 3: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:18479 + 0: 243 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEED2Ev:14105 + 0: 243 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:9245 + 13: 243 + 14: 243 + 15: 243 + 18: 243 + 2.5: _ZN9oceanbase6common23ObReserveArenaAllocatorILl1024EED2Ev:19811 + 1: 243 + 3.1: 1 + 2: _ZN9oceanbase6common23ObReserveArenaAllocatorILl1024EE5resetEv:6679 + 2: 243 + 3: 243 + 4: _ZN9oceanbase6common16ObArenaAllocator5resetEv:4006 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:4006 + 4.1: 243 + 6: 1 + 7: 1 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:13 + 0: 1 + 5.1: _ZL12abort_unlessb:7 + 5: 1 + 6: 1 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:68 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:68 + 0: 1 + 0.2: 1 + 0.1: _ZN9oceanbase6common7ob_freeEPv:47 + 2: 1 + 3: 1 + 4: 1 + 5: 1 + 4: _ZL12abort_unlessb:9 + 5: 1 + 6: 1 + 3: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:12393 + 0: 243 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEED2Ev:10692 + 0: 243 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:8505 + 13: 243 + 14: 243 + 15: 243 + 18: 243 +_ZN9oceanbase7storage10ObRowsInfoD1Ev:69063:313 + 1: 288 + 2: 243 + 2.3: 259 _ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable13ObDatumRowkeyELl1ENS0_19ModulePageAllocatorELb0EED2Ev:288 + 2.1: _ZN9oceanbase6common10ObTabletIDD2Ev:2016 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:2016 + 0: 288 + 2.2: _ZN9oceanbase7storage10ObRowsInfo11ExistHelperD2Ev:5456 + 2: 288 _ZN9oceanbase7storage20ObTableAccessContextD1Ev:293 + 2.1: 283 _ZN9oceanbase7storage16ObTableIterParamD1Ev:301 + 2.4: _ZN9oceanbase6common23ObReserveArenaAllocatorILl1024EED2Ev:30273 + 1: 243 + 3.1: 1 + 2: _ZN9oceanbase6common23ObReserveArenaAllocatorILl1024EE5resetEv:7405 + 2: 243 + 3: 243 + 4: _ZN9oceanbase6common16ObArenaAllocator5resetEv:4003 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:4003 + 4.1: 243 + 6: 1 + 7: 1 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:3 + 0: 1 + 5.1: _ZL12abort_unlessb:7 + 5: 1 + 6: 1 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:67 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:67 + 0: 1 + 0.2: 1 + 0.1: _ZN9oceanbase6common7ob_freeEPv:46 + 2: 1 + 3: 1 + 4: 1 + 5: 1 + 4: _ZL12abort_unlessb:9 + 5: 1 + 6: 1 + 3: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:18479 + 0: 243 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEED2Ev:14105 + 0: 243 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:9245 + 13: 243 + 14: 243 + 15: 243 + 18: 243 + 2.5: _ZN9oceanbase6common23ObReserveArenaAllocatorILl1024EED2Ev:19811 + 1: 243 + 3.1: 1 + 2: _ZN9oceanbase6common23ObReserveArenaAllocatorILl1024EE5resetEv:6679 + 2: 243 + 3: 243 + 4: _ZN9oceanbase6common16ObArenaAllocator5resetEv:4006 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:4006 + 4.1: 243 + 6: 1 + 7: 1 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:13 + 0: 1 + 5.1: _ZL12abort_unlessb:7 + 5: 1 + 6: 1 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:68 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:68 + 0: 1 + 0.2: 1 + 0.1: _ZN9oceanbase6common7ob_freeEPv:47 + 2: 1 + 3: 1 + 4: 1 + 5: 1 + 4: _ZL12abort_unlessb:9 + 5: 1 + 6: 1 + 3: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:12393 + 0: 243 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEED2Ev:10692 + 0: 243 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:8505 + 13: 243 + 14: 243 + 15: 243 + 18: 243 +_ZN9oceanbase6common8ObIOFlagC2Ev:69004:5341 + 1: 5308 + 2: 5308 + 4: 5308 +_ZN9oceanbase6common8ObIOFlagC1Ev:69004:5341 + 1: 5308 + 2: 5308 + 4: 5308 +_ZN9oceanbase11transaction9tablelock17ObOBJLockCallback12trans_commitEv:68897:704 + 1: 672 + 2: 672 + 4: 672 + 5: 672 + 12: 672 + 13: 2 + 14.1: 2 + 16: 672 _ZN9oceanbase11transaction9tablelock14ObLockMemtable18remove_lock_recordERKNS1_13ObTableLockOpEb:688 + 28: 0 + 29: 2 + 30.1: 2 + 31.1: 0 + 31.2: 0 + 34.1: 2 + 42: 2 + 43.1: 2 + 46: 681 + 31.1: _ZNK9oceanbase8memtable10ObIMvccCtx18get_commit_versionEv:0 + 0: 0 +_ZN9oceanbase6common11ObArrayImplINS_3sql18ObPCConstParamInfoENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev:68862:1064 + 1: 998 + 3: 998 + 3.2: 0 + 2: _ZN9oceanbase6common11ObArrayImplINS_3sql18ObPCConstParamInfoENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE7destroyEv:31936 + 2: 998 + 3.1: 0 + 3.3: 0 + 4: 0 + 6: 0 + 7: 0 + 9: 998 + 11: 998 + 4: _ZN9oceanbase3sql18ObPCConstParamInfoD2Ev:0 + 0: 0 + 0.1: 0 +_ZN9oceanbase6commonL11string_uintENS0_9ObObjTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS4_m.db28c62327e16d3ae5c8a88acfd53bbb:68683:134 + 2: 133 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 3: 133 + 5: 133 + 5.1: 0 + 5.2: 128 + 5.3: 128 + 8: 0 + 9.1: 0 + 11.1: 128 + 11.2: 0 + 12: 1 + 13.1: 1 + 14.1: 1 + 14.11: 1 + 14.14: 1 + 16: 127 + 17: 127 + 19: 158 + 19.2: 127 _ZN9oceanbase6common30common_string_unsigned_integerERKmRKNS0_9ObObjTypeERKNS0_15ObCollationTypeERKNS0_8ObStringEbRm:134 + 21.1: 158 + 22.1: 0 + 24.2: 164 + 24.8: 169 + 24.9: 0 + 27: 150 + 30: 153 + 30.2: 1 + 31: 151 + 5: _ZNK9oceanbase6common5ObObj14get_type_classEv:1862 + 0: _ZNK9oceanbase6common9ObObjMeta14get_type_classEv:1862 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:1064 + 0: 133 + 0.1: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:798 + 2: 133 + 5.2: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:1408 + 2: 128 + 2.1: 128 + 11.1: _ZN9oceanbase3lib14is_oracle_modeEv:5632 + 2: _ZN9oceanbase3lib15get_compat_modeEv:5632 + 2: 128 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:3584 + 2: 128 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 11.2: _ZNK9oceanbase6common5ObObj7is_blobEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta7is_blobEv:0 + 2.1: 0 + 14.1: _ZN9oceanbase3lib14is_oracle_modeEv:47 + 2: _ZN9oceanbase3lib15get_compat_modeEv:47 + 2: 1 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:31 + 2: 1 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 14.12: _ZN9oceanbase6common8ObLogger10get_loggerEv:12 + 2: 1 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 14.15: _ZN9oceanbase6common8ObLogger10get_loggerEv:12 + 2: 1 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 16: _ZNK9oceanbase6common5ObObj10get_stringEv:1651 + 1: 127 + 1: _ZN9oceanbase6common8ObStringC2ElPKc:381 + 5: 127 + 19: _ZNK9oceanbase6common5ObObj8get_typeEv:508 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:508 + 0: 127 + 19.1: _ZNK9oceanbase6common5ObObj18get_collation_typeEv:508 + 0: _ZNK9oceanbase6common9ObObjMeta18get_collation_typeEv:508 + 0: 127 + 19.3: _ZN9oceanbase6common12get_cast_retEmiRi:1106 + 6: 158 + 8.2: 0 + 10: 0 + 11: 0 + 22.1: _ZN9oceanbase6common16uint_upper_checkENS0_9ObObjTypeERm:0 + 2: 0 + 2: _ZN9oceanbase6common19numeric_upper_checkImmEEiT_T0_RS3_:0 + 5: 0 + 7: 0 + 22.2: _ZN9oceanbase6common12get_cast_retEmiRi:0 + 8.2: 0 + 10: 0 + 11: 0 + 24.8: _ZN9oceanbase6common5ObObj8set_uintENS0_9ObObjTypeEm:15790 + 4: 150 + 2: _ZN9oceanbase6common9ObObjMeta8set_typeERKNS0_9ObObjTypeE:11470 + 2: 169 + 3: 169 + 13: 165 + 14: 165 + 4: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:12 + 0: 1 + 8: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:0 + 0: 0 + 11: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:0 + 0: 0 + 12.1: _ZN9oceanbase6common17ob_is_string_typeENS0_9ObObjTypeE:3300 + 0: 165 + 0: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:1485 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:1485 + 2: 165 + 17: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:1320 + 0: 165 + 3: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:750 + 0: 150 + 24.10: _ZN9oceanbase6common5ObObj8set_uintENS0_9ObObjTypeEm:103 + 4: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_typeERKNS0_9ObObjTypeE:62 + 2: 0 + 3: 0 + 13: 1 + 14: 1 + 4: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:0 + 0: 0 + 8: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:12 + 0: 1 + 11: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:7 + 0: 1 + 12.1: _ZN9oceanbase6common17ob_is_string_typeENS0_9ObObjTypeE:20 + 0: 1 + 0: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:9 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:9 + 2: 1 + 17: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:0 + 0: 0 + 3: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:5 + 0: 1 + 24.11: _ZN9oceanbase6common5ObObj8set_nullEv:13 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:13 + 0: 1 + 0.1: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:7 + 0: 1 + 28: _ZNK9oceanbase6common5ObObj10get_uint64Ev:600 + 0: 150 + 28.1: _ZN9oceanbase6common25get_precision_for_integerImEEsT_:10220 + 45.1: 825 + 49: 1 + 530: 150 + 30.2: _ZN9oceanbase6common10ObAccuracy9set_scaleEs:6 + 0: 1 + 30.3: _ZN9oceanbase6common10ObAccuracy13set_precisionEs:4 + 0: 1 + 30.4: _ZN9oceanbase6common10ObAccuracy10set_lengthEi:6 + 0: 1 +_ZN9oceanbase8observer15ObSyncCmdDriver15response_resultERNS0_16ObMySQLResultSetE:68679:281 + 1: 258 + 2: 271 _ZN9oceanbase6common20ObActiveSessionGuard8get_statEv:262 + 6: 271 _ZN9oceanbase3sql11ObResultSet4openEv:278 + 8: 0 + 9: 0 + 10: 0 + 10.2: 0 + 12: 0 + 13: 0 + 14.1: 0 + 18: 0 + 19: 0 + 20.1: 0 + 24: 0 + 25.1: 0 + 27: 0 + 28.1: 0 + 29: 0 + 30: 0 + 31.1: 0 + 32.1: 0 + 33.1: 0 + 34: 0 + 35: 0 + 36.1: 0 + 39: 0 + 39.1: 0 + 40.1: 0 + 45: 219 + 48: 218 _ZN9oceanbase8observer15ObSyncCmdDriver30process_schema_version_changesERKNS0_16ObMySQLResultSetE:223 + 50: 252 _ZN9oceanbase3sql11ObResultSet5closeEv:253 + 51.1: 0 + 52.2: 0 + 53: 0 + 53.1: 0 + 54: 0 + 54.1: 0 + 57: 249 + 58: 249 + 59: 249 + 60: 251 + 61: 251 + 62.1: 0 + 64: 251 + 65: 251 + 67: 251 + 68: 251 + 69: 251 + 69.2: 252 + 70: 281 _ZThn56_N9oceanbase8observer8ObMPBase14send_ok_packetERNS_3sql16ObSQLSessionInfoERNS0_10ObOKPParamEPNS_7obmysql13ObMySQLPacketE:268 + 71.1: 0 + 76: 0 + 76.2: 0 + 78: 0 + 79: 0 + 80.1: 0 + 83: 281 _ZN9oceanbase6common20ObActiveSessionGuard8get_statEv:288 + 84: 276 + 10: _ZNK9oceanbase3sql11ObResultSet13get_stmt_typeEv:0 + 2: 0 + 10.1: _ZNK9oceanbase3sql11ObResultSet19has_global_variableEv:0 + 0: 0 + 28.1: _ZNK9oceanbase3sql11ObResultSet12is_with_rowsEv:2717 + 2: 209 + 2.1: _ZNK9oceanbase3sql11ObResultSet15is_prepare_stmtEv:0 + 2: 0 + 29.1: _ZNK9oceanbase3sql11ObResultSet10is_pl_stmtENS0_4stmt8StmtTypeE:0 + 3: 0 + 39: _ZNK9oceanbase8observer16ObMySQLResultSet15has_more_resultEv:0 + 2: 0 + 52.1: _ZNK9oceanbase3sql11ObResultSet12is_with_rowsEv:3276 + 2: 252 + 2.1: _ZNK9oceanbase3sql11ObResultSet15is_prepare_stmtEv:0 + 2: 0 + 53.2: _ZNK9oceanbase8observer16ObMySQLResultSet15has_more_resultEv:0 + 2: 0 + 56: _ZN9oceanbase8observer10ObOKPParamC2Ev:7470 + 2: 249 + 7: 249 + 8: 249 + 12: 249 + 57: _ZNK9oceanbase3sql11ObResultSet11get_messageEv:1743 + 2: 249 + 58: _ZNK9oceanbase3sql11ObResultSet17get_affected_rowsEv:1743 + 2: 249 + 59: _ZN9oceanbase3sql11ObResultSet28get_last_insert_id_to_clientEv:1743 + 2: 249 + 60: _ZN9oceanbase6common25ob_get_tsi_warning_bufferEv:249 + 2: 249 _ZTWN9oceanbase6common16g_warning_bufferE:260 + 65: _ZNK9oceanbase6common15ObWarningBuffer26get_readable_warning_countEv:3514 + 2: 251 + 67.1: _ZN9oceanbase3sql18ObPartitionHitInfo8get_boolEv:1506 + 0: 251 + 68: _ZNK9oceanbase8observer16ObMySQLResultSet15has_more_resultEv:1506 + 2: 251 + 69.1: _ZNK9oceanbase3sql11ObResultSet12is_with_rowsEv:0 + 2: 0 + 76.2: _ZNK9oceanbase8observer16ObQueryRetryCtrl10need_retryEv:0 + 3: 0 + 78.1: _ZN9oceanbase3sql18ObPartitionHitInfo8get_boolEv:0 + 0: 0 +easy_baseth_pool_invoke.4cdd23ddacb096b5c68ec580fb4fcf84:68568:822 + 1: 797 + 2: 797 ev_userdata:797 + 7: 785 ev_now:786 + 8: 705 + 8.1: 0 + 10: 722 ev_invoke_pending:733 + 12: 677 + 12.1: 0 + 13: 0 + 15: 0 + 16: 0 + 16.1: 0 + 18.1: 0 + 19: 0 + 20: 0 + 22: 0 + 27: 0 + 27.1: 0 + 28: 0 + 29: 0 + 32: 0 + 32.1: 0 + 33: 0 + 34: 0 + 38: 664 + 40: 664 + 42: 0 + 43.1: 0 + 43.2: 0 + 43.3: 0 + 43.4: 0 + 45: 626 + 41: easy_baseth_pool_wakeup_session:0 + 2: 0 + 10: 0 + 12: 0 + 12.1: 0 + 13: 0 + 14.1: 0 + 14.2: 0 + 14.3: 0 + 14.4: 0 + 16: 0 + 20: 0 + 20.1: 0 + 21: 0 + 24: 0 + 24.1: 0 + 25: 0 + 27: 0 + 10: easy_spin_lock:0 + 5: 0 + 5.1: 0 + 11.1: 0 + 13: 0 + 21: 0 + 21.1: 0 + 26: 0 + 5.1: easy_atomic_cmp_set:0 + 2: 0 + 21.1: easy_atomic_cmp_set:0 + 2: 0 + 15: easy_list_del:0 + 2: 0 + 3.1: 0 + 2: __easy_list_del:0 + 2: 0 + 3: 0 +_ZN9oceanbase11transaction14ObTransService8init_tx_ERNS0_8ObTxDescEj:68362:549 + 1: 514 + 2: 514 + 4: 514 + 5: 514 + 6: 514 + 7: 514 + 8: 514 + 9: 514 + 3: _ZN9oceanbase6common6ObAddraSERKS1_:19532 + 1: 514 + 2: 514 + 3: 514 + 5: _ZN9oceanbase6common16ObClockGenerator8getClockEv:8738 + 4: 514 + 5.1: 0 + 8: 514 + 6: _ZN9oceanbase6common16ObClockGenerator6get_usEv:0 + 2: 0 +_ZZN9oceanbase11transaction14ObTransService41fetch_cflict_tx_ids_from_mem_ctx_to_desc_ERNS_8memtable15ObMvccAccessCtxEENK6$_1014clEPKc.93feb755617c21c32b229b78773c290c:68319:1103 + 0: 1039 + 0.1: 0 + 0.2: 1022 + 0.3: 1039 _ZN9oceanbase6common8ObLogger13need_to_printEmi:1045 + 0.4: 0 + 0.8: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:17663 + 2: 1039 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.1: _ZN9oceanbase6common7ObLogKVIiLb0EEC2EPKcRKi:0 + 0: 0 + 0.5: _ZN9oceanbase6common7ObLogKVIPKcLb1EEC2ES3_OKS3_:0 + 0: 0 + 0.7: _ZN9oceanbase6common7ObLogKVIRKNS0_7ObArrayINS_11transaction16ObTransIDAndAddrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEEELb0EEC2EPKcSC_:0 + 0: 0 +_ZN9oceanbase6common6number8ObNumber13from_integer_IlEEiT_RNS2_10IAllocatorE:68287:237 + 0: 228 + 1: 228 + 5: 228 + 16: 228 + 25: 228 + 26: 228 + 30: 720 + 31: 720 + 32: 720 + 34: 0 + 42: 233 + 53: 240 _ZN9oceanbase6common6number8ObNumber10TAllocatorINS_3sql19ObNumStackAllocatorILl2EEEE5allocEl:242 + 54: 0 + 55.1: 0 + 57: 233 + 58: 219 + 61: 219 + 6: _ZN9oceanbase6common6number8ObNumber8set_zeroEv:0 + 2: 0 + 4: 0 + 58: _ZN9oceanbase6common6number8ObNumber6assignEjPj:1533 + 3: 219 + 4: 219 +_ZN9oceanbase11transaction25ObMulSourceTxDataNotifier6notifyERKNS_6common9ObSEArrayINS0_14ObTxBufferNodeELl1ENS2_19ModulePageAllocatorELb0EEENS0_10NotifyTypeERKNS0_24ObMulSourceDataNotifyArgEPNS0_14ObPartTransCtxE:68170:582 + 4: 532 + 5: 532 + 7: 532 + 8: 532 + 9: 0 + 10.1: 0 + 15.1: 0 + 15.3: 536 + 15.4: 536 + 20.1: 0 + 21.1: 0 + 23: 0 + 25: 0 + 29: 0 + 33: 0 + 37: 0 + 41.1: 0 + 45: 0 + 49: 0 + 53: 0 + 57: 0 + 58.1: 0 + 63: 562 + 64.8: 562 + 11.1: _ZN9oceanbase11transaction14ObPartTransCtx16get_memtable_ctxEv:15428 + 0: 532 + 16: _ZNK9oceanbase6common12ObIArrayWrapINS_11transaction14ObTxBufferNodeEE2atEl:0 + 6: 0 + 17: _ZNK9oceanbase6common8ObString3ptrEv:0 + 0: 0 + 18: _ZNK9oceanbase6common8ObString6lengthEv:0 + 0: 0 + 20: _ZNK9oceanbase11transaction14ObTxBufferNode12is_submittedEv:0 + 0: 0 + 21: _ZNK9oceanbase11transaction14ObTxBufferNode9is_syncedEv:0 + 0: 0 +_ZNK9oceanbase5share6schema21ObSimpleTableSchemaV214get_part_levelEv:68110:5036 + 1: 4865 + 2: 4865 + 3: 4865 + 3.1: 4865 + 4: 4865 + 4.1: 0 + 5: 0 + 5.1: 0 + 6: 0 + 6.2: _ZNK9oceanbase6common8ObString5emptyEv:0 + 2: 0 + 2.1: 0 +_ZN9oceanbase3sql15ObTableInsertOp18ins_rows_post_procEv:68082:284 + 1: 269 + 2: 269 + 3: 269 + 5: 288 + 6.1: 0 + 8: 0 + 14: 0 + 14.1: 288 + 15: 282 + 20: 295 _ZN9oceanbase3sql17ObPhysicalPlanCtx21sync_last_value_localEv:292 + 21.1: 0 + 24: 295 + 25: 295 _ZN9oceanbase3sql17ObPhysicalPlanCtx22sync_last_value_globalEv:303 + 26.1: 0 + 28.1: 273 + 28.2: 0 + 28.4: 0 + 28.5: 0 + 28.11: 0 + 29: 273 + 30: 273 + 32: 273 + 32.1: 273 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:283 + 32.2: 0 + 33: 0 + 34.1: 0 + 37: 281 + 3: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:1883 + 2: 269 + 5: _ZN9oceanbase3sql15ObTableModifyOp19submit_all_dml_taskEv:14258 + 2: 269 + 3: 269 + 4: 269 _ZN9oceanbase3sql8ObDASRef16execute_all_taskEv:279 + 5.1: 0 + 6.1: 302 _ZN9oceanbase3sql8ObDASRef14close_all_taskEv:267 + 7.1: 0 + 12: 0 + 3: _ZNK9oceanbase3sql8ObDASRef8has_taskEv:1614 + 0: _ZNK9oceanbase6common10ObObjStoreIPNS_3sql12ObIDASTaskOpERNS0_12ObIAllocatorELb0EE5emptyEv:1614 + 0: 269 + 9: _ZN9oceanbase3sql10ObDMLRtCtx5reuseEv:1208 + 2: 302 _ZN9oceanbase3sql8ObDASRef5reuseEv:305 + 9: _ZN9oceanbase3sql17ObPhysicalPlanCtx27set_last_insert_id_cur_stmtEm:0 + 2: 0 + 14.1: _ZNK9oceanbase6common12ObIArrayWrapINS0_11ObArrayWrapINS_3sql10ObInsRtDefEEEE5countEv:2016 + 0: 288 + 15: _ZN9oceanbase6common12ObIArrayWrapINS0_11ObArrayWrapINS_3sql10ObInsRtDefEEEE2atEl:1974 + 15.1: _ZN9oceanbase6common12ObIArrayWrapINS_3sql10ObInsRtDefEE2atEl:1128 + 6: 282 + 17: _ZN9oceanbase3sql17ObPhysicalPlanCtx21add_row_matched_countEl:2044 + 0: 292 + 18: _ZN9oceanbase3sql17ObPhysicalPlanCtx17add_affected_rowsEl:2044 + 2: 292 + 28.1: _ZN9oceanbase3lib20is_trace_log_enabledEv:2188 + 2: 277 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:282 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:1911 + 2: 273 + 28.2: _ZN9oceanbase6common18get_trace_recorderEv:0 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:0 + 7: 0 + 8: 0 + 8.1: 0 + 28.4: _ZN9oceanbase3lib20is_trace_log_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:0 + 2: 0 + 28.12: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:0 + 0: 0 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 32.3: _ZNK9oceanbase6common14ObServerConfig22enable_defensive_checkEv:2502 + 3: 278 + 3.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:0 + 2: 0 + 33: _ZN9oceanbase3sql15ObTableInsertOp25check_insert_affected_rowEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 3.1: 0 + 3.2: 0 + 3.3: 0 + 3.5: 0 + 6: 0 + 8.1: 0 + 8.2: 0 + 8.3: 0 + 8.5: 0 + 11: 0 + 12: 0 + 14.1: 0 + 14.13: 0 + 14.20: 0 + 15.1: 0 + 24.1: 0 + 25: 0 + 26: 0 + 28.1: 0 + 28.13: 0 + 28.20: 0 + 29.1: 0 + 4: _ZN9oceanbase3sql11get_my_specINS0_15ObTableInsertOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:0 + 5: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:0 + 2: 0 + 4.1: _ZNK9oceanbase6common12ObIArrayWrapINS0_11ObArrayWrapIPNS_3sql10ObInsCtDefEEEE2atEl:0 + 6: 0 + 5: _ZN9oceanbase6common12ObIArrayWrapINS0_11ObArrayWrapINS_3sql10ObInsRtDefEEEE2atEl:0 + 6: 0 + 6: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql10ObInsCtDefEE2atEl:0 + 6: 0 + 7: _ZN9oceanbase6common12ObIArrayWrapINS_3sql10ObInsRtDefEE2atEl:0 + 6: 0 + 10: _ZN9oceanbase6common12ObIArrayWrapINS_3sql10ObInsRtDefEE2atEl:0 + 6: 0 + 14.1: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 14.14: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 14.21: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 28.1: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 28.14: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 28.21: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 +_ZN9oceanbase7storage19ObMemtableMgrHandleD2Ev:67944:1367 + 1: 1367 + 2.1: 0 + 3: 1339 + 2: _ZN9oceanbase7storage19ObMemtableMgrHandle5resetEv:49338 + 0: 1255 + 2: 1367 + 3: 1255 + 8: 1335 + 10: 0 + 11: 0 + 14: 0 + 65527: 1367 +_ZN9oceanbase7storage19ObMemtableMgrHandleD1Ev:67944:1367 + 1: 1367 + 2.1: 0 + 3: 1339 + 2: _ZN9oceanbase7storage19ObMemtableMgrHandle5resetEv:49338 + 0: 1255 + 2: 1367 + 3: 1255 + 8: 1335 + 10: 0 + 11: 0 + 14: 0 + 65527: 1367 +_ZN9oceanbase7storage21ObIndexTreePrefetcher20lookup_in_index_treeERNS0_19ObSSTableReadHandleE:67794:77 + 1: 74 + 2: 74 + 3: 74 + 4: 4 + 5.1: 4 + 6.1: 74 + 7: 4 + 8.1: 4 + 9.1: 74 + 10.1: 4 + 11.1: 71 + 12.1: 4 + 13.1: 88 _ZN9oceanbase12blocksstable22ObIndexBlockRowScanner4openERKNS0_12MacroBlockIdERKNS0_16ObMicroBlockDataERKNS0_13ObDatumRowkeyEs:72 + 18.1: 4 + 20.1: 88 + 20.2: 0 + 20.3: 0 + 20.4: 0 + 20.6: 0 + 20.7: 0 + 27.1: 100 + 27.3: 84 + 28: 166 _ZN9oceanbase12blocksstable22ObIndexBlockRowScanner8get_nextERNS0_16ObMicroIndexInfoE:157 + 30.1: 4 + 32.1: 166 + 32.2: 86 _ZN9oceanbase7storage21ObIndexTreePrefetcher18check_bloom_filterERKNS_12blocksstable16ObMicroIndexInfoERNS0_19ObSSTableReadHandleE:86 + 33.1: 4 + 34.1: 151 + 39: 151 + 40: 164 _ZN9oceanbase7storage21ObIndexTreePrefetcher19prefetch_block_dataERNS_12blocksstable16ObMicroIndexInfoERNS0_22ObMicroBlockDataHandleEb:154 + 41.1: 4 + 42.1: 164 _ZN9oceanbase7storage22ObMicroBlockDataHandle20get_index_block_dataERKNS0_15ObTableReadInfoERNS_12blocksstable16ObMicroBlockDataE:165 + 45.1: 4 + 46.1: 145 + 46.2: 145 _ZN9oceanbase12blocksstable22ObIndexBlockRowScanner4openERKNS0_12MacroBlockIdERKNS0_16ObMicroBlockDataERKNS0_13ObDatumRowkeyEs:163 + 51.1: 4 + 52.1: 128 + 54: 96 _ZN9oceanbase12blocksstable22ObIndexBlockRowScanner8get_nextERNS0_16ObMicroIndexInfoE:70 + 56.1: 4 + 58.1: 104 _ZN9oceanbase7storage21ObIndexTreePrefetcher19prefetch_block_dataERNS_12blocksstable16ObMicroIndexInfoERNS0_22ObMicroBlockDataHandleEb:95 + 59.1: 4 + 62: 100 + 68: 100 + 69: 4 + 70: 4 + 72: 94 + 6.1: _ZNK9oceanbase7storage19ObSSTableReadHandle8is_validEv:370 + 1: 74 + 9.1: _ZN9oceanbase12blocksstable9ObSSTable19get_index_tree_rootERKNS_7storage15ObTableReadInfoERNS0_16ObMicroBlockDataEb:962 + 5: 74 _ZN9oceanbase12blocksstable13ObSSTableMeta19get_index_tree_rootERKNS_7storage15ObTableReadInfoERNS0_16ObMicroBlockDataEb:75 + 11.1: _ZN9oceanbase7storage21ObIndexTreePrefetcher18init_index_scannerERNS_12blocksstable22ObIndexBlockRowScannerE:2840 + 2: 71 _ZN9oceanbase12blocksstable22ObIndexBlockRowScanner4initERKNS_6common8ObIArrayIiEERKNS3_INS_5share6schema16ObColumnSchemaV2EEEPKNS_7storage15ObTableReadInfoERNS2_12ObIAllocatorERKNS2_11ObQueryFlagE:71 + 3: 71 + 4: 71 + 5: 71 + 6: 71 + 7: 71 + 20.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:440 + 2: 88 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:89 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:352 + 2: 88 + 26: _ZN9oceanbase12blocksstable16ObMicroIndexInfoC2Ev:2552 + 2: 88 + 7: 88 _ZN9oceanbase12blocksstable12MacroBlockIdC1Ev:91 + 32.1: _ZNK9oceanbase12blocksstable16ObMicroIndexInfo13is_macro_nodeEv:1660 + 2: 166 + 3: _ZNK9oceanbase12blocksstable21ObIndexBlockRowHeader13is_macro_nodeEv:498 + 0: 166 + 38: _ZN9oceanbase7storage21ObIndexTreePrefetcher15get_read_handleEl:5738 + 2: 151 + 46.1: _ZN9oceanbase12blocksstable16ObMicroIndexInfo12get_macro_idEv:4205 + 2: 145 + 3: 145 + 3: _ZNK9oceanbase12blocksstable21ObIndexBlockRowHeader13is_data_blockEv:870 + 0: 145 + 52.1: _ZNK9oceanbase12blocksstable16ObMicroIndexInfo13is_leaf_blockEv:1408 + 2: 128 + 3: _ZNK9oceanbase12blocksstable21ObIndexBlockRowHeader13is_leaf_blockEv:512 + 0: 128 +_ZN9oceanbase6common10ObRowStoreC2ERKNS_3lib7ObLabelEmb:67728:344 + 6: 332 + 8: 332 + 11: 332 + 12: 332 + 13: 332 + 14: 332 + 15: 332 + 17: 332 + 18: 332 + 21: 332 + 23: 332 + 0: _ZN9oceanbase6common8ObNewRowC2Ev:6972 + 1: 332 + 3.1: _ZN9oceanbase6common20DefaultPageAllocatorC2ERKNS_3lib7ObLabelEm:11952 + 2: 332 + 4: _ZN9oceanbase6common12ObFixedArrayIlNS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplIlS2_EEERS2_l:13612 + 0: 332 + 0: _ZN9oceanbase6common16ObFixedArrayImplIlNS0_12ObIAllocatorEEC2ERS2_l:8632 + 2: 332 + 3: 332 + 4: 332 + 1: _ZN9oceanbase6common8ObIArrayIlEC2Ev:2324 + 0: _ZN9oceanbase6common12ObIArrayWrapIlEC2Ev:2324 + 0: 332 + 5: _ZN9oceanbase6common10ObRowStore9BlockListC2Ev:2656 + 2: 332 + 22: _ZN9oceanbase6common20DefaultPageAllocator9set_labelERKNS_3lib7ObLabelE:2324 + 0: 332 +_ZN9oceanbase6common10ObRowStoreC1ERKNS_3lib7ObLabelEmb:67728:344 + 6: 332 + 8: 332 + 11: 332 + 12: 332 + 13: 332 + 14: 332 + 15: 332 + 17: 332 + 18: 332 + 21: 332 + 23: 332 + 0: _ZN9oceanbase6common8ObNewRowC2Ev:6972 + 1: 332 + 3.1: _ZN9oceanbase6common20DefaultPageAllocatorC2ERKNS_3lib7ObLabelEm:11952 + 2: 332 + 4: _ZN9oceanbase6common12ObFixedArrayIlNS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplIlS2_EEERS2_l:13612 + 0: 332 + 0: _ZN9oceanbase6common16ObFixedArrayImplIlNS0_12ObIAllocatorEEC2ERS2_l:8632 + 2: 332 + 3: 332 + 4: 332 + 1: _ZN9oceanbase6common8ObIArrayIlEC2Ev:2324 + 0: _ZN9oceanbase6common12ObIArrayWrapIlEC2Ev:2324 + 0: 332 + 5: _ZN9oceanbase6common10ObRowStore9BlockListC2Ev:2656 + 2: 332 + 22: _ZN9oceanbase6common20DefaultPageAllocator9set_labelERKNS_3lib7ObLabelE:2324 + 0: 332 +count_child:67421:494 + 1: 479 + 4: 479 + 6: 2 + 7.1: 479 + 8: 2 + 11: 2 + 13: 551 + 14: 551 + 18.1: 551 + 20: 2 + 22: 551 + 26.1: 551 + 27: 551 + 28.1: 2 + 31: 2 + 33: 2 + 36.1: 2 + 36.3: 2 + 37: 2 + 38: 2 + 40.1: 2 + 42: 2 + 44: 2 + 45: 2 + 50.1: 551 + 50.3: 551 + 52: 551 + 9.1: new_link_node:11167 + 2: 479 parse_malloc:541 + 3: 551 + 4: 2 + 7: 551 +_ZN9oceanbase11transaction9tablelock9ObOBJLock17check_allow_lock_ERKNS1_13ObTableLockOpERKhRNS_6common4hash19ObIteratableHashSetINS0_9ObTransIDELm16EEERbRNS8_8ObMallocE:67299:804 + 6: 752 + 8: 752 + 11: 847 _ZN9oceanbase11transaction9tablelock9ObOBJLock17check_allow_lock_ERKNS1_13ObTableLockOpERKhRNS_6common4hash19ObIteratableHashSetINS0_9ObTransIDELm16EEERbbb:782 + 16.1: 10 + 17.1: 10 + 20.1: 10 + 21.1: 10 + 23.1: 10 + 28.1: 10 + 33: 847 + 17.1: _ZN9oceanbase11transaction9tablelock9ObOBJLock18compact_tablelock_ERNS_6common8ObMallocERbb:1490 + 4: 10 + 5: 10 + 6: 10 + 9.1: 10 + 9.3: 10 + 10: 10 + 11: 10 + 12.1: 10 + 13.1: 10 +_ZNK9oceanbase8memtable13ObMemtableCtx16check_lock_existERKNS_11transaction9tablelock8ObLockIDERKlhRbRh:67278:1097 + 5: 1026 + 7: 1026 + 8: 1121 _ZNK9oceanbase11transaction9tablelock12ObLockMemCtx16check_lock_existERKNS1_8ObLockIDERKlhRbRh:1039 + 13.1: 8 + 16: 1121 +_ZN9oceanbase6common13ObSEArrayImplINS_11transaction13ObTxSavePointELl4ENS0_19ModulePageAllocatorELb0EE7destroyEv:67201:1035 + 1: 1003 + 4.1: 1003 + 4.3: 0 + 9: 1003 + 10: 0 + 11: 0 + 13: 1003 + 15: 1003 + 24: 1003 + 25: 1003 + 5: _ZN9oceanbase11transaction13ObTxSavePointD2Ev:0 + 2: _ZN9oceanbase11transaction13ObTxSavePoint7releaseEv:0 + 2: 0 + 3: 0 +_ZZN9oceanbase8memtable13ObLockWaitMgr6wakeupEmENK4$_21clEPKc.1dd22efca7fa83ae50e8099a04ad3959:66854:1082 + 0: 1072 + 0.1: 0 + 0.2: 1010 + 0.3: 1072 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:1102 + 0.5: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:18224 + 2: 1072 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase6common11ObArrayImplIPNS_3sql17ObChunkDatumStore9StoredRowENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEED2Ev:66526:1100 + 1: 1073 + 3: 1073 + 3.2: 0 + 2: _ZN9oceanbase6common11ObArrayImplIPNS_3sql17ObChunkDatumStore9StoredRowENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEE7destroyEv:34336 + 2: 1073 + 6: 0 + 7: 0 + 9: 1073 + 11: 1073 +_ZN9oceanbase7obmysql11ObMySQLUtil30store_obstr_nzt_with_pre_spaceEPclNS_6common8ObStringERl:66498:505 + 1: 483 + 2: 483 + 3: 483 + 4: 483 + 5: 0 + 6.1: 0 + 7.1: 483 + 8: 0 + 9.1: 0 + 10.1: 483 + 10.2: 483 + 11: 0 + 13: 483 + 14: 483 + 15: 537 + 17: 537 + 7.1: _ZNK9oceanbase6common8ObString5emptyEv:1449 + 2: 483 +_ZN9oceanbase7storage17ObLSTabletService19check_rowkey_changeERKNS_6common8ObIArrayImEERKNS0_15ObRelativeTableERbSA_:66385:398 + 5: 369 + 6: 369 + 8: 369 + 8.1: 369 _ZNK9oceanbase7storage15ObRelativeTable8is_validEv:369 + 8.2: 343 + 9: 0 + 10.1: 0 + 13: 343 + 14: 343 + 15: 343 + 16.1: 324 + 16.2: 746 + 16.6: 324 + 17: 343 + 17.1: 343 _ZNK9oceanbase7storage15ObRelativeTable19is_rowkey_column_idEmRb:343 + 18.1: 0 + 20: 324 + 26.1: 428 _ZNK9oceanbase7storage15ObRelativeTable15is_unique_indexEv:421 + 27: 0 + 29.1: 0 + 29.2: 0 + 29.6: 0 + 30: 0 + 31.1: 0 + 32.1: 0 + 33: 0 + 36: 0 + 37.1: 0 + 37.3: 0 + 38: 0 + 39: 0 + 45: 0 + 46: 0 + 47.1: 0 + 48.1: 0 + 55: 433 + 56: 0 + 61: 395 + 12: _ZNK9oceanbase6common12ObIArrayWrapImE5countEv:1372 + 0: 343 + 17: _ZNK9oceanbase6common12ObIArrayWrapImE2atEl:1372 + 6: 343 + 38: _ZNK9oceanbase6common12ObIArrayWrapImE2atEl:0 +_ZN9oceanbase7storage23ObReallocatedFixedArrayINS0_30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandleEE18prepare_reallocateEl:66335:1070 + 1: 1020 + 2: 1020 + 3: 1020 + 3.2: 1020 + 6: 1036 _ZN9oceanbase6common16ObFixedArrayImplINS_7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandleENS0_12ObIAllocatorEE16prepare_allocateEl:1040 + 7.1: 13 + 7.5: 13 + 7.9: 13 + 9: 1036 + 4: _ZN9oceanbase6common16ObFixedArrayImplINS_7storage30ObIndexTreeMultiPassPrefetcher22ObIndexTreeLevelHandleENS0_12ObIAllocatorEE5resetEv:143 + 0: 13 + 7.1: _ZN9oceanbase6common8ObLogger10get_loggerEv:1495 + 2: 13 + 2.1: 13 + 2.2: 13 + 2.3: 13 + 2.4: 13 + 2.6: 13 + 7.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:442 + 0: 13 + 7.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:546 + 0: 13 +_ZN9oceanbase6common13ObSEArrayImplINS_5share6schema15ObSchemaMgrInfoELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv:66301:961 + 1: 896 + 4.1: 896 + 4.3: 0 + 5: 5 _ZN9oceanbase5share6schema15ObSchemaMgrInfoD1Ev:3 + 9: 876 + 11: 0 + 13: 876 + 15: 876 + 24: 876 + 25: 876 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema15ObSchemaMgrInfoELl2ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: 0 +new_non_terminal_node:66263:268 + 1: 274 + 3: 274 + 4: 3 + 10: 283 + 11.1: 283 + 11.2: 3 + 12: 283 + 12.1: 283 + 12.2: 3 + 12.3: 283 + 17: 283 + 8: new_node:22179 + 3: 274 parse_malloc:283 + 4: 285 + 5: 3 + 7: 285 + 8: 285 + 9: 285 + 10: 285 + 16: 285 + 17: 285 parse_malloc:287 + 18: 283 + 19: 3 +_ZN9oceanbase3sql19ObDataAccessService21execute_dist_das_taskERNS0_8ObDASRefERNS0_12ObIDASTaskOpE:66171:280 + 1: 267 + 2: 267 + 7: 267 _ZNK9oceanbase3sql18ObBasicSessionInfo20get_query_timeout_tsEv:273 + 9: 264 + 10.1: 264 + 11.1: 277 + 12.1: 0 + 14.1: 0 + 14.2: 0 + 15.1: 0 + 17: 277 + 18.3: 277 + 3: _ZN9oceanbase3sql8ObDASRef12get_exec_ctxEv:1869 + 0: 267 + 4: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:1869 + 2: 267 + 5: _ZN9oceanbase3sql12ObDASTaskArgC2Ev:13617 + 1: 267 + 4: 267 + 2: _ZN9oceanbase6common6ObAddrC2Ev:8010 + 1: 267 + 6: _ZN9oceanbase3sql12ObDASTaskArg11set_task_opEPNS0_12ObIDASTaskOpE:1068 + 0: 267 + 7.1: _ZN9oceanbase3sql12ObDASTaskArg14set_timeout_tsEl:1056 + 0: 264 + 8: _ZN9oceanbase3sql12ObDASTaskArg12set_ctrl_svrERKNS_6common6ObAddrE:8976 + 0: _ZN9oceanbase6common6ObAddraSERKS1_:8976 + 1: 264 + 2: 264 + 3: 264 + 9.1: _ZN9oceanbase6common6ObAddraSERKS1_:5808 + 1: 264 + 2: 264 + 3: 264 + 10: _ZNK9oceanbase3sql12ObDASTaskArg13is_local_taskEv:8184 + 0: _ZNK9oceanbase6common6ObAddreqERKS1_:8184 + 2: 264 + 2.2: 264 + 11: _ZN9oceanbase3sql19ObDataAccessService17do_local_das_taskERNS0_8ObDASRefERNS0_12ObDASTaskArgE:4843 + 3: 264 + 6: 277 _ZN9oceanbase3sql12ObIDASTaskOp14start_das_taskEv:278 + 7.1: 0 + 9: 0 +_ZN9oceanbase11transaction10ObTransCtx22register_timeout_task_El:66128:515 + 0: 0 + 1: 492 + 2: 492 + 4: 492 + 5.1: 0 + 6: 0 + 7.1: 492 + 8.1: 0 + 11.1: 492 + 12.1: 0 + 17: 529 _ZN9oceanbase11transaction12ObTransTimer21register_timeout_taskERNS0_14ObITimeoutTaskEl:500 + 18.1: 0 + 20: 0 + 23.1: 529 + 23.3: 0 + 23.4: 0 + 23.6: 0 + 23.7: 0 + 23.8: 0 + 23.9: 0 + 26: 529 + 14.1: _ZN9oceanbase11transaction10ObTransCtx16acquire_ctx_ref_Ev:6888 + 2: 492 + 2: _ZN9oceanbase11transaction15ObTransHashLinkINS0_10ObTransCtxEE7inc_refEi:4920 + 2: 492 + 3.1: 0 + 5: 492 + 20: _ZN9oceanbase11transaction12ObLSTxCtxMgr26revert_tx_ctx_without_lockEPNS0_10ObTransCtxE:0 + 5: 0 + 6.1: 0 + 12: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE6revertEPS3_:0 + 3: 0 + 3: _ZN9oceanbase11transaction15ObTransHashLinkINS0_10ObTransCtxEE7dec_refEi:0 + 2: 0 + 3: 0 + 4.1: 0 + 4: _ZN9oceanbase11transaction13TransCtxAlloc10free_valueEPNS0_10ObTransCtxE:0 + 3: 0 + 23.3: _ZN9oceanbase3lib20is_trace_log_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:0 + 2: 0 + 23.4: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EE9add_eventERb:0 + 2: 0 + 3.1: 0 + 7: 0 + 12: 0 + 13: 0 + 14: 0 + 23.9: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EE12check_unlockEv:0 + 2: 0 + 3: _ZN9oceanbase3lib7ObMutex6unlockEv:0 + 0: 0 + 23.16: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EE10check_lockEv:0 + 2: 0 + 3: _ZN9oceanbase3lib7ObMutex4lockEv:0 + 0: 0 + 23.21: _ZN9oceanbase4yson24databuff_encode_elementsIiilEEiPclRltRKT_tRKT0_tRKT1_:0 + 0.1: _ZN9oceanbase4yson23databuff_encode_elementIiEEiPclRltRKT_:0 + 3: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 0.3: _ZN9oceanbase4yson23databuff_encode_elementIiEEiPclRltRKT_:0 + 3: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 0.5: _ZN9oceanbase4yson23databuff_encode_elementIlEEiPclRltRKT_:0 + 3: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 +_ZN9oceanbase5share19ObTenantSwitchGuard7releaseEv:66085:2487 + 1: 2419 + 2: 2419 + 3: 5 + 4: 5 + 7: 11 _ZN9oceanbase5share11ObTenantEnv10set_tenantEPNS0_12ObTenantBaseE:12 + 11: 2425 + 3: _ZStneIiJRN9oceanbase6common10ObLDHandleEEEbRKSt8functionIFT_DpT0_EEDn:45 + 1: _ZNKSt8functionIFiRN9oceanbase6common10ObLDHandleEEEcvbEv:45 + 1: _ZNKSt14_Function_base8_M_emptyEv:45 + 0: 5 + 4: _ZNKSt8functionIFiRN9oceanbase6common10ObLDHandleEEEclES3_:40 + 4: 5 + 4.1: 5 _ZNSt17_Function_handlerIFiRN9oceanbase6common10ObLDHandleEEZNS0_5share25get_tenant_base_with_lockEmS3_RPNS5_12ObTenantBaseERSt8functionIS4_EE4$_13E9_M_invokeERKSt9_Any_dataS3_.dffa7baff4f06077efbca9bde9102f22:6 + 5: _ZNSt8functionIFiRN9oceanbase6common10ObLDHandleEEEaSEDn:266 + 2: 9 + 4: 9 _ZNSt14_Function_base13_Base_managerIZN9oceanbase5share25get_tenant_base_with_lockEmRNS1_6common10ObLDHandleERPNS2_12ObTenantBaseERSt8functionIFiS5_EEE4$_13E10_M_managerERSt9_Any_dataRKSF_St18_Manager_operation.dffa7baff4f06077efbca9bde9102f22:10 + 4.1: 0 + 6: 11 + 9: _ZN9oceanbase5share19ObTenantSwitchGuard5resetEv:260 + 2: 10 + 3: 10 + 4: 10 + 5: _ZNSt8functionIFiRN9oceanbase6common10ObLDHandleEEEaSEDn:80 + 2: 10 + 4: 0 + 4.1: 0 + 6: 0 +_ZN9oceanbase7storage13ObLSTxService21get_tx_ls_log_adapterEv:66011:3998 + 0: 3883 + 0: _ZN9oceanbase11transaction12ObLSTxCtxMgr18get_ls_log_adapterEv:27181 + 0: 3883 +_ZZN9oceanbase8memtable13ObLockWaitMgr6wakeupEmENK4$_22clEPKc.1dd22efca7fa83ae50e8099a04ad3959:65947:1059 + 0: 1059 + 0.1: 0 + 0.2: 989 + 0.3: 1059 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:1077 + 0.5: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:18003 + 2: 1059 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase11transaction14ObPartTransCtx28submit_redo_commit_info_log_ERNS0_12ObTxLogBlockERbRNS_8memtable21ObRedoLogSubmitHelperE:65923:297 + 3: 250 + 4: 250 + 5: 250 + 7: 250 + 9.1: 250 _ZN9oceanbase11transaction14ObPartTransCtx16submit_redo_log_ERNS0_12ObTxLogBlockERbRNS_8memtable21ObRedoLogSubmitHelperE:257 + 10.1: 5 + 12: 274 _ZN9oceanbase11transaction17ObTxCommitInfoLogC2ERNS_6common6ObAddrERNS2_9ObSEArrayINS_5share6ObLSIDELl3ENS2_19ModulePageAllocatorELb0EEERS7_bbbRNS2_8ObStringERKSC_RKNS_4palf3LSNERNS5_ISH_Ll10ES8_Lb0EEESA_mRKNS0_11ObXATransIDE:255 + 13: 245 + 15: 245 + 16: 245 + 17: 245 + 19: 274 _ZN9oceanbase11transaction12ObTxLogBlock11add_new_logINS0_17ObTxCommitInfoLogEEEiRT_:278 + 19.1: 270 + 21.1: 5 + 22: 5 + 22.1: 5 + 24.1: 5 + 26.3: 5 + 27: 5 + 28.1: 5 + 29: 5 + 30: 5 + 32.2: 5 + 34.1: 5 + 34.4: 5 + 34.5: 5 + 36.1: 5 + 37: 5 + 38: 5 + 40.1: 5 + 40.2: 5 + 43: 5 + 44: 5 + 44.1: 5 + 45.1: 5 + 47: 5 + 50.1: 5 + 53: 270 _ZN9oceanbase11transaction17ObTxCommitInfoLogD2Ev:272 + 55: 252 + 7: _ZNK9oceanbase11transaction12ObTxSubState21is_info_log_submittedEv:1750 + 1: 250 + 15: _ZN9oceanbase11transaction11ObTraceInfo16get_app_trace_idEv:1715 + 0: 245 + 16: _ZNK9oceanbase11transaction11ObTraceInfo18get_app_trace_infoEv:1715 + 0: 245 + 32.1: _ZN9oceanbase11transaction10ObTransCtx16acquire_ctx_ref_Ev:175 + 2: 5 + 2: _ZN9oceanbase11transaction15ObTransHashLinkINS0_10ObTransCtxEE7inc_refEi:155 + 2: 5 + 3.1: 5 + 5: 5 + 34.1: _ZN9oceanbase11transaction12ObLSTxCtxMgr18get_ls_log_adapterEv:35 + 0: 5 + 34.2: _ZN9oceanbase11transaction12ObTxLogBlock7get_bufEv:15 + 3: 5 + 39: _ZN9oceanbase11transaction10ObTransCtx16release_ctx_ref_Ev:180 + 2: _ZN9oceanbase11transaction15ObTransHashLinkINS0_10ObTransCtxEE7dec_refEi:180 + 2: 5 + 3: 5 + 4.1: 5 + 53.1: _ZN9oceanbase11transaction17ObTxCommitInfoLogD2Ev:140 + 0: 5 + 0: _ZN9oceanbase11transaction11ObXATransIDD2Ev:105 + 0.2: 5 + 0: _ZN9oceanbase11transaction11ObXATransID7destroyEv:25 + 0: 5 +_ZN9oceanbase7storage10ObRowsInfo18clear_found_rowkeyEl:65786:273 + 1: 259 + 2: 259 + 4: 259 + 5: 0 + 6.1: 0 + 7.1: 259 + 8: 0 + 9.1: 0 + 11: 0 + 12.1: 0 + 15: 259 + 18: 259 + 4: _ZNK9oceanbase7storage10ObRowsInfo8is_validEv:17094 + 2: 259 + 2.1: 259 + 2.2: 259 + 3: 259 + 3.1: 259 + 3.2: 259 + 2.1: _ZNK9oceanbase7storage10ObRowsInfo11ExistHelper8is_validEv:1813 + 0: 259 + 3.1: _ZNK9oceanbase6common12ObIArrayWrapINS_12blocksstable13ObDatumRowkeyEE5countEv:1813 + 0: 259 + 10.1: _ZN9oceanbase6common12ObIArrayWrapINS_12blocksstable13ObDatumRowkeyEE2atEl:3885 + 6: 259 + 10.2: _ZNK9oceanbase12blocksstable13ObDatumRowkey13is_max_rowkeyEv:13209 + 0.1: 259 + 0.2: 259 + 0.3: 259 + 0: _ZNK9oceanbase12blocksstable13ObDatumRowkey8is_validEv:3626 + 0: 259 + 0.1: 259 + 0.5: _ZNK9oceanbase6common7ObDatum6is_maxEv:3108 + 0: 259 + 0.1: 0 + 0: _ZNK9oceanbase6common11ObDatumDesc6is_extEv:1554 + 0: 259 + 0.1: _ZNK9oceanbase6common5ObObj12is_max_valueEv:0 + 2: 0 + 2.1: 0 + 14.1: _ZN9oceanbase12blocksstable13ObDatumRowkey14set_max_rowkeyEv:16317 + 0: 259 + 0: _ZN9oceanbase6common13ObStoreRowkey7set_maxEv:6734 + 0: 259 +_ZN9oceanbase6common15ObTimeWheelTask5resetEv:65664:2134 + 1: 2052 + 3: 2052 + 6: 2052 + 9: 2052 + 8: _ZN9oceanbase6common11ObDLinkBaseINS0_15ObTimeWheelTaskEE5resetEv:14364 + 0: 2052 +_ZN9oceanbase7storage12ObLSIterator8get_nextERPNS0_4ObLSE:65661:1 + 1: 1 + 2: 1 + 4: 1 + 5: 0 + 6.1: 0 + 8.1: 755 + 9: 725 + 10: 6 + 11: 6 + 14: 719 + 15.1: 3 + 15.3: 3 + 16: 3 + 20: 719 + 22: 719 + 22.1: 719 + 23: 0 + 25: 719 + 26: 9 + 27: 9 + 29.1: 17 + 30.1: 9 + 30.2: 9 + 31.1: 3 + 32.1: 9 _ZN9oceanbase6common11ObArrayImplIPNS_7storage4ObLSENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEE9push_backERKS4_:6 + 32.2: 11 + 33.1: 3 + 34.1: 3 + 36: 11 + 36.3: 11 + 39: 10 _ZN9oceanbase5share20ObQSyncLockReadGuardD2Ev:7 + 39.1: 0 + 40: 755 + 45: 6 + 65519.1: 3 + 9: _ZNK9oceanbase6common12ObIArrayWrapIPNS_7storage4ObLSEE5countEv:2900 + 0: 725 + 10: _ZN9oceanbase6common12ObIArrayWrapIPNS_7storage4ObLSEE2atEl:24 + 6: 6 + 16: _ZN9oceanbase6common12ObIArrayWrapIPNS_7storage4ObLSEE2atEl:12 + 6: 3 + 16.1: _ZNK9oceanbase7storage7ObLSMap9revert_lsEPNS0_4ObLSENS0_10ObLSGetModE:255 + 2: 3 + 3: 3 + 3.1: 3 + 4.1: 3 + 5: 3 + 3: _ZN9oceanbase7storage4ObLS11get_ref_mgrEv:21 + 0: 3 + 5: _ZNK9oceanbase7storage7ObLSMap7free_lsEPNS0_4ObLSE:75 + 3: 3 + 4: 3 + 18: _ZN9oceanbase6common11ObArrayImplIPNS_7storage4ObLSENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEE5reuseEv:0 + 3: 0 + 6: 0 + 4: _ZN9oceanbase6common11ObArrayImplIPNS_7storage4ObLSENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEE13do_clear_funcERS7_:0 + 3: 0 + 4: 0 + 26: _ZN9oceanbase5share20ObQSyncLockReadGuardC2ERNS0_11ObQSyncLockE:57 + 0: 9 + 1: 9 _ZN9oceanbase5share11ObQSyncLock6rdlockEv:6 + 30: _ZN9oceanbase7storage4ObLS11get_ref_mgrEv:21 + 0: 3 + 30.1: _ZN9oceanbase6common16ObMultiModRefMgrINS_7storage10ObLSGetModEE3incES3_:1110 + 1: 9 + 2: 9 + 3: 9 + 4: 3 + 5.1: 3 + 6.1: 9 + 9: 9 + 10: 9 + 12: 9 + 13.1: 3 + 9: _ZN9oceanbase6common8get_itidEv:216 + 4: 9 + 5: 0 + 6: 0 + 8: 0 + 10: _ZN9oceanbase6common5ObRef3incEv:174 + 1.1: 9 + 34: _ZN9oceanbase7storage4ObLS11get_ref_mgrEv:24 + 0: 3 +_ZN9oceanbase3sql20ObDASIndexDMLAdaptorILi4ENS0_16ObDASDMLIteratorEE12write_tabletERS2_Rl:65650:267 + 1: 251 + 2: 251 + 3: 251 + 4.1: 251 _ZZN9oceanbase3sql20ObDASIndexDMLAdaptorILi4ENS0_16ObDASDMLIteratorEE12write_tabletERS2_RlENKUlPKcE_clES7_:251 + 6: 267 + 7: 0 + 8.1: 0 + 10.1: 267 _ZN9oceanbase3sql12ObDMLService14init_dml_paramERKNS0_17ObDASDMLBaseCtDefERNS0_17ObDASDMLBaseRtDefERNS_11transaction16ObTxReadSnapshotERNS_6common12ObIAllocatorERNS_7storage14ObDMLBaseParamE:286 + 11.1: 0 + 12.1: 260 + 13.1: 0 + 15.1: 250 + 15.2: 250 + 17.1: 0 + 17.2: 0 + 17.3: 0 + 17.5: 0 + 18: 0 + 19: 0 + 20: 0 + 21: 0 + 22.1: 0 + 24: 0 + 24.1: 0 + 26.1: 0 + 26.2: 0 + 27.1: 0 + 29.1: 0 + 29.2: 0 + 35.1: 0 + 37.1: 0 + 37.2: 0 + 43.1: 0 + 47: 266 + 12.1: _ZN9oceanbase3sql20ObDASIndexDMLAdaptorILi4ENS0_16ObDASDMLIteratorEE10write_rowsERKNS_5share6ObLSIDERKNS_6common10ObTabletIDERKNS0_13ObDASDelCtDefERKNS0_13ObDASDelRtDefERS2_Rl:23180 + 7: 260 + 9: 260 _ZN9oceanbase7storage15ObAccessService11delete_rowsERKNS_5share6ObLSIDERKNS_6common10ObTabletIDERNS_11transaction8ObTxDescERKNS0_14ObDMLBaseParamERKNS6_8ObIArrayImEEPNS6_16ObNewRowIteratorERl:278 + 17.1: 0 + 20: 0 + 8: _ZN9oceanbase5share11ObTenantEnv3mtlIPNS_7storage15ObAccessServiceEEET_v:9880 + 2: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:5980 + 2: 260 + 2.1: 0 + 2.2: 0 + 2.1: _ZN9oceanbase5share12ObTenantBase3getIPNS_7storage15ObAccessServiceEEET_v:3900 + 0: _ZN9oceanbase5share12ObTenantBase9inner_getENS1_8IdentityIPNS_7storage15ObAccessServiceEEE:3900 + 0: 260 + 15.2: _ZNK9oceanbase6common12ObIArrayWrapIPKNS_3sql14ObDASBaseCtDefEE5emptyEv:1250 + 0: 250 + 18: _ZNK9oceanbase6common12ObIArrayWrapIPKNS_3sql14ObDASBaseCtDefEE2atEl:0 + 6: 0 + 19: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql14ObDASBaseRtDefEE2atEl:0 + 6: 0 + 20: _ZN9oceanbase6common12ObIArrayWrapINS0_10ObTabletIDEE2atEl:0 + 6: 0 + 20.1: _ZN9oceanbase6common10ObTabletIDC2ERKS1_:0 + 0: 0 + 24: _ZN9oceanbase3sql16ObDASDMLIterator6rewindEPKNS0_17ObDASDMLBaseCtDefE:0 + 2: 0 + 3: _ZN9oceanbase3sql16ObDASDMLIterator9set_ctdefEPKNS0_17ObDASDMLBaseCtDefE:0 + 2: 0 + 3: 0 + 3.3: 0 + 3: _ZNK9oceanbase6common12ObIArrayWrapIlE5emptyEv:0 + 0: 0 + 0: _ZNK9oceanbase6common12ObIArrayWrapIlE5countEv:0 + 0: 0 +_ZN9oceanbase11transaction14ObTransService19local_ls_commit_tx_ERKNS0_9ObTransIDERKNS_5share6ObLSIDERKNS_6common9ObSEArrayIS6_Ll3ENS9_19ModulePageAllocatorELb0EEERKlRKNS9_8ObStringESG_Rl:65355:234 + 7: 231 + 8: 231 + 10: 229 + 11.1: 257 + 12.1: 1 + 13: 1 + 15: 1 + 15.1: 1 + 16.1: 1 + 17: 1 + 21: 1 + 23: 1 + 30: 1 + 31.1: 1 + 36: 257 _ZN9oceanbase11transaction14ObPartTransCtx6commitERKNS_6common9ObSEArrayINS_5share6ObLSIDELl3ENS2_19ModulePageAllocatorELb0EEERKNS0_11MonotonicTsERKlRKNS2_8ObStringESE_:257 + 36.1: 270 + 37.1: 1 + 40: 270 + 43: 237 + 44.6: 237 + 9: _ZN9oceanbase11transaction11MonotonicTs12current_timeEv:1834 + 0: 231 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:238 + 0.1: _ZN9oceanbase11transaction11MonotonicTsC2El:1603 + 0: 229 + 11: _ZN9oceanbase11transaction14ObTransService11get_tx_ctx_ERKNS_5share6ObLSIDERKNS0_9ObTransIDERPNS0_14ObPartTransCtxE:21542 + 3: _ZN9oceanbase11transaction14ObTransService11get_tx_ctx_ERKNS_5share6ObLSIDEPNS_7storage4ObLSERKNS0_9ObTransIDERPNS0_14ObPartTransCtxE:21542 + 9: 229 _ZN9oceanbase11transaction10ObTxCtxMgr10get_tx_ctxERKNS_5share6ObLSIDERKNS0_9ObTransIDEbRPNS0_14ObPartTransCtxE:232 + 12.1: 286 _ZZN9oceanbase11transaction14ObTransService11get_tx_ctx_ERKNS_5share6ObLSIDEPNS_7storage4ObLSERKNS0_9ObTransIDERPNS0_14ObPartTransCtxEENK6$_1007clEPKc.93feb755617c21c32b229b78773c290c:291 + 13: 257 + 41: _ZN9oceanbase11transaction14ObTransService14revert_tx_ctx_EPNS0_14ObPartTransCtxE:2659 + 1: _ZN9oceanbase11transaction14ObTransService14revert_tx_ctx_EPNS_7storage4ObLSEPNS0_14ObPartTransCtxE:2659 + 6: 270 _ZN9oceanbase11transaction10ObTxCtxMgr13revert_tx_ctxEPNS0_14ObPartTransCtxE:271 + 9.1: 265 _ZZN9oceanbase11transaction14ObTransService14revert_tx_ctx_EPNS_7storage4ObLSEPNS0_14ObPartTransCtxEENK6$_1008clEPKc.93feb755617c21c32b229b78773c290c:264 +_ZN9oceanbase3sql12ObDMLService19write_row_to_das_opILi5EEEiRKNS0_17ObDASDMLBaseCtDefERNS0_17ObDASDMLBaseRtDefEPKNS0_14ObDASTabletLocERNS0_10ObDMLRtCtxERKNS_6common12ObFixedArrayIPNS0_6ObExprENSD_12ObIAllocatorEEE:64993:182 + 5: 158 + 6: 158 + 14: 158 + 17: 158 + 19: 185 + 20.1: 0 + 24: 185 + 26: 0 + 26.1: 185 + 26.2: 0 + 27: 0 + 31.1: 0 + 36: 181 + 37: 0 + 38: 0 + 38.1: 0 + 38.2: 0 + 40.1: 186 + 40.2: 181 _ZNK9oceanbase6common12ObIAllocator4usedEv:188 + 42.1: 180 + 42.2: 180 _ZN9oceanbase3sql11ObDASLockOp9write_rowERKNS_6common12ObFixedArrayIPNS0_6ObExprENS2_12ObIAllocatorEEERNS0_9ObEvalCtxERb:185 + 43.1: 0 + 50: 156 + 52: 0 + 52.2: 0 + 53.1: 0 + 55: 0 + 59: 0 + 61: 0 + 61.1: 0 + 62: 0 + 63.1: 0 + 64.1: 0 + 65.1: 0 + 66.1: 0 + 67.1: 0 + 74.1: 156 + 74.3: 156 + 75: 150 + 18: _ZN9oceanbase3sql8ObDASRef10has_das_opINS0_11ObDASLockOpEEEbPKNS0_14ObDASTabletLocERPT_:2528 + 4: 158 _ZN9oceanbase3sql8ObDASRef13find_das_taskEPKNS0_14ObDASTabletLocENS0_11ObDASOpTypeE:161 + 5: 158 + 8: 0 + 19: _ZN9oceanbase3sql8ObDASRef16prepare_das_taskINS0_11ObDASLockOpEEEiPKNS0_14ObDASTabletLocERPT_:6680 + 3: 155 + 4: 155 _ZN9oceanbase3sql8ObDASRef15create_das_taskEPKNS0_14ObDASTabletLocENS0_11ObDASOpTypeERPNS0_12ObIDASTaskOpE:160 + 5: 185 + 6: 185 + 22: _ZN9oceanbase3sql11ObDASLockOp13set_das_ctdefEPKNS0_14ObDASLockCtDefE:2035 + 0: 185 + 23: _ZN9oceanbase3sql11ObDASLockOp13set_das_rtdefEPNS0_14ObDASLockRtDefE:1295 + 0: 185 + 26.2: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql17ObDASDMLBaseCtDefEE5emptyEv:0 + 0: 0 + 37: _ZN9oceanbase6common9EventItemC2Ev:2715 + 2: 181 + 37.1: _ZN9oceanbase6common10EventTable8instanceEv:2353 + 2: 181 + 2.1: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common10EventTableC2Ev:0 + 0: 0 + 2: 0 + 37.2: _ZN9oceanbase6common10EventTable9get_eventEl:4525 + 1.4: 181 + 37.3: _ZNK9oceanbase6common9EventItem4callEv:4525 + 2: 181 + 3: 181 + 5.1: 0 + 7.1: 0 + 8: 0 + 9.1: 0 + 11: 0 + 12: 0 + 13.1: 0 + 18: 0 + 38.1: _ZNK9oceanbase3sql11ObDASLockOp11get_row_cntEv:0 + 0: _ZNK9oceanbase3sql16ObDASWriteBuffer11get_row_cntEv:0 + 2: 0 + 2.3: 0 + 2.1: _ZNK9oceanbase3sql17ObChunkDatumStore11get_row_cntEv:0 + 0: 0 + 42.1: _ZN9oceanbase3sql10ObDMLRtCtx12get_eval_ctxEv:1260 + 0: _ZN9oceanbase3sql8ObDASRef12get_eval_ctxEv:1260 + 0: 180 + 55: _ZN9oceanbase3sql10ObDMLRtCtx22need_non_sub_full_taskEv:0 + 1: _ZN9oceanbase3sql13DasTaskStatus22need_non_sub_full_taskEv:0 + 0: 0 + 61: _ZN9oceanbase3sql10ObDMLRtCtx24need_pick_del_task_firstEv:0 + 1: _ZN9oceanbase3sql13DasTaskStatus24need_pick_del_task_firstEv:0 + 0: 0 + 70: _ZN9oceanbase3sql10ObDMLRtCtx5reuseEv:0 + 2: 0 +_ZN9oceanbase11transaction14ObPartTransCtx7destroyEv:64845:244 + 0: 4 + 1: 231 + 2: 4 + 3: 231 + 7: 227 _ZN9oceanbase8memtable13ObMemtableCtx5resetEv:233 + 9.1: 287 + 9.3: 4 + 9.4: 4 + 9.6: 4 + 9.7: 4 + 9.8: 4 + 9.9: 4 + 12: 287 + 13.1: 4 + 17: 287 _ZN9oceanbase11transaction11ObCtxTxData7destroyEv:295 + 19: 268 + 20.1: 4 + 26: 268 + 26.1: 287 _ZN9oceanbase11transaction14ObPartTransCtx24need_callback_scheduler_Ev:281 + 27: 4 + 28.1: 4 + 30: 4 + 31: 4 + 31.1: 4 + 31.4: 4 + 31.5: 4 + 34: 289 + 35: 4 + 36: 4 + 37: 4 + 40: 289 _ZN9oceanbase11transaction12ObTxMDSCache7destroyEv:289 + 41: 287 _ZN9oceanbase11transaction12ObTxExecInfo7destroyEv:283 + 44: 268 _ZN9oceanbase11transaction17ObCLogEncryptInfo7destroyEv:280 + 45: 263 _ZN9oceanbase11transaction11ObTraceInfo5resetEv:259 + 46: 233 + 48: 237 + 9.3: _ZN9oceanbase3lib20is_trace_log_enabledEv:48 + 2: 4 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:28 + 2: 4 + 9.4: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EE9add_eventERb:388 + 2: 4 + 3.1: 4 + 7: 4 + 12: 4 + 13: 4 + 14: 4 + 9.9: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EE12check_unlockEv:120 + 2: 4 + 3: _ZN9oceanbase3lib7ObMutex6unlockEv:68 + 0: 4 + 9.16: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EE10check_lockEv:160 + 2: 4 + 3: _ZN9oceanbase3lib7ObMutex4lockEv:124 + 0: 4 + 9.20: _ZN9oceanbase4yson24databuff_encode_elementsIlEEiPclRltRKT_:388 + 0.1: _ZN9oceanbase4yson23databuff_encode_elementIlEEiPclRltRKT_:388 + 3: 4 + 6: 4 + 7: 4 + 8: 4 + 9: 4 + 10: 4 + 11: 4 + 12: _ZNK9oceanbase6common7ObDListINS_11transaction9ObTxLogCbEE8is_emptyEv:4018 + 0: 287 + 0.3: 287 + 23: _ZN9oceanbase11transaction12ObLSTxCtxMgr22dec_total_tx_ctx_countEv:2144 + 0: 268 + 26: _ZNK9oceanbase11transaction14ObPartTransCtx12is_follower_Ev:2144 + 0: 268 + 31.2: _ZN9oceanbase6common7ObLogKVIRNS_11transaction15ObTransTraceLogELb0EEC2EPKcS4_:120 + 0: 4 + 36: _ZN9oceanbase11transaction22ObTransTraceLogFactory7releaseEPNS0_15ObTransTraceLogE:452 + 0: 4 + 0.2: 4 + 0.4: 4 + 0.6: 4 + 0.7: _ZN9oceanbase6common18ObBaseResourcePoolINS_11transaction15ObTransTraceLogENS0_10RPStrLabelIXadL_ZNS0_8ObModIds21OB_TRANS_AUDIT_RECORDEEEEEE4freeEPS3_:236 + 3: 4 + 4: 4 + 5.1: 4 + 8: 4 + 43: _ZN9oceanbase11transaction18ObTransTimeoutTask7destroyEv:14935 + 4: 253 + 5: 253 + 6: 253 + 6.1: 253 + 8: 253 _ZN9oceanbase11transaction12ObTransTimer23unregister_timeout_taskERNS0_14ObITimeoutTaskE:270 + 6.1: _ZN9oceanbase11transaction10ObTransCtx17get_trans_serviceEv:1012 + 0: 253 + 7: _ZN9oceanbase11transaction14ObTransService15get_trans_timerEv:1771 + 0: 253 +_ZN9oceanbase8memtable24ObMemtableCtxCbAllocator5allocEl:64750:1012 + 1: 983 + 3: 1027 _ZN9oceanbase6common15ObFIFOAllocator5allocEl:1001 + 4.1: 1 + 7.1: 1027 + 8: 1027 + 10: 1027 +_ZN9oceanbase12blocksstable18ObMacroBlockReaderD2Ev:64486:1053 + 1: 984 + 2: 984 + 3: 0 + 4: 0 + 6: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:31030 + 0: 1070 _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEED2Ev:1104 +_ZN9oceanbase12blocksstable18ObMacroBlockReaderD1Ev:64486:1053 + 1: 984 + 2: 984 + 3: 0 + 4: 0 + 6: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:31030 + 0: 1070 _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEED2Ev:1104 +_ZN9oceanbase7storage17ObLSTabletService22insert_lob_tablet_rowsERNS0_14ObTabletHandleERNS0_15ObDMLRunningCtxEPNS0_10ObStoreRowEl:64317:256 + 5: 237 + 6: 237 + 9: 237 _ZN9oceanbase7storage19ObTabletBindingInfoC1Ev:245 + 10: 260 + 11: 2 + 12.1: 2 + 13.1: 260 _ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE7get_objEv:260 + 13.2: 250 _ZNK9oceanbase7storage8ObTablet12get_ddl_dataERNS0_19ObTabletBindingInfoE:250 + 13.3: 234 + 14.1: 2 + 20.1: 279 + 20.3: 279 + 21: 234 _ZN9oceanbase7storage17ObLSTabletService21insert_lob_tablet_rowERNS0_14ObTabletHandleERNS0_15ObDMLRunningCtxERNS0_10ObStoreRowE:234 + 21.1: 279 + 22.1: 2 + 26: 271 + 27.6: 257 + 8: _ZN9oceanbase5share11ObTenantEnv3mtlIPNS_7storage12ObLobManagerEEET_v:6294 + 2: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:4635 + 2: 237 + 2.1: 2 + 2.2: 2 + 2.1: _ZN9oceanbase5share12ObTenantBase3getIPNS_7storage12ObLobManagerEEET_v:1659 + 0: _ZN9oceanbase5share12ObTenantBase9inner_getENS1_8IdentityIPNS_7storage12ObLobManagerEEE:1659 + 0: 237 + 27.6: _ZN9oceanbase7storage19ObTabletBindingInfoD2Ev:19216 + 0: 271 + 0.1: _ZN9oceanbase6common10ObTabletIDD2Ev:1897 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:1897 + 0: 271 + 0.2: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EED2Ev:12441 + 1: 271 + 3.2: 2 + 2: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv:7535 + 4.1: 271 + 4.3: 2 + 9: 269 + 11: 2 + 5: _ZN9oceanbase6common10ObTabletIDD2Ev:44 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:44 + 0: 2 + 10: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl2ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:134 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:134 + 0: 2 + 0.2: 2 + 0.1: _ZN9oceanbase6common7ob_freeEPv:92 + 2: 2 + 3: 2 + 4: 2 + 5: 2 + 4: _ZL12abort_unlessb:18 + 5: 2 + 6: 2 + 27.7: _ZN9oceanbase7storage19ObTabletBindingInfoD2Ev:90 + 0: 2 + 0.2: 2 + 0.1: _ZN9oceanbase6common10ObTabletIDD2Ev:20 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:20 + 0: 2 +_ZN9oceanbase6common8ob_crc64EmPKvl:64288:4123 + 1: 4018 + 2: _ZN9oceanbase6common14ob_crc64_sse42EmPKvl:48216 + 2: 4018 _ZN9oceanbase6commonL11crc64_sse42EmPKcl.3c99adf4d252691c8becdc9ea2f3cc95:4149 +_ZN9oceanbase6common8TCRWLock6rdlockEl:64259:305 + 1: 281 + 3.1: 0 + 4: 0 + 5: 0 + 8: 301 + 3.2: _ZN9oceanbase6common8TCRWLock10try_rdlockEv:53281 + 3: 281 + 5: 287 + 4: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:1124 + 0: 281 + 4.1: _ZN9oceanbase6common5TCRef7inc_refEPi:40851 + 2: 281 + 4.1: 281 + 4.2: 258 + 6: 542 + 6.1: 284 + 10: 287 + 2: _ZN9oceanbase6common8get_itidEv:7868 + 4: 281 + 5: 0 + 6: 0 + 8: 0 + 11: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 8: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:0 + 0: 0 + 8.1: _ZN9oceanbase6common5TCRef7dec_refEPi:0 + 2: 0 + 4.1: 0 + 4.2: 0 + 6: 0 + 6.1: 0 + 10: 0 + 2: _ZN9oceanbase6common8get_itidEv:0 + 4: 0 + 5: 0 + 6: 0 + 8: 0 + 11: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 9: _ZN9oceanbase6common9LWaitCond6signalEv:0 + 2: 0 + 2.1: 0 + 3: 0 +_ZNK9oceanbase5share6schema18ObTableSchemaParam16is_rowkey_columnEmRb:64152:336 + 1: 324 + 2: 324 + 3: 324 + 4: 324 + 5.1: 0 + 7: 324 + 7.1: 324 + 7.2: 324 + 9: 324 + 4: _ZNK9oceanbase5share6schema9ColumnMap3getEmRi:37584 + 2: 324 + 4: 324 + 5: 0 + 6.1: 0 + 7.1: 324 + 8: 0 + 9.1: 0 + 32: 324 + 33: 324 + 36: 324 + 36.1: 324 + 36.2: 0 + 36.3: 0 + 36.6: 324 + 36.8: 324 + 36.10: 0 + 36.13: 0 + 39: 0 + 42: 0 + 42.1: 0 + 42.2: 0 + 42.3: 0 + 42.6: 0 + 42.8: 0 + 42.10: 0 + 42.13: 0 + 47: 324 + 4: _ZNK9oceanbase5share6schema9ColumnMap9is_initedEv:2268 + 0: 324 + 36.8: _ZNK9oceanbase6common12ObIArrayWrapIiE2atEl:2268 + 6: 324 + 42.8: _ZNK9oceanbase6common12ObIArrayWrapIiE2atEl:0 + 6: 0 +_ZNK9oceanbase7storage14ObMetaDiskAddr8is_validEv:64102:1022 + 1: 1001 + 3: 1001 + 6: 0 + 7.1: 0 + 8: 0 + 11: 0 + 22.1: 0 +_ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EE6assignERKNS0_8ObIArrayIS3_EE:63670:273 + 1: 262 + 2: 474 + 3: 262 + 3.1: 246 + 3.3: 474 + 3.5: 474 + 4: 262 _ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EE5reuseEv:278 + 6: 271 _ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EE7reserveEl:279 + 7: 249 + 8: 249 + 18: 237 + 21: 237 + 64695: 237 + 5: _ZNK9oceanbase6common12ObIArrayWrapINS_11transaction9ObTxCbArgEE5countEv:1355 + 0: 271 + 8: _ZNKSt9type_info9hash_codeEv:7995 + 3.2: 0 + 3.4: 249 + 3.5: 272 _ZSt11_Hash_bytesPKvmm:277 + 3: _ZNKSt9type_info4nameEv:3735 + 1: 249 + 8.1: _ZNKSt9type_info9hash_codeEv:4572 + 3.2: 0 + 3.5: 254 _ZSt11_Hash_bytesPKvmm:257 +_ZN9oceanbase6common16ObTotalWaitGuardD2Ev:63648:5714 + 1: 5304 + 2: 5304 + 2.1: 0 + 3: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 14.1: 5304 + 4: _ZN9oceanbase6common21ObDiagnoseSessionInfo14get_total_waitEv:0 + 0: 0 + 8: _ZN9oceanbase6common21ObDiagnoseSessionInfo14set_total_waitEPNS0_15ObWaitEventStatE:0 + 2: 0 + 11: _ZN9oceanbase6common21ObDiagnoseSessionInfo16reset_total_waitEv:0 + 0: 0 +_ZN9oceanbase6common16ObTotalWaitGuardD1Ev:63648:5714 + 1: 5304 + 2: 5304 + 2.1: 0 + 3: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 14.1: 5304 + 4: _ZN9oceanbase6common21ObDiagnoseSessionInfo14get_total_waitEv:0 + 0: 0 + 8: _ZN9oceanbase6common21ObDiagnoseSessionInfo14set_total_waitEPNS0_15ObWaitEventStatE:0 + 2: 0 + 11: _ZN9oceanbase6common21ObDiagnoseSessionInfo16reset_total_waitEv:0 + 0: 0 +_ZN9oceanbase6common13ObSEArrayImplINS_5share16ObServerLocalityELl32ENS0_19ModulePageAllocatorELb0EE6assignERKNS0_8ObIArrayIS3_EE:63474:300 + 1: 275 + 2: 253 _ZN9oceanbase5share16ObServerLocalityC1Ev:257 + 3: 275 _ZN9oceanbase5share16ObServerLocality6assignERKS1_:256 + 3.1: 253 + 3.3: 253 + 3.5: 248 + 4: 275 _ZN9oceanbase6common13ObSEArrayImplINS_5share16ObServerLocalityELl32ENS0_19ModulePageAllocatorELb0EE5reuseEv:282 + 5.1: 1 + 6: 266 _ZN9oceanbase6common13ObSEArrayImplINS_5share16ObServerLocalityELl32ENS0_19ModulePageAllocatorELb0EE7reserveEl:276 + 7: 253 + 8: 253 + 17: 248 + 18: 248 + 21: 248 + 5: _ZNK9oceanbase6common12ObIArrayWrapINS_5share16ObServerLocalityEE5countEv:1064 + 0: 266 + 8: _ZNKSt9type_info9hash_codeEv:7851 + 3.2: 1 + 3.4: 253 + 3.5: 253 _ZSt11_Hash_bytesPKvmm:272 + 3: _ZNKSt9type_info4nameEv:3795 + 1: 253 + 8.1: _ZNKSt9type_info9hash_codeEv:4256 + 3.2: 1 + 3.5: 236 _ZSt11_Hash_bytesPKvmm:237 +_ZN9oceanbase6common11ObArrayImplINS_11transaction9ObTransIDENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEED2Ev:63350:946 + 1: 905 + 3: 905 + 3.2: 0 + 2: _ZN9oceanbase6common11ObArrayImplINS_11transaction9ObTransIDENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE7destroyEv:28960 + 2: 905 + 3.1: 0 + 3.3: 0 + 4: 0 + 6: 0 + 7: 0 + 9: 905 + 11: 905 + 4: _ZN9oceanbase11transaction9ObTransIDD2Ev:0 + 0: 0 + 6: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase7storage10ObRowsInfo4initERKNS0_15ObRelativeTableERNS0_10ObStoreCtxERKNS0_15ObTableReadInfoE:63347:267 + 4: 257 + 5: 257 + 7: 257 + 8: 0 + 9.1: 0 + 10.1: 266 _ZN9oceanbase7storage10ObRowsInfo11ExistHelper4initERKNS0_15ObRelativeTableERNS0_10ObStoreCtxERKNS0_15ObTableReadInfoERNS_6common23ObReserveArenaAllocatorILl1024EEE:257 + 11.1: 0 + 12.1: 266 + 13.1: 0 + 15: 266 + 16: 276 _ZNK9oceanbase7storage15ObRelativeTable12get_table_idEv:284 + 17: 276 _ZNK9oceanbase7storage15ObRelativeTable13get_tablet_idEv:276 + 18: 259 _ZNK9oceanbase7storage15ObRelativeTable21get_rowkey_column_numEv:253 + 19: 259 + 21: 259 + 12.1: _ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable13ObDatumRowkeyELl1ENS0_19ModulePageAllocatorELb0EE16prepare_allocateEl:26334 + 4: 266 + 5: 0 + 7: 0 + 8: 266 + 9: 266 + 10: 266 + 9: _ZN9oceanbase6common9ObClassOpINS_12blocksstable13ObDatumRowkeyELb0EE23array_default_constructEPS3_l:12236 + 2: 266 + 2.1: 266 + 3: _ZN9oceanbase12blocksstable13ObDatumRowkeyC2Ev:6916 + 0.4: _ZN9oceanbase12blocksstable13ObDatumRowkey5resetEv:6916 + 0: 266 + 15: _ZNK9oceanbase7storage15ObTableReadInfo15get_datum_utilsEv:1862 + 0: 266 + 17.1: _ZN9oceanbase6common10ObTabletIDaSERKS1_:2520 + 0: 252 +_ZN9oceanbase3sql6ObExprC2Ev:63310:509 + 1: 487 + 2: 487 + 6: 487 + 7: 487 + 12: 487 + 13: 487 + 14: 487 + 24: 487 + 26: 487 + 29: 487 + 30: 487 + 31: 487 + 3: _ZN9oceanbase3sql11ObDatumMetaC2Ev:8279 + 0: 487 + 1: 487 + 4: _ZN9oceanbase6common9ObObjMetaC2Ev:3896 + 1: 487 +_ZN9oceanbase3sql6ObExprC1Ev:63310:509 + 1: 487 + 2: 487 + 6: 487 + 7: 487 + 12: 487 + 13: 487 + 14: 487 + 24: 487 + 26: 487 + 29: 487 + 30: 487 + 31: 487 + 3: _ZN9oceanbase3sql11ObDatumMetaC2Ev:8279 + 0: 487 + 1: 487 + 4: _ZN9oceanbase6common9ObObjMetaC2Ev:3896 + 1: 487 +_ZN9oceanbase3sql15ObCandiTableLoc22set_table_location_keyEmm:63308:4603 + 1: 4522 + 2: 4522 + 3: 4522 + 4: 4522 +_ZNK9oceanbase6common6number8ObNumber12format_int64EPcRlsRb:63252:265 + 1: 252 + 2: 252 + 3: 252 + 4: 252 + 5: 252 + 6: 0 + 8: 252 + 9: 0 + 14.1: 252 + 15: 252 _ZN9oceanbase6common15ObFastFormatInt15format_unsignedEmPc:258 + 16: 276 + 17: 0 + 18.1: 0 + 22: 276 + 24.1: 0 + 25: 0 + 26: 0 + 27: 0 + 28.1: 0 + 32: 0 + 33: 0 + 34: 0 + 35: 0 + 36.1: 0 + 40: 0 + 41: 0 + 45.1: 0 + 46: 0 + 47: 0 + 48: 0 + 49.1: 0 + 53: 0 + 54: 0 + 62: 273 + 64: 273 + 65: 0 + 66: 0 + 67: 0 + 68: 0 + 69: 0 + 70.1: 0 + 72: 0 + 73: 0 + 74: 0 + 77: 270 + 82: 0 + 84: 270 + 5: _ZNK9oceanbase6common6number8ObNumber7is_zeroEv:1008 + 2: 252 + 8: _ZNK9oceanbase6common6number8ObNumber11is_negativeEv:1512 + 2: 252 + 11: _ZN9oceanbase6common6number8ObNumber14get_decode_expERK12ObNumberDesc:1512 + 2: 252 + 12: _ZNK9oceanbase6common6number8ObNumber10is_integerEi:6804 + 3: 0 + 5.1: 252 + 7.1: 0 + 8.1: 252 + 3: _ZNK9oceanbase6common6number8ObNumber7is_zeroEv:0 + 2: 0 + 14.1: _ZNK9oceanbase6common6number8ObNumber8is_int32Ei:504 + 2: 252 + 24.1: _ZNK9oceanbase6common6number8ObNumber21is_int64_without_exprEi:0 + 2: 0 + 33: _ZN9oceanbase6common15ObFastFormatIntC2Ej:0 + 1: 0 + 64: _ZN9oceanbase3lib14is_oracle_modeEv:12831 + 2: _ZN9oceanbase3lib15get_compat_modeEv:12831 + 2: 273 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:8463 + 2: 273 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 +_ZN9oceanbase7storage17ObLSTabletService18insert_tablet_rowsERNS0_14ObTabletHandleERNS0_15ObDMLRunningCtxEPNS0_10ObStoreRowElRNS0_10ObRowsInfoE:62764:271 + 0: 3 + 2: 3 + 2.1: 3 + 2.2: 3 + 2.3: 3 + 2.6: 3 + 6: 258 + 7: 258 + 8: 258 + 9: 258 + 10: 258 _ZNK9oceanbase7storage15ObRelativeTable22is_storage_index_tableEv:266 + 11: 254 + 11.1: 3 + 12: 3 + 12.1: 257 _ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE7get_objEv:252 + 12.2: 245 _ZN9oceanbase7storage8ObTablet14rowkeys_existsERNS0_10ObStoreCtxERNS0_15ObRelativeTableERNS0_10ObRowsInfoERb:250 + 14.1: 3 + 15.1: 257 + 16: 3 + 17.1: 3 + 20: 3 + 20.1: 257 + 20.3: 257 + 21: 3 + 22: 257 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:271 + 22.1: 3 + 23: 3 + 23.1: 3 + 24.1: 3 + 25.1: 283 _ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE7get_objEv:282 + 25.2: 280 _ZN9oceanbase7storage8ObTablet31insert_row_without_rowkey_checkERNS0_15ObRelativeTableERNS0_10ObStoreCtxERKNS_6common8ObIArrayINS_5share6schema9ObColDescEEERKNS0_10ObStoreRowE:282 + 28.1: 3 + 33: 228 + 33.1: 3 + 34: 3 + 37: 3 + 37.1: 3 + 39.1: 3 + 42: 3 + 44: 3 + 45.1: 3 + 47.1: 3 + 47.2: 3 + 48.1: 3 + 50.1: 3 + 50.13: 3 + 50.20: 3 + 52: 228 + 22.2: _ZNK9oceanbase6common14ObServerConfig22enable_defensive_checkEv:2709 + 3: 285 + 3.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:81 + 2: 3 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:36 + 2: 3 + 36: _ZN9oceanbase6common8ObStringC2EPKc:57 + 1: 3 + 3: 3 + 37: _ZN9oceanbase7storage10ObRowsInfo20get_duplicate_rowkeyEv:21 + 0: 3 + 47.1: _ZN9oceanbase3lib14is_oracle_modeEv:288 + 2: _ZN9oceanbase3lib15get_compat_modeEv:288 + 2: 3 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:234 + 2: 3 + 2.1: 3 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:66 + 1: 3 + 50.1: _ZN9oceanbase3lib14is_oracle_modeEv:309 + 2: _ZN9oceanbase3lib15get_compat_modeEv:309 + 2: 3 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:255 + 2: 3 + 2.1: 3 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:66 + 1: 3 + 50.14: _ZN9oceanbase6common8ObLogger10get_loggerEv:105 + 2: 3 + 2.1: 3 + 2.2: 3 + 50.21: _ZN9oceanbase6common8ObLogger10get_loggerEv:129 + 2: 3 + 2.1: 3 + 2.2: 3 +_ZN9oceanbase8memtable13ObMemtableCtx12do_trans_endEbli:62631:242 + 4: 216 + 5: 216 + 7: 216 + 8: 216 + 9: 216 + 11: 233 _ZN9oceanbase8memtable18ObTransCallbackMgr9trans_endEb:240 + 11.1: 248 + 12.1: 1 + 15: 248 + 18: 248 + 19.1: 1 + 22: 248 + 23.2: 259 + 24.1: 1 + 26: 259 _ZN9oceanbase11transaction25ObPartitionAuditInfoCache26stmt_end_update_audit_infoEb:276 + 28: 261 + 32.1: 1 + 33: 268 + 9: _ZN9oceanbase6common14SpinWLockGuardC2ERKNS0_10SpinRWLockE:7551 + 1: 216 + 3: 233 + 4.1: 1 + 3: _ZN9oceanbase6common10SpinRWLock6wrlockEl:4104 + 0: 216 _ZN9oceanbase6common7ObLatch6wrlockEjlPKj:251 + 10: _ZN9oceanbase8memtable10ObIMvccCtx18set_commit_versionEl:2330 + 0: 233 + 23.1: _ZN9oceanbase8memtable13ObMemtableCtx17clear_table_lock_Ebl:8561 + 5: 248 + 7.1: 259 _ZN9oceanbase11transaction9tablelock12ObLockMemCtx16clear_table_lockEbl:254 + 9.1: 1 + 32: _ZN9oceanbase6common14SpinWLockGuardD2Ev:5298 + 2: 261 + 3: 261 + 3.1: 268 + 4.1: 1 + 3: _ZN9oceanbase6common10SpinRWLock6unlockEv:787 + 0: 261 _ZN9oceanbase6common7ObLatch6unlockEPKj:263 +_ZNK9oceanbase5share6ObLSID9serializeEPclRl:62618:268 + 1: 262 + 2: 262 + 3: 262 + 4: 0 + 5.1: 0 + 6.1: 262 + 7.1: 0 + 9: 262 + 6.1: _ZN9oceanbase6common13serialization10encode_i64EPclRll:47684 + 2.1: 262 + 3: 262 + 4: 262 + 5: 262 + 6: 262 + 7: 262 + 8: 262 + 9: 262 + 10: 262 + 11: 262 + 12: 262 +_ZN9oceanbase7storage19ObTxDataMemtableMgr27get_all_memtables_for_writeERNS0_26ObTxDataMemtableWriteGuardE:62591:247 + 1: 236 + 2: 236 + 3: 236 _ZN9oceanbase6common12TCRLockGuardC2ERKNS0_8TCRWLockE:236 + 4: 244 + 4.1: 238 + 4.2: 485 + 4.3: 485 + 4.5: 238 + 6: 244 + 7: 218 + 8: 218 _ZN9oceanbase7storage15ObTableHandleV220get_tx_data_memtableERPNS0_16ObTxDataMemtableE:247 + 8.1: 240 + 9.1: 0 + 10.1: 240 + 11: 0 + 12.1: 0 + 14: 240 _ZN9oceanbase7storage16ObTxDataMemtable13inc_write_refEv:250 + 18.4: 0 + 18.5: 230 + 5: _ZNK9oceanbase7storage14ObIMemtableMgr17get_memtable_idx_El:1464 + 0: 244 + 6: _ZN9oceanbase6common13ObSEArrayImplINS_7storage15ObTableHandleV2ELl1ENS0_19ModulePageAllocatorELb0EE9push_backERKS3_:8410 + 5: 244 + 6: 0 + 12: 0 + 15: 0 + 15.1: 244 + 16: 218 + 15.1: _ZN9oceanbase6common9ObClassOpINS_7storage15ObTableHandleV2ELb0EE20construct_and_assignERKS3_RS3_:976 + 3: _ZN9oceanbase6common16construct_assignINS_7storage15ObTableHandleV2EEEiRT_RKS4_:976 + 2: _ZN9oceanbase6common21construct_assign_wrapINS_7storage15ObTableHandleV2EEEiRT_RKS4_NS0_8BoolTypeILb0EEE:976 + 2: 244 _ZN9oceanbase7storage15ObTableHandleV2C1ERKS1_:244 + 18.5: _ZN9oceanbase6common12TCRLockGuardD2Ev:16100 + 2: 230 + 3: 230 + 3.1: 230 + 3.2: 0 + 3: _ZN9oceanbase6common8TCRWLock8rdunlockEl:11270 + 3: 230 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:920 + 0: 230 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPil:7130 + 2: 230 + 2.1: 230 + 3: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:1610 + 2: 230 + 2.1: 0 + 3: 0 +_ZN9oceanbase11transaction12ObTxLogBlock11add_new_logINS0_13ObTxCommitLogEEEiRT_:62489:248 + 1: 245 + 2: 245 + 3: 245 + 5: 245 + 5.1: 267 + 6: 0 + 7.1: 0 + 13: 269 + 14: 0 + 15.1: 269 + 16: 0 + 17.1: 0 + 18.1: 269 + 19.1: 0 + 20.1: 269 + 20.2: 269 _ZNK9oceanbase11transaction13ObTxCommitLog9serializeEPclRl:290 + 21.1: 0 + 25: 0 + 27: 255 + 27.1: 246 _ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EE9push_backERKS3_:260 + 28.1: 0 + 29: 0 + 30: 255 + 34: 0 + 35.1: 0 + 38: 255 + 4: _ZN9oceanbase11transaction13ObTxLogHeaderC2ENS0_11ObTxLogTypeE:1960 + 0: 245 + 13.1: _ZNK9oceanbase11transaction13ObTxCommitLog18get_serialize_sizeEv:1072 + 0: _ZNK9oceanbase11transaction13ObTxCommitLog28get_serialize_size_dispatch_ESt17integral_constantIbLb0EE:1072 + 0: 267 _ZNK9oceanbase11transaction13ObTxCommitLog19get_serialize_size_Ev:271 + 18.2: _ZNK9oceanbase11transaction13ObTxLogHeader9serializeEPclRl:15064 + 5: 269 + 9: 269 + 7.1: _ZN9oceanbase6common13serialization10encode_i64EPclRll:9415 + 3: 269 + 4: 269 + 5: 269 + 12: 269 + 27: _ZN9oceanbase11transaction9ObTxCbArgC2ENS0_11ObTxLogTypeEPKv:3690 + 0: 246 +_ZN9oceanbase7storage23ObReallocatedFixedArrayINS0_19ObSSTableReadHandleEE18prepare_reallocateEl:62306:1064 + 1: 1011 + 2: 1011 + 3: 1011 + 3.2: 1011 + 6: 1050 _ZN9oceanbase6common16ObFixedArrayImplINS_7storage19ObSSTableReadHandleENS0_12ObIAllocatorEE16prepare_allocateEl:1063 + 7.1: 3 + 7.5: 3 + 7.9: 3 + 9: 983 + 4: _ZN9oceanbase6common16ObFixedArrayImplINS_7storage19ObSSTableReadHandleENS0_12ObIAllocatorEE5resetEv:33 + 0: 3 + 7.1: _ZN9oceanbase6common8ObLogger10get_loggerEv:345 + 2: 3 + 2.1: 3 + 2.2: 3 + 2.3: 3 + 2.4: 3 + 2.6: 3 + 7.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:102 + 0: 3 + 7.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:126 + 0: 3 +_ZN9oceanbase8memtable16ObTxCallbackList32remove_callbacks_for_fast_commitERb:62200:265 + 1: 264 + 2: 264 + 3: 264 + 4: 264 _ZN9oceanbase8memtable16ObTxCallbackList13SpinLockGuardC1ERNS_6common7ObLatchE:265 + 7: 242 + 9.1: 260 + 10.1: 11 + 12: 260 + 14.1: 260 + 17: 260 + 18.3: 284 + 18.5: 11 + 18.7: 260 _ZN9oceanbase8memtable16ObTxCallbackList13SpinLockGuardD1Ev:249 + 6: _ZN9oceanbase8memtable16ObTxCallbackList39calc_need_remove_count_for_fast_commit_Ev:9767 + 2: 285 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:275 + 3: 242 + 4: 242 + 6.1: _ZN9oceanbase8memtable37ObRemoveCallbacksForFastCommitFunctorC2El:9438 + 1: 242 + 2: 242 + 4: 242 + 0: _ZN9oceanbase8memtable20ObITxCallbackFunctorC2Ev:3146 + 1: 242 + 3: 242 + 7: _ZN9oceanbase8memtable37ObRemoveCallbacksForFastCommitFunctor14set_checksumerElPNS_6common15ObBatchChecksumE:1936 + 3: 242 + 4: 242 + 9: _ZN9oceanbase8memtable16ObTxCallbackList9callback_ERNS0_20ObITxCallbackFunctorE:3190 + 2.2: 242 _ZN9oceanbase8memtable16ObTxCallbackList9callback_ERNS0_20ObITxCallbackFunctorEPNS0_16ObITransCallbackES5_:233 + 12: _ZNK9oceanbase8memtable20ObITxCallbackFunctor14get_remove_cntEv:1040 + 0: 260 + 12.1: _ZN9oceanbase8memtable18ObTransCallbackMgr35add_fast_commit_callback_remove_cntEl:2080 + 1: 260 + 13: _ZNK9oceanbase8memtable37ObRemoveCallbacksForFastCommitFunctor24get_checksum_last_log_tsEv:1040 + 2: 260 + 13.1: _ZN9oceanbase8memtable16ObTxCallbackList16ensure_checksum_El:3364 + 2: 260 + 4.1: 11 + 6.1: 11 + 7: 11 + 8: 11 + 8.3: 11 + 10: 11 + 11: 11 + 11.3: 11 + 8: _ZN9oceanbase6common15ObBatchChecksum4calcEv:473 + 2: 11 + 3: 11 + 4: 11 + 11: _ZN9oceanbase6common15ObBatchChecksum4calcEv:297 + 2: 11 + 3: 11 + 4: 11 +_ZN9oceanbase8memtable21TableLockRedoDataNode3setEPKNS0_13ObMemtableKeyERKNS_11transaction9tablelock13ObTableLockOpERKNS_6common10ObTabletIDEPNS0_16ObITransCallbackE:62190:750 + 5: 691 + 7: 691 + 8: 691 + 9: 691 + 10: 691 + 11: 691 + 12: 691 + 14: 691 + 15: 691 + 16: 691 + 6: _ZN9oceanbase8memtable13ObMemtableKey6encodeERKS1_:9674 + 3: 691 + 4: 691 + 13: _ZN9oceanbase6common10ObTabletIDaSERKS1_:4837 + 0: 691 +_ZN9oceanbase8memtable10ObMemtable5lock_ERNS_7storage10ObStoreCtxEmRKNS2_15ObTableReadInfoERKNS_6common13ObStoreRowkeyERNS0_13ObMemtableKeyE:62087:180 + 5: 168 + 6: 168 + 7: 168 + 8: 168 _ZN9oceanbase12blocksstable11ObRowWriterC1Ev:173 + 9: 143 + 10: 143 + 11.2: 139 + 12.1: 0 + 13.1: 139 _ZN9oceanbase12blocksstable11ObRowWriter12write_rowkeyERKNS_6common13ObStoreRowkeyERPcRl:150 + 13.2: 161 + 14.1: 0 + 16: 161 + 19: 161 + 20: 161 + 21: 161 _ZN9oceanbase8memtable10ObMemtable11mvcc_write_ERNS_7storage10ObStoreCtxEPKNS0_13ObMemtableKeyERKNS2_15ObTableReadInfoERKNS0_11ObTxNodeArgERb:164 + 21.1: 164 + 32: 164 + 33.5: 164 _ZN9oceanbase12blocksstable11ObRowWriterD1Ev:164 + 33.6: 0 + 11.1: _ZN9oceanbase8memtable13ObMemtableKey6encodeERKNS_6common8ObIArrayINS_5share6schema9ObColDescEEEPKNS2_13ObStoreRowkeyE:23558 + 3: 143 + 5: 143 + 6: 0 + 7.1: 0 + 8.1: 143 + 9.1: 0 + 12: 0 + 14.1: 143 + 14.2: 285 + 14.3: 285 + 14.5: 143 + 15: 143 + 16: 143 + 17.1: 143 + 18: 143 + 19.1: 143 + 20.1: 0 + 24: 0 + 25.2: 0 + 26: 143 + 28: 0 + 29.1: 0 + 30.1: 0 + 5: _ZNK9oceanbase6common13ObStoreRowkey10is_regularEv:2288 + 0: _ZNK9oceanbase6common8ObRowkey8is_validEv:2288 + 0: 143 + 0.1: 143 + 15: _ZNK9oceanbase6common13ObStoreRowkey11get_obj_ptrEv:429 + 0: _ZNK9oceanbase6common8ObRowkey11get_obj_ptrEv:429 + 0: 143 + 16: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE2atEl:1001 + 6: 143 + 17: _ZNK9oceanbase6common5ObObj8get_typeEv:429 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:429 + 0: 143 + 25.1: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:429 + 0: 143 + 29.1: _ZNK9oceanbase6common5ObObj18get_collation_typeEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta18get_collation_typeEv:0 + 0: 0 + 36: _ZN9oceanbase8memtable13ObMemtableKey6encodeEPKNS_6common13ObStoreRowkeyE:417 + 3: 139 + 16: _ZN9oceanbase8memtable14ObMemtableDataC2ENS_12blocksstable9ObDmlFlagElPKc:2254 + 1: 161 + 17: _ZN9oceanbase8memtable11ObTxNodeArgC2EPKNS0_14ObMemtableDataEPKNS0_9ObRowDataEll:7406 + 4: 161 + 5: 161 + 6: 161 + 8: 161 + 9: 161 + 10: 161 +_ZN9oceanbase6common18ObBaseResourcePoolINS_11transaction6LogBufILl1965056EEENS0_10RPStrLabelIXadL_ZNS0_8ObModIds17OB_TRANS_CLOG_BUFEEEEEE11alloc_node_Ev:61965:494 + 1: 453 + 7: 0 + 8: 0 + 10: 0 + 11: 0 + 12: 0 + 14: 0 + 18: 0 + 19: 0 + 21: 0 + 23: 0 + 26: 452 + 29: 452 + 30: 452 + 31: 452 + 31.1: 0 + 32: 0 + 37: 452 + 3: _ZN9oceanbase6common12ObFixedQueueINS0_18ObBaseResourcePoolINS_11transaction6LogBufILl1965056EEENS0_10RPStrLabelIXadL_ZNS0_8ObModIds17OB_TRANS_CLOG_BUFEEEEEE4NodeEE3popERPSA_:44327 + 3: 453 + 6: 453 + 7: 453 + 9.1: 454 + 9.2: 0 + 9.3: 454 + 10.1: 454 + 11: 1 + 13: 452 + 14: 452 + 15.1: 452 + 16: 248 + 22: _ZN9oceanbase6common18ObBaseResourcePoolINS_11transaction6LogBufILl1965056EEENS0_10RPStrLabelIXadL_ZNS0_8ObModIds17OB_TRANS_CLOG_BUFEEEEEE4NodeC2Ev:0 + 0.1: 0 + 0.4: _ZN9oceanbase3lib7ObLabelC2IPKcEERKT_:0 + 2: _ZN9oceanbase3lib7ObLabelaSIPKcvEERS1_T_:0 + 2: 0 +_ZNK9oceanbase5share6schema21ObSimpleTableSchemaV212get_table_idEv:61893:4915 + 0: 4761 +_ZN9oceanbase6common14ObMaxWaitGuardD2Ev:61812:5405 + 1: 5151 + 2: 5151 + 2.1: 0 + 3: 0 + 5: 0 + 6: 0 + 7: 0 + 9: 0 + 15.1: 5151 + 4: _ZN9oceanbase6common21ObDiagnoseSessionInfo12get_max_waitEv:0 + 0: 0 + 9: _ZN9oceanbase6common21ObDiagnoseSessionInfo12set_max_waitEPNS0_15ObWaitEventDescE:0 + 2: 0 + 12: _ZN9oceanbase6common21ObDiagnoseSessionInfo14reset_max_waitEv:0 + 0: 0 +_ZN9oceanbase6common14ObMaxWaitGuardD1Ev:61812:5405 + 1: 5151 + 2: 5151 + 2.1: 0 + 3: 0 + 5: 0 + 6: 0 + 7: 0 + 9: 0 + 15.1: 5151 + 4: _ZN9oceanbase6common21ObDiagnoseSessionInfo12get_max_waitEv:0 + 0: 0 + 9: _ZN9oceanbase6common21ObDiagnoseSessionInfo12set_max_waitEPNS0_15ObWaitEventDescE:0 + 2: 0 + 12: _ZN9oceanbase6common21ObDiagnoseSessionInfo14reset_max_waitEv:0 + 0: 0 +_ZN9oceanbase7storage17ObLSTabletService21insert_rows_to_tabletERNS0_14ObTabletHandleERNS0_15ObDMLRunningCtxEPKNS_6common8ObNewRowElRNS0_10ObRowsInfoEPNS0_10ObStoreRowERlSE_:61653:279 + 0: 5 + 9: 259 + 12: 259 + 14: 259 + 15.1: 259 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:262 + 16: 5 + 17: 5 + 18.1: 5 + 19.1: 249 + 20.1: 5 + 21.1: 252 _ZN9oceanbase7storage10ObRowsInfo15check_duplicateEPNS0_10ObStoreRowElRNS0_15ObRelativeTableE:254 + 24: 5 + 28: 5 + 29.1: 5 + 32: 5 + 33: 5 + 35.1: 5 + 35.13: 5 + 35.20: 5 + 39.1: 5 + 41.1: 252 _ZN9oceanbase7storage17ObLSTabletService22insert_lob_tablet_rowsERNS0_14ObTabletHandleERNS0_15ObDMLRunningCtxEPNS0_10ObStoreRowEl:256 + 42.1: 5 + 43.1: 257 _ZN9oceanbase7storage17ObLSTabletService18insert_tablet_rowsERNS0_14ObTabletHandleERNS0_15ObDMLRunningCtxEPNS0_10ObStoreRowElRNS0_10ObRowsInfoE:271 + 44.1: 5 + 46: 257 + 48: 257 + 19.1: _ZN9oceanbase7storage17ObLSTabletService20construct_table_rowsEPKNS_6common8ObNewRowEPNS0_10ObStoreRowEl:11414 + 5: 239 + 6: 239 + 7: 5 + 8.1: 5 + 10: 5 + 10.1: 239 + 11: 239 + 14: 5 + 25: _ZN9oceanbase7storage10ObRowsInfo20get_duplicate_rowkeyEv:35 + 0: 5 + 31: _ZN9oceanbase6common8ObStringC2EPKc:75 + 1: 5 + 3: 5 + 35.1: _ZN9oceanbase3lib14is_oracle_modeEv:455 + 2: _ZN9oceanbase3lib15get_compat_modeEv:455 + 2: 5 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:365 + 2: 5 + 2.1: 5 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:110 + 1: 5 +_ZN9oceanbase6common11ObArrayImplINS_11transaction9ObTransIDENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE7reserveEl:61440:1039 + 1: 996 + 3: 996 + 4: 0 + 5: 0 + 6: 0 + 6.3: 0 + 9: 1034 + 7: _ZN9oceanbase6common11ObArrayImplINS_11transaction9ObTransIDENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE10extend_bufEl:0 + 4: 0 + 5: 0 + 6: 0 + 8.2: 0 + 8.3: 0 + 8.5: 0 + 9: 0 + 15.1: 0 + 15.3: 0 + 16: 0 + 18: 0 + 19: 0 + 36: 0 + 37: 0 + 40.1: 0 + 4: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 9: _ZN9oceanbase6common16construct_assignINS_11transaction9ObTransIDEEEiRT_RKS4_:0 + 2: _ZN9oceanbase6common21construct_assign_wrapINS_11transaction9ObTransIDEEEiRT_RKS4_NS0_8BoolTypeILb0EEE:0 + 2: 0 + 16: _ZN9oceanbase11transaction9ObTransIDD2Ev:0 + 0: 0 + 19: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase7storage8ObTablet16do_rowkeys_existERNS0_20ObTableStoreIteratorERNS0_10ObRowsInfoERb:61324:234 + 1: 213 + 2: 213 + 4: 213 + 5: 0 + 6.1: 0 + 8: 213 + 9.1: 283 + 11: 210 + 13: 0 + 16.1: 0 + 17.1: 210 + 18: 0 + 19.1: 0 + 20.1: 283 _ZN9oceanbase8memtable10ObMemtable5existERNS_7storage10ObRowsInfoERbS5_:218 + 21.1: 0 + 27: 284 + 11: _ZN9oceanbase7storage20ObTableStoreIterator8get_nextERPNS0_8ObITableE:23612 + 2: 213 + 3: 213 + 4: 213 + 6.1: 213 + 7: 215 + 7.3: 215 + 8.1: 0 + 13.1: 210 + 14: 0 + 15.1: 0 + 17: 210 + 18: 210 + 20: 0 + 4: _ZNK9oceanbase6common12ObIArrayWrapIPNS_7storage8ObITableEE5countEv:852 + 0: 213 + 13.1: _ZN9oceanbase6common12ObIArrayWrapIPNS_7storage8ObITableEE2atEl:840 + 6: 210 +_ZN9oceanbase6common13ObSEArrayImplINS_11transaction8ObTxPartELl4ENS0_19ModulePageAllocatorELb0EE7destroyEv:61146:808 + 1: 758 + 4.1: 758 + 4.3: 0 + 5: 270 _ZN9oceanbase11transaction8ObTxPartD1Ev:275 + 9: 760 + 11: 0 + 13: 760 + 15: 760 + 24: 760 + 25: 760 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction8ObTxPartELl4ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: 0 +_ZN9oceanbase3lib9SetLocker6unlockEv:60696:6096 + 1: 6064 + 2: 6064 + 2: _ZN9oceanbase3lib7ObMutex6unlockEv:12184 + 0: 6064 _ZN9oceanbase6common12ObLatchMutex6unlockEv:6078 +_ZNK9oceanbase11transaction17ObTxCommitInfoLog19get_serialize_size_Ev:60655:273 + 0: 271 + 0.1: 271 + 0.2: 265 _ZNK9oceanbase11transaction17ObTxSerCompatByte15is_object_validEl:279 + 0.3: 275 _ZN9oceanbase6common13serialization14encoded_lengthINS0_9ObSEArrayINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EEEEElRKT_:268 + 0.4: 275 _ZNK9oceanbase11transaction17ObTxSerCompatByte15is_object_validEl:272 + 0.5: 3 + 0.6: 266 _ZNK9oceanbase11transaction17ObTxSerCompatByte15is_object_validEl:294 + 0.8: 265 _ZNK9oceanbase11transaction17ObTxSerCompatByte15is_object_validEl:269 + 0.10: 260 _ZNK9oceanbase11transaction17ObTxSerCompatByte15is_object_validEl:261 + 0.12: 260 _ZNK9oceanbase11transaction17ObTxSerCompatByte15is_object_validEl:257 + 0.13: 3 + 0.14: 279 _ZNK9oceanbase11transaction17ObTxSerCompatByte15is_object_validEl:288 + 0.15: 279 _ZN9oceanbase6common13serialization14encoded_lengthEm:284 + 0.16: 285 _ZNK9oceanbase11transaction17ObTxSerCompatByte15is_object_validEl:281 + 0.17: 3 + 0.18: 290 _ZNK9oceanbase11transaction17ObTxSerCompatByte15is_object_validEl:287 + 0.19: 3 + 0.20: 294 _ZNK9oceanbase11transaction17ObTxSerCompatByte15is_object_validEl:292 + 0.21: 3 + 0.22: 300 _ZNK9oceanbase11transaction17ObTxSerCompatByte15is_object_validEl:287 + 0.23: 3 + 0.24: 301 _ZNK9oceanbase11transaction17ObTxSerCompatByte15is_object_validEl:305 + 0.25: 3 + 0.26: 287 + 0.27: 260 _ZNK9oceanbase11transaction17ObTxSerCompatByte15is_object_validEl:275 + 0: _ZNK9oceanbase11transaction17ObTxSerCompatByte18get_serialize_sizeEv:1040 + 0: 260 + 0.1: _ZN9oceanbase6common13serialization14encoded_lengthINS0_6ObAddrEEElRKT_:271 + 2: _ZN9oceanbase6common13serialization11EnumEncoderILb0ENS0_6ObAddrEE14encoded_lengthERKS3_:271 + 2: 271 _ZNK9oceanbase6common6ObAddr18get_serialize_sizeEv:280 + 0.5: _ZN9oceanbase6common13serialization14encoded_lengthINS_5share6ObLSIDEEElRKT_:15 + 2: _ZN9oceanbase6common13serialization11EnumEncoderILb0ENS_5share6ObLSIDEE14encoded_lengthERKS4_:15 + 2: 3 + 0.17: _ZN9oceanbase6common13serialization14encoded_lengthINS0_8ObStringEEElRKT_:15 + 2: _ZN9oceanbase6common13serialization11EnumEncoderILb0ENS0_8ObStringEE14encoded_lengthERKS3_:15 + 2: 3 + 0.19: _ZN9oceanbase6common13serialization14encoded_lengthINS0_8ObStringEEElRKT_:15 + 2: _ZN9oceanbase6common13serialization11EnumEncoderILb0ENS0_8ObStringEE14encoded_lengthERKS3_:15 + 2: 3 + 0.21: _ZN9oceanbase6common13serialization14encoded_lengthINS_4palf3LSNEEElRKT_:15 + 2: _ZN9oceanbase6common13serialization11EnumEncoderILb0ENS_4palf3LSNEE14encoded_lengthERKS4_:15 + 2: 3 + 0.23: _ZN9oceanbase6common13serialization14encoded_lengthINS0_9ObSEArrayINS_4palf3LSNELl10ENS0_19ModulePageAllocatorELb0EEEEElRKT_:15 + 2: 3 + 0.25: _ZN9oceanbase6common13serialization14encoded_lengthINS_11transaction11ObXATransIDEEElRKT_:24 + 2: _ZN9oceanbase6common13serialization11EnumEncoderILb0ENS_11transaction11ObXATransIDEE14encoded_lengthERKS4_:24 + 2: 3 +_ZN9oceanbase11transaction12ObTxSnapshotD2Ev:60620:2294 + 1: 2165 + 2: 2165 + 3: 2165 + 4: 2165 + 5: 2165 +_ZN9oceanbase11transaction12ObTxSnapshotD1Ev:60620:2294 + 1: 2165 + 2: 2165 + 3: 2165 + 4: 2165 + 5: 2165 +_ZN9oceanbase11transaction8ObTxDescD2Ev:60597:265 + 1: 261 + 2: 261 _ZN9oceanbase11transaction8ObTxDesc5resetEv:269 + 3: 238 + 3.1: 0 + 3.2: 0 + 3.8: 250 _ZN9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EED2Ev:250 + 3.10: 249 _ZN9oceanbase6common11ObArrayImplINS_11transaction16ObTransIDAndAddrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev:252 + 3.12: 231 _ZN9oceanbase6common13ObSEArrayImplINS_11transaction8ObTxPartELl4ENS0_19ModulePageAllocatorELb0EED2Ev:249 + 3.18: 0 + 3.19: 0 + 3.20: 0 + 3.21: 0 + 3.22: 0 + 3.24: 0 + 3.25: 0 + 3.26: 0 + 3.27: 0 + 3: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EED2Ev:2184 + 0: _ZN9oceanbase3lib7ObMutexD2Ev:2184 + 0: 273 _ZN9oceanbase6common12ObLatchMutexD1Ev:280 + 3.3: _ZN9oceanbase6common15ObTimeWheelTaskD2Ev:4464 + 0: 248 + 3.4: _ZN9oceanbase11transaction11ObTransCondD2Ev:4748 + 0: _ZN6obutil9ObMonitorINS_5MutexEED2Ev:4748 + 2: 248 _ZN6obutil5MutexD1Ev:263 + 2.1: 257 _ZN6obutil4CondD1Ev:257 + 3.5: _ZN9oceanbase6common10ObMaskSet2INS_11transaction6ObPairINS_5share6ObLSIDElEEED2Ev:6240 + 0: _ZN9oceanbase6common8ObBitSetILl256ENS0_19ModulePageAllocatorELb0EED2Ev:6240 + 0: 240 _ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb0EED2Ev:253 + 3.6: _ZN9oceanbase6common10ObSpinLockD2Ev:2000 + 2: 250 _ZN9oceanbase6common12ObLatchMutexD1Ev:263 + 3.7: _ZN9oceanbase6common10ObSpinLockD2Ev:2024 + 2: 253 _ZN9oceanbase6common12ObLatchMutexD1Ev:259 + 3.9: _ZN9oceanbase5share6ObLSIDD2Ev:2739 + 0: _ZN9oceanbase5share6ObLSID5resetEv:2739 + 0: 249 + 3.11: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction13ObTxSavePointELl4ENS0_19ModulePageAllocatorELb0EED2Ev:18942 + 1: 231 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction13ObTxSavePointELl4ENS0_19ModulePageAllocatorELb0EE7destroyEv:14784 + 4.1: 231 + 4.3: 0 + 9: 231 + 10: 0 + 11: 0 + 13: 231 + 15: 231 + 24: 231 + 5: _ZN9oceanbase11transaction13ObTxSavePointD2Ev:0 + 2: _ZN9oceanbase11transaction13ObTxSavePoint7releaseEv:0 + 2: 0 + 3: 0 + 3.13: _ZN9oceanbase11transaction11ObXATransIDD2Ev:238 + 0: _ZN9oceanbase11transaction11ObXATransID7destroyEv:238 + 0: 238 _ZN9oceanbase11transaction11ObXATransID5resetEv:243 + 3.14: _ZN9oceanbase11transaction9ObTransIDD2Ev:2519 + 0: 229 + 3.16: _ZN9oceanbase11transaction15ObTransHashLinkINS0_8ObTxDescEED2Ev:2977 + 2: 229 + 3: 229 + 3.17: _ZN9oceanbase6common15ObTimeWheelTaskD2Ev:0 + 0: 0 + 3.23: _ZN9oceanbase5share6ObLSIDD2Ev:0 + 0: _ZN9oceanbase5share6ObLSID5resetEv:0 + 0: 0 + 3.28: _ZN9oceanbase11transaction9ObTransIDD2Ev:0 + 0: 0 + 3.30: _ZN9oceanbase11transaction15ObTransHashLinkINS0_8ObTxDescEED2Ev:0 + 2: 0 + 3: 0 +_ZN9oceanbase11transaction8ObTxDescD1Ev:60597:265 + 1: 261 + 2: 261 _ZN9oceanbase11transaction8ObTxDesc5resetEv:269 + 3: 238 + 3.1: 0 + 3.2: 0 + 3.8: 250 _ZN9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EED2Ev:250 + 3.10: 249 _ZN9oceanbase6common11ObArrayImplINS_11transaction16ObTransIDAndAddrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev:252 + 3.12: 231 _ZN9oceanbase6common13ObSEArrayImplINS_11transaction8ObTxPartELl4ENS0_19ModulePageAllocatorELb0EED2Ev:249 + 3.18: 0 + 3.19: 0 + 3.20: 0 + 3.21: 0 + 3.22: 0 + 3.24: 0 + 3.25: 0 + 3.26: 0 + 3.27: 0 + 3: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EED2Ev:2184 + 0: _ZN9oceanbase3lib7ObMutexD2Ev:2184 + 0: 273 _ZN9oceanbase6common12ObLatchMutexD1Ev:280 + 3.3: _ZN9oceanbase6common15ObTimeWheelTaskD2Ev:4464 + 0: 248 + 3.4: _ZN9oceanbase11transaction11ObTransCondD2Ev:4748 + 0: _ZN6obutil9ObMonitorINS_5MutexEED2Ev:4748 + 2: 248 _ZN6obutil5MutexD1Ev:263 + 2.1: 257 _ZN6obutil4CondD1Ev:257 + 3.5: _ZN9oceanbase6common10ObMaskSet2INS_11transaction6ObPairINS_5share6ObLSIDElEEED2Ev:6240 + 0: _ZN9oceanbase6common8ObBitSetILl256ENS0_19ModulePageAllocatorELb0EED2Ev:6240 + 0: 240 _ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb0EED2Ev:253 + 3.6: _ZN9oceanbase6common10ObSpinLockD2Ev:2000 + 2: 250 _ZN9oceanbase6common12ObLatchMutexD1Ev:263 + 3.7: _ZN9oceanbase6common10ObSpinLockD2Ev:2024 + 2: 253 _ZN9oceanbase6common12ObLatchMutexD1Ev:259 + 3.9: _ZN9oceanbase5share6ObLSIDD2Ev:2739 + 0: _ZN9oceanbase5share6ObLSID5resetEv:2739 + 0: 249 + 3.11: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction13ObTxSavePointELl4ENS0_19ModulePageAllocatorELb0EED2Ev:18942 + 1: 231 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction13ObTxSavePointELl4ENS0_19ModulePageAllocatorELb0EE7destroyEv:14784 + 4.1: 231 + 4.3: 0 + 9: 231 + 10: 0 + 11: 0 + 13: 231 + 15: 231 + 24: 231 + 5: _ZN9oceanbase11transaction13ObTxSavePointD2Ev:0 + 2: _ZN9oceanbase11transaction13ObTxSavePoint7releaseEv:0 + 2: 0 + 3: 0 + 3.13: _ZN9oceanbase11transaction11ObXATransIDD2Ev:238 + 0: _ZN9oceanbase11transaction11ObXATransID7destroyEv:238 + 0: 238 _ZN9oceanbase11transaction11ObXATransID5resetEv:243 + 3.14: _ZN9oceanbase11transaction9ObTransIDD2Ev:2519 + 0: 229 + 3.16: _ZN9oceanbase11transaction15ObTransHashLinkINS0_8ObTxDescEED2Ev:2977 + 2: 229 + 3: 229 + 3.17: _ZN9oceanbase6common15ObTimeWheelTaskD2Ev:0 + 0: 0 + 3.23: _ZN9oceanbase5share6ObLSIDD2Ev:0 + 0: _ZN9oceanbase5share6ObLSID5resetEv:0 + 0: 0 + 3.28: _ZN9oceanbase11transaction9ObTransIDD2Ev:0 + 0: 0 + 3.30: _ZN9oceanbase11transaction15ObTransHashLinkINS0_8ObTxDescEED2Ev:0 + 2: 0 + 3: 0 +_ZN9oceanbase7storage15ObDMLRunningCtx19prepare_column_infoERKNS_6common8ObIArrayImEE:60349:891 + 1: 803 + 2: 803 + 3: 803 + 4: 0 + 5.1: 0 + 7: 803 + 8: 803 + 9: 0 + 10.1: 0 + 11.1: 803 + 12: 321 + 15: 835 + 12: _ZNK9oceanbase5share6schema15ObTableDMLParam11get_col_mapEv:1284 + 0: 321 +_ZN9oceanbase6common12ObKVCacheMap3putERNS0_13ObKVCacheInstERKNS0_13ObIKVCacheKeyEPKNS0_13ObKVCachePairEPNS0_18ObKVMemBlockHandleEb:60275:90 + 6: 88 + 7: 88 + 11: 88 + 13: 88 + 14: 0 + 15.1: 0 + 16.1: 88 + 17: 88 + 18: 0 + 19.1: 0 + 20.1: 91 _ZNK9oceanbase12blocksstable17ObFuseRowCacheKey4hashERm:88 + 21.1: 0 + 23: 91 + 24: 91 + 26: 91 _ZN9oceanbase6common24GlobalHazardVersionGuardC1ERNS0_19GlobalHazardVersionE:91 + 27: 92 + 28.1: 90 + 29.1: 0 + 30.2: 90 + 31.1: 0 + 33: 90 + 34: 90 + 35: 90 + 36.1: 90 + 37: 11 _ZN9oceanbase6common14ObKVCacheStore14add_handle_refEPNS0_18ObKVMemBlockHandleEj:11 + 37.1: 9 + 38: 0 + 41.1: 9 + 44: 8 + 45: 0 + 45.1: 0 + 46.1: 0 + 47.1: 0 + 48: 0 + 49: 0 + 51: 0 + 55: 10 _ZN9oceanbase6common14ObKVCacheStore13de_handle_refEPNS0_18ObKVMemBlockHandleE:11 + 57: 8 + 60: 6 + 63: 90 + 63.1: 100 + 64: 0 + 65.1: 0 + 69: 100 + 70: 100 + 71: 100 + 71.1: 100 + 72: 100 + 73: 100 + 74: 100 + 75: 100 + 78: 100 + 80: 93 + 83: 0 + 84: 0 + 87: 93 + 88: 93 + 89: 93 + 93: 93 + 94: 93 + 97: 93 + 106: 87 + 27: _ZN9oceanbase6common18ObBucketWLockGuardC2ERNS0_12ObBucketLockEm:3840 + 1: 92 + 2: 92 + 3: 92 + 4: 92 + 6: 106 _ZN9oceanbase6common12ObBucketLock6wrlockEm:93 + 7.1: 0 + 9: 106 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:106 + 28: _ZNK9oceanbase6common24GlobalHazardVersionGuard7get_retEv:540 + 0: 90 + 30.1: _ZNK9oceanbase6common18ObBucketWLockGuard7get_retEv:270 + 0: 90 + 33: _ZN9oceanbase6common12ObKVCacheMap15get_bucket_nodeEl:3420 + 2: 90 + 3: 90 + 39: _ZN9oceanbase6common12ObKVCacheMap18internal_map_eraseERPNS1_4NodeES4_S4_:0 + 5: 0 + 10: 0 + 11: 0 + 41: _ZN9oceanbase6common17ObLfFIFOAllocator11is_fragmentEPv:477 + 0: _ZN9oceanbase6common13ObVSliceAlloc21get_block_using_ratioEPv:477 + 5: 9 + 8: 9 + 9: 9 + 10: 9 + 6: _ZNK9oceanbase6common14ObBlockVSlicer12get_blk_sizeEv:27 + 0: 9 + 7: _ZN9oceanbase6common14ObBlockVSlicer14get_using_sizeEv:36 + 0: 9 + 42: _ZN9oceanbase6common12ObKVCacheMap20internal_map_replaceERPNS1_4NodeES4_S4_:532 + 5: 4 + 12: 3 + 19: 3 _ZN9oceanbase6common19GlobalHazardVersion11delete_nodeEPNS0_17KVCacheHazardNodeE:3 + 5: _ZN9oceanbase6common17ObLfFIFOAllocator5allocEl:24 + 0: 4 _ZN9oceanbase6common13ObVSliceAlloc5allocEl:4 + 6: _ZN9oceanbase6common12ObKVCacheMap4NodeC2Ev:192 + 2: 3 + 4: 3 + 9: 3 + 0: _ZN9oceanbase6common17KVCacheHazardNodeC2Ev:69 + 1: 3 + 2: 3 + 7: _ZN9oceanbase6common12ObKVCacheMap4NodeaSERKS2_:162 + 0: 3 + 0: _ZN9oceanbase6common17KVCacheHazardNodeaSERKS1_:33 + 0: 3 + 63: _ZN9oceanbase6common17ObLfFIFOAllocator5allocEl:540 + 0: 90 _ZN9oceanbase6common13ObVSliceAlloc5allocEl:98 + 67: _ZN9oceanbase6common12ObKVCacheMap4NodeC2Ev:5900 + 2: 100 + 4: 100 + 9: 100 + 0: _ZN9oceanbase6common17KVCacheHazardNodeC2Ev:1600 + 1: 100 + 2: 100 + 71: _ZNK9oceanbase6common17ObAtomicReference11get_seq_numEv:300 + 0: 100 + 90: _ZN9oceanbase6common9ObCounterILl32ENS0_33ObCounterSlotPickerByCPUNonAtomicEE3incEl:4743 + 2: 93 + 2: _ZN9oceanbase6common33ObCounterSlotPickerByCPUNonAtomic9get_my_idEv:2883 + 0: _ZN9oceanbase6common7icpu_idEv:2883 + 2: _ZN9oceanbase6common12sched_getcpuEv:2883 + 0: 93 + 0: _ZN9oceanbase6common8get_itidEv:2604 + 4: 93 + 5: 0 + 6: 0 + 8: 0 + 2.1: _ZN9oceanbase6common33ObCounterSlotPickerByCPUNonAtomic9add_valueEPll:1488 + 0: 93 + 98: _ZN9oceanbase6common12ObKVCacheMap18internal_map_eraseERPNS1_4NodeES4_S4_:0 + 5: 0 + 11: 0 + 104: _ZN9oceanbase6common18ObBucketWLockGuardD2Ev:4267 + 2: 93 + 3: 93 _ZN9oceanbase6common12ObBucketLock6unlockEm:93 + 3.1: 91 + 4.1: 0 + 6: 91 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:95 + 6.1: 89 + 7: 89 + 8.1: 0 + 104.1: _ZN9oceanbase6common18ObBucketWLockGuardD2Ev:0 + 2: 0 + 3: 0 + 3.1: 0 + 4.1: 0 + 6: 0 + 6.1: 0 + 7: 0 + 8.1: 0 + 104.2: _ZN9oceanbase6common24GlobalHazardVersionGuardD2Ev:0 + 2: 0 + 2.1: 0 + 104.3: _ZN9oceanbase6common24GlobalHazardVersionGuardD2Ev:712 + 2: 89 _ZN9oceanbase6common19GlobalHazardVersion7releaseEv:96 + 2.1: 0 +_ZN9oceanbase11transaction12ObTxLogBlock11add_new_logINS0_17ObTxCommitInfoLogEEEiRT_:60265:278 + 1: 258 + 2: 258 + 3: 258 + 5: 258 + 5.1: 264 + 6: 0 + 7.1: 0 + 13: 296 + 14: 1 + 15.1: 266 + 16: 1 + 17.1: 1 + 18.1: 266 + 19.1: 1 + 20.1: 270 + 20.2: 266 _ZNK9oceanbase11transaction17ObTxCommitInfoLog9serializeEPclRl:273 + 21.1: 1 + 25: 0 + 27: 259 + 27.1: 253 _ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EE9push_backERKS3_:256 + 28.1: 1 + 29: 1 + 30: 259 + 34: 1 + 35.1: 1 + 38: 259 + 4: _ZN9oceanbase11transaction13ObTxLogHeaderC2ENS0_11ObTxLogTypeE:2064 + 0: 258 + 13.1: _ZNK9oceanbase11transaction17ObTxCommitInfoLog18get_serialize_sizeEv:1056 + 0: _ZNK9oceanbase11transaction17ObTxCommitInfoLog28get_serialize_size_dispatch_ESt17integral_constantIbLb0EE:1056 + 0: 264 _ZNK9oceanbase11transaction17ObTxCommitInfoLog19get_serialize_size_Ev:273 + 18.2: _ZNK9oceanbase11transaction13ObTxLogHeader9serializeEPclRl:13832 + 5: 266 + 9: 266 + 7.1: _ZN9oceanbase6common13serialization10encode_i64EPclRll:8246 + 3: 266 + 4: 266 + 5: 266 + 12: 266 + 27: _ZN9oceanbase11transaction9ObTxCbArgC2ENS0_11ObTxLogTypeEPKv:3795 + 0: 253 +_ZNK9oceanbase5share6schema21ObSimpleTableSchemaV213get_tenant_idEv:59956:4691 + 0: 4612 +_ZN9oceanbase11transaction12ObTxExecInfo7destroyEv:59898:283 + 1: 243 + 2.1: 243 + 2.3: 0 + 4: 0 + 9: 256 + 2.1: _ZNK9oceanbase6common12ObIArrayWrapINS_11transaction14ObTxBufferNodeEE5countEv:1701 + 0: 243 + 3: _ZN9oceanbase6common12ObIArrayWrapINS_11transaction14ObTxBufferNodeEE2atEl:0 + 6: 0 + 4: _ZN9oceanbase6common8ObString3ptrEv:0 + 0: 0 + 5.1: _ZN9oceanbase5share8mtl_freeEPv:0 + 2: 0 + 8: _ZN9oceanbase11transaction12ObTxExecInfo5resetEv:50035 + 2: 243 + 4: 243 + 5: 264 + 6: 259 _ZN9oceanbase4palf3LSN5resetEv:259 + 7: 244 + 9: 259 + 11: 259 + 13: 259 + 14: 259 + 16: 259 + 18: 259 _ZN9oceanbase4palf3LSN5resetEv:266 + 19: 258 + 22: 258 + 23: 244 + 24: 234 _ZN9oceanbase11transaction11ObXATransID5resetEv:257 + 25: 256 + 3: _ZN9oceanbase5share6ObLSID5resetEv:972 + 0: 243 + 4: _ZN9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EE5resetEv:1215 + 0: 243 _ZN9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EE7destroyEv:246 + 5: _ZN9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EE5resetEv:2112 + 0: 264 _ZN9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EE7destroyEv:264 + 7: _ZN9oceanbase6common13ObSEArrayImplINS_4palf3LSNELl10ENS0_19ModulePageAllocatorELb0EE5resetEv:1952 + 0: 244 _ZN9oceanbase6common13ObSEArrayImplINS_4palf3LSNELl10ENS0_19ModulePageAllocatorELb0EE7destroyEv:265 + 8: _ZN9oceanbase6common6ObAddr5resetEv:2590 + 2: 259 + 22: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EE5resetEv:2064 + 0: 258 _ZN9oceanbase6common13ObSEArrayImplINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:258 + 23: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction11ObLSLogInfoELl10ENS0_19ModulePageAllocatorELb0EE5resetEv:1952 + 0: 244 _ZN9oceanbase6common13ObSEArrayImplINS_11transaction11ObLSLogInfoELl10ENS0_19ModulePageAllocatorELb0EE7destroyEv:244 +_ZNK9oceanbase4palf14LogGroupBuffer15get_buffer_pos_ERKNS0_3LSNERl:59785:558 + 2: 523 + 7: 523 + 8: 523 _ZN9oceanbase4palf3LSNC1Ev:545 + 10: 529 + 11: 0 + 12.1: 529 _ZNK9oceanbase4palf3LSN8is_validEv:561 + 12.2: 555 + 13: 0 + 14.1: 0 + 15.1: 555 _ZNK9oceanbase4palf3LSNltERKS1_:574 + 15.2: 547 + 16: 0 + 17.1: 0 + 19: 547 _ZN9oceanbase4palfmiERKNS0_3LSNES3_:582 + 22.1: 526 + 24: 526 + 25.4: 526 + 9: _ZNK9oceanbase4palf14LogGroupBuffer21get_buffer_start_lsn_ERNS0_3LSNE:9284 + 2: 544 _ZN9oceanbase4palf3LSNC1Em:572 + 2.4: 548 _ZN9oceanbase4palf3LSNaSERKS1_:561 + 22: _ZNK9oceanbase4palf14LogGroupBuffer24get_reserved_buffer_sizeEv:2104 + 3: 526 +parse_realloc:59710:551 + 1: 530 + 4: 530 + 6: 530 + 7: 1 + 10: 573 _Z19parser_alloc_bufferPvl:545 + 12: 573 + 13: 573 + 14: 573 + 15: 573 + 15.3: 573 + 16: 534 _Z18parser_free_bufferPvS_:562 + 20: 563 +_ZN9oceanbase3sql17ObChunkDatumStore11RowIteratorC2Ev:59535:1761 + 2: 1701 + 7: 1701 + 9: 1701 +_ZN9oceanbase3sql17ObChunkDatumStore11RowIteratorC1Ev:59535:1761 + 2: 1701 + 7: 1701 + 9: 1701 +_ZN9oceanbase3sql16ObSQLSessionInfo22set_early_lock_releaseEb:59423:4587 + 1: 4571 + 2: 4571 + 7: 4571 +_ZNK9oceanbase6common14ObTimeZoneInfo19get_timezone_offsetElRi:59261:3168 + 1: 3119 + 3: 3119 + 6: 3119 + 9: 3119 +_ZN9oceanbase6common18ObServerObjectPoolINS_11transaction14ObPartTransCtxEE13borrow_objectEv:59027:269 + 0: 266 + 2: 266 + 3: 266 + 6: 299 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:266 + 9: 273 + 10: 289 + 11: 271 + 12: 271 + 13: 271 + 14: 271 + 16: 2 + 17: 2 + 23: 289 + 24: 4 + 24.1: 4 _ZN9oceanbase6common9ob_mallocElRKNS_3lib7ObLabelE:4 + 25: 1 + 26.1: 0 + 29: 1 + 30: 1 + 32: 1 + 33: 1 _ZN9oceanbase11transaction14ObPartTransCtxC2Ev:1 + 36: 285 + 2: _ZN9oceanbase6common8get_itidEv:7448 + 4: 266 + 5: 0 + 6: 0 + 8: 0 + 3: _ZN9oceanbase6common26ObCacheLineSegregatedArrayINS0_15ObPoolArenaHeadEE4sizeEv:1064 + 0: 266 + 5: _ZN9oceanbase6common26ObCacheLineSegregatedArrayINS0_15ObPoolArenaHeadEEixEl:4522 + 1: 266 + 2: 266 + 4.1: 0 + 5: 0 + 8: _ZN9oceanbase6common13ObLatchWGuardC2ERNS0_7ObLatchEj:10478 + 1: 299 + 4: 299 _ZN9oceanbase6common7ObLatch6wrlockEjlPKj:303 + 5.1: 0 + 19: _ZN9oceanbase6common13ObLatchWGuardD2Ev:6728 + 2: 273 + 3: 273 _ZN9oceanbase6common7ObLatch6unlockEPKj:286 + 3.1: 289 + 4.1: 0 + 24: _ZN9oceanbase3lib7ObLabelC2IA16_cEERKT_:56 + 2: _ZN9oceanbase3lib7ObLabelaSILm16EEERS1_RAT__Kc:56 + 4: 4 +_ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb1EE7destroyEv:58752:1116 + 1: 1088 + 9: 1088 + 10: 0 + 11: 0 + 13: 1088 + 15: 1088 + 24: 1088 + 25: 1088 +_ZN9oceanbase11transaction12ObTxLogBlockD2Ev:58746:552 + 1: 525 + 8: 534 _ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EED2Ev:532 + 8.1: 0 + 8.2: 0 + 2: _ZN9oceanbase11transaction12ObTxLogBlock5resetEv:44502 + 2: 525 + 6: 516 + 9: 516 + 3: _ZN9oceanbase11transaction14ClogBufFactory7releaseEPNS0_6LogBufILl1965056EEE:23790 + 0.4: 516 + 0.6: 525 _ZN9oceanbase6common17get_resource_poolINS_11transaction6LogBufILl1965056EEEXadL_ZNS0_8ObModIds17OB_TRANS_CLOG_BUFEEEEERNS0_14ObResourcePoolIT_NS0_10RPStrLabelIXT0_EEEEEv:562 + 0.7: _ZN9oceanbase6common18ObBaseResourcePoolINS_11transaction6LogBufILl1965056EEENS0_10RPStrLabelIXadL_ZNS0_8ObModIds17OB_TRANS_CLOG_BUFEEEEEE4freeEPS4_:17589 + 3: 533 + 4: 533 + 5.1: 0 + 8: 533 _ZN9oceanbase6common18ObBaseResourcePoolINS_11transaction6LogBufILl1965056EEENS0_10RPStrLabelIXadL_ZNS0_8ObModIds17OB_TRANS_CLOG_BUFEEEEEE10free_node_EPNS8_4NodeE:540 + 9: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EE5resetEv:4128 + 0: 516 _ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EE7destroyEv:518 +_ZN9oceanbase11transaction12ObTxLogBlockD1Ev:58746:552 + 1: 525 + 8: 534 _ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EED2Ev:532 + 8.1: 0 + 8.2: 0 + 2: _ZN9oceanbase11transaction12ObTxLogBlock5resetEv:44502 + 2: 525 + 6: 516 + 9: 516 + 3: _ZN9oceanbase11transaction14ClogBufFactory7releaseEPNS0_6LogBufILl1965056EEE:23790 + 0.4: 516 + 0.6: 525 _ZN9oceanbase6common17get_resource_poolINS_11transaction6LogBufILl1965056EEEXadL_ZNS0_8ObModIds17OB_TRANS_CLOG_BUFEEEEERNS0_14ObResourcePoolIT_NS0_10RPStrLabelIXT0_EEEEEv:562 + 0.7: _ZN9oceanbase6common18ObBaseResourcePoolINS_11transaction6LogBufILl1965056EEENS0_10RPStrLabelIXadL_ZNS0_8ObModIds17OB_TRANS_CLOG_BUFEEEEEE4freeEPS4_:17589 + 3: 533 + 4: 533 + 5.1: 0 + 8: 533 _ZN9oceanbase6common18ObBaseResourcePoolINS_11transaction6LogBufILl1965056EEENS0_10RPStrLabelIXadL_ZNS0_8ObModIds17OB_TRANS_CLOG_BUFEEEEEE10free_node_EPNS8_4NodeE:540 + 9: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EE5resetEv:4128 + 0: 516 _ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EE7destroyEv:518 +_ZN9oceanbase6common11smart_allocElPKc:58688:445 + 1: 437 + 2: 0 + 2.1: 0 + 5: 437 + 5.3: 500 + 2: _ZNK9oceanbase6common14NamedEventItemcviEv:10488 + 0: _ZNK9oceanbase6common9EventItem4callEv:10488 + 2: 437 + 3: 437 + 5.1: 0 + 7.1: 0 + 8: 0 + 9.1: 0 + 11: 0 + 12: 0 + 13.1: 0 + 2.1: _ZNK9oceanbase6common14NamedEventItemcviEv:0 + 0: 0 + 3.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:10051 + 5: 437 + 7: 437 + 4: _ZN9oceanbase3lib7ObLabelaSIPKcvEERS1_T_:1748 + 2: 437 + 5.1: _ZN9oceanbase3lib6ctxalfElRKNS0_9ObMemAttrE:21850 + 3: _ZN9oceanbase3lib4Flow11current_ctxEv:12236 + 2: _ZN9oceanbase3lib4Flow12current_flowEv:12236 + 3: 437 + 8: 0 + 10: 0 + 11: 0 + 12: 0 + 8.1: _ZN9oceanbase3lib4FlowC2ERNS0_13MemoryContextE:0 + 1: 0 + 3: 0 + 11: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 3.1: _ZNK9oceanbase3lib13MemoryContextptEv:1748 + 1: 437 + 3.2: _ZN9oceanbase3lib17__MemoryContext__6allocfElRKNS0_9ObMemAttrE:7866 + 3: 437 _ZN9oceanbase6common11ObAllocator5allocElRKNS_3lib9ObMemAttrE:464 +_ZN9oceanbase6common13ObSEArrayImplINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EED2Ev:58596:796 + 1: 771 + 3: 771 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:30069 + 9: 771 + 11: 0 + 13: 771 + 15: 771 + 24: 771 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase10logservice13ObApplyStatus14push_append_cbEPNS0_8AppendCbE:58536:260 + 1: 232 + 2: 232 + 3: 232 + 4: 0 + 5.1: 0 + 8: 256 _ZN9oceanbase4palf3LSNC1Ev:270 + 9.1: 274 _ZN9oceanbase4palf3LSNC1ERKS1_:276 + 10.1: 262 + 11: 262 + 12: 262 _ZN9oceanbase10logservice12AppendCbBase20__get_member_addressEPNS0_8AppendCbE:271 + 14: 234 + 14.1: 234 + 15: 0 + 16.1: 0 + 19.1: 234 _ZZN9oceanbase10logservice13ObApplyStatus14push_append_cbEPNS0_8AppendCbEENK4$_20clEPKc.d3a41d52a3cfae37a6a74713ee8e7132:234 + 20: 247 _ZN9oceanbase4palf3LSNC1Em:271 + 20.1: 271 _ZN9oceanbase4palf3LSNaSERKS1_:271 + 21: 270 _ZNK9oceanbase4palf3LSNltERKS1_:271 + 21.1: 265 + 23: 0 + 23.1: 0 + 24.1: 0 + 26.1: 0 + 30.1: 242 + 31: 242 + 32.1: 0 + 36: 249 + 7: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:2024 + 2: 256 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:277 + 9: _ZNK9oceanbase10logservice12AppendCbBase9__get_lsnEv:2192 + 0: 274 + 10: _ZNK9oceanbase10logservice12AppendCbBase11__get_ts_nsEv:1048 + 0: 262 + 13: _ZN9oceanbase10logservice23ObApplyServiceQueueTask23inc_total_submit_cb_cntEv:3978 + 2.1: 234 + 14: _ZN9oceanbase10logservice23ObApplyServiceQueueTask4pushEPNS_6common6ObLinkE:8892 + 2: _ZN9oceanbase6common13ObSpLinkQueue4pushEPNS0_6ObLinkE:8892 + 4: 234 + 7: 234 + 8: 234 + 9: 234 + 15: _ZN9oceanbase10logservice23ObApplyServiceQueueTask22inc_total_apply_cb_cntEv:0 + 2.1: 0 + 30: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:267 + 2: 267 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:268 +_ZN9oceanbase7storage8ObTablet8lock_rowERNS0_15ObRelativeTableERNS0_10ObStoreCtxERKNS_6common8ObNewRowE:58425:161 + 4: 149 + 5: 149 + 6: 149 _ZN9oceanbase7storage19ObStorageTableGuardC1EPNS0_8ObTabletERNS0_10ObStoreCtxEbblb:169 + 8: 163 + 9: 0 + 10.1: 0 + 11.1: 163 _ZNK9oceanbase7storage15ObRelativeTable8is_validEv:164 + 11.2: 0 + 12: 149 + 12.1: 149 _ZNK9oceanbase7storage10ObStoreCtx8is_validEv:149 + 13: 148 + 14: 0 + 15.1: 0 + 17.1: 144 _ZNK9oceanbase7storage15ObRelativeTable13get_tablet_idEv:144 + 17.3: 133 + 18: 0 + 19.1: 0 + 20.1: 133 _ZNK9oceanbase7storage15ObRelativeTable12get_table_idEv:133 + 20.2: 130 _ZNK9oceanbase7storage15ObRelativeTable18get_schema_versionEv:132 + 20.4: 126 + 22.1: 0 + 23.1: 126 _ZN9oceanbase7storage19ObStorageTableGuard25refresh_and_protect_tableERNS0_15ObRelativeTableE:130 + 23.2: 179 + 24.1: 0 + 26: 0 + 28.1: 159 + 29.1: 0 + 30.1: 159 _ZNK9oceanbase7storage15ObRelativeTable12get_table_idEv:164 + 30.2: 162 _ZN9oceanbase8memtable10ObMemtable4lockERNS_7storage10ObStoreCtxEmRKNS2_15ObTableReadInfoERKNS_6common8ObNewRowE:165 + 30.3: 156 + 32.1: 0 + 35: 156 + 36.9: 196 _ZN9oceanbase7storage19ObStorageTableGuardD1Ev:163 + 36.10: 0 + 13.1: _ZNK9oceanbase6common8ObNewRow8is_validEv:3996 + 2: _ZNK9oceanbase6common8ObNewRow10is_invalidEv:3996 + 2: 148 + 2.1: 148 + 2.2: 148 + 2.3: 0 + 17.2: _ZNK9oceanbase6common10ObTabletIDneERKS1_:1330 + 0: 133 + 20.3: _ZN9oceanbase7storage8ObTablet25try_update_storage_schemaEll:3472 + 3: 131 _ZN9oceanbase7storage23ObStorageSchemaRecorder25try_update_storage_schemaEll:131 + 4.1: 0 + 6: 0 + 28: _ZN9oceanbase7storage8ObTablet16prepare_memtableERNS0_15ObRelativeTableERNS0_10ObStoreCtxERPNS_8memtable10ObMemtableE:12444 + 5: 155 + 7: 155 + 8: 155 + 9: 155 + 10: 0 + 11.1: 0 + 12.1: 159 _ZNK9oceanbase7storage8ObITable16is_data_memtableEv:157 + 13: 0 + 14.1: 0 + 18: 159 + 8: _ZN9oceanbase7storage20ObTableStoreIterator18get_boundary_tableEb:5735 + 3: 155 + 5: 155 + 5.3: 155 + 3: _ZNK9oceanbase7storage20ObTableStoreIterator8is_validEv:1085 + 0: 155 + 0: _ZNK9oceanbase6common12ObIArrayWrapIPNS_7storage8ObITableEE5countEv:620 + 0: 155 + 5.4: _ZN9oceanbase6common12ObIArrayWrapIPNS_7storage8ObITableEE2atEl:620 + 6: 155 +_ZN9oceanbase6common21common_string_integerERKmRKNS0_9ObObjTypeERKNS0_15ObCollationTypeERKNS0_8ObStringEbRl:58387:365 + 0: 3 + 2: 3 + 2.1: 3 + 2.2: 3 + 2.3: 3 + 2.6: 3 + 6: 354 + 8: 354 + 9: 3 + 11: 354 + 12: 354 + 13: 354 + 13.1: 354 + 14: 3 + 14.2: 3 + 15: 3 + 17.1: 3 + 17.2: 3 + 19: 3 + 21.1: 3 + 21.15: 3 + 21.26: 3 + 26: 393 + 26.2: 354 _ZN9oceanbase6common9ObCharset12strntoullrndEPKcmiPPcPi:363 + 28: 393 + 31: 405 + 31.2: 405 _ZN9oceanbase6common21check_convert_str_errEPKcS2_iiRKNS0_15ObCollationTypeE:421 + 35: 392 + 9: _ZN9oceanbase6common13hex_to_uint64ERKNS0_8ObStringE:888 + 4: 3 + 5: 3 + 6: 3 + 6.1: 12 + 6.3: 12 + 8: 12 + 3: _ZNK9oceanbase6common8ObString3ptrEv:18 + 0: 3 + 14: _ZNK9oceanbase6common8ObString3ptrEv:12 + 0: 3 + 14.1: _ZNK9oceanbase6common8ObString6lengthEv:36 + 0: 3 + 17.1: _ZNK9oceanbase6common8ObString3ptrEv:12 + 0: 3 + 17.3: _ZNK9oceanbase6common8ObString6lengthEv:12 + 0: 3 + 21.1: _ZN9oceanbase3lib14is_oracle_modeEv:297 + 2: _ZN9oceanbase3lib15get_compat_modeEv:297 + 2: 3 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:231 + 2: 3 + 2.1: 3 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:66 + 1: 3 + 21.16: _ZN9oceanbase6common8ObLogger10get_loggerEv:132 + 2: 3 + 2.1: 3 + 2.2: 3 + 21.27: _ZN9oceanbase6common8ObLogger10get_loggerEv:132 + 2: 3 + 2.1: 3 + 2.2: 3 + 26: _ZNK9oceanbase6common8ObString3ptrEv:1416 + 0: 354 + 26.1: _ZNK9oceanbase6common8ObString6lengthEv:4248 + 0: 354 + 31: _ZNK9oceanbase6common8ObString3ptrEv:1620 + 0: 405 + 31.1: _ZNK9oceanbase6common8ObString6lengthEv:1620 + 0: 405 +_ZN9oceanbase3sql11ObDASLockOpC2ERNS_6common12ObIAllocatorE:58280:172 + 3: 180 + 4: 180 + 5: 180 + 1: _ZN9oceanbase3sql12ObIDASTaskOpC2ERNS_6common12ObIAllocatorE:43240 + 0: 160 _ZN9oceanbase11transaction14ObTxExecResultC1Ev:175 + 2: 160 + 3: 160 + 5: 160 + 6: 180 + 8: 180 + 9: 180 + 13: 160 + 0.2: _ZN9oceanbase6common10ObTabletIDC2Em:2520 + 0: 180 + 10: _ZN9oceanbase6common12ObFixedArrayIPKNS_3sql14ObDASBaseCtDefENS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplIS5_S6_EEERS6_l:9540 + 0: 180 + 0: _ZN9oceanbase6common16ObFixedArrayImplIPKNS_3sql14ObDASBaseCtDefENS0_12ObIAllocatorEEC2ERS6_l:6300 + 2: 180 + 3: 180 + 4: 180 + 1: _ZN9oceanbase6common8ObIArrayIPKNS_3sql14ObDASBaseCtDefEEC2Ev:1260 + 0: _ZN9oceanbase6common12ObIArrayWrapIPKNS_3sql14ObDASBaseCtDefEEC2Ev:1260 + 0: 180 + 11: _ZN9oceanbase6common12ObFixedArrayIPNS_3sql14ObDASBaseRtDefENS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplIS4_S5_EEERS5_l:9540 + 0: 180 + 0: _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql14ObDASBaseRtDefENS0_12ObIAllocatorEEC2ERS5_l:6300 + 2: 180 + 3: 180 + 4: 180 + 1: _ZN9oceanbase6common8ObIArrayIPNS_3sql14ObDASBaseRtDefEEC2Ev:1260 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql14ObDASBaseRtDefEEC2Ev:1260 + 0: 180 + 12: _ZN9oceanbase6common12ObFixedArrayINS0_10ObTabletIDENS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplIS2_S3_EEERS3_l:9540 + 0: 180 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS0_10ObTabletIDENS0_12ObIAllocatorEEC2ERS3_l:6300 + 2: 180 + 3: 180 + 4: 180 + 1: _ZN9oceanbase6common8ObIArrayINS0_10ObTabletIDEEC2Ev:1260 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_10ObTabletIDEEC2Ev:1260 + 0: 180 +_ZN9oceanbase3sql11ObDASLockOpC1ERNS_6common12ObIAllocatorE:58280:172 + 3: 180 + 4: 180 + 5: 180 + 1: _ZN9oceanbase3sql12ObIDASTaskOpC2ERNS_6common12ObIAllocatorE:43240 + 0: 160 _ZN9oceanbase11transaction14ObTxExecResultC1Ev:175 + 2: 160 + 3: 160 + 5: 160 + 6: 180 + 8: 180 + 9: 180 + 13: 160 + 0.2: _ZN9oceanbase6common10ObTabletIDC2Em:2520 + 0: 180 + 10: _ZN9oceanbase6common12ObFixedArrayIPKNS_3sql14ObDASBaseCtDefENS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplIS5_S6_EEERS6_l:9540 + 0: 180 + 0: _ZN9oceanbase6common16ObFixedArrayImplIPKNS_3sql14ObDASBaseCtDefENS0_12ObIAllocatorEEC2ERS6_l:6300 + 2: 180 + 3: 180 + 4: 180 + 1: _ZN9oceanbase6common8ObIArrayIPKNS_3sql14ObDASBaseCtDefEEC2Ev:1260 + 0: _ZN9oceanbase6common12ObIArrayWrapIPKNS_3sql14ObDASBaseCtDefEEC2Ev:1260 + 0: 180 + 11: _ZN9oceanbase6common12ObFixedArrayIPNS_3sql14ObDASBaseRtDefENS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplIS4_S5_EEERS5_l:9540 + 0: 180 + 0: _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql14ObDASBaseRtDefENS0_12ObIAllocatorEEC2ERS5_l:6300 + 2: 180 + 3: 180 + 4: 180 + 1: _ZN9oceanbase6common8ObIArrayIPNS_3sql14ObDASBaseRtDefEEC2Ev:1260 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql14ObDASBaseRtDefEEC2Ev:1260 + 0: 180 + 12: _ZN9oceanbase6common12ObFixedArrayINS0_10ObTabletIDENS0_12ObIAllocatorEECI2NS0_16ObFixedArrayImplIS2_S3_EEERS3_l:9540 + 0: 180 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS0_10ObTabletIDENS0_12ObIAllocatorEEC2ERS3_l:6300 + 2: 180 + 3: 180 + 4: 180 + 1: _ZN9oceanbase6common8ObIArrayINS0_10ObTabletIDEEC2Ev:1260 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_10ObTabletIDEEC2Ev:1260 + 0: 180 +_ZN9oceanbase7storage16ObTableStoreStat5resetEv:58253:4589 + 1: 4477 + 2: 4477 +_ZN9oceanbase8memtable16ObTxCallbackList13SpinLockGuardC2ERNS_6common7ObLatchE:58245:759 + 2: 737 + 3: 739 + 6: 737 _ZN9oceanbase6common7ObLatch6wrlockEjlPKj:790 + 6.1: 810 + 7.1: 0 + 10.2: 810 + 10.3: 0 + 1: _ZN9oceanbase6common17ObSimpleTimeGuardC2El:11057 + 2: 737 + 3: 737 + 4: 0 + 5: 0 + 2: _ZN9oceanbase3lib20is_trace_log_enabledEv:6635 + 2: 739 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:755 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:5896 + 2: 737 + 4: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 9: _ZN9oceanbase6common17ObSimpleTimeGuard5clickEv:5670 + 2: 810 + 3: 0 + 4.1: 0 + 3: _ZNK9oceanbase6common17ObSimpleTimeGuard8get_diffEv:0 + 2.1: 0 + 2.1: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 +_ZN9oceanbase8memtable16ObTxCallbackList13SpinLockGuardC1ERNS_6common7ObLatchE:58245:759 + 2: 737 + 3: 739 + 6: 737 _ZN9oceanbase6common7ObLatch6wrlockEjlPKj:790 + 6.1: 810 + 7.1: 0 + 10.2: 810 + 10.3: 0 + 1: _ZN9oceanbase6common17ObSimpleTimeGuardC2El:11057 + 2: 737 + 3: 737 + 4: 0 + 5: 0 + 2: _ZN9oceanbase3lib20is_trace_log_enabledEv:6635 + 2: 739 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:755 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:5896 + 2: 737 + 4: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 9: _ZN9oceanbase6common17ObSimpleTimeGuard5clickEv:5670 + 2: 810 + 3: 0 + 4.1: 0 + 3: _ZNK9oceanbase6common17ObSimpleTimeGuard8get_diffEv:0 + 2.1: 0 + 2.1: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 +_ZN9oceanbase11transaction14ObPartTransCtx11start_transEv:58221:262 + 0: 0 + 1: 239 + 2: 239 + 3: 239 + 6: 203 + 7.1: 0 + 8: 0 + 9.1: 203 + 10.1: 0 + 11: 0 + 13.1: 203 + 14: 0 + 15.1: 0 + 16.1: 203 + 17: 0 + 18.1: 0 + 20: 203 + 21: 203 _ZN9oceanbase11transaction10ObTransCtx24unregister_timeout_task_Ev:264 + 22: 263 + 22.1: 245 _ZN9oceanbase11transaction10ObTransCtx22register_timeout_task_El:249 + 23.1: 0 + 26: 0 + 27: 0 + 28: 0 + 31.1: 263 + 31.3: 0 + 31.4: 0 + 31.6: 0 + 31.7: 0 + 31.8: 0 + 31.9: 0 + 31.21: 0 + 34: 263 + 3: _ZN9oceanbase6common16ObClockGenerator12getRealClockEv:239 + 2: _ZN9oceanbase6common16ObClockGenerator6get_usEv:239 + 2: 239 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:239 + 13.1: _ZNK9oceanbase11transaction14ObPartTransCtx12is_follower_Ev:1624 + 0: 203 + 22: _ZNK9oceanbase11transaction9ObTransID4hashEv:16905 + 2: _ZN9oceanbase6common10murmurhashEPKvim:16905 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:16905 + 13: 245 + 14: 245 + 15: 245 + 17: 245 + 18: 245 + 41: 245 + 42: 245 + 43: 245 + 31.3: _ZN9oceanbase3lib20is_trace_log_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:0 + 2: 0 + 31.4: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EE9add_eventERb:0 + 2: 0 + 3.1: 0 + 7: 0 + 12: 0 + 13: 0 + 14: 0 + 31.9: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EE12check_unlockEv:0 + 2: 0 + 3: _ZN9oceanbase3lib7ObMutex6unlockEv:0 + 0: 0 + 31.16: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EE10check_lockEv:0 + 2: 0 + 3: _ZN9oceanbase3lib7ObMutex4lockEv:0 + 0: 0 + 31.18: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EE10get_bufferEv:0 + 0: 0 + 31.19: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EE14get_buffer_posEv:0 + 0: 0 + 31.20: _ZNK9oceanbase11transaction15ObTransHashLinkINS0_10ObTransCtxEE7get_refEv:0 + 0: 0 +_ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE4initEmbbblPNS0_20ObSqlMemMgrProcessorE:57973:255 + 3: 239 + 5: 239 _ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE16init_mem_contextEm:240 + 6.1: 0 + 8: 231 + 9: 231 + 10: 231 + 11: 231 + 12: 231 + 13: 0 + 15: 215 + 17: 0 + 18.1: 0 + 20: 215 + 21: 215 + 23: 215 + 26: 257 _ZN9oceanbase6common16ObArenaAllocator5allocEl:242 + 29: 0 + 30.1: 0 + 32: 257 + 35: 257 + 24: _ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE19set_insert_row_funcEv:6460 + 2: 215 + 6: 224 + 25: _ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE18set_init_part_funcEv:5824 + 2: 224 + 5: 224 + 9: 0 + 3: _ZNK9oceanbase3sql20ObSqlMemMgrProcessor11get_profileEv:896 + 0: 224 + 4: _ZNK9oceanbase3sql20ObSqlWorkAreaProfile17get_operator_typeEv:672 + 0: 224 +_ZN9oceanbase8memtable9ObMvccRow12need_compactEbb:57807:846 + 1: 818 + 3: 818 + 4: 824 + 4.4: 824 + 9: 822 + 11: 0 + 14.1: 824 + 20: 851 + 11.2: _ZN9oceanbase6common3maxEil:0 + 2: 0 +_ZN9oceanbase6common16ObPriorityQueue2ILi1ELi2ELi3EE6do_popERPNS0_6ObLinkEll:57764:180 + 1: 161 + 2: 161 + 3: 161 + 4: 0 + 5.1: 0 + 7: 161 + 9.1: 153 + 12: 95 _ZN9oceanbase6common9SCondTempILi3EE7prepareEi:95 + 14.1: 530 + 14.3: 530 + 16: 7 + 19: 83 + 20: 79 _ZN9oceanbase6common9SCondTempILi3EE4waitEl:79 + 21: 214 + 23: 7 + 26: 230 + 8: _ZN9oceanbase6common9SCondTempILi3EE7prepareEi:0 + 2: _ZN9oceanbase6common9SCondTempILi3EE7get_keyEiRj:0 + 0: _ZN9oceanbase6common16SCondSimpleIdGen4nextEv:0 + 0: _ZN9oceanbase6common7icpu_idEv:0 + 2: _ZN9oceanbase6common12sched_getcpuEv:0 + 0: 0 + 0: _ZN9oceanbase6common8get_itidEv:0 + 4: 0 + 5: 0 + 6: 0 + 8: 0 + 0.1: _ZN9oceanbase6common10SimpleCond7get_keyEv:0 + 0: 0 + 0: _ZN9oceanbase3lib7ObFutex4uvalEv:0 + 0: 0 + 10: _ZN9oceanbase6common9SCondTempILi3EE7prepareEi:2915 + 3: 55 + 2: _ZN9oceanbase6common9SCondTempILi3EE7get_keyEiRj:2585 + 0: _ZN9oceanbase6common16SCondSimpleIdGen4nextEv:1705 + 0: _ZN9oceanbase6common7icpu_idEv:1705 + 2: _ZN9oceanbase6common12sched_getcpuEv:1705 + 0: 55 + 0: _ZN9oceanbase6common8get_itidEv:1540 + 4: 55 + 5: 0 + 6: 0 + 8: 0 + 0.1: _ZN9oceanbase6common10SimpleCond7get_keyEv:880 + 0: 55 + 0: _ZN9oceanbase3lib7ObFutex4uvalEv:440 + 0: 55 + 15: _ZN9oceanbase6common11ObLinkQueue3popERPNS0_6ObLinkE:23812 + 4: 547 + 5: 534 + 7: 530 + 9: 4 + 10.1: 13 _ZN9oceanbase6common13ObSpLinkQueue3popERPNS0_6ObLinkE:11 + 4: _ZN9oceanbase6commonL11faa_boundedEPmS1_Rm:11165 + 2: 547 + 3: 547 + 4: 547 + 5: 10 + 6: 10 + 8: 5 + 11: 0 + 12: 0 + 15: 0 + 9: _ZN9oceanbase6common11ObLinkQueue3idxEl:24 + 0: 4 +_ZNK9oceanbase8memtable17ObMvccRowCallback19get_cluster_versionERm:57585:1085 + 1: 1047 + 2: 1047 + 3: 1047 + 5: 1047 + 6: 0 + 7.1: 0 + 8.1: 1047 + 9: 0 + 10.1: 0 + 12: 1047 + 14: 1047 + 8.1: _ZNK9oceanbase8memtable13ObMemtableCtx13get_trans_ctxEv:7329 + 0: 1047 + 12: _ZNK9oceanbase11transaction10ObTransCtx19get_cluster_versionEv:7329 + 0: 1047 +_ZN9oceanbase6common16is_strong_leaderENS0_6ObRoleE:57564:4818 + 1: 4797 + 2: 4797 +_ZN9oceanbase3sql20ObAggregateProcessor17collect_group_rowEPNS1_8GroupRowElPKNS0_6ObExprEl:57423:255 + 4: 247 + 6: 247 + 6.1: 247 + 6.2: 0 + 6.3: 0 + 7.1: 278 + 7.2: 514 + 7.3: 514 + 8: 246 + 9: 246 + 10: 246 + 11: 0 + 12.1: 0 + 13.1: 246 + 14: 0 + 20: 246 + 22: 0 + 22.1: 0 + 23: 0 + 24.1: 0 + 26: 0 + 26.1: 0 + 26.2: 0 + 27: 0 + 32: 0 + 33.1: 0 + 36: 0 + 37.1: 0 + 41: 0 + 42: 0 + 43.1: 0 + 48: 0 + 49: 268 _ZN9oceanbase3sql20ObAggregateProcessor19collect_aggr_resultERNS1_8AggrCellEPKNS0_6ObExprERKNS0_10ObAggrInfoEll:249 + 50.1: 0 + 56: 278 + 8: _ZN9oceanbase6common12ObIArrayWrapINS_3sql10ObAggrInfoEE2atEl:984 + 6: 246 + 13.1: _ZNK9oceanbase3sql10ObAggrInfo22is_implicit_first_aggrEv:1476 + 0: 246 + 14: _ZNK9oceanbase3sql6ObExpr17locate_expr_datumERNS0_9ObEvalCtxE:0 + 3: 0 + 3: _ZNK9oceanbase3sql6ObExpr13get_datum_idxERNS0_9ObEvalCtxE:0 + 2: 0 + 2: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 15: _ZNK9oceanbase3sql6ObExpr23set_evaluated_projectedERNS0_9ObEvalCtxE:0 + 2: 0 + 3: 0 + 2: _ZNK9oceanbase3sql6ObExpr13get_eval_infoERNS0_9ObEvalCtxE:0 + 2: 0 + 3: _ZNK9oceanbase3sql6ObExpr13get_eval_infoERNS0_9ObEvalCtxE:0 + 2: 0 + 16.1: _ZN9oceanbase6common7ObDatum9set_datumERKS1_:0 + 0: 0 + 21: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell9get_extraEv:0 + 0: 0 + 32: _ZN9oceanbase3sql16ObUniqueSortImpl6rewindEv:0 + 2: 0 + 3: 0 + 36: _ZN9oceanbase3sql16ObUniqueSortImpl4sortEv:0 + 2: 0 + 3: 0 +_ZN9oceanbase7storage15ObDMLRunningCtxD2Ev:57234:530 + 0: 517 _ZN9oceanbase5share6schema19ObSchemaGetterGuardD1Ev:519 + 0.3: 467 _ZN9oceanbase7storage15ObRelativeTableD1Ev:470 + 0.1: _ZN9oceanbase7storage10ObStoreRowD2Ev:5159 + 0: _ZN9oceanbase11transaction9ObTransIDD2Ev:5159 + 0: 469 + 0.2: _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema9ObColDescELl52ENS0_19ModulePageAllocatorELb0EED2Ev:33229 + 1: 469 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema9ObColDescELl52ENS0_19ModulePageAllocatorELb0EE7destroyEv:24787 + 9: 469 + 11: 0 + 13: 467 + 15: 467 + 24: 467 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema9ObColDescELl52ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase3sql10ObResolver18stmt_resolver_funcINS0_20ObStartTransResolverEEEiRNS0_16ObResolverParamsERK10_ParseNodeRPNS0_6ObStmtE:57215:237 + 1: 233 + 3: 233 + 3.3: 233 + 3.5: 218 + 3.10: 218 + 4: 218 _ZN9oceanbase3sql20ObStartTransResolver7resolveERK10_ParseNode:241 + 4.1: 265 + 5.1: 1 + 7.1: 265 + 9: 1 + 10.4: 271 + 10.7: 0 + 3.5: _ZN9oceanbase6common2SVINS_3sql20ObStartTransResolverELb1EEC2IZNS2_10ObResolver18stmt_resolver_funcIS3_EEiRNS2_16ObResolverParamsERK10_ParseNodeRPNS2_6ObStmtEEUlPvE_EEibOT_:24404 + 1: 233 + 5: 233 _ZN9oceanbase6common11smart_allocElPKc:233 + 6: 218 + 7: 1 + 9: 218 + 1: _ZN9oceanbase6common6SVBaseC2Eib:1631 + 1: 233 + 2: 233 + 9: _ZZN9oceanbase3sql10ObResolver18stmt_resolver_funcINS0_20ObStartTransResolverEEEiRNS0_16ObResolverParamsERK10_ParseNodeRPNS0_6ObStmtEENKUlPvE_clESC_:14388 + 0: _ZN9oceanbase3sql20ObStartTransResolverC2ERNS0_16ObResolverParamsE:14388 + 2: 218 + 1: _ZN9oceanbase3sql13ObTCLResolverC2ERNS0_16ObResolverParamsE:11336 + 1: _ZN9oceanbase3sql14ObStmtResolverC2ERNS0_16ObResolverParamsE:11336 + 1: 218 + 2: 218 + 3: 218 + 4: 218 + 5: 218 + 6: 218 + 7: _ZN9oceanbase3sql14ObStmtResolver14get_basic_stmtEv:1060 + 0: 265 + 10.4: _ZN9oceanbase6common2SVINS_3sql20ObStartTransResolverELb1EED2Ev:9634 + 2: 265 + 4: 265 _ZN9oceanbase3sql20ObStartTransResolverD1Ev:280 + 5: 295 + 6: 295 _ZN9oceanbase6common10smart_freeEPv:298 + 6.1: 0 + 8: 271 +_ZN9oceanbase11transaction14ObTransService10acquire_txERPNS0_8ObTxDescEj:57210:243 + 0: 0 + 1: 238 + 2: 0 + 3: 270 _ZN9oceanbase11transaction11ObTxDescMgr5allocERPNS0_8ObTxDescE:245 + 4.1: 0 + 6: 270 + 9: 270 + 10: 270 + 11.3: 272 + 11.4: 0 + 11.6: 0 + 11.7: 0 + 11.8: 0 + 11.22: 0 + 17: 291 + 6: _ZN9oceanbase11transaction14ObTransService8init_tx_ERNS0_8ObTxDescEj:31050 + 2: 270 + 4: 270 + 5: 270 + 6: 270 + 7: 270 + 8: 270 + 3: _ZN9oceanbase6common6ObAddraSERKS1_:11070 + 1: 270 + 2: 270 + 3: 270 + 5: _ZN9oceanbase6common16ObClockGenerator8getClockEv:5670 + 4: 270 + 5.1: 0 + 8: 270 + 6: _ZN9oceanbase6common16ObClockGenerator6get_usEv:0 + 2: 0 + 11.3: _ZN9oceanbase3lib20is_trace_log_enabledEv:2174 + 2: 270 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:272 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:1904 + 2: 272 + 11.4: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EE9add_eventERb:0 + 2: 0 + 3.1: 0 + 7: 0 + 12: 0 + 13: 0 + 14: 0 + 11.9: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EE12check_unlockEv:0 + 2: 0 + 3: _ZN9oceanbase3lib7ObMutex6unlockEv:0 + 0: 0 + 11.16: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EE10check_lockEv:0 + 2: 0 + 3: _ZN9oceanbase3lib7ObMutex4lockEv:0 + 0: 0 + 11.17: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EE14get_buffer_posEv:0 + 0: 0 + 11.18: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EE10get_bufferEv:0 + 0: 0 + 11.20: _ZNK9oceanbase11transaction15ObTransHashLinkINS0_8ObTxDescEE7get_refEv:0 + 0: 0 + 11.21: _Z9ob_gettidv:0 + 3: 0 + 4: 0 + 2: _Z13get_tid_cachev:0 + 7: 0 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 +_ZN9oceanbase11transaction8ObTxPartC2Ev:57120:1045 + 3: 1020 + 5: 1020 + 7: 1020 + 1: _ZN9oceanbase5share6ObLSIDC2Ev:7140 + 0: 1020 + 2: _ZN9oceanbase6common6ObAddrC2Ev:21420 + 1: 1020 +_ZN9oceanbase11transaction8ObTxPartC1Ev:57120:1045 + 3: 1020 + 5: 1020 + 7: 1020 + 1: _ZN9oceanbase5share6ObLSIDC2Ev:7140 + 0: 1020 + 2: _ZN9oceanbase6common6ObAddrC2Ev:21420 + 1: 1020 +_ZN9oceanbase6common15ObFIFOAllocatorD2Ev:57097:1131 + 1: 1087 + 2: 1087 _ZN9oceanbase6common15ObFIFOAllocator5resetEv:1113 + 3: 1106 + 4: 1106 + 5.1: 2 + 5.2: 2 + 5: _ZN9oceanbase6common10ObSpinLockD2Ev:16598 + 2: 1106 _ZN9oceanbase6common12ObLatchMutexD1Ev:1151 +_ZN9oceanbase6common15ObFIFOAllocatorD1Ev:57097:1131 + 1: 1087 + 2: 1087 _ZN9oceanbase6common15ObFIFOAllocator5resetEv:1113 + 3: 1106 + 4: 1106 + 5.1: 2 + 5.2: 2 + 5: _ZN9oceanbase6common10ObSpinLockD2Ev:16598 + 2: 1106 _ZN9oceanbase6common12ObLatchMutexD1Ev:1151 +_ZN9oceanbase8memtable13ObMemtableCtx4initEm:57085:288 + 1: 263 + 2: 263 + 4: 263 + 5: 0 + 6.1: 259 + 7: 0 + 8.1: 0 + 11: 259 _ZN9oceanbase8memtable16ObQueryAllocator4initEm:259 + 11.1: 262 + 12.1: 0 + 13.1: 262 _ZN9oceanbase8memtable24ObMemtableCtxCbAllocator4initEm:262 + 13.2: 251 + 14.1: 0 + 15.2: 251 + 17.2: 251 + 20: 251 + 24: 251 + 6.1: _ZN9oceanbase6common18is_valid_tenant_idEm:2072 + 2: 259 + 15.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4initElRS2_:12048 + 7: 251 + 8: _ZN9oceanbase6common19ModulePageAllocatoraSERKS1_:8785 + 2: 251 + 3: 251 + 4: 251 + 5: 251 + 17.1: _ZN9oceanbase8memtable13ObMemtableCtx20reset_log_generator_Ev:11797 + 4: 251 + 4: _ZN9oceanbase8memtable18ObRedoLogGenerator3setEPNS0_18ObTransCallbackMgrEPNS0_14ObIMemtableCtxE:10793 + 2: 251 + 9: 251 + 10: 251 + 11: 251 + 4: _ZN9oceanbase8memtable18ObRedoLogGenerator5resetEv:0 + 2: 0 + 3: 0 + 8: _ZN9oceanbase8memtable18ObTransCallbackMgr5beginEv:1004 + 0: _ZN9oceanbase8memtable18ObTransCallbackMgr10get_guard_Ev:1004 + 0: _ZN9oceanbase8memtable16ObTxCallbackList9get_guardEv:1004 + 0: 251 + 8.1: _ZN9oceanbase8memtable24ObITransCallbackIteratoraSERKS1_:1757 + 2: 251 +_ZN9oceanbase5share13ObBasicSysVar4initERKNS_6common5ObObjES5_S5_NS2_9ObObjTypeEl:57081:436 + 5: 436 + 6: 436 + 8: 436 + 8.2: 436 + 9: 0 + 10.1: 0 + 11.1: 419 + 12: 0 + 13.1: 0 + 15: 419 + 16: 419 + 17: 419 + 18: 419 + 19: 419 + 21: 419 + 8: _ZNK9oceanbase6common5ObObj8get_typeEv:3488 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:3488 + 0: 436 + 11.1: _ZNK9oceanbase5share13ObBasicSysVar19is_base_value_emptyEv:4609 + 2: _ZNK9oceanbase6common5ObObj12is_nop_valueEv:4609 + 2: 419 + 2.1: 419 +_ZN9oceanbase11transaction10ObTxCtxMgr10get_tx_ctxERKNS_5share6ObLSIDERKNS0_9ObTransIDEbRPNS0_14ObPartTransCtxE:56871:232 + 4: 219 + 5: 219 + 6: 219 + 8: 219 + 9.1: 0 + 10: 0 + 11.1: 219 + 11.2: 219 + 12.1: 0 + 13: 0 + 14.1: 219 + 15.1: 0 + 16: 0 + 17.1: 219 _ZN9oceanbase11transaction10ObTxCtxMgr17get_ls_tx_ctx_mgrERKNS_5share6ObLSIDERPNS0_12ObLSTxCtxMgrE:259 + 18.1: 0 + 19: 0 + 21: 273 _ZN9oceanbase11transaction12ObLSTxCtxMgr10get_tx_ctxERKNS0_9ObTransIDEbRPNS0_14ObPartTransCtxE:243 + 22.1: 0 + 23.1: 273 + 24.1: 0 + 25: 0 + 31: 288 + 11.1: _ZNK9oceanbase5share6ObLSID8is_validEv:876 + 0: 219 + 11.2: _ZNK9oceanbase11transaction9ObTransID8is_validEv:876 + 0: 219 + 29: _ZN9oceanbase11transaction10ObTxCtxMgr20revert_ls_tx_ctx_mgrEPNS0_12ObLSTxCtxMgrE:16926 + 2: 273 + 4: 273 + 5: 0 + 6.1: 0 + 8: 273 + 8: _ZN9oceanbase6common13ObLinkHashMapINS_5share6ObLSIDENS_11transaction12ObLSTxCtxMgrENS4_17ObLSTxCtxMgrAllocENS0_9RefHandleELl8EE6revertEPS5_:11466 + 3: 273 + 3: _ZN9oceanbase6common13ObLinkHashMapINS_5share6ObLSIDENS_11transaction12ObLSTxCtxMgrENS4_17ObLSTxCtxMgrAllocENS0_9RefHandleELl8EE6revertEPNS0_12LinkHashNodeIS3_EE:9282 + 6: 273 + 6.1: 273 + 6.2: 273 + 7.1: 0 + 10: 273 + 11: 273 _ZN9oceanbase6common13ObLinkHashMapINS_5share6ObLSIDENS_11transaction12ObLSTxCtxMgrENS4_17ObLSTxCtxMgrAllocENS0_9RefHandleELl8EE8dec_urefEPNS0_12LinkHashNodeIS3_EE:277 +_ZNK9oceanbase6common6ObAddr19get_serialize_size_Ev:56856:297 + 1: 276 + 3: 276 + 4: 276 + 5: 276 + 6: 276 + 7: 276 + 8: 276 + 7: _ZN9oceanbase6common13serialization14encoded_lengthINS0_6ObAddr3VEREEElRKT_:5520 + 2: _ZN9oceanbase6common13serialization11EnumEncoderILb1ENS0_6ObAddr3VEREE14encoded_lengthERKS4_:5520 + 2: 276 + 2: _ZN9oceanbase6common13serialization19encoded_length_vi32Ei:4968 + 4: 276 + 6.1: 0 + 8.1: 0 + 10.1: 0 + 7.1: _ZN9oceanbase6common13serialization14encoded_lengthEj:12972 + 2: _ZN9oceanbase6common13serialization19encoded_length_vi32Ei:12972 + 4: 276 + 6.1: 276 + 8.1: 276 + 10.1: 276 + 7.2: _ZN9oceanbase6common13serialization14encoded_lengthEj:4692 + 2: _ZN9oceanbase6common13serialization19encoded_length_vi32Ei:4692 + 4: 276 + 6.1: 0 + 8.1: 0 + 10.1: 0 + 7.3: _ZN9oceanbase6common13serialization14encoded_lengthEj:3588 + 2: _ZN9oceanbase6common13serialization19encoded_length_vi32Ei:3588 + 4: 276 + 6.1: 0 + 8.1: 0 + 10.1: 0 + 7.4: _ZN9oceanbase6common13serialization14encoded_lengthEj:4968 + 2: _ZN9oceanbase6common13serialization19encoded_length_vi32Ei:4968 + 4: 276 + 6.1: 0 + 8.1: 0 + 10.1: 0 + 7.5: _ZN9oceanbase6common13serialization14encoded_lengthEi:10212 + 2: _ZN9oceanbase6common13serialization19encoded_length_vi32Ei:10212 + 4: 276 + 6.1: 276 + 8.1: 276 + 10.1: 0 +_ZN9oceanbase12blocksstable23ObIMicroBlockRowScanner9set_rangeERKNS0_12ObDatumRangeE:56760:1116 + 1: 1032 + 2: 1032 + 3: 1032 + 4: 0 + 5.1: 0 + 7: 1032 + 9: 1032 + 3: _ZNK9oceanbase12blocksstable12ObDatumRange8is_validEv:23736 + 2: 1032 + 2: _ZNK9oceanbase12blocksstable13ObDatumRowkey8is_validEv:10320 + 0: 1032 + 0.1: 1032 + 2.1: _ZNK9oceanbase12blocksstable13ObDatumRowkey8is_validEv:11352 + 0: 1032 + 0.1: 1032 +_ZN9oceanbase7storage15ObTableHandleV220get_tx_data_memtableERPNS0_16ObTxDataMemtableE:56722:757 + 1: 718 + 2: 718 + 3: 718 + 5: 718 + 6: 0 + 7.1: 0 + 8.1: 718 + 9: 0 + 10.1: 0 + 12: 718 + 14: 718 + 8.1: _ZNK9oceanbase7storage8ObITable19is_tx_data_memtableEv:2872 + 0: _ZN9oceanbase7storage8ObITable19is_tx_data_memtableENS1_9TableTypeE:2872 + 2: 718 +_ZNK9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EE9serializeEPclRl:56643:281 + 2: 264 + 3: 264 + 4: 264 + 5.1: 1 + 7.1: 281 + 7.2: 533 + 7.3: 533 + 7.5: 273 + 8: 273 + 9.1: 1 + 12: 281 + 4.1: _ZN9oceanbase6common13serialization11encode_vi64EPclRll:18426 + 3: 264 + 3.1: 264 + 4: 264 + 6.1: 264 + 7: 1 + 8: 1 + 11: 264 + 4: _ZN9oceanbase6common13serialization19encoded_length_vi64El:3286 + 4: 264 + 6.1: 1 + 8.1: 1 + 10.1: 1 + 12.1: 1 + 14.1: 1 + 16.1: 1 + 18.1: 1 + 8: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6ObLSIDEE2atEl:2112 + 6: 264 + 8.1: _ZN9oceanbase6common13serialization6encodeINS_5share6ObLSIDEEEiPclRlRKT_:3450 + 2: _ZN9oceanbase6common13serialization11EnumEncoderILb0ENS_5share6ObLSIDEE6encodeEPclRlRKS4_:3450 + 2: 273 _ZNK9oceanbase5share6ObLSID9serializeEPclRl:266 +_ZN9oceanbase3sql11ObDASLockOp7open_opEv:56640:159 + 1: 153 + 2: 153 + 3: 153 _ZN9oceanbase7storage14ObDMLBaseParamC2Ev:153 + 6: 151 + 8: 151 _ZN9oceanbase3sql12ObDMLService14init_dml_paramERKNS0_17ObDASDMLBaseCtDefERNS0_17ObDASDMLBaseRtDefERNS_11transaction16ObTxReadSnapshotERNS_6common12ObIAllocatorERNS_7storage14ObDMLBaseParamE:159 + 8.1: 150 + 9.1: 0 + 10.1: 166 _ZN9oceanbase7storage15ObAccessService9lock_rowsERKNS_5share6ObLSIDERKNS_6common10ObTabletIDERNS_11transaction8ObTxDescERKNS0_14ObDMLBaseParamElNS0_10ObLockFlagEPNS6_16ObNewRowIteratorERl:161 + 10.2: 166 + 19.1: 0 + 22: 166 + 24: 166 + 25.4: 166 + 6: _ZN9oceanbase3sql16ObDASDMLIteratorC2EPKNS0_17ObDASDMLBaseCtDefERNS0_16ObDASWriteBufferERNS_6common12ObIAllocatorE:11929 + 3: 151 + 6: 151 + 7: 151 + 8: 151 + 0: _ZN9oceanbase6common16ObNewRowIteratorC2Ev:1057 + 0: 151 + 0.1: _ZN9oceanbase3sql16ObDASWriteBuffer8IteratorC2Ev:1057 + 2: 151 + 9: _ZN9oceanbase3sql16ObDASDMLIterator9set_ctdefEPKNS0_17ObDASDMLBaseCtDefE:5134 + 2: 151 + 3: 151 + 3.3: 151 + 3: _ZNK9oceanbase6common12ObIArrayWrapIlE5emptyEv:2265 + 0: 151 + 0: _ZNK9oceanbase6common12ObIArrayWrapIlE5countEv:1057 + 0: 151 + 7: _ZN9oceanbase5share11ObTenantEnv3mtlIPNS_7storage15ObAccessServiceEEET_v:4983 + 2: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:2718 + 2: 151 + 2.1: 0 + 2.2: 0 + 2.1: _ZN9oceanbase5share12ObTenantBase3getIPNS_7storage15ObAccessServiceEEET_v:2265 + 0: _ZN9oceanbase5share12ObTenantBase9inner_getENS1_8IdentityIPNS_7storage15ObAccessServiceEEE:2265 + 0: 151 + 25.6: _ZN9oceanbase7storage14ObDMLBaseParamD2Ev:0 + 2: 0 + 2.1: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction18ObEncryptMetaCacheELl1ENS0_19ModulePageAllocatorELb0EED2Ev:0 + 1: 0 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction18ObEncryptMetaCacheELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:0 + 9: 0 + 11: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction18ObEncryptMetaCacheELl1ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 25.8: _ZN9oceanbase7storage14ObDMLBaseParamD2Ev:7232 + 2: 166 _ZN9oceanbase11transaction16ObTxReadSnapshotD1Ev:170 + 2.1: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction18ObEncryptMetaCacheELl1ENS0_19ModulePageAllocatorELb0EED2Ev:5904 + 1: 164 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction18ObEncryptMetaCacheELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:2952 + 9: 164 + 11: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction18ObEncryptMetaCacheELl1ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase8observer16ObMPPacketSender7do_initEPNS_3rpc9ObRequestEhbbl:56571:327 + 5: 293 + 6: 293 + 7: 293 + 8: 283 + 9: 283 + 10: 0 + 11.1: 0 + 15: 283 + 16: 283 + 17: 283 + 18: 283 + 19: 283 + 21: 283 + 24: 283 + 25: 283 + 26: 283 + 30: 283 + 32: 0 + 33: 0 + 34: 0 + 35: 0 + 36: 0 + 38: 0 + 39: 0 + 40: 0 + 42: 283 + 44: 283 + 8: _ZNK9oceanbase8observer16ObMPPacketSender8get_connEv:10548 + 3: 293 + 4.1: 0 + 5.1: 293 + 6: 293 _ZN9oceanbase3rpc20ObSqlRequestOperator15get_sql_sessionEPNS0_9ObRequestE:298 + 23: _ZN9oceanbase7obmysql20ObCompressionContext5resetEv:3679 + 0: 283 + 24: _ZN9oceanbase8observer14ObSMConnection17get_compress_typeEv:3113 + 3: 283 + 3.1: 283 + 4: 0 + 5: 0 + 10.1: 0 + 16.1: 0 + 22.1: 0 + 3: _ZN9oceanbase8observer14ObSMConnection18is_in_authed_phaseEv:1132 + 0: 283 + 29: _ZNK9oceanbase8observer14ObSMConnection20get_cs_protocol_typeEv:1132 + 3: _ZNK9oceanbase7obmysql22ObProxyCapabilityFlags25is_ob_protocol_v2_supportEv:1132 + 0: 283 + 31: _ZN9oceanbase7obmysql16ObProto20Context5resetEv:0 + 0: 0 + 40: _ZNK9oceanbase7obmysql22ObProxyCapabilityFlags25is_new_extra_info_supportEv:0 + 1: 0 + 42: _ZNK9oceanbase3rpc9ObRequest16get_nio_protocolEv:1698 + 0: 283 +_ZN9oceanbase3sql23ObExprCalcPartitionBase23calc_part_and_tablet_idEPKNS0_6ObExprERNS0_9ObEvalCtxERmRNS_6common10ObTabletIDE:56543:253 + 4: 240 + 5: 240 + 6: 240 + 7: 240 + 7.1: 240 + 8: 0 + 9.1: 0 + 10.1: 247 + 11.1: 0 + 12.1: 247 + 13.1: 0 + 14.1: 247 + 15: 0 + 18: 247 + 7.1: _ZNK9oceanbase3sql11ObDatumMeta9is_binaryEv:3360 + 2: 240 + 3: 240 + 3.1: 240 + 10.1: _ZNK9oceanbase3sql6ObExpr4evalERNS0_9ObEvalCtxERPNS_6common7ObDatumE:20731 + 4: 240 + 6: 240 + 7: 240 + 9: 240 + 10: 0 + 10.1: 0 + 11: 0 + 13: 0 + 15.1: 240 + 15.2: 240 + 17: 240 + 18: 240 + 20: 240 _ZN9oceanbase3sql23ObExprCalcPartitionBase26calc_no_partition_locationERKNS0_6ObExprERNS0_9ObEvalCtxERNS_6common7ObDatumE:257 + 21: 247 + 22: 247 + 9: _ZNK9oceanbase3sql6ObExpr15is_batch_resultEv:960 + 0: 240 + 11: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 24: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:0 + 0: 0 + 12.1: _ZN9oceanbase3sql23ObExprCalcPartitionBase26extract_part_and_tablet_idERKNS_6common7ObDatumERmRNS2_10ObTabletIDE:9386 + 4: 247 + 6: 247 + 7: 0 + 8.1: 0 + 11: 247 + 12: 247 + 14: 0 + 5: _ZNK9oceanbase6common7ObDatum10get_stringEv:1482 + 0: 247 + 0: _ZN9oceanbase6common8ObStringC2ElPKc:741 + 5: 247 + 12: _ZN9oceanbase6common10ObTabletIDaSEm:741 + 0: 247 +_ZN9oceanbase6common16ObKVCacheInstMap18get_all_cache_infoERNS0_8ObIArrayINS0_19ObKVCacheInstHandleEEE:56347:0 + 1: 0 + 2: 0 + 3: 0 + 4: 0 + 5.1: 0 + 7: 0 + 8: 0 + 8.2: 0 + 9: 0 + 11.1: 0 + 12: 0 + 13.2: 0 + 15: 0 + 15.1: 0 + 16.1: 0 + 19: 0 + 19.1: 0 + 20: 0 + 9.2: _ZNK9oceanbase6common4hash19ObHashTableIteratorINS0_16ObKVCacheInstKeyENS1_11HashMapPairIS3_PNS0_13ObKVCacheInstEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEneERKSN_:0 + 2: 0 + 9.5: _ZN9oceanbase6common4hash19ObHashTableIteratorINS0_16ObKVCacheInstKeyENS1_11HashMapPairIS3_PNS0_13ObKVCacheInstEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEppEv:56347 + 2: 0 + 3.1: 0 + 4.1: 0 + 4.2: 0 + 7: 0 + 7.1: 1943 + 8: 1943 + 9: 0 + 14: 0 + 10: _ZN9oceanbase6common19ObKVCacheInstHandleC2Ev:0 + 2: 0 + 13.1: _ZNK9oceanbase6common17ObLfFIFOAllocator9allocatedEv:0 + 0: _ZNK9oceanbase6common15ObBlockAllocMgr4holdEv:0 + 0: 0 + 14: _ZN9oceanbase6common16ObKVCacheInstMap12add_inst_refEPNS0_13ObKVCacheInstE:0 + 2: 0 + 3: 0 + 18: _ZN9oceanbase6common19ObKVCacheInstHandleD2Ev:0 + 1: 0 + 2: _ZN9oceanbase6common19ObKVCacheInstHandle5resetEv:0 + 2: 0 + 2.1: 0 + 3: _ZN9oceanbase6common16ObKVCacheInstMap11de_inst_refEPNS0_13ObKVCacheInstE:0 + 3: 0 + 18.1: _ZN9oceanbase6common19ObKVCacheInstHandleD2Ev:0 + 1: 0 + 2: _ZN9oceanbase6common19ObKVCacheInstHandle5resetEv:0 + 2: 0 + 2.1: 0 + 3: _ZN9oceanbase6common16ObKVCacheInstMap11de_inst_refEPNS0_13ObKVCacheInstE:0 + 3: 0 +_ZN9oceanbase4palf16LogSlidingWindow23handle_next_submit_log_ERb:56248:73 + 1: 69 + 2: 69 + 5.1: 76 + 8: 76 + 9: 76 + 10: 76 _ZNK9oceanbase4palf16LogSlidingWindow25get_last_submit_log_info_ERNS0_3LSNES3_RlS4_:76 + 11: 84 + 12.1: 84 _ZZN9oceanbase4palf16LogSlidingWindow23handle_next_submit_log_ERbENK5$_140clEPKc.0e4bf25207570af14a78557c8489c4fc:88 + 14: 79 + 16: 79 + 16.1: 87 + 18.2: 87 + 25: 27 + 26: 27 + 32: 27 + 34: 27 + 34.1: 28 + 35: 28 + 41: 25 _ZN9oceanbase4palf19LogGroupEntryHeaderC1Ev:25 + 42: 20 + 43: 20 + 44: 20 + 49: 8 + 50.1: 8 + 52: 7 _ZNK9oceanbase4palf11LogStateMgr16is_leader_activeEv:7 + 52.1: 0 + 53: 8 + 54.2: 0 + 54.3: 0 + 55: 0 + 56.1: 0 + 59.1: 8 _ZN9oceanbase4palf16LogSlidingWindow28generate_group_entry_header_ElPNS0_7LogTaskERNS0_19LogGroupEntryHeaderERl:8 + 59.2: 12 + 61.1: 0 + 64: 12 + 66: 14 _ZNK9oceanbase4palf11LogStateMgr18is_follower_activeEv:14 + 66.1: 13 + 69: 13 + 70.3: 13 + 72.1: 0 + 75: 13 + 79.1: 15 _ZZN9oceanbase4palf16LogSlidingWindow23handle_next_submit_log_ERbENK5$_144clEPKc.0e4bf25207570af14a78557c8489c4fc:15 + 83: 12 + 84: 12 + 85: 12 _ZNK9oceanbase4palf11LogStateMgr15get_proposal_idEv:12 + 88: 12 _ZN9oceanbase4palf13FlushLogCbCtxC1Ev:13 + 89: 12 + 90: 12 + 92: 12 + 93: 12 + 94: 12 + 95: 12 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:12 + 95.1: 6 + 101: 7 _ZNK9oceanbase4palf11LogStateMgr18is_follower_activeEv:7 + 102: 7 + 102.1: 7 _ZNK9oceanbase4palf19LogGroupEntryHeader9serializeEPclRl:7 + 102.2: 6 + 102.3: 6 + 104.1: 0 + 105.2: 10 + 106.1: 6 _ZN9oceanbase4palf14LogGroupBuffer4fillERKNS0_3LSNEPKcl:6 + 106.2: 10 + 107.1: 0 + 108.1: 10 _ZN9oceanbase4palf14LogGroupBuffer11get_log_bufERKNS0_3LSNElRNS0_11LogWriteBufE:10 + 108.2: 8 + 109.1: 0 + 114: 8 + 116: 8 _ZN9oceanbase4palf16LogSlidingWindow31try_push_log_to_paxos_follower_EllRKNS0_3LSNES4_RKNS0_11LogWriteBufE:8 + 116.1: 12 + 117: 8 + 118.1: 0 + 121: 11 _ZN9oceanbase4palf16LogSlidingWindow25try_push_log_to_children_EllRKNS0_3LSNES4_RKNS0_11LogWriteBufE:11 + 121.1: 6 + 122: 11 + 123.1: 0 + 127: 5 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:5 + 128: 9 + 129.1: 9 _ZN9oceanbase4palf9LogEngine21submit_flush_log_taskERKNS0_13FlushLogCbCtxERKNS0_11LogWriteBufE:9 + 129.2: 11 + 130.1: 0 + 132: 11 + 134: 11 _ZNK9oceanbase4palf11LogStateMgr8get_roleEv:11 + 134.1: 9 + 135: 9 + 136: 9 + 137: 9 _ZN9oceanbase4palf24palf_reach_time_intervalElRl:9 + 137.1: 6 + 138: 0 + 139: 0 + 140: 0 + 141: 0 + 142.1: 0 + 145: 0 + 146: 0 + 147: 0 + 150: 6 + 150.1: 6 _ZN9oceanbase4palf16LogSlidingWindow25set_last_submit_log_info_ERKNS0_3LSNES4_lRKl:6 + 152: 7 _ZNK9oceanbase4palf11LogStateMgr8get_roleEv:9 + 152.1: 9 + 152.2: 7 _ZNK9oceanbase4palf11LogStateMgr19is_leader_reconfirmEv:7 + 152.3: 7 + 153: 0 + 158: 0 + 161: 7 _ZN9oceanbase4palf11LogWriteBufD1Ev:7 + 161.1: 0 + 161.3: 0 + 161.7: 9 _ZN9oceanbase4palf13FlushLogCbCtxD1Ev:9 + 162: 10 + 165: 0 + 167: 0 + 167.1: 0 + 168: 0 + 168.2: 0 + 168.3: 0 + 169.1: 0 + 172.1: 0 + 174.1: 10 _ZZN9oceanbase4palf16LogSlidingWindow23handle_next_submit_log_ERbENK5$_154clEPKc.0e4bf25207570af14a78557c8489c4fc:10 + 176.1: 26 _ZN9oceanbase4palf19LogGroupEntryHeaderD1Ev:27 + 176.2: 0 + 180: 68 + 3: _ZN9oceanbase6common13ObThreadLease7acquireEv:2312 + 4: 69 + 6.1: 64 + 7: 69 + 10: 64 + 17: 5 + 6: _ZN9oceanbase4palf3LSNC2Ev:836 + 2: _ZN9oceanbase4palf3LSN5resetEv:836 + 2: 76 + 7: _ZN9oceanbase4palf3LSNC2Ev:836 + 2: _ZN9oceanbase4palf3LSN5resetEv:836 + 2: 76 + 15: _ZN9oceanbase4palf16LogSlidingWindow12LogTaskGuardC2EPS1_:1422 + 0: 79 + 16: _ZN9oceanbase4palf16LogSlidingWindow12LogTaskGuard12get_log_taskElRPNS0_7LogTaskE:9650 + 2: 79 + 3: 79 + 5.1: 80 + 7.1: 87 _ZN9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE3getElRPS2_:81 + 8: 87 + 9: 87 + 5.1: _ZN9oceanbase4palf15is_valid_log_idEl:240 + 2: 80 + 18.1: _ZNK9oceanbase4palf7LogTask8is_validEv:957 + 2: _ZNK9oceanbase4palf15LogSimpleBitMap8test_mapEl:957 + 2: 87 + 22: _ZN9oceanbase4palf3LSNC2Ev:108 + 2: _ZN9oceanbase4palf3LSN5resetEv:108 + 2: 27 + 23: _ZN9oceanbase4palf3LSNC2Ev:243 + 2: _ZN9oceanbase4palf3LSN5resetEv:243 + 2: 27 + 31: _ZNK9oceanbase4palf7LogTask4lockEv:702 + 1: 27 _ZN9oceanbase6common7ObLatch6wrlockEjlPKj:28 + 32: _ZNK9oceanbase4palf7LogTask13get_begin_lsnEv:108 + 0: _ZN9oceanbase4palf3LSNC2ERKS1_:108 + 0: 27 + 32.1: _ZN9oceanbase4palf3LSNaSERKS1_:108 + 2: 27 + 33: _ZN9oceanbase4palfplERKNS0_3LSNEm:81 + 4: 27 + 33.1: _ZNK9oceanbase4palf7LogTask12get_data_lenEv:108 + 0: 27 + 33.2: _ZN9oceanbase4palfplERKNS0_3LSNEm:81 + 4: 27 + 33.3: _ZN9oceanbase4palf3LSNaSERKS1_:189 + 2: 27 + 34: _ZN9oceanbase4palf7LogTask14try_pre_submitEv:510 + 4: 27 + 4.1: 9 + 4: _ZNK9oceanbase4palf7LogTask10is_freezedEv:162 + 2: _ZNK9oceanbase4palf15LogSimpleBitMap8test_mapEl:162 + 2: 27 + 5: _ZN9oceanbase4palf15LogSimpleBitMap12test_and_setEl:208 + 5: 8 + 6: 8 + 7: 8 + 12: 0 + 35: _ZNK9oceanbase4palf7LogTask15get_proposal_idEv:308 + 0: 28 + 36: _ZNK9oceanbase4palf7LogTask11get_log_cntEv:308 + 0: 28 + 37: _ZNK9oceanbase4palf7LogTask6unlockEv:308 + 1: 28 _ZN9oceanbase6common7ObLatch6unlockEPKj:29 + 39: _ZN9oceanbase4palfmiERKNS0_3LSNES3_:275 + 2: 25 + 46: _ZNK9oceanbase4palf7LogTask4lockEv:182 + 1: 7 _ZN9oceanbase6common7ObLatch6wrlockEjlPKj:7 + 49: _ZNK9oceanbase4palf7LogTask12get_prev_lsnEv:88 + 0: _ZN9oceanbase4palf3LSNC2ERKS1_:88 + 0: 8 + 50: _ZNK9oceanbase4palf7LogTask20get_prev_proposal_idEv:32 + 0: 8 + 51: _ZNK9oceanbase4palf7LogTask6unlockEv:80 + 1: 8 _ZN9oceanbase6common7ObLatch6unlockEPKj:8 + 54.1: _ZNK9oceanbase4palf3LSNneERKS1_:0 + 2: 0 + 65: _ZNK9oceanbase4palf7LogTask4lockEv:312 + 1: 12 _ZN9oceanbase6common7ObLatch6wrlockEjlPKj:12 + 69: _ZN9oceanbase4palf7LogTask22set_group_log_checksumEl:52 + 2: 13 + 70.1: _ZNK9oceanbase4palf19LogGroupEntryHeader18get_accum_checksumEv:182 + 0: 13 + 70.2: _ZN9oceanbase4palf7LogTask18update_header_infoERKNS0_3LSNEl:1404 + 4: 13 + 5: 13 + 6: 0 + 7.1: 0 + 8.1: 13 + 9: 0 + 10.1: 0 + 14: 13 + 15.1: 13 _ZZN9oceanbase4palf7LogTask18update_header_infoERKNS0_3LSNElENK5$_567clEPKc.0e4bf25207570af14a78557c8489c4fc:13 + 18: 13 + 5: _ZNK9oceanbase4palf3LSN8is_validEv:143 + 2: 13 + 8.1: _ZNK9oceanbase4palf7LogTask8is_validEv:52 + 2: _ZNK9oceanbase4palf15LogSimpleBitMap8test_mapEl:52 + 2: 13 + 13: _ZN9oceanbase4palf3LSNaSERKS1_:143 + 2: 13 + 75: _ZNK9oceanbase4palf7LogTask14get_min_log_tsEv:52 + 0: 13 + 76: _ZNK9oceanbase4palf7LogTask6unlockEv:130 + 1: 13 _ZN9oceanbase6common7ObLatch6unlockEPKj:13 + 86: _ZNK9oceanbase4palf19LogGroupEntryHeader12get_data_lenEv:84 + 0: 12 + 91: _ZN9oceanbase4palf3LSNaSERKS1_:216 + 2: 12 + 97: _ZN9oceanbase4palf11LogWriteBufC2Ev:991 + 3.1: 0 + 0: _ZN9oceanbase6common9ObSEArrayINS_4palf11LogWriteBuf11InnerStructELl2ENS0_19ModulePageAllocatorELb0EEC2Ev:894 + 0.1: 6 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_4palf11LogWriteBuf11InnerStructELl2ENS0_19ModulePageAllocatorELb0EEC2ElRKS5_:852 + 5: 6 + 6: 6 + 8: 6 + 17.1: 6 + 2: _ZN9oceanbase6common8ObIArrayINS_4palf11LogWriteBuf11InnerStructEEC2EPS4_l:138 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_4palf11LogWriteBuf11InnerStructEEC2EPS4_l:138 + 0: 6 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:252 + 0: 6 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:126 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:126 + 2: 6 + 8: 6 + 2: _ZN9oceanbase4palf11LogWriteBuf5resetEv:97 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_4palf11LogWriteBuf11InnerStructELl2ENS0_19ModulePageAllocatorELb0EE5resetEv:97 + 0: 6 _ZN9oceanbase6common13ObSEArrayImplINS_4palf11LogWriteBuf11InnerStructELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv:6 + 127.1: _ZN9oceanbase4palf7LogTask13set_submit_tsEl:63 + 2: 9 + 157.1: _ZN9oceanbase4palf16LogSlidingWindow26try_advance_committed_lsn_ERKNS0_3LSNE:0 + 3: 0 + 5.1: 0 + 9.2: 0 + 10: 0 + 16.1: 0 + 17: 0 + 17.1: 0 + 20.1: 0 + 3: _ZNK9oceanbase4palf3LSN8is_validEv:0 + 2: 0 + 9.1: _ZNK9oceanbase4palf3LSNgtERKS1_:0 + 2: _ZNK9oceanbase4palf3LSNltERKS1_:0 + 2: 0 + 18: _ZN9oceanbase4palf3LSNC2Ev:0 + 2: _ZN9oceanbase4palf3LSN5resetEv:0 + 2: 0 + 19: _ZNK9oceanbase4palf16LogSlidingWindow22get_committed_end_lsn_ERNS0_3LSNE:0 + 2: 0 + 2.4: _ZN9oceanbase4palf3LSNaSERKS1_:0 + 2: 0 + 21: _ZN9oceanbase4palf3LSNaSERKS1_:0 + 2: 0 + 165: _ZN9oceanbase4palf7LogTask16reset_pre_submitEv:0 + 3: _ZN9oceanbase4palf15LogSimpleBitMap9reset_mapEl:0 + 3: 0 + 4.1: 0 + 5: 0 + 6: 0 + 168.1: _ZNK9oceanbase4palf19LogGroupEntryHeader18get_accum_checksumEv:0 + 0: 0 + 177.1: _ZN9oceanbase4palf16LogSlidingWindow12LogTaskGuardD2Ev:4798 + 2.1: 0 + 2: _ZN9oceanbase4palf16LogSlidingWindow12LogTaskGuard15revert_log_taskEv:4798 + 1: 86 + 2: 86 + 2.1: 86 + 3: 86 _ZN9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE6revertEl:87 + 4: 0 + 5: 0 + 6.1: 0 + 2.1: _ZN9oceanbase4palf15is_valid_log_idEl:258 + 2: 86 + 5: _ZNK9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE12get_begin_snEv:0 + 0: 0 + 177.2: _ZN9oceanbase4palf16LogSlidingWindow12LogTaskGuardD2Ev:0 + 2.1: 0 + 2: _ZN9oceanbase4palf16LogSlidingWindow12LogTaskGuard15revert_log_taskEv:0 + 1: 0 + 2: 0 + 2.1: 0 + 3: 0 + 4: 0 + 5: 0 + 6.1: 0 + 2.1: _ZN9oceanbase4palf15is_valid_log_idEl:0 + 2: 0 + 5: _ZNK9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE12get_begin_snEv:0 + 0: 0 + 178.1: _ZN9oceanbase6common13ObThreadLease6revokeEv:2010 + 4: 71 + 6.1: 62 + 7: 73 + 10: 62 + 17: 3 +_ZNK9oceanbase7storage8ObITable30is_multi_version_minor_sstableEv:56093:2549 + 0: 2456 + 0: _ZN9oceanbase7storage8ObITable30is_multi_version_minor_sstableENS1_9TableTypeE:38585 + 3: 2456 +_ZN9oceanbase8memtable16ObTxCallbackList20tx_calc_checksum_allEv:56059:246 + 1: 243 + 2: 243 + 3: 243 _ZN9oceanbase8memtable16ObTxCallbackList13SpinLockGuardC1ERNS_6common7ObLatchE:251 + 6: 261 + 8.1: 238 + 9.1: 0 + 14: 224 + 15.3: 229 + 15.5: 0 + 5: _ZN9oceanbase8memtable21ObCalcChecksumFunctorC2El:10701 + 1: 261 + 4: 261 + 0: _ZN9oceanbase8memtable20ObITxCallbackFunctorC2Ev:3915 + 1: 261 + 3: 261 + 6: _ZN9oceanbase8memtable21ObCalcChecksumFunctor14set_checksumerElPNS_6common15ObBatchChecksumE:2088 + 3: 261 + 4: 261 + 8: _ZN9oceanbase8memtable16ObTxCallbackList9callback_ERNS0_20ObITxCallbackFunctorE:3393 + 2.2: 261 _ZN9oceanbase8memtable16ObTxCallbackList9callback_ERNS0_20ObITxCallbackFunctorEPNS0_16ObITransCallbackES5_:266 + 11: _ZN9oceanbase8memtable16ObTxCallbackList16ensure_checksum_El:13370 + 7: 238 + 8: 224 + 8.3: 224 + 8: _ZN9oceanbase6common15ObBatchChecksum4calcEv:7448 + 2: 238 + 3: 238 _ZN9oceanbase6common8ob_crc64EmPKvl:252 + 4: 224 + 15.7: _ZN9oceanbase8memtable16ObTxCallbackList13SpinLockGuardD2Ev:2942 + 2: 224 _ZN9oceanbase6common7ObLatch6unlockEPKj:236 + 3.1: 0 + 3.2: 0 + 3: _ZN9oceanbase6common17ObSimpleTimeGuardD2Ev:1374 + 2: 229 + 3.1: 0 + 4.1: 0 + 3: _ZNK9oceanbase6common17ObSimpleTimeGuard8get_diffEv:0 + 2.1: 0 + 2.1: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 +_ZN9oceanbase7storage20ObTableStoreIterator18get_boundary_tableEb:55872:1233 + 1: 1190 + 3: 1190 + 4.1: 1190 + 5: 1240 + 7: 0 + 9: 1244 + 3: _ZNK9oceanbase7storage20ObTableStoreIterator8is_validEv:8330 + 0: 1190 + 0: _ZNK9oceanbase6common12ObIArrayWrapIPNS_7storage8ObITableEE5countEv:4760 + 0: 1190 + 5.4: _ZN9oceanbase6common12ObIArrayWrapIPNS_7storage8ObITableEE2atEl:4960 + 6: 1240 + 7.2: _ZN9oceanbase6common12ObIArrayWrapIPNS_7storage8ObITableEE2atEl:0 + 6: 0 + 7.4: _ZN9oceanbase6common12ObIArrayWrapIPNS_7storage8ObITableEE2atEl:0 + 6: 0 +_ZN9oceanbase11transaction14ObPartTransCtx16on_local_commit_Ev:55833:245 + 1: 240 + 2: 240 + 3: 240 + 6: 246 _ZN9oceanbase11transaction14ObPartTransCtx31wait_gts_elapse_commit_version_ERb:249 + 6.1: 238 + 7.1: 9 + 8.1: 238 _ZN9oceanbase6common11ObTimeGuard5clickEPKc:275 + 9.1: 275 _ZN9oceanbase11transaction14ObPartTransCtx13local_tx_end_Eb:273 + 9.2: 259 + 10.1: 9 + 11.1: 259 + 12.1: 9 + 12.4: 9 + 12.5: 9 + 12.6: 9 + 12.10: 9 + 12.11: 9 + 12.12: 9 + 12.15: 9 + 12.16: 9 + 12.17: 9 + 12.18: 9 + 12.20: 9 + 12.21: 9 + 12.22: 9 + 13.1: 266 _ZN9oceanbase6common11ObTimeGuard5clickEPKc:278 + 14.1: 271 _ZN9oceanbase11transaction14ObPartTransCtx25local_tx_end_side_effect_Eb:279 + 14.2: 304 + 15.1: 9 + 18.1: 295 + 19.1: 9 + 21: 304 + 22.8: 304 _ZN9oceanbase6common11ObTimeGuardD2Ev:297 + 4: _ZN9oceanbase6common11ObTimeGuardC2EPKcl:10410 + 2: 226 + 3: 226 + 4: 226 + 6: 226 + 7: 226 + 8: 226 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:240 + 2: 240 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:246 + 12.3: _ZN9oceanbase3lib20is_trace_log_enabledEv:108 + 2: 9 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:63 + 2: 9 + 12.7: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:243 + 0: 9 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:45 + 2: 9 + 12.9: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:144 + 0: 9 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:45 + 2: 9 + 12.10: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EE10check_lockEv:360 + 2: 9 + 3: _ZN9oceanbase3lib7ObMutex4lockEv:279 + 0: 9 + 12.12: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EE10get_bufferEv:108 + 0: 9 + 12.13: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EE14get_buffer_posEv:27 + 0: 9 + 12.14: _ZNK9oceanbase11transaction15ObTransHashLinkINS0_10ObTransCtxEE7get_refEv:72 + 0: 9 + 12.22: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EE12check_unlockEv:207 + 2: 9 + 3: _ZN9oceanbase3lib7ObMutex6unlockEv:126 + 0: 9 + 18: _ZNK9oceanbase6common11ObTimeGuard8get_diffEv:2405 + 2: 295 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:340 + 2: 304 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:297 + 22.9: _ZN9oceanbase6common11ObTimeGuardD2Ev:585 + 2.1: 9 + 3.1: 9 + 2: _ZNK9oceanbase6common11ObTimeGuard8get_diffEv:108 + 2: 9 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:45 + 2: 9 +_ZNK9oceanbase7storage13ObLSTxService13revert_tx_ctxEPNS_11transaction10ObTransCtxE:55716:1606 + 1: 1536 + 2: 1536 + 3: 1536 + 4: 0 + 5.1: 0 + 7: 1578 _ZN9oceanbase11transaction12ObLSTxCtxMgr13revert_tx_ctxEPNS0_10ObTransCtxE:1560 + 9: 1578 +_ZN9oceanbase11transaction14ObPartTransCtx12check_statusEv:55660:490 + 1: 442 + 2: 442 + 4: 586 _ZN9oceanbase11transaction22CtxTransTableLockGuardD1Ev:520 + 4.1: 0 + 2: _ZN9oceanbase11transaction22CtxTransTableLockGuardC2ERNS0_7CtxLockERNS0_17TransTableSeqLockEb:6730 + 3: 565 + 5: 565 _ZN9oceanbase11transaction17TransTableSeqLock10write_lockEv:604 + 6.1: 0 + 3: _ZN9oceanbase11transaction12CtxLockGuardC2ERNS0_7CtxLockEb:2210 + 0: 442 + 0.1: 442 _ZN9oceanbase11transaction7CtxLock4lockEv:457 + 3: _ZN9oceanbase11transaction14ObPartTransCtx13check_status_Ev:30927 + 2: 507 + 3: 507 + 4: 0 + 5.1: 0 + 6: 0 + 6.1: 0 + 8: 0 + 10.1: 0 + 11.1: 507 + 12: 0 + 13.1: 507 + 14: 0 + 15.1: 0 + 17: 507 + 3: _ZNK9oceanbase11transaction14ObPartTransCtx14is_committing_Ev:12675 + 2: 507 + 2.1: 507 + 3: 507 + 5: _ZNK9oceanbase11transaction10ObTransCtx17is_trans_expired_Ev:0 + 0: 0 + 0: _ZN9oceanbase6common16ObClockGenerator12getRealClockEv:0 + 2: _ZN9oceanbase6common16ObClockGenerator6get_usEv:0 + 2: 0 + 11.1: _ZNK9oceanbase11transaction14ObPartTransCtx12is_follower_Ev:4056 + 0: 507 +_ZN9oceanbase3sql18ObBasicSessionInfo17save_trans_statusEv:55241:1562 + 1: 1493 + 2: 1493 + 3: 1493 + 5: 0 + 8: 0 + 9: 0 + 15: 0 + 16.1: 0 + 19: 1493 +_ZNK9oceanbase7storage10ObStoreCtx8is_validEv:55149:663 + 1: 636 + 2: 636 + 2.2: 633 + 2: _ZNK9oceanbase5share6ObLSID8is_validEv:2544 + 0: 636 + 2.1: _ZNK9oceanbase8memtable15ObMvccAccessCtx8is_validEv:44979 + 1: 636 + 2: _ZNK9oceanbase8memtable15ObMvccAccessCtx15is_read_valid__Ev:0 + 1: 0 + 2: 0 + 3: 0 + 4: 0 + 4.1: 0 + 4.2: 0 + 2.1: _ZNK9oceanbase11transaction12ObTxSnapshot8is_validEv:0 + 0: 0 + 3.1: _ZNK9oceanbase7storage14ObTxTableGuard8is_validEv:0 + 0: 0 + 3: _ZNK9oceanbase8memtable15ObMvccAccessCtx16is_write_valid__Ev:35448 + 1: 633 + 2: 633 + 3: 633 + 3.1: 633 + 4: 633 + 4.1: 633 + 5: 633 + 5.1: 633 + 6: 633 + 7: 633 + 2.1: _ZNK9oceanbase11transaction12ObTxSnapshot8is_validEv:3165 + 0: 633 + 6.1: _ZNK9oceanbase11transaction9ObTransID8is_validEv:3165 + 0: 633 + 7.1: _ZNK9oceanbase7storage14ObTxTableGuard8is_validEv:3165 + 0: 633 + 4: _ZNK9oceanbase8memtable15ObMvccAccessCtx17is_replay_valid__Ev:0 + 1: 0 + 2: 0 + 2.1: 0 + 3: 0 + 3.1: _ZNK9oceanbase11transaction9ObTransID8is_validEv:0 + 0: 0 +_ZN9oceanbase3lib7ObFutex4wakeEl:54949:661 + 1: 649 + 3: 649 + 8: 3209 +_ZN9oceanbase3lib17ObMallocAllocator24get_tenant_ctx_block_mgrEmm:54929:780 + 1: 719 + 4: 719 + 7: 734 + 3: _ZNK9oceanbase3lib17ObMallocAllocator24get_tenant_ctx_allocatorEmm:23053 + 3: 719 + 4: 719 + 7: 0 + 9: 0 + 10.1: 0 + 10.3: 0 + 10.4: 0 + 13.2: 0 + 16.1: 0 + 8: _ZN9oceanbase5obsys12ObRLockGuardC2ERKNS0_8ObRWLockEb:0 + 0: _ZNK9oceanbase5obsys8ObRWLock5rlockEv:0 + 0: 0 + 0.1: _ZN9oceanbase5obsys15ObLockGuardBaseINS0_7ObRLockEEC2ERKS2_b:0 + 0: 0 + 2.1: 0 + 2.3: 0 + 10.2: _ZN9oceanbase3lib20ObTenantCtxAllocator13get_tenant_idEv:0 + 2: 0 +_ZN9oceanbase3sql13AllocOpHelperILi12EE5allocERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputElRPNS0_10ObOperatorE:54774:294 + 3: 278 + 4: 278 + 7: 278 + 8: 278 + 9: 0 + 10.1: 0 + 12.1: 278 + 13: 0 + 14.1: 0 + 16: 278 + 17: 278 _ZN9oceanbase6common16ObArenaAllocator5allocEl:299 + 18: 285 + 19: 0 + 20.1: 0 + 22: 285 + 23: 280 _ZN9oceanbase3sql16ObHashDistinctOpC1ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE:303 + 25.1: 262 + 33: 262 + 24: _ZN9oceanbase3sql10ObOperator20set_children_pointerEPPS1_j:11142 + 7: 236 + 8: 236 + 9: 236 + 10: 236 + 12: 0 + 14: 236 + 15: 0 + 17: 262 +_ZN9oceanbase4palf3LSNC2Ev:54587:4313 + 1: 4199 + 3: 4199 + 2: _ZN9oceanbase4palf3LSN5resetEv:29393 + 2: 4199 +_ZN9oceanbase4palf3LSNC1Ev:54587:4313 + 1: 4199 + 3: 4199 + 2: _ZN9oceanbase4palf3LSN5resetEv:29393 + 2: 4199 +_ZN9oceanbase8memtable10ObMemtable4lockERNS_7storage10ObStoreCtxEmRKNS2_15ObTableReadInfoERKNS_6common8ObNewRowE:54562:165 + 5: 160 + 6: 160 + 11: 160 + 12.1: 0 + 13: 0 + 14.2: 156 + 15: 160 + 16: 156 + 16.2: 156 + 17: 0 + 18.1: 0 + 19.1: 156 _ZN9oceanbase8memtable16ObMvccWriteGuard10write_authERNS_7storage10ObStoreCtxE:163 + 19.2: 177 + 20.1: 0 + 21.1: 177 + 21.3: 177 + 23.1: 0 + 24.2: 138 + 28.1: 0 + 32: 0 + 33.1: 0 + 41: 0 + 42.9: 171 + 42.12: 0 + 42.15: 134 _ZN9oceanbase8memtable16ObMvccWriteGuardD1Ev:135 + 7: _ZN9oceanbase8memtable16ObMvccWriteGuardC2Eb:2560 + 1: 160 + 2: 160 + 3: 160 + 8: _ZN9oceanbase6common13ObStoreRowkeyC2Ev:2720 + 0: 160 + 9: _ZN9oceanbase8memtable13ObMemtableKeyC2Ev:1120 + 0: 160 + 14.1: _ZNK9oceanbase8memtable15ObMvccAccessCtx8is_writeEv:960 + 0: 160 + 15.1: _ZNK9oceanbase7storage15ObTableReadInfo8is_validEv:10656 + 2: 160 + 3: 160 + 3.1: 156 + 4: 156 + 5.1: 156 + 6: 156 + 7: 156 + 7.1: 156 + 3.1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:1092 + 0: 156 + 6.1: _ZNK9oceanbase12blocksstable19ObStorageDatumUtils8is_validEv:1092 + 0: 156 + 21.1: _ZNK9oceanbase7storage15ObTableReadInfo23get_schema_rowkey_countEv:3186 + 1: 177 + 21.2: _ZN9oceanbase6common13ObStoreRowkey6assignEPNS0_5ObObjEl:7611 + 3: 177 + 3.2: 177 + 5.1: 0 + 8: 177 + 7: _ZN9oceanbase6common8ObRowkey6assignEPNS0_5ObObjEl:2478 + 2: 177 + 3: 177 + 24.1: _ZN9oceanbase8memtable10ObMemtable5lock_ERNS_7storage10ObStoreCtxEmRKNS2_15ObTableReadInfoERKNS_6common13ObStoreRowkeyE:4956 + 7: 177 _ZN9oceanbase8memtable10ObMemtable5lock_ERNS_7storage10ObStoreCtxEmRKNS2_15ObTableReadInfoERKNS_6common13ObStoreRowkeyERNS0_13ObMemtableKeyE:180 + 6: _ZN9oceanbase8memtable13ObMemtableKeyC2Ev:3186 + 0: 177 +_ZN9oceanbase6common13serialization10encode_i32EPclRli:54509:637 + 1: 599 + 2: 599 + 4: 599 + 5: 599 + 6: 599 + 7: 599 + 8: 599 + 10: 599 +_ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_NS0_13LabelInfoItemEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS6_EELi82ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE32internal_get_with_timeout_unsafeERNS1_17ObHashTableBucketIS6_NS0_7ObLatchENS1_5NCondEEERKS3_RPKS6_l:54420:286 + 4: 242 + 7: 290 + 8: 0 + 10: 0 + 14: 0 + 15: 0 + 16.1: 0 + 22.1: 0 + 26.4: 0 + 26.6: 0 + 28: 0 + 35: 302 + 39: 296 + 6: _ZNK9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_NS0_13LabelInfoItemEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS6_EELi82ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE12internal_getERKNS1_17ObHashTableBucketIS6_NS0_7ObLatchENS1_5NCondEEERKS3_RPKS6_Rb:35856 + 6: 242 + 8.1: 242 + 10: 275 + 11: 275 + 14: 275 + 16: 27 + 9: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_11HashMapPairINS0_8ObStringENS0_13LabelInfoItemEEEE16check_magic_codeEv:3227 + 0: 269 + 9.1: _ZL12abort_unlessb:538 + 5: 269 + 6: 0 + 10.1: _ZNK9oceanbase6common4hash8equal_toINS0_8ObStringEEclERKS3_S6_:15430 + 2: _ZNK9oceanbase6common8ObStringeqERKS1_:15430 + 2: 299 + 2: _ZNK9oceanbase6common8ObString7compareERKS1_:13989 + 3: 269 + 4: 269 + 5.1: 269 + 7.1: 299 + 7.2: 269 + 104: 0 + 7.1: _ZSt3minIiERKT_S2_S2_:1614 + 5: 269 + 10: _ZN9oceanbase6common4hash25get_cur_microseconds_timeEv:0 + 3: 0 + 4: _ZN9oceanbase6common4hash18tv_to_microsecondsERK7timeval:0 + 2: 0 + 14: _ZN9oceanbase6common4hash25get_cur_microseconds_timeEv:0 + 3: 0 + 4: _ZN9oceanbase6common4hash18tv_to_microsecondsERK7timeval:0 + 2: 0 + 20: _ZNK9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_NS0_13LabelInfoItemEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS6_EELi82ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE12internal_getERKNS1_17ObHashTableBucketIS6_NS0_7ObLatchENS1_5NCondEEERKS3_RPKS6_Rb:0 + 6: 0 + 8.1: 0 + 10: 0 + 11: 0 + 16: 0 + 9: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_11HashMapPairINS0_8ObStringENS0_13LabelInfoItemEEEE16check_magic_codeEv:0 + 0: 0 + 903.1: 0 + 9.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 10.1: _ZNK9oceanbase6common4hash8equal_toINS0_8ObStringEEclERKS3_S6_:0 + 2: _ZNK9oceanbase6common8ObStringeqERKS1_:0 + 2: 0 + 2: _ZNK9oceanbase6common8ObString7compareERKS1_:0 + 3: 0 + 4: 0 + 5.1: 0 + 7.1: 0 + 7.2: 0 + 104: 0 + 7.1: _ZSt3minIiERKT_S2_S2_:0 + 5: 0 + 30: _ZN9oceanbase6common4hash11HashMapPairINS0_8ObStringENS0_13LabelInfoItemEEC2Ev:0 + 0: _ZN9oceanbase6common8ObStringC2Ev:0 + 1: 0 + 30.1: _ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_NS0_13LabelInfoItemEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS6_EELi82ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE12internal_setERNS1_17ObHashTableBucketIS6_NS0_7ObLatchENS1_5NCondEEERKS6_b:0 + 4: 0 + 6: 0 + 7: 0 + 8: 0 + 9.1: 0 + 11: 0 + 12: 0 + 15: 0 + 16: 0 + 17: 0 + 18.1: 0 + 21: 0 + 12: _ZN9oceanbase6common11copy_assignINS0_4hash11HashMapPairINS0_8ObStringENS0_13LabelInfoItemEEEEEiRT_RKS7_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapINS0_4hash11HashMapPairINS0_8ObStringENS0_13LabelInfoItemEEEEEiRT_RKS7_NS0_8BoolTypeILb1EEE:0 + 2: _ZN9oceanbase6common4hash11HashMapPairINS0_8ObStringENS0_13LabelInfoItemEE6assignERKS5_:0 + 3: _ZN9oceanbase6common11copy_assignINS0_8ObStringEEEiRT_RKS3_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapINS0_8ObStringEEEiRT_RKS3_NS0_8BoolTypeILb0EEE:0 + 2: 0 + 5.1: _ZN9oceanbase6common11copy_assignINS0_13LabelInfoItemEEEiRT_RKS3_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapINS0_13LabelInfoItemEEEiRT_RKS3_NS0_8BoolTypeILb0EEE:0 + 2: 0 +_ZN9oceanbase3sql15ObSchemaChecker4initERNS0_16ObSqlSchemaGuardEm:54281:547 + 1: 527 + 2: 527 + 3.1: 527 + 3.2: 0 + 3.3: 0 + 4.1: 0 + 4.2: 527 + 4.4: 0 + 5: 0 + 5.1: 527 + 6: 527 + 3.1: _ZNK9oceanbase3sql16ObSqlSchemaGuard16get_schema_guardEv:1581 + 1: 527 + 4.2: _ZNK9oceanbase3sql16ObSqlSchemaGuard16get_schema_guardEv:0 + 1: 0 + 4.10: _ZN9oceanbase3sql15ObSchemaChecker4initERNS_5share6schema19ObSchemaGetterGuardEm:20026 + 2: 527 + 3: 527 + 4: 0 + 5.1: 0 + 7: 527 + 8: 527 + 9: 527 + 15: 0 + 10: _ZN9oceanbase5share6schema19ObSchemaGetterGuard14set_session_idEm:3689 + 0: 527 +_ZZN9oceanbase8memtable13ObLockWaitMgr6wakeupERKNS_6common10ObTabletIDERKNS0_13ObMemtableKeyEENK4$_42clEPKc.1dd22efca7fa83ae50e8099a04ad3959:54193:783 + 0: 773 + 0.1: 0 + 0.2: 727 + 0.3: 773 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:779 + 0.7: 0 + 0.10: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:13141 + 2: 773 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKNS0_10ObTabletIDELb0EEC2EPKcS4_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS_8memtable13ObMemtableKeyELb0EEC2EPKcS5_:0 + 0: 0 + 0.9: _ZN9oceanbase6common7ObLogKVIRKPcLb0EEC2EPKcS4_:0 + 0: 0 +_ZN9oceanbase3sql23ObEndTransCbPacketParam4fillERNS0_11ObResultSetERNS0_16ObSQLSessionInfoERKNS_6common12ObCurTraceId7TraceIdE:54172:288 + 3: 285 + 4: 285 + 6: 289 + 6.3: 289 + 8: 289 + 9: 289 + 11: 289 + 12: 289 + 4: _ZNK9oceanbase3sql11ObResultSet11get_messageEv:1995 + 2: 285 + 8: _ZN9oceanbase3sql11ObResultSet28get_last_insert_id_to_clientEv:2312 + 2: 289 + 9.1: _ZN9oceanbase3sql18ObPartitionHitInfo8get_boolEv:2023 + 0: 289 + 10: _ZN9oceanbase6common12ObCurTraceId7TraceId3setERKS2_:19363 + 2: 289 + 3: 289 + 4: 289 + 5: 289 + 6: _ZN9oceanbase6common12ObCurTraceId7TraceId16check_ipv6_validEv:6069 + 1: 289 + 2: 0 + 2.1: 0 +_ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE16est_bucket_countEllll:54167:271 + 5: 252 + 6: 252 + 7: 252 _ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE19est_partition_countEv:260 + 11: 256 + 13.1: 251 + 13.3: 251 + 14: 0 + 18: 251 + 21: 251 + 9: _ZN9oceanbase6common9next_pow2El:5356 + 2: 256 + 11: _ZNK9oceanbase3sql20ObSqlMemMgrProcessor13get_mem_boundEv:3293 + 1: 256 + 1.1: 0 + 1.2: 251 + 1.3: 251 + 1.1: _ZNK9oceanbase3sql20ObSqlWorkAreaProfile15get_expect_sizeEv:0 + 0: 0 + 15: _ZN9oceanbase6common9next_pow2El:0 + 2: 0 + 20: _ZNK9oceanbase3sql20ObSqlMemMgrProcessor11get_profileEv:1004 + 0: 251 + 20.1: _ZN9oceanbase3sql20ObSqlWorkAreaProfile14set_basic_infoElll:6024 + 3: 251 + 4: 251 + 4.3: 251 + 5: 251 +_ZN9oceanbase11transaction12ObTxExecInfo5resetEv:54041:265 + 1: 263 + 2: 263 + 4: 263 + 5: 253 + 6: 280 _ZN9oceanbase4palf3LSN5resetEv:283 + 7: 255 + 9: 257 + 11: 257 + 13: 257 + 14: 257 + 16: 257 + 18: 257 _ZN9oceanbase4palf3LSN5resetEv:266 + 19: 243 + 22: 243 + 23: 248 + 24: 251 _ZN9oceanbase11transaction11ObXATransID5resetEv:257 + 25: 239 + 26: 239 + 3: _ZN9oceanbase5share6ObLSID5resetEv:1052 + 0: 263 + 4: _ZN9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EE5resetEv:1315 + 0: 263 _ZN9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EE7destroyEv:263 + 5: _ZN9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EE5resetEv:2024 + 0: 253 _ZN9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EE7destroyEv:282 + 7: _ZN9oceanbase6common13ObSEArrayImplINS_4palf3LSNELl10ENS0_19ModulePageAllocatorELb0EE5resetEv:2040 + 0: 255 _ZN9oceanbase6common13ObSEArrayImplINS_4palf3LSNELl10ENS0_19ModulePageAllocatorELb0EE7destroyEv:270 + 8: _ZN9oceanbase6common6ObAddr5resetEv:2570 + 2: 257 + 22: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EE5resetEv:1944 + 0: 243 _ZN9oceanbase6common13ObSEArrayImplINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:267 + 23: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction11ObLSLogInfoELl10ENS0_19ModulePageAllocatorELb0EE5resetEv:1984 + 0: 248 _ZN9oceanbase6common13ObSEArrayImplINS_11transaction11ObLSLogInfoELl10ENS0_19ModulePageAllocatorELb0EE7destroyEv:251 +_ZN9oceanbase6common9ObCharset8scan_strEPKcS3_i:53958:553 + 3: 529 + 4: 529 + 6: 529 + 7.2: 0 + 9: 529 + 11: 529 + 9: _Z12ob_scan_8bitPK13ObCharsetInfoPKcS3_i:8464 + 4: 529 + 7: 0 + 7.1: 0 + 9: 0 + 9.1: 0 + 9.2: 0 + 9.3: 0 + 15.1: 529 + 15.2: 0 + 17: 0 + 17.1: 0 + 17.3: 0 +_ZZN9oceanbase7storage15ObAccessService25audit_tablet_opt_dml_statERKNS0_14ObDMLBaseParamERKNS_6common10ObTabletIDENS5_16ObOptDmlStatTypeElENK5$_125clEPKc.a13d96b7c27110f7acdd340c58275d80:53877:1000 + 0: 931 + 0.1: 0 + 0.2: 920 + 0.3: 931 _ZN9oceanbase6common8ObLogger13need_to_printEmi:967 + 0.5: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:15827 + 2: 931 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKNS0_12ObOptDmlStatELb0EEC2EPKcS4_:0 + 0: 0 +_ZN9oceanbase6common8ObRandom3getEv:53822:1420 + 1: 1318 + 2: 1349 + 3: 1349 + 4: 1377 +_ZN9oceanbase6common13serialization11encode_vi64EPclRll:53658:784 + 1: 768 + 3: 768 + 4: 787 + 5: 787 + 6.1: 787 + 7: 0 + 8: 0 + 11: 794 + 14: 794 + 4: _ZN9oceanbase6common13serialization19encoded_length_vi64El:6144 + 4: 768 + 6.1: 0 + 8.1: 0 + 10.1: 0 + 12.1: 0 + 14.1: 0 + 16.1: 0 + 18.1: 0 +_ZN9oceanbase12blocksstable22ObIndexBlockRowScanner4openERKNS0_12MacroBlockIdERKNS0_16ObMicroBlockDataERKNS0_13ObDatumRowkeyEs:53658:235 + 5: 219 + 6: 219 + 7: 219 + 8: 6 + 9.1: 6 + 10.1: 219 + 10.2: 219 + 10.3: 219 + 12: 6 + 13.1: 6 + 15.1: 242 _ZN9oceanbase12blocksstable22ObIndexBlockRowScanner18init_by_micro_dataERKNS0_16ObMicroBlockDataE:231 + 16.1: 6 + 17.1: 242 _ZN9oceanbase12blocksstable22ObIndexBlockRowScanner10locate_keyERKNS0_13ObDatumRowkeyE:251 + 18.1: 6 + 21: 237 + 22: 237 + 23: 237 + 25: 237 + 10.1: _ZNK9oceanbase12blocksstable12MacroBlockId8is_validEv:6789 + 2: 219 + 3: 219 + 4.1: 219 + 5.1: 219 + 10.2: _ZNK9oceanbase12blocksstable16ObMicroBlockData8is_validEv:6789 + 0: 219 + 0.1: 219 + 0.2: 219 + 10.3: _ZNK9oceanbase12blocksstable13ObDatumRowkey8is_validEv:2409 + 0: 219 + 0.1: 219 + 20: _ZN9oceanbase12blocksstable12MacroBlockIdaSERKS1_:5688 + 2: 237 + 3: 237 + 4: 237 +_ZN9oceanbase3sql10ObExprTrim4trimERNS_6common8ObStringElRKS3_S6_:53635:250 + 4: 235 + 5: 235 + 6: 235 + 7: 235 + 8: 235 + 9: 0 + 10: 0 + 12: 235 + 14: 0 + 18: 0 + 19: 0 + 23: 235 + 24: 245 + 28: 0 + 29.1: 0 + 34: 245 + 35: 245 + 36: 245 + 38: 245 + 10: _ZNK9oceanbase6common8ObString6lengthEv:0 + 0: 0 + 18: _ZNK9oceanbase6common8ObString6lengthEv:0 + 0: 0 + 24: _ZN9oceanbase3sql10ObExprTrim5rtrimENS_6common8ObStringES3_Ri:17530 + 2: 235 + 3: 235 + 4: 0 + 5.1: 0 + 10.1: 235 + 11: 235 + 13: 245 + 13.2: 235 + 14: 0 + 20: 0 + 3: _ZNK9oceanbase6common8ObString6lengthEv:1645 + 0: 235 + 35: _ZN9oceanbase6common8ObStringC2EiiPc:1470 + 3: 245 + 36: _ZNK9oceanbase6common8ObString3ptrEv:980 + 0: 245 +_ZNK9oceanbase6common10ObTabletID4hashEv:53352:763 + 1: 684 + 4: 684 + 3: _ZN9oceanbase6common10murmurhashEPKvim:40356 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:40356 + 13: 684 + 14: 684 + 15: 684 + 17: 684 + 18: 684 + 41: 684 + 42: 684 + 43: 684 +_ZN9oceanbase3sql16ObHashDistinctOp11inner_closeEv:53172:251 + 1: 243 + 8: 285 _ZN9oceanbase3sql20ObSqlMemMgrProcessor18unregister_profileEv:286 + 9: 278 + 6: _ZN9oceanbase3sql16ObHashDistinctOp5resetEv:45348 + 2: 243 + 4: 243 + 5: 243 _ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE5resetEv:245 + 7: 264 + 11: 264 + 12: 264 + 14.1: 264 _ZZN9oceanbase3sql16ObHashDistinctOp5resetEvENK5$_459clEPKc.ae889f3027d8490103b30de3c389dd2f:265 + 6: _ZN9oceanbase3sql20ObAdaptiveByPassCtrl5resetEv:15840 + 1: 264 + 2: 264 + 4: 264 + 6: 264 + 3: _ZN9oceanbase3sql20ObAdaptiveByPassCtrl11reset_stateEv:2640 + 0: 264 + 7: _ZN9oceanbase3sql11get_my_specINS0_16ObHashDistinctOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:1056 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:1056 + 0: 264 +_ZNK9oceanbase4palf14LogGroupBuffer18can_handle_new_logERKNS0_3LSNElS4_:53149:260 + 3: 260 + 4: 260 + 5: 260 _ZN9oceanbase4palfplERKNS0_3LSNEm:264 + 6: 273 _ZN9oceanbase4palf3LSNC1Ev:274 + 6.1: 271 _ZN9oceanbase4palf3LSNC1Ev:271 + 9: 260 _ZNK9oceanbase4palf3LSNltERKS1_:286 + 9.1: 277 + 9.4: 277 _ZN9oceanbase4palf3LSNaSERKS1_:281 + 10: 261 + 11.1: 261 _ZNK9oceanbase4palf3LSN8is_validEv:277 + 11.2: 263 + 11.4: 263 _ZNK9oceanbase4palf3LSN8is_validEv:270 + 11.5: 262 + 12.1: 0 + 13.1: 262 _ZNK9oceanbase4palf3LSNltERKS1_:278 + 13.2: 263 + 14.1: 0 + 15.2: 263 _ZN9oceanbase4palfplERKNS0_3LSNEm:279 + 15.3: 261 _ZNK9oceanbase4palf3LSNgtERKS1_:273 + 15.4: 258 + 16.1: 0 + 19: 258 + 21: 246 + 22.8: 246 + 7: _ZNK9oceanbase4palf14LogGroupBuffer21get_buffer_start_lsn_ERNS0_3LSNE:4563 + 2: 270 _ZN9oceanbase4palf3LSNC1Em:270 + 2.4: 267 _ZN9oceanbase4palf3LSNaSERKS1_:269 + 8: _ZNK9oceanbase4palf14LogGroupBuffer14get_reuse_lsn_ERNS0_3LSNE:5175 + 2: 294 _ZN9oceanbase4palf3LSNC1Em:295 + 2.4: 281 _ZN9oceanbase4palf3LSNaSERKS1_:281 + 15.1: _ZNK9oceanbase4palf14LogGroupBuffer25get_available_buffer_sizeEv:3156 + 3: 263 +_ZN9oceanbase3sql12ObSqlPlanSet17get_phy_locationsERKNS_6common8ObIArrayINS0_15ObTableLocationEEERNS0_14ObPlanCacheCtxERNS3_INS0_15ObCandiTableLocEEERb:53069:232 + 4: 215 + 5: 215 + 6: 215 + 7: 215 + 8: 221 _ZN9oceanbase3sql19ObPhyLocationGetter17get_phy_locationsERKNS_6common8ObIArrayINS0_15ObTableLocationEEERKNS0_14ObPlanCacheCtxERNS3_INS0_15ObCandiTableLocEEERb:231 + 12.1: 0 + 13.1: 224 + 16.1: 0 + 18: 224 + 7: _ZN9oceanbase3sql13ObExecContext11get_das_ctxEv:1505 + 0: 215 + 7.1: _ZN9oceanbase3sql8ObDASCtx23clear_all_location_infoEv:19135 + 2: _ZN9oceanbase6common6ObListIPNS_3sql13ObDASTableLocENS0_12ObIAllocatorEE5clearEv:8815 + 2: 215 + 3.1: 215 + 4: 0 + 5: 0 + 8: 215 + 9: 215 + 10: 215 + 3: _ZN9oceanbase3sql19DASRelatedTabletMap5clearEv:10320 + 0: 215 + 0: _ZN9oceanbase6common6ObListINS_3sql19DASRelatedTabletMap8MapEntryENS0_12ObIAllocatorEE5clearEv:8815 + 2: 215 + 3.1: 215 + 4: 0 + 5: 0 + 8: 215 + 9: 215 + 10: 215 + 13.1: _ZN9oceanbase3sql13ObExecContext11get_das_ctxEv:1547 + 0: 221 + 13.2: _ZN9oceanbase3sql19ObPhyLocationGetter16build_table_locsERNS0_8ObDASCtxERKNS_6common8ObIArrayINS0_15ObTableLocationEEERKNS5_INS0_15ObCandiTableLocEEE:9282 + 5: 221 + 5.1: 221 + 5.2: 0 + 5.3: 0 + 5.5: 0 + 6.1: 0 + 6.2: 221 + 6.3: 221 + 6.5: 0 + 7: 0 + 7.3: 0 + 8.1: 0 + 15: 0 + 5.1: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql15ObTableLocationEE5countEv:1105 + 0: 221 + 7: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql15ObTableLocationEE2atEl:0 + 6: 0 + 7.1: _ZNK9oceanbase3sql15ObTableLocation12get_loc_metaEv:0 + 0: 0 + 7.2: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql15ObCandiTableLocEE2atEl:0 + 6: 0 + 12: _ZN9oceanbase3sql8ObDASCtx23clear_all_location_infoEv:0 + 2: _ZN9oceanbase6common6ObListIPNS_3sql13ObDASTableLocENS0_12ObIAllocatorEE5clearEv:0 + 2: 0 + 3.1: 0 + 4: 0 + 5: 0 + 8: 0 + 9: 0 + 10: 0 + 3: _ZN9oceanbase3sql19DASRelatedTabletMap5clearEv:0 + 0: 0 + 0: _ZN9oceanbase6common6ObListINS_3sql19DASRelatedTabletMap8MapEntryENS0_12ObIAllocatorEE5clearEv:0 + 2: 0 + 3.1: 0 + 4: 0 + 5: 0 + 8: 0 + 9: 0 + 10: 0 +_ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE7destroyEv:52916:251 + 1: 244 + 2: 244 _ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE5resetEv:244 + 4: 230 + 5: 230 _ZN9oceanbase3sql30ObHashPartitionExtendHashTableINS0_14ObHashPartColsEE7destroyEv:232 + 6: 263 _ZN9oceanbase6common4hash9ObHashMapINS_3sql24ObHashPartInfrastructureINS3_14ObHashPartColsENS3_19ObHashPartStoredRowEE14ObIntraPartKeyEPNS7_16ObIntraPartitionENS1_19NoPthreadDefendModeENS1_9hash_funcIS8_EENS1_8equal_toIS8_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS8_SA_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv:269 + 7: 257 _ZN9oceanbase6common4hash9ObHashMapINS_3sql24ObHashPartInfrastructureINS3_14ObHashPartColsENS3_19ObHashPartStoredRowEE14ObIntraPartKeyEPNS7_16ObIntraPartitionENS1_19NoPthreadDefendModeENS1_9hash_funcIS8_EENS1_8equal_toIS8_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS8_SA_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv:257 + 8: 229 + 9: 229 + 11: 229 + 12: 229 + 13: 229 + 14: 229 _ZN9oceanbase6common11ObAllocator4freeEPv:231 + 15: 228 + 16: 228 _ZN9oceanbase6common11ObAllocator4freeEPv:228 + 17: 203 + 22: 264 + 3: _ZN9oceanbase6common14ObArrayHashMapINS_3sql14ObHashPartColsEiE7destroyEv:4841 + 2: 231 + 4: 0 + 7: 230 + 3: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 12: _ZN9oceanbase3libneEDnRKNS0_13MemoryContextE:1145 + 1: 229 + 19: _ZN9oceanbase3lib17__MemoryContext__15destory_contextERNS0_13MemoryContextE:5887 + 3: 203 + 4: 203 + 5: 203 + 6: 203 _ZN9oceanbase3lib17__MemoryContext__15destory_contextEPS1_:210 + 2: _ZNK9oceanbase3lib13MemoryContext16check_magic_codeEv:812 + 0: 203 + 2.1: _ZL12abort_unlessb:406 + 5: 203 + 6: 0 + 5: _ZL12abort_unlessb:406 + 5: 203 + 6: 0 + 20: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:5016 + 2: 264 + 8: 264 +obsql_mysql_yylex_init_extra:52864:540 + 2: 518 + 7: 518 + 8: 0 + 12: 528 + 14: 528 + 15: 0 + 21: 528 + 23: 472 + 25: 472 + 26: 472 + 12: obsql_mysql_yyalloc:7770 + 4: 518 + 6: 518 parse_malloc:541 + 23: obsql_mysql_yyset_extra:1416 + 3: 472 + 25: yy_init_globals:12744 + 10: 472 + 14: 472 + 16: 472 + 23: 472 +_ZN9oceanbase8observer16ObMPPacketSender12flush_bufferEb:52853:230 + 1: 208 + 2: 208 + 3: 208 + 4: 0 + 5.1: 0 + 6.1: 208 + 7: 0 + 8.1: 0 + 9.1: 208 + 10: 0 + 11.1: 0 + 12.1: 208 + 13.1: 0 + 15: 208 + 15.1: 0 + 17.1: 0 + 19.1: 0 + 19.2: 0 + 20.1: 0 + 23: 0 + 23.1: 0 + 25: 0 + 26.1: 185 + 27: 185 + 29: 185 _ZN9oceanbase7obmysql19ObMySQLRequestUtils12flush_bufferERNS0_18ObFlushBufferParamE:211 + 29.1: 229 + 30.1: 0 + 33: 0 + 34: 0 + 35: 0 + 35.1: 0 + 36.1: 0 + 39: 0 + 40: 0 + 41.1: 0 + 44: 0 + 45.1: 0 + 52: 0 + 53: 0 + 54.1: 0 + 57: 0 + 58.1: 0 + 65: 229 + 66: 229 + 68: 0 + 72: 229 + 75: 229 + 12.1: _ZN9oceanbase8observer16ObMPPacketSender11alloc_ezbufEv:3952 + 2: 208 + 5: 208 + 9.1: 0 + 10: 0 + 11.1: 0 + 14: 0 + 15: 0 + 19: 0 + 9.1: _ZN9oceanbase3rpc20ObSqlRequestOperator25alloc_sql_response_bufferEPNS0_9ObRequestEl:0 + 1: 0 + 1.1: 0 + 15: _ZN9oceanbase6common13init_easy_bufEP10easy_buf_tPcP14easy_request_tm:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 10: 0 + 11.1: 0 + 15: _ZNK9oceanbase7obmysql16ObProto20Context15is_proto20_usedEv:1248 + 0: 208 + 16: _ZN9oceanbase7obmysql18ObProtoEncodeParamC2Ev:0 + 1: 0 + 4: 0 + 17: _ZN9oceanbase8observer16ObMPPacketSender19build_encode_param_ERNS_7obmysql18ObProtoEncodeParamEPNS2_13ObMySQLPacketEb:0 + 6: 0 + 7: 0 + 9: 0 + 10: 0 + 11: 0 + 12: 0 + 4: _ZN9oceanbase7obmysql18ObProtoEncodeParam11build_paramERS1_PNS0_13ObMySQLPacketER10easy_buf_tjbRNS0_16ObProto20ContextEPNS_3rpc9ObRequestEPNS_6common8ObIArrayINS0_10ObCommonKVINSC_5ObObjESF_EEEEPNSD_IPNS0_12Obp20EncoderEEE:0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 12: 0 + 13: 0 + 27: _ZNK9oceanbase3rpc9ObRequest10get_ez_reqEv:1295 + 2: 185 + 27.1: _ZN9oceanbase7obmysql18ObFlushBufferParamC2ER10easy_buf_tR14easy_request_tRNS0_20ObCompressionContextERbS8_b:5735 + 3: 185 + 4: 185 + 5: 185 + 3: _ZN9oceanbase7obmysql12ObEasyBufferC2ER10easy_buf_t:2035 + 0: 185 + 33: _ZNK9oceanbase7obmysql20ObCompressionContext12use_compressEv:0 + 0: 0 + 34: _ZN9oceanbase7obmysql12ObEasyBufferC2ER10easy_buf_t:0 + 0: 0 + 40: _ZN9oceanbase3rpc20ObSqlRequestOperator20async_write_responseEPNS0_9ObRequestEPKcl:0 + 1.1: 0 + 44: _ZN9oceanbase3rpc20ObSqlRequestOperator14write_responseEPNS0_9ObRequestEPKcl:0 + 1.1: 0 + 53: _ZN9oceanbase3rpc20ObSqlRequestOperator20async_write_responseEPNS0_9ObRequestEPKcl:0 + 1.1: 0 + 57: _ZN9oceanbase3rpc20ObSqlRequestOperator14write_responseEPNS0_9ObRequestEPKcl:0 + 1.1: 0 + 66: _ZNK9oceanbase7obmysql16ObProto20Context15is_proto20_usedEv:1374 + 0: 229 + 73: _ZN9oceanbase8observer16ObMPPacketSender18finish_sql_requestEv:4351 + 2: 229 + 2.1: 229 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 3: _ZN9oceanbase3rpc20ObSqlRequestOperator18finish_sql_requestEPNS0_9ObRequestE:0 + 1: 0 + 1.1: 0 + 5: _ZN9oceanbase3rpc20ObSqlRequestOperator24free_sql_response_bufferEPNS0_9ObRequestEPv:0 + 1: 0 + 1.1: 0 +_ZN9oceanbase12blocksstable11ObRowWriter22append_flat_cell_arrayINS0_14ObStorageDatumEEEiPKT_lll:52788:54 + 5: 53 + 6: 53 + 7: 53 + 7.3: 53 + 7.6: 53 + 9: 0 + 10.1: 0 + 13.1: 254 + 13.3: 254 + 13.5: 254 + 14: 249 + 15: 0 + 17.1: 249 + 18: 23 + 21: 0 + 22.1: 0 + 24.1: 227 + 25: 227 + 27: 234 + 28: 129 + 30.1: 0 + 35: 0 + 36: 254 + 45: 58 + 15: _ZN9oceanbase12blocksstable11ObRowWriter15check_col_existEl:3237 + 3: 249 + 5.1: 0 + 5.2: 0 + 6: 0 + 6.1: 0 + 7: 0 + 9.1: 0 + 6.1: _ZNK9oceanbase6common12ObIArrayWrapIlE2atEl:0 + 6: 0 + 17.1: _ZNK9oceanbase6common11ObDatumDesc6is_extEv:3486 + 0: 249 + 18: _ZNK9oceanbase12blocksstable14ObStorageDatum12is_nop_valueEv:470 + 0: _ZNK9oceanbase6common7ObDatum6is_nopEv:470 + 0.1: 23 + 452.3: 4 + 0.1: _ZNK9oceanbase6common5ObObj12is_nop_valueEv:322 + 2: 23 + 2.1: 23 + 24.1: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:454 + 0: 227 + 28: _ZN9oceanbase12blocksstable11ObRowWriter13append_columnERKNS0_14ObStorageDatumE:10824 + 3: 234 + 5.1: 234 + 6: 119 _ZN9oceanbase12blocksstable11ObRowWriter21append_8_bytes_columnERKNS0_14ObStorageDatumE:123 + 8: 116 + 9: 111 + 36: _ZN9oceanbase12blocksstable11ObRowWriter10ObBitArrayILl48EE7set_valEll:6858 + 2: 254 + 3: 254 + 4: 254 +_ZN9oceanbase8memtable10ObMemtable19inc_unsubmitted_cntEv:52680:947 + 1: 878 + 3: 878 + 4: 878 + 7: 878 + 8.1: 0 + 10: 0 + 14.1: 878 + 3.1: _ZN9oceanbase5share6ObLSIDC2ERKS1_:11414 + 0: 878 +_ZN9oceanbase3sql20ObStartTransResolver7resolveERK10_ParseNode:52513:241 + 1: 235 + 2: 235 + 4: 235 + 4.2: 235 + 5: 1 + 6.1: 1 + 7.1: 287 _ZN9oceanbase3sql14ObStmtResolver11create_stmtINS0_16ObStartTransStmtEEEPT_v:237 + 8: 1 + 9.1: 1 + 10.1: 287 + 10.2: 287 + 11: 287 + 11.1: 287 + 12: 1 + 13.1: 1 + 15: 287 + 16: 287 + 18: 287 + 20: 287 _ZN9oceanbase5share6schema19ObSchemaGetterGuard23get_sys_variable_schemaEmRPKNS1_25ObSimpleSysVariableSchemaE:298 + 21.1: 1 + 22.1: 276 + 23: 1 + 24.1: 1 + 25.1: 276 _ZNK9oceanbase3sql16ObSQLSessionInfo24has_user_super_privilegeEv:275 + 25.2: 1 + 25.3: 1 + 25.4: 1 + 28: 1 + 29.1: 1 + 31: 257 + 33.1: 257 + 36: 262 + 41: 262 + 16: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:2009 + 0: 287 + 19: _ZN9oceanbase3sql15ObSchemaChecker16get_schema_guardEv:1148 + 0: 287 + 25.2: _ZNK9oceanbase5share6schema25ObSimpleSysVariableSchema13get_read_onlyEv:4 + 0: 1 + 37: _ZN9oceanbase3sql16ObStartTransStmt28set_with_consistent_snapshotEb:7 + 2: 1 +_ZN9oceanbase11transaction11ObTxDescMgr6revertERNS0_8ObTxDescE:52495:530 + 1: 485 + 2: 485 + 3: 485 + 4.1: 485 + 4.2: 0 + 4.3: 0 + 4.6: 0 + 9.1: 481 _ZZN9oceanbase11transaction11ObTxDescMgr6revertERNS0_8ObTxDescEENK6$_1087clEPKc.6c6f3ed9193054173c335adef4549614:490 + 10.2: 496 + 6: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocEE6revertEPS3_:17991 + 3: 485 + 3: _ZN9oceanbase11transaction15ObTransHashLinkINS0_8ObTxDescEE7dec_refEi:4850 + 2: 485 + 3: 485 + 4.1: 0 + 4: _ZN9oceanbase11transaction11ObTxDescMgr13ObTxDescAlloc10free_valueEPNS0_8ObTxDescE:11438 + 3.1: 248 + 4: 256 + 4.3: 248 _ZN9oceanbase6common21ObFixedClassAllocatorINS_11transaction8ObTxDescEE3getERKNS_3lib7ObLabelE:253 + 4: _ZN9oceanbase3lib7ObLabelC2IPKcEERKT_:3472 + 2: _ZN9oceanbase3lib7ObLabelaSIPKcvEERS1_T_:3472 + 2: 248 + 4.1: _ZN9oceanbase6common21ObFixedClassAllocatorINS_11transaction8ObTxDescEE4freeEPS3_:3686 + 3: 256 _ZN9oceanbase11transaction8ObTxDescD1Ev:265 + 4: 242 _ZN9oceanbase6common12ObSliceAlloc4freeEPv:243 +_ZN9oceanbase8memtable15ObMutatorWriter9serializeEhRl:52433:259 + 1: 251 + 2: 251 + 5: 251 + 6: 0 + 7.1: 0 + 8.1: 251 + 10: 0 + 11.1: 251 + 12.1: 0 + 14.1: 251 + 16.1: 251 + 18.1: 245 + 20: 245 + 22: 0 + 23.1: 0 + 25: 245 + 5: _ZN9oceanbase6common12ObDataBuffer8get_dataEv:1004 + 0: 251 + 11.1: _ZN9oceanbase8memtable14ObTransRowFlag17is_valid_row_flagEh:1506 + 2: 251 + 3: 251 + 14.1: _ZN9oceanbase8memtable21ObMemtableMutatorMeta9set_flagsEh:1004 + 8: 251 + 16.3: _ZN9oceanbase8memtable21ObMemtableMutatorMeta11fill_headerEPKcl:8002 + 3: 251 + 6: 251 + 7: 251 _ZN9oceanbase6common8ob_crc64EPKvl:261 + 8: 245 + 8: _ZN9oceanbase8memtable21ObMemtableMutatorMeta13calc_meta_crcEPKc:3514 + 2: 251 + 3: 251 _ZN9oceanbase6common8ob_crc64EPKvl:260 + 18.1: _ZN9oceanbase6common12ObDataBuffer8get_dataEv:3920 + 0: 245 + 18.2: _ZN9oceanbase8memtable21ObMemtableMutatorMeta9serializeEPclRl:7105 + 2: 245 + 3: 245 + 4: 245 + 5.1: 0 + 6: 0 + 8: 245 + 12.1: 0 + 18: 0 +_ZNK9oceanbase3sql6ObStmt11is_dml_stmtEv:51754:1137 + 1: 1099 + 2: 1139 + 2: _ZN9oceanbase3sql6ObStmt11is_dml_stmtENS0_4stmt8StmtTypeE:39585 + 3: 1139 + 10.1: _ZN9oceanbase3sql6ObStmt12is_show_stmtENS0_4stmt8StmtTypeE:22780 + 2: 1139 +_ZNK9oceanbase5share6schema11ObTableMode8is_validEv:51700:1111 + 1: 1100 + 3: 1100 + 6: 1100 +_ZN9oceanbase11transaction14ObPartTransCtx25submit_multi_source_data_ERNS0_12ObTxLogBlockE:51594:537 + 1: 514 + 2: 514 + 3: 514 + 5: 514 + 6: 514 + 7: 0 + 9.1: 0 + 10: 0 + 11: 0 + 11.1: 0 + 13.1: 0 + 16.1: 0 + 16.2: 0 + 21: 0 + 24.1: 0 + 25.2: 0 + 25.4: 0 + 25.5: 0 + 27.1: 0 + 28.1: 0 + 28.2: 0 + 31.1: 0 + 32.1: 0 + 32.2: 0 + 33: 0 + 33.2: 0 + 33.3: 0 + 37.1: 0 + 38: 0 + 40.3: 0 + 41: 0 + 42.1: 0 + 43.2: 0 + 46.1: 0 + 46.4: 0 + 46.5: 0 + 48.1: 0 + 50.1: 0 + 50.2: 0 + 55: 0 + 56: 0 + 57: 0 + 61: 0 + 63: 0 + 63.1: 0 + 65.1: 520 _ZZN9oceanbase11transaction14ObPartTransCtx25submit_multi_source_data_ERNS0_12ObTxLogBlockEENK5$_601clEPKc.93feb755617c21c32b229b78773c290c:531 + 68: 540 + 8: _ZN9oceanbase11transaction12ObTxMDSRangeC2Ev:0 + 0.1: 0 + 0: _ZN9oceanbase6common4list8IteratorINS0_6ObListINS_11transaction14ObTxBufferNodeENS4_24TransModulePageAllocatorEEEEC2Ev:0 + 0: 0 + 16: _ZN9oceanbase11transaction9ObTxLogCb13get_mds_rangeEv:0 + 0: 0 + 25.3: _ZNK9oceanbase11transaction12ObTxMDSRange5countEv:0 + 0: 0 + 33.1: _ZNK9oceanbase11transaction9ObTransID6get_idEv:0 + 0: 0 + 43.1: _ZN9oceanbase11transaction10ObTransCtx16acquire_ctx_ref_Ev:0 + 2: _ZN9oceanbase11transaction15ObTransHashLinkINS0_10ObTransCtxEE7inc_refEi:0 + 2: 0 + 3.1: 0 + 5: 0 + 46.1: _ZN9oceanbase11transaction12ObLSTxCtxMgr18get_ls_log_adapterEv:0 + 0: 0 + 46.2: _ZN9oceanbase11transaction12ObTxLogBlock7get_bufEv:0 + 3: 0 + 49: _ZN9oceanbase11transaction10ObTransCtx16release_ctx_ref_Ev:0 + 2: _ZN9oceanbase11transaction15ObTransHashLinkINS0_10ObTransCtxEE7dec_refEi:0 + 2: 0 + 3: 0 + 4.1: 0 +_ZN9oceanbase11transaction14ObTransService23acquire_local_snapshot_ERKNS_5share6ObLSIDERl:51399:258 + 2: 258 + 7: 258 + 8: 268 _ZN9oceanbase11transaction10ObTxCtxMgr17get_ls_tx_ctx_mgrERKNS_5share6ObLSIDERPNS0_12ObLSTxCtxMgrE:281 + 9.1: 0 + 10.1: 268 _ZN9oceanbase11transaction12ObLSTxCtxMgr23in_leader_serving_stateEv:279 + 11: 0 + 15.1: 246 + 16: 0 + 18: 246 + 20: 246 + 21: 246 _ZN9oceanbase11transaction10ObTxCtxMgr20revert_ls_tx_ctx_mgrEPNS0_12ObLSTxCtxMgrE:246 + 23.1: 253 _ZZN9oceanbase11transaction14ObTransService23acquire_local_snapshot_ERKNS_5share6ObLSIDERlENK6$_1031clEPKc.93feb755617c21c32b229b78773c290c:256 + 24: 225 + 15.1: _ZNK9oceanbase11transaction14ObTxVersionMgr17get_max_commit_tsEb:18426 + 2: 268 + 3: 268 + 4: 268 + 5: 268 + 7.1: 268 _ZZNK9oceanbase11transaction14ObTxVersionMgr17get_max_commit_tsEbENKUlPKcE_clES3_:277 + 8: 246 + 5: _ZN9oceanbase6common3maxEll:1876 + 2: 268 +_ZN9oceanbase6common9Ob2DArrayIPNS_3sql20ObAggregateProcessor8GroupRowELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS5_Ll64ES6_Lb0EEEE7reserveEl:51390:252 + 0: 242 + 1: 242 + 2: 242 + 3: 242 + 4: 242 + 7: 242 + 8: 240 + 9.1: 0 + 12: 0 + 13.1: 0 + 17: 0 + 18: 0 + 19.1: 0 + 20: 0 + 23: 0 + 25: 0 + 27.1: 0 + 27.3: 0 + 28: 0 + 29.1: 0 + 36: 240 + 3: _ZNK9oceanbase6common9Ob2DArrayIPNS_3sql20ObAggregateProcessor8GroupRowELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS5_Ll64ES6_Lb0EEEE12get_capacityEv:1694 + 2: 242 + 8: _ZN9oceanbase6common9Ob2DArrayIPNS_3sql20ObAggregateProcessor8GroupRowELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS5_Ll64ES6_Lb0EEEE9new_blockEl:26514 + 5: 242 + 7: 240 + 8.1: 0 + 10.1: 0 + 11.1: 0 + 15: 240 + 17: 0 + 6: _ZN9oceanbase6common9Ob2DArrayIPNS_3sql20ObAggregateProcessor8GroupRowELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS5_Ll64ES6_Lb0EEEE11alloc_blockEl:13068 + 1: 242 + 1: _ZN9oceanbase6common19ModulePageAllocator5allocEl:9922 + 2: 242 + 3: 242 _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:249 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:2662 + 5: 242 + 7: 242 + 8: 242 + 10.1: _ZN9oceanbase6common13ObSEArrayImplIPPNS_3sql20ObAggregateProcessor8GroupRowELl64ENS0_19ModulePageAllocatorELb0EE9push_backERKS6_:7920 + 5: 240 + 6: 0 + 12: 0 + 15: 0 + 15.1: 240 + 16: 240 + 15.1: _ZN9oceanbase6common9ObClassOpIPPNS_3sql20ObAggregateProcessor8GroupRowELb1EE20construct_and_assignERKS6_RS6_:960 + 2: 240 + 12: _ZN9oceanbase6common9Ob2DArrayIPNS_3sql20ObAggregateProcessor8GroupRowELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS5_Ll64ES6_Lb0EEEE10free_blockES8_:0 + 0: 0 + 26: _ZNK9oceanbase6common9Ob2DArrayIPNS_3sql20ObAggregateProcessor8GroupRowELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS5_Ll64ES6_Lb0EEEE15get_block_countEv:0 + 0: _ZNK9oceanbase6common12ObIArrayWrapIPPNS_3sql20ObAggregateProcessor8GroupRowEE5countEv:0 + 0: 0 + 28: _ZN9oceanbase6common9Ob2DArrayIPNS_3sql20ObAggregateProcessor8GroupRowELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS5_Ll64ES6_Lb0EEEE9new_blockEl:0 + 5: 0 + 7: 0 + 8.1: 0 + 10.1: 0 + 11.1: 0 + 15: 0 + 17: 0 + 6: _ZN9oceanbase6common9Ob2DArrayIPNS_3sql20ObAggregateProcessor8GroupRowELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS5_Ll64ES6_Lb0EEEE11alloc_blockEl:0 + 1: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 10.1: _ZN9oceanbase6common13ObSEArrayImplIPPNS_3sql20ObAggregateProcessor8GroupRowELl64ENS0_19ModulePageAllocatorELb0EE9push_backERKS6_:0 + 5: 0 + 6: 0 + 12: 0 + 15: 0 + 15.1: 0 + 16: 0 + 15.1: _ZN9oceanbase6common9ObClassOpIPPNS_3sql20ObAggregateProcessor8GroupRowELb1EE20construct_and_assignERKS6_RS6_:0 + 2: 0 + 12: _ZN9oceanbase6common9Ob2DArrayIPNS_3sql20ObAggregateProcessor8GroupRowELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS5_Ll64ES6_Lb0EEEE10free_blockES8_:0 + 0: 0 +_ZN9oceanbase3sql8ObDASRef22pick_del_task_to_firstEv:51321:537 + 1: 518 + 2: 518 + 13.1: 518 + 13.3: 518 + 17.1: 517 + 18: 0 + 18.1: 0 + 19: 0 + 20.1: 0 + 23: 517 + 32: 522 + 7: _ZN9oceanbase6common10ObObjStoreIPNS_3sql12ObIDASTaskOpERNS0_12ObIAllocatorELb0EE12get_obj_listEv:5180 + 0: 518 + 8.1: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql12ObIDASTaskOpEEEE9get_firstEv:3626 + 0: 518 +_ZN9oceanbase11transaction11ObTxRedoLog16set_mutator_sizeElb:51282:252 + 1: 241 + 3: 241 + 3.1: 241 + 3.2: 241 + 3.3: 252 + 3.4: 0 + 4: 252 + 4.2: 0 + 6.1: 0 + 10: 252 + 11: 249 + 12: 249 + 14.1: 0 + 16: 249 + 17: 249 + 20: 0 + 22: 249 + 11: _ZNK9oceanbase11transaction13ObCtxRedoInfo18get_serialize_sizeEv:24027 + 0: _ZNK9oceanbase11transaction13ObCtxRedoInfo28get_serialize_size_dispatch_ESt17integral_constantIbLb0EE:24027 + 0: _ZNK9oceanbase11transaction13ObCtxRedoInfo19get_serialize_size_Ev:24027 + 0: 252 + 0.1: 249 + 0.3: 252 _ZNK9oceanbase11transaction17ObTxSerCompatByte15is_object_validEl:260 + 0: _ZNK9oceanbase11transaction17ObTxSerCompatByte18get_serialize_sizeEv:2520 + 0: 252 + 0.1: _ZN9oceanbase6common13serialization14encoded_lengthEm:15360 + 2: _ZN9oceanbase6common13serialization19encoded_length_vi64El:15360 + 4: 240 + 6.1: 240 + 8.1: 240 + 10.1: 240 + 12.1: 240 + 14.1: 0 + 16.1: 0 + 18.1: 0 +_ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE16BucketWLockGuardC2ERKNS_6common10SpinRWLockEm:50955:259 + 1: 249 + 2: 249 + 4: 249 + 5: 0 + 6.1: 0 + 8: 255 + 9.1: 0 + 11: 255 + 15: 255 + 4: _ZN9oceanbase6common8get_itidEv:6972 + 4: 249 + 5: 0 + 6: 0 + 8: 0 + 4.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE15get_thread_nodeEv:6225 + 2: 249 + 2.1: 0 + 2.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE4NodeC2Ev:0 + 0: 0 + 4.2: _ZNK9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE4Node13get_thread_idEv:4731 + 0: 249 + 8: _ZN9oceanbase6common10SpinRWLock6wrlockEl:3984 + 0: 249 _ZN9oceanbase6common7ObLatch6wrlockEjlPKj:253 + 12: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE15get_thread_nodeEv:5355 + 2: 255 + 2.1: 0 + 2.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE4NodeC2Ev:0 + 0: 0 + 12.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE4Node13set_thread_idEl:4845 + 0: 255 +_ZN9oceanbase3sql13AllocOpHelperILi30EE5allocERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputElRPNS0_10ObOperatorE:50916:266 + 3: 251 + 4: 251 + 7: 251 + 8: 251 + 9: 0 + 10.1: 0 + 12.1: 251 + 13: 0 + 14.1: 0 + 16: 251 + 17: 251 _ZN9oceanbase6common16ObArenaAllocator5allocEl:252 + 18: 252 + 19: 0 + 20.1: 0 + 22: 252 + 23: 259 _ZN9oceanbase3sql14ObExprValuesOpC1ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE:270 + 25.1: 259 + 33: 259 + 24: _ZN9oceanbase3sql10ObOperator20set_children_pointerEPPS1_j:10878 + 7: 259 + 8: 259 + 9: 259 + 10: 0 + 12: 259 + 14: 0 + 15: 0 + 17: 259 +_ZN9oceanbase8memtable13ObMemtableCtx27update_max_submitted_seq_noEl:50670:1696 + 1: 1689 + 2: 1689 + 5: 1689 + 3: _ZN9oceanbase11transaction14ObPartTransCtx27update_max_submitted_seq_noEl:20268 + 2: _ZN9oceanbase6common10inc_updateIlEElPT_S2_:20268 + 3: 1689 + 4.1: 1689 + 5: 0 +_ZN9oceanbase11transaction12ObTxLogBlock18finish_mutator_bufERNS0_11ObTxRedoLogERKl:50195:244 + 1: 236 + 2: 236 + 3: 236 + 6.1: 236 + 7: 0 + 8.1: 0 + 9.1: 229 + 10: 0 + 11.1: 0 + 12.1: 229 + 13: 0 + 15.1: 229 + 16.1: 0 + 17.1: 229 + 18.1: 0 + 19.1: 240 _ZNK9oceanbase11transaction11ObTxRedoLog9serializeEPclRl:243 + 20.1: 0 + 22: 240 + 23: 240 + 25: 237 + 4: _ZN9oceanbase11transaction12ObTxLogBlock7get_bufEv:1888 + 3: 236 + 5: _ZN9oceanbase11transaction13ObTxLogHeaderC2ENS0_11ObTxLogTypeE:1888 + 0: 236 + 14: _ZN9oceanbase11transaction11ObTxRedoLog17reset_mutator_bufEv:0 + 2: 0 + 3: 0 + 15.1: _ZN9oceanbase11transaction11ObTxRedoLog16set_mutator_sizeElb:5038 + 3: 229 + 3.1: 229 + 3.4: 229 + 4.2: 229 + 6.1: 0 + 20: 229 + 17.1: _ZNK9oceanbase11transaction13ObTxLogHeader9serializeEPclRl:10076 + 5: 229 + 9: 229 + 7.1: _ZN9oceanbase6common13serialization10encode_i64EPclRll:8015 + 3: 229 + 4: 229 + 5: 229 + 12: 229 +_ZN9oceanbase4palf16LogSlidingWindow26leader_wait_sw_slot_ready_El:49954:267 + 1: 255 + 4: 255 + 8: 1 + 12.1: 254 + 12.2: 247 + 16.1: 1 + 21: 1 + 22: 0 + 24.1: 0 + 26.2: 207 + 26.3: 1 + 6: _ZN9oceanbase4palf16LogSlidingWindow12LogTaskGuardC2EPS1_:4845 + 0: 255 + 8: _ZNK9oceanbase4palf16LogSlidingWindow29leader_can_submit_larger_log_El:6752 + 4: 255 _ZNK9oceanbase4palf16LogSlidingWindow12get_start_idEv:255 + 5: 248 + 14: 0 + 15.1: 0 + 12.1: _ZN9oceanbase4palf16LogSlidingWindow12LogTaskGuard12get_log_taskElRPNS0_7LogTaskE:11600 + 2: 254 + 3: 254 + 5.1: 254 + 7.1: 254 _ZN9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE3getElRPS2_:265 + 9: 247 + 5.1: _ZN9oceanbase4palf15is_valid_log_idEl:762 + 2: 254 + 26.2: _ZN9oceanbase4palf16LogSlidingWindow12LogTaskGuardD2Ev:8930 + 2.1: 1 + 2: _ZN9oceanbase4palf16LogSlidingWindow12LogTaskGuard15revert_log_taskEv:8922 + 1: 247 + 2: 247 + 2.1: 247 + 3: 247 _ZN9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE6revertEl:247 + 4: 1 + 5: 1 + 6.1: 1 + 2.1: _ZN9oceanbase4palf15is_valid_log_idEl:741 + 2: 247 + 5: _ZNK9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE12get_begin_snEv:7 + 0: 1 +_ZNK9oceanbase3sql18ObBasicSessionInfo16get_tx_read_onlyEv:49950:1046 + 1: 999 + 4: 999 + 5: 0 + 8: 999 + 10: 999 + 8: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache16get_tx_read_onlyEv:28971 + 0: 999 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache16get_tx_read_onlyEb:21978 + 0: 999 +_ZN9oceanbase11transaction13ObTxCommitLog16before_serializeEv:49749:238 + 1: 221 + 4: 268 _ZN9oceanbase11transaction17ObTxSerCompatByte4initEl:259 + 5.1: 0 + 7: 268 + 7.1: 268 + 7.2: 268 _ZN9oceanbase11transaction17ObTxSerCompatByte15set_object_flagElb:271 + 7.4: 0 + 8: 0 + 8.1: 256 + 8.2: 0 + 8.4: 0 + 8.6: 0 + 9: 0 + 9.1: 259 + 9.2: 264 _ZN9oceanbase11transaction17ObTxSerCompatByte15set_object_flagElb:259 + 9.4: 0 + 9.6: 0 + 10: 0 + 10.1: 264 + 10.2: 264 _ZN9oceanbase11transaction17ObTxSerCompatByte15set_object_flagElb:264 + 10.4: 0 + 10.6: 0 + 11: 0 + 11.1: 250 + 11.2: 0 + 11.4: 0 + 11.6: 0 + 13: 0 + 13.1: 281 _ZNK9oceanbase4palf3LSN8is_validEv:251 + 13.2: 0 + 13.4: 0 + 13.6: 0 + 14: 0 + 14.1: 258 + 14.2: 267 _ZN9oceanbase11transaction17ObTxSerCompatByte15set_object_flagElb:264 + 14.4: 0 + 16: 267 + 9.1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6ObLSIDEE5emptyEv:1295 + 0: 259 + 10.1: _ZNK9oceanbase6common12ObIArrayWrapINS_11transaction14ObTxBufferNodeEE5emptyEv:1320 + 0: 264 + 14.1: _ZNK9oceanbase6common12ObIArrayWrapINS_11transaction11ObLSLogInfoEE5emptyEv:1290 + 0: 258 +_ZN9oceanbase3sql12ObDMLService14init_del_rtdefERNS0_10ObDMLRtCtxERNS0_10ObDelRtDefERKNS0_10ObDelCtDefE:49646:271 + 3: 251 + 6: 251 + 7: 298 _ZN9oceanbase3sql12ObDMLService18init_das_dml_rtdefERNS0_10ObDMLRtCtxERKNS0_17ObDASDMLBaseCtDefERNS0_17ObDASDMLBaseRtDefEPKNS0_17ObDASTableLocMetaE:267 + 11.1: 0 + 12.1: 298 _ZN9oceanbase3sql12ObDMLService22init_related_das_rtdefERNS0_10ObDMLRtCtxERKNS_6common12ObFixedArrayIPNS0_17ObDASDMLBaseCtDefENS4_12ObIAllocatorEEERNS4_11ObArrayWrapIPNS0_17ObDASDMLBaseRtDefEEE:298 + 13.1: 0 + 14.1: 271 + 15.1: 0 + 17: 271 + 18: 271 + 20: 271 + 5: _ZN9oceanbase3sql10ObDMLRtCtx12get_exec_ctxEv:1757 + 0: _ZN9oceanbase3sql8ObDASRef12get_exec_ctxEv:1757 + 0: 251 + 5.1: _ZN9oceanbase3sql13ObExecContext13set_dml_eventENS_6common14ObDmlEventTypeE:2510 + 0: 251 + 6: _ZN9oceanbase3sql12ObDMLService18get_table_loc_metaINS0_15ObMultiDelCtDefEEEPKNS0_17ObDASTableLocMetaEPKT_:1757 + 3: 251 + 14.1: _ZN9oceanbase3sql12ObDMLService23init_trigger_for_deleteERNS0_10ObDMLRtCtxERKNS0_10ObDelCtDefERNS0_10ObDelRtDefE:6625 + 3: 265 + 4: 265 + 4.1: 265 + 5.2: 0 + 5.4: 0 + 10: 0 +_ZN9oceanbase6common13ObSEArrayImplINS_7storage15ObTableHandleV2ELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:49515:485 + 1: 481 + 4.1: 481 + 4.3: 245 + 5: 226 _ZN9oceanbase7storage15ObTableHandleV2D1Ev:239 + 9: 504 + 11: 0 + 13: 506 + 15: 506 + 24: 506 + 25: 506 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_7storage15ObTableHandleV2ELl1ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase6common13ObSEArrayImplINS_11transaction11ObLSLogInfoELl10ENS0_19ModulePageAllocatorELb0EE7destroyEv:49446:760 + 1: 738 + 4.1: 738 + 4.3: 0 + 9: 738 + 11: 0 + 13: 738 + 15: 738 + 24: 738 + 25: 738 + 5: _ZN9oceanbase11transaction11ObLSLogInfoD2Ev:0 + 0.1: _ZN9oceanbase5share6ObLSIDD2Ev:0 + 0: _ZN9oceanbase5share6ObLSID5resetEv:0 + 0: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction11ObLSLogInfoELl10ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: 0 +_ZN9oceanbase6common16ObBinaryHeapBaseIPNS_3sql22ObInMemoryTopnSortImpl13SortStoredRowENS2_12ObSortOpImpl7CompareELl50EED2Ev:48985:534 + 0: 505 + 0: _ZN9oceanbase6common13ObSEArrayImplIPNS_3sql22ObInMemoryTopnSortImpl13SortStoredRowELl50ENS0_19ModulePageAllocatorELb0EED2Ev:30300 + 1: 505 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplIPNS_3sql22ObInMemoryTopnSortImpl13SortStoredRowELl50ENS0_19ModulePageAllocatorELb0EE7destroyEv:22725 + 9: 505 + 11: 0 + 13: 505 + 15: 505 + 24: 505 + 10: _ZN9oceanbase6common13ObSEArrayImplIPNS_3sql22ObInMemoryTopnSortImpl13SortStoredRowELl50ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase8memtable13ObMemtableKey6encodeERKNS_6common8ObIArrayINS_5share6schema9ObColDescEEEPKNS2_13ObStoreRowkeyE:48882:242 + 2: 228 + 3: 228 + 5: 228 + 6: 0 + 7.1: 0 + 8.1: 228 + 9.1: 0 + 12: 0 + 14.1: 228 + 14.2: 460 + 14.3: 460 + 14.5: 228 + 15: 228 + 16: 228 + 17.1: 228 + 18: 228 + 19.1: 228 + 20.1: 0 + 24: 0 + 25.2: 0 + 26: 228 + 28: 0 + 29.1: 0 + 30.1: 0 + 36: 230 + 38: 230 + 5: _ZNK9oceanbase6common13ObStoreRowkey10is_regularEv:3876 + 0: _ZNK9oceanbase6common8ObRowkey8is_validEv:3876 + 0: 228 + 0.1: 228 + 15: _ZNK9oceanbase6common13ObStoreRowkey11get_obj_ptrEv:684 + 0: _ZNK9oceanbase6common8ObRowkey11get_obj_ptrEv:684 + 0: 228 + 16: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE2atEl:912 + 6: 228 + 17: _ZNK9oceanbase6common5ObObj8get_typeEv:684 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:684 + 0: 228 + 25.1: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:456 + 0: 228 + 29.1: _ZNK9oceanbase6common5ObObj18get_collation_typeEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta18get_collation_typeEv:0 + 0: 0 + 36: _ZN9oceanbase8memtable13ObMemtableKey6encodeEPKNS_6common13ObStoreRowkeyE:690 + 3: 230 +_ZN9oceanbase3sql16ObHashDistinctOp10inner_openEv:48818:285 + 1: 263 + 2: 263 + 3: 263 + 4: 0 + 5.1: 0 + 6.1: 263 + 8.1: 263 + 8.2: 0 + 9: 263 + 9.1: 0 + 9.2: 0 + 12.1: 0 + 14: 266 + 15: 266 + 16: 266 + 20: 266 + 21: 266 + 23: 266 + 24.1: 0 + 24.2: 0 + 24.3: 0 + 26: 0 + 26.3: 0 + 28: 0 + 29: 0 + 31.1: 266 _ZZN9oceanbase3sql16ObHashDistinctOp10inner_openEvENK5$_457clEPKc.ae889f3027d8490103b30de3c389dd2f:282 + 34: 269 + 8.1: _ZN9oceanbase3sql11get_my_specINS0_16ObHashDistinctOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:1052 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:1052 + 0: 263 + 9.1: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:0 + 2: 0 + 15: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:1862 + 2: 266 + 15.1: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:1862 + 0: 266 + 16: _ZN9oceanbase3sql11get_my_specINS0_16ObHashDistinctOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:0 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:0 + 0: 0 +_ZN9oceanbase11transaction14ObTransService24handle_tx_commit_result_ERNS0_8ObTxDescEil:48621:228 + 0: 0 + 2: 0 + 3: 218 + 4: 218 + 5: 218 + 6: 218 + 7: 219 + 18: 0 + 19: 0 + 23: 0 + 24.1: 0 + 27: 0 + 29: 0 + 33: 0 + 34: 0 + 35: 0 + 36: 0 + 42: 232 + 43: 232 + 44: 232 + 48: 0 + 52: 0 + 52.1: 0 + 54: 0 + 55: 0 + 58: 0 + 59: 0 + 62: 0 + 63.1: 0 + 67: 228 + 68: 228 + 69: 228 + 71: 228 + 72: 228 + 73: 0 + 74.1: 0 + 77: 230 _ZN9oceanbase11transaction14ObTransService18tx_post_terminate_ERNS0_8ObTxDescE:232 + 82: 252 + 83.1: 0 + 87.3: 259 + 87.4: 0 + 87.6: 0 + 87.7: 0 + 87.8: 0 + 87.20: 0 + 93: 260 + 19: _ZNK9oceanbase11transaction14ObITimeoutTask13is_registeredEv:0 + 0: 0 + 52: _ZN9oceanbase11transaction16ObTransStatistic12get_instanceEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 69: _ZN9oceanbase6common16ObClockGenerator8getClockEv:4788 + 4: 228 + 5.1: 0 + 8: 228 + 6: _ZN9oceanbase6common16ObClockGenerator6get_usEv:0 + 2: 0 + 72: _ZNK9oceanbase11transaction14ObITimeoutTask13is_registeredEv:1824 + 0: 228 + 87.3: _ZN9oceanbase3lib20is_trace_log_enabledEv:2065 + 2: 252 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:272 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:1813 + 2: 259 + 87.4: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EE9add_eventERb:0 + 2: 0 + 3.1: 0 + 7: 0 + 12: 0 + 13: 0 + 14: 0 + 87.9: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EE12check_unlockEv:0 + 2: 0 + 3: _ZN9oceanbase3lib7ObMutex6unlockEv:0 + 0: 0 + 87.16: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EE10check_lockEv:0 + 2: 0 + 3: _ZN9oceanbase3lib7ObMutex4lockEv:0 + 0: 0 + 87.17: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EE14get_buffer_posEv:0 + 0: 0 + 87.18: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EE10get_bufferEv:0 + 0: 0 +_ZN9oceanbase6common16ObFixedArrayImplINS_5share6schema18ObSchemaObjVersionENS0_12ObIAllocatorEE6assignERKNS0_8ObIArrayIS4_EE:48391:554 + 1: 538 + 2: 538 + 3: 538 + 4: 538 + 5: 538 + 7: 0 + 8.1: 0 + 13.1: 534 + 13.3: 534 + 13.5: 0 + 14: 0 + 14.1: 0 + 15.1: 0 + 19: 534 + 3: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema18ObSchemaObjVersionEE5countEv:2152 + 0: 538 + 11: _ZN9oceanbase6common16ObFixedArrayImplINS_5share6schema18ObSchemaObjVersionENS0_12ObIAllocatorEE5clearEv:6017 + 0: 547 + 14: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema18ObSchemaObjVersionEE2atEl:0 + 6: 0 +_ZN9oceanbase6common17ObAtomicReference21check_and_inc_ref_cntEv:48344:572 + 1: 538 + 2: 538 + 5.1: 0 + 6: 539 + 8: 539 + 10: 539 + 11: 0 + 12.1: 0 + 13.1: 539 + 14: 4 + 16.1: 535 + 19: 0 + 22: 567 +_ZN9oceanbase6common13ObLightyQueue3popERPvl:48321:163 + 1: 146 + 3: 146 + 7: 146 + 8: 146 + 9: 146 + 10: 102 + 10.1: 44 + 11.2: 188 + 11.3: 188 + 12: 175 + 14.1: 188 + 15: 0 + 18: 232 + 23: 232 + 10.1: _ZN9oceanbase6common13ObLightyQueue6get_usEv:357 + 2: 93 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:93 + 11.1: _ZN9oceanbase6common13ObLightyQueue9wait_pushEml:8252 + 3: 175 + 4: 175 + 2: _ZN9oceanbase6common13ObLightyQueue8get_condEm:2678 + 0: 175 + 2.1: _ZN9oceanbase6common13ObLightyQueue12ObLightyCond7get_seqEv:1442 + 0: 175 + 0: _ZN9oceanbase3lib7ObFutex4uvalEv:824 + 0: 175 + 5: _ZN9oceanbase6common13ObLightyQueue8get_condEm:252 + 0: 28 + 5.1: _ZN9oceanbase6common13ObLightyQueue12ObLightyCond4waitEjl:2012 + 2: 28 + 3: 20 + 4: 20 _ZN9oceanbase3lib7ObFutex4waitEil:20 + 5: 152 + 11.2: _ZN9oceanbase6common13ObLightyQueue6get_usEv:160 + 2: 160 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:163 + 14.1: _ZN9oceanbase6common13ObLightyQueue12push_boundedEPvm:3919 + 2: _ZN9oceanbase6common13ObLightyQueue9inc_if_ltEPmm:3235 + 2: 189 + 4.1: 189 + 4.2: 12 + 4.3: 12 + 4: _ZN9oceanbase6common13ObLightyQueue5storeEmPv:252 + 2: 12 + 3.1: 12 + 4: 0 + 2: _ZN9oceanbase6common13ObLightyQueue3idxEm:96 + 0: 12 + 5: _ZN9oceanbase6common13ObLightyQueue8get_condEm:204 + 0: 12 + 5.1: _ZN9oceanbase6common13ObLightyQueue12ObLightyCond6signalEv:180 + 2: 12 + 3: 12 + 4: 0 + 18: _ZN9oceanbase6common13ObLightyQueue5fetchEm:9280 + 3: 232 + 4.1: 232 + 4.2: 232 + 4.3: 232 + 5: 0 + 3: _ZN9oceanbase6common13ObLightyQueue3idxEm:1856 + 0: 232 +_ZN9oceanbase7storage15ObTableHandleV25resetEv:48293:1663 + 1: 1593 + 2: 1593 + 3: 250 + 4.1: 0 + 5: 0 + 7: 256 _ZN9oceanbase7storage8ObITable7dec_refEv:254 + 8: 256 + 9: 0 + 10.1: 256 + 11.1: 0 + 14: 260 + 17: 1558 +_ZN9oceanbase3sql12ObDMLService14init_ins_rtdefERNS0_10ObDMLRtCtxERNS0_10ObInsRtDefERKNS0_10ObInsCtDefERNS_6common8ObIArrayIPNS0_6ObExprEEE:48243:280 + 5: 267 + 8: 267 + 9: 273 _ZN9oceanbase3sql12ObDMLService18init_das_dml_rtdefERNS0_10ObDMLRtCtxERKNS0_17ObDASDMLBaseCtDefERNS0_17ObDASDMLBaseRtDefEPKNS0_17ObDASTableLocMetaE:273 + 13.1: 0 + 14.1: 273 _ZN9oceanbase3sql12ObDMLService22init_related_das_rtdefERNS0_10ObDMLRtCtxERKNS_6common12ObFixedArrayIPNS0_17ObDASDMLBaseCtDefENS4_12ObIAllocatorEEERNS4_11ObArrayWrapIPNS0_17ObDASDMLBaseRtDefEEE:273 + 15.1: 0 + 16.1: 228 + 17.1: 0 + 19: 228 + 20: 228 + 22: 228 + 7: _ZN9oceanbase3sql10ObDMLRtCtx12get_exec_ctxEv:1869 + 0: _ZN9oceanbase3sql8ObDASRef12get_exec_ctxEv:1869 + 0: 267 + 7.1: _ZN9oceanbase3sql13ObExecContext13set_dml_eventENS_6common14ObDmlEventTypeE:2670 + 0: 267 + 8: _ZN9oceanbase3sql12ObDMLService18get_table_loc_metaINS0_15ObMultiInsCtDefEEEPKNS0_17ObDASTableLocMetaEPKT_:1869 + 3: 267 + 16.1: _ZN9oceanbase3sql12ObDMLService23init_trigger_for_insertERNS0_10ObDMLRtCtxERKNS0_10ObInsCtDefERNS0_10ObInsRtDefERNS_6common8ObIArrayIPNS0_6ObExprEEE:5928 + 6: 228 + 7: 228 + 7.1: 228 + 10.1: 0 + 12.1: 0 + 17: 0 + 14: _ZN9oceanbase6common6appendINS0_8ObIArrayIPNS_3sql6ObExprEEENS0_12ObFixedArrayIS5_NS0_12ObIAllocatorEEEEEiRT_RKT0_:0 + 4.1: 0 + 4.3: 0 + 5: 0 + 5.1: 0 + 3: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE5countEv:0 + 0: 0 +_ZN9oceanbase11transaction8ObTxDesc17execute_commit_cbEv:48238:251 + 1: 249 + 2: 249 + 6: 249 + 7: 249 + 9: 249 + 10: 249 + 10.1: 249 _ZN9oceanbase11transaction8ObTxDesc27acq_commit_cb_lock_if_need_Ev:261 + 10.2: 254 + 11: 254 + 12: 254 + 13: 254 + 14: 254 + 17.4: 212 + 17.5: 0 + 17.6: 0 + 17.12: 0 + 17.14: 0 + 17.15: 0 + 17.16: 0 + 17.17: 0 + 17.19: 0 + 17.22: 0 + 17.23: 0 + 21: 212 _ZN9oceanbase3sql23ObEndTransAsyncCallback8callbackEi:213 + 25.1: 237 _ZZN9oceanbase11transaction8ObTxDesc17execute_commit_cbEvENK6$_1040clEPKc.6c6f3ed9193054173c335adef4549614:243 + 27.6: 242 + 17.3: _ZN9oceanbase3lib20is_trace_log_enabledEv:1738 + 2: 254 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:256 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:1484 + 2: 212 + 17.7: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:0 + 0: 0 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 17.9: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:0 + 0: 0 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 17.10: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EE10check_lockEv:0 + 2: 0 + 3: _ZN9oceanbase3lib7ObMutex4lockEv:0 + 0: 0 + 17.11: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EE14get_buffer_posEv:0 + 0: 0 + 17.12: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EE10get_bufferEv:0 + 0: 0 + 17.14: _ZNK9oceanbase11transaction15ObTransHashLinkINS0_8ObTxDescEE7get_refEv:0 + 0: 0 + 17.15: _Z9ob_gettidv:0 + 3: 0 + 4: 0 + 2: _Z13get_tid_cachev:0 + 7: 0 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 + 17.24: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EE12check_unlockEv:0 + 2: 0 + 3: _ZN9oceanbase3lib7ObMutex6unlockEv:0 + 0: 0 + 23: _ZN9oceanbase6common10ObSpinLock6unlockEv:2088 + 2: 261 _ZN9oceanbase6common12ObLatchMutex6unlockEv:263 +_ZN9oceanbase11transaction12ObTxLogBlock4initElRKNS0_18ObTxLogBlockHeaderE:47972:530 + 1: 488 + 2: 488 + 3: 488 + 3.1: 501 + 4: 0 + 5.1: 0 + 6.1: 523 _ZN9oceanbase11transaction14ClogBufFactory5allocEv:530 + 7: 1 + 8.1: 1 + 10: 523 + 12: 523 _ZN9oceanbase11transaction12ObTxLogBlock27serialize_log_block_header_ElRKNS0_18ObTxLogBlockHeaderE:547 + 13: 1 + 14.1: 1 + 17: 503 +_ZN9oceanbase11transaction9tablelock12ObLockMemCtx17get_lock_memtableERPNS1_14ObLockMemtableE:47894:752 + 1: 694 + 2: 694 + 3: 731 _ZNK9oceanbase7storage15ObTableHandleV28is_validEv:713 + 4: 0 + 5.1: 0 + 6.1: 731 _ZN9oceanbase7storage15ObTableHandleV217get_lock_memtableERPNS_11transaction9tablelock14ObLockMemtableE:731 + 7.1: 0 + 9: 675 +_ZNK9oceanbase7storage15ObRelativeTable12get_table_idEv:47838:2906 + 1: 2814 + 2: 2814 + 2: _ZNK9oceanbase5share6schema18ObTableSchemaParam12get_table_idEv:11256 + 0: 2814 +_ZN9oceanbase6common13ObSEArrayImplINS_11transaction8ObTxPartELl4ENS0_19ModulePageAllocatorELb0EEixEl:47790:1074 + 1: 1062 + 2: 1062 + 2.1: 1062 + 2.2: 1062 + 3.1: 0 + 5: 1062 +_ZNK9oceanbase7storage13ObLSTxService10get_tx_ctxERKNS_11transaction9ObTransIDEbRPNS2_14ObPartTransCtxE:47737:1286 + 3: 1233 + 4: 1233 + 5: 1233 + 6: 0 + 7.1: 0 + 9: 1233 _ZN9oceanbase11transaction12ObLSTxCtxMgr10get_tx_ctxERKNS0_9ObTransIDEbRPNS0_14ObPartTransCtxE:1310 + 11: 1198 +_ZN9oceanbase4palf14LogGroupBuffer4waitERKNS0_3LSNEl:47528:266 + 1: 266 + 2: 266 + 3: 266 _ZN9oceanbase4palfplERKNS0_3LSNEm:283 + 4: 285 _ZN9oceanbase4palf3LSNC1Ev:297 + 4.1: 295 _ZN9oceanbase4palf3LSNC1Ev:304 + 8: 265 + 9: 0 + 10.1: 265 _ZNK9oceanbase4palf3LSN8is_validEv:280 + 10.2: 272 + 11: 0 + 12.1: 0 + 13.1: 272 _ZNK9oceanbase4palf3LSNltERKS1_:274 + 13.2: 277 + 14: 0 + 15.1: 0 + 16.1: 275 _ZN9oceanbase4palfplERKNS0_3LSNEm:279 + 16.2: 274 _ZNK9oceanbase4palf3LSNgtERKS1_:276 + 16.3: 267 + 17: 0 + 18.1: 0 + 22: 268 + 23.9: 268 + 5: _ZNK9oceanbase4palf14LogGroupBuffer21get_buffer_start_lsn_ERNS0_3LSNE:5227 + 2: 299 _ZN9oceanbase4palf3LSNC1Em:321 + 2.4: 315 _ZN9oceanbase4palf3LSNaSERKS1_:330 + 6: _ZNK9oceanbase4palf14LogGroupBuffer14get_reuse_lsn_ERNS0_3LSNE:5472 + 2: 320 _ZN9oceanbase4palf3LSNC1Em:337 + 2.4: 288 _ZN9oceanbase4palf3LSNaSERKS1_:299 + 7: _ZNK9oceanbase4palf14LogGroupBuffer25get_available_buffer_sizeEv:1060 + 3: 265 +_ZN9oceanbase11transaction11ObTraceInfo5resetEv:47524:541 + 1: 488 + 2: 488 + 4: 483 + 14: 483 + 3: _ZN9oceanbase6common8ObString3ptrEv:3416 + 0: 488 + 6: _ZN9oceanbase6common7ob_freeEPv:0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 9: _ZN9oceanbase6common8ObString13assign_bufferEPci:0 + 2: 0 + 3: 0 + 11: _ZN9oceanbase6common8ObString10set_lengthEi:8211 + 2: 483 + 2.1: 483 + 3: 483 + 13: _ZN9oceanbase6common8ObString10set_lengthEi:14007 + 2: 483 + 2.1: 483 + 3: 483 +_ZN9oceanbase11transaction14ObPartTransCtx31wait_gts_elapse_commit_version_ERb:47369:249 + 1: 247 + 2: 247 + 3: 247 + 6: 234 + 8: 234 _ZNK9oceanbase11transaction11ObCtxTxData18get_commit_versionEv:246 + 8.1: 269 _ZThn72_N9oceanbase11transaction7ObTsMgr15wait_gts_elapseEmlPNS0_10ObTsCbTaskERb:269 + 8.2: 267 + 12.1: 0 + 13.1: 267 + 14: 0 + 16.1: 0 + 19: 0 + 20.1: 0 + 21.1: 0 + 21.4: 0 + 21.5: 0 + 21.6: 0 + 21.10: 0 + 21.11: 0 + 21.12: 0 + 21.15: 0 + 21.16: 0 + 21.17: 0 + 21.18: 0 + 21.20: 0 + 21.21: 0 + 21.22: 0 + 23.1: 273 + 24.1: 0 + 27: 273 + 28.8: 273 _ZN9oceanbase6common11ObTimeGuardD2Ev:289 + 4: _ZN9oceanbase6common11ObTimeGuardC2EPKcl:11497 + 2: 250 + 3: 250 + 4: 250 + 6: 250 + 7: 250 + 8: 250 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:247 + 2: 247 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:251 + 6: _ZN9oceanbase11transaction14ObTransService10get_ts_mgrEv:1638 + 0: 234 + 15: _ZN9oceanbase11transaction12ObTxSubState15set_gts_waitingEv:0 + 1: 0 + 16: _ZN9oceanbase11transaction10ObTransCtx16acquire_ctx_ref_Ev:0 + 2: 0 + 2: _ZN9oceanbase11transaction15ObTransHashLinkINS0_10ObTransCtxEE7inc_refEi:0 + 2: 0 + 3.1: 0 + 5: 0 + 21.3: _ZN9oceanbase3lib20is_trace_log_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:0 + 2: 0 + 21.7: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:0 + 0: 0 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 21.9: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:0 + 0: 0 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 21.10: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EE10check_lockEv:0 + 2: 0 + 3: _ZN9oceanbase3lib7ObMutex4lockEv:0 + 0: 0 + 21.12: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EE10get_bufferEv:0 + 0: 0 + 21.13: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EE14get_buffer_posEv:0 + 0: 0 + 21.14: _ZNK9oceanbase11transaction15ObTransHashLinkINS0_10ObTransCtxEE7get_refEv:0 + 0: 0 + 21.22: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EE12check_unlockEv:0 + 2: 0 + 3: _ZN9oceanbase3lib7ObMutex6unlockEv:0 + 0: 0 + 23: _ZNK9oceanbase6common11ObTimeGuard8get_diffEv:2168 + 2: 273 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:257 + 2: 257 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:281 + 28.9: _ZN9oceanbase6common11ObTimeGuardD2Ev:0 + 2.1: 0 + 3.1: 0 + 2: _ZNK9oceanbase6common11ObTimeGuard8get_diffEv:0 + 2: 0 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 +_ZZN9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE3getElRPS2_ENKUlPKcE0_clES7_:47338:647 + 0: 658 + 0.1: 0 + 0.2: 658 + 0.3: 646 _ZN9oceanbase6common8ObLogger13need_to_printEmi:674 + 0.7: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:10982 + 2: 646 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE22for_each_in_one_bucketINS0_39IteratePartCtxAskSchedulerStatusFunctorEEEiRT_l:46838:190 + 1: 181 + 2: 181 + 3: 181 + 4: 0 + 7: 155 _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE19generate_value_arr_ElRNS_6common9ObSEArrayIPS3_Ll32ENS6_19ModulePageAllocatorELb0EEE:179 + 7.1: 174 + 8.1: 0 + 11.1: 174 + 12: 2 + 12.2: 2 + 15.1: 0 + 15.2: 0 + 16.1: 0 + 22: 171 + 6: _ZN9oceanbase6common9ObSEArrayIPNS_11transaction10ObTransCtxELl32ENS0_19ModulePageAllocatorELb0EEC2Ev:25575 + 0.1: 155 + 0.5: _ZN9oceanbase6common13ObSEArrayImplIPNS_11transaction10ObTransCtxELl32ENS0_19ModulePageAllocatorELb0EEC2ElRKS5_:21700 + 2: 155 + 5: 155 + 6: 155 + 8: 155 + 17.1: 155 + 2: _ZN9oceanbase6common8ObIArrayIPNS_11transaction10ObTransCtxEEC2EPS4_l:2790 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_11transaction10ObTransCtxEEC2EPS4_l:2790 + 0: 155 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:8835 + 0: 155 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:2945 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:2945 + 2: 155 + 8: 155 + 10: _ZNK9oceanbase6common12ObIArrayWrapIPNS_11transaction10ObTransCtxEE5countEv:1218 + 0: 174 + 12.1: _ZN9oceanbase6common12ObIArrayWrapIPNS_11transaction10ObTransCtxEE2atEl:42 + 6: 2 + 257: 2 + 12.2: _ZN9oceanbase11transaction39IteratePartCtxAskSchedulerStatusFunctorclEPNS0_10ObTransCtxE:104 + 0: 2 + 0.1: 2 __dynamic_cast:2 + 0.3: 2 + 0.7: _ZN9oceanbase11transaction39IteratePartCtxAskSchedulerStatusFunctor17internal_operatorERKNS0_9ObTransIDEPNS0_14ObPartTransCtxE:44 + 2: 2 + 4: 2 + 4.2: 2 + 5: 0 + 6.1: 0 + 7.1: 2 _ZN9oceanbase11transaction14ObPartTransCtx22check_scheduler_statusEv:2 + 8.1: 0 + 15: _ZN9oceanbase6common12ObIArrayWrapIPNS_11transaction10ObTransCtxEE2atEl:0 + 6: 0 + 15.1: _ZN9oceanbase11transaction15ObTransHashLinkINS0_10ObTransCtxEE7dec_refEi:0 + 2: 0 + 3: 0 + 4.1: 0 + 16: _ZN9oceanbase6common12ObIArrayWrapIPNS_11transaction10ObTransCtxEE2atEl:0 + 6: 0 + 16.1: _ZN9oceanbase11transaction13TransCtxAlloc10free_valueEPNS0_10ObTransCtxE:0 + 2: 0 + 3: 0 + 21: _ZN9oceanbase6common13ObSEArrayImplIPNS_11transaction10ObTransCtxELl32ENS0_19ModulePageAllocatorELb0EED2Ev:6192 + 1: 172 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplIPNS_11transaction10ObTransCtxELl32ENS0_19ModulePageAllocatorELb0EE7destroyEv:3096 + 9: 172 + 11: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplIPNS_11transaction10ObTransCtxELl32ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 21.1: _ZN9oceanbase6common13ObSEArrayImplIPNS_11transaction10ObTransCtxELl32ENS0_19ModulePageAllocatorELb0EED2Ev:0 + 1: 0 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplIPNS_11transaction10ObTransCtxELl32ENS0_19ModulePageAllocatorELb0EE7destroyEv:0 + 9: 0 + 11: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplIPNS_11transaction10ObTransCtxELl32ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase5share22ObAutoincrementService12get_instanceEv:46770:1617 + 1: 1559 + 2: 1559 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 3: 1559 +_ZN9oceanbase5share11ObQSyncLock6wrlockEv:46665:0 + 1: 0 + 3: 0 + 4: 0 + 8: 0 + 13: 2 + 7.1: _ZN9oceanbase6common7ObQSync8try_syncEv:46613 + 3.1: 1553 + 3.3: 1553 + 6: 1554 +_ZN9oceanbase3sql23ObEndTransCbPacketParamaSERKS1_:46526:298 + 1: 283 + 2: 283 + 3: 257 + 4: 257 + 5: 257 + 7: 257 + 8: 257 + 6: _ZN9oceanbase6common12ObCurTraceId7TraceId3setERKS2_:20560 + 2: 257 + 3: 257 + 4: 257 + 5: 257 + 6: _ZN9oceanbase6common12ObCurTraceId7TraceId16check_ipv6_validEv:5397 + 1: 257 + 2: 0 + 2.1: 0 +_ZN9oceanbase6common17get_resource_poolINS_11transaction6LogBufILl1965056EEEXadL_ZNS0_8ObModIds17OB_TRANS_CLOG_BUFEEEEERNS0_14ObResourcePoolIT_NS0_10RPStrLabelIXT0_EEEEEv:46170:1061 + 1: 1026 + 2: 1026 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 4: 1026 + 5.1: 0 + 7: 0 + 9: 1026 +_ZN9oceanbase3sql17ObExprStrResAlloc5allocEl:45980:489 + 1: 484 + 2: 484 + 3: 484 + 4: 484 + 5: 484 + 7: 484 + 2: _ZNK9oceanbase3sql6ObExpr15get_str_res_memERNS0_9ObEvalCtxEl:20812 + 2: _ZNK9oceanbase3sql6ObExpr13get_datum_idxERNS0_9ObEvalCtxE:5324 + 2: 484 + 2: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:1936 + 0: 484 + 2.1: _ZNK9oceanbase3sql6ObExpr15get_str_res_memERNS0_9ObEvalCtxEll:15488 + 2: 484 + 3: 484 + 4: 0 +_ZNK9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE7get_objEv:45900:4712 + 1: 4590 + 2: 4590 +_ZNK9oceanbase11transaction8ObTxDesc13get_expire_tsEv:45885:1360 + 1: 1311 + 7: 1311 + 7.3: 1311 + 8: 0 + 8: _ZN9oceanbase6common16ObClockGenerator8getClockEv:0 + 4: 0 + 5.1: 0 + 8: 0 + 6: _ZN9oceanbase6common16ObClockGenerator6get_usEv:0 + 2: 0 +_ZZN9oceanbase4palf14LogGroupBuffer4fillERKNS0_3LSNEPKclENK5$_605clES6_.1598dc2348996c1ae1caea6120522988:45800:557 + 0: 560 + 0.1: 0 + 0.2: 560 + 0.3: 540 _ZN9oceanbase6common8ObLogger13need_to_printEmi:568 + 0.17: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:9180 + 2: 540 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS_4palf3LSNELb0EEC2EPKcS5_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.12: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.14: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.15: _ZN9oceanbase6common7ObLogKVIlLb1EEC2EPKcOKl:0 + 0: 0 + 0.16: _ZN9oceanbase6common7ObLogKVIPKvLb1EEC2EPKcOKS3_:0 + 0: 0 +_ZN9oceanbase6common11ObObjCaster7to_typeENS0_9ObObjTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS5_:45789:249 + 4: 241 + 7: 0 + 8: 241 + 10: 0 + 11.1: 241 + 11.2: 244 + 12: 241 + 12.1: 241 + 14: 244 + 15.1: 244 + 15.2: 244 + 17: 244 + 20: 0 + 20.1: 0 + 23: 0 + 23.3: 0 + 26: 0 + 27: 0 + 30.1: 0 + 31: 0 + 37: 244 + 6: _ZNK9oceanbase6common5ObObj8get_typeEv:4097 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:4097 + 0: 241 + 7: _ZN9oceanbase6common17ob_is_string_typeENS0_9ObObjTypeE:6266 + 0: 241 + 0: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:1205 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:1205 + 2: 241 + 0.1: _ZN9oceanbase6common13ob_is_text_tcENS0_9ObObjTypeE:0 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:0 + 2: 0 + 11.1: _ZNK9oceanbase6common5ObObj18get_collation_typeEv:964 + 0: _ZNK9oceanbase6common9ObObjMeta18get_collation_typeEv:964 + 0: 241 + 18.1: _ZN9oceanbase6common9ObObjMeta15set_type_simpleERKNS0_9ObObjTypeE:976 + 2: 244 + 20: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 20.1: _ZNK9oceanbase6common5ObObj17is_character_typeEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta17is_character_typeEv:0 + 0: 0 + 0: _ZNK9oceanbase6common9ObObjMeta10is_nstringEv:0 + 0: 0 + 0.1: _ZNK9oceanbase6common9ObObjMeta18is_varchar_or_charEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta10is_varcharEv:0 + 2: 0 + 23: _ZN9oceanbase6common18ob_is_nstring_typeENS0_9ObObjTypeE:0 + 2: 0 +_ZN9oceanbase11transaction11ObTxDescMgr3addERNS0_8ObTxDescE:45670:285 + 1: 233 + 2: 233 + 4.1: 233 + 4.2: 4 + 4.3: 4 + 5: 4 + 5.1: 233 + 5.2: 4 + 5.3: 4 + 5.6: 4 + 6: 4 + 6.3: 233 + 6.4: 0 + 6.5: 0 + 6.8: 0 + 7.1: 0 + 7.3: 247 + 7.5: 4 + 9: 4 + 10.2: 247 + 10.3: 302 + 10.5: 4 + 12: 4 + 12.2: 4 + 15.1: 302 _ZZN9oceanbase11transaction11ObTxDescMgr3addERNS0_8ObTxDescEENK6$_1077clEPKc.6c6f3ed9193054173c335adef4549614:298 + 16: 294 + 17.6: 294 + 3: _ZN9oceanbase11transaction9ObTransIDC2Ev:1864 + 0: 233 + 6.2: _ZNK9oceanbase11transaction9ObTransID8is_validEv:1864 + 0: 233 + 7.2: _ZNKSt8functionIFiRN9oceanbase11transaction9ObTransIDEEEclES3_:6026 + 2: 231 + 3: 4 + 4: 231 + 4.1: 231 _ZNSt17_Function_handlerIFiRN9oceanbase11transaction9ObTransIDEESt5_BindIFSt7_Mem_fnIMNS1_14ObTransServiceEFiS3_EEPS7_St12_PlaceholderILi1EEEEE9_M_invokeERKSt9_Any_dataS3_:239 + 2: _ZNKSt14_Function_base8_M_emptyEv:1848 + 0: 231 + 9.1: _ZN9oceanbase11transaction8ObTxDesc9set_tx_idERKNS0_9ObTransIDE:2717 + 0: _ZN9oceanbase11transaction9ObTransIDaSERKS1_:2717 + 1: 247 + 10.2: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocEE6insertERKS2_PS3_:3709 + 1: 247 _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocEE8insert__ERKS2_PS3_iPS9_:249 + 12.1: _ZNK9oceanbase11transaction9ObTransID8is_validEv:20 + 0: 4 + 13: _ZN9oceanbase11transaction8ObTxDesc11reset_tx_idEv:52 + 0: _ZN9oceanbase11transaction9ObTransID5resetEv:52 + 0: 4 +easy_buf_set_cleanup:45630:5078 + 2: 5070 + 3: 5070 + 4: 5070 +_ZN9oceanbase3sql11ObDASLockOpD2Ev:45517:151 + 0: 146 + 0: _ZN9oceanbase3sql16ObDASWriteBufferD2Ev:1606 + 2: 146 + 3: 0 + 4: 0 + 0.1: _ZN9oceanbase3sql12ObIDASTaskOpD2Ev:40553 + 0: 161 + 0.5: 161 _ZN9oceanbase11transaction14ObTxExecResultD1Ev:166 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS0_10ObTabletIDENS0_12ObIAllocatorEED2Ev:11453 + 0: 145 + 0.3: 0 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS0_10ObTabletIDENS0_12ObIAllocatorEE7destroyEv:8843 + 2: 145 + 5: 145 + 6.1: 0 + 6.3: 0 + 7: 0 + 9: 0 + 10: 0 + 12: 154 + 13: 154 + 15: 154 + 7: _ZN9oceanbase6common10ObTabletIDD2Ev:0 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:0 + 0: 0 + 0.1: _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql14ObDASBaseRtDefENS0_12ObIAllocatorEED2Ev:11178 + 0: 154 + 0.3: 0 + 0: _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql14ObDASBaseRtDefENS0_12ObIAllocatorEE7destroyEv:8406 + 2: 154 + 5: 154 + 9: 0 + 10: 0 + 12: 152 + 13: 152 + 15: 152 + 0.2: _ZN9oceanbase6common16ObFixedArrayImplIPKNS_3sql14ObDASBaseCtDefENS0_12ObIAllocatorEED2Ev:11384 + 0: 152 + 0.3: 0 + 0: _ZN9oceanbase6common16ObFixedArrayImplIPKNS_3sql14ObDASBaseCtDefENS0_12ObIAllocatorEE7destroyEv:8648 + 2: 152 + 5: 152 + 9: 0 + 10: 0 + 12: 161 + 13: 161 + 15: 161 + 0.4: _ZN9oceanbase6common10ObTabletIDD2Ev:2254 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:2254 + 0: 161 +_ZN9oceanbase7obmysql7OMPKEOFD2Ev:45390:7774 + 1: 7565 +_ZN9oceanbase7obmysql7OMPKEOFD1Ev:45390:7774 + 1: 7565 +_ZN9oceanbase6common13ObSEArrayImplIlLl8ENS0_19ModulePageAllocatorELb0EED2Ev:45372:648 + 1: 597 + 3: 597 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplIlLl8ENS0_19ModulePageAllocatorELb0EE7destroyEv:23283 + 9: 597 + 11: 0 + 13: 597 + 15: 597 + 24: 597 + 10: _ZN9oceanbase6common13ObSEArrayImplIlLl8ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase8memtable16ObITransCallback10set_log_tsEl:45344:1779 + 1: 1744 + 2: 1744 + 3: 1744 + 5: 1744 +_ZN9oceanbase5share16ObServerLocalityC2Ev:45291:510 + 1: 487 + 3: 487 + 6: 487 + 9: 487 + 11: 487 + 12: 487 + 13: 487 + 4: _ZN9oceanbase6common6ObAddrC2Ev:10714 + 1: 487 + 7: _ZN9oceanbase6common19ObFixedLengthStringILl128EEC2Ev:3409 + 3: 487 + 8: _ZN9oceanbase6common19ObFixedLengthStringILl128EEC2Ev:3409 + 3: 487 +_ZN9oceanbase5share16ObServerLocalityC1Ev:45291:510 + 1: 487 + 3: 487 + 6: 487 + 9: 487 + 11: 487 + 12: 487 + 13: 487 + 4: _ZN9oceanbase6common6ObAddrC2Ev:10714 + 1: 487 + 7: _ZN9oceanbase6common19ObFixedLengthStringILl128EEC2Ev:3409 + 3: 487 + 8: _ZN9oceanbase6common19ObFixedLengthStringILl128EEC2Ev:3409 + 3: 487 +_ZN9oceanbase8keybtree9BtreeNode4copyERS1_iii:45273:47 + 1: 46 + 2: 46 + 3.1: 208 + 4: 140 + 5: 205 + 9: 36 + 13.1: 42 + 4: _ZN9oceanbase8keybtree9BtreeNode7get_keyEiPNS0_11MultibitSetE:11297 + 2: 140 + 2: _ZNK9oceanbase8keybtree9BtreeNode12get_real_posEiPNS0_11MultibitSetE:10737 + 2: 213 + 3.3: 140 + 2: _ZNK9oceanbase8keybtree9BtreeNode7is_leafEv:1065 + 0: 213 + 3.2: _ZNK9oceanbase8keybtree11MultibitSet2atEi:8960 + 5: 140 + 5.2: 140 + 5.3: 0 + 7: 140 + 4: _ZN9oceanbase8keybtree11MultibitSet4loadERKS1_:560 + 0: 140 + 4.1: _ZN9oceanbase8keybtree9BtreeNode13set_key_valueEiNS_8memtable20ObStoreRowkeyWrapperEPNS2_9ObMvccRowE:1845 + 2: 205 + 3: 205 + 4.4: _ZNK9oceanbase8keybtree9BtreeNode16get_val_with_tagEiPNS0_11MultibitSetE:9075 + 2: 205 + 65520.3: 129 + 2: _ZNK9oceanbase8keybtree9BtreeNode12get_real_posEiPNS0_11MultibitSetE:4581 + 2: 140 + 3.3: 129 + 2: _ZNK9oceanbase8keybtree9BtreeNode7is_leafEv:700 + 0: 140 + 3.2: _ZNK9oceanbase8keybtree11MultibitSet2atEi:3354 + 5: 129 + 5.2: 129 + 5.3: 0 + 7: 129 + 4: _ZN9oceanbase8keybtree11MultibitSet4loadERKS1_:516 + 0: 129 + 5: _ZNK9oceanbase8keybtree9BtreeNode7is_leafEv:1845 + 0: 205 + 6: _ZN9oceanbase8keybtree11MultibitSet13unsafe_insertEih:8385 + 0: 129 + 0: _ZN9oceanbase8keybtree11MultibitSet10cal_index_ERS1_ih:7740 + 3: 129 + 4: 129 + 5: 129 + 9: _ZNK9oceanbase8keybtree9BtreeNode7is_leafEv:144 + 0: 36 + 10: _ZN9oceanbase8keybtree11MultibitSet9inc_countEs:308 + 0: 14 +_ZN9oceanbase8memtable18ObTransCallbackMgr11RDLockGuardC2ERKNS_6common10SpinRWLockE:45229:513 + 3: 507 + 5: 518 + 5.2: 0 + 5.3: 0 + 1: _ZN9oceanbase6common17ObSimpleTimeGuardC2El:7367 + 2: 490 + 3: 490 + 4: 0 + 5: 0 + 2: _ZN9oceanbase3lib20is_trace_log_enabledEv:4427 + 2: 507 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:520 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:3920 + 2: 490 + 4: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 2: _ZN9oceanbase6common14SpinRLockGuardC2ERKNS0_10SpinRWLockE:18354 + 1: 490 + 3: 518 + 4.1: 0 + 3: _ZN9oceanbase6common10SpinRWLock6rdlockEl:8330 + 0: 490 _ZN9oceanbase6common7ObLatch6rdlockEjl:507 + 4: _ZN9oceanbase6common17ObSimpleTimeGuard5clickEv:3626 + 2: 518 + 3: 0 + 4.1: 0 + 3: _ZNK9oceanbase6common17ObSimpleTimeGuard8get_diffEv:0 + 2.1: 0 + 2.1: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 +_ZN9oceanbase8memtable18ObTransCallbackMgr11RDLockGuardC1ERKNS_6common10SpinRWLockE:45229:513 + 3: 507 + 5: 518 + 5.2: 0 + 5.3: 0 + 1: _ZN9oceanbase6common17ObSimpleTimeGuardC2El:7367 + 2: 490 + 3: 490 + 4: 0 + 5: 0 + 2: _ZN9oceanbase3lib20is_trace_log_enabledEv:4427 + 2: 507 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:520 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:3920 + 2: 490 + 4: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 2: _ZN9oceanbase6common14SpinRLockGuardC2ERKNS0_10SpinRWLockE:18354 + 1: 490 + 3: 518 + 4.1: 0 + 3: _ZN9oceanbase6common10SpinRWLock6rdlockEl:8330 + 0: 490 _ZN9oceanbase6common7ObLatch6rdlockEjl:507 + 4: _ZN9oceanbase6common17ObSimpleTimeGuard5clickEv:3626 + 2: 518 + 3: 0 + 4.1: 0 + 3: _ZNK9oceanbase6common17ObSimpleTimeGuard8get_diffEv:0 + 2.1: 0 + 2.1: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 +_ZN9oceanbase11transaction8ObTxPartD2Ev:45150:1403 + 1: 1290 + 2: 1290 + 6: 1290 + 8: 1290 + 8: _ZN9oceanbase5share6ObLSIDD2Ev:9030 + 0: _ZN9oceanbase5share6ObLSID5resetEv:9030 + 0: 1290 +_ZN9oceanbase11transaction8ObTxPartD1Ev:45150:1403 + 1: 1290 + 2: 1290 + 6: 1290 + 8: 1290 + 8: _ZN9oceanbase5share6ObLSIDD2Ev:9030 + 0: _ZN9oceanbase5share6ObLSID5resetEv:9030 + 0: 1290 +_ZN9oceanbase3sql24ObTenantSqlMemoryManager18get_work_area_sizeEPNS_6common12ObIAllocatorERNS0_20ObSqlWorkAreaProfileE:45135:809 + 3: 809 + 4: 809 + 7.1: 0 + 9.1: 0 + 10: 0 + 11: 0 + 12: 0 + 13.1: 0 + 16.1: 0 + 20: 0 + 21.1: 4 + 22.1: 4 + 25: 880 + 5: _ZNK9oceanbase3sql20ObSqlWorkAreaProfile13is_registeredEv:9990 + 0: 809 + 1: 809 + 1.1: 856 + 8: _ZNK9oceanbase3sql20ObSqlWorkAreaProfile14get_cache_sizeEv:0 + 0: 0 + 8.1: _ZN9oceanbase3sql24ObTenantSqlMemoryManager8increaseEl:0 + 1: 0 + 1.1: 0 + 10: _ZN9oceanbase3sql24ObTenantSqlMemoryManager22need_manual_calc_boundEv:0 + 3: 0 + 7: 0 + 10: 0 + 11: 0 + 7: _ZN9oceanbase3sql24ObTenantSqlMemoryManager20need_manual_by_driftEv:0 + 2: 0 + 2.1: 0 + 3.1: 0 + 3.2: 0 + 15: _ZN9oceanbase3sql20ObSqlWorkAreaProfile14inc_calc_countEv:0 + 0: 0 + 21.1: _ZN9oceanbase3sql24ObTenantSqlMemoryManager21get_global_bound_sizeEv:0 + 0: 0 + 21.2: _ZN9oceanbase3sql24ObTenantSqlMemoryManager30calc_work_area_size_by_profileElRNS0_20ObSqlWorkAreaProfileE:172 + 5: 0 + 6: 0 + 9.1: 0 + 11.1: 0 + 18: 0 + 21.1: 0 + 24.1: 0 + 31.1: 4 + 5: _ZNK9oceanbase3sql20ObSqlWorkAreaProfile15is_hash_join_waEv:0 + 0: 0 + 6: _ZNK9oceanbase3sql20ObSqlWorkAreaProfile14get_cache_sizeEv:0 + 0: 0 + 8.1: _ZN9oceanbase3sql20ObSqlWorkAreaProfile15set_expect_sizeEl:0 + 2: 0 + 11.1: _ZNK9oceanbase3sql20ObSqlWorkAreaProfile12get_min_sizeEv:0 + 0: 0 + 13.1: _ZN9oceanbase3sql20ObSqlWorkAreaProfile15set_expect_sizeEl:0 + 2: 0 + 18: _ZNK9oceanbase3sql20ObSqlWorkAreaProfile14get_cache_sizeEv:0 + 0: 0 + 20.1: _ZN9oceanbase3sql20ObSqlWorkAreaProfile15set_expect_sizeEl:0 + 2: 0 + 21.1: _ZNK9oceanbase3sql20ObSqlWorkAreaProfile17get_one_pass_sizeEv:0 + 0: 0 + 24.1: _ZNK9oceanbase3sql20ObSqlWorkAreaProfile12get_min_sizeEv:0 + 0: 0 + 27: _ZN9oceanbase3sql20ObSqlWorkAreaProfile15set_expect_sizeEl:24 + 2: 4 + 33: _ZN9oceanbase3sql20ObSqlWorkAreaProfile21set_global_bound_sizeEl:16 + 1: 4 + 34: _ZNK9oceanbase3sql20ObSqlWorkAreaProfile14get_cache_sizeEv:16 + 0: 4 + 34.1: _ZN9oceanbase6common3minEll:28 + 2: 4 + 34.2: _ZN9oceanbase3sql20ObSqlWorkAreaProfile13set_max_boundEl:44 + 0: 4 +_ZNK9oceanbase4palf3LSN8is_validEv:44967:3599 + 1: 3459 + 2: 3459 +_ZNK9oceanbase11transaction12ObTxMDSCache7copy_toERNS_6common9ObSEArrayINS0_14ObTxBufferNodeELl1ENS2_19ModulePageAllocatorELb0EEE:44910:779 + 1: 734 + 2: 734 + 4: 734 + 5.1: 734 + 5.2: 1 + 6: 1 + 7.1: 1 + 11: 734 + 5.4: _ZN9oceanbase6common4list13ConstIteratorINS0_6ObListINS_11transaction14ObTxBufferNodeENS4_24TransModulePageAllocatorEEEEppEi:4 + 2: _ZN9oceanbase6common4list13ConstIteratorINS0_6ObListINS_11transaction14ObTxBufferNodeENS4_24TransModulePageAllocatorEEEEC2ERKS8_:4 + 2: _ZN9oceanbase6common4list13ConstIteratorINS0_6ObListINS_11transaction14ObTxBufferNodeENS4_24TransModulePageAllocatorEEEEaSERKS8_:4 + 2: 1 + 5.5: _ZNK9oceanbase6common4list13ConstIteratorINS0_6ObListINS_11transaction14ObTxBufferNodeENS4_24TransModulePageAllocatorEEEEneERKS8_:2205 + 2: 734 + 6.1: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EE9push_backERKS3_:66 + 5: 1 + 6: 1 + 12: 1 + 15: 1 + 15.1: 1 + 16: 1 + 15.1: _ZN9oceanbase6common9ObClassOpINS_11transaction14ObTxBufferNodeELb0EE20construct_and_assignERKS3_RS3_:25 + 3: _ZN9oceanbase6common16construct_assignINS_11transaction14ObTxBufferNodeEEEiRT_RKS4_:25 + 2: _ZN9oceanbase6common21construct_assign_wrapINS_11transaction14ObTxBufferNodeEEEiRT_RKS4_NS0_8BoolTypeILb0EEE:25 + 2: 1 +_ZZN9oceanbase11transaction14ObPartTransCtx25submit_multi_source_data_ERNS0_12ObTxLogBlockEENK5$_601clEPKc.93feb755617c21c32b229b78773c290c:44840:531 + 0: 539 + 0.1: 0 + 0.2: 539 + 0.3: 524 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:560 + 0.13: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:8908 + 2: 524 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS_11transaction9ObTransIDELb0EEC2EPKcS5_:0 + 0: 0 + 0.7: _ZN9oceanbase6common20ObLogPrintPointerCntIPNS_11transaction9ObTxLogCbEEC2ES4_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVINS0_20ObLogPrintPointerCntIPNS_11transaction9ObTxLogCbEEELb1EEC2EPKcOKS6_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVIRKNS_11transaction12ObTxMDSCacheELb0EEC2EPKcS5_:0 + 0: 0 + 0.12: _ZN9oceanbase6common7ObLogKVIRKNS0_9ObSEArrayINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EEELb0EEC2EPKcS8_:0 + 0: 0 +_ZN9oceanbase3sql20ObAggregateProcessor19prepare_aggr_resultERKNS0_17ObChunkDatumStore9StoredRowEPKNS_6common8ObIArrayIPNS0_6ObExprEEERNS1_8AggrCellERKNS0_10ObAggrInfoE:44697:265 + 2: 250 + 3: 250 + 4: 250 + 5: 250 + 5.1: 250 + 6: 0 + 11: 1 + 12.1: 1 + 15: 250 + 18.1: 0 + 18.2: 0 + 18.3: 0 + 29: 0 + 30: 1 + 31.1: 1 + 32.1: 0 + 33: 1 + 40: 0 + 41.1: 0 + 46: 275 + 47: 1 + 48.1: 1 + 49.1: 275 + 50: 278 + 50.1: 268 _ZN9oceanbase3sql20ObAggregateProcessor16prepare_add_calcERKNS_6common7ObDatumERNS1_8AggrCellERKNS0_10ObAggrInfoE:278 + 52: 0 + 67: 0 + 68.1: 1 + 77: 0 + 77.1: 0 + 101: 0 + 102: 1 + 103.1: 1 + 106: 0 + 106.1: 0 + 107.1: 0 + 108.2: 0 + 109.1: 0 + 111: 0 + 112: 0 + 113: 0 + 114.1: 1 + 115: 1 + 116.1: 1 + 116.3: 1 + 117: 0 + 118: 0 + 119.1: 0 + 121: 0 + 122: 0 + 123.1: 0 + 135: 0 + 136: 1 + 137.1: 1 + 138.1: 0 + 138.2: 0 + 138.3: 0 + 138.4: 0 + 141: 1 + 142.1: 1 + 143.1: 0 + 144.1: 1 + 147: 0 + 147.2: 0 + 148.1: 1 + 149.1: 0 + 150.1: 0 + 156: 0 + 157.1: 0 + 158: 0 + 158.2: 0 + 158.3: 0 + 158.6: 0 + 160.1: 0 + 160.2: 0 + 160.4: 0 + 160.5: 0 + 160.7: 1 + 169: 0 + 170: 1 + 171.1: 1 + 172.1: 0 + 176: 0 + 183: 0 + 184.1: 0 + 187: 262 + 4: _ZNK9oceanbase3sql10ObAggrInfo13get_expr_typeEv:8000 + 1: 250 + 1.1: 250 + 1.4: 250 + 5.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE5emptyEv:1250 + 0: 250 + 19.1: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:0 + 0: 0 + 32.2: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:0 + 0: 0 + 33: _ZN9oceanbase3sql20ObAggregateProcessor15clone_aggr_cellERNS1_8AggrCellERKNS_6common7ObDatumEb:284 + 3: 0 + 5: 0 + 6: 1 + 7.1: 1 + 9: 0 + 10: 0 + 11: 0 + 13: 1 + 6: _ZN9oceanbase3sql20ObAggregateProcessor10clone_cellERNS1_8AggrCellElPNS_6common7ObDatumE:254 + 5: 0 + 7: 0 + 12: 0 + 12.1: 1 + 14: 0 + 16: 0 + 17: 0 + 23.1: 0 + 24: 1 + 25.1: 1 + 27.1: 0 + 28: 1 + 29.1: 1 + 32: 0 + 33: 0 + 35: 0 + 36: 1 + 37.1: 1 + 40: 0 + 41: 0 + 51: 1 + 52: 1 + 53.1: 1 + 56: 1 + 57: 1 + 63: 0 + 66: 0 + 12: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell7get_bufEv:0 + 0: 0 + 39: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell7set_bufEPc:0 + 0: 0 + 55: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell7set_bufEPc:11 + 0: 1 + 9: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell7get_bufEv:0 + 0: 0 + 35: _ZNK9oceanbase3sql10ObAggrInfo9is_numberEv:0 + 3: 0 + 4: 0 + 3: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:0 + 6: 0 + 49.1: _ZNK9oceanbase3sql17ObChunkDatumStore9StoredRow5cellsEv:1072 + 1: 268 + 49.2: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:1375 + 0: 275 + 71: _ZN9oceanbase3sql20ObAggregateProcessor19llc_calc_hash_valueERKNS0_17ObChunkDatumStore9StoredRowERKNS_6common8ObIArrayIPNS0_6ObExprEEERb:0 + 5.2: 0 + 5.3: 0 + 5.5: 0 + 6: 0 + 8: 0 + 11: 0 + 13: 0 + 6: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:0 + 6: 0 + 8: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:0 + 0: 0 + 77: _ZNK9oceanbase6common7ObDatum10get_stringEv:0 + 0: 0 + 0: _ZN9oceanbase6common8ObStringC2ElPKc:0 + 5: 0 + 101: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell9get_extraEv:0 + 0: 0 + 105: _ZN9oceanbase3sql20ObAggregateProcessor22GroupConcatExtraResult10reuse_selfEv:0 + 2: 0 + 3: 0 + 6: 0 + 8: 0 + 10: 0 + 5: _ZN9oceanbase3sql17ObChunkDatumStore8Iterator5resetEv:0 + 0: 0 + 0.1: 0 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator5resetEv:0 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator12reset_cursorEv:0 + 3: 0 + 8: _ZN9oceanbase6common16ObFixedArrayImplIbNS0_12ObIAllocatorEE5resetEv:0 + 0: 0 + 106.1: _ZN9oceanbase3sql20ObAggregateProcessor22GroupConcatExtraResult7add_rowERKNS0_17ObChunkDatumStore9StoredRowE:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 3: 0 + 108.2: _ZN9oceanbase3sql20ObAggregateProcessor22GroupConcatExtraResult7add_rowERKNS_6common8ObIArrayIPNS0_6ObExprEEERNS0_9ObEvalCtxE:0 + 2: 0 + 2.2: 0 + 3: 0 + 2.1: _ZN9oceanbase3sql12ObSortOpImpl7add_rowERKNS_6common8ObIArrayIPNS0_6ObExprEEE:0 + 2: 0 + 3: 0 + 112: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE5countEv:0 + 0: 0 + 113: _ZN9oceanbase3sql20ObAggregateProcessor22GroupConcatExtraResult23reserve_bool_mark_countEl:0 + 0: 0 + 122: _ZN9oceanbase3sql20ObAggregateProcessor22GroupConcatExtraResult13set_bool_markElb:0 + 2: 0 + 3: 0 + 4: 0 + 5.1: 0 + 6.1: 0 + 7: 0 + 9: 0 + 11: 0 + 3: _ZNK9oceanbase6common12ObIArrayWrapIbE5countEv:0 + 0: 0 + 9: _ZN9oceanbase6common16ObFixedArrayImplIbNS0_12ObIAllocatorEEixEl:0 + 0: _ZN9oceanbase6common12ObIArrayWrapIbE2atEl:0 + 6: 0 + 135: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell9get_extraEv:0 + 0: 0 + 138.3: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:0 + 6: 0 + 146: _ZN9oceanbase6common5ObObjC2Ev:0 + 2: _ZN9oceanbase6common5ObObj5resetEv:0 + 6: 0 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:0 + 0: 0 + 147: _ZNK9oceanbase3sql17ObChunkDatumStore9StoredRow5cellsEv:0 + 1: 0 + 147.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:0 + 6: 0 + 156: _ZN9oceanbase3sql9ObEvalCtx14TempAllocGuardC2ERS1_:0 + 0: 0 + 3: 0 + 2: _ZN9oceanbase3sql9ObEvalCtx19get_reset_tmp_allocEv:0 + 7: 0 + 7.1: 0 + 11: 0 + 8: _ZN9oceanbase6common16ObArenaAllocator21reset_remain_one_pageEv:0 + 0: 0 + 157: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell9get_extraEv:0 + 0: 0 + 160.3: _ZNK9oceanbase3sql17ObChunkDatumStore9StoredRow5cellsEv:0 + 1: 0 + 165: _ZN9oceanbase3sql9ObEvalCtx14TempAllocGuardD2Ev:0 + 0: 0 + 165.1: _ZN9oceanbase3sql9ObEvalCtx14TempAllocGuardD2Ev:8 + 0: 1 + 172.2: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:0 + 0: 0 + 173.1: _ZNK9oceanbase6common7ObDatum8get_uintEv:0 + 0: 0 + 179: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell17set_tiny_num_usedEv:5 + 0: 1 +_ZNK9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS_3sql12ObPsStmtInfoEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_23SpinReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE18foreach_refactoredINS4_19ObGetClosedStmtIdOpEEEiRT_:44654:0 + 1: 0 + 2: 0 + 5: 0 + 5.1: 0 + 6.1: 0 + 7: 0 + 9.1: 434 + 9.2: 434 + 9.3: 434 + 9.5: 434 + 10: 434 + 13: 508 + 14.1: 508 + 14.3: 508 + 16: 0 + 16.1: 0 + 17.1: 0 + 19: 0 + 22.1: 0 + 24: 0 + 5: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImPNS_3sql12ObPsStmtInfoEEENS0_10SpinRWLockENS1_5NCondEEEEEbRKT_:0 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImPNS_3sql12ObPsStmtInfoEEENS0_10SpinRWLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:0 + 2: 0 + 12.1: _ZN9oceanbase6common4hash14SpinReadLockerC2ERNS0_10SpinRWLockE:19116 + 0: 434 + 2: 508 + 3.1: 0 + 5: 508 + 6: 508 + 2: _ZN9oceanbase6common10SpinRWLock6rdlockEl:7812 + 0: 434 _ZN9oceanbase6common7ObLatch6rdlockEjl:435 + 15: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_11HashMapPairImPNS_3sql12ObPsStmtInfoEEEE16check_magic_codeEv:0 + 0: 0 + 15.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 22: _ZN9oceanbase6common4hash14SpinReadLockerD2Ev:5988 + 2: 499 + 3.1: 0 + 3: _ZN9oceanbase6common10SpinRWLock6unlockEv:1497 + 0: 499 _ZN9oceanbase6common7ObLatch6unlockEPKj:499 +_ZN9oceanbase11transaction14ObTransService10release_txERNS0_8ObTxDescE:44644:281 + 0: 1 + 1: 279 + 2: 1 + 9: 279 + 10.1: 279 _ZZN9oceanbase11transaction14ObTransService10release_txERNS0_8ObTxDescEENK6$_1267clEPKc.93feb755617c21c32b229b78773c290c:279 + 11: 264 + 12: 2 + 12.1: 2 + 12.3: 2 + 12.4: 2 + 12.5: 2 + 12.7: 2 + 12.8: 2 + 13.1: 2 + 17.3: 267 + 17.4: 1 + 17.6: 1 + 17.7: 1 + 17.8: 2 + 17.22: 1 + 20: 251 + 26: 2 + 27.1: 278 _ZN9oceanbase11transaction14ObTransService12finalize_tx_ERNS0_8ObTxDescE:251 + 28.1: 2 + 30: 278 _ZN9oceanbase11transaction11ObTxDescMgr6revertERNS0_8ObTxDescE:280 + 33.1: 241 _ZZN9oceanbase11transaction14ObTransService10release_txERNS0_8ObTxDescEENK6$_1269clEPKc.93feb755617c21c32b229b78773c290c:244 + 34: 232 + 35.1: 232 + 11: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:5144 + 2: 264 + 2.1: 2 + 2.2: 2 + 11.1: _ZNK9oceanbase5share12ObTenantBase2idEv:1848 + 0: 264 + 13: _ZN9oceanbase5share11ObTenantEnv3mtlIPNS_11transaction14ObTransServiceEEET_v:18 + 2: 2 + 2.1: _ZN9oceanbase5share12ObTenantBase3getIPNS_11transaction14ObTransServiceEEET_v:8 + 0: _ZN9oceanbase5share12ObTenantBase9inner_getENS1_8IdentityIPNS_11transaction14ObTransServiceEEE:8 + 0: 2 + 17.3: _ZN9oceanbase3lib20is_trace_log_enabledEv:2137 + 2: 264 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:279 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:1869 + 2: 267 + 17.9: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EE12check_unlockEv:22 + 2: 1 + 3: _ZN9oceanbase3lib7ObMutex6unlockEv:12 + 0: 1 + 17.16: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EE10check_lockEv:39 + 2: 1 + 3: _ZN9oceanbase3lib7ObMutex4lockEv:29 + 0: 1 + 17.17: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EE14get_buffer_posEv:7 + 0: 1 + 17.18: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EE10get_bufferEv:11 + 0: 1 + 17.20: _ZNK9oceanbase11transaction15ObTransHashLinkINS0_8ObTxDescEE7get_refEv:4 + 0: 1 + 17.21: _Z9ob_gettidv:223 + 3: 1 + 4: 2 + 2: _Z13get_tid_cachev:117 + 7: 1 + 7.1: 2 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:46 + 0: 2 +_ZN9oceanbase12blocksstable15ObTmpFileIOInfoD2Ev:44568:1911 + 1: 1857 + 2: 1857 _ZN9oceanbase6common8ObIOFlagD1Ev:1962 +_ZN9oceanbase12blocksstable15ObTmpFileIOInfoD1Ev:44568:1911 + 1: 1857 + 2: 1857 _ZN9oceanbase6common8ObIOFlagD1Ev:1962 +_ZN9oceanbase3sql13ObRoutePolicy19get_server_localityERKNS_6common6ObAddrERKNS2_8ObIArrayINS_5share16ObServerLocalityEEERS8_:44516:295 + 3: 272 + 4: 272 + 6.1: 0 + 6.3: 272 + 6.4: 272 + 8: 272 + 9: 272 _ZN9oceanbase5share16ObServerLocality6assignERKS1_:278 + 10.1: 0 + 19.1: 0 + 21: 258 + 7: _ZNK9oceanbase6common12ObIArrayWrapINS_5share16ObServerLocalityEE2atEl:1088 + 6: 272 + 8.1: _ZNK9oceanbase6common6ObAddreqERKS1_:13872 + 2: 272 + 2.1: 272 + 2.2: 272 +_ZN9oceanbase11transaction14ObPartTransCtx18init_memtable_ctx_EmRKNS_5share6ObLSIDE:44512:288 + 1: 285 + 2: 285 + 3: 285 _ZN9oceanbase7storage15ObTableHandleV2C1Ev:285 + 4: 288 _ZN9oceanbase8memtable13ObMemtableCtx4initEm:288 + 4.1: 244 + 5.1: 0 + 6.1: 244 + 6.2: 281 + 7.1: 0 + 8.1: 281 _ZN9oceanbase8memtable13ObMemtableCtx17enable_lock_tableERNS_7storage15ObTableHandleV2E:292 + 8.2: 287 + 9.1: 0 + 10.1: 287 + 10.3: 304 + 11.1: 0 + 17: 304 + 18.5: 310 _ZN9oceanbase7storage15ObTableHandleV2D1Ev:313 + 18.6: 0 + 6.1: _ZN9oceanbase11transaction12ObLSTxCtxMgr17get_lock_memtableERNS_7storage15ObTableHandleV2E:2928 + 1: 244 _ZN9oceanbase11transaction9tablelock11ObLockTable17get_lock_memtableERNS_7storage15ObTableHandleV2E:248 + 10.1: _ZN9oceanbase8memtable13ObMemtableCtx18get_tx_table_guardEv:2009 + 0: 287 + 10.2: _ZN9oceanbase11transaction12ObLSTxCtxMgr18get_tx_table_guardERNS_7storage14ObTxTableGuardE:2296 + 1: 287 _ZN9oceanbase7storage9ObTxTable18get_tx_table_guardERNS0_14ObTxTableGuardE:298 + 14: _ZN9oceanbase11transaction14ObTxELRHandler16set_memtable_ctxEPNS_8memtable13ObMemtableCtxE:2128 + 0: 304 +_ZThn8_N9oceanbase3sql16ObSQLSessionInfo17reset_tx_variableEv:44350:529 + 0: 532 + 2: 532 + 3: 532 + 4: 0 + 7: 532 +_ZN9oceanbase6commonL24convert_string_collationERKNS0_8ObStringENS0_15ObCollationTypeERS1_S4_RNS0_15ObObjCastParamsE.db28c62327e16d3ae5c8a88acfd53bbb:44350:435 + 5: 400 + 6: 400 + 7: 400 _ZN9oceanbase6common9ObCharset18is_valid_collationEl:410 + 7.1: 426 + 8: 411 + 8.1: 411 _ZN9oceanbase6common9ObCharset18is_valid_collationEl:415 + 9: 406 + 9.1: 407 _ZN9oceanbase6common9ObCharset20charset_type_by_collENS0_15ObCollationTypeE:422 + 10: 407 + 10.1: 413 _ZN9oceanbase6common9ObCharset20charset_type_by_collENS0_15ObCollationTypeE:436 + 11: 413 + 11.1: 411 _ZN9oceanbase6common9ObCharset20charset_type_by_collENS0_15ObCollationTypeE:419 + 12: 426 _ZN9oceanbase6common9ObCharset20charset_type_by_collENS0_15ObCollationTypeE:427 + 13: 407 + 14.1: 0 + 19: 0 + 20: 0 + 21: 0 + 22: 0 + 23.1: 0 + 24.1: 0 + 24.3: 0 + 31.1: 0 + 33: 0 + 38: 407 + 14.1: _ZNK9oceanbase6common8ObString5emptyEv:0 + 2: 0 + 2.1: 0 + 15: _ZN9oceanbase6common8ObString5resetEv:0 + 3: 0 + 21: _ZNK9oceanbase6common15ObObjCastParams5allocEl:0 + 3: 0 + 5.1: 0 + 24.1: _ZNK9oceanbase6common8ObString3ptrEv:0 + 0: 0 + 24.2: _ZNK9oceanbase6common8ObString6lengthEv:0 + 0: 0 + 33: _ZN9oceanbase6common8ObString10assign_ptrEPKci:0 + 2: 0 + 3: 0 +_ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE0ELS3_11EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE:44304:882 + 0: 852 + 0.1: 852 + 0.6: 852 + 0.1: _ZNK9oceanbase6common5ObObj12is_min_valueEv:11076 + 2: 852 + 2: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:1704 + 0: 852 + 0.3: _ZNK9oceanbase6common5ObObj12is_max_valueEv:16188 + 2: 852 +_ZN9oceanbase3sql15ObTableModifyOp20merge_implict_cursorEllll:44295:533 + 4: 510 + 5: 510 + 6: 510 + 7: 510 + 8: 0 + 9: 0 + 10.1: 0 + 12: 0 + 13: 0 + 15: 0 + 16: 0 + 17: 0 + 18: 0 + 19: 0 + 21: 0 + 23: 0 + 24: 0 + 25: 0 + 25.3: 0 + 27: 0 + 28: 0 + 30: 0 + 31.1: 0 + 36: 539 + 6: _ZN9oceanbase3sql13ObExecContext11get_sql_ctxEv:6630 + 0: 510 + 9.1: _ZNK9oceanbase3sql6ObExpr4evalERNS0_9ObEvalCtxERPNS_6common7ObDatumE:0 + 4: 0 + 6: 0 + 7: 0 + 9: 0 + 10: 0 + 10.1: 0 + 11: 0 + 13: 0 + 15.1: 0 + 15.2: 0 + 17: 0 + 18: 0 + 20: 0 + 21: 0 + 22: 0 + 9: _ZNK9oceanbase3sql6ObExpr15is_batch_resultEv:0 + 0: 0 + 11: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 24: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:0 + 0: 0 + 12: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:0 + 2: 0 + 13: _ZNK9oceanbase6common7ObDatum7get_intEv:0 + 0: 0 + 14: _ZN9oceanbase3sql20ObImplicitCursorInfoC2Ev:0 + 3: 0 + 22: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:0 + 2: 0 +_ZZN9oceanbase3sql16ObDASDMLIterator12get_next_rowERPNS_6common8ObNewRowEENK4$_86clEPKc.45c27dd3dc8b42ec4ef71c6f367bd924:44077:628 + 0: 669 + 0.1: 0 + 0.2: 669 + 0.3: 610 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:673 + 0.9: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:10370 + 2: 610 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.1: _ZN9oceanbase6common20ObLogPrintPointerCntIPKNS_3sql17ObChunkDatumStore9StoredRowEEC2ES6_:0 + 0: 0 + 0.4: _ZN9oceanbase6common7ObLogKVINS0_20ObLogPrintPointerCntIPKNS_3sql17ObChunkDatumStore9StoredRowEEELb1EEC2EPKcOKS8_:0 + 0: 0 + 0.5: _ZN9oceanbase6common20ObLogPrintPointerCntIPNS0_8ObNewRowEEC2ES3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVINS0_20ObLogPrintPointerCntIPNS0_8ObNewRowEEELb1EEC2EPKcOKS5_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKPKNS_3sql17ObDASDMLBaseCtDefELb0EEC2EPKcS7_:0 + 0: 0 +_ZN9oceanbase11transaction12ObTransTimer21register_timeout_taskERNS0_14ObITimeoutTaskEl:43945:500 + 2: 488 + 3: 488 + 5: 488 + 6.1: 0 + 7: 0 + 8.1: 488 + 9.1: 0 + 10: 0 + 11.1: 488 + 12.1: 0 + 13: 0 + 14.1: 488 + 15: 0 + 16.1: 507 _ZN9oceanbase6common11ObTimeWheel8scheduleEPNS0_15ObTimeWheelTaskEl:507 + 17.1: 0 + 23: 507 + 14.1: _ZNK9oceanbase11transaction14ObITimeoutTask13is_registeredEv:1952 + 0: 488 + 19: _ZN9oceanbase11transaction14ObITimeoutTask14set_registeredEb:2535 + 0: 507 + 20: _ZN9oceanbase11transaction14ObITimeoutTask9set_delayEl:3042 + 0: 507 +_ZNK9oceanbase11transaction13ObTxCommitLog19get_serialize_size_Ev:43624:271 + 0: 269 + 0.1: 0 + 0.2: 270 _ZNK9oceanbase11transaction17ObTxSerCompatByte15is_object_validEl:274 + 0.3: 266 _ZN9oceanbase6common13serialization14encoded_lengthEm:268 + 0.4: 266 _ZNK9oceanbase11transaction17ObTxSerCompatByte15is_object_validEl:279 + 0.5: 0 + 0.6: 264 _ZNK9oceanbase11transaction17ObTxSerCompatByte15is_object_validEl:268 + 0.7: 0 + 0.8: 263 _ZNK9oceanbase11transaction17ObTxSerCompatByte15is_object_validEl:278 + 0.9: 269 + 0.10: 298 _ZNK9oceanbase11transaction17ObTxSerCompatByte15is_object_validEl:281 + 0.11: 298 + 0.12: 285 _ZNK9oceanbase11transaction17ObTxSerCompatByte15is_object_validEl:300 + 0.13: 285 + 0.14: 287 _ZNK9oceanbase11transaction17ObTxSerCompatByte15is_object_validEl:293 + 0.15: 1 + 0.16: 288 + 0.17: 269 _ZNK9oceanbase11transaction17ObTxSerCompatByte15is_object_validEl:278 + 0: _ZNK9oceanbase11transaction17ObTxSerCompatByte18get_serialize_sizeEv:1076 + 0: 269 + 0.7: _ZN9oceanbase6common13serialization14encoded_lengthINS0_9ObSEArrayINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EEEEElRKT_:0 + 2: 0 + 0.9: _ZN9oceanbase6common13serialization14encoded_lengthEi:1841 + 2: _ZN9oceanbase6common13serialization19encoded_length_vi32Ei:1841 + 4: 263 + 6.1: 0 + 8.1: 0 + 10.1: 0 + 0.11: _ZN9oceanbase6common13serialization14encoded_lengthINS_11transaction14ObTxDataBackupEEElRKT_:298 + 2: 298 _ZN9oceanbase6common13serialization11EnumEncoderILb0ENS_11transaction14ObTxDataBackupEE14encoded_lengthERKS4_:298 + 0.13: _ZN9oceanbase6common13serialization14encoded_lengthINS_4palf3LSNEEElRKT_:289 + 2: _ZN9oceanbase6common13serialization11EnumEncoderILb0ENS_4palf3LSNEE14encoded_lengthERKS4_:289 + 2: 285 _ZNK9oceanbase4palf3LSN18get_serialize_sizeEv:289 + 0.15: _ZN9oceanbase6common13serialization14encoded_lengthINS0_9ObSEArrayINS_11transaction11ObLSLogInfoELl10ENS0_19ModulePageAllocatorELb0EEEEElRKT_:5 + 2: 1 +_ZN9oceanbase6common6QClock14enter_criticalEv:43392:490 + 0: 452 + 2: 452 + 3.1: 452 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 7.1: 0 + 7.3: 0 + 7.4: 0 + 8.1: 0 + 12: 452 + 1: _ZN9oceanbase6common6QClock11get_slot_idEv:10848 + 0: _ZN9oceanbase6common8get_itidEv:10848 + 4: 452 + 5: 0 + 6: 0 + 8: 0 + 3.1: _ZN9oceanbase6common6QClock6locateEm:3616 + 0: 452 + 3.3: _ZN9oceanbase6common6QClock9get_clockEv:1356 + 0: 452 + 3.4: _ZN9oceanbase6common6QClock9ClockSlot9set_clockEm:7684 + 0: 452 +_ZNK9oceanbase11transaction9tablelock13ObTableLockOp8is_validEv:43368:858 + 1: 834 + 2: 834 + 2.1: 834 + 3: 834 + 4: 834 + 5: 834 + 6: 834 + 2: _ZNK9oceanbase11transaction9tablelock8ObLockID8is_validEv:10842 + 2: 834 + 2: _ZN9oceanbase6common11is_valid_idEm:4170 + 2: 834 + 3: _ZN9oceanbase11transaction9tablelockL22is_lock_obj_type_validERKNS1_13ObLockOBJTypeE:5004 + 2: 834 + 3: _ZN9oceanbase11transaction9tablelockL18is_lock_mode_validEh:3336 + 2: 834 + 4: _ZNK9oceanbase11transaction9ObTransID8is_validEv:4170 + 0: 834 +_ZN9oceanbase8memtable10ObMemtable7set_endERNS0_15ObMvccAccessCtxEi:43359:1004 + 1: 929 + 2: 929 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:929 + 3: 880 + 4.1: 880 + 4.2: 0 + 4.3: 0 + 4.4: 0 + 4.6: 0 + 4.7: 0 + 6.1: 0 + 6.2: 0 + 6.3: 0 + 6.4: 0 + 6.6: 0 + 6.7: 0 + 8.1: 901 + 8.2: 0 + 8.3: 0 + 8.4: 0 + 8.6: 0 + 8.7: 0 + 8.10: 0 + 8.11: 0 + 9: 901 + 8.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:4462 + 2: 858 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:863 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:3604 + 2: 901 +_ZN9oceanbase6common13ObBlockSlicer10alloc_itemEv:43334:569 + 0: 539 + 1.3: 550 + 1: _ZN9oceanbase6common11ObStockCtrl11alloc_stockEv:17148 + 0: _ZN9oceanbase6common11ObStockCtrl9dec_if_gtEii:17148 + 1: 539 + 3.1: 540 + 3.2: 533 + 3.3: 533 + 1.1: _ZN9oceanbase6common17ObEmbedFixedQueue3popEv:18620 + 2: 532 + 3.1: 532 + 4: 0 +_ZN9oceanbase6common11ObArrayImplINS_11transaction9ObTransIDENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE7destroyEv:43302:1060 + 1: 1031 + 2: 1031 + 3.1: 0 + 3.3: 0 + 4: 0 + 6: 0 + 7: 0 + 9: 1031 + 11: 1031 + 13: 1031 + 4: _ZN9oceanbase11transaction9ObTransIDD2Ev:0 + 0: 0 +_ZN9oceanbase3sql17ObSqlTransControl18explicit_end_transERNS0_13ObExecContextEb:43118:230 + 1: 227 + 2: 227 + 7: 259 + 10.1: 259 + 12.3: 259 + 15.4: 259 + 18.1: 259 + 19.1: 259 + 20: 259 + 20.2: 0 + 20.3: 0 + 21: 259 + 23.2: 259 _ZN9oceanbase3sql17ObSqlTransControl9end_transERNS0_13ObExecContextEbbPNS0_23ObEndTransAsyncCallbackE:259 + 23.3: 247 + 23.5: 0 + 25: 247 _ZN9oceanbase5trace7ObTrace12get_instanceEv:252 + 25.1: 260 _ZN9oceanbase5trace7ObTrace7set_tagIlJEEEv9ObTagTypeRKT_DpT0_:269 + 26: 264 + 27.5: 264 _ZN9oceanbase5trace16__ObFLTSpanGuardD2Ev:268 + 27.6: 0 + 6: _ZN9oceanbase5trace16__ObFLTSpanGuardC2Ejh:5327 + 2: 259 _ZN9oceanbase5trace7ObTrace12get_instanceEv:230 + 2.1: 254 _ZN9oceanbase5trace7ObTrace10begin_spanEjhb:265 + 10: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:1813 + 2: 259 + 15.3: _ZNK9oceanbase11transaction9ObTransID6get_idEv:1813 + 0: 259 + 18: _ZN9oceanbase3sql13ObExecContext18is_end_trans_asyncEv:1813 + 0: 259 +_ZN9oceanbase11transaction11ObXATransIDC2ERKS1_:42681:250 + 1: 238 + 2: 238 + 6: 238 + 9: 242 + 10: 242 + 11: 242 + 0: _ZN9oceanbase6common8ObStringC2Ev:1666 + 1: 238 + 0.1: _ZN9oceanbase6common8ObStringC2Ev:1666 + 1: 238 + 4: _ZN9oceanbase6common8ObString5resetEv:1666 + 2: 238 + 5: _ZN9oceanbase6common8ObString13assign_bufferEPci:6188 + 2: 238 + 3: 238 + 5: 238 + 6: 0 + 6: _ZN9oceanbase6common8ObString13assign_bufferEPci:4284 + 2: 238 + 3: 238 + 7: _ZNK9oceanbase6common8ObString3ptrEv:952 + 0: 238 + 7.2: _ZN9oceanbase6common8ObString5writeEPKci:2142 + 3: 238 + 7: 0 + 8: 0 + 8: _ZNK9oceanbase6common8ObString3ptrEv:1715 + 0: 245 + 8.2: _ZN9oceanbase6common8ObString5writeEPKci:2205 + 3: 245 + 6: 0 + 7: 0 + 8: 0 +_ZN9oceanbase11transaction11ObXATransIDC1ERKS1_:42681:250 + 1: 238 + 2: 238 + 6: 238 + 9: 242 + 10: 242 + 11: 242 + 0: _ZN9oceanbase6common8ObStringC2Ev:1666 + 1: 238 + 0.1: _ZN9oceanbase6common8ObStringC2Ev:1666 + 1: 238 + 4: _ZN9oceanbase6common8ObString5resetEv:1666 + 2: 238 + 5: _ZN9oceanbase6common8ObString13assign_bufferEPci:6188 + 2: 238 + 3: 238 + 5: 238 + 6: 0 + 6: _ZN9oceanbase6common8ObString13assign_bufferEPci:4284 + 2: 238 + 3: 238 + 7: _ZNK9oceanbase6common8ObString3ptrEv:952 + 0: 238 + 7.2: _ZN9oceanbase6common8ObString5writeEPKci:2142 + 3: 238 + 7: 0 + 8: 0 + 8: _ZNK9oceanbase6common8ObString3ptrEv:1715 + 0: 245 + 8.2: _ZN9oceanbase6common8ObString5writeEPKci:2205 + 3: 245 + 6: 0 + 7: 0 + 8: 0 +_ZNK9oceanbase7storage29ObTabletTxMultiSourceDataUnit4typeEv:42664:5386 + 1: 5333 + 2: 5333 +_ZN9oceanbase3sql16ObChunkStoreUtil12alloc_dir_idERl:42649:1018 + 1: 995 + 3: 995 + 4: 995 _ZN9oceanbase12blocksstable16ObTmpFileManager12get_instanceEv:1003 + 4.1: 969 _ZN9oceanbase12blocksstable16ObTmpFileManager9alloc_dirERl:974 + 5.1: 0 + 7: 887 +_ZN9oceanbase6common13ObSEArrayImplISt4pairIPNS_3sql9ObRawExprEPNS3_14ObConstRawExprEELl8ENS0_19ModulePageAllocatorELb0EED2Ev:42527:552 + 1: 523 + 3: 527 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplISt4pairIPNS_3sql9ObRawExprEPNS3_14ObConstRawExprEELl8ENS0_19ModulePageAllocatorELb0EE7destroyEv:23140 + 9: 523 + 11: 0 + 13: 527 + 15: 527 + 24: 527 + 10: _ZN9oceanbase6common13ObSEArrayImplISt4pairIPNS_3sql9ObRawExprEPNS3_14ObConstRawExprEELl8ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase6common13ObLinkHashMapINS_11transaction9tablelock8ObLockIDENS3_9ObOBJLockENS3_14ObOBJLockAllocENS0_9RefHandleELl8EE6revertEPNS0_12LinkHashNodeIS4_EE:42489:829 + 1: 788 + 6: 788 + 6.1: 788 + 6.2: 788 + 7.1: 0 + 10: 0 + 13: 779 + 11: _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9tablelock8ObLockIDENS3_9ObOBJLockENS3_14ObOBJLockAllocENS0_9RefHandleELl8EE8dec_urefEPNS0_12LinkHashNodeIS4_EE:4728 + 3: 788 + 3: _ZN9oceanbase6common9RefHandle3decEPNS0_7RefNodeE:3940 + 0: 788 + 4: _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9tablelock8ObLockIDENS3_9ObOBJLockENS3_14ObOBJLockAllocENS0_9RefHandleELl8EE13on_uref_cleanEPNS0_12LinkHashNodeIS4_EE:0 + 3: 0 + 3: _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9tablelock8ObLockIDENS3_9ObOBJLockENS3_14ObOBJLockAllocENS0_9RefHandleELl8EE10free_valueEPS5_:0 + 2: _ZN9oceanbase11transaction9tablelock14ObOBJLockAlloc10free_valueEPNS1_9ObOBJLockE:0 + 2: 0 + 3: 0 + 4: _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9tablelock8ObLockIDENS3_9ObOBJLockENS3_14ObOBJLockAllocENS0_9RefHandleELl8EE8dec_hrefEPNS0_12LinkHashNodeIS4_EE:0 + 3: 0 + 3: _ZN9oceanbase6common7RefNode5xhrefEi:0 + 0: 0 + 4: _ZN9oceanbase11transaction9tablelock14ObOBJLockAlloc9free_nodeEPNS_6common12LinkHashNodeINS1_8ObLockIDEEE:0 + 3: 0 + 3.3: 0 + 3: _ZN9oceanbase3lib7ObLabelC2IPKcEERKT_:0 + 2: _ZN9oceanbase3lib7ObLabelaSIPKcvEERS1_T_:0 + 2: 0 + 3.1: _ZN9oceanbase6common21ObFixedClassAllocatorINS0_12LinkHashNodeINS_11transaction9tablelock8ObLockIDEEEE4freeEPS6_:0 + 4: 0 + 3: _ZN9oceanbase6common12LinkHashNodeINS_11transaction9tablelock8ObLockIDEED2Ev:0 + 0: _ZN9oceanbase6common6ObLinkD2Ev:0 + 0: 0 + 0.1: _ZN9oceanbase6common7RefNodeD2Ev:0 + 0: _ZN9oceanbase6common6ObLinkD2Ev:0 + 0: 0 +_ZNK9oceanbase8memtable10ObMemtable16get_start_log_tsEv:42460:4524 + 1: 4246 + 2: 4246 +_ZZN9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE6revertElENKUlPKcE2_clES5_:42372:586 + 0: 586 + 0.1: 0 + 0.2: 586 + 0.3: 579 _ZN9oceanbase6common8ObLogger13need_to_printEmi:598 + 0.9: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:9843 + 2: 579 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase11transaction11ObTraceInfo18set_app_trace_infoERKNS_6common8ObStringE:42333:503 + 1: 485 + 3: 485 + 5: 485 + 6.1: 0 + 7: 0 + 8.1: 485 + 9: 0 + 10.1: 0 + 11.1: 485 + 13: 491 + 16: 0 + 16.1: 0 + 17: 0 + 18.1: 0 + 23: 0 + 27: 491 + 2: _ZNK9oceanbase6common8ObString6lengthEv:5335 + 0: 485 + 12.1: _ZN9oceanbase6common8ObString5writeEPKci:485 + 3: 485 + 6: 0 + 7: 0 + 8: 0 + 16: _ZN9oceanbase3lib7ObLabelC2IA13_cEERKT_:0 + 2: _ZN9oceanbase3lib7ObLabelaSILm13EEERS1_RAT__Kc:0 + 4: 0 + 21: _ZN9oceanbase6common8ObString13assign_bufferEPci:0 + 2: 0 + 3: 0 + 4: 0 + 22: _ZNK9oceanbase6common8ObString3ptrEv:0 + 0: 0 + 22.1: _ZN9oceanbase6common8ObString5writeEPKci:0 + 3: 0 + 7: 0 + 8: 0 +_ZN9oceanbase3sql13ObDatumCaster7destroyEv:42311:249 + 1: 240 + 2: 240 + 3: 240 + 4: 240 + 4.1: 240 + 4.2: 240 + 5: 0 + 6.1: 0 + 9: 240 + 10: 240 _ZN9oceanbase3sql13ObExecContext13get_allocatorEv:254 + 11: 236 _ZN9oceanbase3sql9ObEvalCtxD2Ev:241 + 13: 257 _ZN9oceanbase6common16ObArenaAllocator4freeEPv:268 + 14: 260 _ZN9oceanbase6common16ObArenaAllocator4freeEPv:261 + 15: 246 _ZN9oceanbase6common16ObArenaAllocator4freeEPv:256 + 16: 276 _ZN9oceanbase6common16ObArenaAllocator4freeEPv:278 + 18: 266 + 22: 266 +_ZN9oceanbase11transaction14ObPartTransCtx7tx_end_Ebl:42261:246 + 1: 238 + 3: 238 + 5: 238 + 7: 0 + 8.1: 0 + 9.1: 0 + 9.2: 0 + 10: 0 + 10.1: 0 + 10.2: 0 + 11.1: 0 + 14: 238 + 15: 0 + 16.1: 0 + 18: 243 _ZN9oceanbase8memtable13ObMemtableCtx9trans_endEbl:238 + 19.1: 0 + 20.1: 243 + 20.2: 0 + 21: 243 + 21.1: 0 + 21.2: 0 + 22.1: 0 + 31: 235 + 31.1: 235 _ZN9oceanbase11transaction16ObTransStatistic22add_trans_mt_end_countEml:245 + 32: 262 + 32.1: 262 _ZN9oceanbase11transaction16ObTransStatistic21add_trans_mt_end_timeEml:274 + 34: 238 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:952 + 2: 238 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:257 + 10.1: _ZNK9oceanbase11transaction14ObPartTransCtx15get_rec_log_ts_Ev:0 + 7: 0 + 9.1: 0 + 21.1: _ZNK9oceanbase11transaction14ObPartTransCtx15get_rec_log_ts_Ev:0 + 7: 0 + 9.1: 0 + 25: _ZN9oceanbase11transaction14ObTxELRHandler15reset_elr_stateEv:1701 + 0: 243 + 30: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:948 + 2: 243 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:264 + 31: _ZN9oceanbase11transaction16ObTransStatistic12get_instanceEv:4465 + 2: 235 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 32: _ZN9oceanbase11transaction16ObTransStatistic12get_instanceEv:3144 + 2: 262 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 +_ZN9oceanbase6common19GlobalHazardVersion16get_thread_storeERPNS0_24KVCacheHazardThreadStoreE:42129:650 + 1: 621 + 2: 621 + 4: 684 + 5: 684 + 6: 0 + 7: 0 + 11: 0 + 12: 0 + 13.1: 0 + 13.3: 0 + 14.1: 0 + 15: 0 + 15.1: 0 + 17: 0 + 19.1: 0 + 21.1: 0 + 22: 0 + 23.1: 0 + 26: 0 + 33: 0 + 33.1: 0 + 36: 0 + 37: 0 + 38: 0 + 39: 0 + 40.1: 0 + 42: 0 + 43: 0 + 44.1: 0 + 45.1: 0 + 46: 0 + 47.1: 0 + 49: 0 + 50: 0 + 51: 0 + 52: 0 + 53: 0 + 55: 0 + 56: 0 + 62: 684 + 14: _ZNK9oceanbase6common24KVCacheHazardThreadStore9is_initedEv:0 + 0: 0 + 24: _ZN9oceanbase6common24KVCacheHazardThreadStore8set_exitEv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 30: _ZNK9oceanbase6common24KVCacheHazardThreadStore8get_nextEv:0 + 0: 0 + 42: _ZN9oceanbase6common24KVCacheHazardThreadStoreC2Ev:0 + 1: 0 + 3: 0 + 6: 0 + 7: 0 + 50: _ZN9oceanbase6common24KVCacheHazardThreadStore8set_nextEPS1_:0 + 0: 0 +_ZN9oceanbase11transaction11ObGtsSource15wait_gts_elapseElPNS0_10ObTsCbTaskERb:42089:251 + 1: 227 + 2: 227 + 4: 227 + 5: 0 + 6.1: 0 + 7.1: 227 + 8: 0 + 9.1: 0 + 11: 227 + 14: 227 + 15: 227 + 21: 0 + 23.1: 227 + 28: 227 + 30: 0 + 31.1: 0 + 32: 0 + 33.1: 0 + 35: 0 + 36.3: 0 + 36.6: 0 + 36.8: 0 + 36.11: 0 + 37.1: 0 + 39.1: 0 + 48: 219 + 49: 0 + 53.1: 0 + 54.1: 0 + 56.1: 0 + 58: 0 + 60: 0 + 61: 0 + 62.1: 0 + 66: 219 + 67: 219 + 73: 219 + 13: _ZN9oceanbase6common6ObAddrC2Ev:4313 + 1: 227 + 15: _ZNK9oceanbase11transaction15ObGTSLocalCache7get_gtsERl:6810 + 3: 227 + 4: 227 + 5: 227 + 9: 227 + 35: _ZN9oceanbase11transaction11ObGtsSource37get_gts_from_local_timestamp_service_ERNS_6common6ObAddrERl:0 + 4: 0 + 3: _ZN9oceanbase11transaction11MonotonicTsC2Ev:0 + 0: _ZN9oceanbase11transaction11MonotonicTs5resetEv:0 + 0: 0 + 36.1: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 36.3: _Z7load128RoPN5types9uint128_tE:0 + 2: 0 + 36.8: _Z6cas128PVN5types9uint128_tEPS0_S0_:0 + 3: 0 + 11: 0 + 71: _ZN9oceanbase11transaction15ObGtsStatistics23inc_wait_gts_elapse_cntEv:1752 + 0.1: 219 +_ZN9oceanbase11transaction14ObPartTransCtx8get_gts_ERl:41996:263 + 1: 256 + 2: 256 + 4: 256 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:260 + 4.2: 252 + 5: 252 _ZN9oceanbase11transaction10ObTransCtx8get_stc_Ev:265 + 8.1: 248 + 9: 0 + 10.1: 0 + 11.1: 248 _ZThn72_N9oceanbase11transaction7ObTsMgr7get_gtsEmNS0_11MonotonicTsEPNS0_10ObTsCbTaskERlRS2_:257 + 11.2: 267 + 21.1: 0 + 24: 267 + 28: 264 + 29.11: 264 + 3: _ZN9oceanbase11transaction11MonotonicTsC2Ev:2048 + 0: _ZN9oceanbase11transaction11MonotonicTs5resetEv:2048 + 0: 256 + 5.2: _ZNK9oceanbase11transaction11MonotonicTsmiES1_:2728 + 0: 248 + 0: _ZN9oceanbase11transaction11MonotonicTsC2El:992 + 0: 248 + 8: _ZNK9oceanbase11transaction12ObTxSubState14is_gts_waitingEv:1736 + 1: 248 + 11.2: _ZN9oceanbase11transaction11MonotonicTsD2Ev:2136 + 0: _ZN9oceanbase11transaction11MonotonicTs5resetEv:2136 + 0: 267 + 11.3: _ZN9oceanbase11transaction11MonotonicTsD2Ev:0 + 0: _ZN9oceanbase11transaction11MonotonicTs5resetEv:0 + 0: 0 + 14: _ZN9oceanbase11transaction10ObTransCtx16acquire_ctx_ref_Ev:0 + 2: _ZN9oceanbase11transaction15ObTransHashLinkINS0_10ObTransCtxEE7inc_refEi:0 + 2: 0 + 3.1: 0 + 5: 0 + 19: _ZN9oceanbase11transaction12ObTxSubState15set_gts_waitingEv:0 + 1: 0 + 24: _ZN9oceanbase11transaction10ObTransCtx25set_trans_need_wait_wrap_ENS0_11MonotonicTsEl:5607 + 3: 267 _ZN9oceanbase11transaction19ObTransNeedWaitWrap24set_trans_need_wait_wrapENS0_11MonotonicTsEl:273 + 3.2: _ZN9oceanbase11transaction11MonotonicTsD2Ev:0 + 0: _ZN9oceanbase11transaction11MonotonicTs5resetEv:0 + 0: 0 + 29.12: _ZN9oceanbase11transaction11MonotonicTsD2Ev:0 + 0: _ZN9oceanbase11transaction11MonotonicTs5resetEv:0 + 0: 0 +_ZN9oceanbase3sql20ObDASIndexDMLAdaptorILi3ENS0_16ObDASUpdIteratorEED2Ev:41923:374 + 0: 373 + 0: _ZN9oceanbase7storage14ObDMLBaseParamD2Ev:29339 + 2: 366 _ZN9oceanbase11transaction16ObTxReadSnapshotD1Ev:374 + 2.1: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction18ObEncryptMetaCacheELl1ENS0_19ModulePageAllocatorELb0EED2Ev:26411 + 1: 371 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction18ObEncryptMetaCacheELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:19733 + 9: 371 + 11: 0 + 13: 373 + 15: 373 + 24: 373 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction18ObEncryptMetaCacheELl1ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 0.2: _ZN9oceanbase6common10ObTabletIDD2Ev:4103 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:4103 + 0: 373 +_ZN9oceanbase11transaction14ObPartTransCtx16submit_log_impl_ENS0_11ObTxLogTypeE:41910:291 + 1: 278 + 2: 278 + 3.1: 257 + 3.3: 278 _ZN9oceanbase5share19ObTenantSwitchGuard9switch_toEmb:278 + 3.4: 270 + 3.6: 257 + 3.7: 0 + 4: 270 + 8: 0 + 13: 0 + 19: 0 + 23: 0 + 27: 270 _ZN9oceanbase11transaction14ObPartTransCtx18submit_commit_log_Ev:270 + 31: 0 + 35: 0 + 39: 0 + 43.1: 0 + 48: 261 + 49.1: 0 + 55: 0 + 56.2: 0 + 56.7: 0 + 56.10: 0 + 57.1: 0 + 60: 0 + 65: 0 + 70: 261 + 3: _ZN9oceanbase5share25_make_tenant_switch_guardEv:11398 + 2: 278 + 2.1: 0 + 2.3: 0 + 2.6: 0 + 2.2: _ZN9oceanbase5share19ObTenantSwitchGuardC2Ev:0 + 0.5: 0 + 0.4: _ZNSt8functionIFiRN9oceanbase6common10ObLDHandleEEEC2Ev:0 + 1: _ZNSt14_Function_baseC2Ev:0 + 0: 0 + 3: _ZN9oceanbase5share19ObTenantSwitchGuardC2ERKS1_:5004 + 0.1: _ZNSt8functionIFiRN9oceanbase6common10ObLDHandleEEEC2Ev:1112 + 1: _ZNSt14_Function_baseC2Ev:1112 + 0: 278 + 2: _ZN9oceanbase5share19ObTenantSwitchGuard5resetEv:3892 + 2: 278 + 3: 278 + 4: 278 + 3.2: _ZN9oceanbase5share19ObTenantSwitchGuardD2Ev:2204 + 2: 257 _ZN9oceanbase5share19ObTenantSwitchGuard7releaseEv:284 + 3: 285 _ZNSt14_Function_baseD2Ev:295 + 3.1: 0 + 3.2: 0 + 56: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 56.2: _Z7load128RoPN5types9uint128_tE:0 + 2: 0 + 56.7: _Z6cas128PVN5types9uint128_tEPS0_S0_:0 + 3: 0 + 11: 0 +_ZN9oceanbase11transaction14ObTransService23handle_tx_commit_resultERKNS0_9ObTransIDEil:41890:297 + 3: 273 + 5: 273 + 6: 273 _ZN9oceanbase11transaction11ObTxDescMgr3getERKNS0_9ObTransIDERPNS0_8ObTxDescE:276 + 7.1: 1 + 10: 201 + 11: 217 + 12: 1 + 13.1: 1 + 16.1: 217 + 17.1: 1 + 22: 263 _ZN9oceanbase11transaction14ObTransService24handle_tx_commit_result_ERNS0_8ObTxDescEil:228 + 25.1: 231 _ZN9oceanbase11transaction8ObTxDesc17execute_commit_cbEv:251 + 27: 250 + 28: 250 _ZN9oceanbase11transaction11ObTxDescMgr6revertERNS0_8ObTxDescE:249 + 30: 254 + 10: _ZN9oceanbase6common10ObSpinLock4lockEv:4824 + 2: 201 _ZN9oceanbase6common12ObLatchMutex4lockEjl:216 + 24: _ZN9oceanbase6common10ObSpinLock6unlockEv:1315 + 2: 263 _ZN9oceanbase6common12ObLatchMutex6unlockEv:263 +_ZN9oceanbase7storage17ObLSTabletService21get_lock_memtable_mgrERNS0_19ObMemtableMgrHandleE:41684:1237 + 1: 1177 + 2: 1177 _ZN9oceanbase7storage19ObMemtableMgrHandle5resetEv:1193 + 3: 1275 _ZN9oceanbase7storage19ObMemtableMgrHandle16set_memtable_mgrEPNS0_14ObIMemtableMgrEPNS0_20ObITenantMetaObjPoolE:1373 +_ZNK9oceanbase3sql11ObResultSet19has_implicit_cursorEv:41635:1120 + 1: 1044 + 3: 1039 + 6: 1039 + 3: _ZNK9oceanbase3sql11ObResultSet16get_exec_contextEv:11484 + 1: 1044 + 1.2: 0 + 3.1: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:7273 + 2: 1039 + 4.3: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql20ObImplicitCursorInfoEE5emptyEv:11429 + 0: 1039 +_ZN9oceanbase11transaction12ObTransTimer23unregister_timeout_taskERNS0_14ObITimeoutTaskE:41613:1037 + 1: 1013 + 4: 1013 + 5.1: 0 + 9.1: 1013 + 11.1: 484 _ZN9oceanbase6common11ObTimeWheel6cancelEPNS0_15ObTimeWheelTaskE:504 + 21: 1016 + 9.1: _ZNK9oceanbase11transaction14ObITimeoutTask13is_registeredEv:4052 + 0: 1013 + 15: _ZN9oceanbase11transaction14ObITimeoutTask14set_registeredEb:0 + 0: 0 + 18: _ZN9oceanbase11transaction14ObITimeoutTask14set_registeredEb:2892 + 0: 482 +_ZNK9oceanbase4palf14LogEntryHeader9serializeEPclRl:41514:236 + 1: 222 + 4: 222 + 4.2: 222 + 14: 222 + 16: 222 + 6.1: _ZN9oceanbase6common13serialization10encode_i16EPclRls:6216 + 3: 222 + 4: 222 + 6: 222 + 7.1: _ZN9oceanbase6common13serialization10encode_i16EPclRls:4662 + 2: 222 + 4: 222 + 6: 222 + 8.1: _ZN9oceanbase6common13serialization10encode_i32EPclRli:3996 + 2: 222 + 4: 222 + 8: 222 + 9.1: _ZN9oceanbase6common13serialization10encode_i64EPclRll:3996 + 2: 222 + 4: 222 + 12: 222 + 10.1: _ZN9oceanbase6common13serialization10encode_i64EPclRll:3996 + 2: 222 + 4: 222 + 12: 222 + 11.1: _ZN9oceanbase6common13serialization10encode_i64EPclRll:4884 + 2: 222 + 4: 222 + 12: 222 +_ZN9oceanbase8memtable13ObMemtableCtx32remove_callbacks_for_fast_commitEv:41404:247 + 1: 236 + 2: 236 + 3: 236 + 7: 263 _ZN9oceanbase8memtable18ObTransCallbackMgr32remove_callbacks_for_fast_commitERb:265 + 7.1: 276 + 8.1: 0 + 9.1: 276 + 9.3: 0 + 13: 0 + 14.4: 278 + 14.6: 0 + 14.8: 235 _ZN9oceanbase6common11ObTimeGuardD2Ev:239 + 4: _ZN9oceanbase6common11ObTimeGuardC2EPKcl:11100 + 2: 226 + 3: 226 + 4: 226 + 6: 226 + 7: 226 + 8: 226 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:236 + 2: 236 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:254 + 5: _ZN9oceanbase6common20ObSmallSpinLockGuardINS0_15ObSmallSpinLockIhLl0ELl500ELl100EEEEC2ERS3_:6351 + 0: _ZN9oceanbase6common15ObSmallSpinLockIhLl0ELl500ELl100EE4lockEv:6351 + 5: 0 + 7: 0 + 9: 0 + 3.1: _ZN9oceanbase6common15ObSmallSpinLockIhLl0ELl500ELl100EE8try_lockEv:6351 + 3: 219 + 4: 219 + 5: 219 + 9.2: _ZN9oceanbase8memtable13ObMemtableCtx20reuse_log_generator_Ev:0 + 4: _ZN9oceanbase8memtable18ObRedoLogGenerator5reuseEv:0 + 3: 0 + 3: _ZN9oceanbase8memtable18ObTransCallbackMgr5beginEv:0 + 0: _ZN9oceanbase8memtable18ObTransCallbackMgr10get_guard_Ev:0 + 0: _ZN9oceanbase8memtable16ObTxCallbackList9get_guardEv:0 + 0: 0 + 3.1: _ZN9oceanbase8memtable24ObITransCallbackIteratoraSERKS1_:0 + 2: 0 + 14.4: _ZN9oceanbase6common20ObSmallSpinLockGuardINS0_15ObSmallSpinLockIhLl0ELl500ELl100EEEED2Ev:5405 + 0: _ZN9oceanbase6common15ObSmallSpinLockIhLl0ELl500ELl100EE6unlockEv:5405 + 2: 235 + 3: 235 + 14.5: _ZN9oceanbase6common20ObSmallSpinLockGuardINS0_15ObSmallSpinLockIhLl0ELl500ELl100EEEED2Ev:0 + 0: _ZN9oceanbase6common15ObSmallSpinLockIhLl0ELl500ELl100EE6unlockEv:0 + 2: 0 + 3: 0 +_ZN9oceanbase11transaction12ObLSTxCtxMgr14get_rec_log_tsERl:41280:0 + 1: 0 + 2: 0 + 4: 0 + 6: 0 + 7.1: 0 + 8: 0 + 9.2: 0 + 10.1: 0 + 11: 0 + 14.1: 0 + 16.1: 0 + 16.2: 0 + 17.1: 0 + 19.1: 0 + 20.1: 0 + 20.5: 0 + 21.1: 0 + 25: 0 + 26.8: 0 + 4: _ZN9oceanbase6common8TCRWLock10RLockGuardC2ERS1_:0 + 0: 0 + 9.1: _ZNK9oceanbase11transaction12ObLSTxCtxMgr10is_stoppedEv:0 + 0: _ZNK9oceanbase11transaction12ObLSTxCtxMgr11is_stopped_Ev:0 + 1: 0 + 1: _ZNK9oceanbase11transaction12ObLSTxCtxMgr11is_stopped_El:0 + 1: 0 + 14: _ZN9oceanbase11transaction18GetRecLogTSFunctor4initEv:0 + 2: 0 + 16.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE8for_eachINS0_18GetRecLogTSFunctorEEEiRT_:41280 + 3.1: 236 + 3.3: 236 + 4: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE22for_each_in_one_bucketINS0_18GetRecLogTSFunctorEEEiRT_l:35852 + 2: 211 + 7: 211 _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE19generate_value_arr_ElRNS_6common9ObSEArrayIPS3_Ll32ENS6_19ModulePageAllocatorELb0EEE:210 + 7.1: 195 + 8.1: 0 + 11.1: 195 + 12: 1 + 12.2: 1 _ZN9oceanbase11transaction18GetRecLogTSFunctorclEPNS0_10ObTransCtxE:1 + 12.3: 2 + 13: 0 + 15.1: 2 + 15.2: 2 + 16.1: 0 + 21: 196 _ZN9oceanbase6common13ObSEArrayImplIPNS_11transaction10ObTransCtxELl32ENS0_19ModulePageAllocatorELb0EED2Ev:221 + 21.1: 0 + 22: 236 + 6: _ZN9oceanbase6common9ObSEArrayIPNS_11transaction10ObTransCtxELl32ENS0_19ModulePageAllocatorELb0EEC2Ev:27641 + 0.1: 211 + 0.5: _ZN9oceanbase6common13ObSEArrayImplIPNS_11transaction10ObTransCtxELl32ENS0_19ModulePageAllocatorELb0EEC2ElRKS5_:25320 + 5: 211 + 6: 211 + 8: 211 + 17.1: 211 + 2: _ZN9oceanbase6common8ObIArrayIPNS_11transaction10ObTransCtxEEC2EPS4_l:4431 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_11transaction10ObTransCtxEEC2EPS4_l:4431 + 0: 211 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:8862 + 0: 211 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:3165 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:3165 + 2: 211 + 8: 211 + 10: _ZNK9oceanbase6common12ObIArrayWrapIPNS_11transaction10ObTransCtxEE5countEv:1365 + 0: 195 + 12.1: _ZN9oceanbase6common12ObIArrayWrapIPNS_11transaction10ObTransCtxEE2atEl:7 + 6: 1 + 15: _ZN9oceanbase6common12ObIArrayWrapIPNS_11transaction10ObTransCtxEE2atEl:14 + 6: 2 + 15.1: _ZN9oceanbase11transaction15ObTransHashLinkINS0_10ObTransCtxEE7dec_refEi:28 + 2: 2 + 3: 2 + 4.1: 0 + 16: _ZN9oceanbase6common12ObIArrayWrapIPNS_11transaction10ObTransCtxEE2atEl:0 + 6: 0 + 16.1: _ZN9oceanbase11transaction13TransCtxAlloc10free_valueEPNS0_10ObTransCtxE:0 + 2: 0 + 3: 0 + 19: _ZN9oceanbase11transaction12ObLSTxCtxMgr21get_aggre_rec_log_ts_Ev:0 + 4: 0 + 5: 0 + 10: 0 + 20: _ZN9oceanbase11transaction18GetRecLogTSFunctor14get_rec_log_tsEv:0 + 0: 0 + 26.8: _ZN9oceanbase6common8TCRWLock10RLockGuardD2Ev:0 + 0: _ZN9oceanbase6common8TCRWLock8rdunlockEv:0 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:0 + 0: 0 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPi:0 + 2: 0 + 4.1: 0 + 4.2: 0 + 6: 0 + 6.1: 0 + 10: 0 + 2: _ZN9oceanbase6common8get_itidEv:0 + 4: 0 + 5: 0 + 6: 0 + 8: 0 + 11: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:0 + 2: 0 + 2.1: 0 + 3: 0 + 26.9: _ZN9oceanbase6common8TCRWLock10RLockGuardD2Ev:0 + 0: _ZN9oceanbase6common8TCRWLock8rdunlockEv:0 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:0 + 0: 0 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPi:0 + 2: 0 + 4.1: 0 + 4.2: 0 + 6: 0 + 6.1: 0 + 10: 0 + 2: _ZN9oceanbase6common8get_itidEv:0 + 4: 0 + 5: 0 + 6: 0 + 8: 0 + 11: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:0 + 2: 0 + 2.1: 0 + 3: 0 +_ZN9oceanbase8memtable15RowHolderMapper17reset_hash_holderERKNS_6common10ObTabletIDERKNS0_13ObMemtableKeyERKNS_11transaction9ObTransIDE:41145:789 + 2: 774 + 3: 740 + 4: 0 + 5: 0 + 6: 0 + 9.2: 0 + 11.1: 0 + 15.3: 751 + 3: _ZN9oceanbase5share8detector21ObDeadLockDetectorMgr19is_deadlock_enabledEv:6694 + 0: 774 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:797 + 5: _ZN9oceanbase8memtableL11hash_rowkeyERKNS_6common10ObTabletIDERKNS0_13ObMemtableKeyE:0 + 2: 0 + 5: 0 + 3: _ZNK9oceanbase8memtable13ObMemtableKey4hashEv:0 + 0: 0 + 0.1: _ZNK9oceanbase8memtable13ObMemtableKey9calc_hashEv:0 + 2: 0 + 3: 0 + 4: 0 + 4: _ZN9oceanbase6common10murmurhashEPKvim:0 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:0 + 5: 0 + 13: 0 + 14: 0 + 15: 0 + 17: 0 + 18: 0 + 41: 0 + 42: 0 + 43: 0 + 9: _ZN9oceanbase6common9ObIntWarpC2Em:0 + 0: 0 + 9.1: _ZN9oceanbase6common15ObLinearHashMapINS0_9ObIntWarpENS_11transaction9ObTransIDENS0_14ShareMemMgrTagEE8erase_ifIZNS_8memtable15RowHolderMapper17reset_hash_holderERKNS0_10ObTabletIDERKNS8_13ObMemtableKeyERKS4_E3$_8EEiRKS2_RT_:0 + 2: _ZN9oceanbase6common15ObLinearHashMapINS0_9ObIntWarpENS_11transaction9ObTransIDENS0_14ShareMemMgrTagEE12do_erase_if_IZNS_8memtable15RowHolderMapper17reset_hash_holderERKNS0_10ObTabletIDERKNS8_13ObMemtableKeyERKS4_E3$_8EEiRKS2_RT_:0 + 3: 0 + 4: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 14: 0 + 15: 0 + 18: 0 + 19: 0 + 20: 0 + 23.1: 0 + 33.1: 0 + 33.3: 0 + 34: 0 + 35: 0 + 38: 0 + 43.1: 0 + 56: 0 + 58: 0 + 60: 0 + 9: _ZN9oceanbase6common15ObLinearHashMapINS0_9ObIntWarpENS_11transaction9ObTransIDENS0_14ShareMemMgrTagEE16is_bkt_nonempty_EPKNS6_6BucketE:0 + 2: 0 + 2.1: 0 + 10: _ZN9oceanbase6common5EqualINS0_9ObIntWarpEEclERKS2_S5_:0 + 4.3: _ZNK9oceanbase6common9ObIntWarpeqERKS1_:0 + 2: _ZNK9oceanbase6common9ObIntWarp7compareERKS1_:0 + 3: 0 + 11: _ZZN9oceanbase8memtable15RowHolderMapper17reset_hash_holderERKNS_6common10ObTabletIDERKNS0_13ObMemtableKeyERKNS_11transaction9ObTransIDEENK3$_8clERKNS2_9ObIntWarpESC_:0 + 1: _ZNK9oceanbase11transaction9ObTransIDeqERKS1_:0 + 1: 0 + 13: _ZN9oceanbase11transaction9ObTransIDD2Ev:0 + 0: 0 + 16: _ZN9oceanbase6common15ObLinearHashMapINS0_9ObIntWarpENS_11transaction9ObTransIDENS0_14ShareMemMgrTagEE17set_bkt_nonempty_EPNS6_6BucketEb:0 + 5: 0 + 5.3: 0 + 22: _ZN9oceanbase11transaction9ObTransIDD2Ev:0 + 0: 0 + 23: _ZN9oceanbase6common15ObLinearHashMapINS0_9ObIntWarpENS_11transaction9ObTransIDENS0_14ShareMemMgrTagEE13HashMapMemMgrIS5_vE14get_node_allocEv:0 + 2: _ZN9oceanbase6common15ObLinearHashMapINS0_9ObIntWarpENS_11transaction9ObTransIDENS0_14ShareMemMgrTagEE17HashMapMemMgrCore12get_instanceEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 34: _ZN9oceanbase6common5EqualINS0_9ObIntWarpEEclERKS2_S5_:0 + 4.3: _ZNK9oceanbase6common9ObIntWarpeqERKS1_:0 + 2: _ZNK9oceanbase6common9ObIntWarp7compareERKS1_:0 + 3: 0 + 35: _ZZN9oceanbase8memtable15RowHolderMapper17reset_hash_holderERKNS_6common10ObTabletIDERKNS0_13ObMemtableKeyERKNS_11transaction9ObTransIDEENK3$_8clERKNS2_9ObIntWarpESC_:0 + 1: _ZNK9oceanbase11transaction9ObTransIDeqERKS1_:0 + 1: 0 + 37: _ZN9oceanbase11transaction9ObTransIDD2Ev:0 + 0: 0 + 43: _ZN9oceanbase6common15ObLinearHashMapINS0_9ObIntWarpENS_11transaction9ObTransIDENS0_14ShareMemMgrTagEE13HashMapMemMgrIS5_vE14get_node_allocEv:0 + 2: _ZN9oceanbase6common15ObLinearHashMapINS0_9ObIntWarpENS_11transaction9ObTransIDENS0_14ShareMemMgrTagEE17HashMapMemMgrCore12get_instanceEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 56: _ZN9oceanbase6common15ObLinearHashMapINS0_9ObIntWarpENS_11transaction9ObTransIDENS0_14ShareMemMgrTagEE18unload_access_bkt_EPNS6_6BucketES8_:0 + 3.1: 0 + 5: _ZN9oceanbase6common15ObLinearHashMapINS0_9ObIntWarpENS_11transaction9ObTransIDENS0_14ShareMemMgrTagEE13set_bkt_lock_EPNS6_6BucketEb:0 + 24: 0 + 6: _ZN9oceanbase6common15ObLinearHashMapINS0_9ObIntWarpENS_11transaction9ObTransIDENS0_14ShareMemMgrTagEE15unload_haz_seg_EPNS6_6BucketE:0 + 2: 0 + 2: _ZN9oceanbase6common13ObExternalRef7releaseEPv:0 + 1: 0 + 2: _ZN9oceanbase6common13ObExternalRef4xrefEPvi:0 + 0: 0 + 0: _ZN9oceanbase6common13ObExternalRef6locateEPv:0 + 0: 0 + 0: _ZN9oceanbase6common13ObExternalRef4hashEm:0 + 1: 0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 59: _ZN9oceanbase6common15ObLinearHashMapINS0_9ObIntWarpENS_11transaction9ObTransIDENS0_14ShareMemMgrTagEE8add_cnt_El:0 + 3: 0 + 2: _ZN9oceanbase6common15ObLinearHashMapINS0_9ObIntWarpENS_11transaction9ObTransIDENS0_14ShareMemMgrTagEE14get_thread_id_Ev:0 + 2: _ZN9oceanbase6common8get_itidEv:0 + 4: 0 + 5: 0 + 6: 0 + 8: 0 + 3: _ZN9oceanbase6common15ObLinearHashMapINS0_9ObIntWarpENS_11transaction9ObTransIDENS0_14ShareMemMgrTagEE5Cnter3addEll:0 + 3: 0 + 4.1: 0 + 8: 0 + 9: 0 +_ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_NS0_13LabelInfoItemEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS6_EELi82ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKS3_RPKS6_l:40984:305 + 3: 284 + 5: 284 + 5.1: 284 + 6.1: 5 + 9: 284 _ZNK9oceanbase6common4hash9hash_funcINS0_8ObStringEEclERKS3_:296 + 10: 255 + 11: 255 + 16: 284 _ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_NS0_13LabelInfoItemEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS6_EELi82ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE32internal_get_with_timeout_unsafeERNS1_17ObHashTableBucketIS6_NS0_7ObLatchENS1_5NCondEEERKS3_RPKS6_l:286 + 19: 258 + 5: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringENS0_13LabelInfoItemEEENS0_7ObLatchENS1_5NCondEEEEEbRKT_:5112 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringENS0_13LabelInfoItemEEENS0_7ObLatchENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:5112 + 2: 284 + 65497: 284 + 14.1: _ZN9oceanbase6common4hash15LatchReadLockerC2ERNS0_7ObLatchE:5769 + 3: 295 _ZN9oceanbase6common7ObLatch6rdlockEjl:272 + 4.1: 0 + 18: _ZN9oceanbase6common4hash15LatchReadLockerD2Ev:3426 + 2: 306 + 3: 306 _ZN9oceanbase6common7ObLatch6unlockEPKj:306 + 3.1: 5 + 18.1: _ZN9oceanbase6common4hash15LatchReadLockerD2Ev:125 + 2: 5 + 3: 5 + 3.1: 5 +_ZN9oceanbase3sql15ObResolverUtils26get_stmt_type_by_item_typeE10ObItemType:40801:944 + 3: 925 + 211: 479 +_ZN9oceanbase11transaction14ClogBufFactory5allocEv:40663:530 + 0: 498 + 0.1: 0 + 0.3: 0 + 0.5: 0 + 0.9: 498 _ZN9oceanbase6common17get_resource_poolINS_11transaction6LogBufILl1965056EEEXadL_ZNS0_8ObModIds17OB_TRANS_CLOG_BUFEEEEERNS0_14ObResourcePoolIT_NS0_10RPStrLabelIXT0_EEEEEv:499 + 0.10: 498 + 0.11: 498 + 0.12: 498 _ZN9oceanbase6common14ObTscTimestamp12current_timeEv:494 + 0.13: 502 _ZN9oceanbase6common18ObBaseResourcePoolINS_11transaction6LogBufILl1965056EEENS0_10RPStrLabelIXadL_ZNS0_8ObModIds17OB_TRANS_CLOG_BUFEEEEEE5allocEv:513 + 0: _ZN9oceanbase6common14ObTscTimestamp12get_instanceEv:7365 + 2: 491 + 2.1: 0 + 2.3: 0 + 2.6: 0 + 117: 491 + 2.2: _ZN9oceanbase6common14ObTscTimestampC2Ev:0 + 1: 0 +_ZN9oceanbase10logservice15ObLogBaseHeaderC2ENS0_13ObLogBaseTypeENS0_19ObReplayBarrierTypeEl:40647:787 + 3: 765 + 4: 765 + 5: 765 + 6: 765 + 7: 765 + 8: 765 + 13: 0 + 16: 0 + 19: 0 + 20.1: 0 + 24: 782 +_ZN9oceanbase10logservice15ObLogBaseHeaderC1ENS0_13ObLogBaseTypeENS0_19ObReplayBarrierTypeEl:40647:787 + 3: 765 + 4: 765 + 5: 765 + 6: 765 + 7: 765 + 8: 765 + 13: 0 + 16: 0 + 19: 0 + 20.1: 0 + 24: 782 +_ZN9oceanbase3sql20ObAggregateProcessor7prepareERNS1_8GroupRowE:40428:268 + 1: 264 + 2: 264 + 4.1: 253 + 4.2: 507 + 4.3: 507 + 5: 254 + 6: 0 + 7: 254 + 10: 0 + 10.1: 0 + 11: 0 + 12.1: 0 + 13.1: 0 + 14: 0 + 15.1: 0 + 24: 267 _ZN9oceanbase3sql20ObAggregateProcessor7processERNS1_8GroupRowEb:263 + 25.1: 0 + 28: 267 + 5: _ZN9oceanbase6common12ObIArrayWrapINS_3sql10ObAggrInfoEE2atEl:1016 + 6: 254 + 8: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell9get_extraEv:0 + 0: 0 + 13.1: _ZNK9oceanbase3sql10ObAggrInfo13get_expr_typeEv:0 + 1: 0 + 1.1: 0 + 1.4: 0 +_ZN9oceanbase3sql15ObTableInsertOp15calc_tablet_locERKNS0_10ObInsCtDefERNS0_10ObInsRtDefERPNS0_14ObDASTabletLocE:40338:264 + 3: 246 + 4: 246 + 5: 246 + 6: 246 + 7: 246 + 9: 246 + 10: 246 _ZN9oceanbase3sql23ObExprCalcPartitionBase23calc_part_and_tablet_idEPKNS0_6ObExprERNS0_9ObEvalCtxERmRNS_6common10ObTabletIDE:253 + 10.1: 241 + 11.1: 0 + 12.1: 241 + 13: 241 + 14: 0 + 17.2: 241 _ZN9oceanbase3sql8ObDASCtx19extended_tablet_locERNS0_13ObDASTableLocERKNS_6common10ObTabletIDERPNS0_14ObDASTabletLocE:269 + 17.3: 266 + 18.1: 0 + 22: 0 + 24: 266 + 5: _ZN9oceanbase3sql11get_my_specINS0_15ObTableInsertOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:984 + 5: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:984 + 2: 246 + 8: _ZN9oceanbase6common10ObTabletIDC2Em:1722 + 0: 246 + 12.1: _ZNK9oceanbase6common12ObIArrayWrapImE5emptyEv:1687 + 0: 241 + 0: _ZNK9oceanbase6common12ObIArrayWrapImE5countEv:964 + 0: 241 + 13.1: _ZN9oceanbase6common18has_exist_in_arrayImEEbRKNS0_8ObIArrayIT_EERKS3_Pl:0 + 4.1: 0 + 4.3: 0 + 5: 0 + 5: _ZNK9oceanbase6common12ObIArrayWrapImE2atEl:0 + 17.1: _ZN9oceanbase3sql13ObExecContext11get_das_ctxEv:2169 + 0: 241 + 22: _ZN9oceanbase3sql12get_my_inputINS0_15ObTableInsertOpEEERNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE5InputERKS5_:0 + 7: _ZNK9oceanbase3sql15ObTableModifyOp9get_inputEv:0 + 2: 0 + 22.1: _ZN9oceanbase3sql20ObTableModifyOpInput14get_tablet_locEv:0 + 0: 0 +_ZN9oceanbase3sql12ObDMLService22init_related_das_rtdefERNS0_10ObDMLRtCtxERKNS_6common12ObFixedArrayIPNS0_17ObDASDMLBaseCtDefENS4_12ObIAllocatorEEERNS4_11ObArrayWrapIPNS0_17ObDASDMLBaseRtDefEEE:40146:571 + 3: 516 + 4: 516 + 5: 516 + 6.1: 0 + 7: 0 + 7.1: 0 + 8.1: 0 + 11.1: 516 + 13: 0 + 14: 0 + 14.1: 0 + 15.1: 0 + 16.1: 0 + 16.2: 0 + 20.1: 0 + 22: 0 + 25: 510 + 5: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql17ObDASDMLBaseCtDefEE5emptyEv:2580 + 0: 516 + 6: _ZN9oceanbase3sql10ObDMLRtCtx12get_exec_ctxEv:0 + 0: _ZN9oceanbase3sql8ObDASRef12get_exec_ctxEv:0 + 0: 0 + 7: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql17ObDASDMLBaseCtDefEE5countEv:0 + 0: 0 + 12.2: _ZN9oceanbase3sql8ObDASCtx15get_das_factoryEv:0 + 0: 0 + 14: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql17ObDASDMLBaseCtDefEE2atEl:0 + 6: 0 + 16.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql17ObDASDMLBaseCtDefEE2atEl:0 + 6: 0 + 22: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql17ObDASDMLBaseRtDefEE2atEl:0 + 6: 0 +_ZN9oceanbase8memtable10ObMemtable22set_max_schema_versionEl:40062:951 + 1: 912 + 2: 912 + 3.1: 0 + 7: 901 + 5: _ZN9oceanbase6common10inc_updateIlEElPT_S2_:10032 + 3: 912 + 4.1: 912 + 5: 0 +_ZN9oceanbase6common13ObSEArrayImplINS0_5ObObjELl1ENS0_19ModulePageAllocatorELb1EED2Ev:39975:582 + 1: 533 + 3: 533 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS0_5ObObjELl1ENS0_19ModulePageAllocatorELb1EE7destroyEv:20254 + 9: 533 + 11: 0 + 13: 533 + 15: 533 + 24: 533 + 10: _ZN9oceanbase6common13ObSEArrayImplINS0_5ObObjELl1ENS0_19ModulePageAllocatorELb1EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase6common18ObBaseResourcePoolINS_11transaction6LogBufILl1965056EEENS0_10RPStrLabelIXadL_ZNS0_8ObModIds17OB_TRANS_CLOG_BUFEEEEEE5allocEv:39917:513 + 1: 491 + 3: 491 + 4: 491 _ZN9oceanbase6common18ObBaseResourcePoolINS_11transaction6LogBufILl1965056EEENS0_10RPStrLabelIXadL_ZNS0_8ObModIds17OB_TRANS_CLOG_BUFEEEEEE11alloc_node_Ev:494 + 5: 445 + 7: 445 + 10: 503 + 10.1: 0 + 11: 0 + 13: 0 + 14: 0 + 15: 0 + 20: 0 + 21: 0 + 25: 0 + 26: 0 + 27: 0 + 28: 0 + 30: 0 + 31: 0 + 34.1: 0 + 36: 503 + 9: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:1954 + 2: 503 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:457 +_ZN9oceanbase11transaction9tablelock12ObLockMemCtx5resetEv:39914:227 + 1: 219 + 2: 219 + 2.1: 219 + 4: 0 + 5: 0 + 7: 219 + 8: 219 + 9: 219 _ZN9oceanbase7storage15ObTableHandleV25resetEv:264 + 11: 0 + 12: 287 + 2: _ZN9oceanbase6common7ObDListINS_11transaction9tablelock22ObMemCtxLockOpLinkNodeEE9get_firstEv:1533 + 0: 219 + 3: _ZN9oceanbase6common7ObDListINS_11transaction9tablelock22ObMemCtxLockOpLinkNodeEE6removeEPS4_:0 + 3: 0 + 7: 0 + 6: _ZN9oceanbase6common11ObDLinkBaseINS_11transaction9tablelock22ObMemCtxLockOpLinkNodeEE6unlinkEv:0 + 2: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 10: _ZN9oceanbase11transaction9tablelock14ObArenaObjPoolINS1_22ObMemCtxLockOpLinkNodeELl1EE5resetEv:10332 + 2: 287 + 3.1: 0 + 5: 287 + 6: 287 + 11: _ZN9oceanbase11transaction9tablelock14ObArenaObjPoolINS1_17ObOBJLockCallbackELl1EE5resetEv:12054 + 2: 287 + 3.1: 0 + 5: 287 + 6: 287 +_ZN9oceanbase8memtable16ObQueryAllocator5allocEl:39825:654 + 1: 637 + 3: 637 _ZN9oceanbase6common15ObFIFOAllocator5allocEl:668 + 4.1: 0 + 7.1: 614 + 8: 614 + 10: 614 +_ZN9oceanbase3sql9ObLogPlan22calc_intersect_serversERKNS_6common8ObIArrayIPNS0_15ObCandiTableLocEEERNS2_6ObListINS2_6ObAddrENS2_16ObArenaAllocatorEEE:39650:256 + 2: 244 + 3: 244 + 7.1: 0 + 7.4: 237 + 7.5: 237 + 7.7: 0 + 8.1: 0 + 9: 0 + 10: 0 + 11.1: 0 + 14.1: 0 + 14.4: 0 + 14.5: 0 + 17: 0 + 18.1: 0 + 18.3: 0 + 18.4: 0 + 18.6: 0 + 19.2: 0 + 19.3: 0 + 20.1: 0 + 25.1: 0 + 25.4: 0 + 28.1: 0 + 28.4: 0 + 28.5: 0 + 29.2: 0 + 29.3: 0 + 34.2: 0 + 35.1: 0 + 39.2: 0 + 47.17: 237 + 5: _ZN9oceanbase3sql13ObRoutePolicy16CandidateReplicaC2Ev:13063 + 1: 244 _ZN9oceanbase5share19ObLSReplicaLocationC1Ev:251 + 3: 237 + 4: 237 + 5: 237 + 2: _ZN9oceanbase3sql13ObRoutePolicy16ReplicaAttributeC2Ev:5925 + 1: 237 + 6: 237 + 7: 237 + 6: _ZN9oceanbase6common6ObListINS0_6ObAddrENS0_16ObArenaAllocatorEE5resetEv:6399 + 2: _ZN9oceanbase6common6ObListINS0_6ObAddrENS0_16ObArenaAllocatorEE5clearEv:6399 + 3.1: 237 + 8: 237 + 9: 237 + 10: 237 + 8: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql15ObCandiTableLocEE2atEl:0 + 6: 0 + 15: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql16ObCandiTabletLocEE2atEl:0 + 6: 0 + 16.1: _ZNK9oceanbase3sql14ObOptTabletLoc21get_replica_locationsEv:0 + 0: 0 + 19: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql13ObRoutePolicy16CandidateReplicaEE2atEl:0 + 6: 0 + 19.1: _ZNK9oceanbase5share19ObLSReplicaLocation10get_serverEv:0 + 0: 0 + 25.3: _ZNK9oceanbase6common4list8IteratorINS0_6ObListINS0_6ObAddrENS0_16ObArenaAllocatorEEEEneERKS7_:0 + 2: 0 + 26: _ZNK9oceanbase6common4list8IteratorINS0_6ObListINS0_6ObAddrENS0_16ObArenaAllocatorEEEEdeEv:0 + 3: 0 + 34.1: _ZN9oceanbase6common6ObListINS0_6ObAddrENS0_16ObArenaAllocatorEE5eraseENS0_4list8IteratorIS4_EE:0 + 3: 0 + 5.1: 0 + 6: 0 + 10: 0 + 11: 0 + 13: 0 + 39.1: _ZNK9oceanbase6common6ObListINS0_6ObAddrENS0_16ObArenaAllocatorEE5emptyEv:0 + 2: 0 +_ZN9oceanbase6common30common_string_unsigned_integerERKmRKNS0_9ObObjTypeERKNS0_15ObCollationTypeERKNS0_8ObStringEbRm:39608:134 + 0: 0 + 6: 124 + 8: 124 + 9: 0 + 11: 124 + 12: 124 + 13: 124 + 13.1: 124 + 14: 0 + 14.2: 0 + 15: 0 + 17.1: 0 + 17.2: 0 + 19: 0 + 21.1: 0 + 21.15: 0 + 21.26: 0 + 26: 140 + 26.2: 124 _ZN9oceanbase6common9ObCharset12strntoullrndEPKcmiPPcPi:126 + 27: 140 + 27.1: 0 + 30: 140 + 34: 150 + 9: _ZN9oceanbase6common13hex_to_uint64ERKNS0_8ObStringE:0 + 4: 0 + 5: 0 + 6: 0 + 6.1: 0 + 6.3: 0 + 8: 0 + 2: _ZNK9oceanbase6common8ObString6lengthEv:0 + 0: 0 + 14: _ZNK9oceanbase6common8ObString3ptrEv:0 + 0: 0 + 14.1: _ZNK9oceanbase6common8ObString6lengthEv:0 + 0: 0 + 17.1: _ZNK9oceanbase6common8ObString3ptrEv:0 + 0: 0 + 17.3: _ZNK9oceanbase6common8ObString6lengthEv:0 + 0: 0 + 21.1: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 26: _ZNK9oceanbase6common8ObString3ptrEv:620 + 0: 124 + 26.1: _ZNK9oceanbase6common8ObString6lengthEv:1612 + 0: 124 + 30: _ZNK9oceanbase6common8ObString3ptrEv:700 + 0: 140 + 30.1: _ZNK9oceanbase6common8ObString6lengthEv:1820 + 0: 140 + 30.2: _ZN9oceanbase6common21check_convert_str_errEPKcS2_iiRKNS0_15ObCollationTypeE:19808 + 6: 140 + 8: 140 + 9: 0 + 10.1: 0 + 11.1: 140 + 12: 0 + 15: 144 + 16: 0 + 18: 144 + 20: 150 _ZN9oceanbase6common9ObCharset8scan_strEPKcS3_i:152 + 23: 150 + 24: 0 + 28: 0 + 11.1: _ZN9oceanbase3lib14is_oracle_modeEv:6440 + 2: _ZN9oceanbase3lib15get_compat_modeEv:6440 + 2: 140 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:3500 + 2: 140 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 18: _ZN9oceanbase3lib13is_mysql_modeEv:288 + 2: 144 +_ZN9oceanbase11transaction17ObTransCtxFactory5allocEl:39432:295 + 1: 269 + 6: 269 + 9: 269 + 9.1: 0 + 10.1: 0 + 13.1: 264 + 13.2: 269 _ZN9oceanbase6common18ObServerObjectPoolINS_11transaction14ObPartTransCtxEE13borrow_objectEv:269 + 14: 264 + 24.1: 0 + 28: 264 + 28.1: 0 + 28.3: 0 + 28.4: 264 _ZN9oceanbase6common14ObTscTimestamp12current_timeEv:265 + 29.1: 0 + 33: 0 + 37: 264 + 13.1: _ZN9oceanbase6common18ObServerObjectPoolINS_11transaction14ObPartTransCtxEE12get_instanceEv:4573 + 1: 269 + 1.1: 0 + 1.2: 0 + 1.4: 0 + 1.6: 0 + 28: _ZN9oceanbase6common14ObTscTimestamp12get_instanceEv:4488 + 2: 264 + 2.1: 0 + 2.3: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common14ObTscTimestampC2Ev:0 + 1: 0 +_ZN9oceanbase11transaction12ObTxLogBlockC2Ev:39388:234 + 0: 223 + 1: 223 + 3: 251 + 3.1: 0 + 0: _ZN9oceanbase6common9ObSEArrayINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EEC2Ev:31666 + 0.1: 223 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EEC2ElRKS4_:28321 + 2: 223 + 5: 223 + 6: 223 + 8: 223 + 17.1: 223 + 2: _ZN9oceanbase6common8ObIArrayINS_11transaction9ObTxCbArgEEC2EPS3_l:2230 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_11transaction9ObTxCbArgEEC2EPS3_l:2230 + 0: 223 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:11819 + 0: 223 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:4683 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:4683 + 2: 223 + 8: 223 + 2: _ZN9oceanbase11transaction12ObTxLogBlock5resetEv:4014 + 6: 223 + 9: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EE5resetEv:892 + 0: 223 _ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EE7destroyEv:244 +_ZN9oceanbase11transaction12ObTxLogBlockC1Ev:39388:234 + 0: 223 + 1: 223 + 3: 251 + 3.1: 0 + 0: _ZN9oceanbase6common9ObSEArrayINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EEC2Ev:31666 + 0.1: 223 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EEC2ElRKS4_:28321 + 2: 223 + 5: 223 + 6: 223 + 8: 223 + 17.1: 223 + 2: _ZN9oceanbase6common8ObIArrayINS_11transaction9ObTxCbArgEEC2EPS3_l:2230 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_11transaction9ObTxCbArgEEC2EPS3_l:2230 + 0: 223 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:11819 + 0: 223 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:4683 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:4683 + 2: 223 + 8: 223 + 2: _ZN9oceanbase11transaction12ObTxLogBlock5resetEv:4014 + 6: 223 + 9: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EE5resetEv:892 + 0: 223 _ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EE7destroyEv:244 +_ZN9oceanbase11transaction14ObPartTransCtx24generate_commit_version_Ev:39338:263 + 1: 261 + 2: 261 + 3: 261 _ZNK9oceanbase11transaction11ObCtxTxData18get_commit_versionEv:276 + 4: 249 + 5: 267 _ZN9oceanbase11transaction14ObPartTransCtx8get_gts_ERl:263 + 7.1: 3 + 11: 267 + 12: 267 + 13: 296 + 13.1: 296 _ZN9oceanbase11transaction11ObCtxTxData18set_commit_versionEl:316 + 14.1: 3 + 19: 269 + 11: _ZN9oceanbase8memtable10ObIMvccCtx17set_trans_versionEl:1869 + 0: 267 + 12.1: _ZNK9oceanbase11transaction14ObTxVersionMgr15get_max_read_tsEv:9432 + 2: 267 + 3.1: 267 _ZZNK9oceanbase11transaction14ObTxVersionMgr15get_max_read_tsEvENKUlPKcE_clES3_:289 + 4: 296 + 13: _ZN9oceanbase6common3maxEll:2072 + 2: 296 +_ZN9oceanbase6common16ObKVCacheInstMap14get_cache_instERKNS0_16ObKVCacheInstKeyERNS0_19ObKVCacheInstHandleE:39285:78 + 3: 76 + 4: 76 + 5: 76 + 6: 0 + 7.1: 0 + 8.1: 76 + 9: 0 + 10.1: 0 + 16: 79 + 17.1: 79 + 23: 82 + 25.1: 0 + 29.1: 0 + 30.1: 0 + 31.1: 0 + 31.2: 0 + 32.1: 0 + 33.1: 0 + 33.2: 0 + 33.3: 0 + 35.2: 0 + 36.1: 0 + 38: 0 + 39: 0 + 40: 0 + 47: 0 + 48: 0 + 49: 0 + 50.1: 0 + 51.1: 0 + 53.1: 0 + 55.1: 0 + 61: 0 + 61.1: 0 + 63: 82 + 64: 82 + 65: 82 + 68: 82 + 8.1: _ZNK9oceanbase6common16ObKVCacheInstKey8is_validEv:1368 + 0: 76 + 1.1: 76 + 12: _ZN9oceanbase6common19ObKVCacheInstHandle5resetEv:1234 + 2: 76 + 2.1: 0 + 6: 79 + 3: _ZN9oceanbase6common16ObKVCacheInstMap11de_inst_refEPNS0_13ObKVCacheInstE:0 + 3: 0 + 16: _ZN9oceanbase6common7DRWLock11RDLockGuardC2ERS1_:8670 + 0: 79 + 2: 70 + 3.1: 0 + 2: _ZN9oceanbase6common7DRWLock6rdlockEv:7031 + 2: 79 + 2.1: 79 _ZN9oceanbase6common7ObLatch6rdlockEjl:82 + 2: _ZN9oceanbase6common8get_itidEv:2212 + 4: 79 + 5: 0 + 6: 0 + 8: 0 + 17: _ZNK9oceanbase6common4hash9ObHashMapINS0_16ObKVCacheInstKeyEPNS0_13ObKVCacheInstENS1_19NoPthreadDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_S5_EEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKS3_RS5_l:8853 + 7: _ZN9oceanbase6common4hash11ObHashTableINS0_16ObKVCacheInstKeyENS1_11HashMapPairIS3_PNS0_13ObKVCacheInstEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKS3_RS7_l:8853 + 5: 70 + 5.1: 70 + 6.1: 0 + 10: 70 + 19: 79 + 5: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_16ObKVCacheInstKeyEPNS0_13ObKVCacheInstEEENS1_5NLockENS1_5NCondEEEEEbRKT_:1260 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_16ObKVCacheInstKeyEPNS0_13ObKVCacheInstEEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:1260 + 2: 70 + 9: _ZNK9oceanbase6common4hash9hash_funcINS0_16ObKVCacheInstKeyEEclERKS3_:980 + 2: _ZNK9oceanbase6common16ObKVCacheInstKey4hashEv:980 + 0: 70 + 18: _ZN9oceanbase6common4hash11ObHashTableINS0_16ObKVCacheInstKeyENS1_11HashMapPairIS3_PNS0_13ObKVCacheInstEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE32internal_get_with_timeout_unsafeERNS1_17ObHashTableBucketIS7_NS1_5NLockENS1_5NCondEEERKS3_RPKS7_l:4048 + 6: _ZNK9oceanbase6common4hash11ObHashTableINS0_16ObKVCacheInstKeyENS1_11HashMapPairIS3_PNS0_13ObKVCacheInstEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE12internal_getERKNS1_17ObHashTableBucketIS7_NS1_5NLockENS1_5NCondEEERKS3_RPKS7_Rb:4048 + 6: 70 + 8.1: 70 + 10: 79 + 14: 79 + 16: 0 + 9: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_11HashMapPairINS0_16ObKVCacheInstKeyEPNS0_13ObKVCacheInstEEEE16check_magic_codeEv:237 + 0: 79 + 9.1: _ZL12abort_unlessb:158 + 5: 79 + 6: 0 + 10.1: _ZNK9oceanbase6common4hash8equal_toINS0_16ObKVCacheInstKeyEEclERKS3_S6_:316 + 2: _ZNK9oceanbase6common16ObKVCacheInstKeyeqERKS1_:316 + 2: 79 + 21: _ZN9oceanbase6common11copy_assignINS0_4hash11HashMapPairINS0_16ObKVCacheInstKeyEPNS0_13ObKVCacheInstEEEEEiRT_RKS8_:316 + 2: _ZN9oceanbase6common16copy_assign_wrapINS0_4hash11HashMapPairINS0_16ObKVCacheInstKeyEPNS0_13ObKVCacheInstEEEEEiRT_RKS8_NS0_8BoolTypeILb1EEE:316 + 2: _ZN9oceanbase6common4hash11HashMapPairINS0_16ObKVCacheInstKeyEPNS0_13ObKVCacheInstEE6assignERKS6_:316 + 5.1: _ZN9oceanbase6common11copy_assignIPNS0_13ObKVCacheInstEEEiRT_RKS4_:316 + 2: _ZN9oceanbase6common16copy_assign_wrapIPNS0_13ObKVCacheInstEEEiRT_RKS4_NS0_8BoolTypeILb0EEE:316 + 2: 79 + 19: _ZN9oceanbase6common16ObKVCacheInstMap12add_inst_refEPNS0_13ObKVCacheInstE:1540 + 2: 79 + 3: 75 + 21: _ZN9oceanbase6common7DRWLock11RDLockGuardD2Ev:0 + 2: 0 + 3: 0 + 3.1: 0 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase6common7DRWLock8rdunlockEv:0 + 2: 0 + 2.1: 0 + 2: _ZN9oceanbase6common8get_itidEv:0 + 4: 0 + 5: 0 + 6: 0 + 8: 0 + 21.1: _ZN9oceanbase6common7DRWLock11RDLockGuardD2Ev:7402 + 2: 76 + 3: 85 + 3.1: 82 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase6common7DRWLock8rdunlockEv:5780 + 2: 85 + 2.1: 85 _ZN9oceanbase6common7ObLatch6unlockEPKj:86 + 2: _ZN9oceanbase6common8get_itidEv:2380 + 4: 85 + 5: 0 + 6: 0 + 8: 0 + 24: _ZN9oceanbase6common7DRWLock11WRLockGuardC2ERS1_:0 + 0: 0 + 2: 0 + 3.1: 0 + 25: _ZNK9oceanbase6common4hash9ObHashMapINS0_16ObKVCacheInstKeyEPNS0_13ObKVCacheInstENS1_19NoPthreadDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_S5_EEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKS3_RS5_l:0 + 7: _ZN9oceanbase6common4hash11ObHashTableINS0_16ObKVCacheInstKeyENS1_11HashMapPairIS3_PNS0_13ObKVCacheInstEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKS3_RS7_l:0 + 5: 0 + 5.1: 0 + 6.1: 0 + 10: 0 + 19: 0 + 5: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_16ObKVCacheInstKeyEPNS0_13ObKVCacheInstEEENS1_5NLockENS1_5NCondEEEEEbRKT_:0 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_16ObKVCacheInstKeyEPNS0_13ObKVCacheInstEEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:0 + 2: 0 + 9: _ZNK9oceanbase6common4hash9hash_funcINS0_16ObKVCacheInstKeyEEclERKS3_:0 + 2: _ZNK9oceanbase6common16ObKVCacheInstKey4hashEv:0 + 0: 0 + 18: _ZN9oceanbase6common4hash11ObHashTableINS0_16ObKVCacheInstKeyENS1_11HashMapPairIS3_PNS0_13ObKVCacheInstEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE32internal_get_with_timeout_unsafeERNS1_17ObHashTableBucketIS7_NS1_5NLockENS1_5NCondEEERKS3_RPKS7_l:0 + 6: _ZNK9oceanbase6common4hash11ObHashTableINS0_16ObKVCacheInstKeyENS1_11HashMapPairIS3_PNS0_13ObKVCacheInstEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE12internal_getERKNS1_17ObHashTableBucketIS7_NS1_5NLockENS1_5NCondEEERKS3_RPKS7_Rb:0 + 6: 0 + 8.1: 0 + 10: 0 + 14: 0 + 16: 0 + 9: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_11HashMapPairINS0_16ObKVCacheInstKeyEPNS0_13ObKVCacheInstEEEE16check_magic_codeEv:0 + 0: 0 + 9.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 10.1: _ZNK9oceanbase6common4hash8equal_toINS0_16ObKVCacheInstKeyEEclERKS3_S6_:0 + 2: _ZNK9oceanbase6common16ObKVCacheInstKeyeqERKS1_:0 + 2: 0 + 21: _ZN9oceanbase6common11copy_assignINS0_4hash11HashMapPairINS0_16ObKVCacheInstKeyEPNS0_13ObKVCacheInstEEEEEiRT_RKS8_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapINS0_4hash11HashMapPairINS0_16ObKVCacheInstKeyEPNS0_13ObKVCacheInstEEEEEiRT_RKS8_NS0_8BoolTypeILb1EEE:0 + 2: _ZN9oceanbase6common4hash11HashMapPairINS0_16ObKVCacheInstKeyEPNS0_13ObKVCacheInstEE6assignERKS6_:0 + 5.1: _ZN9oceanbase6common11copy_assignIPNS0_13ObKVCacheInstEEEiRT_RKS4_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapIPNS0_13ObKVCacheInstEEEiRT_RKS4_NS0_8BoolTypeILb0EEE:0 + 2: 0 + 27: _ZN9oceanbase6common16ObKVCacheInstMap12add_inst_refEPNS0_13ObKVCacheInstE:0 + 2: 0 + 3: 0 + 29: _ZN9oceanbase6common12ObFixedQueueINS0_13ObKVCacheInstEE3popERPS2_:0 + 3: 0 + 6: 0 + 7: 0 + 9.1: 0 + 9.2: 0 + 9.3: 0 + 10: 0 + 10.1: 0 + 11: 0 + 13: 0 + 14: 0 + 15.1: 0 + 16: 0 + 33.2: _ZN9oceanbase6common17ObLfFIFOAllocator4initElRKNS_3lib7ObLabelEmll:0 + 7: 0 + 8: 0 + 9: 0 + 9: _ZN9oceanbase6common15ObBlockAllocMgr9set_limitEl:0 + 0: 0 + 10: _ZN9oceanbase6common13ObVSliceAlloc4initEiRNS0_15ObBlockAllocMgrERKNS_3lib9ObMemAttrE:0 + 2: _ZN9oceanbase6common13ObVSliceAllocC2ERKNS_3lib9ObMemAttrEiRNS0_15ObBlockAllocMgrE:0 + 1: 0 + 1.1: 0 + 0.1: _ZN9oceanbase6common13ObVSliceAlloc5ArenaC2Ev:0 + 0: 0 + 0: _ZN9oceanbase6common12ObSimpleSyncC2Ev:0 + 0: 0 + 12: _ZN9oceanbase6common13ObVSliceAlloc8set_nwayEi:0 + 6: 0 + 7: _ZN9oceanbase6common13ObVSliceAlloc24purge_extra_cached_blockEi:0 + 1.1: 0 + 1.3: 0 + 4: 0 + 6: 0 + 8: 0 + 65398: 0 + 3: _ZN9oceanbase6common13ObVSliceAlloc5Arena5clearEv:0 + 0: 0 + 6: _ZN9oceanbase6common14ObBlockVSlicer6freezeERl:0 + 1: 0 + 2: 0 + 7: _ZN9oceanbase6common12ObSimpleSync4syncEv:0 + 1.1: 0 + 2: 0 + 8: _ZN9oceanbase6common14ObBlockVSlicer6retireEl:0 + 0: 0 + 9: _ZN9oceanbase6common13ObVSliceAlloc13destroy_blockEPNS0_14ObBlockVSlicerE:0 + 1: 0 + 1: _ZNK9oceanbase6common14ObBlockVSlicer12get_blk_sizeEv:0 + 0: 0 + 1.1: _ZN9oceanbase6common15ObBlockAllocMgr10free_blockEPvl:0 + 3: 0 + 2: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 35.1: _ZN9oceanbase6common4hash9ObHashMapINS0_16ObKVCacheInstKeyEPNS0_13ObKVCacheInstENS1_19NoPthreadDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_S5_EEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE14set_refactoredERKS3_RKS5_iii:0 + 8: 0 + 5: _ZN9oceanbase6common4hash11HashMapPairINS0_16ObKVCacheInstKeyEPNS0_13ObKVCacheInstEE4initERKS3_RKS5_:0 + 3: _ZN9oceanbase6common11copy_assignINS0_16ObKVCacheInstKeyEEEiRT_RKS3_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapINS0_16ObKVCacheInstKeyEEEiRT_RKS3_NS0_8BoolTypeILb0EEE:0 + 2: 0 + 5.1: _ZN9oceanbase6common11copy_assignIPNS0_13ObKVCacheInstEEEiRT_RKS4_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapIPNS0_13ObKVCacheInstEEEiRT_RKS4_NS0_8BoolTypeILb0EEE:0 + 2: 0 + 42: _ZN9oceanbase6common16ObKVCacheInstMap12add_inst_refEPNS0_13ObKVCacheInstE:0 + 2: 0 + 3: 0 + 44: _ZN9oceanbase6common16ObKVCacheInstMap12add_inst_refEPNS0_13ObKVCacheInstE:0 + 3: 0 + 50: _ZN9oceanbase6common12ObFixedQueueINS0_13ObKVCacheInstEE4pushEPS2_:0 + 3: 0 + 8: 0 + 9: 0 + 11.1: 0 + 11.2: 0 + 11.3: 0 + 12: 0 + 12.1: 0 + 13: 0 + 15: 0 + 16: 0 + 17.1: 0 + 18: 0 + 53: _ZN9oceanbase6common4hash9ObHashMapINS0_16ObKVCacheInstKeyEPNS0_13ObKVCacheInstENS1_19NoPthreadDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_S5_EEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE16erase_refactoredERKS3_PS5_:0 + 10: 0 +_ZN9oceanbase6common16ObMemLeakChecker8on_allocERNS_3lib7AObjectERKNS2_9ObMemAttrE:39244:872 + 1: 830 + 2: 830 + 3: 830 + 3.1: 0 + 4: 0 + 5: 0 + 5.1: 0 + 7: 0 + 9: 0 + 10: 0 + 12: 0 + 15: 0 + 16.1: 0 + 19: 0 + 22: 843 + 3: _ZNK9oceanbase6common16ObMemLeakChecker14is_label_checkEv:3320 + 0: 830 + 4: _ZN9oceanbase6common16ObMemLeakChecker11label_matchERNS_3lib7AObjectE:0 + 2: 0 + 6: _ZN9oceanbase3lib19ObSimpleRateLimiter11try_acquireEl:0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 12: 0 + 13: 0 + 14: 0 + 5: _ZN9oceanbase3lib19ObSimpleRateLimiter12current_timeEv:0 + 4: 0 + 10: _ZSt3minIlERKT_S2_S2_:0 + 5: 0 + 8: _ZN9oceanbase6common16ObMemLeakChecker4InfoC2Ev:0 + 2: 0 + 15: _ZN9oceanbase6common4hash9ObHashMapINS0_16ObMemLeakChecker6PtrKeyENS3_4InfoENS1_24LatchReadWriteDefendModeENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS4_S5_EEEELi13ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE14set_refactoredERKS4_RKS5_iii:0 + 8: 0 + 5: _ZN9oceanbase6common4hash11HashMapPairINS0_16ObMemLeakChecker6PtrKeyENS3_4InfoEE4initERKS4_RKS5_:0 + 3: _ZN9oceanbase6common11copy_assignINS0_16ObMemLeakChecker6PtrKeyEEEiRT_RKS4_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapINS0_16ObMemLeakChecker6PtrKeyEEEiRT_RKS4_NS0_8BoolTypeILb0EEE:0 + 2: 0 + 5.1: _ZN9oceanbase6common11copy_assignINS0_16ObMemLeakChecker4InfoEEEiRT_RKS4_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapINS0_16ObMemLeakChecker4InfoEEEiRT_RKS4_NS0_8BoolTypeILb0EEE:0 + 2: 0 +new_terminal_node:39215:516 + 1: 507 + 3: 528 + 3: new_node:28400 + 3: 528 parse_malloc:522 + 4: 528 + 5: 1 + 7: 528 + 8: 528 + 9: 528 + 10: 528 + 23: 528 +_ZN9oceanbase8keybtree11WriteHandle16insert_into_nodeEPNS0_9BtreeNodeEiNS_8memtable20ObStoreRowkeyWrapperEPNS4_9ObMvccRowERS3_S8_:39208:86 + 1: 83 + 6: 83 + 7: 83 + 11.1: 81 + 14.1: 81 + 14.2: 78 + 15: 81 + 16: 81 + 16.1: 76 + 17.1: 78 + 20.4: 5 + 20.5: 5 _ZN9oceanbase8keybtree11WriteHandle11split_childEPNS0_9BtreeNodeEiNS_8memtable20ObStoreRowkeyWrapperEPNS4_9ObMvccRowES5_S7_RS3_S8_l:5 + 22: 5 + 25: 78 + 31: 80 + 9.1: _ZN9oceanbase8keybtree11WriteHandle10try_wrlockEPNS0_9BtreeNodeE:8461 + 3: 83 + 6.1: 83 + 3: _ZN9oceanbase6common8get_itidEv:2324 + 4: 83 + 5: 0 + 6: 0 + 8: 0 + 6.1: _ZNK9oceanbase8keybtree9BtreeNode14is_hold_wrlockEt:581 + 0: _ZNK9oceanbase8keybtree6RWLock14is_hold_wrlockEt:581 + 0: 83 + 8.1: _ZN9oceanbase8keybtree9BtreeNode10try_wrlockEt:1514 + 0: _ZN9oceanbase8keybtree6RWLock10try_wrlockEt:1514 + 3.1: 83 + 4: 0 + 12.1: 87 + 13: 0 + 11: _ZN9oceanbase6common10HazardList4pushEPNS0_6ObLinkE:3627 + 2: 89 + 3: 89 + 4: 81 + 6: 0 + 9: 81 + 11.1: _ZNK9oceanbase8keybtree9BtreeNode4sizeEPNS0_11MultibitSetE:648 + 2.4: 81 + 2.3: _ZNK9oceanbase8keybtree11MultibitSet4sizeEv:324 + 0: 81 + 11.2: _ZNK9oceanbase8keybtree11MultibitSet4sizeEv:567 + 0: 81 + 15.1: _ZN9oceanbase8keybtree9BtreeNode11is_overflowElPNS0_11MultibitSetE:1539 + 0: 81 + 0: _ZNK9oceanbase8keybtree9BtreeNode4sizeEPNS0_11MultibitSetE:1215 + 2: 81 + 2.4: 81 + 2: _ZNK9oceanbase8keybtree9BtreeNode7is_leafEv:405 + 0: 81 + 16.1: _ZN9oceanbase8keybtree4Path14get_root_levelEv:304 + 0: 76 + 16.2: _ZN9oceanbase8keybtree4Path3getElRPNS0_9BtreeNodeERi:2432 + 3: 76 + 8: 76 + 9: 76 + 17.1: _ZNK9oceanbase8keybtree9BtreeNode7get_tagEiPNS0_11MultibitSetE:1392 + 2: 78 + 2: _ZNK9oceanbase8keybtree9BtreeNode12get_real_posEiPNS0_11MultibitSetE:456 + 2: 76 + 3.3: 0 + 2: _ZNK9oceanbase8keybtree9BtreeNode7is_leafEv:380 + 0: 76 + 3.1: _ZNK9oceanbase8keybtree11MultibitSet2atEi:0 + 5: 0 + 5.2: 0 + 5.3: 0 + 7: 0 + 4: _ZN9oceanbase8keybtree11MultibitSet4loadERKS1_:0 + 0: 0 + 20.2: _ZN9oceanbase8keybtree9BtreeNode7get_keyEiPNS0_11MultibitSetE:405 + 2: 5 + 2: _ZNK9oceanbase8keybtree9BtreeNode12get_real_posEiPNS0_11MultibitSetE:385 + 2: 5 + 3.3: 5 + 2: _ZNK9oceanbase8keybtree9BtreeNode7is_leafEv:25 + 0: 5 + 3.1: _ZNK9oceanbase8keybtree11MultibitSet2atEi:340 + 5: 5 + 5.2: 5 + 5.3: 0 + 7: 5 + 4: _ZN9oceanbase8keybtree11MultibitSet4loadERKS1_:15 + 0: 5 + 21.2: _ZNK9oceanbase8keybtree9BtreeNode16get_val_with_tagEiPNS0_11MultibitSetE:385 + 2: 5 + 2: _ZNK9oceanbase8keybtree9BtreeNode12get_real_posEiPNS0_11MultibitSetE:330 + 2: 5 + 3.3: 5 + 2: _ZNK9oceanbase8keybtree9BtreeNode7is_leafEv:25 + 0: 5 + 3.1: _ZNK9oceanbase8keybtree11MultibitSet2atEi:280 + 5: 5 + 5.2: 5 + 5.3: 0 + 7: 5 + 4: _ZN9oceanbase8keybtree11MultibitSet4loadERKS1_:15 + 0: 5 + 24: _ZN9oceanbase8keybtree9BtreeNode8set_spinEv:780 + 0: _ZN9oceanbase8keybtree6RWLock8set_spinEv:780 + 0: 78 + 25: _ZN9oceanbase8keybtree9BtreeNode13set_key_valueEiNS_8memtable20ObStoreRowkeyWrapperEPNS2_9ObMvccRowE:1650 + 2: 81 + 3: 78 + 26.1: _ZN9oceanbase8keybtree11MultibitSet11free_insertEih:4680 + 5: 78 + 3: _ZN9oceanbase8keybtree11MultibitSet4loadERKS1_:312 + 0: 78 + 4: _ZN9oceanbase8keybtree11MultibitSet10cal_index_ERS1_ih:3900 + 2: 78 + 4: 78 + 5: 78 + 28: _ZN9oceanbase6common10HazardList3popEv:3588 + 2: 78 + 4: 78 + 5: 78 + 6: 78 + 10: 78 + 29: _ZN9oceanbase8keybtree9BtreeNode8wrunlockEv:468 + 0: _ZN9oceanbase8keybtree6RWLock8wrunlockEv:468 + 0: 78 +_ZN9oceanbase6common13ObSEArrayImplIPKNS_5share6schema13ObTableSchemaELl1ENS0_19ModulePageAllocatorELb0EED2Ev:39140:530 + 1: 515 + 3: 515 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplIPKNS_5share6schema13ObTableSchemaELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:20085 + 9: 515 + 11: 0 + 13: 515 + 15: 515 + 24: 515 + 10: _ZN9oceanbase6common13ObSEArrayImplIPKNS_5share6schema13ObTableSchemaELl1ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase3sql20ObSqlMemMgrProcessor5allocEl:39066:787 + 1: 766 + 2: 766 + 3: 766 + 4: 766 + 3: _ZN9oceanbase3sql20ObSqlMemMgrProcessor17update_delta_sizeEl:5362 + 2: 766 + 3: 0 + 4: 0 + 6: 0 + 7: 0 + 8: 0 + 12.1: 766 + 12.2: 0 + 13: 0 + 14: 0 + 16: 0 +_ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EED2Ev:38988:532 + 1: 513 + 3: 513 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EE7destroyEv:20007 + 9: 513 + 11: 0 + 13: 513 + 15: 513 + 24: 513 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZThn24_N9oceanbase12blocksstable21ObDataMicroBlockCache9get_cacheERPNS_6common10ObIKVCacheINS0_20ObMicroBlockCacheKeyENS0_22ObMicroBlockCacheValueEEE:38925:2631 + 3: 2595 +_ZN9oceanbase11transaction11ObCtxTxData9set_stateEi:38850:277 + 1: 276 + 2: 276 + 3: 276 + 5.1: 259 + 6.1: 0 + 8: 259 + 11: 0 + 12.2: 247 + 12.3: 0 + 3: _ZN9oceanbase6common14SpinRLockGuardC2ERKNS0_10SpinRWLockE:7817 + 1: 276 + 3: 259 + 4.1: 0 + 3: _ZN9oceanbase6common10SpinRWLock6rdlockEl:3864 + 0: 276 _ZN9oceanbase6common7ObLatch6rdlockEjl:279 + 5: _ZN9oceanbase11transaction11ObCtxTxData23check_tx_data_writable_Ev:9065 + 2: 259 + 4: 259 + 5: 0 + 6.1: 0 + 7.1: 259 + 8: 0 + 9.1: 0 + 10.1: 259 + 11: 0 + 12.1: 0 + 14: 259 + 12.2: _ZN9oceanbase6common14SpinRLockGuardD2Ev:6084 + 2: 259 + 3: 259 + 3.1: 247 + 4.1: 0 + 3: _ZN9oceanbase6common10SpinRWLock6unlockEv:777 + 0: 259 _ZN9oceanbase6common7ObLatch6unlockEPKj:260 +_ZN9oceanbase11transaction14ObPartTransCtxC2Ev:38727:1 + 0.4: 3 + 0.7: 160 _ZN9oceanbase11transaction9ObTxLogCbC2Ev:4 + 0.11: 3 _ZN9oceanbase11transaction9ObTxLogCbC2Ev:3 + 0.15: 0 + 0.16: 0 + 1: 1 _ZN9oceanbase11transaction10ObTransCtxC2EPKcl:1 + 2.1: 1 _ZN9oceanbase8memtable13ObMemtableCtxC1Ev:2 + 2.2: 3 _ZN9oceanbase11transaction12ObTxExecInfoC2ERNS0_24TransModulePageAllocatorE:3 + 3: 2 + 4: 0 + 7: 1 + 7.2: 1 + 7.3: 0 + 7.26: 0 + 7.31: 0 + 7.35: 0 + 0.1: _ZN9oceanbase11transaction17TransTableSeqLockC2Ev:36 + 0: 3 + 0.2: _ZN9oceanbase11transaction17ObCLogEncryptInfoC2Ev:570 + 0: 3 + 1: 3 + 0: _ZN9oceanbase5share13ObEncryptMetaC2Ev:414 + 0.3: 3 + 0: _ZN9oceanbase5share12ObEncryptKeyILl32EEC2Ev:84 + 0: 3 + 0: _ZN9oceanbase6common8ObStringC2EiiPc:60 + 1: 3 + 0.1: _ZN9oceanbase5share12ObEncryptKeyILl16EEC2Ev:84 + 0: 3 + 0: _ZN9oceanbase6common8ObStringC2EiiPc:60 + 1: 3 + 0.2: _ZN9oceanbase5share12ObEncryptKeyILl16EEC2Ev:84 + 0: 3 + 0: _ZN9oceanbase6common8ObStringC2EiiPc:60 + 1: 3 + 0.10: _ZN9oceanbase5share12ObEncryptKeyILl16EEC2Ev:84 + 0: 3 + 0: _ZN9oceanbase6common8ObStringC2EiiPc:60 + 1: 3 + 0.3: _ZN9oceanbase5share6ObLSIDC2Ev:36 + 0: 3 + 0.4: _ZN9oceanbase11transaction11ObCtxTxDataC2Ev:183 + 0.1: 3 _ZN9oceanbase11transaction11ObCtxTxData5resetEv:3 + 0: _ZN9oceanbase7storage14ObTxCommitDataC2Ev:110 + 0.4: _ZN9oceanbase7storage14ObTxCommitData5resetEv:110 + 3: 2 + 4: 2 + 6: 2 + 7: 2 + 2: _ZN9oceanbase11transaction9ObTransIDaSERKl:16 + 1: 2 + 0.7: _ZN9oceanbase6common10SpinRWLockC2Ej:70 + 1: 3 _ZN9oceanbase6common7ObLatchC1Ev:2 + 0.5: _ZN9oceanbase11transaction12ObTxSubStateC2Ev:12 + 0: 1 + 0.9: _ZN9oceanbase6common7ObDListINS_11transaction9ObTxLogCbEEC2Ev:165 + 2: 3 + 2.3: 3 + 3.3: 3 + 4: 3 + 65463: _ZN9oceanbase6common11ObDLinkBaseINS_11transaction9ObTxLogCbEEC2Ev:57 + 2: 3 + 0.10: _ZN9oceanbase6common7ObDListINS_11transaction9ObTxLogCbEEC2Ev:132 + 2: 3 + 2.3: 3 + 3.3: 3 + 4: 3 + 65463: _ZN9oceanbase6common11ObDLinkBaseINS_11transaction9ObTxLogCbEEC2Ev:24 + 2: 3 + 0.13: _ZN9oceanbase11transaction24TransModulePageAllocatorC2ERKNS_3lib7ObLabelEll:0 + 3: 0 + 0: _ZN9oceanbase11transaction18ObReserveAllocatorC2Ev:0 + 0: 0 + 3: _ZN9oceanbase6common19ModulePageAllocatorC2ERKNS_3lib7ObLabelEll:0 + 3: 0 + 4: 0 + 5: 0 + 0.14: _ZN9oceanbase6common6ObAddrC2Ev:0 + 1: 0 + 1.1: _ZN9oceanbase11transaction10ObTsCbTaskC2Ev:12 + 0: _ZN9oceanbase6common6ObLinkC2Ev:12 + 0: 1 + 2: _ZN9oceanbase11transaction26ObTxCycleTwoPhaseCommitterC2Ev:215 + 0.5: _ZN9oceanbase6common8ObBitSetILl256ENS0_19ModulePageAllocatorELb0EEC2ERKS2_:215 + 2: 1 + 1: _ZN9oceanbase6common9ObSEArrayIjLl8ENS0_19ModulePageAllocatorELb0EECI2NS0_13ObSEArrayImplIjLl8ES2_Lb0EEEElRKS2_:196 + 0: 1 + 0: _ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb0EEC2ElRKS2_:177 + 2: 1 + 5: 1 + 6: 1 + 8: 1 + 17.1: 1 + 2: _ZN9oceanbase6common8ObIArrayIjEC2EPjl:20 + 0: _ZN9oceanbase6common12ObIArrayWrapIjEC2EPjl:20 + 0: 1 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:66 + 0: 1 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:28 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:28 + 2: 1 + 8: 1 + 3: _ZN9oceanbase11transaction12ObTxMDSCacheC2ERNS0_24TransModulePageAllocatorE:120 + 0: 2 + 0.1: 2 _ZN9oceanbase11transaction12ObTxMDSCache5resetEv:2 + 0: _ZN9oceanbase6common6ObListINS_11transaction14ObTxBufferNodeENS2_24TransModulePageAllocatorEEC2ERS4_:78 + 0: 2 + 2: 2 + 3: 2 + 0.3: _ZN9oceanbase6common6ObListINS_11transaction14ObTxBufferNodeENS2_24TransModulePageAllocatorEED2Ev:0 + 2.1: 0 + 2: _ZN9oceanbase6common6ObListINS_11transaction14ObTxBufferNodeENS2_24TransModulePageAllocatorEE5resetEv:0 + 2: _ZN9oceanbase6common6ObListINS_11transaction14ObTxBufferNodeENS2_24TransModulePageAllocatorEE5clearEv:0 + 2: 0 + 3.1: 0 + 4: 0 + 5: 0 + 0.5: _ZN9oceanbase6common4list8IteratorINS0_6ObListINS_11transaction14ObTxBufferNodeENS4_24TransModulePageAllocatorEEEEC2Ev:24 + 0: 2 + 5.1: _ZN9oceanbase6common9ObSEArrayINS_11transaction11ObLSLogInfoELl10ENS0_19ModulePageAllocatorELb0EECI2NS0_13ObSEArrayImplIS3_Ll10ES4_Lb0EEEElRKS4_:0 + 0: 0 + 0: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction11ObLSLogInfoELl10ENS0_19ModulePageAllocatorELb0EEC2ElRKS4_:0 + 2: 0 + 5: 0 + 6: 0 + 8: 0 + 17.1: 0 + 2: _ZN9oceanbase6common8ObIArrayINS_11transaction11ObLSLogInfoEEC2EPS3_l:0 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_11transaction11ObLSLogInfoEEC2EPS3_l:0 + 0: 0 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:0 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:0 + 2: 0 + 8: 0 + 7.29: _ZN9oceanbase11transaction12ObTxMDSCacheD2Ev:0 + 0: _ZN9oceanbase6common6ObListINS_11transaction14ObTxBufferNodeENS2_24TransModulePageAllocatorEED2Ev:0 + 2.1: 0 + 2: _ZN9oceanbase6common6ObListINS_11transaction14ObTxBufferNodeENS2_24TransModulePageAllocatorEE5resetEv:0 + 2: _ZN9oceanbase6common6ObListINS_11transaction14ObTxBufferNodeENS2_24TransModulePageAllocatorEE5clearEv:0 + 2: 0 + 3.1: 0 + 4: 0 + 5: 0 + 7.32: _ZN9oceanbase5share6ObLSIDD2Ev:0 + 0: _ZN9oceanbase5share6ObLSID5resetEv:0 + 0: 0 + 7.33: _ZN9oceanbase11transaction17ObCLogEncryptInfoD2Ev:0 + 0: 0 + 0.3: 0 + 7.36: _ZN9oceanbase11transaction26ObTxCycleTwoPhaseCommitterD2Ev:0 + 0: 0 + 0: _ZN9oceanbase6common8ObBitSetILl256ENS0_19ModulePageAllocatorELb0EED2Ev:0 + 0: 0 + 0: _ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb0EED2Ev:0 + 1: 0 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb0EE7destroyEv:0 + 9: 0 + 11: 0 + 13: 0 + 15: 0 + 24: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 7.37: _ZN9oceanbase11transaction10ObTsCbTaskD2Ev:0 + 0: _ZN9oceanbase6common6ObLinkD2Ev:0 + 0: 0 + 7.38: _ZN9oceanbase11transaction10ObTransCtxD2Ev:0 + 0: 0 + 0.1: _ZN9oceanbase6common15ObTimeWheelTaskD2Ev:0 + 0: 0 + 0.2: _ZN9oceanbase11transaction19ObTransNeedWaitWrapD2Ev:0 + 0.1: _ZN9oceanbase11transaction11MonotonicTsD2Ev:0 + 0: _ZN9oceanbase11transaction11MonotonicTs5resetEv:0 + 0: 0 + 0.3: _ZN9oceanbase11transaction18ObTxCommitCallbackD2Ev:0 + 0: _ZN9oceanbase11transaction18ObTxCommitCallback5resetEv:0 + 2: 0 + 4: 0 + 7: 0 + 8: 0 + 0.1: _ZN9oceanbase11transaction9ObTransIDD2Ev:0 + 0: 0 + 0.4: _ZN9oceanbase11transaction11MonotonicTsD2Ev:0 + 0: _ZN9oceanbase11transaction11MonotonicTs5resetEv:0 + 0: 0 + 0.5: _ZN9oceanbase11transaction7CtxLockD2Ev:0 + 0: 0 + 0.7: _ZN9oceanbase5share6ObLSIDD2Ev:0 + 0: _ZN9oceanbase5share6ObLSID5resetEv:0 + 0: 0 + 0.8: _ZN9oceanbase11transaction15ObTransHashLinkINS0_10ObTransCtxEED2Ev:0 + 2: 0 + 3: 0 +_ZN9oceanbase11transaction7ObTsMgr23get_ts_source_info_opt_EmRNS0_19ObTsSourceInfoGuardEbb:38702:273 + 2: 262 + 3: 262 + 5: 262 + 6: 262 _ZN9oceanbase5share11ObQSyncLock6rdlockEv:263 + 8: 252 + 9: 252 + 10: 0 + 11.1: 0 + 13: 0 + 18: 252 + 23: 252 + 24: 0 + 27: 0 + 28.1: 0 + 31: 252 + 13: _ZN9oceanbase11transaction19ObTsSourceInfoGuard18get_ts_source_infoEv:0 + 0: 0 + 19: _ZN9oceanbase11transaction14ObTsSourceInfo21update_last_access_tsEv:7056 + 0: 252 + 0: _ZN9oceanbase6common16ObClockGenerator8getClockEv:5292 + 4: 252 + 5.1: 0 + 8: 252 + 6: _ZN9oceanbase6common16ObClockGenerator6get_usEv:0 + 2: 0 + 21: _ZN9oceanbase11transaction19ObTsSourceInfoGuard3setEPNS0_14ObTsSourceInfoEPNS0_7ObTsMgrEb:1764 + 2: 252 + 3: 252 +_ZN9oceanbase3sql8ObSortOp11inner_closeEv:38524:527 + 1: 492 + 5: 474 + 2: _ZN9oceanbase3sql12ObSortOpImpl24collect_memory_dump_infoERNS0_13ObMonitorNodeE:13776 + 2: 492 + 3: 492 + 3: _ZN9oceanbase3sql12ObSortOpImpl18unregister_profileEv:5412 + 2: _ZN9oceanbase3sql20ObSqlMemMgrProcessor18unregister_profileEv:5412 + 2: 492 + 3: 0 + 3: _ZN9oceanbase3sql24ObTenantSqlMemoryManager28unregister_work_area_profileERNS0_20ObSqlWorkAreaProfileE:0 + 2: 0 + 3: 0 + 9.1: 0 + 9.2: 0 + 12: 0 + 12.2: 0 + 15.1: 0 + 16.1: 0 + 16.2: 0 + 17.1: 0 + 18.1: 0 + 18.2: 0 + 19.1: 0 + 21.1: 0 + 25.8: 0 + 3: _ZN9oceanbase3lib11ObLockGuardINS0_7ObMutexEEC2ERS2_:0 + 1: 0 + 4: 0 + 5.1: 0 + 4: _ZN9oceanbase3lib7ObMutex4lockEv:0 + 0: 0 + 4: _ZNK9oceanbase3sql20ObSqlWorkAreaProfile13is_registeredEv:0 + 0: 0 + 1: 0 + 1.1: 0 + 5.1: _ZN9oceanbase3sql24ObTenantSqlMemoryManager14get_hash_valueEl:0 + 3: 0 + 2: _ZN9oceanbase6common10murmurhashEPKvim:0 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:0 + 13: 0 + 14: 0 + 15: 0 + 17: 0 + 18: 0 + 41: 0 + 42: 0 + 43: 0 + 12.1: _ZNK9oceanbase3sql20ObSqlWorkAreaProfile15get_auto_policyEv:0 + 0: 0 + 13: _ZNK9oceanbase3sql20ObSqlWorkAreaProfile14get_cache_sizeEv:0 + 0: 0 + 13.1: _ZN9oceanbase3sql24ObTenantSqlMemoryManager8decreaseEl:0 + 1: 0 + 1.1: 0 + 15: _ZN9oceanbase3sql20ObSqlWorkAreaProfile13need_profiledEv:0 + 4: 0 + 5: 0 + 3: _ZN9oceanbase3sql20ObSqlWorkAreaProfile10get_sql_idEv:0 + 3: 0 + 4: 0 + 25.7: _ZN9oceanbase3lib11ObLockGuardINS0_7ObMutexEED2Ev:0 + 2: 0 + 3: 0 + 3.1: 0 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase3lib7ObMutex6unlockEv:0 + 0: 0 + 4: _ZN9oceanbase3sql20ObSqlMemMgrProcessor7destroyEv:0 + 2: 0 + 2.1: 0 + 3: 0 + 6: 0 + 7: 0 + 4: _ZN9oceanbase3sql12ObSortOpImpl18unregister_profileEv:5302 + 2: _ZN9oceanbase3sql20ObSqlMemMgrProcessor18unregister_profileEv:5302 + 2: 482 + 3: 0 + 4: _ZN9oceanbase3sql20ObSqlMemMgrProcessor7destroyEv:0 + 2: 0 + 2.1: 0 + 3: 0 + 6: 0 + 7: 0 +_ZNK9oceanbase5share6schema9ColumnMap3getEmRi:38512:348 + 1: 332 + 2: 332 + 4: 332 + 5: 0 + 6.1: 0 + 7.1: 332 + 8: 0 + 9.1: 0 + 32: 332 + 33: 332 + 36: 332 + 36.1: 332 + 36.2: 0 + 36.3: 0 + 36.6: 332 + 36.8: 332 + 36.10: 0 + 36.13: 0 + 39: 0 + 42: 0 + 42.1: 0 + 42.2: 0 + 42.3: 0 + 42.6: 0 + 42.8: 0 + 42.10: 0 + 42.13: 0 + 47: 332 + 4: _ZNK9oceanbase5share6schema9ColumnMap9is_initedEv:2324 + 0: 332 + 36.8: _ZNK9oceanbase6common12ObIArrayWrapIiE2atEl:1328 + 6: 332 + 42.8: _ZNK9oceanbase6common12ObIArrayWrapIiE2atEl:0 + 6: 0 +_ZN9oceanbase6common13ObSEArrayImplINS_3sql14ObOptParamHint12OptParamTypeELl1ENS0_19ModulePageAllocatorELb1EED2Ev:38480:563 + 1: 514 + 3: 512 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_3sql14ObOptParamHint12OptParamTypeELl1ENS0_19ModulePageAllocatorELb1EE7destroyEv:19480 + 9: 514 + 11: 0 + 13: 512 + 15: 512 + 24: 512 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_3sql14ObOptParamHint12OptParamTypeELl1ENS0_19ModulePageAllocatorELb1EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase8memtable15RowHolderMapper15set_hash_holderERKNS_6common10ObTabletIDERKNS0_13ObMemtableKeyERKNS_11transaction9ObTransIDE:38466:798 + 2: 752 + 3: 737 + 4: 0 + 5: 0 + 6: 0 + 7.1: 0 + 8.2: 0 + 9.1: 0 + 12.1: 829 + 3: _ZN9oceanbase5share8detector21ObDeadLockDetectorMgr19is_deadlock_enabledEv:6648 + 0: 752 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:766 + 5: _ZN9oceanbase8memtableL11hash_rowkeyERKNS_6common10ObTabletIDERKNS0_13ObMemtableKeyE:0 + 2: 0 + 5: 0 + 3: _ZNK9oceanbase8memtable13ObMemtableKey4hashEv:0 + 0: 0 + 0.1: _ZNK9oceanbase8memtable13ObMemtableKey9calc_hashEv:0 + 2: 0 + 3: 0 + 4: 0 + 4: _ZN9oceanbase6common10murmurhashEPKvim:0 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:0 + 5: 0 + 13: 0 + 14: 0 + 15: 0 + 17: 0 + 18: 0 + 41: 0 + 42: 0 + 43: 0 + 6: _ZNK9oceanbase11transaction9ObTransID8is_validEv:0 + 0: 0 + 8.1: _ZN9oceanbase6common9ObIntWarpC2Em:0 + 0: 0 + 8.4: _ZN9oceanbase6common15ObLinearHashMapINS0_9ObIntWarpENS_11transaction9ObTransIDENS0_14ShareMemMgrTagEE6insertERKS2_RKS4_:0 + 2: 0 +_ZN9oceanbase3sql20ObSqlMemMgrProcessor4freeEl:38403:764 + 1: 753 + 2: 753 + 3: 753 + 4: 753 + 3: _ZN9oceanbase3sql20ObSqlMemMgrProcessor17update_delta_sizeEl:5271 + 2: 753 + 3: 0 + 4: 0 + 6: 0 + 7: 0 + 8: 0 + 12.1: 753 + 12.2: 0 + 13: 0 + 14: 0 + 16: 0 +_ZN9oceanbase6common13ObSEArrayImplINS_3sql18ObHiddenColumnItemELl1ENS0_19ModulePageAllocatorELb1EED2Ev:38320:524 + 1: 517 + 3: 504 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_3sql18ObHiddenColumnItemELl1ENS0_19ModulePageAllocatorELb1EE7destroyEv:19308 + 9: 517 + 11: 0 + 13: 504 + 15: 504 + 24: 504 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_3sql18ObHiddenColumnItemELl1ENS0_19ModulePageAllocatorELb1EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase6common21ObNullSafeDatumStrCmpILNS0_15ObCollationTypeE45ELb0ELb0EE3cmpERKNS0_7ObDatumES6_:38316:546 + 0: 524 + 2: 524 + 2.1: 0 + 6.1: 524 + 11: 552 + 2: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:1572 + 0: 524 + 9: _ZN9oceanbase6common9datum_cmp13ObDatumStrCmpILNS0_15ObCollationTypeE45ELb0EE3cmpERKNS0_7ObDatumES7_:26732 + 2: 524 _ZN9oceanbase6common9ObCharset8strcmpspENS0_15ObCollationTypeEPKclS4_lb:558 + 3: 524 + 4: 552 +_ZN9oceanbase6common12ObKVCacheMap4Node6retireEv:38313:652 + 1: 601 + 3: 651 + 2: _ZN9oceanbase6common17ObLfFIFOAllocator4freeEPv:21636 + 0: _ZN9oceanbase6common13ObVSliceAlloc4freeEPv:21636 + 4: 601 + 6: 601 + 7: 601 + 7: _ZN9oceanbase6common14ObBlockVSlicer9free_itemEPNS1_4ItemE:11419 + 0: 601 + 8: _ZN9oceanbase6common13ObVSliceAlloc13destroy_blockEPNS0_14ObBlockVSlicerE:0 + 1.1: _ZN9oceanbase6common15ObBlockAllocMgr10free_blockEPvl:0 + 1: 0 + 3: 0 + 2: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZNK9oceanbase11transaction11ObTxRedoLog10serialize_EPclRl:38189:232 + 1: 224 + 2: 224 + 4: 224 + 5: 224 + 6: 0 + 7.1: 0 + 8.1: 241 _ZNK9oceanbase11transaction13ObCtxRedoInfo9serializeEPclRl:226 + 9.1: 0 + 15.1: 241 + 16: 241 + 16.1: 243 + 17.1: 0 + 19: 243 + 21: 240 + 16.1: _ZN9oceanbase6common13serialization10encode_i32EPclRli:13851 + 2: 243 + 4: 243 + 5: 243 + 6: 243 + 7: 243 + 8: 243 +_ZN9oceanbase3sql19ObScalarAggregateOp10inner_openEv:38185:265 + 1: 248 + 3: 248 _ZN9oceanbase3sql11ObGroupByOp10inner_openEv:254 + 4.1: 0 + 5.1: 227 _ZN9oceanbase3sql16ObChunkStoreUtil12alloc_dir_idERl:231 + 6.1: 0 + 7.1: 222 + 8.1: 222 + 9.1: 260 + 10.1: 0 + 12: 260 + 14: 260 + 7.1: _ZN9oceanbase3sql20ObAggregateProcessor10set_dir_idEl:1554 + 0: 222 + 8.1: _ZN9oceanbase3sql20ObAggregateProcessor21set_io_event_observerEPNS0_17ObIOEventObserverE:3996 + 2: 222 + 9.1: _ZN9oceanbase3sql20ObAggregateProcessor14init_one_groupElb:9202 + 4: 222 + 5: 275 _ZN9oceanbase3sql20ObAggregateProcessor18generate_group_rowERPNS1_8GroupRowEl:237 + 6.1: 0 + 14.1: 275 _ZN9oceanbase6common9Ob2DArrayIPNS_3sql20ObAggregateProcessor8GroupRowELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS5_Ll64ES6_Lb0EEEE9push_backERKS5_:275 + 15.1: 0 + 19: 0 +_ZNK9oceanbase5share21ObServerLocalityCache25get_server_locality_arrayERNS_6common8ObIArrayINS0_16ObServerLocalityEEERb:38019:294 + 3: 269 + 4: 269 + 5: 269 _ZN9oceanbase6common13ObSEArrayImplINS_5share16ObServerLocalityELl32ENS0_19ModulePageAllocatorELb0EE5resetEv:278 + 6: 267 + 7: 267 + 8: 0 + 10: 267 + 11: 287 _ZN9oceanbase6common13ObSEArrayImplINS_5share16ObServerLocalityELl32ENS0_19ModulePageAllocatorELb0EE6assignERKNS0_8ObIArrayIS3_EE:300 + 11.1: 247 + 12.1: 0 + 14: 247 + 16.1: 0 + 17: 280 + 10: _ZN9oceanbase6common14SpinRLockGuardC2ERKNS0_10SpinRWLockE:7082 + 1: 267 + 3: 287 + 4.1: 0 + 3: _ZN9oceanbase6common10SpinRWLock6rdlockEl:4005 + 0: 267 _ZN9oceanbase6common7ObLatch6rdlockEjl:276 + 16: _ZN9oceanbase6common14SpinRLockGuardD2Ev:5171 + 2: 247 + 3: 247 + 3.1: 280 + 4.1: 0 + 3: _ZN9oceanbase6common10SpinRWLock6unlockEv:741 + 0: 247 _ZN9oceanbase6common7ObLatch6unlockEPKj:259 +_ZN9oceanbase11transaction11ObCtxTxData16set_start_log_tsEl:38018:283 + 1: 282 + 2: 282 + 3: 282 + 5.1: 249 + 6.1: 0 + 8: 249 + 11: 0 + 12.2: 233 + 12.3: 0 + 3: _ZN9oceanbase6common14SpinRLockGuardC2ERKNS0_10SpinRWLockE:7815 + 1: 282 + 3: 249 + 4.1: 0 + 3: _ZN9oceanbase6common10SpinRWLock6rdlockEl:3948 + 0: 282 _ZN9oceanbase6common7ObLatch6rdlockEjl:283 + 5: _ZN9oceanbase11transaction11ObCtxTxData23check_tx_data_writable_Ev:8715 + 2: 249 + 4: 249 + 5: 0 + 6.1: 0 + 7.1: 249 + 8: 0 + 9.1: 0 + 10.1: 249 + 11: 0 + 12.1: 0 + 14: 249 + 12.2: _ZN9oceanbase6common14SpinRLockGuardD2Ev:5800 + 2: 249 + 3: 249 + 3.1: 233 + 4.1: 0 + 3: _ZN9oceanbase6common10SpinRWLock6unlockEv:747 + 0: 249 _ZN9oceanbase6common7ObLatch6unlockEPKj:249 +_ZNK9oceanbase4palf3LSNltERKS1_:37965:2638 + 1: 2531 + 2: 2531 +_ZN9oceanbase6common18ObServerObjectPoolINS_11transaction14ObPartTransCtxEE13return_objectEPS3_:37910:253 + 0: 237 + 1: 237 + 2.1: 0 + 4: 237 + 5: 237 + 6: 237 + 9: 234 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:240 + 12: 215 + 13: 215 + 14: 215 + 15: 215 + 16: 215 + 19: 3 _ZN9oceanbase11transaction14ObPartTransCtxD2Ev:4 + 20: 5 _ZN9oceanbase6common7ob_freeEPv:5 + 21: 2 _ZN9oceanbase6common26ObCacheLineSegregatedArrayINS0_15ObPoolArenaHeadEEixEl:2 + 22: 2 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:2 + 24: 2 _ZN9oceanbase6common13ObLatchWGuardC2ERNS0_7ObLatchEj:2 + 25: 2 + 26: 2 + 27: 2 _ZN9oceanbase6common13ObLatchWGuardD2Ev:2 + 30: 200 + 8: _ZN9oceanbase6common26ObCacheLineSegregatedArrayINS0_15ObPoolArenaHeadEEixEl:4212 + 1: 234 + 2: 234 + 4.1: 0 + 5: 0 + 11: _ZN9oceanbase6common13ObLatchWGuardC2ERNS0_7ObLatchEj:8215 + 1: 234 + 4: 234 _ZN9oceanbase6common7ObLatch6wrlockEjlPKj:244 + 5.1: 0 + 17: _ZN9oceanbase6common13ObLatchWGuardD2Ev:4973 + 2: 215 + 3: 215 _ZN9oceanbase6common7ObLatch6unlockEPKj:231 + 3.1: 198 + 4.1: 0 +_ZN9oceanbase6common11ObArrayImplINS_3sql22ObDDLSchemaVersionHintENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev:37899:561 + 1: 533 + 3: 566 + 3.2: 0 + 2: _ZN9oceanbase6common11ObArrayImplINS_3sql22ObDDLSchemaVersionHintENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE7destroyEv:17282 + 2: 533 + 7: 0 + 9: 566 + 11: 566 + 6: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase8memtable8ObMtHash14insert_mt_nodeEPKNS0_20ObStoreRowkeyWrapperElPKNS0_9ObMvccRowEPNS0_10ObHashNodeE:37847:89 + 4: 87 + 10.1: 90 + 12.1: 92 + 16.1: 92 + 21: 93 + 23: 93 _ZN9oceanbase6common20ObGMemstoreAllocator11AllocHandle5allocEl:97 + 23.1: 92 + 31: 89 + 32: 89 + 32.1: 89 + 33: 89 + 33.1: 89 + 44.3: 90 + 5: _ZN9oceanbase8memtable12ObMtHashNodeC2ERKNS0_20ObStoreRowkeyWrapperE:5322 + 0: 87 + 3.2: 88 + 0: _ZN9oceanbase8memtable10ObHashNodeC2Ev:1479 + 0: 87 + 3: _ZNK9oceanbase8memtable20ObStoreRowkeyWrapper4hashEv:696 + 0: _ZNK9oceanbase6common13ObStoreRowkey4hashEv:696 + 2: 87 + 3: 0 + 3: _ZNK9oceanbase6common8ObRowkey4hashEv:0 + 2: 0 + 3.1: _ZN9oceanbase8memtableL9mark_hashEm:352 + 2: 88 + 12: _ZN9oceanbase8memtable8ObMtHash21search_sub_range_listEPNS0_10ObHashNodeES3_RS3_S4_Ri:12629 + 7: 83 + 11.1: 133 + 12: 83 + 12.1: 134 + 13: 134 + 65215: 0 + 11.1: _ZN9oceanbase8memtable8ObMtHash19not_reach_list_tailEPKNS0_10ObHashNodeE:1944 + 2: 83 + 12.1: _ZN9oceanbase8memtableL12compare_nodeEPKNS0_10ObHashNodeES3_Ri:6152 + 2: 133 + 4: 133 + 5: 133 + 6: 133 + 7: 133 + 8: 51 + 9.1: 82 + 10: 82 + 11.1: 0 + 13.1: 0 + 14.1: 0 + 15.1: 0 + 16: 0 + 17.1: 0 + 18.1: 0 + 22: 134 + 11.1: _ZNK9oceanbase8memtable10ObHashNode14is_bucket_nodeEv:0 + 2: 0 + 13.1: _ZNK9oceanbase8memtable20ObStoreRowkeyWrapper5equalERKS1_Rb:0 + 0: 0 + 0: _ZNK9oceanbase8memtable20ObStoreRowkeyWrapper10get_rowkeyEv:0 + 0: 0 + 0.1: _ZNK9oceanbase6common13ObStoreRowkey5equalERKS1_Rb:0 + 2: 0 + 3: 0 + 4: 0 + 5.1: 0 + 6.1: 0 + 10: 0 + 3: _ZNK9oceanbase6common13ObStoreRowkey4hashEv:0 + 2: 0 + 3: 0 + 3: _ZNK9oceanbase6common8ObRowkey4hashEv:0 + 2: 0 + 3.1: _ZNK9oceanbase6common13ObStoreRowkey4hashEv:0 + 2: 0 + 3: 0 + 3: _ZNK9oceanbase6common8ObRowkey4hashEv:0 + 2: 0 + 24: _ZN9oceanbase8memtable12ObMtHashNodeC2ERKNS0_20ObStoreRowkeyWrapperEPKNS0_9ObMvccRowE:4668 + 1: 92 + 2: 92 + 4.2: 89 + 0: _ZN9oceanbase8memtable10ObHashNodeC2Ev:1288 + 0: 92 + 4: _ZNK9oceanbase8memtable20ObStoreRowkeyWrapper4hashEv:1012 + 0: 92 + 0: _ZNK9oceanbase6common13ObStoreRowkey4hashEv:736 + 2: 92 + 3: 0 + 3: _ZNK9oceanbase6common8ObRowkey4hashEv:0 + 2: 0 + 4.1: _ZN9oceanbase8memtableL9mark_hashEm:356 + 2: 89 + 34: _ZN9oceanbase8memtable8ObMtHash10try_extendEl:890 + 5: 0 +_ZN9oceanbase3sql12ObDMLService25check_nested_sql_legalityERNS0_13ObExecContextEm:37664:558 + 1: 528 + 2: 528 + 4: 528 + 4.1: 0 + 6: 0 + 7: 0 + 7.1: 0 + 10: 0 + 11.1: 0 + 11.11: 0 + 11.14: 0 + 12.1: 0 + 15: 0 + 16: 536 _ZN9oceanbase3sql10ObDASUtils25check_nested_sql_mutatingEmRNS0_13ObExecContextE:547 + 17.1: 0 + 20: 536 + 3: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:3696 + 2: 528 + 4: _ZNK9oceanbase3sql16ObSQLSessionInfo17is_remote_sessionEv:3696 + 0: 528 + 4.1: _ZN9oceanbase3sql13ObExecContext14get_parent_ctxEv:0 + 0: 0 + 6.1: _ZN9oceanbase3sql13ObExecContext16get_pl_stack_ctxEv:0 + 0: 0 + 11.1: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 +_ZN9oceanbase7storage20ObTableAccessContextC2Ev:37570:279 + 1: 250 + 3: 250 + 4: 250 + 13: 250 _ZN9oceanbase7storage16ObTableStoreStatC1Ev:250 + 14: 252 + 15: 252 _ZN9oceanbase6common14ObVersionRangeC1Ev:264 + 16: 238 + 17: 238 + 19: 238 + 21: 250 + 22: 238 + 5: _ZN9oceanbase6common11ObQueryFlagC2Ev:5000 + 0: 250 + 11: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:4500 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:4500 + 2: 250 + 8: 250 + 22.3: _ZN9oceanbase7storage16ObTableStoreStatD2Ev:13 + 0.1: _ZN9oceanbase5share6ObLSIDD2Ev:13 + 0: _ZN9oceanbase5share6ObLSID5resetEv:13 + 0: 1 + 22.5: _ZN9oceanbase5share6ObLSIDD2Ev:19 + 0: _ZN9oceanbase5share6ObLSID5resetEv:19 + 0: 1 +_ZN9oceanbase7storage20ObTableAccessContextC1Ev:37570:279 + 1: 250 + 3: 250 + 4: 250 + 13: 250 _ZN9oceanbase7storage16ObTableStoreStatC1Ev:250 + 14: 252 + 15: 252 _ZN9oceanbase6common14ObVersionRangeC1Ev:264 + 16: 238 + 17: 238 + 19: 238 + 21: 250 + 22: 238 + 5: _ZN9oceanbase6common11ObQueryFlagC2Ev:5000 + 0: 250 + 11: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:4500 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:4500 + 2: 250 + 8: 250 + 22.3: _ZN9oceanbase7storage16ObTableStoreStatD2Ev:13 + 0.1: _ZN9oceanbase5share6ObLSIDD2Ev:13 + 0: _ZN9oceanbase5share6ObLSID5resetEv:13 + 0: 1 + 22.5: _ZN9oceanbase5share6ObLSIDD2Ev:19 + 0: _ZN9oceanbase5share6ObLSID5resetEv:19 + 0: 1 +_ZN9oceanbase11transaction14ObPartTransCtx25submit_multi_source_data_Ev:37521:235 + 1: 234 + 2: 234 + 3: 234 _ZN9oceanbase11transaction12ObTxLogBlockC1Ev:234 + 6: 242 + 7: 242 _ZN9oceanbase11transaction12ObTxLogBlock4initElRKNS0_18ObTxLogBlockHeaderE:253 + 7.1: 258 + 8.1: 5 + 10: 258 _ZN9oceanbase11transaction14ObPartTransCtx25submit_multi_source_data_ERNS0_12ObTxLogBlockE:265 + 10.1: 265 + 12: 5 + 13.4: 277 + 13.7: 5 + 13.9: 265 _ZN9oceanbase11transaction12ObTxLogBlockD1Ev:276 + 4: _ZNK9oceanbase11transaction9ObTransID6get_idEv:968 + 0: 242 + 6: _ZN9oceanbase11transaction18ObTxLogBlockHeaderC2EmlRKNS0_9ObTransIDE:9755 + 3: 242 + 0: _ZN9oceanbase11transaction17ObTxSerCompatByteC2Ev:2662 + 0: _ZN9oceanbase11transaction17ObTxSerCompatByte5resetEv:2662 + 3: 242 + 5: _ZN9oceanbase11transaction18ObTxLogBlockHeader16before_serializeEv:3221 + 4: 242 _ZN9oceanbase11transaction17ObTxSerCompatByte4initEl:258 + 5.1: 5 +_ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEED2Ev:37503:1193 + 1: 1153 + 2: 1153 + 3: 1153 + 3.1: 1114 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 7.1: 1114 + 3: _ZN9oceanbase6common10ObSpinLock6unlockEv:1153 + 2: 1153 _ZN9oceanbase6common12ObLatchMutex6unlockEv:1192 +_ZN9oceanbase6common12parity_checkEt:37440:1476 + 1: 1440 + 4: 1440 + 5: 1440 + 11: 1440 +_ZN9oceanbase7storage18ObTenantMetaMemMgr27gc_min_minor_sstable_in_setEv:37417:0 + 1: 0 + 2: 0 + 4: 0 + 6: 0 + 8.1: 0 + 8.5: 0 + 10.1: 0 + 11: 0 + 12.1: 0 + 13.3: 0 + 14: 0 + 14.1: 0 + 15.1: 0 + 18: 0 + 20: 0 + 21: 0 + 21.2: 0 + 22.1: 0 + 22.6: 0 + 23: 0 + 24: 0 + 24.1: 0 + 24.2: 0 + 25.1: 0 + 28: 0 + 30: 0 + 31: 0 + 32.1: 0 + 32.2: 0 + 32.4: 0 + 35: 0 + 36.13: 0 + 36.14: 0 + 3: _ZN9oceanbase6common7ObArrayIPKNS_7storage18ObTenantMetaMemMgr19MinMinorSSTableInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS6_EENS0_22NotImplementItemEncodeIS6_EEEC2Ev:0 + 0.1: 0 + 0.5: _ZN9oceanbase6common11ObArrayImplIPKNS_7storage18ObTenantMetaMemMgr19MinMinorSSTableInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS6_EENS0_22NotImplementItemEncodeIS6_EEEC2ElRKS7_:0 + 3: 0 + 4: 0 + 7.1: 0 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 7: _ZN9oceanbase6common4hash9ObHashSetINS_7storage18ObTenantMetaMemMgr19MinMinorSSTableInfoENS1_19NoPthreadDefendModeENS1_9hash_funcIS5_EENS1_8equal_toIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS5_NS1_11HashNullObjEEEEELi61ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE5beginEv:37417 + 2: _ZN9oceanbase6common4hash11ObHashTableINS_7storage18ObTenantMetaMemMgr19MinMinorSSTableInfoENS1_11HashMapPairIS5_NS1_11HashNullObjEEENS1_9hash_funcIS5_EENS1_8equal_toIS5_EENS1_10pair_firstIS8_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS8_EELi61ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE5beginEv:37417 + 2: 0 + 3: 0 + 5: 0 + 5.1: 0 + 6.1: 0 + 8.1: 2201 + 8.2: 2201 + 8.3: 2201 + 9: 2201 + 10: 2201 + 5: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_7storage18ObTenantMetaMemMgr19MinMinorSSTableInfoENS1_11HashNullObjEEENS1_5NLockENS1_5NCondEEEEEbRKT_:0 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_7storage18ObTenantMetaMemMgr19MinMinorSSTableInfoENS1_11HashNullObjEEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:0 + 2: 0 + 15: _ZN9oceanbase6common4hash19ObHashTableIteratorINS_7storage18ObTenantMetaMemMgr19MinMinorSSTableInfoENS1_11HashMapPairIS5_NS1_11HashNullObjEEENS1_9hash_funcIS5_EENS1_8equal_toIS5_EENS1_10pair_firstIS8_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS8_EELi61ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEC2EPKNS1_11ObHashTableIS5_S8_SA_SC_SE_SK_SL_SM_SN_Ll1EEElPSH_:0 + 2: 0 + 7.1: _ZN9oceanbase6common4hash24ObHashTableConstIteratorINS_7storage18ObTenantMetaMemMgr19MinMinorSSTableInfoENS1_11HashMapPairIS5_NS1_11HashNullObjEEENS1_9hash_funcIS5_EENS1_8equal_toIS5_EENS1_10pair_firstIS8_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS8_EELi61ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEC2ERKNS1_19ObHashTableIteratorIS5_S8_SA_SC_SE_SK_SL_SM_SN_Ll1EEE:0 + 1: 0 + 8.4: _ZNK9oceanbase6common4hash24ObHashTableConstIteratorINS_7storage18ObTenantMetaMemMgr19MinMinorSSTableInfoENS1_11HashMapPairIS5_NS1_11HashNullObjEEENS1_9hash_funcIS5_EENS1_8equal_toIS5_EENS1_10pair_firstIS8_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS8_EELi61ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEneERKSO_:0 + 2: 0 + 9: _ZNK9oceanbase6common4hash24ObHashTableConstIteratorINS_7storage18ObTenantMetaMemMgr19MinMinorSSTableInfoENS1_11HashMapPairIS5_NS1_11HashNullObjEEENS1_9hash_funcIS5_EENS1_8equal_toIS5_EENS1_10pair_firstIS8_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS8_EELi61ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEptEv:0 + 2: 0 + 10: _ZNK9oceanbase7storage18ObTenantMetaMemMgr19MinMinorSSTableInfo8is_validEv:0 + 3: 0 + 4: 0 + 4.1: 0 + 5: 0 + 5.1: 0 + 5.2: 0 + 2: _ZNK9oceanbase5share6ObLSID8is_validEv:0 + 0: 0 + 3.1: _ZNK9oceanbase7storage8ObITable8TableKey8is_validEv:0 + 4: 0 + 6.1: 0 + 8.2: 0 + 11.2: 0 + 12: 0 + 14.1: 0 + 4: _ZN9oceanbase7storage8ObITable19is_table_type_validERKNS1_9TableTypeE:0 + 2: 0 + 2.1: 0 + 3: 0 + 3.1: 0 + 6.1: _ZNK9oceanbase6common10ObTabletID8is_validEv:0 + 0: 0 + 8.1: _ZN9oceanbase7storage8ObITable26is_table_with_log_ts_rangeENS1_9TableTypeE:0 + 2: _ZN9oceanbase7storage8ObITable22is_multi_version_tableENS1_9TableTypeE:0 + 7.1: _ZN9oceanbase7storage8ObITable30is_multi_version_minor_sstableENS1_9TableTypeE:0 + 3: 0 + 9.1: _ZNK9oceanbase6common12ObLogTsRange8is_validEv:0 + 2: 0 + 11.1: _ZN9oceanbase7storage8ObITable16is_major_sstableENS1_9TableTypeE:0 + 2: 0 + 12.1: _ZNK9oceanbase6common17ObNewVersionRange8is_validEv:0 + 2: 0 + 5.1: _ZNK9oceanbase7storage15ObTableHandleV29get_tableEv:0 + 0: 0 + 13.1: _ZNK9oceanbase7storage15ObTableHandleV29get_tableEv:0 + 0: 0 + 13.2: _ZNK9oceanbase7storage8ObITable7get_refEv:0 + 0: 0 + 24: _ZN9oceanbase6common12ObIArrayWrapIPKNS_7storage18ObTenantMetaMemMgr19MinMinorSSTableInfoEE2atEl:0 + 6: 0 + 24.1: _ZN9oceanbase6common4hash9ObHashSetINS_7storage18ObTenantMetaMemMgr19MinMinorSSTableInfoENS1_19NoPthreadDefendModeENS1_9hash_funcIS5_EENS1_8equal_toIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS5_NS1_11HashNullObjEEEEELi61ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE16erase_refactoredERKS5_:0 + 3: 0 +_ZN9oceanbase10logservice17ObLogApplyService6handleEPv:37278:212 + 1: 199 + 2: 199 + 3: 199 + 4: 199 + 6: 199 + 7: 0 + 8.1: 0 + 9.1: 199 + 10: 0 + 11.1: 0 + 12.1: 199 + 13: 0 + 14: 0 + 15: 0 + 16: 0 + 16.1: 0 + 16.3: 0 + 16.4: 0 + 17.1: 0 + 20: 199 + 21: 199 + 22: 199 + 27: 2 _ZN9oceanbase10logservice17ObLogApplyService19handle_submit_task_EPNS0_13ObApplyStatusE:2 + 29: 0 + 30.1: 0 + 33: 151 + 35.1: 151 + 37: 141 + 42: 148 + 44: 7 _ZN9oceanbase10logservice17ObLogApplyService9push_taskEPNS0_18ObApplyServiceTaskE:7 + 45.1: 0 + 46: 0 + 51: 145 + 9.1: _ZN9oceanbase10logservice18ObApplyServiceTask16get_apply_statusEv:796 + 2: 199 + 21: _ZNK9oceanbase10logservice18ObApplyServiceTask8get_typeEv:597 + 2: 199 + 24: _ZN9oceanbase10logservice17ObLogApplyService16handle_cb_queue_EPNS0_13ObApplyStatusEPNS0_23ObApplyServiceQueueTaskERb:2282 + 5: 197 _ZN9oceanbase10logservice13ObApplyStatus19try_handle_cb_queueEPNS0_23ObApplyServiceQueueTaskERb:201 + 6.1: 0 + 8: 0 + 35.1: _ZN9oceanbase10logservice18ObApplyServiceTask12revoke_leaseEv:4249 + 2: _ZN9oceanbase6common13ObThreadLease6revokeEv:4249 + 4: 151 + 6.1: 144 + 7: 151 + 10: 144 + 17: 7 + 37: _ZN9oceanbase10logservice17ObLogApplyService19revert_apply_statusEPNS0_13ObApplyStatusE:1692 + 2: 141 + 3: 141 + 4.1: 0 + 5: 0 + 6: 0 + 7: 0 + 3: _ZN9oceanbase10logservice13ObApplyStatus7dec_refEv:705 + 2: 141 +_ZNK9oceanbase6common8ObRowkey9deep_copyINS0_12ObIAllocatorEEEiRS1_RT_:37249:85 + 1: 85 + 2: 85 + 4: 105 + 6: 105 + 8: 0 + 9.1: 105 _ZN9oceanbase6common20ObGMemstoreAllocator11AllocHandle5allocEl:101 + 10: 0 + 11.1: 0 + 13.1: 70 + 14.1: 0 + 17: 0 + 18: 0 + 22: 61 + 4: _ZNK9oceanbase6common8ObRowkey18get_deep_copy_sizeEv:13564 + 2: 85 + 3: 85 + 4: 105 + 7: 0 + 8.1: 0 + 11: 0 + 11.1: 85 + 12: 83 + 6: _ZNK9oceanbase6common8ObRowkey8is_legalEv:1190 + 0: 85 + 12: _ZNK9oceanbase6common5ObObj18get_deep_copy_sizeEv:7740 + 3: 85 + 4: 0 + 5.1: 82 + 6: 0 + 3: _ZNK9oceanbase6common5ObObj14is_string_typeEv:2283 + 0: _ZNK9oceanbase6common9ObObjMeta14is_string_typeEv:2283 + 0: 85 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:595 + 0: 85 + 0.3: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:1178 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:1178 + 2: 85 + 5.2: _ZN9oceanbase6common15ob_is_number_tcENS0_9ObObjTypeE:1312 + 0: 82 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:164 + 2: 82 + 9.1: _ZN9oceanbase6common26ObWrapperAllocatorWithAttr5allocEl:0 + 0: 0 + 0: _ZN9oceanbase6common18ObWrapperAllocator5allocElRKNS_3lib9ObMemAttrE:0 + 2: 0 + 2.2: 0 + 2.2: _ZN9oceanbase6common16ObArenaAllocator5allocElRKNS_3lib9ObMemAttrE:0 + 3: _ZN9oceanbase6common16ObArenaAllocator5allocEl:0 + 0: 0 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13alloc_alignedEll:0 + 3: 0 + 6: 0 + 7: 0 + 8: 0 + 10: 0 + 11: 0 + 12: 0 + 13: 0 + 15.1: 0 + 16: 0 + 18: 0 + 20: 0 + 28: 0 + 35: 0 + 36: 0 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE15ensure_cur_pageEv:0 + 2: 0 + 3: 0 + 5.1: 0 + 8: 0 + 9: 0 + 10: 0 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:0 + 2: 0 + 2.2: 0 + 2.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 9: _ZSt3maxIlERKT_S2_S2_:0 + 5: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 8: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:0 + 0: 0 + 7: _ZN9oceanbase6common16get_align_offsetEPvl:0 + 3: 0 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:0 + 0: 0 + 11: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:0 + 7: 0 + 15.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE18is_normal_overflowEl:0 + 2: 0 + 16: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11extend_pageEl:0 + 4: 0 + 5: 0 + 8: 0 + 9: 0 + 10.1: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 12: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_tailEPNS3_4PageE:0 + 2: 0 + 3: 0 + 5: 0 + 23.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16lookup_next_pageEl:0 + 3.1: 0 + 4.1: 0 + 5: 0 + 5.1: 0 + 7: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page10reuse_sizeEv:0 + 0: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 32: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9alloc_bigEl:0 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 3: 0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_headEPNS3_4PageE:0 + 4: 0 + 5: 0 + 7: 0 + 7: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:0 + 3: 0 + 13.1: _ZNK9oceanbase6common8ObRowkey9deep_copyERS1_Pcl:13036 + 2: 70 + 5: 0 + 6: 0 + 7.1: 0 + 9.1: 70 + 10: 61 + 11.1: 0 + 14: 61 + 19: 61 + 3: _ZN9oceanbase6common8ObRowkey5resetEv:840 + 0: 70 + 5: _ZNK9oceanbase6common8ObRowkey8is_legalEv:910 + 0: 70 + 10: _ZNK9oceanbase6common8ObRowkey9deep_copyEPcl:7460 + 2: 70 + 4: 70 + 5: 70 + 6: 0 + 7.1: 0 + 14: 70 + 16.1: 64 + 16.3: 64 + 16.5: 64 + 17: 70 _ZN9oceanbase6common5ObObj9deep_copyERKS1_PclRl:70 + 18.1: 0 + 24: 0 + 14: _ZN9oceanbase6common8ObRowkey6assignEPNS0_5ObObjEl:427 + 2: 61 + 3: 61 + 17: _ZN9oceanbase6common8ObRowkey6assignEPNS0_5ObObjEl:0 + 3: 0 +_ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE19append_dumped_partsENS0_9InputSideE:37125:477 + 2: 457 + 3: 457 + 4: 457 + 5: 457 + 10: 457 + 11.1: 0 + 11.5: 0 + 12: 0 + 13: 0 + 14: 0 + 15.1: 0 + 18: 0 + 22: 0 + 24.1: 0 + 27: 0 + 33: 0 + 34: 0 + 35.1: 0 + 37: 0 + 38: 0 + 43: 0 + 44: 0 + 45: 0 + 46: 0 + 48: 0 + 49: 0 + 53: 463 + 12: _ZN9oceanbase3sql17ObChunkDatumStore10has_dumpedEv:0 + 0: 0 + 14: _ZN9oceanbase6common4hash9ObHashMapINS_3sql24ObHashPartInfrastructureINS3_14ObHashPartColsENS3_19ObHashPartStoredRowEE14ObIntraPartKeyEPNS7_16ObIntraPartitionENS1_19NoPthreadDefendModeENS1_9hash_funcIS8_EENS1_8equal_toIS8_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS8_SA_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE14set_refactoredERKS8_RKSA_iii:0 + 8: 0 + 5: _ZN9oceanbase6common4hash11HashMapPairINS_3sql24ObHashPartInfrastructureINS3_14ObHashPartColsENS3_19ObHashPartStoredRowEE14ObIntraPartKeyEPNS7_16ObIntraPartitionEE4initERKS8_RKSA_:0 + 3: _ZN9oceanbase6common11copy_assignINS_3sql24ObHashPartInfrastructureINS2_14ObHashPartColsENS2_19ObHashPartStoredRowEE14ObIntraPartKeyEEEiRT_RKS8_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapINS_3sql24ObHashPartInfrastructureINS2_14ObHashPartColsENS2_19ObHashPartStoredRowEE14ObIntraPartKeyEEEiRT_RKS8_NS0_8BoolTypeILb0EEE:0 + 2: 0 + 5.1: _ZN9oceanbase6common11copy_assignIPNS_3sql24ObHashPartInfrastructureINS2_14ObHashPartColsENS2_19ObHashPartStoredRowEE16ObIntraPartitionEEEiRT_RKS9_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapIPNS_3sql24ObHashPartInfrastructureINS2_14ObHashPartColsENS2_19ObHashPartStoredRowEE16ObIntraPartitionEEEiRT_RKS9_NS0_8BoolTypeILb0EEE:0 + 2: 0 + 18: _ZN9oceanbase6common7ObDListINS_3sql24ObHashPartInfrastructureINS2_14ObHashPartColsENS2_19ObHashPartStoredRowEE16ObIntraPartitionEE8add_lastEPS7_:0 + 3: 0 + 6.1: 0 + 6.2: 0 + 6.3: 0 + 13: 0 + 12: _ZN9oceanbase6common11ObDLinkBaseINS_3sql24ObHashPartInfrastructureINS2_14ObHashPartColsENS2_19ObHashPartStoredRowEE16ObIntraPartitionEE10add_beforeEPS7_:0 + 2: 0 + 2: _ZN9oceanbase6common11ObDLinkBaseINS_3sql24ObHashPartInfrastructureINS2_14ObHashPartColsENS2_19ObHashPartStoredRowEE16ObIntraPartitionEE3addEPS7_S9_S9_:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 22: _ZN9oceanbase6common4hash9ObHashMapINS_3sql24ObHashPartInfrastructureINS3_14ObHashPartColsENS3_19ObHashPartStoredRowEE14ObIntraPartKeyEPNS7_16ObIntraPartitionENS1_19NoPthreadDefendModeENS1_9hash_funcIS8_EENS1_8equal_toIS8_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS8_SA_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE14set_refactoredERKS8_RKSA_iii:0 + 8: 0 + 5: _ZN9oceanbase6common4hash11HashMapPairINS_3sql24ObHashPartInfrastructureINS3_14ObHashPartColsENS3_19ObHashPartStoredRowEE14ObIntraPartKeyEPNS7_16ObIntraPartitionEE4initERKS8_RKSA_:0 + 3: _ZN9oceanbase6common11copy_assignINS_3sql24ObHashPartInfrastructureINS2_14ObHashPartColsENS2_19ObHashPartStoredRowEE14ObIntraPartKeyEEEiRT_RKS8_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapINS_3sql24ObHashPartInfrastructureINS2_14ObHashPartColsENS2_19ObHashPartStoredRowEE14ObIntraPartKeyEEEiRT_RKS8_NS0_8BoolTypeILb0EEE:0 + 2: 0 + 5.1: _ZN9oceanbase6common11copy_assignIPNS_3sql24ObHashPartInfrastructureINS2_14ObHashPartColsENS2_19ObHashPartStoredRowEE16ObIntraPartitionEEEiRT_RKS9_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapIPNS_3sql24ObHashPartInfrastructureINS2_14ObHashPartColsENS2_19ObHashPartStoredRowEE16ObIntraPartitionEEEiRT_RKS9_NS0_8BoolTypeILb0EEE:0 + 2: 0 + 27: _ZN9oceanbase6common7ObDListINS_3sql24ObHashPartInfrastructureINS2_14ObHashPartColsENS2_19ObHashPartStoredRowEE16ObIntraPartitionEE8add_lastEPS7_:0 + 3: 0 + 6.1: 0 + 6.2: 0 + 6.3: 0 + 13: 0 + 12: _ZN9oceanbase6common11ObDLinkBaseINS_3sql24ObHashPartInfrastructureINS2_14ObHashPartColsENS2_19ObHashPartStoredRowEE16ObIntraPartitionEE10add_beforeEPS7_:0 + 2: 0 + 2: _ZN9oceanbase6common11ObDLinkBaseINS_3sql24ObHashPartInfrastructureINS2_14ObHashPartColsENS2_19ObHashPartStoredRowEE16ObIntraPartitionEE3addEPS7_S9_S9_:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 32: _ZNK9oceanbase3sql17ObChunkDatumStore21get_row_cnt_in_memoryEv:0 + 0: 0 + 64763: 0 +_ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE20free_remain_one_pageEv:36968:249 + 1: 237 + 4.1: 237 + 6: 0 + 7: 0 + 7.1: 228 + 9: 228 + 11: 0 + 16: 228 + 17: 228 + 19: 230 + 20: 230 + 22: 228 + 23: 228 + 25: 228 + 28: 230 + 29: 230 + 30: 230 + 31: 230 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:684 + 0: 228 + 5.1: _ZL12abort_unlessb:1368 + 5: 228 + 6: 0 + 7.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13is_large_pageEPKNS3_4PageE:3648 + 2: 228 + 2.2: 228 + 2.2: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page8raw_sizeEv:1596 + 0: 228 + 12: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:0 + 2: 0 + 23: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page8raw_sizeEv:912 + 0: 228 + 24: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:912 + 2: 228 + 25: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page8raw_sizeEv:2964 + 0: 228 +_ZThn320_N9oceanbase12blocksstable18ObMicroBlockReader10find_boundERKNS0_12ObDatumRangeElRlRbS5_S5_:36937:1013 + 9: 972 + 9.1: 972 _ZN9oceanbase12blocksstable18ObMicroBlockReader10find_boundERKNS0_13ObDatumRowkeyEblRlRb:990 +_ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EE9push_backERKS3_:36771:752 + 2: 721 + 5: 721 + 6: 0 + 12: 0 + 15: 0 + 15.1: 721 + 16: 721 + 19: 721 + 15.1: _ZN9oceanbase6common9ObClassOpINS_11transaction9ObTxCbArgELb0EE20construct_and_assignERKS3_RS3_:5768 + 3: _ZN9oceanbase6common16construct_assignINS_11transaction9ObTxCbArgEEEiRT_RKS4_:5768 + 2: _ZN9oceanbase6common21construct_assign_wrapINS_11transaction9ObTxCbArgEEEiRT_RKS4_NS0_8BoolTypeILb0EEE:5768 + 2: 721 +_ZN9oceanbase3sql13ObDASUpdateOpD2Ev:36762:373 + 0: 358 + 0: _ZN9oceanbase3sql16ObDASWriteBufferD2Ev:3938 + 2: 358 + 3: 0 + 4: 0 + 0.1: _ZN9oceanbase3sql12ObIDASTaskOpD2Ev:24590 + 0: 383 _ZN9oceanbase6common16ObFixedArrayImplINS0_10ObTabletIDENS0_12ObIAllocatorEED2Ev:370 + 0.1: 366 _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql14ObDASBaseRtDefENS0_12ObIAllocatorEED2Ev:376 + 0.2: 358 _ZN9oceanbase6common16ObFixedArrayImplIPKNS_3sql14ObDASBaseCtDefENS0_12ObIAllocatorEED2Ev:379 + 0.5: 383 _ZN9oceanbase11transaction14ObTxExecResultD1Ev:387 + 0.4: _ZN9oceanbase6common10ObTabletIDD2Ev:5362 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:5362 + 0: 383 +_ZN9oceanbase3sql13ObRoutePolicy23calc_intersect_repllicaERKNS_6common8ObIArrayIPNS0_15ObCandiTableLocEEERNS2_6ObListINS1_16CandidateReplicaENS2_16ObArenaAllocatorEEE:36706:255 + 2: 244 + 3: 244 + 6.1: 245 + 6.4: 245 + 6.5: 245 + 6.7: 0 + 7.1: 0 + 8: 0 + 9: 0 + 10.1: 0 + 13.1: 0 + 13.4: 0 + 13.5: 0 + 16: 0 + 17.1: 0 + 19: 0 + 19.1: 0 + 20.1: 0 + 21.1: 0 + 21.2: 0 + 22.1: 0 + 25.1: 0 + 25.3: 0 + 25.4: 0 + 25.6: 0 + 27: 0 + 27.1: 0 + 28: 0 + 28.1: 0 + 29.1: 0 + 30.1: 0 + 30.2: 0 + 31.1: 0 + 37.1: 0 + 37.4: 0 + 40.1: 0 + 42: 0 + 42.1: 0 + 43.1: 0 + 44.2: 0 + 48.1: 0 + 48.4: 0 + 48.5: 0 + 48.7: 0 + 50: 0 + 50.1: 0 + 51: 0 + 51.1: 0 + 52.1: 0 + 53.2: 0 + 53.3: 0 + 58: 0 + 59.2: 0 + 60.1: 0 + 64.2: 0 + 72.24: 245 + 4: _ZN9oceanbase3sql13ObRoutePolicy16CandidateReplicaC2Ev:13471 + 1: 244 _ZN9oceanbase5share19ObLSReplicaLocationC1Ev:249 + 3: 245 + 4: 245 + 5: 245 + 2: _ZN9oceanbase3sql13ObRoutePolicy16ReplicaAttributeC2Ev:6125 + 1: 245 + 6: 245 + 7: 245 + 7: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql15ObCandiTableLocEE2atEl:0 + 6: 0 + 14: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql16ObCandiTabletLocEE2atEl:0 + 6: 0 + 15: _ZNK9oceanbase3sql16ObCandiTabletLoc25get_priority_replica_idxsEv:0 + 0: 0 + 17: _ZNK9oceanbase3sql16ObCandiTabletLoc20has_selected_replicaEv:0 + 0: 0 + 18: _ZN9oceanbase3sql13ObRoutePolicy16CandidateReplica5resetEv:0 + 2: 0 + 4: 0 + 3: _ZN9oceanbase3sql13ObRoutePolicy16ReplicaAttribute5resetEv:0 + 2: 0 + 7: 0 + 8: 0 + 25.2: _ZNK9oceanbase6common12ObIArrayWrapIlE5countEv:0 + 26: _ZN9oceanbase3sql13ObRoutePolicy16CandidateReplica5resetEv:0 + 2: 0 + 4: 0 + 3: _ZN9oceanbase3sql13ObRoutePolicy16ReplicaAttribute5resetEv:0 + 2: 0 + 7: 0 + 8: 0 + 27: _ZNK9oceanbase6common12ObIArrayWrapIlE2atEl:0 + 6: 0 + 37.3: _ZNK9oceanbase6common4list8IteratorINS0_6ObListINS_3sql13ObRoutePolicy16CandidateReplicaENS0_16ObArenaAllocatorEEEEneERKS9_:0 + 2: 0 + 38.1: _ZNK9oceanbase5share19ObLSReplicaLocation10get_serverEv:0 + 0: 0 + 40: _ZNK9oceanbase3sql16ObCandiTabletLoc20has_selected_replicaEv:0 + 0: 0 + 41: _ZN9oceanbase3sql13ObRoutePolicy16CandidateReplica5resetEv:0 + 2: 0 + 4: 0 + 3: _ZN9oceanbase3sql13ObRoutePolicy16ReplicaAttribute5resetEv:0 + 2: 0 + 7: 0 + 8: 0 + 48.3: _ZNK9oceanbase6common12ObIArrayWrapIlE5countEv:0 + 49: _ZN9oceanbase3sql13ObRoutePolicy16CandidateReplica5resetEv:0 + 2: 0 + 4: 0 + 3: _ZN9oceanbase3sql13ObRoutePolicy16ReplicaAttribute5resetEv:0 + 2: 0 + 7: 0 + 8: 0 + 50: _ZNK9oceanbase6common12ObIArrayWrapIlE2atEl:0 + 6: 0 + 59.1: _ZN9oceanbase6common6ObListINS_3sql13ObRoutePolicy16CandidateReplicaENS0_16ObArenaAllocatorEE5eraseENS0_4list8IteratorIS6_EE:0 + 3: 0 + 5.1: 0 + 6: 0 + 10: 0 + 11: 0 + 13: 0 + 64.1: _ZNK9oceanbase6common6ObListINS_3sql13ObRoutePolicy16CandidateReplicaENS0_16ObArenaAllocatorEE5emptyEv:0 + 2: 0 +_ZN9oceanbase11transaction11ObCtxTxData14set_end_log_tsEl:36686:263 + 1: 262 + 2: 262 + 3: 262 + 5.1: 240 + 6.1: 0 + 8: 240 + 11: 0 + 12.2: 247 + 12.3: 0 + 3: _ZN9oceanbase6common14SpinRLockGuardC2ERKNS0_10SpinRWLockE:7356 + 1: 262 + 3: 240 + 4.1: 0 + 3: _ZN9oceanbase6common10SpinRWLock6rdlockEl:3668 + 0: 262 _ZN9oceanbase6common7ObLatch6rdlockEjl:280 + 5: _ZN9oceanbase11transaction11ObCtxTxData23check_tx_data_writable_Ev:8400 + 2: 240 + 4: 240 + 5: 0 + 6.1: 0 + 7.1: 240 + 8: 0 + 9.1: 0 + 10.1: 240 + 11: 0 + 12.1: 0 + 14: 240 + 12.2: _ZN9oceanbase6common14SpinRLockGuardD2Ev:5837 + 2: 240 + 3: 240 + 3.1: 247 + 4.1: 0 + 3: _ZN9oceanbase6common10SpinRWLock6unlockEv:720 + 0: 240 _ZN9oceanbase6common7ObLatch6unlockEPKj:253 +_ZN9oceanbase3sql20get_obj_print_paramsEPKNS0_16ObSQLSessionInfoE:36576:517 + 2: 508 + 2.3: 508 + 2.1: _ZNK9oceanbase3sql18ObBasicSessionInfo23create_obj_print_paramsEv:27432 + 3: 508 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo17get_timezone_infoEv:3556 + 0: _ZNK9oceanbase6common18ObTimeZoneInfoWrap18get_time_zone_infoEv:3556 + 0: 508 + 2.1: _ZNK9oceanbase3sql18ObBasicSessionInfo30get_local_collation_connectionEv:17780 + 2: 508 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_collation_connectionEv:16764 + 0: 508 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_collation_connectionEb:11684 + 0: 508 +_ZN9oceanbase11transaction11ObGtiSource12get_trans_idERl:36498:242 + 1: 237 + 2: 237 + 4.1: 0 + 5: 237 + 6: 237 + 7: 237 + 8: 237 + 10: 237 + 10.1: 237 + 11: 237 + 12: 237 + 15: 0 + 16: 0 + 18: 0 + 22: 237 + 23: 237 + 24: 237 + 24.1: 0 + 25: 0 + 26: 0 + 27: 0 + 27.1: 0 + 29: 0 + 29.4: 0 + 30.1: 0 + 31.1: 0 + 31.2: 0 + 32.1: 0 + 34: 0 + 35: 0 + 37: 0 + 39: 0 + 40: 0 + 43: 0 + 47: 237 + 26: _ZN9oceanbase6common3minEll:0 + 2: 0 + 28: _ZN9oceanbase11transaction12ObGtiRequestC2Ev:0 + 0: 0 + 29.1: _ZNK9oceanbase5share12ObTenantBase2idEv:0 + 0: 0 + 29.2: _ZN9oceanbase11transaction11ObGtiSource22get_preallocate_count_Ev:0 + 2: 0 + 4: 0 + 7: 0 + 29.3: _ZN9oceanbase11transaction12ObGtiRequest4initEml:0 + 2: 0 + 3: 0 + 4: 0 + 5.1: 0 + 7: 0 + 8: 0 + 10: 0 +_ZN9oceanbase3lib9ObjectSet20take_off_free_objectEPNS0_7AObjectE:36484:305 + 1: 289 + 2: 289 + 5: 289 + 5.1: 289 + 6.1: 289 + 7.1: 289 + 8.1: 296 + 11: 179 + 12: 179 + 13: 179 + 15: 179 + 16: 179 + 18: 302 + 2: _ZL12abort_unlessb:1734 + 5: 289 + 6: 0 + 3: _ZNK9oceanbase3lib7AObject8is_validEv:3179 + 2: 289 + 3.1: _ZL12abort_unlessb:1734 + 5: 289 + 6: 0 + 9: _ZN9oceanbase3lib7ABitSet5unsetEi:5637 + 2: 116 + 5: 116 + 7: 116 + 8: 116 + 10: 3 + 11: 3 + 12: 3 + 12.1: 0 + 13: 0 +_ZN9oceanbase6common11ObArrayImplINS_11transaction16ObTransIDAndAddrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE7destroyEv:36480:776 + 1: 760 + 2: 760 + 3.1: 0 + 3.3: 0 + 4: 0 + 6: 0 + 7: 0 + 9: 760 + 11: 760 + 13: 760 + 4: _ZN9oceanbase11transaction16ObTransIDAndAddrD2Ev:0 + 0: _ZN9oceanbase11transaction9ObTransIDD2Ev:0 + 0: 0 +_ZNK9oceanbase10logservice12ObLogHandler8is_validEv:36324:259 + 1: 249 + 2: 249 + 2.1: 266 + 3: 249 + 4: 271 + 5: 266 _ZNK9oceanbase4palf10PalfHandle8is_validEv:270 + 6: 266 + 7: 266 + 8: 266 + 9: 266 + 10: 266 + 4: _ZNK9oceanbase6common6ObAddr8is_validEv:7661 + 3: 249 + 4: 0 + 5: 0 + 8.1: 249 + 9.1: 249 + 10: 271 + 13.1: 1 + 13.3: 1 + 14: 1 +_ZN9oceanbase7obmysql11ObMySQLUtil15number_cell_strEPclRKNS_6common6number8ObNumberERlsbi:36291:243 + 3: 239 + 4: 239 + 5: 239 + 6: 0 + 7.1: 0 + 10: 239 + 11: 239 + 11.2: 239 + 12: 0 + 13.1: 233 + 16: 227 + 16.1: 0 + 17: 0 + 18: 0 + 21: 231 _ZN9oceanbase7obmysql11ObMySQLUtil12store_lengthEPclmRl:230 + 22: 231 + 25: 231 + 13.1: _ZNK9oceanbase6common6number8ObNumber6formatEPclRls:4194 + 3: 233 _ZNK9oceanbase6common6number8ObNumber9format_v2EPclRlsb:269 + 17: _ZN9oceanbase7obmysql11ObMySQLUtil13prepend_zerosEPcll:0 + 7: 0 + 7.1: 0 + 8: 0 + 10.1: 0 + 11: 0 +_ZN9oceanbase8memtable16ObTxCallbackList9tx_commitEv:36162:253 + 1: 243 + 2: 243 + 5: 243 _ZN9oceanbase8memtable16ObTxCallbackList13SpinLockGuardC1ERNS_6common7ObLatchE:243 + 7.1: 264 + 8.1: 0 + 10: 264 + 13: 264 + 14.3: 268 + 14.4: 0 + 3: _ZN9oceanbase8memtable14ObTxEndFunctorC2Eb:7776 + 1: 243 + 0: _ZN9oceanbase8memtable20ObITxCallbackFunctorC2Ev:3159 + 1: 243 + 3: 243 + 7: _ZN9oceanbase8memtable16ObTxCallbackList9callback_ERNS0_20ObITxCallbackFunctorE:3484 + 2.2: 268 _ZN9oceanbase8memtable16ObTxCallbackList9callback_ERNS0_20ObITxCallbackFunctorEPNS0_16ObITransCallbackES5_:279 + 10: _ZNK9oceanbase8memtable20ObITxCallbackFunctor14get_remove_cntEv:1056 + 0: 264 + 10.1: _ZN9oceanbase8memtable18ObTransCallbackMgr30add_tx_end_callback_remove_cntEl:2112 + 1: 264 + 14.3: _ZN9oceanbase8memtable16ObTxCallbackList13SpinLockGuardD2Ev:3456 + 2: 264 _ZN9oceanbase6common7ObLatch6unlockEPKj:264 + 3.1: 0 + 3.2: 0 + 3: _ZN9oceanbase6common17ObSimpleTimeGuardD2Ev:1608 + 2: 268 + 3.1: 0 + 4.1: 0 + 3: _ZNK9oceanbase6common17ObSimpleTimeGuard8get_diffEv:0 + 2.1: 0 + 2.1: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 +parse_init:36087:539 + 1: 523 + 4: 523 + 5: 523 + 5.1: 523 + 5.2: 523 + 8: 0 + 13: 523 + 14: 0 + 19: 0 + 25: 0 + 29: 0 + 35: 523 obsql_mysql_yylex_init_extra:540 + 38: 0 +_ZN9oceanbase3sql17ObSqlTransControl18implicit_end_transERNS0_13ObExecContextEbPNS0_23ObEndTransAsyncCallbackE:36082:221 + 3: 204 + 4: 204 + 9: 204 + 11.1: 204 + 18.2: 267 _ZN9oceanbase3sql17ObSqlTransControl9end_transERNS0_13ObExecContextEbbPNS0_23ObEndTransAsyncCallbackE:267 + 18.3: 276 + 18.5: 0 + 20: 276 _ZN9oceanbase5trace7ObTrace12get_instanceEv:276 + 21: 243 + 22.2: 255 + 9: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:1428 + 2: 204 + 14.3: _ZNK9oceanbase11transaction9ObTransID6get_idEv:1421 + 0: 203 + 17: _ZN9oceanbase5trace16__ObFLTSpanGuardC2Ejh:4637 + 2: 204 _ZN9oceanbase5trace7ObTrace12get_instanceEv:204 + 2.1: 267 _ZN9oceanbase5trace7ObTrace10begin_spanEjhb:231 + 20.1: _ZN9oceanbase5trace7ObTrace7set_tagIlJEEEv9ObTagTypeRKT_DpT0_:3205 + 2.1: 0 + 3: 241 + 3.1: 6 + 4: 6 + 4.1: 0 + 6: 0 + 2: _ZNK9oceanbase5trace4UUID9is_initedEv:2928 + 0: 247 + 0.1: 241 + 5: _ZN9oceanbase5trace7ObTrace10append_tagIlLb1EEEb9ObTagTypeRKT_:0 + 3: 0 + 7: _ZN9oceanbase5trace7ObTrace10append_tagIlLb1EEEb9ObTagTypeRKT_:0 + 3: 0 + 22.2: _ZN9oceanbase5trace16__ObFLTSpanGuardD2Ev:972 + 0: 243 + 0.1: 0 + 0.2: 0 + 0.4: 0 + 0.5: 0 + 0.7: 0 + 0.8: 0 + 0.12: 0 + 0.3: _ZNK9oceanbase5trace4UUID9is_initedEv:0 + 0: 0 + 0.1: 0 + 0.6: _ZN9oceanbase5trace7ObTrace13is_auto_flushEv:0 + 0: 0 + 22.3: _ZN9oceanbase5trace16__ObFLTSpanGuardD2Ev:0 + 0: 0 + 0.1: 0 + 0.2: 0 + 0.4: 0 + 0.5: 0 + 0.7: 0 + 0.8: 0 + 0.12: 0 + 0.3: _ZNK9oceanbase5trace4UUID9is_initedEv:0 + 0: 0 + 0.1: 0 + 0.6: _ZN9oceanbase5trace7ObTrace13is_auto_flushEv:0 + 0: 0 +_ZNK9oceanbase7storage15ObRelativeTable21get_rowkey_column_numEv:36040:1877 + 1: 1802 + 2: 1802 + 2: _ZNK9oceanbase5share6schema18ObTableSchemaParam21get_rowkey_column_numEv:12614 + 0: _ZNK9oceanbase7storage15ObTableReadInfo23get_schema_rowkey_countEv:12614 + 1: 1802 +_ZN9oceanbase3sql6ObStmt11is_dcl_stmtENS0_4stmt8StmtTypeE:35964:1090 + 1: 998 + 1.2: 1010 +_ZNK9oceanbase7storage13ObLSTxService19get_write_store_ctxERNS_11transaction8ObTxDescERKNS2_16ObTxReadSnapshotERNS0_10ObStoreCtxE:35868:1102 + 3: 1052 + 4: 1052 + 5: 1052 + 6: 5 + 7.1: 5 + 9: 1052 _ZN9oceanbase11transaction14ObTransService19get_write_store_ctxERNS0_8ObTxDescERKNS0_16ObTxReadSnapshotERNS_7storage10ObStoreCtxE:1093 + 11: 1047 +_ZN9oceanbase7storage10ObLSHandleD2Ev:35799:1143 + 1: 1137 + 2.1: 0 + 3: 1163 + 2: _ZN9oceanbase7storage10ObLSHandle5resetEv:18458 + 2: 1137 + 2.1: 6 + 3: 6 + 5: 5 + 6: 5 + 65497: 1137 + 3: _ZNK9oceanbase7storage7ObLSMap9revert_lsEPNS0_4ObLSENS0_10ObLSGetModE:63 + 3: 5 + 3.1: 6 _ZN9oceanbase6common16ObMultiModRefMgrINS_7storage10ObLSGetModEE3decES3_:6 + 4.1: 0 + 5: 0 + 3: _ZN9oceanbase7storage4ObLS11get_ref_mgrEv:42 + 0: 6 + 5: _ZNK9oceanbase7storage7ObLSMap7free_lsEPNS0_4ObLSE:0 + 3: 0 + 4: 0 +_ZN9oceanbase7storage10ObLSHandleD1Ev:35799:1143 + 1: 1137 + 2.1: 0 + 3: 1163 + 2: _ZN9oceanbase7storage10ObLSHandle5resetEv:18458 + 2: 1137 + 2.1: 6 + 3: 6 + 5: 5 + 6: 5 + 65497: 1137 + 3: _ZNK9oceanbase7storage7ObLSMap9revert_lsEPNS0_4ObLSENS0_10ObLSGetModE:63 + 3: 5 + 3.1: 6 _ZN9oceanbase6common16ObMultiModRefMgrINS_7storage10ObLSGetModEE3decES3_:6 + 4.1: 0 + 5: 0 + 3: _ZN9oceanbase7storage4ObLS11get_ref_mgrEv:42 + 0: 6 + 5: _ZNK9oceanbase7storage7ObLSMap7free_lsEPNS0_4ObLSE:0 + 3: 0 + 4: 0 +_ZN9oceanbase11transaction15ObTxTimeoutTask5resetEv:35774:815 + 1: 775 + 2: 775 _ZN9oceanbase6common15ObTimeWheelTask5resetEv:803 + 4: 789 + 5: 789 + 7: 789 + 3: _ZN9oceanbase11transaction14ObITimeoutTask5resetEv:13822 + 2: 767 + 4: 767 + 5: 767 _ZN9oceanbase6common15ObTimeWheelTask5resetEv:799 +_ZNK9oceanbase7obmysql9OMPKField9serializeEPclRl:35650:3576 + 1: 3565 + 2: 3565 + 2: _ZNK9oceanbase7obmysql12ObMySQLField9serializeEPclRl:7130 + 2: 3565 _ZNK9oceanbase7obmysql12ObMySQLField15serialize_pro41EPclRl:3847 +_ZN9oceanbase3sql11ObDASScanOp14init_task_infoEv:35616:4474 + 0: 4452 +_ZNK9oceanbase8memtable17ObMvccRowCallback18is_logging_blockedEv:35595:1079 + 1: 1017 + 2: 1017 + 3: 1017 + 4.1: 0 + 6: 0 + 7: 1017 + 2: _ZN9oceanbase8memtable10ObMemtable19get_logging_blockedEv:8136 + 0: 1017 +_ZN9oceanbase6commonL11copy_stringERKNS0_15ObObjCastParamsENS0_9ObObjTypeEPKclRNS0_5ObObjEl.db28c62327e16d3ae5c8a88acfd53bbb:35560:183 + 6: 176 + 9: 176 + 9.2: 176 + 10: 87 + 10.1: 0 + 11: 0 + 12: 0 + 16: 0 + 17: 0 + 18: 0 + 26: 91 + 27: 92 + 30: 92 + 36: 184 + 38.1: 182 + 44: 181 + 11: _ZSt3maxIlERKT_S2_S2_:0 + 5: 0 + 12: _ZNK9oceanbase6common15ObObjCastParams5allocEl:0 + 3: 0 + 5.1: 0 + 27: _ZNK9oceanbase6common15ObObjCastParams5allocEl:2093 + 3: 91 + 5.1: 0 + 36: _ZN9oceanbase6common13ob_is_text_tcENS0_9ObObjTypeE:528 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:528 + 2: 91 + 37: _ZN9oceanbase6common5ObObj13set_lob_valueENS0_9ObObjTypeEPKci:328 + 2: _ZN9oceanbase6common9ObObjMeta8set_typeERKNS0_9ObObjTypeE:216 + 2: 2 + 3: 2 + 13: 2 + 14: 2 + 4: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:14 + 0: 2 + 8: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:14 + 0: 2 + 11: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:10 + 0: 2 + 12.1: _ZN9oceanbase6common17ob_is_string_typeENS0_9ObObjTypeE:42 + 0: 2 + 0: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:22 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:22 + 2: 2 + 17: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:18 + 0: 2 + 3: _ZN9oceanbase6common9ObObjMeta9set_inrowEv:80 + 0: _ZN9oceanbase6common10ObLobScale10set_in_rowEv:80 + 0: 2 + 38.1: _ZN9oceanbase6common9ob_is_rawENS0_9ObObjTypeE:1274 + 0: 182 + 39: _ZN9oceanbase6common5ObObj7set_rawEPKci:0 + 2: _ZN9oceanbase6common9ObObjMeta7set_rawEv:0 + 0: 0 + 0.1: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:0 + 0: 0 + 41: _ZN9oceanbase6common5ObObj10set_stringENS0_9ObObjTypeEPKci:9313 + 2: _ZN9oceanbase6common9ObObjMeta8set_typeERKNS0_9ObObjTypeE:9313 + 2: 182 + 3: 182 + 13: 0 + 14: 0 + 4: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:0 + 0: 0 + 8: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:0 + 0: 0 + 11: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:0 + 0: 0 + 12.1: _ZN9oceanbase6common17ob_is_string_typeENS0_9ObObjTypeE:3111 + 0: 183 + 0: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:1464 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:1464 + 2: 183 + 17: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:0 + 0: 0 +_ZN9oceanbase6common12ObKVCacheMap20internal_map_replaceERPNS1_4NodeES4_S4_:35556:191 + 1: 188 + 2: 188 + 5: 196 + 7: 184 + 12: 184 + 17: 184 + 18: 184 + 19: 184 _ZN9oceanbase6common19GlobalHazardVersion11delete_nodeEPNS0_17KVCacheHazardNodeE:190 + 22: 0 + 5: _ZN9oceanbase6common17ObLfFIFOAllocator5allocEl:1128 + 0: 188 _ZN9oceanbase6common13ObVSliceAlloc5allocEl:192 + 6: _ZN9oceanbase6common12ObKVCacheMap4NodeC2Ev:11040 + 2: 184 + 4: 184 + 9: 184 + 0: _ZN9oceanbase6common17KVCacheHazardNodeC2Ev:2944 + 1: 184 + 2: 184 + 7: _ZN9oceanbase6common12ObKVCacheMap4NodeaSERKS2_:7360 + 0: 184 + 0: _ZN9oceanbase6common17KVCacheHazardNodeaSERKS1_:1472 + 0: 184 +_ZN9oceanbase6common9Ob2DArrayIPNS_3sql20ObAggregateProcessor8GroupRowELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS5_Ll64ES6_Lb0EEEE9push_backERKS5_:35466:275 + 1: 257 + 2: 257 + 3: 257 + 4: 0 + 5: 0 + 6.1: 0 + 8.1: 0 + 10: 0 + 11: 0 + 12.1: 0 + 15: 0 + 16.1: 0 + 20: 257 + 21: 257 + 22: 0 + 25: 257 + 28: 257 + 32: 257 + 24: _ZNK9oceanbase6common9Ob2DArrayIPNS_3sql20ObAggregateProcessor8GroupRowELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS5_Ll64ES6_Lb0EEEE11get_obj_posEl:10023 + 4: 257 + 5: 257 + 4: _ZNK9oceanbase6common12ObIArrayWrapIPPNS_3sql20ObAggregateProcessor8GroupRowEE2atEl:1028 + 6: 257 + 25: _ZN9oceanbase6common16construct_assignIPNS_3sql20ObAggregateProcessor8GroupRowEEEiRT_RKS6_:1799 + 2: _ZN9oceanbase6common21construct_assign_wrapIPNS_3sql20ObAggregateProcessor8GroupRowEEEiRT_RKS6_NS0_8BoolTypeILb0EEE:1799 + 2: 257 +_ZN9oceanbase11transaction11ObTxDescMgr5allocERPNS0_8ObTxDescE:35429:245 + 1: 231 + 2: 231 + 3.1: 231 + 3.2: 0 + 3.3: 0 + 4: 0 + 4.1: 231 + 4.2: 0 + 4.3: 0 + 5.1: 0 + 5.2: 269 + 5.4: 0 + 5.6: 0 + 6: 0 + 6.1: 0 + 7: 269 + 5.2: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocEE11alloc_valueERPS3_:15464 + 3: 269 + 3: _ZN9oceanbase11transaction11ObTxDescMgr13ObTxDescAlloc11alloc_valueEv:14388 + 2.1: 231 + 3: 231 + 3.1: 275 + 3.2: 275 _ZN9oceanbase11transaction8ObTxDescC1Ev:286 + 3.1: _ZN9oceanbase6common21ObFixedClassAllocatorINS_11transaction8ObTxDescEE5allocEv:1155 + 2: 231 _ZN9oceanbase6common12ObSliceAlloc5allocEv:250 + 3.5: _ZN9oceanbase6common21ObFixedClassAllocatorINS_11transaction8ObTxDescEE3getERKNS_3lib7ObLabelE:6930 + 3.1: 231 + 4: 0 + 5: 0 + 5.2: 0 + 5.6: 0 + 8: 0 + 10: 0 + 17: 231 + 6: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 6.1: _ZN9oceanbase11transaction15ObTransHashLinkINS0_8ObTxDescEE7inc_refEi:2152 + 2: 269 + 3.1: 0 + 5: 269 +_ZN9oceanbase3sql14ObExprValuesOp10inner_openEv:35420:267 + 1: 257 + 3: 257 + 6: 257 _ZN9oceanbase3sql13ObDatumCaster4initERNS0_13ObExecContextE:265 + 7.1: 0 + 8.1: 253 + 8.2: 234 _ZN9oceanbase3sql10ObSQLUtils21get_default_cast_modeEbjPKNS0_16ObSQLSessionInfoERm:242 + 10.1: 0 + 13: 253 + 14: 253 + 15: 253 + 18: 0 + 19.1: 0 + 21: 253 + 23: 0 + 23.1: 0 + 23.2: 0 + 23.3: 0 + 24: 0 + 26: 0 + 27.1: 0 + 30: 253 + 8.1: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:1638 + 2: 234 + 13: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:1771 + 2: 253 + 15: _ZNK9oceanbase3sql17ObPhysicalPlanCtx14is_ignore_stmtEv:1771 + 0: 253 + 23.1: _ZNK9oceanbase3sql10ObOperator8get_specEv:0 + 0: 0 +_ZZN9oceanbase3sql15ObTableUpdateOp23get_next_row_from_childEvENKUlPKcE0_clES3_:35275:551 + 0: 541 + 0.1: 0 + 0.2: 541 + 0.3: 523 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:534 + 0.6: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:8891 + 2: 523 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.1: _ZNK9oceanbase3sql10ObOperator8get_specEv:0 + 0: 0 + 0.4: _ZN9oceanbase3sql17ObToStringExprRowC2ERNS0_9ObEvalCtxERKNS_6common8ObIArrayIPNS0_6ObExprEEE:0 + 1: 0 + 0.5: _ZN9oceanbase6common7ObLogKVINS_3sql17ObToStringExprRowELb1EEC2EPKcOKS3_:0 + 0: 0 +_ZThn56_N9oceanbase8observer8ObMPBase15response_packetERNS_7obmysql13ObMySQLPacketEPNS_3sql16ObSQLSessionInfoE:35090:3621 + 2: 3509 _ZN9oceanbase8observer16ObMPPacketSender15response_packetERNS_7obmysql13ObMySQLPacketEPNS_3sql16ObSQLSessionInfoE:3667 +_ZN9oceanbase12blocksstable19ObDatumRowkeyHelperC2Ev:34994:210 + 1: 196 + 1.3: 196 _ZN9oceanbase12blocksstable20ObStorageDatumBufferC1EPNS_6common12ObIAllocatorE:202 + 2: 196 + 1.1: _ZN9oceanbase7storage13ObObjBufArrayC2Ev:8142 + 1: 177 + 2: 177 + 3: 177 + 1.2: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:20776 + 4: 196 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:18032 + 2: 196 + 3: 196 + 4: 196 + 5: 196 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:8232 + 0: 196 + 2.3: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:0 + 0: 0 +_ZN9oceanbase3sql19ObDASLocationRouter14get_tablet_locERKNS0_17ObDASTableLocMetaERKNS_6common10ObTabletIDERNS0_14ObDASTabletLocE:34969:256 + 3: 240 + 4: 240 + 6: 240 + 7: 240 + 8: 240 + 9: 1 + 10.1: 1 + 12.1: 240 + 13: 240 _ZN9oceanbase3sql19ObDASLocationRouter10get_leaderEmRKNS_6common10ObTabletIDERNS0_14ObDASTabletLocEl:240 + 15: 1 + 17: 215 + 5: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:3666 + 2: 240 + 2.1: 1 + 2.2: 1 + 6: _ZN9oceanbase6common16is_virtual_tableEm:3120 + 2: 240 +_ZThn320_N9oceanbase12blocksstable18ObMicroBlockReader4initERKNS0_16ObMicroBlockDataERKNS_7storage15ObTableReadInfoE:34946:2737 +easy_pool_set_lock:34944:4992 + 2: 4992 + 3: 4992 +_ZN9oceanbase6common9ObCharset20get_system_collationEv:34859:3196 + 1: 3169 + 2: 3169 +_ZZN9oceanbase11transaction14ObTransService8reuse_txERNS0_8ObTxDescEENK6$_1272clEPKc.93feb755617c21c32b229b78773c290c:34850:540 + 0: 525 + 0.1: 0 + 0.2: 500 + 0.3: 525 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:539 + 0.9: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:8925 + 2: 525 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS_11transaction9ObTransIDELb0EEC2EPKcS5_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKNS_11transaction8ObTxDescELb0EEC2EPKcS5_:0 + 0: 0 +_ZN9oceanbase11transaction9tablelock12ObLockMemCtx14set_log_syncedEPNS1_22ObMemCtxLockOpLinkNodeEl:34809:738 + 3: 730 + 4: 730 + 5.1: 0 + 8: 713 + 11: 713 + 7: _ZN9oceanbase6common10inc_updateIlEElPT_S2_:12417 + 3: 730 + 4.1: 730 + 5: 230 +_ZN9oceanbase6common12ObSliceAlloc4freeEPv:34703:252 + 4: 231 + 6: 231 + 10: 231 + 11.1: 0 + 18: 0 + 19.1: 250 + 20: 0 + 16: _ZN9oceanbase6common13ObBlockSlicer9free_itemEPNS1_4ItemERb:18049 + 1: _ZN9oceanbase6common17ObEmbedFixedQueue4pushEPv:8316 + 1: 231 + 2.1: 231 + 3: 0 + 2: _ZN9oceanbase6common11ObStockCtrl10free_stockERb:9733 + 1: 243 + 2: 243 + 3: 250 + 2: _ZN9oceanbase6common11ObStockCtrl10cas_or_incEiii:4831 + 1: 243 + 3.1: 246 + 3.4: 240 + 4: 0 + 5: 240 + 18: _ZN9oceanbase6common12ObSliceAlloc13destroy_blockEPNS0_13ObBlockSlicerE:0 + 1: 0 + 2: _ZN9oceanbase6common12ObSimpleSync4syncEv:0 + 1.1: 0 + 2: 0 + 382: 0 + 3: _ZN9oceanbase6common15ObBlockAllocMgr10free_blockEPvl:0 + 1: 0 + 3: 0 + 2: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase6common8ObIOFlagD2Ev:34638:5934 + 1: 5773 + 3: 5773 +_ZN9oceanbase6common8ObIOFlagD1Ev:34638:5934 + 1: 5773 + 3: 5773 +_ZN9oceanbase8memtable24ObMemtableCtxCbAllocator4initEm:34501:262 + 1: 251 + 2: 251 + 4: 251 + 5.1: 0 + 7: 251 + 8: 2 _ZN9oceanbase6common15ObFIFOAllocator4initEPNS0_12ObIAllocatorElRKNS_3lib9ObMemAttrElll:2 + 11.1: 0 + 13: 2 + 16: 251 + 19: 251 + 20: 251 + 21: 251 + 22: 251 + 3.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:6526 + 5: 251 + 6: 251 + 7: 251 + 8: 251 + 17: _ZN9oceanbase6common15ObFIFOAllocator8set_attrERKNS_3lib9ObMemAttrE:5522 + 0: 251 +_ZN9oceanbase6common11ObArrayImplINS_3sql16ObExprConstraintENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev:34483:517 + 1: 483 + 3: 517 + 3.2: 0 + 2: _ZN9oceanbase6common11ObArrayImplINS_3sql16ObExprConstraintENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE7destroyEv:15755 + 2: 483 + 7: 0 + 9: 517 + 11: 517 + 6: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase7storage13ObSingleMerge13get_table_rowElRKNS_6common8ObIArrayIPNS0_8ObITableEEERNS_12blocksstable10ObDatumRowERbSC_:34428:86 + 5: 79 + 6: 79 + 7: 79 + 9: 79 + 10: 79 + 11: 79 + 12.1: 0 + 13.1: 0 + 14: 0 + 15.1: 0 + 16.1: 79 + 18: 80 _ZN9oceanbase12blocksstable9ObSSTable3getERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS0_13ObDatumRowkeyERPNS2_18ObStoreRowIteratorE:82 + 19.1: 0 + 21.1: 80 + 22: 0 + 23.1: 0 + 27: 0 + 28: 0 + 29.1: 0 + 33: 0 + 34: 80 _ZN9oceanbase7storage18ObStoreRowIterator12get_next_rowERPKNS_12blocksstable10ObDatumRowE:82 + 35.1: 0 + 36.1: 75 + 37: 0 + 38.1: 0 + 39.1: 83 _ZN9oceanbase7storage9ObRowFuse8fuse_rowERKNS_12blocksstable10ObDatumRowERS3_RNS0_8ObNopPosERbPNS_6common12ObIAllocatorE:76 + 40.1: 0 + 43: 83 + 44: 83 + 45: 83 + 45.2: 83 + 50: 83 + 11: _ZNK9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl8ENS0_19ModulePageAllocatorELb0EE2atElRS4_:2449 + 3: 79 + 3.1: 79 + 3.2: 79 + 6: 79 + 6: _ZN9oceanbase6common9ObClassOpIPNS_7storage8ObITableELb1EE6assignERKS4_RS4_:632 + 2: 79 + 13.1: _ZNK9oceanbase7storage15ObMultipleMerge21get_actual_iter_paramEPKNS0_8ObITableE:1580 + 3: 79 + 4.1: 0 + 6: 79 + 16.2: _ZNK9oceanbase6common12ObIArrayWrapIPNS_7storage8ObITableEE5countEv:316 + 0: 79 + 21.1: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage18ObStoreRowIteratorELl8ENS0_19ModulePageAllocatorELb0EE9push_backERKS4_:3360 + 5: 80 + 6: 0 + 12: 0 + 15: 0 + 15.1: 80 + 16: 80 + 15.1: _ZN9oceanbase6common9ObClassOpIPNS_7storage18ObStoreRowIteratorELb1EE20construct_and_assignERKS4_RS4_:640 + 2: 80 + 27.1: _ZN9oceanbase6common12ObIArrayWrapIPNS_7storage18ObStoreRowIteratorEE2atEl:0 + 6: 0 + 44: _ZNK9oceanbase12blocksstable12ObDmlRowFlag8is_existEv:2573 + 2: _ZNK9oceanbase12blocksstable12ObDmlRowFlag8is_validEv:2407 + 2: 83 + 2.1: _ZNK9oceanbase12blocksstable12ObDmlRowFlag12is_not_existEv:166 + 2: 83 +_ZN9oceanbase6common10smart_freeEPv:34272:545 + 1: 504 + 2: _ZN9oceanbase3lib7ctxfreeEPv:27216 + 2: _ZN9oceanbase3lib4Flow11current_ctxEv:12096 + 2: _ZN9oceanbase3lib4Flow12current_flowEv:12096 + 3: 504 + 8: 0 + 10: 0 + 11: 0 + 12: 0 + 8.1: _ZN9oceanbase3lib4FlowC2ERNS0_13MemoryContextE:0 + 1: 0 + 3: 0 + 11: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 2.1: _ZNK9oceanbase3lib13MemoryContextptEv:2016 + 1: 504 + 2.2: _ZN9oceanbase3lib17__MemoryContext__4freeEPv:13104 + 2: 504 _ZN9oceanbase6common11ObAllocator4freeEPv:506 +_ZN9oceanbase7storage21ObIndexTreePrefetcher18check_bloom_filterERKNS_12blocksstable16ObMicroIndexInfoERNS0_19ObSSTableReadHandleE:34194:86 + 1: 80 + 2: 80 + 4: 80 + 4.1: 80 + 5: 0 + 6.1: 0 + 7.1: 80 + 7.2: 79 + 8: 79 + 9: 79 + 10: 90 _ZN9oceanbase12blocksstable19ObStorageCacheSuite12get_instanceEv:81 + 10.6: 90 _ZN9oceanbase12blocksstable18ObBloomFilterCache11may_containEmRKNS0_12MacroBlockIdERKNS0_13ObDatumRowkeyERKNS0_19ObStorageDatumUtilsERb:92 + 17.1: 0 + 20: 0 + 21: 0 + 23: 0 + 24: 0 + 28: 79 + 29: 79 + 32: 79 + 4.1: _ZNK9oceanbase12blocksstable16ObMicroIndexInfo8is_validEv:10700 + 3: 80 + 4: 82 + 7: 82 + 9: 82 + 10: 82 + 10.2: 80 + 3.1: _ZNK9oceanbase12blocksstable21ObIndexBlockRowHeader8is_validEv:5576 + 2: 80 + 3: 82 + 6: 0 + 7: 83 + 8: 82 + 8.1: 82 + 2: _ZNK9oceanbase12blocksstable21ObIndexBlockRowHeader17is_pre_aggregatedEv:880 + 0: 80 + 5: _ZNK9oceanbase12blocksstable12MacroBlockIdeqERKS1_:1200 + 2: 80 + 2.1: 0 + 3: 0 + 3.1: 0 + 6.1: _ZNK9oceanbase12blocksstable21ObIndexBlockRowHeader13is_data_blockEv:415 + 0: 83 + 7.1: _ZNK9oceanbase12blocksstable21ObIndexBlockRowHeader13is_data_indexEv:0 + 0: 0 + 9: _ZNK9oceanbase12blocksstable21ObIndexBlockRowHeader13is_data_blockEv:410 + 0: 82 + 9.1: _ZNK9oceanbase12blocksstable12MacroBlockId8is_validEv:0 + 2: 0 + 3: 0 + 4.1: 0 + 5.1: 0 + 7.2: _ZNK9oceanbase7storage20ObTableAccessContext15enable_bf_cacheEv:2935 + 1.1: 0 + 1.2: 79 + 1.1: _ZNK9oceanbase7storage16ObTableStoreStat15enable_bf_cacheEv:960 + 2: 80 + 3: 80 + 3.1: 0 + 1.3: _ZNK9oceanbase6common10ObTabletID18is_ls_inner_tabletEv:632 + 0: 79 + 10.1: _ZN9oceanbase12blocksstable19ObStorageCacheSuite12get_bf_cacheEv:630 + 0: 90 + 10.2: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:1530 + 2: 90 + 2.1: 0 + 2.2: 0 + 10.3: _ZNK9oceanbase5share12ObTenantBase2idEv:1350 + 0: 90 + 10.4: _ZNK9oceanbase12blocksstable16ObMicroIndexInfo12get_macro_idEv:1980 + 2: 90 + 3: 90 + 3: _ZNK9oceanbase12blocksstable21ObIndexBlockRowHeader13is_data_blockEv:540 + 0: 90 + 10.5: _ZNK9oceanbase7storage15ObTableReadInfo15get_datum_utilsEv:990 + 0: 90 + 28: _ZNK9oceanbase12blocksstable13ObDatumRowkey13get_datum_cntEv:237 + 0: 79 +_ZNK9oceanbase7storage17ObLocalityManager25get_server_locality_arrayERNS_6common8ObIArrayINS_5share16ObServerLocalityEEERb:34188:270 + 3: 265 + 4: 265 + 5: 265 + 6: 288 + 7: 1 + 8.1: 1 + 9.1: 288 _ZNK9oceanbase5share21ObServerLocalityCache25get_server_locality_arrayERNS_6common8ObIArrayINS0_16ObServerLocalityEEERb:294 + 9.2: 281 + 12.1: 1 + 14: 281 + 15.3: 272 + 15.4: 1 + 5: _ZN9oceanbase6common14SpinRLockGuardC2ERKNS0_10SpinRWLockE:6803 + 1: 265 + 3: 288 + 4.1: 1 + 3: _ZN9oceanbase6common10SpinRWLock6rdlockEl:3710 + 0: 265 _ZN9oceanbase6common7ObLatch6rdlockEjl:266 + 15.3: _ZN9oceanbase6common14SpinRLockGuardD2Ev:5592 + 2: 281 + 3: 281 + 3.1: 272 + 4.1: 1 + 3: _ZN9oceanbase6common10SpinRWLock6unlockEv:847 + 0: 281 _ZN9oceanbase6common7ObLatch6unlockEPKj:291 +_ZN9oceanbase8memtable8ObMtHash6insertEPKNS0_20ObStoreRowkeyWrapperEPKNS0_9ObMvccRowE:34146:90 + 1: 83 + 2: 83 + 5: 80 + 7: 85 + 8: 90 _ZN9oceanbase8memtable8ObMtHash15get_bucket_nodeElmRPNS0_10ObHashNodeERNS1_9GenealogyE:87 + 11: 90 + 12: 89 _ZN9oceanbase8memtable8ObMtHash14insert_mt_nodeEPKNS0_20ObStoreRowkeyWrapperElPKNS0_9ObMvccRowEPNS0_10ObHashNodeE:89 + 14.1: 0 + 17.1: 89 _ZZN9oceanbase8memtable8ObMtHash6insertEPKNS0_20ObStoreRowkeyWrapperEPKNS0_9ObMvccRowEENKUlPKcE0_clES9_:93 + 19: 83 + 3: _ZNK9oceanbase8memtable20ObStoreRowkeyWrapper4hashEv:913 + 0: 83 + 0: _ZNK9oceanbase6common13ObStoreRowkey4hashEv:664 + 2: 83 + 3: 0 + 3: _ZNK9oceanbase6common8ObRowkey4hashEv:0 + 2: 0 + 3.1: _ZN9oceanbase8memtableL9mark_hashEm:320 + 2: 80 + 4: _ZN9oceanbase8memtable6bitrevEm:15520 + 2: 80 + 3: 80 + 4: 80 + 5: 80 + 6: 80 + 7: 80 + 6: _ZN9oceanbase8memtable8ObMtHash9GenealogyC2Ev:880 + 0.2: 80 + 11: _ZN9oceanbase8memtable8ObMtHash11fill_bucketEPNS0_10ObHashNodeERNS1_9GenealogyE:1708 + 4: 90 + 4.1: 90 + 5: 0 + 6: 0 + 10: 88 + 9: _ZN9oceanbase8memtable8ObMtHash9Genealogy9get_youngEv:372 + 2: 93 +_ZN9oceanbase4palf16LogSlidingWindow26leader_can_submit_new_log_El:33971:253 + 1: 245 + 5: 245 + 9.1: 245 + 10.1: 0 + 13.1: 245 _ZNK9oceanbase4palf14LogGroupBuffer18can_handle_new_logERKNS0_3LSNElS4_:260 + 13.2: 249 + 14.1: 0 + 21.4: 237 + 6: _ZN9oceanbase4palf3LSNC2Ev:1960 + 2: _ZN9oceanbase4palf3LSN5resetEv:1960 + 2: 245 + 7: _ZN9oceanbase4palf3LSNC2Ev:1960 + 2: _ZN9oceanbase4palf3LSN5resetEv:1960 + 2: 245 + 8: _ZNK9oceanbase4palf16LogSlidingWindow22get_committed_end_lsn_ERNS0_3LSNE:2695 + 2: 245 + 2.4: _ZN9oceanbase4palf3LSNaSERKS1_:980 + 2: 245 + 9: _ZNK9oceanbase4palf12LSNAllocator16get_curr_end_lsnERNS0_3LSNE:8330 + 3: 245 + 8: 245 + 7: _Z7load128RoPN5types9uint128_tE:5145 + 2: 245 +_ZN9oceanbase11transaction17TransTableSeqLock10write_lockEv:33904:3135 + 1: 2608 + 2: 2608 + 3: 2608 + 4: 2608 +_ZN9oceanbase6common16ObFixedArrayImplINS_5share6schema13ObOraNeedPrivENS0_12ObIAllocatorEE7destroyEv:33865:535 + 1: 521 + 2: 521 + 5: 521 + 6.1: 0 + 6.3: 0 + 9: 0 + 10: 0 + 12: 521 + 13: 521 + 15: 521 + 17: 521 + 7: _ZN9oceanbase5share6schema13ObOraNeedPrivD2Ev:0 + 1: 0 +_ZN9oceanbase6common11ObArrayImplINS_3sql11ObQueryHint10IdNamePairENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS4_EENS0_17DefaultItemEncodeIS4_EEED2Ev:33852:567 + 1: 546 + 3: 546 + 3.2: 0 + 2: _ZN9oceanbase6common11ObArrayImplINS_3sql11ObQueryHint10IdNamePairENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS4_EENS0_17DefaultItemEncodeIS4_EEE7destroyEv:17472 + 2: 546 + 6: 0 + 7: 0 + 9: 546 + 11: 546 +_ZN9oceanbase11transaction14ObPartTransCtx25local_tx_end_side_effect_Eb:33841:279 + 1: 262 + 4: 262 + 6.1: 270 + 7: 270 _ZN9oceanbase11transaction14ObPartTransCtx20post_tx_commit_resp_Ei:269 + 11: 257 _ZN9oceanbase11transaction10ObTransCtx12set_exiting_Ev:254 + 14: 293 + 4.1: _ZN9oceanbase11transaction14ObPartTransCtx23update_publish_version_Ev:15406 + 3: 265 + 4: 265 _ZNK9oceanbase11transaction11ObCtxTxData18get_commit_versionEv:278 + 3.1: _ZN9oceanbase11transaction14ObTxVersionMgr20update_max_commit_tsElb:9717 + 7.1: 233 _ZZN9oceanbase11transaction14ObTxVersionMgr20update_max_commit_tsElbENKUlPKcE_clES3_:269 + 3: _ZN9oceanbase6common10inc_updateIlEElPT_S2_:3181 + 3: 227 + 4.1: 227 + 5: 36 +_ZN9oceanbase3sql8ObParserD2Ev:33816:6129 + 1: 5636 +_ZN9oceanbase3sql8ObParserD1Ev:33816:6129 + 1: 5636 +_ZN9oceanbase7obmysql6OMPKOK11set_messageERKNS_6common8ObStringE:33748:1584 + 1: 1495 + 3: 1495 + 4: 490 + 6: 1477 + 3: _ZNK9oceanbase6common8ObString5emptyEv:7475 + 2: 1495 +_ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql20ObAggregateProcessor12IAggrFuncCtxENS0_12ObIAllocatorEE16prepare_allocateEl:33514:243 + 1: 233 + 2: 233 + 3: 233 + 4: 0 + 5.1: 0 + 5.5: 0 + 5.9: 0 + 6.1: 234 _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql20ObAggregateProcessor12IAggrFuncCtxENS0_12ObIAllocatorEE7reserveEl:242 + 7.1: 0 + 7.5: 0 + 7.9: 0 + 9: 0 + 10: 234 + 10.1: 234 + 10.3: 234 + 11: 234 + 14: 241 + 14.3: 241 + 15: 241 + 15.3: 241 + 17: 241 + 5.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 5.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 7.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 7.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase3sql10ObResolverD2Ev:33510:574 + 1: 526 + 2: _ZN9oceanbase3sql16ObResolverParamsD2Ev:21412 + 0: _ZN9oceanbase6common4hash18ObPlacementHashSetImLm256ELb1EED2Ev:13680 + 0: _ZN9oceanbase6common8ObBitSetILl256ENS0_19ModulePageAllocatorELb1EED2Ev:13680 + 0: 526 _ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb1EED2Ev:560 + 0.1: _ZN9oceanbase3sql14ExternalParamsD2Ev:7732 + 0: 552 _ZN9oceanbase6common13ObSEArrayImplISt4pairIPNS_3sql9ObRawExprEPNS3_14ObConstRawExprEELl8ENS0_19ModulePageAllocatorELb0EED2Ev:552 +_ZN9oceanbase3sql10ObResolverD1Ev:33510:574 + 1: 526 + 2: _ZN9oceanbase3sql16ObResolverParamsD2Ev:21412 + 0: _ZN9oceanbase6common4hash18ObPlacementHashSetImLm256ELb1EED2Ev:13680 + 0: _ZN9oceanbase6common8ObBitSetILl256ENS0_19ModulePageAllocatorELb1EED2Ev:13680 + 0: 526 _ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb1EED2Ev:560 + 0.1: _ZN9oceanbase3sql14ExternalParamsD2Ev:7732 + 0: 552 _ZN9oceanbase6common13ObSEArrayImplISt4pairIPNS_3sql9ObRawExprEPNS3_14ObConstRawExprEELl8ENS0_19ModulePageAllocatorELb0EED2Ev:552 +_ZN9oceanbase11transaction14ObTransService12finalize_tx_ERNS0_8ObTxDescE:33500:251 + 1: 234 + 3: 234 + 4: 287 + 5: 287 + 9.1: 0 + 10: 0 + 12: 290 _ZN9oceanbase11transaction8ObTxDesc16cancel_commit_cbEv:294 + 14.1: 258 + 15: 0 + 18.2: 269 _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEED2Ev:263 + 18.3: 0 + 3: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEEC2ERS3_:8071 + 1: 234 + 4: 287 + 5.1: 0 + 4: _ZN9oceanbase6common10ObSpinLock4lockEv:3978 + 2: 234 _ZN9oceanbase6common12ObLatchMutex4lockEjl:266 + 14: _ZNK9oceanbase11transaction9ObTransID8is_validEv:2064 + 0: 258 +_ZN9oceanbase8memtable18ObTransCallbackMgr11trans_startEv:33451:241 + 1: 214 + 3: 215 + 2: _ZN9oceanbase8memtable18ObTransCallbackMgr5resetEv:26804 + 2: 214 + 4: 214 + 5: 214 + 5.1: 0 + 6.1: 0 + 6.3: 0 + 7: 0 + 8: 0 + 9.1: 0 + 13: 214 + 14: 0 + 15: 0 + 17: 215 + 18: 215 + 19: 215 + 4: _ZN9oceanbase8memtable16ObTxCallbackList5resetEv:8132 + 6: 214 + 8: 214 + 2: _ZN9oceanbase8memtable16ObITransCallback8set_prevEPS1_:1498 + 0: 214 + 3: _ZN9oceanbase8memtable16ObITransCallback8set_nextEPS1_:1284 + 0: 214 + 7: _ZNK9oceanbase8memtable16ObTxCallbackList5emptyEv:0 + 0: 0 + 0: _ZNK9oceanbase8memtable16ObITransCallback8get_nextEv:0 + 0: 0 + 14: _ZN9oceanbase8memtable24ObMemtableCtxCbAllocator4freeEPv:0 + 5.1: 0 + 6: 0 +_ZN9oceanbase8memtable18ObTransCallbackMgr9trans_endEb:33265:240 + 1: 240 + 9: 240 + 10: 240 _ZN9oceanbase8memtable16ObTxCallbackList9tx_commitEv:253 + 12: 4 + 14: 275 + 17: 278 + 8: _ZN9oceanbase8memtable18ObTransCallbackMgr26merge_multi_callback_listsEv:3540 + 2: 240 + 4: 240 + 5: 4 + 6: 4 + 7.1: 4 + 8: 4 + 15: 4 + 15.1: 4 + 9: _ZN9oceanbase8memtable18ObTransCallbackMgr24add_slave_list_merge_cntEl:32 + 1: 4 + 15: _ZN9oceanbase8memtable18ObTransCallbackMgr20wakeup_waiting_txns_Ev:15437 + 2: 275 + 3.1: 4 + 5: 275 + 6.3: 275 _ZN9oceanbase8memtable13ObLockWaitMgr6wakeupERKNS_11transaction9ObTransIDE:299 + 2: _ZN9oceanbase5share11ObTenantEnv3mtlIPNS_8memtable13ObLockWaitMgrEEET_v:8781 + 2: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:5481 + 2: 275 + 2.1: 4 + 2.2: 4 + 2.1: _ZN9oceanbase5share12ObTenantBase3getIPNS_8memtable13ObLockWaitMgrEEET_v:3300 + 0: _ZN9oceanbase5share12ObTenantBase9inner_getENS1_8IdentityIPNS_8memtable13ObLockWaitMgrEEE:3300 + 0: 275 + 6.1: _ZNK9oceanbase8memtable13ObMemtableCtx13get_trans_ctxEv:1925 + 0: 275 + 6.2: _ZNK9oceanbase11transaction10ObTransCtx12get_trans_idEv:1100 + 0: 275 +_ZN9oceanbase11transaction9tablelock17ObOBJLockCallback8get_redoERNS_8memtable21TableLockRedoDataNodeE:33205:807 + 2: 741 + 4: 741 + 7: 741 _ZN9oceanbase8memtable21TableLockRedoDataNode3setEPKNS0_13ObMemtableKeyERKNS_11transaction9tablelock13ObTableLockOpERKNS_6common10ObTabletIDEPNS0_16ObITransCallbackE:750 + 8: 741 + 9: 741 + 13: 706 + 9.1: _ZNK9oceanbase7storage8ObITable8TableKey13get_tablet_idEv:2964 + 0: 741 +_ZN9oceanbase3sql19ObDASLocationRouter10get_leaderEmRKNS_6common10ObTabletIDERNS0_14ObDASTabletLocEl:33055:240 + 4: 231 + 6: 231 + 8: 262 _ZN9oceanbase8observer14global_contextEv:245 + 8.1: 247 _ZN9oceanbase5share17ObLocationService3getEmRKNS_6common10ObTabletIDElRbRNS0_6ObLSIDE:248 + 13.1: 0 + 14.1: 266 _ZN9oceanbase8observer14global_contextEv:270 + 14.2: 262 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:276 + 14.4: 266 _ZN9oceanbase5share17ObLocationService10get_leaderElmRKNS0_6ObLSIDEbRNS_6common6ObAddrE:274 + 19.1: 0 + 21: 221 + 7: _ZN9oceanbase6common10ObTabletIDaSERKS1_:1386 + 0: 231 +_ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql12ObIDASTaskOpEEEED2Ev:33042:5564 + 0: 5507 +obsql_mysql_yy_delete_buffer:33032:491 + 4: 476 + 7: 476 + 7.1: 476 + 7.3: 476 + 8: 476 + 10: 476 + 11: 476 + 14.2: 2 + 11: obsql_mysql_yyfree:476 + 4: 476 parse_free:495 + 13: obsql_mysql_yyfree:4938 + 4: 493 parse_free:509 +_ZN9oceanbase8memtable13ObLockWaitMgr6wakeupERKNS_11transaction9ObTransIDE:33030:299 + 1: 296 + 2.1: 296 _ZZN9oceanbase8memtable13ObLockWaitMgr6wakeupERKNS_11transaction9ObTransIDEENK4$_43clEPKc.1dd22efca7fa83ae50e8099a04ad3959:296 + 3.1: 233 _ZN9oceanbase8memtable13ObLockWaitMgr6wakeupEm:255 + 3: _ZN9oceanbase8memtableL10hash_transERKNS_11transaction9ObTransIDE:19805 + 2: 233 + 2: _ZN9oceanbase6common10murmurhashEPKvim:16077 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:16077 + 13: 233 + 14: 233 + 15: 233 + 17: 233 + 18: 233 + 41: 233 + 42: 233 + 43: 233 +_ZN9oceanbase4palf3LSNC2Em:32823:3801 + 1: 3647 + 2: 3647 + 3: 3647 +_ZN9oceanbase4palf3LSNC1Em:32823:3801 + 1: 3647 + 2: 3647 + 3: 3647 +_ZN9oceanbase8memtable10ObMemtable15get_freeze_flagEv:32643:2549 + 1: 2511 + 2: 2511 + 2: _ZNK9oceanbase7storage9ObFreezer15get_freeze_flagEv:7533 + 0: 2511 +_ZN9oceanbase6common11ObArrayImplINS_3sql13ObMonitorHintENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev:32612:569 + 1: 526 + 3: 526 + 3.2: 0 + 2: _ZN9oceanbase6common11ObArrayImplINS_3sql13ObMonitorHintENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE7destroyEv:16832 + 2: 526 + 6: 0 + 7: 0 + 9: 526 + 11: 526 +_ZN9oceanbase6common11ObArrayImplINS_3sql9ObVarInfoENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev:32364:547 + 1: 522 + 3: 522 + 3.2: 0 + 2: _ZN9oceanbase6common11ObArrayImplINS_3sql9ObVarInfoENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE7destroyEv:16704 + 2: 522 + 6: 0 + 7: 0 + 9: 522 + 11: 522 +_ZN9oceanbase6common11ObArrayImplINS_3sql9ObDopHintENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev:32302:561 + 1: 521 + 3: 521 + 3.2: 0 + 2: _ZN9oceanbase6common11ObArrayImplINS_3sql9ObDopHintENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE7destroyEv:16672 + 2: 521 + 6: 0 + 7: 0 + 9: 521 + 11: 521 +_ZN9oceanbase8memtable16ObQueryAllocator4initEm:32285:259 + 1: 235 + 2: 235 + 4: 235 + 5.1: 0 + 7: 235 + 8: 3 _ZN9oceanbase6common15ObFIFOAllocator4initEPNS0_12ObIAllocatorElRKNS_3lib9ObMemAttrElll:3 + 11.1: 0 + 13: 2 + 16: 234 + 19: 234 + 20: 234 + 21: 234 + 22: 234 + 3.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:6110 + 5: 235 + 6: 235 + 7: 235 + 8: 235 + 17: _ZN9oceanbase6common15ObFIFOAllocator8set_attrERKNS_3lib9ObMemAttrE:5148 + 0: 234 +_ZN9oceanbase6common13serialization14encoded_lengthEm:32273:552 + 1: 546 + 2: 528 + 2: _ZN9oceanbase6common13serialization19encoded_length_vi64El:23516 + 4: 546 + 6.1: 553 + 8.1: 553 + 10.1: 553 + 12.1: 530 + 14.1: 0 + 16.1: 0 + 18.1: 0 +_ZN9oceanbase11transaction19ObTsSourceInfoGuardD2Ev:32213:515 + 1: 512 + 2: 512 + 2.1: 512 + 3.1: 0 + 5: 520 + 3: _ZN9oceanbase11transaction7ObTsMgr22revert_ts_source_info_ERNS0_19ObTsSourceInfoGuardE:11661 + 2: 512 + 3: 512 _ZN9oceanbase5share11ObQSyncLock8rdunlockEv:543 + 5: 489 + 5: _ZNK9oceanbase11transaction19ObTsSourceInfoGuard11need_revertEv:1956 + 0: 489 + 6: _ZN9oceanbase11transaction19ObTsSourceInfoGuard18get_ts_source_infoEv:0 + 0: 0 + 6.1: _ZN9oceanbase6common13ObLinkHashMapINS0_9ObIntWarpENS_11transaction14ObTsSourceInfoENS3_19ObTsSourceInfoAllocENS0_9RefHandleELl8EE6revertEPS4_:0 + 2: 0 + 3: 0 + 3: _ZN9oceanbase6common13ObLinkHashMapINS0_9ObIntWarpENS_11transaction14ObTsSourceInfoENS3_19ObTsSourceInfoAllocENS0_9RefHandleELl8EE6revertEPNS0_12LinkHashNodeIS2_EE:0 + 6: 0 + 6.1: 0 + 6.2: 0 + 7.1: 0 + 10: 0 + 11: _ZN9oceanbase6common13ObLinkHashMapINS0_9ObIntWarpENS_11transaction14ObTsSourceInfoENS3_19ObTsSourceInfoAllocENS0_9RefHandleELl8EE8dec_urefEPNS0_12LinkHashNodeIS2_EE:0 + 3: 0 + 4: 0 + 3: _ZN9oceanbase6common9RefHandle3decEPNS0_7RefNodeE:0 + 0: 0 +_ZN9oceanbase11transaction19ObTsSourceInfoGuardD1Ev:32213:515 + 1: 512 + 2: 512 + 2.1: 512 + 3.1: 0 + 5: 520 + 3: _ZN9oceanbase11transaction7ObTsMgr22revert_ts_source_info_ERNS0_19ObTsSourceInfoGuardE:11661 + 2: 512 + 3: 512 _ZN9oceanbase5share11ObQSyncLock8rdunlockEv:543 + 5: 489 + 5: _ZNK9oceanbase11transaction19ObTsSourceInfoGuard11need_revertEv:1956 + 0: 489 + 6: _ZN9oceanbase11transaction19ObTsSourceInfoGuard18get_ts_source_infoEv:0 + 0: 0 + 6.1: _ZN9oceanbase6common13ObLinkHashMapINS0_9ObIntWarpENS_11transaction14ObTsSourceInfoENS3_19ObTsSourceInfoAllocENS0_9RefHandleELl8EE6revertEPS4_:0 + 2: 0 + 3: 0 + 3: _ZN9oceanbase6common13ObLinkHashMapINS0_9ObIntWarpENS_11transaction14ObTsSourceInfoENS3_19ObTsSourceInfoAllocENS0_9RefHandleELl8EE6revertEPNS0_12LinkHashNodeIS2_EE:0 + 6: 0 + 6.1: 0 + 6.2: 0 + 7.1: 0 + 10: 0 + 11: _ZN9oceanbase6common13ObLinkHashMapINS0_9ObIntWarpENS_11transaction14ObTsSourceInfoENS3_19ObTsSourceInfoAllocENS0_9RefHandleELl8EE8dec_urefEPNS0_12LinkHashNodeIS2_EE:0 + 3: 0 + 4: 0 + 3: _ZN9oceanbase6common9RefHandle3decEPNS0_7RefNodeE:0 + 0: 0 +_ZN9oceanbase3lib9ObjectSet15get_free_objectEj:32203:92 + 1: 85 + 4: 85 + 4.1: 85 + 6: 58 + 7: 60 + 12: 60 + 13: 60 + 13.1: 0 + 14: 60 + 14.1: 29 + 15: 29 + 15.1: 0 + 16: 0 + 16.1: 0 + 17: 0 + 19: 29 + 20: 36 _ZN9oceanbase3lib9ObjectSet9merge_objEPNS0_7AObjectE:28 + 22: 36 + 24: 71 _ZN9oceanbase3lib9ObjectSet20take_off_free_objectEPNS0_7AObjectE:71 + 31: 0 + 35: 115 + 5: _ZNK9oceanbase3lib7ABitSet22find_first_significantEi:5908 + 3: 85 + 6: 33 + 7: 85 + 9: 85 + 10: 85 + 12: 54 + 13.1: 33 + 16: 30 + 17: 33 + 18: 33 + 19: 33 + 20: 33 + 22: 4 + 23: 4 + 25.1: 30 + 27.1: 0 + 28: 0 + 29: 0 + 32: 0 + 33: 0 + 36: 0 + 44: 60 + 9: _ZN9oceanbase3lib7ABitSet6myffslEmi:1236 + 2: 85 + 3: 54 + 4: 85 + 19: _ZN9oceanbase3lib7ABitSet6myffslEmi:379 + 2: 33 + 3: 4 + 4: 33 + 28: _ZN9oceanbase3lib7ABitSet6myffslEmi:0 + 2: 0 + 4: 0 + 32: _ZN9oceanbase3lib7ABitSet6myffslEmi:0 + 3: 0 + 4: 0 + 14.1: _ZNK9oceanbase3lib7AObject5blockEv:3225 + 2: _ZN9oceanbase3lib6AChunk9ptr2chunkEPKv:390 + 2: 26 + 3: _ZNK9oceanbase3lib6AChunk8is_validEv:182 + 2: 26 + 3.1: _ZL12abort_unlessb:156 + 5: 26 + 6: 0 + 4: _ZNK9oceanbase3lib6AChunk7ptr2blkEPKv:2497 + 2: 26 + 4: 29 + 3: _ZNK9oceanbase3lib6AChunk17max_blk_offset_leEi:1439 + 2: _ZNK9oceanbase3lib13ASimpleBitSetILi256EE10max_bit_leEi:1439 + 2: 26 + 3: 26 + 7: 26 + 9: 26 + 11.1: 1 + 12: 29 + 8: _ZN9oceanbase3lib13ASimpleBitSetILi256EE10max_bit_leEmi:619 + 2: 26 + 3: 29 + 4: 26 + 14.2: _ZNK9oceanbase3lib7AObject5blockEv:3882 + 2: _ZN9oceanbase3lib6AChunk9ptr2chunkEPKv:435 + 2: 29 + 3: _ZNK9oceanbase3lib6AChunk8is_validEv:261 + 2: 29 + 3.1: _ZL12abort_unlessb:174 + 5: 29 + 6: 0 + 4: _ZNK9oceanbase3lib6AChunk7ptr2blkEPKv:3012 + 2: 29 + 4: 29 + 3: _ZNK9oceanbase3lib6AChunk17max_blk_offset_leEi:1620 + 2: _ZNK9oceanbase3lib13ASimpleBitSetILi256EE10max_bit_leEi:1620 + 2: 29 + 3: 29 + 7: 29 + 9: 29 + 11.1: 1 + 12: 29 + 8: _ZN9oceanbase3lib13ASimpleBitSetILi256EE10max_bit_leEmi:725 + 2: 29 + 3: 29 + 4: 29 + 15.1: _ZNK9oceanbase3lib7AObject8phy_nextEi:0 + 2: 0 + 16.1: _ZNK9oceanbase3lib7AObject8phy_nextEi:0 + 2: 0 + 21: _ZN9oceanbase3lib9ObjectSet15add_free_objectEPNS0_7AObjectE:4475 + 2: 36 + 5: 36 + 5.1: 36 + 6.1: 36 + 7: 27 + 8: 27 + 9: 13 + 10: 13 + 11: 13 + 12: 13 + 16: 14 + 17: 14 + 2: _ZL12abort_unlessb:216 + 5: 36 + 6: 0 + 3: _ZNK9oceanbase3lib7AObject8is_validEv:468 + 2: 36 + 3.1: _ZL12abort_unlessb:216 + 5: 36 + 6: 0 + 8: _ZN9oceanbase3lib7ABitSet5issetEi:1053 + 3: 27 + 6: 27 + 9: 27 + 15: _ZN9oceanbase3lib7ABitSet3setEi:532 + 7: 14 + 10: 14 + 11: 14 + 13: 14 + 27: _ZN9oceanbase3lib9ObjectSet9split_objEPNS0_7AObjectEjRS3_:3708 + 4: 80 + 5: 80 + 6.1: 80 + 9: 11 + 10: 11 + 11: 11 + 12: 11 + 13: 11 + 16: 11 + 19: 3 + 9: _ZNK9oceanbase3lib7AObject8phy_nextEi:154 + 2: 11 + 9.1: _ZN9oceanbase3lib7AObjectC2Ev:297 + 1: 11 + 2: 11 + 3: 11 + 16: _ZNK9oceanbase3lib7AObject7is_lastEj:209 + 2: 11 + 18: _ZNK9oceanbase3lib7AObject8is_validEv:42 + 2: 3 + 18.1: _ZL12abort_unlessb:18 + 5: 3 + 6: 0 + 32: _ZNK9oceanbase3lib7AObject8is_validEv:984 + 2: 82 + 32.1: _ZL12abort_unlessb:97 + 5: 82 + 6: 1 +_ZN9oceanbase6common15ObLinearHashMapINS_12blocksstable12MacroBlockIdENS2_14ObBlockManager9BlockInfoENS0_14ShareMemMgrTagEE16load_access_bkt_EmRPNS7_6BucketE:32188:76 + 1: 68 + 4: 71 + 5: 71 + 7: 71 + 23: 72 + 31: 72 + 3: _ZN9oceanbase6common15ObLinearHashMapINS_12blocksstable12MacroBlockIdENS2_14ObBlockManager9BlockInfoENS0_14ShareMemMgrTagEE13load_haz_dir_ERPPNS7_6BucketE:6332 + 2: 68 + 2: _ZN9oceanbase6common13ObExternalRef7acquireEPPv:5856 + 4: 68 + 8: 0 + 10: 70 + 3: _ZN9oceanbase6common13ObExternalRef8load_ptrEPPv:952 + 0: 68 + 3.1: _ZN9oceanbase6common13ObExternalRef4xrefEPvi:3332 + 0: 68 + 0: _ZN9oceanbase6common13ObExternalRef6locateEPv:2652 + 0: 68 + 0: _ZN9oceanbase6common13ObExternalRef4hashEm:2312 + 1: 68 + 2: 68 + 3: 68 + 4: 68 + 5: 68 + 4: _ZN9oceanbase6common13ObExternalRef8load_ptrEPPv:748 + 0: 68 + 7: _ZN9oceanbase6common13ObExternalRef4xrefEPvi:0 + 0: 0 + 11: _ZN9oceanbase6common13ObExternalRef4xrefEPvi:0 + 0: 0 + 5: _ZN9oceanbase6common15ObLinearHashMapINS_12blocksstable12MacroBlockIdENS2_14ObBlockManager9BlockInfoENS0_14ShareMemMgrTagEE8seg_idx_Em:2130 + 2: 71 + 2.1: 71 + 3: 71 + 5.1: _ZN9oceanbase6common15ObLinearHashMapINS_12blocksstable12MacroBlockIdENS2_14ObBlockManager9BlockInfoENS0_14ShareMemMgrTagEE13load_haz_seg_ERPNS7_6BucketE:6753 + 2: 71 + 2: _ZN9oceanbase6common13ObExternalRef7acquireEPPv:6185 + 4: 71 + 8: 0 + 10: 72 + 3: _ZN9oceanbase6common13ObExternalRef8load_ptrEPPv:781 + 0: 71 + 3.1: _ZN9oceanbase6common13ObExternalRef4xrefEPvi:3976 + 0: 71 + 0: _ZN9oceanbase6common13ObExternalRef6locateEPv:3479 + 0: 71 + 0: _ZN9oceanbase6common13ObExternalRef4hashEm:3124 + 1: 71 + 2: 71 + 3: 71 + 4: 71 + 5: 71 + 4: _ZN9oceanbase6common13ObExternalRef8load_ptrEPPv:568 + 0: 71 + 7: _ZN9oceanbase6common13ObExternalRef4xrefEPvi:0 + 0: 0 + 11: _ZN9oceanbase6common13ObExternalRef4xrefEPvi:0 + 0: 0 + 7: _ZN9oceanbase6common15ObLinearHashMapINS_12blocksstable12MacroBlockIdENS2_14ObBlockManager9BlockInfoENS0_14ShareMemMgrTagEE8seg_idx_Em:2769 + 2: 71 + 2.1: 71 + 3: 0 + 23: _ZN9oceanbase6common15ObLinearHashMapINS_12blocksstable12MacroBlockIdENS2_14ObBlockManager9BlockInfoENS0_14ShareMemMgrTagEE12seg_bkt_idx_Em:1207 + 2.1: 71 + 3: 0 + 24: _ZN9oceanbase6common15ObLinearHashMapINS_12blocksstable12MacroBlockIdENS2_14ObBlockManager9BlockInfoENS0_14ShareMemMgrTagEE13set_bkt_lock_EPNS7_6BucketEb:2463 + 8: 70 + 9: 70 + 10: 70 + 11: 70 + 15: 0 + 19: 0 + 27: _ZN9oceanbase6common15ObLinearHashMapINS_12blocksstable12MacroBlockIdENS2_14ObBlockManager9BlockInfoENS0_14ShareMemMgrTagEE15unload_haz_seg_EPNS7_6BucketE:0 + 2: 0 + 2: _ZN9oceanbase6common13ObExternalRef7releaseEPv:0 + 1: 0 + 2: _ZN9oceanbase6common13ObExternalRef4xrefEPvi:0 + 0: 0 + 0: _ZN9oceanbase6common13ObExternalRef6locateEPv:0 + 0: 0 + 0: _ZN9oceanbase6common13ObExternalRef4hashEm:0 + 1: 0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 30: _ZN9oceanbase6common15ObLinearHashMapINS_12blocksstable12MacroBlockIdENS2_14ObBlockManager9BlockInfoENS0_14ShareMemMgrTagEE15unload_haz_dir_EPPNS7_6BucketE:4104 + 2: 72 + 2: _ZN9oceanbase6common13ObExternalRef7releaseEPv:3528 + 2: _ZN9oceanbase6common13ObExternalRef4xrefEPvi:3528 + 0: 72 + 0: _ZN9oceanbase6common13ObExternalRef6locateEPv:3096 + 0: 72 + 0: _ZN9oceanbase6common13ObExternalRef4hashEm:2664 + 1: 72 + 2: 72 + 3: 72 + 4: 72 + 5: 72 +_ZNK9oceanbase4palf14LogEntryHeader22check_header_integrityEv:32098:239 + 1: 232 + 2: 232 + 2.2: 240 + 2: _ZNK9oceanbase4palf14LogEntryHeader8is_validEv:8352 + 2: 232 + 2.1: 232 + 2.2: 232 + 53: 232 + 2.1: _ZNK9oceanbase4palf14LogEntryHeader22check_header_checksum_Ev:19714 + 4: 240 + 2: _ZNK9oceanbase4palf14LogEntryHeader28get_header_parity_check_res_Ev:17074 + 2: 251 _ZN9oceanbase6common12parity_checkEt:243 + 3: 253 _ZN9oceanbase6common12parity_checkEt:256 + 4: 253 _ZN9oceanbase6common12parity_checkEj:258 + 5: 244 _ZN9oceanbase6common12parity_checkEm:255 + 6: 240 _ZN9oceanbase6common12parity_checkEm:240 + 7: 236 + 8: 240 _ZN9oceanbase6common12parity_checkEm:261 +_ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE23ELS3_0EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE:31930:1061 + 0: 1030 + 0.3: 1030 +_ZN9oceanbase6common11ObArrayImplINS_5share6schema18ObSchemaObjVersionENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_17DefaultItemEncodeIS4_EEED2Ev:31930:549 + 1: 515 + 3: 515 + 3.2: 0 + 2: _ZN9oceanbase6common11ObArrayImplINS_5share6schema18ObSchemaObjVersionENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_17DefaultItemEncodeIS4_EEE7destroyEv:16480 + 2: 515 + 6: 0 + 7: 0 + 9: 515 + 11: 515 +_ZN9oceanbase6common10ObRowStoreD2Ev:31900:346 + 1: 319 + 3: 319 _ZN9oceanbase6common16ObFixedArrayImplIlNS0_12ObIAllocatorEED2Ev:333 + 3.1: 0 + 3.2: 0 + 2: _ZN9oceanbase6common10ObRowStore10clear_rowsEv:22011 + 3: 319 + 6: 319 + 7: 319 + 12.1: 319 + 15: 0 + 11: _ZN9oceanbase6common10ObRowStore9BlockList9get_firstEv:2552 + 0: 319 + 13: _ZN9oceanbase6common10ObRowStore9BlockInfo14get_next_blockEv:0 + 0: 0 + 18: _ZN9oceanbase6common10ObRowStore9BlockList5resetEv:4785 + 3: 319 +_ZN9oceanbase6common10ObRowStoreD1Ev:31900:346 + 1: 319 + 3: 319 _ZN9oceanbase6common16ObFixedArrayImplIlNS0_12ObIAllocatorEED2Ev:333 + 3.1: 0 + 3.2: 0 + 2: _ZN9oceanbase6common10ObRowStore10clear_rowsEv:22011 + 3: 319 + 6: 319 + 7: 319 + 12.1: 319 + 15: 0 + 11: _ZN9oceanbase6common10ObRowStore9BlockList9get_firstEv:2552 + 0: 319 + 13: _ZN9oceanbase6common10ObRowStore9BlockInfo14get_next_blockEv:0 + 0: 0 + 18: _ZN9oceanbase6common10ObRowStore9BlockList5resetEv:4785 + 3: 319 +_ZN9oceanbase6common11ObArrayImplIPNS_3sql21ObUserVarIdentRawExprENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS4_EENS0_17DefaultItemEncodeIS4_EEED2Ev:31806:548 + 1: 513 + 3: 513 + 3.2: 0 + 2: _ZN9oceanbase6common11ObArrayImplIPNS_3sql21ObUserVarIdentRawExprENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS4_EENS0_17DefaultItemEncodeIS4_EEE7destroyEv:16416 + 2: 513 + 6: 0 + 7: 0 + 9: 513 + 11: 513 +_ZThn24_N9oceanbase12blocksstable22ObIndexMicroBlockCache9get_cacheERPNS_6common10ObIKVCacheINS0_20ObMicroBlockCacheKeyENS0_22ObMicroBlockCacheValueEEE:31710:2164 + 3: 2114 +_ZNK9oceanbase5share6schema18ObTableSchemaParam21get_rowkey_column_idsERNS_6common8ObIArrayINS1_9ObColDescEEE:31698:177 + 1: 167 + 2: 167 + 3: 167 + 4: 0 + 5.1: 0 + 9.1: 168 + 9.2: 343 + 9.3: 343 + 9.5: 168 + 10: 168 + 11: 0 + 12.1: 0 + 14: 168 + 15: 168 + 16: 168 + 18: 168 _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema9ObColDescELl52ENS0_19ModulePageAllocatorELb0EE9push_backERKS4_:172 + 19.1: 0 + 24: 176 + 3: _ZNK9oceanbase5share6schema18ObTableSchemaParam8is_validEv:835 + 0: 167 + 8: _ZN9oceanbase5share6schema9ObColDescC2Ev:1169 + 0: _ZN9oceanbase6common9ObObjMetaC2Ev:1169 + 1: 167 + 10: _ZNK9oceanbase6common12ObIArrayWrapIPNS_5share6schema13ObColumnParamEE2atEl:672 + 6: 168 + 14: _ZNK9oceanbase5share6schema13ObColumnParam13get_column_idEv:504 + 0: 168 + 15: _ZNK9oceanbase5share6schema13ObColumnParam16get_column_orderEv:504 + 0: 168 + 17.1: _ZNK9oceanbase6common10ObAccuracy9get_scaleEv:672 + 0: 168 + 17.2: _ZN9oceanbase6common9ObObjMeta9set_scaleEs:504 + 0: 168 +_ZN9oceanbase6common13ObSEArrayImplINS_11transaction6ObPairINS_5share6ObLSIDElEELl1ENS0_19ModulePageAllocatorELb0EE9push_backERKS6_:31683:569 + 2: 537 + 5: 537 + 6: 0 + 12: 0 + 15: 0 + 15.1: 537 + 16: 537 + 19: 537 + 15.1: _ZN9oceanbase6common9ObClassOpINS_11transaction6ObPairINS_5share6ObLSIDElEELb0EE20construct_and_assignERKS6_RS6_:10740 + 3: _ZN9oceanbase6common16construct_assignINS_11transaction6ObPairINS_5share6ObLSIDElEEEEiRT_RKS7_:10740 + 2: _ZN9oceanbase6common21construct_assign_wrapINS_11transaction6ObPairINS_5share6ObLSIDElEEEEiRT_RKS7_NS0_8BoolTypeILb0EEE:10740 + 2: _ZN9oceanbase11transaction6ObPairINS_5share6ObLSIDElEC2ERKS4_:10740 + 0: 537 + 0: _ZN9oceanbase5share6ObLSIDC2ERKS1_:5907 + 0: 537 +_ZN9oceanbase8observer16ObMySQLResultSetD2Ev:31680:5363 + 0: 5280 + 0.1: 5280 _ZN9oceanbase3sql11ObResultSetD2Ev:5435 +_ZN9oceanbase3sql11ObSQLParser5parseEPKclR11ParseResult:31653:540 + 1: 524 + 5: 524 _ZN9oceanbase6common20ObActiveSessionGuard8get_statEv:524 + 7: 529 parse_init:539 + 10: 529 parse_sql:534 + 13: 491 _ZN9oceanbase6common20ObActiveSessionGuard8get_statEv:508 + 15: 491 +_ZN9oceanbase6common15ObKVGlobalCache3putINS0_18ObKVMemBlockHandleEEEiRNS0_15ObIKVCacheStoreIT_EElRKNS0_13ObIKVCacheKeyERKNS0_15ObIKVCacheValueERPSC_RPS3_b:31464:83 + 8: 76 + 9: 76 + 10: 76 _ZNK9oceanbase12blocksstable17ObFuseRowCacheKey13get_tenant_idEv:77 + 12: 76 + 13: 76 + 14: 76 + 15: 76 + 16: 76 + 17: 0 + 18.1: 0 + 20: 0 + 21.1: 0 + 22.1: 76 _ZN9oceanbase6common16ObKVCacheInstMap14get_cache_instERKNS0_16ObKVCacheInstKeyERNS0_19ObKVCacheInstHandleE:78 + 22.2: 82 + 23.1: 0 + 24.2: 82 + 25: 0 + 26.1: 0 + 27.1: 82 + 27.2: 0 + 27.3: 0 + 28: 0 + 29.2: 82 _ZN9oceanbase6common15ObIKVCacheStoreINS0_18ObKVMemBlockHandleEE5storeERNS0_13ObKVCacheInstERKNS0_13ObIKVCacheKeyERKNS0_15ObIKVCacheValueERPNS0_13ObKVCachePairERPS2_NS0_15ObKVCachePolicyE:87 + 29.3: 78 + 30.1: 0 + 32: 78 + 32.1: 78 + 33: 78 + 34: 78 + 34.1: 78 _ZN9oceanbase6common12ObKVCacheMap3putERNS0_13ObKVCacheInstERKNS0_13ObIKVCacheKeyEPKNS0_13ObKVCachePairEPNS0_18ObKVMemBlockHandleEb:90 + 34.2: 86 + 36.1: 0 + 41: 86 + 43: 0 + 44: 0 + 45: 0 + 48: 0 + 50.7: 84 + 10.1: _ZN9oceanbase6common16ObKVCacheInstKeyC2Elm:1064 + 1: 76 + 11: _ZN9oceanbase6common19ObKVCacheInstHandleC2Ev:1976 + 1: 76 + 2: 76 + 19.1: _ZNK9oceanbase6common16ObKVCacheInstKey8is_validEv:1672 + 0: 76 + 24.1: _ZN9oceanbase6common19ObKVCacheInstHandle8get_instEv:328 + 0: 82 + 43: _ZN9oceanbase6common15ObKVGlobalCache6revertEPNS0_18ObKVMemBlockHandleE:0 + 2: 0 + 3: _ZN9oceanbase6common14ObKVCacheStore13de_handle_refEPNS0_18ObKVMemBlockHandleE:0 + 3: 0 + 7.1: 0 + 8.1: 0 + 9.1: 0 + 10: 0 + 11.1: 0 + 50.7: _ZN9oceanbase6common19ObKVCacheInstHandleD2Ev:2436 + 1: 84 + 2: _ZN9oceanbase6common19ObKVCacheInstHandle5resetEv:2100 + 2: 84 + 2.1: 84 + 3: _ZN9oceanbase6common16ObKVCacheInstMap11de_inst_refEPNS0_13ObKVCacheInstE:756 + 3: 84 + 50.8: _ZN9oceanbase6common19ObKVCacheInstHandleD2Ev:0 + 1: 0 + 2: _ZN9oceanbase6common19ObKVCacheInstHandle5resetEv:0 + 2: 0 + 2.1: 0 + 3: _ZN9oceanbase6common16ObKVCacheInstMap11de_inst_refEPNS0_13ObKVCacheInstE:0 + 3: 0 +_ZN9oceanbase4palfplERKNS0_3LSNEm:31425:2154 + 1: 2095 + 4: 2095 + 6.3: 2095 +_ZN9oceanbase8keybtree10ObKeyBtree6retireERNS_6common10HazardListE:31366:98 + 1: 93 + 5: 93 _ZN9oceanbase8keybtree10ObKeyBtree18get_retire_stationEv:96 + 10.2: 79 + 2: _ZN9oceanbase6common10HazardListC2Ev:2790 + 0: 93 + 4: _ZN9oceanbase8keybtree10ObKeyBtree9get_qsyncEv:1302 + 2: 93 + 2.1: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common7ObQSyncC2Ev:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ObQSync3RefC2Ev:0 + 0: 0 + 4.1: _ZN9oceanbase6common18QSyncCriticalGuardC2ERNS0_7ObQSyncE:9300 + 0: _ZN9oceanbase6common7ObQSync11acquire_refEv:9300 + 2: 93 + 3: 93 + 4: 93 + 5.1: 0 + 7: 93 + 2: _ZN9oceanbase6common8get_itidEv:2604 + 4: 93 + 5: 0 + 6: 0 + 8: 0 + 3: _ZN9oceanbase6common7ObQSync7add_refEll:2511 + 6: 93 + 5.1: _ZN9oceanbase6common13RetireStation6retireERNS0_10HazardListES3_:9312 + 1: 96 + 1.1: 96 _ZN9oceanbase6common13RetireStation10RetireList6retireERNS0_10HazardListES4_lRNS0_6QClockE:100 + 1: _ZN9oceanbase6common13RetireStation15get_retire_listEv:7200 + 0: 96 + 0: _ZN9oceanbase6common8get_itidEv:2688 + 4: 96 + 5: 0 + 6: 0 + 8: 0 + 6.1: _ZN9oceanbase6common10HazardList3popEv:797 + 2: 87 + 4: 3 + 5: 3 + 6: 0 + 10: 3 + 7: _ZN9oceanbase8keybtree10ObKeyBtree9free_nodeEPNS0_9BtreeNodeE:315 + 4: 3 + 5: 3 + 3: _ZN9oceanbase8keybtree9BtreeNode8get_hostEv:12 + 0: 3 + 5: _ZN9oceanbase8keybtree18BtreeNodeAllocator9free_nodeEPNS0_9BtreeNodeE:264 + 3: _ZN9oceanbase8keybtree18BtreeNodeAllocator4pushEPNS0_9BtreeNodeE:264 + 0: _ZN9oceanbase8keybtree18BtreeNodeAllocator8push_idxEv:174 + 3: 3 + 4: 0 + 6: 3 + 4: _ZN9oceanbase6common7icpu_idEv:0 + 2: _ZN9oceanbase6common12sched_getcpuEv:0 + 0: 0 + 0: _ZN9oceanbase6common8get_itidEv:0 + 4: 0 + 5: 0 + 6: 0 + 8: 0 + 0.1: _ZN9oceanbase8keybtree13BtreeNodeList4pushEPNS0_9BtreeNodeE:90 + 0: _ZN9oceanbase8keybtree13BtreeNodeList9bulk_pushEPNS0_9BtreeNodeES3_:90 + 2: 3 + 3: 3 + 1: _ZN9oceanbase8keybtree13BtreeNodeList9load_lockEv:66 + 3.1: 3 + 4: 0 + 14: 3 + 10.1: _ZN9oceanbase6common18QSyncCriticalGuardD2Ev:0 + 0.2: 0 + 0: _ZN9oceanbase6common7ObQSync11release_refEl:0 + 2: 0 + 3: 0 + 4.1: 0 + 2: _ZN9oceanbase6common7ObQSync7add_refEll:0 + 3: 0 + 6: 0 + 10.2: _ZN9oceanbase6common18QSyncCriticalGuardD2Ev:3526 + 0.2: 0 + 0: _ZN9oceanbase6common7ObQSync11release_refEl:3526 + 2: 82 + 3: 82 + 4.1: 0 + 2: _ZN9oceanbase6common7ObQSync7add_refEll:2788 + 3: 82 + 6: 82 +_ZN9oceanbase11transaction14ObPartTransCtx24need_callback_scheduler_Ev:31248:281 + 0: 281 + 1: 281 _ZNK9oceanbase11transaction14ObPartTransCtx7is_rootEv:282 + 1.1: 268 + 2: 295 + 2.1: 295 _ZNK9oceanbase11transaction14ObPartTransCtx9is_sub2pcEv:296 + 3: 271 + 3.1: 271 + 4: 271 + 5: 271 + 6: 271 + 4.1: _ZNK9oceanbase6common6ObAddreqERKS1_:13008 + 2: 271 + 2.1: 271 + 2.2: 271 + 5.1: _ZN9oceanbase11transaction18ObTxCommitCallback10is_enabledEv:1897 + 0: 271 + 6.1: _ZN9oceanbase11transaction18ObTxCommitCallback9is_initedEv:2981 + 0: 271 +_ZN9oceanbase3rpc5frame14ObReqProcessor7destroyEv:31218:5229 + 0: 5203 +_ZN9oceanbase11transaction17ObTxCommitInfoLogC2ERNS_6common6ObAddrERNS2_9ObSEArrayINS_5share6ObLSIDELl3ENS2_19ModulePageAllocatorELb0EEERS7_bbbRNS2_8ObStringERKSC_RKNS_4palf3LSNERNS5_ISH_Ll10ES8_Lb0EEESA_mRKNS0_11ObXATransIDE:31108:255 + 13: 242 + 14: 242 + 15: 242 + 16: 242 + 17: 242 _ZN9oceanbase4palf3LSNC1ERKS1_:242 + 17.1: 231 _ZN9oceanbase11transaction11ObXATransIDC1ERKS1_:250 + 18: 242 + 19: 243 _ZN9oceanbase11transaction17ObTxCommitInfoLog16before_serializeEv:267 + 20: 288 + 0: _ZN9oceanbase11transaction17ObTxSerCompatByteC2Ev:2420 + 0: _ZN9oceanbase11transaction17ObTxSerCompatByte5resetEv:2420 + 3: 242 + 13: _ZN9oceanbase5share6ObLSIDC2ERKS1_:1694 + 0: 242 + 20.3: _ZN9oceanbase11transaction11ObXATransIDD2Ev:36 + 0.2: 2 + 0: _ZN9oceanbase11transaction11ObXATransID7destroyEv:20 + 0: 2 + 20.5: _ZN9oceanbase5share6ObLSIDD2Ev:32 + 0: _ZN9oceanbase5share6ObLSID5resetEv:32 + 0: 2 +_ZN9oceanbase6common20ObGMemstoreAllocator11AllocHandle5allocEl:31101:1529 + 0: 1481 + 1: 1481 + 1.2: 1481 _ZN9oceanbase6common20ObGMemstoreAllocator5allocERNS1_11AllocHandleEl:1481 + 1.3: 0 +_ZN9oceanbase3sql20ObDASIndexDMLAdaptorILi2ENS0_16ObDASDMLIteratorEED2Ev:31068:285 + 0: 285 + 0: _ZN9oceanbase7storage14ObDMLBaseParamD2Ev:21438 + 2: 285 _ZN9oceanbase11transaction16ObTxReadSnapshotD1Ev:287 + 2.1: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction18ObEncryptMetaCacheELl1ENS0_19ModulePageAllocatorELb0EED2Ev:19158 + 1: 258 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction18ObEncryptMetaCacheELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:14514 + 9: 258 + 11: 0 + 13: 282 + 15: 282 + 24: 282 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction18ObEncryptMetaCacheELl1ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 0.2: _ZN9oceanbase6common10ObTabletIDD2Ev:3102 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:3102 + 0: 282 +_ZZN9oceanbase3sql16ObHashDistinctOp5resetEvENK5$_459clEPKc.ae889f3027d8490103b30de3c389dd2f:31005:527 + 0: 529 + 0.1: 0 + 0.2: 529 + 0.3: 514 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:526 + 0.8: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:8738 + 2: 514 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.5: _ZN9oceanbase6common7ObLogKVIRKbLb0EEC2EPKcS3_:0 + 0: 0 + 0.7: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql20ObAggregateProcessor12IAggrFuncCtxENS0_12ObIAllocatorEE4initEl:30990:236 + 1: 228 + 2: 228 + 3: 228 + 4: 0 + 5.1: 0 + 6.1: 228 + 7: 0 + 8.1: 0 + 8.2: 0 + 8.5: 0 + 8.11: 0 + 9.1: 228 + 10: 0 + 11.1: 0 + 11.5: 0 + 11.9: 0 + 12.1: 228 + 15: 228 + 16: 258 _ZN9oceanbase6common16ObArenaAllocator5allocEl:260 + 17: 258 + 18: 0 + 19.1: 0 + 21: 258 + 22: 258 + 23: 258 + 26: 258 + 8.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 8.8: _ZN9oceanbase6common7ObLogKVIRKPPNS_3sql20ObAggregateProcessor12IAggrFuncCtxELb0EEC2EPKcS8_:0 + 0: 0 + 8.10: _ZN9oceanbase6common7ObLogKVIRKjLb0EEC2EPKcS3_:0 + 0: 0 + 11.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 11.8: _ZN9oceanbase6common7ObLogKVIRKPNS0_12ObIAllocatorELb0EEC2EPKcS5_:0 + 0: 0 +_ZN9oceanbase11transaction12CtxLockGuardD2Ev:30949:4495 + 1: 4349 + 2: 4349 _ZN9oceanbase11transaction12CtxLockGuard5resetEv:4502 + 2.1: 22 + 3: 4508 +_ZN9oceanbase11transaction12CtxLockGuardD1Ev:30949:4495 + 1: 4349 + 2: 4349 _ZN9oceanbase11transaction12CtxLockGuard5resetEv:4502 + 2.1: 22 + 3: 4508 +_ZN9oceanbase6common11ObArrayImplIPNS_3sql22ObInMemoryTopnSortImpl13SortStoredRowENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEED2Ev:30752:508 + 1: 496 + 3: 496 + 3.2: 0 + 2: _ZN9oceanbase6common11ObArrayImplIPNS_3sql22ObInMemoryTopnSortImpl13SortStoredRowENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEE7destroyEv:15872 + 2: 496 + 6: 0 + 7: 0 + 9: 496 + 11: 496 +_ZNK9oceanbase11transaction14ObPartTransCtx20gen_final_mds_array_ERNS_6common9ObSEArrayINS0_14ObTxBufferNodeELl1ENS2_19ModulePageAllocatorELb0EEEb:30744:253 + 1: 236 + 5: 268 _ZN9oceanbase6common13ObSEArrayImplINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EE6assignERKNS0_8ObIArrayIS3_EE:244 + 6.1: 0 + 7.1: 268 + 7.2: 279 _ZNK9oceanbase11transaction12ObTxMDSCache7copy_toERNS_6common9ObSEArrayINS0_14ObTxBufferNodeELl1ENS2_19ModulePageAllocatorELb0EEE:278 + 8.1: 0 + 11: 0 + 12.1: 0 + 16: 275 + 11: _ZNK9oceanbase6common13ObSEArrayImplINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EE18get_serialize_sizeEv:6975 + 5.1: 279 + 5.3: 0 + 6: 0 + 4: _ZNK9oceanbase6common12ObIArrayWrapINS_11transaction14ObTxBufferNodeEE5countEv:3069 + 0: 279 + 4.1: _ZN9oceanbase6common13serialization19encoded_length_vi64El:2232 + 4: 279 + 6.1: 0 + 8.1: 0 + 10.1: 0 + 12.1: 0 + 14.1: 0 + 16.1: 0 + 18.1: 0 + 6.1: _ZN9oceanbase6common13serialization14encoded_lengthINS_11transaction14ObTxBufferNodeEEElRKT_:0 + 2: _ZN9oceanbase6common13serialization11EnumEncoderILb0ENS_11transaction14ObTxBufferNodeEE14encoded_lengthERKS4_:0 + 2: 0 + 13: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EE5resetEv:0 + 0: 0 +_ZN9oceanbase3lib7ABitSetC2EiPc:30744:256 + 1: 246 + 2: 246 + 3: 246 + 4: 246 + 5: 246 + 6: 246 + 7: 246 + 8: 246 + 9: 246 + 4: _ZN9oceanbase3lib7ABitSet13n_first_levelEl:3936 + 2: 246 + 2: _ZN9oceanbase3lib7ABitSet14n_second_levelEl:1968 + 2: 246 + 6: _ZN9oceanbase3lib7ABitSet14n_second_levelEl:738 + 2: 246 + 8: _ZL12abort_unlessb:492 + 5: 246 + 6: 0 + 9: _ZL12abort_unlessb:492 + 5: 246 + 6: 0 + 10: _ZN9oceanbase3lib7ABitSet5clearEv:10572 + 2: 246 + 3: 246 + 4: 234 +_ZN9oceanbase3lib7ABitSetC1EiPc:30744:256 + 1: 246 + 2: 246 + 3: 246 + 4: 246 + 5: 246 + 6: 246 + 7: 246 + 8: 246 + 9: 246 + 4: _ZN9oceanbase3lib7ABitSet13n_first_levelEl:3936 + 2: 246 + 2: _ZN9oceanbase3lib7ABitSet14n_second_levelEl:1968 + 2: 246 + 6: _ZN9oceanbase3lib7ABitSet14n_second_levelEl:738 + 2: 246 + 8: _ZL12abort_unlessb:492 + 5: 246 + 6: 0 + 9: _ZL12abort_unlessb:492 + 5: 246 + 6: 0 + 10: _ZN9oceanbase3lib7ABitSet5clearEv:10572 + 2: 246 + 3: 246 + 4: 234 +_ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl1ENS0_19ModulePageAllocatorELb0EED2Ev:30705:285 + 1: 267 + 3: 267 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:20826 + 4.1: 267 + 4.3: 267 + 9: 267 + 11: 0 + 13: 267 + 15: 267 + 24: 267 + 5: _ZN9oceanbase6common10ObTabletIDD2Ev:4005 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:4005 + 0: 267 + 10: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl1ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase6common12ObDataBuffer5allocEl:30668:760 + 1: 748 + 3: 748 + 3.1: 748 + 3.2: 748 + 4: 748 + 5: 748 + 7: 748 +_ZN9oceanbase8memtable13ObMemtableCtx24add_trans_mem_total_sizeEl:30628:1038 + 1: 988 + 2: 988 + 3.1: 0 + 5: 988 + 7: 988 +_ZN9oceanbase7storageL13is_lob_updateERNS0_15ObDMLRunningCtxERKNS_6common8ObIArrayIlEE.e6be6dc590fd106f1b5fd0ce2055aa18:30600:353 + 1: 336 + 3.1: 336 + 3.3: 336 + 4: 336 + 5: 336 + 9: 348 + 3.1: _ZNK9oceanbase6common12ObIArrayWrapIlE5countEv:1344 + 0: 336 + 4: _ZNK9oceanbase6common12ObIArrayWrapIlE2atEl:1344 + 5: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE2atEl:5376 + 5.1: _ZNK9oceanbase6common9ObObjMeta9is_lob_v2Ev:6384 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:4368 + 0: 336 + 0.3: _ZN9oceanbase6common16ob_is_large_textENS0_9ObObjTypeE:2016 + 0: 336 +_ZN9oceanbase6common11ObArrayImplINS_3sql18ObPCParamEqualInfoENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev:30566:521 + 1: 493 + 3: 493 + 3.2: 0 + 2: _ZN9oceanbase6common11ObArrayImplINS_3sql18ObPCParamEqualInfoENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE7destroyEv:15776 + 2: 493 + 6: 0 + 7: 0 + 9: 493 + 11: 493 +_ZN9oceanbase8memtable10ObMemtable20get_is_tablet_freezeEv:30540:2578 + 0: 2545 +_ZN9oceanbase3sql19ObScalarAggregateOp11inner_closeEv:30332:249 + 1: 238 + 2: 238 + 3: 228 + 3: _ZN9oceanbase3sql11ObGroupByOp11inner_closeEv:22608 + 3: _ZN9oceanbase3sql20ObAggregateProcessor5reuseEv:22608 + 2: 238 + 4.1: 0 + 4.3: 0 + 5: 0 + 5.1: 0 + 8: 234 + 10: 0 + 12: 234 + 14: 0 + 16: 230 + 18: 230 + 17: _ZN9oceanbase6common9Ob2DArrayIPNS_3sql20ObAggregateProcessor8GroupRowELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS5_Ll64ES6_Lb0EEEE5reuseEv:1610 + 0: _ZN9oceanbase6common9Ob2DArrayIPNS_3sql20ObAggregateProcessor8GroupRowELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS5_Ll64ES6_Lb0EEEE13destruct_objsEv:1610 + 11: 230 + 20: _ZN9oceanbase6common16ObArenaAllocator21reset_remain_one_pageEv:1840 + 0: 230 _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE20free_remain_one_pageEv:249 + 21: _ZN9oceanbase3sql11RemovalInfo5resetEv:8208 + 1: 228 + 2: 228 + 4: 228 + 5: 228 +_ZN9oceanbase8observer8ObMPBase7cleanupEv:30326:5148 + 1: 5049 + 2: 5049 _ZN9oceanbase6common20ObActiveSessionGuard17setup_default_ashEv:5093 +_ZZN9oceanbase11transaction11ObTxDescMgr6revertERNS0_8ObTxDescEENK6$_1087clEPKc.6c6f3ed9193054173c335adef4549614:30301:490 + 0: 495 + 0.1: 0 + 0.2: 495 + 0.3: 478 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:506 + 0.5: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:8126 + 2: 478 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKNS_11transaction9ObTransIDELb0EEC2EPKcS5_:0 + 0: 0 +_ZN9oceanbase11transaction14ObTsSourceInfo13get_ts_sourceEmRNS0_15ObTsSourceGuardERb:30219:254 + 1: 241 + 2: 241 + 3: 241 _ZN9oceanbase5share11ObQSyncLock6rdlockEv:257 + 4: 249 + 5: 0 + 6.1: 0 + 7.1: 249 + 7.2: 249 + 8: 0 + 9.1: 0 + 11: 249 + 12: 249 + 13: 249 + 15: 249 + 16: 0 + 18: 249 + 7.1: _ZN9oceanbase6common18is_valid_tenant_idEm:1992 + 2: 249 + 13: _ZN9oceanbase11transaction15ObTsSourceGuard3setEPNS0_14ObTsSourceInfoEPNS0_11ObITsSourceEi:2739 + 2: 249 + 3: 249 + 4: 249 +_ZN9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE4nextEPNS0_12LinkHashNodeIS3_EE:30178:12 + 1: 12 + 4: 10 + 2: _ZN9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE18get_retire_stationEv:204 + 1: 12 + 1.1: 0 + 1.2: 0 + 1.5: 0 + 1.7: 0 + 1.3: _ZN9oceanbase6common13RetireStationC2ERNS0_6QClockEl:0 + 0.2: 0 + 1: 0 + 0.1: _ZN9oceanbase6common13RetireStation10RetireListC2Ev:0 + 0: 0 + 0: _ZN9oceanbase6common10HazardListC2Ev:0 + 0: 0 + 0.4: _ZN9oceanbase6common10HazardListC2Ev:0 + 0: 0 + 2.1: _ZN9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE5GuardC2ERNS0_13RetireStationE:344 + 0: _ZN9oceanbase6common9RefHandleC2ERNS0_13RetireStationE:204 + 0: _ZN9oceanbase6common13BaseRefHandleC2ERNS0_13RetireStationE:204 + 0: _ZN9oceanbase6common17get_global_qclockEv:204 + 2: 12 + 2.1: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common6QClockC2Ev:0 + 0: 0 + 0.1: _ZN9oceanbase6common6QClock9ClockSlotC2Ev:0 + 0: 0 + 0.4: _ZN9oceanbase6common13BaseRefHandle14enter_criticalEv:140 + 0: 12 _ZN9oceanbase6common6QClock14enter_criticalEv:12 + 3: _ZN9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE5next_EPNS0_12LinkHashNodeIS3_EE:28823 + 5.1: 10 + 7: 10 + 4.4: _ZN9oceanbase6common6DCHashINS_3sql14SessionInfoKeyELl8EE4nextEPNS0_11KeyHashNodeIS3_EE:25586 + 1.2: 740 + 2: 740 + 1.1: _ZN9oceanbase6common6DCHashINS_3sql14SessionInfoKeyELl8EE9next_nodeEPNS0_11KeyHashNodeIS3_EE:10706 + 2: 763 + 4.1: 763 + 5: 10 + 6.1: 10 + 6.3: 10 + 8: 0 + 9: 10 + 4.1: _ZN9oceanbase6common15is_last_bit_setEm:3052 + 2: 763 + 6.1: _ZN9oceanbase6common6DCHashINS_3sql14SessionInfoKeyELl8EE10search_preEmRPNS0_8HashNodeE:310 + 2: 10 + 3: 10 + 2.1: _ZN9oceanbase6common8HashNode13is_dummy_nodeEv:10360 + 0: 740 + 5.1: _ZN9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE11try_inc_refEPNS0_12LinkHashNodeIS3_EE:300 + 6.1: 10 + 4: _ZN9oceanbase6common9RefHandle3incEPNS0_7RefNodeE:250 + 0: _ZN9oceanbase6common15faa_if_positiveEPii:250 + 2: 10 + 4.1: 10 + 4.2: 10 + 4.3: 10 + 6.1: _ZN9oceanbase6common15is_last_bit_setEm:40 + 2: 10 + 7: _ZN9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE8dec_urefEPNS0_12LinkHashNodeIS3_EE:0 + 3: 0 + 4: 0 + 3: _ZN9oceanbase6common9RefHandle3decEPNS0_7RefNodeE:0 + 0: 0 + 4: _ZN9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE5GuardD2Ev:311 + 0: _ZN9oceanbase6common13BaseRefHandle14leave_criticalEv:311 + 0: _ZN9oceanbase6common6QClock14leave_criticalEm:311 + 1: 10 + 2: _ZN9oceanbase6common6QClock6locateEm:117 + 0: 9 + 2.1: _ZN9oceanbase6common6QClock9ClockSlot11clear_clockEv:144 + 0: 9 + 4.1: _ZN9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE5GuardD2Ev:0 + 0: _ZN9oceanbase6common13BaseRefHandle14leave_criticalEv:0 + 0: _ZN9oceanbase6common6QClock14leave_criticalEm:0 + 1: 0 + 2: _ZN9oceanbase6common6QClock6locateEm:0 + 0: 0 + 2.1: _ZN9oceanbase6common6QClock9ClockSlot11clear_clockEv:0 + 0: 0 +_ZN9oceanbase12blocksstable21ObMicroBlockRowGetter13inner_get_rowERKNS0_12MacroBlockIdERKNS0_13ObDatumRowkeyERKNS0_16ObMicroBlockDataERPKNS0_10ObDatumRowE:29978:111 + 5: 108 + 6: 108 + 7: 108 + 8: 0 + 9.1: 0 + 10.1: 108 + 10.3: 108 + 11: 0 + 12.1: 0 + 13.1: 89 + 13.2: 108 _ZN9oceanbase12blocksstable23ObIMicroBlockRowFetcher14prepare_readerENS_6common14ObRowStoreTypeE:108 + 14.1: 0 + 16: 89 + 16.1: 89 _ZN9oceanbase12blocksstable10ObDatumRow7reserveElb:89 + 17.1: 0 + 18.1: 79 _ZThn320_N9oceanbase12blocksstable21ObMicroBlockGetReader7get_rowERKNS0_16ObMicroBlockDataERKNS0_13ObDatumRowkeyERKNS_7storage15ObTableReadInfoERNS0_10ObDatumRowE:78 + 20: 0 + 21.1: 0 + 25.1: 0 + 29: 79 + 35: 0 + 36.1: 85 + 38.1: 1 + 38.2: 1 + 40: 0 + 40.3: 0 + 46: 0 + 49: 0 + 49.1: 0 + 49.2: 0 + 50: 0 + 50.1: 0 + 51.2: 0 + 51.3: 0 + 52: 0 + 55: 0 + 55.1: 0 + 56.1: 0 + 58: 0 + 63: 82 + 10.2: _ZNK9oceanbase7storage15ObTableReadInfo8is_validEv:7884 + 2: 108 + 3: 108 + 3.1: 108 + 4: 108 + 5.1: 108 + 6: 108 + 7: 108 + 7.1: 108 + 3.1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:756 + 0: 108 + 6.1: _ZNK9oceanbase12blocksstable19ObStorageDatumUtils8is_validEv:756 + 0: 108 + 13.1: _ZNK9oceanbase12blocksstable16ObMicroBlockData14get_store_typeEv:3645 + 4: 108 + 4.1: 108 _ZNK9oceanbase12blocksstable18ObMicroBlockHeader8is_validEv:108 + 5: 105 + 6: 105 + 16: _ZNK9oceanbase7storage15ObTableReadInfo17get_request_countEv:623 + 1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:623 + 0: 89 + 38.1: _ZNK9oceanbase7storage20ObTableAccessContext20enable_put_row_cacheEv:55 + 1: 1 + 1.2: 1 + 1.3: 1 + 1: _ZNK9oceanbase6common11ObQueryFlag16is_use_row_cacheEv:10 + 0: 1 + 1.2: _ZNK9oceanbase7storage16ObTableStoreStat20enable_put_row_cacheEv:8 + 2: 1 + 1.4: _ZNK9oceanbase6common10ObTabletID18is_ls_inner_tabletEv:8 + 0: 1 + 38.2: _ZNK9oceanbase7storage16ObTableIterParam21read_with_same_schemaEv:4 + 2: 1 + 39: _ZN9oceanbase12blocksstable15ObRowCacheValueC2Ev:0 + 1: 0 + 3: 0 + 6: 0 + 8: 0 + 2: _ZN9oceanbase12blocksstable12ObDmlRowFlagC2Ev:0 + 1: 0 + 40.1: _ZNK9oceanbase7storage8ObITable8TableKey16get_start_log_tsEv:0 + 0: 0 + 40.2: _ZN9oceanbase12blocksstable15ObRowCacheValue4initElRKNS0_10ObDatumRowE:0 + 4: 0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 9.2: 0 + 9.3: 0 + 10: 0 + 5: _ZNK9oceanbase12blocksstable10ObDatumRow16get_column_countEv:0 + 0: 0 + 7: _ZN9oceanbase12blocksstable12ObDmlRowFlagaSERKS1_:0 + 3: 0 + 2: _ZNK9oceanbase12blocksstable12ObDmlRowFlag8is_validEv:0 + 2: 0 + 10: _ZNK9oceanbase12blocksstable14ObStorageDatum18get_deep_copy_sizeEv:0 + 3: 0 + 4.1: 0 + 3: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:0 + 0: 0 + 4.1: _ZNK9oceanbase12blocksstable14ObStorageDatum12is_local_bufEv:0 + 0: 0 + 44.1: _ZN9oceanbase12blocksstable13ObRowCacheKeyC2EmRKNS_6common10ObTabletIDERKNS0_13ObDatumRowkeyERKNS0_19ObStorageDatumUtilsElNS_7storage8ObITable9TableTypeE:0 + 6: 0 + 7: 0 + 9: 0 + 10: 0 + 11: 0 + 12: 0 + 13.1: 0 + 0.1: _ZN9oceanbase12blocksstable13ObDatumRowkeyC2Ev:0 + 0.4: _ZN9oceanbase12blocksstable13ObDatumRowkey5resetEv:0 + 0: 0 + 0.2: _ZN9oceanbase6common10ObTabletIDC2Em:0 + 0: 0 + 8: _ZN9oceanbase6common10ObTabletIDaSERKS1_:0 + 0: 0 + 13: _ZNK9oceanbase12blocksstable13ObDatumRowkey18get_deep_copy_sizeEv:0 + 4: 0 + 5: 0 + 6.1: 0 + 8: 0 + 9: 0 + 9.1: 0 + 9.3: 0 + 10: 0 + 4: _ZNK9oceanbase12blocksstable13ObDatumRowkey8is_validEv:0 + 0: 0 + 0.1: 0 + 10: _ZNK9oceanbase12blocksstable14ObStorageDatum18get_deep_copy_sizeEv:0 + 3: 0 + 4.1: 0 + 3: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:0 + 0: 0 + 4.1: _ZNK9oceanbase12blocksstable14ObStorageDatum12is_local_bufEv:0 + 0: 0 + 45: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 45.1: _ZNK9oceanbase5share12ObTenantBase2idEv:0 + 0: 0 + 48: _ZNK9oceanbase7storage15ObTableReadInfo15get_datum_utilsEv:0 + 0: 0 + 49.5: _ZNK9oceanbase7storage8ObITable8TableKey14get_end_log_tsEv:0 + 0: 0 + 51: _ZN9oceanbase12blocksstable19ObStorageCacheSuite12get_instanceEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 61.1: _ZN9oceanbase12blocksstable13ObRowCacheKeyD2Ev:0 + 1: 0 +_ZN9oceanbase3sql20ObDASIndexDMLAdaptorILi4ENS0_16ObDASDMLIteratorEED2Ev:29863:257 + 0: 269 + 0: _ZN9oceanbase7storage14ObDMLBaseParamD2Ev:21011 + 2: 248 _ZN9oceanbase11transaction16ObTxReadSnapshotD1Ev:268 + 2.1: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction18ObEncryptMetaCacheELl1ENS0_19ModulePageAllocatorELb0EED2Ev:19027 + 1: 267 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction18ObEncryptMetaCacheELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:14221 + 9: 267 + 11: 0 + 13: 269 + 15: 269 + 24: 269 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction18ObEncryptMetaCacheELl1ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 0.2: _ZN9oceanbase6common10ObTabletIDD2Ev:2959 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:2959 + 0: 269 +_ZN9oceanbase6common11ObTimeWheel6cancelEPNS0_15ObTimeWheelTaskE:29842:504 + 1: 496 + 3: 496 + 4.1: 0 + 8.1: 496 + 9.1: 0 + 11.1: 496 _ZNK9oceanbase11transaction18ObTransTimeoutTask4hashEv:508 + 11.2: 478 _ZN9oceanbase6common13TimeWheelBase6cancelEPNS0_15ObTimeWheelTaskE:488 + 17: 0 +_ZN9oceanbase8memtable10ObMemtable13inc_write_refEv:29760:1331 + 0: 1240 +_ZNK9oceanbase6common4hash16ObPointerHashMapImPNS_5share6schema21ObSimpleTableSchemaV2ENS4_13GetTableKeyV2ELl8064ENS0_19ModulePageAllocatorEE14get_refactoredERKmRS6_:29730:47 + 1: 46 + 4: 46 + 5.1: 0 + 8.1: 46 + 8.3: 41 + 9: 41 + 15: 55 + 9: _ZNK9oceanbase6common4hash18ObPointerHashArrayImPNS_5share6schema21ObSimpleTableSchemaV2ENS4_13GetTableKeyV2EE14get_refactoredERKmRS6_:24031 + 5: 55 + 5.1: 55 + 6.1: 0 + 9: 55 + 4: _ZNK9oceanbase6common4hash18ObPointerHashArrayImPNS_5share6schema21ObSimpleTableSchemaV2ENS4_13GetTableKeyV2EE21placement_hash_searchERKmRl:22931 + 3: 90 + 5: 90 + 9: 126 + 13: 166 + 15.1: 172 + 16: 55 + 19: 126 + 20: 126 + 8: _ZNK9oceanbase6common4hash18ObPointerHashArrayImPNS_5share6schema21ObSimpleTableSchemaV2ENS4_13GetTableKeyV2EE17key_to_anchor_idxERKm:6766 + 3: 90 + 4: 90 + 4.2: 4 + 2: _ZN9oceanbase6common7do_hashImEEmRKT_:5400 + 2: _ZN9oceanbase6common13dispatch_hashImEEmRKT_NS0_8BoolTypeILb0EEE:5400 + 3: _ZN9oceanbase6common10murmurhashEPKvim:5400 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:5400 + 11: 90 + 13: 90 + 14: 90 + 15: 90 + 17: 90 + 18: 90 + 41: 90 + 42: 90 + 43: 90 + 8.1: _ZNK9oceanbase6common4hash18ObPointerHashArrayImPNS_5share6schema21ObSimpleTableSchemaV2ENS4_13GetTableKeyV2EE10probe_nextEl:2268 + 3: 126 + 5: 126 + 15.1: _ZNK9oceanbase5share6schema13GetTableKeyV2ImPNS1_21ObSimpleTableSchemaV2EEclEPKS3_:2846 + 2: 166 + 3: 166 _ZNK9oceanbase5share6schema21ObSimpleTableSchemaV212get_table_idEv:175 +_ZN9oceanbase8observer22ObGlobalReqTimeService18check_req_timeinfoEv:29712:5044 + 1: 4952 + 10: 4952 +_ZN9oceanbase3sql23ObEndTransAsyncCallback8callbackEi:29692:213 + 1: 208 + 3: 208 + 4.1: 0 + 7.1: 208 + 8.1: 0 + 11: 208 + 15: 229 + 19: 229 + 20: 229 + 22: 0 + 25: 261 + 10: _ZN9oceanbase3sql10ObSQLUtils40check_if_need_disconnect_after_end_transEibbRb:7471 + 10: 208 + 12: 0 + 12.2: 0 + 15.1: 0 + 24.1: 0 + 22: _ZN9oceanbase3sql10ObSQLUtils35is_trans_commit_need_disconnect_errEi:5807 + 4: 229 + 15: _ZN9oceanbase8observer15ObSqlEndTransCb19set_need_disconnectEb:1374 + 0: 229 + 16: _ZN9oceanbase3sql19ObIEndTransCallback6handinEv:3664 + 0.1: 229 + 17: _ZNK9oceanbase3sql19ObIEndTransCallback13CHECK_BALANCEEPKc:2290 + 2: 229 + 3.1: 0 +_ZN9oceanbase6common13ObSEArrayImplINS_4palf3LSNELl10ENS0_19ModulePageAllocatorELb0EE7destroyEv:29640:537 + 1: 520 + 9: 520 + 11: 0 + 13: 520 + 15: 520 + 24: 520 + 25: 520 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_4palf3LSNELl10ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: 0 +_ZNK9oceanbase8memtable13ObMemtableCtx10is_can_elrEv:29624:1101 + 1: 1058 + 3: 1058 + 6: 1058 + 4: _ZNK9oceanbase11transaction14ObPartTransCtx10is_can_elrEv:10580 + 0: 1058 +_ZN9oceanbase3sql13ObRoutePolicy4initEv:29529:257 + 1: 253 + 2: 253 + 3: 253 + 4: 1 + 5.1: 1 + 6.1: 254 _ZN9oceanbase8observer14global_contextEv:266 + 7: 1 + 8.1: 1 + 9.1: 279 _ZN9oceanbase8observer14global_contextEv:264 + 9.2: 263 _ZNK9oceanbase7storage17ObLocalityManager25get_server_locality_arrayERNS_6common8ObIArrayINS_5share16ObServerLocalityEEERb:270 + 10.1: 1 + 11.1: 279 _ZN9oceanbase3sql13ObRoutePolicy19get_server_localityERKNS_6common6ObAddrERKNS2_8ObIArrayINS_5share16ObServerLocalityEEERS8_:295 + 12.1: 1 + 14: 247 + 16: 247 +_ZN9oceanbase8memtable22ObMemtableRowCompactor7compactEl:29440:58 + 1: 56 + 2: 56 + 4: 56 + 5: 0 + 6.1: 56 + 7.1: 0 + 8: 0 + 9.1: 56 + 9.2: 2 + 10: 2 + 14: 60 + 16: 60 _ZN9oceanbase8memtable22ObMemtableRowCompactor15find_start_pos_ElRPNS0_15ObMvccTransNodeE:62 + 19: 53 _ZN9oceanbase8memtable22ObMemtableRowCompactor23construct_compact_node_ElPNS0_15ObMvccTransNodeE:54 + 22: 74 + 23: 74 + 28: 55 + 13: _ZN9oceanbase6common11ObTimeGuardC2EPKcl:2726 + 2: 54 + 3: 54 + 4: 54 + 6: 54 + 7: 54 + 8: 54 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:56 + 2: 56 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:56 + 17: _ZN9oceanbase6common11ObTimeGuard5clickEPKc:3612 + 3: 53 + 4: 53 + 5: 53 + 6: 53 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:61 + 2: 61 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:61 + 20: _ZN9oceanbase6common11ObTimeGuard5clickEPKc:5028 + 3: 74 + 4: 74 + 5: 74 + 6: 74 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:70 + 2: 70 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:70 + 23: _ZN9oceanbase8memtable22ObMemtableRowCompactor20insert_compact_node_EPNS0_15ObMvccTransNodeES3_:5407 + 6: 74 + 7: 74 + 8: 62 + 9: 62 + 11: 8 + 12: 8 + 14: 67 + 17: 67 + 18: 67 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:67 + 19: 60 + 20: 60 + 21: 60 + 25: _ZN9oceanbase6common11ObTimeGuard5clickEPKc:4147 + 3: 61 + 4: 61 + 5: 61 + 6: 61 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:60 + 2: 60 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:60 + 26.1: _ZN9oceanbase6common11ObTimeGuardD2Ev:941 + 2.1: 55 + 3.1: 0 + 2: _ZNK9oceanbase6common11ObTimeGuard8get_diffEv:446 + 2: 55 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:61 + 2: 61 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:61 + 26.2: _ZN9oceanbase6common11ObTimeGuardD2Ev:0 + 2.1: 0 + 3.1: 0 + 2: _ZNK9oceanbase6common11ObTimeGuard8get_diffEv:0 + 2: 0 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 +_ZN9oceanbase6common16ObFixedArrayImplINS_5share6schema10ObNeedPrivENS0_12ObIAllocatorEE7destroyEv:29355:524 + 1: 515 + 2: 515 + 5: 515 + 9: 0 + 10: 0 + 12: 515 + 13: 515 + 15: 515 + 17: 515 +_ZN9oceanbase11transaction10ObTransCtx12set_exiting_Ev:29198:254 + 0: 0 + 1: 244 + 2: 0 + 4: 244 + 5: 244 + 6: 244 _ZN9oceanbase11transaction10ObTransCtx29print_trace_log_if_necessary_Ev:246 + 8: 235 + 9: 235 + 10.1: 0 + 14.1: 287 + 14.3: 0 + 14.4: 0 + 14.6: 0 + 14.7: 0 + 14.8: 0 + 14.9: 0 + 14.20: 0 + 17: 287 + 8: _ZNK9oceanbase11transaction15ObTransHashLinkINS0_10ObTransCtxEE7get_refEv:940 + 0: 235 + 12: _ZN9oceanbase11transaction12ObLSTxCtxMgr10del_tx_ctxEPNS0_10ObTransCtxE:9400 + 4: 235 + 5.1: 0 + 10.1: 235 + 12.1: 0 + 14: 235 + 14.1: 235 _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE3delERKS2_PS3_:276 + 10.1: _ZN9oceanbase11transaction14ObPartTransCtx16get_retain_causeEv:1645 + 0: 235 + 14: _ZNK9oceanbase11transaction10ObTransCtx12get_trans_idEv:940 + 0: 235 + 14.3: _ZN9oceanbase3lib20is_trace_log_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:0 + 2: 0 + 14.9: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EE12check_unlockEv:0 + 2: 0 + 3: _ZN9oceanbase3lib7ObMutex6unlockEv:0 + 0: 0 + 14.16: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EE10check_lockEv:0 + 2: 0 + 3: _ZN9oceanbase3lib7ObMutex4lockEv:0 + 0: 0 + 14.18: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EE10get_bufferEv:0 + 0: 0 + 14.19: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EE14get_buffer_posEv:0 + 0: 0 +_ZN9oceanbase12blocksstable11ObRowWriter5resetEv:29172:935 + 1: 884 + 3: 884 + 9: 884 + 13: 884 +_ZN9oceanbase11transaction12ObTxSnapshotC2Ev:29148:1071 + 1: 1041 +_ZN9oceanbase11transaction12ObTxSnapshotC1Ev:29148:1071 + 1: 1041 +_ZN9oceanbase3sql20ObAggregateProcessor16prepare_add_calcERKNS_6common7ObDatumERNS1_8AggrCellERKNS0_10ObAggrInfoE:29105:278 + 2: 265 + 4: 265 + 6: 265 + 28.1: 0 + 31: 264 + 4: _ZNK9oceanbase3sql10ObAggrInfo20get_first_child_typeEv:5565 + 3: 265 + 3: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:3975 + 6: 265 + 3707: 265 + 4.1: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:5035 + 2: 265 + 2.1: 265 + 19: _ZN9oceanbase3sql20ObAggregateProcessor15clone_aggr_cellERNS1_8AggrCellERKNS_6common7ObDatumEb:0 + 3: 0 + 5: 0 + 6: _ZN9oceanbase3sql20ObAggregateProcessor10clone_cellERNS1_8AggrCellElPNS_6common7ObDatumE:0 + 5: 0 + 7: 0 + 12: 0 + 12.1: 0 + 14: 0 + 16: 0 + 17: 0 + 23.1: 0 + 27.1: 0 + 32: 0 + 33: 0 + 35: 0 + 40: 0 + 41: 0 + 51: 0 + 56: 0 + 57: 0 + 12: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell7get_bufEv:0 + 0: 0 + 39: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell7set_bufEPc:0 + 0: 0 + 55: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell7set_bufEPc:0 + 0: 0 + 23: _ZN9oceanbase3sql20ObAggregateProcessor15clone_aggr_cellERNS1_8AggrCellERKNS_6common7ObDatumEb:0 + 3: 0 + 6: _ZN9oceanbase3sql20ObAggregateProcessor10clone_cellERNS1_8AggrCellElPNS_6common7ObDatumE:0 + 5: 0 + 7: 0 + 12: 0 + 12.1: 0 + 14: 0 + 16: 0 + 17: 0 + 23.1: 0 + 27.1: 0 + 32: 0 + 33: 0 + 35: 0 + 40: 0 + 51: 0 + 56: 0 + 12: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell7get_bufEv:0 + 0: 0 + 39: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell7set_bufEPc:0 + 0: 0 + 55: _ZN9oceanbase3sql20ObAggregateProcessor8AggrCell7set_bufEPc:0 + 0: 0 +_ZN9oceanbase6common13ObSEArrayImplINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EE7reserveEl:29055:769 + 1: 745 + 2: 745 + 3: 745 + 5: 0 + 6: 0 + 7: 0 + 7.3: 0 + 9: 0 + 10: 0 + 11: 0 + 12: 0 + 13: 0 + 15: 0 + 16: 0 + 23: 0 + 24.1: 0 + 27: 745 + 8: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EE16internal_malloc_El:0 + 2: 0 + 7: 0 + 13: 0 + 13: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 10: _ZN9oceanbase6common9ObClassOpINS_11transaction14ObTxBufferNodeELb0EE12array_expandEPKS3_PS3_l:0 + 4: 0 + 4.1: 0 + 4.3: 0 + 4.5: 0 + 5: _ZN9oceanbase6common16construct_assignINS_11transaction14ObTxBufferNodeEEEiRT_RKS4_:0 + 2: _ZN9oceanbase6common21construct_assign_wrapINS_11transaction14ObTxBufferNodeEEEiRT_RKS4_NS0_8BoolTypeILb0EEE:0 + 2: 0 +_ZN9oceanbase12blocksstable16ObTmpFileManager12get_instanceEv:28980:1003 + 1: 966 + 2: 966 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 3: 966 +_ZN9oceanbase3sql15ObSessionValMap5reuseEv:28944:2 + 1: 1 + 5: 6 + 2: _ZN9oceanbase6common4hash9ObHashMapINS0_8ObStringENS_3sql17ObSessionVariableENS1_19NoPthreadDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS0_17ObPooledAllocatorINS1_15ObHashTableNodeINS1_11HashMapPairIS3_S5_EEEENS0_18ObWrapperAllocatorENS0_10ObNullLockEEENS1_13NormalPointerESG_Ll1EE5clearEv:28195 + 2: _ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_NS_3sql17ObSessionVariableEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS7_EENS0_17ObPooledAllocatorINS1_15ObHashTableNodeIS7_EENS0_18ObWrapperAllocatorENS0_10ObNullLockEEENS1_19NoPthreadDefendModeENS1_13NormalPointerESH_Ll1EE5clearEv:28195 + 3: 1 + 3.1: 1 + 6.1: 740 + 6.3: 740 + 7: 734 + 10: 740 + 11.1: 0 + 13: 0 + 14: 0 + 18: 740 + 20: 6 + 3: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringENS_3sql17ObSessionVariableEEENS1_5NLockENS1_5NCondEEEEEbRKT_:10 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringENS_3sql17ObSessionVariableEEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:10 + 2: 1 + 12: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_11HashMapPairINS0_8ObStringENS_3sql17ObSessionVariableEEEE16check_magic_codeEv:0 + 0: 0 + 12.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 14: _ZN9oceanbase6common17ObPooledAllocatorINS0_4hash15ObHashTableNodeINS2_11HashMapPairINS0_8ObStringENS_3sql17ObSessionVariableEEEEENS0_18ObWrapperAllocatorENS0_10ObNullLockEE4freeEPS9_:0 + 4: _ZN9oceanbase6common6ObPoolINS0_18ObWrapperAllocatorENS0_10ObNullLockEE4freeEPv:0 + 4.1: 0 + 6: _ZN9oceanbase6common6ObPoolINS0_18ObWrapperAllocatorENS0_10ObNullLockEE13freelist_pushEPv:0 + 7: 0 + 8: 0 + 9.1: 0 + 3: _ZN9oceanbase6common12ObStringBufTINS0_19ModulePageAllocatorENS0_9PageArenaIcS2_EEE5resetEv:318 + 2: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:318 + 4.1: 6 + 6: 0 + 7: 0 + 13: 6 + 14: 6 + 15: 6 + 18: 6 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:0 + 0: 0 + 5.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:0 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 4: _ZN9oceanbase6common12ObStringBufTINS0_19ModulePageAllocatorENS0_9PageArenaIcS2_EEE5resetEv:324 + 2: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:324 + 4.1: 6 + 6: 0 + 7: 0 + 13: 6 + 14: 6 + 15: 6 + 18: 6 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:0 + 0: 0 + 5.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:0 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS_3sql24ObHashPartInfrastructureINS5_14ObHashPartColsENS5_19ObHashPartStoredRowEE14ObIntraPartKeyEPNS9_16ObIntraPartitionEEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEED2Ev:28928:549 + 1: 504 + 2.1: 0 + 3: 512 + 2: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS_3sql24ObHashPartInfrastructureINS5_14ObHashPartColsENS5_19ObHashPartStoredRowEE14ObIntraPartKeyEPNS9_16ObIntraPartitionEEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEE5clearEv:10664 + 2: 504 + 3.1: 504 + 4: 0 + 5: 0 + 6.1: 0 + 15: 512 + 10: _ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocator4freeEPv:0 + 2: 0 + 3: _ZN9oceanbase6common7ob_freeEPv:0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase11transaction10ObTransCtx29print_trace_log_if_necessary_Ev:28906:246 + 1: 209 + 3: 209 + 4.1: 2 + 5: 2 + 5.1: 2 + 5.4: 2 + 5.5: 2 + 8: 215 + 9: 2 + 9.1: 2 + 9.6: 2 + 11: 2 + 11.1: 2 + 11.4: 2 + 11.5: 2 + 12.1: 215 + 13: 3 _ZN9oceanbase6common8ObLogger10get_loggerEv:1 + 13.1: 2 + 13.4: 3 _ZNK9oceanbase6common8ObLogger13get_log_levelEv:1 + 13.5: 2 + 15: 269 _ZN9oceanbase6common16ObTraceLogConfig13get_log_levelEv:247 + 15.1: 2 + 15.4: 248 _ZN9oceanbase6common8ObLogger10get_loggerEv:249 + 15.5: 249 _ZNK9oceanbase6common8ObLogger13get_log_levelEv:249 + 15.6: 2 + 17.1: 271 + 5.2: _ZN9oceanbase6common7ObLogKVIRNS_11transaction15ObTransTraceLogELb0EEC2EPKcS4_:60 + 0: 2 + 8: _ZNK9oceanbase11transaction10ObTransCtx14is_slow_query_Ev:7642 + 2: 215 + 3: 215 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:219 + 2: _ZN9oceanbase6common16ObClockGenerator8getClockEv:4447 + 4: 209 + 5.1: 2 + 8: 209 + 6: _ZN9oceanbase6common16ObClockGenerator6get_usEv:26 + 2: 2 + 9.2: _ZN9oceanbase6common10ObMiniStat10ObStatItemC2EPKcl:84 + 1: 2 + 10: _ZN9oceanbase6common10ObMiniStat4statERNS1_10ObStatItemE:28 + 2: 2 + 11.2: _ZN9oceanbase6common7ObLogKVIRNS_11transaction15ObTransTraceLogELb0EEC2EPKcS4_:66 + 0: 2 + 12.1: _ZNK9oceanbase11transaction9ObTransIDcvlEv:860 + 0: 215 + 13.2: _ZN9oceanbase6common7ObLogKVIRNS_11transaction15ObTransTraceLogELb0EEC2EPKcS4_:66 + 0: 2 + 15.2: _ZN9oceanbase6common7ObLogKVIPNS_11transaction15ObTransTraceLogELb0EEC2EPKcRKS4_:66 + 0: 2 +_ZN9oceanbase3sql13ObRoutePolicy24select_intersect_replicaERNS0_16ObRoutePolicyCtxERNS_6common8ObIArrayIPNS0_15ObCandiTableLocEEERNS4_6ObListINS1_16CandidateReplicaENS4_16ObArenaAllocatorEEERb:28885:257 + 4: 251 + 7: 251 _ZN9oceanbase3sql13ObRoutePolicy23calc_intersect_repllicaERKNS_6common8ObIArrayIPNS0_15ObCandiTableLocEEERNS2_6ObListINS1_16CandidateReplicaENS2_16ObArenaAllocatorEEE:255 + 8.1: 0 + 9.1: 248 + 10: 248 + 11.1: 0 + 11.2: 248 + 11.3: 248 + 11.5: 0 + 12: 0 + 13: 0 + 14: 0 + 15.1: 0 + 18.1: 0 + 18.2: 0 + 18.3: 0 + 20: 0 + 22.1: 0 + 23.1: 0 + 29: 0 + 32: 0 + 34.1: 0 + 34.4: 0 + 35: 0 + 38.2: 0 + 38.3: 0 + 39.1: 0 + 41.2: 0 + 43.2: 0 + 43.3: 0 + 44.1: 0 + 46.2: 0 + 49.2: 0 + 49.3: 0 + 50.1: 0 + 58: 0 + 58.1: 0 + 60: 0 + 60.1: 0 + 61.1: 0 + 63: 0 + 63.1: 0 + 66: 0 + 66.1: 0 + 67: 248 + 9.1: _ZNK9oceanbase6common6ObListINS_3sql13ObRoutePolicy16CandidateReplicaENS0_16ObArenaAllocatorEE5emptyEv:1240 + 2: 248 + 12: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql15ObCandiTableLocEE2atEl:0 + 6: 0 + 19: _ZN9oceanbase6common12ObIArrayWrapINS_3sql16ObCandiTabletLocEE2atEl:0 + 6: 0 + 20: _ZNK9oceanbase3sql16ObCandiTabletLoc20has_selected_replicaEv:0 + 0: 0 + 30: _ZN9oceanbase6common6ObListINS_3sql13ObRoutePolicy16CandidateReplicaENS0_16ObArenaAllocatorEE5beginEv:0 + 2: 0 + 2: _ZN9oceanbase6common4list8IteratorINS0_6ObListINS_3sql13ObRoutePolicy16CandidateReplicaENS0_16ObArenaAllocatorEEEEC2EPNS1_4NodeIS6_EE:0 + 2: 0 + 31: _ZN9oceanbase6common9ObSEArrayINS0_6ObAddrELl16ENS0_19ModulePageAllocatorELb0EEC2Ev:0 + 0.1: 0 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS0_6ObAddrELl16ENS0_19ModulePageAllocatorELb0EEC2ElRKS3_:0 + 2: 0 + 5: 0 + 6: 0 + 8: 0 + 17.1: 0 + 2: _ZN9oceanbase6common8ObIArrayINS0_6ObAddrEEC2EPS2_l:0 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_6ObAddrEEC2EPS2_l:0 + 0: 0 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:0 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:0 + 2: 0 + 8: 0 + 34.3: _ZNK9oceanbase6common4list8IteratorINS0_6ObListINS_3sql13ObRoutePolicy16CandidateReplicaENS0_16ObArenaAllocatorEEEEneERKS9_:0 + 2: 0 + 34.6: _ZN9oceanbase6common4list8IteratorINS0_6ObListINS_3sql13ObRoutePolicy16CandidateReplicaENS0_16ObArenaAllocatorEEEEppEi:0 + 3: 0 + 2: _ZN9oceanbase6common4list8IteratorINS0_6ObListINS_3sql13ObRoutePolicy16CandidateReplicaENS0_16ObArenaAllocatorEEEEC2ERKS9_:0 + 2: _ZN9oceanbase6common4list8IteratorINS0_6ObListINS_3sql13ObRoutePolicy16CandidateReplicaENS0_16ObArenaAllocatorEEEEaSERKS9_:0 + 2: 0 + 36.1: _ZN9oceanbase3sql13ObRoutePolicy16CandidateReplicaaSERKS2_:0 + 0: 0 + 0: _ZN9oceanbase5share19ObLSReplicaLocationaSERKS1_:0 + 0: 0 + 0.1: 0 + 0: _ZN9oceanbase6common6ObAddraSERKS1_:0 + 1: 0 + 2: 0 + 3: 0 + 38: _ZNK9oceanbase6common4list8IteratorINS0_6ObListINS_3sql13ObRoutePolicy16CandidateReplicaENS0_16ObArenaAllocatorEEEEptEv:0 + 3: 0 + 38.1: _ZNK9oceanbase5share19ObLSReplicaLocation10get_serverEv:0 + 0: 0 + 43.1: _ZNK9oceanbase5share19ObLSReplicaLocation10get_serverEv:0 + 0: 0 + 47.1: _ZN9oceanbase3sql13ObRoutePolicy16CandidateReplicaaSERKS2_:0 + 0: 0 + 0: _ZN9oceanbase5share19ObLSReplicaLocationaSERKS1_:0 + 0: 0 + 0.1: 0 + 0: _ZN9oceanbase6common6ObAddraSERKS1_:0 + 1: 0 + 2: 0 + 3: 0 + 48: _ZN9oceanbase6common13ObSEArrayImplINS0_6ObAddrELl16ENS0_19ModulePageAllocatorELb0EE5resetEv:0 + 0: 0 + 49: _ZNK9oceanbase6common4list8IteratorINS0_6ObListINS_3sql13ObRoutePolicy16CandidateReplicaENS0_16ObArenaAllocatorEEEEptEv:0 + 3: 0 + 49.1: _ZNK9oceanbase5share19ObLSReplicaLocation10get_serverEv:0 + 0: 0 + 59: _ZN9oceanbase6common12ObIArrayWrapINS0_6ObAddrEE2atEl:0 + 6: 0 +_ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE0ELS3_23EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE:28768:950 + 0: 928 + 0.3: 928 +_ZN9oceanbase12blocksstable11ObRowWriter20append_row_and_indexINS0_14ObStorageDatumENS0_20ObColClusterInfoMaskEEEiPKT_lllbRT0_:28429:53 + 7: 51 + 8: 51 + 9: 51 + 11: 51 + 12: 0 + 13: 0 + 15.1: 0 + 17.1: 0 + 21.1: 0 + 22.1: 0 + 24.1: 54 _ZN9oceanbase12blocksstable11ObRowWriter22append_flat_cell_arrayINS0_14ObStorageDatumEEEiPKT_lll:54 + 26.1: 0 + 30: 54 + 31.1: 54 + 35.1: 60 + 37.1: 64 + 42: 64 + 17.1: _ZN9oceanbase12blocksstable11ObRowWriter12append_arrayILl48EEEiRNS1_10ObBitArrayIXT_EEElRNS0_20ObColClusterInfoMask9BYTES_LENE:0 + 7: 0 + 8: 0 + 14: 0 + 15: 0 + 17.1: 0 + 19: 0 + 20: 0 + 10: _ZN9oceanbase12blocksstable11ObRowWriter10ObBitArrayILl48EE7get_valEl:0 + 3: 0 + 11: _ZN9oceanbase12blocksstable11ObRowWriter13get_uint_byteEmRl:0 + 3: 0 + 19: _ZN9oceanbase12blocksstable11ObRowWriter10ObBitArrayILl48EE17get_bit_array_ptrENS0_20ObColClusterInfoMask9BYTES_LENE:0 + 3: 0 + 21.1: _ZN9oceanbase12blocksstable20ObColClusterInfoMask19set_column_idx_typeENS1_9BYTES_LENE:0 + 3: 0 + 5.1: 0 + 7: 0 + 3: _ZN9oceanbase12blocksstable20ObColClusterInfoMask21is_valid_col_idx_typeENS1_9BYTES_LENE:0 + 2: 0 + 31.1: _ZN9oceanbase12blocksstable11ObRowWriter12append_arrayILl48EEEiRNS1_10ObBitArrayIXT_EEElRNS0_20ObColClusterInfoMask9BYTES_LENE:5376 + 7: 54 + 14: 54 + 15: 54 + 17.1: 54 + 19: 54 + 20: 60 + 10: _ZN9oceanbase12blocksstable11ObRowWriter10ObBitArrayILl48EE7get_valEl:432 + 3: 54 + 11: _ZN9oceanbase12blocksstable11ObRowWriter13get_uint_byteEmRl:1566 + 3: 54 + 19: _ZN9oceanbase12blocksstable11ObRowWriter10ObBitArrayILl48EE17get_bit_array_ptrENS0_20ObColClusterInfoMask9BYTES_LENE:432 + 3: 54 + 35.1: _ZN9oceanbase12blocksstable20ObColClusterInfoMask15set_offset_typeENS1_9BYTES_LENE:780 + 7: 60 + 37.1: _ZN9oceanbase12blocksstable11ObRowWriter24append_special_val_arrayEl:15549 + 3: 60 + 4: 60 + 7: 61 + 7.1: 122 + 7.3: 122 + 12: 1 + 13: 118 + 14: 118 + 14.2: 0 + 15: 122 + 16: 122 + 17: 122 + 19: 61 + 20: 64 +_ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:28311:382 + 1: 345 + 4.1: 345 + 6: 0 + 7: 7 + 13: 348 + 14: 348 + 15: 348 + 18: 348 + 19: 348 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:21 + 0: 7 + 5.1: _ZL12abort_unlessb:42 + 5: 7 + 6: 0 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:280 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:280 + 0: 7 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:196 + 2: 7 + 3: 7 _ZN9oceanbase3lib17ObMallocAllocator12get_instanceEv:7 + 4: 7 + 5: 7 + 4: _ZL12abort_unlessb:14 + 5: 7 + 6: 0 +_ZN9oceanbase8memtable13ObMemtableCtx10write_doneEv:28290:1897 + 1: 1886 + 2: _ZN9oceanbase6common10SpinRWLock6unlockEv:20746 + 0: 1886 _ZN9oceanbase6common7ObLatch6unlockEPKj:2021 +_ZN9oceanbase3sql11ObGroupByOp10inner_openEv:28279:254 + 1: 253 + 5.1: 253 _ZN9oceanbase3sql20ObAggregateProcessor4initEv:264 + 6.1: 0 + 8: 217 + 9: 217 + 10: 217 + 11: 217 + 12: 217 + 13: 217 + 14: 0 + 15: 0 + 16.1: 0 + 17.1: 0 + 17.2: 0 + 18: 0 + 19: 0 + 20.1: 0 + 27: 217 + 9: _ZN9oceanbase3sql20ObAggregateProcessor15set_3stage_infoENS0_21ObThreeStageAggrStageElPNS_6common8ObIArrayIlEEPNS0_6ObExprE:8897 + 6: 217 + 7: 217 + 8: 217 + 9: 217 + 10: 217 + 8: _ZNK9oceanbase6common12ObIArrayWrapIlE5countEv:1519 + 0: 217 +_ZN9oceanbase11transaction8ObTxDesc13set_commit_cbEPNS0_13ObITxCallbackE:27989:264 + 1: 255 + 2: 255 + 3: 255 + 4: 265 + 5: 0 + 6.1: 0 + 8: 266 + 10: 264 + 11: 0 + 11.1: 241 + 3: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEEC2ERS3_:7210 + 1: 255 + 4: 265 + 5.1: 0 + 4: _ZN9oceanbase6common10ObSpinLock4lockEv:4335 + 2: 255 _ZN9oceanbase6common12ObLatchMutex4lockEjl:255 + 11.1: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEED2Ev:4591 + 2: 264 + 3: 264 + 3.1: 241 + 4.1: 0 + 3: _ZN9oceanbase6common10ObSpinLock6unlockEv:264 + 2: 264 _ZN9oceanbase6common12ObLatchMutex6unlockEv:286 +_ZN9oceanbase11transaction12ObTxLogBlock19prepare_mutator_bufERNS0_11ObTxRedoLogE:27959:244 + 1: 241 + 2: 241 + 4.1: 241 + 5: 0 + 6.1: 0 + 7.1: 251 + 8: 1 + 9.1: 1 + 12.1: 251 + 13.1: 1 + 14.1: 257 _ZN9oceanbase11transaction11ObTxRedoLog16set_mutator_sizeElb:252 + 16.1: 1 + 18: 257 + 20: 249 + 3: _ZN9oceanbase11transaction12ObTxLogBlock7get_bufEv:1928 + 3: 241 + 12.1: _ZN9oceanbase11transaction11ObTxRedoLog15set_mutator_bufEPc:2529 + 3.1: 251 + 5.1: 1 + 7: 251 +_ZN9oceanbase5share13ObEncryptMeta5resetEv:27820:285 + 1: 260 + 3: 260 + 8: 260 + 4: _ZN9oceanbase5share12ObEncryptKeyILl16EE5resetEv:7540 + 0: _ZN9oceanbase6common8ObString10set_lengthEi:7540 + 2: 260 + 2.1: 260 + 3: 260 + 5: _ZN9oceanbase5share12ObEncryptKeyILl32EE5resetEv:5200 + 0: _ZN9oceanbase6common8ObString10set_lengthEi:5200 + 2: 260 + 2.1: 260 + 3: 260 + 6: _ZN9oceanbase5share12ObEncryptKeyILl16EE5resetEv:5200 + 0: _ZN9oceanbase6common8ObString10set_lengthEi:5200 + 2: 260 + 2.1: 260 + 3: 260 + 7: _ZN9oceanbase5share12ObEncryptKeyILl16EE5resetEv:5200 + 0: _ZN9oceanbase6common8ObString10set_lengthEi:5200 + 2: 260 + 2.1: 260 + 3: 260 +_ZN9oceanbase4palf14LogEntryHeader23update_header_checksum_Ev:27774:261 + 1: 238 + 2: 256 + 3: 114 + 5.1: 246 _ZZN9oceanbase4palf14LogEntryHeader23update_header_checksum_EvENK5$_575clEPKc.1598dc2348996c1ae1caea6120522988:250 + 6: 233 + 2: _ZNK9oceanbase4palf14LogEntryHeader28get_header_parity_check_res_Ev:17439 + 2: 243 _ZN9oceanbase6common12parity_checkEt:248 + 3: 257 _ZN9oceanbase6common12parity_checkEt:247 + 4: 259 _ZN9oceanbase6common12parity_checkEj:262 + 5: 259 _ZN9oceanbase6common12parity_checkEm:256 + 6: 270 _ZN9oceanbase6common12parity_checkEm:273 + 7: 270 + 8: 270 _ZN9oceanbase6common12parity_checkEm:278 +_ZN9oceanbase5share14ObSysVariables8get_nameEl:27750:960 + 0: 925 +_ZN9oceanbase3sql18ObEndTransExecutor9end_transERNS0_13ObExecContextERNS0_14ObEndTransStmtE:27723:239 + 1: 229 + 2: 229 + 4: 229 + 5: 0 + 6.1: 0 + 7.1: 229 + 7.2: 229 + 9.1: 0 + 10.1: 0 + 12: 0 + 12.1: 0 + 13.1: 0 + 17: 0 + 18.1: 0 + 19.1: 0 + 22: 0 + 22.1: 0 + 22.2: 260 + 22.3: 229 _ZN9oceanbase3sql17ObSqlTransControl18explicit_end_transERNS0_13ObExecContextEb:230 + 23.1: 0 + 25: 260 + 3: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:1603 + 2: 229 + 7.1: _ZNK9oceanbase3sql18ObBasicSessionInfo17is_in_transactionEv:4351 + 0: 229 + 0.1: _ZNK9oceanbase11transaction8ObTxDesc8is_in_txEv:1603 + 0: 229 + 8: _ZNK9oceanbase3sql18ObBasicSessionInfo13associated_xaEv:1603 + 0: 229 + 9: _ZNK9oceanbase3sql18ObBasicSessionInfo7get_xidEv:0 + 0: 0 + 10: _ZNK9oceanbase3sql14ObEndTransStmt15get_is_rollbackEv:0 + 0: 0 + 21: _ZN9oceanbase3sql13ObExecContext19set_need_disconnectEb:0 + 0: 0 + 22.2: _ZNK9oceanbase3sql14ObEndTransStmt15get_is_rollbackEv:1374 + 0: 229 +_ZN9oceanbase12blocksstable9ObSSTable3getERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS0_13ObDatumRowkeyERPNS2_18ObStoreRowIteratorE:27693:83 + 5: 81 + 6: 81 + 8: 81 + 9: 0 + 10.1: 0 + 11.1: 81 + 12: 0 + 13.1: 0 + 14.1: 81 _ZNK9oceanbase7storage16ObTableIterParam8is_validEv:83 + 14.2: 81 + 14.4: 81 + 18: 0 + 19.1: 0 + 21: 81 + 22: 81 _ZNK9oceanbase7storage8ObITable30is_multi_version_minor_sstableEv:89 + 22.1: 79 + 23: 88 + 23.1: 89 _ZNK9oceanbase12blocksstable9ObSSTable23get_upper_trans_versionEv:89 + 24: 79 + 25.1: 0 + 25.2: 0 + 25.4: 0 + 25.8: 0 + 25.10: 0 + 25.11: 0 + 25.12: 0 + 25.15: 0 + 29.1: 81 + 29.2: 0 + 29.4: 0 + 29.8: 76 + 29.10: 83 _ZN9oceanbase6common26ObWrapperAllocatorWithAttr5allocEl:75 _ZN9oceanbase6common16ObArenaAllocator5allocEl:2 + 29.11: 0 + 29.12: 0 + 29.15: 83 _ZN9oceanbase7storage18ObSSTableRowGetterC2Ev:83 + 34: 82 + 35: 82 + 36: 0 + 37.1: 0 + 38.1: 82 _ZN9oceanbase7storage18ObStoreRowIterator4initERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextEPNS0_8ObITableEPKv:87 + 39.1: 0 + 43: 0 + 44: 0 + 45: 0 + 46.1: 0 + 46.2: 0 + 47: 0 + 50: 82 + 54: 82 + 8: _ZNK9oceanbase12blocksstable9ObSSTable8is_validEv:567 + 0: 81 + 11.1: _ZNK9oceanbase6common10ObTabletIDneERKS1_:648 + 0: 81 + 14.2: _ZNK9oceanbase7storage20ObTableAccessContext8is_validEv:3402 + 1: 81 + 2: 81 + 2.1: 81 + 3: 81 + 3.1: 81 + 4: 81 + 4.1: 81 + 14.3: _ZNK9oceanbase12blocksstable13ObDatumRowkey8is_validEv:1134 + 0: 81 + 0.1: 81 + 23.2: _ZN9oceanbase7storage20ObTableAccessContext21is_multi_version_readEl:632 + 1: 79 + 24.1: _ZNK9oceanbase12blocksstable13ObSSTableMeta23contain_uncommitted_rowEv:632 + 0: 79 + 25.15: _ZN9oceanbase7storage30ObSSTableMultiVersionRowGetterC2Ev:0 + 0: 0 + 2: 0 + 4: 0 + 0.1: _ZN9oceanbase7storage13ObObjBufArrayC2Ev:0 + 3: 0 + 0.2: _ZN9oceanbase12blocksstable10ObDatumRowC2Ev:0 + 1.1: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:0 + 4: 0 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 7: _ZN9oceanbase11transaction9ObTransIDC2Ev:0 + 0: 0 + 12: _ZN9oceanbase12blocksstable20ObStorageDatumBufferC2EPNS_6common12ObIAllocatorE:0 + 1: 0 + 2: 0 + 2.1: 0 + 3: 0 + 4: 0 + 5: 0 + 2.1: _ZN9oceanbase12blocksstable14ObStorageDatumC2Ev:0 + 0.1: _ZN9oceanbase12blocksstable14ObStorageDatum7set_nopEv:0 + 0: _ZN9oceanbase12blocksstable14ObStorageDatum13set_ext_valueEl:0 + 1: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:0 + 0: 0 + 65354: 0 + 1.1: _ZN9oceanbase6common11ObDatumDesc7set_extEv:0 + 0: 0 + 1.3: _ZN9oceanbase6common5ObObj7set_extEl:0 + 4: 0 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:0 + 0: 0 + 13: _ZN9oceanbase6common8ObNewRowC2Ev:0 + 1: 0 + 14: _ZN9oceanbase7storage13ObObjBufArrayC2Ev:0 + 3: 0 + 1: _ZN9oceanbase12blocksstable12ObDatumRangeC2Ev:0 + 0.7: _ZN9oceanbase12blocksstable13ObDatumRowkeyC2Ev:0 + 0.4: _ZN9oceanbase12blocksstable13ObDatumRowkey5resetEv:0 + 0: 0 +_ZN9oceanbase3sql13ObDASInsertOpD2Ev:27682:284 + 0: 274 + 0: _ZN9oceanbase3sql16ObDASWriteBufferD2Ev:3014 + 2: 274 + 3: 0 + 4: 0 + 0.1: _ZN9oceanbase3sql12ObIDASTaskOpD2Ev:18366 + 0: 287 _ZN9oceanbase6common16ObFixedArrayImplINS0_10ObTabletIDENS0_12ObIAllocatorEED2Ev:292 + 0.1: 287 _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql14ObDASBaseRtDefENS0_12ObIAllocatorEED2Ev:300 + 0.2: 281 _ZN9oceanbase6common16ObFixedArrayImplIPKNS_3sql14ObDASBaseCtDefENS0_12ObIAllocatorEED2Ev:287 + 0.5: 276 _ZN9oceanbase11transaction14ObTxExecResultD1Ev:294 + 0.4: _ZN9oceanbase6common10ObTabletIDD2Ev:3864 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:3864 + 0: 276 +_ZN9oceanbase6common13ObSEArrayImplINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:27648:527 + 1: 512 + 9: 512 + 10: 0 + 11: 0 + 13: 512 + 15: 512 + 24: 512 + 25: 512 +_ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE28clean_cur_dumping_partitionsEv:27610:773 + 1: 745 + 2: 745 + 3.1: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 10: 0 + 11: 0 + 14: 745 + 15.1: 0 + 16: 0 + 17: 0 + 18: 0 + 19: 0 + 22: 0 + 23: 0 + 25: 754 +_ZN9oceanbase3sql17ObChunkDatumStore15ShadowStoredRow4initERNS_6common12ObIAllocatorEl:27523:260 + 1: 238 + 2: 238 + 5: 238 + 8.1: 238 + 9: 0 + 10.1: 0 + 11.1: 238 _ZN9oceanbase6common16ObArenaAllocator5allocEl:245 + 12: 0 + 13.1: 0 + 15: 227 + 16: 227 + 17: 227 + 18: 227 + 19: 227 + 21: 227 + 16: _ZN9oceanbase3sql17ObChunkDatumStore9StoredRowC2Ev:1589 + 0: 227 +_ZZN9oceanbase3sql20ObDASIndexDMLAdaptorILi3ENS0_16ObDASUpdIteratorEE12write_tabletERS2_RlENKUlPKcE_clES7_:27500:363 + 0: 353 + 0.1: 0 + 0.2: 351 + 0.3: 353 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:353 + 0.11: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:6001 + 2: 353 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKNS_5share6ObLSIDELb0EEC2EPKcS5_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS0_10ObTabletIDELb0EEC2EPKcS4_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase11transaction8ObTxDesc22add_implicit_savepointEl:27459:1035 + 1: 1017 + 2: 1017 + 3: 1017 + 2: _ZSt3minIlERKT_S2_S2_:10170 + 5: 1017 +_ZN9oceanbase3sql11ObPxSqcUtil24get_sqc_est_worker_ratioEPNS0_13ObExecContextE:27373:854 + 1: 814 + 4: 814 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 11.1: 0 + 13: 783 + 3: _ZN9oceanbase3sql13ObExecContext15get_sqc_handlerEv:5698 + 0: 814 + 5: _ZN9oceanbase3sql14ObPxSqcHandler16get_sqc_init_argEv:0 + 0: 0 + 6: _ZNK9oceanbase3sql11ObPxSqcMeta20get_total_task_countEv:0 + 0: 0 + 7: _ZNK9oceanbase3sql11ObPxSqcMeta18get_max_task_countEv:0 + 0: 0 +_ZZN9oceanbase3sql16ObDASUpdIterator12get_next_rowERPNS_6common8ObNewRowEENK5$_384clEPKc.45c27dd3dc8b42ec4ef71c6f367bd924:27338:329 + 0: 332 + 0.1: 0 + 0.2: 332 + 0.3: 318 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:329 + 0.13: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:5406 + 2: 318 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKNS0_12ObFixedArrayIlNS0_12ObIAllocatorEEELb0EEC2EPKcS6_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS0_12ObFixedArrayIlNS0_12ObIAllocatorEEELb0EEC2EPKcS6_:0 + 0: 0 + 0.7: _ZN9oceanbase6common7ObLogKVImLb0EEC2EPKcRKm:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVImLb0EEC2EPKcRKm:0 + 0: 0 + 0.9: _ZN9oceanbase6common20ObLogPrintPointerCntIPNS0_8ObNewRowEEC2ES3_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVINS0_20ObLogPrintPointerCntIPNS0_8ObNewRowEEELb1EEC2EPKcOKS5_:0 + 0: 0 + 0.11: _ZN9oceanbase6common20ObLogPrintPointerCntIPNS0_8ObNewRowEEC2ES3_:0 + 0: 0 + 0.12: _ZN9oceanbase6common7ObLogKVINS0_20ObLogPrintPointerCntIPNS0_8ObNewRowEEELb1EEC2EPKcOKS5_:0 + 0: 0 +_ZN9oceanbase6common12ObSliceAlloc13prepare_blockEv:27319:9 + 0: 9 + 4: 9 _ZN9oceanbase6common15ObBlockAllocMgr11alloc_blockElRNS_3lib9ObMemAttrE:9 + 5: 7 + 8: 8 + 1: _ZN9oceanbase6common12ObSliceAlloc14get_from_blistEv:288 + 5: 9 + 6: 0 + 14: 0 + 4: _ZN9oceanbase6common12ObSimpleSync3refEi:36 + 0: 9 + 5: _ZN9oceanbase6common15ObDListWithLock3topEv:63 + 1: 9 + 7: _ZN9oceanbase6common11ObStockCtrl7acquireEv:0 + 0: _ZN9oceanbase6common11ObStockCtrl9dec_if_gtEii:0 + 1: 0 + 3.1: 0 + 3.2: 0 + 3.3: 0 + 11: _ZN9oceanbase6common12ObSimpleSync3refEi:45 + 0: 9 + 5: _ZN9oceanbase6common13ObBlockSlicerC2EiiPNS0_12ObSliceAllocEPv:26462 + 1.1: 7 + 3: 7 + 5: 7 + 9.1: 427 + 9.3: 427 + 10: 401 + 0: _ZN9oceanbase6common11ObStockCtrlC2Ev:35 + 0: 7 + 0.1: _ZN9oceanbase6common17ObEmbedFixedQueueC2Ev:98 + 0: 7 + 0.2: _ZN9oceanbase6common7ObDLinkC2Ev:70 + 0: 7 + 2: _ZN9oceanbase3lib9align_up2Emm:56 + 2: 7 + 4: _ZN9oceanbase3lib9align_up2Emm:105 + 2: 7 + 8: _ZN9oceanbase6common17ObEmbedFixedQueue4initEm:196 + 1: 7 + 2: 7 + 10: _ZN9oceanbase6common13ObBlockSlicer4ItemC2EPS1_:1604 + 0: 401 + 10.1: _ZN9oceanbase6common17ObEmbedFixedQueue4pushEPv:16842 + 1: 401 + 2.1: 401 + 3: 0 + 113: 401 + 12: _ZN9oceanbase6common11ObStockCtrl10init_stockEi:64 + 1: 8 + 2: 8 +_ZN9oceanbase6common13ObSEArrayImplIPNS_3sql22ObInMemoryTopnSortImpl13SortStoredRowELl50ENS0_19ModulePageAllocatorELb0EE7destroyEv:27240:467 + 1: 454 + 9: 454 + 11: 0 + 13: 454 + 15: 454 + 24: 454 + 25: 454 + 10: _ZN9oceanbase6common13ObSEArrayImplIPNS_3sql22ObInMemoryTopnSortImpl13SortStoredRowELl50ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: 0 +_ZN9oceanbase7storage18ObStoreRowIteratorD2Ev:27192:4579 + 1: 4532 + 2: 4532 +_ZN9oceanbase7storage18ObStoreRowIteratorD1Ev:27192:4579 + 1: 4532 + 2: 4532 +_ZN9oceanbase8memtable16ObITransCallback6removeEv:27174:770 + 1: 647 + 5: 647 + 11: 647 + 3: _ZNK9oceanbase8memtable16ObITransCallback8get_prevEv:2588 + 0: 647 + 4: _ZNK9oceanbase8memtable16ObITransCallback8get_nextEv:5823 + 0: 647 + 8: _ZN9oceanbase8memtable16ObITransCallback8set_nextEPS1_:4529 + 0: 647 + 9: _ZN9oceanbase8memtable16ObITransCallback8set_prevEPS1_:3882 + 0: 647 +_ZN9oceanbase3sql14ObExprValuesOpC2ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE:27138:270 + 3: 250 _ZN9oceanbase3sql10ObOperatorC2ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE:250 + 5: 254 + 10: 254 + 11: 254 + 12: 254 + 6: _ZN9oceanbase3sql13ObDatumCasterC2Ev:3556 + 2: 254 + 8: _ZN9oceanbase3sql10ObOperator12get_eval_ctxEv:1016 + 0: 254 + 8.1: _ZN9oceanbase3sql15ObErrLogServiceC2ERNS0_9ObEvalCtxE:1778 + 1: 254 + 9: _ZN9oceanbase3sql13ObErrLogRtDefC2Ev:6858 + 1: 254 + 2: 254 + 4: 254 +_ZN9oceanbase3sql14ObExprValuesOpC1ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE:27138:270 + 3: 250 _ZN9oceanbase3sql10ObOperatorC2ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE:250 + 5: 254 + 10: 254 + 11: 254 + 12: 254 + 6: _ZN9oceanbase3sql13ObDatumCasterC2Ev:3556 + 2: 254 + 8: _ZN9oceanbase3sql10ObOperator12get_eval_ctxEv:1016 + 0: 254 + 8.1: _ZN9oceanbase3sql15ObErrLogServiceC2ERNS0_9ObEvalCtxE:1778 + 1: 254 + 9: _ZN9oceanbase3sql13ObErrLogRtDefC2Ev:6858 + 1: 254 + 2: 254 + 4: 254 +_ZN9oceanbase6common16ObArenaAllocator5allocElRKNS_3lib9ObMemAttrE:27018:178 + 1: 173 + 3: 171 + 3: _ZN9oceanbase6common16ObArenaAllocator5allocEl:20450 + 0: 173 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13alloc_alignedEll:19758 + 3: 173 + 6: 169 + 7: 169 + 8: 169 + 10: 169 + 11: 169 + 12: 169 + 13: 169 + 15.1: 0 + 16: 0 + 18: 0 + 20: 0 + 28: 0 + 35: 171 + 36: 171 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE15ensure_cur_pageEv:2366 + 2: 169 + 3: 0 + 5.1: 0 + 8: 0 + 9: 0 + 10: 0 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:0 + 2: 0 + 2.2: 0 + 2.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 9: _ZSt3maxIlERKT_S2_S2_:0 + 5: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:0 + 1: 0 + 3: 0 + 8: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:0 + 0: 0 + 7: _ZN9oceanbase6common16get_align_offsetEPvl:2197 + 3: 169 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:1183 + 0: 169 + 11: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:1183 + 7: 169 + 15.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE18is_normal_overflowEl:0 + 2: 0 + 16: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11extend_pageEl:0 + 4: 0 + 5: 0 + 8: 0 + 9: 0 + 10.1: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 12: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_tailEPNS3_4PageE:0 + 2: 0 + 3: 0 + 5: 0 + 23.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16lookup_next_pageEl:0 + 3.1: 0 + 4.1: 0 + 5: 0 + 5.1: 0 + 7: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page10reuse_sizeEv:0 + 0: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 + 32: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9alloc_bigEl:379 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:360 + 3: 6 + 5: 1 + 6: 1 + 8: 1 + 9: 1 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:276 + 2: 6 + 3: 6 _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:6 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:96 + 5: 6 + 7: 6 + 8: 6 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:24 + 1: 1 + 3: 1 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE11insert_headEPNS3_4PageE:14 + 4: 1 + 5: 0 + 7: 1 + 7: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5allocEl:5 + 3: 1 +_ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImNS0_5ObObjEEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEE5clearEv:26985:551 + 1: 501 + 2: 501 + 3.1: 501 + 4: 0 + 5: 0 + 6.1: 0 + 15: 498 + 16: 498 + 10: _ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocator4freeEPv:0 + 2: 0 + 3: _ZN9oceanbase6common7ob_freeEPv:0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase6common13ObSEArrayImplIPKNS_5share6schema13ObTableSchemaELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:26946:514 + 1: 499 + 9: 499 + 11: 0 + 13: 499 + 15: 499 + 24: 499 + 25: 499 + 10: _ZN9oceanbase6common13ObSEArrayImplIPKNS_5share6schema13ObTableSchemaELl1ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: 0 +_ZN9oceanbase3sql13ObDASUpdateOp9write_rowERKNS_6common12ObFixedArrayIPNS0_6ObExprENS2_12ObIAllocatorEEERNS0_9ObEvalCtxERb:26884:370 + 1: 348 + 3: 348 + 4: 348 + 5: 348 _ZN9oceanbase3sql16ObDASWriteBuffer11try_add_rowERKNS_6common8ObIArrayIPNS0_6ObExprEEEPNS0_9ObEvalCtxElRbb:357 + 6.1: 0 + 7.1: 338 + 8: 0 + 10: 338 +_ZN9oceanbase11transaction14ObTransService13gen_trans_id_ERNS0_9ObTransIDE:26862:244 + 1: 230 + 2: 230 + 4: 230 + 5: 230 + 7: 237 _ZN9oceanbase11transaction11ObGtiSource12get_trans_idERl:242 + 9: 0 + 10: 0 + 11.1: 0 + 13: 0 + 16.1: 0 + 18.1: 0 + 20: 237 + 22.1: 237 _ZZN9oceanbase11transaction14ObTransService13gen_trans_id_ERNS0_9ObTransIDEENK6$_1164clEPKc.93feb755617c21c32b229b78773c290c:242 + 23: 254 + 20.3: _ZN9oceanbase11transaction9ObTransIDaSERKS1_:711 + 1: 237 +_ZN9oceanbase12blocksstable18ObBloomFilterCache11may_containEmRKNS0_12MacroBlockIdERKNS0_13ObDatumRowkeyERKNS0_19ObStorageDatumUtilsERb:26684:92 + 6: 87 + 7: 87 + 8: 87 + 10: 87 + 11: 87 _ZN9oceanbase6common15ObKVCacheHandleC1Ev:94 + 12: 93 + 15: 0 + 16.1: 0 + 17.1: 93 + 19.1: 93 _ZN9oceanbase6common9ObKVCacheINS_12blocksstable21ObBloomFilterCacheKeyENS2_23ObBloomFilterCacheValueEE3getERKS3_RPKS4_RNS0_15ObKVCacheHandleE:94 + 19.2: 73 + 21.1: 0 + 23.2: 72 + 23.3: 0 + 23.4: 0 + 23.5: 0 + 23.6: 0 + 23.10: 0 + 23.11: 0 + 23.12: 0 + 25.2: 1 + 25.3: 0 + 25.4: 0 + 25.5: 0 + 25.6: 0 + 25.10: 0 + 25.11: 0 + 25.12: 0 + 26: 1 + 27: 0 + 28.1: 0 + 29.1: 1 _ZNK9oceanbase12blocksstable13ObDatumRowkey10murmurhashEmRKNS0_19ObStorageDatumUtilsERm:1 + 29.2: 1 + 30.1: 0 + 31.1: 1 _ZNK9oceanbase12blocksstable23ObBloomFilterCacheValue11may_containEjRb:1 + 31.2: 1 + 32.1: 0 + 35: 1 + 36.2: 0 + 36.3: 0 + 36.4: 0 + 36.5: 0 + 36.6: 0 + 36.10: 0 + 36.11: 0 + 36.12: 0 + 38.2: 1 + 38.3: 0 + 38.4: 0 + 38.5: 0 + 38.6: 0 + 38.10: 0 + 38.11: 0 + 38.12: 0 + 42: 76 + 43.15: 78 _ZN9oceanbase6common15ObKVCacheHandleD1Ev:79 + 43.16: 0 + 9: _ZNK9oceanbase12blocksstable13ObDatumRowkey13get_datum_cntEv:261 + 0: 87 + 9.1: _ZN9oceanbase12blocksstable21ObBloomFilterCacheKeyC2EmRKNS0_12MacroBlockIdEa:5568 + 2: 87 + 2.1: 87 + 3: 87 + 2: _ZN9oceanbase12blocksstable12MacroBlockIdC2ERKS1_:2784 + 2: 87 + 3: 87 + 4: 87 + 14: _ZNK9oceanbase12blocksstable21ObBloomFilterCacheKey8is_validEv:4650 + 2: 93 + 3: 93 + 3.1: _ZNK9oceanbase12blocksstable12MacroBlockId8is_validEv:2511 + 4.1: 93 + 14.2: _ZNK9oceanbase12blocksstable13ObDatumRowkey8is_validEv:1860 + 0: 93 + 23.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:359 + 2: 71 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:77 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:288 + 2: 72 + 25.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:5 + 2: 1 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:1 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:4 + 2: 1 + 36.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:0 + 2: 0 + 38.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:5 + 2: 1 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:1 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:4 + 2: 1 +_ZN9oceanbase8memtable18ObTransCallbackMgr11RDLockGuardD2Ev:26536:545 + 0: 523 + 0: _ZN9oceanbase6common14SpinRLockGuardD2Ev:9727 + 2: 523 + 3: 523 + 3.1: 493 + 4.1: 0 + 3: _ZN9oceanbase6common10SpinRWLock6unlockEv:1569 + 0: 523 _ZN9oceanbase6common7ObLatch6unlockEPKj:527 + 0.1: _ZN9oceanbase6common17ObSimpleTimeGuardD2Ev:2958 + 2: 493 + 3.1: 0 + 4.1: 0 + 3: _ZNK9oceanbase6common17ObSimpleTimeGuard8get_diffEv:0 + 2.1: 0 + 2.1: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 +_ZN9oceanbase11transaction14ObPartTransCtx17get_prev_log_lsn_ERNS_4palf3LSNE:26523:245 + 1: 232 + 3: 232 _ZN9oceanbase4palf3LSNC1Ev:232 + 4: 263 + 5: 269 _ZN9oceanbase11transaction14ObPartTransCtx28get_max_submitting_log_info_ERNS_4palf3LSNERl:277 + 5.1: 269 + 6.1: 269 _ZNK9oceanbase4palf3LSN8is_validEv:274 + 6.2: 274 + 7: 274 _ZNK9oceanbase4palf3LSN8is_validEv:279 + 7.1: 268 + 7.2: 0 + 7.3: 0 + 8: 0 + 15.1: 248 +_ZNK9oceanbase6common8ObLogger13get_log_levelEv:26449:250 + 1: 230 + 3: 230 + 8: 229 + 11: 249 + 13.1: 257 + 18: 262 + 6: _ZNK9oceanbase6common15ObLogIdLevelMap9get_levelEv:1374 + 0: 229 + 9: _ZN9oceanbase6common21ObThreadLogLevelUtils3getEv:9960 + 5: 249 + 3: _ZN9oceanbase6common21ObThreadLogLevelUtils20get_thread_log_levelEv:5229 + 3: _ZN9oceanbase6common15get_local_storeEv:5229 + 3: 249 + 3.1: 0 + 3.1: _ZN9oceanbase6common12ObLocalStoreC2Ev:0 + 1: 0 + 0: _ZN9oceanbase6common16ObThreadLogLevelC2Ev:0 + 0: 0 + 10: _ZN9oceanbase6common21ObThreadLogLevelUtils9get_levelEv:4883 + 5: 257 + 12: _ZNK9oceanbase6common15ObLogIdLevelMap9get_levelEv:8 + 0: 1 +_ZNK9oceanbase8memtable10ObMemtable13get_write_refEv:26390:2153 + 0: 2030 +_ZZN9oceanbase3sql13ObCmdExecutor7executeERNS0_13ObExecContextERNS0_6ObICmdEENK4$_20clEv.9f50165c44148c1c108cb64accd07fe7:26363:259 + 0: 251 + 0.4: 251 + 0.9: 251 + 0.10: 259 _ZN9oceanbase3sql20ObStartTransExecutor7executeERNS0_13ObExecContextERNS0_16ObStartTransStmtE:270 + 0.11: 296 + 0.3: _ZN9oceanbase3sql20ObStartTransExecutorC2Ev:3765 + 0: 251 + 0.16: _ZNK9oceanbase3sql6ObStmt13get_query_ctxEv:1004 + 0: 251 +_ZNK9oceanbase7storage15ObRelativeTable19is_rowkey_column_idEmRb:26340:343 + 1: 336 + 2: 336 + 3: 336 + 4: 336 + 5: 0 + 6.1: 0 + 7.1: 336 + 8: 0 + 9.1: 0 + 10.1: 336 _ZNK9oceanbase5share6schema18ObTableSchemaParam16is_rowkey_columnEmRb:336 + 11.1: 0 + 13: 324 + 4: _ZNK9oceanbase7storage15ObRelativeTable8is_validEv:9072 + 2: 336 + 2.1: 336 + 2.1: _ZNK9oceanbase5share6schema18ObTableSchemaParam8is_validEv:1680 + 0: 336 + 2.2: _ZNK9oceanbase6common10ObTabletID8is_validEv:2688 + 0: 336 +_ZN9oceanbase3sql12ObSqlPlanSet13get_plan_typeERKNS_6common8ObIArrayINS0_15ObTableLocationEEEbRNS0_14ObPlanCacheCtxERNS3_INS0_15ObCandiTableLocEEERNS0_13ObPhyPlanTypeE:26314:227 + 5: 226 + 7: 226 + 8: 226 _ZN9oceanbase6common13ObSEArrayImplINS_3sql15ObCandiTableLocELl2ENS0_19ModulePageAllocatorELb0EE5reuseEv:232 + 10: 256 _ZN9oceanbase3sql12ObSqlPlanSet17get_phy_locationsERKNS_6common8ObIArrayINS0_15ObTableLocationEEERNS0_14ObPlanCacheCtxERNS3_INS0_15ObCandiTableLocEEERb:232 + 14.1: 1 + 15.1: 256 _ZN9oceanbase3sql12ObSqlPlanSet21calc_phy_plan_type_v2ERKNS_6common8ObIArrayINS0_15ObCandiTableLocEEERNS0_13ObPhyPlanTypeEb:255 + 18.1: 1 + 23: 240 + 23.2: 1 + 24.1: 1 + 25: 1 + 32: 222 +_ZN9oceanbase6common10_ol_insertINS0_11KeyHashNodeINS_11transaction9ObTransIDEEEEEiPT_S7_:26196:261 + 1: 256 + 5.1: 0 + 7.1: 211 + 10: 211 + 4: _ZN9oceanbase6common9ol_searchINS0_11KeyHashNodeINS_11transaction9ObTransIDEEEEEPT_S7_S7_RS7_:13782 + 4.1: 429 + 4.2: 198 + 5: 429 + 5.1: 198 + 4.1: _ZN9oceanbase6common9link_nextEPNS0_6ObLinkE:1287 + 2: 429 + 5.1: _ZN9oceanbase6common11KeyHashNodeINS_11transaction9ObTransIDEE7compareEPS4_:7842 + 2: 429 + 4.1: 202 + 7: 0 + 5.1: _ZN9oceanbase6common11KeyHashNodeINS_11transaction9ObTransIDEE7compareEPS4_:888 + 2: 222 + 7: 0 + 7.1: _ZN9oceanbase6common11link_insertEPNS0_6ObLinkES2_S2_:2954 + 2: 211 + 3: 211 +_ZN9oceanbase3sql13TriggerHandle19do_handle_after_rowERNS0_15ObTableModifyOpERKNS0_14ObTrigDMLCtDefERNS0_14ObTrigDMLRtDefEm:26010:539 + 5: 510 + 6: 510 + 7: 510 + 8: 0 + 9.1: 0 + 11: 0 + 13.1: 0 + 13.2: 0 + 13.3: 0 + 15: 0 + 15.1: 0 + 16: 0 + 17.1: 0 + 18.2: 0 + 18.4: 0 + 18.10: 0 + 20: 0 + 23: 0 + 24.2: 0 + 24.4: 0 + 24.10: 0 + 29: 510 + 7: _ZNK9oceanbase5share6schema14ObTimingPoints13has_after_rowEv:2040 + 0: 510 + 14: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql12ObTriggerArgEE2atEl:0 + 6: 0 + 15: _ZNK9oceanbase3sql12ObTriggerArg19has_after_row_pointEv:0 + 0: _ZNK9oceanbase5share6schema14ObTimingPoints13has_after_rowEv:0 + 0: 0 + 15.1: _ZNK9oceanbase3sql12ObTriggerArg18has_trigger_eventsEm:0 + 0: _ZNK9oceanbase5share6schema15ObTriggerEvents9has_valueEm:0 + 0: 0 + 17.1: _ZNK9oceanbase3sql12ObTriggerArg18has_when_conditionEv:0 + 0: _ZNK9oceanbase5share6schema14ObTimingPoints18has_when_conditionEv:0 + 0: 0 + 18.2: _ZNK9oceanbase3sql12ObTriggerArg14get_trigger_idEv:0 + 0: 0 + 24.2: _ZNK9oceanbase3sql12ObTriggerArg14get_trigger_idEv:0 + 0: 0 +_ZNK9oceanbase8observer16ObInnerSQLResult16build_column_mapEv:25864:5 + 1: 5 + 2: 5 + 3: 5 + 4: 0 + 5.1: 0 + 6.1: 5 + 7: 5 + 7.2: 5 _ZN9oceanbase6common4hash9ObHashMapINS0_8ObStringElNS1_19NoPthreadDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_lEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE6createElRKNS_3lib7ObLabelESN_mm:5 + 9.1: 0 + 11: 3 + 14: 3 + 16: 2 + 16.3: 2 + 17: 2 + 18: 0 + 19: 2 + 20: 0 + 21.1: 0 + 23.1: 43 + 23.2: 45 + 23.3: 45 + 23.5: 43 + 24: 40 + 25: 0 + 26.1: 0 + 28: 43 + 31: 0 + 33.1: 0 + 41: 5 + 44: 5 + 7: _ZN9oceanbase3lib7ObLabelC2IA16_cEERKT_:70 + 2: _ZN9oceanbase3lib7ObLabelaSILm16EEERS1_RAT__Kc:70 + 4: 5 + 7.1: _ZN9oceanbase3lib7ObLabelC2IA16_cEERKT_:70 + 2: _ZN9oceanbase3lib7ObLabelaSILm16EEERS1_RAT__Kc:70 + 4: 5 + 15: _ZN9oceanbase6common4hash9ObHashMapINS0_8ObStringElNS1_19NoPthreadDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_lEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE5clearEv:20271 + 2: _ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_lEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE5clearEv:20271 + 3: 3 + 3.1: 3 + 6.1: 516 + 6.3: 516 + 7: 513 + 10: 516 + 11.1: 0 + 13: 0 + 14: 0 + 18: 516 + 20: 2 + 3: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringElEENS1_5NLockENS1_5NCondEEEEEbRKT_:33 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringElEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:33 + 2: 3 + 12: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_11HashMapPairINS0_8ObStringElEEE16check_magic_codeEv:0 + 0: 0 + 12.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 16: _ZNK9oceanbase8observer16ObInnerSQLResult19has_tenant_resourceEv:18 + 0: 2 + 17: _ZNK9oceanbase3sql11ObResultSet17get_field_columnsEv:14 + 2: 2 + 18: _ZNK9oceanbase3sql17ObRemoteResultSet17get_field_columnsEv:0 + 0: 0 + 24: _ZNK9oceanbase6common12ObIArrayWrapINS0_7ObFieldEE2atEl:160 + 6: 40 + 24.1: _ZNK9oceanbase6common8ObStringcvMS1_KFbvEEv:1040 + 0: 40 + 0.1: 40 + 0.2: 40 + 28.1: _ZN9oceanbase6common4hash9ObHashMapINS0_8ObStringElNS1_19NoPthreadDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_lEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE14set_refactoredERKS3_RKliii:1404 + 8: 40 _ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_lEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14set_refactoredERKS3_RKS5_iii:41 + 5: _ZN9oceanbase6common4hash11HashMapPairINS0_8ObStringElE4initERKS3_RKl:760 + 3: _ZN9oceanbase6common11copy_assignINS0_8ObStringEEEiRT_RKS3_:600 + 2: _ZN9oceanbase6common16copy_assign_wrapINS0_8ObStringEEEiRT_RKS3_NS0_8BoolTypeILb0EEE:600 + 2: 40 + 5.1: _ZN9oceanbase6common11copy_assignIlEEiRT_RKS2_:160 + 2: _ZN9oceanbase6common16copy_assign_wrapIlEEiRT_RKS2_NS0_8BoolTypeILb0EEE:160 + 2: 40 +_ZN9oceanbase6common11KeyHashNodeINS_11transaction9ObTransIDEE3setERKS3_:25800:259 + 0: 258 + 1: 258 + 3: 258 + 1: _ZN9oceanbase6common11KeyHashNodeINS_11transaction9ObTransIDEE9calc_hashERKS3_:17286 + 0: 258 + 0: _ZNK9oceanbase11transaction9ObTransID4hashEv:15222 + 2: _ZN9oceanbase6common10murmurhashEPKvim:15222 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:15222 + 13: 258 + 14: 258 + 15: 258 + 17: 258 + 18: 258 + 41: 258 + 42: 258 + 43: 258 + 2: _ZN9oceanbase11transaction9ObTransIDaSERKS1_:1806 + 1: 258 +_ZN9oceanbase11transaction11ObCtxTxData4initEPNS0_12ObLSTxCtxMgrEl:25623:268 + 1: 253 + 2: 253 + 4: 253 + 5: 0 + 6.1: 0 + 8: 253 + 13.1: 253 + 14: 0 + 15.1: 0 + 16.1: 271 _ZN9oceanbase7storage9ObTxTable13alloc_tx_dataERPNS0_8ObTxDataE:253 + 16.2: 271 + 17.1: 0 + 18: 0 + 23: 271 + 13.1: _ZN9oceanbase11transaction12ObLSTxCtxMgr12get_tx_tableEv:1771 + 1: 253 + 20: _ZN9oceanbase11transaction9ObTransIDaSERKl:813 + 1: 271 +_ZN9oceanbase11transaction9ObTxLogCb10on_successEv:25472:225 + 1: 218 + 2: 218 + 8: 218 + 9: 0 + 10.1: 0 + 11.1: 230 + 12: 1 + 13.1: 1 + 16: 230 _ZN9oceanbase11transaction10ObTransCtx9test_lockEv:234 + 17.1: 268 + 18: 1 + 19.1: 1 + 20: 1 + 25: 278 + 27: 278 _ZN9oceanbase11transaction14ObPartTransCtx10on_successEPNS0_9ObTxLogCbE:280 + 27.1: 235 + 28.1: 1 + 33: 228 + 34.6: 228 + 24: _ZNK9oceanbase11transaction9ObTxLogCb11check_warn_Ev:5704 + 2: 267 + 3: 279 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:280 + 4.1: 0 + 2: _ZN9oceanbase6common16ObClockGenerator12getRealClockEv:268 + 2: _ZN9oceanbase6common16ObClockGenerator6get_usEv:268 + 2: 268 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:273 +_ZN9oceanbase3sql16ObPrivilegeCheck22check_password_expiredERKNS0_8ObSqlCtxENS0_4stmt8StmtTypeE:25427:569 + 1: 541 + 2: 541 + 3: 541 + 5.1: 541 + 6: 0 + 7.1: 0 + 8.1: 541 + 9: 0 + 10.1: 0 + 12: 541 + 8.1: _ZNK9oceanbase3sql18ObBasicSessionInfo19is_password_expiredEv:3787 + 0: 541 +_ZZN9oceanbase3sql13ObCmdExecutor7executeERNS0_13ObExecContextERNS0_6ObICmdEENK4$_21clEv.9f50165c44148c1c108cb64accd07fe7:25228:250 + 0: 239 + 0.4: 239 + 0.9: 239 + 0.10: 267 _ZN9oceanbase3sql18ObEndTransExecutor7executeERNS0_13ObExecContextERNS0_14ObEndTransStmtE:267 + 0.11: 257 + 0.3: _ZN9oceanbase3sql18ObEndTransExecutorC2Ev:3585 + 0: 239 + 0.16: _ZNK9oceanbase3sql6ObStmt13get_query_ctxEv:956 + 0: 239 +_ZN9oceanbase6common12parity_checkEj:25014:801 + 1: 758 + 4: 758 + 5: 758 + 6: 758 + 12: 758 +_ZN9oceanbase7storage13ObTxDataTable13alloc_tx_dataERPNS0_8ObTxDataE:24994:245 + 1: 235 + 2: 235 + 4: 263 _ZN9oceanbase6common12ObSliceAlloc5allocEv:244 + 5: 1 + 6.1: 1 + 9: 263 + 13: 258 + 9: _ZN9oceanbase7storage8ObTxData24get_tx_data_by_hash_nodeEPNS_6common12LinkHashNodeINS_11transaction9ObTransIDEEE:1841 + 5: 263 + 11: _ZN9oceanbase7storage8ObTxDataC2Ev:8620 + 0.2: 271 _ZN9oceanbase7storage8ObTxData5resetEv:272 + 0: _ZN9oceanbase7storage14ObTxCommitDataC2Ev:3167 + 0.4: 263 _ZN9oceanbase7storage14ObTxCommitData5resetEv:271 + 0: _ZN9oceanbase11transaction9ObTransIDC2Ev:2104 + 0: 263 + 0.2: _ZN9oceanbase11transaction9ObTransIDD2Ev:7 + 0: 1 + 0.1: _ZN9oceanbase7storage16ObUndoStatusListC2Ev:4336 + 0: 271 + 0.6: _ZN9oceanbase7storage16ObUndoStatusListD2Ev:23 + 0: _ZN9oceanbase7storage16ObUndoStatusList5resetEv:23 + 2: 1 + 3: 1 + 4: _ZN9oceanbase6common15ObSmallSpinLockIhLl0ELl500ELl100EE6unlockEv:11 + 2: 1 + 3: 1 + 0.8: _ZN9oceanbase7storage14ObTxCommitDataD2Ev:6 + 0: _ZN9oceanbase11transaction9ObTransIDD2Ev:6 + 0: 1 +_ZNK9oceanbase5share6schema18ObTableSchemaParam21get_rowkey_column_idsERNS_6common8ObIArrayImEE:24977:189 + 1: 164 + 2: 164 + 3: 164 + 4: 0 + 5.1: 0 + 8.1: 157 + 8.2: 323 + 8.3: 323 + 8.5: 157 + 9: 165 + 10: 0 + 11.1: 0 + 12.1: 165 + 12.2: 165 _ZN9oceanbase6common13ObSEArrayImplImLl1ENS0_19ModulePageAllocatorELb0EE9push_backERKm:164 + 13.1: 0 + 17: 149 + 3: _ZNK9oceanbase5share6schema18ObTableSchemaParam8is_validEv:820 + 0: 164 + 9: _ZNK9oceanbase6common12ObIArrayWrapIPNS_5share6schema13ObColumnParamEE2atEl:660 + 6: 165 + 12.1: _ZNK9oceanbase5share6schema13ObColumnParam13get_column_idEv:660 + 0: 165 +_ZNK9oceanbase11transaction11ObCtxTxData16get_start_log_tsEv:24958:296 + 1: 271 + 2: 271 + 3: 238 + 3.3: 238 + 4: 274 + 2: _ZN9oceanbase6common14SpinRLockGuardC2ERKNS0_10SpinRWLockE:7020 + 1: 271 + 3: 238 + 4.1: 0 + 5: 0 + 3: _ZN9oceanbase6common10SpinRWLock6rdlockEl:3794 + 0: 271 _ZN9oceanbase6common7ObLatch6rdlockEjl:280 + 4: _ZN9oceanbase6common14SpinRLockGuardD2Ev:4536 + 2: 238 + 3: 238 + 3.1: 274 + 4.1: 0 + 3: _ZN9oceanbase6common10SpinRWLock6unlockEv:714 + 0: 238 _ZN9oceanbase6common7ObLatch6unlockEPKj:276 +_ZNK9oceanbase11transaction11ObCtxTxData11get_tx_dataERPKNS_7storage8ObTxDataE:24925:294 + 1: 287 + 2: 287 + 4: 262 + 7: 260 + 10: 268 + 2: _ZN9oceanbase6common14SpinRLockGuardC2ERKNS0_10SpinRWLockE:7000 + 1: 287 + 3: 262 + 4.1: 0 + 3: _ZN9oceanbase6common10SpinRWLock6rdlockEl:4018 + 0: 287 _ZN9oceanbase6common7ObLatch6rdlockEjl:287 + 10: _ZN9oceanbase6common14SpinRLockGuardD2Ev:5282 + 2: 262 + 3: 262 + 3.1: 268 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase6common10SpinRWLock6unlockEv:786 + 0: 262 _ZN9oceanbase6common7ObLatch6unlockEPKj:271 +_ZN9oceanbase3sql13TriggerHandle20do_handle_before_rowERNS0_15ObTableModifyOpERNS0_17ObDASDMLBaseCtDefERKNS0_14ObTrigDMLCtDefERNS0_14ObTrigDMLRtDefE:24816:556 + 5: 528 + 7: 528 + 8: 528 + 10: 0 + 11: 0 + 12.1: 0 + 16: 0 + 23: 0 + 23.2: 0 + 23.3: 0 + 23.5: 0 + 24.1: 0 + 24.2: 0 + 24.3: 0 + 26: 0 + 26.1: 0 + 27: 0 + 28.1: 0 + 29.2: 0 + 29.4: 0 + 29.10: 0 + 31: 0 + 34: 0 + 35: 0 + 36: 0 + 37.1: 0 + 39: 0 + 39.1: 0 + 40.1: 0 + 41.1: 0 + 44: 0 + 45: 0 + 45.2: 0 + 51.1: 0 + 60: 528 + 8: _ZNK9oceanbase5share6schema14ObTimingPoints14has_before_rowEv:2112 + 0: 528 + 14: _ZN9oceanbase3sql10ObOperator12get_exec_ctxEv:0 + 0: 0 + 25: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql12ObTriggerArgEE2atEl:0 + 6: 0 + 26: _ZNK9oceanbase3sql12ObTriggerArg20has_before_row_pointEv:0 + 0: _ZNK9oceanbase5share6schema14ObTimingPoints14has_before_rowEv:0 + 0: 0 + 26.1: _ZNK9oceanbase3sql12ObTriggerArg18has_trigger_eventsEm:0 + 0: _ZNK9oceanbase5share6schema15ObTriggerEvents9has_valueEm:0 + 0: 0 + 28.1: _ZNK9oceanbase3sql12ObTriggerArg18has_when_conditionEv:0 + 0: _ZNK9oceanbase5share6schema14ObTimingPoints18has_when_conditionEv:0 + 0: 0 + 29.2: _ZNK9oceanbase3sql12ObTriggerArg14get_trigger_idEv:0 + 0: 0 + 39: _ZNK9oceanbase3sql12ObTriggerArg14get_trigger_idEv:0 + 0: 0 + 41.1: _ZN9oceanbase5share6schema15ObTriggerEvents15is_update_eventEm:0 + 0: 0 + 43: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:0 + 2: 0 + 45: _ZN9oceanbase3sql10ObOperator12get_eval_ctxEv:0 +_ZN9oceanbase4palf19LogGroupEntryHeader23calculate_log_checksum_EbRKNS0_11LogWriteBufElRl:24775:6 + 4: 6 + 5: 6 + 6: 8 _ZNK9oceanbase4palf11LogWriteBuf8is_validEv:8 + 7: 2 + 8.1: 2 + 9.1: 8 + 10: 2 + 11.1: 2 + 13: 8 + 15: 8 + 17: 10 _ZNK9oceanbase4palf11LogWriteBuf25check_memory_is_continousEv:10 + 18: 10 + 19: 10 + 20: 10 _ZNK9oceanbase4palf11LogWriteBuf13get_write_bufElRPKcRl:10 + 21.1: 2 + 23: 9 + 28: 2 + 29: 2 + 30.1: 2 + 33: 2 + 36: 9 + 39: 9 + 41.1: 220 + 41.3: 220 + 41.4: 220 + 42: 221 _ZN9oceanbase4palf14LogEntryHeader11deserializeEPKclRl:226 + 42.1: 239 + 43.1: 2 + 44.1: 239 _ZNK9oceanbase4palf14LogEntryHeader22check_header_integrityEv:239 + 44.2: 241 + 45: 2 + 46.1: 2 + 49.1: 241 + 50: 241 _ZN9oceanbase6common8ob_crc64EmPKvl:240 + 51.1: 220 + 55: 2 + 56: 7 + 59: 7 + 63.1: 7 _ZZN9oceanbase4palf19LogGroupEntryHeader23calculate_log_checksum_EbRKNS0_11LogWriteBufElRlENK5$_642clEPKc.1598dc2348996c1ae1caea6120522988:7 + 64: 10 + 28.1: _ZN9oceanbase5share10mtl_mallocElRKNS_3lib7ObLabelE:82 + 3: 2 + 4: 2 + 2.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:44 + 5: 2 + 7: 2 + 38: _ZN9oceanbase4palf14LogEntryHeaderC2Ev:216 + 2: 9 + 6: 9 + 49: _ZNK9oceanbase4palf14LogEntryHeader17get_data_checksumEv:1687 + 0: 241 + 51: _ZNK9oceanbase4palf14LogEntryHeader12get_data_lenEv:1540 + 0: 220 + 60: _ZN9oceanbase5share8mtl_freeEPv:16 + 2: 2 +_ZNK9oceanbase7storage15ObTableHandleV28is_validEv:24700:1286 + 1: 1235 + 2: 1235 + 2.1: 1235 + 2.2: 1235 +_ZN9oceanbase11transaction16ObTransStatistic25add_trans_total_used_timeEml:24694:309 + 1: 283 + 3.2: 271 + 3.3: 0 + 3.4: 0 + 3.5: 0 + 3.6: 0 + 3.10: 0 + 3.11: 0 + 3.12: 0 + 5.3: 271 + 5.4: 0 + 2: _ZN9oceanbase6common20ObTenantStatEstGuardC2Em:10894 + 1: 283 + 2: 283 + 3: 293 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 12: 293 + 3: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:1455 + 2: 283 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:284 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:1172 + 2: 293 + 6: _ZN9oceanbase6common17ObSessionDIBuffer13get_tenant_idEv:0 + 3: 0 + 4: 0 + 3.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:1377 + 2: 293 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:293 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:1084 + 2: 271 + 5.3: _ZN9oceanbase6common20ObTenantStatEstGuardD2Ev:3523 + 1: 271 + 2: 271 + 3: 0 + 3.1: 0 +_ZNK9oceanbase11transaction9tablelock17ObOBJLockCallback16get_mutator_typeEv:24519:2288 + 1: 2229 +_ZN9oceanbase11transaction9ObTxLogCbD2Ev:24505:84 + 0: 77 + 0.2: 0 + 0.3: 0 + 0.8: 79 _ZN9oceanbase11transaction13ObTxBaseLogCbD2Ev:85 + 0.13: 0 + 0: _ZN9oceanbase11transaction9ObTxLogCb7destroyEv:14228 + 0: _ZN9oceanbase11transaction9ObTxLogCb5resetEv:14228 + 7: 79 + 12: 79 _ZN9oceanbase11transaction12ObTxMDSRange5resetEv:83 + 2: _ZN9oceanbase11transaction13ObTxBaseLogCb5resetEv:3642 + 3: 75 + 4: 75 _ZN9oceanbase4palf3LSN5resetEv:85 + 5: 79 + 2: _ZN9oceanbase10logservice8AppendCb5resetEv:2035 + 2: 75 + 1: _ZN9oceanbase10logservice12AppendCbBase7__resetEv:985 + 0: 77 _ZN9oceanbase4palf3LSN5resetEv:79 + 3: _ZN9oceanbase6common11ObDLinkBaseINS_11transaction9ObTxLogCbEE5resetEv:1027 + 0: 79 + 5: _ZN9oceanbase5share6ObLSID5resetEv:632 + 0: 79 + 11: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EE5resetEv:6636 + 0: 79 + 0: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EE7destroyEv:4740 + 9: 79 + 11: 0 + 13: 79 + 15: 79 + 24: 79 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 0.1: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EED2Ev:5688 + 1: 79 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EE7destroyEv:4266 + 9: 79 + 11: 0 + 13: 79 + 15: 79 + 24: 79 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 0.6: _ZN9oceanbase5share6ObLSIDD2Ev:869 + 0: _ZN9oceanbase5share6ObLSID5resetEv:869 + 0: 79 + 0.11: _ZN9oceanbase5share6ObLSIDD2Ev:0 + 0: _ZN9oceanbase5share6ObLSID5resetEv:0 + 0: 0 +_ZN9oceanbase6common13serialization11EnumEncoderILb0ENS_11transaction14ObTxDataBackupEE14encoded_lengthERKS4_:24480:298 + 1: 288 + 2: 288 + 2: _ZNK9oceanbase11transaction14ObTxDataBackup18get_serialize_sizeEv:20448 + 0: _ZNK9oceanbase11transaction14ObTxDataBackup28get_serialize_size_dispatch_ESt17integral_constantIbLb0EE:20448 + 0: _ZNK9oceanbase11transaction14ObTxDataBackup19get_serialize_size_Ev:20448 + 0: 288 + 0: _ZN9oceanbase6common13serialization14encoded_lengthEl:19584 + 2: _ZN9oceanbase6common13serialization19encoded_length_vi64El:19584 + 4: 288 + 6.1: 288 + 8.1: 288 + 10.1: 288 + 12.1: 288 + 14.1: 288 + 16.1: 288 + 18.1: 288 +_ZN9oceanbase3sql16AllocInputHelperILi24EE5allocERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecERPNS0_9ObOpInputE:24456:287 + 2: 267 + 3: 267 + 5: 270 _ZN9oceanbase6common16ObArenaAllocator5allocEl:280 + 6: 270 + 7: 0 + 8.1: 0 + 10: 270 + 12: 270 + 10: _ZN9oceanbase3sql20ObTableInsertOpInputC2ERNS0_13ObExecContextERKNS0_8ObOpSpecE:7830 + 2: 270 + 1: _ZN9oceanbase3sql20ObTableModifyOpInputC2ERNS0_13ObExecContextERKNS0_8ObOpSpecE:4050 + 3: 270 + 1: _ZN9oceanbase3sql9ObOpInputC2ERNS0_13ObExecContextERKNS0_8ObOpSpecE:2160 + 0: 270 +_ZN9oceanbase11transaction16ObTransStatistic30add_gts_wait_elapse_total_timeEml:24413:288 + 1: 281 + 3.2: 271 + 3.3: 0 + 3.4: 0 + 3.5: 0 + 3.6: 0 + 3.10: 0 + 3.11: 0 + 3.12: 0 + 4.3: 271 + 4.4: 0 + 2: _ZN9oceanbase6common20ObTenantStatEstGuardC2Em:10664 + 1: 281 + 2: 281 + 3: 280 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 12: 280 + 3: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:1401 + 2: 281 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:291 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:1120 + 2: 280 + 6: _ZN9oceanbase6common17ObSessionDIBuffer13get_tenant_idEv:0 + 3: 0 + 4: 0 + 3.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:1364 + 2: 280 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:282 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:1084 + 2: 271 + 4.3: _ZN9oceanbase6common20ObTenantStatEstGuardD2Ev:3523 + 1: 271 + 2: 271 + 3: 0 + 3.1: 0 +_ZN9oceanbase12blocksstable21ObMicroBlockRowGetter4initERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextEPKNS0_9ObSSTableE:24218:80 + 4: 76 + 5: 76 + 6: 76 + 7: 0 + 8.1: 0 + 9.1: 79 _ZNK9oceanbase7storage16ObTableIterParam8is_validEv:87 + 9.2: 79 + 12: 0 + 13.1: 0 + 14.1: 82 _ZNK9oceanbase7storage8ObITable30is_multi_version_minor_sstableEv:84 + 14.2: 78 + 15: 82 _ZNK9oceanbase12blocksstable9ObSSTable23get_upper_trans_versionEv:87 + 16: 0 + 17.1: 0 + 18.1: 78 + 20.1: 1 + 20.2: 77 + 20.4: 84 + 23: 0 + 24.1: 0 + 26.1: 99 + 26.2: 84 _ZN9oceanbase12blocksstable10ObDatumRow4initERNS_6common12ObIAllocatorEl:84 + 27.1: 0 + 28.1: 0 + 28.3: 0 + 29: 0 + 29.1: 0 + 29.2: 0 + 30.1: 0 + 35: 99 + 9.2: _ZNK9oceanbase7storage20ObTableAccessContext8is_validEv:3002 + 1: 79 + 2: 79 + 2.1: 79 + 3: 79 + 3.1: 79 + 4: 79 + 4.1: 79 + 18.1: _ZN9oceanbase12blocksstable23ObIMicroBlockRowFetcher4initERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextEPKNS0_9ObSSTableE:3042 + 10: 78 + 11: 78 + 12: 78 + 14: 78 + 16: 78 + 20.1: _ZNK9oceanbase7storage20ObTableAccessContext20enable_put_row_cacheEv:188 + 1: 78 + 1.1: 1 + 1.2: 1 + 1.3: 1 + 1.2: _ZNK9oceanbase7storage16ObTableStoreStat20enable_put_row_cacheEv:8 + 2: 1 + 1.4: _ZNK9oceanbase6common10ObTabletID18is_ls_inner_tabletEv:8 + 0: 1 + 20.3: _ZNK9oceanbase7storage16ObTableIterParam21read_with_same_schemaEv:420 + 2: 84 + 20.4: _ZNK9oceanbase7storage16ObTableIterParam13get_read_infoEb:1344 + 2: 84 + 2.3: 84 + 26.1: _ZNK9oceanbase7storage15ObTableReadInfo17get_request_countEv:588 + 1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:588 + 0: 84 + 28.1: _ZNK9oceanbase7storage20ObTableAccessContext20enable_put_row_cacheEv:1089 + 1: 99 + 1.1: 0 + 1.2: 0 + 1.3: 0 + 1: _ZNK9oceanbase6common11ObQueryFlag16is_use_row_cacheEv:990 + 0: 99 + 1.2: _ZNK9oceanbase7storage16ObTableStoreStat20enable_put_row_cacheEv:0 + 2: 0 + 1.4: _ZNK9oceanbase6common10ObTabletID18is_ls_inner_tabletEv:0 + 0: 0 + 28.2: _ZNK9oceanbase7storage16ObTableIterParam21read_with_same_schemaEv:0 + 2: 0 + 29.1: _ZNK9oceanbase7storage15ObTableReadInfo17get_request_countEv:0 + 1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:0 + 0: 0 +_ZN9oceanbase8observer15ObSyncCmdDriver30process_schema_version_changesERKNS0_16ObMySQLResultSetE:24194:223 + 2: 221 + 3: 221 + 5: 221 + 6: 0 + 7.1: 0 + 9: 221 + 11: 224 + 11.2: 221 _ZN9oceanbase3sql6ObStmt11is_ddl_stmtENS0_4stmt8StmtTypeEb:221 + 12: 0 + 14.1: 0 + 15: 0 + 22: 224 + 23: 0 + 24: 0 + 26.1: 0 + 26.3: 0 + 26.4: 0 + 26.6: 0 + 29: 0 + 29.1: 0 + 30.1: 0 + 32: 0 + 32.1: 0 + 34: 0 + 34.1: 0 + 35.1: 0 + 45: 224 + 9: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:1547 + 0: 221 + 11: _ZNK9oceanbase3sql11ObResultSet13get_stmt_typeEv:1326 + 2: 221 + 11.1: _ZNK9oceanbase3sql11ObResultSet19has_global_variableEv:1547 + 0: 221 + 23: _ZNK9oceanbase3sql11ObResultSet7get_cmdEv:0 + 0: 0 + 25: _ZN9oceanbase3sql17ObVariableSetStmt15VariableSetNodeC2Ev:0 + 0: 0 + 1: 0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 28: _ZN9oceanbase6common8ObStringC2EPKc:0 + 1: 0 + 3: 0 +_ZNK9oceanbase7storage16ObTabletHAStatus8is_validEv:24100:978 + 1: 964 + 2: 964 + 2.1: 964 + 3: 964 + 2: _ZN9oceanbase7storage21ObTabletRestoreStatus8is_validERKNS1_6STATUSE:4820 + 3.1: 964 +_ZN9oceanbase10rootserver17ObUnitStatManager11gather_statEv:24087:0 + 1: 0 + 2: 0 + 5: 0 + 6: 0 + 7.1: 0 + 8.1: 0 + 8.2: 0 + 9.1: 0 + 13: 0 + 13.1: 0 + 14.1: 0 + 16: 0 + 17.2: 0 + 17.7: 0 + 17.9: 0 + 17.10: 0 + 17.12: 0 + 17.13: 0 + 18: 0 + 18.1: 0 + 19.1: 0 + 25: 0 + 25.2: 0 + 25.7: 0 + 25.9: 0 + 25.10: 0 + 25.12: 0 + 25.13: 0 + 26: 0 + 27: 0 + 27.1: 0 + 28.1: 0 + 32: 0 + 33.12: 0 + 33.13: 0 + 33.14: 0 + 33.16: 0 + 3: _ZN9oceanbase6common7ObArrayImNS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackImEENS0_22NotImplementItemEncodeImEEEC2Ev:0 + 0.1: 0 + 0.5: _ZN9oceanbase6common11ObArrayImplImNS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackImEENS0_22NotImplementItemEncodeImEEEC2ElRKS2_:0 + 3: 0 + 4: 0 + 7.1: 0 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 4: _ZN9oceanbase6common7ObArrayImNS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackImEENS0_22NotImplementItemEncodeImEEEC2Ev:0 + 0.1: 0 + 0.5: _ZN9oceanbase6common11ObArrayImplImNS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackImEENS0_22NotImplementItemEncodeImEEEC2ElRKS2_:0 + 3: 0 + 4: 0 + 7.1: 0 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 11: _ZN9oceanbase10rootserver17ObUnitStatManager5reuseEv:24087 + 2: _ZN9oceanbase6common4hash12ObReferedMapImNS_5share10ObUnitStatEE5reuseEv:24087 + 0: _ZN9oceanbase6common4hash11ObHashTableImNS1_12ObReferedMapImNS_5share10ObUnitStatEE4ItemENS1_9hash_funcImEENS1_8equal_toImEENS7_6GetKeyENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi82ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE5reuseEv:24087 + 2: _ZN9oceanbase6common4hash11ObHashTableImNS1_12ObReferedMapImNS_5share10ObUnitStatEE4ItemENS1_9hash_funcImEENS1_8equal_toImEENS7_6GetKeyENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi82ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE5clearEv:24087 + 3: 0 + 3.1: 0 + 6.1: 651 + 6.3: 651 + 7: 651 + 10: 651 + 11.1: 0 + 13: 0 + 14: 0 + 18: 651 + 20: 0 + 3: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_12ObReferedMapImNS_5share10ObUnitStatEE4ItemENS1_5NLockENS1_5NCondEEEEEbRKT_:0 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_12ObReferedMapImNS_5share10ObUnitStatEE4ItemENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:0 + 2: 0 + 12: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_12ObReferedMapImNS_5share10ObUnitStatEE4ItemEE16check_magic_codeEv:0 + 0: 0 + 12.1: _ZL12abort_unlessb:0 + 6: 0 + 17.1: _ZNK9oceanbase6common12ObIArrayWrapImE5countEv:0 + 0: 0 + 17.12: _ZNK9oceanbase6common12ObIArrayWrapImE5countEv:0 + 0: 0 + 25.1: _ZNK9oceanbase6common12ObIArrayWrapImE5countEv:0 + 0: 0 + 25.12: _ZNK9oceanbase6common12ObIArrayWrapImE5countEv:0 + 0: 0 +_ZN9oceanbase7storage19ObMemtableMgrHandle5resetEv:24015:1193 + 0: 4 + 1: 1159 + 2: 1159 + 3: 4 + 8: 4 + 10: 4 + 11: 4 + 14: 4 + 17: 1244 +_ZN9oceanbase6common23ObOptStatMonitorManager12get_instanceEv:23760:839 + 1: 792 + 2: 792 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 3: 792 +_ZN9oceanbase3sql13ObDASUpdateOp14init_task_infoEv:23528:354 + 1: 346 + 4: 346 + 4.1: 346 + 7: 346 + 3: _ZNK9oceanbase3sql16ObDASWriteBuffer9is_initedEv:2768 + 0: 346 + 4.1: _ZN9oceanbase3sql16ObDASWriteBuffer4initERNS_6common12ObIAllocatorEmPKcl:13494 + 6: 346 + 8: 346 + 9: 346 + 7: _ZN9oceanbase3lib7ObLabelaSIPKcvEERS1_T_:4844 + 2: 346 +_ZNK9oceanbase7storage15ObRelativeTable14has_udf_columnERb:23384:603 + 1: 592 + 3: 592 + 4: 638 _ZNK9oceanbase5share6schema18ObTableSchemaParam14has_udf_columnERb:623 + 5.1: 3 + 7: 638 +_ZN9oceanbase11transaction11ObGtsSource15get_gts_leader_ERNS_6common6ObAddrE:23381:190 + 1: 187 + 2: 187 + 3: 187 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:191 + 11: 195 + 13.1: 0 + 14.1: 0 + 15: 0 + 18.1: 191 _ZNK9oceanbase6common6ObAddr8is_validEv:192 + 19: 0 + 20.2: 0 + 20.5: 0 + 20.7: 0 + 20.10: 0 + 21.1: 0 + 25: 181 + 11: _ZNK9oceanbase6common6ObAddr8is_validEv:6177 + 3: 183 + 4: 0 + 5: 0 + 8.1: 186 + 9.1: 186 + 10: 195 + 13.1: 0 + 13.3: 0 + 14: 0 + 12: _ZN9oceanbase6common6ObAddraSERKS1_:4775 + 1: 191 + 2: 191 + 3: 191 + 16: _ZN9oceanbase6common6ObAddraSERKS1_:0 + 1: 0 + 2: 0 + 3: 0 + 20: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 20.2: _Z7load128RoPN5types9uint128_tE:0 + 2: 0 + 20.7: _Z6cas128PVN5types9uint128_tEPS0_S0_:0 + 3: 0 + 11: 0 +_ZN9oceanbase11transaction8ObTxDesc30release_all_implicit_savepointEv:23368:1016 + 1: 1016 + 2: 1016 + 3: 1016 +_ZN9oceanbase6common13serialization14encoded_lengthINS0_9ObSEArrayINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EEEEElRKT_:23071:268 + 1: 258 + 2: 251 + 2: _ZN9oceanbase6common13serialization11EnumEncoderILb0ENS0_9ObSEArrayINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EEEE14encoded_lengthERKS7_:16447 + 2: _ZNK9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EE18get_serialize_sizeEv:16447 + 5.1: 258 + 5.3: 251 + 6: 251 + 4: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6ObLSIDEE5countEv:2580 + 0: 258 + 4.1: _ZN9oceanbase6common13serialization19encoded_length_vi64El:2064 + 4: 258 + 6.1: 0 + 8.1: 0 + 10.1: 0 + 12.1: 0 + 14.1: 0 + 16.1: 0 + 18.1: 0 + 6.1: _ZN9oceanbase6common13serialization14encoded_lengthINS_5share6ObLSIDEEElRKT_:1084 + 2: _ZN9oceanbase6common13serialization11EnumEncoderILb0ENS_5share6ObLSIDEE14encoded_lengthERKS4_:1084 + 2: 271 _ZNK9oceanbase5share6ObLSID18get_serialize_sizeEv:271 +_ZN9oceanbase3sql13ObDASDeleteOpD2Ev:23036:231 + 0: 221 + 0: _ZN9oceanbase3sql16ObDASWriteBufferD2Ev:2431 + 2: 221 + 3: 0 + 4: 0 + 0.1: _ZN9oceanbase3sql12ObIDASTaskOpD2Ev:15522 + 0: 252 _ZN9oceanbase6common16ObFixedArrayImplINS0_10ObTabletIDENS0_12ObIAllocatorEED2Ev:230 + 0.1: 224 _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql14ObDASBaseRtDefENS0_12ObIAllocatorEED2Ev:239 + 0.2: 252 _ZN9oceanbase6common16ObFixedArrayImplIPKNS_3sql14ObDASBaseCtDefENS0_12ObIAllocatorEED2Ev:258 + 0.5: 240 _ZN9oceanbase11transaction14ObTxExecResultD1Ev:243 + 0.4: _ZN9oceanbase6common10ObTabletIDD2Ev:3360 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:3360 + 0: 240 +_ZN9oceanbase3sql12ObDMLService30init_das_lock_rtdef_for_updateERNS0_10ObDMLRtCtxERKNS0_10ObUpdCtDefERNS0_10ObUpdRtDefE:23020:180 + 3: 176 + 4: 176 + 5.1: 176 _ZN9oceanbase3sql13ObExecContext13get_allocatorEv:178 + 6: 169 + 7: 176 + 10.1: 0 + 11.1: 176 _ZN9oceanbase3sql12ObDMLService18init_das_dml_rtdefERNS0_10ObDMLRtCtxERKNS0_17ObDASDMLBaseCtDefERNS0_17ObDASDMLBaseRtDefEPKNS0_17ObDASTableLocMetaE:182 + 15.1: 0 + 17: 160 + 5: _ZN9oceanbase3sql10ObDMLRtCtx12get_exec_ctxEv:1232 + 0: _ZN9oceanbase3sql8ObDASRef12get_exec_ctxEv:1232 + 0: 176 + 6: _ZN9oceanbase3sql12ObDMLService18get_table_loc_metaINS0_15ObMultiUpdCtDefEEEPKNS0_17ObDASTableLocMetaEPKT_:1232 + 3: 176 + 7: _ZN9oceanbase3sql16ObDASTaskFactory15alloc_das_rtdefINS0_14ObDASLockRtDefEEEiNS0_11ObDASOpTypeERNS_6common12ObIAllocatorERPT_:6189 + 5: 169 + 6: 169 _ZN9oceanbase3sql16ObDASTaskFactory16create_das_rtdefENS0_11ObDASOpTypeERNS_6common12ObIAllocatorERPNS0_14ObDASBaseRtDefE:177 + 7: 176 + 8: 176 +_ZN9oceanbase7obmysql13OMPKResheaderD2Ev:22962:3880 + 0: 3827 +_ZN9oceanbase7obmysql13OMPKResheaderD1Ev:22962:3880 + 0: 3827 +_ZN9oceanbase4palf12LSNAllocator10try_freezeERNS0_3LSNERl:22893:44 + 1: 44 + 3: 44 + 11: 46 + 13: 38 + 14: 38 + 20: 8 + 21.1: 8 + 22: 8 + 23: 8 + 26: 0 + 31: 53 + 9: _ZN9oceanbase6common8TCRWLock10RLockGuardC2ERS1_:8562 + 0: _ZN9oceanbase6common8TCRWLock6rdlockEl:8562 + 3.1: 0 + 4: 0 + 5: 0 + 3.2: _ZN9oceanbase6common8TCRWLock10try_rdlockEv:8562 + 3: 44 + 5: 46 + 8.1: 0 + 4: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:176 + 0: 44 + 4.1: _ZN9oceanbase6common5TCRef7inc_refEPi:6728 + 2: 44 + 4.1: 44 + 4.2: 43 + 6: 90 + 6.1: 46 + 10: 46 + 2: _ZN9oceanbase6common8get_itidEv:1232 + 4: 44 + 5: 0 + 6: 0 + 8: 0 + 11: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 8: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:0 + 0: 0 + 9: _ZN9oceanbase6common9LWaitCond6signalEv:0 + 2: 0 + 2.1: 0 + 3: 0 + 10: _Z7load128RoPN5types9uint128_tE:966 + 2: 46 + 21: _Z6cas128PVN5types9uint128_tEPS0_S0_:120 + 3: 8 + 11: 8 + 29.2: _ZN9oceanbase6common8TCRWLock10RLockGuardD2Ev:9001 + 0: _ZN9oceanbase6common8TCRWLock8rdunlockEv:9001 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:188 + 0: 47 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPi:7587 + 2: 47 + 4.1: 51 + 4.2: 51 + 6: 100 + 6.1: 53 + 10: 53 + 2: _ZN9oceanbase6common8get_itidEv:1504 + 4: 47 + 5: 0 + 6: 0 + 8: 0 + 11: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:1226 + 2: 53 + 2.1: 0 + 3: 0 +_ZN9oceanbase7storage14ObTxCommitData5resetEv:22860:530 + 1: 508 + 3: 508 + 4: 508 + 6: 508 + 7: 508 + 8: 508 + 2: _ZN9oceanbase11transaction9ObTransIDaSERKl:1524 + 1: 508 +_ZNK9oceanbase8memtable13ObMemtableCtx17get_tx_end_log_tsEv:22764:1086 + 1: 1084 + 2: _ZNK9oceanbase11transaction14ObPartTransCtx17get_tx_end_log_tsEv:13008 + 2: 1084 _ZNK9oceanbase11transaction11ObCtxTxData14get_end_log_tsEv:1116 +_ZN9oceanbase11transaction14ObPartTransCtx28get_max_submitting_log_info_ERNS_4palf3LSNERl:22735:277 + 1: 256 + 2: 256 + 4: 256 _ZN9oceanbase4palf3LSNC1Em:267 + 4.3: 272 _ZN9oceanbase4palf3LSNaSERKS1_:281 + 5: 265 + 6: 265 + 8: 0 + 9: 0 + 10.1: 0 + 11.1: 0 + 12: 0 + 13.1: 0 + 15.3: 0 + 16: 0 + 19: 265 + 6: _ZNK9oceanbase6common7ObDListINS_11transaction9ObTxLogCbEE8is_emptyEv:3710 + 0: 265 + 0.3: 265 + 7: _ZN9oceanbase6common7ObDListINS_11transaction9ObTxLogCbEE8get_lastEv:0 + 0: 0 + 11.1: _ZNK9oceanbase11transaction9ObTxLogCb8is_validEv:0 + 2: 0 + 15: _ZNK9oceanbase11transaction13ObTxBaseLogCb7get_lsnEv:0 + 0: 0 + 16: _ZNK9oceanbase11transaction13ObTxBaseLogCb10get_log_tsEv:0 + 0: 0 +_ZN9oceanbase8memtable8ObMtHash15get_bucket_nodeElmRPNS0_10ObHashNodeERNS1_9GenealogyE:22725:87 + 4: 85 + 14.1: 85 + 14.3: 85 + 17: 110 + 18: 0 + 19.1: 110 + 25: 80 + 27: 0 + 41: 86 + 6: _ZN9oceanbase6common9next_pow2El:2805 + 2: 85 + 16: _ZN9oceanbase8memtable8ObMtHash11get_arr_idxEll:440 + 3: 110 + 23: _ZN9oceanbase8memtable9ObMtArray2atElRPNS0_10ObHashNodeE:8826 + 3: 86 + 4: _ZN9oceanbase8memtable13ObMtArrayBaseILl8064EE2atElRPNS0_10ObHashNodeE:7124 + 5: 0 + 8: 80 + 5: _ZN9oceanbase8memtable13ObMtArrayBaseILl8064EE8load_dirERPPNS0_10ObHashNodeE:1204 + 3: 86 + 4: 86 + 6.1: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 6.1: _ZN9oceanbase8memtable13ObMtArrayBaseILl8064EE8load_segEPPNS0_10ObHashNodeElRS4_:1200 + 3: 80 + 4: 80 + 6.1: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 6: _ZN9oceanbase8memtable13ObMtArrayBaseILl2079680EE2atElRPNS0_10ObHashNodeE:0 + 5: 0 + 6.1: 0 + 8: 0 + 5: _ZN9oceanbase8memtable13ObMtArrayBaseILl2079680EE8load_dirERPPNS0_10ObHashNodeE:0 + 3: 0 + 4: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 6.1: _ZN9oceanbase8memtable13ObMtArrayBaseILl2079680EE8load_segEPPNS0_10ObHashNodeElRS4_:0 + 3: 0 + 4: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 25: _ZNK9oceanbase8memtable10ObHashNode16is_bucket_filledEv:480 + 2: 80 + 27: _ZN9oceanbase8memtable8ObMtHash9Genealogy13append_parentEPNS0_10ObHashNodeEl:0 + 3: 0 + 4.1: 0 + 6: 0 + 7: 0 + 9: 0 +_ZN9oceanbase11transaction14ObPartTransCtx14fill_redo_log_EPclRlRNS_8memtable21ObRedoLogSubmitHelperE:22703:245 + 4: 238 + 5: 238 + 9: 238 + 9.2: 238 + 9.4: 238 + 10: 0 + 11.1: 0 + 12.1: 241 + 13: 241 _ZN9oceanbase8memtable13ObMemtableCtx13fill_redo_logEPclRlRNS0_21ObRedoLogSubmitHelperEb:251 + 15.1: 0 + 19: 241 +_ZN9oceanbase8memtable13ObMemtableCtx13fill_redo_logEPclRlRNS0_21ObRedoLogSubmitHelperEb:22518:251 + 5: 245 + 6: 245 + 8: 245 + 9: 245 + 11.1: 0 + 12: 0 + 14: 245 _ZN9oceanbase8memtable18ObRedoLogGenerator13fill_redo_logEPclRlRNS0_21ObRedoLogSubmitHelperEb:262 + 22: 244 + 23: 0 + 24.1: 0 + 25: 0 + 29: 0 + 31.1: 0 + 36: 244 +_ZN9oceanbase11transaction12ObTxLogBlock11add_new_logINS0_11ObTxRedoLogEEEiRT_:22500:237 + 1: 225 + 2: 225 + 3: 225 + 5: 225 + 5.1: 244 + 6: 0 + 7.1: 0 + 8: 0 + 25: 0 + 27: 238 + 27.1: 234 _ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EE9push_backERKS3_:236 + 28.1: 0 + 29: 0 + 30: 238 + 34: 0 + 35.1: 0 + 38: 238 + 27: _ZN9oceanbase11transaction9ObTxCbArgC2ENS0_11ObTxLogTypeEPKv:3510 + 0: 234 +_ZN9oceanbase6common13ObSEArrayImplINS_3sql15ObCandiTableLocELl2ENS0_19ModulePageAllocatorELb0EED2Ev:22482:247 + 1: 234 + 3: 224 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_3sql15ObCandiTableLocELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv:11868 + 4.1: 234 + 4.3: 0 + 5: 0 + 9: 239 + 11: 0 + 13: 224 + 15: 224 + 24: 224 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_3sql15ObCandiTableLocELl2ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZNK9oceanbase7storage15ObRelativeTable13get_tablet_idEv:22334:1828 + 1: 1718 + 2: 1718 +_ZN9oceanbase3sql15ObSQLSessionMgr15inc_session_refEPKNS0_16ObSQLSessionInfoE:22181:279 + 1: 262 + 2: 262 + 3: 262 + 4: 262 + 5: 262 + 6: 233 + 7.1: 0 + 12: 233 + 5: _ZNK9oceanbase3sql18ObBasicSessionInfo10get_sessidEv:1572 + 0: 262 + 6: _ZN9oceanbase3sql15ObSQLSessionMgr11get_sessionEjRPNS0_16ObSQLSessionInfoE:6750 + 2: 262 + 2.1: 262 _ZN9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE3getERKS3_RPS4_:285 + 3: 241 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:241 + 4: 233 + 5: 0 + 6: 0 + 2: _ZN9oceanbase3sql14SessionInfoKeyC2Ejm:1572 + 0: 262 +_ZN9oceanbase11transaction8ObTxDesc27acq_commit_cb_lock_if_need_Ev:22180:261 + 1: 244 + 2: 244 + 6: 223 + 7: 223 + 8: 0 + 9: 0 + 9.1: 0 + 9.3: 0 + 9.4: 0 + 10.1: 0 + 12: 0 + 12.1: 0 + 13: 0 + 15.1: 223 + 16.1: 0 + 20.1: 0 + 20.2: 0 + 20.3: 0 + 21: 223 + 6: _ZN9oceanbase6common10ObSpinLock7trylockEv:6344 + 2: 244 _ZN9oceanbase6common12ObLatchMutex8try_lockEjPKj:244 +_ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql20ObAggregateProcessor12IAggrFuncCtxENS0_12ObIAllocatorEE7reserveEl:22062:242 + 1: 236 + 2: 236 + 3: 236 + 4: 1 + 5.1: 1 + 5.5: 1 + 5.9: 1 + 6.1: 236 + 7: 249 _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql20ObAggregateProcessor12IAggrFuncCtxENS0_12ObIAllocatorEE4initEl:236 + 8.1: 1 + 8.5: 1 + 8.9: 1 + 11: 1 + 11.1: 249 + 12: 1 + 13.1: 1 + 13.5: 1 + 13.11: 1 + 17: 249 + 5.1: _ZN9oceanbase6common8ObLogger10get_loggerEv:92 + 2: 1 + 2.1: 1 + 2.2: 1 + 2.3: 1 + 2.6: 1 + 5.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:37 + 0: 1 + 5.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:37 + 0: 1 + 8.1: _ZN9oceanbase6common8ObLogger10get_loggerEv:92 + 2: 1 + 2.1: 1 + 2.2: 1 + 2.3: 1 + 2.6: 1 + 8.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:37 + 0: 1 + 8.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:37 + 0: 1 + 13.1: _ZN9oceanbase6common8ObLogger10get_loggerEv:92 + 2: 1 + 2.1: 1 + 2.2: 1 + 2.3: 1 + 2.6: 1 + 13.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:37 + 0: 1 + 13.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:37 + 0: 1 + 13.10: _ZN9oceanbase6common7ObLogKVIRKjLb0EEC2EPKcS3_:33 + 0: 1 +_ZZN9oceanbase4palf16LogSlidingWindow10submit_logEPKcllRNS0_3LSNERlENK5$_113clES3_.0e4bf25207570af14a78557c8489c4fc:22027:275 + 0: 272 + 0.1: 0 + 0.2: 272 + 0.3: 263 _ZN9oceanbase6common8ObLogger13need_to_printEmi:264 + 0.19: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:4471 + 2: 263 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS0_6ObAddrELb0EEC2EPKcS4_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVIRKNS_4palf3LSNELb0EEC2EPKcS5_:0 + 0: 0 + 0.12: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.14: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.16: _ZN9oceanbase6common7ObLogKVIRKbLb0EEC2EPKcS3_:0 + 0: 0 + 0.18: _ZN9oceanbase6common7ObLogKVIRKbLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase6common9SCondTempILi3EE4waitEl:21976:118 + 0: 71 + 1: 71 + 3: 328 + 2: _ZN9oceanbase6common9SCondTempILi3EE4waitEjjl:13577 + 1: _ZN9oceanbase6common10SimpleCond4waitEjl:11234 + 1: 71 + 1.1: 71 + 2: 71 _ZN9oceanbase6common16ObWaitEventGuardC1Elmlllb:71 + 3: 37 + 4: 37 _ZN9oceanbase3lib7ObFutex4waitEil:37 + 5: 305 + 6: 305 _ZN9oceanbase6common16ObWaitEventGuardD1Ev:326 + 6.1: 0 + 1.1: _ZN9oceanbase6common10SimpleCond7get_keyEv:284 + 0: 71 +_ZN9oceanbase11transaction10ObTransCtx22defer_commit_callback_Eil:21931:269 + 1: 241 + 2: 241 + 3: 241 + 4.1: 0 + 5.1: 241 + 6: 0 + 7.1: 0 + 9: 241 + 10: 241 + 12: 241 + 3: _ZN9oceanbase11transaction18ObTxCommitCallback10is_enabledEv:1687 + 0: 241 + 5.1: _ZN9oceanbase11transaction18ObTxCommitCallback9is_initedEv:1687 + 0: 241 + 9: _ZN9oceanbase11transaction18ObTxCommitCallback4initEPNS0_14ObTransServiceENS0_9ObTransIDEil:8194 + 2: 241 + 4: 241 + 5: 241 + 6: 241 + 3: _ZN9oceanbase11transaction9ObTransIDaSERKS1_:1687 + 1: 241 +_ZN9oceanbase11transaction16ObTransStatistic21add_trans_mt_end_timeEml:21929:274 + 1: 248 + 3.2: 246 + 3.3: 0 + 3.4: 0 + 3.5: 0 + 3.6: 0 + 3.10: 0 + 3.11: 0 + 3.12: 0 + 4.3: 246 + 4.4: 0 + 2: _ZN9oceanbase6common20ObTenantStatEstGuardC2Em:9578 + 1: 248 + 2: 248 + 3: 259 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 12: 259 + 3: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:1284 + 2: 248 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:255 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:1036 + 2: 259 + 6: _ZN9oceanbase6common17ObSessionDIBuffer13get_tenant_idEv:0 + 3: 0 + 4: 0 + 3.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:1243 + 2: 259 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:259 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:984 + 2: 246 + 4.3: _ZN9oceanbase6common20ObTenantStatEstGuardD2Ev:3198 + 1: 246 + 2: 246 + 3: 0 + 3.1: 0 +_ZN9oceanbase3sql16ObSqlSchemaGuard5resetEv:21926:521 + 1: 507 + 2: 507 + 3: 512 + 5: 512 + 6: 512 + 2: _ZN9oceanbase6common13ObSEArrayImplIPKNS_5share6schema13ObTableSchemaELl1ENS0_19ModulePageAllocatorELb0EE5resetEv:2535 + 0: 507 _ZN9oceanbase6common13ObSEArrayImplIPKNS_5share6schema13ObTableSchemaELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:514 +_ZN9oceanbase6common7ObDatum12binary_equalERKS1_S3_:21905:527 + 1: 501 + 3: 501 + 5.1: 501 + 6: 501 + 9: 501 + 12: 476 + 5.1: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:1002 + 0: 501 +_ZNK9oceanbase6common13ObStoreRowkey10murmurhashEm:21779:771 + 1: 751 + 3: 751 + 4: 0 + 6: 751 + 11: 751 + 4: _ZNK9oceanbase6common8ObRowkey4hashEv:0 + 2: 0 + 9: _ZN9oceanbase6common10murmurhashEPKvim:0 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:0 + 5: 0 + 13: 0 + 14: 0 + 15: 0 + 17: 0 + 18: 0 + 41: 0 + 42: 0 + 43: 0 +_ZN9oceanbase11transaction16ObTransStatistic31add_gts_wait_elapse_total_countEml:21734:260 + 1: 248 + 3.2: 251 + 3.3: 0 + 3.4: 0 + 3.5: 0 + 3.6: 0 + 3.10: 0 + 3.11: 0 + 3.12: 0 + 4.3: 251 + 4.4: 0 + 2: _ZN9oceanbase6common20ObTenantStatEstGuardC2Em:9256 + 1: 248 + 2: 248 + 3: 236 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 12: 236 + 3: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:1192 + 2: 248 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:248 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:944 + 2: 236 + 6: _ZN9oceanbase6common17ObSessionDIBuffer13get_tenant_idEv:0 + 3: 0 + 4: 0 + 3.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:1240 + 2: 236 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:238 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:1004 + 2: 251 + 4.3: _ZN9oceanbase6common20ObTenantStatEstGuardD2Ev:3263 + 1: 251 + 2: 251 + 3: 0 + 3.1: 0 +_ZN9oceanbase6common11ObArrayImplIPNS_3sql22ObInMemoryTopnSortImpl13SortStoredRowENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEE7destroyEv:21546:520 + 1: 513 + 2: 513 + 6: 0 + 7: 0 + 9: 513 + 11: 513 + 13: 513 +_ZN9oceanbase11transaction16ObTransStatistic22add_trans_mt_end_countEml:21508:245 + 1: 241 + 3.2: 249 + 3.3: 0 + 3.4: 0 + 3.5: 0 + 3.6: 0 + 3.10: 0 + 3.11: 0 + 3.12: 0 + 4.3: 249 + 4.4: 0 + 2: _ZN9oceanbase6common20ObTenantStatEstGuardC2Em:9214 + 1: 241 + 2: 241 + 3: 245 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 12: 245 + 3: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:1221 + 2: 241 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:248 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:980 + 2: 245 + 6: _ZN9oceanbase6common17ObSessionDIBuffer13get_tenant_idEv:0 + 3: 0 + 4: 0 + 3.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:1241 + 2: 245 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:255 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:996 + 2: 249 + 4.3: _ZN9oceanbase6common20ObTenantStatEstGuardD2Ev:3237 + 1: 249 + 2: 249 + 3: 0 + 3.1: 0 +_ZN9oceanbase11transaction17ObTimestampAccess10get_numberElRl:21389:224 + 1: 193 + 2: 193 + 3: 193 + 4: 193 + 5.1: 193 _ZN9oceanbase11transaction11ObIDService10get_numberEllRlS2_:193 + 7: 0 + 7.1: 0 + 9: 0 + 10.2: 0 + 10.5: 0 + 10.7: 0 + 10.10: 0 + 11.1: 0 + 14: 215 + 5: _ZN9oceanbase5share11ObTenantEnv3mtlIPNS_11transaction18ObTimestampServiceEEET_v:7334 + 2: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:3667 + 2: 193 + 2.1: 0 + 2.2: 0 + 2.1: _ZN9oceanbase5share12ObTenantBase3getIPNS_11transaction18ObTimestampServiceEEET_v:3667 + 0: _ZN9oceanbase5share12ObTenantBase9inner_getENS1_8IdentityIPNS_11transaction18ObTimestampServiceEEE:3667 + 0: 193 + 10: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 10.2: _Z7load128RoPN5types9uint128_tE:0 + 2: 0 + 10.7: _Z6cas128PVN5types9uint128_tEPS0_S0_:0 + 3: 0 + 11: 0 +_ZN9oceanbase8memtable24ObMemtableCtxCbAllocator4freeEPv:21264:967 + 2: 886 + 5.1: 886 + 6: 886 _ZN9oceanbase6common15ObFIFOAllocator4freeEPv:904 + 8: 0 +_ZN9oceanbase3sql11ObDASLockOp14init_task_infoEv:21131:189 + 1: 187 + 4: 187 + 4.1: 187 + 9: 187 + 3: _ZNK9oceanbase3sql16ObDASWriteBuffer9is_initedEv:2805 + 0: 187 + 65284: 187 + 4.1: _ZN9oceanbase3lib4Flow11current_ctxEv:4488 + 2: _ZN9oceanbase3lib4Flow12current_flowEv:4488 + 3: 187 + 8: 0 + 12: 0 + 8.1: _ZN9oceanbase3lib4FlowC2ERNS0_13MemoryContextE:0 + 1: 0 + 3: 0 + 10: _ZN9oceanbase3lib4Flow4initEv:0 + 4: 0 + 7: 0 + 8: 0 + 9: 0 + 12: 0 + 7: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 4.2: _ZNK9oceanbase3lib13MemoryContextptEv:748 + 1: 187 + 4.3: _ZN9oceanbase3lib17__MemoryContext__13get_allocatorEv:1309 + 2: 187 + 4.4: _ZN9oceanbase3sql16ObDASWriteBuffer4initERNS_6common12ObIAllocatorEmPKcl:7293 + 6: 187 + 8: 187 + 9: 187 + 7: _ZN9oceanbase3lib7ObLabelaSIPKcvEERS1_T_:2618 + 2: 187 +_ZN9oceanbase6common13ObSEArrayImplINS_5share16ObServerLocalityELl32ENS0_19ModulePageAllocatorELb0EE7destroyEv:21128:296 + 1: 278 + 4.1: 278 + 4.3: 0 + 5: 0 + 9: 278 + 10: 0 + 11: 0 + 13: 278 + 15: 278 + 24: 278 + 25: 278 +_ZNK9oceanbase11transaction18ObTxLogBlockHeader19serialize_dispatch_EPclRlSt17integral_constantIbLb0EE:21039:711 + 0: 692 + 0.1: 757 _ZNK9oceanbase11transaction18ObTxLogBlockHeader10serialize_EPclRl:710 + 0.3: 5 + 0.9: 757 + 0.10: 5 + 0.12: 5 + 0.3: _ZN9oceanbase6common8ObLogger10get_loggerEv:575 + 2: 5 + 2.1: 5 + 2.2: 5 + 2.3: 5 + 2.4: 5 + 2.6: 5 + 0.11: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:185 + 0: 5 +_ZN9oceanbase5share15ObSysVarFactory7destroyEv:21029:4 + 1: 3 + 3.1: 381 + 4: 364 + 5: 364 + 6: 373 + 8: 373 + 9: 4 + 10: 4 + 14: 2 + 15: 2 + 13: _ZN9oceanbase6common16ObArenaAllocator5resetEv:139 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:139 + 4.1: 2 + 6: 0 + 7: 1 + 13: 2 + 14: 2 + 15: 2 + 18: 2 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:3 + 0: 1 + 5.1: _ZL12abort_unlessb:6 + 5: 1 + 6: 0 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:40 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:40 + 0: 1 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:28 + 2: 1 + 3: 1 _ZN9oceanbase3lib17ObMallocAllocator12get_instanceEv:1 + 4: 1 + 5: 1 + 4: _ZL12abort_unlessb:2 + 5: 1 + 6: 0 +_ZN9oceanbase3sql13ObDASInsertOp9write_rowERKNS_6common12ObFixedArrayIPNS0_6ObExprENS2_12ObIAllocatorEEERNS0_9ObEvalCtxERb:21008:257 + 1: 248 + 3: 248 + 4: 248 + 5: 272 _ZN9oceanbase3sql16ObDASWriteBuffer11try_add_rowERKNS_6common8ObIArrayIPNS0_6ObExprEEEPNS0_9ObEvalCtxElRbb:261 + 6.1: 0 + 7.1: 272 + 8: 0 + 10: 272 +_ZN9oceanbase3sql17ObPhysicalPlanCtx21sync_last_value_localEv:20976:292 + 1: 272 + 2: 272 + 3: 290 _ZN9oceanbase5share22ObAutoincrementService12get_instanceEv:275 + 5.1: 0 + 5.2: 290 + 5.3: 290 + 7: 0 + 8.1: 0 + 11: 290 +_ZN9oceanbase5share6schema19ObSchemaGetterGuard18get_schema_versionENS1_12ObSchemaTypeEmmRl:20970:50 + 5: 50 + 6: 50 + 7: 50 + 9: 50 + 10: 1 + 11.1: 1 + 12.1: 50 _ZN9oceanbase5share6schema16is_normal_schemaENS1_12ObSchemaTypeE:50 + 13: 50 + 14: 1 + 15.1: 1 + 29: 50 + 31: 2 + 32: 2 + 33: 2 + 34: 1 + 35.1: 1 + 37.1: 1 + 38.1: 0 + 39.1: 3 _ZNK9oceanbase5share6schema11ObSchemaMgr17get_tenant_schemaEmRPKNS1_20ObSimpleTenantSchemaE:1 + 40.1: 0 + 41.1: 3 + 47: 0 + 47.2: 0 + 47.5: 0 + 47.7: 0 + 47.10: 0 + 47.12: 0 + 51: 0 + 51.2: 0 + 51.5: 0 + 51.7: 0 + 51.10: 0 + 51.12: 0 + 55: 0 + 55.2: 0 + 55.5: 0 + 55.7: 0 + 55.10: 0 + 55.12: 0 + 59: 49 + 61: 0 + 63: 49 + 63.2: 0 + 63.5: 48 + 63.7: 0 + 63.10: 64 _ZNK9oceanbase5share6schema11ObSchemaMgr16get_table_schemaEmmRPKNS1_21ObSimpleTableSchemaV2E:47 + 63.12: 0 + 63.15: 64 + 68: 0 + 68.2: 0 + 68.5: 0 + 68.7: 0 + 68.10: 0 + 68.12: 0 + 72: 0 + 73: 1 + 74: 1 + 75: 1 + 76: 1 + 77.1: 0 + 78.1: 1 + 79.1: 0 + 80.1: 1 + 81.1: 1 + 86: 0 + 86.2: 0 + 86.5: 0 + 86.7: 0 + 86.10: 0 + 86.12: 0 + 86.15: 0 + 91: 0 + 91.2: 0 + 91.5: 0 + 91.7: 0 + 91.10: 0 + 91.12: 0 + 95: 0 + 95.2: 0 + 95.5: 0 + 95.7: 0 + 95.10: 0 + 95.12: 0 + 95.15: 0 + 99: 0 + 99.2: 0 + 99.5: 0 + 99.7: 0 + 99.10: 0 + 99.12: 0 + 103: 0 + 103.2: 0 + 103.5: 0 + 103.7: 0 + 103.10: 0 + 103.12: 0 + 107: 3 + 108: 3 + 109: 3 + 113.1: 3 + 114.1: 0 + 115.1: 3 + 116.1: 0 + 117.1: 3 _ZNK9oceanbase5share6schema16ObSysVariableMgr23get_sys_variable_schemaEmRPKNS1_25ObSimpleSysVariableSchemaE:3 + 118.1: 0 + 119.1: 3 + 120: 3 + 121.1: 3 _ZZN9oceanbase5share6schema19ObSchemaGetterGuard18get_schema_versionENS1_12ObSchemaTypeEmmRlENK5$_562clEPKc.bfa63f0f3456173f564c7cf65584fc48:3 + 127: 1 + 128: 1 + 129: 1 + 130.1: 0 + 131.1: 1 + 132.1: 0 + 133.1: 1 + 134.1: 1 + 141: 1 + 141.2: 0 + 141.5: 1 + 141.7: 0 + 141.10: 1 + 141.12: 1 + 145: 1 + 145.2: 0 + 145.5: 1 + 145.7: 0 + 145.10: 1 + 145.12: 0 + 145.15: 1 + 149: 1 + 149.2: 0 + 149.5: 1 + 149.7: 0 + 149.10: 1 + 149.12: 1 + 153: 1 + 153.2: 0 + 153.5: 1 + 153.7: 0 + 153.10: 1 + 153.12: 1 + 157: 0 + 157.2: 0 + 157.5: 0 + 157.7: 0 + 157.10: 0 + 157.12: 0 + 161: 1 + 161.2: 0 + 161.5: 1 + 161.7: 0 + 161.10: 1 + 161.12: 1 + 165: 0 + 165.2: 0 + 165.5: 0 + 165.7: 0 + 165.10: 0 + 165.12: 0 + 169: 1 + 169.2: 0 + 169.5: 1 + 169.7: 0 + 169.10: 1 + 169.12: 0 + 173: 1 + 173.2: 0 + 173.5: 1 + 173.7: 0 + 173.10: 1 + 173.12: 0 + 177: 1 + 178: 1 + 179: 1 + 180.1: 0 + 181.1: 1 + 182.1: 0 + 183.1: 1 + 184.1: 0 + 185.1: 1 + 191: 0 + 192.1: 0 + 198.1: 63 _ZZN9oceanbase5share6schema19ObSchemaGetterGuard18get_schema_versionENS1_12ObSchemaTypeEmmRlENK5$_597clEPKc.bfa63f0f3456173f564c7cf65584fc48:62 + 199: 60 + 9: _ZNK9oceanbase5share6schema19ObSchemaGetterGuard16check_inner_statEv:2477 + 2: 50 + 3: 50 + 4: 1 + 5.1: 1 + 6.1: 50 + 6.2: 50 + 7: 50 + 7.1: 50 + 8: 0 + 9.1: 0 + 11: 50 + 33: _ZN9oceanbase6common13is_sys_tenantEm:10 + 2: 2 + 37.1: _ZNK9oceanbase5share6schema19ObSchemaGetterGuard16check_lazy_guardEmRPKNS1_11ObSchemaMgrE:56 + 3: 2 + 4: 2 _ZNK9oceanbase5share6schema19ObSchemaGetterGuard14get_schema_mgrEmRPKNS1_11ObSchemaMgrE:2 + 5.1: 0 + 6.1: 1 + 7: 0 + 8.1: 0 + 10: 0 + 42: _ZNK9oceanbase5share6schema20ObSimpleTenantSchema18get_schema_versionEv:15 + 0: 3 + 59: _ZN9oceanbase6common12is_cte_tableEm:686 + 2: 49 + 63: _ZNK9oceanbase5share6schema19ObSchemaGetterGuard25check_tenant_schema_guardEm:882 + 2: 49 + 4: 49 + 6: 0 + 7.1: 0 + 10: 0 + 3: _ZNK9oceanbase5share6schema19ObSchemaGetterGuard22is_tenant_schema_guardEv:490 + 0: 49 + 63.5: _ZNK9oceanbase5share6schema19ObSchemaGetterGuard16check_lazy_guardEmRPKNS1_11ObSchemaMgrE:1684 + 3: 48 + 4: 48 _ZNK9oceanbase5share6schema19ObSchemaGetterGuard14get_schema_mgrEmRPKNS1_11ObSchemaMgrE:49 + 5.1: 0 + 6.1: 48 + 7: 0 + 8.1: 0 + 10: 0 + 72: _ZN9oceanbase5share6schema13ObTriggerInfo21is_trigger_package_idEm:0 + 3: 0 + 75: _ZN9oceanbase5share6schema13ObTriggerInfo22get_package_trigger_idEm:3 + 2: 1 + 86.16: _ZNK9oceanbase5share6schema21ObSimplePackageSchema18get_schema_versionEv:0 + 0: 0 + 95.16: _ZNK9oceanbase5share6schema17ObSimpleUDTSchema18get_schema_versionEv:0 + 0: 0 + 113.1: _ZNK9oceanbase5share6schema19ObSchemaGetterGuard25check_tenant_schema_guardEm:54 + 2: 3 + 4: 3 + 6: 0 + 7.1: 0 + 10: 0 + 3: _ZNK9oceanbase5share6schema19ObSchemaGetterGuard22is_tenant_schema_guardEv:30 + 0: 3 + 115.1: _ZNK9oceanbase5share6schema19ObSchemaGetterGuard16check_lazy_guardEmRPKNS1_11ObSchemaMgrE:126 + 3: 3 + 4: 3 _ZNK9oceanbase5share6schema19ObSchemaGetterGuard14get_schema_mgrEmRPKNS1_11ObSchemaMgrE:3 + 5.1: 0 + 6.1: 3 + 7: 0 + 8.1: 0 + 10: 0 + 120: _ZNK9oceanbase5share6schema25ObSimpleSysVariableSchema18get_schema_versionEv:12 + 0: 3 + 145.16: _ZNK9oceanbase5share6schema24ObLabelSeComponentSchema18get_schema_versionEv:9 + 0: 1 + 186: _ZNK9oceanbase5share6schema31ObSimpleMockFKParentTableSchema18get_schema_versionEv:9 + 0: 1 +_ZN9oceanbase7storage18ObSSTableRowGetter10inner_openERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextEPNS0_8ObITableEPKv:20944:91 + 5: 86 + 6: 86 + 7: 86 + 8: 1 + 9.1: 1 + 10.1: 86 + 10.3: 86 _ZNK9oceanbase7storage8ObITable10is_sstableEv:90 + 10.4: 86 + 13: 1 + 14.1: 1 + 16: 86 + 17: 86 + 18: 86 + 19: 86 + 20: 86 + 21: 86 + 22: 86 + 23: 86 + 24: 86 + 25: 87 _ZN9oceanbase7storage21ObIndexTreePrefetcher4initEiRNS_12blocksstable9ObSSTableERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextEPKv:90 + 27.1: 1 + 29.1: 0 + 30: 1 + 31.1: 1 + 32.1: 0 + 34.1: 0 + 36: 1 + 37: 78 _ZN9oceanbase7storage21ObIndexTreePrefetcher15single_prefetchERNS0_19ObSSTableReadHandleE:75 + 38.1: 1 + 40: 78 + 45: 78 + 46: 1 + 48: 78 + 16: _ZNK9oceanbase7storage16ObTableIterParam18get_full_read_infoEv:344 + 2: 86 + 16.1: _ZNK9oceanbase7storage15ObTableReadInfo19get_index_read_infoEv:602 + 0: 86 + 24: _ZN9oceanbase7storage21ObIndexTreePrefetcher8is_validEv:516 + 0: 86 +_ZZN9oceanbase11transaction14ObPartTransCtx6commitERKNS_6common9ObSEArrayINS_5share6ObLSIDELl3ENS2_19ModulePageAllocatorELb0EEERKNS0_11MonotonicTsERKlRKNS2_8ObStringESE_ENK5$_113clEPKc.93feb755617c21c32b229b78773c290c:20905:254 + 0: 262 + 0.1: 0 + 0.2: 262 + 0.3: 241 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:245 + 0.4: 0 + 0.13: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:4097 + 2: 241 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.1: _ZN9oceanbase6common7ObLogKVIiLb0EEC2EPKcRKi:0 + 0: 0 + 0.5: _ZN9oceanbase6common7ObLogKVIPKcLb1EEC2ES3_OKS3_:0 + 0: 0 + 0.7: _ZN9oceanbase6common7ObLogKVIRKNS0_8ObStringELb0EEC2EPKcS4_:0 + 0: 0 + 0.8: _ZNK9oceanbase11transaction15ObTransHashLinkINS0_10ObTransCtxEE7get_refEv:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.11: _ZN9oceanbase6common20ObLogPrintPointerCntIPNS_11transaction14ObPartTransCtxEEC2ES4_:0 + 0: 0 + 0.12: _ZN9oceanbase6common7ObLogKVINS0_20ObLogPrintPointerCntIPNS_11transaction14ObPartTransCtxEEELb1EEC2EPKcOKS6_:0 + 0: 0 +_ZZN9oceanbase3sql17ObSqlTransControl13do_end_trans_EPNS0_16ObSQLSessionInfoEbblPNS0_23ObEndTransAsyncCallbackEENK6$_2311clEPKc.2477d7488918a1107364fd115ff965f5:20626:243 + 0: 256 + 0.1: 0 + 0.2: 256 + 0.3: 238 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:251 + 0.14: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:4046 + 2: 238 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.5: _ZN9oceanbase6common20ObLogPrintPointerCntIPNS_11transaction8ObTxDescEEC2ES4_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVINS0_20ObLogPrintPointerCntIPNS_11transaction8ObTxDescEEELb1EEC2EPKcOKS6_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKbLb0EEC2EPKcS3_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.12: _ZN9oceanbase6common7ObLogKVIRKbLb0EEC2EPKcS3_:0 + 0: 0 + 0.13: _ZN9oceanbase6common7ObLogKVIPKvLb1EEC2EPKcOKS3_:0 + 0: 0 +_ZN9oceanbase6common10ObMiniStat10ObStatItem4statEl:20618:259 + 1: 254 + 3: 254 + 4: 254 + 5: 254 + 6: 0 + 7.1: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 14: 258 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:2286 + 2: 254 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:255 +_ZN9oceanbase11transaction11ObTxDescMgr3getERKNS0_9ObTransIDERPNS0_8ObTxDescE:20496:277 + 1: 264 + 2: 264 + 3.1: 264 + 3.2: 0 + 3.3: 0 + 4.1: 0 + 4.2: 264 _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocEE3getERKS2_RPS3_:273 + 4.4: 0 + 5.1: 233 _ZZN9oceanbase11transaction11ObTxDescMgr3getERKNS0_9ObTransIDERPNS0_8ObTxDescEENK6$_1085clEPKc.6c6f3ed9193054173c335adef4549614:242 + 6: 226 +_ZN9oceanbase6common13ObSEArrayImplIPPNS_3sql20ObAggregateProcessor8GroupRowELl64ENS0_19ModulePageAllocatorELb0EED2Ev:20495:271 + 1: 251 + 3: 255 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplIPPNS_3sql20ObAggregateProcessor8GroupRowELl64ENS0_19ModulePageAllocatorELb0EE7destroyEv:11172 + 9: 251 + 11: 0 + 13: 255 + 15: 255 + 24: 255 + 10: _ZN9oceanbase6common13ObSEArrayImplIPPNS_3sql20ObAggregateProcessor8GroupRowELl64ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase3sql13ObDASDeleteOp9write_rowERKNS_6common12ObFixedArrayIPNS0_6ObExprENS2_12ObIAllocatorEEERNS0_9ObEvalCtxERb:20484:254 + 1: 244 + 3: 244 + 4: 244 + 5: 261 _ZN9oceanbase3sql16ObDASWriteBuffer11try_add_rowERKNS_6common8ObIArrayIPNS0_6ObExprEEEPNS0_9ObEvalCtxElRbb:253 + 6.1: 0 + 7.1: 261 + 8: 0 + 10: 261 +_ZN9oceanbase11transaction11ObTxDescMgr6removeERNS0_8ObTxDescE:20482:270 + 1: 253 + 2: 253 + 3: 253 + 4.1: 253 _ZZN9oceanbase11transaction11ObTxDescMgr6removeERNS0_8ObTxDescEENK6$_1088clEPKc.6c6f3ed9193054173c335adef4549614:262 + 5.1: 259 + 5.2: 4 + 5.3: 4 + 6: 4 + 6.1: 259 _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocEE3delERKS2_PS3_:271 + 7: 291 + 8.3: 291 +_ZN9oceanbase3sql17ObPhysicalPlanCtx22sync_last_value_globalEv:20336:303 + 1: 272 + 2: 272 + 3: 272 _ZN9oceanbase5share22ObAutoincrementService12get_instanceEv:280 + 5.1: 0 + 5.2: 270 + 5.3: 270 + 7: 0 + 8.1: 0 + 11: 270 +_ZNK9oceanbase7storage8ObTxData25is_valid_in_tx_data_tableEv:20321:270 + 1: 267 + 4: 267 + 5: 0 + 7.1: 0 + 8.1: 0 + 10.1: 0 + 14.1: 253 + 16.1: 0 + 17.1: 253 + 19.1: 0 + 20.1: 253 + 22.1: 0 + 23.1: 253 + 25.1: 0 + 27: 253 + 29.1: 0 + 33: 276 +_ZNK9oceanbase6common5ObObj10get_stringERNS0_8ObStringE:20170:234 + 1: 211 + 2: 211 + 3: 0 + 4: 211 + 5: 0 + 6: 0 + 7.1: 0 + 7.5: 0 + 7.7: 0 + 8.1: 0 + 9.1: 0 + 9.2: 0 + 9.5: 0 + 9.9: 0 + 12: 211 + 16: 0 + 17: 0 + 22: 211 + 3: _ZNK9oceanbase6common9ObObjMeta29is_string_or_lob_locator_typeEv:6447 + 1: 211 + 1.1: 9 + 1: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:3587 + 0: 211 + 1.4: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:660 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:660 + 2: 211 + 7.6: _ZN9oceanbase6common7ObLogKVIRKNS0_5ObObjELb0EEC2EPKcS4_:0 + 0: 0 + 9.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 9.7: _ZN9oceanbase6common20ObLogPrintPointerCntIKPKNS0_12ObLobLocatorEEC2ES4_:0 + 0: 0 + 9.8: _ZN9oceanbase6common7ObLogKVINS0_20ObLogPrintPointerCntIKPKNS0_12ObLobLocatorEEELb1EEC2EPKcOKS7_:0 + 0: 0 + 12: _ZN9oceanbase6common8ObString10assign_ptrEPKci:3794 + 2: 211 + 3: 211 + 5: 211 + 16: _ZN9oceanbase6common8ObString10assign_ptrEPKci:0 + 2: 0 + 3: 0 + 5: 0 + 19: _ZN9oceanbase6common8ObString10assign_ptrEPKci:0 + 3: 0 +_ZZN9oceanbase4palf12LSNAllocator12alloc_lsn_tsEllRNS0_3LSNERlS4_RbS5_S4_ENK5$_597clEPKc.0e4bf25207570af14a78557c8489c4fc:20154:263 + 0: 257 + 0.1: 0 + 0.2: 257 + 0.3: 250 _ZN9oceanbase6common8ObLogger13need_to_printEmi:255 + 0.20: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:4250 + 2: 250 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVIRKNS_4palf3LSNELb0EEC2EPKcS5_:0 + 0: 0 + 0.12: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 + 0.14: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 + 0.15: _ZN9oceanbase6common7ObLogKVIhLb0EEC2EPKcRKh:0 + 0: 0 + 0.17: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.19: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 +_ZZNK9oceanbase11transaction14ObTxVersionMgr15get_max_read_tsEvENKUlPKcE_clES3_:20142:289 + 0: 291 + 0.1: 0 + 0.2: 291 + 0.3: 287 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:288 + 0.5: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:4879 + 2: 287 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 +_ZZN9oceanbase3sql20ObDASIndexDMLAdaptorILi2ENS0_16ObDASDMLIteratorEE12write_tabletERS2_RlENKUlPKcE_clES7_:20066:265 + 0: 259 + 0.1: 0 + 0.2: 251 + 0.3: 259 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:259 + 0.11: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:4403 + 2: 259 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKNS_5share6ObLSIDELb0EEC2EPKcS5_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS0_10ObTabletIDELb0EEC2EPKcS4_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase11transaction9ObTxLogCb5reuseEv:19930:241 + 1: 238 + 3: 256 + 6: 256 + 7: 262 _ZN9oceanbase11transaction12ObTxMDSRange5resetEv:283 + 2: _ZN9oceanbase11transaction13ObTxBaseLogCb5reuseEv:5142 + 2: 238 + 3: 238 _ZN9oceanbase4palf3LSN5resetEv:240 + 4: 256 + 6: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EE5resetEv:2048 + 0: 256 _ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EE7destroyEv:268 +_ZN9oceanbase6common13ObSEArrayImplImLl1ENS0_19ModulePageAllocatorELb0EED2Ev:19890:263 + 1: 261 + 3: 270 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplImLl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:10152 + 9: 261 + 11: 0 + 13: 270 + 15: 270 + 24: 270 + 10: _ZN9oceanbase6common13ObSEArrayImplImLl1ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZZN9oceanbase4palf14PalfHandleImpl10submit_logERKNS0_17PalfAppendOptionsEPKcllRNS0_3LSNERlENK5$_823clES6_.0e4bf25207570af14a78557c8489c4fc:19820:250 + 0: 259 + 0.1: 0 + 0.2: 259 + 0.3: 244 _ZN9oceanbase6common8ObLogger13need_to_printEmi:262 + 0.13: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:4148 + 2: 244 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.5: _ZN9oceanbase6common20ObLogPrintPointerCntIPNS_4palf14PalfHandleImplEEC2ES4_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVINS0_20ObLogPrintPointerCntIPNS_4palf14PalfHandleImplEEELb1EEC2EPKcOKS6_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVIRKNS_4palf3LSNELb0EEC2EPKcS5_:0 + 0: 0 + 0.12: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable13ObDatumRowkeyELl1ENS0_19ModulePageAllocatorELb0EED2Ev:19815:288 + 1: 267 + 3: 261 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable13ObDatumRowkeyELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:9990 + 9: 267 + 11: 0 + 13: 261 + 15: 261 + 24: 261 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable13ObDatumRowkeyELl1ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZZN9oceanbase12blocksstable22ObIndexBlockRowScanner10locate_keyERKNS0_13ObDatumRowkeyEENK5$_767clEPKc.79c84811dffcee7ee47b268264023dc2:19792:244 + 0: 243 + 0.1: 0 + 0.2: 243 + 0.3: 233 _ZN9oceanbase6common8ObLogger13need_to_printEmi:252 + 0.15: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:3961 + 2: 233 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.5: _ZN9oceanbase6common7ObLogKVIPKvLb1EEC2EPKcOKS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common20ObLogPrintPointerCntIPKNS_12blocksstable13ObDatumRowkeyEEC2ES5_:0 + 0: 0 + 0.7: _ZN9oceanbase6common7ObLogKVINS0_20ObLogPrintPointerCntIPKNS_12blocksstable13ObDatumRowkeyEEELb1EEC2EPKcOKS7_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIPKvLb1EEC2EPKcOKS3_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.12: _ZN9oceanbase6common7ObLogKVIRKNS_12blocksstable13ObDatumRowkeyELb0EEC2EPKcS5_:0 + 0: 0 + 0.13: _ZN9oceanbase6common20ObLogPrintPointerCntIPKNS_12blocksstable22ObIndexBlockDataHeaderEEC2ES5_:0 + 0: 0 + 0.14: _ZN9oceanbase6common7ObLogKVINS0_20ObLogPrintPointerCntIPKNS_12blocksstable22ObIndexBlockDataHeaderEEELb1EEC2EPKcOKS7_:0 + 0: 0 +_ZZN9oceanbase11transaction14ObPartTransCtx4initEmRKNS_6common6ObAddrEjRKNS0_9ObTransIDElRKNS_5share6ObLSIDEmPNS0_14ObTransServiceEmlbPNS0_12ObLSTxCtxMgrEbENK4$_55clEPKc.93feb755617c21c32b229b78773c290c:19774:248 + 0: 236 + 0.1: 0 + 0.2: 223 + 0.3: 236 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:236 + 0.22: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:4012 + 2: 236 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKNS_11transaction9ObTransIDELb0EEC2EPKcS5_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.12: _ZN9oceanbase6common7ObLogKVIRKNS_5share6ObLSIDELb0EEC2EPKcS5_:0 + 0: 0 + 0.14: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 + 0.15: _ZN9oceanbase6common7ObLogKVIPKvLb1EEC2EPKcOKS3_:0 + 0: 0 + 0.17: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 + 0.19: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.21: _ZN9oceanbase6common7ObLogKVIRKbLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase11transaction9ObTxLogCbC2Ev:19759:84 + 0: 80 _ZN9oceanbase11transaction13ObTxBaseLogCbC2Ev:84 + 0.1: 72 + 0.4: 72 + 0.6: 70 _ZN9oceanbase11transaction9ObTxLogCb5resetEv:70 + 0.7: 80 + 0.18: 1 + 0.1: _ZN9oceanbase5share6ObLSIDC2Ev:792 + 0: 72 + 0.3: _ZN9oceanbase8memtable15ObCallbackScopeC2Ev:504 + 0.1: _ZN9oceanbase8memtable24ObITransCallbackIteratorC2EPNS0_16ObITransCallbackE:504 + 0: 72 + 0.4: _ZN9oceanbase11transaction12ObTxMDSRangeC2Ev:868 + 0.1: 72 _ZN9oceanbase11transaction12ObTxMDSRange5resetEv:75 + 0: _ZN9oceanbase6common4list8IteratorINS0_6ObListINS_11transaction14ObTxBufferNodeENS4_24TransModulePageAllocatorEEEEC2Ev:792 + 0: 72 + 0.5: _ZN9oceanbase6common9ObSEArrayINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EEC2Ev:11690 + 0.1: 70 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EEC2ElRKS4_:10430 + 2: 70 + 5: 70 + 6: 70 + 8: 70 + 17.1: 70 + 2: _ZN9oceanbase6common8ObIArrayINS_11transaction9ObTxCbArgEEC2EPS3_l:1260 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_11transaction9ObTxCbArgEEC2EPS3_l:1260 + 0: 70 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:3990 + 0: 70 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:1750 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:1750 + 2: 70 + 8: 70 + 0.13: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EED2Ev:148 + 1: 1 + 3.2: 1 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EE7destroyEv:122 + 9: 1 + 11: 1 + 13: 1 + 15: 1 + 24: 1 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:66 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:66 + 0: 1 + 0.2: 1 + 0.1: _ZN9oceanbase6common7ob_freeEPv:45 + 2: 1 + 3: 1 + 4: 1 + 5: 1 + 4: _ZL12abort_unlessb:7 + 5: 1 + 6: 1 + 0.16: _ZN9oceanbase5share6ObLSIDD2Ev:11 + 0: _ZN9oceanbase5share6ObLSID5resetEv:11 + 0: 1 + 0.20: _ZN9oceanbase6common11ObDLinkBaseINS_11transaction9ObTxLogCbEEC2Ev:504 + 1: 72 +_ZZN9oceanbase11transaction11ObTxDescMgr3addERNS0_8ObTxDescEENK6$_1077clEPKc.6c6f3ed9193054173c335adef4549614:19579:298 + 0: 293 + 0.1: 0 + 0.2: 289 + 0.3: 293 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:309 + 0.9: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:4981 + 2: 293 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS_11transaction9ObTransIDELb0EEC2EPKcS5_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKNS_11transaction8ObTxDescELb0EEC2EPKcS5_:0 + 0: 0 +_ZN9oceanbase8memtable13ObMemtableCtx17calc_checksum_allEv:19363:256 + 1: 239 + 3: 239 + 3.1: 239 + 4: 239 _ZN9oceanbase8memtable18ObTransCallbackMgr17calc_checksum_allEv:247 + 7.1: 216 + 2: _ZN9oceanbase6common20ObSmallSpinLockGuardINS0_15ObSmallSpinLockIhLl0ELl500ELl100EEEEC2ERS3_:5975 + 0: _ZN9oceanbase6common15ObSmallSpinLockIhLl0ELl500ELl100EE4lockEv:5975 + 3.1: 239 + 5: 0 + 7: 0 + 9: 0 + 3.1: _ZN9oceanbase6common15ObSmallSpinLockIhLl0ELl500ELl100EE8try_lockEv:5497 + 3: 239 + 4: 239 + 5: 239 + 3: _ZNK9oceanbase8memtable18ObTransCallbackMgr12get_checksumEv:1673 + 0: _ZNK9oceanbase8memtable16ObTxCallbackList12get_checksumEv:1673 + 0: 239 + 6: _ZNK9oceanbase8memtable18ObTransCallbackMgr12get_checksumEv:1512 + 0: _ZNK9oceanbase8memtable16ObTxCallbackList12get_checksumEv:1512 + 0: 216 + 7: _ZN9oceanbase6common20ObSmallSpinLockGuardINS0_15ObSmallSpinLockIhLl0ELl500ELl100EEEED2Ev:0 + 0: _ZN9oceanbase6common15ObSmallSpinLockIhLl0ELl500ELl100EE6unlockEv:0 + 2: 0 + 3: 0 + 7.1: _ZN9oceanbase6common20ObSmallSpinLockGuardINS0_15ObSmallSpinLockIhLl0ELl500ELl100EEEED2Ev:3024 + 0: _ZN9oceanbase6common15ObSmallSpinLockIhLl0ELl500ELl100EE6unlockEv:3024 + 2: 216 + 3: 216 +_ZN9oceanbase11transaction18ObTxCommitCallback8callbackEv:19341:288 + 1: 271 + 2: 271 + 3: 271 + 3.1: 271 + 4: 0 + 5.1: 0 + 6.1: 271 + 7: 0 + 8.1: 0 + 10: 271 + 11: 271 _ZN9oceanbase11transaction14ObTransService23handle_tx_commit_resultERKNS0_9ObTransIDEil:297 + 13: 252 + 3.1: _ZNK9oceanbase11transaction9ObTransID8is_validEv:1355 + 0: 271 +_ZN9oceanbase7storage18ObSSTableRowGetter9fetch_rowERNS0_19ObSSTableReadHandleERPKNS_12blocksstable10ObDatumRowE:19246:94 + 1: 92 + 2: 92 + 3: 92 + 4: 92 + 4.1: 92 _ZN9oceanbase6common26ObWrapperAllocatorWithAttr5allocEl:92 _ZN9oceanbase6common16ObArenaAllocator5allocEl:1 + 4.4: 80 + 5: 0 + 6.1: 0 + 7.1: 105 _ZN9oceanbase12blocksstable21ObMicroBlockRowGetter4initERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextEPKNS0_9ObSSTableE:80 + 8.1: 0 + 10.1: 0 + 11.1: 0 + 15: 0 + 16.1: 103 _ZN9oceanbase12blocksstable21ObMicroBlockRowGetter7get_rowERNS_7storage19ObSSTableReadHandleERPKNS0_10ObDatumRowERNS0_18ObMacroBlockReaderE:106 + 20.1: 0 + 22: 81 + 24: 81 + 4.2: _ZN9oceanbase12blocksstable21ObMicroBlockRowGetterC2Ev:4158 + 0: 92 _ZN9oceanbase12blocksstable23ObIMicroBlockRowFetcherC2Ev:94 + 0.1: 94 _ZN9oceanbase12blocksstable10ObDatumRowC1Ev:97 + 0.4: 0 + 0.5: 0 + 0.7: 92 _ZN9oceanbase12blocksstable10ObDatumRowC1Ev:92 +_ZN9oceanbase3sql18ObBasicSessionInfo14set_cur_sql_idEPc:19190:531 + 1: 505 + 2: 505 + 3: 0 + 5: 505 + 7: 505 +_ZN9oceanbase12blocksstable19ObFuseRowCacheValue4initERKNS0_10ObDatumRowEl:19175:70 + 1: 70 + 4: 70 + 5: 70 + 5.3: 56 + 7: 56 + 8: 56 + 8.2: 399 + 8.3: 399 + 9: 399 + 11: 64 + 13: 64 + 4: _ZNK9oceanbase12blocksstable10ObDatumRow16get_column_countEv:770 + 0: 70 + 6: _ZN9oceanbase12blocksstable12ObDmlRowFlagaSERKS1_:2240 + 3: 56 + 2: _ZNK9oceanbase12blocksstable12ObDmlRowFlag8is_validEv:2016 + 2: 56 + 9: _ZNK9oceanbase12blocksstable14ObStorageDatum18get_deep_copy_sizeEv:6389 + 3: 385 + 4.1: 385 + 3: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:1925 + 0: 385 + 4.1: _ZNK9oceanbase12blocksstable14ObStorageDatum12is_local_bufEv:1540 + 0: 385 +_ZN9oceanbase8keybtree11WriteHandle23insert_and_split_upwardENS_8memtable20ObStoreRowkeyWrapperERPNS2_9ObMvccRowERPNS0_9BtreeNodeE:19151:81 + 1: 78 + 5: 78 + 6: 78 + 9: 78 + 10: 0 + 11: 84 + 13: 0 + 15.1: 78 + 17: 0 + 18.1: 0 + 18.2: 0 + 18.5: 0 + 18.15: 0 + 20: 86 _ZN9oceanbase8keybtree11WriteHandle16insert_into_nodeEPNS0_9BtreeNodeEiNS_8memtable20ObStoreRowkeyWrapperEPNS4_9ObMvccRowERS3_S8_:86 + 22.1: 97 + 22.2: 97 + 22.3: 97 + 24: 10 + 25: 3 + 26: 0 + 26.1: 0 + 28: 0 + 29: 0 + 30.1: 5 + 31: 0 + 31.1: 0 + 33: 5 + 35: 5 + 37: 0 + 37.1: 0 + 41: 3 + 41.1: 0 + 41.3: 3 + 42: 3 + 42.3: 3 + 44: 4 + 44.1: 0 + 44.2: 0 + 44.3: 0 + 44.4: 0 + 44.5: 0 + 45: 0 + 46: 0 + 48: 4 + 48.1: 9 _ZN9oceanbase8keybtree11WriteHandle11split_childEPNS0_9BtreeNodeEiNS_8memtable20ObStoreRowkeyWrapperEPNS4_9ObMvccRowES5_S7_RS3_S8_l:4 + 49: 4 + 49.1: 4 + 49.2: 4 + 50: 4 + 50.2: 4 + 54: 83 + 8: _ZN9oceanbase8keybtree4Path3popERPNS0_9BtreeNodeERi:2964 + 3: 78 + 8: 78 + 9: 78 + 10: _ZN9oceanbase8keybtree11WriteHandle10alloc_nodeEv:0 + 3: 0 + 3.1: _ZN9oceanbase8keybtree10ObKeyBtree10alloc_nodeEb:0 + 3: 0 + 4: _ZN9oceanbase8keybtree9BtreeNode5resetEv:0 + 6: 0 + 2: _ZN9oceanbase8keybtree11MultibitSet5resetEv:0 + 0: 0 + 5: _ZN9oceanbase8keybtree9BtreeNode8set_hostEPv:0 + 0: 0 + 4: _ZN9oceanbase6common10HazardList4pushEPNS0_6ObLinkE:0 + 2: 0 + 3: 0 + 4: 0 + 6: 0 + 9: 0 + 13: _ZN9oceanbase8keybtree9BtreeNode16insert_into_nodeEiNS_8memtable20ObStoreRowkeyWrapperEPNS2_9ObMvccRowE:0 + 0: 0 + 4: 0 + 5: 0 + 8.1: 0 + 3: _ZNK9oceanbase8keybtree9BtreeNode4sizeEPNS0_11MultibitSetE:0 + 2.3: _ZNK9oceanbase8keybtree11MultibitSet4sizeEv:0 + 0: 0 + 6: _ZNK9oceanbase8keybtree11MultibitSet2atEi:0 + 5: 0 + 5.2: 0 + 5.3: 0 + 7: 0 + 4: _ZN9oceanbase8keybtree11MultibitSet4loadERKS1_:0 + 0: 0 + 9: _ZN9oceanbase8keybtree11MultibitSet13unsafe_insertEih:0 + 0: _ZN9oceanbase8keybtree11MultibitSet10cal_index_ERS1_ih:0 + 5: 0 + 12: _ZN9oceanbase8keybtree11MultibitSet9inc_countEs:0 + 0: 0 + 14: _ZN9oceanbase8keybtree9BtreeNode13set_key_valueEiNS_8memtable20ObStoreRowkeyWrapperEPNS2_9ObMvccRowE:0 + 2: 0 + 3: 0 + 15.1: _ZN9oceanbase8keybtree4Path12get_is_foundEv:546 + 0: 78 + 17: _ZNK9oceanbase8keybtree9BtreeNode7get_valEiPNS0_11MultibitSetE:0 + 2: 0 + 2: _ZNK9oceanbase8keybtree9BtreeNode16get_val_with_tagEiPNS0_11MultibitSetE:0 + 2: 0 + 2: _ZNK9oceanbase8keybtree9BtreeNode12get_real_posEiPNS0_11MultibitSetE:0 + 2: 0 + 3.3: 0 + 2: _ZNK9oceanbase8keybtree9BtreeNode7is_leafEv:0 + 0: 0 + 3.1: _ZNK9oceanbase8keybtree11MultibitSet2atEi:0 + 5: 0 + 5.2: 0 + 5.3: 0 + 7: 0 + 4: _ZN9oceanbase8keybtree11MultibitSet4loadERKS1_:0 + 0: 0 + 18.1: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 18.2: _ZN9oceanbase8keybtree9BtreeNode7get_keyEiPNS0_11MultibitSetE:0 + 2: 0 + 2: _ZNK9oceanbase8keybtree9BtreeNode12get_real_posEiPNS0_11MultibitSetE:0 + 2: 0 + 3.3: 0 + 2: _ZNK9oceanbase8keybtree9BtreeNode7is_leafEv:0 + 0: 0 + 3.1: _ZNK9oceanbase8keybtree11MultibitSet2atEi:0 + 5: 0 + 5.2: 0 + 5.3: 0 + 7: 0 + 4: _ZN9oceanbase8keybtree11MultibitSet4loadERKS1_:0 + 0: 0 + 18.7: _ZN9oceanbase6common7ObLogKVIRKNS_8memtable20ObStoreRowkeyWrapperELb0EEC2EPKcS5_:0 + 0: 0 + 18.9: _ZN9oceanbase6common7ObLogKVIRKNS_8memtable20ObStoreRowkeyWrapperELb0EEC2EPKcS5_:0 + 0: 0 + 18.10: _ZNK9oceanbase8keybtree9BtreeNode7get_valEiPNS0_11MultibitSetE:0 + 2: 0 + 2: _ZNK9oceanbase8keybtree9BtreeNode16get_val_with_tagEiPNS0_11MultibitSetE:0 + 2: 0 + 2: _ZNK9oceanbase8keybtree9BtreeNode12get_real_posEiPNS0_11MultibitSetE:0 + 2: 0 + 3.3: 0 + 2: _ZNK9oceanbase8keybtree9BtreeNode7is_leafEv:0 + 0: 0 + 3.1: _ZNK9oceanbase8keybtree11MultibitSet2atEi:0 + 5: 0 + 5.2: 0 + 5.3: 0 + 7: 0 + 4: _ZN9oceanbase8keybtree11MultibitSet4loadERKS1_:0 + 0: 0 + 18.12: _ZN9oceanbase6common7ObLogKVIRKPNS_8memtable9ObMvccRowELb0EEC2EPKcS6_:0 + 0: 0 + 18.14: _ZN9oceanbase6common7ObLogKVIRKPNS_8memtable9ObMvccRowELb0EEC2EPKcS6_:0 + 0: 0 + 23: _ZN9oceanbase8keybtree11WriteHandle9check_tagEPNS0_9BtreeNodeE:1076 + 0.2: _ZNK9oceanbase8keybtree9BtreeNode9check_tagEPNS0_11MultibitSetE:1076 + 8.1: 14 + 8.3: 12 + 9: 12 + 3: _ZN9oceanbase8keybtree11MultibitSetC2Ev:96 + 0: 12 + 5: _ZN9oceanbase8keybtree11MultibitSet4loadERKS1_:132 + 0: 12 + 8.1: _ZNK9oceanbase8keybtree9BtreeNode4sizeEPNS0_11MultibitSetE:233 + 2: 14 + 2.4: 14 + 2: _ZNK9oceanbase8keybtree9BtreeNode7is_leafEv:84 + 0: 14 + 2.2: _ZNK9oceanbase8keybtree11MultibitSet4sizeEv:22 + 0: 5 + 2.3: _ZNK9oceanbase8keybtree11MultibitSet4sizeEv:61 + 0: 10 + 9: _ZNK9oceanbase8keybtree9BtreeNode7get_tagEiPNS0_11MultibitSetE:402 + 2: 12 + 2: _ZNK9oceanbase8keybtree9BtreeNode12get_real_posEiPNS0_11MultibitSetE:270 + 2: 14 + 3.3: 4 + 2: _ZNK9oceanbase8keybtree9BtreeNode7is_leafEv:112 + 0: 14 + 3.1: _ZNK9oceanbase8keybtree11MultibitSet2atEi:128 + 5: 4 + 5.2: 4 + 5.3: 0 + 7: 4 + 4: _ZN9oceanbase8keybtree11MultibitSet4loadERKS1_:16 + 0: 4 + 24: _ZN9oceanbase8keybtree11WriteHandle9check_tagEPNS0_9BtreeNodeE:412 + 0: 10 + 0.2: _ZNK9oceanbase8keybtree9BtreeNode9check_tagEPNS0_11MultibitSetE:352 + 8.1: 3 + 8.3: 3 + 9: 3 + 3: _ZN9oceanbase8keybtree11MultibitSetC2Ev:32 + 0: 4 + 5: _ZN9oceanbase8keybtree11MultibitSet4loadERKS1_:44 + 0: 4 + 8.1: _ZNK9oceanbase8keybtree9BtreeNode4sizeEPNS0_11MultibitSetE:42 + 2: 3 + 2.4: 3 + 2: _ZNK9oceanbase8keybtree9BtreeNode7is_leafEv:18 + 0: 3 + 2.2: _ZNK9oceanbase8keybtree11MultibitSet4sizeEv:12 + 0: 3 + 2.3: _ZNK9oceanbase8keybtree11MultibitSet4sizeEv:0 + 0: 0 + 9: _ZNK9oceanbase8keybtree9BtreeNode7get_tagEiPNS0_11MultibitSetE:168 + 2: 3 + 2: _ZNK9oceanbase8keybtree9BtreeNode12get_real_posEiPNS0_11MultibitSetE:135 + 2: 3 + 3.3: 3 + 2: _ZNK9oceanbase8keybtree9BtreeNode7is_leafEv:24 + 0: 3 + 3.1: _ZNK9oceanbase8keybtree11MultibitSet2atEi:96 + 5: 3 + 5.2: 3 + 5.3: 0 + 7: 3 + 4: _ZN9oceanbase8keybtree11MultibitSet4loadERKS1_:12 + 0: 3 + 27: _ZN9oceanbase8keybtree4Path3popERPNS0_9BtreeNodeERi:175 + 3: 5 + 8: 5 + 9: 5 + 10: 5 + 31: _ZN9oceanbase8keybtree9BtreeNode7get_keyEiPNS0_11MultibitSetE:0 + 2: 0 + 2: _ZNK9oceanbase8keybtree9BtreeNode12get_real_posEiPNS0_11MultibitSetE:0 + 2: 0 + 2: _ZNK9oceanbase8keybtree9BtreeNode7is_leafEv:0 + 0: 0 + 3.1: _ZNK9oceanbase8keybtree11MultibitSet2atEi:0 + 5: 0 + 5.2: 0 + 5.3: 0 + 7: 0 + 4: _ZN9oceanbase8keybtree11MultibitSet4loadERKS1_:0 + 0: 0 + 31.4: _ZN9oceanbase8keybtree11WriteHandle7add_tagEPNS0_9BtreeNodeEm:0 + 0: 0 + 33: _ZNK9oceanbase8keybtree9BtreeNode7get_tagEiPNS0_11MultibitSetE:125 + 2: 5 + 2: _ZNK9oceanbase8keybtree9BtreeNode12get_real_posEiPNS0_11MultibitSetE:55 + 2: 5 + 3.3: 0 + 2: _ZNK9oceanbase8keybtree9BtreeNode7is_leafEv:50 + 0: 5 + 3.1: _ZNK9oceanbase8keybtree11MultibitSet2atEi:0 + 5: 0 + 5.2: 0 + 5.3: 0 + 7: 0 + 4: _ZN9oceanbase8keybtree11MultibitSet4loadERKS1_:0 + 0: 0 + 34.1: _ZN9oceanbase8keybtree11WriteHandle13replace_childEPNS0_9BtreeNodeEiPNS_8memtable9ObMvccRowE:305 + 5.1: _ZN9oceanbase8keybtree9BtreeNode10try_rdlockEv:150 + 0: _ZN9oceanbase8keybtree6RWLock10try_rdlockEv:150 + 3: 5 + 4: 5 + 7: 5 + 8: _ZN9oceanbase8keybtree9BtreeNode7set_valEiPNS_8memtable9ObMvccRowEPNS0_11MultibitSetE:100 + 2: 5 + 2: _ZNK9oceanbase8keybtree9BtreeNode12get_real_posEiPNS0_11MultibitSetE:40 + 2: 5 + 3.3: 0 + 2: _ZNK9oceanbase8keybtree9BtreeNode7is_leafEv:35 + 0: 5 + 3.1: _ZNK9oceanbase8keybtree11MultibitSet2atEi:0 + 5: 0 + 5.2: 0 + 5.3: 0 + 7: 0 + 4: _ZN9oceanbase8keybtree11MultibitSet4loadERKS1_:0 + 0: 0 + 9: _ZN9oceanbase8keybtree9BtreeNode8rdunlockEv:55 + 0: _ZN9oceanbase8keybtree6RWLock8rdunlockEv:55 + 0: 5 + 37: _ZN9oceanbase8keybtree9BtreeNode7get_keyEiPNS0_11MultibitSetE:0 + 2: 0 + 2: _ZNK9oceanbase8keybtree9BtreeNode12get_real_posEiPNS0_11MultibitSetE:0 + 2: 0 + 2: _ZNK9oceanbase8keybtree9BtreeNode7is_leafEv:0 + 0: 0 + 3.1: _ZNK9oceanbase8keybtree11MultibitSet2atEi:0 + 5: 0 + 5.2: 0 + 5.3: 0 + 7: 0 + 4: _ZN9oceanbase8keybtree11MultibitSet4loadERKS1_:0 + 0: 0 + 37.4: _ZN9oceanbase8keybtree11WriteHandle7add_tagEPNS0_9BtreeNodeEm:0 + 0: 0 + 41.1: _ZNK9oceanbase8keybtree9BtreeNode19get_max_del_versionEv:0 + 0: 0 + 42.1: _ZNK9oceanbase8keybtree9BtreeNode19get_max_del_versionEv:0 + 0: 0 + 43: _ZN9oceanbase8keybtree4Path3popERPNS0_9BtreeNodeERi:140 + 3: 4 + 8: 4 + 9: 4 + 10: 4 + 44: _ZN9oceanbase8keybtree9BtreeNode7get_keyEiPNS0_11MultibitSetE:24 + 2: 0 + 2: _ZNK9oceanbase8keybtree9BtreeNode12get_real_posEiPNS0_11MultibitSetE:24 + 2: 0 + 2: _ZNK9oceanbase8keybtree9BtreeNode7is_leafEv:24 + 0: 4 + 3.1: _ZNK9oceanbase8keybtree11MultibitSet2atEi:0 + 5: 0 + 5.2: 0 + 5.3: 0 + 7: 0 + 4: _ZN9oceanbase8keybtree11MultibitSet4loadERKS1_:0 + 0: 0 + 44.1: _ZN9oceanbase8keybtree9BtreeNode7get_keyEiPNS0_11MultibitSetE:0 + 2: 0 + 2: _ZNK9oceanbase8keybtree9BtreeNode12get_real_posEiPNS0_11MultibitSetE:0 + 2: 0 + 2: _ZNK9oceanbase8keybtree9BtreeNode7is_leafEv:0 + 0: 0 + 3.2: _ZNK9oceanbase8keybtree11MultibitSet2atEi:0 + 5: 0 + 5.2: 0 + 5.3: 0 + 7: 0 + 4: _ZN9oceanbase8keybtree11MultibitSet4loadERKS1_:0 + 0: 0 + 44.2: _ZN9oceanbase8keybtree11WriteHandle7add_tagEPNS0_9BtreeNodeEm:0 + 0: 0 + 44.3: _ZNK9oceanbase8keybtree9BtreeNode9get_levelEv:0 + 0: 0 + 44.4: _ZSt3maxImERKT_S2_S2_:0 + 5: 0 + 44.9: _ZN9oceanbase8keybtree11WriteHandle7add_tagEPNS0_9BtreeNodeEm:0 + 0: 0 + 48: _ZSt3maxIiERKT_S2_S2_:12 + 5: 4 + 48.5: _ZN9oceanbase8keybtree9BtreeNode7get_keyEiPNS0_11MultibitSetE:92 + 2: 4 + 2: _ZNK9oceanbase8keybtree9BtreeNode12get_real_posEiPNS0_11MultibitSetE:76 + 2: 4 + 3.1: _ZNK9oceanbase8keybtree11MultibitSet2atEi:72 + 5: 4 + 5.2: 4 + 5.3: 0 + 7: 4 + 4: _ZN9oceanbase8keybtree11MultibitSet4loadERKS1_:12 + 0: 4 + 49: _ZN9oceanbase8keybtree11WriteHandle7add_tagEPNS0_9BtreeNodeEm:12 + 0: 4 + 49.1: _ZN9oceanbase8keybtree9BtreeNode7get_keyEiPNS0_11MultibitSetE:132 + 2: 4 + 2: _ZNK9oceanbase8keybtree9BtreeNode12get_real_posEiPNS0_11MultibitSetE:116 + 2: 4 + 2: _ZNK9oceanbase8keybtree9BtreeNode7is_leafEv:24 + 0: 4 + 3.1: _ZNK9oceanbase8keybtree11MultibitSet2atEi:72 + 5: 4 + 5.2: 4 + 5.3: 0 + 7: 4 + 4: _ZN9oceanbase8keybtree11MultibitSet4loadERKS1_:12 + 0: 4 + 50: _ZN9oceanbase8keybtree11WriteHandle7add_tagEPNS0_9BtreeNodeEm:12 + 0: 4 + 50.1: _ZSt3maxImERKT_S2_S2_:12 + 5: 4 +_ZZN9oceanbase3sql20ObDASIndexDMLAdaptorILi4ENS0_16ObDASDMLIteratorEE12write_tabletERS2_RlENKUlPKcE_clES7_:19138:251 + 0: 261 + 0.1: 0 + 0.2: 261 + 0.3: 241 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:241 + 0.11: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:4097 + 2: 241 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKNS_5share6ObLSIDELb0EEC2EPKcS5_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS0_10ObTabletIDELb0EEC2EPKcS4_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase11transaction10ObTransCtx19set_app_trace_info_ERKNS_6common8ObStringE:18904:291 + 1: 260 + 2: 260 + 5: 260 + 6.1: 0 + 7: 0 + 8.1: 260 + 10: 260 _ZN9oceanbase11transaction11ObTraceInfo18set_app_trace_infoERKNS_6common8ObStringE:260 + 11.1: 0 + 13.1: 0 + 15.1: 0 + 19: 256 + 3: _ZNK9oceanbase6common8ObString6lengthEv:780 + 0: 260 + 8.2: _ZNK9oceanbase6common8ObString6lengthEv:1820 + 0: 260 +_ZN9oceanbase4palf14LogEntryHeader15generate_headerEPKcll:18901:269 + 3: 258 + 5: 258 + 8: 258 + 10: 258 + 11: 258 + 12: 258 _ZN9oceanbase6common8ob_crc64EPKvl:268 + 14: 256 _ZN9oceanbase4palf14LogEntryHeader23update_header_checksum_Ev:261 + 15.1: 241 _ZZN9oceanbase4palf14LogEntryHeader15generate_headerEPKcllENK5$_576clES3_.1598dc2348996c1ae1caea6120522988:248 + 17: 225 +_ZNK9oceanbase8memtable17ObMvccRowCallback12get_dml_flagEv:18900:1166 + 1: 1050 + 2: 1050 + 2: _ZN9oceanbase8memtableL12get_dml_flagEPNS0_15ObMvccTransNodeE:8400 + 2: 1050 + 2.2: 1050 +_ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE16ObIntraPartitionD2Ev:18851:277 + 1: 262 + 2: 262 _ZN9oceanbase3sql17ObChunkDatumStore5resetEv:264 + 3.1: 0 + 3.2: 0 + 3: _ZN9oceanbase3sql17ObChunkDatumStoreD2Ev:10467 + 0: 245 _ZN9oceanbase3sql17ObChunkDatumStore5resetEv:260 + 0.1: 271 + 0.2: 0 + 0.3: 0 + 0.4: 249 _ZN9oceanbase12blocksstable15ObTmpFileIOInfoD1Ev:251 + 0.5: 271 _ZN9oceanbase12blocksstable17ObTmpFileIOHandleD1Ev:276 + 0.6: 0 + 0.7: 0 +_ZN9oceanbase12blocksstable23ObIMicroBlockRowFetcher14prepare_readerENS_6common14ObRowStoreTypeE:18836:108 + 1: 100 + 2: 100 + 3: 100 + 4: 100 + 5: 100 + 6: 100 + 6.1: 103 _ZN9oceanbase6common26ObWrapperAllocatorWithAttr5allocEl:111 + 6.4: 88 + 8: 88 + 8.2: 88 + 10: 0 + 11: 0 + 12: 0 + 12.1: 0 + 12.4: 0 + 14: 0 + 16: 0 + 17.1: 0 + 20: 0 + 21.1: 0 + 24: 88 + 24.1: 88 + 25: 0 + 26.1: 0 + 28: 88 + 6.2: _ZN9oceanbase12blocksstable21ObMicroBlockGetReaderC2Ev:5164 + 1: 103 _ZN9oceanbase12blocksstable23ObIMicroBlockFlatReaderC1Ev:104 + 3.1: 88 + 2: _ZN9oceanbase12blocksstable22ObIMicroBlockGetReaderC2Ev:2552 + 1: _ZN9oceanbase12blocksstable23ObIMicroBlockReaderInfoC2Ev:2552 + 1: 88 + 2: 88 + 3: 88 + 12.2: _ZN9oceanbase12blocksstable22ObEncodeBlockGetReaderC2Ev:0 + 0: 0 + 0.1: 0 + 0.4: 0 + 0: _ZN9oceanbase12blocksstable22ObIMicroBlockGetReaderC2Ev:0 + 2: 0 + 1: _ZN9oceanbase12blocksstable23ObIMicroBlockReaderInfoC2Ev:0 + 1: 0 + 2: 0 + 3: 0 + 0.2: _ZN9oceanbase12blocksstable23ObIMicroBlockReaderInfoD2Ev:0 + 0: 0 + 0: _ZN9oceanbase12blocksstable23ObIMicroBlockReaderInfo5resetEv:0 + 2: 0 + 3: 0 + 4: 0 +_ZN9oceanbase3sql16AllocDASOpHelperILi2EE5allocERNS_6common12ObIAllocatorERPNS0_12ObIDASTaskOpE:18759:289 + 1: 282 + 2: 282 + 5: 295 _ZN9oceanbase6common26ObWrapperAllocatorWithAttr5allocEl:287 + 6: 0 + 7.1: 0 + 9: 295 _ZN9oceanbase3sql13ObDASInsertOpC1ERNS_6common12ObIAllocatorE:298 + 11: 279 +_ZN9oceanbase3sql12ObDMLService25filter_row_for_view_checkERKNS_6common12ObFixedArrayIPNS0_6ObExprENS2_12ObIAllocatorEEERNS0_9ObEvalCtxERb:18744:283 + 3: 264 + 4: 264 + 5: 264 + 6.1: 0 + 6.3: 264 + 6.4: 264 + 7: 0 + 8: 0 + 9: 0 + 10.1: 0 + 13: 0 + 13.1: 0 + 14: 0 + 18: 264 + 7: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:0 + 6: 0 + 9: _ZNK9oceanbase3sql6ObExpr4evalERNS0_9ObEvalCtxERPNS_6common7ObDatumE:0 + 4: 0 + 6: 0 + 7: 0 + 9: 0 + 10: 0 + 10.1: 0 + 11: 0 + 13: 0 + 15.1: 0 + 15.2: 0 + 17: 0 + 18: 0 + 20: 0 + 21: 0 + 22: 0 + 24: 0 + 9: _ZNK9oceanbase3sql6ObExpr15is_batch_resultEv:0 + 0: 0 + 11: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 24: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:0 + 0: 0 + 13: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:0 + 0: 0 + 13.1: _ZNK9oceanbase6common7ObDatum7get_intEv:0 + 0: 0 +_ZN9oceanbase5share17ObLocationService10get_leaderElmRKNS0_6ObLSIDEbRNS_6common6ObAddrE:18737:274 + 6: 274 + 7: 274 + 8: 274 + 9: 3 + 10.1: 3 + 11.1: 274 _ZN9oceanbase5share19ObLSLocationService10get_leaderElmRKNS0_6ObLSIDEbRNS_6common6ObAddrE:288 + 17.1: 3 + 21: 239 +_ZN9oceanbase6common15ObLinearHashMapINS_12blocksstable12MacroBlockIdENS2_14ObBlockManager9BlockInfoENS0_14ShareMemMgrTagEE16do_foreach_scan_INS4_25GetAllMacroBlockIdFunctorENS7_14DoForeachOnBktIS9_EEEEbmmRT_RT0_:18736:74 + 1: 73 + 3: 73 + 4: 73 _ZN9oceanbase6common15ObLinearHashMapINS_12blocksstable12MacroBlockIdENS2_14ObBlockManager9BlockInfoENS0_14ShareMemMgrTagEE16load_access_bkt_EmRPNS7_6BucketE:76 + 5: 73 _ZN9oceanbase6common15ObLinearHashMapINS_12blocksstable12MacroBlockIdENS2_14ObBlockManager9BlockInfoENS0_14ShareMemMgrTagEE14DoForeachOnBktINS4_25GetAllMacroBlockIdFunctorEEclERS7_PNS7_6BucketERS9_:73 + 6.1: 83 + 6.2: 144 + 6.3: 144 + 7: 65 + 8: 65 _ZN9oceanbase6common15ObLinearHashMapINS_12blocksstable12MacroBlockIdENS2_14ObBlockManager9BlockInfoENS0_14ShareMemMgrTagEE16do_foreach_scan_INS4_25GetAllMacroBlockIdFunctorENS7_14DoForeachOnBktIS9_EEEEbmmRT_RT0_:64 + 10: 71 + 11: 71 + 10: _ZN9oceanbase6common15ObLinearHashMapINS_12blocksstable12MacroBlockIdENS2_14ObBlockManager9BlockInfoENS0_14ShareMemMgrTagEE18unload_access_bkt_EPNS7_6BucketES9_:6590 + 2: 2 + 3.1: 2 + 5: _ZN9oceanbase6common15ObLinearHashMapINS_12blocksstable12MacroBlockIdENS2_14ObBlockManager9BlockInfoENS0_14ShareMemMgrTagEE13set_bkt_lock_EPNS7_6BucketEb:781 + 24: 71 + 6: _ZN9oceanbase6common15ObLinearHashMapINS_12blocksstable12MacroBlockIdENS2_14ObBlockManager9BlockInfoENS0_14ShareMemMgrTagEE15unload_haz_seg_EPNS7_6BucketE:5751 + 2: 71 + 2: _ZN9oceanbase6common13ObExternalRef7releaseEPv:5254 + 1: 71 + 2: _ZN9oceanbase6common13ObExternalRef4xrefEPvi:4899 + 0: 71 + 0: _ZN9oceanbase6common13ObExternalRef6locateEPv:4473 + 0: 71 + 0: _ZN9oceanbase6common13ObExternalRef4hashEm:4047 + 1: 71 + 2: 71 + 3: 71 + 4: 71 + 5: 71 +_ZN9oceanbase12blocksstable11ObRowWriter13build_clusterINS0_14ObStorageDatumEEEilPKT_:18637:55 + 1: 53 + 2: 53 + 4: 53 + 6: 53 + 7: 53 + 8: 53 + 9: 53 + 11: 57 + 12: 57 + 12.3: 57 + 13: 67 _ZN9oceanbase12blocksstable11ObRowWriter20write_col_in_clusterINS0_14ObStorageDatumEEEiPKT_lll:56 + 19.1: 0 + 26.1: 67 + 26.2: 65 + 26.3: 65 + 26.4: 1 + 27: 1 + 31: 1 + 32: 1 + 33: 1 + 33.3: 1 + 39.1: 1 + 46.1: 1 + 50.1: 60 + 53: 60 + 4: _ZN9oceanbase12blocksstable11ObRowHeader31need_rowkey_independent_clusterEl:652 + 2: 57 + 11: _ZN9oceanbase12blocksstable11ObRowWriter10ObBitArrayILl133EE7set_valEll:1083 + 2: 57 + 3: 57 + 4: 57 + 28: _ZN9oceanbase12blocksstable11ObRowWriter10ObBitArrayILl133EE7set_valEll:22 + 2: 1 + 3: 1 + 4: 1 + 46.1: _ZN9oceanbase12blocksstable11ObRowWriter12append_arrayILl133EEEiRNS1_10ObBitArrayIXT_EEElRNS0_20ObColClusterInfoMask9BYTES_LENE:5766 + 7: 66 + 14: 66 + 15: 66 + 17.1: 67 + 19: 67 + 20: 62 + 10: _ZN9oceanbase12blocksstable11ObRowWriter10ObBitArrayILl133EE7get_valEl:528 + 3: 66 + 11: _ZN9oceanbase12blocksstable11ObRowWriter13get_uint_byteEmRl:1914 + 3: 66 + 19: _ZN9oceanbase12blocksstable11ObRowWriter10ObBitArrayILl133EE17get_bit_array_ptrENS0_20ObColClusterInfoMask9BYTES_LENE:536 + 3: 67 + 50.1: _ZN9oceanbase12blocksstable11ObRowHeader15set_offset_typeENS0_20ObColClusterInfoMask9BYTES_LENE:720 + 7: 60 +_ZN9oceanbase7storage26ObTxDataMemtableWriteGuard5resetEv:18622:266 + 1: 256 + 2.1: 256 + 2.3: 0 + 3: 225 + 3.1: 259 _ZNK9oceanbase7storage15ObTableHandleV28is_validEv:262 + 4: 225 + 5.1: 225 _ZN9oceanbase7storage15ObTableHandleV220get_tx_data_memtableERPNS0_16ObTxDataMemtableE:249 + 6: 230 _ZN9oceanbase7storage16ObTxDataMemtable13dec_write_refEv:246 + 9: 231 + 3: _ZN9oceanbase6common12ObIArrayWrapINS_7storage15ObTableHandleV2EE2atEl:1036 + 6: 259 + 5: _ZN9oceanbase6common12ObIArrayWrapINS_7storage15ObTableHandleV2EE2atEl:900 + 6: 225 +_ZZN9oceanbase4palf16LogSlidingWindow10submit_logEPKcllRNS0_3LSNERlENK5$_105clES3_.0e4bf25207570af14a78557c8489c4fc:18604:221 + 0: 251 + 0.1: 0 + 0.2: 251 + 0.3: 211 _ZN9oceanbase6common8ObLogger13need_to_printEmi:246 + 0.23: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:3587 + 2: 211 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKNS0_6ObAddrELb0EEC2EPKcS4_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVIRKNS_4palf3LSNELb0EEC2EPKcS5_:0 + 0: 0 + 0.12: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.14: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.16: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.18: _ZN9oceanbase6common7ObLogKVIRKbLb0EEC2EPKcS3_:0 + 0: 0 + 0.20: _ZN9oceanbase6common7ObLogKVIRKbLb0EEC2EPKcS3_:0 + 0: 0 + 0.22: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb0EED2Ev:18544:253 + 1: 244 + 3: 244 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb0EE7destroyEv:9516 + 9: 244 + 11: 0 + 13: 244 + 15: 244 + 24: 244 + 10: _ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZZN9oceanbase11transaction14ObTransService10release_txERNS0_8ObTxDescEENK6$_1267clEPKc.93feb755617c21c32b229b78773c290c:18529:279 + 0: 266 + 0.1: 0 + 0.2: 259 + 0.3: 266 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:266 + 0.7: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:4522 + 2: 266 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.1: _ZN9oceanbase6common20ObLogPrintPointerCntIPNS_11transaction14ObTransServiceEEC2ES4_:0 + 0: 0 + 0.4: _ZN9oceanbase6common7ObLogKVINS0_20ObLogPrintPointerCntIPNS_11transaction14ObTransServiceEEELb1EEC2EPKcOKS6_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS_11transaction8ObTxDescELb0EEC2EPKcS5_:0 + 0: 0 +_ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE21append_all_dump_partsEv:18428:237 + 1: 230 + 2: 230 + 3: 230 + 3.1: 0 + 4: 0 + 5: 0 + 6.1: 0 + 8: 0 + 10: 0 + 11.1: 242 _ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE19append_dumped_partsENS0_9InputSideE:243 + 12.1: 0 + 13.1: 231 _ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE19append_dumped_partsENS0_9InputSideE:234 + 14.1: 0 + 17: 228 + 19: 228 +_ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql20ObAggregateProcessor12IAggrFuncCtxENS0_12ObIAllocatorEED2Ev:18340:279 + 0: 265 + 0.1: 258 + 0.3: 0 + 0: _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql20ObAggregateProcessor12IAggrFuncCtxENS0_12ObIAllocatorEE7destroyEv:10439 + 2: 265 + 5: 265 + 9: 0 + 10: 0 + 12: 258 + 13: 258 + 15: 258 +_ZN9oceanbase6common9Ob2DArrayIPNS_3sql14ObHashPartColsELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS4_Ll64ES5_Lb0EEEE4initEl:18272:227 + 0: 223 + 1: 223 + 2: 223 + 3: 0 + 4.1: 223 + 6: 0 + 7.1: 0 + 9: 234 _ZN9oceanbase6common9Ob2DArrayIPNS_3sql14ObHashPartColsELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS4_Ll64ES5_Lb0EEEE7reserveEl:259 + 10.1: 0 + 11.1: 234 _ZN9oceanbase6common9Ob2DArrayIPNS_3sql14ObHashPartColsELi65408ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS4_Ll64ES5_Lb0EEEE11set_defaultEl:242 + 12.1: 0 + 15: 211 +_ZZN9oceanbase3sql15ObTableDeleteOp23get_next_row_from_childEvENKUlPKcE0_clES3_:18250:284 + 0: 274 + 0.1: 0 + 0.2: 274 + 0.3: 272 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:284 + 0.6: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:4624 + 2: 272 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.1: _ZNK9oceanbase3sql10ObOperator8get_specEv:0 + 0: 0 + 0.4: _ZN9oceanbase3sql17ObToStringExprRowC2ERNS0_9ObEvalCtxERKNS_6common8ObIArrayIPNS0_6ObExprEEE:0 + 1: 0 + 0.5: _ZN9oceanbase6common7ObLogKVINS_3sql17ObToStringExprRowELb1EEC2EPKcOKS3_:0 + 0: 0 +_ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE18get_next_partitionENS0_9InputSideE:18237:252 + 1: 242 + 2: 242 + 3: 242 + 5: 255 + 6: 0 + 7.1: 0 + 11: 0 + 12: 0 + 13.1: 0 + 16: 248 + 17.1: 248 + 19: 252 + 20.1: 0 + 21: 0 + 23.1: 0 + 25.1: 0 + 25.2: 0 + 26: 0 + 26.1: 0 + 27: 0 + 28.1: 0 + 30: 0 + 33: 0 + 35.1: 0 + 37.1: 0 + 37.2: 0 + 38: 0 + 38.1: 0 + 39: 0 + 40.1: 0 + 42: 0 + 45: 258 + 4: _ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE11switch_leftEv:2550 + 1: 255 + 10: _ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE12switch_rightEv:0 + 1: 0 + 20.1: _ZNK9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE7is_leftEv:0 + 0: 0 +_ZN9oceanbase4palf16LogSlidingWindow21handle_committed_log_Ev:18232:62 + 1: 53 + 2: 53 + 6: 53 + 8: 53 _ZNK9oceanbase4palf16LogSlidingWindow32is_all_committed_log_slided_out_ERNS0_3LSNERlS3_:54 + 8.1: 61 + 10.1: 56 _ZZN9oceanbase4palf16LogSlidingWindow21handle_committed_log_EvENK5$_135clEPKc.0e4bf25207570af14a78557c8489c4fc:58 + 14: 5 + 15.1: 17 + 15.3: 17 + 16: 15 + 17: 15 _ZNK9oceanbase4palf16LogSlidingWindow12get_start_idEv:15 + 17.1: 15 + 18: 15 + 20: 15 _ZNK9oceanbase4palf16LogSlidingWindow23get_max_flushed_end_lsnERNS0_3LSNE:15 + 21: 14 + 21.1: 15 + 24: 0 + 25: 0 + 27.2: 15 + 31: 15 _ZN9oceanbase4palf19LogGroupEntryHeaderC1Ev:16 + 37: 17 + 39: 17 + 41: 17 + 45.1: 18 _ZZN9oceanbase4palf16LogSlidingWindow21handle_committed_log_EvENK5$_136clEPKc.0e4bf25207570af14a78557c8489c4fc:19 + 48.1: 9 + 49: 18 + 50: 9 + 51.1: 7 _ZNK9oceanbase4palf11LogStateMgr12can_slide_swEv:8 + 52: 9 + 52.1: 9 + 53: 9 _ZN9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE5slideElPNS0_16ISlidingCallBackE:9 + 53.1: 8 + 55: 0 + 56.1: 0 + 59: 8 + 63.6: 0 + 63.10: 18 _ZN9oceanbase4palf19LogGroupEntryHeaderD1Ev:18 + 64.2: 0 + 68: 56 + 3: _ZN9oceanbase6common13ObThreadLease7acquireEv:1908 + 4: 53 + 6.1: 53 + 7: 53 + 10: 53 + 17: 0 + 5: _ZN9oceanbase4palf3LSNC2Ev:371 + 2: _ZN9oceanbase4palf3LSN5resetEv:371 + 2: 53 + 7: _ZN9oceanbase4palf3LSNC2Ev:212 + 2: _ZN9oceanbase4palf3LSN5resetEv:212 + 2: 53 + 13: _ZN9oceanbase4palf3LSNC2Ev:40 + 2: _ZN9oceanbase4palf3LSN5resetEv:40 + 2: 5 + 19: _ZN9oceanbase4palf16LogSlidingWindow12LogTaskGuardC2EPS1_:180 + 0: 15 + 21: _ZN9oceanbase4palf16LogSlidingWindow12LogTaskGuard12get_log_taskElRPNS0_7LogTaskE:1056 + 2: 14 + 3: 14 + 5.1: 15 + 7.1: 15 _ZN9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE3getElRPS2_:17 + 8: 15 + 9: 15 + 5.1: _ZN9oceanbase4palf15is_valid_log_idEl:45 + 2: 15 + 27.1: _ZNK9oceanbase4palf7LogTask8is_validEv:90 + 2: _ZNK9oceanbase4palf15LogSimpleBitMap8test_mapEl:90 + 2: 15 + 33: _ZN9oceanbase4palf3LSNC2Ev:289 + 2: _ZN9oceanbase4palf3LSN5resetEv:289 + 2: 17 + 36: _ZNK9oceanbase4palf7LogTask4lockEv:357 + 1: 17 _ZN9oceanbase6common7ObLatch6wrlockEjlPKj:17 + 38: _ZNK9oceanbase4palf7LogTask12get_data_lenEv:68 + 0: 17 + 39.1: _ZN9oceanbase4palfplERKNS0_3LSNEm:68 + 4: 17 + 39.2: _ZN9oceanbase4palfplERKNS0_3LSNEm:170 + 4: 17 + 39.3: _ZN9oceanbase4palf3LSNaSERKS1_:68 + 2: 17 + 40: _ZNK9oceanbase4palf7LogTask10is_freezedEv:191 + 2: _ZNK9oceanbase4palf15LogSimpleBitMap8test_mapEl:191 + 2: 18 + 41: _ZNK9oceanbase4palf7LogTask11get_ref_cntEv:187 + 0: 17 + 43: _ZNK9oceanbase4palf7LogTask6unlockEv:187 + 1: 17 _ZN9oceanbase6common7ObLatch6unlockEPKj:17 + 49.1: _ZNK9oceanbase4palf3LSNgeERKS1_:72 + 2: 9 + 2: _ZNK9oceanbase4palf3LSNltERKS1_:36 + 2: 9 + 52: _ZN9oceanbase4palf7LogTask13try_pre_slideEv:189 + 2: _ZN9oceanbase4palf15LogSimpleBitMap12test_and_setEl:189 + 5: 9 + 6: 9 + 7: 9 + 12: 0 + 55: _ZN9oceanbase4palf7LogTask15reset_pre_slideEv:0 + 3: _ZN9oceanbase4palf15LogSimpleBitMap9reset_mapEl:0 + 3: 0 + 4.1: 0 + 5: 0 + 6: 0 + 64.1: _ZN9oceanbase4palf16LogSlidingWindow12LogTaskGuardD2Ev:865 + 2.1: 0 + 2: _ZN9oceanbase4palf16LogSlidingWindow12LogTaskGuard15revert_log_taskEv:865 + 1: 19 + 2: 19 + 2.1: 19 + 3: 19 _ZN9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE6revertEl:19 + 4: 0 + 5: 0 + 6.1: 0 + 2.1: _ZN9oceanbase4palf15is_valid_log_idEl:57 + 2: 19 + 5: _ZNK9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE12get_begin_snEv:0 + 0: 0 + 66.1: _ZN9oceanbase6common13ObThreadLease6revokeEv:1568 + 4: 56 + 6.1: 56 + 7: 56 + 10: 56 + 17: 0 +_ZZN9oceanbase11transaction14ObTxVersionMgr20update_max_commit_tsElbENKUlPKcE_clES3_:18220:269 + 0: 264 + 0.1: 0 + 0.2: 244 + 0.3: 264 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:265 + 0.7: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:4488 + 2: 264 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKbLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase11transaction12ObTxLogBlock5reuseElRKNS0_18ObTxLogBlockHeaderE:18194:254 + 1: 227 + 3: 227 + 4: 227 + 5: 240 + 6: 285 _ZN9oceanbase11transaction12ObTxLogBlock27serialize_log_block_header_ElRKNS0_18ObTxLogBlockHeaderE:247 + 7.1: 3 + 9: 285 + 4: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EE5resetEv:1135 + 0: 227 _ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EE7destroyEv:238 +_ZN9oceanbase11transaction17ObTransCtxFactory7releaseEPNS0_10ObTransCtxE:18168:226 + 1: 226 + 2: 226 + 3.1: 0 + 6: 226 _ZN9oceanbase11transaction14ObPartTransCtx7destroyEv:240 + 7.1: 223 _ZN9oceanbase6common18ObServerObjectPoolINS_11transaction14ObPartTransCtxEE13return_objectEPS3_:253 + 8: 212 + 9: 212 + 15: 212 + 17: 212 + 7: _ZN9oceanbase6common18ObServerObjectPoolINS_11transaction14ObPartTransCtxEE12get_instanceEv:2899 + 1: 223 + 1.1: 0 + 1.2: 0 + 1.4: 0 + 1.6: 0 +_ZN9oceanbase6common8ob_crc64EPKvl:18120:793 + 1: 755 + 3: _ZN9oceanbase6common8ob_crc64EmPKvl:10570 + 2: _ZN9oceanbase6common14ob_crc64_sse42EmPKvl:10570 + 2: 755 _ZN9oceanbase6commonL11crc64_sse42EmPKcl.3c99adf4d252691c8becdc9ea2f3cc95:778 +_ZN9oceanbase7storage16ObTableIterParamC2Ev:18104:265 + 8: 257 _ZN9oceanbase7storage14ObTabletHandleC1Ev:265 + 10: 263 + 14: 263 + 15: 257 + 16: 263 + 2: _ZN9oceanbase6common10ObTabletIDC2Em:5911 + 0: 257 + 16.1: _ZN9oceanbase6common10ObTabletIDD2Ev:0 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:0 + 0: 0 +_ZN9oceanbase7storage16ObTableIterParamC1Ev:18104:265 + 8: 257 _ZN9oceanbase7storage14ObTabletHandleC1Ev:265 + 10: 263 + 14: 263 + 15: 257 + 16: 263 + 2: _ZN9oceanbase6common10ObTabletIDC2Em:5911 + 0: 257 + 16.1: _ZN9oceanbase6common10ObTabletIDD2Ev:0 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:0 + 0: 0 +_ZN9oceanbase6common6ObListIPNS_3sql14ObDASTabletLocENS0_12ObIAllocatorEE9push_backERKS4_:18102:247 + 1: 238 + 3: 238 _ZN9oceanbase6common16ObArenaAllocator5allocEl:250 + 4: 259 + 12: 259 + 13: 259 + 14: 259 + 15: 259 + 16: 259 + 19: 259 + 7: _ZN9oceanbase6common16construct_assignIPNS_3sql14ObDASTabletLocEEEiRT_RKS5_:1813 + 2: _ZN9oceanbase6common21construct_assign_wrapIPNS_3sql14ObDASTabletLocEEEiRT_RKS5_NS0_8BoolTypeILb0EEE:1813 + 2: 259 +_ZZN9oceanbase8memtable13ObLockWaitMgr6wakeupERKNS_11transaction9ObTransIDEENK4$_43clEPKc.1dd22efca7fa83ae50e8099a04ad3959:17979:296 + 0: 273 + 0.1: 0 + 0.2: 249 + 0.3: 273 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:273 + 0.5: 0 + 0.8: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:4641 + 2: 273 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKNS_11transaction9ObTransIDELb0EEC2EPKcS5_:0 + 0: 0 + 0.7: _ZN9oceanbase6common7ObLogKVIRKPcLb0EEC2EPKcS4_:0 + 0: 0 +_ZZN9oceanbase11transaction14ObTransService22decide_tx_commit_info_ERNS0_8ObTxDescERPNS0_8ObTxPartEENK5$_953clEPKc.93feb755617c21c32b229b78773c290c:17970:255 + 0: 242 + 0.1: 0 + 0.2: 242 + 0.3: 239 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:245 + 0.11: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:4063 + 2: 239 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS_5share6ObLSIDELb0EEC2EPKcS5_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKNS_11transaction14ObTransServiceELb0EEC2EPKcS5_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVIRKNS_11transaction8ObTxDescELb0EEC2EPKcS5_:0 + 0: 0 +_ZN9oceanbase6common13ObLinkHashMapINS_11transaction9tablelock8ObLockIDENS3_9ObOBJLockENS3_14ObOBJLockAllocENS0_9RefHandleELl8EE8dec_urefEPNS0_12LinkHashNodeIS4_EE:17935:704 + 1: 664 + 2: 664 + 3: 664 + 7: 665 + 3: _ZN9oceanbase6common9RefHandle3decEPNS0_7RefNodeE:3320 + 0: 664 + 4: _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9tablelock8ObLockIDENS3_9ObOBJLockENS3_14ObOBJLockAllocENS0_9RefHandleELl8EE13on_uref_cleanEPNS0_12LinkHashNodeIS4_EE:0 + 3: 0 + 3: _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9tablelock8ObLockIDENS3_9ObOBJLockENS3_14ObOBJLockAllocENS0_9RefHandleELl8EE10free_valueEPS5_:0 + 2: _ZN9oceanbase11transaction9tablelock14ObOBJLockAlloc10free_valueEPNS1_9ObOBJLockE:0 + 2: 0 + 3: 0 + 4: _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9tablelock8ObLockIDENS3_9ObOBJLockENS3_14ObOBJLockAllocENS0_9RefHandleELl8EE8dec_hrefEPNS0_12LinkHashNodeIS4_EE:0 + 3: 0 + 3: _ZN9oceanbase6common7RefNode5xhrefEi:0 + 0: 0 + 4: _ZN9oceanbase11transaction9tablelock14ObOBJLockAlloc9free_nodeEPNS_6common12LinkHashNodeINS1_8ObLockIDEEE:0 + 3: 0 + 3.3: 0 + 3: _ZN9oceanbase3lib7ObLabelC2IPKcEERKT_:0 + 2: _ZN9oceanbase3lib7ObLabelaSIPKcvEERS1_T_:0 + 2: 0 + 3.1: _ZN9oceanbase6common21ObFixedClassAllocatorINS0_12LinkHashNodeINS_11transaction9tablelock8ObLockIDEEEE4freeEPS6_:0 + 4: 0 + 3: _ZN9oceanbase6common12LinkHashNodeINS_11transaction9tablelock8ObLockIDEED2Ev:0 + 0: _ZN9oceanbase6common6ObLinkD2Ev:0 + 0: 0 + 0.1: _ZN9oceanbase6common7RefNodeD2Ev:0 + 0: _ZN9oceanbase6common6ObLinkD2Ev:0 + 0: 0 +_ZZN9oceanbase10logservice13ObApplyStatus14push_append_cbEPNS0_8AppendCbEENK4$_20clEPKc.d3a41d52a3cfae37a6a74713ee8e7132:17874:234 + 0: 239 + 0.1: 0 + 0.2: 239 + 0.3: 234 _ZN9oceanbase6common8ObLogger13need_to_printEmi:235 + 0.13: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:3978 + 2: 234 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS_4palf3LSNELb0EEC2EPKcS5_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVIRKNS_10logservice23ObApplyServiceQueueTaskELb0EEC2EPKcS5_:0 + 0: 0 + 0.11: _ZN9oceanbase6common20ObLogPrintPointerCntIPNS_10logservice13ObApplyStatusEEC2ES4_:0 + 0: 0 + 0.12: _ZN9oceanbase6common7ObLogKVINS0_20ObLogPrintPointerCntIPNS_10logservice13ObApplyStatusEEELb1EEC2EPKcOKS6_:0 + 0: 0 +_ZN9oceanbase6commonL20check_convert_stringENS0_9ObObjTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS4_.db28c62327e16d3ae5c8a88acfd53bbb:17858:193 + 2: 168 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 3: 168 + 23.1: 0 + 24: 168 + 25: 0 + 25.1: 0 + 26: 0 + 27: 0 + 28.1: 0 + 31: 0 + 32.1: 0 + 33.1: 0 + 33.11: 0 + 33.14: 0 + 36: 170 + 38: 170 + 23: _ZN9oceanbase3lib14is_oracle_modeEv:7392 + 2: _ZN9oceanbase3lib15get_compat_modeEv:7392 + 2: 168 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:4704 + 2: 168 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 24.1: _ZN9oceanbase6common10ob_is_blobENS0_9ObObjTypeENS0_15ObCollationTypeE:0 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:0 + 2: 0 + 25.1: _ZNK9oceanbase6common5ObObj7is_blobEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta7is_blobEv:0 + 2: 0 + 2: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:0 + 0: 0 + 26: _ZNK9oceanbase6common5ObObj18is_varchar_or_charEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta18is_varchar_or_charEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta10is_varcharEv:0 + 2: 0 + 33.1: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 33.12: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 33.15: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 +_ZN9oceanbase6common13ObSEArrayImplImLl1ENS0_19ModulePageAllocatorELb0EE9push_backERKm:17806:404 + 2: 395 + 5: 395 + 6: 0 + 12: 0 + 15: 1 + 15.1: 396 + 16: 396 + 19: 396 + 15.1: _ZN9oceanbase6common9ObClassOpImLb1EE20construct_and_assignERKmRm:2772 + 2: 396 +_ZN9oceanbase3sql12ObDMLService24filter_row_for_check_cstERKNS_6common12ObFixedArrayIPNS0_6ObExprENS2_12ObIAllocatorEEERNS0_9ObEvalCtxERb:17679:264 + 3: 249 + 4: 249 + 5: 249 + 6.1: 0 + 6.3: 249 + 6.4: 249 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11.1: 0 + 12: 0 + 13: 0 + 15.1: 0 + 19: 0 + 19.1: 0 + 20: 0 + 24: 249 + 7: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:0 + 6: 0 + 9: _ZNK9oceanbase3sql6ObExpr4evalERNS0_9ObEvalCtxERPNS_6common7ObDatumE:0 + 4: 0 + 6: 0 + 7: 0 + 9: 0 + 10: 0 + 10.1: 0 + 11: 0 + 13: 0 + 15.1: 0 + 15.2: 0 + 17: 0 + 18: 0 + 20: 0 + 21: 0 + 22: 0 + 24: 0 + 9: _ZNK9oceanbase3sql6ObExpr15is_batch_resultEv:0 + 0: 0 + 11: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 24: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:0 + 0: 0 + 10: _ZN9oceanbase3lib13is_mysql_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 19: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:0 + 0: 0 + 19.1: _ZNK9oceanbase6common7ObDatum7get_intEv:0 + 0: 0 +_ZN9oceanbase3sql20ObSqlMemMgrProcessor18unregister_profileEv:17652:286 + 1: 264 + 2: 264 + 3: 264 _ZN9oceanbase3sql24ObTenantSqlMemoryManager28unregister_work_area_profileERNS0_20ObSqlWorkAreaProfileE:266 + 7: 270 + 4: _ZN9oceanbase3sql20ObSqlMemMgrProcessor7destroyEv:8910 + 2: 270 + 2.1: 0 + 3: 0 + 6: 270 + 7: 270 +_ZN9oceanbase3sql13ObDASInsertOp14init_task_infoEv:17476:264 + 1: 257 + 4: 257 + 4.1: 257 + 7: 257 + 3: _ZNK9oceanbase3sql16ObDASWriteBuffer9is_initedEv:2056 + 0: 257 + 4.1: _ZN9oceanbase3sql16ObDASWriteBuffer4initERNS_6common12ObIAllocatorEmPKcl:10023 + 6: 257 + 8: 257 + 9: 257 + 7: _ZN9oceanbase3lib7ObLabelaSIPKcvEERS1_T_:3598 + 2: 257 +_ZN9oceanbase6common13serialization11encode_vi32EPclRli:17429:280 + 1: 260 + 3: 260 + 4: 260 + 5: 257 + 6.1: 257 + 7: 0 + 8: 0 + 11: 266 + 14: 266 + 4: _ZN9oceanbase6common13serialization19encoded_length_vi32Ei:1820 + 4: 260 + 6.1: 0 + 8.1: 0 + 10.1: 0 +_ZNK9oceanbase8observer16ObInnerSQLResult8find_idxEPKcRl:17405:58 + 1: 56 + 2: 56 + 3: 56 + 4: 56 + 5: 0 + 6.1: 0 + 7.1: 56 + 8: 0 + 9.1: 0 + 11: 56 + 12: 6 _ZNK9oceanbase8observer16ObInnerSQLResult16build_column_mapEv:5 + 13.1: 0 + 14: 0 + 17: 60 + 19.1: 0 + 21: 0 + 22.1: 54 + 23: 0 + 24.1: 0 + 28: 54 + 17: _ZN9oceanbase6common8ObString11make_stringEPKc:927 + 2: 51 + 2.2: 60 + 4: 57 + 17.1: _ZNK9oceanbase6common4hash9ObHashMapINS0_8ObStringElNS1_19NoPthreadDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_lEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKS3_Rll:9663 + 7: _ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_lEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKS3_RS5_l:9501 + 5: 60 + 5.1: 60 + 6.1: 0 + 9: 60 _ZNK9oceanbase6common4hash9hash_funcINS0_8ObStringEEclERKS3_:60 + 10: 60 + 11: 60 + 5: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringElEENS1_5NLockENS1_5NCondEEEEEbRKT_:480 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringElEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:480 + 2: 60 + 18: _ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_lEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE32internal_get_with_timeout_unsafeERNS1_17ObHashTableBucketIS5_NS1_5NLockENS1_5NCondEEERKS3_RPKS5_l:5709 + 35: 55 + 6: _ZNK9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_lEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE12internal_getERKNS1_17ObHashTableBucketIS5_NS1_5NLockENS1_5NCondEEERKS3_RPKS5_Rb:5654 + 8.1: 60 + 10: 0 + 12: 55 + 9: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_11HashMapPairINS0_8ObStringElEEE16check_magic_codeEv:201 + 0: 67 + 9.1: _ZL12abort_unlessb:402 + 5: 67 + 6: 0 + 10.1: _ZNK9oceanbase6common4hash8equal_toINS0_8ObStringEEclERKS3_S6_:4243 + 2: _ZNK9oceanbase6common8ObStringeqERKS1_:4243 + 2: 0 + 2: _ZNK9oceanbase6common8ObString7compareERKS1_:4243 + 3: 67 + 5.1: 69 + 5.2: 67 + 7.1: 69 + 7.2: 69 + 7.1: _ZSt3minIiERKT_S2_S2_:672 + 5: 69 + 21: _ZN9oceanbase6common11copy_assignINS0_4hash11HashMapPairINS0_8ObStringElEEEEiRT_RKS6_:432 + 2: _ZN9oceanbase6common16copy_assign_wrapINS0_4hash11HashMapPairINS0_8ObStringElEEEEiRT_RKS6_NS0_8BoolTypeILb1EEE:432 + 2: _ZN9oceanbase6common4hash11HashMapPairINS0_8ObStringElE6assignERKS4_:432 + 5.1: _ZN9oceanbase6common11copy_assignIlEEiRT_RKS2_:432 + 2: _ZN9oceanbase6common16copy_assign_wrapIlEEiRT_RKS2_NS0_8BoolTypeILb0EEE:432 + 2: 54 + 8: _ZN9oceanbase6common11copy_assignIlEEiRT_RKS2_:162 + 2: _ZN9oceanbase6common16copy_assign_wrapIlEEiRT_RKS2_NS0_8BoolTypeILb0EEE:162 + 2: 54 +_ZN9oceanbase3sql8ObSortOp10inner_openEv:17358:544 + 1: 526 + 2: 526 + 3: 526 + 4: 0 + 5.1: 0 + 7: 526 +_ZN9oceanbase7storage21ObFuseRowCacheFetcher18put_fuse_row_cacheERKNS_12blocksstable13ObDatumRowkeyERNS2_10ObDatumRowEl:17266:75 + 1: 72 + 2: 72 + 3: 72 + 4: 0 + 5.1: 0 + 6.1: 72 + 7: 0 + 8.1: 0 + 9.1: 72 + 13: 72 + 14: 72 + 14.4: 72 _ZN9oceanbase12blocksstable17ObFuseRowCacheKeyC1EmRKNS_6common10ObTabletIDERKNS0_13ObDatumRowkeyEllRKNS0_19ObStorageDatumUtilsE:74 + 15: 76 _ZN9oceanbase12blocksstable19ObFuseRowCacheValueC1Ev:76 + 16: 70 _ZN9oceanbase12blocksstable19ObFuseRowCacheValue4initERKNS0_10ObDatumRowEl:70 + 16.1: 74 + 17.1: 0 + 18.1: 74 _ZN9oceanbase12blocksstable19ObStorageCacheSuite12get_instanceEv:74 + 18.3: 71 _ZN9oceanbase12blocksstable14ObFuseRowCache7put_rowERKNS0_17ObFuseRowCacheKeyERKNS0_19ObFuseRowCacheValueE:78 + 18.4: 99 + 19.1: 0 + 25: 95 + 14: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:1368 + 2: 72 + 2.1: 0 + 2.2: 0 + 14.1: _ZNK9oceanbase5share12ObTenantBase2idEv:1080 + 0: 72 + 14.2: _ZNK9oceanbase7storage15ObTableReadInfo23get_schema_column_countEv:288 + 1: 72 + 14.3: _ZNK9oceanbase7storage15ObTableReadInfo15get_datum_utilsEv:432 + 0: 72 + 18.2: _ZN9oceanbase12blocksstable19ObStorageCacheSuite18get_fuse_row_cacheEv:1207 + 0: 71 + 23.1: _ZN9oceanbase12blocksstable19ObFuseRowCacheValueD2Ev:0 + 0: 0 +_ZN9oceanbase8memtable10ObMemtable11row_compactEPNS0_9ObMvccRowEbl:17250:57 + 3: 56 + 4: 56 + 6: 56 + 7: 0 + 8.1: 0 + 9.1: 56 + 9.2: 58 + 10.1: 0 + 11.1: 58 _ZN9oceanbase8memtable22ObMemtableRowCompactor7compactEl:58 + 11.2: 57 + 12.1: 0 + 16: 57 + 17.4: 57 + 5: _ZN9oceanbase8memtable22ObMemtableRowCompactorC2Ev:3752 + 1: 56 + 2: 56 + 6: 56 + 7: 56 + 8: 56 + 6: _ZN9oceanbase8memtable18CompactMapImprovedC2Ev:1624 + 0: 56 + 9.1: _ZN9oceanbase8memtable22ObMemtableRowCompactor4initEPNS0_9ObMvccRowEPNS0_10ObMemtableEPNS_6common12ObIAllocatorEb:7434 + 5: 56 + 9.1: 56 + 10: 0 + 11.1: 0 + 12.1: 58 + 13.1: 0 + 15: 58 + 16: 58 + 17: 58 + 18: 58 + 19: 58 + 21: 58 + 12.1: _ZN9oceanbase8memtable18CompactMapImproved4initEv:3406 + 3: 58 _ZN9oceanbase8memtable18CompactMapImproved18StaticMemoryHelper10get_tl_arrEv:58 + 5.1: 0 + 8: 58 + 9: 58 + 13: 58 + 14: 58 + 15: 0 + 16: 0 + 17.1: 0 + 18: 0 +_ZN9oceanbase12blocksstable21ObMicroBlockRowGetter13get_block_rowERNS_7storage19ObSSTableReadHandleERNS0_18ObMacroBlockReaderERPKNS0_10ObDatumRowE:17199:102 + 5: 98 + 6: 98 + 8: 111 + 9.1: 0 + 10.1: 111 _ZN9oceanbase12blocksstable21ObMicroBlockRowGetter13inner_get_rowERKNS0_12MacroBlockIdERKNS0_13ObDatumRowkeyERKNS0_16ObMicroBlockDataERPKNS0_10ObDatumRowE:111 + 16.1: 0 + 19: 84 + 20: 0 + 21.1: 0 + 21.2: 0 + 21.3: 0 + 21.4: 0 + 21.6: 0 + 21.7: 0 + 22: 0 + 23.2: 0 + 25: 0 + 26: 0 + 27: 0 + 28: 0 + 29: 0 + 33: 84 + 34.1: 88 + 34.2: 0 + 34.3: 0 + 34.4: 0 + 34.6: 0 + 34.7: 0 + 39: 84 + 7: _ZN9oceanbase12blocksstable16ObMicroBlockDataC2Ev:1764 + 0: 98 + 8: _ZN9oceanbase7storage19ObSSTableReadHandle14get_block_dataERNS_12blocksstable18ObMacroBlockReaderERNS2_16ObMicroBlockDataE:4259 + 2: 98 + 3: 98 + 4: 0 + 5.1: 0 + 6.1: 111 _ZN9oceanbase7storage22ObMicroBlockDataHandle19get_data_block_dataERNS_12blocksstable18ObMacroBlockReaderERNS2_16ObMicroBlockDataE:106 + 7.1: 0 + 9: 0 + 19: _ZNK9oceanbase12blocksstable12ObDmlRowFlag12is_not_existEv:588 + 2: 84 + 21.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:0 + 2: 0 + 23: _ZN9oceanbase12blocksstable19ObStorageCacheSuite12get_instanceEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 24: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 24.1: _ZNK9oceanbase5share12ObTenantBase2idEv:0 + 0: 0 + 27: _ZNK9oceanbase12blocksstable13ObDatumRowkey13get_datum_cntEv:0 + 0: 0 + 34.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:436 + 2: 84 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:85 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:352 + 2: 88 +_ZN9oceanbase3sql19AllocDASRtDefHelperILi5EE5allocERNS_6common12ObIAllocatorERPNS0_14ObDASBaseRtDefE:17148:175 + 1: 170 + 2: 170 + 5: 170 _ZN9oceanbase6common16ObArenaAllocator5allocEl:172 + 6: 0 + 7.1: 0 + 9: 163 + 11: 163 + 9: _ZN9oceanbase3sql14ObDASLockRtDefC2Ev:9617 + 2: 163 + 3: 163 + 1: _ZN9oceanbase3sql17ObDASDMLBaseRtDefC2ENS0_11ObDASOpTypeE:6031 + 2: 163 + 4: 163 + 5: 163 + 1: _ZN9oceanbase3sql14ObDASBaseRtDefC2ENS0_11ObDASOpTypeE:2282 + 1: 163 + 3: 163 +_ZN9oceanbase5share15ObSysVarFactory19create_all_sys_varsEv:17146:0 + 1: 0 + 2: 0 + 3: 0 + 229: 3 + 230: 0 + 231.1: 0 + 233: 3 + 235: 0 + 237: 0 + 238.1: 0 + 240: 3 + 241: 3 + 244: 3 + 245: 3 + 246: 0 + 247.1: 0 + 249: 3 + 250: 3 + 253: 3 + 254: 2 + 255: 0 + 256.1: 0 + 258: 2 + 259: 2 + 262: 2 + 263: 1 + 264: 0 + 265.1: 0 + 267: 1 + 268: 1 + 271: 1 + 272: 1 + 273: 0 + 274.1: 0 + 276: 1 + 277: 1 + 280: 1 + 281: 1 + 282: 0 + 283.1: 0 + 285: 1 + 286: 1 + 289: 1 + 290: 0 + 291: 0 + 292.1: 0 + 294: 0 + 295: 0 + 298: 0 + 299: 0 + 300: 0 + 301.1: 0 + 303: 0 + 304: 0 + 307: 0 + 308: 0 + 309: 0 + 310.1: 0 + 312: 0 + 313: 0 + 316: 0 + 317: 1 + 318: 0 + 319.1: 0 + 321: 1 + 322: 1 + 325: 1 + 326: 1 + 327: 0 + 328.1: 0 + 330: 1 + 331: 1 + 334: 1 + 335: 1 + 336: 0 + 337.1: 0 + 339: 1 + 340: 1 + 343: 1 + 344: 1 + 345: 0 + 346.1: 0 + 348: 1 + 349: 1 + 352: 1 + 353: 1 + 354: 0 + 355.1: 0 + 357: 1 + 358: 1 + 361: 1 + 362: 1 + 363: 0 + 364.1: 0 + 366: 1 + 367: 1 + 370: 1 + 371: 0 + 372: 0 + 373.1: 0 + 375: 0 + 376: 0 + 379: 0 + 380: 0 + 381: 0 + 382.1: 0 + 384: 0 + 385: 0 + 388: 0 + 389: 0 + 390: 0 + 391.1: 0 + 393: 0 + 394: 0 + 397: 0 + 398: 0 + 399: 0 + 400.1: 0 + 402: 0 + 403: 0 + 406: 0 + 407: 0 + 408: 0 + 409.1: 0 + 411: 0 + 412: 0 + 415: 0 + 416: 1 + 417: 0 + 418.1: 0 + 420: 1 + 421: 1 + 424: 1 + 425: 1 + 426: 0 + 427.1: 0 + 429: 1 + 430: 1 + 433: 1 + 434: 1 + 435: 0 + 436.1: 0 + 438: 1 + 439: 1 + 442: 1 + 443: 2 + 444: 0 + 445.1: 0 + 447: 2 + 448: 2 + 451: 2 + 452: 2 + 453: 0 + 454.1: 0 + 456: 2 + 457: 2 + 460: 2 + 461: 2 + 462: 0 + 463.1: 0 + 465: 2 + 466: 2 + 469: 2 + 470: 3 + 471: 0 + 472.1: 0 + 474: 3 + 475: 3 + 478: 3 + 479: 3 + 480: 0 + 481.1: 0 + 483: 3 + 484: 3 + 487: 3 + 488: 3 + 489: 0 + 490.1: 0 + 492: 3 + 493: 3 + 496: 3 + 497: 4 + 498: 0 + 499.1: 0 + 501: 4 + 502: 4 + 505: 4 + 506: 4 + 507: 0 + 508.1: 0 + 510: 4 + 511: 4 + 514: 4 + 515: 4 + 516: 0 + 517.1: 0 + 519: 4 + 520: 4 + 523: 4 + 524: 4 + 525: 0 + 526.1: 0 + 528: 4 + 529: 4 + 532: 4 + 533: 3 + 534: 0 + 535.1: 0 + 537: 3 + 538: 3 + 541: 3 + 542: 3 + 543: 0 + 544.1: 0 + 546: 3 + 547: 3 + 550: 3 + 551: 3 + 552: 0 + 553.1: 0 + 555: 3 + 556: 3 + 559: 3 + 560: 2 + 561: 0 + 562.1: 0 + 564: 2 + 565: 2 + 568: 2 + 569: 2 + 570: 0 + 571.1: 0 + 573: 2 + 574: 2 + 577: 2 + 578: 1 + 579: 0 + 580.1: 0 + 582: 1 + 583: 1 + 586: 1 + 587: 1 + 588: 0 + 589.1: 0 + 591: 1 + 592: 1 + 595: 1 + 596: 1 + 597: 0 + 598.1: 0 + 600: 1 + 601: 1 + 604: 1 + 605: 0 + 606: 0 + 607.1: 0 + 609: 0 + 610: 0 + 613: 0 + 614: 0 + 615: 0 + 616.1: 0 + 618: 0 + 619: 0 + 622: 0 + 623: 0 + 624: 0 + 625.1: 0 + 627: 0 + 628: 0 + 631: 0 + 632: 1 + 633: 0 + 634.1: 0 + 636: 1 + 637: 1 + 640: 1 + 641: 1 + 642: 0 + 643.1: 0 + 645: 1 + 646: 1 + 649: 1 + 650: 1 + 651: 0 + 652.1: 0 + 654: 1 + 655: 1 + 658: 1 + 659: 1 + 660: 0 + 661.1: 0 + 663: 1 + 664: 1 + 667: 1 + 668: 1 + 669: 0 + 670.1: 0 + 672: 1 + 673: 1 + 676: 1 + 677: 1 + 678: 0 + 679.1: 0 + 681: 1 + 682: 1 + 685: 1 + 686: 1 + 687: 0 + 688.1: 0 + 690: 1 + 691: 1 + 694: 1 + 695: 1 + 696: 0 + 697.1: 0 + 699: 1 + 700: 1 + 703: 1 + 704: 1 + 705: 0 + 706.1: 0 + 708: 1 + 709: 1 + 712: 1 + 713: 1 _ZN9oceanbase5share18ObSysVarGeneralLogC2Ev:1 + 714: 0 + 715.1: 0 + 717: 1 + 718: 1 + 721: 1 + 722: 1 _ZN9oceanbase5share19ObSysVarHaveOpensslC2Ev:1 + 723: 0 + 724.1: 0 + 726: 1 + 727: 1 + 730: 1 + 731: 1 + 732: 0 + 733.1: 0 + 735: 0 + 736: 0 + 739: 0 + 740: 0 + 741: 0 + 742.1: 0 + 744: 0 + 745: 0 + 748: 0 + 749: 0 + 750: 0 + 751.1: 0 + 753: 0 + 754: 0 + 757: 0 + 758: 0 + 759: 0 + 760.1: 0 + 762: 0 + 763: 0 + 766: 0 + 767: 1 + 768: 0 + 769.1: 0 + 771: 1 + 772: 1 + 775: 1 + 776: 1 _ZN9oceanbase5share23ObSysVarLockWaitTimeoutC2Ev:1 + 777: 0 + 778.1: 0 + 780: 1 + 781: 1 + 784: 1 + 785: 1 _ZN9oceanbase5share21ObSysVarLongQueryTimeC2Ev:1 + 786: 0 + 787.1: 0 + 789: 1 + 790: 1 + 793: 1 + 794: 1 _ZN9oceanbase5share22ObSysVarMaxConnectionsC2Ev:1 + 795: 0 + 796.1: 0 + 798: 1 + 799: 1 + 802: 1 + 803: 1 _ZN9oceanbase5share24ObSysVarMaxExecutionTimeC2Ev:1 + 804: 0 + 805.1: 0 + 807: 1 + 808: 1 + 811: 1 + 812: 1 _ZN9oceanbase5share23ObSysVarProtocolVersionC2Ev:1 + 813: 0 + 814.1: 0 + 816: 1 + 817: 1 + 820: 1 + 821: 1 _ZN9oceanbase5share16ObSysVarServerIdC2Ev:1 + 822: 0 + 823.1: 0 + 825: 1 + 826: 1 + 829: 1 + 830: 1 _ZN9oceanbase5share13ObSysVarSslCaC2Ev:1 + 831: 0 + 832.1: 0 + 834: 1 + 835: 1 + 838: 1 + 839: 1 _ZN9oceanbase5share17ObSysVarSslCapathC2Ev:1 + 840: 0 + 841.1: 0 + 843: 1 + 844: 1 + 847: 1 + 848: 1 _ZN9oceanbase5share15ObSysVarSslCertC2Ev:1 + 849: 0 + 850.1: 0 + 852: 1 + 853: 1 + 856: 1 + 857: 1 _ZN9oceanbase5share17ObSysVarSslCipherC2Ev:1 + 858: 0 + 859.1: 0 + 861: 1 + 862: 1 + 865: 1 + 866: 1 _ZN9oceanbase5share14ObSysVarSslCrlC2Ev:1 + 867: 0 + 868.1: 0 + 870: 1 + 871: 1 + 874: 1 + 875: 1 _ZN9oceanbase5share18ObSysVarSslCrlpathC2Ev:1 + 876: 0 + 877.1: 0 + 879: 1 + 880: 1 + 883: 1 + 884: 1 _ZN9oceanbase5share14ObSysVarSslKeyC2Ev:1 + 885: 0 + 886.1: 0 + 888: 1 + 889: 1 + 892: 1 + 893: 1 _ZN9oceanbase5share18ObSysVarTimeFormatC2Ev:1 + 894: 0 + 895.1: 0 + 897: 1 + 898: 1 + 901: 1 + 902: 1 + 903: 0 + 904.1: 0 + 906: 0 + 907: 0 + 910: 0 + 911: 0 + 912: 0 + 913.1: 0 + 915: 0 + 916: 0 + 919: 0 + 920: 0 + 921: 0 + 922.1: 0 + 924: 0 + 925: 0 + 928: 0 + 929: 0 + 930: 0 + 931.1: 0 + 933: 0 + 934: 0 + 937: 0 + 938: 0 + 939: 0 + 940.1: 0 + 942: 0 + 943: 0 + 946: 0 + 947: 0 + 948: 0 + 949.1: 0 + 951: 0 + 952: 0 + 955: 0 + 956: 0 + 957: 0 + 958.1: 0 + 960: 0 + 961: 0 + 964: 0 + 965: 0 + 966: 0 + 967.1: 0 + 969: 0 + 970: 0 + 973: 0 + 974: 0 + 975: 0 + 976.1: 0 + 978: 0 + 979: 0 + 982: 0 + 983: 0 + 984: 0 + 985.1: 0 + 987: 0 + 988: 0 + 991: 0 + 992: 0 + 993: 0 + 994.1: 0 + 996: 0 + 997: 0 + 1000: 0 + 1001: 0 + 1002: 0 + 1003.1: 0 + 1005: 0 + 1006: 0 + 1009: 0 + 1010: 0 + 1011: 0 + 1012.1: 0 + 1014: 0 + 1015: 0 + 1018: 0 + 1019: 0 + 1020: 0 + 1021.1: 0 + 1023: 0 + 1024: 0 + 1027: 0 + 1028: 0 + 1029: 0 + 1030.1: 0 + 1032: 0 + 1033: 0 + 1036: 0 + 1037: 0 + 1038: 0 + 1039.1: 0 + 1041: 0 + 1042: 0 + 1045: 0 + 1046: 0 + 1047: 0 + 1048.1: 0 + 1050: 0 + 1051: 0 + 1054: 0 + 1055: 1 + 1056: 0 + 1057.1: 0 + 1059: 1 + 1060: 1 + 1063: 1 + 1064: 2 + 1065: 0 + 1066.1: 0 + 1068: 2 + 1069: 2 + 1072: 2 + 1073: 2 + 1074: 0 + 1075.1: 0 + 1077: 2 + 1078: 2 + 1081: 2 + 1082: 3 + 1083: 0 + 1084.1: 0 + 1086: 3 + 1087: 3 + 1090: 3 + 1091: 3 + 1092: 0 + 1093.1: 0 + 1095: 3 + 1096: 3 + 1099: 3 + 1100: 3 + 1101: 0 + 1102.1: 0 + 1104: 3 + 1105: 3 + 1108: 3 + 1109: 3 + 1110: 0 + 1111.1: 0 + 1113: 3 + 1114: 3 + 1117: 3 + 1118: 3 + 1119: 0 + 1120.1: 0 + 1122: 3 + 1123: 3 + 1126: 3 + 1127: 3 + 1128: 0 + 1129.1: 0 + 1131: 3 + 1132: 3 + 1135: 3 + 1136: 3 + 1137: 0 + 1138.1: 0 + 1140: 3 + 1141: 3 + 1144: 3 + 1145: 4 + 1146: 0 + 1147.1: 0 + 1149: 4 + 1150: 4 + 1153: 4 + 1154: 2 + 1155: 0 + 1156.1: 0 + 1158: 2 + 1159: 2 + 1162: 2 + 1163: 1 + 1164: 0 + 1165.1: 0 + 1167: 1 + 1168: 1 + 1171: 1 + 1172: 1 + 1173: 0 + 1174.1: 0 + 1176: 1 + 1177: 1 + 1180: 1 + 1181: 2 + 1182: 0 + 1183.1: 0 + 1185: 2 + 1186: 2 + 1189: 2 + 1190: 2 + 1191: 0 + 1192.1: 0 + 1194: 2 + 1195: 2 + 1198: 2 + 1199: 3 + 1200: 0 + 1201.1: 0 + 1203: 3 + 1204: 3 + 1207: 3 + 1208: 3 + 1209: 0 + 1210.1: 0 + 1212: 3 + 1213: 3 + 1216: 3 + 1217: 3 + 1218: 0 + 1219.1: 0 + 1221: 3 + 1222: 3 + 1225: 3 + 1226: 3 _ZN9oceanbase5share33ObSysVarObEnableBlkNestedloopJoinC2Ev:3 + 1227: 0 + 1228.1: 0 + 1230: 3 + 1231: 3 + 1234: 3 + 1235: 3 _ZN9oceanbase5share26ObSysVarObBnlJoinCacheSizeC2Ev:3 + 1236: 0 + 1237.1: 0 + 1239: 3 + 1240: 3 + 1243: 3 + 1244: 3 _ZN9oceanbase5share28ObSysVarObProxyUserPrivilegeC2Ev:3 + 1245: 0 + 1246.1: 0 + 1248: 3 + 1249: 3 + 1252: 3 + 1253: 3 _ZN9oceanbase5share22ObSysVarObOrgClusterIdC2Ev:3 + 1254: 0 + 1255.1: 0 + 1257: 3 + 1258: 3 + 1261: 3 + 1262: 3 _ZN9oceanbase5share29ObSysVarObPlanCachePercentageC2Ev:3 + 1263: 0 + 1264.1: 0 + 1266: 3 + 1267: 3 + 1270: 3 + 1271: 3 _ZN9oceanbase5share38ObSysVarObPlanCacheEvictHighPercentageC2Ev:3 + 1272: 0 + 1273.1: 0 + 1275: 3 + 1276: 3 + 1279: 3 + 1280: 3 _ZN9oceanbase5share37ObSysVarObPlanCacheEvictLowPercentageC2Ev:3 + 1281: 0 + 1282.1: 0 + 1284: 3 + 1285: 3 + 1288: 3 + 1289: 3 _ZN9oceanbase5share18ObSysVarRecyclebinC2Ev:3 + 1290: 0 + 1291.1: 0 + 1293: 2 + 1294: 2 + 1297: 2 + 1298: 2 _ZN9oceanbase5share24ObSysVarObCapabilityFlagC2Ev:2 + 1299: 0 + 1300.1: 0 + 1302: 1 + 1303: 1 + 1306: 1 + 1307: 1 _ZN9oceanbase5share24ObSysVarIsResultAccurateC2Ev:1 + 1308: 0 + 1309.1: 0 + 1311: 1 + 1312: 1 + 1315: 1 + 1316: 1 _ZN9oceanbase5share26ObSysVarErrorOnOverlapTimeC2Ev:1 + 1317: 0 + 1318.1: 0 + 1320: 1 + 1321: 1 + 1324: 1 + 1325: 1 _ZN9oceanbase5share27ObSysVarObCompatibilityModeC2Ev:1 + 1326: 0 + 1327.1: 0 + 1329: 0 + 1330: 0 + 1333: 0 + 1334: 0 + 1335: 0 + 1336.1: 0 + 1338: 0 + 1339: 0 + 1342: 0 + 1343: 0 + 1344: 0 + 1345.1: 0 + 1347: 0 + 1348: 0 + 1351: 0 + 1352: 0 + 1353: 0 + 1354.1: 0 + 1356: 0 + 1357: 0 + 1360: 0 + 1361: 0 + 1362: 0 + 1363.1: 0 + 1365: 0 + 1366: 0 + 1369: 0 + 1370: 0 + 1371: 0 + 1372.1: 0 + 1374: 0 + 1375: 0 + 1378: 0 + 1379: 0 + 1380: 0 + 1381.1: 0 + 1383: 0 + 1384: 0 + 1387: 0 + 1388: 0 + 1389: 0 + 1390.1: 0 + 1392: 0 + 1393: 0 + 1396: 0 + 1397: 0 + 1398: 0 + 1399.1: 0 + 1401: 0 + 1402: 0 + 1405: 0 + 1406: 0 + 1407: 0 + 1408.1: 0 + 1410: 0 + 1411: 0 + 1414: 0 + 1415: 1 + 1416: 0 + 1417.1: 0 + 1419: 1 + 1420: 1 + 1423: 1 + 1424: 1 _ZN9oceanbase5share21ObSysVarSqlThrottleRtC2Ev:1 + 1425: 0 + 1426.1: 0 + 1428: 1 + 1429: 1 + 1432: 1 + 1433: 1 _ZN9oceanbase5share22ObSysVarSqlThrottleCpuC2Ev:1 + 1434: 0 + 1435.1: 0 + 1437: 1 + 1438: 1 + 1441: 1 + 1442: 1 _ZN9oceanbase5share21ObSysVarSqlThrottleIoC2Ev:1 + 1443: 0 + 1444.1: 0 + 1446: 1 + 1447: 1 + 1450: 1 + 1451: 2 _ZN9oceanbase5share26ObSysVarSqlThrottleNetworkC2Ev:1 + 1452: 0 + 1453.1: 0 + 1455: 2 + 1456: 2 + 1459: 2 + 1460: 2 + 1461: 0 + 1462.1: 0 + 1464: 2 + 1465: 2 + 1468: 2 + 1469: 2 + 1470: 0 + 1471.1: 0 + 1473: 2 + 1474: 2 + 1477: 2 + 1478: 2 + 1479: 0 + 1480.1: 0 + 1482: 2 + 1483: 2 + 1486: 2 + 1487: 2 + 1488: 0 + 1489.1: 0 + 1491: 2 + 1492: 2 + 1495: 2 + 1496: 2 + 1497: 0 + 1498.1: 0 + 1500: 2 + 1501: 2 + 1504: 2 + 1505: 2 + 1506: 0 + 1507.1: 0 + 1509: 2 + 1510: 2 + 1513: 2 + 1514: 2 + 1515: 0 + 1516.1: 0 + 1518: 2 + 1519: 2 + 1522: 2 + 1523: 1 + 1524: 0 + 1525.1: 0 + 1527: 1 + 1528: 1 + 1531: 1 + 1532: 1 + 1533: 0 + 1534.1: 0 + 1536: 1 + 1537: 1 + 1540: 1 + 1541: 0 + 1542: 0 + 1543.1: 0 + 1545: 0 + 1546: 0 + 1549: 0 + 1550: 1 + 1551: 0 + 1552.1: 0 + 1554: 1 + 1555: 1 + 1558: 1 + 1559: 1 + 1560: 0 + 1561.1: 0 + 1563: 1 + 1564: 1 + 1567: 1 + 1568: 1 + 1569: 0 + 1570.1: 0 + 1572: 1 + 1573: 1 + 1576: 1 + 1577: 1 + 1578: 0 + 1579.1: 0 + 1581: 1 + 1582: 1 + 1585: 1 + 1586: 1 + 1587: 0 + 1588.1: 0 + 1590: 1 + 1591: 1 + 1594: 1 + 1595: 2 + 1596: 0 + 1597.1: 0 + 1599: 2 + 1600: 2 + 1603: 2 + 1604: 2 + 1605: 0 + 1606.1: 0 + 1608: 2 + 1609: 2 + 1612: 2 + 1613: 2 + 1614: 0 + 1615.1: 0 + 1617: 2 + 1618: 2 + 1621: 2 + 1622: 2 + 1623: 0 + 1624.1: 0 + 1626: 2 + 1627: 2 + 1630: 2 + 1631: 2 + 1632: 0 + 1633.1: 0 + 1635: 2 + 1636: 2 + 1639: 2 + 1640: 2 + 1641: 0 + 1642.1: 0 + 1644: 2 + 1645: 2 + 1648: 2 + 1649: 2 + 1650: 0 + 1651.1: 0 + 1653: 2 + 1654: 2 + 1657: 2 + 1658: 2 + 1659: 0 + 1660.1: 0 + 1662: 2 + 1663: 2 + 1666: 2 + 1667: 2 + 1668: 0 + 1669.1: 0 + 1671: 2 + 1672: 2 + 1675: 2 + 1676: 2 + 1677: 0 + 1678.1: 0 + 1680: 2 + 1681: 2 + 1684: 2 + 1685: 1 + 1686: 0 + 1687.1: 0 + 1689: 1 + 1690: 1 + 1693: 1 + 1694: 1 _ZN9oceanbase5share28ObSysVarNlsNcharCharactersetC2Ev:1 + 1695: 0 + 1696.1: 0 + 1698: 1 + 1699: 1 + 1702: 1 + 1703: 1 _ZN9oceanbase5share23ObSysVarNlsDateLanguageC2Ev:1 + 1704: 0 + 1705.1: 0 + 1707: 1 + 1708: 1 + 1711: 1 + 1712: 1 _ZN9oceanbase5share26ObSysVarNlsLengthSemanticsC2Ev:1 + 1713: 0 + 1714.1: 0 + 1716: 1 + 1717: 1 + 1720: 1 + 1721: 1 _ZN9oceanbase5share24ObSysVarNlsNcharConvExcpC2Ev:1 + 1722: 0 + 1723.1: 0 + 1725: 1 + 1726: 1 + 1729: 1 + 1730: 1 + 1731: 0 + 1732.1: 0 + 1734: 0 + 1735: 0 + 1738: 0 + 1739: 0 + 1740: 0 + 1741.1: 0 + 1743: 0 + 1744: 0 + 1747: 0 + 1748: 0 + 1749: 0 + 1750.1: 0 + 1752: 0 + 1753: 0 + 1756: 0 + 1757: 0 + 1758: 0 + 1759.1: 0 + 1761: 0 + 1762: 0 + 1765: 0 + 1766: 0 + 1767: 0 + 1768.1: 0 + 1770: 0 + 1771: 0 + 1774: 0 + 1775: 0 + 1776: 0 + 1777.1: 0 + 1779: 0 + 1780: 0 + 1783: 0 + 1784: 0 + 1785: 0 + 1786.1: 0 + 1788: 0 + 1789: 0 + 1792: 0 + 1793: 0 + 1794: 0 + 1795.1: 0 + 1797: 0 + 1798: 0 + 1801: 0 + 1802: 0 + 1803: 0 + 1804.1: 0 + 1806: 0 + 1807: 0 + 1810: 0 + 1811: 0 + 1812: 0 + 1813.1: 0 + 1815: 0 + 1816: 0 + 1819: 0 + 1820: 0 + 1821: 0 + 1822.1: 0 + 1824: 0 + 1825: 0 + 1828: 0 + 1829: 0 + 1830: 0 + 1831.1: 0 + 1833: 0 + 1834: 0 + 1837: 0 + 1838: 0 + 1839: 0 + 1840.1: 0 + 1842: 0 + 1843: 0 + 1846: 0 + 1847: 0 + 1848: 0 + 1849.1: 0 + 1851: 0 + 1852: 0 + 1855: 0 + 1856: 0 + 1857: 0 + 1858.1: 0 + 1860: 0 + 1861: 0 + 1864: 0 + 1865: 0 + 1866: 0 + 1867.1: 0 + 1869: 0 + 1870: 0 + 1873: 0 + 1874: 0 + 1875: 0 + 1876.1: 0 + 1878: 0 + 1879: 0 + 1882: 0 + 1883: 0 + 1884: 0 + 1885.1: 0 + 1887: 0 + 1888: 0 + 1891: 0 + 1892: 1 + 1893: 0 + 1894.1: 0 + 1896: 1 + 1897: 1 + 1900: 1 + 1901: 1 + 1902: 0 + 1903.1: 0 + 1905: 1 + 1906: 1 + 1909: 1 + 1910: 1 + 1911: 0 + 1912.1: 0 + 1914: 1 + 1915: 1 + 1918: 1 + 1919: 1 + 1920: 0 + 1921.1: 0 + 1923: 1 + 1924: 1 + 1927: 1 + 1928: 1 + 1929: 0 + 1930.1: 0 + 1932: 1 + 1933: 1 + 1936: 1 + 1937: 1 + 1938: 0 + 1939.1: 0 + 1941: 1 + 1942: 1 + 1945: 1 + 1946: 1 + 1947: 0 + 1948.1: 0 + 1950: 1 + 1951: 1 + 1954: 1 + 1955: 1 + 1956: 0 + 1957.1: 0 + 1959: 1 + 1960: 1 + 1963: 1 + 1964: 1 + 1965: 0 + 1966.1: 0 + 1968: 1 + 1969: 1 + 1972: 1 + 1973: 1 + 1974: 0 + 1975.1: 0 + 1977: 1 + 1978: 1 + 1981: 1 + 1982: 1 + 1983: 0 + 1984.1: 0 + 1986: 1 + 1987: 1 + 1990: 1 + 1991: 0 + 1992: 0 + 1993.1: 0 + 1995: 0 + 1996: 0 + 1999: 0 + 2000: 1 + 2001: 0 + 2002.1: 0 + 2004: 1 + 2005: 1 + 2008: 1 + 2009: 1 + 2010: 0 + 2011.1: 0 + 2013: 1 + 2014: 1 + 2017: 1 + 2018: 1 + 2019: 0 + 2020.1: 0 + 2022: 1 + 2023: 1 + 2026: 1 + 2027: 1 + 2028: 0 + 2029.1: 0 + 2031: 1 + 2032: 1 + 2035: 1 + 2036: 1 + 2037: 0 + 2038.1: 0 + 2040: 1 + 2041: 1 + 2044: 1 + 2045: 1 + 2046: 0 + 2047.1: 0 + 2049: 1 + 2050: 1 + 2053: 1 + 2054: 1 + 2055: 0 + 2056.1: 0 + 2058: 1 + 2059: 1 + 2062: 1 + 2063: 2 + 2064: 0 + 2065.1: 0 + 2067: 2 + 2068: 2 + 2071: 2 + 2072: 2 + 2073: 0 + 2074.1: 0 + 2076: 2 + 2077: 2 + 2080: 2 + 2081: 2 + 2082: 0 + 2083.1: 0 + 2085: 2 + 2086: 2 + 2089: 2 + 2090: 2 + 2091: 0 + 2092.1: 0 + 2094: 2 + 2095: 2 + 2098: 2 + 2099: 1 + 2100: 0 + 2101.1: 0 + 2103: 1 + 2104: 1 + 2107: 1 + 2108: 1 + 2109: 0 + 2110.1: 0 + 2112: 1 + 2113: 1 + 2116: 1 + 2117: 1 + 2118: 0 + 2119.1: 0 + 2121: 1 + 2122: 1 + 2125: 1 + 2126: 1 + 2127: 0 + 2128.1: 0 + 2130: 1 + 2131: 1 + 2134: 1 + 2135: 1 + 2136: 0 + 2137.1: 0 + 2139: 1 + 2140: 1 + 2143: 1 + 2144: 1 + 2145: 0 + 2146.1: 0 + 2148: 1 + 2149: 1 + 2152: 1 + 2153: 1 + 2154: 0 + 2155.1: 0 + 2157: 1 + 2158: 1 + 2161: 1 + 2162: 1 + 2163: 0 + 2164.1: 0 + 2166: 1 + 2167: 1 + 2170: 1 + 2171: 0 + 2172: 0 + 2173.1: 0 + 2175: 0 + 2176: 0 + 2179: 0 + 2180: 0 + 2181: 0 + 2182.1: 0 + 2184: 0 + 2185: 0 + 2188: 0 + 2189: 0 + 2190: 0 + 2191.1: 0 + 2193: 0 + 2194: 0 + 2197: 0 + 2198: 0 + 2199: 0 + 2200.1: 0 + 2202: 0 + 2203: 0 + 2206: 0 + 2207: 1 + 2208: 0 + 2209.1: 0 + 2210: 0 + 2211: 1 + 2217: 1 + 236: _ZN9oceanbase5share30ObSysVarAutoIncrementIncrementC2Ev:90 + 0: 3 _ZN9oceanbase5share11ObIntSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:3 + 240: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:21 + 0: 3 + 245: _ZN9oceanbase5share27ObSysVarAutoIncrementOffsetC2Ev:90 + 0: 3 _ZN9oceanbase5share11ObIntSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:3 + 249: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:21 + 0: 3 + 254: _ZN9oceanbase5share18ObSysVarAutocommitC2Ev:76 + 0: 3 _ZN9oceanbase5share12ObBoolSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:3 + 258: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:14 + 0: 2 + 263: _ZN9oceanbase5share26ObSysVarCharacterSetClientC2Ev:82 + 0: 2 _ZN9oceanbase5share15ObCharsetSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:2 + 267: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 272: _ZN9oceanbase5share30ObSysVarCharacterSetConnectionC2Ev:48 + 0: 1 _ZN9oceanbase5share15ObCharsetSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:1 + 276: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 281: _ZN9oceanbase5share28ObSysVarCharacterSetDatabaseC2Ev:48 + 0: 1 _ZN9oceanbase5share15ObCharsetSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:1 + 285: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 290: _ZN9oceanbase5share27ObSysVarCharacterSetResultsC2Ev:34 + 0: 1 _ZN9oceanbase5share15ObCharsetSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:1 + 294: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 299: _ZN9oceanbase5share26ObSysVarCharacterSetServerC2Ev:0 + 0: 0 + 303: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 308: _ZN9oceanbase5share26ObSysVarCharacterSetSystemC2Ev:0 + 0: 0 + 312: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 317: _ZN9oceanbase5share27ObSysVarCollationConnectionC2Ev:14 + 0: 1 _ZN9oceanbase5share15ObCharsetSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:1 + 321: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 326: _ZN9oceanbase5share25ObSysVarCollationDatabaseC2Ev:48 + 0: 1 _ZN9oceanbase5share15ObCharsetSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:1 + 330: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 335: _ZN9oceanbase5share23ObSysVarCollationServerC2Ev:48 + 0: 1 _ZN9oceanbase5share15ObCharsetSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:1 + 339: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 344: _ZN9oceanbase5share26ObSysVarInteractiveTimeoutC2Ev:30 + 0: 1 _ZN9oceanbase5share11ObIntSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:1 + 348: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 353: _ZN9oceanbase5share20ObSysVarLastInsertIdC2Ev:35 + 0: 1 _ZN9oceanbase5share25ObSessionSpecialIntSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:1 + 357: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 362: _ZN9oceanbase5share24ObSysVarMaxAllowedPacketC2Ev:35 + 0: 1 _ZN9oceanbase5share11ObIntSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:1 + 366: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 371: _ZN9oceanbase5share15ObSysVarSqlModeC2Ev:39 + 0: 1 _ZN9oceanbase5share12ObSqlModeVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:1 + 375: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 380: _ZN9oceanbase5share16ObSysVarTimeZoneC2Ev:0 + 0: 0 + 384: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 389: _ZN9oceanbase5share19ObSysVarTxIsolationC2Ev:0 + 0: 0 + 393: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 398: _ZN9oceanbase5share22ObSysVarVersionCommentC2Ev:0 + 0: 0 + 402: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 407: _ZN9oceanbase5share19ObSysVarWaitTimeoutC2Ev:0 + 0: 0 + 411: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 416: _ZN9oceanbase5share22ObSysVarBinlogRowImageC2Ev:14 + 0: 1 + 420: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 425: _ZN9oceanbase5share30ObSysVarCharacterSetFilesystemC2Ev:48 + 0: 1 _ZN9oceanbase5share15ObCharsetSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:1 + 429: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 434: _ZN9oceanbase5share22ObSysVarConnectTimeoutC2Ev:30 + 0: 1 _ZN9oceanbase5share11ObIntSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:1 + 438: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 443: _ZN9oceanbase5share15ObSysVarDatadirC2Ev:44 + 0: 2 _ZN9oceanbase5share15ObVarcharSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:1 + 447: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:14 + 0: 2 + 452: _ZN9oceanbase5share17ObSysVarDebugSyncC2Ev:60 + 0: 2 _ZN9oceanbase5share15ObVarcharSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:2 + 456: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:14 + 0: 2 + 461: _ZN9oceanbase5share29ObSysVarDivPrecisionIncrementC2Ev:60 + 0: 2 _ZN9oceanbase5share11ObIntSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:2 + 465: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:14 + 0: 2 + 470: _ZN9oceanbase5share36ObSysVarExplicitDefaultsForTimestampC2Ev:74 + 0: 3 _ZN9oceanbase5share12ObBoolSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:2 + 474: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:21 + 0: 3 + 479: _ZN9oceanbase5share25ObSysVarGroupConcatMaxLenC2Ev:90 + 0: 3 _ZN9oceanbase5share11ObIntSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:3 + 483: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:21 + 0: 3 + 488: _ZN9oceanbase5share16ObSysVarIdentityC2Ev:105 + 0: 3 _ZN9oceanbase5share25ObSessionSpecialIntSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:3 + 492: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:21 + 0: 3 + 497: _ZN9oceanbase5share27ObSysVarLowerCaseTableNamesC2Ev:104 + 0: 4 _ZN9oceanbase5share11ObIntSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:3 + 501: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:28 + 0: 4 + 506: _ZN9oceanbase5share22ObSysVarNetReadTimeoutC2Ev:120 + 0: 4 _ZN9oceanbase5share11ObIntSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:4 + 510: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:28 + 0: 4 + 515: _ZN9oceanbase5share23ObSysVarNetWriteTimeoutC2Ev:120 + 0: 4 _ZN9oceanbase5share11ObIntSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:4 + 519: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:28 + 0: 4 + 524: _ZN9oceanbase5share16ObSysVarReadOnlyC2Ev:120 + 0: 4 _ZN9oceanbase5share12ObBoolSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:4 + 528: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:28 + 0: 4 + 533: _ZN9oceanbase5share21ObSysVarSqlAutoIsNullC2Ev:106 + 0: 4 _ZN9oceanbase5share12ObBoolSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:4 + 537: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:21 + 0: 3 + 542: _ZN9oceanbase5share22ObSysVarSqlSelectLimitC2Ev:90 + 0: 3 _ZN9oceanbase5share11ObIntSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:3 + 546: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:21 + 0: 3 + 551: _ZN9oceanbase5share17ObSysVarTimestampC2Ev:105 + 0: 3 _ZN9oceanbase5share15ObNumericSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:3 + 555: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:21 + 0: 3 + 560: _ZN9oceanbase5share18ObSysVarTxReadOnlyC2Ev:145 + 0: 3 _ZN9oceanbase5share26ObSessionSpecialBoolSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiS4_S7_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSN_SQ_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:3 + 564: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:14 + 0: 2 + 569: _ZN9oceanbase5share15ObSysVarVersionC2Ev:60 + 0: 2 _ZN9oceanbase5share15ObVarcharSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:2 + 573: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:14 + 0: 2 + 578: _ZN9oceanbase5share19ObSysVarSqlWarningsC2Ev:46 + 0: 2 _ZN9oceanbase5share12ObBoolSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:2 + 582: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 587: _ZN9oceanbase5share26ObSysVarMaxUserConnectionsC2Ev:35 + 0: 1 _ZN9oceanbase5share11ObIntSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:1 + 591: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 596: _ZN9oceanbase5share19ObSysVarInitConnectC2Ev:30 + 0: 1 _ZN9oceanbase5share15ObVarcharSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:1 + 600: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 605: _ZN9oceanbase5share15ObSysVarLicenseC2Ev:16 + 0: 1 _ZN9oceanbase5share15ObVarcharSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:1 + 609: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 614: _ZN9oceanbase5share23ObSysVarNetBufferLengthC2Ev:0 + 0: 0 + 618: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 623: _ZN9oceanbase5share22ObSysVarSystemTimeZoneC2Ev:0 + 0: 0 + 627: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 632: _ZN9oceanbase5share22ObSysVarQueryCacheSizeC2Ev:14 + 0: 1 _ZN9oceanbase5share11ObIntSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:1 + 636: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 641: _ZN9oceanbase5share22ObSysVarQueryCacheTypeC2Ev:43 + 0: 1 _ZN9oceanbase5share12ObEnumSysVarC2EPPKcPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSF_EPFiS7_SA_SD_SH_EPFiRNSE_12ObIAllocatorERKNS5_18ObBasicSessionInfoESD_SI_EPFiSO_SR_SD_RNSE_8ObStringEEPFNSE_9ObObjTypeEvE:1 + 645: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 650: _ZN9oceanbase5share26ObSysVarSqlQuoteShowCreateC2Ev:30 + 0: 1 _ZN9oceanbase5share12ObBoolSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:1 + 654: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 659: _ZN9oceanbase5share27ObSysVarMaxSpRecursionDepthC2Ev:30 + 0: 1 _ZN9oceanbase5share11ObIntSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:1 + 663: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 668: _ZN9oceanbase5share22ObSysVarSqlSafeUpdatesC2Ev:30 + 0: 1 _ZN9oceanbase5share12ObBoolSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:1 + 672: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 677: _ZN9oceanbase5share24ObSysVarConcurrentInsertC2Ev:30 + 0: 1 _ZN9oceanbase5share15ObVarcharSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:1 + 681: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 686: _ZN9oceanbase5share35ObSysVarDefaultAuthenticationPluginC2Ev:30 + 0: 1 _ZN9oceanbase5share15ObVarcharSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:1 + 690: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 695: _ZN9oceanbase5share30ObSysVarDisabledStorageEnginesC2Ev:30 + 0: 1 _ZN9oceanbase5share15ObVarcharSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:1 + 699: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 704: _ZN9oceanbase5share18ObSysVarErrorCountC2Ev:30 + 0: 1 _ZN9oceanbase5share11ObIntSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:1 + 708: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 717: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 726: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 735: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 744: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 753: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 762: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 771: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 780: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 789: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 798: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 807: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 816: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 825: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 834: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 843: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 852: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 861: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 870: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 879: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 888: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 897: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 906: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 915: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 924: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 929: _ZN9oceanbase5share20ObSysVarUniqueChecksC2Ev:0 + 0: 0 + 933: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 938: _ZN9oceanbase5share29ObSysVarVersionCompileMachineC2Ev:0 + 0: 0 + 942: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 947: _ZN9oceanbase5share24ObSysVarVersionCompileOsC2Ev:0 + 0: 0 + 951: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 956: _ZN9oceanbase5share20ObSysVarWarningCountC2Ev:0 + 0: 0 + 960: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 965: _ZN9oceanbase5share26ObSysVarSessionTrackSchemaC2Ev:0 + 0: 0 + 969: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 974: _ZN9oceanbase5share35ObSysVarSessionTrackSystemVariablesC2Ev:0 + 0: 0 + 978: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 983: _ZN9oceanbase5share31ObSysVarSessionTrackStateChangeC2Ev:0 + 0: 0 + 987: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 992: _ZN9oceanbase5share22ObSysVarHaveQueryCacheC2Ev:0 + 0: 0 + 996: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 1001: _ZN9oceanbase5share23ObSysVarQueryCacheLimitC2Ev:0 + 0: 0 + 1005: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 1010: _ZN9oceanbase5share28ObSysVarQueryCacheMinResUnitC2Ev:0 + 0: 0 + 1014: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 1019: _ZN9oceanbase5share33ObSysVarQueryCacheWlockInvalidateC2Ev:0 + 0: 0 + 1023: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 1028: _ZN9oceanbase5share20ObSysVarBinlogFormatC2Ev:0 + 0: 0 + 1032: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 1037: _ZN9oceanbase5share22ObSysVarBinlogChecksumC2Ev:0 + 0: 0 + 1041: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 1046: _ZN9oceanbase5share32ObSysVarBinlogRowsQueryLogEventsC2Ev:0 + 0: 0 + 1050: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 1055: _ZN9oceanbase5share14ObSysVarLogBinC2Ev:14 + 0: 1 + 1059: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 1064: _ZN9oceanbase5share18ObSysVarServerUuidC2Ev:44 + 0: 2 _ZN9oceanbase5share15ObVarcharSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:1 + 1068: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:14 + 0: 2 + 1073: _ZN9oceanbase5share28ObSysVarDefaultStorageEngineC2Ev:60 + 0: 2 _ZN9oceanbase5share15ObVarcharSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:2 + 1077: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:14 + 0: 2 + 1082: _ZN9oceanbase5share30ObSysVarObIntermResultMemLimitC2Ev:74 + 0: 3 _ZN9oceanbase5share11ObIntSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:2 + 1086: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:21 + 0: 3 + 1091: _ZN9oceanbase5share27ObSysVarObProxyPartitionHitC2Ev:90 + 0: 3 _ZN9oceanbase5share12ObBoolSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:3 + 1095: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:21 + 0: 3 + 1100: _ZN9oceanbase5share18ObSysVarObLogLevelC2Ev:90 + 0: 3 _ZN9oceanbase5share15ObVarcharSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:3 + 1104: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:21 + 0: 3 + 1109: _ZN9oceanbase5share22ObSysVarObQueryTimeoutC2Ev:105 + 0: 3 _ZN9oceanbase5share11ObIntSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:3 + 1113: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:21 + 0: 3 + 1118: _ZN9oceanbase5share25ObSysVarObReadConsistencyC2Ev:129 + 0: 3 _ZN9oceanbase5share12ObEnumSysVarC2EPPKcPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSF_EPFiS7_SA_SD_SH_EPFiRNSE_12ObIAllocatorERKNS5_18ObBasicSessionInfoESD_SI_EPFiSO_SR_SD_RNSE_8ObStringEEPFNSE_9ObObjTypeEvE:3 + 1122: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:21 + 0: 3 + 1127: _ZN9oceanbase5share30ObSysVarObEnableTransformationC2Ev:90 + 0: 3 _ZN9oceanbase5share12ObBoolSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:3 + 1131: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:21 + 0: 3 + 1136: _ZN9oceanbase5share20ObSysVarObTrxTimeoutC2Ev:105 + 0: 3 _ZN9oceanbase5share11ObIntSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:3 + 1140: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:21 + 0: 3 + 1145: _ZN9oceanbase5share25ObSysVarObEnablePlanCacheC2Ev:104 + 0: 4 _ZN9oceanbase5share12ObBoolSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:3 + 1149: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:28 + 0: 4 + 1154: _ZN9oceanbase5share33ObSysVarObEnableIndexDirectSelectC2Ev:92 + 0: 4 _ZN9oceanbase5share12ObBoolSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:4 + 1158: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:14 + 0: 2 + 1163: _ZN9oceanbase5share29ObSysVarObProxySetTrxExecutedC2Ev:46 + 0: 2 _ZN9oceanbase5share12ObBoolSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:2 + 1167: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 1172: _ZN9oceanbase5share35ObSysVarObEnableAggregationPushdownC2Ev:30 + 0: 1 _ZN9oceanbase5share12ObBoolSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:1 + 1176: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 1181: _ZN9oceanbase5share27ObSysVarObLastSchemaVersionC2Ev:44 + 0: 2 _ZN9oceanbase5share11ObIntSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:1 + 1185: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:14 + 0: 2 + 1190: _ZN9oceanbase5share25ObSysVarObGlobalDebugSyncC2Ev:60 + 0: 2 _ZN9oceanbase5share15ObVarcharSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:2 + 1194: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:14 + 0: 2 + 1199: _ZN9oceanbase5share37ObSysVarObProxyGlobalVariablesVersionC2Ev:74 + 0: 3 _ZN9oceanbase5share11ObIntSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:3 + 1203: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:21 + 0: 3 + 1208: _ZN9oceanbase5share24ObSysVarObEnableTraceLogC2Ev:90 + 0: 3 _ZN9oceanbase5share12ObBoolSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:3 + 1212: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:21 + 0: 3 + 1217: _ZN9oceanbase5share27ObSysVarObEnableHashGroupByC2Ev:90 + 0: 3 _ZN9oceanbase5share12ObBoolSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:3 + 1221: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:21 + 0: 3 + 1230: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:21 + 0: 3 + 1239: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:21 + 0: 3 + 1248: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:21 + 0: 3 + 1257: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:21 + 0: 3 + 1266: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:21 + 0: 3 + 1275: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:21 + 0: 3 + 1284: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:21 + 0: 3 + 1293: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:14 + 0: 2 + 1302: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 1311: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 1320: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 1329: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 1338: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 1347: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 1356: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 1365: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 1374: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 1383: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 1392: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 1401: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 1410: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 1419: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 1428: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 1437: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 1446: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 1455: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:14 + 0: 2 + 1460: _ZN9oceanbase5share31ObSysVarSqlThrottleLogicalReadsC2Ev:60 + 0: 2 _ZN9oceanbase5share11ObIntSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:2 + 1464: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:14 + 0: 2 + 1469: _ZN9oceanbase5share30ObSysVarAutoIncrementCacheSizeC2Ev:60 + 0: 2 _ZN9oceanbase5share11ObIntSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:2 + 1473: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:14 + 0: 2 + 1478: _ZN9oceanbase5share19ObSysVarObEnableJitC2Ev:86 + 0: 2 _ZN9oceanbase5share12ObEnumSysVarC2EPPKcPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSF_EPFiS7_SA_SD_SH_EPFiRNSE_12ObIAllocatorERKNS5_18ObBasicSessionInfoESD_SI_EPFiSO_SR_SD_RNSE_8ObStringEEPFNSE_9ObObjTypeEvE:2 + 1482: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:14 + 0: 2 + 1487: _ZN9oceanbase5share38ObSysVarObTempTablespaceSizePercentageC2Ev:60 + 0: 2 _ZN9oceanbase5share11ObIntSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:2 + 1491: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:14 + 0: 2 + 1496: _ZN9oceanbase5share38ObSysVarOptimizerAdaptiveCursorSharingC2Ev:60 + 0: 2 _ZN9oceanbase5share12ObBoolSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:2 + 1500: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:14 + 0: 2 + 1505: _ZN9oceanbase5share17ObSysVarPluginDirC2Ev:60 + 0: 2 _ZN9oceanbase5share15ObVarcharSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:2 + 1509: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:14 + 0: 2 + 1514: _ZN9oceanbase5share30ObSysVarObUseParallelExecutionC2Ev:60 + 0: 2 _ZN9oceanbase5share12ObBoolSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:2 + 1518: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:14 + 0: 2 + 1523: _ZN9oceanbase5share28ObSysVarObSqlAuditPercentageC2Ev:46 + 0: 2 _ZN9oceanbase5share11ObIntSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:2 + 1527: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 1532: _ZN9oceanbase5share24ObSysVarObEnableSqlAuditC2Ev:30 + 0: 1 _ZN9oceanbase5share12ObBoolSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:1 + 1536: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 1541: _ZN9oceanbase5share36ObSysVarOptimizerUseSqlPlanBaselinesC2Ev:16 + 0: 1 _ZN9oceanbase5share12ObBoolSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:1 + 1545: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 1550: _ZN9oceanbase5share40ObSysVarOptimizerCaptureSqlPlanBaselinesC2Ev:14 + 0: 1 + 1554: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 1559: _ZN9oceanbase5share26ObSysVarParallelMaxServersC2Ev:30 + 0: 1 _ZN9oceanbase5share11ObIntSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:1 + 1563: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 1568: _ZN9oceanbase5share29ObSysVarParallelServersTargetC2Ev:30 + 0: 1 _ZN9oceanbase5share11ObIntSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:1 + 1572: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 1577: _ZN9oceanbase5share26ObSysVarObEarlyLockReleaseC2Ev:30 + 0: 1 _ZN9oceanbase5share12ObBoolSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:1 + 1581: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 1586: _ZN9oceanbase5share24ObSysVarObTrxIdleTimeoutC2Ev:30 + 0: 1 _ZN9oceanbase5share11ObIntSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:1 + 1590: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 1595: _ZN9oceanbase5share27ObSysVarBlockEncryptionModeC2Ev:57 + 0: 2 _ZN9oceanbase5share12ObEnumSysVarC2EPPKcPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSF_EPFiS7_SA_SD_SH_EPFiRNSE_12ObIAllocatorERKNS5_18ObBasicSessionInfoESD_SI_EPFiSO_SR_SD_RNSE_8ObStringEEPFNSE_9ObObjTypeEvE:1 + 1599: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:14 + 0: 2 + 1604: _ZN9oceanbase5share21ObSysVarNlsDateFormatC2Ev:60 + 0: 2 _ZN9oceanbase5share15ObVarcharSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:2 + 1608: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:14 + 0: 2 + 1613: _ZN9oceanbase5share26ObSysVarNlsTimestampFormatC2Ev:60 + 0: 2 _ZN9oceanbase5share15ObVarcharSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:2 + 1617: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:14 + 0: 2 + 1622: _ZN9oceanbase5share28ObSysVarNlsTimestampTzFormatC2Ev:60 + 0: 2 _ZN9oceanbase5share15ObVarcharSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:2 + 1626: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:14 + 0: 2 + 1631: _ZN9oceanbase5share38ObSysVarObReservedMetaMemoryPercentageC2Ev:60 + 0: 2 _ZN9oceanbase5share11ObIntSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:2 + 1635: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:14 + 0: 2 + 1640: _ZN9oceanbase5share26ObSysVarObCheckSysVariableC2Ev:60 + 0: 2 _ZN9oceanbase5share12ObBoolSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:2 + 1644: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:14 + 0: 2 + 1649: _ZN9oceanbase5share19ObSysVarNlsLanguageC2Ev:60 + 0: 2 _ZN9oceanbase5share15ObVarcharSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:2 + 1653: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:14 + 0: 2 + 1658: _ZN9oceanbase5share20ObSysVarNlsTerritoryC2Ev:60 + 0: 2 _ZN9oceanbase5share15ObVarcharSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:2 + 1662: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:14 + 0: 2 + 1667: _ZN9oceanbase5share15ObSysVarNlsSortC2Ev:60 + 0: 2 _ZN9oceanbase5share15ObVarcharSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:2 + 1671: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:14 + 0: 2 + 1676: _ZN9oceanbase5share15ObSysVarNlsCompC2Ev:60 + 0: 2 _ZN9oceanbase5share15ObVarcharSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:2 + 1680: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:14 + 0: 2 + 1685: _ZN9oceanbase5share23ObSysVarNlsCharactersetC2Ev:46 + 0: 2 _ZN9oceanbase5share15ObVarcharSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:2 + 1689: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 1698: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 1707: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 1716: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 1725: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 1734: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 1743: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 1752: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 1761: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 1770: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 1779: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 1788: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 1797: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 1806: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 1815: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 1824: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 1833: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 1838: _ZN9oceanbase5share30ObSysVarValidatePasswordPolicyC2Ev:0 + 0: 0 + 1842: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 1847: _ZN9oceanbase5share40ObSysVarValidatePasswordSpecialCharCountC2Ev:0 + 0: 0 + 1851: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 1856: _ZN9oceanbase5share31ObSysVarDefaultPasswordLifetimeC2Ev:0 + 0: 0 + 1860: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 1865: _ZN9oceanbase5share32ObSysVarObOlsPolicySessionLabelsC2Ev:0 + 0: 0 + 1869: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 1874: _ZN9oceanbase5share19ObSysVarObTraceInfoC2Ev:0 + 0: 0 + 1878: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 1883: _ZN9oceanbase5share32ObSysVarPxPartitionScanThresholdC2Ev:0 + 0: 0 + 1887: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 1892: _ZN9oceanbase5share29ObSysVarObPxBcastOptimizationC2Ev:14 + 0: 1 _ZN9oceanbase5share12ObEnumSysVarC2EPPKcPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSF_EPFiS7_SA_SD_SH_EPFiRNSE_12ObIAllocatorERKNS5_18ObBasicSessionInfoESD_SI_EPFiSO_SR_SD_RNSE_8ObStringEEPFNSE_9ObObjTypeEvE:1 + 1896: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 1901: _ZN9oceanbase5share33ObSysVarObPxSlaveMappingThresholdC2Ev:30 + 0: 1 _ZN9oceanbase5share11ObIntSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:1 + 1905: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 1910: _ZN9oceanbase5share25ObSysVarEnableParallelDmlC2Ev:30 + 0: 1 _ZN9oceanbase5share12ObBoolSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:1 + 1914: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 1919: _ZN9oceanbase5share29ObSysVarPxMinGranulesPerSlaveC2Ev:30 + 0: 1 _ZN9oceanbase5share11ObIntSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:1 + 1923: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 1928: _ZN9oceanbase5share22ObSysVarSecureFilePrivC2Ev:30 + 0: 1 _ZN9oceanbase5share15ObVarcharSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:1 + 1932: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 1937: _ZN9oceanbase5share21ObSysVarPlsqlWarningsC2Ev:35 + 0: 1 _ZN9oceanbase5share15ObVarcharSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:1 + 1941: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 1946: _ZN9oceanbase5share27ObSysVarEnableParallelQueryC2Ev:30 + 0: 1 _ZN9oceanbase5share12ObBoolSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:1 + 1950: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 1955: _ZN9oceanbase5share29ObSysVarForceParallelQueryDopC2Ev:30 + 0: 1 _ZN9oceanbase5share11ObIntSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:1 + 1959: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 1964: _ZN9oceanbase5share27ObSysVarForceParallelDmlDopC2Ev:30 + 0: 1 _ZN9oceanbase5share11ObIntSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:1 + 1968: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 1973: _ZN9oceanbase5share24ObSysVarObPlBlockTimeoutC2Ev:35 + 0: 1 _ZN9oceanbase5share11ObIntSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:1 + 1977: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 1982: _ZN9oceanbase5share27ObSysVarTransactionReadOnlyC2Ev:53 + 0: 1 _ZN9oceanbase5share26ObSessionSpecialBoolSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiS4_S7_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSN_SQ_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:1 + 1986: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 1991: _ZN9oceanbase5share27ObSysVarResourceManagerPlanC2Ev:21 + 0: 1 _ZN9oceanbase5share15ObVarcharSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:1 + 1995: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 2000: _ZN9oceanbase5share25ObSysVarPerformanceSchemaC2Ev:14 + 0: 1 + 2004: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 2009: _ZN9oceanbase5share19ObSysVarNlsCurrencyC2Ev:35 + 0: 1 _ZN9oceanbase5share15ObVarcharSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:1 + 2013: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 2018: _ZN9oceanbase5share22ObSysVarNlsIsoCurrencyC2Ev:35 + 0: 1 _ZN9oceanbase5share15ObVarcharSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:1 + 2022: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 2027: _ZN9oceanbase5share23ObSysVarNlsDualCurrencyC2Ev:35 + 0: 1 _ZN9oceanbase5share15ObVarcharSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:1 + 2031: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 2036: _ZN9oceanbase5share20ObSysVarPlsqlCcflagsC2Ev:35 + 0: 1 _ZN9oceanbase5share15ObVarcharSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:1 + 2040: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 2045: _ZN9oceanbase5share40ObSysVarObProxySessionTemporaryTableUsedC2Ev:30 + 0: 1 _ZN9oceanbase5share12ObBoolSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:1 + 2049: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 2054: _ZN9oceanbase5share25ObSysVarEnableParallelDdlC2Ev:30 + 0: 1 _ZN9oceanbase5share12ObBoolSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:1 + 2058: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 2063: _ZN9oceanbase5share27ObSysVarForceParallelDdlDopC2Ev:44 + 0: 2 _ZN9oceanbase5share11ObIntSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:1 + 2067: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:14 + 0: 2 + 2072: _ZN9oceanbase5share21ObSysVarCursorSharingC2Ev:86 + 0: 2 _ZN9oceanbase5share12ObEnumSysVarC2EPPKcPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSF_EPFiS7_SA_SD_SH_EPFiRNSE_12ObIAllocatorERKNS5_18ObBasicSessionInfoESD_SI_EPFiSO_SR_SD_RNSE_8ObStringEEPFNSE_9ObObjTypeEvE:2 + 2076: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:14 + 0: 2 + 2081: _ZN9oceanbase5share34ObSysVarOptimizerNullAwareAntijoinC2Ev:60 + 0: 2 _ZN9oceanbase5share12ObBoolSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:2 + 2085: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:14 + 0: 2 + 2090: _ZN9oceanbase5share31ObSysVarPxPartialRollupPushdownC2Ev:86 + 0: 2 _ZN9oceanbase5share12ObEnumSysVarC2EPPKcPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSF_EPFiS7_SA_SD_SH_EPFiRNSE_12ObIAllocatorERKNS5_18ObBasicSessionInfoESD_SI_EPFiSO_SR_SD_RNSE_8ObStringEEPFNSE_9ObObjTypeEvE:2 + 2094: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:14 + 0: 2 + 2099: _ZN9oceanbase5share38ObSysVarPxDistAggPartialRollupPushdownC2Ev:72 + 0: 2 _ZN9oceanbase5share12ObEnumSysVarC2EPPKcPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSF_EPFiS7_SA_SD_SH_EPFiRNSE_12ObIAllocatorERKNS5_18ObBasicSessionInfoESD_SI_EPFiSO_SR_SD_RNSE_8ObStringEEPFNSE_9ObObjTypeEvE:2 + 2103: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 2108: _ZN9oceanbase5share27ObSysVarCreateAuditPurgeJobC2Ev:30 + 0: 1 _ZN9oceanbase5share15ObVarcharSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:1 + 2112: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 2117: _ZN9oceanbase5share25ObSysVarDropAuditPurgeJobC2Ev:30 + 0: 1 _ZN9oceanbase5share15ObVarcharSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:1 + 2121: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 2126: _ZN9oceanbase5share27ObSysVarSetPurgeJobIntervalC2Ev:30 + 0: 1 _ZN9oceanbase5share15ObVarcharSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:1 + 2130: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 2135: _ZN9oceanbase5share25ObSysVarSetPurgeJobStatusC2Ev:30 + 0: 1 _ZN9oceanbase5share15ObVarcharSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:1 + 2139: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 2144: _ZN9oceanbase5share31ObSysVarSetLastArchiveTimestampC2Ev:30 + 0: 1 _ZN9oceanbase5share15ObVarcharSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:1 + 2148: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 2153: _ZN9oceanbase5share33ObSysVarClearLastArchiveTimestampC2Ev:30 + 0: 1 _ZN9oceanbase5share15ObVarcharSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:1 + 2157: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 2162: _ZN9oceanbase5share39ObSysVarAggregationOptimizationSettingsC2Ev:30 + 0: 1 _ZN9oceanbase5share11ObIntSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:1 + 2166: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 + 2171: _ZN9oceanbase5share24ObSysVarPxSharedHashJoinC2Ev:16 + 0: 1 _ZN9oceanbase5share12ObBoolSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:1 + 2175: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 2184: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 2189: _ZN9oceanbase5share24ObSysVarInnodbStrictModeC2Ev:0 + 0: 0 + 2193: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 2202: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:0 + 0: 0 + 2211: _ZN9oceanbase5share17ObSysVarsToIdxMap13get_store_idxEl:7 + 0: 1 +_ZN9oceanbase12blocksstable11ObRowWriter5writeElRKNS0_10ObDatumRowERPcRl:17107:57 + 1: 54 + 2: 54 + 3: 54 + 5: 54 _ZN9oceanbase12blocksstable11ObRowWriter18alloc_buf_and_initEb:54 + 6.1: 0 + 7.1: 54 + 14.1: 0 + 17: 54 + 18: 54 + 19: 71 _ZN9oceanbase12blocksstable11ObRowWriter17inner_write_cellsINS0_14ObStorageDatumEEEiPKT_l:54 + 21.1: 0 + 24: 71 + 25: 71 + 29.1: 71 + 29.3: 0 + 32.1: 0 + 34: 71 + 7.1: _ZNK9oceanbase12blocksstable12ObDmlRowFlag18get_serialize_flagEv:378 + 2: 54 + 7.2: _ZNK9oceanbase11transaction9ObTransID6get_idEv:378 + 0: 54 + 7.3: _ZN9oceanbase12blocksstable11ObRowWriter17append_row_headerEhhlll:5400 + 7: 54 + 9: 54 + 10: 0 + 11.1: 0 + 13: 54 + 15: 54 + 16: 54 + 17: 54 + 18: 54 + 19: 54 + 20: 54 + 22: 54 + 24: 54 + 14: _ZN9oceanbase12blocksstable11ObRowHeader11set_versionEh:216 + 0: 54 + 15: _ZN9oceanbase12blocksstable11ObRowHeader12set_row_flagEh:162 + 0: 54 + 16: _ZN9oceanbase12blocksstable11ObRowHeader17set_row_mvcc_flagEh:216 + 0: 54 + 17: _ZN9oceanbase12blocksstable11ObRowHeader16set_column_countEt:216 + 0: 54 + 18: _ZN9oceanbase12blocksstable11ObRowHeader16set_rowkey_countEh:216 + 0: 54 + 19: _ZN9oceanbase12blocksstable11ObRowHeader19clear_reserved_bitsEv:432 + 0: 54 + 20: _ZN9oceanbase12blocksstable11ObRowHeader12set_trans_idEl:216 + 0: 54 + 25: _ZN9oceanbase12blocksstable11ObRowBuffer7get_bufEv:284 + 0: 71 + 29.2: _ZNK9oceanbase12blocksstable11ObRowBuffer17is_buf_extendableEv:0 + 0: 0 +_ZZN9oceanbase3sql16ObHashDistinctOp10inner_openEvENK5$_457clEPKc.ae889f3027d8490103b30de3c389dd2f:17085:282 + 0: 270 + 0.1: 0 + 0.2: 255 + 0.3: 270 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:275 + 0.11: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:4590 + 2: 270 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.5: _ZN9oceanbase6common7ObLogKVIRKbLb0EEC2EPKcS3_:0 + 0: 0 + 0.7: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVIRKbLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase6common13ObSEArrayImplINS_5share6schema9ObColDescELl52ENS0_19ModulePageAllocatorELb0EE9push_backERKS4_:17056:172 + 2: 164 + 5: 164 + 6: 0 + 12: 0 + 15: 0 + 15.1: 164 + 16: 164 + 19: 164 + 15.1: _ZN9oceanbase6common9ObClassOpINS_5share6schema9ObColDescELb0EE20construct_and_assignERKS4_RS4_:8856 + 3: _ZN9oceanbase6common16construct_assignINS_5share6schema9ObColDescEEEiRT_RKS5_:8856 + 2: _ZN9oceanbase6common21construct_assign_wrapINS_5share6schema9ObColDescEEEiRT_RKS5_NS0_8BoolTypeILb1EEE:8856 + 2: _ZN9oceanbase5share6schema9ObColDescC2Ev:4592 + 0: _ZN9oceanbase6common9ObObjMetaC2Ev:4592 + 1: 164 + 2: 164 + 4: 164 + 3: _ZN9oceanbase5share6schema9ObColDesc6assignERKS2_:4264 + 3: 164 + 4: 164 + 5: 164 + 6: 164 +_ZZN9oceanbase10logservice12ObLogHandler6appendEPKvllbPNS0_8AppendCbERNS_4palf3LSNERlENK5$_196clEPKc.1291a23568de5f940ae06fb9e7354412:16990:258 + 0: 244 + 0.1: 0 + 0.2: 238 + 0.3: 244 _ZN9oceanbase6common8ObLogger13need_to_printEmi:245 + 0.11: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:4148 + 2: 244 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKNS_4palf3LSNELb0EEC2EPKcS5_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase11transaction11ObTransCond5resetEv:16960:1079 + 1: 1060 + 2: 1060 + 3: 1060 + 4: 1060 +_ZN9oceanbase12blocksstable11ObRowWriter21append_8_bytes_columnERKNS0_14ObStorageDatumE:16908:123 + 1: 123 + 2: 123 + 5: 121 + 12: 0 + 13: 0 + 14.1: 129 + 17: 129 + 18: 0 + 19: 0 + 20.1: 0 + 22: 129 + 27: 129 + 4: _ZNK9oceanbase6common7ObDatum10get_uint64Ev:738 + 0: 123 + 5: _ZN9oceanbase12blocksstable11ObRowWriter13get_uint_byteEmRl:2882 + 3: 123 + 5.1: 132 + 7.1: 121 + 14.1: _ZN9oceanbase12blocksstable11ObRowWriter10write_uintEml:3499 + 2: 121 + 5: 0 + 9: 8 + 13: 121 + 22: 129 +_ZZN9oceanbase11transaction8ObTxDesc17execute_commit_cbEvENK6$_1040clEPKc.6c6f3ed9193054173c335adef4549614:16891:243 + 0: 247 + 0.1: 0 + 0.2: 247 + 0.3: 240 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:268 + 0.9: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:4080 + 2: 240 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.1: _ZN9oceanbase6common7ObLogKVIPKvLb1EEC2EPKcOKS3_:0 + 0: 0 + 0.5: _ZN9oceanbase6common7ObLogKVIRKNS_11transaction9ObTransIDELb0EEC2EPKcS5_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIPKvLb1EEC2EPKcOKS3_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKbLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase11transaction16ObTransStatistic12get_instanceEv:16880:541 + 1: 506 + 2: 506 + 2.1: 2 + 2.2: 2 + 2.3: 2 + 2.4: 2 + 2.6: 2 + 3: 506 +_ZN9oceanbase3sql12ObSqlPlanSet21calc_phy_plan_type_v2ERKNS_6common8ObIArrayINS0_15ObCandiTableLocEEERNS0_13ObPhyPlanTypeEb:16827:255 + 3: 247 + 4: 247 + 6: 247 + 12: 0 + 12.1: 0 + 12.3: 0 + 13: 0 + 16: 0 + 20: 0 + 22.1: 0 + 24: 0 + 26: 0 + 29.1: 0 + 32.1: 0 + 36: 0 + 37: 0 + 40: 0 + 51: 239 + 5: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql15ObCandiTableLocEE5countEv:988 + 0: 247 + 13: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql15ObCandiTableLocEE2atEl:0 + 13.1: _ZNK9oceanbase3sql15ObCandiTableLoc17get_partition_cntEv:0 + 0: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql16ObCandiTabletLocEE5countEv:0 + 0: 0 + 25: _ZN9oceanbase6common6ObAddrC2Ev:0 + 1: 0 + 29.1: _ZN9oceanbase3sql12ObSqlPlanSet27is_partition_in_same_serverERKNS_6common8ObIArrayINS0_15ObCandiTableLocEEERbRNS2_6ObAddrE:0 + 4: 0 + 6: 0 + 8: 0 + 9.1: 0 + 9.6: 0 + 11: 0 + 12.1: 0 + 13: 0 + 15: 0 + 15.1: 0 + 16.1: 0 + 17.1: 0 + 17.2: 0 + 18.1: 0 + 20: 0 + 33: 0 + 34.1: 0 + 40.1: 0 + 5: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql15ObCandiTableLocEE5countEv:0 + 0: 0 + 10: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql15ObCandiTableLocEE2atEl:0 + 6: 0 + 10.1: _ZNK9oceanbase3sql15ObCandiTableLoc17get_partition_cntEv:0 + 0: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql16ObCandiTabletLocEE5countEv:0 + 0: 0 + 14: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql15ObCandiTableLocEE2atEl:0 + 6: 0 + 14.2: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql16ObCandiTabletLocEE2atEl:0 + 6: 0 + 22.1: _ZN9oceanbase6common6ObAddraSERKS1_:0 + 1: 0 + 2: 0 + 3: 0 + 27.1: _ZNK9oceanbase6common6ObAddreqERKS1_:0 + 2: 0 + 2.2: 0 + 37: _ZNK9oceanbase6common6ObAddreqERKS1_:0 + 2: 0 + 2.1: 0 + 2.2: 0 +_ZZN9oceanbase11transaction14ObTransService10release_txERNS0_8ObTxDescEENK6$_1269clEPKc.93feb755617c21c32b229b78773c290c:16785:244 + 0: 224 + 0.1: 0 + 0.2: 223 + 0.3: 224 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:226 + 0.6: 0 + 0.9: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:3808 + 2: 224 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.1: _ZN9oceanbase6common7ObLogKVIPKvLb1EEC2EPKcOKS3_:0 + 0: 0 + 0.4: _ZN9oceanbase6common20ObLogPrintPointerCntIPNS_11transaction14ObTransServiceEEC2ES4_:0 + 0: 0 + 0.5: _ZN9oceanbase6common7ObLogKVINS0_20ObLogPrintPointerCntIPNS_11transaction14ObTransServiceEEELb1EEC2EPKcOKS6_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKPcLb0EEC2EPKcS4_:0 + 0: 0 +_ZN9oceanbase3sql16AllocDASOpHelperILi4EE5allocERNS_6common12ObIAllocatorERPNS0_12ObIDASTaskOpE:16770:273 + 1: 266 + 2: 266 + 5: 266 _ZN9oceanbase6common26ObWrapperAllocatorWithAttr5allocEl:267 + 6: 0 + 7.1: 0 + 9: 245 _ZN9oceanbase3sql13ObDASDeleteOpC1ERNS_6common12ObIAllocatorE:253 + 11: 245 +_ZN9oceanbase8memtable9ObMvccRow17unlink_trans_nodeERKNS0_15ObMvccTransNodeE:16752:175 + 1: 167 + 4: 167 + 5: 167 + 9: 167 + 11.1: 0 + 11.2: 0 + 41: 0 + 42: 168 + 45: 0 + 46.3: 0 + 46.6: 0 + 46.8: 0 + 46.11: 0 + 47.1: 0 + 50: 157 + 51: 157 + 52: 136 + 54: 157 + 56.1: 0 + 56.3: 0 + 57: 0 + 58: 0 + 59: 0 + 60.1: 0 + 67: 170 + 70: 170 + 46.1: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 46.3: _Z7load128RoPN5types9uint128_tE:0 + 2: 0 + 46.8: _Z6cas128PVN5types9uint128_tEPS0_S0_:0 + 3: 0 + 11: 0 + 57: _ZNK9oceanbase8memtable9ObMvccRow14ObMvccRowIndex14get_index_nodeEl:0 + 3: 0 + 3: _ZN9oceanbase8memtable9ObMvccRow14ObMvccRowIndex20is_valid_queue_indexEl:0 + 2: 0 + 58: _ZN9oceanbase8memtable9ObMvccRow14ObMvccRowIndex14set_index_nodeElPNS0_15ObMvccTransNodeE:0 + 3: 0 + 4: 0 + 59.1: _Z22TC_REACH_TIME_INTERVALl:0 + 4.1: 0 + 5: 0 + 6: 0 + 4: _ZN9oceanbase6common14ObTscTimestamp12get_instanceEv:0 + 2: 0 + 2.1: 0 + 2.3: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common14ObTscTimestampC2Ev:0 + 1: 0 +_ZNK9oceanbase8memtable17ObMvccRowCallback16get_mutator_typeEv:16744:2103 + 1: 2093 + 2: 2093 +_ZN9oceanbase4palf3LSNC2ERKS1_:16728:1445 + 0: 1394 + 1: 1394 + 2: 1394 +_ZN9oceanbase4palf3LSNC1ERKS1_:16728:1445 + 0: 1394 + 1: 1394 + 2: 1394 +_ZN9oceanbase5share6schema13ObSchemaCache10get_schemaENS1_12ObSchemaTypeEmmlRNS_6common15ObKVCacheHandleERPKNS1_8ObSchemaE:16681:61 + 7: 60 + 8: 60 + 9: 60 _ZN9oceanbase6common15ObKVCacheHandle5resetEv:61 + 10: 54 + 13: 0 + 14.1: 0 + 15.1: 54 + 16: 0 + 17.1: 0 + 21: 54 + 22.1: 0 + 24: 0 + 25: 0 + 29: 0 + 30.1: 0 + 33: 46 _ZN9oceanbase6common9ObKVCacheINS_5share6schema16ObSchemaCacheKeyENS3_18ObSchemaCacheValueEE3getERKS4_RPKS5_RNS0_15ObKVCacheHandleE:48 + 33.1: 48 + 35.1: 0 + 37.2: 0 + 37.3: 0 + 37.4: 0 + 37.5: 0 + 37.6: 0 + 37.10: 0 + 37.11: 0 + 37.12: 0 + 40.2: 46 + 40.3: 0 + 40.4: 0 + 40.5: 0 + 40.6: 0 + 40.10: 0 + 40.11: 0 + 40.12: 0 + 44: 47 + 45: 47 + 46: 0 + 47.1: 0 + 49: 47 + 54: 47 + 12: _ZNK9oceanbase5share6schema13ObSchemaCache16check_inner_statEv:756 + 4: 54 + 6.1: 0 + 20: _ZN9oceanbase5share6schema16ObSchemaCacheKeyC2ENS1_12ObSchemaTypeEmmm:1782 + 4: 54 + 5: 54 + 6: 54 + 7: 54 + 8: 54 + 22: _ZNK9oceanbase5share6schema13ObSchemaCache18need_use_sys_cacheERKNS1_16ObSchemaCacheKeyE:2018 + 4: 54 + 5: 5 + 7.2: 0 + 10.2: 51 + 16.1: 0 + 8.1: _ZN9oceanbase6common13is_sys_tenantEm:0 + 2: 0 + 11.1: _ZN9oceanbase6common14is_inner_tableEm:510 + 2: 51 + 23: _ZNK9oceanbase6common4hash9ObHashMapINS_5share6schema16ObSchemaCacheKeyEPKNS4_18ObSchemaCacheValueENS1_19ReadWriteDefendModeENS1_9hash_funcIS5_EENS1_8equal_toIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS5_S8_EEEELi76ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKS5_RS8_l:377 + 7: 7 _ZN9oceanbase6common4hash11ObHashTableINS_5share6schema16ObSchemaCacheKeyENS1_11HashMapPairIS5_PKNS4_18ObSchemaCacheValueEEENS1_9hash_funcIS5_EENS1_8equal_toIS5_EENS1_10pair_firstISA_EENS1_13SimpleAllocerINS1_15ObHashTableNodeISA_EELi76ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19ReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKS5_RSA_l:7 + 7.1: 4 + 3: _ZN9oceanbase6common4hash11HashMapPairINS_5share6schema16ObSchemaCacheKeyEPKNS4_18ObSchemaCacheValueEEC2Ev:21 + 0: _ZN9oceanbase5share6schema16ObSchemaCacheKeyC2Ev:21 + 5: 7 + 4: _ZN9oceanbase6common4hash11HashMapPairINS_5share6schema16ObSchemaCacheKeyEPKNS4_18ObSchemaCacheValueEE4initERKS5_RKS8_:161 + 3: _ZN9oceanbase6common11copy_assignINS_5share6schema16ObSchemaCacheKeyEEEiRT_RKS5_:105 + 2: _ZN9oceanbase6common16copy_assign_wrapINS_5share6schema16ObSchemaCacheKeyEEEiRT_RKS5_NS0_8BoolTypeILb0EEE:105 + 2: _ZN9oceanbase5share6schema16ObSchemaCacheKeyaSERKS2_:105 + 0: 7 + 5.1: _ZN9oceanbase6common11copy_assignIPKNS_5share6schema18ObSchemaCacheValueEEEiRT_RKS7_:56 + 2: _ZN9oceanbase6common16copy_assign_wrapIPKNS_5share6schema18ObSchemaCacheValueEEEiRT_RKS7_NS0_8BoolTypeILb0EEE:56 + 2: 7 + 8: _ZN9oceanbase6common11copy_assignIPKNS_5share6schema18ObSchemaCacheValueEEEiRT_RKS7_:44 + 2: _ZN9oceanbase6common16copy_assign_wrapIPKNS_5share6schema18ObSchemaCacheValueEEEiRT_RKS7_NS0_8BoolTypeILb0EEE:44 + 2: 4 + 37.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:0 + 2: 0 + 40.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:232 + 2: 48 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:49 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:184 + 2: 46 +_ZNK9oceanbase3sql15ObTableModifyOp23get_operator_open_orderEv:16672:2171 + 1: 2084 + 17: 2084 +_ZN9oceanbase4palf14PalfHandleImpl19try_freeze_last_logEv:16592:41 + 1: 38 + 3: 38 + 6: 38 + 7: 38 _ZN9oceanbase4palf16LogSlidingWindow19try_freeze_last_logEv:44 + 8.1: 0 + 9: 49 + 6: _ZN9oceanbase6common8TCRWLock10RLockGuardC2ERS1_:6536 + 0: 38 + 0: _ZN9oceanbase6common8TCRWLock6rdlockEl:6384 + 3.1: 0 + 4: 0 + 5: 0 + 3.2: _ZN9oceanbase6common8TCRWLock10try_rdlockEv:6384 + 3: 38 + 5: 38 + 8.1: 0 + 4: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:152 + 0: 38 + 4.1: _ZN9oceanbase6common5TCRef7inc_refEPi:4902 + 2: 38 + 4.1: 38 + 4.2: 0 + 6: 38 + 6.1: 38 + 10: 38 + 2: _ZN9oceanbase6common8get_itidEv:1064 + 4: 38 + 5: 0 + 6: 0 + 8: 0 + 11: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 8: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:0 + 0: 0 + 9: _ZN9oceanbase6common9LWaitCond6signalEv:0 + 2: 0 + 2.1: 0 + 3: 0 + 8: _ZN9oceanbase6common8TCRWLock10RLockGuardD2Ev:7399 + 0: 49 + 0.2: 0 + 0: _ZN9oceanbase6common8TCRWLock8rdunlockEv:7203 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:196 + 0: 49 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPi:6076 + 2: 49 + 4.1: 49 + 4.2: 0 + 6: 49 + 6.1: 49 + 10: 49 + 2: _ZN9oceanbase6common8get_itidEv:1372 + 4: 49 + 5: 0 + 6: 0 + 8: 0 + 11: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:588 + 2: 49 + 2.1: 0 + 3: 0 +_ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf3LSNENS0_14ShareMemMgrTagEE16load_access_bkt_ERKS2_RmRPNS6_6BucketE:16472:34 + 1: 32 + 2: 32 + 8: 32 + 9.1: 31 + 12: 32 + 13: 0 + 14: 0 + 18: 32 + 25: 32 + 27: 32 + 31: 32 + 41: 0 + 42: 0 + 47: 31 + 2: _ZN9oceanbase6common4HashINS0_6ObAddrEEclERKS2_:544 + 2.1: _ZNK9oceanbase6common6ObAddr4hashEv:544 + 4: 32 + 5: 32 + 8: 0 + 9.1: 0 + 10: 0 + 10: _ZNK9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf3LSNENS0_14ShareMemMgrTagEE8load_Lp_ERmS7_:768 + 2: 32 + 3: 32 + 4: 32 + 16: _ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf3LSNENS0_14ShareMemMgrTagEE13load_haz_dir_ERPPNS6_6BucketE:3520 + 2: 32 + 2: _ZN9oceanbase6common13ObExternalRef7acquireEPPv:3296 + 4: 32 + 8: 0 + 10: 32 + 3: _ZN9oceanbase6common13ObExternalRef8load_ptrEPPv:448 + 0: 32 + 3.1: _ZN9oceanbase6common13ObExternalRef4xrefEPvi:1920 + 0: 32 + 0: _ZN9oceanbase6common13ObExternalRef6locateEPv:1760 + 0: 32 + 0: _ZN9oceanbase6common13ObExternalRef4hashEm:1536 + 1: 32 + 2: 32 + 3: 32 + 4: 32 + 5: 32 + 4: _ZN9oceanbase6common13ObExternalRef8load_ptrEPPv:352 + 0: 32 + 7: _ZN9oceanbase6common13ObExternalRef4xrefEPvi:0 + 0: 0 + 0: _ZN9oceanbase6common13ObExternalRef6locateEPv:0 + 0: 0 + 0: _ZN9oceanbase6common13ObExternalRef4hashEm:0 + 1: 0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 18: _ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf3LSNENS0_14ShareMemMgrTagEE8seg_idx_Em:992 + 2: 32 + 2.1: 32 + 3: 0 + 18.1: _ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf3LSNENS0_14ShareMemMgrTagEE13load_haz_seg_ERPNS6_6BucketE:2976 + 2: 32 + 2: _ZN9oceanbase6common13ObExternalRef7acquireEPPv:2752 + 4: 32 + 8: 0 + 10: 32 + 3: _ZN9oceanbase6common13ObExternalRef8load_ptrEPPv:384 + 0: 32 + 3.1: _ZN9oceanbase6common13ObExternalRef4xrefEPvi:1504 + 0: 32 + 0: _ZN9oceanbase6common13ObExternalRef6locateEPv:1344 + 0: 32 + 0: _ZN9oceanbase6common13ObExternalRef4hashEm:1152 + 1: 32 + 2: 32 + 3: 32 + 4: 32 + 5: 32 + 4: _ZN9oceanbase6common13ObExternalRef8load_ptrEPPv:288 + 0: 32 + 7: _ZN9oceanbase6common13ObExternalRef4xrefEPvi:0 + 0: 0 + 0: _ZN9oceanbase6common13ObExternalRef6locateEPv:0 + 0: 0 + 0: _ZN9oceanbase6common13ObExternalRef4hashEm:0 + 1: 0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 11: _ZN9oceanbase6common13ObExternalRef4xrefEPvi:0 + 0: 0 + 25: _ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf3LSNENS0_14ShareMemMgrTagEE12seg_bkt_idx_Em:1408 + 2: 32 + 26: _ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf3LSNENS0_14ShareMemMgrTagEE13set_bkt_lock_EPNS6_6BucketEb:704 + 8: 32 + 9: 32 + 10: 32 + 11: 32 + 15: 0 + 19: 0 + 27: _ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf3LSNENS0_14ShareMemMgrTagEE14is_bkt_active_EPKNS6_6BucketE:160 + 6: 32 + 8: 32 + 42: _ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf3LSNENS0_14ShareMemMgrTagEE15unload_haz_seg_EPNS6_6BucketE:0 + 2: 0 + 2: _ZN9oceanbase6common13ObExternalRef7releaseEPv:0 + 1: 0 + 2: _ZN9oceanbase6common13ObExternalRef4xrefEPvi:0 + 0: 0 + 0: _ZN9oceanbase6common13ObExternalRef6locateEPv:0 + 0: 0 + 0: _ZN9oceanbase6common13ObExternalRef4hashEm:0 + 1: 0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 45: _ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf3LSNENS0_14ShareMemMgrTagEE15unload_haz_dir_EPPNS6_6BucketE:341 + 2: _ZN9oceanbase6common13ObExternalRef7releaseEPv:341 + 2: _ZN9oceanbase6common13ObExternalRef4xrefEPvi:341 + 0: _ZN9oceanbase6common13ObExternalRef6locateEPv:341 + 0: 31 +_ZZN9oceanbase11transaction14ObTransService13gen_trans_id_ERNS0_9ObTransIDEENK6$_1164clEPKc.93feb755617c21c32b229b78773c290c:16329:242 + 0: 255 + 0.1: 0 + 0.2: 255 + 0.3: 241 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:244 + 0.9: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:4097 + 2: 241 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS_11transaction9ObTransIDELb0EEC2EPKcS5_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase11transaction16ObTransStatistic24add_trans_log_total_sizeEml:16278:304 + 1: 289 + 3.2: 290 + 3.3: 0 + 3.4: 0 + 3.5: 0 + 3.6: 0 + 3.10: 0 + 3.11: 0 + 3.12: 0 + 4.3: 286 + 2: _ZN9oceanbase6common20ObTenantStatEstGuardC2Em:4977 + 3: 293 + 4: 0 + 5: 0 + 7: 0 + 3: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:3219 + 2: 289 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:301 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:1172 + 2: 293 + 6: _ZN9oceanbase6common17ObSessionDIBuffer13get_tenant_idEv:0 + 3: 0 + 4: 0 + 8: _ZN9oceanbase6common17ObSessionDIBuffer13switch_tenantEm:0 + 4: 0 + 6: 0 + 8: 0 + 10: 0 + 3.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:1453 + 2: 293 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:293 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:1160 + 2: 290 + 4.3: _ZN9oceanbase6common20ObTenantStatEstGuardD2Ev:1192 + 2: 298 + 3.1: 0 + 3: _ZN9oceanbase6common17ObSessionDIBuffer13switch_tenantEm:0 + 3: 0 + 4: 0 + 6: 0 + 8: 0 + 10: 0 + 4.4: _ZN9oceanbase6common20ObTenantStatEstGuardD2Ev:0 + 2: 0 + 3.1: 0 + 3: _ZN9oceanbase6common17ObSessionDIBuffer13switch_tenantEm:0 + 3: 0 + 4: 0 + 6: 0 + 8: 0 + 10: 0 +_ZN9oceanbase12blocksstable21ObMicroBlockGetReader7get_rowERKNS0_16ObMicroBlockDataERKNS0_13ObDatumRowkeyERKNS_7storage15ObTableReadInfoERNS0_10ObDatumRowE:16236:80 + 5: 74 + 6: 74 + 8: 74 + 9: 0 + 10.1: 0 + 11.1: 75 _ZN9oceanbase12blocksstable21ObMicroBlockGetReader10inner_initERKNS0_16ObMicroBlockDataERKNS_7storage15ObTableReadInfoE:82 + 12.1: 0 + 13.1: 75 _ZN9oceanbase12blocksstable21ObMicroBlockGetReader13locate_rowkeyERKNS0_13ObDatumRowkeyERl:77 + 15.1: 0 + 17.1: 78 _ZN9oceanbase12blocksstable11ObRowReader8read_rowEPKclPKNS_7storage15ObTableReadInfoERNS0_10ObDatumRowE:60 + 22.1: 0 + 24: 78 + 26: 78 + 8: _ZNK9oceanbase7storage15ObTableReadInfo8is_validEv:5254 + 2: 74 + 3: 74 + 3.1: 74 + 4: 74 + 5.1: 74 + 6: 74 + 7: 74 + 7.1: 74 + 3.1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:518 + 0: 74 + 6.1: _ZNK9oceanbase12blocksstable19ObStorageDatumUtils8is_validEv:592 + 0: 74 +_ZN9oceanbase3sql16ObSQLSessionInfo5resetEb:16235:1 + 1: 1 + 2: 1 + 8: 2 + 9: 1 + 17: 1 + 22: 1 + 23: 1 + 24: 0 + 25: 0 + 27: 1 + 28: 1 + 29: 0 + 30: 0 + 32: 1 + 34: 1 + 35: 1 + 36: 1 + 37: 1 + 39: 1 + 42: 0 + 43: 0 + 44: 0 + 49: 3 + 50: 3 + 51: 3 + 52: 3 + 53: 3 + 54: 3 + 55: 3 + 56: 0 + 60: 3 + 61: 3 _ZN9oceanbase3sql18ObBasicSessionInfo5resetEb:3 + 65: 2 + 66: 2 + 67: 2 + 69: 2 + 70: 2 + 71: 2 + 74: 2 + 75: 2 + 80: 2 + 81: 2 + 82: 2 _ZN9oceanbase3sql11ObPlanCache13dec_ref_countEv:2 + 83: 2 + 88: 2 + 91: 2 + 93: 2 + 4: _ZN9oceanbase3sql16ObSQLSessionInfo30reset_all_package_changed_infoEv:9 + 2: 1 + 4: 0 + 3: _ZN9oceanbase6common4hash9ObHashMapImPNS_2pl16ObPLPackageStateENS1_19NoPthreadDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS5_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE5beginEv:0 + 2: _ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS_2pl16ObPLPackageStateEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE5beginEv:0 + 5: 0 + 5.1: 0 + 6.1: 0 + 8.1: 0 + 8.2: 0 + 8.3: 0 + 9: 0 + 10: 0 + 5: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImPNS_2pl16ObPLPackageStateEEENS1_5NLockENS1_5NCondEEEEEbRKT_:0 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImPNS_2pl16ObPLPackageStateEEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:0 + 2: 0 + 3.3: _ZN9oceanbase6common4hash19ObHashTableIteratorImNS1_11HashMapPairImPNS_2pl16ObPLPackageStateEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEppEv:0 + 4.2: 0 + 7.1: 0 + 8: 0 + 4.1: _ZN9oceanbase2pl16ObPLPackageState26reset_package_changed_infoEv:0 + 2: _ZN9oceanbase6common8ObBitSetILl256ENS0_19ModulePageAllocatorELb0EE5resetEv:0 + 2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb0EE5resetEv:0 + 0: 0 + 5: _ZN9oceanbase6common15ObWarningBuffer5resetEv:58 + 2: 1 + 5: 1 + 4: _ZN9oceanbase6common15ObWarningBuffer11WarningItem5resetEv:42 + 2: 1 + 3: 1 + 5: 1 + 8: 1 + 6: _ZN9oceanbase6common15ObWarningBuffer5resetEv:50 + 2: 1 + 5: 1 + 4: _ZN9oceanbase6common15ObWarningBuffer11WarningItem5resetEv:34 + 2: 1 + 3: 1 + 5: 1 + 8: 1 + 7: _ZN9oceanbase3sql23ObEndTransAsyncCallback5resetEv:49 + 3: 1 _ZN9oceanbase8observer15ObSqlEndTransCb5resetEv:1 + 2: _ZN9oceanbase3sql27ObExclusiveEndTransCallback5resetEv:40 + 4: 1 + 2: _ZN9oceanbase3sql19ObIEndTransCallback5resetEv:24 + 2: 1 + 3: 1 + 4: 1 + 8: _ZN9oceanbase3sql17ObAuditRecordData5resetEv:82 + 2: 2 + 3: 1 + 4: 1 + 7: 1 + 9: 1 + 40: _ZN9oceanbase6common4hash9ObHashMapImPNS_3sql15ObPsSessionInfoENS1_19NoPthreadDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS5_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE5reuseEv:12 + 2: _ZN9oceanbase6common4hash9ObHashMapImPNS_3sql15ObPsSessionInfoENS1_19NoPthreadDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS5_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE5clearEv:12 + 2: _ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS_3sql15ObPsSessionInfoEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE5clearEv:12 + 3: 1 + 3.1: 0 + 6.1: 0 + 6.3: 0 + 7: 0 + 10: 0 + 11.1: 0 + 13: 0 + 14: 0 + 18: 0 + 20: 0 + 3: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImPNS_3sql15ObPsSessionInfoEEENS1_5NLockENS1_5NCondEEEEEbRKT_:11 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImPNS_3sql15ObPsSessionInfoEEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:11 + 2: 1 + 12: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_11HashMapPairImPNS_3sql15ObPsSessionInfoEEEE16check_magic_codeEv:0 + 0: 0 + 793: 0 + 12.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 41: _ZN9oceanbase6common4hash9ObHashMapINS0_8ObStringEmNS1_19NoPthreadDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_mEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE5reuseEv:0 + 2: _ZN9oceanbase6common4hash9ObHashMapINS0_8ObStringEmNS1_19NoPthreadDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_mEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE5clearEv:0 + 2: _ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_mEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE5clearEv:0 + 3: 0 + 3.1: 0 + 6.1: 0 + 6.3: 0 + 7: 0 + 10: 0 + 11.1: 0 + 13: 0 + 14: 0 + 18: 0 + 20: 0 + 3: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringEmEENS1_5NLockENS1_5NCondEEEEEbRKT_:0 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringEmEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:0 + 2: 0 + 12: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_11HashMapPairINS0_8ObStringEmEEE16check_magic_codeEv:0 + 0: 0 + 793: 0 + 12.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 45: _ZN9oceanbase6common4hash9ObHashMapImPNS_2pl16ObPLPackageStateENS1_19NoPthreadDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS5_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE5reuseEv:2422 + 2: _ZN9oceanbase6common4hash9ObHashMapImPNS_2pl16ObPLPackageStateENS1_19NoPthreadDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS5_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE5clearEv:2422 + 2: _ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS_2pl16ObPLPackageStateEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE5clearEv:2422 + 3: 0 + 3.1: 0 + 6.1: 62 + 6.3: 62 + 7: 60 + 10: 62 + 11.1: 0 + 13: 0 + 14: 0 + 18: 62 + 20: 2 + 3: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImPNS_2pl16ObPLPackageStateEEENS1_5NLockENS1_5NCondEEEEEbRKT_:0 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImPNS_2pl16ObPLPackageStateEEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:0 + 2: 0 + 12: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_11HashMapPairImPNS_2pl16ObPLPackageStateEEEE16check_magic_codeEv:0 + 0: 0 + 12.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 46: _ZN9oceanbase6common4hash9ObHashMapImNS_5share15ObSequenceValueENS1_19NoPthreadDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS4_EEEELi65ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE5reuseEv:7564 + 2: _ZN9oceanbase6common4hash9ObHashMapImNS_5share15ObSequenceValueENS1_19NoPthreadDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS4_EEEELi65ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE5clearEv:7564 + 2: _ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImNS_5share15ObSequenceValueEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS6_EELi65ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE5clearEv:7564 + 3: 2 + 3.1: 2 + 6.1: 174 + 6.3: 174 + 7: 171 + 10: 174 + 11.1: 0 + 13: 0 + 14: 0 + 18: 174 + 20: 2 + 3: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImNS_5share15ObSequenceValueEEENS1_5NLockENS1_5NCondEEEEEbRKT_:22 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImNS_5share15ObSequenceValueEEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:22 + 2: 2 + 12: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_11HashMapPairImNS_5share15ObSequenceValueEEEE16check_magic_codeEv:0 + 0: 0 + 12.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 47: _ZN9oceanbase6common4hash9ObHashMapINS0_8ObStringEPNS_3sql17ObInnerContextMapENS1_19NoPthreadDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_S6_EEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl2EE5reuseEv:4739 + 2: _ZN9oceanbase6common4hash9ObHashMapINS0_8ObStringEPNS_3sql17ObInnerContextMapENS1_19NoPthreadDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_S6_EEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl2EE5clearEv:4739 + 2: _ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_PNS_3sql17ObInnerContextMapEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS8_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS8_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl2EE5clearEv:4739 + 3: 2 + 3.1: 2 + 6.1: 119 + 6.3: 119 + 7: 116 + 10: 119 + 11.1: 0 + 13: 0 + 14: 0 + 18: 119 + 20: 3 + 3: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringEPNS_3sql17ObInnerContextMapEEENS1_5NLockENS1_5NCondEEEEEbRKT_:22 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringEPNS_3sql17ObInnerContextMapEEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:22 + 2: 2 + 12: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_11HashMapPairINS0_8ObStringEPNS_3sql17ObInnerContextMapEEEE16check_magic_codeEv:0 + 0: 0 + 12.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 55: _ZNK9oceanbase3sql16ObSQLSessionInfo11CursorCache9is_initedEv:24 + 0: _ZN9oceanbase3libneEDnRKNS0_13MemoryContextE:24 + 1: 3 + 63: _ZN9oceanbase3sql29ObTenantCachedSchemaGuardInfo5resetEv:58 + 2: 2 _ZN9oceanbase5share6schema19ObSchemaGetterGuard5resetEv:2 + 4: 2 + 64: _ZN9oceanbase3sql20ObSessionEncryptInfo5resetEv:32 + 2: 2 + 3: 2 + 65: _ZN9oceanbase6common13ObSEArrayImplImLl8ENS0_19ModulePageAllocatorELb0EE5resetEv:18 + 0: 2 _ZN9oceanbase6common13ObSEArrayImplImLl8ENS0_19ModulePageAllocatorELb0EE7destroyEv:2 + 73: _ZN9oceanbase3sql16ObSQLSessionInfo26set_registered_to_deadlockEb:20 + 0: 2 + 75: _ZN9oceanbase3libneEDnRKNS0_13MemoryContextE:22 + 1: 2 + 1: _ZNK9oceanbase3lib13MemoryContext11ref_contextEv:16 + 1: 2 + 76.2: _ZN9oceanbase3sql16ObSQLSessionInfo20destroy_contexts_mapERNS_6common4hash9ObHashMapINS2_8ObStringEPNS0_17ObInnerContextMapENS3_19NoPthreadDefendModeENS3_9hash_funcIS5_EENS3_8equal_toIS5_EENS3_13SimpleAllocerINS3_15ObHashTableNodeINS3_11HashMapPairIS5_S7_EEEELi98ENS3_19SpinMutexDefendModeENS3_29DefaultSimpleAllocerAllocatorEEENS3_13NormalPointerENS2_8ObMallocELl2EEERNS2_12ObIAllocatorE:0 + 2.1: 0 + 3: 0 + 3.1: 0 + 4: 0 + 4.1: 0 + 2: _ZN9oceanbase6common4hash9ObHashMapINS0_8ObStringEPNS_3sql17ObInnerContextMapENS1_19NoPthreadDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_S6_EEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl2EE5beginEv:0 + 2: _ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_PNS_3sql17ObInnerContextMapEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS8_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS8_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl2EE5beginEv:0 + 5: 0 + 5.1: 0 + 6.1: 0 + 8.1: 0 + 8.2: 0 + 8.3: 0 + 9: 0 + 10: 0 + 5: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringEPNS_3sql17ObInnerContextMapEEENS1_5NLockENS1_5NCondEEEEEbRKT_:0 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringEPNS_3sql17ObInnerContextMapEEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:0 + 2: 0 + 2.3: _ZN9oceanbase6common4hash19ObHashTableIteratorINS0_8ObStringENS1_11HashMapPairIS3_PNS_3sql17ObInnerContextMapEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS8_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS8_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl2EEppEv:0 + 4.2: 0 + 7.1: 0 + 8: 0 + 77: _ZN9oceanbase3lib17__MemoryContext__15destory_contextERNS0_13MemoryContextE:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 2: _ZNK9oceanbase3lib13MemoryContext16check_magic_codeEv:0 + 0: 0 + 2.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 5: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 78: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:0 + 2: 0 + 8: 0 + 85: _ZN9oceanbase3sql16ObSQLSessionInfo15ApplicationInfo5resetEv:60 + 2: _ZN9oceanbase6common8ObString5resetEv:60 + 3: 2 + 86: _ZN9oceanbase3sql14FLTControlInfo5resetEv:118 + 1: 2 + 2: 2 + 3: 2 + 4: 2 + 5: 2 +_ZN9oceanbase6common9ObDFMUtil14check_semanticERKNS0_8ObIArrayINS0_9ObDFMElemEEERNS0_13ObFixedBitSetILl64EEEm:16201:10 + 1: 9 + 2: 9 + 6.1: 73 + 6.2: 81 + 6.3: 81 + 6.5: 73 + 7: 71 + 8: 71 + 11: 71 + 12: 0 + 13.1: 0 + 17: 0 + 18: 71 + 18.3: 71 + 20: 0 + 21.1: 0 + 22.1: 70 + 25: 0 + 26.1: 0 + 32: 71 + 33: 71 + 34: 0 + 35.1: 0 + 36.1: 71 + 37.1: 0 + 41: 0 + 42: 71 + 43: 71 + 44: 30 + 45: 0 + 46.1: 0 + 51: 30 + 58: 9 + 60: 0 + 61.1: 0 + 65: 0 + 68: 9 + 3: _ZN9oceanbase6common13ObFixedBitSetILl64EE5resetEv:63 + 0: 9 + 7: _ZNK9oceanbase6common12ObIArrayWrapINS0_9ObDFMElemEE2atEl:284 + 6: 71 + 11: _ZN9oceanbase6common9ObDFMFlag13is_flag_validEl:284 + 2: 71 + 33: _ZNK9oceanbase6common13ObFixedBitSetILl64EE10has_memberEl:2343 + 3: 71 + 4.1: 0 + 6.1: 71 + 9: 71 + 10: 71 + 36.1: _ZN9oceanbase6common13ObFixedBitSetILl64EE10add_memberEl:1278 + 3: 0 + 5.1: 0 + 7: 71 + 9: 71 + 43: _ZN9oceanbase6common9ObDFMFlag19need_check_conflictEl:284 + 2: 71 +_ZN9oceanbase11transaction14ObPartTransCtx18update_rec_log_ts_Ebl:16131:238 + 1: 232 + 6: 232 + 7: 232 + 8: 0 + 9.1: 0 + 17: 0 + 26: 235 + 28: 235 + 30.1: 0 + 32: 235 + 40: 235 + 26: _ZNK9oceanbase6common7ObDListINS_11transaction9ObTxLogCbEE8is_emptyEv:3995 + 0: 235 + 0.3: 235 + 32: _ZNK9oceanbase11transaction13ObTxBaseLogCb10get_log_tsEv:940 + 0: 235 +_ZZN9oceanbase11transaction11ObTxDescMgr6removeERNS0_8ObTxDescEENK6$_1088clEPKc.6c6f3ed9193054173c335adef4549614:16129:262 + 0: 275 + 0.1: 0 + 0.2: 275 + 0.3: 252 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:268 + 0.5: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:4284 + 2: 252 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKNS_11transaction9ObTransIDELb0EEC2EPKcS5_:0 + 0: 0 +_ZZN9oceanbase11transaction14ObTransService14create_tx_ctx_ERKNS_5share6ObLSIDEPNS_7storage4ObLSERKNS0_8ObTxDescERPNS0_14ObPartTransCtxEENK6$_1010clEPKc.93feb755617c21c32b229b78773c290c:16104:255 + 0: 246 + 0.1: 0 + 0.2: 246 + 0.3: 239 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:258 + 0.9: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:4063 + 2: 239 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS_5share6ObLSIDELb0EEC2EPKcS5_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKNS_11transaction8ObTxDescELb0EEC2EPKcS5_:0 + 0: 0 +_Z18parser_free_bufferPvS_:16098:562 + 1: 529 + 2: 529 + 3: 529 + 4: 0 + 5.1: 0 + 8: 529 _ZN9oceanbase6common16ObArenaAllocator4freeEPv:547 + 10: 567 +_ZNK9oceanbase3sql18ObBasicSessionInfo26get_influence_plan_sys_varERNS0_12ObSysVarInPCE:16071:3 + 1: 3 + 2: 3 + 5.1: 137 + 5.2: 142 + 5.3: 142 + 5.5: 137 + 6: 137 + 7: 137 + 8: 0 + 9.1: 0 + 10.1: 137 + 11: 0 + 12.1: 0 + 13.1: 137 _ZNK9oceanbase5share13ObBasicSysVar9get_valueEv:139 + 14.1: 0 + 17: 5 + 6: _ZNK9oceanbase6common12ObIArrayWrapIlE2atEl:959 + 6: 137 + 13.2: _ZN9oceanbase3sql12ObSysVarInPC9push_backERKNS_6common5ObObjE:5938 + 1: _ZN9oceanbase6common13ObSEArrayImplINS0_5ObObjELl32ENS0_19ModulePageAllocatorELb0EE9push_backERKS2_:5938 + 5: 137 + 6: 2 + 12: 2 _ZN9oceanbase6common13ObSEArrayImplINS0_5ObObjELl32ENS0_19ModulePageAllocatorELb0EE7reserveEl:2 + 15: 3 + 15.1: 137 + 16: 137 + 15.1: _ZN9oceanbase6common9ObClassOpINS0_5ObObjELb0EE20construct_and_assignERKS2_RS2_:2466 + 3: _ZN9oceanbase6common16construct_assignINS0_5ObObjEEEiRT_RKS3_:2466 + 2: _ZN9oceanbase6common21construct_assign_wrapINS0_5ObObjEEEiRT_RKS3_NS0_8BoolTypeILb0EEE:2466 + 2: _ZN9oceanbase6common5ObObjC2ERKS1_:2466 + 2: 137 + 0: _ZN9oceanbase6common9ObObjMetaC2Ev:1507 + 1: 137 +_ZN9oceanbase7storage20ObTableAccessContextD2Ev:16040:295 + 1: 288 + 2: 288 + 3: 0 + 4: 0 + 5: 0 + 8.1: 284 + 8.2: 0 + 8: _ZN9oceanbase7storage16ObTableStoreStatD2Ev:0 + 0.1: _ZN9oceanbase5share6ObLSIDD2Ev:0 + 0: _ZN9oceanbase5share6ObLSID5resetEv:0 + 0: 0 + 8.1: _ZN9oceanbase7storage16ObTableStoreStatD2Ev:3124 + 0.1: _ZN9oceanbase5share6ObLSIDD2Ev:3124 + 0: _ZN9oceanbase5share6ObLSID5resetEv:3124 + 0: 284 + 8.4: _ZN9oceanbase5share6ObLSIDD2Ev:0 + 0: _ZN9oceanbase5share6ObLSID5resetEv:0 + 0: 0 + 8.6: _ZN9oceanbase5share6ObLSIDD2Ev:1136 + 0: _ZN9oceanbase5share6ObLSID5resetEv:1136 + 0: 284 +_ZN9oceanbase7storage20ObTableAccessContextD1Ev:16040:295 + 1: 288 + 2: 288 + 3: 0 + 4: 0 + 5: 0 + 8.1: 284 + 8.2: 0 + 8: _ZN9oceanbase7storage16ObTableStoreStatD2Ev:0 + 0.1: _ZN9oceanbase5share6ObLSIDD2Ev:0 + 0: _ZN9oceanbase5share6ObLSID5resetEv:0 + 0: 0 + 8.1: _ZN9oceanbase7storage16ObTableStoreStatD2Ev:3124 + 0.1: _ZN9oceanbase5share6ObLSIDD2Ev:3124 + 0: _ZN9oceanbase5share6ObLSID5resetEv:3124 + 0: 284 + 8.4: _ZN9oceanbase5share6ObLSIDD2Ev:0 + 0: _ZN9oceanbase5share6ObLSID5resetEv:0 + 0: 0 + 8.6: _ZN9oceanbase5share6ObLSIDD2Ev:1136 + 0: _ZN9oceanbase5share6ObLSID5resetEv:1136 + 0: 284 +_ZNK9oceanbase12blocksstable19ObFuseRowCacheValue4sizeEv:15960:1172 + 1: 1140 + 2: 1140 +_ZN9oceanbase3sql13ObDASDeleteOp14init_task_infoEv:15912:245 + 1: 234 + 4: 234 + 4.1: 234 + 7: 234 + 3: _ZNK9oceanbase3sql16ObDASWriteBuffer9is_initedEv:1872 + 0: 234 + 4.1: _ZN9oceanbase3sql16ObDASWriteBuffer4initERNS_6common12ObIAllocatorEmPKcl:9126 + 6: 234 + 8: 234 + 9: 234 + 7: _ZN9oceanbase3lib7ObLabelaSIPKcvEERS1_T_:3276 + 2: 234 +_ZN9oceanbase7storage18ObSSTableRowGetterC2Ev:15904:83 + 2: 77 + 4: 77 + 8: 77 _ZN9oceanbase7storage21ObIndexTreePrefetcherC2Ev:77 + 9: 85 _ZN9oceanbase12blocksstable18ObMacroBlockReaderC1Ev:86 + 12: 77 + 13: 81 + 14: 81 + 14.3: 0 + 14.4: 0 + 14.5: 0 + 1: _ZN9oceanbase7storage18ObStoreRowIteratorC2Ev:1463 + 1: 77 + 2: 77 + 3: 77 + 11: _ZN9oceanbase7storage19ObSSTableReadHandleC2Ev:7898 + 1: 77 + 5: 77 + 7: 77 + 9: 81 + 8: _ZN9oceanbase12blocksstable16ObRowValueHandleC2Ev:2849 + 0: 77 _ZN9oceanbase6common15ObKVCacheHandleC1Ev:81 +_ZN9oceanbase11transaction12ObTxMDSCache5resetEv:15870:251 + 1: 240 + 3: 240 + 4: 240 + 6: 263 + 4: _ZN9oceanbase6common6ObListINS_11transaction14ObTxBufferNodeENS2_24TransModulePageAllocatorEE5resetEv:6165 + 2: _ZN9oceanbase6common6ObListINS_11transaction14ObTxBufferNodeENS2_24TransModulePageAllocatorEE5clearEv:6165 + 2: 240 + 3.1: 240 + 4: 1 + 5: 1 + 8: 263 + 9: 263 + 10: 263 + 5.1: _ZN9oceanbase6common4list8IteratorINS0_6ObListINS_11transaction14ObTxBufferNodeENS4_24TransModulePageAllocatorEEEEaSERKS8_:1052 + 2: 263 +_ZNK9oceanbase12blocksstable17ObFuseRowCacheKey4sizeEv:15862:1187 + 1: 1133 + 2: 1133 +_ZNK9oceanbase6common16ObArenaAllocator5totalEv:15760:1601 + 0: 1576 + 0: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE5totalEv:6304 + 0: 1576 +_ZN9oceanbase11transaction10ObTransCtx8get_stc_Ev:15738:265 + 0: 0 + 1: 258 + 2: 258 + 3: 0 + 4.1: 0 + 4.3: 0 + 4.4: 0 + 4.6: 0 + 4.7: 0 + 4.8: 0 + 4.9: 0 + 4.18: 0 + 6: 258 + 3: _ZN9oceanbase11transaction11MonotonicTs12current_timeEv:0 + 0: 0 + 4.3: _ZN9oceanbase3lib20is_trace_log_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:0 + 2: 0 + 4.9: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EE12check_unlockEv:0 + 2: 0 + 3: _ZN9oceanbase3lib7ObMutex6unlockEv:0 + 0: 0 + 4.14: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EE10check_lockEv:0 + 2: 0 + 3: _ZN9oceanbase3lib7ObMutex4lockEv:0 + 0: 0 + 4.16: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EE10get_bufferEv:0 + 0: 0 + 4.17: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EE14get_buffer_posEv:0 + 0: 0 +_ZN9oceanbase8memtable13ObMemtableCtx19get_query_allocatorEv:15652:1229 + 1: 1204 + 2: 1204 +_ZZN9oceanbase11transaction14ObPartTransCtx18submit_commit_log_EvENK5$_358clEPKc.93feb755617c21c32b229b78773c290c:15601:234 + 0: 223 + 0.1: 0 + 0.2: 223 + 0.3: 219 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:219 + 0.7: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:3723 + 2: 219 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKNS_4palf3LSNELb0EEC2EPKcS5_:0 + 0: 0 + 0.5: _ZNK9oceanbase11transaction15ObTransHashLinkINS0_10ObTransCtxEE7get_refEv:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIiLb1EEC2EPKcOKi:0 + 0: 0 +_ZN9oceanbase7storage8ObTxData5resetEv:15562:278 + 1: 251 + 4: 251 + 2: _ZN9oceanbase7storage14ObTxCommitData5resetEv:6777 + 3: 251 + 4: 251 + 6: 251 + 7: 251 + 2: _ZN9oceanbase11transaction9ObTransIDaSERKl:1255 + 1: 251 + 3: _ZN9oceanbase7storage16ObUndoStatusList5resetEv:4769 + 2: 251 + 3: 251 + 4: _ZN9oceanbase6common15ObSmallSpinLockIhLl0ELl500ELl100EE6unlockEv:2008 + 2: 251 + 3: 251 +_ZN9oceanbase7storage16ObTableIterParamD2Ev:15540:301 + 1: 272 + 2: 272 _ZN9oceanbase7storage14ObTabletHandle5resetEv:273 + 3: 270 _ZN9oceanbase7storage14ObTabletHandleD1Ev:285 + 3.1: 0 + 3.2: 0 + 3.3: _ZN9oceanbase6common10ObTabletIDD2Ev:2080 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:2080 + 0: 260 + 3.4: _ZN9oceanbase6common10ObTabletIDD2Ev:0 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:0 + 0: 0 +_ZN9oceanbase7storage16ObTableIterParamD1Ev:15540:301 + 1: 272 + 2: 272 _ZN9oceanbase7storage14ObTabletHandle5resetEv:273 + 3: 270 _ZN9oceanbase7storage14ObTabletHandleD1Ev:285 + 3.1: 0 + 3.2: 0 + 3.3: _ZN9oceanbase6common10ObTabletIDD2Ev:2080 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:2080 + 0: 260 + 3.4: _ZN9oceanbase6common10ObTabletIDD2Ev:0 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:0 + 0: 0 +_ZN9oceanbase11transaction16ObTransStatistic21add_trans_commit_timeEml:15491:284 + 1: 265 + 3.2: 283 + 3.3: 0 + 3.4: 0 + 3.5: 0 + 3.6: 0 + 3.10: 0 + 3.11: 0 + 3.12: 0 + 5.3: 294 + 2: _ZN9oceanbase6common20ObTenantStatEstGuardC2Em:4633 + 3: 273 + 4: 0 + 5: 0 + 7: 0 + 3: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:2995 + 2: 265 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:299 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:1092 + 2: 273 + 6: _ZN9oceanbase6common17ObSessionDIBuffer13get_tenant_idEv:0 + 3: 0 + 4: 0 + 8: _ZN9oceanbase6common17ObSessionDIBuffer13switch_tenantEm:0 + 4: 0 + 6: 0 + 8: 0 + 10: 0 + 3.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:1405 + 2: 273 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:275 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:1132 + 2: 283 + 5.3: _ZN9oceanbase6common20ObTenantStatEstGuardD2Ev:1200 + 2: 300 + 3.1: 0 + 3: _ZN9oceanbase6common17ObSessionDIBuffer13switch_tenantEm:0 + 3: 0 + 4: 0 + 6: 0 + 8: 0 + 10: 0 + 5.4: _ZN9oceanbase6common20ObTenantStatEstGuardD2Ev:0 + 2: 0 + 3.1: 0 + 3: _ZN9oceanbase6common17ObSessionDIBuffer13switch_tenantEm:0 + 3: 0 + 4: 0 + 6: 0 + 8: 0 + 10: 0 +_ZN9oceanbase8memtable13ObMemtableCtx7dec_refEv:15480:1106 + 1: 1032 + 2: 1032 + 3: 1032 +_ZN9oceanbase11transaction16ObTransStatistic18add_clog_sync_timeEml:15347:261 + 1: 261 + 3.2: 282 + 3.3: 0 + 3.4: 0 + 3.5: 0 + 3.6: 0 + 3.10: 0 + 3.11: 0 + 3.12: 0 + 5.3: 291 + 2: _ZN9oceanbase6common20ObTenantStatEstGuardC2Em:4613 + 3: 272 + 4: 0 + 5: 0 + 7: 0 + 3: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:2981 + 2: 261 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:261 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:1088 + 2: 272 + 6: _ZN9oceanbase6common17ObSessionDIBuffer13get_tenant_idEv:0 + 3: 0 + 4: 0 + 8: _ZN9oceanbase6common17ObSessionDIBuffer13switch_tenantEm:0 + 4: 0 + 6: 0 + 8: 0 + 10: 0 + 3.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:1400 + 2: 272 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:281 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:1128 + 2: 282 + 5.3: _ZN9oceanbase6common20ObTenantStatEstGuardD2Ev:1180 + 2: 295 + 3.1: 0 + 3: _ZN9oceanbase6common17ObSessionDIBuffer13switch_tenantEm:0 + 3: 0 + 4: 0 + 6: 0 + 8: 0 + 10: 0 + 5.4: _ZN9oceanbase6common20ObTenantStatEstGuardD2Ev:0 + 2: 0 + 3.1: 0 + 3: _ZN9oceanbase6common17ObSessionDIBuffer13switch_tenantEm:0 + 3: 0 + 4: 0 + 6: 0 + 8: 0 + 10: 0 +_ZThn56_N9oceanbase8observer8ObMPBase14send_ok_packetERNS_3sql16ObSQLSessionInfoERNS0_10ObOKPParamEPNS_7obmysql13ObMySQLPacketE:15336:1323 + 2: 1278 _ZN9oceanbase8observer16ObMPPacketSender14send_ok_packetERNS_3sql16ObSQLSessionInfoERNS0_10ObOKPParamEPNS_7obmysql13ObMySQLPacketE:1283 +_ZNK9oceanbase4palf3LSNgtERKS1_:15330:1084 + 1: 1022 + 2: 1022 + 2: _ZNK9oceanbase4palf3LSNltERKS1_:9198 + 2: 1022 +_ZN9oceanbase7storage19ObMemtableMgrHandleC2Ev:15312:1309 + 2: 1276 + 3: 1276 + 4: 1276 +_ZN9oceanbase7storage19ObMemtableMgrHandleC1Ev:15312:1309 + 2: 1276 + 3: 1276 + 4: 1276 +_ZN9oceanbase6common13ObSEArrayImplINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EE5reuseEv:15309:743 + 1: 729 + 8: 729 + 9: 729 + 10: 729 +_ZNK9oceanbase7storage15ObRelativeTable18get_schema_versionEv:15300:968 + 1: 900 + 2: 900 + 2: _ZNK9oceanbase5share6schema18ObTableSchemaParam18get_schema_versionEv:3600 + 0: 900 +_ZN9oceanbase8memtable18ObTransCallbackMgr20inc_pending_log_sizeEl:15300:251 + 1: 225 + 2: 225 + 3: 225 + 4: 225 + 5: 225 + 6: 225 + 8: 0 + 9: 0 + 10.1: 0 + 11.1: 0 + 12.1: 0 + 14.1: 0 + 19: 225 +_ZN9oceanbase6common16ObNewRowIterator13get_next_rowsERPNS0_8ObNewRowERl:15289:508 + 1: 500 + 2: 500 _ZN9oceanbase3sql16ObDASDMLIterator12get_next_rowERPNS_6common8ObNewRowE:503 + 3: 517 + 8: 517 +_ZN9oceanbase8memtable13ObMemtableCtx16inc_unsynced_cntEv:15270:1079 + 1: 1018 + 2.1: 1018 + 3: 1018 +_ZN9oceanbase6common9ObDFMUtil28parse_datetime_format_stringERKNS0_8ObStringERNS0_8ObIArrayINS0_9ObDFMElemEEEb:15250:15 + 2: 15 + 3: 15 + 4: 15 + 5: 0 + 6.1: 0 + 13.1: 58 + 13.3: 58 + 17: 62 + 20: 62 + 21: 46 + 21.1: 44 + 21.2: 46 + 24: 62 _ZN9oceanbase6common9ObDFMUtil14parse_one_elemERNS0_13ObDFMParseCtxERNS0_9ObDFMElemEb:63 + 25.1: 0 + 26.1: 58 _ZN9oceanbase6common13ObSEArrayImplINS0_9ObDFMElemELl10ENS0_19ModulePageAllocatorELb0EE9push_backERKS2_:57 + 27.1: 0 + 35: 10 + 4: _ZNK9oceanbase6common8ObString6lengthEv:120 + 0: 15 + 7.1: _ZNK9oceanbase6common8ObString5emptyEv:330 + 2: 15 + 10.2: _ZN9oceanbase6common13ObDFMParseCtxC2EPKcl:360 + 1: 15 + 2: 15 + 3: 15 + 4: 15 + 5: 15 + 15: _ZN9oceanbase6common9ObDFMUtil19skip_separate_charsERNS0_13ObDFMParseCtxEll:7651 + 5.1: 61 + 6.1: 107 + 8: 46 + 6.1: _ZN9oceanbase6common9ObDFMUtil13is_split_charEc:3256 + 3.1: 107 + 6.1: 107 + 10: _ZN9oceanbase6common13ObDFMParseCtx6updateEl:868 + 2: 62 + 3: 62 + 18: _ZN9oceanbase6common9ObDFMElemC2Ev:1240 + 1: 62 + 2: 62 + 3: 62 + 20: _ZN9oceanbase6common13ObDFMParseCtx14get_parsed_lenEv:434 + 2: 62 +_ZN9oceanbase6common13ObLinkHashMapINS_5share6ObLSIDENS_11transaction12ObLSTxCtxMgrENS4_17ObLSTxCtxMgrAllocENS0_9RefHandleELl8EE8dec_urefEPNS0_12LinkHashNodeIS3_EE:15184:518 + 1: 501 + 2: 501 + 3: 501 + 7: 523 + 3: _ZN9oceanbase6common9RefHandle3decEPNS0_7RefNodeE:2505 + 0: 501 + 4: _ZN9oceanbase6common13ObLinkHashMapINS_5share6ObLSIDENS_11transaction12ObLSTxCtxMgrENS4_17ObLSTxCtxMgrAllocENS0_9RefHandleELl8EE13on_uref_cleanEPNS0_12LinkHashNodeIS3_EE:0 + 3: 0 + 3: _ZN9oceanbase6common13ObLinkHashMapINS_5share6ObLSIDENS_11transaction12ObLSTxCtxMgrENS4_17ObLSTxCtxMgrAllocENS0_9RefHandleELl8EE10free_valueEPS5_:0 + 2: _ZN9oceanbase11transaction17ObLSTxCtxMgrAlloc10free_valueEPNS0_12ObLSTxCtxMgrE:0 + 2: 0 + 3.1: 0 + 4: 0 + 4: _ZN9oceanbase6common13ObLinkHashMapINS_5share6ObLSIDENS_11transaction12ObLSTxCtxMgrENS4_17ObLSTxCtxMgrAllocENS0_9RefHandleELl8EE8dec_hrefEPNS0_12LinkHashNodeIS3_EE:0 + 3: 0 + 3: _ZN9oceanbase6common7RefNode5xhrefEi:0 + 0: 0 + 4: _ZN9oceanbase11transaction17ObLSTxCtxMgrAlloc9free_nodeEPNS_6common12LinkHashNodeINS_5share6ObLSIDEEE:0 + 3: 0 + 3.3: 0 + 3: _ZN9oceanbase3lib7ObLabelC2IPKcEERKT_:0 + 2: _ZN9oceanbase3lib7ObLabelaSIPKcvEERS1_T_:0 + 2: 0 + 3.1: _ZN9oceanbase6common21ObFixedClassAllocatorINS0_12LinkHashNodeINS_5share6ObLSIDEEEE4freeEPS5_:0 + 4: 0 + 3: _ZN9oceanbase6common12LinkHashNodeINS_5share6ObLSIDEED2Ev:0 + 0: _ZN9oceanbase6common11KeyHashNodeINS_5share6ObLSIDEED2Ev:0 + 0: _ZN9oceanbase5share6ObLSIDD2Ev:0 + 0: _ZN9oceanbase5share6ObLSID5resetEv:0 + 0: 0 + 0.1: _ZN9oceanbase6common6ObLinkD2Ev:0 + 0: 0 + 0.1: _ZN9oceanbase6common7RefNodeD2Ev:0 + 0: _ZN9oceanbase6common6ObLinkD2Ev:0 + 0: 0 +_ZN9oceanbase11transaction16ObTransStatistic15add_local_countEml:15165:270 + 1: 257 + 3.2: 274 + 3.3: 0 + 3.4: 0 + 3.5: 0 + 3.6: 0 + 3.10: 0 + 3.11: 0 + 3.12: 0 + 4.3: 301 + 2: _ZN9oceanbase6common20ObTenantStatEstGuardC2Em:4449 + 3: 262 + 4: 0 + 5: 0 + 7: 0 + 3: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:2877 + 2: 257 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:260 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:1048 + 2: 262 + 6: _ZN9oceanbase6common17ObSessionDIBuffer13get_tenant_idEv:0 + 3: 0 + 4: 0 + 8: _ZN9oceanbase6common17ObSessionDIBuffer13switch_tenantEm:0 + 4: 0 + 6: 0 + 8: 0 + 10: 0 + 3.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:1358 + 2: 262 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:274 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:1096 + 2: 274 + 4.3: _ZN9oceanbase6common20ObTenantStatEstGuardD2Ev:1220 + 2: 305 + 3.1: 0 + 3: _ZN9oceanbase6common17ObSessionDIBuffer13switch_tenantEm:0 + 3: 0 + 4: 0 + 6: 0 + 8: 0 + 10: 0 + 4.4: _ZN9oceanbase6common20ObTenantStatEstGuardD2Ev:0 + 2: 0 + 3.1: 0 + 3: _ZN9oceanbase6common17ObSessionDIBuffer13switch_tenantEm:0 + 3: 0 + 4: 0 + 6: 0 + 8: 0 + 10: 0 +_ZN9oceanbase8keybtree18BtreeNodeAllocator3popERPNS0_9BtreeNodeE:15148:19 + 1: 19 + 3: 19 + 6: 1 + 9: 1 + 9.1: 6 + 10: 6 + 14: 0 + 15: 0 + 19: 0 + 23.1: 0 + 23.3: 0 + 24: 0 + 25: 0 + 26: 0 + 27: 0 + 32: 19 + 2: _ZN9oceanbase8keybtree18BtreeNodeAllocator7pop_idxEv:1102 + 3: 19 + 4: 0 + 6: 19 + 4: _ZN9oceanbase6common7icpu_idEv:0 + 2: _ZN9oceanbase6common12sched_getcpuEv:0 + 0: 0 + 0: _ZN9oceanbase6common8get_itidEv:0 + 4: 0 + 5: 0 + 6: 0 + 8: 0 + 3: _ZN9oceanbase8keybtree13BtreeNodeList3popEv:969 + 2: 19 + 4: 19 + 4.1: 19 + 4.3: 19 + 3: _ZN9oceanbase8keybtree13BtreeNodeList9load_lockEv:190 + 3.1: 19 + 4: 0 + 10: _ZN9oceanbase8keybtree9BtreeNodeC2Ev:11940 + 0: 6 + 0.1: _ZN9oceanbase8keybtree11MultibitSetC2Ev:42 + 0: 6 + 0.3: _ZN9oceanbase8keybtree7BtreeKVC2Ev:11700 + 0: _ZN9oceanbase8memtable20ObStoreRowkeyWrapperC2Ev:11700 + 0: 90 + 0.14: _ZN9oceanbase8keybtree6RWLockC2Ev:60 + 0: 6 + 18: _ZN9oceanbase8keybtree13BtreeNodeList9bulk_pushEPNS0_9BtreeNodeES3_:0 + 2: 0 + 3: 0 + 1: _ZN9oceanbase8keybtree13BtreeNodeList9load_lockEv:0 + 3.1: 0 + 4: 0 + 28: _ZN9oceanbase8keybtree13BtreeNodeList9bulk_pushEPNS0_9BtreeNodeES3_:0 + 2: 0 + 3: 0 + 1: _ZN9oceanbase8keybtree13BtreeNodeList9load_lockEv:0 + 3.1: 0 + 4: 0 +_ZZN9oceanbase11transaction14ObTransService13do_commit_tx_ERNS0_8ObTxDescElRNS0_13ObITxCallbackERlENK5$_919clEPKc.93feb755617c21c32b229b78773c290c:15110:242 + 0: 258 + 0.1: 0 + 0.2: 258 + 0.3: 236 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:262 + 0.5: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:4012 + 2: 236 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKNS_11transaction8ObTxDescELb0EEC2EPKcS5_:0 + 0: 0 +_ZN9oceanbase12blocksstable23ObIMicroBlockRowScanner18inner_get_next_rowERPKNS0_10ObDatumRowE:15098:102 + 1: 95 + 2: 95 + 3: 95 + 4: 96 + 8.1: 96 + 8.3: 1 + 9: 0 + 11.1: 0 + 15: 92 _ZThn320_N9oceanbase12blocksstable18ObMicroBlockReader7get_rowElRNS0_10ObDatumRowE:100 + 16.1: 0 + 18: 80 + 19: 80 + 22: 80 + 22.1: 80 + 23: 80 + 24: 80 + 27: 85 + 4: _ZNK9oceanbase12blocksstable23ObIMicroBlockRowScanner12end_of_blockEv:2863 + 3: 95 + 6: 95 + 7: 98 + 11: 0 + 11.1: 0 + 8.2: _ZNK9oceanbase7storage15ObBlockRowStore13can_blockscanEv:4 + 0: 1 +_ZN9oceanbase11transaction16ObTransStatistic19add_clog_sync_countEml:15056:283 + 1: 261 + 3.2: 268 + 3.3: 0 + 3.4: 0 + 3.5: 0 + 3.6: 0 + 3.10: 0 + 3.11: 0 + 3.12: 0 + 5.3: 258 + 2: _ZN9oceanbase6common20ObTenantStatEstGuardC2Em:4773 + 3: 282 + 4: 0 + 5: 0 + 7: 0 + 3: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:3081 + 2: 261 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:273 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:1128 + 2: 282 + 6: _ZN9oceanbase6common17ObSessionDIBuffer13get_tenant_idEv:0 + 3: 0 + 4: 0 + 8: _ZN9oceanbase6common17ObSessionDIBuffer13switch_tenantEm:0 + 4: 0 + 6: 0 + 8: 0 + 10: 0 + 3.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:1354 + 2: 282 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:283 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:1072 + 2: 268 + 5.3: _ZN9oceanbase6common20ObTenantStatEstGuardD2Ev:1056 + 2: 264 + 3.1: 0 + 3: _ZN9oceanbase6common17ObSessionDIBuffer13switch_tenantEm:0 + 3: 0 + 4: 0 + 6: 0 + 8: 0 + 10: 0 + 5.4: _ZN9oceanbase6common20ObTenantStatEstGuardD2Ev:0 + 2: 0 + 3.1: 0 + 3: _ZN9oceanbase6common17ObSessionDIBuffer13switch_tenantEm:0 + 3: 0 + 4: 0 + 6: 0 + 8: 0 + 10: 0 +_ZN9oceanbase8memtable13ObMemtableCtx18get_tx_table_guardEv:15015:1232 + 0: 1155 +_ZN9oceanbase6common18ObSimpleThreadPool4run1Ev:15000:0 + 1: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 12.1: 151 + 12.6: 152 + 13: 152 + 14: 152 + 15: 152 + 17: 0 + 21.1: 0 + 22: 0 + 23: 0 + 27.1: 0 + 28: 0 + 30: 0 + 34: 0 + 36: 0 + 37: 0 + 38: 0 + 40: 0 + 41: 0 + 46: 0 + 47: 0 + 48: 0 + 49: 0 + 50: 0 + 51: 0 + 52: 0 + 52.1: 0 + 53: 0 + 54: 0 + 58.1: 0 + 59: 0 + 60: 0 + 61: 0 + 61.1: 0 + 63: 0 + 69: 0 + 70: 0 + 70.1: 0 + 71: 0 + 71.1: 0 + 71.4: 0 + 72.1: 0 + 74.1: 0 + 75: 0 + 75.1: 0 + 76: 0 + 76.1: 0 + 76.4: 0 + 77.1: 0 + 82: 0 + 83: 0 + 88: 0 + 89.1: 0 + 90: 0 + 93: 0 + 3: _ZNK9oceanbase3lib7Threads14get_thread_idxEv:0 + 0: 0 + 12.3: _ZN9oceanbase3lib6Thread7currentEv:2888 + 3: 152 + 12.8: _ZNK9oceanbase3lib6Thread12has_set_stopEv:608 + 2: 152 + 17: _ZNK9oceanbase6common18ObAdaptiveStrategy8is_validEv:1824 + 2: 152 + 3: 0 + 4: 0 + 5: 0 +_ZNK9oceanbase7storage9ObFreezer9is_freezeEj:14991:827 + 1: 789 + 2: 789 + 3: 789 + 5: 789 +_ZN9oceanbase3sql17ObSqlTransControl22reset_session_tx_stateEPNS0_16ObSQLSessionInfoEb:14988:247 + 1: 227 + 2: 227 + 4: 227 + 5: 1 + 6: 1 + 7.1: 1 + 10: 227 + 10.2: 227 _ZN9oceanbase3sql17ObSqlTransControl22reset_session_tx_stateEPNS0_18ObBasicSessionInfoEb:253 + 11: 296 + 11.3: 296 + 4: _ZNK9oceanbase3sql16ObSQLSessionInfo23has_tx_level_temp_tableEv:1589 + 1: 227 +_ZZN9oceanbase10logservice13ObApplyStatus19try_handle_cb_queueEPNS0_23ObApplyServiceQueueTaskERbENK4$_32clEPKc.d3a41d52a3cfae37a6a74713ee8e7132:14960:180 + 0: 226 + 0.1: 0 + 0.2: 226 + 0.3: 174 _ZN9oceanbase6common8ObLogger13need_to_printEmi:175 + 0.12: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:2958 + 2: 174 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKNS_4palf3LSNELb0EEC2EPKcS5_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.7: _ZN9oceanbase6common7ObLogKVIPKvLb1EEC2EPKcOKS3_:0 + 0: 0 + 0.8: _ZN9oceanbase6common20ObLogPrintPointerCntIPNS_10logservice23ObApplyServiceQueueTaskEEC2ES4_:0 + 0: 0 + 0.9: _ZN9oceanbase6common7ObLogKVINS0_20ObLogPrintPointerCntIPNS_10logservice23ObApplyServiceQueueTaskEEELb1EEC2EPKcOKS6_:0 + 0: 0 + 0.10: _ZN9oceanbase6common20ObLogPrintPointerCntIPNS_10logservice13ObApplyStatusEEC2ES4_:0 + 0: 0 + 0.11: _ZN9oceanbase6common7ObLogKVINS0_20ObLogPrintPointerCntIPNS_10logservice13ObApplyStatusEEELb1EEC2EPKcOKS6_:0 + 0: 0 +_ZN9oceanbase11transaction9tablelock12ObLockMemCtx4initERNS_7storage15ObTableHandleV2E:14932:303 + 1: 293 + 3: 305 _ZNK9oceanbase7storage15ObTableHandleV28is_validEv:311 + 5.1: 0 + 7: 305 _ZN9oceanbase7storage15ObTableHandleV2aSERKS1_:313 + 9: 299 +_ZN9oceanbase11transaction16ObTransStatistic22add_commit_trans_countEml:14895:249 + 1: 243 + 3.2: 270 + 3.3: 0 + 3.4: 0 + 3.5: 0 + 3.6: 0 + 3.10: 0 + 3.11: 0 + 3.12: 0 + 4.3: 283 + 2: _ZN9oceanbase6common20ObTenantStatEstGuardC2Em:4675 + 3: 277 + 4: 0 + 5: 0 + 7: 0 + 3: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:3013 + 2: 243 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:275 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:1108 + 2: 277 + 6: _ZN9oceanbase6common17ObSessionDIBuffer13get_tenant_idEv:0 + 3: 0 + 4: 0 + 8: _ZN9oceanbase6common17ObSessionDIBuffer13switch_tenantEm:0 + 4: 0 + 6: 0 + 8: 0 + 10: 0 + 3.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:1357 + 2: 277 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:277 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:1080 + 2: 270 + 4.3: _ZN9oceanbase6common20ObTenantStatEstGuardD2Ev:1084 + 2: 271 + 3.1: 0 + 3: _ZN9oceanbase6common17ObSessionDIBuffer13switch_tenantEm:0 + 3: 0 + 4: 0 + 6: 0 + 8: 0 + 10: 0 + 4.4: _ZN9oceanbase6common20ObTenantStatEstGuardD2Ev:0 + 2: 0 + 3.1: 0 + 3: _ZN9oceanbase6common17ObSessionDIBuffer13switch_tenantEm:0 + 3: 0 + 4: 0 + 6: 0 + 8: 0 + 10: 0 +_ZN9oceanbase8memtable13ObMemtableCtx19inc_unsubmitted_cntEv:14850:1058 + 1: 990 + 2.1: 990 + 3: 990 +_ZN9oceanbase8memtable10ObMemtable16inc_unsynced_cntEv:14790:1060 + 1: 986 + 2: 986 + 4: 986 +_ZN9oceanbase11transaction16ObTransStatistic21add_clog_submit_countEml:14790:267 + 1: 262 + 3.2: 260 + 3.3: 0 + 3.4: 0 + 3.5: 0 + 3.6: 0 + 3.10: 0 + 3.11: 0 + 3.12: 0 + 5.3: 282 + 2: _ZN9oceanbase6common20ObTenantStatEstGuardC2Em:4358 + 3: 256 + 4: 0 + 5: 0 + 7: 0 + 3: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:2822 + 2: 262 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:279 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:1024 + 2: 256 + 6: _ZN9oceanbase6common17ObSessionDIBuffer13get_tenant_idEv:0 + 3: 0 + 4: 0 + 8: _ZN9oceanbase6common17ObSessionDIBuffer13switch_tenantEm:0 + 4: 0 + 6: 0 + 8: 0 + 10: 0 + 3.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:1296 + 2: 256 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:257 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:1040 + 2: 260 + 5.3: _ZN9oceanbase6common20ObTenantStatEstGuardD2Ev:1116 + 2: 279 + 3.1: 0 + 3: _ZN9oceanbase6common17ObSessionDIBuffer13switch_tenantEm:0 + 3: 0 + 4: 0 + 6: 0 + 8: 0 + 10: 0 + 5.4: _ZN9oceanbase6common20ObTenantStatEstGuardD2Ev:0 + 2: 0 + 3.1: 0 + 3: _ZN9oceanbase6common17ObSessionDIBuffer13switch_tenantEm:0 + 3: 0 + 4: 0 + 6: 0 + 8: 0 + 10: 0 +_ZZN9oceanbase11transaction11ObTxDescMgr3getERKNS0_9ObTransIDERPNS0_8ObTxDescEENK6$_1085clEPKc.6c6f3ed9193054173c335adef4549614:14766:242 + 0: 237 + 0.1: 0 + 0.2: 222 + 0.3: 237 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:240 + 0.7: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:4029 + 2: 237 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKNS_11transaction9ObTransIDELb0EEC2EPKcS5_:0 + 0: 0 + 0.5: _ZN9oceanbase6common20ObLogPrintPointerCntIPNS_11transaction8ObTxDescEEC2ES4_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVINS0_20ObLogPrintPointerCntIPNS_11transaction8ObTxDescEEELb1EEC2EPKcOKS6_:0 + 0: 0 +_ZN9oceanbase8memtable13ObMemtableCtx7inc_refEv:14760:1020 + 1: 984 + 2: 984 + 3: 984 +_ZNK9oceanbase8memtable17ObMvccRowCallback13get_tablet_idEv:14672:1079 + 1: 1048 + 2: 1048 + 2.1: _ZNK9oceanbase7storage8ObITable8TableKey13get_tablet_idEv:4192 + 0: 1048 +_ZN9oceanbase8memtable16ObQueryAllocator4freeEPv:14664:632 + 2: 611 + 5.1: 611 + 6: 611 _ZN9oceanbase6common15ObFIFOAllocator4freeEPv:630 + 8: 0 +_ZN9oceanbase5share14ObSysVariables7get_minEl:14490:504 + 0: 483 +_ZN9oceanbase7storage21ObIndexTreePrefetcher4initEiRNS_12blocksstable9ObSSTableERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextEPKv:14458:90 + 6: 84 + 8: 84 + 9: 84 + 10: 0 + 11.1: 0 + 12.1: 82 + 13: 0 + 14.1: 0 + 15.1: 82 _ZN9oceanbase7storage21ObMicroBlockHandleMgr4initEbbRNS_6common12ObIAllocatorE:84 + 16.1: 0 + 18: 79 + 19: 79 + 20: 79 + 21: 79 + 22: 85 _ZNK9oceanbase7storage8ObITable16is_major_sstableEv:86 + 22.1: 0 + 22.3: 84 + 23: 84 _ZN9oceanbase12blocksstable19ObStorageCacheSuite12get_instanceEv:90 + 24: 82 _ZN9oceanbase12blocksstable19ObStorageCacheSuite12get_instanceEv:82 + 25: 79 + 27: 74 + 21: _ZNK9oceanbase7storage16ObTableIterParam18get_full_read_infoEv:316 + 2: 79 + 21.1: _ZNK9oceanbase7storage15ObTableReadInfo19get_index_read_infoEv:553 + 0: 79 + 22.4: _ZNK9oceanbase7storage8ObITable8TableKey14get_end_log_tsEv:425 + 0: 85 + 23.1: _ZN9oceanbase12blocksstable19ObStorageCacheSuite15get_block_cacheEv:492 + 0: 82 + 24.1: _ZN9oceanbase12blocksstable19ObStorageCacheSuite21get_index_block_cacheEv:316 + 0: 79 +_ZZN9oceanbase3sql16ObHashDistinctOp19do_unblock_distinctEvENK5$_508clEPKc.ae889f3027d8490103b30de3c389dd2f:14444:251 + 0: 244 + 0.1: 0 + 0.2: 244 + 0.3: 240 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:257 + 0.5: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:4080 + 2: 240 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase11transaction15ObTsSourceGuardD2Ev:14393:501 + 1: 497 + 2: 497 + 2.1: 497 + 3.1: 0 + 5: 487 + 3: _ZN9oceanbase11transaction14ObTsSourceInfo17revert_ts_source_ERNS0_15ObTsSourceGuardE:3976 + 3: 497 _ZN9oceanbase5share11ObQSyncLock8rdunlockEv:517 +_ZN9oceanbase11transaction15ObTsSourceGuardD1Ev:14393:501 + 1: 497 + 2: 497 + 2.1: 497 + 3.1: 0 + 5: 487 + 3: _ZN9oceanbase11transaction14ObTsSourceInfo17revert_ts_source_ERNS0_15ObTsSourceGuardE:3976 + 3: 497 _ZN9oceanbase5share11ObQSyncLock8rdunlockEv:517 +_ZZN9oceanbase3sql15ObTableInsertOp23get_next_row_from_childEvENK5$_380clEPKc.d0cfd61ae46f76aef14238838f0240b8:14390:256 + 0: 248 + 0.1: 0 + 0.2: 248 + 0.3: 238 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:241 + 0.6: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:4046 + 2: 238 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.1: _ZNK9oceanbase3sql10ObOperator8get_specEv:0 + 0: 0 + 0.4: _ZN9oceanbase3sql17ObToStringExprRowC2ERNS0_9ObEvalCtxERKNS_6common8ObIArrayIPNS0_6ObExprEEE:0 + 1: 0 + 0.5: _ZN9oceanbase6common7ObLogKVINS_3sql17ObToStringExprRowELb1EEC2EPKcOKS3_:0 + 0: 0 +_ZN9oceanbase6common21ObFixedClassAllocatorINS_11transaction8ObTxDescEE3getERKNS_3lib7ObLabelE:14384:253 + 1: 248 + 3.1: 248 + 4: 0 + 5: 0 + 5.2: 0 + 5.6: 0 + 6: 0 + 8: 0 + 10: 0 + 17: 248 + 6: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 +_ZN9oceanbase11transaction13ObTxBaseLogCb7set_lsnERKNS_4palf3LSNE:14351:269 + 1: 263 + 2: 263 + 3: 270 _ZNK9oceanbase4palf3LSN8is_validEv:280 + 4: 0 + 5.1: 0 + 7: 270 _ZN9oceanbase4palf3LSNaSERKS1_:280 + 9: 267 +_ZN9oceanbase3sql6ObStmt17is_dml_write_stmtENS0_4stmt8StmtTypeE:14280:573 + 1: 564 + 2.1: 579 + 3: 579 +_ZN9oceanbase6common14ObKVCacheStore14add_handle_refEPNS0_18ObKVMemBlockHandleEj:14256:568 + 3: 544 + 4: 560 _ZN9oceanbase6common17ObAtomicReference29check_seq_num_and_inc_ref_cntEj:565 + 6: 560 +_ZN9oceanbase6common13ObSEArrayImplIPNS_3sql6ObExprELl4ENS0_19ModulePageAllocatorELb0EE7destroyEv:14202:273 + 1: 263 + 9: 263 + 11: 0 + 13: 263 + 15: 263 + 24: 263 + 25: 263 + 10: _ZN9oceanbase6common13ObSEArrayImplIPNS_3sql6ObExprELl4ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: 0 +_ZN9oceanbase11transaction16ObTransStatistic21add_trans_start_countEml:14190:264 + 1: 256 + 3.2: 253 + 3.3: 0 + 3.4: 0 + 3.5: 0 + 3.6: 0 + 3.10: 0 + 3.11: 0 + 3.12: 0 + 4.3: 273 + 2: _ZN9oceanbase6common20ObTenantStatEstGuardC2Em:4064 + 3: 238 + 4: 0 + 5: 0 + 7: 0 + 3: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:2636 + 2: 256 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:256 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:952 + 2: 238 + 6: _ZN9oceanbase6common17ObSessionDIBuffer13get_tenant_idEv:0 + 3: 0 + 4: 0 + 8: _ZN9oceanbase6common17ObSessionDIBuffer13switch_tenantEm:0 + 4: 0 + 6: 0 + 8: 0 + 10: 0 + 3.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:1250 + 2: 238 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:258 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:1012 + 2: 253 + 4.3: _ZN9oceanbase6common20ObTenantStatEstGuardD2Ev:1100 + 2: 275 + 3.1: 0 + 3: _ZN9oceanbase6common17ObSessionDIBuffer13switch_tenantEm:0 + 3: 0 + 4: 0 + 6: 0 + 8: 0 + 10: 0 + 4.4: _ZN9oceanbase6common20ObTenantStatEstGuardD2Ev:0 + 2: 0 + 3.1: 0 + 3: _ZN9oceanbase6common17ObSessionDIBuffer13switch_tenantEm:0 + 3: 0 + 4: 0 + 6: 0 + 8: 0 + 10: 0 +_ZN9oceanbase3sql13ObDASInsertOp7open_opEv:14179:279 + 1: 276 + 2: 276 + 3: 276 + 3.1: 0 + 4.1: 0 + 5.1: 0 + 5.2: 288 _ZN9oceanbase3sql13ObDASInsertOp11insert_rowsEv:294 + 6.1: 0 + 9: 263 +_ZN9oceanbase5share14ObSysVariables7get_maxEl:14160:492 + 0: 472 +_ZN9oceanbase3sql12ObSysVarInPC18serialize_sys_varsEPclRl:14136:5 + 1: 5 + 2: 5 + 3: 5 + 4: 5 + 6.1: 117 + 6.3: 117 + 6.5: 117 + 7: 123 + 8: 123 + 8.2: 123 _ZNK9oceanbase6common5ObObj23print_plain_str_literalEPclRlRKNS0_16ObObjPrintParamsE:126 + 9.1: 0 + 11: 117 + 12: 117 + 13: 116 + 14: 0 + 15.1: 0 + 18: 116 + 19: 116 + 32: 1 + 5: _ZNK9oceanbase6common12ObIArrayWrapINS0_5ObObjEE5countEv:20 + 0: 5 + 8: _ZN9oceanbase6common12ObIArrayWrapINS0_5ObObjEE2atEl:984 + 6: 123 + 8.1: _ZN9oceanbase6common16ObObjPrintParamsC2Ev:1476 + 1: 123 + 2: 123 +_ZNK9oceanbase8memtable16ObITransCallback12is_need_freeEv:14040:1759 + 0: 1755 +_ZN9oceanbase5share12ObBoolSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:14031:55 + 11: 52 + 12: 50 + 5: _ZN9oceanbase5share15ObTypeLibSysVarC2EPPKcPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSF_EPFiS7_SA_SD_SH_EPFiRNSE_12ObIAllocatorERKNS5_18ObBasicSessionInfoESD_SI_EPFiSO_SR_SD_RNSE_8ObStringEEPFNSE_9ObObjTypeEvEb:13023 + 14: 52 + 7: _ZN9oceanbase5share13ObBasicSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKS1_RKNS_6common5ObObjERSB_EPFiS4_S7_S9_SD_EPFiRNSA_12ObIAllocatorERKNS2_18ObBasicSessionInfoES9_SE_EPFiSK_SN_S9_RNSA_8ObStringEEPFNSA_9ObObjTypeEvEb:6812 + 11: 52 + 12: 52 + 13: 52 + 14: 52 + 15: 52 + 16: 52 + 17: 52 + 18: 52 + 20: _ZN9oceanbase5share13ObBasicSysVar11clean_valueEv:4472 + 2: _ZN9oceanbase5share13ObBasicSysVar16clean_base_valueEv:1248 + 2: 52 + 3: _ZN9oceanbase6common5ObObj13set_nop_valueEv:832 + 2: _ZN9oceanbase6common5ObObj7set_extEl:832 + 4: 52 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:416 + 0: 52 + 3: _ZN9oceanbase5share13ObBasicSysVar15clean_inc_valueEv:1092 + 2: _ZN9oceanbase6common5ObObj13set_nop_valueEv:1092 + 2: _ZN9oceanbase6common5ObObj7set_extEl:1092 + 4: 52 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:416 + 0: 52 + 4: _ZN9oceanbase6common5ObObj5resetEv:624 + 6: 52 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:208 + 0: 52 + 5: _ZN9oceanbase6common5ObObj5resetEv:1508 + 5: 52 + 6: 52 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:208 + 0: 52 + 3: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:312 + 0: 52 + 4: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:208 + 0: 52 + 13: _ZN9oceanbase5share15ObSysVarTypeLibC2EPPKc:5483 + 1: 52 + 2: 52 + 3: 52 + 8.1: 155 + 8.3: 155 + 9: 50 +_ZN9oceanbase8memtable13ObQueryEngine3setEPKNS0_13ObMemtableKeyEPNS0_9ObMvccRowE:13867:100 + 1: 88 + 2: 88 + 3: 88 + 4: 88 + 5.1: 0 + 6: 0 + 7.1: 88 + 8: 0 + 9.1: 0 + 11: 88 + 12: 0 + 13: 0 + 15: 88 + 16: 88 + 17.1: 88 _ZN9oceanbase8memtable8ObMtHash6insertEPKNS0_20ObStoreRowkeyWrapperEPKNS0_9ObMvccRowE:90 + 17.2: 81 + 19.1: 0 + 21: 0 + 23: 81 + 27: 81 + 28.1: 0 + 30: 81 + 12: _ZNK9oceanbase8memtable13ObQueryEngine15get_table_indexERPNS1_10TableIndexE:2200 + 9: 88 + 12.1: 88 + 14: 0 + 17: 88 + 13: _ZNK9oceanbase8memtable13ObMemtableKey10get_rowkeyEv:0 + 0: 0 + 13.1: _ZNK9oceanbase6common13ObStoreRowkey11get_obj_cntEv:0 + 0: _ZNK9oceanbase6common8ObRowkey11get_obj_cntEv:0 + 0: 0 + 13.2: _ZN9oceanbase8memtable13ObQueryEngine15set_table_indexElRPNS1_10TableIndexE:0 + 2: 0 + 3: 0 + 4.1: 0 + 5: 0 + 6.1: 0 + 7.1: 0 + 11: 0 + 16: _ZNK9oceanbase8memtable13ObMemtableKey10get_rowkeyEv:264 + 0: 88 + 16.1: _ZN9oceanbase8memtable20ObStoreRowkeyWrapperC2EPKNS_6common13ObStoreRowkeyE:352 + 0: 88 + 17: _ZN9oceanbase8memtable13ObQueryEngine10TableIndex11get_keyhashEv:352 + 0: 88 + 23: _ZN9oceanbase8memtable9ObMvccRow16set_hash_indexedEv:486 + 0: 81 +_ZN9oceanbase3sql12ObDMLService29check_rowkey_whether_distinctERKNS_6common8ObIArrayIPNS0_6ObExprEEEllNS0_12DistinctTypeERNS0_9ObEvalCtxERPNS2_4hash9ObHashSetINS0_12SeRowkeyItemENSC_19NoPthreadDefendModeENSC_9hash_funcISE_EENSC_8equal_toISE_EENSC_13SimpleAllocerINSC_15ObHashTableNodeINSC_11HashMapPairISE_NSC_11HashNullObjEEEEELi89ENSC_19SpinMutexDefendModeENSC_29DefaultSimpleAllocerAllocatorEEENSC_13NormalPointerENS2_8ObMallocELl1EEERb:13860:234 + 7: 220 + 8: 220 + 9: 220 + 10: 220 + 12: 0 + 13: 0 + 15: 0 + 17: 0 + 18: 0 + 19.1: 0 + 20.1: 0 + 21: 0 + 22.1: 0 + 24: 0 + 25: 0 + 31: 0 + 33: 0 + 33.1: 0 + 37.1: 0 + 41: 0 + 43: 0 + 44: 0 + 45.1: 0 + 46.1: 0 + 48.1: 0 + 50: 0 + 51: 0 + 52: 0 + 53: 0 + 55: 0 + 56.1: 0 + 57.1: 0 + 58.1: 0 + 61.1: 0 + 66: 0 + 67.1: 0 + 67.11: 0 + 67.14: 0 + 70: 220 + 33: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:0 + 0: 0 + 42: _ZN9oceanbase3sql12SeRowkeyItemC2Ev:0 + 0: 0 + 50: _ZNK9oceanbase6common4hash9ObHashSetINS_3sql12SeRowkeyItemENS1_19NoPthreadDefendModeENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS4_NS1_11HashNullObjEEEEELi89ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE16exist_refactoredERKS4_:0 + 4: 0 + 5: 0 + 3: _ZN9oceanbase6common4hash11HashMapPairINS_3sql12SeRowkeyItemENS1_11HashNullObjEEC2Ev:0 + 0: _ZN9oceanbase3sql12SeRowkeyItemC2Ev:0 + 0: 0 + 57.1: _ZN9oceanbase6common4hash9ObHashSetINS_3sql12SeRowkeyItemENS1_19NoPthreadDefendModeENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS4_NS1_11HashNullObjEEEEELi89ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE14set_refactoredERKS4_iii:0 + 7: 0 + 4: _ZN9oceanbase6common4hash11HashMapPairINS_3sql12SeRowkeyItemENS1_11HashNullObjEE4initERKS4_RKS5_:0 + 3: _ZN9oceanbase6common11copy_assignINS_3sql12SeRowkeyItemEEEiRT_RKS4_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapINS_3sql12SeRowkeyItemEEEiRT_RKS4_NS0_8BoolTypeILb0EEE:0 + 2: 0 + 67.1: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 +_ZN9oceanbase7storage9ObTxTable6insertERPNS0_8ObTxDataE:13706:252 + 0: 246 + 1: 246 + 2: 246 + 3: 1 + 4.1: 1 + 5.1: 253 _ZN9oceanbase7storage13ObTxDataTable6insertERPNS0_8ObTxDataE:263 + 6.1: 1 + 8: 253 +_ZZN9oceanbase4palf14LogEntryHeader23update_header_checksum_EvENK5$_575clEPKc.1598dc2348996c1ae1caea6120522988:13658:250 + 0: 237 + 0.1: 0 + 0.2: 229 + 0.3: 237 _ZN9oceanbase6common8ObLogger13need_to_printEmi:249 + 0.6: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:4029 + 2: 237 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKNS_4palf14LogEntryHeaderELb0EEC2EPKcS5_:0 + 0: 0 + 0.5: _ZN9oceanbase6common7ObLogKVIlLb1EEC2EPKcOKl:0 + 0: 0 +_ZN9oceanbase8memtable13ObMemtableCtx19dec_unsubmitted_cntEv:13575:985 + 1: 905 + 2.1: 905 + 3: 905 +_ZNK9oceanbase5share6schema19ObSchemaGetterGuard14get_schema_mgrEmRPKNS1_11ObSchemaMgrE:13550:114 + 1: 106 + 2: 106 + 3: 106 + 4: 106 + 5: 106 + 6: 0 + 7.1: 0 + 8.1: 105 + 9.1: 0 + 11: 105 + 12: 105 + 13.1: 0 + 16: 105 + 8.1: _ZNK9oceanbase5share6schema19ObSchemaGetterGuard19get_schema_mgr_infoEmRPKNS1_15ObSchemaMgrInfoE:5419 + 3: 106 + 7.1: 106 + 9: 92 + 9.2: 2 + 9.3: 2 _ZNK9oceanbase6common13ObSEArrayImplINS_5share6schema15ObSchemaMgrInfoELl2ENS0_19ModulePageAllocatorELb0EEixEl:2 + 15: 14 + 17.1: 14 + 18: 14 + 20: 14 + 21: 14 + 23: 0 + 29: 14 + 7.1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema15ObSchemaMgrInfoEE5countEv:742 + 0: 106 + 9: _ZNK9oceanbase6common13ObSEArrayImplINS_5share6schema15ObSchemaMgrInfoELl2ENS0_19ModulePageAllocatorELb0EEixEl:644 + 5: 92 + 9.1: _ZNK9oceanbase6common13ObSEArrayImplINS_5share6schema15ObSchemaMgrInfoELl2ENS0_19ModulePageAllocatorELb0EEixEl:360 + 5: 90 + 19: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema15ObSchemaMgrInfoEE2atEl:182 + 6: 14 + 20: _ZNK9oceanbase5share6schema15ObSchemaMgrInfo13get_tenant_idEv:126 + 0: 14 + 11: _ZNK9oceanbase5share6schema15ObSchemaMgrInfo14get_schema_mgrEv:420 + 0: 105 +_ZZN9oceanbase10logservice13ObApplyStatus19try_handle_cb_queueEPNS0_23ObApplyServiceQueueTaskERbENK4$_38clEPKc.d3a41d52a3cfae37a6a74713ee8e7132:13525:176 + 0: 175 + 0.1: 0 + 0.2: 160 + 0.3: 175 _ZN9oceanbase6common8ObLogger13need_to_printEmi:179 + 0.13: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:2975 + 2: 175 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.1: _ZN9oceanbase6common20ObLogPrintPointerCntIPNS_10logservice13ObApplyStatusEEC2ES4_:0 + 0: 0 + 0.4: _ZN9oceanbase6common7ObLogKVINS0_20ObLogPrintPointerCntIPNS_10logservice13ObApplyStatusEEELb1EEC2EPKcOKS6_:0 + 0: 0 + 0.5: _ZN9oceanbase6common20ObLogPrintPointerCntIPNS_10logservice23ObApplyServiceQueueTaskEEC2ES4_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVINS0_20ObLogPrintPointerCntIPNS_10logservice23ObApplyServiceQueueTaskEEELb1EEC2EPKcOKS6_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVIRKbLb0EEC2EPKcS3_:0 + 0: 0 + 0.12: _ZN9oceanbase6common7ObLogKVIRKbLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl4ENS0_19ModulePageAllocatorELb0EE9push_backERKS4_:13524:312 + 2: 294 + 5: 294 + 6: 0 + 12: 0 + 15: 0 + 15.1: 294 + 16: 294 + 19: 294 + 15.1: _ZN9oceanbase6common9ObClassOpIPNS_7storage8ObITableELb1EE20construct_and_assignERKS4_RS4_:2058 + 2: 294 +_ZNK9oceanbase4palf3LSN9serializeEPclRl:13507:271 + 1: 257 + 3: 257 + 4: 257 + 9: 267 + 11: 267 + 6.1: _ZN9oceanbase6common13serialization10encode_i64EPclRll:8010 + 2: 267 + 4: 267 + 12: 267 +_ZN9oceanbase5share6schema15ObSchemaService17is_formal_versionEl:13507:1039 + 1: 1039 + 2: 1039 +_ZN9oceanbase3sql10ObDelRtDefD2Ev:13496:251 + 1: 241 + 2: 241 + 3: 0 + 4: 0 + 6.1: 241 + 6.2: 0 + 6.4: _ZN9oceanbase3sql14ObDMLBaseRtDefD2Ev:0 + 0: 0 + 6.6: _ZN9oceanbase3sql14ObDMLBaseRtDefD2Ev:3374 + 0: 241 +_ZN9oceanbase5share6schema19ObSchemaGetterGuard18put_to_local_cacheINS1_8ObSchemaEEEiNS1_12ObSchemaTypeEmmRPKT_RNS_6common15ObKVCacheHandleE:13428:51 + 6: 51 + 7: 51 + 9.1: 49 + 10.1: 0 + 13: 49 + 14: 49 + 15: 49 + 16: 49 + 17: 49 + 19: 50 + 20.3: 51 + 8: _ZN9oceanbase5share6schema19ObSchemaGetterGuard9SchemaObjC2Ev:1734 + 0: 51 _ZN9oceanbase6common15ObKVCacheHandleC1Ev:51 + 1: 51 + 3: 51 + 4: 51 + 9: _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema19ObSchemaGetterGuard9SchemaObjELl2ENS0_19ModulePageAllocatorELb0EE9push_backERKS5_:4113 + 5: 46 + 6: 4 + 12: 4 _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema19ObSchemaGetterGuard9SchemaObjELl2ENS0_19ModulePageAllocatorELb0EE7reserveEl:5 + 15: 4 + 15.1: 45 + 16: 49 + 15.1: _ZN9oceanbase6common9ObClassOpINS_5share6schema19ObSchemaGetterGuard9SchemaObjELb0EE20construct_and_assignERKS5_RS5_:1350 + 3: _ZN9oceanbase6common16construct_assignINS_5share6schema19ObSchemaGetterGuard9SchemaObjEEEiRT_RKS6_:1350 + 2: _ZN9oceanbase6common21construct_assign_wrapINS_5share6schema19ObSchemaGetterGuard9SchemaObjEEEiRT_RKS6_NS0_8BoolTypeILb0EEE:1350 + 2: _ZN9oceanbase5share6schema19ObSchemaGetterGuard9SchemaObjC2ERKS3_:1350 + 0: 45 _ZN9oceanbase6common15ObKVCacheHandleC1ERKS1_:46 + 12.1: _ZN9oceanbase6common12ObIArrayWrapINS_5share6schema19ObSchemaGetterGuard9SchemaObjEE2atEl:539 + 6: 49 + 17: _ZN9oceanbase6common15ObKVCacheHandle9move_fromERS1_:1099 + 1: 49 _ZN9oceanbase6common15ObKVCacheHandle5resetEv:50 + 2: 50 + 9: 50 + 10: 50 _ZN9oceanbase6common15ObKVCacheHandle5resetEv:54 + 20.3: _ZN9oceanbase5share6schema19ObSchemaGetterGuard9SchemaObjD2Ev:200 + 0: 50 _ZN9oceanbase6common15ObKVCacheHandleD1Ev:50 + 20.4: _ZN9oceanbase5share6schema19ObSchemaGetterGuard9SchemaObjD2Ev:0 + 0: 0 +_ZN9oceanbase6common24KVCacheHazardThreadStore6retireEm:13403:1 + 1: 1 + 2: 1 + 3: 1 + 4: 1 + 5: 1 + 7.1: 1 + 13.1: 492 + 16: 523 + 17: 512 _ZN9oceanbase6common12ObKVCacheMap4Node6retireEv:512 + 19: 492 + 25: 1 + 28: 1 + 29: 1 + 33: 1 + 15: _ZNK9oceanbase6common17KVCacheHazardNode8get_nextEv:2092 + 0: 523 + 21: _ZN9oceanbase6common17KVCacheHazardNode8set_nextEPS1_:279 + 2: 31 + 3: 31 + 26: _ZN9oceanbase6common24KVCacheHazardThreadStore9add_nodesERNS0_17KVCacheHazardNodeE:0 + 5.1: 0 + 9: 0 + 12.1: 0 + 5.1: _ZNK9oceanbase6common17KVCacheHazardNode8get_nextEv:0 + 0: 0 + 11: _ZN9oceanbase6common17KVCacheHazardNode8set_nextEPS1_:0 + 2: 0 + 3: 0 + 14: _ZN9oceanbase6common17KVCacheHazardNode8set_nextEPS1_:0 + 2: 0 + 3: 0 +_ZN9oceanbase11transaction17ObCLogEncryptInfo5resetEv:13400:281 + 1: 270 + 2: 270 + 5: 269 + 6: 269 _ZN9oceanbase5share13ObEncryptMeta5resetEv:285 + 7: 264 + 8: 264 + 3: _ZN9oceanbase6common4hash9ObHashMapImNS_5share13ObEncryptMetaENS1_24LatchReadWriteDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS4_EEEELi34ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE5reuseEv:0 + 2: _ZN9oceanbase6common4hash9ObHashMapImNS_5share13ObEncryptMetaENS1_24LatchReadWriteDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS4_EEEELi34ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE5clearEv:0 + 2: 0 +_ZN9oceanbase3lib9ObjectSet9merge_objEPNS0_7AObjectE:13386:60 + 1: 57 + 2: 57 + 9: 57 + 10: 58 + 12: 58 + 13: 0 + 14.1: 58 + 19: 61 + 22: 16 + 23: 0 + 24.1: 16 + 29.1: 17 + 30: 0 + 36: 64 + 36.1: 65 + 36.4: 67 + 37: 67 + 37.1: 18 + 37.4: 69 + 39: 71 + 40: 71 + 41: 20 + 43: 53 + 46: 70 + 2: _ZL12abort_unlessb:342 + 5: 57 + 6: 0 + 3: _ZNK9oceanbase3lib7AObject8is_validEv:741 + 2: 57 + 3.1: _ZL12abort_unlessb:342 + 5: 57 + 6: 0 + 10: _ZNK9oceanbase3lib7AObject8phy_nextEi:754 + 2: 58 + 11: _ZNK9oceanbase3lib7AObject8is_validEv:754 + 2: 58 + 11.1: _ZL12abort_unlessb:348 + 5: 58 + 6: 0 + 15: _ZN9oceanbase3lib9ObjectSet20take_off_free_objectEPNS0_7AObjectE:0 + 5: 0 + 5.1: 0 + 6.1: 0 + 7.1: 0 + 8.1: 0 + 11: 0 + 12: 0 + 13: 0 + 15: 0 + 16: 0 + 3: _ZNK9oceanbase3lib7AObject8is_validEv:0 + 2: 0 + 3.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 9: _ZN9oceanbase3lib7ABitSet5unsetEi:0 + 2: 0 + 5: 0 + 7: 0 + 8: 0 + 10: 0 + 11: 0 + 12: 0 + 12.1: 0 + 13: 0 + 19: _ZNK9oceanbase3lib7AObject7is_lastEj:1281 + 2: 61 + 20: _ZNK9oceanbase3lib7AObject8phy_nextEi:64 + 2: 16 + 21: _ZNK9oceanbase3lib7AObject8is_validEv:176 + 2: 16 + 21.1: _ZL12abort_unlessb:96 + 5: 16 + 6: 0 + 25: _ZN9oceanbase3lib9ObjectSet20take_off_free_objectEPNS0_7AObjectE:0 + 5: 0 + 5.1: 0 + 6.1: 0 + 7.1: 0 + 8.1: 0 + 11: 0 + 12: 0 + 13: 0 + 15: 0 + 16: 0 + 3: _ZNK9oceanbase3lib7AObject8is_validEv:0 + 2: 0 + 3.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 9: _ZN9oceanbase3lib7ABitSet5unsetEi:0 + 2: 0 + 5: 0 + 7: 0 + 8: 0 + 10: 0 + 11: 0 + 12: 0 + 12.1: 0 + 13: 0 + 30: _ZNK9oceanbase3lib7AObject7is_lastEj:0 + 2: 0 + 31: _ZNK9oceanbase3lib7AObject8phy_nextEi:0 + 2: 0 + 32: _ZNK9oceanbase3lib7AObject8is_validEv:0 + 2: 0 + 32.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase3lib7ObFutex4waitEil:13306:57 + 1: 37 + 3: 37 + 4.1: 37 + 6: 15 + 12.1: 448 + 13: 448 + 3: _ZL13make_timespecl:1517 + 4: 37 + 5: _Z10futex_waitPViiPK8timespec:2976 + 3: 469 + 4: 17 +_ZZN9oceanbase4palf14LogEntryHeader15generate_headerEPKcllENK5$_576clES3_.1598dc2348996c1ae1caea6120522988:13304:248 + 0: 231 + 0.2: 231 + 0.3: 229 _ZN9oceanbase6common8ObLogger13need_to_printEmi:245 + 0.5: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:3893 + 2: 229 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.1: _ZN9oceanbase6common20ObLogPrintPointerCntIPNS_4palf14LogEntryHeaderEEC2ES4_:0 + 0: 0 + 0.4: _ZN9oceanbase6common7ObLogKVINS0_20ObLogPrintPointerCntIPNS_4palf14LogEntryHeaderEEELb1EEC2EPKcOKS6_:0 + 0: 0 +_ZN9oceanbase11transaction13ObTxBaseLogCbD2Ev:13259:85 + 0: 84 + 0.1: 84 + 0.3: 0 + 0.5: 0 + 0: _ZN9oceanbase11transaction13ObTxBaseLogCb5resetEv:4416 + 3: 88 + 4: 88 _ZN9oceanbase4palf3LSN5resetEv:89 + 5: 83 + 2: _ZN9oceanbase10logservice8AppendCb5resetEv:2608 + 2: 88 + 1: _ZN9oceanbase10logservice12AppendCbBase7__resetEv:1376 + 0: 88 _ZN9oceanbase4palf3LSN5resetEv:84 + 0.4: _ZN9oceanbase10logservice8AppendCbD2Ev:6075 + 1: 83 + 3.1: 0 + 3.2: 0 + 2: _ZN9oceanbase10logservice8AppendCb5resetEv:2075 + 2: 83 + 1: _ZN9oceanbase10logservice12AppendCbBase7__resetEv:996 + 0: 83 _ZN9oceanbase4palf3LSN5resetEv:84 + 3: _ZN9oceanbase10logservice12AppendCbBaseD2Ev:2838 + 1: 83 + 3.2: 0 + 2: _ZN9oceanbase10logservice12AppendCbBase7__resetEv:1676 + 0: 84 _ZN9oceanbase4palf3LSN5resetEv:88 +_ZN9oceanbase3sql11ObDASLockOp9write_rowERKNS_6common12ObFixedArrayIPNS0_6ObExprENS2_12ObIAllocatorEEERNS0_9ObEvalCtxERb:13247:185 + 1: 180 + 3: 180 + 4: 180 + 5: 180 _ZN9oceanbase3sql16ObDASWriteBuffer11try_add_rowERKNS_6common8ObIArrayIPNS0_6ObExprEEEPNS0_9ObEvalCtxElRbb:183 + 6.1: 0 + 7.1: 159 + 8: 0 + 10: 151 +_ZN9oceanbase8memtable13ObMemtableCtx16dec_unsynced_cntEv:13230:983 + 1: 882 + 2.1: 882 + 3: 882 +_ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb0EE7destroyEv:13230:253 + 1: 245 + 9: 245 + 11: 0 + 13: 245 + 15: 245 + 24: 245 + 25: 245 + 10: _ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: 0 +_ZN9oceanbase6common13ObSEArrayImplINS_5share16ObServerLocalityELl32ENS0_19ModulePageAllocatorELb0EE5reuseEv:13230:282 + 1: 270 + 4.1: 270 + 4.3: 0 + 5: 0 + 8: 270 + 9: 270 + 10: 270 +_ZN9oceanbase4palf16LogSlidingWindow20try_freeze_last_log_ElRKNS0_3LSNERb:13211:54 + 3: 54 + 4: 54 + 5: 54 + 6: 54 + 6.1: 54 + 7: 0 + 8.1: 0 + 10: 54 + 12.1: 39 + 15: 39 + 17.1: 0 + 23.1: 13 + 25: 13 + 25.1: 13 + 26: 0 + 26.1: 0 + 27.1: 0 + 30.2: 13 + 31: 0 + 32.1: 0 + 35: 13 + 36: 13 + 36.1: 16 + 37.1: 0 + 39.1: 16 _ZZN9oceanbase4palf16LogSlidingWindow20try_freeze_last_log_ElRKNS0_3LSNERbENK5$_166clEPKc.0e4bf25207570af14a78557c8489c4fc:17 + 45: 13 + 45.1: 13 + 46: 13 + 46.1: 13 + 49.1: 0 + 50: 53 + 6.1: _ZNK9oceanbase4palf3LSN8is_validEv:216 + 2: 54 + 11: _ZN9oceanbase4palf16LogSlidingWindow12LogTaskGuardC2EPS1_:648 + 0: 54 + 12: _ZN9oceanbase4palf16LogSlidingWindow12LogTaskGuard12get_log_taskElRPNS0_7LogTaskE:2922 + 2: 54 + 3: 54 + 5.1: 57 + 7.1: 57 _ZN9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE3getElRPS2_:58 + 8: 15 + 9: 15 + 5.1: _ZN9oceanbase4palf15is_valid_log_idEl:171 + 2: 57 + 20: _ZNK9oceanbase4palf7LogTask4lockEv:375 + 1: 15 _ZN9oceanbase6common7ObLatch6wrlockEjlPKj:15 + 23.1: _ZN9oceanbase4palfplERKNS0_3LSNEm:52 + 4: 13 + 24: _ZNK9oceanbase4palf7LogTask12get_data_lenEv:52 + 0: 13 + 24.1: _ZN9oceanbase4palfplERKNS0_3LSNEm:91 + 4: 13 + 25: _ZNK9oceanbase4palf7LogTask8is_validEv:52 + 2: _ZNK9oceanbase4palf15LogSimpleBitMap8test_mapEl:52 + 2: 13 + 30.1: _ZNK9oceanbase4palf3LSNgtERKS1_:91 + 2: _ZNK9oceanbase4palf3LSNltERKS1_:91 + 2: 13 + 36: _ZN9oceanbase4palf7LogTask10try_freezeERKNS0_3LSNE:52 + 2: 13 _ZN9oceanbase4palf7LogTask11try_freeze_ERKNS0_3LSNE:13 + 43: _ZNK9oceanbase4palf7LogTask6unlockEv:119 + 1: 17 _ZN9oceanbase6common7ObLatch6unlockEPKj:17 + 45: _ZNK9oceanbase4palf7LogTask10is_freezedEv:78 + 2: _ZNK9oceanbase4palf15LogSimpleBitMap8test_mapEl:78 + 2: 13 + 46: _ZNK9oceanbase4palf7LogTask11get_ref_cntEv:91 + 0: 13 + 49: _ZN9oceanbase4palf16LogSlidingWindow12LogTaskGuardD2Ev:1421 + 2.1: 0 + 2: _ZN9oceanbase4palf16LogSlidingWindow12LogTaskGuard15revert_log_taskEv:1421 + 1: 52 + 2: 52 + 2.1: 52 + 3: 13 _ZN9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE6revertEl:11 + 4: 0 + 5: 0 + 6.1: 0 + 2.1: _ZN9oceanbase4palf15is_valid_log_idEl:156 + 2: 52 + 5: _ZNK9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE12get_begin_snEv:0 + 0: 0 +_ZThn320_N9oceanbase12blocksstable18ObMicroBlockReader10find_boundERKNS0_13ObDatumRowkeyEblRlRb:13186:1039 +_ZN9oceanbase11transaction9ObTxLogCb5resetEv:13170:70 + 1: 70 + 7: 70 + 11: 70 + 12: 70 _ZN9oceanbase11transaction12ObTxMDSRange5resetEv:77 + 2: _ZN9oceanbase11transaction13ObTxBaseLogCb5resetEv:2670 + 3: 68 + 4: 68 _ZN9oceanbase4palf3LSN5resetEv:69 + 5: 70 + 2: _ZN9oceanbase10logservice8AppendCb5resetEv:1778 + 2: 68 + 1: _ZN9oceanbase10logservice12AppendCbBase7__resetEv:826 + 0: 70 _ZN9oceanbase4palf3LSN5resetEv:70 + 3: _ZN9oceanbase6common11ObDLinkBaseINS_11transaction9ObTxLogCbEE5resetEv:910 + 0: 70 + 5: _ZN9oceanbase5share6ObLSID5resetEv:560 + 0: 70 + 11: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EE5resetEv:5320 + 0: 70 + 0: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EE7destroyEv:3920 + 9: 70 + 10: 0 + 11: 0 + 13: 70 + 15: 70 + 24: 70 +_ZN9oceanbase5share14ObSysVariables9get_valueEl:13140:446 + 0: 438 +_ZN9oceanbase6common14ObKVCacheStore14add_handle_refEPNS0_18ObKVMemBlockHandleE:13102:583 + 3: 563 + 4: 590 _ZN9oceanbase6common17ObAtomicReference21check_and_inc_ref_cntEv:570 + 6: 590 +_ZN9oceanbase6common19ModulePageAllocator5allocEl:13090:259 + 1: 256 + 2: 256 + 3: 256 _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:271 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:4096 + 5: 256 + 7: 256 + 8: 256 +_ZN9oceanbase6common13ObSEArrayImplINS_5share16ObServerLocalityELl32ENS0_19ModulePageAllocatorELb0EE7reserveEl:13050:276 + 1: 261 + 2: 261 + 3: 261 + 5: 0 + 6: 0 + 7: 0 + 7.3: 0 + 9: 0 + 10: 0 + 11: 0 + 12: 0 + 13: 0 + 15: 0 + 16: 0 + 20: 0 + 23: 0 + 24.1: 0 + 27: 261 + 8: _ZN9oceanbase6common13ObSEArrayImplINS_5share16ObServerLocalityELl32ENS0_19ModulePageAllocatorELb0EE16internal_malloc_El:0 + 2: 0 + 7: 0 + 13: 0 + 13: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 10: _ZN9oceanbase6common9ObClassOpINS_5share16ObServerLocalityELb0EE12array_expandEPKS3_PS3_l:0 + 2: 0 + 4.1: 0 + 4.3: 0 + 4.5: 0 + 5: 0 + 6.1: 0 + 7: 0 + 12: 0 + 13.1: 0 + 14: 0 + 18.1: 0 + 19: 0 + 23: 0 + 5: _ZN9oceanbase6common16construct_assignINS_5share16ObServerLocalityEEEiRT_RKS4_:0 + 2: _ZN9oceanbase6common21construct_assign_wrapINS_5share16ObServerLocalityEEEiRT_RKS4_NS0_8BoolTypeILb1EEE:0 + 2: 0 + 3: 0 +_ZNK9oceanbase11transaction14ObPartTransCtx9is_sub2pcEv:12940:810 + 1: 814 _ZNK9oceanbase11transaction11ObXATransID5emptyEv:808 +_ZN9oceanbase11transaction10ObTransCtx13get_ctx_guardERNS0_12CtxLockGuardE:12817:253 + 1: 253 + 2: 253 + 2: _ZN9oceanbase11transaction12CtxLockGuard3setERNS0_7CtxLockE:8516 + 2: 253 _ZN9oceanbase11transaction12CtxLockGuard5resetEv:277 + 3: 268 + 4: _ZN9oceanbase11transaction7CtxLock4lockEv:4020 + 2: 268 _ZN9oceanbase6common7ObLatch6wrlockEjlPKj:284 +_ZNK9oceanbase4palf12LogConfigMgr23get_paxos_log_sync_listERNS_6common16ObMemberListBaseILl7EEE:12795:17 + 1: 16 + 2: 16 + 3: 16 + 4: 0 + 5.1: 0 + 6.1: 15 + 11: 15 + 6.1: _ZN9oceanbase6common16ObMemberListBaseILl7EE9deep_copyERKS2_:11747 + 4: 14 + 5: 0 + 5.1: 15 + 5.3: 0 + 3: _ZN9oceanbase6common16ObMemberListBaseILl7EE5resetEv:11137 + 2: 16 + 4: 133 _ZN9oceanbase6common8ObMember5resetEv:14 + 4: _ZNK9oceanbase6common16ObMemberListBaseILl7EE17get_member_numberEv:98 + 2: 14 + 7: _ZNK9oceanbase6common16ObMemberListBaseILl7EE19get_member_by_indexElRNS0_8ObMemberE:294 + 3.1: 14 + 7: 14 _ZN9oceanbase6common8ObMemberaSERKS1_:14 +_ZN9oceanbase3sql16ObDASTaskFactory16create_das_rtdefENS0_11ObDASOpTypeERNS_6common12ObIAllocatorERPNS0_14ObDASBaseRtDefE:12788:177 + 1: 167 + 2: 167 + 3: 167 + 4: 0 + 5.1: 0 + 6.1: 173 _ZN9oceanbase3sql19AllocDASRtDefHelperILi5EE5allocERNS_6common12ObIAllocatorERPNS0_14ObDASBaseRtDefE:175 + 7.1: 0 + 9: 173 + 3: _ZN9oceanbase3sql16ObDASTaskFactory13is_registeredENS0_11ObDASOpTypeE:4342 + 2: 167 + 2.2: 167 +_ZN9oceanbase3sql13TriggerHandle18init_param_old_rowERNS0_9ObEvalCtxERKNS0_14ObTrigDMLCtDefERNS0_14ObTrigDMLRtDefE:12784:276 + 4: 272 + 5: 272 + 6: 272 + 9: 0 + 10: 0 + 11.1: 0 + 12.1: 0 + 13: 0 + 14.1: 0 + 16.1: 0 + 18: 0 + 19.1: 0 + 20.1: 0 + 21: 0 + 22.1: 0 + 23.1: 0 + 23.2: 0 + 25.1: 0 + 30: 0 + 32: 0 + 33.1: 0 + 39: 272 + 12.1: _ZN9oceanbase2pl10ObPLRecord11get_elementEv:0 + 2.1: 0 + 2: _ZNK9oceanbase2pl10ObPLRecord9get_countEv:0 + 0: 0 + 18: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:0 + 6: 0 + 18.1: _ZNK9oceanbase3sql6ObExpr4evalERNS0_9ObEvalCtxERPNS_6common7ObDatumE:0 + 4: 0 + 6: 0 + 7: 0 + 9: 0 + 10: 0 + 10.1: 0 + 11: 0 + 13: 0 + 15.1: 0 + 15.2: 0 + 17: 0 + 18: 0 + 20: 0 + 21: 0 + 22: 0 + 24: 0 + 9: _ZNK9oceanbase3sql6ObExpr15is_batch_resultEv:0 + 0: 0 + 11: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 24: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:0 + 0: 0 + 23.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:0 + 6: 0 + 32: _ZNK9oceanbase3sql6ObExpr4evalERNS0_9ObEvalCtxERPNS_6common7ObDatumE:0 + 4: 0 + 6: 0 + 7: 0 + 9: 0 + 10: 0 + 10.1: 0 + 11: 0 + 13: 0 + 15.1: 0 + 15.2: 0 + 17: 0 + 18: 0 + 20: 0 + 21: 0 + 22: 0 + 24: 0 + 9: _ZNK9oceanbase3sql6ObExpr15is_batch_resultEv:0 + 0: 0 + 11: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 24: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:0 + 0: 0 +_ZN9oceanbase3sql12ObDMLService24set_heap_table_hidden_pkERKNS0_10ObInsCtDefERKNS_6common10ObTabletIDERNS0_9ObEvalCtxE:12750:266 + 3: 255 + 4: 255 + 5: 255 + 6: 255 + 6.1: 0 + 7: 0 + 8: 0 + 9: 0 + 12.1: 0 + 14: 0 + 15: 0 + 16: 0 + 17.1: 0 + 20: 0 + 21: 0 + 25: 255 + 7: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:0 + 2: 0 + 8: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:0 + 0: 0 + 14: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:0 + 6: 0 + 19: _ZNK9oceanbase3sql6ObExpr22locate_datum_for_writeERNS0_9ObEvalCtxE:0 + 3: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 5: _ZNK9oceanbase3sql6ObExpr13get_datum_idxERNS0_9ObEvalCtxE:0 + 2: 0 + 2: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 20: _ZN9oceanbase6common7ObDatum8set_uintEm:0 + 0: 0 + 21: _ZNK9oceanbase3sql6ObExpr13get_eval_infoERNS0_9ObEvalCtxE:0 + 2: 0 +_ZN9oceanbase11transaction10ObTransCtx8set_stc_ENS0_11MonotonicTsE:12744:246 + 0: 0 + 1: 236 + 2: 236 + 3: 236 + 4.1: 236 + 4.3: 0 + 4.4: 0 + 4.6: 0 + 4.7: 0 + 4.8: 0 + 4.9: 0 + 4.18: 0 + 6: 236 + 4.3: _ZN9oceanbase3lib20is_trace_log_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:0 + 2: 0 + 4.9: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EE12check_unlockEv:0 + 2: 0 + 3: _ZN9oceanbase3lib7ObMutex6unlockEv:0 + 0: 0 + 4.14: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EE10check_lockEv:0 + 2: 0 + 3: _ZN9oceanbase3lib7ObMutex4lockEv:0 + 0: 0 + 4.16: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EE10get_bufferEv:0 + 0: 0 + 4.17: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EE14get_buffer_posEv:0 + 0: 0 +_ZN9oceanbase6common13RetireStation10RetireList6retireERNS0_10HazardListES4_lRNS0_6QClockE:12714:100 + 0: 94 + 4.1: 87 + 5: 0 + 5.1: 0 + 6: 0 + 7: 0 + 9.2: 87 + 9.3: 1 _ZN9oceanbase6common6QClock13try_quiescentERm:1 + 9.4: 1 + 10: 1 _ZN9oceanbase6common10HazardList7move_toERS1_:1 + 11: 1 _ZN9oceanbase6common10HazardList7move_toERS1_:1 + 13.1: 87 + 1: _ZN9oceanbase6common13RetireStation9LockGuardC2ERm:752 + 1.1: 94 + 2: 0 + 2: _ZN9oceanbase6common10HazardList7move_toERS1_:3682 + 1: _ZN9oceanbase6common10HazardList6concatERS1_:2290 + 1: 94 + 2: 1 + 4.1: 93 + 5: 9 + 8: 87 + 2: _ZN9oceanbase6common10HazardList8get_headEv:4 + 0: 1 + 3: _ZN9oceanbase6common10HazardList8get_tailEv:5 + 0: 1 + 5: _ZN9oceanbase6common10HazardList8get_headEv:36 + 0: 9 + 8: _ZN9oceanbase6common10HazardList4sizeEv:348 + 0: 87 + 2: _ZN9oceanbase6common10HazardList9clear_allEv:1392 + 2: 87 + 4: _ZN9oceanbase6common10HazardList4sizeEv:348 + 0: 87 + 13: _ZN9oceanbase6common13RetireStation9LockGuardD2Ev:0 + 1: 0 + 13.1: _ZN9oceanbase6common13RetireStation9LockGuardD2Ev:261 + 1: 87 +_ZN9oceanbase11transaction9tablelock12ObLockMemCtx16clear_table_lockEbl:12700:254 + 3: 254 + 4: 254 + 5: 254 + 7.1: 0 + 8: 0 + 9.1: 0 + 10.1: 0 + 11: 0 + 12: 0 + 12.1: 0 + 13.1: 0 + 16: 0 + 17: 0 + 20: 254 + 5: _ZNK9oceanbase6common7ObDListINS_11transaction9tablelock22ObMemCtxLockOpLinkNodeEE8is_emptyEv:3556 + 0: 254 +_ZN9oceanbase10logservice13ObApplyStatus20try_submit_cb_queuesEv:12692:2 + 1: 2 + 2: 2 + 3: 2 + 4: 1 + 5.1: 1 + 7.1: 172 + 7.3: 172 + 7.5: 172 + 8: 127 + 10.1: 128 _ZN9oceanbase10logservice13ObApplyStatus29submit_task_to_apply_service_ERNS0_18ObApplyServiceTaskE:83 + 11.1: 1 + 14: 9 + 15.1: 9 _ZZN9oceanbase10logservice13ObApplyStatus20try_submit_cb_queuesEvENK4$_26clEPKc.d3a41d52a3cfae37a6a74713ee8e7132:8 + 18: 9 + 8: _ZNK9oceanbase10logservice23ObApplyServiceQueueTask22get_total_apply_cb_cntEv:2032 + 2: 127 + 8.1: _ZNK9oceanbase10logservice23ObApplyServiceQueueTask23get_total_submit_cb_cntEv:2032 + 2: 127 +_ZN9oceanbase11transaction12ObLSTxCtxMgr26revert_tx_ctx_without_lockEPNS0_10ObTransCtxE:12685:246 + 1: 217 + 5: 217 + 6.1: 0 + 8.1: 217 + 9.1: 0 + 14: 228 + 12: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE6revertEPS3_:4340 + 3: 217 + 3: _ZN9oceanbase11transaction15ObTransHashLinkINS0_10ObTransCtxEE7dec_refEi:2170 + 2: 217 + 3: 217 + 4.1: 0 + 4: _ZN9oceanbase11transaction13TransCtxAlloc10free_valueEPNS0_10ObTransCtxE:868 + 3: 217 _ZN9oceanbase11transaction17ObTransCtxFactory7releaseEPNS0_10ObTransCtxE:226 +_ZNK9oceanbase3sql18ObBasicSessionInfo20get_query_timeout_tsEv:12576:273 + 1: 262 + 2: 262 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache20get_ob_query_timeoutEv:8384 + 0: 262 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache20get_ob_query_timeoutEb:4716 + 0: 262 + 2.1: _ZNK9oceanbase3sql18ObBasicSessionInfo20get_query_start_timeEv:1834 + 0: 262 +_ZThn32_NK9oceanbase3sql9ObTCLStmt12get_cmd_typeEv:12537:1461 + 2: 1393 +_ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf3LSNENS0_14ShareMemMgrTagEE7shrink_Ev:12527:30 + 1: 29 + 3: 37 + 5: 37 + 6: 37 + 15: 37 + 18: 0 + 23: 0 + 24: 0 + 24.1: 0 + 24.3: 0 + 25: 0 + 26: 0 + 28: 0 + 29: 0 + 31: 0 + 33: 0 + 34: 0 + 37: 0 + 39: 0 + 41.1: 0 + 41.3: 0 + 42: 37 + 47: 37 + 3: _ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf3LSNENS0_14ShareMemMgrTagEE11es_trylock_Ev:538 + 2: 37 + 2: _ZN9oceanbase6common10ObSpinLock7trylockEv:464 + 2: 29 _ZN9oceanbase6common12ObLatchMutex8try_lockEjPKj:31 + 4: _ZNK9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf3LSNENS0_14ShareMemMgrTagEE8bkt_cnt_Ev:999 + 5: 37 + 4: _ZNK9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf3LSNENS0_14ShareMemMgrTagEE8load_Lp_ERmS7_:518 + 2: 37 + 3: 37 + 4: 37 + 9: _ZNK9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf3LSNENS0_14ShareMemMgrTagEE8load_Lp_ERmS7_:1850 + 2: 37 + 3: 37 + 4: 37 + 30: _ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf3LSNENS0_14ShareMemMgrTagEE7set_Lp_Emm:0 + 2: 0 + 3: 0 + 31: _ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf3LSNENS0_14ShareMemMgrTagEE25unload_shrink_d_seg_bkts_EPNS6_6BucketES8_b:0 + 3: 0 + 4.1: 0 + 7: 0 + 8: 0 + 12: 0 + 9: _ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf3LSNENS0_14ShareMemMgrTagEE15set_bkt_active_EPNS6_6BucketEb:0 + 5: 0 + 5.3: 0 + 11: _ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf3LSNENS0_14ShareMemMgrTagEE13set_bkt_lock_EPNS6_6BucketEb:0 + 24: 0 + 12: _ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf3LSNENS0_14ShareMemMgrTagEE13set_bkt_lock_EPNS6_6BucketEb:0 + 2: 0 + 3.1: 0 + 24: 0 + 33: _ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf3LSNENS0_14ShareMemMgrTagEE12seg_bkt_idx_Em:0 + 2: 0 + 34: _ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf3LSNENS0_14ShareMemMgrTagEE8seg_idx_Em:0 + 2.1: 0 + 3: 0 + 34.1: _ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf3LSNENS0_14ShareMemMgrTagEE19wait_evict_haz_seg_ERPNS6_6BucketE:0 + 2: 0 + 3: 0 + 4: 0 + 4: _ZN9oceanbase6common13ObExternalRef14wait_quiescentEPv:0 + 1.1: 0 + 2: 0 + 1.1: _ZN9oceanbase6common13ObExternalRef12is_ref_clearEPv:0 + 0: 0 + 0: _ZN9oceanbase6common13ObExternalRef7get_refEPv:0 + 0: 0 + 0: _ZN9oceanbase6common13ObExternalRef6locateEPv:0 + 0: 0 + 0: _ZN9oceanbase6common13ObExternalRef4hashEm:0 + 1: 0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 34.2: _ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf3LSNENS0_14ShareMemMgrTagEE8des_seg_EPNS6_6BucketE:0 + 2: 0 + 3: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 43: _ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf3LSNENS0_14ShareMemMgrTagEE10es_unlock_Ev:296 + 2: 37 + 3: 37 + 4.1: 0 + 2: _ZN9oceanbase6common10ObSpinLock6unlockEv:37 + 2: 37 _ZN9oceanbase6common12ObLatchMutex6unlockEv:37 +_ZN9oceanbase8memtable13ObMemtableCtx13log_submittedERKNS0_21ObRedoLogSubmitHelperE:12462:235 + 1: 228 + 2: 228 + 3: 233 + 4: 233 _ZN9oceanbase8memtable18ObRedoLogGenerator13log_submittedERKNS0_15ObCallbackScopeE:250 + 2: _ZN9oceanbase8memtable13ObMemtableCtx20inc_pending_log_sizeEl:1140 + 2: 228 _ZN9oceanbase8memtable18ObTransCallbackMgr20inc_pending_log_sizeEl:251 + 3: _ZN9oceanbase8memtable13ObMemtableCtx20inc_flushed_log_sizeEl:1864 + 2: _ZN9oceanbase8memtable18ObTransCallbackMgr20inc_flushed_log_sizeEl:1864 + 0: 233 +_ZN9oceanbase3sql18ObBasicSessionInfo19update_sys_variableENS_5share17ObSysVarClassTypeERKNS_6common5ObObjE:12316:19 + 1: 18 + 2: 18 + 4: 18 + 5: 18 + 7: 18 + 8: 0 + 9.1: 0 + 10.1: 19 _ZNK9oceanbase3sql18ObBasicSessionInfo17inner_get_sys_varENS_5share17ObSysVarClassTypeERlRPNS2_13ObBasicSysVarE:19 + 11.1: 0 + 12.1: 19 + 13: 0 + 14.1: 0 + 15.1: 19 + 16: 0 + 16.1: 0 + 17.1: 0 + 19: 0 + 25: 19 + 26: 19 + 27.1: 0 + 28.1: 25 + 29.1: 0 + 32: 25 + 32.2: 0 + 34: 0 + 35: 0 + 37: 0 + 38: 0 + 39.1: 0 + 40.1: 0 + 40.2: 0 + 42.1: 0 + 44: 0 + 45: 0 + 46.1: 0 + 50: 19 + 51: 19 _ZN9oceanbase3sql18ObBasicSessionInfo22deep_copy_sys_variableERNS_5share13ObBasicSysVarENS2_17ObSysVarClassTypeERKNS_6common5ObObjE:6 + 52.1: 0 + 54.1: 19 + 55: 0 + 56.1: 0 + 60: 19 _ZN9oceanbase5share13ObBasicSysVar9set_valueERKNS_6common5ObObjE:19 + 66: 18 + 66.1: 2 + 67: 18 + 67.1: 23 + 68: 23 + 68.1: 23 + 69: 23 + 69.1: 2 _ZN9oceanbase3sql18ObBasicSessionInfo21gen_sys_var_in_pc_strEv:1 + 70.1: 0 + 72: 23 + 15.1: _ZNK9oceanbase3sql18ObBasicSessionInfo21is_track_session_infoEv:152 + 0: 19 + 26: _ZN9oceanbase3sql18ObBasicSessionInfo24process_session_variableENS_5share17ObSysVarClassTypeERKNS_6common5ObObjEb:3642 + 3: 19 + 4: 19 + 6.1: 0 + 6.2: 0 + 6.4: 0 + 10.1: 0 + 10.2: 0 + 10.4: 0 + 14.1: 0 + 14.2: 1 _ZN9oceanbase3sql18ObBasicSessionInfo30process_session_sql_mode_valueERKNS_6common5ObObjE:1 + 14.4: 0 + 18.1: 0 + 18.2: 0 + 18.4: 0 + 22.1: 0 + 22.2: 0 + 22.4: 0 + 26: 0 + 27.5: 0 + 27.6: 0 + 27.7: 0 + 27.8: 0 + 27.10: 0 + 27.16: 0 + 27.17: 0 + 27.18: 0 + 27.19: 0 + 27.25: 0 + 27.27: 0 + 27.35: 0 + 27.36: 0 + 29: 0 + 29.1: 0 + 32: 0 + 37: 0 + 42.3: 0 + 42.5: 0 + 42.6: 0 + 42.8: 0 + 42.13: 0 + 42.14: 0 + 42.15: 0 + 42.16: 0 + 42.22: 0 + 42.24: 0 + 42.32: 0 + 43: 0 + 44: 0 + 50.2: 0 + 50.4: 0 + 51: 0 + 56.2: 0 + 56.4: 0 + 57: 0 + 62.2: 0 + 62.4: 0 + 63: 0 + 68.2: 0 + 68.4: 0 + 69: 0 + 74.2: 0 + 74.4: 0 + 75: 0 + 80.2: 0 + 80.4: 0 + 81: 0 + 86.2: 0 + 86.4: 0 + 87: 0 + 92.2: 0 + 92.4: 0 + 93: 0 + 98.2: 0 + 98.4: 0 + 99: 0 + 104: 0 + 105.2: 0 + 105.4: 0 + 106: 0 + 106.1: 0 + 107: 0 + 107.2: 0 + 107.3: 0 + 109: 0 + 109.1: 0 + 114.2: 0 + 114.4: 0 + 115: 0 + 115.1: 0 + 120.2: 0 + 120.4: 0 + 121: 0 + 121.1: 0 + 126.2: 0 + 126.4: 0 + 127: 0 + 127.1: 0 + 132.2: 0 + 132.4: 0 + 133: 0 + 133.1: 0 + 138.2: 0 + 138.4: 0 + 139: 0 + 139.1: 0 + 144.2: 0 + 144.4: 0 + 145: 0 + 145.1: 0 + 150.2: 0 + 150.4: 0 + 151: 0 + 151.1: 0 + 156.2: 1 + 156.4: 0 + 157: 0 + 157.1: 1 + 161: 0 + 163: 0 + 165.1: 0 + 166.1: 0 + 167.1: 0 + 169.1: 0 + 170: 0 + 172: 0 + 172.1: 0 + 178: 0 + 180: 0 + 182.1: 0 + 183.1: 0 + 184.1: 0 + 186.1: 0 + 187: 0 + 189: 0 + 189.1: 0 + 196.2: 0 + 196.4: 0 + 197: 0 + 202.2: 0 + 202.4: 0 + 203: 0 + 208.2: 0 + 208.4: 0 + 209: 0 + 209.1: 0 + 214: 0 + 215.2: 0 + 215.4: 0 + 216: 0 + 216.1: 0 + 217: 0 + 217.2: 0 + 217.3: 0 + 218: 0 + 218.1: 0 + 223.2: 0 + 223.4: 0 + 224: 0 + 224.1: 0 + 229.2: 0 + 229.4: 0 + 230: 0 + 230.1: 0 + 235.2: 0 + 235.4: 0 + 236: 0 + 241.2: 4 + 241.4: 0 + 242: 0 + 247.2: 0 + 247.4: 0 + 248: 0 + 253.2: 0 + 253.4: 0 + 254: 0 + 259.2: 8 + 259.4: 0 + 260: 0 + 265.2: 0 + 265.4: 0 + 266: 0 + 271.2: 0 + 271.4: 0 + 272: 0 + 277.2: 0 + 277.4: 0 + 278: 0 + 286: 0 + 289: 0 + 293: 0 + 293.1: 0 + 295.1: 0 + 296.2: 0 + 296.3: 0 + 297.1: 0 + 304: 0 + 311.1: 0 + 311.2: 0 + 311.3: 0 + 311.5: 0 + 312: 0 + 313: 0 + 314: 0 + 315.1: 0 + 319.1: 0 + 322.1: 0 + 331: 0 + 332.1: 0 + 333.1: 0 + 335: 0 + 336.1: 0 + 346: 6 _ZNK9oceanbase6common5ObObj10get_stringERNS0_8ObStringE:6 + 347.1: 0 + 351: 6 + 362: 6 _ZN9oceanbase6common9ObDFMUtil28parse_datetime_format_stringERKNS0_8ObStringERNS0_8ObIArrayINS0_9ObDFMElemEEEb:6 + 362.1: 4 + 364.1: 0 + 365.1: 4 _ZN9oceanbase6common9ObDFMUtil14check_semanticERKNS0_8ObIArrayINS0_9ObDFMElemEEERNS0_13ObFixedBitSetILl64EEEm:4 + 365.2: 6 + 366.1: 0 + 368: 6 + 383.2: 0 + 383.3: 7 _ZN9oceanbase6common13ObSEArrayImplINS0_9ObDFMElemELl10ENS0_19ModulePageAllocatorELb0EED2Ev:7 + 389: 0 + 390: 0 + 391.2: 0 + 391.4: 0 + 392: 0 + 392.1: 0 + 393: 0 + 393.1: 0 + 394: 0 + 394.1: 0 + 394.2: 0 + 394.3: 0 + 394.4: 0 + 394.5: 0 + 396: 0 + 397: 0 + 397.1: 0 + 399: 0 + 399.1: 0 + 405: 0 + 406.1: 0 + 407.1: 0 + 409.1: 0 + 415: 0 + 416.1: 0 + 426: 19 + 27.2: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:0 + 4: 0 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 27.3: _ZN9oceanbase6common15ObObjCastParamsC2EPNS0_12ObIAllocatorEPKNS0_20ObDataTypeCastParamsEmNS0_15ObCollationTypeEPNS0_10ObAccuracyE:0 + 3: 0 + 4: 0 + 6: 0 + 8: 0 + 13: 0 + 12: _ZN9oceanbase6common20ObDataTypeCastParamsC2Ev:0 + 4: 0 + 6: 0 + 16: _ZN9oceanbase6common15ObObjCastParams24set_compatible_cast_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 27.5: _ZN9oceanbase6common5ObObjC2Ev:0 + 2: _ZN9oceanbase6common5ObObj5resetEv:0 + 6: 0 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:0 + 0: 0 + 27.24: _ZNK9oceanbase6common5ObObj7get_intERl:0 + 3: 0 + 4: 0 + 3: _ZNK9oceanbase6common9ObObjMeta6is_intEv:0 + 0: 0 + 27.38: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:0 + 0: 0 + 27.40: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:0 + 0: 0 + 42.3: _ZN9oceanbase6common5ObObjC2Ev:0 + 2: _ZN9oceanbase6common5ObObj5resetEv:0 + 6: 0 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:0 + 0: 0 + 42.21: _ZNK9oceanbase6common5ObObj7get_intERl:0 + 3: 0 + 4: 0 + 3: _ZNK9oceanbase6common9ObObjMeta6is_intEv:0 + 0: 0 + 42.35: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:0 + 0: 0 + 42.37: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:0 + 0: 0 + 42.38: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:0 + 4: 0 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 42.39: _ZN9oceanbase6common15ObObjCastParamsC2EPNS0_12ObIAllocatorEPKNS0_20ObDataTypeCastParamsEmNS0_15ObCollationTypeEPNS0_10ObAccuracyE:0 + 3: 0 + 4: 0 + 6: 0 + 8: 0 + 13: 0 + 12: _ZN9oceanbase6common20ObDataTypeCastParamsC2Ev:0 + 4: 0 + 6: 0 + 16: _ZN9oceanbase6common15ObObjCastParams24set_compatible_cast_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 50.2: _ZNK9oceanbase6common5ObObj10get_uint64ERm:0 + 3: 0 + 4: 0 + 3: _ZNK9oceanbase6common9ObObjMeta9is_uint64Ev:0 + 0: 0 + 51.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache28set_auto_increment_incrementEm:0 + 0: 0 + 56.2: _ZNK9oceanbase6common5ObObj7get_intERl:0 + 3: 0 + 4: 0 + 3: _ZNK9oceanbase6common9ObObjMeta6is_intEv:0 + 0: 0 + 57.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache33set_sql_throttle_current_priorityEl:0 + 0: 0 + 62.2: _ZNK9oceanbase6common5ObObj7get_intERl:0 + 3: 0 + 4: 0 + 3: _ZNK9oceanbase6common9ObObjMeta6is_intEv:0 + 0: 0 + 63.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache26set_ob_last_schema_versionEl:0 + 0: 0 + 68.2: _ZNK9oceanbase6common5ObObj7get_intERl:0 + 3: 0 + 4: 0 + 3: _ZNK9oceanbase6common9ObObjMeta6is_intEv:0 + 0: 0 + 69.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache20set_sql_select_limitEl:0 + 0: 0 + 74.2: _ZNK9oceanbase6common5ObObj10get_uint64ERm:0 + 3: 0 + 4: 0 + 3: _ZNK9oceanbase6common9ObObjMeta9is_uint64Ev:0 + 0: 0 + 75.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache25set_auto_increment_offsetEm:0 + 0: 0 + 80.2: _ZNK9oceanbase6common5ObObj10get_uint64ERm:0 + 3: 0 + 4: 0 + 3: _ZNK9oceanbase6common9ObObjMeta9is_uint64Ev:0 + 0: 0 + 81.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache18set_last_insert_idEm:0 + 0: 0 + 86.2: _ZNK9oceanbase6common5ObObj7get_intERl:0 + 3: 0 + 4: 0 + 3: _ZNK9oceanbase6common9ObObjMeta6is_intEv:0 + 0: 0 + 87.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache20set_binlog_row_imageEl:0 + 0: 0 + 92.2: _ZNK9oceanbase6common5ObObj7get_intERl:0 + 3: 0 + 4: 0 + 3: _ZNK9oceanbase6common9ObObjMeta6is_intEv:0 + 0: 0 + 93.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache22set_foreign_key_checksEl:0 + 0: 0 + 98.2: _ZNK9oceanbase6common5ObObj10get_uint64ERm:0 + 3: 0 + 4: 0 + 3: _ZNK9oceanbase6common9ObObjMeta9is_uint64Ev:0 + 0: 0 + 99.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache29set_default_password_lifetimeEm:0 + 0: 0 + 103: _ZN9oceanbase6common8ObStringC2Ev:0 + 1: 0 + 109.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache16set_tx_isolationENS_11transaction18ObTxIsolationLevelE:0 + 0: 0 + 114.2: _ZNK9oceanbase6common5ObObj7get_intERl:0 + 3: 0 + 4: 0 + 3: _ZNK9oceanbase6common9ObObjMeta6is_intEv:0 + 0: 0 + 115.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache16set_tx_read_onlyEb:0 + 0: 0 + 120.2: _ZNK9oceanbase6common5ObObj7get_intERl:0 + 3: 0 + 4: 0 + 3: _ZNK9oceanbase6common9ObObjMeta6is_intEv:0 + 0: 0 + 121.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24set_ob_enable_plan_cacheEb:0 + 0: 0 + 126.2: _ZNK9oceanbase6common5ObObj7get_intERl:0 + 3: 0 + 4: 0 + 3: _ZNK9oceanbase6common9ObObjMeta6is_intEv:0 + 0: 0 + 127.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache36set_optimizer_use_sql_plan_baselinesEb:0 + 0: 0 + 132.2: _ZNK9oceanbase6common5ObObj7get_intERl:0 + 3: 0 + 4: 0 + 3: _ZNK9oceanbase6common9ObObjMeta6is_intEv:0 + 0: 0 + 133.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache40set_optimizer_capture_sql_plan_baselinesEb:0 + 0: 0 + 138.2: _ZNK9oceanbase6common5ObObj7get_intERl:0 + 3: 0 + 4: 0 + 3: _ZNK9oceanbase6common9ObObjMeta6is_intEv:0 + 0: 0 + 139.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache22set_is_result_accurateEb:0 + 0: 0 + 144.2: _ZNK9oceanbase6common5ObObj7get_intERl:0 + 3: 0 + 4: 0 + 3: _ZNK9oceanbase6common9ObObjMeta6is_intEv:0 + 0: 0 + 145.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache30set__ob_use_parallel_executionEb:0 + 0: 0 + 150.2: _ZNK9oceanbase6common5ObObj7get_intERl:0 + 3: 0 + 4: 0 + 3: _ZNK9oceanbase6common9ObObjMeta6is_intEv:0 + 0: 0 + 151.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache38set__optimizer_adaptive_cursor_sharingEb:0 + 0: 0 + 156.2: _ZNK9oceanbase6common5ObObj7get_intERl:14 + 3: 1 + 4: 1 + 3: _ZNK9oceanbase6common9ObObjMeta6is_intEv:4 + 0: 1 + 157.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache35set_ob_enable_transmission_checksumEb:17 + 0: 1 + 163: _ZNK9oceanbase6common5ObObj7is_nullEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta7is_nullEv:0 + 0: 0 + 165.1: _ZNK9oceanbase6common5ObObj7get_intERl:0 + 4: 0 + 172.2: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache25set_character_set_resultsENS_6common13ObCharsetTypeE:0 + 0: 0 + 180: _ZNK9oceanbase6common5ObObj7is_nullEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta7is_nullEv:0 + 0: 0 + 182.1: _ZNK9oceanbase6common5ObObj7get_intERl:0 + 4: 0 + 189.2: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache28set_character_set_connectionENS_6common13ObCharsetTypeE:0 + 0: 0 + 196.2: _ZNK9oceanbase6common5ObObj7get_intERl:0 + 3: 0 + 4: 0 + 3: _ZNK9oceanbase6common9ObObjMeta6is_intEv:0 + 0: 0 + 197.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache17set_ob_enable_jitENS_6common15ObJITEnableModeE:0 + 0: 0 + 202.2: _ZNK9oceanbase6common5ObObj7get_intERl:0 + 3: 0 + 4: 0 + 3: _ZNK9oceanbase6common9ObObjMeta6is_intEv:0 + 0: 0 + 203.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache23set_cursor_sharing_modeENS_6common19ObCursorSharingModeE:0 + 0: 0 + 208.2: _ZNK9oceanbase6common5ObObj7get_intERl:0 + 3: 0 + 4: 0 + 3: _ZNK9oceanbase6common9ObObjMeta6is_intEv:0 + 0: 0 + 209.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache23set_ob_enable_sql_auditEb:0 + 0: 0 + 213: _ZN9oceanbase6common8ObStringC2Ev:0 + 1: 0 + 218.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24set_nls_length_semanticsEs:0 + 0: 0 + 223.2: _ZNK9oceanbase6common5ObObj7get_intERl:0 + 3: 0 + 4: 0 + 3: _ZNK9oceanbase6common9ObObjMeta6is_intEv:0 + 0: 0 + 224.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache14set_autocommitEb:0 + 0: 0 + 229.2: _ZNK9oceanbase6common5ObObj7get_intERl:0 + 3: 0 + 4: 0 + 3: _ZNK9oceanbase6common9ObObjMeta6is_intEv:0 + 0: 0 + 230.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache23set_ob_enable_trace_logEb:0 + 0: 0 + 235.2: _ZNK9oceanbase6common5ObObj7get_intERl:0 + 3: 0 + 4: 0 + 3: _ZNK9oceanbase6common9ObObjMeta6is_intEv:0 + 0: 0 + 236.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache21set_ob_org_cluster_idEl:0 + 0: 0 + 241.2: _ZNK9oceanbase6common5ObObj7get_intERl:56 + 3: 4 + 4: 4 + 3: _ZNK9oceanbase6common9ObObjMeta6is_intEv:16 + 0: 4 + 242.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache20set_ob_query_timeoutEl:64 + 0: 4 + 247.2: _ZNK9oceanbase6common5ObObj7get_intERl:0 + 3: 0 + 4: 0 + 3: _ZNK9oceanbase6common9ObObjMeta6is_intEv:0 + 0: 0 + 248.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache23set_ob_pl_block_timeoutEl:0 + 0: 0 + 252: _ZN9oceanbase6common8ObStringC2Ev:0 + 1: 0 + 254.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache17set_plsql_ccflagsERKNS_6common8ObStringE:0 + 0: 0 + 0: _ZN9oceanbase3sql18ObBasicSessionInfo16SysVarsCacheData17set_plsql_ccflagsERKNS_6common8ObStringE:0 + 2: 0 + 6: 0 + 7: 0 + 2: _ZNK9oceanbase6common8ObString5emptyEv:0 + 2: 0 + 2.1: 0 + 3: _ZN9oceanbase6common8ObString5resetEv:0 + 3: 0 + 8: _ZN9oceanbase6common8ObString10assign_ptrEPKci:0 + 2: 0 + 3: 0 + 259.2: _ZNK9oceanbase6common5ObObj7get_intERl:112 + 3: 8 + 4: 8 + 3: _ZNK9oceanbase6common9ObObjMeta6is_intEv:32 + 0: 8 + 260.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache18set_ob_trx_timeoutEl:128 + 0: 8 + 265.2: _ZNK9oceanbase6common5ObObj7get_intERl:0 + 3: 0 + 4: 0 + 3: _ZNK9oceanbase6common9ObObjMeta6is_intEv:0 + 0: 0 + 266.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache23set_ob_trx_idle_timeoutEl:0 + 0: 0 + 271.2: _ZNK9oceanbase6common5ObObj7get_intERl:0 + 3: 0 + 4: 0 + 3: _ZNK9oceanbase6common9ObObjMeta6is_intEv:0 + 0: 0 + 272.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache23set_ob_trx_lock_timeoutEl:0 + 0: 0 + 277.2: _ZNK9oceanbase6common5ObObj7get_intERl:0 + 3: 0 + 4: 0 + 3: _ZNK9oceanbase6common9ObObjMeta6is_intEv:0 + 0: 0 + 278.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24set_collation_connectionEl:0 + 0: 0 + 286.1: _ZNK9oceanbase6common6number8ObNumber7is_zeroEv:0 + 2: 0 + 287: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache13set_timestampEl:0 + 0: 0 + 290.1: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:0 + 4: 0 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 291: _ZN9oceanbase6common6number8ObNumberC2Ev:0 + 0: 0 + 0: _ZN12ObNumberDescC2Ej:0 + 0: 0 + 292: _ZN9oceanbase6common6number8ObNumberC2Ev:0 + 0: 0 + 0: _ZN12ObNumberDescC2Ej:0 + 0: 0 + 293: _ZN9oceanbase6common6number8ObNumber4fromINS0_16ObArenaAllocatorEEEilRT_:0 + 3: 0 + 2: _ZN9oceanbase6common6number8ObNumber10TAllocatorINS0_16ObArenaAllocatorEEC2ERS4_:0 + 0: 0 + 296.1: _ZNK9oceanbase6common5ObObj10get_numberEv:0 + 0: 0 + 296.2: _ZNK9oceanbase6common6number8ObNumber3mulINS0_16ObArenaAllocatorEEEiRKS2_RS2_RT_b:0 + 4: 0 + 3: _ZN9oceanbase6common6number8ObNumber10TAllocatorINS0_16ObArenaAllocatorEEC2ERS4_:0 + 0: 0 + 300: _ZN9oceanbase6common5ObObj10set_numberERKNS0_6number8ObNumberE:0 + 3: 0 + 4: 0 + 2: _ZN9oceanbase6common9ObObjMeta10set_numberEv:0 + 0: 0 + 3: _ZNK9oceanbase6common6number8ObNumber14get_desc_valueEv:0 + 2: 0 + 4: _ZNK9oceanbase6common6number8ObNumber10get_digitsEv:0 + 2: 0 + 302: _ZNK9oceanbase3sql18ObBasicSessionInfo30get_local_collation_connectionEv:0 + 2: 0 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_collation_connectionEv:0 + 0: 0 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_collation_connectionEb:0 + 0: 0 + 305: _ZN9oceanbase6common15ObObjCastParamsC2EPNS0_12ObIAllocatorEPKNS0_20ObDataTypeCastParamsElmNS0_15ObCollationTypeEPKNS0_14ObZerofillInfoEPNS0_10ObAccuracyE:0 + 5: 0 + 6: 0 + 8: 0 + 10: 0 + 11: 0 + 12: 0 + 14: 0 + 15: 0 + 20: 0 + 14: _ZN9oceanbase6common20ObDataTypeCastParamsC2Ev:0 + 4: 0 + 6: 0 + 2.1: _ZN9oceanbase6common8ObStringC2Ev:0 + 1: 0 + 18: _ZN9oceanbase6common15ObObjCastParams24set_compatible_cast_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 311: _ZN9oceanbase6common5ObObjC2Ev:0 + 2: _ZN9oceanbase6common5ObObj5resetEv:0 + 6: 0 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:0 + 0: 0 + 319: _ZNK9oceanbase6common5ObObj7get_intEv:0 + 0: 0 + 319.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache13set_timestampEl:0 + 0: 0 + 325: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:0 + 0: 0 + 325.2: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:0 + 0: 0 + 329: _ZN9oceanbase6common8ObStringC2Ev:0 + 1: 0 + 330: _ZN9oceanbase6common8ObStringC2Ev:0 + 1: 0 + 338: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache20set_iso_nls_currencyERKNS_6common8ObStringE:0 + 0: 0 + 0: _ZN9oceanbase3sql18ObBasicSessionInfo16SysVarsCacheData20set_iso_nls_currencyERKNS_6common8ObStringE:0 + 2: 0 + 5: 0 + 2: _ZNK9oceanbase6common8ObString5emptyEv:0 + 2: 0 + 2.1: 0 + 3: _ZN9oceanbase6common8ObString5resetEv:0 + 3: 0 + 6.1: _ZN9oceanbase6common8ObString10assign_ptrEPKci:0 + 2: 0 + 3: 0 + 345: _ZN9oceanbase6common8ObStringC2Ev:78 + 1: 6 + 359: _ZN9oceanbase6common9ObSEArrayINS0_9ObDFMElemELl10ENS0_19ModulePageAllocatorELb0EEC2Ev:888 + 0.1: 6 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS0_9ObDFMElemELl10ENS0_19ModulePageAllocatorELb0EEC2ElRKS3_:798 + 2: 6 + 5: 6 + 6: 6 + 8: 6 + 17.1: 6 + 2: _ZN9oceanbase6common8ObIArrayINS0_9ObDFMElemEEC2EPS2_l:60 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_9ObDFMElemEEC2EPS2_l:60 + 0: 6 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:318 + 0: 6 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:126 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:126 + 2: 6 + 8: 6 + 360: _ZN9oceanbase6common13ObFixedBitSetILl64EEC2Ev:108 + 0: 6 + 370: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache19set_nls_date_formatERKNS_6common8ObStringE:196 + 0: 2 + 0: _ZN9oceanbase3sql18ObBasicSessionInfo16SysVarsCacheData19set_nls_date_formatERKNS_6common8ObStringE:178 + 2: _ZN9oceanbase3sql18ObBasicSessionInfo16SysVarsCacheData14set_nls_formatElRKNS_6common8ObStringE:178 + 3: 2 + 5: 0 + 7: 2 + 3: _ZNK9oceanbase6common8ObString5emptyEv:52 + 2: 2 + 2.1: 2 + 4: _ZN9oceanbase6common8ObString5resetEv:0 + 3: 0 + 8.1: _ZN9oceanbase6common8ObString10assign_ptrEPKci:82 + 2: 3 + 3: 3 + 373: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24set_nls_timestamp_formatERKNS_6common8ObStringE:288 + 0: 4 + 0: _ZN9oceanbase3sql18ObBasicSessionInfo16SysVarsCacheData24set_nls_timestamp_formatERKNS_6common8ObStringE:256 + 2: _ZN9oceanbase3sql18ObBasicSessionInfo16SysVarsCacheData14set_nls_formatElRKNS_6common8ObStringE:256 + 3: 4 + 5: 0 + 7: 4 + 3: _ZNK9oceanbase6common8ObString5emptyEv:88 + 2: 4 + 2.1: 4 + 4: _ZN9oceanbase6common8ObString5resetEv:0 + 3: 0 + 8.1: _ZN9oceanbase6common8ObString10assign_ptrEPKci:104 + 2: 4 + 3: 4 + 376: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache27set_nls_timestamp_tz_formatERKNS_6common8ObStringE:81 + 0: 1 + 0: _ZN9oceanbase3sql18ObBasicSessionInfo16SysVarsCacheData27set_nls_timestamp_tz_formatERKNS_6common8ObStringE:72 + 2: _ZN9oceanbase3sql18ObBasicSessionInfo16SysVarsCacheData14set_nls_formatElRKNS_6common8ObStringE:72 + 3: 1 + 5: 0 + 7: 1 + 3: _ZNK9oceanbase6common8ObString5emptyEv:26 + 2: 1 + 2.1: 1 + 4: _ZN9oceanbase6common8ObString5resetEv:0 + 3: 0 + 8.1: _ZN9oceanbase6common8ObString10assign_ptrEPKci:26 + 2: 1 + 3: 1 + 388: _ZN9oceanbase6common8ObStringC2Ev:0 + 1: 0 + 394.1: _ZN9oceanbase6common9ObCharset16is_valid_charsetEl:0 + 4: 0 + 397.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache17set_nls_collationENS_6common15ObCollationTypeE:0 + 0: 0 + 399.1: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24set_nls_nation_collationENS_6common15ObCollationTypeE:0 + 0: 0 + 404: _ZN9oceanbase6common8ObStringC2Ev:0 + 1: 0 + 414: _ZN9oceanbase6common8ObStringC2Ev:0 + 1: 0 + 418: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache17set_ob_trace_infoERKNS_6common8ObStringE:0 + 0: 0 + 0: _ZN9oceanbase3sql18ObBasicSessionInfo16SysVarsCacheData17set_ob_trace_infoERKNS_6common8ObStringE:0 + 2: 0 + 5: 0 + 6: 0 + 2: _ZNK9oceanbase6common8ObString5emptyEv:0 + 2: 0 + 2.1: 0 + 3: _ZN9oceanbase6common8ObString5resetEv:0 + 3: 0 + 7: _ZN9oceanbase6common8ObString10assign_ptrEPKci:0 + 2: 0 + 3: 0 + 28.1: _ZN9oceanbase3sql18ObBasicSessionInfo13SysVarIncInfo14add_sys_var_idENS_5share17ObSysVarClassTypeE:2361 + 3.1: 21 + 3.2: 25 + 3.4: 0 + 4: 0 + 3.2: _ZN9oceanbase6common23add_var_to_array_no_dupINS_5share17ObSysVarClassTypeEEEiRNS0_8ObIArrayIT_EERKS5_Pl:2075 + 2: 21 + 5.1: 13 _ZN9oceanbase6common13ObSEArrayImplINS_5share17ObSysVarClassTypeELl64ENS0_19ModulePageAllocatorELb0EE9push_backERKS3_:12 + 6.1: 0 + 10: 0 + 3: _ZN9oceanbase6common18has_exist_in_arrayINS_5share17ObSysVarClassTypeEEEbRKNS0_8ObIArrayIT_EERKS5_Pl:1599 + 4.1: 103 + 5: 114 + 3: _ZNK9oceanbase6common12ObIArrayWrapINS_5share17ObSysVarClassTypeEE5countEv:84 + 0: 21 + 5: _ZNK9oceanbase6common12ObIArrayWrapINS_5share17ObSysVarClassTypeEE2atEl:120 + 32.1: _ZNK9oceanbase6common18ObTimeZoneInfoWrap17is_position_classEv:0 + 0: 0 + 36: _ZN9oceanbase6common5ObObjC2ERKS1_:0 + 2: 0 + 37: _ZNK9oceanbase6common18ObTimeZoneInfoWrap18get_time_zone_infoEv:0 + 0: 0 + 44.1: _ZN9oceanbase6common5ObObj16set_common_valueERKNS0_8ObStringE:0 + 2: 0 + 3: 0 + 50: _ZNK9oceanbase6common5ObObj8get_typeEv:450 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:450 + 0: 25 + 50.1: _ZN9oceanbase6common17ob_is_string_typeENS0_9ObObjTypeE:420 + 0: 25 + 0: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:189 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:189 + 2: 25 + 54.2: _ZN9oceanbase6common15ob_is_number_tcENS0_9ObObjTypeE:57 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:57 + 2: 19 + 68.1: _ZNK9oceanbase5share13ObBasicSysVar17is_influence_planEv:92 + 0: 23 +_ZN9oceanbase3sql17ObChunkDatumStore15ShadowStoredRow5resetEv:12280:237 + 1: 227 + 2: 227 + 2.1: 227 + 3: 227 _ZN9oceanbase6common16ObArenaAllocator4freeEPv:252 + 6: 255 + 8: 255 +_ZN9oceanbase6common4hash24ObHashTableConstIteratorINS_7storage18ObTenantMetaMemMgr19MinMinorSSTableInfoENS1_11HashMapPairIS5_NS1_11HashNullObjEEENS1_9hash_funcIS5_EENS1_8equal_toIS5_EENS1_10pair_firstIS8_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS8_EELi61ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEppEv:12276:0 + 1: 0 + 2: 0 + 3.1: 0 + 4.1: 0 + 4.2: 0 + 7: 0 + 7.1: 372 + 8: 372 + 9: 0 + 14: 0 + 17: 0 +_ZN9oceanbase11transaction25ObPartitionAuditInfoCache26stmt_end_update_audit_infoEb:12240:276 + 1: 255 + 4: 255 + 5: 255 + 6: 255 + 7: 255 + 9: 0 + 10: 0 + 11: 0 + 13: 255 + 15: 255 + 17: 255 +_ZN9oceanbase3sql13TriggerHandle18init_param_new_rowERNS0_9ObEvalCtxERKNS0_14ObTrigDMLCtDefERNS0_14ObTrigDMLRtDefE:12005:263 + 4: 245 + 5: 245 + 7: 245 + 10: 0 + 11: 0 + 12.1: 0 + 13.1: 0 + 14: 0 + 15.1: 0 + 17.1: 0 + 19: 0 + 20.1: 0 + 21.1: 0 + 22: 0 + 23.1: 0 + 24.1: 0 + 24.2: 0 + 26.1: 0 + 28: 0 + 28.1: 0 + 29: 0 + 29.1: 0 + 31: 0 + 33.1: 0 + 34.1: 0 + 35: 0 + 35.1: 0 + 35.2: 0 + 35.3: 0 + 40.1: 0 + 46: 0 + 48: 0 + 49.1: 0 + 55: 245 + 13.1: _ZN9oceanbase2pl10ObPLRecord11get_elementEv:0 + 2.1: 0 + 2: _ZNK9oceanbase2pl10ObPLRecord9get_countEv:0 + 0: 0 + 19: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:0 + 6: 0 + 19.1: _ZNK9oceanbase3sql6ObExpr4evalERNS0_9ObEvalCtxERPNS_6common7ObDatumE:0 + 4: 0 + 6: 0 + 7: 0 + 9: 0 + 10: 0 + 10.1: 0 + 11: 0 + 13: 0 + 15.1: 0 + 15.2: 0 + 17: 0 + 18: 0 + 20: 0 + 21: 0 + 22: 0 + 24: 0 + 9: _ZNK9oceanbase3sql6ObExpr15is_batch_resultEv:0 + 0: 0 + 11: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 24: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:0 + 0: 0 + 24.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:0 + 6: 0 + 28.1: _ZNK9oceanbase3sql20ObTriggerColumnsInfo9get_flagsEv:0 + 0: 0 + 29.1: _ZNK9oceanbase6common5ObObj8get_typeEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:0 + 0: 0 + 31: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:0 + 6: 0 + 31.1: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:0 + 0: 0 + 32: _ZN9oceanbase6common10ObAccuracyC2Ev:0 + 0: _ZN9oceanbase6common10ObAccuracy5resetEv:0 + 0: 0 + 35: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:0 + 2: 0 + 48: _ZNK9oceanbase3sql6ObExpr4evalERNS0_9ObEvalCtxERPNS_6common7ObDatumE:0 + 4: 0 + 6: 0 + 7: 0 + 9: 0 + 10: 0 + 10.1: 0 + 11: 0 + 13: 0 + 15.1: 0 + 15.2: 0 + 17: 0 + 18: 0 + 20: 0 + 21: 0 + 22: 0 + 24: 0 + 9: _ZNK9oceanbase3sql6ObExpr15is_batch_resultEv:0 + 0: 0 + 11: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 24: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:0 + 0: 0 +_ZN9oceanbase10logservice17ObLogApplyService9push_taskEPNS0_18ObApplyServiceTaskE:11937:79 + 1: 77 + 2: 77 + 3: 77 + 4: 2 + 5.1: 2 + 6.1: 77 + 7: 2 + 8.1: 2 + 9.1: 77 + 9.3: 2 + 9.4: 2 + 9.8: 77 + 9.9: 2 + 9.11: 77 + 9.15: 146 + 9.16: 2 + 10.1: 2 + 12: 146 + 9.3: _ZN9oceanbase6common8ObLogger10get_loggerEv:208 + 2: 2 + 2.1: 2 + 2.2: 2 + 2.3: 2 + 2.4: 2 + 2.6: 2 + 9.8: _ZN9oceanbase3lib5TGMgr8instanceEv:1473 + 2: 77 + 2.1: 2 + 2.2: 2 + 2.3: 2 + 2.4: 2 + 2.6: 2 + 9.13: _ZN9oceanbase3lib5FWrapIZNS_10logservice17ObLogApplyService9push_taskEPNS2_18ObApplyServiceTaskEE5$_145Lb0EEclES6_:539 + 2: _ZZN9oceanbase10logservice17ObLogApplyService9push_taskEPNS0_18ObApplyServiceTaskEENK5$_145clEv:539 + 0: 77 _ZN9oceanbase3lib2TGILNS0_6TGTypeE5EE9push_taskEPv:77 +_ZN9oceanbase11transaction12ObTxMDSCache7destroyEv:11926:289 + 1: 269 + 2: 269 + 4.2: 269 + 7.1: 0 + 11.1: 275 + 4.1: _ZNK9oceanbase6common6ObListINS_11transaction14ObTxBufferNodeENS2_24TransModulePageAllocatorEE5emptyEv:1883 + 2: 269 + 6: _ZN9oceanbase6common6ObListINS_11transaction14ObTxBufferNodeENS2_24TransModulePageAllocatorEE9pop_frontERS3_:0 + 3: 0 + 6: 0 + 10: 0 + 11: 0 + 12: 0 + 14: 0 + 7: _ZN9oceanbase6common11copy_assignINS_11transaction14ObTxBufferNodeEEEiRT_RKS4_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapINS_11transaction14ObTxBufferNodeEEEiRT_RKS4_NS0_8BoolTypeILb0EEE:0 + 2: 0 + 8.1: _ZN9oceanbase5share8mtl_freeEPv:0 + 2: _ZN9oceanbase6common7ob_freeEPv:0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase8memtable10ObMemtable7get_endERNS0_15ObMvccAccessCtxEi:11739:247 + 1: 234 + 2: 246 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:250 + 3.1: 246 + 3.2: 0 + 3.3: 0 + 3.4: 0 + 3.6: 0 + 3.7: 0 + 5.1: 0 + 5.2: 0 + 5.3: 0 + 5.4: 0 + 5.6: 0 + 5.7: 0 + 7.1: 253 + 7.2: 0 + 7.3: 0 + 7.4: 0 + 7.6: 0 + 7.7: 0 + 7.10: 0 + 7.11: 0 + 8: 253 + 7.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:1262 + 2: 250 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:253 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:1012 + 2: 253 +_ZN9oceanbase7storage9ObTxTable13alloc_tx_dataERPNS0_8ObTxDataE:11725:253 + 0: 243 + 1: 243 + 2: 243 + 3: 0 + 4.1: 0 + 5.1: 262 _ZN9oceanbase7storage13ObTxDataTable13alloc_tx_dataERPNS0_8ObTxDataE:245 + 6.1: 0 + 8: 262 +_ZN9oceanbase3sql14ObExprValuesOp11inner_closeEv:11678:258 + 1: 248 + 3: 248 + 4: 263 _ZN9oceanbase3sql13ObDatumCaster7destroyEv:249 + 5.1: 0 + 8: 263 +_ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEE17finish_insert_rowEv:11657:238 + 1: 228 + 2: 228 + 3: 228 + 4.1: 1 + 4.5: 1 + 5.1: 1 + 9: 1 + 10.1: 1 + 11.1: 1 + 12.1: 1 + 15: 0 + 17: 216 +_ZNK9oceanbase12blocksstable21ObBloomFilterCacheKey4hashEv:11592:98 + 1: 92 + 3: 92 + 5: 92 + 2: _ZNK9oceanbase12blocksstable12MacroBlockId4hashEv:2300 + 3: 92 + 5: 92 + 6: 92 + 8.1: 0 + 4: _ZN9oceanbase6common10murmurhashEPKvim:4508 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:4508 + 13: 92 + 14: 92 + 15: 92 + 17: 92 + 18: 92 + 41: 92 + 42: 92 + 43: 92 +_ZN9oceanbase3sql16AllocDASOpHelperILi5EE5allocERNS_6common12ObIAllocatorERPNS0_12ObIDASTaskOpE:11550:177 + 1: 174 + 2: 174 + 5: 174 _ZN9oceanbase6common26ObWrapperAllocatorWithAttr5allocEl:182 + 6: 0 + 7.1: 0 + 9: 180 _ZN9oceanbase3sql11ObDASLockOpC1ERNS_6common12ObIAllocatorE:172 + 11: 180 +_ZN9oceanbase11transaction13ObTxBaseLogCbC2Ev:11500:84 + 0: 85 + 0.2: 74 + 0.7: 85 _ZN9oceanbase4palf3LSNC1Ev:86 + 0: _ZN9oceanbase10logservice8AppendCbC2Ev:3420 + 0: _ZN9oceanbase10logservice12AppendCbBaseC2Ev:3420 + 0: 80 + 1: 80 _ZN9oceanbase4palf3LSNC1Ev:85 + 2: 85 + 3: 80 + 0.1: _ZN9oceanbase11transaction13ObTxBaseLogCb5resetEv:3740 + 3: 78 + 4: 78 _ZN9oceanbase4palf3LSN5resetEv:78 + 5: 74 + 2: _ZN9oceanbase10logservice8AppendCb5resetEv:2212 + 2: 78 + 1: _ZN9oceanbase10logservice12AppendCbBase7__resetEv:964 + 0: 85 _ZN9oceanbase4palf3LSN5resetEv:85 + 0.5: _ZN9oceanbase10logservice8AppendCbD2Ev:0 + 1: 0 + 3.1: 0 + 3.2: 0 + 2: _ZN9oceanbase10logservice8AppendCb5resetEv:0 + 2: 0 + 1: _ZN9oceanbase10logservice12AppendCbBase7__resetEv:0 + 0: 0 + 3: _ZN9oceanbase10logservice12AppendCbBaseD2Ev:0 + 1: 0 + 3.2: 0 + 2: _ZN9oceanbase10logservice12AppendCbBase7__resetEv:0 + 0: 0 +_ZN9oceanbase11transaction11ObCtxTxData23check_tx_data_writable_Ev:11475:266 + 1: 255 + 2: 255 + 4: 255 + 5: 0 + 6.1: 0 + 7.1: 255 + 8: 0 + 9.1: 0 + 10.1: 255 + 11: 0 + 12.1: 0 + 14: 255 +_ZN9oceanbase11transaction10ObTransCtx9test_lockEv:11451:234 + 1: 234 + 2: 234 + 3: 307 _ZN9oceanbase11transaction12CtxLockGuardD1Ev:290 + 2: _ZN9oceanbase11transaction12CtxLockGuardC2ERNS0_7CtxLockEb:4914 + 0: 234 + 0.1: _ZN9oceanbase11transaction7CtxLock4lockEv:1872 + 2: 234 _ZN9oceanbase6common7ObLatch6wrlockEjlPKj:260 +_ZN9oceanbase11transaction9tablelock17ObOBJLockCallback13get_data_sizeEv:11384:1477 + 0: 1423 +_ZN9oceanbase11transaction8ObTxDesc11update_partERNS0_8ObTxPartE:11372:1044 + 1: 1032 + 2: 1032 _ZN9oceanbase11transaction8ObTxDesc12update_part_ERNS0_8ObTxPartEb:1029 +_ZN9oceanbase6common16ObBinaryHeapBaseIPNS_3sql22ObInMemoryTopnSortImpl13SortStoredRowENS2_12ObSortOpImpl7CompareELl50EE20reset_root_cmp_cacheEv:11224:495 + 0: 488 +_ZN9oceanbase12blocksstable11ObRowWriter20write_col_in_clusterINS0_14ObStorageDatumEEEiPKT_lll:11203:56 + 5: 53 + 6: 53 + 7: 53 + 7.3: 53 + 8: 0 + 9.1: 0 + 12: 53 + 13: 53 + 14: 53 + 17: 63 _ZN9oceanbase12blocksstable11ObRowWriter20append_row_and_indexINS0_14ObStorageDatumENS0_20ObColClusterInfoMaskEEEiPKT_lllbRT0_:53 + 25.1: 0 + 28: 63 + 29: 63 + 29.1: 0 + 30: 62 + 30.3: 62 + 35: 62 + 15: _ZN9oceanbase12blocksstable20ObColClusterInfoMask5resetEv:318 + 0: 53 + 28: _ZN9oceanbase12blocksstable20ObColClusterInfoMask19set_sparse_row_flagEb:819 + 0: 63 + 29.3: _ZN9oceanbase12blocksstable20ObColClusterInfoMask23set_sparse_column_countEh:434 + 0: 62 + 30.3: _ZN9oceanbase12blocksstable20ObColClusterInfoMask16set_column_countEh:124 + 0: 62 +_ZNK9oceanbase7storage15ObRelativeTable21get_rowkey_column_idsERNS_6common8ObIArrayINS_5share6schema9ObColDescEEE:11120:187 + 1: 173 + 2: 173 + 3: 173 + 4: 0 + 5.1: 0 + 6.1: 176 _ZNK9oceanbase5share6schema18ObTableSchemaParam21get_rowkey_column_idsERNS_6common8ObIArrayINS1_9ObColDescEEE:177 + 7.1: 0 + 9: 176 + 3: _ZNK9oceanbase7storage15ObRelativeTable8is_validEv:4671 + 2: 173 + 2.1: 173 + 2.1: _ZNK9oceanbase5share6schema18ObTableSchemaParam8is_validEv:865 + 0: 173 + 2.2: _ZNK9oceanbase6common10ObTabletID8is_validEv:1384 + 0: 173 +_ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE5allocEl:11081:101 + 1: 94 + 3: 94 + 6: 97 + 7: 97 + 9.1: 0 + 10: 0 + 11: 0 + 14: 0 + 27: 97 + 28: 97 + 30: 97 + 4: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE15ensure_cur_pageEv:1291 + 2: 94 + 3: 4 + 5.1: 4 + 8: 4 + 9: 4 + 10: 4 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:234 + 3: 1 + 5: 4 + 6: 4 + 8: 4 + 9: 4 + 11.1: 0 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:42 + 2: 1 + 3: 1 _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:1 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:15 + 5: 1 + 7: 1 + 8: 1 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:108 + 1: 4 + 3: 4 + 8: _ZL12abort_unlessb:24 + 5: 4 + 6: 0 + 10: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:32 + 0: 4 + 7: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page6remainEv:1067 + 0: 97 + 9.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE18is_normal_overflowEl:0 + 2: 0 + 17.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16lookup_next_pageEl:0 + 3.1: 0 + 4.1: 0 + 5: 0 + 5.1: 0 + 7: 0 + 5.1: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page10reuse_sizeEv:0 + 0: 0 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 +_ZN9oceanbase6common13ObSEArrayImplINS_3sql15ObCandiTableLocELl2ENS0_19ModulePageAllocatorELb0EE5reuseEv:11074:232 + 1: 226 + 4.1: 226 + 4.3: 0 + 5: 0 + 8: 226 + 9: 226 + 10: 226 +_ZN9oceanbase5trace7ObTrace7set_tagIlJEEEv9ObTagTypeRKT_DpT0_:11007:269 + 1: 254 + 2.1: 0 + 3: 251 + 3.1: 3 + 4: 3 + 4.1: 0 + 6: 0 + 11: 262 + 2: _ZNK9oceanbase5trace4UUID9is_initedEv:3030 + 0: 254 + 0.1: 251 + 5: _ZN9oceanbase5trace7ObTrace10append_tagIlLb1EEEb9ObTagTypeRKT_:0 + 3: 0 + 7: _ZN9oceanbase5trace7ObTrace10append_tagIlLb1EEEb9ObTagTypeRKT_:0 + 3: 0 +_ZN9oceanbase5share16IsoCurrencyUtils28get_currency_by_country_nameERKNS_6common8ObStringERS3_:10917:3 + 2: 3 + 3: 3 + 5: 3 + 6: 0 + 7.1: 0 + 10.1: 267 + 12: 280 + 12.2: 276 + 13: 280 + 14: 6 + 15: 6 + 19: 5 + 20: 0 + 23: 5 + 4: _ZN9oceanbase6common8ObString5resetEv:18 + 3: 3 + 5: _ZNK9oceanbase6common8ObString5emptyEv:72 + 2: 3 + 2.1: 3 + 13.1: _ZNK9oceanbase6common8ObString12case_compareEPKc:3438 + 4: 97 + 8: _ZNK9oceanbase6common8ObString12case_compareERKS1_:2759 + 10: 97 + 10.1: 97 + 11: 89 + 10: _ZSt3minIiERKT_S2_S2_:558 + 5: 97 + 14: _ZN9oceanbase6common8ObString10assign_ptrEPKci:75 + 2: 5 + 3: 5 + 19: _ZNK9oceanbase6common8ObString5emptyEv:10 + 2.1: 5 +_ZNK9oceanbase4palf16LogSlidingWindow25get_last_submit_log_info_ERNS0_3LSNES3_RlS4_:10836:76 + 2: 74 + 3: 74 + 6: 78 + 7: 78 + 8: 78 + 3: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEEC2ERS3_:2256 + 1: 74 + 4: 78 + 5.1: 0 + 6: 0 + 4: _ZN9oceanbase6common10ObSpinLock4lockEv:1258 + 2: 74 _ZN9oceanbase6common12ObLatchMutex4lockEjl:78 + 4: _ZN9oceanbase4palf3LSNaSERKS1_:858 + 2: 78 + 5: _ZN9oceanbase4palf3LSNaSERKS1_:858 + 2: 78 + 8: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEED2Ev:1248 + 2: 78 + 3: 78 + 3.1: 78 + 4.1: 0 + 3: _ZN9oceanbase6common10ObSpinLock6unlockEv:78 + 2: 78 _ZN9oceanbase6common12ObLatchMutex6unlockEv:86 +_ZNK9oceanbase8memtable17ObMvccRowCallback10get_seq_noEv:10750:1092 + 0: 1075 +_ZNK9oceanbase7storage15ObRelativeTable21get_rowkey_column_idsERNS_6common8ObIArrayImEE:10720:185 + 1: 174 + 2: 174 + 3: 174 + 4: 0 + 5.1: 0 + 6.1: 174 _ZNK9oceanbase5share6schema18ObTableSchemaParam21get_rowkey_column_idsERNS_6common8ObIArrayImEE:189 + 7.1: 0 + 9: 148 + 3: _ZNK9oceanbase7storage15ObRelativeTable8is_validEv:4698 + 2: 174 + 2.1: 174 + 2.1: _ZNK9oceanbase5share6schema18ObTableSchemaParam8is_validEv:870 + 0: 174 + 2.2: _ZNK9oceanbase6common10ObTabletID8is_validEv:1392 + 0: 174 +_ZN9oceanbase8memtable17ObMvccRowCallback13get_data_sizeEv:10710:1103 + 1: 1071 + 2: 1071 +_ZN9oceanbase5share14ObSysVariables9get_flagsEl:10700:450 + 0: 428 +_ZN9oceanbase6common23ObReserveArenaAllocatorILl1024EE5allocElRKNS_3lib9ObMemAttrE:10692:253 + 1: 243 + 3: 243 + 6: 243 + 7: 243 + 9: 243 + 4: _ZN9oceanbase6common16ObArenaAllocator5allocEl:0 + 0: 0 +_ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl1ENS0_19ModulePageAllocatorELb0EE9push_backERKS2_:10665:241 + 2: 237 + 5: 237 + 6: 0 + 12: 0 + 15: 0 + 15.1: 237 + 16: 237 + 19: 237 + 15.1: _ZN9oceanbase6common9ObClassOpINS0_10ObTabletIDELb0EE20construct_and_assignERKS2_RS2_:1659 + 3: _ZN9oceanbase6common16construct_assignINS0_10ObTabletIDEEEiRT_RKS3_:1659 + 2: _ZN9oceanbase6common21construct_assign_wrapINS0_10ObTabletIDEEEiRT_RKS3_NS0_8BoolTypeILb0EEE:1659 + 2: _ZN9oceanbase6common10ObTabletIDC2ERKS1_:1659 + 0: 237 +_ZN9oceanbase6common24GlobalHazardVersionGuardC2ERNS0_19GlobalHazardVersionE:10628:91 + 1: 88 + 2: 88 + 3: 88 + 4: 92 + 5.1: 0 + 7: 92 + 4: _ZN9oceanbase6common19GlobalHazardVersion7acquireEv:5784 + 2: 88 + 5: 88 + 6: 0 + 7.1: 0 + 8.1: 92 + 9.1: 0 + 11: 92 + 12.1: 92 + 17: 92 + 8.1: _ZN9oceanbase6common19GlobalHazardVersion16get_thread_storeERPNS0_24KVCacheHazardThreadStoreE:1968 + 2: 88 + 4: 92 + 5: 92 + 6: 0 + 7: 0 + 11: 0 + 12: 0 + 13.1: 0 + 13.3: 0 + 14.1: 0 + 15: 0 + 15.1: 0 + 17: 0 + 19.1: 0 + 21.1: 0 + 22: 0 + 23.1: 0 + 33: 0 + 33.1: 0 + 36: 0 + 37: 0 + 38: 0 + 39: 0 + 40.1: 0 + 43: 0 + 44.1: 0 + 45.1: 0 + 46: 0 + 47.1: 0 + 49: 0 + 50: 0 + 51: 0 + 52: 0 + 53: 0 + 55: 0 + 62: 0 + 14: _ZNK9oceanbase6common24KVCacheHazardThreadStore9is_initedEv:0 + 0: 0 + 24: _ZN9oceanbase6common24KVCacheHazardThreadStore8set_exitEv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 30: _ZNK9oceanbase6common24KVCacheHazardThreadStore8get_nextEv:0 + 0: 0 + 42: _ZN9oceanbase6common24KVCacheHazardThreadStoreC2Ev:0 + 1: 0 + 3: 0 + 6: 0 + 7: 0 + 50: _ZN9oceanbase6common24KVCacheHazardThreadStore8set_nextEPS1_:0 + 0: 0 +_ZN9oceanbase6common24GlobalHazardVersionGuardC1ERNS0_19GlobalHazardVersionE:10628:91 + 1: 88 + 2: 88 + 3: 88 + 4: 92 + 5.1: 0 + 7: 92 + 4: _ZN9oceanbase6common19GlobalHazardVersion7acquireEv:5784 + 2: 88 + 5: 88 + 6: 0 + 7.1: 0 + 8.1: 92 + 9.1: 0 + 11: 92 + 12.1: 92 + 17: 92 + 8.1: _ZN9oceanbase6common19GlobalHazardVersion16get_thread_storeERPNS0_24KVCacheHazardThreadStoreE:1968 + 2: 88 + 4: 92 + 5: 92 + 6: 0 + 7: 0 + 11: 0 + 12: 0 + 13.1: 0 + 13.3: 0 + 14.1: 0 + 15: 0 + 15.1: 0 + 17: 0 + 19.1: 0 + 21.1: 0 + 22: 0 + 23.1: 0 + 33: 0 + 33.1: 0 + 36: 0 + 37: 0 + 38: 0 + 39: 0 + 40.1: 0 + 43: 0 + 44.1: 0 + 45.1: 0 + 46: 0 + 47.1: 0 + 49: 0 + 50: 0 + 51: 0 + 52: 0 + 53: 0 + 55: 0 + 62: 0 + 14: _ZNK9oceanbase6common24KVCacheHazardThreadStore9is_initedEv:0 + 0: 0 + 24: _ZN9oceanbase6common24KVCacheHazardThreadStore8set_exitEv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 30: _ZNK9oceanbase6common24KVCacheHazardThreadStore8get_nextEv:0 + 0: 0 + 42: _ZN9oceanbase6common24KVCacheHazardThreadStoreC2Ev:0 + 1: 0 + 3: 0 + 6: 0 + 7: 0 + 50: _ZN9oceanbase6common24KVCacheHazardThreadStore8set_nextEPS1_:0 + 0: 0 +_ULx86_64_tdep_trace:10619:2 + 1: 1 + 12: 1 + 13: 1 + 18: 1 + 22: 1 + 23: 1 + 24: 1 + 28: 0 + 31: 0 + 32: 0 + 33: 0 + 40: 30 + 42: 31 + 51: 31 + 56: 0 + 72: 31 + 76: 28 + 80: 0 + 85: 30 + 85.1: 28 + 85.2: 33 + 86.2: 33 + 88: 30 + 88.1: 30 + 89: 0 + 89.1: 30 + 90: 0 + 90.1: 30 + 100: 0 + 102: 0 + 104: 0 + 104.1: 0 + 105: 0 + 106.1: 0 + 107: 0 + 108.1: 0 + 112: 0 + 115: 0 + 116: 29 + 121: 0 + 121.1: 0 + 121.2: 0 + 122.2: 0 + 124: 0 + 124.1: 0 + 125: 0 + 126: 0 + 126.1: 0 + 127: 0 + 128: 0 + 128.1: 0 + 131: 30 + 134: 30 + 142: 0 + 150: 30 + 154: 30 + 160: 3 + 161: 3 + 162: 3 + 28: trace_cache_get:99 + 3: 1 + 5: 1 + 6: 1 + 10: 1 + 12: 0 + 13: 0 + 14: 0 + 21: 0 + 51: trace_lookup:2158 + 13: 31 + 14: 31 + 17: 0 + 19: 31 + 20: 31 + 23: 31 + 30: 0 + 34: 0 + 35: 0 + 43: 0 + 50: 0 + 54: 0 + 55: 0 + 45: trace_cache_expand:0 + 3: 0 + 4: 0 + 6: 0 + 13: 0 + 14: 0 + 15: 0 + 16: 0 + 57: trace_init_addr:50 + 12: 0 + 14: 0 + 15: 0 + 16: 0 + 17: 0 + 18: 0 + 24: 0 + 25: 0 + 26: 0 + 27: 0 + 29: 0 + 30: 0 + 31: 0 + 32: 0 + 34: 0 + 35: 0 + 36: 0 + 37: 0 + 38: 0 + 46: 0 + 47: 0 + 34: dwarf_put:13 + 4: 0 + 7: 0 + 8: 0 + 11: 1 + 35: dwarf_put:16 + 4: 0 + 7: 0 + 8: 0 + 11: 1 + 36: dwarf_put:21 + 4: 0 + 7: 0 + 8: 0 + 11: 1 + 81: dwarf_set_validate:0 + 4: 0 + 87: dwarf_get_validate:420 + 3: 35 + 88: dwarf_get:13 + 2: 0 + 9: 1 + 90: dwarf_get:0 + 2: 0 + 103: dwarf_get_validate:0 + 3: 0 + 104: dwarf_get:0 + 2: 0 + 3: 0 + 9: 0 + 106: dwarf_get:0 + 2: 0 + 9: 0 + 108: dwarf_get:0 + 2: 0 + 3: 0 + 9: 0 + 123: dwarf_get_validate:0 + 3: 0 + 124: dwarf_get:0 + 2: 0 + 9: 0 + 126: dwarf_get:0 + 2: 0 + 9: 0 + 128: dwarf_get:0 + 2: 0 + 3: 0 + 9: 0 +_ZNK9oceanbase7storage15ObRelativeTable15is_unique_indexEv:10577:421 + 1: 421 + 2: 434 + 2: _ZNK9oceanbase5share6schema18ObTableSchemaParam15is_unique_indexEv:4210 + 0: 421 + 0: _ZN9oceanbase5share6schema21ObSimpleTableSchemaV215is_unique_indexENS1_11ObIndexTypeE:2947 + 3: 421 +_ZN9oceanbase10logservice13ObApplyStatus29submit_task_to_apply_service_ERNS0_18ObApplyServiceTaskE:10548:89 + 1: 82 + 2: 82 + 5: 137 _ZN9oceanbase10logservice17ObLogApplyService9push_taskEPNS0_18ObApplyServiceTaskE:72 + 6.1: 0 + 10.1: 137 _ZZN9oceanbase10logservice13ObApplyStatus29submit_task_to_apply_service_ERNS0_18ObApplyServiceTaskEENK4$_69clEPKc.d3a41d52a3cfae37a6a74713ee8e7132:146 + 14.1: 9 _ZZN9oceanbase10logservice13ObApplyStatus29submit_task_to_apply_service_ERNS0_18ObApplyServiceTaskEENK4$_70clEPKc.d3a41d52a3cfae37a6a74713ee8e7132:9 + 17: 133 + 3: _ZN9oceanbase10logservice18ObApplyServiceTask13acquire_leaseEv:2159 + 2: _ZN9oceanbase6common13ObThreadLease7acquireEv:2159 + 4: 82 + 6.1: 72 + 7: 82 + 10: 72 + 17: 7 + 4: _ZN9oceanbase10logservice13ObApplyStatus7inc_refEv:360 + 2.1: 72 + 8: _ZN9oceanbase10logservice13ObApplyStatus7dec_refEv:0 + 2: 0 +_ZN9oceanbase6common13ObLinkHashMapINS_11transaction9ObTransIDENS_7storage8ObTxDataENS4_24TxDataHashMapAllocHandleENS0_9RefHandleELl8EE6revertEPNS0_12LinkHashNodeIS3_EE:10547:235 + 1: 215 + 6: 215 + 6.1: 215 + 6.2: 215 + 7.1: 0 + 10: 0 + 13: 217 + 11: _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9ObTransIDENS_7storage8ObTxDataENS4_24TxDataHashMapAllocHandleENS0_9RefHandleELl8EE8dec_urefEPNS0_12LinkHashNodeIS3_EE:1290 + 3: 215 + 3: _ZN9oceanbase6common9RefHandle3decEPNS0_7RefNodeE:1075 + 0: 215 + 4: _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9ObTransIDENS_7storage8ObTxDataENS4_24TxDataHashMapAllocHandleENS0_9RefHandleELl8EE13on_uref_cleanEPNS0_12LinkHashNodeIS3_EE:0 + 4: _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9ObTransIDENS_7storage8ObTxDataENS4_24TxDataHashMapAllocHandleENS0_9RefHandleELl8EE8dec_hrefEPNS0_12LinkHashNodeIS3_EE:0 + 3: 0 + 4: 0 + 3: _ZN9oceanbase6common7RefNode5xhrefEi:0 + 0: 0 +_ZNK9oceanbase5share6schema16ObSchemaCacheKey4hashEv:10534:46 + 1: 46 + 7: 46 + 3: _ZN9oceanbase6common10murmurhashEPKvim:2530 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:2530 + 35: 46 + 37: 46 + 38: 46 + 41: 46 + 42: 46 + 43: 46 + 4: _ZN9oceanbase6common10murmurhashEPKvim:2898 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:2898 + 5: 46 + 13: 46 + 14: 46 + 15: 46 + 17: 46 + 18: 46 + 41: 46 + 42: 46 + 43: 46 + 5: _ZN9oceanbase6common10murmurhashEPKvim:2438 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:2438 + 5: 46 + 13: 46 + 14: 46 + 15: 46 + 17: 46 + 18: 46 + 41: 46 + 42: 46 + 43: 46 + 6: _ZN9oceanbase6common10murmurhashEPKvim:2392 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:2392 + 5: 46 + 13: 46 + 14: 46 + 15: 46 + 17: 46 + 18: 46 + 41: 46 + 42: 46 + 43: 46 +_ZNK9oceanbase11transaction9tablelock17ObOBJLockCallback10get_seq_noEv:10528:794 + 1: 752 + 2: 752 +_ZN9oceanbase4palf14LogEntryHeaderD2Ev:10526:278 + 1: 277 + 3: 277 + 2: _ZN9oceanbase4palf14LogEntryHeader5resetEv:6094 + 2: 277 + 6: 277 + 7: 277 +_ZN9oceanbase4palf14LogEntryHeaderD1Ev:10526:278 + 1: 277 + 3: 277 + 2: _ZN9oceanbase4palf14LogEntryHeader5resetEv:6094 + 2: 277 + 6: 277 + 7: 277 +_ZL20ob_strnncoll_utf8mb4PK13ObCharsetInfoPKhmS3_mb.5aa8bf9a2f1d92c2672c2bb9fbfc2e97:10469:1 + 4: 1 + 6: 1 + 7: 1 + 8: 1 + 9: 1 + 10: 1 + 11.1: 50 + 11.3: 50 + 13: 57 _ZL16ob_mb_wc_utf8mb4PK13ObCharsetInfoPmPKhS4_.5aa8bf9a2f1d92c2672c2bb9fbfc2e97:53 + 14: 57 _ZL16ob_mb_wc_utf8mb4PK13ObCharsetInfoPmPKhS4_.5aa8bf9a2f1d92c2672c2bb9fbfc2e97:59 + 15: 55 + 20: 55 + 22: 50 + 24: 0 + 26: 50 + 27: 50 + 29: 3 + 30: 3 + 18: _ZL14bincmp_utf8mb4PKhS0_S0_S0_:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 20: _ZL17ob_tosort_unicodeP13ObUnicaseInfoPmj:3210 + 2: 55 + 5: 50 + 6: 50 + 6.3: 50 + 12: 0 + 21: _ZL17ob_tosort_unicodeP13ObUnicaseInfoPmj:3000 + 2: 50 + 5: 50 + 6: 50 + 6.3: 50 + 12: 0 +_ZN9oceanbase8memtable13ObMemtableCtx17enable_lock_tableERNS_7storage15ObTableHandleV2E:10438:292 + 1: 290 + 3: 306 _ZN9oceanbase11transaction9tablelock12ObLockMemCtx4initERNS_7storage15ObTableHandleV2E:303 + 4.1: 0 + 6: 306 +_ZN9oceanbase5share15ObSysVarFactoryD2Ev:10420:1 + 1: 1 + 3.1: 0 + 3.2: 0 + 2: _ZN9oceanbase5share15ObSysVarFactory7destroyEv:10382 + 3.1: 358 + 4: 349 + 5: 7 + 6: 7 + 8: 344 + 9: 7 + 10: 7 + 14: 0 + 65532: 1 + 13: _ZN9oceanbase6common16ObArenaAllocator5resetEv:0 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:0 + 4.1: 0 + 6: 0 + 7: 0 + 13: 0 + 14: 0 + 15: 0 + 18: 0 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:0 + 0: 0 + 5.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:0 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 3: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:0 + 0: 0 +_ZN9oceanbase5share15ObSysVarFactoryD1Ev:10420:1 + 1: 1 + 3.1: 0 + 3.2: 0 + 2: _ZN9oceanbase5share15ObSysVarFactory7destroyEv:10382 + 3.1: 358 + 4: 349 + 5: 7 + 6: 7 + 8: 344 + 9: 7 + 10: 7 + 14: 0 + 65532: 1 + 13: _ZN9oceanbase6common16ObArenaAllocator5resetEv:0 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:0 + 4.1: 0 + 6: 0 + 7: 0 + 13: 0 + 14: 0 + 15: 0 + 18: 0 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:0 + 0: 0 + 5.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:0 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 3: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:0 + 0: 0 +_ZN9oceanbase6commonL13string_numberENS0_9ObObjTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS4_m.db28c62327e16d3ae5c8a88acfd53bbb:10416:18 + 2: 17 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 3: 17 + 4: 17 + 5: 17 + 8: 17 + 9: 0 + 10.1: 0 + 11.1: 17 + 11.2: 0 + 11.3: 17 + 11.4: 17 + 14: 0 + 15.1: 0 + 17.1: 17 + 17.2: 0 + 18: 0 + 19.1: 0 + 20.1: 0 + 20.11: 0 + 20.14: 0 + 23: 18 + 24: 0 + 25.1: 18 + 27: 0 + 28.1: 18 + 28.3: 18 _ZN9oceanbase6common9ObCharset20get_system_collationEv:18 + 28.4: 17 _ZN9oceanbase6commonL24convert_string_collationERKNS0_8ObStringENS0_15ObCollationTypeERS1_S4_RNS0_15ObObjCastParamsE.db28c62327e16d3ae5c8a88acfd53bbb:17 + 29.1: 0 + 32: 27 + 32.2: 27 _ZN9oceanbase6common6number8ObNumber12from_sci_optINS0_15ObObjCastParamsEEEiPKclRT_PsS9_b:14 + 36: 27 + 38.1: 0 + 38.2: 0 + 38.3: 0 + 38.5: 0 + 41: 0 + 43: 0 + 47: 0 + 52: 0 + 53.1: 0 + 57: 29 + 58.1: 0 + 59.1: 26 + 59.2: 0 + 60.1: 0 + 65: 24 + 65.2: 0 + 66: 26 + 5: _ZN9oceanbase3lib14is_oracle_modeEv:952 + 2: _ZN9oceanbase3lib15get_compat_modeEv:952 + 2: 17 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:646 + 2: 17 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 6: _ZN9oceanbase6common8ObStringC2Ev:170 + 1: 17 + 11.1: _ZNK9oceanbase6common5ObObj14get_type_classEv:255 + 0: _ZNK9oceanbase6common9ObObjMeta14get_type_classEv:255 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:153 + 0: 17 + 0.1: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:102 + 2: 17 + 11.3: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:153 + 2: 17 + 17.1: _ZN9oceanbase3lib14is_oracle_modeEv:51 + 2: _ZN9oceanbase3lib15get_compat_modeEv:51 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:51 + 2: 17 + 17.2: _ZNK9oceanbase6common5ObObj7is_blobEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta7is_blobEv:0 + 2.1: 0 + 20.1: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 20.12: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 20.15: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 22: _ZN9oceanbase6common6number8ObNumberC2Ev:270 + 0: 18 + 0: _ZN12ObNumberDescC2Ej:126 + 0: 18 + 24: _ZNK9oceanbase6common5ObObj10get_stringEv:162 + 1: 18 + 24.1: _ZN9oceanbase6common13hex_to_uint64ERKNS0_8ObStringE:0 + 5: 0 + 6: 0 + 6.1: 0 + 6.3: 0 + 8: 0 + 24.2: _ZN9oceanbase6common6number8ObNumber4fromINS0_15ObObjCastParamsEEEimRT_:0 + 3: 0 + 2: _ZN9oceanbase6common6number8ObNumber10TAllocatorINS0_15ObObjCastParamsEEC2ERS4_:0 + 0: 0 + 26: _ZN9oceanbase6common6number8ObNumber8set_zeroEv:0 + 2: 0 + 4: 0 + 28.2: _ZNK9oceanbase6common5ObObj18get_collation_typeEv:108 + 0: _ZNK9oceanbase6common9ObObjMeta18get_collation_typeEv:108 + 0: 18 + 32: _ZNK9oceanbase6common8ObString3ptrEv:98 + 0: 14 + 32.1: _ZNK9oceanbase6common8ObString6lengthEv:98 + 0: 14 + 41: _ZNK9oceanbase6common8ObStringixEl:0 + 0: 0 + 44: _ZNK9oceanbase6common10ObAccuracy13get_precisionEv:0 + 0: 0 + 45: _ZNK9oceanbase6common10ObAccuracy9get_scaleEv:0 + 0: 0 + 52: _ZN9oceanbase6common6number8ObNumber4fromINS0_12ObIAllocatorEEEiRKS2_RT_:0 + 3: 0 + 2: _ZN9oceanbase6common6number8ObNumber10TAllocatorINS0_12ObIAllocatorEEC2ERS4_:0 + 0: 0 + 57: _ZN9oceanbase6common12get_cast_retEmiRi:87 + 6: 29 + 8.2: 0 + 10: 0 + 11: 0 + 59.2: _ZN9oceanbase6common22numeric_negative_checkINS0_6number8ObNumberEEEiRT_:0 + 3: 0 + 3: _ZNK9oceanbase6common6number8ObNumber11is_negativeEv:0 + 2: 0 + 5: _ZN9oceanbase6common6number8ObNumber8set_zeroEv:0 + 2: 0 + 4: 0 + 59.3: _ZN9oceanbase6common12get_cast_retEmiRi:0 + 8.2: 0 + 10: 0 + 11: 0 + 62: _ZN9oceanbase6common5ObObj10set_numberENS0_9ObObjTypeERKNS0_6number8ObNumberE:2882 + 4: 24 + 5: 24 + 2: _ZN9oceanbase6common9ObObjMeta8set_typeERKNS0_9ObObjTypeE:2012 + 2: 26 + 3: 26 + 13: 26 + 14: 26 + 4: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:0 + 0: 0 + 8: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:0 + 0: 0 + 11: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:0 + 0: 0 + 12.1: _ZN9oceanbase6common17ob_is_string_typeENS0_9ObObjTypeE:494 + 0: 26 + 0: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:234 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:234 + 2: 26 + 17: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:192 + 0: 24 + 3: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:120 + 0: 24 + 4: _ZNK9oceanbase6common6number8ObNumber14get_desc_valueEv:72 + 2: 24 + 5: _ZNK9oceanbase6common6number8ObNumber10get_digitsEv:96 + 2: 24 + 65.2: _ZN9oceanbase6common10ObAccuracy9set_scaleEs:0 + 0: 0 + 65.3: _ZN9oceanbase6common10ObAccuracy13set_precisionEs:0 + 0: 0 + 65.4: _ZN9oceanbase6common10ObAccuracy10set_lengthEi:0 + 0: 0 +_ZN9oceanbase3sql12ObDMLService26init_heap_table_pk_for_insERKNS0_10ObInsCtDefERNS0_9ObEvalCtxE:10373:263 + 1: 253 + 2: 253 + 3: 253 + 3.1: 253 + 4: 0 + 5: 0 + 6: 0 + 7.1: 0 + 8.1: 0 + 9: 0 + 10.1: 0 + 14: 0 + 17: 253 + 4: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:0 + 6: 0 + 12: _ZNK9oceanbase3sql6ObExpr22locate_datum_for_writeERNS0_9ObEvalCtxE:0 + 3: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 5: _ZNK9oceanbase3sql6ObExpr13get_datum_idxERNS0_9ObEvalCtxE:0 + 2: 0 + 2: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 13: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:0 + 0: 0 + 14: _ZNK9oceanbase3sql6ObExpr13get_eval_infoERNS0_9ObEvalCtxE:0 + 2: 0 +_ZN9oceanbase12blocksstable21ObMicroBlockGetReader10inner_initERKNS0_16ObMicroBlockDataERKNS_7storage15ObTableReadInfoE:10336:82 + 3: 76 + 4: 76 + 5: 76 + 6.1: 0 + 8: 76 + 9: 76 + 10: 76 + 12: 76 + 5: _ZN9oceanbase12blocksstable23ObIMicroBlockFlatReader4initERKNS0_16ObMicroBlockDataE:4788 + 2: 76 + 3: 76 + 4: 0 + 5.1: 0 + 8: 76 + 9: 76 + 10: 76 + 11: 76 + 13: 0 + 3: _ZNK9oceanbase12blocksstable16ObMicroBlockData8is_validEv:1520 + 0: 76 + 0.1: 76 + 0.2: 76 +_ZN9oceanbase5share14ObSysVariables8get_typeEl:10320:436 + 0: 430 +_ZN9oceanbase7storage21ObIndexTreePrefetcher15lookup_in_cacheERNS0_19ObSSTableReadHandleE:10314:74 + 1: 73 + 2: 73 + 3: 73 + 4: 73 + 5: 0 + 6.1: 0 + 7.1: 73 + 8: 0 + 9.1: 0 + 10.1: 73 + 13: 0 + 16: 73 + 16.2: 73 + 17: 0 + 17.2: 0 + 18: 0 + 19: 0 + 19.2: 0 + 19.3: 2 + 21.1: 0 + 26.1: 0 + 26.2: 0 + 26.4: 0 + 31: 0 + 32: 0 + 34: 2 _ZN9oceanbase12blocksstable13ObRowCacheKeyD1Ev:2 + 34.1: 0 + 36: 75 + 37: 75 + 40: 71 + 7.1: _ZNK9oceanbase7storage19ObSSTableReadHandle8is_validEv:365 + 1: 73 + 10.2: _ZNK9oceanbase12blocksstable13ObSSTableMeta8is_emptyEv:584 + 0: 73 + 16.2: _ZNK9oceanbase7storage20ObTableAccessContext20enable_get_row_cacheEv:949 + 1: 73 + 1.1: 0 + 1.2: 0 + 1.3: 0 + 1: _ZNK9oceanbase6common11ObQueryFlag16is_use_row_cacheEv:876 + 0: 73 + 1.2: _ZNK9oceanbase7storage16ObTableStoreStat20enable_get_row_cacheEv:0 + 2: 0 + 3: 0 + 3.1: 0 + 1.4: _ZNK9oceanbase6common10ObTabletID18is_ls_inner_tabletEv:0 + 0: 0 + 17: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 17.1: _ZNK9oceanbase5share12ObTenantBase2idEv:0 + 0: 0 + 18: _ZNK9oceanbase7storage15ObTableReadInfo15get_datum_utilsEv:0 + 0: 0 + 19.1: _ZN9oceanbase12blocksstable19ObStorageCacheSuite13get_row_cacheEv:0 + 0: 0 + 26.1: _ZNK9oceanbase12blocksstable15ObRowCacheValue16get_start_log_tsEv:0 + 0: 0 +_ZN9oceanbase8memtable13ObMemtableCtx18remove_lock_recordEPNS_11transaction9tablelock22ObMemCtxLockOpLinkNodeE:10244:791 + 1: 788 + 2: 788 _ZN9oceanbase11transaction9tablelock12ObLockMemCtx18remove_lock_recordEPNS1_22ObMemCtxLockOpLinkNodeE:860 +_ZN9oceanbase6common14ObKVCacheStore15mb_status_matchERNS0_13ObKVCacheInstENS0_15ObKVCachePolicyEPNS0_18ObKVMemBlockHandleE:10229:613 + 2: 597 + 3: 597 + 3.1: 607 + 3.2: 607 +_ZN9oceanbase3sql20ObStartTransExecutor7executeERNS0_13ObExecContextERNS0_16ObStartTransStmtE:10208:270 + 1: 270 + 2: 311 + 2: _ZN9oceanbase3sql20ObStartTransExecutor11start_transERNS0_13ObExecContextERNS0_16ObStartTransStmtE:4783 + 3: 311 + 3.1: 311 _ZN9oceanbase3sql17ObSqlTransControl20explicit_start_transERNS0_13ObExecContextEb:270 + 4.1: 1 + 6: 1 + 3: _ZNK9oceanbase3sql16ObStartTransStmt13get_read_onlyEv:1080 + 2: 270 +_ZN9oceanbase6common4hash9ObHashMapINS0_8ObStringENS_3sql17ObSessionVariableENS1_19NoPthreadDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS0_17ObPooledAllocatorINS1_15ObHashTableNodeINS1_11HashMapPairIS3_S5_EEEENS0_18ObWrapperAllocatorENS0_10ObNullLockEEENS1_13NormalPointerESG_Ll1EED2Ev:10155:0 + 1: 0 + 2: 3 + 2: _ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_NS_3sql17ObSessionVariableEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS7_EENS0_17ObPooledAllocatorINS1_15ObHashTableNodeIS7_EENS0_18ObWrapperAllocatorENS0_10ObNullLockEEENS1_19NoPthreadDefendModeENS1_13NormalPointerESH_Ll1EED2Ev:9951 + 2.1: 0 + 2.2: 0 + 5.2: 0 + 2: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringENS_3sql17ObSessionVariableEEENS1_5NLockENS1_5NCondEEEEEbRKT_:0 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringENS_3sql17ObSessionVariableEEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:0 + 2: 0 + 3: _ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_NS_3sql17ObSessionVariableEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS7_EENS0_17ObPooledAllocatorINS1_15ObHashTableNodeIS7_EENS0_18ObWrapperAllocatorENS0_10ObNullLockEEENS1_19NoPthreadDefendModeENS1_13NormalPointerESH_Ll1EE7destroyEv:9951 + 6.1: 576 + 6.3: 576 + 8: 576 + 9.1: 0 + 11: 0 + 12: 0 + 15: 0 + 19: 3 + 22: 3 + 24: 3 + 10: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_11HashMapPairINS0_8ObStringENS_3sql17ObSessionVariableEEEE16check_magic_codeEv:0 + 0: 0 + 10.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 12: _ZN9oceanbase6common17ObPooledAllocatorINS0_4hash15ObHashTableNodeINS2_11HashMapPairINS0_8ObStringENS_3sql17ObSessionVariableEEEEENS0_18ObWrapperAllocatorENS0_10ObNullLockEE4freeEPS9_:0 + 4: _ZN9oceanbase6common6ObPoolINS0_18ObWrapperAllocatorENS0_10ObNullLockEE4freeEPv:0 + 4.1: 0 + 6: _ZN9oceanbase6common6ObPoolINS0_18ObWrapperAllocatorENS0_10ObNullLockEE13freelist_pushEPv:0 + 7: 0 + 8: 0 + 9.1: 0 + 22: _ZN9oceanbase6common4hash7destroyIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringENS_3sql17ObSessionVariableEEENS1_5NLockENS1_5NCondEEENS0_18ObWrapperAllocatorEEEvRT_RT0_:60 + 2: _ZN9oceanbase6common4hash10do_destroyIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringENS_3sql17ObSessionVariableEEENS1_5NLockENS1_5NCondEEENS0_18ObWrapperAllocatorEEEvRT_NS1_16NormalPointerTagERT0_:60 + 2: 3 + 3: 3 _ZN9oceanbase6common18ObWrapperAllocator4freeEPv:3 + 4: 3 + 2.2: _ZN9oceanbase6common17ObPooledAllocatorINS0_4hash15ObHashTableNodeINS2_11HashMapPairINS0_8ObStringENS_3sql17ObSessionVariableEEEEENS0_18ObWrapperAllocatorENS0_10ObNullLockEED2Ev:177 + 1: 3 + 2: _ZN9oceanbase6common6ObPoolINS0_18ObWrapperAllocatorENS0_10ObNullLockEED2Ev:135 + 1: 3 + 3.2: 0 + 2: _ZN9oceanbase6common6ObPoolINS0_18ObWrapperAllocatorENS0_10ObNullLockEE5resetEv:90 + 2: 3 + 4.1: 3 + 5: 0 + 10: 3 + 11: 3 + 12: 3 + 13: 3 + 6: _ZN9oceanbase6common18ObWrapperAllocator4freeEPv:0 + 2: 0 + 3: 0 +_ZN9oceanbase6common9ObKVCacheINS_12blocksstable17ObFuseRowCacheKeyENS2_19ObFuseRowCacheValueEE3putERKS3_RKS4_b:10133:80 + 1: 79 + 2: 79 + 3: 79 _ZN9oceanbase6common15ObKVCacheHandleC1Ev:81 + 4: 85 + 5: 85 + 6: 0 + 7.1: 0 + 8.1: 85 _ZN9oceanbase6common15ObKVGlobalCache12get_instanceEv:86 + 8.2: 81 _ZN9oceanbase6common15ObKVGlobalCache3putElRKNS0_13ObIKVCacheKeyERKNS0_15ObIKVCacheValueERPS6_RPNS0_18ObKVMemBlockHandleEb:82 + 8.3: 89 + 11.1: 0 + 17: 89 _ZN9oceanbase6common15ObKVCacheHandle5resetEv:89 + 19: 100 + 20.3: 104 _ZN9oceanbase6common15ObKVCacheHandleD1Ev:101 + 20.4: 0 +_ZN9oceanbase8memtable13ObMTKVBuilder7dup_keyERPNS_6common13ObStoreRowkeyERNS2_12ObIAllocatorEPKS3_:10113:100 + 1: 98 + 2: 98 + 3: 98 + 4: 98 + 5: 0 + 6.1: 0 + 7.1: 98 _ZN9oceanbase6common20ObGMemstoreAllocator11AllocHandle5allocEl:99 + 8: 82 + 9: 0 + 10.1: 0 + 11.1: 82 + 12.1: 0 + 13: 0 + 14: 0 + 15: 0 + 18: 75 + 8.1: _ZN9oceanbase6common13ObStoreRowkeyC2Ev:820 + 0: 82 + 11.1: _ZNK9oceanbase6common13ObStoreRowkey9deep_copyERS1_RNS0_12ObIAllocatorE:1230 + 2: 82 + 3: 82 _ZNK9oceanbase6common8ObRowkey9deep_copyINS0_12ObIAllocatorEEEiRS1_RT_:85 +_ZN9oceanbase5share25_make_tenant_switch_guardEv:10092:183 + 1: 174 + 2: 174 + 2.1: 0 + 2.3: 0 + 2.6: 0 + 3: 174 + 2.2: _ZN9oceanbase5share19ObTenantSwitchGuardC2Ev:0 + 0.4: _ZNSt8functionIFiRN9oceanbase6common10ObLDHandleEEEC2Ev:0 + 1: _ZNSt14_Function_baseC2Ev:0 + 0: 0 + 0.5: _ZN9oceanbase5share19ObTenantSwitchGuard5resetEv:0 + 2: 0 + 3: 0 + 4: 0 + 3: _ZN9oceanbase5share19ObTenantSwitchGuardC2ERKS1_:4524 + 0.1: _ZNSt8functionIFiRN9oceanbase6common10ObLDHandleEEEC2Ev:1392 + 1: _ZNSt14_Function_baseC2Ev:1392 + 0: 174 + 2: _ZN9oceanbase5share19ObTenantSwitchGuard5resetEv:3132 + 2: 174 + 3: 174 + 4: 174 +mysql_non_reserved_keyword_lookup:10060:516 + 1: 503 + 2: 503 find_word:518 +_ZN9oceanbase6common9SCondTempILi3EE7prepareEi:10028:95 + 0: 92 + 3: 92 + 4: 92 + 5: 92 + 2: _ZN9oceanbase6common9SCondTempILi3EE7get_keyEiRj:4784 + 0: 92 + 0: _ZN9oceanbase6common16SCondSimpleIdGen4nextEv:2484 + 0: 92 + 0: _ZN9oceanbase6common7icpu_idEv:2208 + 2: _ZN9oceanbase6common12sched_getcpuEv:2208 + 0: _ZN9oceanbase6common8get_itidEv:2208 + 4: 92 + 5: 0 + 6: 0 + 8: 0 + 0.1: _ZN9oceanbase6common10SimpleCond7get_keyEv:2024 + 0: 92 + 0: _ZN9oceanbase3lib7ObFutex4uvalEv:1656 + 0: 92 +_ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EE7reserveEl:9945:279 + 1: 255 + 2: 255 + 3: 255 + 5: 0 + 6: 0 + 7: 0 + 7.3: 0 + 9: 0 + 10: 0 + 11: 0 + 12: 0 + 13: 0 + 15: 0 + 16: 0 + 23: 0 + 24.1: 0 + 27: 255 + 8: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EE16internal_malloc_El:0 + 2: 0 + 7: 0 + 13: 0 + 13: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 10: _ZN9oceanbase6common9ObClassOpINS_11transaction9ObTxCbArgELb0EE12array_expandEPKS3_PS3_l:0 + 4: 0 + 4.1: 0 + 4.3: 0 + 4.5: 0 + 5: 0 + 5: _ZN9oceanbase6common16construct_assignINS_11transaction9ObTxCbArgEEEiRT_RKS4_:0 + 2: _ZN9oceanbase6common21construct_assign_wrapINS_11transaction9ObTxCbArgEEEiRT_RKS4_NS0_8BoolTypeILb0EEE:0 + 2: 0 +_ZN9oceanbase5share12ObTenantBaseaSERKS1_:9940:18 + 1: 14 + 2: 14 + 5: 14 + 6: 14 + 10: 14 + 14: 14 +_ZN9oceanbase7storage24TxDataHashMapAllocHandle10alloc_nodeEPNS0_8ObTxDataE:9867:262 + 1: 253 + 3: 253 + 2: _ZN9oceanbase7storage8ObTxData24get_hash_node_by_tx_dataEPS1_:2783 + 2: 253 + 3: _ZN9oceanbase6common12LinkHashNodeINS_11transaction9ObTransIDEEC2Ev:5566 + 0.4: _ZN9oceanbase6common11KeyHashNodeINS_11transaction9ObTransIDEEC2Ev:5566 + 0: _ZN9oceanbase6common8HashNodeC2Ev:5566 + 0: 253 +_ZN9oceanbase11transaction13ObTxBaseLogCb10set_log_tsEl:9842:282 + 1: 259 + 2: 259 + 4: 259 + 5: 0 + 6.1: 0 + 8: 259 + 11: 259 +_ZN9oceanbase5share11ObIntSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:9664:64 + 10: 64 + 11: 64 + 5: _ZN9oceanbase5share13ObBasicSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKS1_RKNS_6common5ObObjERSB_EPFiS4_S7_S9_SD_EPFiRNSA_12ObIAllocatorERKNS2_18ObBasicSessionInfoES9_SE_EPFiSK_SN_S9_RNSA_8ObStringEEPFNSA_9ObObjTypeEvEb:8384 + 11: 64 + 12: 64 + 13: 64 + 14: 64 + 15: 64 + 16: 64 + 17: 64 + 18: 64 + 20: _ZN9oceanbase5share13ObBasicSysVar11clean_valueEv:5504 + 2: _ZN9oceanbase5share13ObBasicSysVar16clean_base_valueEv:1536 + 2: 64 + 3: _ZN9oceanbase6common5ObObj13set_nop_valueEv:1024 + 2: _ZN9oceanbase6common5ObObj7set_extEl:1024 + 4: 64 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:512 + 0: 64 + 3: _ZN9oceanbase5share13ObBasicSysVar15clean_inc_valueEv:1344 + 2: _ZN9oceanbase6common5ObObj13set_nop_valueEv:1344 + 2: _ZN9oceanbase6common5ObObj7set_extEl:1344 + 4: 64 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:512 + 0: 64 + 4: _ZN9oceanbase6common5ObObj5resetEv:768 + 6: 64 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:256 + 0: 64 + 5: _ZN9oceanbase6common5ObObj5resetEv:1856 + 5: 64 + 6: 64 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:256 + 0: 64 + 3: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:384 + 0: 64 + 4: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:256 + 0: 64 +_ZN9oceanbase10logservice15ObLogBaseHeaderD2Ev:9660:827 + 1: 805 + 3: 805 + 2: _ZN9oceanbase10logservice15ObLogBaseHeader5resetEv:4830 + 3: 805 +_ZN9oceanbase10logservice15ObLogBaseHeaderD1Ev:9660:827 + 1: 805 + 3: 805 + 2: _ZN9oceanbase10logservice15ObLogBaseHeader5resetEv:4830 + 3: 805 +_ZN9oceanbase5share16ObServerLocalityD2Ev:9640:497 + 1: 482 + 2: 482 +_ZN9oceanbase5share16ObServerLocalityD1Ev:9640:497 + 1: 482 + 2: 482 +_ZN9oceanbase11transaction11ObCtxTxData7destroyEv:9588:295 + 1: 282 + 2: 282 + 3: 282 + 5: 0 + 5.1: 0 + 5.2: 0 + 5.8: 0 + 5.10: 0 + 5.16: 0 + 5.17: 0 + 5.18: 0 + 6: 0 + 8.1: 0 + 8.2: 0 + 9.1: 0 + 12: 0 + 15.6: 282 + 5: _ZN9oceanbase7storage14ObTxTableGuardC2Ev:0 + 0: 0 + 5.7: _ZN9oceanbase11transaction12ObLSTxCtxMgr18get_tx_table_guardERNS_7storage14ObTxTableGuardE:0 + 1: 0 + 5.15: _ZNK9oceanbase7storage14ObTxTableGuard12get_tx_tableEv:0 + 0: 0 + 14: _ZN9oceanbase7storage14ObTxTableGuardD2Ev:0 + 0: _ZN9oceanbase7storage14ObTxTableGuard5resetEv:0 + 2: 0 + 3: 0 + 4: 0 + 14.1: _ZN9oceanbase7storage14ObTxTableGuardD2Ev:0 + 0: _ZN9oceanbase7storage14ObTxTableGuard5resetEv:0 + 2: 0 + 3: 0 + 4: 0 +_ZN9oceanbase3sql16ObSQLSessionInfo15get_piece_cacheEb:9584:220 + 0: 216 + 1: 216 + 2: 0 + 2.1: 0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 8: 0 + 8.1: 0 + 9: 0 + 10.1: 0 + 14: 221 + 2: _ZN9oceanbase3sql18ObBasicSessionInfo21get_session_allocatorEv:0 + 0: 0 + 5: _ZN9oceanbase8observer12ObPieceCacheC2Ev:0 + 0: 0 + 0.1: 0 + 0: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:0 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:0 + 2: 0 + 8: 0 + 7: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:0 + 0: 0 +_ZN9oceanbase12blocksstable14ObFuseRowCache7put_rowERKNS0_17ObFuseRowCacheKeyERKNS0_19ObFuseRowCacheValueE:9569:78 + 1: 75 + 2: 75 + 3: 75 + 3.2: 75 + 4: 0 + 5.1: 0 + 6.1: 101 _ZN9oceanbase6common9ObKVCacheINS_12blocksstable17ObFuseRowCacheKeyENS2_19ObFuseRowCacheValueEE3putERKS3_RKS4_b:80 + 7.1: 0 + 9: 101 + 3: _ZNK9oceanbase12blocksstable17ObFuseRowCacheKey8is_validEv:3450 + 2: 75 + 2.1: 75 + 2.2: 75 + 2.3: 75 + 2.4: 75 + 2.5: 75 + 2.1: _ZNK9oceanbase6common10ObTabletID8is_validEv:375 + 0: 75 + 2.3: _ZNK9oceanbase12blocksstable13ObDatumRowkey8is_validEv:825 + 0: 75 + 0.1: 75 + 3.1: _ZNK9oceanbase12blocksstable19ObFuseRowCacheValue8is_validEv:975 + 0: 75 +_ZN9oceanbase6common16ObPriorityQueue2ILi1ELi2ELi3EE13pop_high_highERPNS0_6ObLinkEl:9561:45 + 1: 39 + 2: 110 + 2: _ZN9oceanbase6common16ObPriorityQueue2ILi1ELi2ELi3EE6do_popERPNS0_6ObLinkEll:7092 + 2: 39 + 3: 39 + 4: 1 + 5.1: 1 + 14.1: 39 + 14.3: 39 + 16: 1 + 19: 39 + 20: 40 _ZN9oceanbase6common9SCondTempILi3EE4waitEl:39 + 21: 111 + 23: 0 + 26: 110 + 8: _ZN9oceanbase6common9SCondTempILi3EE7prepareEi:2777 + 4: 39 + 2: _ZN9oceanbase6common9SCondTempILi3EE7get_keyEiRj:1763 + 0: _ZN9oceanbase6common16SCondSimpleIdGen4nextEv:1256 + 0: _ZN9oceanbase6common7icpu_idEv:1256 + 2: _ZN9oceanbase6common12sched_getcpuEv:1256 + 0: 39 + 0: _ZN9oceanbase6common8get_itidEv:1139 + 4: 39 + 5: 1 + 6: 1 + 8: 1 + 0.1: _ZN9oceanbase6common10SimpleCond7get_keyEv:507 + 0: 39 + 0: _ZN9oceanbase3lib7ObFutex4uvalEv:312 + 0: 39 + 15: _ZN9oceanbase6common11ObLinkQueue3popERPNS0_6ObLinkE:1240 + 5: 39 + 7: 39 + 9: 1 + 10.1: 1 + 4: _ZN9oceanbase6commonL11faa_boundedEPmS1_Rm:736 + 2: 39 + 3: 39 + 4: 39 + 5: 0 + 6: 0 + 8: 1 + 11: 1 + 12: 1 + 15: 1 + 9: _ZN9oceanbase6common11ObLinkQueue3idxEl:6 + 0: 1 +_ZN9oceanbase8memtable13ObMemtableCtx14set_log_syncedEPNS_11transaction9tablelock22ObMemCtxLockOpLinkNodeEl:9425:725 + 1: 725 + 2: 725 _ZN9oceanbase11transaction9tablelock12ObLockMemCtx14set_log_syncedEPNS1_22ObMemCtxLockOpLinkNodeEl:738 +_ZN9oceanbase11transaction12ObLSTxCtxMgr35try_wait_gts_and_inc_max_commit_ts_Ev:9424:256 + 1: 248 + 2: 248 + 3: 248 + 4: 0 + 7: 0 + 7.1: 0 + 13.1: 0 + 19: 0 + 22: 0 + 23.1: 0 + 24.1: 0 + 28.1: 0 + 31: 248 + 5: _ZN9oceanbase11transaction11MonotonicTsC2El:0 + 0: 0 + 7.1: _ZN9oceanbase11transaction11MonotonicTsD2Ev:0 + 0: _ZN9oceanbase11transaction11MonotonicTs5resetEv:0 + 0: 0 + 7.2: _ZN9oceanbase11transaction11MonotonicTsD2Ev:0 + 0: _ZN9oceanbase11transaction11MonotonicTs5resetEv:0 + 0: 0 + 23: _ZN9oceanbase11transaction14ObTransService18get_tx_version_mgrEv:0 + 0: 0 +_ZN9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EE7reserveEl:9415:282 + 1: 269 + 2: 269 + 3: 269 + 5: 0 + 6: 0 + 7: 0 + 7.3: 0 + 9: 0 + 10: 0 + 11: 0 + 12: 0 + 13: 0 + 15: 0 + 16: 0 + 23: 0 + 24.1: 0 + 27: 269 + 8: _ZN9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EE16internal_malloc_El:0 + 2: 0 + 7: 0 + 13: 0 + 13: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 10: _ZN9oceanbase6common9ObClassOpINS_5share6ObLSIDELb0EE12array_expandEPKS3_PS3_l:0 + 4: 0 + 4.1: 0 + 4.3: 0 + 4.5: 0 + 18: 0 + 5: _ZN9oceanbase6common16construct_assignINS_5share6ObLSIDEEEiRT_RKS4_:0 + 2: _ZN9oceanbase6common21construct_assign_wrapINS_5share6ObLSIDEEEiRT_RKS4_NS0_8BoolTypeILb0EEE:0 + 2: _ZN9oceanbase5share6ObLSIDC2ERKS1_:0 + 0: 0 + 19: _ZN9oceanbase5share6ObLSIDD2Ev:0 + 0: _ZN9oceanbase5share6ObLSID5resetEv:0 + 0: 0 +_ZNK9oceanbase5share6schema19ObSysVariableSchema17get_sysvar_schemaEl:9360:473 + 3: 468 + 4: 468 + 6: 468 +_ZN9oceanbase7storage18ObSSTableRowGetter18inner_get_next_rowERPKNS_12blocksstable10ObDatumRowE:9326:91 + 1: 88 + 2: 88 + 3: 88 + 4: 0 + 5.1: 0 + 6.1: 88 + 7: 0 + 8.1: 92 _ZN9oceanbase7storage18ObSSTableRowGetter9fetch_rowERNS0_19ObSSTableReadHandleERPKNS_12blocksstable10ObDatumRowE:94 + 10: 0 + 12.1: 0 + 14.1: 77 + 16: 77 + 16.1: 0 + 17: 77 + 18: 0 + 19.1: 0 + 21.1: 86 + 21.2: 0 + 21.3: 0 + 21.4: 0 + 21.6: 0 + 21.7: 0 + 24: 80 + 16: _ZNK9oceanbase12blocksstable12ObDmlRowFlag12is_not_existEv:539 + 2: 77 + 21.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:423 + 2: 79 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:84 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:344 + 2: 86 +_ZNK9oceanbase11transaction14ObPartTransCtx7is_rootEv:9197:545 + 0: 541 + 0: _ZNK9oceanbase5share6ObLSID8is_validEv:5951 + 0: 541 +_ZN9oceanbase8memtable16ObTxCallbackList13SpinLockGuardD2Ev:9174:249 + 1: 249 + 2: 249 _ZN9oceanbase6common7ObLatch6unlockEPKj:249 + 3: 263 + 3.1: 0 + 3.2: 0 + 3: _ZN9oceanbase6common17ObSimpleTimeGuardD2Ev:1578 + 2: 263 + 3.1: 0 + 4.1: 0 + 3: _ZNK9oceanbase6common17ObSimpleTimeGuard8get_diffEv:0 + 2.1: 0 + 2.1: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 +_ZN9oceanbase8memtable16ObTxCallbackList13SpinLockGuardD1Ev:9174:249 + 1: 249 + 2: 249 _ZN9oceanbase6common7ObLatch6unlockEPKj:249 + 3: 263 + 3.1: 0 + 3.2: 0 + 3: _ZN9oceanbase6common17ObSimpleTimeGuardD2Ev:1578 + 2: 263 + 3.1: 0 + 4.1: 0 + 3: _ZNK9oceanbase6common17ObSimpleTimeGuard8get_diffEv:0 + 2.1: 0 + 2.1: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 +_ZN9oceanbase6common9ObKVCacheINS_12blocksstable21ObBloomFilterCacheKeyENS2_23ObBloomFilterCacheValueEE3getERKS3_RPKS4_RNS0_15ObKVCacheHandleE:9160:94 + 1: 91 + 2: 91 + 3: 91 + 4: 91 + 5: 0 + 6.1: 0 + 8: 91 _ZN9oceanbase6common15ObKVCacheHandle5resetEv:93 + 9: 97 _ZN9oceanbase6common15ObKVGlobalCache12get_instanceEv:100 + 9.1: 97 _ZN9oceanbase6common15ObKVGlobalCache3getElRKNS0_13ObIKVCacheKeyERPKNS0_15ObIKVCacheValueERPNS0_18ObKVMemBlockHandleE:100 + 11.1: 0 + 14: 1 + 20: 73 +_ZNK9oceanbase7storage13ObLSTxService13create_tx_ctxENS_11transaction13ObTxCreateArgERbRPNS2_14ObPartTransCtxE:9118:254 + 3: 253 + 4: 253 + 5: 253 + 6: 0 + 7.1: 0 + 9: 254 _ZN9oceanbase11transaction12ObLSTxCtxMgr13create_tx_ctxERKNS0_13ObTxCreateArgERbRPNS0_14ObPartTransCtxE:259 + 11: 254 +_ZN9oceanbase11transaction8ObTxDesc18implicit_start_tx_Ev:9112:271 + 1: 268 + 2: 268 + 2.1: 268 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 8: 268 + 4: _ZN9oceanbase6common16ObClockGenerator8getClockEv:0 + 4: 0 + 5.1: 0 + 8: 0 + 6: _ZN9oceanbase6common16ObClockGenerator6get_usEv:0 + 2: 0 + 6: _ZN9oceanbase6common10ObSequence14get_max_seq_noEv:0 + 2: 0 +_ZN9oceanbase8memtable22ObMemtableRowCompactor15find_start_pos_ElRPNS0_15ObMvccTransNodeE:9073:62 + 2: 58 + 3: 58 + 6: 58 + 6.1: 55 + 6.3: 55 + 7.1: 55 + 8: 72 + 11: 69 + 11.1: 60 + 12: 69 + 14: 9 + 23: 7 + 24: 7 + 24.1: 6 + 25: 6 + 26: 6 + 34: 15 + 34.1: 0 + 35.1: 0 + 40: 61 + 13.1: _ZNK9oceanbase8memtable15ObMvccTransNode12is_committedEv:240 + 0: 60 + 25.1: _ZNK9oceanbase8memtable15ObMvccTransNode12is_committedEv:1288 +_ZN9oceanbase5share6schema27ObMultiVersionSchemaService10get_schemaEPKNS1_11ObSchemaMgrERKNS1_21ObRefreshSchemaStatusENS1_12ObSchemaTypeEmlRNS_6common15ObKVCacheHandleERPKNS1_8ObSchemaE:8998:55 + 7: 55 + 8: 55 + 9: 0 + 10: 55 + 11: 55 + 12: 55 + 12.1: 4 + 13: 0 + 14.1: 0 + 15.1: 51 + 15.2: 0 + 16: 0 + 17.1: 0 + 19.1: 50 + 21: 0 + 22.1: 0 + 24.1: 54 + 30.1: 0 + 31: 0 + 33: 0 + 34: 0 + 34.1: 0 + 41.1: 0 + 43.1: 0 + 43.2: 0 + 44.1: 0 + 45.1: 0 + 45.2: 0 + 47.1: 0 + 48.1: 0 + 48.2: 0 + 55.1: 0 + 58: 0 + 58.1: 0 + 59.2: 54 + 60: 0 + 61.1: 61 _ZN9oceanbase5share6schema13ObSchemaCache10get_schemaENS1_12ObSchemaTypeEmmlRNS_6common15ObKVCacheHandleERPKNS1_8ObSchemaE:61 + 68.1: 0 + 72: 0 + 73.1: 0 + 75: 0 + 77: 0 + 79: 0 + 82: 0 + 84.1: 0 + 85: 0 + 89: 0 + 90: 0 + 92: 0 + 92.1: 0 + 94.1: 0 + 97: 0 + 99.1: 0 + 99.2: 0 + 100: 0 + 105: 0 + 106: 0 + 107: 0 + 108.1: 0 + 112: 0 + 112.1: 0 + 119.1: 0 + 122: 0 + 126.1: 0 + 132.2: 0 + 133: 0 + 134.1: 0 + 141.1: 0 + 149: 0 + 150: 0 + 150.1: 0 + 156.1: 0 + 158.1: 0 + 159: 0 + 160.1: 0 + 162.1: 0 + 163: 0 + 165: 0 + 167.1: 0 + 167.2: 0 + 168: 0 + 168.1: 0 + 170.1: 0 + 171: 0 + 171.1: 0 + 173.1: 0 + 173.2: 0 + 174: 0 + 174.1: 0 + 175: 0 + 176: 0 + 177.1: 0 + 178.1: 0 + 178.2: 0 + 178.3: 0 + 180.1: 0 + 182.2: 0 + 184: 0 + 184.1: 0 + 185: 0 + 185.1: 0 + 191.1: 0 + 193: 0 + 193.2: 0 + 193.7: 0 + 193.13: 0 + 195: 0 + 196: 0 + 196.1: 0 + 196.2: 0 + 200.1: 0 + 203: 0 + 205: 0 + 207: 0 + 207.1: 0 + 208.1: 0 + 213: 0 + 213.1: 0 + 214: 0 + 214.1: 0 + 215.1: 0 + 216.1: 0 + 216.2: 0 + 217.1: 0 + 218.1: 0 + 218.2: 0 + 219.1: 0 + 220.1: 0 + 220.2: 0 + 221.1: 0 + 225: 0 + 226.1: 0 + 226.2: 0 + 227: 0 + 230: 0 + 231: 0 + 232: 0 + 232.1: 0 + 233.1: 0 + 234.1: 0 + 234.2: 0 + 236.1: 0 + 237.1: 0 + 237.2: 0 + 237.3: 0 + 239.1: 0 + 239.2: 0 + 240.1: 0 + 242: 0 + 242.2: 0 + 242.3: 0 + 243.1: 0 + 246: 0 + 246.1: 0 + 250: 0 + 251: 0 + 252.1: 0 + 253: 0 + 254.1: 0 + 255.1: 0 + 256: 0 + 257: 0 + 257.1: 0 + 259: 0 + 259.1: 0 + 259.2: 0 + 260: 0 + 260.1: 0 + 261.1: 0 + 268: 0 + 268.2: 0 + 269.1: 0 + 279: 0 + 285: 0 + 292: 0 + 292.2: 0 + 292.3: 0 + 300.1: 0 + 326: 48 + 12.1: _ZN9oceanbase6common13is_sys_tenantEm:16 + 2: 4 + 26: _ZNK9oceanbase5share6schema13ObSchemaCache18get_all_core_tableEv:0 + 2: 0 + 30.1: _ZN9oceanbase6common13is_sys_tenantEm:0 + 2: 0 + 76.1: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:0 + 4: 0 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 90: _ZN9oceanbase5share6schema13VersionHisKeyC2ENS1_12ObSchemaTypeEm:0 + 2: 0 + 91: _ZN9oceanbase5share6schema13VersionHisValC2Ev:0 + 1: 0 + 2: 0 + 168.1: _ZNK9oceanbase5share6schema21ObSimpleTableSchemaV213is_view_tableEv:0 + 0: 0 + 171.1: _ZNK9oceanbase5share6schema21ObSimpleTableSchemaV216is_aux_lob_tableEv:0 + 0: 0 + 0: _ZNK9oceanbase5share6schema21ObSimpleTableSchemaV221is_aux_lob_meta_tableEv:0 + 0: 0 + 178.1: _ZN9oceanbase5share6schema18ObAuxTableMetaInfoC2EmNS1_11ObTableTypeENS1_11ObIndexTypeE:0 + 4: 0 + 5: 0 + 183: _ZN9oceanbase6common9ObSEArrayINS_5share6schema18ObAuxTableMetaInfoELl8ENS0_19ModulePageAllocatorELb0EEC2Ev:0 + 0.1: 0 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema18ObAuxTableMetaInfoELl8ENS0_19ModulePageAllocatorELb0EEC2ElRKS5_:0 + 2: 0 + 5: 0 + 6: 0 + 8: 0 + 17.1: 0 + 2: _ZN9oceanbase6common8ObIArrayINS_5share6schema18ObAuxTableMetaInfoEEC2EPS4_l:0 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_5share6schema18ObAuxTableMetaInfoEEC2EPS4_l:0 + 0: 0 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:0 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:0 + 2: 0 + 8: 0 + 193.12: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema18ObAuxTableMetaInfoEE5countEv:0 + 0: 0 + 196: _ZN9oceanbase5share6schema18ObAuxTableMetaInfoC2EmNS1_11ObTableTypeENS1_11ObIndexTypeE:0 + 4: 0 + 5: 0 + 6: 0 + 203: _ZN9oceanbase5share6schema13ObTableSchema20set_aux_lob_meta_tidERKm:0 + 0: 0 + 205: _ZN9oceanbase5share6schema13ObTableSchema21set_aux_lob_piece_tidERKm:0 + 0: 0 + 268.1: _ZN9oceanbase6common15is_system_tableEm:0 + 2: 0 + 282: _ZNK9oceanbase5share6schema14ObTenantSchema18get_schema_versionEv:0 + 0: 0 + 288: _ZNK9oceanbase5share6schema16ObDatabaseSchema18get_schema_versionEv:0 + 0: 0 + 324: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:0 + 0: 0 + 324.1: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:0 + 0: 0 +_ZN9oceanbase6common14SpinWLockGuardD2Ev:8988:269 + 1: 262 + 2: 262 + 3: 262 + 3.1: 243 + 3.2: 2 + 4.1: 2 + 4.5: 2 + 7.1: 243 + 3: _ZN9oceanbase6common10SpinRWLock6unlockEv:794 + 0: 262 _ZN9oceanbase6common7ObLatch6unlockEPKj:276 +_ZN9oceanbase6common13ObLightyQueue4pushEPv:8982:80 + 1: 62 + 3: 62 + 7: 62 + 8: 62 + 15: 172 + 7: _ZN9oceanbase6common13ObLightyQueue9inc_if_ltEPmS2_mRm:2294 + 3: 62 + 4: 62 + 5.1: 62 + 5.2: 0 + 5.3: 62 + 6.1: 62 + 7: 0 + 9: _ZN9oceanbase6common13ObLightyQueue5storeEmPv:1550 + 2: 62 + 3.1: 62 + 4: 0 + 2: _ZN9oceanbase6common13ObLightyQueue3idxEm:682 + 0: 62 + 10: _ZN9oceanbase6common13ObLightyQueue8get_condEm:806 + 0: 62 + 10.1: _ZN9oceanbase6common13ObLightyQueue12ObLightyCond6signalEv:1344 + 2: 62 + 3: 62 + 4: 20 _ZN9oceanbase3lib7ObFutex4wakeEl:20 +_ZNK9oceanbase7storage18ObSimpleRowsMergerINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpEE9is_initedEv:8964:1008 + 0: 996 +_ZNK9oceanbase4palf16LogSlidingWindow24get_last_slide_log_info_ERlS2_RNS0_3LSNES4_S2_:8928:59 + 5: 54 + 6: 54 + 7: 57 + 8: 57 + 11: 57 + 12: 57 + 6: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEEC2ERS3_:1647 + 1: 54 + 4: 57 + 5.1: 0 + 6: 0 + 4: _ZN9oceanbase6common10ObSpinLock4lockEv:918 + 2: 54 _ZN9oceanbase6common12ObLatchMutex4lockEjl:54 + 9: _ZN9oceanbase4palf3LSNaSERKS1_:627 + 2: 57 + 10: _ZN9oceanbase4palf3LSNaSERKS1_:570 + 2: 57 + 12: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEED2Ev:912 + 2: 57 + 3: 57 + 3.1: 57 + 4.1: 0 + 3: _ZN9oceanbase6common10ObSpinLock6unlockEv:57 + 2: 57 _ZN9oceanbase6common12ObLatchMutex6unlockEv:62 +_ZN9oceanbase12blocksstable21ObMicroBlockRowGetter7get_rowERNS_7storage19ObSSTableReadHandleERPKNS0_10ObDatumRowERNS0_18ObMacroBlockReaderE:8903:106 + 4: 99 + 5: 99 + 6: 99 + 7: 0 + 8.1: 0 + 9.1: 99 + 10: 0 + 11.1: 0 + 13: 99 + 15: 0 + 16.1: 0 + 20: 0 + 24.1: 0 + 28: 101 _ZN9oceanbase12blocksstable21ObMicroBlockRowGetter13get_block_rowERNS_7storage19ObSSTableReadHandleERNS0_18ObMacroBlockReaderERPKNS0_10ObDatumRowE:102 + 29.1: 0 + 33: 0 + 34.1: 0 + 38: 0 + 39: 78 + 42: 78 + 9.1: _ZNK9oceanbase7storage19ObSSTableReadHandle8is_validEv:693 + 1: 99 +_ZN9oceanbase6common11ObArrayImplINS_11transaction9ObTransIDENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE5resetEv:8892:1025 + 0: 988 _ZN9oceanbase6common11ObArrayImplINS_11transaction9ObTransIDENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE7destroyEv:1060 +_ZN9oceanbase3lib17ObTenantMemoryMgr11alloc_chunkElRKNS0_9ObMemAttrE:8865:34 + 1: 33 + 3: 33 + 4: 33 + 5: 0 + 6.1: 0 + 7.1: 33 + 8: 0 + 9.1: 0 + 11: 33 + 12: 33 + 13: 33 _ZN9oceanbase3lib17ObTenantMemoryMgr11update_holdElmRKNS0_7ObLabelERb:34 + 14: 31 + 15: 30 + 16: 0 + 17.1: 34 + 22: 34 + 22.1: 34 + 22.3: 0 + 22.4: 0 + 23: 0 + 26: 0 + 27: 0 + 28: 0 + 29: 0 + 31.1: 0 + 32: 0 + 37: 0 + 37.1: 0 + 39.1: 0 + 40.1: 0 + 41: 0 + 42.1: 0 + 46: 0 + 47: 0 + 50: 0 + 50.1: 0 + 57: 0 + 58: 0 + 59.1: 0 + 59.2: 0 + 59.4: 0 + 60: 0 + 61: 0 + 61.1: 0 + 63.1: 0 + 67: 0 + 70.1: 0 + 72: 0 + 73: 0 + 74: 0 + 77: 0 + 77.1: 0 + 79: 0 + 80: 0 + 81: 0 + 85: 0 + 86: 0 + 87: 0 + 88.1: 0 + 92.1: 0 + 100: 34 + 11: _ZN9oceanbase3lib9AChunkMgr8instanceEv:462 + 2: 33 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 11.1: _ZN9oceanbase3lib9AChunkMgr4holdEm:1023 + 2: _ZN9oceanbase3lib6AChunk9calc_holdEllPm:1023 + 3: 33 + 3.2: 0 + 2: _ZN9oceanbase3lib9align_up2Emm:627 + 2: 33 + 3.4: _ZN9oceanbase3lib9align_up2Emm:0 + 2: 0 + 14: _ZN9oceanbase3lib17ObTenantMemoryMgr12alloc_chunk_ElRKNS0_9ObMemAttrE:1609 + 2: 31 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 3: 31 + 4.1: 0 + 6: 31 + 6.1: 31 _ZN9oceanbase3lib9AChunkMgr11alloc_chunkEmb:31 + 17.1: _ZNK9oceanbase3lib7ObLabeleqIA14_cEEbRKT_:732 + 2.1: 30 _ZNK9oceanbase3lib7ObLabeleqERKS1_:35 + 2: _ZN9oceanbase3lib7ObLabelC2IA14_cEERKT_:510 + 2: _ZN9oceanbase3lib7ObLabelaSILm14EEERS1_RAT__Kc:510 + 4: 30 + 18: _ZN9oceanbase3lib17ObTenantMemoryMgr17update_cache_holdEl:0 + 3: 0 + 4: 0 + 23.1: _ZNK9oceanbase3lib7ObLabelneIA14_cEEbRKT_:0 + 2: _ZNK9oceanbase3lib7ObLabeleqIA14_cEEbRKT_:0 + 2.1: 0 + 2: _ZN9oceanbase3lib7ObLabelC2IA14_cEERKT_:0 + 2: _ZN9oceanbase3lib7ObLabelaSILm14EEERS1_RAT__Kc:0 + 4: 0 + 24: _ZN9oceanbase6common11ObTimeGuardC2EPKcl:0 + 2: 0 + 3: 0 + 4: 0 + 6: 0 + 7: 0 + 8: 0 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 45: _ZNK9oceanbase3lib6AChunk4holdEPm:0 + 2: 0 + 2: _ZN9oceanbase3lib6AChunk9calc_holdEllPm:0 + 3: 0 + 3.2: 0 + 4: 0 + 2: _ZN9oceanbase3lib9align_up2Emm:0 + 2: 0 + 3.4: _ZN9oceanbase3lib9align_up2Emm:0 + 2: 0 + 46: _ZN9oceanbase3lib17ObTenantMemoryMgr17update_cache_holdEl:0 + 2: 0 + 3: 0 + 4: 0 + 47: _ZN9oceanbase3lib17ObTenantMemoryMgr15update_ctx_holdEml:0 + 3: 0 + 6: 0 + 7: 0 + 10: 0 + 11: 0 + 12: 0 + 13: 0 + 20: 0 + 21: 0 + 22: 0 + 23: 0 + 24: 0 + 25: 0 + 28.1: 0 + 51: _ZN9oceanbase3lib7ObLabelC2IA14_cEERKT_:0 + 2: _ZN9oceanbase3lib7ObLabelaSILm14EEERS1_RAT__Kc:0 + 4: 0 + 52: _ZN9oceanbase3lib17ObTenantMemoryMgr11free_chunk_EPNS0_6AChunkERKNS0_9ObMemAttrE:0 + 2: 0 + 3.1: 0 + 5.1: 0 + 66.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 7: 0 + 68: _ZN9oceanbase3lib7ObLabelaSILm14EEERS1_RAT__Kc:0 + 4: 0 + 71: _ZN9oceanbase3lib17ObTenantMemoryMgr9ptr2chunkEPv:0 + 3: 0 + 79: _ZN9oceanbase3lib17ObTenantMemoryMgr12alloc_chunk_ElRKNS0_9ObMemAttrE:0 + 3: 0 + 4.1: 0 + 6: 0 + 6.1: 0 + 98: _ZN9oceanbase6common11ObTimeGuardD2Ev:0 + 2.1: 0 + 3.1: 0 + 2: _ZNK9oceanbase6common11ObTimeGuard8get_diffEv:0 + 2: 0 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 98.1: _ZN9oceanbase6common11ObTimeGuardD2Ev:0 + 2.1: 0 + 3.1: 0 + 2: _ZNK9oceanbase6common11ObTimeGuard8get_diffEv:0 + 2: 0 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 +_ZN9oceanbase6common14ObKVCacheStore11get_curr_mbERNS0_13ObKVCacheInstENS0_15ObKVCachePolicyE:8832:580 + 2: 552 + 3: 552 +_ZN9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE5reuseEv:8772:536 + 0: 516 + 0: _ZN9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE13destruct_objsEv:5676 + 11: 516 +_ZN9oceanbase6common11ObArrayImplINS_12blocksstable12MacroBlockIdENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE9push_backERKS3_:8664:52 + 1: 50 + 2: 50 + 3: 50 + 4: 0 + 5.1: 0 + 6.1: 50 + 7: 0 + 9: 0 + 9.1: 53 + 10: 53 + 11: 0 + 14: 0 + 17: 54 + 21: 54 + 28.1: 0 + 32: 54 + 7: _ZN9oceanbase6common11ObArrayImplINS_12blocksstable12MacroBlockIdENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE10extend_bufEv:0 + 2: 0 + 3: 0 + 11: _ZN9oceanbase6common11copy_assignINS_12blocksstable12MacroBlockIdEEEiRT_RKS4_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapINS_12blocksstable12MacroBlockIdEEEiRT_RKS4_NS0_8BoolTypeILb0EEE:0 + 2: _ZN9oceanbase12blocksstable12MacroBlockIdaSERKS1_:0 + 2: 0 + 3: 0 + 4: 0 + 17: _ZN9oceanbase6common16construct_assignINS_12blocksstable12MacroBlockIdEEEiRT_RKS4_:208 + 2: _ZN9oceanbase6common21construct_assign_wrapINS_12blocksstable12MacroBlockIdEEEiRT_RKS4_NS0_8BoolTypeILb0EEE:208 + 2: 52 _ZN9oceanbase12blocksstable12MacroBlockIdC1ERKS1_:55 +_ZN9oceanbase5share6schema19ObSchemaGetterGuard17get_schema_statusEmRNS1_21ObRefreshSchemaStatusE:8618:62 + 1: 54 + 2: 54 + 5: 53 + 6.1: 0 + 8: 53 + 10: 53 + 3: _ZN9oceanbase5share6schema21ObRefreshSchemaStatus5resetEv:1080 + 2: 54 + 4: 54 + 5: _ZNK9oceanbase5share6schema19ObSchemaGetterGuard19get_schema_mgr_infoEmRPKNS1_15ObSchemaMgrInfoE:3748 + 2: 54 + 4: 54 + 5: 0 + 6.1: 0 + 7.1: 54 + 9: 50 + 9.1: 47 _ZNK9oceanbase6common13ObSEArrayImplINS_5share6schema15ObSchemaMgrInfoELl2ENS0_19ModulePageAllocatorELb0EEixEl:48 + 9.2: 3 _ZNK9oceanbase6common13ObSEArrayImplINS_5share6schema15ObSchemaMgrInfoELl2ENS0_19ModulePageAllocatorELb0EEixEl:3 + 10: 3 + 15: 4 + 17.1: 4 + 18: 4 + 20: 4 + 23: 0 + 33: 53 + 7.1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema15ObSchemaMgrInfoEE5countEv:378 + 0: 54 + 9: _ZNK9oceanbase6common13ObSEArrayImplINS_5share6schema15ObSchemaMgrInfoELl2ENS0_19ModulePageAllocatorELb0EEixEl:350 + 5: 50 + 9.3: _ZNK9oceanbase6common13ObSEArrayImplINS_5share6schema15ObSchemaMgrInfoELl2ENS0_19ModulePageAllocatorELb0EEixEl:69 + 2.1: 3 + 2.2: 3 + 3.1: 0 + 5: 3 + 9.5: _ZNK9oceanbase5share6schema15ObSchemaMgrInfo13get_tenant_idEv:12 + 0: 3 + 19: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema15ObSchemaMgrInfoEE2atEl:56 + 6: 4 + 20: _ZNK9oceanbase5share6schema15ObSchemaMgrInfo13get_tenant_idEv:36 + 0: 4 +_ZN9oceanbase8memtable13ObMemtableCtx13sync_log_succElRKNS0_15ObCallbackScopeE:8593:252 + 1: 247 + 4: 247 _ZN9oceanbase8memtable18ObRedoLogGenerator13sync_log_succElRKNS0_15ObCallbackScopeE:247 + 5.1: 1 + 8: 243 +_ZN9oceanbase3sql17get_timezone_infoEPKNS0_16ObSQLSessionInfoE:8586:491 + 2: 477 + 2.3: 477 + 2.1: _ZNK9oceanbase3sql18ObBasicSessionInfo17get_timezone_infoEv:3816 + 0: _ZNK9oceanbase6common18ObTimeZoneInfoWrap18get_time_zone_infoEv:3816 + 0: 477 +_ZN9oceanbase8memtable18ObTransCallbackMgr32remove_callbacks_for_fast_commitERb:8552:265 + 1: 265 + 4: 269 _ZN9oceanbase8memtable16ObTxCallbackList32remove_callbacks_for_fast_commitERb:265 + 5.1: 0 + 8: 269 +_ZN9oceanbase3omt8ObTenant18check_worker_countEv:8522:14 + 1: 12 + 3: 12 + 3.1: 0 + 4.1: 0 + 6: 0 + 7: 0 + 7.1: 0 + 7.3: 0 + 8: 0 + 11: 0 + 14.1: 0 + 16: 12 + 21: 12 + 21.2: 114 + 21.3: 114 + 22: 122 + 23: 122 + 25: 122 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:124 + 26: 114 + 27: 114 + 28: 114 + 29.1: 0 + 50: 0 + 51: 0 + 54: 0 + 59: 10 + 61: 10 + 62: 10 + 63: 0 + 64: 0 + 66: 0 + 67.1: 10 + 75: 10 + 3.1: _ZN9oceanbase3lib7ObMutex7trylockEv:0 + 0: 0 + 13: _ZN9oceanbase3lib7ObMutex6unlockEv:0 + 0: 0 + 16: _ZN9oceanbase3lib7ObMutex7trylockEv:276 + 0: 12 _ZN9oceanbase6common12ObLatchMutex8try_lockEjPKj:12 + 21: _ZN9oceanbase6common7ObDListINS0_11ObDLinkNodeIPNS_3lib6WorkerEEEE9get_firstEv:132 + 0: 12 + 24: _ZNK9oceanbase3omt10ObThWorker22get_active_inactive_tsEv:854 + 0: 122 + 26: _ZN9oceanbase3omt10ObThWorker9is_activeEv:798 + 0: 114 + 27: _ZN9oceanbase3lib6Worker8set_tidxEl:798 + 2: 114 + 29.1: _ZN9oceanbase3omt10ObThWorker17is_waiting_activeEv:0 + 0: 0 + 49: _ZNK9oceanbase3omt10ObThWorker22get_active_inactive_tsEv:0 + 0: 0 + 52: _ZN9oceanbase6common7ObDListINS0_11ObDLinkNodeIPNS_3lib6WorkerEEEE6removeEPS6_:0 + 3: 0 + 7: 0 + 6: _ZN9oceanbase6common11ObDLinkBaseINS0_11ObDLinkNodeIPNS_3lib6WorkerEEEE6unlinkEv:0 + 2: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 53: _ZN9oceanbase3omt10ObThWorker5resetEv:0 + 5: 0 + 6: 0 + 8: 0 + 10: 0 + 11: 0 + 13: 0 + 14: 0 + 15: _ZN9oceanbase3lib6Worker10unset_tidxEv:0 + 2: 0 + 71: _ZN9oceanbase3lib7ObMutex6unlockEv:10 + 0: 10 _ZN9oceanbase6common12ObLatchMutex6unlockEv:10 +_ZZN9oceanbase10logservice13ObApplyStatus19try_handle_cb_queueEPNS0_23ObApplyServiceQueueTaskERbENK4$_37clEPKc.d3a41d52a3cfae37a6a74713ee8e7132:8360:131 + 0: 121 + 0.1: 0 + 0.2: 121 + 0.3: 119 _ZN9oceanbase6common8ObLogger13need_to_printEmi:121 + 0.12: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:2023 + 2: 119 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKNS_4palf3LSNELb0EEC2EPKcS5_:0 + 0: 0 + 0.5: _ZNK9oceanbase10logservice12AppendCbBase11__get_ts_nsEv:0 + 0: 0 + 0.7: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.8: _ZN9oceanbase6common20ObLogPrintPointerCntIPNS_10logservice23ObApplyServiceQueueTaskEEC2ES4_:0 + 0: 0 + 0.9: _ZN9oceanbase6common7ObLogKVINS0_20ObLogPrintPointerCntIPNS_10logservice23ObApplyServiceQueueTaskEEELb1EEC2EPKcOKS6_:0 + 0: 0 + 0.10: _ZN9oceanbase6common20ObLogPrintPointerCntIPNS_10logservice13ObApplyStatusEEC2ES4_:0 + 0: 0 + 0.11: _ZN9oceanbase6common7ObLogKVINS0_20ObLogPrintPointerCntIPNS_10logservice13ObApplyStatusEEELb1EEC2EPKcOKS6_:0 + 0: 0 +_ZN9oceanbase6common8ObRandomD2Ev:8352:1421 + 1: 1392 + 2: 1392 +_ZN9oceanbase6common8ObRandomD1Ev:8352:1421 + 1: 1392 + 2: 1392 +_ZN9oceanbase6common13ObLinkHashMapINS_11transaction9ObTransIDENS_7storage8ObTxDataENS4_24TxDataHashMapAllocHandleENS0_9RefHandleELl8EE18get_retire_stationEv:8349:274 + 0: 253 + 1: 253 + 1.1: 0 + 1.2: 0 + 1.5: 0 + 1.7: 0 + 2: 253 + 1.3: _ZN9oceanbase6common13RetireStationC2ERNS0_6QClockEl:0 + 0.2: 0 + 1: 0 + 0.1: _ZN9oceanbase6common13RetireStation10RetireListC2Ev:0 + 0: 0 + 0: _ZN9oceanbase6common10HazardListC2Ev:0 + 0: 0 + 0.4: _ZN9oceanbase6common10HazardListC2Ev:0 + 0: 0 +_ZN9oceanbase12blocksstable21ObMicroBlockGetReader13locate_rowkeyERKNS0_13ObDatumRowkeyERl:8327:77 + 1: 74 + 2: 74 + 3: 74 + 4: 74 + 5: 0 + 6.1: 0 + 9: 74 _ZN9oceanbase12blocksstable23ObIMicroBlockFlatReader11find_bound_ERKNS0_13ObDatumRowkeyEbllRKNS_7storage15ObTableReadInfoERlRb:81 + 11.1: 0 + 12.1: 55 + 17: 55 + 18: 55 + 24: 53 + 18.1: _ZNK9oceanbase12blocksstable21ObMultiVersionRowFlag12is_ghost_rowEv:275 + 0: 55 +_ZNK9oceanbase4palf16LogSlidingWindow32is_all_committed_log_slided_out_ERNS0_3LSNERlS3_:8317:54 + 1: 52 + 2: 52 + 3: 52 + 4: 52 + 7: 52 + 8: 52 _ZNK9oceanbase4palf16LogSlidingWindow24get_last_slide_log_info_ERlS2_RNS0_3LSNES4_S2_:59 + 11.1: 58 + 12: 54 + 14: 4 + 15.1: 4 _ZZNK9oceanbase4palf16LogSlidingWindow32is_all_committed_log_slided_out_ERNS0_3LSNERlS3_ENK5$_218clEPKc.0e4bf25207570af14a78557c8489c4fc:4 + 19: 59 + 21.3: 59 + 5: _ZN9oceanbase4palf3LSNC2Ev:364 + 2: _ZN9oceanbase4palf3LSN5resetEv:364 + 2: 52 + 6: _ZN9oceanbase4palf3LSNC2Ev:884 + 2: _ZN9oceanbase4palf3LSN5resetEv:884 + 2: 52 + 10: _ZNK9oceanbase4palf16LogSlidingWindow22get_committed_end_lsn_ERNS0_3LSNE:638 + 2: 58 + 2.4: _ZN9oceanbase4palf3LSNaSERKS1_:232 + 2: 58 + 11: _ZNK9oceanbase4palf3LSNleERKS1_:232 + 2: 58 + 18: _ZN9oceanbase4palf3LSNaSERKS1_:413 + 2: 59 +_ZZN9oceanbase10logservice13ObApplyStatus29submit_task_to_apply_service_ERNS0_18ObApplyServiceTaskEENK4$_69clEPKc.d3a41d52a3cfae37a6a74713ee8e7132:8294:146 + 0: 130 + 0.1: 0 + 0.2: 118 + 0.3: 130 _ZN9oceanbase6common8ObLogger13need_to_printEmi:131 + 0.9: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:2210 + 2: 130 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.1: _ZN9oceanbase6common20ObLogPrintPointerCntIPNS_10logservice13ObApplyStatusEEC2ES4_:0 + 0: 0 + 0.4: _ZN9oceanbase6common7ObLogKVINS0_20ObLogPrintPointerCntIPNS_10logservice13ObApplyStatusEEELb1EEC2EPKcOKS6_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS_10logservice18ObApplyServiceTaskELb0EEC2EPKcS5_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase6common8ObLogger10get_loggerEv:8283:251 + 1: 251 + 2: 251 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 3: 251 +_ZNK9oceanbase8memtable16ObITransCallback22is_table_lock_callbackEv:8272:1067 + 0: 1034 +_ZN9oceanbase11transaction7CtxLock4initEPNS0_10ObTransCtxE:8236:288 + 1: 284 + 4: 284 + 5.1: 0 + 8: 284 + 11: 284 +_ZZN9oceanbase6common5occam20ObThreadHungDetectorC1EvENKUlvE_clEv:8233:0 + 0: 0 + 0.1: 0 + 0.3: 71 + 0.5: 71 + 0.7: 0 + 0.8: 0 + 0.9: 0 + 0.17: 71 + 0.20: 0 + 0.23: 0 + 0.25: 0 + 0.1: _ZNK9oceanbase6common5occam13ObOccamThread10is_stoppedEv:0 + 0: 0 + 0.5: _ZN9oceanbase6common5occam20ObThreadHungDetector10ClickPoint11atomic_copyEv:5974 + 5: 0 + 6: 0 + 8: 58 + 9: 58 + 10: 58 + 12: 58 + 14: 58 + 15: 58 + 16: 58 + 17.1: 0 + 17.3: 58 + 3: _ZN9oceanbase6common5occam20ObThreadHungDetector10ClickPointC2Ev:1508 + 0: 58 + 0.24: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:58 + 2: 58 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:59 +_ZNK9oceanbase6common12ObIAllocator4usedEv:8136:1048 + 1: 1017 + 2: 1017 +_ZN9oceanbase6common6number8ObNumber8from_v3_EPKclRNS2_10IAllocatorERiPNS1_16ObNumberFmtModelEPsSA_PKNS_3lib9ObMemAttrEb:8117:16 + 2: 15 + 5: 15 + 6: 15 + 7: 15 + 8: 15 + 9: 15 + 10: 15 + 11: 15 + 15: 20 _ZN9oceanbase6common6number8ObNumber17find_point_range_EPKclRlS5_S5_RbRiPsS8_:17 + 17.1: 0 + 19.1: 20 _ZN9oceanbase6common6number8ObNumber17construct_digits_EPKclllPjRlS6_:22 + 23: 20 + 24: 20 + 25: 20 + 27: 20 + 28: 20 + 34: 20 + 35: 20 + 38.1: 11 + 39: 0 + 40.1: 0 + 42: 11 + 45: 12 + 45.1: 10 + 45.2: 12 _ZN9oceanbase6common6number8ObNumber15round_scale_v3_ElbbPsS3_:13 + 48.1: 0 + 49.1: 0 + 50: 0 + 58: 0 + 61: 24 + 13: _ZN12ObNumberDescC2Ev:105 + 0: 15 + 36: _ZN9oceanbase6common6number8ObNumber8set_zeroEv:140 + 2: 14 + 4: 14 + 38.1: _ZN9oceanbase6common6number8ObNumber6alloc_ERNS2_10IAllocatorElPKNS_3lib9ObMemAttrE:156 + 5: 6 + 5.1: 0 + 5.2: 6 _ZN9oceanbase6common6number8ObNumber10TAllocatorINS0_15ObObjCastParamsEE5allocEl:7 + 7: 11 + 45.1: _ZN9oceanbase3lib14is_oracle_modeEv:696 + 2: _ZN9oceanbase3lib15get_compat_modeEv:696 + 2: 12 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:504 + 2: 12 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 48.1: _ZN9oceanbase3lib14is_oracle_modeEv:440 + 2: 10 + 2: _ZN9oceanbase3lib15get_compat_modeEv:410 + 2: 10 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:250 + 2: 10 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 48.2: _ZN9oceanbase6common6number8ObNumber10exp_check_ERK12ObNumberDescb:970 + 3: 10 + 4: 10 + 4.1: 10 + 4.5: 10 + 6.1: 10 + 4: _ZN9oceanbase6common6number8ObNumber8is_ge_1_E12ObNumberDesc:370 + 3: 10 + 6.2: _ZN9oceanbase6common6number8ObNumber8is_lt_1_E12ObNumberDesc:0 + 3: 0 + 4.1: 0 + 4.2: 0 + 51: _ZN9oceanbase6common6number8ObNumber8set_zeroEv:0 + 2: 0 + 4: 0 + 59: _ZN9oceanbase6common6number8ObNumber8set_zeroEv:0 + 2: 0 + 4: 0 +_ZN9oceanbase7storage26ObTxDataMemtableWriteGuardD2Ev:8113:259 + 0: 255 _ZN9oceanbase7storage26ObTxDataMemtableWriteGuard5resetEv:266 + 0.1: 248 + 0.2: 0 + 0.3: 0 + 0.1: _ZN9oceanbase6common13ObSEArrayImplINS_7storage15ObTableHandleV2ELl1ENS0_19ModulePageAllocatorELb0EED2Ev:4068 + 1: 226 + 2: 226 _ZN9oceanbase6common13ObSEArrayImplINS_7storage15ObTableHandleV2ELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:227 + 3.2: 0 +_ZN9oceanbase3sql16ObHashDistinctOp7destroyEv:8041:245 + 1: 229 + 2: 229 _ZN9oceanbase3sql20ObSqlMemMgrProcessor31unregister_profile_if_necessaryEv:251 + 3: 244 _ZN9oceanbase3sql24ObHashPartInfrastructureINS0_14ObHashPartColsENS0_19ObHashPartStoredRowEED2Ev:256 +_ZN9oceanbase6common16ObKVCacheInstMap18clean_garbage_instEv:7947:0 + 1: 0 + 2: 0 + 3: 0 + 4: 0 + 5.1: 0 + 11: 0 + 12.2: 0 + 13: 0 + 13.1: 0 + 13.2: 1 + 14.1: 0 + 15.1: 0 + 16.1: 0 + 16.2: 0 + 17.1: 0 + 22: 0 + 23: 0 + 24: 0 + 33: 0 + 33.1: 0 + 35.1: 0 + 35.3: 0 + 35.4: 0 + 35.6: 0 + 36: 0 + 36.1: 0 + 36.2: 0 + 37.2: 0 + 38.1: 0 + 39: 0 + 40.2: 0 + 41.1: 0 + 42.2: 0 + 43.1: 0 + 48.1: 0 + 55: 0 + 55.1: 0 + 57: 0 + 8: _ZN9oceanbase6common18ObSimpleFixedArrayINS0_16ObKVCacheInstKeyEE5reuseEv:0 + 10: 0 + 11: _ZN9oceanbase6common7DRWLock11RDLockGuardC2ERS1_:0 + 0: 0 + 2: 0 + 3.1: 0 + 2: _ZN9oceanbase6common7DRWLock6rdlockEv:0 + 2: 0 + 2.1: 0 + 2: _ZN9oceanbase6common8get_itidEv:0 + 4: 0 + 5: 0 + 6: 0 + 8: 0 + 12: _ZN9oceanbase6common4hash9ObHashMapINS0_16ObKVCacheInstKeyEPNS0_13ObKVCacheInstENS1_19NoPthreadDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_S5_EEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE5beginEv:0 + 2: 0 + 2: _ZN9oceanbase6common4hash11ObHashTableINS0_16ObKVCacheInstKeyENS1_11HashMapPairIS3_PNS0_13ObKVCacheInstEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE5beginEv:0 + 5: 0 + 5.1: 0 + 6.1: 0 + 8.1: 0 + 8.2: 0 + 8.3: 0 + 9: 0 + 10: 0 + 5: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_16ObKVCacheInstKeyEPNS0_13ObKVCacheInstEEENS1_5NLockENS1_5NCondEEEEEbRKT_:0 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_16ObKVCacheInstKeyEPNS0_13ObKVCacheInstEEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:0 + 2: 0 + 12.8: _ZN9oceanbase6common4hash19ObHashTableIteratorINS0_16ObKVCacheInstKeyENS1_11HashMapPairIS3_PNS0_13ObKVCacheInstEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEppEv:7944 + 4.2: 1 + 7.1: 248 + 8: 248 + 65366: 0 + 15: _ZN9oceanbase6common13ObKVCacheInst11can_destroyEv:0 + 1: 0 + 2: 0 + 2.1: 0 + 3: 0 + 3.1: 0 + 4: 0 + 4.1: 0 + 5: 0 + 5.1: 0 + 31: _ZN9oceanbase6common7DRWLock11RDLockGuardD2Ev:0 + 2: 0 + 3: 0 + 3.1: 0 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase6common7DRWLock8rdunlockEv:0 + 2: 0 + 2.1: 0 + 2: _ZN9oceanbase6common8get_itidEv:0 + 4: 0 + 5: 0 + 6: 0 + 8: 0 + 31.1: _ZN9oceanbase6common7DRWLock11RDLockGuardD2Ev:0 + 2: 0 + 3: 0 + 3.1: 0 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase6common7DRWLock8rdunlockEv:0 + 2: 0 + 2.1: 0 + 2: _ZN9oceanbase6common8get_itidEv:0 + 4: 0 + 5: 0 + 6: 0 + 8: 0 + 34: _ZN9oceanbase6common7DRWLock11WRLockGuardC2ERS1_:0 + 0: 0 + 2: 0 + 3.1: 0 + 36: _ZN9oceanbase6common12ObIArrayWrapINS0_16ObKVCacheInstKeyEE2atEl:0 + 6: 0 + 37.1: _ZNK9oceanbase6common4hash9ObHashMapINS0_16ObKVCacheInstKeyEPNS0_13ObKVCacheInstENS1_19NoPthreadDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_S5_EEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKS3_RS5_l:0 + 7: _ZN9oceanbase6common4hash11ObHashTableINS0_16ObKVCacheInstKeyENS1_11HashMapPairIS3_PNS0_13ObKVCacheInstEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKS3_RS7_l:0 + 5: 0 + 5.1: 0 + 6.1: 0 + 10: 0 + 19: 0 + 5: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_16ObKVCacheInstKeyEPNS0_13ObKVCacheInstEEENS1_5NLockENS1_5NCondEEEEEbRKT_:0 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_16ObKVCacheInstKeyEPNS0_13ObKVCacheInstEEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:0 + 2: 0 + 9: _ZNK9oceanbase6common4hash9hash_funcINS0_16ObKVCacheInstKeyEEclERKS3_:0 + 2: _ZNK9oceanbase6common16ObKVCacheInstKey4hashEv:0 + 0: 0 + 18: _ZN9oceanbase6common4hash11ObHashTableINS0_16ObKVCacheInstKeyENS1_11HashMapPairIS3_PNS0_13ObKVCacheInstEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE32internal_get_with_timeout_unsafeERNS1_17ObHashTableBucketIS7_NS1_5NLockENS1_5NCondEEERKS3_RPKS7_l:0 + 6: _ZNK9oceanbase6common4hash11ObHashTableINS0_16ObKVCacheInstKeyENS1_11HashMapPairIS3_PNS0_13ObKVCacheInstEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE12internal_getERKNS1_17ObHashTableBucketIS7_NS1_5NLockENS1_5NCondEEERKS3_RPKS7_Rb:0 + 6: 0 + 8.1: 0 + 10: 0 + 14: 0 + 16: 0 + 9: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_11HashMapPairINS0_16ObKVCacheInstKeyEPNS0_13ObKVCacheInstEEEE16check_magic_codeEv:0 + 0: 0 + 9.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 10.1: _ZNK9oceanbase6common4hash8equal_toINS0_16ObKVCacheInstKeyEEclERKS3_S6_:0 + 2: _ZNK9oceanbase6common16ObKVCacheInstKeyeqERKS1_:0 + 2: 0 + 21: _ZN9oceanbase6common11copy_assignINS0_4hash11HashMapPairINS0_16ObKVCacheInstKeyEPNS0_13ObKVCacheInstEEEEEiRT_RKS8_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapINS0_4hash11HashMapPairINS0_16ObKVCacheInstKeyEPNS0_13ObKVCacheInstEEEEEiRT_RKS8_NS0_8BoolTypeILb1EEE:0 + 2: _ZN9oceanbase6common4hash11HashMapPairINS0_16ObKVCacheInstKeyEPNS0_13ObKVCacheInstEE6assignERKS6_:0 + 5.1: _ZN9oceanbase6common11copy_assignIPNS0_13ObKVCacheInstEEEiRT_RKS4_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapIPNS0_13ObKVCacheInstEEEiRT_RKS4_NS0_8BoolTypeILb0EEE:0 + 2: 0 + 38: _ZN9oceanbase6common13ObKVCacheInst11can_destroyEv:0 + 1: 0 + 2: 0 + 2.1: 0 + 3: 0 + 3.1: 0 + 4: 0 + 4.1: 0 + 5: 0 + 5.1: 0 + 40: _ZN9oceanbase6common12ObIArrayWrapINS0_16ObKVCacheInstKeyEE2atEl:0 + 6: 0 + 40.1: _ZN9oceanbase6common4hash9ObHashMapINS0_16ObKVCacheInstKeyEPNS0_13ObKVCacheInstENS1_19NoPthreadDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_S5_EEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE16erase_refactoredERKS3_PS5_:0 + 10: 0 + 42.1: _ZN9oceanbase6common12ObFixedQueueINS0_13ObKVCacheInstEE4pushEPS2_:0 + 3: 0 + 8: 0 + 9: 0 + 11.1: 0 + 11.2: 0 + 11.3: 0 + 12: 0 + 12.1: 0 + 13: 0 + 15: 0 + 16: 0 + 17.1: 0 + 18: 0 +_ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE22for_each_in_one_bucketINS0_23GetMinStartLogTsFunctorEEEiRT_l:7862:31 + 1: 31 + 2: 31 + 3: 31 + 4: 0 + 7: 27 _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE19generate_value_arr_ElRNS_6common9ObSEArrayIPS3_Ll32ENS6_19ModulePageAllocatorELb0EEE:30 + 7.1: 27 + 8.1: 0 + 11.1: 27 + 12: 0 + 12.2: 0 + 13: 0 + 15.1: 0 + 15.2: 0 + 16.1: 0 + 22: 27 + 6: _ZN9oceanbase6common9ObSEArrayIPNS_11transaction10ObTransCtxELl32ENS0_19ModulePageAllocatorELb0EEC2Ev:4374 + 0.1: 27 + 0.5: _ZN9oceanbase6common13ObSEArrayImplIPNS_11transaction10ObTransCtxELl32ENS0_19ModulePageAllocatorELb0EEC2ElRKS5_:3699 + 2: 27 + 5: 27 + 6: 27 + 8: 27 + 17.1: 27 + 2: _ZN9oceanbase6common8ObIArrayIPNS_11transaction10ObTransCtxEEC2EPS4_l:486 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_11transaction10ObTransCtxEEC2EPS4_l:486 + 0: 27 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:1458 + 0: 27 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:513 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:513 + 2: 27 + 8: 27 + 10: _ZNK9oceanbase6common12ObIArrayWrapIPNS_11transaction10ObTransCtxEE5countEv:189 + 0: 27 + 12.1: _ZN9oceanbase6common12ObIArrayWrapIPNS_11transaction10ObTransCtxEE2atEl:0 + 6: 0 + 257: 0 + 12.2: _ZN9oceanbase11transaction23GetMinStartLogTsFunctorclEPNS0_10ObTransCtxE:0 + 0: 0 + 0.1: 0 + 0.3: 0 + 0.7: _ZN9oceanbase11transaction23GetMinStartLogTsFunctor17internal_operatorERKNS0_9ObTransIDEPNS0_14ObPartTransCtxE:0 + 3: 0 + 4.1: 0 + 7: 0 + 8: 0 + 6: _ZN9oceanbase11transaction14ObPartTransCtx16get_start_log_tsEv:0 + 2: 0 + 15: _ZN9oceanbase6common12ObIArrayWrapIPNS_11transaction10ObTransCtxEE2atEl:0 + 6: 0 + 15.1: _ZN9oceanbase11transaction15ObTransHashLinkINS0_10ObTransCtxEE7dec_refEi:0 + 2: 0 + 3: 0 + 4.1: 0 + 16: _ZN9oceanbase6common12ObIArrayWrapIPNS_11transaction10ObTransCtxEE2atEl:0 + 6: 0 + 16.1: _ZN9oceanbase11transaction13TransCtxAlloc10free_valueEPNS0_10ObTransCtxE:0 + 2: 0 + 3: 0 + 21: _ZN9oceanbase6common13ObSEArrayImplIPNS_11transaction10ObTransCtxELl32ENS0_19ModulePageAllocatorELb0EED2Ev:972 + 1: 27 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplIPNS_11transaction10ObTransCtxELl32ENS0_19ModulePageAllocatorELb0EE7destroyEv:486 + 9: 27 + 11: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplIPNS_11transaction10ObTransCtxELl32ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 21.1: _ZN9oceanbase6common13ObSEArrayImplIPNS_11transaction10ObTransCtxELl32ENS0_19ModulePageAllocatorELb0EED2Ev:0 + 1: 0 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplIPNS_11transaction10ObTransCtxELl32ENS0_19ModulePageAllocatorELb0EE7destroyEv:0 + 9: 0 + 11: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplIPNS_11transaction10ObTransCtxELl32ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase6common19ObTableAccessHelper34get_signle_column_from_signle_row_EPNS0_9sqlclient13ObMySQLResultEPKcRNS0_14ObStringHolderE:7861:9 + 3: 9 + 5: 4 + 7: 4 _ZN9oceanbase6common5occam26ObOccamTimeGuardDetectHung5clickEt:4 + 7.1: 5 + 7.2: 5 _ZNK9oceanbase8observer16ObInnerSQLResult11get_varcharEPKcRNS_6common8ObStringE:5 + 7.3: 8 + 7.4: 8 + 8.1: 0 + 8.2: 0 + 8.3: 0 + 8.5: 0 + 8.6: 0 + 8.7: 0 + 8.9: 0 + 8.13: 0 + 9.1: 8 _ZN9oceanbase6common5occam26ObOccamTimeGuardDetectHung5clickEt:9 + 9.2: 5 + 9.3: 5 _ZN9oceanbase6common14ObStringHolder6assignERKNS0_8ObStringE:7 + 9.4: 4 + 9.5: 4 + 10.1: 0 + 10.2: 0 + 10.3: 0 + 10.5: 0 + 10.6: 0 + 10.7: 0 + 10.9: 0 + 10.13: 0 + 12: 4 + 13.9: 7 _ZN9oceanbase6common5occam26ObOccamTimeGuardDetectHungD2Ev:5 + 13.10: 0 + 4.2: _ZN9oceanbase6common5occam25get_file_name_without_dirIcLm44EEEPKT_RAT0__S4_m:6421 + 3: 261 + 3.3: 253 + 3.4: 253 + 3.7: 0 + 4.3: _ZN9oceanbase6common5occam16TimeGuardFactory10make_guardEllPKcS4_lS4_:412 + 6: 9 _ZN9oceanbase6common5occam26ObOccamTimeGuardDetectHungC2EjjPKcS4_S4_t:9 + 6: _ZN9oceanbase6common8ObStringC2Ev:28 + 1: 4 + 8.4: _ZN9oceanbase6common7ObLogKVIiLb0EEC2EPKcRKi:0 + 0: 0 + 8.6: _ZN9oceanbase6common7ObLogKVIPKcLb1EEC2ES3_OKS3_:0 + 0: 0 + 8.8: _ZNK9oceanbase5share12ObTenantBase2idEv:0 + 0: 0 + 8.10: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 + 8.12: _ZN9oceanbase6common7ObLogKVIRKPKcLb0EEC2ES3_S5_:0 + 0: 0 + 10.4: _ZN9oceanbase6common7ObLogKVIiLb0EEC2EPKcRKi:0 + 0: 0 + 10.6: _ZN9oceanbase6common7ObLogKVIPKcLb1EEC2ES3_OKS3_:0 + 0: 0 + 10.8: _ZNK9oceanbase5share12ObTenantBase2idEv:0 + 0: 0 + 10.10: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 + 10.12: _ZN9oceanbase6common7ObLogKVIRKPKcLb0EEC2ES3_S5_:0 + 0: 0 +_ZNK9oceanbase4palf3LSNleERKS1_:7860:550 + 1: 524 + 2: 524 + 2.2: 524 + 2: _ZNK9oceanbase4palf3LSNgtERKS1_:1572 + 2: _ZNK9oceanbase4palf3LSNltERKS1_:1572 + 2: 524 +_ZN9oceanbase8memtable22ObMemtableRowCompactor36try_cleanout_tx_node_during_compact_ERNS_7storage14ObTxTableGuardEPNS0_15ObMvccTransNodeE:7835:148 + 2: 141 + 3: 141 + 7: 141 + 7.1: 0 + 8: 0 + 8.1: 0 + 26: 0 + 27.1: 0 + 28.1: 0 + 33.1: 0 + 37: 146 + 7: _ZNK9oceanbase8memtable15ObMvccTransNode12is_committedEv:1692 + 0: 141 + 7.1: _ZNK9oceanbase8memtable15ObMvccTransNode10is_abortedEv:0 + 0: 0 + 8.1: _ZNK9oceanbase8memtable15ObMvccTransNode6is_elrEv:0 + 0: 0 +_ZN9oceanbase7storage18ObSSTableRowGetterD2Ev:7828:83 + 1: 80 + 2.1: 80 + 2.2: 80 _ZN9oceanbase12blocksstable21ObMicroBlockRowGetterD2Ev:83 + 2.3: 53 + 2.4: 53 + 2.5: 53 _ZN9oceanbase6common18ObWrapperAllocator4freeEPv:55 + 2.7: 61 + 3: 0 + 3.1: 72 + 3.2: 0 + 3.3: 0 + 3.4: 0 + 3.6: 69 _ZN9oceanbase12blocksstable18ObMacroBlockReaderD1Ev:71 + 3.7: 72 _ZN9oceanbase7storage21ObIndexTreePrefetcherD2Ev:81 + 3.1: _ZN9oceanbase7storage19ObSSTableReadHandleD2Ev:1586 + 1: _ZN9oceanbase12blocksstable16ObRowValueHandleD2Ev:1586 + 0: 61 _ZN9oceanbase6common15ObKVCacheHandleD1Ev:65 +_ZN9oceanbase7storage18ObSSTableRowGetterD1Ev:7828:83 + 1: 80 + 2.1: 80 + 2.2: 80 _ZN9oceanbase12blocksstable21ObMicroBlockRowGetterD2Ev:83 + 2.3: 53 + 2.4: 53 + 2.5: 53 _ZN9oceanbase6common18ObWrapperAllocator4freeEPv:55 + 2.7: 61 + 3: 0 + 3.1: 72 + 3.2: 0 + 3.3: 0 + 3.4: 0 + 3.6: 69 _ZN9oceanbase12blocksstable18ObMacroBlockReaderD1Ev:71 + 3.7: 72 _ZN9oceanbase7storage21ObIndexTreePrefetcherD2Ev:81 + 3.1: _ZN9oceanbase7storage19ObSSTableReadHandleD2Ev:1586 + 1: _ZN9oceanbase12blocksstable16ObRowValueHandleD2Ev:1586 + 0: 61 _ZN9oceanbase6common15ObKVCacheHandleD1Ev:65 +_ZN9oceanbase6common15ObLinearHashMapINS_12blocksstable12MacroBlockIdENS2_14ObBlockManager9BlockInfoENS0_14ShareMemMgrTagEE14DoForeachOnBktINS4_25GetAllMacroBlockIdFunctorEEclERS7_PNS7_6BucketERS9_:7785:73 + 1: 73 + 3: 73 + 4.1: 0 + 6: 73 + 9.3: 51 + 15: 81 + 6: _ZN9oceanbase6common15ObLinearHashMapINS_12blocksstable12MacroBlockIdENS2_14ObBlockManager9BlockInfoENS0_14ShareMemMgrTagEE16is_bkt_nonempty_EPKNS7_6BucketE:292 + 2.1: 73 + 7: _ZN9oceanbase12blocksstable14ObBlockManager25GetAllMacroBlockIdFunctorclERKNS0_12MacroBlockIdERKNS1_9BlockInfoE:2187 + 3: 44 + 4: 44 + 4.2: 44 + 5: 0 + 6.1: 0 + 7.1: 51 _ZN9oceanbase6common11ObArrayImplINS_12blocksstable12MacroBlockIdENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE9push_backERKS3_:49 + 8.1: 0 + 10: 51 + 10: _ZN9oceanbase12blocksstable14ObBlockManager25GetAllMacroBlockIdFunctorclERKNS0_12MacroBlockIdERKNS1_9BlockInfoE:156 + 3: 3 + 4: 3 + 4.2: 3 + 5: 0 + 6.1: 0 + 7.1: 3 _ZN9oceanbase6common11ObArrayImplINS_12blocksstable12MacroBlockIdENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE9push_backERKS3_:3 + 8.1: 0 + 10: 3 +_ZN9oceanbase3sql13ObDASInsertOp10release_opEv:7620:265 + 1: 254 + 3: 254 + 4: 0 + 5: 0 + 7: 254 +_ZN9oceanbase3omt8ObTenant27calibrate_group_token_countEv:7600:31 + 1: 28 + 2: 28 + 7: 9 _ZN9oceanbase3omt15ObResourceGroup21calibrate_token_countEv:12 + 10: 24 + 5.1: _ZN9oceanbase6common10FixedHash2INS_3omt19ObResourceGroupNodeEE10quick_nextEPS3_:6820 + 1.1: 266 + 1.2: 240 + 2: 266 + 1.1: _ZN9oceanbase6common10FixedHash2INS_3omt19ObResourceGroupNodeEE15quick_next_nodeEPS3_:3587 + 2: 269 + 3: 29 + 4.1: 241 + 4.1: _ZN9oceanbase6common15is_last_bit_setEm:723 + 2: 241 + 5: _ZN9oceanbase6common10FixedHash2INS_3omt19ObResourceGroupNodeEE7get_preEPS3_:56 + 0: _ZNK9oceanbase6common10SpHashNode4hashEv:8 + 0: 2 + 0.1: _ZN9oceanbase6common10FixedHash2INS_3omt19ObResourceGroupNodeEE7get_preEm:48 + 0: 2 + 2.1: _ZN9oceanbase6common10SpHashNode8is_dummyEv:1680 + 0: 240 +_ZN9oceanbase11transaction17ObCLogEncryptInfo4initEv:7584:324 + 1: 316 + 3: 316 + 4.1: 0 + 7: 316 + 9: 316 +_ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_lEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14set_refactoredERKS3_RKS5_iii:7576:41 + 2: 38 + 3: 38 + 5: 38 + 5.1: 38 + 6.1: 0 + 7: 0 + 15: 38 _ZNK9oceanbase6common4hash9hash_funcINS0_8ObStringEEclERKS3_:41 + 16: 35 + 17: 35 + 23.1: 35 + 25.2: 5 + 26: 0 + 27: 0 + 32: 0 + 33: 0 + 34: 0 + 35.1: 0 + 36.1: 0 + 37.2: 0 + 42: 0 + 43: 0 + 48: 0 + 49: 0 + 63.1: 43 + 66: 43 + 5: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringElEENS1_5NLockENS1_5NCondEEEEEbRKT_:190 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringElEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:190 + 2: 38 + 24: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_11HashMapPairINS0_8ObStringElEEE16check_magic_codeEv:52 + 0: 4 + 24.1: _ZL12abort_unlessb:24 + 5: 4 + 6: 0 + 25: _ZNK9oceanbase6common4hash10pair_firstINS1_11HashMapPairINS0_8ObStringElEEEclERKS5_:16 + 2: 4 + 25.1: _ZNK9oceanbase6common4hash8equal_toINS0_8ObStringEEclERKS3_S6_:16 + 2: 4 _ZNK9oceanbase6common8ObStringeqERKS1_:4 + 37.1: _ZN9oceanbase6common4hash4copyINS1_11HashMapPairINS0_8ObStringElEEEEiRT_RKS6_NS1_13NormalPairTagE:0 + 3: _ZN9oceanbase6common11copy_assignINS0_4hash11HashMapPairINS0_8ObStringElEEEEiRT_RKS6_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapINS0_4hash11HashMapPairINS0_8ObStringElEEEEiRT_RKS6_NS0_8BoolTypeILb1EEE:0 + 2: _ZN9oceanbase6common4hash11HashMapPairINS0_8ObStringElE6assignERKS4_:0 + 3: _ZN9oceanbase6common11copy_assignINS0_8ObStringEEEiRT_RKS3_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapINS0_8ObStringEEEiRT_RKS3_NS0_8BoolTypeILb0EEE:0 + 2: 0 + 5.1: _ZN9oceanbase6common11copy_assignIlEEiRT_RKS2_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapIlEEiRT_RKS2_NS0_8BoolTypeILb0EEE:0 + 2: 0 + 63: _ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_lEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE12internal_setERNS1_17ObHashTableBucketIS5_NS1_5NLockENS1_5NCondEEERKS5_b:3270 + 4: 36 + 6: 36 _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS0_8ObStringElEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEE5allocIJEEEPS7_DpRT_:38 + 7: 43 + 8: 0 + 9.1: 0 + 11: 43 + 12: 43 + 15: 43 + 16: 43 + 17: 43 + 18.1: 43 + 21: 43 + 12: _ZN9oceanbase6common11copy_assignINS0_4hash11HashMapPairINS0_8ObStringElEEEEiRT_RKS6_:645 + 2: _ZN9oceanbase6common16copy_assign_wrapINS0_4hash11HashMapPairINS0_8ObStringElEEEEiRT_RKS6_NS0_8BoolTypeILb1EEE:645 + 2: _ZN9oceanbase6common4hash11HashMapPairINS0_8ObStringElE6assignERKS4_:645 + 3: _ZN9oceanbase6common11copy_assignINS0_8ObStringEEEiRT_RKS3_:301 + 2: _ZN9oceanbase6common16copy_assign_wrapINS0_8ObStringEEEiRT_RKS3_NS0_8BoolTypeILb0EEE:301 + 2: 43 + 5.1: _ZN9oceanbase6common11copy_assignIlEEiRT_RKS2_:344 + 2: _ZN9oceanbase6common16copy_assign_wrapIlEEiRT_RKS2_NS0_8BoolTypeILb0EEE:344 + 2: 43 +_ZN9oceanbase3lib17ObTenantMemoryMgr11update_holdElmRKNS0_7ObLabelERb:7554:57 + 2: 54 + 4: 54 + 5: 54 + 6: 20 + 9: 29 + 10: 29 + 11: 29 + 12: 0 + 19: 0 + 20: 0 + 21: 0 + 22: 0 + 23: 0 + 24: 0 + 25.1: 47 + 27: 0 + 29: 0 + 32: 45 + 25.1: _ZNK9oceanbase3lib7ObLabelneIA14_cEEbRKT_:1266 + 2: _ZNK9oceanbase3lib7ObLabeleqIA14_cEEbRKT_:1266 + 2.1: 49 _ZNK9oceanbase3lib7ObLabeleqERKS1_:50 + 2: _ZN9oceanbase3lib7ObLabelC2IA14_cEERKT_:735 + 2: _ZN9oceanbase3lib7ObLabelaSILm14EEERS1_RAT__Kc:735 + 4: 49 + 26: _ZN9oceanbase3lib17ObTenantMemoryMgr15update_ctx_holdEml:1840 + 3: 47 + 6: 47 + 7: 18 + 10: 27 + 11: 27 + 12: 27 + 13: 0 + 20: 0 + 21: 0 + 22: 0 + 23: 0 + 24: 0 + 25: 0 + 28.1: 0 +_ZN9oceanbase11transaction17ObTxCommitInfoLogD2Ev:7510:272 + 0: 260 + 0: _ZN9oceanbase11transaction11ObXATransIDD2Ev:260 + 0.2: 0 + 0: _ZN9oceanbase11transaction11ObXATransID7destroyEv:260 + 0: 260 _ZN9oceanbase11transaction11ObXATransID5resetEv:275 + 0.2: _ZN9oceanbase5share6ObLSIDD2Ev:2064 + 0: _ZN9oceanbase5share6ObLSID5resetEv:2064 + 0: 258 +_ZN9oceanbase11transaction11ObIDService17check_and_fill_lsEv:7480:194 + 1: 187 + 2: 187 + 3: 187 + 5: 0 + 8: 0 + 9: 0 + 10.1: 0 + 11.1: 0 + 11.2: 0 + 12.1: 0 + 13.2: 0 + 14: 0 + 15.1: 0 + 17: 0 + 18.1: 0 + 20: 0 + 20.1: 0 + 21: 187 + 4: _ZN9oceanbase5share11ObTenantEnv3mtlIPNS_7storage11ObLSServiceEEET_v:0 + 2: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.1: _ZN9oceanbase5share12ObTenantBase3getIPNS_7storage11ObLSServiceEEET_v:0 + 0: _ZN9oceanbase5share12ObTenantBase9inner_getENS1_8IdentityIPNS_7storage11ObLSServiceEEE:0 + 0: 0 + 13.1: _ZN9oceanbase7storage10ObLSHandle6get_lsEv:0 + 0: 0 +_ZN9oceanbase6common16ObTraceLogConfig13get_log_levelEv:7457:247 + 1: 225 + 2: 225 + 3: 0 + 4: 0 + 5: 0 + 7: 227 +_ZN9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EE5reuseEv:7448:271 + 1: 266 + 4.1: 266 + 4.3: 0 + 5: 0 + 8: 266 + 9: 266 + 10: 266 + 5: _ZN9oceanbase5share6ObLSIDD2Ev:0 + 0: _ZN9oceanbase5share6ObLSID5resetEv:0 + 0: 0 +_ZN9oceanbase3lib20ObTenantCtxAllocator11alloc_chunkElRKNS0_9ObMemAttrE:7384:32 + 1: 30 + 5: 0 + 9.1: 30 + 10: 0 + 12: 0 + 13: 34 _ZNK9oceanbase3lib25ObTenantResourceMgrHandle8is_validEv:30 + 14.1: 0 + 16: 34 _ZN9oceanbase3lib25ObTenantResourceMgrHandle14get_memory_mgrEv:34 + 16.1: 32 _ZN9oceanbase3lib17ObTenantMemoryMgr11alloc_chunkElRKNS0_9ObMemAttrE:34 + 20: 32 + 21: 0 + 21.1: 0 + 22: 0 + 22.1: 0 + 25: 32 + 26: 34 + 27: 34 + 28: 34 + 29: 34 + 32: 34 + 5: _ZN9oceanbase3lib9AChunkMgr4holdEm:810 + 2: _ZN9oceanbase3lib6AChunk9calc_holdEllPm:810 + 3: 30 + 3.2: 0 + 2: _ZN9oceanbase3lib9align_up2Emm:420 + 2: 30 + 3.4: _ZN9oceanbase3lib9align_up2Emm:0 + 2: 0 + 21: _ZN9oceanbase3lib9AChunkMgr4holdEm:0 + 2: _ZN9oceanbase3lib6AChunk9calc_holdEllPm:0 + 3: 0 + 3.2: _ZN9oceanbase3libL13get_page_sizeEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 3: 0 + 3.4: _ZN9oceanbase3lib9align_up2Emm:0 + 2: 0 + 25: _ZN9oceanbase3lib11ObLockGuardINS0_7ObMutexEEC2ERS2_:1146 + 1: 32 + 4: 34 + 5.1: 0 + 6: 0 + 4: _ZN9oceanbase3lib7ObMutex4lockEv:576 + 0: 32 _ZN9oceanbase6common12ObLatchMutex4lockEjl:32 + 30: _ZN9oceanbase3lib11ObLockGuardINS0_7ObMutexEED2Ev:680 + 2: 34 + 3: 34 + 3.1: 34 + 4.1: 0 + 3: _ZN9oceanbase3lib7ObMutex6unlockEv:34 + 0: 34 _ZN9oceanbase6common12ObLatchMutex6unlockEv:36 +_ZN9oceanbase7storage13ObTabletIDSet7foreachINS0_17ObLSTabletService22GetAllTabletIDOperatorEEEiRT_:7138:0 + 1: 0 + 2: 0 + 4.1: 0 + 4.3: 0 + 5: 0 + 6.1: 0 + 7.1: 0 + 10: 0 + 11: 0 + 15.1: 14 + 16.1: 12 + 17.1: 10 + 18.1: 0 + 22: 0 + 22.1: 0 + 23: 0 + 6: _ZNK9oceanbase6common24ObBucketTryRLockAllGuard7get_retEv:0 + 0: 0 + 14: _ZN9oceanbase6common4hash9ObHashSetINS0_10ObTabletIDENS1_19NoPthreadDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_NS1_11HashNullObjEEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE5beginEv:0 + 2: _ZN9oceanbase6common4hash11ObHashTableINS0_10ObTabletIDENS1_11HashMapPairIS3_NS1_11HashNullObjEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS6_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE5beginEv:0 + 5: 0 + 5.1: 0 + 6.1: 0 + 8.1: 0 + 8.2: 0 + 8.3: 0 + 9: 0 + 10: 0 + 5: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_10ObTabletIDENS1_11HashNullObjEEENS1_5NLockENS1_5NCondEEEEEbRKT_:0 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_10ObTabletIDENS1_11HashNullObjEEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:0 + 2: 0 + 15.7: _ZN9oceanbase6common4hash24ObHashTableConstIteratorINS0_10ObTabletIDENS1_11HashMapPairIS3_NS1_11HashNullObjEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS6_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEppEv:6344 + 4.2: 10 + 7.1: 359 + 8: 372 + 13: 14 + 17: _ZN9oceanbase7storage17ObLSTabletService22GetAllTabletIDOperatorclERKNS_6common10ObTabletIDE:494 + 2: 12 + 3: 12 + 4: 0 + 5.1: 0 + 6.1: 12 _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl128ENS0_19ModulePageAllocatorELb0EE9push_backERKS2_:12 + 7.1: 0 + 9: 0 + 3: _ZNK9oceanbase6common10ObTabletID8is_validEv:60 + 0: 12 +_ZNK9oceanbase8observer15ObGlobalContext18is_standby_clusterEv:7136:903 + 1: 892 + 2: 892 +_ZN9oceanbase6common6DCHashINS_4palf5LSKeyELl8EE3getERKS3_RPNS0_11KeyHashNodeIS3_EE:7112:35 + 0: 32 + 1: 32 + 2: 32 + 5: 32 _ZN9oceanbase6common6DCHashINS_4palf5LSKeyELl8EE6Handle10search_preEmRPNS0_8HashNodeE:32 + 5.1: 18 + 6: 18 + 6.1: 15 + 9.1: 0 + 9.2: 16 + 3: _ZN9oceanbase6common11KeyHashNodeINS_4palf5LSKeyEEC2ERKS3_:1984 + 0: _ZN9oceanbase6common11KeyHashNodeINS_4palf5LSKeyEE9calc_hashERKS3_:1984 + 0: 32 + 0: _ZNK9oceanbase4palf5LSKey4hashEv:1728 + 3: 32 + 3: _ZN9oceanbase6common10murmurhashEPKvim:1312 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:1312 + 5: 32 + 10.1: 32 + 41: 32 + 42: 32 + 43: 32 + 4: _ZN9oceanbase6common6DCHashINS_4palf5LSKeyELl8EE6HandleC2ERS4_Rii:2272 + 1: 32 + 2: 32 + 1: _ZN9oceanbase6common6DCHashINS_4palf5LSKeyELl8EE9get_qsyncEv:544 + 1: 32 + 1.1: 0 + 1.6: 0 + 1.2: _ZN9oceanbase6common7ObQSyncC2Ev:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ObQSync3RefC2Ev:0 + 0: 0 + 6: _ZN9oceanbase6common6ol_getINS0_11KeyHashNodeINS_4palf5LSKeyEEEEEiPT_S7_RS7_:928 + 4: 14 + 4: _ZN9oceanbase6common9ol_searchINS0_11KeyHashNodeINS_4palf5LSKeyEEEEEPT_S7_S7_RS7_:676 + 4.1: 18 + 4.2: 14 + 5: 18 + 5.1: 14 + 4.1: _ZN9oceanbase6common9link_nextEPNS0_6ObLinkE:54 + 2: 18 + 5.1: _ZN9oceanbase6common11KeyHashNodeINS_4palf5LSKeyEE7compareEPS4_:420 + 2: 14 + 4.1: 14 + 7: _ZNK9oceanbase4palf5LSKey7compareERKS1_:238 + 2: 14 + 5.1: _ZN9oceanbase6common11KeyHashNodeINS_4palf5LSKeyEE7compareEPS4_:210 + 2: 14 + 7: _ZNK9oceanbase4palf5LSKey7compareERKS1_:98 + 2: 14 + 9.2: _ZN9oceanbase6common6DCHashINS_4palf5LSKeyELl8EE6HandleD2Ev:165 + 0: 15 _ZN9oceanbase6common6DCHashINS_4palf5LSKeyELl8EE6Handle6retireEil:16 + 0.2: 0 +_ZN9oceanbase5share15ObVarcharSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:7097:49 + 10: 47 + 11: 47 + 5: _ZN9oceanbase5share13ObBasicSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKS1_RKNS_6common5ObObjERSB_EPFiS4_S7_S9_SD_EPFiRNSA_12ObIAllocatorERKNS2_18ObBasicSessionInfoES9_SE_EPFiSK_SN_S9_RNSA_8ObStringEEPFNSA_9ObObjTypeEvEb:6157 + 11: 47 + 12: 47 + 13: 47 + 14: 47 + 15: 47 + 16: 47 + 17: 47 + 18: 47 + 20: _ZN9oceanbase5share13ObBasicSysVar11clean_valueEv:4042 + 2: _ZN9oceanbase5share13ObBasicSysVar16clean_base_valueEv:1128 + 2: 47 + 3: _ZN9oceanbase6common5ObObj13set_nop_valueEv:752 + 2: _ZN9oceanbase6common5ObObj7set_extEl:752 + 4: 47 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:376 + 0: 47 + 3: _ZN9oceanbase5share13ObBasicSysVar15clean_inc_valueEv:987 + 2: _ZN9oceanbase6common5ObObj13set_nop_valueEv:987 + 2: _ZN9oceanbase6common5ObObj7set_extEl:987 + 4: 47 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:376 + 0: 47 + 4: _ZN9oceanbase6common5ObObj5resetEv:564 + 6: 47 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:188 + 0: 47 + 5: _ZN9oceanbase6common5ObObj5resetEv:1363 + 5: 47 + 6: 47 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:188 + 0: 47 + 3: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:282 + 0: 47 + 4: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:188 + 0: 47 +_ZN9oceanbase8memtable10ObMemtable9get_beginERNS0_15ObMvccAccessCtxE:7068:241 + 1: 236 + 2: 263 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:241 + 3.1: 261 + 3.2: 0 + 3.3: 0 + 3.4: 0 + 3.6: 0 + 3.7: 0 + 4: 261 + 3.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:1307 + 2: 263 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:265 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:1044 + 2: 261 +_ZN9oceanbase11transaction17ObCLogEncryptInfo7destroyEv:7027:280 + 1: 260 + 2: 260 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 9: 261 +_ZN9oceanbase12blocksstable21ObMicroBlockRowGetterD2Ev:7000:83 + 0: 79 _ZN9oceanbase12blocksstable10ObDatumRowD1Ev:85 + 0.1: 74 _ZN9oceanbase12blocksstable10ObDatumRowD1Ev:85 + 0.2: _ZN9oceanbase12blocksstable23ObIMicroBlockRowFetcherD2Ev:3817 + 1: 62 + 2.1: 62 + 2.2: 61 _ZN9oceanbase12blocksstable21ObMicroBlockGetReaderD2Ev:61 + 2.3: 50 + 2.4: 50 + 2.5: 50 _ZN9oceanbase6common18ObWrapperAllocator4freeEPv:51 + 2.7: 53 + 2.10: 0 + 3.1: 53 + 3.2: 0 + 3.3: 0 + 3.4: 0 + 3.5: 0 + 3.7: 0 +_ZN9oceanbase3sql16ObSQLSessionInfo24update_show_warnings_bufEv:6944:234 + 1: 224 + 2.1: 224 + 2.3: 0 + 4: 0 + 5.1: 0 + 6: 0 + 8: 0 + 11: 224 + 2.1: _ZNK9oceanbase6common15ObWarningBuffer26get_readable_warning_countEv:2688 + 2: 224 + 695: 224 + 3: _ZNK9oceanbase6common15ObWarningBuffer16get_warning_itemEj:0 + 3: 0 + 5: 0 + 6: 0 + 7: 0 + 3: _ZNK9oceanbase6common15ObWarningBuffer26get_readable_warning_countEv:0 + 2: 0 + 8: _ZNK9oceanbase6common11ObArrayImplINS0_15ObWarningBuffer11WarningItemENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEEixEl:0 + 0: _ZNK9oceanbase6common12ObIArrayWrapINS0_15ObWarningBuffer11WarningItemEE2atEl:0 + 6: 0 + 6: _ZN9oceanbase6common15ObWarningBuffer14append_warningEPKciS3_:0 + 2: 0 + 8: _ZN9oceanbase6common15ObWarningBuffer11append_noteEPKci:0 + 2: 0 +_ZN9oceanbase12blocksstable11ObRowWriter18alloc_buf_and_initEb:6943:54 + 1: 53 + 2: 53 + 3: 53 + 3.1: 0 + 4.1: 0 + 5.1: 53 + 6.1: 0 + 8: 53 + 3.1: _ZN9oceanbase12blocksstable11ObRowBuffer10extend_bufEv:0 + 2: 0 + 4: 0 + 5: 0 + 6.1: 0 + 7.1: 0 + 8: 0 + 9.1: 0 + 12: 0 + 15: 0 + 7.2: _ZN9oceanbase6common9ob_mallocElRKNS_3lib7ObLabelE:0 + 3: 0 + 2.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 4: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 10: _ZN9oceanbase12blocksstable11ObRowBuffer5resetEv:0 + 2: 0 + 3: 0 + 6: 0 + 7: 0 + 4: _ZN9oceanbase6common7ob_freeEPv:0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 5.1: _ZN9oceanbase12blocksstable11ObRowBuffer7get_bufEv:212 + 0: 53 + 5.2: _ZNK9oceanbase12blocksstable11ObRowBuffer12get_buf_sizeEv:1060 + 0: 53 + 5.3: _ZN9oceanbase12blocksstable11ObRowWriter11init_commonEPcll:2438 + 2: 53 + 3: 53 + 3.4: 53 + 4: 0 + 5.1: 0 + 7: 53 + 8: 53 + 10: 53 + 13: 53 + 15: 0 +_ZN9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE5slideElPNS0_16ISlidingCallBackE:6938:9 + 1: 9 + 2: 9 + 5: 9 + 8: 10 + 9: 0 + 10.1: 0 + 11.1: 10 + 13: 0 + 15.1: 9 + 16.1: 19 + 17.1: 19 + 18.1: 19 + 19: 19 + 20: 19 + 20.2: 19 + 23.1: 19 + 23.2: 10 + 32: 10 + 33: 10 + 36: 10 + 38: 0 + 39.1: 0 + 42.1: 10 + 43.1: 10 _ZZN9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE5slideElPNS0_16ISlidingCallBackEENKUlPKcE1_clES7_:12 + 44: 10 + 44.2: 0 + 46: 0 + 47.1: 0 + 48: 0 + 50: 0 + 51.1: 0 + 53.1: 0 + 57: 10 + 57.2: 10 _ZN9oceanbase6common16ObClockGenerator8getClockEv:10 + 57.3: 9 + 61.1: 8 _ZZN9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE5slideElPNS0_16ISlidingCallBackEENKUlPKcE5_clES7_:8 + 64: 8 + 65.16: 9 _ZN9oceanbase6common8TCRWLock21RLockGuardWithTimeoutD2Ev:8 + 65.17: 0 + 4: _ZN9oceanbase6common16ObClockGenerator8getClockEv:189 + 4: 9 + 5.1: 0 + 8: 9 + 6: _ZN9oceanbase6common16ObClockGenerator6get_usEv:0 + 2: 0 + 5: _ZN9oceanbase6common8TCRWLock21RLockGuardWithTimeoutC2ERS1_lRi:258 + 0: 9 + 2: 10 _ZN9oceanbase6common8TCRWLock6rdlockEl:11 + 3: 0 + 4.1: 0 + 6: 10 + 16: _ZNK9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE12get_begin_snEv:133 + 0: 19 + 17: _ZNK9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE11get_end_sn_Ev:133 + 0: 19 + 18: _ZNK9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE9calc_idx_El:266 + 2: 19 + 19: _ZN9oceanbase6common20ObSmallSpinLockGuardINS0_15ObSmallSpinLockIhLl0ELl500ELl100EEEEC2ERS3_:836 + 0: _ZN9oceanbase6common15ObSmallSpinLockIhLl0ELl500ELl100EE4lockEv:836 + 3.1: 19 + 5: 0 + 7: 0 + 9: 0 + 3.1: _ZN9oceanbase6common15ObSmallSpinLockIhLl0ELl500ELl100EE8try_lockEv:684 + 3: 19 + 4: 19 + 5: 19 + 20.1: _ZNK9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE12get_begin_snEv:133 + 0: 19 + 23.1: _ZN9oceanbase4palf11SlidingCondclElPNS0_22FixedSlidingWindowSlotE:424 + 4: 19 _ZN9oceanbase4palf7LogTask11can_be_slidEv:19 + 7.1: 10 _ZN9oceanbase4palf16LogSlidingWindow10sliding_cbElPKNS0_22FixedSlidingWindowSlotE:9 + 32: _ZNK9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE9calc_idx_El:130 + 2: 10 + 33: _ZN9oceanbase6common20ObSmallSpinLockGuardINS0_15ObSmallSpinLockIhLl0ELl500ELl100EEEEC2ERS3_:370 + 0: _ZN9oceanbase6common15ObSmallSpinLockIhLl0ELl500ELl100EE4lockEv:370 + 5: 0 + 7: 0 + 9: 0 + 3.1: _ZN9oceanbase6common15ObSmallSpinLockIhLl0ELl500ELl100EE8try_lockEv:340 + 3: 10 + 4: 10 + 5: 10 + 42: _ZNK9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE11get_end_sn_Ev:70 + 0: 10 + 44.1: _ZNK9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE9calc_idx_El:0 + 2: 0 + 56: _ZN9oceanbase6common20ObSmallSpinLockGuardINS0_15ObSmallSpinLockIhLl0ELl500ELl100EEEED2Ev:60 + 0: _ZN9oceanbase6common15ObSmallSpinLockIhLl0ELl500ELl100EE6unlockEv:60 + 2: 10 + 3: 10 + 56.1: _ZN9oceanbase6common20ObSmallSpinLockGuardINS0_15ObSmallSpinLockIhLl0ELl500ELl100EEEED2Ev:0 + 0: _ZN9oceanbase6common15ObSmallSpinLockIhLl0ELl500ELl100EE6unlockEv:0 + 2: 0 + 3: 0 + 60.1: _ZN9oceanbase6common20ObSmallSpinLockGuardINS0_15ObSmallSpinLockIhLl0ELl500ELl100EEEED2Ev:136 + 0: _ZN9oceanbase6common15ObSmallSpinLockIhLl0ELl500ELl100EE6unlockEv:136 + 2: 9 + 3: 9 + 60.2: _ZN9oceanbase6common20ObSmallSpinLockGuardINS0_15ObSmallSpinLockIhLl0ELl500ELl100EEEED2Ev:0 + 0: _ZN9oceanbase6common15ObSmallSpinLockIhLl0ELl500ELl100EE6unlockEv:0 + 2: 0 + 3: 0 +_ZN9oceanbase3sql17ObChunkDatumStore9StoredRow5buildERPS2_RKNS_6common8ObIArrayIPNS0_6ObExprEEERNS0_9ObEvalCtxEPcljb:6840:587 + 7: 570 + 8: 570 + 9: 0 + 10: 570 _ZN9oceanbase3sql17ObChunkDatumStore9StoredRow8do_buildILb0EEEiRPS2_RKNS_6common8ObIArrayIPNS0_6ObExprEEERNS0_9ObEvalCtxEPclj:570 +_ZN9oceanbase8memtable9ObMvccRow24update_max_trans_versionElRKNS_11transaction9ObTransIDE:6800:82 + 2: 80 + 3: 80 + 4.1: 0 + 6: 0 + 7: 80 + 8: 80 + 6: _ZN9oceanbase6common10inc_updateIlEElPT_S2_:2160 + 3: 80 + 4.1: 80 + 5: 80 + 7.1: _ZN9oceanbase11transaction9ObTransIDaSERKS1_:560 + 1: 80 +_ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS0_8ObStringElEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEE5allocIJEEEPS7_DpRT_:6800:38 + 1: 38 + 3: 38 + 4: 40 + 5: 0 + 6: 0 + 6.1: 0 + 6.2: 0 + 7.1: 0 + 9: 0 + 10: 0 + 11: 0 + 14: 40 + 15: 40 + 15.1: 36 + 17.1: 4 + 18.1: 0 + 24: 6 + 26: 6 + 27: 6 + 28: 6 + 32: 42 + 33: 42 + 34: 42 + 35: 42 + 36: 42 + 37: 42 + 38: 42 + 42: 42 + 46.4: 45 + 3: _ZN9oceanbase6common4hash10SpinLockerC2ERVi:472 + 2: 40 + 3.1: 0 + 17: _ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocator5allocEl:40 + 4: 4 _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:4 + 43: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_11HashMapPairINS0_8ObStringElEEEC2Ev:588 + 0: _ZN9oceanbase6common4hash11HashMapPairINS0_8ObStringElEC2Ev:588 + 0: _ZN9oceanbase6common8ObStringC2Ev:588 + 1: 42 + 46.4: _ZN9oceanbase6common4hash10SpinLockerD2Ev:378 + 2: 42 + 3: 42 + 46.5: _ZN9oceanbase6common4hash10SpinLockerD2Ev:0 + 2: 0 + 3: 0 +_ZN9oceanbase4palfmiERKNS0_3LSNES3_:6720:582 + 1: 560 + 2: 560 +_ZN9oceanbase11transaction18ObTxLogBlockHeader16before_serializeEv:6716:217 + 1: 211 + 4: 220 _ZN9oceanbase11transaction17ObTxSerCompatByte4initEl:213 + 5.1: 1 + 10: 220 +_ZNK9oceanbase4palf16LogSlidingWindow12get_start_idEv:6708:533 + 1: 516 + 2: 516 + 2: _ZNK9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE12get_begin_snEv:3612 + 0: 516 +_ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE3mapINS7_8HandleOnINS2_11PalfEnvImpl16FreezeLogFunctorEEEEEiRT_:6686:26 + 1: 26 + 3: 26 + 6.3: 36 + 6.4: 36 + 7: 36 + 11: 0 + 12: 30 + 3: _ZNK9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE4sizeEv:416 + 0: _ZNK9oceanbase6common11CountHandle4sizeEv:416 + 0: 26 + 259: 26 + 5: _ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE8IteratorC2ERS7_:302 + 0: 30 _ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE4nextEPNS0_12LinkHashNodeIS3_EE:28 + 6.2: _ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE8Iterator4nextERPS4_:1950 + 1: 50 + 4: 49 + 5: 49 _ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE4nextEPNS0_12LinkHashNodeIS3_EE:51 + 7: _ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE8HandleOnINS2_11PalfEnvImpl16FreezeLogFunctorEEclERS3_PS4_:2546 + 3: 50 + 2: _ZN9oceanbase4palf11PalfEnvImpl16FreezeLogFunctorclERKNS0_5LSKeyEPNS0_14PalfHandleImplE:746 + 2: 36 + 5.1: 50 _ZN9oceanbase4palf14PalfHandleImpl19try_freeze_last_logEv:41 + 6.1: 0 + 3: _ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE6revertEPS4_:1600 + 3: 50 + 3: _ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE6revertEPNS0_12LinkHashNodeIS3_EE:1200 + 6: 50 + 6.1: 50 + 6.2: 50 + 7.1: 0 + 10: 50 + 11: 50 _ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE8dec_urefEPNS0_12LinkHashNodeIS3_EE:51 + 11.1: _ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE8IteratorD2Ev:0 + 0.2: 0 + 0: _ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE8Iterator7destroyEv:0 + 1: 0 + 2: 0 + 3: 0 +_ZZN9oceanbase4palf16LogSlidingWindow23handle_next_submit_log_ERbENK5$_140clEPKc.0e4bf25207570af14a78557c8489c4fc:6620:88 + 0: 85 + 0.1: 0 + 0.2: 76 + 0.3: 85 _ZN9oceanbase6common8ObLogger13need_to_printEmi:85 + 0.13: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:1445 + 2: 85 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKNS0_6ObAddrELb0EEC2EPKcS4_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.12: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase4palf16LogSlidingWindow23generate_new_group_log_ERKNS0_3LSNElllRKNS0_7LogTypeEPKclRb:6478:7 + 8: 7 + 9: 7 + 10: 7 + 12: 7 + 13.1: 7 + 15.1: 7 + 16: 7 + 16.2: 7 + 17: 0 + 18.1: 0 + 20.2: 5 + 21.1: 0 + 23: 5 _ZN9oceanbase4palf14LogEntryHeaderC1Ev:5 + 24: 5 _ZN9oceanbase4palf19LogGroupEntryHeaderC1Ev:5 + 25: 3 _ZNK9oceanbase4palf11LogStateMgr15get_proposal_idEv:4 + 26: 6 + 30: 4 + 31: 4 + 32: 4 + 33: 4 + 34: 4 + 35: 4 + 36: 4 + 39: 7 + 39.1: 7 + 40: 0 + 41.1: 0 + 43.1: 7 _ZN9oceanbase4palf7LogTask23set_initial_header_infoERKNS0_17LogTaskHeaderInfoE:7 + 43.2: 9 + 44.1: 0 + 47: 9 + 51: 6 + 52: 6 + 52.1: 6 + 53: 6 + 53.1: 6 + 54.1: 0 + 55.1: 6 + 57: 0 + 59: 0 + 60: 0 + 63: 6 + 66: 6 _ZN9oceanbase4palf14LogGroupBuffer4fillERKNS0_3LSNEPKcl:6 + 66.1: 9 + 67.1: 0 + 68.1: 9 _ZN9oceanbase4palf14LogEntryHeader15generate_headerEPKcll:10 + 68.2: 13 + 69.1: 0 + 70.1: 13 _ZNK9oceanbase4palf14LogEntryHeader9serializeEPclRl:13 + 70.2: 12 + 71.1: 0 + 72.2: 12 _ZN9oceanbase4palf14LogGroupBuffer4fillERKNS0_3LSNEPKcl:12 + 72.3: 5 + 73.1: 0 + 76: 5 + 77: 5 + 82: 5 + 82.1: 5 + 83: 0 + 83.1: 0 + 86.3: 0 + 86.4: 0 + 86.6: 5 _ZN9oceanbase4palf19LogGroupEntryHeaderD1Ev:5 + 86.7: 5 _ZN9oceanbase4palf14LogEntryHeaderD1Ev:6 + 87: 7 + 88.24: 10 + 11: _ZN9oceanbase4palf16LogSlidingWindow12LogTaskGuardC2EPS1_:84 + 0: 7 + 20.1: _ZN9oceanbase4palf16LogSlidingWindow12LogTaskGuard12get_log_taskElRPNS0_7LogTaskE:423 + 2: 7 + 3: 7 + 5.1: 7 + 7.1: 7 _ZN9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE3getElRPS2_:7 + 8: 5 + 9: 5 + 5.1: _ZN9oceanbase4palf15is_valid_log_idEl:21 + 2: 7 + 28: _ZN9oceanbase4palf17LogTaskHeaderInfoC2Ev:200 + 0.3: _ZN9oceanbase4palf17LogTaskHeaderInfo5resetEv:156 + 12: 4 + 9: _ZN9oceanbase4palf3LSN5resetEv:64 + 2: 4 + 0.13: _ZN9oceanbase4palf3LSNC2Ev:44 + 2: _ZN9oceanbase4palf3LSN5resetEv:44 + 2: 4 + 29: _ZN9oceanbase4palf3LSNaSERKS1_:44 + 2: 4 + 38: _ZNK9oceanbase4palf7LogTask4lockEv:88 + 1: 4 _ZN9oceanbase6common7ObLatch6wrlockEjlPKj:5 + 39: _ZNK9oceanbase4palf7LogTask8is_validEv:42 + 2: _ZNK9oceanbase4palf15LogSimpleBitMap8test_mapEl:42 + 2: 7 + 47: _ZN9oceanbase4palf7LogTask20try_freeze_by_myselfEv:414 + 3: 9 + 4: 9 + 5: 9 + 6.1: 9 _ZZN9oceanbase4palf7LogTask20try_freeze_by_myselfEvENK5$_570clEPKc.0e4bf25207570af14a78557c8489c4fc:10 + 9: 0 + 4: _ZNK9oceanbase4palf3LSN8is_validEv:45 + 2: 9 + 49: _ZNK9oceanbase4palf7LogTask6unlockEv:56 + 1: 8 _ZN9oceanbase6common7ObLatch6unlockEPKj:8 + 52: _ZN9oceanbase4palfplERKNS0_3LSNEm:18 + 4: 6 + 52.1: _ZN9oceanbase4palfplERKNS0_3LSNEm:126 + 4: 6 + 53: _ZN9oceanbase4palf16LogSlidingWindow24wait_group_buffer_ready_ERKNS0_3LSNEl:162 + 8.1: 6 _ZN9oceanbase4palf14LogGroupBuffer4waitERKNS0_3LSNEl:6 + 14: 0 + 17: 0 + 18.1: 0 + 59: _ZN9oceanbase4palf7LogTask3refElb:0 + 3.1: 0 + 5: 0 + 60: _ZN9oceanbase4palf7LogTask20set_submit_log_existEv:0 + 3: _ZN9oceanbase4palf15LogSimpleBitMap12test_and_setEl:0 + 5: 0 + 6: 0 + 12: 0 + 72.1: _ZN9oceanbase4palfplERKNS0_3LSNEm:96 + 4: 12 + 76: _ZN9oceanbase4palf7LogTask3refElb:85 + 3.1: 5 + 5: 5 + 77: _ZN9oceanbase4palf7LogTask20set_submit_log_existEv:105 + 3: _ZN9oceanbase4palf15LogSimpleBitMap12test_and_setEl:105 + 5: 5 + 6: 5 + 12: 0 + 480: 5 + 82: _ZNK9oceanbase4palf7LogTask10is_freezedEv:30 + 2: _ZNK9oceanbase4palf15LogSimpleBitMap8test_mapEl:30 + 2: 5 + 83: _ZNK9oceanbase4palf7LogTask11get_ref_cntEv:0 + 0: 0 + 88.24: _ZN9oceanbase4palf16LogSlidingWindow12LogTaskGuardD2Ev:371 + 2.1: 0 + 2: _ZN9oceanbase4palf16LogSlidingWindow12LogTaskGuard15revert_log_taskEv:371 + 1: 7 + 2: 7 + 2.1: 7 + 3: 10 _ZN9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE6revertEl:7 + 4: 0 + 5: 0 + 6.1: 0 + 2.1: _ZN9oceanbase4palf15is_valid_log_idEl:21 + 2: 7 + 5: _ZNK9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE12get_begin_snEv:0 + 0: 0 + 88.25: _ZN9oceanbase4palf16LogSlidingWindow12LogTaskGuardD2Ev:0 + 2.1: 0 + 2: _ZN9oceanbase4palf16LogSlidingWindow12LogTaskGuard15revert_log_taskEv:0 + 1: 0 + 2: 0 + 2.1: 0 + 3: 0 + 4: 0 + 5: 0 + 6.1: 0 + 2.1: _ZN9oceanbase4palf15is_valid_log_idEl:0 + 2: 0 + 5: _ZNK9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE12get_begin_snEv:0 + 0: 0 +_ZNK9oceanbase7storage15ObRelativeTable16get_column_countEv:6426:400 + 1: 378 + 2: 378 + 2: _ZNK9oceanbase5share6schema18ObTableSchemaParam16get_column_countEv:1512 + 0: _ZNK9oceanbase6common12ObIArrayWrapIPNS_5share6schema13ObColumnParamEE5countEv:1512 + 0: 378 +_ZNK9oceanbase7storage15ObRelativeTable22is_storage_index_tableEv:6425:266 + 1: 257 + 2: 257 + 2: _ZNK9oceanbase5share6schema18ObTableSchemaParam22is_storage_index_tableEv:3084 + 1: 257 + 1: _ZNK9oceanbase5share6schema18ObTableSchemaParam14is_index_tableEv:771 + 0: 257 +_ZNK9oceanbase3omt13ObMultiTenant27get_tenant_with_tenant_lockEmRNS_6common10ObLDHandleERPNS0_8ObTenantE:6419:10 + 2: 8 + 3: 8 + 4: 0 + 5: 10 + 6.1: 10 + 6.2: 0 + 6.3: 0 + 8: 0 + 9.1: 0 + 12: 0 + 13.2: 8 + 13.3: 0 + 3: _ZN9oceanbase6common14SpinRLockGuardC2ERKNS0_10SpinRWLockE:284 + 1: 8 + 3: 12 + 4.1: 0 + 3: _ZN9oceanbase6common10SpinRWLock6rdlockEl:120 + 0: 8 _ZN9oceanbase6common7ObLatch6rdlockEjl:8 + 4: _ZNK9oceanbase3omt13ObMultiTenant17get_tenant_unsafeEmRPNS0_8ObTenantE:5117 + 4: 12 + 6: 103 + 8: 114 + 10.1: 0 + 11.1: 114 + 12: 10 + 16: 0 + 5: _ZNK9oceanbase6common14ObSortedVectorIPNS_3omt8ObTenantENS0_9PageArenaIS4_NS0_20DefaultPageAllocatorEEEE5beginEv:84 + 0: _ZNK9oceanbase6common8ObVectorIPNS_3omt8ObTenantENS0_9PageArenaIS4_NS0_20DefaultPageAllocatorEEEE5beginEv:84 + 0: 12 + 6: _ZN9oceanbase3omt8ObTenant10try_rdlockERNS_6common10ObLDHandleE:280 + 2: 10 _ZN9oceanbase6common9ObLDLatch10try_rdlockERNS0_10ObLDHandleEj:10 + 13.2: _ZN9oceanbase6common14SpinRLockGuardD2Ev:186 + 2: 10 + 3: 10 + 3.1: 8 + 4.1: 0 + 3: _ZN9oceanbase6common10SpinRWLock6unlockEv:30 + 0: 10 _ZN9oceanbase6common7ObLatch6unlockEPKj:10 +_ZZN9oceanbase8memtable8ObMtHash6insertEPKNS0_20ObStoreRowkeyWrapperEPKNS0_9ObMvccRowEENKUlPKcE0_clES9_:6393:93 + 0: 87 + 0.1: 0 + 0.2: 84 + 0.3: 87 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:91 + 0.8: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:1479 + 2: 87 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKNS_8memtable8ObMtHash9GenealogyELb0EEC2EPKcS6_:0 + 0: 0 + 0.5: _ZN9oceanbase6common7ObLogKVIPKvLb1EEC2EPKcOKS3_:0 + 0: 0 + 0.7: _ZN9oceanbase6common7ObLogKVIRKPNS_8memtable10ObHashNodeELb0EEC2EPKcS6_:0 + 0: 0 +_ZNK9oceanbase11transaction13ObCtxRedoInfo19serialize_dispatch_EPclRlSt17integral_constantIbLb0EE:6384:229 + 0: 227 + 0.1: 242 _ZNK9oceanbase11transaction13ObCtxRedoInfo10serialize_EPclRl:248 + 0.3: 0 + 0.9: 242 + 0.10: 0 + 0.12: 0 + 0.3: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.11: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 +ev_userdata:6328:797 + 2: 791 +_ZN9oceanbase6common16ObKVCacheInstMap23print_tenant_cache_infoEm:6293:0 + 1: 0 + 2: 0 + 4: 0 + 7: 0 + 7.1: 0 + 7.5: 0 + 7.6: 0 + 7.7: 0 + 7.8: 0 + 7.9: 0 + 7.10: 0 + 7.12: 0 + 7.14: 0 + 7.15: 0 + 7.16: 0 + 9: 0 + 9.1: 0 + 10: 0 + 11: 0 + 12.1: 0 + 14: 0 + 16: 0 + 17: 0 + 17.4: 0 + 18.1: 0 + 19: 0 + 19.1: 0 + 19.2: 0 + 22.1: 0 + 23.1: 0 + 24.1: 0 + 25.1: 0 + 26.1: 0 + 27.1: 0 + 30: 0 + 30.1: 0 + 31.1: 0 + 35.8: 0 + 5: _ZN9oceanbase3lib12ContextParamC2Ev:0 + 1: 0 + 3: 0 + 4: 0 + 6: _ZN9oceanbase3lib12ContextParam12set_mem_attrIJRKmRA14_KcEEERS1_DpOT_:0 + 2: 0 + 7.11: _ZNK9oceanbase3lib6_SBase7get_retEv:0 + 2: 0 + 17.3: _ZNK9oceanbase6common4hash19ObHashTableIteratorINS0_16ObKVCacheInstKeyENS1_11HashMapPairIS3_PNS0_13ObKVCacheInstEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEneERKSN_:0 + 2: 0 + 17.7: _ZN9oceanbase6common4hash19ObHashTableIteratorINS0_16ObKVCacheInstKeyENS1_11HashMapPairIS3_PNS0_13ObKVCacheInstEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEppEv:6293 + 2: 0 + 3.1: 0 + 4.1: 0 + 4.2: 0 + 7: 0 + 7.1: 217 + 8: 217 + 9: 0 + 14: 0 + 23.2: _ZNK9oceanbase6common17ObLfFIFOAllocator9allocatedEv:0 + 0: _ZNK9oceanbase6common15ObBlockAllocMgr4holdEv:0 + 0: 0 + 24: _ZNK9oceanbase6common4hash19ObHashTableIteratorINS0_16ObKVCacheInstKeyENS1_11HashMapPairIS3_PNS0_13ObKVCacheInstEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEptEv:0 + 3: 0 + 4.1: 0 + 25: _ZNK9oceanbase6common4hash19ObHashTableIteratorINS0_16ObKVCacheInstKeyENS1_11HashMapPairIS3_PNS0_13ObKVCacheInstEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEptEv:0 + 3: 0 + 4.1: 0 + 25.1: _ZNK9oceanbase6common17ObLfFIFOAllocator9allocatedEv:0 + 0: _ZNK9oceanbase6common15ObBlockAllocMgr4holdEv:0 + 0: 0 + 26: _ZNK9oceanbase6common4hash19ObHashTableIteratorINS0_16ObKVCacheInstKeyENS1_11HashMapPairIS3_PNS0_13ObKVCacheInstEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEptEv:0 + 3: 0 + 4.1: 0 + 27: _ZNK9oceanbase6common4hash19ObHashTableIteratorINS0_16ObKVCacheInstKeyENS1_11HashMapPairIS3_PNS0_13ObKVCacheInstEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEptEv:0 + 3: 0 + 4.1: 0 +_ZN9oceanbase4palf16LogSlidingWindow19try_freeze_last_logEv:6280:44 + 1: 44 + 2: 44 + 4: 44 + 5: 44 + 6: 44 _ZN9oceanbase4palf12LSNAllocator10try_freezeERNS0_3LSNERl:44 + 6.1: 54 + 7.1: 0 + 8.1: 54 + 10.1: 54 _ZN9oceanbase4palf16LogSlidingWindow20try_freeze_last_log_ElRKNS0_3LSNERb:54 + 10.2: 53 + 11.1: 0 + 13: 53 + 14: 53 _ZN9oceanbase4palf16LogSlidingWindow23handle_next_submit_log_ERb:57 + 16: 56 _ZN9oceanbase4palf16LogSlidingWindow21handle_committed_log_Ev:57 + 18: 50 + 19.4: 50 + 3: _ZN9oceanbase4palf3LSNC2Ev:308 + 2: _ZN9oceanbase4palf3LSN5resetEv:308 + 2: 44 +_ZN9oceanbase6common6number8ObNumber17find_point_range_EPKclRlS5_S5_RbRiPsS8_:6247:17 + 3: 16 + 4: 16 + 8: 16 + 8.2: 16 + 9: 0 + 10.1: 0 + 13: 16 + 15.1: 0 + 15.2: 19 + 15.3: 19 + 15.5: 0 + 16.1: 19 + 16.2: 20 + 16.3: 20 + 19: 0 + 23: 20 + 24: 0 + 27: 6 + 28: 6 + 34: 20 + 34.1: 0 + 35: 0 + 35.2: 0 + 35.3: 0 + 36: 0 + 37.1: 0 + 40: 0 + 41.1: 20 + 41.2: 20 + 41.3: 20 + 41.5: 14 + 47: 14 + 49: 14 + 50: 14 + 53: 6 + 54: 6 + 56.1: 6 + 56.2: 6 + 58.1: 0 + 59: 0 + 61.1: 0 + 61.2: 0 + 62: 0 + 64: 7 + 68: 7 + 69: 0 + 74: 21 + 75: 21 + 76: 21 + 79: 21 + 88: 21 + 34: _ZN9oceanbase3lib14is_oracle_modeEv:880 + 2: 20 + 2: _ZN9oceanbase3lib15get_compat_modeEv:820 + 2: 20 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:500 + 2: 20 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 +_ZN9oceanbase4palf16LogSlidingWindow10sliding_cbElPKNS0_22FixedSlidingWindowSlotE:6207:9 + 1: 9 + 2: 9 + 3: 9 + 4: 0 + 5.1: 9 + 6: 0 + 7.1: 0 + 8.1: 9 _ZNK9oceanbase4palf11LogStateMgr12can_slide_swEv:9 + 10: 0 + 14: 8 + 15.1: 8 __dynamic_cast:8 + 15.3: 10 + 16: 10 + 17: 0 + 18.1: 0 + 20: 10 _ZN9oceanbase4palf19LogGroupEntryHeaderC1Ev:10 + 24: 7 + 26: 7 + 26.1: 7 + 27: 7 + 28.1: 7 + 31: 7 + 34: 8 + 35: 8 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:10 + 35.1: 11 + 36: 11 _ZN9oceanbase4palf15PalfFSCbWrapper14update_end_lsnElRKNS0_3LSNEl:11 + 36.1: 6 + 38: 0 + 38.1: 0 + 38.2: 0 + 38.3: 0 + 38.6: 0 + 39.1: 0 + 42.1: 0 + 45: 6 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:6 + 45.1: 5 + 46: 5 _ZN9oceanbase6common10ObMiniStat10ObStatItem4statEl:5 + 47: 4 + 48.1: 0 + 52: 5 + 55: 9 + 57: 9 + 58.1: 0 + 62: 9 _ZN9oceanbase4palf11LogChecksum21verify_accum_checksumEll:9 + 62.1: 8 + 64.1: 0 + 67: 8 _ZN9oceanbase4palf16LogSlidingWindow31try_update_last_slide_log_info_EllRKNS0_3LSNES4_RKll:8 + 71: 8 + 71.1: 9 + 72: 8 + 72.1: 8 _ZNK9oceanbase4palf11LogStateMgr8get_roleEv:8 + 72.2: 8 + 72.3: 9 _ZNK9oceanbase4palf11LogStateMgr19is_leader_reconfirmEv:9 + 74: 0 + 76.10: 0 + 76.12: 8 _ZN9oceanbase4palf19LogGroupEntryHeaderD1Ev:8 + 77: 9 + 78.1: 0 + 81: 9 + 12: _ZN9oceanbase4palf3LSNC2Ev:32 + 2: _ZN9oceanbase4palf3LSN5resetEv:32 + 2: 8 + 13: _ZN9oceanbase4palf3LSNC2Ev:32 + 2: _ZN9oceanbase4palf3LSN5resetEv:32 + 2: 8 + 23: _ZNK9oceanbase4palf7LogTask4lockEv:168 + 1: 8 _ZN9oceanbase6common7ObLatch6wrlockEjlPKj:11 + 24: _ZNK9oceanbase4palf7LogTask13get_begin_lsnEv:28 + 0: _ZN9oceanbase4palf3LSNC2ERKS1_:28 + 0: 7 + 24.1: _ZN9oceanbase4palf3LSNaSERKS1_:28 + 2: 7 + 25: _ZNK9oceanbase4palf7LogTask14get_max_log_tsEv:77 + 0: 7 + 26: _ZN9oceanbase4palfplERKNS0_3LSNEm:49 + 4: 7 + 3: _ZN9oceanbase4palf3LSNaSERKS1_:28 + 2: 7 + 26.1: _ZNK9oceanbase4palf7LogTask12get_data_lenEv:28 + 0: 7 + 26.2: _ZN9oceanbase4palfplERKNS0_3LSNEm:21 + 4: 7 + 26.3: _ZN9oceanbase4palf3LSNaSERKS1_:28 + 2: 7 + 27: _ZNK9oceanbase4palf7LogTask15get_header_infoEv:133 + 0: _ZN9oceanbase4palf17LogTaskHeaderInfoC2ERKS1_:133 + 0.3: 7 + 28: _ZNK9oceanbase4palf7LogTask15get_proposal_idEv:28 + 0: 7 + 30: _ZNK9oceanbase4palf7LogTask10get_gen_tsEv:49 + 0: 7 + 31: _ZNK9oceanbase4palf7LogTask13get_submit_tsEv:49 + 0: 7 + 32: _ZNK9oceanbase4palf7LogTask6unlockEv:70 + 1: 7 _ZN9oceanbase6common7ObLatch6unlockEPKj:7 + 53: _ZN9oceanbase6common10ObMiniStat10ObStatItem4statEl:432 + 3: 7 + 4: 7 + 5: 7 + 6: 0 + 7.1: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:5 + 2: 5 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:5 + 54: _ZN9oceanbase6common10ObMiniStat10ObStatItem4statEl:511 + 3: 9 + 4: 9 + 5: 9 + 6: 0 + 7.1: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:7 + 2: 7 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:7 + 55: _ZN9oceanbase6common10ObMiniStat10ObStatItem4statEl:457 + 3: 8 + 4: 8 + 5: 8 + 6: 0 + 7.1: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:9 + 2: 9 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:9 +_ZN9oceanbase3lib9AChunkMgr11alloc_chunkEmb:6190:31 + 1: 30 + 8: 0 + 11: 30 + 14: 25 + 15: 1 _ZN9oceanbase3lib9AChunkMgr11update_holdElb:1 + 16: 1 + 17: 1 _ZN9oceanbase3lib9AChunkMgr12direct_allocEmbRb:1 + 18: 0 + 20: 0 + 30.1: 0 + 30.2: 0 + 30.3: 0 + 31: 0 + 32: 0 + 34: 0 + 39: 0 + 40: 0 + 41: 0 + 43: 0 + 45: 0 + 50: 0 + 51: 25 + 53: 0 + 55.1: 0 + 55.2: 0 + 55.4: 0 + 55.5: 0 + 56.1: 0 + 60: 26 + 2: _ZN9oceanbase3lib9AChunkMgr4holdEm:810 + 2: _ZN9oceanbase3lib6AChunk9calc_holdEllPm:810 + 3: 30 + 3.2: 0 + 2: _ZN9oceanbase3lib9align_up2Emm:420 + 2: 30 + 3.4: _ZN9oceanbase3lib9align_up2Emm:0 + 2: 0 + 11: _ZNK9oceanbase3lib10AChunkList5countEv:240 + 2: 30 + 12: _ZN9oceanbase3lib10AChunkList3popEv:3077 + 3: 29 + 4: 29 + 7: 26 + 9: 26 + 10: 26 + 12: 26 + 5: _ZN9oceanbase3lib7ObMutex4lockEv:696 + 0: 29 _ZN9oceanbase6common12ObLatchMutex4lockEjl:29 + 13: _ZN9oceanbase3lib7ObMutex6unlockEv:156 + 0: 26 _ZN9oceanbase6common12ObLatchMutex6unlockEv:27 + 19: _ZN9oceanbase3lib6AChunkC2Ev:0 + 1: 0 + 3: 0 + 4: 0 + 0.1: _ZN9oceanbase3lib13ASimpleBitSetILi256EEC2Ev:0 + 2: 0 + 22: _ZN9oceanbase3lib9AChunkMgr11update_holdElb:0 + 5: 0 + 30.2: _ZNK9oceanbase3lib10AChunkList5countEv:0 + 2: 0 + 33: _ZN9oceanbase3lib9AChunkMgr11update_holdElb:0 + 5: 0 + 42: _ZN9oceanbase3lib6AChunkC2Ev:0 + 1: 0 + 3: 0 + 4: 0 + 0.1: _ZN9oceanbase3lib13ASimpleBitSetILi256EEC2Ev:0 + 2: 0 +_ZN9oceanbase3sql9ObOpInputD2Ev:6048:1039 + 0: 1008 +_ZN6obutil4CondC2Ev:6041:239 + 1: 236 + 2: 265 + 3: 265 + 4.1: 0 + 6: 265 +_ZN6obutil4CondC1Ev:6041:239 + 1: 236 + 2: 265 + 3: 265 + 4.1: 0 + 6: 265 +_ZN9oceanbase8keybtree9BtreeNode15copy_and_insertERS1_iiiNS_8memtable20ObStoreRowkeyWrapperEPNS3_9ObMvccRowES4_S6_:6022:20 + 2: 19 + 3: 19 + 4: 19 _ZN9oceanbase8keybtree9BtreeNode4copyERS1_iii:19 + 5: 18 + 7: 20 + 8: 19 _ZN9oceanbase8keybtree9BtreeNode4copyERS1_iii:20 + 5: _ZN9oceanbase8keybtree9BtreeNode16insert_into_nodeEiNS_8memtable20ObStoreRowkeyWrapperEPNS2_9ObMvccRowE:1908 + 0: 19 + 4: 18 + 5: 0 + 8.1: 19 + 3: _ZNK9oceanbase8keybtree9BtreeNode4sizeEPNS0_11MultibitSetE:180 + 2.4: 18 + 2.3: _ZNK9oceanbase8keybtree11MultibitSet4sizeEv:126 + 0: 18 + 6: _ZNK9oceanbase8keybtree11MultibitSet2atEi:0 + 5: 0 + 5.2: 0 + 5.3: 0 + 7: 0 + 8: 0 + 4: _ZN9oceanbase8keybtree11MultibitSet4loadERKS1_:0 + 0: 0 + 9: _ZN9oceanbase8keybtree11MultibitSet13unsafe_insertEih:540 + 0: 10 + 0: _ZN9oceanbase8keybtree11MultibitSet10cal_index_ERS1_ih:500 + 2: 10 + 4: 10 + 5: 10 + 12: _ZN9oceanbase8keybtree11MultibitSet9inc_countEs:220 + 0: 19 + 14: _ZN9oceanbase8keybtree9BtreeNode13set_key_valueEiNS_8memtable20ObStoreRowkeyWrapperEPNS2_9ObMvccRowE:500 + 2: 20 + 3: 20 + 7: _ZN9oceanbase8keybtree9BtreeNode16insert_into_nodeEiNS_8memtable20ObStoreRowkeyWrapperEPNS2_9ObMvccRowE:1519 + 0: 20 + 4: 20 + 5: 0 + 8.1: 20 + 3: _ZNK9oceanbase8keybtree9BtreeNode4sizeEPNS0_11MultibitSetE:200 + 2.4: 20 + 2.3: _ZNK9oceanbase8keybtree11MultibitSet4sizeEv:140 + 0: 20 + 6: _ZNK9oceanbase8keybtree11MultibitSet2atEi:0 + 5: 0 + 5.2: 0 + 5.3: 0 + 7: 0 + 8: 0 + 4: _ZN9oceanbase8keybtree11MultibitSet4loadERKS1_:0 + 0: 0 + 9: _ZN9oceanbase8keybtree11MultibitSet13unsafe_insertEih:486 + 0: 9 + 0: _ZN9oceanbase8keybtree11MultibitSet10cal_index_ERS1_ih:450 + 2: 9 + 4: 9 + 5: 9 + 12: _ZN9oceanbase8keybtree11MultibitSet9inc_countEs:260 + 0: 20 + 14: _ZN9oceanbase8keybtree9BtreeNode13set_key_valueEiNS_8memtable20ObStoreRowkeyWrapperEPNS2_9ObMvccRowE:323 + 2: 19 + 3: 19 +_ZN9oceanbase12blocksstable11ObRowWriter17inner_write_cellsINS0_14ObStorageDatumEEEiPKT_l:5976:54 + 3: 52 + 4: 52 + 5: 52 + 6: 52 + 7: 52 + 9: 0 + 11: 0 + 11.1: 0 + 11.2: 0 + 11.4: 0 + 13: 0 + 14.1: 0 + 15.1: 56 _ZN9oceanbase12blocksstable11ObRowWriter13build_clusterINS0_14ObStorageDatumEEEilPKT_:55 + 17.1: 0 + 20: 56 + 24: 56 + 11.2: _ZN9oceanbase12blocksstable11ObRowHeader16calc_cluster_cntEll:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase12blocksstable11ObRowHeader31need_rowkey_independent_clusterEl:0 + 2: 0 + 3: _ZN9oceanbase12blocksstable11ObRowHeader33calc_cluster_cnt_by_row_col_countEl:0 + 2: 0 + 4: _ZN9oceanbase12blocksstable11ObRowHeader33calc_cluster_cnt_by_row_col_countEl:0 + 2: 0 + 20: _ZN9oceanbase12blocksstable11ObRowHeader18set_single_clusterEb:784 + 0: 56 +_ZN9oceanbase10logservice12AppendCbBase19__get_class_addressEPNS_6common6ObLinkE:5967:356 + 1: 351 + 2: 351 + 2.3: 351 +_ZN9oceanbase7storage21ObIndexTreePrefetcher15single_prefetchERNS0_19ObSSTableReadHandleE:5910:75 + 1: 71 + 2: 71 + 3: 71 + 4: 0 + 5.1: 0 + 6.1: 71 + 7: 0 + 8.1: 0 + 9.1: 73 _ZN9oceanbase7storage21ObIndexTreePrefetcher15lookup_in_cacheERNS0_19ObSSTableReadHandleE:74 + 10.1: 0 + 11.1: 73 + 12: 81 _ZN9oceanbase7storage21ObIndexTreePrefetcher20lookup_in_index_treeERNS0_19ObSSTableReadHandleE:77 + 13.1: 0 + 16: 81 + 6.1: _ZNK9oceanbase7storage19ObSSTableReadHandle8is_validEv:355 + 1: 71 +_ZN9oceanbase4palf14LogEntryHeaderC2Ev:5888:265 + 2: 256 + 6: 256 + 7: 256 +_ZN9oceanbase4palf14LogEntryHeaderC1Ev:5888:265 + 2: 256 + 6: 256 + 7: 256 +_ZN9oceanbase6common19ModulePageAllocator4freeEPv:5874:277 + 0: 267 + 0.1: 0 + 0.2: 267 _ZN9oceanbase6common11ObAllocator4freeEPv:273 _ZN9oceanbase6common16ObArenaAllocator4freeEPv:1 +parse_free:5856:1004 + 1: 976 + 4: 976 +_ZN9oceanbase3lib9AChunkMgr10free_chunkEPNS0_6AChunkE:5775:21 + 1: 21 + 2: 21 + 7: 21 + 8: 21 + 11: 21 + 12: 0 + 16: 0 + 17: 0 + 19: 0 + 20: 0 + 23: 21 + 3: _ZNK9oceanbase3lib6AChunk4holdEPm:1071 + 2: 21 + 2: _ZN9oceanbase3lib6AChunk9calc_holdEllPm:903 + 3: 21 + 3.2: 0 + 3.3: 21 + 4: 21 + 2: _ZN9oceanbase3lib9align_up2Emm:462 + 2: 21 + 3.4: _ZN9oceanbase3lib9align_up2Emm:0 + 2: 0 + 4: _ZN9oceanbase3lib6AChunk7alignedEv:0 + 2: _ZN9oceanbase3lib6AChunk7alignedEl:0 + 2: _ZN9oceanbase3lib9align_up2Emm:0 + 2: 0 + 9: _ZN9oceanbase3lib10AChunkList4pushEPNS0_6AChunkE:2814 + 3: 21 + 4: 21 + 7: 21 + 8: 21 + 9: 21 + 10: 21 + 13: 21 + 3: _ZNK9oceanbase3lib10AChunkList5countEv:357 + 2: 21 + 5: _ZN9oceanbase3lib7ObMutex4lockEv:441 + 0: 21 _ZN9oceanbase6common12ObLatchMutex4lockEjl:21 + 7: _ZNK9oceanbase3lib10AChunkList5countEv:357 + 2: 21 + 14: _ZN9oceanbase3lib7ObMutex6unlockEv:105 + 0: 21 _ZN9oceanbase6common12ObLatchMutex6unlockEv:21 + 13: _ZN9oceanbase3lib9AChunkMgr11update_holdElb:0 + 5: 0 +_ZN9oceanbase6common8ObMemberC2Ev:5772:116 + 0: 111 + 1: 111 + 2: 111 + 0: _ZN9oceanbase6common6ObAddrC2Ev:2331 + 1: 111 +_ZN9oceanbase6common8ObMemberC1Ev:5772:116 + 0: 111 + 1: 111 + 2: 111 + 0: _ZN9oceanbase6common6ObAddrC2Ev:2331 + 1: 111 +_ZNK9oceanbase4palf19LogGroupEntryHeader9serializeEPclRl:5660:7 + 1: 7 + 2: 7 + 3: 7 + 4: 7 + 4.2: 7 + 5: 0 + 6.1: 7 + 7.1: 7 + 8.1: 7 + 9.1: 7 + 10.1: 7 _ZNK9oceanbase4palf3LSN9serializeEPclRl:7 + 11: 6 + 11.1: 6 + 12.1: 6 + 13.1: 6 + 14.1: 6 + 15: 0 + 16.1: 0 + 18: 6 + 20.1: 6 _ZZNK9oceanbase4palf19LogGroupEntryHeader9serializeEPclRlENK5$_651clEPKc.1598dc2348996c1ae1caea6120522988:6 + 21: 6 + 6.1: _ZN9oceanbase6common13serialization10encode_i16EPclRls:217 + 2: 7 + 4: 7 + 5: 7 + 6: 7 + 7.1: _ZN9oceanbase6common13serialization10encode_i16EPclRls:224 + 2: 7 + 4: 7 + 5: 7 + 6: 7 + 8.1: _ZN9oceanbase6common13serialization10encode_i32EPclRli:497 + 2: 7 + 2.1: 7 + 4: 7 + 5: 7 + 6: 7 + 7: 7 + 8: 7 + 9.1: _ZN9oceanbase6common13serialization10encode_i64EPclRll:763 + 2: 7 + 2.1: 7 + 4: 7 + 5: 7 + 6: 7 + 7: 7 + 8: 7 + 9: 7 + 10: 7 + 11: 7 + 12: 7 + 11.1: _ZN9oceanbase6common13serialization10encode_i64EPclRll:732 + 2: 6 + 2.1: 6 + 4: 6 + 5: 6 + 6: 6 + 7: 6 + 8: 6 + 9: 6 + 10: 6 + 11: 6 + 12: 6 + 12.1: _ZN9oceanbase6common13serialization10encode_i64EPclRll:636 + 2: 6 + 2.1: 6 + 4: 6 + 5: 6 + 6: 6 + 7: 6 + 8: 6 + 9: 6 + 10: 6 + 11: 6 + 12: 6 + 13.1: _ZN9oceanbase6common13serialization10encode_i64EPclRll:714 + 2: 6 + 2.1: 6 + 4: 6 + 5: 6 + 6: 6 + 7: 6 + 8: 6 + 9: 6 + 10: 6 + 11: 6 + 12: 6 + 14.1: _ZN9oceanbase6common13serialization10encode_i64EPclRll:618 + 2: 6 + 2.1: 6 + 4: 6 + 5: 6 + 6: 6 + 7: 6 + 8: 6 + 9: 6 + 10: 6 + 11: 6 + 12: 6 +_ZN9oceanbase5obrpc14ObBatchRpcBase7do_workEv:5657:6 + 1: 6 + 2: 6 + 3: 9 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:6 + 7.1: 9 + 10.1: 0 + 12.1: 0 + 12.3: 0 + 15: 0 + 15.1: 0 + 16: 0 + 20: 0 + 24.1: 0 + 24.2: 0 + 25.1: 0 + 25.3: 0 + 26.1: 0 + 27.1: 0 + 28.1: 0 + 32.2: 0 + 32.4: 0 + 33.1: 0 + 34.1: 0 + 35.1: 0 + 36: 0 + 37.1: 0 + 38: 0 + 39: 0 + 41: 0 + 43.1: 0 + 43.2: 0 + 43.3: 0 + 45: 0 + 46.1: 0 + 49: 0 + 49.1: 0 + 49.2: 0 + 49.3: 0 + 49.4: 0 + 49.5: 0 + 50: 0 + 51: 0 + 52: 0 + 53: 0 + 56: 0 + 57: 0 + 62.14: 4 + 7.1: _ZN9oceanbase6common10FixedHash2INS_5obrpc11ObRpcBufferEE10quick_nextEPS3_:5242 + 1.2: 203 + 2: 203 + 1.1: _ZN9oceanbase6common10FixedHash2INS_5obrpc11ObRpcBufferEE15quick_next_nodeEPS3_:2603 + 2: 204 + 3: 8 + 4.1: 195 + 4.1: _ZN9oceanbase6common15is_last_bit_setEm:585 + 2: 195 + 5: _ZN9oceanbase6common10FixedHash2INS_5obrpc11ObRpcBufferEE7get_preEPS3_:0 + 0: _ZNK9oceanbase6common10SpHashNode4hashEv:0 + 0: 0 + 0.1: _ZN9oceanbase6common10FixedHash2INS_5obrpc11ObRpcBufferEE7get_preEm:0 + 0: 0 + 2.1: _ZN9oceanbase6common10SpHashNode8is_dummyEv:1421 + 0: 203 + 8: _ZN9oceanbase5obrpc11ObRpcBuffer6freezeEv:0 + 0: 0 + 10.1: _ZN9oceanbase6common10FixedHash2INS_5obrpc11ObRpcBufferEE10quick_nextEPS3_:0 + 1.2: 0 + 2: 0 + 1.1: _ZN9oceanbase6common10FixedHash2INS_5obrpc11ObRpcBufferEE15quick_next_nodeEPS3_:0 + 2: 0 + 3: 0 + 4.1: 0 + 4.1: _ZN9oceanbase6common15is_last_bit_setEm:0 + 2: 0 + 5: _ZN9oceanbase6common10FixedHash2INS_5obrpc11ObRpcBufferEE7get_preEPS3_:0 + 0: _ZNK9oceanbase6common10SpHashNode4hashEv:0 + 0: 0 + 0.1: _ZN9oceanbase6common10FixedHash2INS_5obrpc11ObRpcBufferEE7get_preEm:0 + 0: 0 + 2.1: _ZN9oceanbase6common10SpHashNode8is_dummyEv:0 + 0: 0 + 12.1: _ZNK9oceanbase5obrpc11ObRpcBuffer13get_tenant_idEv:0 + 0: 0 + 15: _ZNK9oceanbase5obrpc11ObRpcBuffer15get_last_use_tsEv:0 + 0: 0 + 16.1: _ZNK9oceanbase5obrpc11ObRpcBuffer8is_emptyEv:0 + 1: _ZNK9oceanbase5obrpc15ObRingRpcBuffer8is_emptyEv:0 + 3: 0 + 2: _ZNK9oceanbase5obrpc15ObRingRpcBuffer12get_read_seqEv:0 + 0: 0 + 3: _ZNK9oceanbase5obrpc15ObRingRpcBuffer12get_fill_seqEv:0 + 0: 0 + 3.1: _ZNK9oceanbase5obrpc15ObRingRpcBuffer3getEl:0 + 0: 0 + 3.2: _ZN9oceanbase5obrpc17ObSingleRpcBuffer8is_emptyEv:0 + 0: 0 + 21: _ZN9oceanbase6common9ObSEArrayINS0_6ObAddrELl64ENS0_19ModulePageAllocatorELb0EEC2Ev:0 + 0.1: 0 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS0_6ObAddrELl64ENS0_19ModulePageAllocatorELb0EEC2ElRKS3_:0 + 2: 0 + 5: 0 + 6: 0 + 8: 0 + 17.1: 0 + 2: _ZN9oceanbase6common8ObIArrayINS0_6ObAddrEEC2EPS2_l:0 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_6ObAddrEEC2EPS2_l:0 + 0: 0 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:0 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:0 + 2: 0 + 8: 0 + 22: _ZN9oceanbase6common9ObSEArrayImLl64ENS0_19ModulePageAllocatorELb0EEC2Ev:0 + 0.1: 0 + 0.5: _ZN9oceanbase6common13ObSEArrayImplImLl64ENS0_19ModulePageAllocatorELb0EEC2ElRKS2_:0 + 2: 0 + 5: 0 + 6: 0 + 8: 0 + 17.1: 0 + 2: _ZN9oceanbase6common8ObIArrayImEC2EPml:0 + 0: _ZN9oceanbase6common12ObIArrayWrapImEC2EPml:0 + 0: 0 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:0 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:0 + 2: 0 + 8: 0 + 23: _ZN9oceanbase6common9ObSEArrayIlLl64ENS0_19ModulePageAllocatorELb0EEC2Ev:0 + 0.1: 0 + 0.5: _ZN9oceanbase6common13ObSEArrayImplIlLl64ENS0_19ModulePageAllocatorELb0EEC2ElRKS2_:0 + 2: 0 + 5: 0 + 6: 0 + 8: 0 + 17.1: 0 + 2: _ZN9oceanbase6common8ObIArrayIlEC2EPll:0 + 0: _ZN9oceanbase6common12ObIArrayWrapIlEC2EPll:0 + 0: 0 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:0 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:0 + 2: 0 + 8: 0 + 25: _ZNK9oceanbase5obrpc11ObRpcBuffer15get_last_use_tsEv:0 + 0: 0 + 25.2: _ZNK9oceanbase5obrpc11ObRpcBuffer8is_emptyEv:0 + 1: _ZNK9oceanbase5obrpc15ObRingRpcBuffer8is_emptyEv:0 + 3: 0 + 2: _ZNK9oceanbase5obrpc15ObRingRpcBuffer12get_read_seqEv:0 + 0: 0 + 3: _ZNK9oceanbase5obrpc15ObRingRpcBuffer12get_fill_seqEv:0 + 0: 0 + 3.1: _ZNK9oceanbase5obrpc15ObRingRpcBuffer3getEl:0 + 0: 0 + 3.2: _ZN9oceanbase5obrpc17ObSingleRpcBuffer8is_emptyEv:0 + 0: 0 + 26: _ZNK9oceanbase5obrpc11ObRpcBuffer10get_serverEv:0 + 0: 0 + 27: _ZNK9oceanbase5obrpc11ObRpcBuffer13get_tenant_idEv:0 + 0: 0 + 28: _ZNK9oceanbase5obrpc11ObRpcBuffer18get_dst_cluster_idEv:0 + 0: 0 + 33: _ZN9oceanbase6common12ObIArrayWrapINS0_6ObAddrEE2atEl:0 + 6: 0 + 34: _ZN9oceanbase6common12ObIArrayWrapImE2atEl:0 + 6: 0 + 35: _ZN9oceanbase6common12ObIArrayWrapIlE2atEl:0 + 6: 0 + 37: _ZNK9oceanbase6common10SpHashNode4hashEv:0 + 0: 0 + 39: _ZN9oceanbase6common10FixedHash2INS_5obrpc11ObRpcBufferEE3delEPS3_RS5_:0 + 0: _ZN9oceanbase6common10FixedHash2INS_5obrpc11ObRpcBufferEE7get_preEPS3_:0 + 0.1: _ZN9oceanbase6common10FixedHash2INS_5obrpc11ObRpcBufferEE7get_preEm:0 + 0: 0 + 0.1: _ZN9oceanbase6common6ol_delINS_5obrpc11ObRpcBufferEEEiPT_S5_RS5_:0 + 3.1: 0 + 41.1: _ZN9oceanbase6common7ObQSync4syncEv:0 + 2.1: 0 + 2.3: 0 + 5.1: 0 + 43.1: _ZNK9oceanbase5obrpc11ObRpcBuffer13get_tenant_idEv:0 + 0: 0 + 48.2: _ZN9oceanbase5obrpc11ObRpcBufferD2Ev:0 + 0.1: _ZN9oceanbase6common6ObLinkD2Ev:0 + 0: 0 + 59: _ZN9oceanbase5obrpc14SingleWaitCond4waitEl:0 + 1: 0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 7: 0 +_ZN9oceanbase6common13ObSEArrayImplINS_11transaction9ObTxCbArgELl3ENS0_19ModulePageAllocatorELb0EE5reuseEv:5649:278 + 1: 269 + 8: 269 + 9: 269 + 10: 269 +_ZN9oceanbase4palf11LogIOWorker25BatchLogIOFlushLogTaskMgr26find_usable_batch_io_task_ElRPNS0_22BatchLogIOFlushLogTaskE:5588:9 + 2: 8 + 3: 8 + 4: 8 + 9.1: 8 + 9.3: 77 + 9.5: 77 + 10: 76 + 11: 76 + 12: 0 + 13.1: 0 + 14.1: 76 + 16: 0 + 21.1: 10 + 21.2: 10 + 21.6: 10 + 22: 11 + 23: 11 + 24: 0 + 25.1: 0 + 26.1: 11 + 28: 10 + 29: 10 + 32.1: 10 _ZZN9oceanbase4palf11LogIOWorker25BatchLogIOFlushLogTaskMgr26find_usable_batch_io_task_ElRPNS0_22BatchLogIOFlushLogTaskEENK5$_785clEPKc.1598dc2348996c1ae1caea6120522988:11 + 33: 7 + 34: 7 + 36: 7 + 4: _ZNK9oceanbase6common12ObIArrayWrapIPNS_4palf22BatchLogIOFlushLogTaskEE5countEv:32 + 0: 8 + 10: _ZN9oceanbase6common16ObFixedArrayImplIPNS_4palf22BatchLogIOFlushLogTaskENS0_12ObIAllocatorEEixEl:304 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_4palf22BatchLogIOFlushLogTaskEE2atEl:304 + 6: 76 + 22: _ZN9oceanbase6common16ObFixedArrayImplIPNS_4palf22BatchLogIOFlushLogTaskENS0_12ObIAllocatorEEixEl:44 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_4palf22BatchLogIOFlushLogTaskEE2atEl:44 + 6: 11 +_ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl4ENS0_19ModulePageAllocatorELb0EED2Ev:5585:81 + 1: 74 + 3: 75 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl4ENS0_19ModulePageAllocatorELb0EE7destroyEv:2838 + 9: 74 + 11: 0 + 13: 75 + 15: 75 + 24: 75 + 10: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl4ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZNK9oceanbase6common14ObKVCacheStore14get_block_sizeEv:5580:567 + 0: 558 +_ZNK9oceanbase11transaction9tablelock17ObOBJLockCallback22is_table_lock_callbackEv:5568:709 + 0: 696 +_ZN9oceanbase7storage8ObITable7dec_refEv:5566:256 + 1: 253 + 2: 253 + 5: 253 +_ZN9oceanbase7storage19ObStoreRowLockState5resetEv:5544:206 + 1: 198 + 2: 198 + 3: 198 + 7: 198 + 8: 198 +_ZN9oceanbase8observer19ObTenantMetaChecker24check_dangling_replicas_ERNS_6common4hash9ObHashMapINS_5share6ObLSIDENS5_11ObLSReplicaENS3_24LatchReadWriteDefendModeENS3_9hash_funcIS6_EENS3_8equal_toIS6_EENS3_13SimpleAllocerINS3_15ObHashTableNodeINS3_11HashMapPairIS6_S7_EEEELi11ENS3_19SpinMutexDefendModeENS3_29DefaultSimpleAllocerAllocatorEEENS3_13NormalPointerENS2_8ObMallocELl1EEERl:5517:2 + 3: 2 + 4: 2 + 5: 2 + 6: 2 + 7: 0 + 8.1: 0 + 9.1: 2 + 10: 0 + 11.1: 0 + 13.1: 2 + 14: 4 _ZN9oceanbase7storage10ObLSHandleC1Ev:4 + 15: 4 + 16: 0 + 17.1: 0 + 18.3: 4 _ZN9oceanbase7storage11ObLSService6get_lsERKNS_5share6ObLSIDERNS0_10ObLSHandleENS0_10ObLSGetModE:4 + 18.4: 4 + 23: 0 + 24: 0 + 25: 0 + 25.1: 0 + 26: 0 + 27.1: 0 + 28.1: 0 + 28.2: 0 + 28.3: 0 + 28.4: 0 + 29.1: 0 + 31.1: 0 + 35.1: 0 + 37.2: 4 + 38: 0 + 39.1: 0 + 41: 4 _ZN9oceanbase7storage10ObLSHandleD1Ev:4 + 41.1: 0 + 43: 1 + 13: _ZN9oceanbase6common4hash9ObHashMapINS_5share6ObLSIDENS3_11ObLSReplicaENS1_24LatchReadWriteDefendModeENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS4_S5_EEEELi11ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE5beginEv:278 + 2: 2 + 2: _ZN9oceanbase6common4hash11ObHashTableINS_5share6ObLSIDENS1_11HashMapPairIS4_NS3_11ObLSReplicaEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi11ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE5beginEv:270 + 2: 0 + 3: 2 + 5: 2 + 5.1: 2 + 6.1: 0 + 7: 0 + 8.1: 4 + 8.2: 4 + 8.3: 4 + 9: 4 + 10: 4 + 5: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_5share6ObLSIDENS5_11ObLSReplicaEEENS0_7ObLatchENS1_5NCondEEEEEbRKT_:20 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_5share6ObLSIDENS5_11ObLSReplicaEEENS0_7ObLatchENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:20 + 2: 2 + 15: _ZN9oceanbase6common4hash19ObHashTableIteratorINS_5share6ObLSIDENS1_11HashMapPairIS4_NS3_11ObLSReplicaEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi11ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEC2EPKNS1_11ObHashTableIS4_S7_S9_SB_SD_SJ_SK_SL_SM_Ll1EEElPSG_:24 + 2: 2 + 13.5: _ZN9oceanbase6common4hash19ObHashTableIteratorINS_5share6ObLSIDENS1_11HashMapPairIS4_NS3_11ObLSReplicaEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi11ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEppEv:4645 + 2: 3 + 3.1: 0 + 4.1: 3 + 4.2: 3 + 7: 3 + 7.1: 135 + 8: 134 + 9: 2 + 14: 1 + 18.1: _ZN9oceanbase5share11ObTenantEnv3mtlIPNS_7storage11ObLSServiceEEET_v:92 + 2: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:68 + 2: 4 + 2.1: 0 + 2.2: 0 + 2.1: _ZN9oceanbase5share12ObTenantBase3getIPNS_7storage11ObLSServiceEEET_v:24 + 0: _ZN9oceanbase5share12ObTenantBase9inner_getENS1_8IdentityIPNS_7storage11ObLSServiceEEE:24 + 0: 4 + 18.2: _ZNK9oceanbase6common4hash19ObHashTableIteratorINS_5share6ObLSIDENS1_11HashMapPairIS4_NS3_11ObLSReplicaEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi11ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEptEv:68 + 3: 4 + 4.1: 0 + 6: 4 + 28.2: _ZNK9oceanbase6common4hash19ObHashTableIteratorINS_5share6ObLSIDENS1_11HashMapPairIS4_NS3_11ObLSReplicaEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi11ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEptEv:0 + 3: 0 + 4.1: 0 + 6: 0 +_ZNK9oceanbase6common19GlobalHazardVersion15get_min_versionERm:5516:0 + 1: 0 + 2: 0 + 4: 0 + 5: 0 + 6.1: 0 + 8: 0 + 9: 0 + 12.1: 281 + 14: 280 + 15: 1 + 21: 1 + 13: _ZNK9oceanbase6common24KVCacheHazardThreadStore20get_acquired_versionEv:795 + 0: 265 + 381.1: 0 + 17: _ZNK9oceanbase6common24KVCacheHazardThreadStore8get_nextEv:1124 + 0: 281 +_ZN9oceanbase3lib20ObTenantCtxAllocator10free_chunkEPNS0_6AChunkERKNS0_9ObMemAttrE:5504:25 + 1: 25 + 2: 25 + 3: 25 + 4: 25 + 5: 25 + 7: 24 + 7.1: 21 + 8: 24 _ZNK9oceanbase3lib20ObTenantCtxAllocator8get_holdEv:25 + 9: 0 + 11: 21 _ZNK9oceanbase3lib25ObTenantResourceMgrHandle8is_validEv:21 + 12.1: 0 + 14: 20 _ZN9oceanbase3lib25ObTenantResourceMgrHandle14get_memory_mgrEv:20 + 14.1: 23 _ZN9oceanbase3lib17ObTenantMemoryMgr10free_chunkEPNS0_6AChunkERKNS0_9ObMemAttrE:23 + 17: 23 + 3: _ZN9oceanbase3lib11ObLockGuardINS0_7ObMutexEEC2ERS2_:875 + 1: 25 + 4: 25 + 5.1: 0 + 6: 0 + 4: _ZN9oceanbase3lib7ObMutex4lockEv:450 + 0: 25 _ZN9oceanbase6common12ObLatchMutex4lockEjl:25 + 6: _ZN9oceanbase3lib11ObLockGuardINS0_7ObMutexEED2Ev:489 + 2: 25 + 3: 25 + 3.1: 24 + 4.1: 0 + 3: _ZN9oceanbase3lib7ObMutex6unlockEv:25 + 0: 25 _ZN9oceanbase6common12ObLatchMutex6unlockEv:26 + 7: _ZNK9oceanbase3lib6AChunk4holdEPm:984 + 2: 24 + 2: _ZN9oceanbase3lib6AChunk9calc_holdEllPm:744 + 3: 24 + 3.2: 0 + 4: 24 + 2: _ZN9oceanbase3lib9align_up2Emm:456 + 2: 24 + 3.4: _ZN9oceanbase3lib9align_up2Emm:0 + 2: 0 +_ZNSt17_Function_handlerIFiRN9oceanbase11transaction9ObTransIDEESt5_BindIFSt7_Mem_fnIMNS1_14ObTransServiceEFiS3_EEPS7_St12_PlaceholderILi1EEEEE9_M_invokeERKSt9_Any_dataS3_:5496:239 + 1: 229 + 2: _ZNSt14_Function_base13_Base_managerISt5_BindIFSt7_Mem_fnIMN9oceanbase11transaction14ObTransServiceEFiRNS4_9ObTransIDEEEPS5_St12_PlaceholderILi1EEEEE14_M_get_pointerERKSt9_Any_data:687 + 4: 229 + 2.1: _ZNSt5_BindIFSt7_Mem_fnIMN9oceanbase11transaction14ObTransServiceEFiRNS2_9ObTransIDEEEPS3_St12_PlaceholderILi1EEEEclIJS5_EiEET0_DpOT_:3893 + 2: _ZNSt5_BindIFSt7_Mem_fnIMN9oceanbase11transaction14ObTransServiceEFiRNS2_9ObTransIDEEEPS3_St12_PlaceholderILi1EEEE6__callIiJS5_EJLm0ELm1EEEET_OSt5tupleIJDpT0_EESt12_Index_tupleIJXspT1_EEE:3893 + 2: 229 + 2.2: _ZNKSt12_Mem_fn_baseIMN9oceanbase11transaction14ObTransServiceEFiRNS1_9ObTransIDEELb1EEclIJS4_EvEEiPS2_DpOT_:2977 + 1: 229 + 1.1: 0 + 1.4: 229 _ZN9oceanbase11transaction14ObTransService13gen_trans_id_ERNS0_9ObTransIDE:244 +_ZNK9oceanbase8memtable16ObITransCallback18is_logging_blockedEv:5488:707 + 0: 686 +_ZN6obutil4CondD2Ev:5448:258 + 1: 250 + 2: 250 + 3: 246 + 4.1: 0 + 6.1: 246 + 6.2: 0 +_ZN6obutil4CondD1Ev:5448:258 + 1: 250 + 2: 250 + 3: 246 + 4.1: 0 + 6.1: 246 + 6.2: 0 +_ZNK9oceanbase5share6schema11ObSchemaMgr16get_table_schemaEmmRPKNS1_21ObSimpleTableSchemaV2E:5404:47 + 4: 45 + 5: 45 + 6: 45 + 11.1: 45 + 12: 0 + 13.1: 0 + 14.1: 45 + 15: 45 + 17: 0 + 18.1: 0 + 20: 45 + 21: 45 _ZNK9oceanbase6common4hash16ObPointerHashMapImPNS_5share6schema21ObSimpleTableSchemaV2ENS4_13GetTableKeyV2ELl8064ENS0_19ModulePageAllocatorEE14get_refactoredERKmRS6_:47 + 22: 55 + 23: 55 + 24: 0 + 25.1: 0 + 27: 55 + 32: 55 +_ZN9oceanbase6common18ObSimpleThreadPool4pushEPv:5386:79 + 1: 77 + 3: 77 + 5.1: 77 + 7.1: 77 + 10: 166 _ZN9oceanbase6common13ObLightyQueue4pushEPv:77 + 11: 166 + 15: 165 +_ZN9oceanbase8observer16ObInnerSQLResult5closeEv:5358:2 + 1: 2 + 2: 2 + 4: 2 + 6: 2 _ZN9oceanbase8observer16ObInnerSQLResult11inner_closeEv:1 + 7.1: 0 + 11: 2 + 12: 2 + 10: _ZN9oceanbase6common4hash9ObHashMapINS0_8ObStringElNS1_19NoPthreadDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_lEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE5clearEv:5215 + 2: _ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_lEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE5clearEv:5215 + 3: 3 + 3.1: 1 + 6.1: 123 + 6.3: 123 + 7: 123 + 10: 121 + 11.1: 16 + 13: 12 + 14: 12 _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS0_8ObStringElEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEE4freeEPS7_:11 + 18: 123 + 20: 0 + 3: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringElEENS1_5NLockENS1_5NCondEEEEEbRKT_:30 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringElEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:30 + 2: 3 + 12: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_11HashMapPairINS0_8ObStringElEEE16check_magic_codeEv:36 + 0: 12 + 12.1: _ZL12abort_unlessb:24 + 5: 12 + 6: 0 +_ZN9oceanbase6common6DCHashINS_4palf5LSKeyELl8EE6Handle10search_preEmRPNS0_8HashNodeE:5336:32 + 0: 32 + 3: 32 + 5.1: 18 + 8: 0 + 2: _ZN9oceanbase6common6DCHashINS_4palf5LSKeyELl8EE6Handle11acquire_refEv:3200 + 0: 32 + 0: _ZN9oceanbase6common7ObQSync11acquire_refEv:2944 + 2: 32 + 3: 32 + 4: 32 + 5.1: 0 + 7: 32 + 2: _ZN9oceanbase6common8get_itidEv:896 + 4: 32 + 5: 0 + 6: 0 + 8: 0 + 3: _ZN9oceanbase6common7ObQSync7add_refEll:608 + 6: 32 + 3: _ZN9oceanbase6common6DCHashINS_4palf5LSKeyELl8EE10search_preEmRPNS0_8HashNodeE:614 + 2: 32 _ZN9oceanbase6common6DCHashINS_4palf5LSKeyELl8EE24alloc_and_init_cur_arrayEv:35 + 3: 18 + 3: _ZN9oceanbase6common7DCArray10locate_preEm:304 + 2: 16 + 4: 0 + 2: _ZN9oceanbase6common7DCArray12locate_prev_Em:208 + 1: _ZN9oceanbase6common7DCArray6locateEm:208 + 1: 16 + 5: _ZN9oceanbase6common7DCArray12locate_prev_Em:0 + 2.1: 0 + 1: _ZN9oceanbase6common7DCArray6locateEm:0 + 1: 0 + 2.1: _ZN9oceanbase6common8HashNode9is_linkedEv:0 + 0: 0 +_ZNK9oceanbase6common6ObAddr8is_validEv:5292:192 + 1: 191 + 3: 191 + 4: 0 + 5: 0 + 8.1: 178 + 9.1: 178 + 10: 178 + 13.1: 0 + 13.3: 0 + 14: 0 + 17: 178 +_ZN9oceanbase4palf16LogSlidingWindow28generate_group_entry_header_ElPNS0_7LogTaskERNS0_19LogGroupEntryHeaderERl:5290:8 + 4: 8 + 5: 8 + 6: 8 + 7: 8 + 8: 0 + 9.1: 0 + 15: 6 + 17: 6 + 18: 6 + 21.1: 6 + 28: 6 + 30: 6 _ZN9oceanbase4palf11LogWriteBufC1Ev:6 + 31: 6 + 32.1: 6 + 33: 0 + 34.1: 0 + 36.1: 6 _ZN9oceanbase4palf14LogGroupBuffer11get_log_bufERKNS0_3LSNElRNS0_11LogWriteBufE:6 + 36.2: 5 + 37.1: 0 + 38.1: 9 _ZN9oceanbase4palf19LogGroupEntryHeader8generateEbbRKNS0_11LogWriteBufElllRKNS0_3LSNERKlRl:5 + 38.2: 9 + 40.1: 0 + 41.1: 9 _ZN9oceanbase4palf11LogChecksum22acquire_accum_checksumElRl:9 + 41.2: 10 + 42.1: 0 + 44: 10 _ZN9oceanbase4palf19LogGroupEntryHeader27update_accumulated_checksumEl:10 + 45: 12 _ZN9oceanbase4palf19LogGroupEntryHeader22update_header_checksumEv:13 + 46.1: 13 _ZZN9oceanbase4palf16LogSlidingWindow28generate_group_entry_header_ElPNS0_7LogTaskERNS0_19LogGroupEntryHeaderERlENK5$_160clEPKc.0e4bf25207570af14a78557c8489c4fc:13 + 49: 13 _ZN9oceanbase4palf11LogWriteBufD1Ev:15 + 49.1: 0 + 50: 12 + 11: _ZN9oceanbase4palf3LSNC2Ev:64 + 2: _ZN9oceanbase4palf3LSN5resetEv:64 + 2: 8 + 12: _ZNK9oceanbase4palf16LogSlidingWindow22get_committed_end_lsn_ERNS0_3LSNE:88 + 2: 8 + 2.4: _ZN9oceanbase4palf3LSNaSERKS1_:32 + 2: 8 + 13: _ZN9oceanbase4palf17LogTaskHeaderInfoC2Ev:672 + 0.3: _ZN9oceanbase4palf17LogTaskHeaderInfo5resetEv:456 + 7: 8 + 12: 8 + 14: 8 + 9: _ZN9oceanbase4palf3LSN5resetEv:112 + 2: 8 + 0.13: _ZN9oceanbase4palf3LSNC2Ev:216 + 2: _ZN9oceanbase4palf3LSN5resetEv:216 + 2: 8 + 14: _ZNK9oceanbase4palf7LogTask4lockEv:176 + 1: 8 _ZN9oceanbase6common7ObLatch6wrlockEjlPKj:8 + 15: _ZNK9oceanbase4palf7LogTask15get_header_infoEv:288 + 0: _ZN9oceanbase4palf17LogTaskHeaderInfoC2ERKS1_:288 + 0.1: 6 + 0.2: 6 + 0.3: 6 + 0: _ZN9oceanbase4palf3LSNC2ERKS1_:24 + 0: 6 + 0.2: _ZN9oceanbase4palf3LSNC2ERKS1_:24 + 0: 6 + 15.1: _ZN9oceanbase4palf17LogTaskHeaderInfoaSERKS1_:534 + 5: 6 + 7: 6 + 8: 6 + 9: 6 + 11: 6 + 14: 6 + 15: 6 + 16: 6 + 3: _ZN9oceanbase4palf3LSNaSERKS1_:42 + 2: 6 + 12: _ZN9oceanbase4palf3LSNaSERKS1_:42 + 2: 6 + 16: _ZNK9oceanbase4palf7LogTask6unlockEv:60 + 1: 6 _ZN9oceanbase6common7ObLatch6unlockEPKj:6 + 19: _ZN9oceanbase4palf3LSNC2ERKS1_:90 + 0: 6 + 21: _ZNK9oceanbase4palf3LSN8is_validEv:78 + 2: 6 + 32: _ZNK9oceanbase4palf3LSNgtERKS1_:18 + 2: _ZNK9oceanbase4palf3LSNltERKS1_:18 + 2: 6 +_ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_lEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv:5194:2 + 1: 2 + 3: 2 + 3.1: 2 + 6.1: 313 + 6.3: 313 + 8: 313 + 9.1: 0 + 11: 0 + 12: 0 + 15: 0 + 19: 2 + 22: 2 + 24: 0 + 26: 0 + 3: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringElEENS1_5NLockENS1_5NCondEEEEEbRKT_:34 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringElEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:34 + 2: 2 + 65226: 2 + 10: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_11HashMapPairINS0_8ObStringElEEE16check_magic_codeEv:0 + 0: 0 + 10.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 22: _ZN9oceanbase6common4hash7destroyIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringElEENS1_5NLockENS1_5NCondEEENS0_8ObMallocEEEvRT_RT0_:18 + 2: _ZN9oceanbase6common4hash10do_destroyIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringElEENS1_5NLockENS1_5NCondEEENS0_8ObMallocEEEvRT_NS1_16NormalPointerTagERT0_:18 + 2: 2 + 3: 2 _ZN9oceanbase6common8ObMalloc4freeEPv:2 + 4: 0 +_ZZN9oceanbase5share6schema19ObSchemaGetterGuard18get_schema_versionENS1_12ObSchemaTypeEmmRlENK5$_597clEPKc.bfa63f0f3456173f564c7cf65584fc48:5163:62 + 0: 61 + 0.1: 0 + 0.2: 60 + 0.3: 61 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:61 + 0.4: 0 + 0.12: 0 + 0.15: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:1037 + 2: 61 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.1: _ZN9oceanbase6common7ObLogKVIiLb0EEC2EPKcRKi:0 + 0: 0 + 0.5: _ZN9oceanbase6common7ObLogKVIPKcLb1EEC2ES3_OKS3_:0 + 0: 0 + 0.7: _ZN9oceanbase6common7ObLogKVIRKNS_5share6schema12ObSchemaTypeELb0EEC2EPKcS6_:0 + 0: 0 + 0.9: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 + 0.11: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.14: _ZN9oceanbase6common7ObLogKVIRKPcLb0EEC2EPKcS4_:0 + 0: 0 +_ZN9oceanbase7storage16ObTxDataMemtable13dec_write_refEv:5082:246 + 0: 231 +_ZN9oceanbase3sql10ObInsRtDefD2Ev:5060:263 + 0: 253 + 0.2: _ZN9oceanbase3sql14ObDMLBaseRtDefD2Ev:3542 + 0: 253 +_ZN9oceanbase8keybtree11WriteHandle11split_childEPNS0_9BtreeNodeEiNS_8memtable20ObStoreRowkeyWrapperEPNS4_9ObMvccRowES5_S7_RS3_S8_l:5054:9 + 0: 13 + 2: 13 + 3: 13 _ZN9oceanbase8keybtree18BtreeNodeAllocator10alloc_nodeEb:13 + 4: 9 + 5: 9 + 6: 13 + 9: 13 + 9.1: 13 + 10.1: 9 + 13: 9 _ZN9oceanbase8keybtree9BtreeNode33split_child_cause_recursive_splitEPS1_S2_iNS_8memtable20ObStoreRowkeyWrapperEPNS3_9ObMvccRowES4_S6_l:9 + 18: 7 + 20: 11 + 7.1: _ZN9oceanbase8keybtree11WriteHandle10try_wrlockEPNS0_9BtreeNodeE:673 + 3: 9 + 6.1: 9 + 3: _ZN9oceanbase6common8get_itidEv:252 + 4: 9 + 5: 0 + 6: 0 + 8: 0 + 6.1: _ZNK9oceanbase8keybtree9BtreeNode14is_hold_wrlockEt:63 + 0: _ZNK9oceanbase8keybtree6RWLock14is_hold_wrlockEt:63 + 0: 9 + 8.1: _ZN9oceanbase8keybtree9BtreeNode10try_wrlockEt:72 + 0: _ZN9oceanbase8keybtree6RWLock10try_wrlockEt:72 + 3.1: 4 + 4: 0 + 12.1: 4 + 13: 0 + 11: _ZN9oceanbase6common10HazardList4pushEPNS0_6ObLinkE:246 + 2: 6 + 3: 6 + 4: 0 + 6: 6 + 9: 6 + 9.1: _ZN9oceanbase8keybtree9BtreeNode11is_overflowElPNS0_11MultibitSetE:120 + 0: 13 + 0: _ZNK9oceanbase8keybtree9BtreeNode4sizeEPNS0_11MultibitSetE:55 + 2.3: _ZNK9oceanbase8keybtree11MultibitSet4sizeEv:55 + 0: 11 + 10.1: _ZN9oceanbase8keybtree11WriteHandle10alloc_nodeEv:710 + 3: 6 + 3.1: _ZN9oceanbase8keybtree10ObKeyBtree10alloc_nodeEb:346 + 3: 8 _ZN9oceanbase8keybtree18BtreeNodeAllocator10alloc_nodeEb:6 + 4: _ZN9oceanbase8keybtree9BtreeNode5resetEv:200 + 6: 8 + 2: _ZN9oceanbase8keybtree11MultibitSet5resetEv:104 + 0: 8 + 5: _ZN9oceanbase8keybtree9BtreeNode8set_hostEPv:32 + 0: 8 + 4: _ZN9oceanbase6common10HazardList4pushEPNS0_6ObLinkE:340 + 2: 8 + 3: 8 + 4: 0 + 6: 8 + 9: 9 + 18: _ZN9oceanbase8keybtree9BtreeNode23split_child_no_overflowEPS1_iNS_8memtable20ObStoreRowkeyWrapperEPNS3_9ObMvccRowES4_S6_l:584 + 3: 7 + 4: 7 + 5: 7 + 5.4: 9 _ZN9oceanbase8keybtree9BtreeNode15copy_and_insertERS1_iiiNS_8memtable20ObStoreRowkeyWrapperEPNS3_9ObMvccRowES4_S6_:7 + 4: _ZSt3maxIlERKT_S2_S2_:49 + 5: 7 + 5: _ZNK9oceanbase8keybtree9BtreeNode4sizeEPNS0_11MultibitSetE:49 + 2.4: 7 + 2.3: _ZNK9oceanbase8keybtree11MultibitSet4sizeEv:28 + 0: 7 +_ZN9oceanbase3sql19ObIntIntBatchAddRaw9raw_checkElll:4985:289 + 3: 277 + 6: 0 + 7: 0 + 11.1: 0 + 11.11: 0 + 11.14: 0 + 13: 276 + 3: _ZN9oceanbase3sql9ObExprAdd23is_int_int_out_of_rangeElll:4432 + 9: 277 + 11.1: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 +_ZN9oceanbase8memtable13ObMemtableCtx9trans_endEbl:4935:238 + 3: 235 + 6: 235 _ZN9oceanbase8memtable13ObMemtableCtx12do_trans_endEbli:242 + 8: 235 +_ZN9oceanbase5share19ObTenantSwitchGuardD2Ev:4865:214 + 1: 205 + 2: 205 _ZN9oceanbase5share19ObTenantSwitchGuard7releaseEv:210 + 3: 202 + 3.1: 0 + 3.2: 0 + 3: _ZNSt14_Function_baseD2Ev:1600 + 2: 200 + 3: 0 + 3.2: 0 +_ZN9oceanbase3sql20ObSqlMemMgrProcessor31unregister_profile_if_necessaryEv:4820:253 + 1: 241 + 2: 241 + 3.1: 0 + 4: 0 + 6: 241 + 2: _ZNK9oceanbase3sql20ObSqlMemMgrProcessor15is_unregisteredEv:1687 + 0: 241 + 169: 241 +_ZN9oceanbase5share6schema27ObMultiVersionSchemaService23get_tenant_schema_guardEmRNS1_19ObSchemaGetterGuardEllNS2_17RefreshSchemaModeE:4803:6 + 6: 5 + 7: 5 + 9: 5 + 9.3: 5 + 12: 5 + 13: 5 + 14: 5 + 15: 5 + 16: 5 + 21: 5 + 22: 0 + 23.1: 0 + 24.1: 5 + 25.1: 0 + 26.1: 6 _ZN9oceanbase8observer14global_contextEv:5 + 26.2: 5 _ZNK9oceanbase8observer15ObGlobalContext18is_standby_clusterEv:5 + 26.3: 5 _ZN9oceanbase5share6schema19ObSchemaGetterGuard4initEb:6 + 27.1: 0 + 29: 6 + 32: 0 + 33.1: 6 _ZN9oceanbase5share6schema16ObSchemaStoreMap3getEm:6 + 34: 0 + 35.1: 0 + 36.1: 6 + 37: 0 + 38.1: 0 + 39.1: 6 + 40: 0 + 41.1: 0 + 44: 6 + 44.3: 6 + 47: 6 + 49: 0 + 50: 0 + 52.1: 0 + 55: 6 + 56: 6 + 58.1: 0 + 61: 0 + 63: 5 + 64.1: 8 _ZN9oceanbase5share6schema27ObMultiVersionSchemaService19add_schema_mgr_infoERNS1_19ObSchemaGetterGuardEPNS1_13ObSchemaStoreERKNS1_21ObRefreshSchemaStatusEmllNS2_17RefreshSchemaModeE:5 + 67.1: 0 + 72: 8 + 73: 8 + 74: 8 + 78: 8 + 81.1: 8 + 82: 0 + 83.2: 7 + 84: 8 + 84.1: 7 + 85.1: 0 + 87: 0 + 88: 0 + 89: 0 + 90.1: 0 + 91.1: 0 + 92.1: 0 + 95: 8 + 99: 7 + 107.1: 7 _ZN9oceanbase5share6schema16ObSchemaStoreMap3getEm:7 + 108: 0 + 109.1: 0 + 110.1: 6 + 111.1: 6 + 112: 0 + 113.1: 0 + 117: 6 + 117.3: 6 + 120: 6 + 122: 6 + 123: 6 _ZN9oceanbase5share6schema27ObMultiVersionSchemaService27get_baseline_schema_versionEmbRl:6 + 124: 6 + 125.1: 0 + 128: 5 + 129: 5 + 131.1: 0 + 133: 0 + 136: 5 + 137: 5 + 138.1: 5 + 140.1: 0 + 141.1: 0 + 142.1: 0 + 144: 0 + 145: 0 + 146: 0 + 146.1: 0 + 148.1: 0 + 149.1: 0 + 150: 0 + 151.1: 0 + 153: 0 + 153.1: 0 + 154: 0 + 155: 0 + 156: 0 + 157.1: 0 + 158.1: 0 + 159: 0 + 160.1: 0 + 163: 0 + 166: 5 + 166.2: 5 _ZN9oceanbase5share6schema27ObMultiVersionSchemaService19add_schema_mgr_infoERNS1_19ObSchemaGetterGuardEPNS1_13ObSchemaStoreERKNS1_21ObRefreshSchemaStatusEmllNS2_17RefreshSchemaModeE:5 + 169.1: 0 + 174: 2 + 175: 2 + 179.1: 0 + 181.1: 0 + 182: 0 + 183: 0 + 184: 0 + 185.1: 0 + 186.1: 0 + 187.1: 0 + 188: 0 + 191: 2 + 17: _ZN9oceanbase5share6schema21ObRefreshSchemaStatusC2Ev:95 + 0: 5 + 2: 5 + 18: _ZN9oceanbase5share6schema21ObRefreshSchemaStatusC2Ev:75 + 0: 5 + 2: 5 + 24.1: _ZN9oceanbase5share6schema19ObSchemaGetterGuard10fast_resetEv:75 + 1: 5 + 1.1: 0 + 36.1: _ZNK9oceanbase5share6schema13ObSchemaStore21get_refreshed_versionEv:24 + 0: 6 + 83.1: _ZN9oceanbase5share6schema19ObSchemaGetterGuard18is_standby_clusterEv:72 + 0: 8 + 84.1: _ZN9oceanbase5share6schema27ObMultiVersionSchemaService23check_tenant_is_restoreEPNS1_19ObSchemaGetterGuardEmRb:412 + 5: 8 + 6: 8 + 7: 8 + 8: 0 + 9.1: 0 + 12: 7 + 20.2: 1 _ZN9oceanbase5share6schema19ObSchemaGetterGuard23check_tenant_is_restoreEmRb:1 + 21.1: 0 + 23: 7 + 11.1: _ZN9oceanbase6common14is_meta_tenantEm:155 + 3: 8 + 86.1: _ZN9oceanbase5share6schema19ObSchemaGetterGuard17use_schema_statusEv:176 + 0: 8 + 0: _ZN9oceanbase5share6schema19ObSchemaGetterGuard18is_standby_clusterEv:64 + 0: 8 + 110.1: _ZNK9oceanbase5share6schema13ObSchemaStore21get_refreshed_versionEv:24 + 0: 6 + 138.1: _ZNK9oceanbase5share6schema13ObSchemaStore23get_checked_sys_versionEv:20 + 0: 5 + 142.1: _ZNK9oceanbase5share6schema15ObSchemaMgrInfo14get_schema_mgrEv:0 + 0: 0 +_ZN9oceanbase6common23ObReserveArenaAllocatorILl1024EE5allocEl:4800:250 + 1: 240 + 2: 240 _ZN9oceanbase6common23ObReserveArenaAllocatorILl1024EE5allocElRKNS_3lib9ObMemAttrE:253 +_ZN9oceanbase7storage16ObTxDataMemtable13inc_write_refEv:4760:250 + 0: 238 +_ZN9oceanbase4palf16LogSlidingWindow15after_flush_logERKNS0_13FlushLogCbCtxE:4712:8 + 1: 8 + 2: 8 + 3: 8 + 4: 8 + 6: 8 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:8 + 7.1: 8 _ZZN9oceanbase4palf16LogSlidingWindow15after_flush_logERKNS0_13FlushLogCbCtxEENK5$_173clEPKc.0e4bf25207570af14a78557c8489c4fc:8 + 8: 6 + 9: 0 + 10.2: 6 + 11: 0 + 12.1: 0 + 13.1: 6 + 13.3: 0 + 15.1: 0 + 17.1: 5 + 17.3: 0 + 19.1: 0 + 21.1: 7 _ZNK9oceanbase4palf11LogStateMgr15get_proposal_idEv:7 + 21.2: 7 + 23: 0 + 25: 0 + 25.1: 0 + 26.1: 0 + 29: 0 + 29.1: 0 + 30: 0 + 31.1: 0 + 33.1: 0 + 33.2: 0 + 34: 0 + 35.1: 0 + 39: 0 + 46: 7 + 50: 7 + 50.1: 8 + 51.1: 0 + 58: 5 + 59: 5 _ZN9oceanbase4palf16LogSlidingWindow32inc_update_max_flushed_log_info_ERKNS0_3LSNES4_RKl:7 + 60: 8 _ZNK9oceanbase4palf11LogStateMgr8get_roleEv:9 + 60.1: 9 + 62: 9 _ZN9oceanbase4palf16LogSlidingWindow25try_update_match_lsn_map_ERKNS_6common6ObAddrERKNS0_3LSNE:9 + 65: 9 _ZNK9oceanbase4palf11LogStateMgr16is_leader_activeEv:9 + 65.1: 9 + 69: 8 _ZN9oceanbase4palf16LogSlidingWindow22gen_committed_end_lsn_ERNS0_3LSNE:8 + 70.3: 0 + 70.4: 0 + 72: 0 + 74.1: 0 + 75.1: 0 + 76.1: 0 + 76.2: 0 + 77.1: 0 + 83: 8 + 84: 8 _ZNK9oceanbase4palf16LogSlidingWindow23get_last_submit_log_id_Ev:9 + 85: 9 + 87: 7 + 88: 7 _ZN9oceanbase4palf16LogSlidingWindow23handle_next_submit_log_ERb:7 + 90: 6 _ZN9oceanbase6common11ObTimeGuard5clickEPKc:6 + 92: 5 _ZN9oceanbase4palf16LogSlidingWindow21handle_committed_log_Ev:5 + 93: 7 _ZN9oceanbase6common11ObTimeGuard5clickEPKc:8 + 96.1: 6 _ZZN9oceanbase4palf16LogSlidingWindow15after_flush_logERKNS0_13FlushLogCbCtxEENK5$_183clEPKc.0e4bf25207570af14a78557c8489c4fc:6 + 98: 7 + 99.22: 7 _ZN9oceanbase6common11ObTimeGuardD2Ev:7 + 5: _ZN9oceanbase4palfplERKNS0_3LSNEm:96 + 4: 8 + 3: _ZN9oceanbase4palf3LSNaSERKS1_:32 + 2: 8 + 10.1: _ZNK9oceanbase4palf13FlushLogCbCtx8is_validEv:72 + 0: 6 + 0: _ZNK9oceanbase4palf3LSN8is_validEv:30 + 2: 6 + 0.1: _ZN9oceanbase4palf15is_valid_log_tsEl:30 + 2: 6 + 13.2: _ZNK9oceanbase4palf3LSNgtERKS1_:0 + 2: _ZNK9oceanbase4palf3LSNltERKS1_:0 + 2: 0 + 17.2: _ZNK9oceanbase4palf3LSNgtERKS1_:0 + 2: _ZNK9oceanbase4palf3LSNltERKS1_:0 + 2: 0 + 24: _ZN9oceanbase4palf16LogSlidingWindow12LogTaskGuardC2EPS1_:0 + 0: 0 + 28: _ZNK9oceanbase4palf7LogTask4lockEv:0 + 1: 0 + 29: _ZNK9oceanbase4palf7LogTask8is_validEv:0 + 2: _ZNK9oceanbase4palf15LogSimpleBitMap8test_mapEl:0 + 2: 0 + 33.1: _ZNK9oceanbase4palf7LogTask15get_proposal_idEv:0 + 0: 0 + 41: _ZN9oceanbase4palf7LogTask14set_flushed_tsEl:0 + 2: 0 + 43: _ZNK9oceanbase4palf7LogTask6unlockEv:0 + 1: 0 + 49: _ZN9oceanbase4palf16LogSlidingWindow12LogTaskGuardC2EPS1_:84 + 0: 7 + 50: _ZN9oceanbase4palf16LogSlidingWindow12LogTaskGuard12get_log_taskElRPNS0_7LogTaskE:337 + 2: 7 + 5.1: 7 + 7.1: 8 _ZN9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE3getElRPS2_:7 + 8: 8 + 9: 8 + 5.1: _ZN9oceanbase4palf15is_valid_log_idEl:21 + 2: 7 + 53: _ZN9oceanbase4palf7LogTask14set_flushed_tsEl:56 + 2: 8 + 57: _ZN9oceanbase6common11ObTimeGuardC2EPKcl:322 + 2: 7 + 3: 7 + 4: 7 + 6: 7 + 7: 7 + 8: 7 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:7 + 2: 7 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:7 + 64: _ZN9oceanbase6common11ObTimeGuard5clickEPKc:612 + 3: 9 + 4: 9 + 5: 9 + 6: 9 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:9 + 2: 9 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:9 + 68: _ZN9oceanbase4palf3LSNC2Ev:56 + 2: _ZN9oceanbase4palf3LSN5resetEv:56 + 2: 8 + 74: _ZNK9oceanbase6common6ObAddr8is_validEv:0 + 3: 0 + 4: 0 + 5: 0 + 8.1: 0 + 9.1: 0 + 10: 0 + 13.1: 0 + 13.3: 0 + 14: 0 + 81: _ZN9oceanbase6common11ObTimeGuard5clickEPKc:570 + 3: 8 + 4: 8 + 5: 8 + 6: 8 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:10 + 2: 10 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:10 + 99.24: _ZN9oceanbase6common11ObTimeGuardD2Ev:0 + 2.1: 0 + 3.1: 0 + 2: _ZNK9oceanbase6common11ObTimeGuard8get_diffEv:0 + 2: 0 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 +_ZN9oceanbase7storage8ObTxData12deserialize_EPKclRlRNS_6common12ObSliceAllocE:4666:6 + 4: 6 + 7: 6 _ZN9oceanbase11transaction9ObTransID11deserializeEPKclRl:6 + 8.1: 0 + 9.1: 5 + 10.1: 0 + 11.1: 4 + 12.1: 0 + 13.1: 1 + 14.1: 0 + 15.1: 0 + 16.1: 0 + 17.1: 3 _ZN9oceanbase7storage16ObUndoStatusList11deserializeEPKclRlRNS_6common12ObSliceAllocE:3 + 18.1: 0 + 21: 3 + 9.1: _ZN9oceanbase6common13serialization11decode_vi32EPKclRlPi:230 + 5: 5 + 6.2: 5 + 6.3: 5 + 7: 0 + 11: 0 + 12: 0 + 15: 5 + 18: 5 + 19: 5 + 20: 5 + 11.1: _ZN9oceanbase6common13serialization11decode_vi64EPKclRlPl:2174 + 6: 5 + 6.2: 39 + 6.3: 39 + 7: 39 + 11: 39 + 12: 39 + 15: 4 + 18: 4 + 19: 4 + 20: 4 + 13.1: _ZN9oceanbase6common13serialization11decode_vi64EPKclRlPl:989 + 6: 4 + 6.2: 18 + 6.3: 18 + 7: 18 + 11: 18 + 12: 18 + 15: 1 + 18: 1 + 19: 1 + 20: 1 + 15.1: _ZN9oceanbase6common13serialization11decode_vi64EPKclRlPl:790 + 6: 1 + 6.2: 15 + 6.3: 15 + 7: 15 + 11: 15 + 12: 15 + 15: 2 + 18: 2 + 19: 2 + 20: 2 +_ZN9oceanbase6common9ObKVCacheINS_5share6schema16ObSchemaCacheKeyENS3_18ObSchemaCacheValueEE3getERKS4_RPKS5_RNS0_15ObKVCacheHandleE:4632:48 + 1: 43 + 2: 43 + 3: 43 + 4: 43 + 5: 0 + 6.1: 0 + 8: 43 _ZN9oceanbase6common15ObKVCacheHandle5resetEv:47 + 9: 47 _ZN9oceanbase6common15ObKVGlobalCache12get_instanceEv:47 + 9.1: 41 _ZN9oceanbase6common15ObKVGlobalCache3getElRKNS0_13ObIKVCacheKeyERPKNS0_15ObIKVCacheValueERPNS0_18ObKVMemBlockHandleE:41 + 11.1: 0 + 14: 47 + 20: 47 +_ZN9oceanbase11transaction11ObCtxTxData5resetEv:4620:245 + 1: 231 + 3: 231 + 4: 231 + 5: 231 _ZN9oceanbase7storage14ObTxCommitData5resetEv:259 +_ZN9oceanbase3omt8ObTenant24check_group_worker_countEv:4596:24 + 1: 21 + 7: 9 _ZN9oceanbase3omt15ObResourceGroup18check_worker_countEv:10 + 9: 13 + 5.1: _ZN9oceanbase6common10FixedHash2INS_3omt19ObResourceGroupNodeEE10quick_nextEPS3_:4193 + 1.1: 161 + 1.2: 147 + 2: 161 + 1.1: _ZN9oceanbase6common10FixedHash2INS_3omt19ObResourceGroupNodeEE15quick_next_nodeEPS3_:2217 + 2: 164 + 3: 27 + 4.1: 143 + 1369: 21 + 4.1: _ZN9oceanbase6common15is_last_bit_setEm:429 + 2: 143 + 5: _ZN9oceanbase6common10FixedHash2INS_3omt19ObResourceGroupNodeEE7get_preEPS3_:112 + 0: _ZNK9oceanbase6common10SpHashNode4hashEv:16 + 0: 4 + 0.1: _ZN9oceanbase6common10FixedHash2INS_3omt19ObResourceGroupNodeEE7get_preEm:96 + 0: 4 + 2.1: _ZN9oceanbase6common10SpHashNode8is_dummyEv:1029 + 0: 147 +_ZZN9oceanbase10logservice13ObApplyStatus19try_handle_cb_queueEPNS0_23ObApplyServiceQueueTaskERbENK4$_29clEPKc.d3a41d52a3cfae37a6a74713ee8e7132:4553:72 + 0: 73 + 0.1: 0 + 0.2: 73 + 0.3: 68 _ZN9oceanbase6common8ObLogger13need_to_printEmi:74 + 0.7: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:1156 + 2: 68 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.1: _ZN9oceanbase6common20ObLogPrintPointerCntIPNS_10logservice23ObApplyServiceQueueTaskEEC2ES4_:0 + 0: 0 + 0.4: _ZN9oceanbase6common7ObLogKVINS0_20ObLogPrintPointerCntIPNS_10logservice23ObApplyServiceQueueTaskEEELb1EEC2EPKcOKS6_:0 + 0: 0 + 0.5: _ZN9oceanbase6common20ObLogPrintPointerCntIPNS_10logservice13ObApplyStatusEEC2ES4_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVINS0_20ObLogPrintPointerCntIPNS_10logservice13ObApplyStatusEEELb1EEC2EPKcOKS6_:0 + 0: 0 +_ZN9oceanbase6common15check_from_heapEiRb:4547:59 + 1: 54 + 3: 54 + 4: 54 + 5: 54 + 6: 56 _ZN9oceanbase6common23get_reserved_stack_sizeEv:56 + 6.1: 56 _ZN9oceanbase6common20check_stack_overflowERblPl:59 + 10: 55 + 10.2: 55 + 11: 0 + 14: 55 +_ZN9oceanbase3omt19ObTenantTimezoneMgr25get_tenant_timezone_innerEmRNS_6common11ObTZMapWrapERPNS2_21ObTimeZoneInfoManagerE:4536:12 + 3: 11 + 4: 11 + 6: 11 + 7.1: 9 + 9.1: 0 + 11.1: 9 + 12: 0 + 13.1: 0 + 15.1: 9 _ZN9oceanbase6common11ObTZMapWrap10set_tz_mapEPKNS0_11ObTZInfoMapE:9 + 16.1: 11 + 18: 15 + 19.3: 14 + 19.4: 0 + 6: _ZN9oceanbase6common7DRWLock11RDLockGuardC2ERS1_:1166 + 0: 11 + 2: 12 + 3.1: 0 + 2: _ZN9oceanbase6common7DRWLock6rdlockEv:957 + 2: 11 + 2.1: 11 _ZN9oceanbase6common7ObLatch6rdlockEjl:11 + 2: _ZN9oceanbase6common8get_itidEv:308 + 4: 11 + 5: 0 + 6: 0 + 8: 0 + 7: _ZNK9oceanbase6common4hash9ObHashMapImPNS_3omt16ObTenantTimezoneENS1_19NoPthreadDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS5_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKmRS5_l:951 + 7: _ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS_3omt16ObTenantTimezoneEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKmRS7_l:951 + 5: 12 + 5.1: 12 + 6.1: 0 + 10: 12 + 5: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImPNS_3omt16ObTenantTimezoneEEENS1_5NLockENS1_5NCondEEEEEbRKT_:120 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImPNS_3omt16ObTenantTimezoneEEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:120 + 2: 12 + 18: _ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS_3omt16ObTenantTimezoneEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE32internal_get_with_timeout_unsafeERNS1_17ObHashTableBucketIS7_NS1_5NLockENS1_5NCondEEERKmRPKS7_l:411 + 35: 9 + 6: _ZNK9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS_3omt16ObTenantTimezoneEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE12internal_getERKNS1_17ObHashTableBucketIS7_NS1_5NLockENS1_5NCondEEERKmRPKS7_Rb:402 + 8.1: 12 + 10: 9 + 12: 9 + 9: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_11HashMapPairImPNS_3omt16ObTenantTimezoneEEEE16check_magic_codeEv:27 + 0: 9 + 9.1: _ZL12abort_unlessb:54 + 5: 9 + 6: 0 + 10.1: _ZNK9oceanbase6common4hash8equal_toImEclERKmS5_:36 + 2: 9 + 21: _ZN9oceanbase6common11copy_assignINS0_4hash11HashMapPairImPNS_3omt16ObTenantTimezoneEEEEEiRT_RKS8_:36 + 2: _ZN9oceanbase6common16copy_assign_wrapINS0_4hash11HashMapPairImPNS_3omt16ObTenantTimezoneEEEEEiRT_RKS8_NS0_8BoolTypeILb1EEE:36 + 2: _ZN9oceanbase6common4hash11HashMapPairImPNS_3omt16ObTenantTimezoneEE6assignERKS6_:36 + 5.1: _ZN9oceanbase6common11copy_assignIPNS_3omt16ObTenantTimezoneEEEiRT_RKS5_:36 + 2: _ZN9oceanbase6common16copy_assign_wrapIPNS_3omt16ObTenantTimezoneEEEiRT_RKS5_NS0_8BoolTypeILb0EEE:36 + 2: 9 + 15: _ZN9oceanbase3omt16ObTenantTimezone10get_tz_mapEv:36 + 0: 9 + 16: _ZN9oceanbase3omt16ObTenantTimezone10get_tz_mgrEv:44 + 0: 11 + 19.3: _ZN9oceanbase6common7DRWLock11RDLockGuardD2Ev:1174 + 2: 15 + 3: 15 + 3.1: 14 + 4.1: 0 + 3: _ZN9oceanbase6common7DRWLock8rdunlockEv:870 + 2: 15 + 2.1: 15 _ZN9oceanbase6common7ObLatch6unlockEPKj:15 + 2: _ZN9oceanbase6common8get_itidEv:420 + 4: 15 + 5: 0 + 6: 0 + 8: 0 +_ZN9oceanbase6common4hash11ObHashTableINS_5share6schema16ObSchemaCacheKeyENS1_11HashMapPairIS5_PKNS4_18ObSchemaCacheValueEEENS1_9hash_funcIS5_EENS1_8equal_toIS5_EENS1_10pair_firstISA_EENS1_13SimpleAllocerINS1_15ObHashTableNodeISA_EELi76ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19ReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE32internal_get_with_timeout_unsafeERNS1_17ObHashTableBucketISA_16pthread_rwlock_tNS1_5NCondEEERKS5_RPKSA_l:4527:8 + 4: 8 + 7: 3 + 8: 0 + 10: 0 + 14: 0 + 15: 0 + 16.1: 0 + 20: 0 + 21: 0 + 22.1: 0 + 26.4: 0 + 26.6: 0 + 28: 0 + 30.3: 0 + 35: 3 + 39: 3 + 6: _ZNK9oceanbase6common4hash11ObHashTableINS_5share6schema16ObSchemaCacheKeyENS1_11HashMapPairIS5_PKNS4_18ObSchemaCacheValueEEENS1_9hash_funcIS5_EENS1_8equal_toIS5_EENS1_10pair_firstISA_EENS1_13SimpleAllocerINS1_15ObHashTableNodeISA_EELi76ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19ReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE12internal_getERKNS1_17ObHashTableBucketISA_16pthread_rwlock_tNS1_5NCondEEERKS5_RPKSA_Rb:4157 + 6: 8 + 7: 8 + 8.1: 103 + 10: 107 + 11: 3 + 12: 3 + 14: 3 + 16: 103 + 9: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_11HashMapPairINS_5share6schema16ObSchemaCacheKeyEPKNS5_18ObSchemaCacheValueEEEE16check_magic_codeEv:404 + 0: 101 + 9.1: _ZL12abort_unlessb:606 + 5: 101 + 6: 0 + 10.1: _ZNK9oceanbase6common4hash8equal_toINS_5share6schema16ObSchemaCacheKeyEEclERKS5_S8_:1111 + 2: 101 _ZNK9oceanbase5share6schema16ObSchemaCacheKeyeqERKNS_6common13ObIKVCacheKeyE:103 + 10: _ZN9oceanbase6common4hash25get_cur_microseconds_timeEv:0 + 3: 0 + 4: _ZN9oceanbase6common4hash18tv_to_microsecondsERK7timeval:0 + 2: 0 + 14: _ZN9oceanbase6common4hash25get_cur_microseconds_timeEv:0 + 3: 0 + 4: _ZN9oceanbase6common4hash18tv_to_microsecondsERK7timeval:0 + 2: 0 + 30: _ZN9oceanbase6common4hash11HashMapPairINS_5share6schema16ObSchemaCacheKeyEPKNS4_18ObSchemaCacheValueEEC2Ev:0 + 0: 0 + 0: _ZN9oceanbase5share6schema16ObSchemaCacheKeyC2Ev:0 + 1: 0 + 2: 0 + 4: 0 + 5: 0 +_ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf3LSNENS0_14ShareMemMgrTagEE7do_get_ERKS2_RS4_:4527:19 + 1: 19 + 3: 19 + 4: 19 + 7: 19 + 8: 19 _ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf3LSNENS0_14ShareMemMgrTagEE16load_access_bkt_ERKS2_RmRPNS6_6BucketE:20 + 9: 17 + 10: 17 + 15.1: 0 + 15.3: 0 + 16: 0 + 25: 16 + 27: 16 _ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf3LSNENS0_14ShareMemMgrTagEE17load_factor_ctrl_Em:17 + 28: 23 + 9: _ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf3LSNENS0_14ShareMemMgrTagEE16is_bkt_nonempty_EPKNS6_6BucketE:221 + 2: 17 + 2.1: 17 + 10: _ZN9oceanbase6common5EqualINS0_6ObAddrEEclERKS2_S5_:697 + 4.3: _ZNK9oceanbase6common6ObAddreqERKS1_:697 + 2: 17 + 2.1: 17 + 2.2: 17 + 11: _ZN9oceanbase4palf3LSNaSERKS1_:136 + 2: 17 + 17: _ZN9oceanbase4palf3LSNaSERKS1_:0 + 2: 0 + 25: _ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf3LSNENS0_14ShareMemMgrTagEE18unload_access_bkt_EPNS6_6BucketES8_:1456 + 3.1: 0 + 5: _ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf3LSNENS0_14ShareMemMgrTagEE13set_bkt_lock_EPNS6_6BucketEb:176 + 24: 16 + 6: _ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf3LSNENS0_14ShareMemMgrTagEE15unload_haz_seg_EPNS6_6BucketE:1280 + 2: 16 + 2: _ZN9oceanbase6common13ObExternalRef7releaseEPv:1168 + 1: 16 + 2: _ZN9oceanbase6common13ObExternalRef4xrefEPvi:1088 + 0: 16 + 0: _ZN9oceanbase6common13ObExternalRef6locateEPv:1008 + 0: 16 + 0: _ZN9oceanbase6common13ObExternalRef4hashEm:912 + 1: 16 + 2: 16 + 3: 16 + 4: 16 + 5: 16 +_ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE3getERKS3_RPS4_:4452:33 + 1: 32 + 3: 32 + 4: 32 _ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE18get_retire_stationEv:33 + 5.1: 34 _ZN9oceanbase6common6DCHashINS_4palf5LSKeyELl8EE3getERKS3_RPNS0_11KeyHashNodeIS3_EE:35 + 5.2: 15 + 8: 15 + 12: 15 + 16.2: 15 + 4.1: _ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE5GuardC2ERNS0_13RetireStationE:902 + 0: _ZN9oceanbase6common9RefHandleC2ERNS0_13RetireStationE:544 + 0: _ZN9oceanbase6common13BaseRefHandleC2ERNS0_13RetireStationE:544 + 0: _ZN9oceanbase6common17get_global_qclockEv:544 + 2: 32 + 2.1: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common6QClockC2Ev:0 + 0: 0 + 0.1: _ZN9oceanbase6common6QClock9ClockSlotC2Ev:0 + 0: 0 + 0.4: _ZN9oceanbase6common13BaseRefHandle14enter_criticalEv:358 + 0: 34 _ZN9oceanbase6common6QClock14enter_criticalEv:36 + 9: _ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE11try_inc_refEPNS0_12LinkHashNodeIS3_EE:495 + 6.1: 15 + 7: 0 + 4: _ZN9oceanbase6common9RefHandle3incEPNS0_7RefNodeE:420 + 0: _ZN9oceanbase6common15faa_if_positiveEPii:420 + 2: 15 + 4.1: 15 + 4.2: 15 + 4.3: 15 + 6.1: _ZN9oceanbase6common15is_last_bit_setEm:45 + 2: 15 + 16.2: _ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE5GuardD2Ev:525 + 0: _ZN9oceanbase6common13BaseRefHandle14leave_criticalEv:525 + 0: _ZN9oceanbase6common6QClock14leave_criticalEm:525 + 1: 15 + 2: _ZN9oceanbase6common6QClock6locateEm:210 + 0: 15 + 2.1: _ZN9oceanbase6common6QClock9ClockSlot11clear_clockEv:225 + 0: 15 + 16.3: _ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE5GuardD2Ev:0 + 0: _ZN9oceanbase6common13BaseRefHandle14leave_criticalEv:0 + 0: _ZN9oceanbase6common6QClock14leave_criticalEm:0 + 1: 0 + 2: _ZN9oceanbase6common6QClock6locateEm:0 + 0: 0 + 2.1: _ZN9oceanbase6common6QClock9ClockSlot11clear_clockEv:0 + 0: 0 +_ZN9oceanbase11transaction9tablelock17ObOBJLockCallback3delEv:4430:751 + 1: 735 + 5: 735 _ZN9oceanbase8memtable16ObITransCallback6removeEv:770 +_ZNK9oceanbase3sql6ObStmt19has_global_variableEv:4400:560 + 0: 550 +_ZN9oceanbase4palf13LogLoopThread9log_loop_Ev:4395:0 + 1: 0 + 4.1: 38 + 5: 38 + 6: 38 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:38 + 8: 31 + 9: 6 _ZN9oceanbase4palf11PalfEnvImpl24try_switch_state_for_allEv:3 + 10.1: 0 + 15: 34 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:37 + 16: 29 + 17: 29 _ZN9oceanbase4palf11PalfEnvImpl22try_freeze_log_for_allEv:29 + 18.1: 0 + 22: 28 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:28 + 23: 9 + 24: 9 + 27: 9 + 29: 38 + 29.1: 0 + 29.3: 0 + 29.4: 38 _ZN9oceanbase6common14ObTscTimestamp12current_timeEv:37 + 30.1: 0 + 33: 0 + 29: _ZN9oceanbase6common14ObTscTimestamp12get_instanceEv:629 + 2: 37 + 2.1: 0 + 2.3: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common14ObTscTimestampC2Ev:0 + 1: 0 +_ZN9oceanbase8memtable18ObTransCallbackMgr14set_for_replayEb:4389:242 + 1: 231 + 2: 231 + 3: 231 + 4: 0 + 6: 231 +_ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf3LSNENS0_14ShareMemMgrTagEE17load_factor_ctrl_Em:4387:29 + 1: 29 + 7: 29 + 8: 0 + 11: 30 + 12: 0 + 13.1: 30 + 14: 30 _ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf3LSNENS0_14ShareMemMgrTagEE7shrink_Ev:30 + 17: 0 + 6: _ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf3LSNENS0_14ShareMemMgrTagEE14get_thread_id_Ev:812 + 2: _ZN9oceanbase6common8get_itidEv:812 + 4: 29 + 5: 0 + 6: 0 + 8: 0 + 7: _ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf3LSNENS0_14ShareMemMgrTagEE5Cnter15op_and_test_lmtEll:2059 + 5: 29 + 8: 29 + 10: 29 + 11: 29 +_ZNK9oceanbase5share6schema16ObSchemaCacheKeyeqERKNS_6common13ObIKVCacheKeyE:4383:148 + 1: 143 + 3: 143 + 3.1: 148 + 4: 143 + 4.1: 113 + 5: 113 + 5.1: 54 + 6: 54 + 6.1: 49 +_ZN9oceanbase10logservice12AppendCbBase20__get_member_addressEPNS0_8AppendCbE:4352:271 + 1: 256 + 2: 256 + 2.3: 256 +_ZN9oceanbase4palf16LogSlidingWindow22gen_committed_end_lsn_ERNS0_3LSNE:4291:8 + 1: 8 + 2: 8 + 4: 7 + 6: 7 _ZNK9oceanbase4palf12LogConfigMgr23get_paxos_log_sync_listERNS_6common16ObMemberListBaseILl7EEE:9 + 6.1: 9 + 7.1: 0 + 8.1: 9 _ZNK9oceanbase4palf12LogConfigMgr30get_paxos_log_sync_replica_numERl:10 + 8.2: 8 + 9.1: 0 + 10.1: 8 _ZNK9oceanbase4palf16LogSlidingWindow17get_majority_lsn_ERKNS_6common16ObMemberListBaseILl7EEElRNS0_3LSNE:8 + 10.2: 10 + 11.1: 0 + 13: 10 _ZN9oceanbase4palf16LogSlidingWindow26try_advance_committed_lsn_ERKNS0_3LSNE:11 + 16: 8 + 17.5: 8 + 3: _ZN9oceanbase6common16ObMemberListBaseILl7EEC2Ev:3077 + 1: 8 + 7.1: 63 _ZN9oceanbase6common8ObMemberC1Ev:7 + 5: _ZN9oceanbase4palf3LSNC2Ev:56 + 2: _ZN9oceanbase4palf3LSN5resetEv:56 + 2: 7 + 14: _ZN9oceanbase4palf3LSNaSERKS1_:56 + 2: 8 +_ZN9oceanbase11transaction12ObLSTxCtxMgr22check_scheduler_statusEv:4272:0 + 1: 0 + 2: 0 + 4: 0 + 8: 0 + 8.1: 0 + 9.1: 0 + 12: 0 + 13.4: 0 + 3: _ZN9oceanbase6common11ObTimeGuardC2EPKcl:0 + 2: 0 + 3: 0 + 4: 0 + 6: 0 + 8: 0 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 5: _ZN9oceanbase6common11ObTimeGuard5clickEPKc:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 8: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE8for_eachINS0_39IteratePartCtxAskSchedulerStatusFunctorEEEiRT_:4272 + 3.1: 162 + 3.3: 162 + 4: 168 _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE22for_each_in_one_bucketINS0_39IteratePartCtxAskSchedulerStatusFunctorEEEiRT_l:190 + 13.4: _ZN9oceanbase6common12TCRLockGuardD2Ev:0 + 2: 0 + 3: 0 + 3.1: 0 + 3.2: 0 + 3: _ZN9oceanbase6common8TCRWLock8rdunlockEl:0 + 3: 0 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:0 + 0: 0 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPil:0 + 2: 0 + 2.1: 0 + 3: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:0 + 2: 0 + 2.1: 0 + 3: 0 + 13.6: _ZN9oceanbase6common12TCRLockGuardD2Ev:0 + 2: 0 + 3: 0 + 3.1: 0 + 3.2: 0 + 3: _ZN9oceanbase6common8TCRWLock8rdunlockEl:0 + 3: 0 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:0 + 0: 0 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPil:0 + 2: 0 + 2.1: 0 + 3: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:0 + 2: 0 + 2.1: 0 + 3: 0 + 13.7: _ZN9oceanbase6common11ObTimeGuardD2Ev:0 + 2.1: 0 + 2.2: 0 + 3.1: 0 + 3.5: 0 + 2: _ZNK9oceanbase6common11ObTimeGuard8get_diffEv:0 + 2: 0 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 13.9: _ZN9oceanbase6common11ObTimeGuardD2Ev:0 + 2.1: 0 + 2.2: 0 + 3.1: 0 + 3.5: 0 + 2: _ZNK9oceanbase6common11ObTimeGuard8get_diffEv:0 + 2: 0 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 +_ZN9oceanbase4palf14PalfHandleImpl22check_and_switch_stateEv:4221:9 + 1: 9 + 2: 9 + 3: 9 + 4: 0 + 6: 9 + 8: 9 + 9: 9 _ZN9oceanbase4palf11LogStateMgr16is_state_changedEv:9 + 9.1: 6 + 11: 6 + 13: 0 + 13.1: 0 + 14.1: 0 + 16.1: 0 + 17: 0 + 17.1: 0 + 20: 6 _ZN9oceanbase4palf12LogConfigMgr19leader_do_loop_workEv:6 + 20.1: 10 + 21.1: 0 + 26.1: 0 + 27: 0 + 29: 0 + 30.1: 0 + 31: 13 _ZN9oceanbase4palf24palf_reach_time_intervalElRl:13 + 33.1: 0 + 33.2: 0 + 33.4: 0 + 36: 0 + 36.1: 0 + 39: 11 + 8: _ZN9oceanbase6common8TCRWLock10RLockGuardC2ERS1_:72 + 0: 9 _ZN9oceanbase6common8TCRWLock6rdlockEl:9 + 10: _ZN9oceanbase6common8TCRWLock10RLockGuardD2Ev:942 + 0: 6 + 0: _ZN9oceanbase6common8TCRWLock8rdunlockEv:918 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:24 + 0: 6 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPi:786 + 2: 6 + 4.1: 6 + 4.2: 0 + 6: 6 + 6.1: 6 + 10: 6 + 2: _ZN9oceanbase6common8get_itidEv:168 + 4: 6 + 5: 0 + 6: 0 + 8: 0 + 11: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:66 + 2: 6 + 2.1: 0 + 3: 0 + 12: _ZN9oceanbase6common8TCRWLock10WLockGuardC2ERS1_:0 + 0: 0 + 19: _ZN9oceanbase6common8TCRWLock10RLockGuardC2ERS1_:84 + 0: 6 _ZN9oceanbase6common8TCRWLock6rdlockEl:6 + 23: _ZN9oceanbase6common8TCRWLock10RLockGuardD2Ev:1560 + 0: _ZN9oceanbase6common8TCRWLock8rdunlockEv:1560 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:40 + 0: 10 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPi:1300 + 2: 10 + 4.1: 10 + 4.2: 0 + 6: 10 + 6.1: 10 + 10: 10 + 2: _ZN9oceanbase6common8get_itidEv:280 + 4: 10 + 5: 0 + 6: 0 + 8: 0 + 11: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:150 + 2: 10 + 2.1: 0 + 3: 0 + 23.2: _ZN9oceanbase6common8TCRWLock10RLockGuardD2Ev:0 + 0: _ZN9oceanbase6common8TCRWLock8rdunlockEv:0 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:0 + 0: 0 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPi:0 + 2: 0 + 4.1: 0 + 4.2: 0 + 6: 0 + 6.1: 0 + 10: 0 + 2: _ZN9oceanbase6common8get_itidEv:0 + 4: 0 + 5: 0 + 6: 0 + 8: 0 + 11: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:0 + 2: 0 + 2.1: 0 + 3: 0 + 24: _ZN9oceanbase4palf24palf_reach_time_intervalElRl:286 + 3: 12 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:10 + 5: 0 + 25: _ZN9oceanbase6common8TCRWLock10RLockGuardC2ERS1_:0 + 0: 0 + 26: _ZNK9oceanbase4palf11LogStateMgr18is_follower_activeEv:0 + 0: _ZNK9oceanbase4palf11LogStateMgr19is_follower_active_Ev:0 + 2: _ZNK9oceanbase4palf11LogStateMgr21check_role_and_state_ERKNS_6common6ObRoleERKNS0_14ObReplicaStateE:0 + 3: 0 + 4: 0 + 32: _ZN9oceanbase6common8TCRWLock10RLockGuardC2ERS1_:0 + 0: 0 + 36: _ZNK9oceanbase4palf16LogSlidingWindow12get_start_idEv:0 + 2: _ZNK9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE12get_begin_snEv:0 + 0: 0 + 37: _ZN9oceanbase6common8TCRWLock10RLockGuardD2Ev:0 + 0: 0 + 0: _ZN9oceanbase6common8TCRWLock8rdunlockEv:0 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:0 + 0: 0 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPi:0 + 2: 0 + 4.1: 0 + 4.2: 0 + 6: 0 + 6.1: 0 + 10: 0 + 2: _ZN9oceanbase6common8get_itidEv:0 + 4: 0 + 5: 0 + 6: 0 + 8: 0 + 11: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:0 + 2: 0 + 2.1: 0 + 3: 0 +_ZN9oceanbase3lib17ObTenantMemoryMgr10free_chunkEPNS0_6AChunkERKNS0_9ObMemAttrE:4208:23 + 1: 22 + 2: 22 + 3.1: 0 + 4.1: 22 + 5: 22 + 7: 22 _ZN9oceanbase3lib17ObTenantMemoryMgr11update_holdElmRKNS0_7ObLabelERb:23 + 8: 19 + 13: 23 + 6: _ZNK9oceanbase3lib6AChunk4holdEPm:858 + 2: 22 + 2: _ZN9oceanbase3lib6AChunk9calc_holdEllPm:682 + 3: 22 + 3.2: 0 + 2: _ZN9oceanbase3lib9align_up2Emm:418 + 2: 22 + 3.4: _ZN9oceanbase3lib9align_up2Emm:0 + 2: 0 + 8: _ZNK9oceanbase3lib7ObLabeleqIA14_cEEbRKT_:381 + 2.1: 18 _ZNK9oceanbase3lib7ObLabeleqERKS1_:20 + 2: _ZN9oceanbase3lib7ObLabelC2IA14_cEERKT_:252 + 2: _ZN9oceanbase3lib7ObLabelaSILm14EEERS1_RAT__Kc:252 + 4: 18 + 9: _ZN9oceanbase3lib17ObTenantMemoryMgr17update_cache_holdEl:0 + 3: 0 + 4: 0 + 11: _ZN9oceanbase3lib17ObTenantMemoryMgr11free_chunk_EPNS0_6AChunkERKNS0_9ObMemAttrE:684 + 2: 19 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 3.1: 0 + 5.1: 19 _ZN9oceanbase3lib9AChunkMgr10free_chunkEPNS0_6AChunkE:21 +_ZN9oceanbase4palf16LogSlidingWindow31try_push_log_to_paxos_follower_EllRKNS0_3LSNES4_RKNS0_11LogWriteBufE:4198:8 + 5: 7 + 6: 7 + 8: 8 _ZNK9oceanbase4palf11LogStateMgr16is_leader_activeEv:8 + 9: 8 + 11.1: 8 _ZNK9oceanbase4palf12LogConfigMgr23get_paxos_log_sync_listERNS_6common16ObMemberListBaseILl7EEE:8 + 11.2: 7 + 12.1: 0 + 13.1: 7 _ZN9oceanbase6common16ObMemberListBaseILl7EE13remove_serverERKNS0_6ObAddrE:9 + 13.2: 10 + 14.1: 0 + 15.2: 0 + 15.3: 0 + 16: 10 + 16.1: 0 + 16.2: 0 + 18.1: 0 + 22: 10 + 23.5: 10 + 7: _ZN9oceanbase6common16ObMemberListBaseILl7EEC2Ev:3136 + 1: 7 + 7.1: 70 _ZN9oceanbase6common8ObMemberC1Ev:8 + 15.1: _ZNK9oceanbase6common16ObMemberListBaseILl7EE8is_validEv:80 + 2: 10 +_ZNK9oceanbase4palf16LogSlidingWindow17get_majority_lsn_ERKNS_6common16ObMemberListBaseILl7EEElRNS0_3LSNE:4194:8 + 3: 8 + 4: 8 + 9: 8 + 12.1: 12 + 12.3: 20 + 12.4: 20 + 12.6: 12 + 15.1: 8 + 17.2: 11 + 19.1: 0 + 21: 12 + 23.1: 11 _ZZNK9oceanbase4palf16LogSlidingWindow17get_majority_lsn_ERKNS_6common16ObMemberListBaseILl7EEElRNS0_3LSNEENK5$_271clEPKc.0e4bf25207570af14a78557c8489c4fc:11 + 26.4: 0 + 28: 12 + 29: 12 + 31: 10 + 32.1: 10 + 33: 0 + 34.1: 0 + 37: 10 + 38.14: 10 + 6.1: _ZN9oceanbase4palf3LSNC2Ev:312 + 2: _ZN9oceanbase4palf3LSN5resetEv:312 + 2: 8 + 9: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEEC2ERS3_:304 + 1: 8 + 2: 8 + 4: 8 + 5.1: 0 + 6: 0 + 4: _ZN9oceanbase6common10ObSpinLock4lockEv:144 + 2: 8 _ZN9oceanbase6common12ObLatchMutex4lockEjl:8 + 10: _ZN9oceanbase6common6ObAddrC2Ev:184 + 1: 8 + 11: _ZN9oceanbase4palf3LSNC2Ev:64 + 2: _ZN9oceanbase4palf3LSN5resetEv:64 + 2: 8 + 13: _ZN9oceanbase6common6ObAddr5resetEv:42 + 2: 6 + 14: _ZN9oceanbase4palf3LSN5resetEv:48 + 2: 6 + 15: _ZNK9oceanbase6common16ObMemberListBaseILl7EE19get_server_by_indexElRNS0_6ObAddrE:216 + 7: 6 _ZNK9oceanbase6common8ObMember10get_serverEv:8 + 7.1: _ZN9oceanbase6common6ObAddraSERKS1_:192 + 1: 8 + 2: 8 + 3: 8 + 17.1: _ZNK9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf3LSNENS0_14ShareMemMgrTagEE3getERKS2_RS4_:72 + 2: 8 _ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf3LSNENS0_14ShareMemMgrTagEE7do_get_ERKS2_RS4_:8 + 22: _ZN9oceanbase4palf3LSNaSERKS1_:132 + 2: 11 + 26.6: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEED2Ev:264 + 2: 12 + 3: 12 + 3.1: 12 + 4.1: 0 + 3: _ZN9oceanbase6common10ObSpinLock6unlockEv:12 + 2: 12 _ZN9oceanbase6common12ObLatchMutex6unlockEv:12 + 29.1: _ZSt4sortIPN9oceanbase4palf3LSNENS1_10LSNCompareEEvT_S5_T0_:12 + 11.1: 12 _ZSt6__sortIPN9oceanbase4palf3LSNEN9__gnu_cxx5__ops15_Iter_comp_iterINS1_10LSNCompareEEEEvT_S9_T0_:12 + 31: _ZN9oceanbase4palf3LSNaSERKS1_:180 + 2: 10 + 32: _ZNK9oceanbase4palf3LSN8is_validEv:40 + 2: 10 +_ZN9oceanbase12blocksstable10ObDatumRow4initEl:4176:71 + 1: 69 + 2: 69 + 4: 0 + 5: 0 + 6.1: 0 + 7.1: 69 + 7.3: 69 + 8: 0 + 9.1: 0 + 11: 72 _ZN9oceanbase12blocksstable10ObDatumRow4initERNS_6common12ObIAllocatorEl:72 + 14: 72 + 4: _ZNK9oceanbase12blocksstable10ObDatumRow8is_validEv:690 + 0: 69 + 0.1: 0 +_ZN9oceanbase6common6DCHashINS_11transaction9ObTransIDELl8EE6HandleD2Ev:4166:252 + 0: 248 _ZN9oceanbase6common6DCHashINS_11transaction9ObTransIDELl8EE6Handle6retireEil:247 + 0.1: 217 + 0.2: 1 +_ZN9oceanbase6common6number8ObNumber15round_scale_v3_ElbbPsS3_:4139:13 + 3: 13 + 18: 13 + 22: 13 + 23: 11 + 25: 11 + 27: 11 + 29: 11 + 32: 11 + 34: 11 + 34.4: 11 + 38: 11 + 39: 0 + 41: 0 + 48: 0 + 49: 0 + 49.3: 0 + 51: 0 + 51.3: 0 + 53: 0 + 54: 0 + 57: 0 + 58: 0 + 59: 0 + 60: 0 + 60.3: 0 + 61: 0 + 63: 0 + 65: 0 + 66: 0 + 67: 0 + 68.1: 0 + 70: 0 + 72: 0 + 73: 0 + 75: 0 + 76: 0 + 81: 0 + 82: 0 + 82.3: 0 + 83: 0 + 83.6: 0 + 88: 0 + 88.3: 0 + 88.9: 0 + 89: 0 + 89.3: 0 + 91.1: 0 + 93: 0 + 97: 0 + 102: 0 + 106: 0 + 107.1: 0 + 107.6: 0 + 112: 0 + 113: 0 + 115.1: 0 + 124: 11 + 134: 11 + 136: 11 + 137: 11 + 140.1: 0 + 141: 0 + 149: 0 + 150: 0 + 151: 0 + 154.1: 0 + 156: 0 + 157: 0 + 158: 0 + 159: 0 + 161.1: 0 + 162: 0 + 168: 0 + 169: 0 + 170: 0 + 173: 0 + 175.1: 0 + 176: 0 + 180: 0 + 181: 0 + 181.1: 0 + 189: 0 + 190: 0 + 191: 0 + 192: 0 + 194: 0 + 195: 0 + 196: 0 + 198: 0 + 199: 0 + 200: 0 + 201: 0 + 201.1: 0 + 201.2: 0 + 201.3: 0 + 207: 0 + 212: 0 + 214.1: 0 + 215: 0 + 216: 0 + 219: 0 + 224: 0 + 225: 0 + 227: 0 + 228: 0 + 230: 0 + 233: 0 + 239: 11 + 18: _ZNK9oceanbase6common6number8ObNumber7is_zeroEv:39 + 2: 13 + 22: _ZN9oceanbase6common6number8ObNumber16get_digit_len_v2Ej:113 + 3: 13 + 4.1: 0 + 6: 13 _ZN9oceanbase6common16ob_fast_digits10Em:13 + 23: _ZN9oceanbase6common6number8ObNumber14get_decode_expERK12ObNumberDesc:330 + 2: 11 + 38: _ZN9oceanbase3lib14is_oracle_modeEv:484 + 2: 11 + 2: _ZN9oceanbase3lib15get_compat_modeEv:451 + 2: 11 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:275 + 2: 11 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 48: _ZNK9oceanbase6common6number8ObNumber11is_negativeEv:0 + 2: 0 + 49: _ZNK9oceanbase6common6number8ObNumber11has_decimalEv:0 + 3: 0 + 3.1: 0 + 58: _ZN9oceanbase6common6number8ObNumber16remove_back_zeroEjRl:0 + 4.1: 0 + 5: 0 + 7: 0 + 181.1: _ZN9oceanbase6common6number8ObNumber14get_decode_expERK12ObNumberDesc:0 + 2: 0 + 182: _ZN9oceanbase6common6number8ObNumber7set_oneEv:0 + 6: 0 + 7: 0 + 8: 0 +_ZZN9oceanbase4palf16LogSlidingWindow21handle_committed_log_EvENK5$_135clEPKc.0e4bf25207570af14a78557c8489c4fc:4137:58 + 0: 55 + 0.1: 2 + 0.2: 53 + 0.3: 55 _ZN9oceanbase6common8ObLogger13need_to_printEmi:54 + 0.9: 2 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:1131 + 2: 55 + 2.1: 2 + 2.2: 2 + 2.3: 2 + 2.4: 2 + 2.6: 2 + 0.4: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:66 + 0: 2 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS0_6ObAddrELb0EEC2EPKcS4_:66 + 0: 2 + 0.8: _ZN9oceanbase6common7ObLogKVIRKNS_4palf3LSNELb0EEC2EPKcS5_:66 + 0: 2 +_ZThn664_N9oceanbase11transaction14ObPartTransCtx18set_upstream_stateENS0_9ObTxStateE:4125:281 + 2: 275 +_ZN9oceanbase5share12ObEnumSysVarC2EPPKcPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSF_EPFiS7_SA_SD_SH_EPFiRNSE_12ObIAllocatorERKNS5_18ObBasicSessionInfoESD_SI_EPFiSO_SR_SD_RNSE_8ObStringEEPFNSE_9ObObjTypeEvE:4085:14 + 13: 14 + 14: 14 + 6: _ZN9oceanbase5share15ObTypeLibSysVarC2EPPKcPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSF_EPFiS7_SA_SD_SH_EPFiRNSE_12ObIAllocatorERKNS5_18ObBasicSessionInfoESD_SI_EPFiSO_SR_SD_RNSE_8ObStringEEPFNSE_9ObObjTypeEvEb:3622 + 14: 13 + 7: _ZN9oceanbase5share13ObBasicSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKS1_RKNS_6common5ObObjERSB_EPFiS4_S7_S9_SD_EPFiRNSA_12ObIAllocatorERKNS2_18ObBasicSessionInfoES9_SE_EPFiSK_SN_S9_RNSA_8ObStringEEPFNSA_9ObObjTypeEvEb:1703 + 11: 13 + 12: 13 + 13: 13 + 14: 13 + 15: 13 + 16: 13 + 17: 13 + 18: 13 + 20: _ZN9oceanbase5share13ObBasicSysVar11clean_valueEv:1118 + 2: _ZN9oceanbase5share13ObBasicSysVar16clean_base_valueEv:312 + 2: 13 + 3: _ZN9oceanbase6common5ObObj13set_nop_valueEv:208 + 2: _ZN9oceanbase6common5ObObj7set_extEl:208 + 4: 13 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:104 + 0: 13 + 3: _ZN9oceanbase5share13ObBasicSysVar15clean_inc_valueEv:273 + 2: _ZN9oceanbase6common5ObObj13set_nop_valueEv:273 + 2: _ZN9oceanbase6common5ObObj7set_extEl:273 + 4: 13 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:104 + 0: 13 + 4: _ZN9oceanbase6common5ObObj5resetEv:156 + 6: 13 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:52 + 0: 13 + 5: _ZN9oceanbase6common5ObObj5resetEv:377 + 5: 13 + 6: 13 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:52 + 0: 13 + 3: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:78 + 0: 13 + 4: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:52 + 0: 13 + 13: _ZN9oceanbase5share15ObSysVarTypeLibC2EPPKc:1737 + 2: 13 + 3: 13 + 4: 13 + 5.1: 0 + 8.1: 75 + 8.3: 75 + 9: 14 +_ZN9oceanbase6common19obj_print_plain_strILNS0_9ObObjTypeE22EEEiRKNS0_5ObObjEPclRlRKNS0_16ObObjPrintParamsE:4066:36 + 0: 38 + 0.1: 38 + 0.3: 38 + 0.7: 0 + 0.9: 0 + 0.11: 0 + 0.12: 38 _ZN9oceanbase6common9ObCharset20charset_type_by_collENS0_15ObCollationTypeE:35 + 0.13: 38 _ZN9oceanbase6common9ObCharset20charset_type_by_collENS0_15ObCollationTypeE:39 + 0.15: 0 + 0.17: 38 _ZN9oceanbase6common15databuff_printfEPclRlPKcz:38 + 0.20: 0 + 0: _ZNK9oceanbase6common5ObObj18get_collation_typeEv:136 + 0: _ZNK9oceanbase6common9ObObjMeta18get_collation_typeEv:136 + 0: 34 + 0.7: _ZNK9oceanbase6common5ObObj18get_collation_typeEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta18get_collation_typeEv:0 + 0: 0 + 0.14: _ZNK9oceanbase6common5ObObj14get_string_ptrEv:0 + 0: 0 + 0.16: _ZNK9oceanbase6common5ObObj14get_string_ptrEv:152 + 0: 38 + 0.18: _ZNK9oceanbase6common5ObObj14get_string_ptrEv:0 + 0: 0 + 0.19: _ZNK9oceanbase6common5ObObj14get_string_lenEv:0 + 0: 0 +_ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE18get_retire_stationEv:4026:125 + 0: 122 + 1: 122 + 1.1: 0 + 1.2: 0 + 1.5: 0 + 1.7: 0 + 2: 122 + 1.3: _ZN9oceanbase6common13RetireStationC2ERNS0_6QClockEl:0 + 0.2: 0 + 1: 0 + 0.1: _ZN9oceanbase6common13RetireStation10RetireListC2Ev:0 + 0: 0 + 0: _ZN9oceanbase6common10HazardListC2Ev:0 + 0: 0 + 0.4: _ZN9oceanbase6common10HazardListC2Ev:0 + 0: 0 +_ZN9oceanbase3sql14ObStmtResolver9init_stmtEv:4024:513 + 0: 503 +_ZN9oceanbase3lib18MySimpleThreadPool6handleEPv:4009:216 + 1: 211 + 2: 211 _ZN9oceanbase10logservice17ObLogApplyService6handleEPv:212 _ZN9oceanbase4palf21LogIOTaskCbThreadPool6handleEPv:10 +_ZN9oceanbase6common6number8ObNumber10TAllocatorINS_3sql19ObNumStackAllocatorILl2EEEE5allocEl:3961:242 + 0: 233 _ZN9oceanbase6common12ObDataBuffer5allocEl:243 +_ZN9oceanbase10rootserver15ObServerManager13check_serversEv:3906:0 + 1: 0 + 2: 0 + 6: 0 + 8: 0 + 9: 0 + 10.1: 0 + 11.1: 0 + 11.2: 0 + 12.1: 0 + 13.1: 0 + 13.2: 0 + 14.1: 0 + 16: 0 + 17: 0 + 17.1: 0 + 18.1: 0 + 18.3: 0 + 18.4: 0 + 18.6: 0 + 19.1: 0 + 21: 0 + 21.1: 0 + 24: 0 + 34: 0 + 34.1: 0 + 37: 0 + 41: 0 + 41.1: 0 + 43: 0 + 44: 0 + 45.1: 0 + 45.2: 0 + 47: 0 + 48.1: 0 + 51: 0 + 51.1: 0 + 52: 0 + 53.1: 0 + 55.1: 0 + 59: 0 + 59.1: 0 + 60: 0 + 60.1: 0 + 62: 0 + 63: 0 + 63.1: 0 + 64.1: 0 + 65.1: 0 + 65.2: 0 + 66.1: 0 + 68: 0 + 68.1: 0 + 69: 0 + 70.1: 0 + 73.1: 0 + 75: 0 + 76: 0 + 76.1: 0 + 76.2: 0 + 79: 0 + 79.1: 0 + 79.2: 0 + 87: 0 + 87.1: 0 + 88.2: 0 + 89: 0 + 89.1: 0 + 89.3: 0 + 90.1: 0 + 93: 0 + 95: 0 + 96: 0 + 96.1: 0 + 97.1: 0 + 98.1: 0 + 98.2: 0 + 99.1: 0 + 101: 0 + 101.1: 0 + 101.2: 0 + 102.1: 0 + 105.1: 0 + 110: 0 + 110.1: 0 + 111: 0 + 112.25: 0 + 112.26: 0 + 19: _ZN9oceanbase6common11ObArrayImplINS_5share14ObServerStatusENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEEixEl:0 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_5share14ObServerStatusEE2atEl:0 + 6: 0 + 41: _ZN9oceanbase6common11ObArrayImplINS_5share14ObServerStatusENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEEixEl:0 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_5share14ObServerStatusEE2atEl:0 + 6: 0 + 59: _ZN9oceanbase6common11ObArrayImplINS_5share14ObServerStatusENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEEixEl:0 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_5share14ObServerStatusEE2atEl:0 + 6: 0 + 60: _ZN9oceanbase6common11ObArrayImplINS_5share14ObServerStatusENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEEixEl:0 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_5share14ObServerStatusEE2atEl:0 + 6: 0 + 68: _ZN9oceanbase6common11ObArrayImplINS_5share14ObServerStatusENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEEixEl:0 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_5share14ObServerStatusEE2atEl:0 + 6: 0 + 76.1: _ZN9oceanbase6common11ObArrayImplINS_5share14ObServerStatusENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEEixEl:0 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_5share14ObServerStatusEE2atEl:0 + 6: 0 + 79.1: _ZN9oceanbase6common11ObArrayImplINS_5share14ObServerStatusENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEEixEl:0 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_5share14ObServerStatusEE2atEl:0 + 6: 0 + 87: _ZN9oceanbase6common11ObArrayImplINS_5share14ObServerStatusENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEEixEl:0 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_5share14ObServerStatusEE2atEl:0 + 6: 0 + 88.1: _ZNK9oceanbase5share14ObServerStatus21is_migrate_in_blockedEv:0 + 0: 0 + 93: _ZN9oceanbase6common11ObArrayImplINS_5share14ObServerStatusENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEEixEl:0 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_5share14ObServerStatusEE2atEl:0 + 6: 0 + 93.1: _ZN9oceanbase5share14ObServerStatus18unblock_migrate_inEv:0 + 0: 0 + 101: _ZN9oceanbase6common11ObArrayImplINS_5share14ObServerStatusENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEEixEl:0 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_5share14ObServerStatusEE2atEl:0 + 6: 0 + 112.25: _ZN9oceanbase6common4hash9ObHashSetINS0_6ObAddrENS1_19ReadWriteDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_NS1_11HashNullObjEEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:3906 + 2.2: 0 + 2: _ZN9oceanbase6common4hash11ObHashTableINS0_6ObAddrENS1_11HashMapPairIS3_NS1_11HashNullObjEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS6_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19ReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:3906 + 2.1: 0 + 2.2: 0 + 5.2: 0 + 2: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_6ObAddrENS1_11HashNullObjEEE16pthread_rwlock_tNS1_5NCondEEEEEbRKT_:0 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_6ObAddrENS1_11HashNullObjEEE16pthread_rwlock_tNS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:0 + 2: 0 + 3: _ZN9oceanbase6common4hash11ObHashTableINS0_6ObAddrENS1_11HashMapPairIS3_NS1_11HashNullObjEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS6_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19ReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv:3906 + 6.1: 186 + 6.3: 186 + 8: 186 + 9.1: 0 + 11: 0 + 12: 0 + 15: 0 + 19: 0 + 24: 0 + 10: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_11HashMapPairINS0_6ObAddrENS1_11HashNullObjEEEE16check_magic_codeEv:0 + 0: 0 + 10.1: _ZL12abort_unlessb:0 + 6: 0 + 22: _ZN9oceanbase6common4hash7destroyIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_6ObAddrENS1_11HashNullObjEEE16pthread_rwlock_tNS1_5NCondEEENS0_8ObMallocEEEvRT_RT0_:0 + 2: _ZN9oceanbase6common4hash10do_destroyIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_6ObAddrENS1_11HashNullObjEEE16pthread_rwlock_tNS1_5NCondEEENS0_8ObMallocEEEvRT_NS1_16NormalPointerTagERT0_:0 + 2: 0 + 3: 0 + 4: 0 +_ZN9oceanbase5share6schema27ObMultiVersionSchemaService19add_schema_mgr_infoERNS1_19ObSchemaGetterGuardEPNS1_13ObSchemaStoreERKNS1_21ObRefreshSchemaStatusEmllNS2_17RefreshSchemaModeE:3859:10 + 8: 10 + 9: 10 + 10: 10 + 11: 10 + 13: 10 + 16: 0 + 17.1: 0 + 18.1: 10 + 19: 0 + 20.1: 0 + 22: 10 _ZN9oceanbase5share6schema17ObSchemaMgrHandleC1ENS1_15ObSchemaMgrItem3ModE:10 + 23: 12 + 24: 12 + 28.1: 11 + 30: 11 + 30.1: 5 + 30.3: 5 + 31: 0 + 32.1: 0 + 34.1: 12 _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema15ObSchemaMgrInfoELl2ENS0_19ModulePageAllocatorELb0EE9push_backERKS4_:13 + 34.2: 10 + 35.1: 0 + 37.1: 10 + 39: 10 _ZN9oceanbase5share6schema15ObSchemaMgrInfoD1Ev:10 + 39.1: 0 + 39.2: 0 + 39.3: 11 _ZN9oceanbase5share6schema17ObSchemaMgrHandleD1Ev:11 + 43: 10 + 44.1: 10 + 47.1: 11 _ZN9oceanbase5share6schema16ObSchemaMgrCache3getElRPKNS1_11ObSchemaMgrERNS1_17ObSchemaMgrHandleE:10 + 49.1: 0 + 51: 0 + 56: 0 + 58.1: 0 + 60.1: 0 + 62.1: 0 + 65.1: 0 + 73: 0 + 74: 11 + 77: 11 + 78.1: 0 + 81: 11 + 23: _ZN9oceanbase5share6schema15ObSchemaMgrInfoC2EmlRPKNS1_11ObSchemaMgrERKNS1_17ObSchemaMgrHandleERKNS1_21ObRefreshSchemaStatusE:680 + 6: 12 + 7: 12 + 8: 12 + 9: 12 _ZN9oceanbase5share6schema17ObSchemaMgrHandleC1ERKS2_:12 + 10: 12 + 10.1: 11 + 28: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema15ObSchemaMgrInfoEE5countEv:77 + 0: 11 + 30.1: _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema15ObSchemaMgrInfoELl2ENS0_19ModulePageAllocatorELb0EEixEl:35 + 5: 5 + 30.2: _ZNK9oceanbase5share6schema15ObSchemaMgrInfo13get_tenant_idEv:25 + 0: 5 + 37: _ZN9oceanbase6common12ObIArrayWrapINS_5share6schema15ObSchemaMgrInfoEE2atEl:120 + 6: 10 + 74: _ZN9oceanbase5share6schema15ObSchemaMgrInfo14set_schema_mgrEPKNS1_11ObSchemaMgrE:99 + 0: 11 +_ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS_3sql11ObPlanCacheEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE11read_atomicINS4_24ObPlanCacheManagerAtomicENS1_8pre_procIS7_EEEEiRKmRT_RT0_:3844:24 + 2: 21 + 4: 21 + 4.1: 21 + 5.1: 0 + 9: 21 + 15.1: 20 + 17.2: 20 + 18.1: 20 _ZN9oceanbase3sql24ObPlanCacheManagerAtomicclERNS_6common4hash11HashMapPairImPNS0_11ObPlanCacheEEE:20 + 25: 0 + 25.1: 20 _ZN9oceanbase6common4hash15LatchReadLockerD2Ev:20 + 26: 17 + 4: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImPNS_3sql11ObPlanCacheEEENS0_7ObLatchENS1_5NCondEEEEEbRKT_:420 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImPNS_3sql11ObPlanCacheEEENS0_7ObLatchENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:420 + 2: 21 + 258: 21 + 8: _ZNK9oceanbase6common4hash9hash_funcImEclERKm:63 + 0: 21 + 12: _ZN9oceanbase6common4hash16ObBucketLockCondINS1_11HashMapPairImPNS_3sql11ObPlanCacheEEENS1_24LatchReadWriteDefendModeEE4lockEv:168 + 2: 21 + 12.1: _ZN9oceanbase6common4hash15LatchReadLockerC2ERNS0_7ObLatchE:951 + 0: 21 + 3: 21 _ZN9oceanbase6common7ObLatch6rdlockEjl:22 + 4.1: 0 + 6: 20 + 7: 20 + 16: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_11HashMapPairImPNS_3sql11ObPlanCacheEEEE16check_magic_codeEv:60 + 0: 20 + 16.1: _ZL12abort_unlessb:40 + 5: 20 + 6: 0 + 17.1: _ZNK9oceanbase6common4hash8equal_toImEclERKmS5_:160 + 2: 20 +_ZN9oceanbase6common19GlobalHazardVersion6retireEv:3795:0 + 1: 0 + 2: 0 + 5: 0 + 6: 0 + 7.1: 0 + 8.1: 0 + 9.1: 0 + 11: 0 + 12.1: 0 + 18: 0 + 8.1: _ZNK9oceanbase6common19GlobalHazardVersion15get_min_versionERm:0 + 2: 0 + 8: 0 + 9: 0 + 12.1: 0 + 14: 0 + 21: 0 + 13: _ZNK9oceanbase6common24KVCacheHazardThreadStore20get_acquired_versionEv:0 + 0: 0 + 381.1: 0 + 17: _ZNK9oceanbase6common24KVCacheHazardThreadStore8get_nextEv:0 + 0: 0 + 13: _ZN9oceanbase6common24KVCacheHazardThreadStore6retireEm:3795 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 7.1: 0 + 13.1: 130 + 16: 148 + 17: 140 _ZN9oceanbase6common12ObKVCacheMap4Node6retireEv:140 + 19: 130 + 25: 0 + 28: 0 + 29: 0 + 15: _ZNK9oceanbase6common17KVCacheHazardNode8get_nextEv:592 + 0: 148 + 21: _ZN9oceanbase6common17KVCacheHazardNode8set_nextEPS1_:153 + 2: 17 + 3: 17 + 26: _ZN9oceanbase6common24KVCacheHazardThreadStore9add_nodesERNS0_17KVCacheHazardNodeE:0 + 5.1: 0 + 9: 0 + 12.1: 0 + 5.1: _ZNK9oceanbase6common17KVCacheHazardNode8get_nextEv:0 + 0: 0 + 11: _ZN9oceanbase6common17KVCacheHazardNode8set_nextEPS1_:0 + 2: 0 + 3: 0 + 14: _ZN9oceanbase6common17KVCacheHazardNode8set_nextEPS1_:0 + 2: 0 + 3: 0 + 14: _ZNK9oceanbase6common24KVCacheHazardThreadStore8get_nextEv:0 + 0: 0 +_ZN9oceanbase6common13ObSEArrayImplINS0_5ObObjELl32ENS0_19ModulePageAllocatorELb0EE7reserveEl:3795:2 + 1: 2 + 2: 2 + 3: 2 + 5: 2 + 6: 2 + 7: 2 + 7.3: 2 + 9: 4 + 10: 4 + 11: 3 + 12: 3 + 13: 0 + 15: 3 + 16: 3 + 23: 0 + 24.1: 0 + 27: 3 + 8: _ZN9oceanbase6common13ObSEArrayImplINS0_5ObObjELl32ENS0_19ModulePageAllocatorELb0EE16internal_malloc_El:89 + 2: 2 + 7: 2 + 13: 1 + 13: _ZN9oceanbase6common19ModulePageAllocator5allocEl:48 + 2: 1 + 3: 1 _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:1 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:15 + 5: 1 + 7: 1 + 8: 1 + 10: _ZN9oceanbase6common9ObClassOpINS0_5ObObjELb0EE12array_expandEPKS2_PS2_l:3343 + 4.1: 118 + 4.3: 118 + 4.5: 118 + 5: _ZN9oceanbase6common16construct_assignINS0_5ObObjEEEiRT_RKS3_:2006 + 2: _ZN9oceanbase6common21construct_assign_wrapINS0_5ObObjEEEiRT_RKS3_NS0_8BoolTypeILb0EEE:2006 + 2: _ZN9oceanbase6common5ObObjC2ERKS1_:2006 + 2: 118 + 0: _ZN9oceanbase6common9ObObjMetaC2Ev:826 + 1: 118 +_ZZN9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE6revertElENKUlPKcE6_clES5_:3756:53 + 0: 49 + 0.1: 0 + 0.2: 48 + 0.3: 49 _ZN9oceanbase6common8ObLogger13need_to_printEmi:50 + 0.11: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:833 + 2: 49 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf3LSNENS0_14ShareMemMgrTagEE20do_insert_or_update_ERKS2_RKS4_:3705:15 + 1: 14 + 4: 14 + 5: 14 + 8: 14 + 9: 14 _ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf3LSNENS0_14ShareMemMgrTagEE16load_access_bkt_ERKS2_RmRPNS6_6BucketE:14 + 10: 13 + 11: 0 + 15: 13 + 20.1: 0 + 20.3: 0 + 21: 0 + 30.1: 0 + 31: 0 + 34: 0 + 36: 0 + 37: 0 + 42: 12 + 44: 12 + 45: 12 + 46: 0 + 48: 12 _ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf3LSNENS0_14ShareMemMgrTagEE17load_factor_ctrl_Em:12 + 50: 15 + 10: _ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf3LSNENS0_14ShareMemMgrTagEE16is_bkt_nonempty_EPKNS6_6BucketE:273 + 2: 13 + 2.1: 13 + 12: _ZN9oceanbase4palf3LSNC2ERKS1_:0 + 0: 0 + 13: _ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf3LSNENS0_14ShareMemMgrTagEE17set_bkt_nonempty_EPNS6_6BucketEb:0 + 3.1: 0 + 5: 0 + 5.3: 0 + 15: _ZN9oceanbase6common5EqualINS0_6ObAddrEEclERKS2_S5_:611 + 4.3: _ZNK9oceanbase6common6ObAddreqERKS1_:611 + 2: 13 + 2.1: 13 + 2.2: 13 + 16: _ZN9oceanbase4palf3LSNaSERKS1_:120 + 2: 12 + 22: _ZN9oceanbase4palf3LSNaSERKS1_:0 + 2: 0 + 30: _ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf3LSNENS0_14ShareMemMgrTagEE13HashMapMemMgrIS5_vE14get_node_allocEv:0 + 2: 0 + 2.1: _ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf3LSNENS0_14ShareMemMgrTagEE17HashMapMemMgrCore14get_node_allocEv:0 + 2: 0 + 35: _ZN9oceanbase4palf3LSNC2ERKS1_:0 + 0: 0 + 42: _ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf3LSNENS0_14ShareMemMgrTagEE18unload_access_bkt_EPNS6_6BucketES8_:1056 + 3.1: 0 + 5: _ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf3LSNENS0_14ShareMemMgrTagEE13set_bkt_lock_EPNS6_6BucketEb:96 + 24: 12 + 6: _ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf3LSNENS0_14ShareMemMgrTagEE15unload_haz_seg_EPNS6_6BucketE:960 + 2: 12 + 2: _ZN9oceanbase6common13ObExternalRef7releaseEPv:876 + 1: 12 + 2: _ZN9oceanbase6common13ObExternalRef4xrefEPvi:816 + 0: 12 + 0: _ZN9oceanbase6common13ObExternalRef6locateEPv:756 + 0: 12 + 0: _ZN9oceanbase6common13ObExternalRef4hashEm:684 + 1: 12 + 2: 12 + 3: 12 + 4: 12 + 5: 12 +_ZN9oceanbase4palf10PalfHandle6appendERKNS0_17PalfAppendOptionsEPKvllRNS0_3LSNERl:3690:248 + 6: 246 + 8: 246 + 9: 246 _ZN9oceanbase4palf14PalfHandleImpl10submit_logERKNS0_17PalfAppendOptionsEPKcllRNS0_3LSNERl:249 + 11: 0 +_ZN9oceanbase6common19ObTableAccessHelper12AccessHelperILi2ELi4EJlNS0_14ObStringHolderES3_S3_EE28get_values_to_tuple_from_rowEPNS0_9sqlclient13ObMySQLResultERA4_PKcRNS0_7ObTupleIJlS3_S3_S3_EEE:3667:1 + 3: 1 + 6: 6 + 8: 6 _ZN9oceanbase6common5occam26ObOccamTimeGuardDetectHung5clickEt:7 + 8.1: 9 + 8.2: 9 + 8.4: 3 + 8.5: 3 + 8.6: 9 _ZN9oceanbase6common19ObTableAccessHelper34get_signle_column_from_signle_row_EPNS0_9sqlclient13ObMySQLResultEPKcRNS0_14ObStringHolderE:9 + 9.1: 0 + 9.2: 0 + 9.3: 0 + 9.5: 0 + 9.6: 0 + 9.7: 0 + 9.9: 0 + 9.13: 0 + 11: 3 _ZN9oceanbase6common19ObTableAccessHelper12AccessHelperILi1ELi4EJlNS0_14ObStringHolderES3_S3_EE28get_values_to_tuple_from_rowEPNS0_9sqlclient13ObMySQLResultERA4_PKcRNS0_7ObTupleIJlS3_S3_S3_EEE:3 + 11.1: 0 + 14: 0 + 15.5: 0 + 15.6: 0 + 4.2: _ZN9oceanbase6common5occam25get_file_name_without_dirIcLm44EEEPKT_RAT0__S4_m:3085 + 3: 126 + 3.3: 121 + 3.4: 121 + 3.7: 0 + 4.3: _ZN9oceanbase6common5occam16TimeGuardFactory10make_guardEllPKcS4_lS4_:244 + 6: 6 _ZN9oceanbase6common5occam26ObOccamTimeGuardDetectHungC2EjjPKcS4_S4_t:5 + 8.3: _ZSt3getILm2EJlN9oceanbase6common14ObStringHolderES2_S2_EERNSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeERS7_:36 + 1: _ZSt12__get_helperILm2EN9oceanbase6common14ObStringHolderEJS2_EERT0_RSt11_Tuple_implIXT_EJS3_DpT1_EE:36 + 1: _ZNSt11_Tuple_implILm2EJN9oceanbase6common14ObStringHolderES2_EE7_M_headERS3_:36 + 0: _ZNSt10_Head_baseILm2EN9oceanbase6common14ObStringHolderELb0EE7_M_headERS3_:36 + 0: 9 + 9.4: _ZN9oceanbase6common7ObLogKVIiLb0EEC2EPKcRKi:0 + 0: 0 + 9.6: _ZN9oceanbase6common7ObLogKVIPKcLb1EEC2ES3_OKS3_:0 + 0: 0 + 9.8: _ZNK9oceanbase5share12ObTenantBase2idEv:0 + 0: 0 + 9.10: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 + 9.12: _ZN9oceanbase6common7ObLogKVIRKPKcLb0EEC2ES3_S5_:0 + 0: 0 +_ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS_3sql17ObILibCacheObjectEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE6atomicINS4_18ObCacheObjAtomicOpENS1_8pre_procIS7_EEEEiRKmRT_RT0_:3658:22 + 2: 18 + 4: 18 + 4.1: 18 + 5.1: 0 + 9: 18 + 15.1: 19 + 17.2: 19 + 18.1: 19 _ZN9oceanbase3sql18ObCacheObjAtomicOpclERNS_6common4hash11HashMapPairImPNS0_17ObILibCacheObjectEEE:20 + 25: 0 + 25.1: 23 _ZN9oceanbase6common4hash16LatchWriteLockerD2Ev:23 + 26: 24 + 4: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImPNS_3sql17ObILibCacheObjectEEENS0_7ObLatchENS1_5NCondEEEEEbRKT_:360 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImPNS_3sql17ObILibCacheObjectEEENS0_7ObLatchENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:360 + 2: 18 + 289: 18 + 8: _ZNK9oceanbase6common4hash9hash_funcImEclERKm:54 + 0: 18 + 12: _ZN9oceanbase6common4hash16ObBucketLockCondINS1_11HashMapPairImPNS_3sql17ObILibCacheObjectEEENS1_24LatchReadWriteDefendModeEE4lockEv:144 + 2: 18 + 12.1: _ZN9oceanbase6common4hash16LatchWriteLockerC2ERNS0_7ObLatchE:879 + 0: 18 + 3: 19 _ZN9oceanbase6common7ObLatch6wrlockEjlPKj:20 + 4.1: 0 + 6: 19 + 7: 19 + 16: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_11HashMapPairImPNS_3sql17ObILibCacheObjectEEEE16check_magic_codeEv:57 + 0: 19 + 16.1: _ZL12abort_unlessb:38 + 5: 19 + 6: 0 + 17.1: _ZNK9oceanbase6common4hash8equal_toImEclERKmS5_:152 + 2: 19 +_ZNK9oceanbase4palf10PalfHandle8is_validEv:3640:270 + 1: 260 + 2: 260 +_ZZN9oceanbase5share6schema19ObSchemaGetterGuard20get_from_local_cacheINS1_13ObTableSchemaEEEiNS1_12ObSchemaTypeEmmRPKT_ENKUlPKcE1_clESB_:3630:44 + 0: 42 + 0.1: 0 + 0.2: 42 + 0.3: 41 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:44 + 0.4: 0 + 0.12: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:697 + 2: 41 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.1: _ZN9oceanbase6common7ObLogKVIiLb0EEC2EPKcRKi:0 + 0: 0 + 0.5: _ZN9oceanbase6common7ObLogKVIPKcLb1EEC2ES3_OKS3_:0 + 0: 0 + 0.7: _ZN9oceanbase6common7ObLogKVIRKNS_5share6schema12ObSchemaTypeELb0EEC2EPKcS6_:0 + 0: 0 + 0.9: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 + 0.11: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase12blocksstable23ObIMicroBlockRowFetcherC2Ev:3588:94 + 2: 92 + 8: 92 +_ZN9oceanbase12blocksstable23ObIMicroBlockRowFetcherC1Ev:3588:94 + 2: 92 + 8: 92 +_ZN9oceanbase3sql20ObCacheObjectFactory10inner_freeERPNS0_17ObILibCacheObjectENS0_16CacheRefHandleIDE:3567:28 + 2: 28 + 3: 28 + 5: 19 + 6.1: 0 + 11: 15 _ZN9oceanbase3sql11ObPlanCache13dec_ref_countEv:15 + 14: 14 + 3: _ZNK9oceanbase3sql17ObILibCacheObject13get_tenant_idEv:112 + 0: 28 + 4: _ZN9oceanbase3sql20ObCacheObjectFactory14get_plan_cacheEm:1961 + 5: 29 + 8: 29 _ZN9oceanbase8observer14global_contextEv:28 + 8.1: 29 _ZN9oceanbase8observer14global_contextEv:29 + 9.1: 0 + 11: 27 _ZN9oceanbase8observer14global_contextEv:27 + 11.2: 25 _ZN9oceanbase3sql18ObPlanCacheManager24get_or_create_plan_cacheEmRKNS0_14ObPCMemPctConfE:25 + 4: _ZN9oceanbase3sql14ObPCMemPctConfC2Ev:532 + 0: 28 + 2: 28 + 11.1: _ZN9oceanbase3sql5ObSql22get_plan_cache_managerEv:200 + 0: 25 + 8: _ZN9oceanbase3sql11ObPlanCache14free_cache_objERPNS0_17ObILibCacheObjectENS0_16CacheRefHandleIDE:428 + 2: 19 + 3: 15 + 2: _ZN9oceanbase3sql17ObLCObjectManager4freeERPNS0_17ObILibCacheObjectENS0_16CacheRefHandleIDE:133 + 2: 19 _ZN9oceanbase3sql17ObLCObjectManager11common_freeEPNS0_17ObILibCacheObjectENS0_16CacheRefHandleIDE:19 +_ZN6obutil5MutexC2Ev:3535:262 + 1: 253 + 2: 253 + 5: 294 + 6.1: 0 + 13: 294 +_ZN6obutil5MutexC1Ev:3535:262 + 1: 253 + 2: 253 + 5: 294 + 6.1: 0 + 13: 294 +_ZN9oceanbase6common13ObSEArrayImplINS0_9ObDFMElemELl10ENS0_19ModulePageAllocatorELb0EE9push_backERKS2_:3528:57 + 2: 56 + 5: 56 + 6: 0 + 12: 0 + 15: 0 + 15.1: 56 + 16: 56 + 19: 56 + 15.1: _ZN9oceanbase6common9ObClassOpINS0_9ObDFMElemELb0EE20construct_and_assignERKS2_RS2_:1008 + 3: _ZN9oceanbase6common16construct_assignINS0_9ObDFMElemEEEiRT_RKS3_:1008 + 2: _ZN9oceanbase6common21construct_assign_wrapINS0_9ObDFMElemEEEiRT_RKS3_NS0_8BoolTypeILb0EEE:1008 + 2: 56 +_ZN9oceanbase3omt8ObTenant16handle_retry_reqEv:3523:16 + 1: 16 + 6: 0 + 7: 0 + 8.1: 0 + 12: 25 + 5.1: _ZN9oceanbase3omt12ObRetryQueue3popERPNS_6common6ObLinkE:2898 + 3: 28 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:19 + 4: 28 + 6.1: 28 + 6.2: 28 + 7: 25 + 8: 25 + 6.2: _ZN9oceanbase6common13ObSpLinkQueue3popERPNS0_6ObLinkE:951 + 3.2: 0 + 3.3: 0 + 3.1: _ZN9oceanbase6common13ObSpLinkQueue6do_popERPNS0_6ObLinkE:615 + 4.1: 27 + 5: 0 + 7: 27 + 9: 25 + 12.1: 0 + 13: 0 + 15: 0 + 4: _ZN9oceanbase6common13ObSpLinkQueue4pushEPNS0_6ObLinkE:0 + 4: 0 + 7: 0 + 8: 0 + 9: 0 +_ZN9oceanbase7storage16ObTableStoreStatC2Ev:3488:250 + 1: 250 + 3: 244 + 0.1: _ZN9oceanbase7storage15ObMergeIterStatC2Ev:2000 + 0: _ZN9oceanbase7storage15ObMergeIterStat5resetEv:2000 + 0: 250 +_ZN9oceanbase7storage16ObTableStoreStatC1Ev:3488:250 + 1: 250 + 3: 244 + 0.1: _ZN9oceanbase7storage15ObMergeIterStatC2Ev:2000 + 0: _ZN9oceanbase7storage15ObMergeIterStat5resetEv:2000 + 0: 250 +_ZN9oceanbase4palf14LogGroupBuffer11get_log_bufERKNS0_3LSNElRNS0_11LogWriteBufE:3482:16 + 1: 16 + 2: 16 + 3: 16 + 4: 16 _ZN9oceanbase4palf3LSNC1Ev:16 + 6: 13 + 7: 0 + 8.1: 13 _ZNK9oceanbase4palf3LSN8is_validEv:13 + 8.2: 11 + 9: 0 + 10.1: 0 + 11.1: 11 _ZNK9oceanbase4palf3LSNltERKS1_:12 + 11.2: 11 + 12: 0 + 13.1: 0 + 14.1: 11 _ZNK9oceanbase4palf14LogGroupBuffer15get_buffer_pos_ERKNS0_3LSNERl:12 + 14.2: 10 + 15.1: 0 + 17.1: 10 + 18: 10 + 18.1: 10 + 19: 10 _ZN9oceanbase4palf11LogWriteBuf9push_backEPKcl:10 + 19.1: 12 + 20.1: 0 + 21.1: 12 + 21.2: 0 + 22: 12 + 22.1: 0 + 22.2: 0 + 23.1: 0 + 27.1: 12 _ZZN9oceanbase4palf14LogGroupBuffer11get_log_bufERKNS0_3LSNElRNS0_11LogWriteBufEENK5$_596clEPKc.1598dc2348996c1ae1caea6120522988:13 + 30: 12 + 31.9: 12 + 5: _ZNK9oceanbase4palf14LogGroupBuffer21get_buffer_start_lsn_ERNS0_3LSNE:360 + 2: 15 _ZN9oceanbase4palf3LSNC1Em:16 + 2.4: 15 _ZN9oceanbase4palf3LSNaSERKS1_:15 + 17: _ZNK9oceanbase4palf14LogGroupBuffer24get_reserved_buffer_sizeEv:40 + 3: 10 + 18: _ZN9oceanbase6common3minEll:70 + 2: 10 +_ZNK9oceanbase3lib7ObLabeleqERKS1_:3457:105 + 1: 103 + 3: 103 + 4: 63 + 5: 0 + 12: 103 + 3: _ZNK9oceanbase3lib7ObLabel8is_validEv:618 + 0: 103 +_ZN9oceanbase6common13ObSEArrayImplINS_4palf11LogWriteBuf11InnerStructELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv:3402:64 + 1: 63 + 9: 63 + 10: 0 + 11: 0 + 13: 63 + 15: 63 + 24: 63 + 25: 63 +_ZN9oceanbase6common15ObKVGlobalCache3putElRKNS0_13ObIKVCacheKeyERKNS0_15ObIKVCacheValueERPS6_RPNS0_18ObKVMemBlockHandleEb:3310:82 + 7: 82 + 8: 87 _ZN9oceanbase6common15ObKVGlobalCache3putINS0_18ObKVMemBlockHandleEEEiRNS0_15ObIKVCacheStoreIT_EElRKNS0_13ObIKVCacheKeyERKNS0_15ObIKVCacheValueERPSC_RPS3_b:83 +_ZNK9oceanbase3lib20ObTenantCtxAllocator8get_holdEv:3283:28 + 1: 28 + 2: 28 + 3: 28 + 4.1: 25 _ZNSt14_Function_baseD2Ev:26 + 4.2: 0 + 8: 22 + 4: _ZNSt8functionIFiPKN9oceanbase3lib17ObTenantMemoryMgrEEEC2IZNKS1_20ObTenantCtxAllocator8get_holdEvEUlS4_E_vEET_:840 + 8: 28 + 9: 28 + 7.1: _ZNSt14_Function_base13_Base_managerIZNK9oceanbase3lib20ObTenantCtxAllocator8get_holdEvEUlPKNS2_17ObTenantMemoryMgrEE_E15_M_init_functorERSt9_Any_dataOS7_:224 + 1.1: _ZNSt14_Function_base13_Base_managerIZNK9oceanbase3lib20ObTenantCtxAllocator8get_holdEvEUlPKNS2_17ObTenantMemoryMgrEE_E15_M_init_functorERSt9_Any_dataOS7_St17integral_constantIbLb1EE:224 + 1: 28 + 4.3: _ZNK9oceanbase3lib20ObTenantCtxAllocator27with_resource_handle_invokeESt8functionIFiPKNS0_17ObTenantMemoryMgrEEE:1024 + 3: 30 _ZNK9oceanbase3lib25ObTenantResourceMgrHandle8is_validEv:28 + 5.1: 0 + 7: 30 _ZNK9oceanbase3lib25ObTenantResourceMgrHandle14get_memory_mgrEv:30 + 7.1: _ZNKSt8functionIFiPKN9oceanbase3lib17ObTenantMemoryMgrEEEclES4_:448 + 2: 28 + 3: 0 + 4.1: 28 _ZNSt17_Function_handlerIFiPKN9oceanbase3lib17ObTenantMemoryMgrEEZNKS1_20ObTenantCtxAllocator8get_holdEvEUlS4_E_E9_M_invokeERKSt9_Any_dataOS4_:28 + 2: _ZNKSt14_Function_base8_M_emptyEv:140 + 0: 28 +_ZNK9oceanbase6common5ObObj23print_plain_str_literalEPclRlRKNS0_16ObObjPrintParamsE:3276:126 + 1: 126 + 2: 126 + 2.1: 126 _ZN9oceanbase6common19obj_print_plain_strILNS0_9ObObjTypeE5EEEiRKNS0_5ObObjEPclRlRKNS0_16ObObjPrintParamsE:75 _ZN9oceanbase6common19obj_print_plain_strILNS0_9ObObjTypeE22EEEiRKNS0_5ObObjEPclRlRKNS0_16ObObjPrintParamsE:36 _ZN9oceanbase6common19obj_print_plain_strILNS0_9ObObjTypeE10EEEiRKNS0_5ObObjEPclRlRKNS0_16ObObjPrintParamsE:18 + 2: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:504 + 0: 126 +_ZN9oceanbase6common5occam26ObOccamTimeGuardDetectHungC2EjjPKcS4_S4_t:3232:18 + 7: 8 + 9: 8 + 12: 18 + 13: 8 _ZTWN9oceanbase6common5occam20ObThreadHungDetector15click_point_idxE:10 + 13.1: 8 + 13.2: 10 _ZN9oceanbase6common5occam20ObThreadHungDetector13ClickPointIdx7get_idxEv:10 + 14: 8 + 16.1: 8 + 17: 8 + 18: 8 + 19: 8 + 20: 8 + 21: 8 + 22: 8 + 25: 10 + 27: 10 + 28: 10 + 29: 10 + 30: 10 + 31: 10 + 32: 10 + 33: 10 + 34: 10 + 35: 10 + 37.1: 0 + 40.4: 10 + 40.5: 0 + 6: _ZN9oceanbase6common5occam16ObOccamTimeGuardC2EjPKcS4_S4_:308 + 4: 18 + 5: 18 + 6: 8 + 7: 8 + 8: 8 + 9: 8 + 6: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:18 + 2: 18 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:18 + 16: _ZN9oceanbase6common5occam20ObThreadHungDetector12get_instanceEv:136 + 0: 8 + 0.1: 0 + 0.2: 0 + 0.3: 0 + 0.5: 0 + 0.7: 0 + 24: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:8 + 2: 8 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:9 +_ZN9oceanbase12blocksstable19ObFuseRowCacheValueC2Ev:3220:76 + 2: 70 + 4: 70 + 6: 70 + 7: 70 + 5: _ZN9oceanbase12blocksstable12ObDmlRowFlagC2Ev:280 + 1: 70 +_ZN9oceanbase12blocksstable19ObFuseRowCacheValueC1Ev:3220:76 + 2: 70 + 4: 70 + 6: 70 + 7: 70 + 5: _ZN9oceanbase12blocksstable12ObDmlRowFlagC2Ev:280 + 1: 70 +_ZN9oceanbase6common6number8ObNumber12from_sci_optINS0_15ObObjCastParamsEEEiPKclRT_PsS9_b:3208:14 + 6: 13 + 9.1: 17 + 9.2: 16 + 10: 0 + 14: 27 + 8: _ZN9oceanbase6common8ObStringC2ElPKc:130 + 5: 13 + 9.1: _ZNK9oceanbase6common8ObString4findEc:195 + 0: 13 + 9.2: _ZNK9oceanbase6common8ObString4findEc:204 + 0: 17 + 12: _ZN9oceanbase6common6number8ObNumber4fromINS0_15ObObjCastParamsEEEiPKclRT_PsS9_b:1499 + 8: 16 + 11: 27 + 9: _ZN9oceanbase6common6number8ObNumber10TAllocatorINS0_15ObObjCastParamsEEC2ERS4_:416 + 0: 16 + 10: _ZN9oceanbase6common6number8ObNumber5from_EPKclRNS2_10IAllocatorERiPNS1_16ObNumberFmtModelEPsSA_PKNS_3lib9ObMemAttrEb:755 + 5.1: 27 _ZN9oceanbase6common6number8ObNumber8from_v3_EPKclRNS2_10IAllocatorERiPNS1_16ObNumberFmtModelEPsSA_PKNS_3lib9ObMemAttrEb:16 +_ZN9oceanbase6common15ObKVCacheHandleaSERKS1_:3188:49 + 1: 49 + 2: 49 + 3: 49 + 4: 49 + 8: 0 + 10: 50 + 11: 50 + 12: 3 _ZN9oceanbase6common17ObAtomicReference21check_and_inc_ref_cntEv:2 + 14.1: 0 + 21: 53 + 8.1: _ZN9oceanbase6common15ObKVGlobalCache6revertEPNS0_18ObKVMemBlockHandleE:0 + 2: 0 + 3: _ZN9oceanbase6common14ObKVCacheStore13de_handle_refEPNS0_18ObKVMemBlockHandleE:0 + 3: 0 + 7.1: 0 + 8.1: 0 + 9.1: 0 + 10: 0 + 11.1: 0 +_ZNK9oceanbase4palf3LSN18get_serialize_sizeEv:3146:291 + 1: 286 + 4: 286 +_ZN9oceanbase3sql11ObPlanCache8ref_planEmRNS0_15ObCacheObjGuardE:3139:15 + 1: 14 + 2: 14 + 3: 14 + 4: 14 _ZN9oceanbase8observer22ObGlobalReqTimeService18check_req_timeinfoEv:15 + 5: 23 + 6.1: 0 + 7.1: 23 + 9.1: 23 + 10: 0 + 11.1: 0 + 12.1: 23 + 13: 0 + 14.1: 0 + 16: 23 + 5: _ZN9oceanbase3sql11ObPlanCache13ref_cache_objEmRNS0_15ObCacheObjGuardE:1624 + 2: 17 + 3: 17 + 4: 17 _ZN9oceanbase8observer22ObGlobalReqTimeService18check_req_timeinfoEv:17 + 5.1: 23 + 6.1: 0 + 8.1: 23 + 10: 0 + 3: _ZN9oceanbase3sql18ObCacheObjAtomicOpC2ENS0_16CacheRefHandleIDE:374 + 0: 17 + 5: _ZN9oceanbase3sql17ObLCObjectManager20atomic_get_cache_objINS0_18ObCacheObjAtomicOpEEEimRT_:603 + 3: 23 + 4.1: 0 + 4.5: 0 + 4.7: 0 + 6: 0 + 3: _ZN9oceanbase6common4hash9ObHashMapImPNS_3sql17ObILibCacheObjectENS1_24LatchReadWriteDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS5_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE17atomic_refactoredINS3_18ObCacheObjAtomicOpEEEiRKmRT_:396 + 3: 18 + 3: _ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS_3sql17ObILibCacheObjectEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE17atomic_refactoredINS4_18ObCacheObjAtomicOpEEEiRKmRT_:270 + 2: 18 _ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS_3sql17ObILibCacheObjectEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE6atomicINS4_18ObCacheObjAtomicOpENS1_8pre_procIS7_EEEEiRKmRT_RT0_:22 + 4.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 8: _ZNK9oceanbase3sql18ObCacheObjAtomicOp9get_valueEv:92 + 0: 23 +_ZN9oceanbase12blocksstable21ObMicroBlockGetReaderD2Ev:3127:61 + 0: 59 + 0.1: 59 _ZN9oceanbase12blocksstable23ObIMicroBlockFlatReaderD1Ev:60 + 0: _ZN9oceanbase12blocksstable23ObIMicroBlockReaderInfoD2Ev:2773 + 0: 59 + 0: _ZN9oceanbase12blocksstable23ObIMicroBlockReaderInfo5resetEv:1711 + 2: 59 + 3: 59 + 4: 59 +_ZNK9oceanbase8observer16ObInnerSQLResult11get_varcharElRNS_6common8ObStringE:3093:21 + 0: 21 + 0.1: 0 + 0.2: 0 + 0.5: 21 + 0.6: 0 + 0.7: 0 + 0.10: 21 + 0.13: 21 + 0.14: 0 + 0.15: 0 + 0.18: 21 + 0.19: 0 + 0.21: 21 + 0.22: 21 + 0.23: 0 + 0.24: 0 + 0.27: 21 + 0.32: 22 + 0.34: 0 + 0.39: 21 + 0.27: _ZN9oceanbase8observer16ObInnerSQLResult18check_extend_valueERKNS_6common5ObObjE:210 + 3: 21 + 5.1: 0 + 3: _ZNK9oceanbase6common5ObObj7is_nullEv:63 + 0: _ZNK9oceanbase6common9ObObjMeta7is_nullEv:63 + 0: 21 + 5.1: _ZNK9oceanbase6common5ObObj12is_min_valueEv:0 + 2.1: 0 + 0.32: _ZNK9oceanbase6common5ObObj11get_varcharERNS0_8ObStringE:147 + 10: 21 _ZNK9oceanbase6common5ObObj10get_stringERNS0_8ObStringE:22 +_ZN9oceanbase4palf16LogSlidingWindow20try_freeze_prev_log_ElRKNS0_3LSNERb:3047:13 + 1: 12 + 2: 12 + 3: 12 + 4: 12 + 4.1: 12 + 5: 1 + 6.1: 1 + 7.1: 12 + 9.1: 1 + 11: 12 + 12: 12 + 14.1: 9 + 17: 3 + 19.1: 0 + 23.1: 11 + 26.1: 0 + 33: 9 + 33.1: 9 + 34: 9 + 34.1: 9 + 37: 11 _ZN9oceanbase4palf16LogSlidingWindow12LogTaskGuardD2Ev:10 + 37.1: 0 + 38: 8 + 4.1: _ZNK9oceanbase4palf3LSN8is_validEv:48 + 2: 12 + 13: _ZN9oceanbase4palf16LogSlidingWindow12LogTaskGuardC2EPS1_:144 + 0: 12 + 14: _ZN9oceanbase4palf16LogSlidingWindow12LogTaskGuard12get_log_taskElRPNS0_7LogTaskE:717 + 2: 12 + 3: 12 + 5.1: 12 + 7.1: 12 _ZN9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE3getElRPS2_:12 + 8: 9 + 9: 9 + 5.1: _ZN9oceanbase4palf15is_valid_log_idEl:48 + 2: 12 + 22: _ZNK9oceanbase4palf7LogTask4lockEv:225 + 1: 9 _ZN9oceanbase6common7ObLatch6wrlockEjlPKj:11 + 23: _ZNK9oceanbase4palf7LogTask8is_validEv:55 + 2: _ZNK9oceanbase4palf15LogSimpleBitMap8test_mapEl:55 + 2: 11 + 25: _ZN9oceanbase4palf7LogTask11set_end_lsnERKNS0_3LSNE:0 + 2: _ZN9oceanbase4palf3LSNaSERKS1_:0 + 2: 0 + 29: _ZN9oceanbase4palf7LogTask10try_freezeERKNS0_3LSNE:52 + 2: 12 _ZN9oceanbase4palf7LogTask11try_freeze_ERKNS0_3LSNE:11 + 31: _ZNK9oceanbase4palf7LogTask6unlockEv:74 + 1: 10 _ZN9oceanbase6common7ObLatch6unlockEPKj:9 + 33: _ZNK9oceanbase4palf7LogTask10is_freezedEv:54 + 2: _ZNK9oceanbase4palf15LogSimpleBitMap8test_mapEl:54 + 2: 9 + 34: _ZNK9oceanbase4palf7LogTask11get_ref_cntEv:63 + 0: 9 +_ZNK9oceanbase6common6ObAddr18get_serialize_sizeEv:3022:281 + 0: 278 + 0: _ZNK9oceanbase6common6ObAddr28get_serialize_size_dispatch_ESt17integral_constantIbLb0EE:278 + 0: 278 _ZNK9oceanbase6common6ObAddr19get_serialize_size_Ev:297 +_ZNK9oceanbase11transaction14ObPartTransCtx20get_downstream_stateEv:3012:258 + 1: 251 +_ZN9oceanbase11transaction12ObLSTxCtxMgr18check_with_tx_dataERKNS0_9ObTransIDERNS_7storage21ObITxDataCheckFunctorE:3003:5 + 1: 5 + 2: 5 + 4: 5 + 6: 6 + 12.1: 0 + 15: 4 + 16: 0 + 17.1: 0 + 18.1: 4 _ZN9oceanbase11transaction14ObPartTransCtx18check_with_tx_dataERNS_7storage21ObITxDataCheckFunctorE:5 + 22.1: 0 + 27: 4 + 28.1: 0 + 32: 6 + 6: _ZN9oceanbase11transaction12ObLSTxCtxMgr11get_tx_ctx_ERKNS0_9ObTransIDEbRPNS0_14ObPartTransCtxE:2324 + 2: 5 + 3: 5 + 9: 5 + 10.1: 0 + 12.2: 5 + 12.3: 5 + 13.1: 0 + 18.1: 5 + 19: 3 + 20.1: 0 + 21: 0 + 29.1: 3 __dynamic_cast:3 + 29.3: 4 + 32: 2 + 34.1: 0 + 36.1: 6 _ZN9oceanbase6common14ObTscTimestamp12current_timeEv:6 + 36.2: 6 + 36.3: 0 + 36.6: 0 + 37.1: 0 + 41: 6 + 7: _ZN9oceanbase11transaction11MonotonicTs12current_timeEv:5 + 0: 5 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:6 + 12.1: _ZNK9oceanbase11transaction9ObTransID8is_validEv:30 + 0: 5 + 18: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE3getERKS2_RPS3_:1516 + 2: 5 + 4: 5 + 5: 0 + 6.1: 0 + 17.1: 4 + 18.1: 3 + 19: 3 + 27: 1 + 30: 3 + 32.1: 0 + 33: 5 + 14: _ZN9oceanbase6common8get_itidEv:140 + 4: 5 + 5: 0 + 6: 0 + 8: 0 + 14.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE16BucketRLockGuardC2ERKNS_6common10SpinRWLockEm:320 + 1: 5 + 3: 4 + 4.1: 0 + 3: _ZN9oceanbase6common10SpinRWLock6rdlockEl:80 + 0: 5 _ZN9oceanbase6common7ObLatch6rdlockEjl:5 + 6: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE15get_thread_nodeEv:100 + 2: 4 + 2.1: 0 + 2.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE4NodeC2Ev:0 + 0: 0 + 6.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE4Node13set_thread_idEl:76 + 0: 4 + 18: _ZN9oceanbase11transaction10ObTransCtx7containENS0_9ObTransIDE:12 + 0: _ZNK9oceanbase11transaction9ObTransIDeqERKS1_:12 + 1: 3 + 30: _ZN9oceanbase11transaction15ObTransHashLinkINS0_10ObTransCtxEE7inc_refEi:42 + 2: 3 + 3.1: 0 + 5: 3 + 32: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE16BucketRLockGuardD2Ev:347 + 2: 4 + 3: 4 + 3.1: 5 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase6common10SpinRWLock6unlockEv:12 + 0: 4 _ZN9oceanbase6common7ObLatch6unlockEPKj:5 + 6: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE15get_thread_nodeEv:125 + 2: 5 + 2.1: 0 + 2.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE4NodeC2Ev:0 + 0: 0 + 6.1: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE4Node5resetEv:115 + 0: 5 + 36: _ZN9oceanbase6common14ObTscTimestamp12get_instanceEv:102 + 2: 6 + 2.1: 0 + 2.3: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common14ObTscTimestampC2Ev:0 + 1: 0 + 27: _ZN9oceanbase11transaction12ObLSTxCtxMgr26revert_tx_ctx_without_lockEPNS0_10ObTransCtxE:152 + 5: 4 + 6.1: 0 + 8.1: 4 + 9.1: 0 + 12: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE6revertEPS3_:52 + 3: 4 + 3: _ZN9oceanbase11transaction15ObTransHashLinkINS0_10ObTransCtxEE7dec_refEi:40 + 2: 4 + 3: 4 + 4.1: 0 + 4: _ZN9oceanbase11transaction13TransCtxAlloc10free_valueEPNS0_10ObTransCtxE:0 + 3: 0 +_ZN9oceanbase5share11ObTenantEnv10set_tenantEPNS0_12ObTenantBaseE:2999:19 + 1: 19 + 2: 19 + 2.1: 13 + 3.1: 0 + 4: 0 + 6: 19 + 7: 19 + 8: 6 _ZN9oceanbase5share12ObTenantBaseC1Emb:6 + 9.1: 5 _ZN9oceanbase5share12ObTenantBaseaSERKS1_:5 + 10.1: 5 + 12.1: 13 _ZN9oceanbase5share12ObTenantBaseaSERKS1_:13 + 13: 9 + 15: 15 _ZN9oceanbase3lib20set_tenant_tg_helperEPNS0_8TGHelperE:15 + 17: 13 + 17.1: 9 + 17.2: 8 + 22.1: 13 + 9: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:85 + 2: 5 + 2.1: 0 + 2.2: 0 + 11: _ZN9oceanbase5share12ObTenantBaseD2Ev:158 + 0: 6 _ZN9oceanbase6common4hash9ObHashMapINS_5share17ThreadDynamicNodeEdNS1_24LatchReadWriteDefendModeENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS4_dEEEELi82ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:5 + 0.1: 6 _ZN9oceanbase6common4hash9ObHashSetIlNS1_19ReadWriteDefendModeENS1_9hash_funcIlEENS1_8equal_toIlEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIlNS1_11HashNullObjEEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:7 + 11.1: _ZN9oceanbase5share12ObTenantBaseD2Ev:0 + 0: 0 + 0.1: 0 + 12: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:234 + 2: 13 + 2.1: 0 + 2.2: 0 + 13: _ZNK9oceanbase5share12ObTenantBase2idEv:63 + 0: 9 +_ZN9oceanbase8memtable13ObMemtableCtx13set_trans_ctxEPNS_11transaction14ObPartTransCtxE:2977:251 + 1: 229 + 2: 229 + 3: 229 +_ZN9oceanbase7storage13ObTxDataTable17get_memtable_mgr_Ev:2964:242 + 0: 228 +_ZN9oceanbase8memtable18CompactMapImproved18StaticMemoryHelper10get_tl_arrEv:2958:58 + 1: 58 + 3: 58 + 5: 0 + 6.1: 0 + 7.1: 0 + 10.1: 0 + 11: 0 + 12: 0 + 14: 0 + 18: 0 + 18.1: 0 + 19: 0 + 20: 58 + 6: _ZN9oceanbase6common10TSIFactory12get_instanceIA512_NS_8memtable18CompactMapImproved4NodeELm0EEEPT_v:0 + 7: 0 + 8: 0 + 8.1: 0 +_ZN9oceanbase11transaction9ObTransID11deserializeEPKclRl:2955:6 + 0: 6 + 0.2: 6 + 0.4: 0 + 0.10: 0 + 0.11: 6 + 0.13: 0 + 0.19: 0 + 0.20: 6 + 0.21: 0 + 0.22: 0 + 0.27: 6 + 0.28: 0 + 0.29: 0 + 0.34: 6 + 0.35: 0 + 0.36: 0 + 0.43: 6 + 0.44: 6 _ZN9oceanbase11transaction9ObTransID21deserialize_dispatch_EPKclRlSt17integral_constantIbLb0EE:6 + 0.46: 0 + 0.51: 5 + 0.52: 5 + 0.53: 0 + 0.60: 0 + 0.61: 0 + 0.68: 0 + 0.69: 0 + 0.74: 0 + 0.75: 0 + 0.77: 0 + 0.78: 0 + 0.84: 0 + 0.85: 0 + 0.90: 0 + 0.2: _ZN9oceanbase6common13serialization6decodeEPKclRlS4_:390 + 2: 6 + 3: _ZN9oceanbase6common13serialization11decode_vi64EPKclRlPl:324 + 4: 6 + 6.2: 6 + 6.3: 6 + 7: 0 + 11: 0 + 12: 0 + 15: 6 + 18: 6 + 19: 6 + 20: 6 + 0.4: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 0.5: _ZN9oceanbase6common7ObLogKVIRA8_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 0.11: _ZN9oceanbase6common13serialization6decodeEPKclRlS4_:1518 + 2: 6 + 3: _ZN9oceanbase6common13serialization11decode_vi64EPKclRlPl:1470 + 4: 0 + 6.2: 24 + 6.3: 24 + 7: 24 + 11: 24 + 12: 24 + 15: 6 + 18: 6 + 19: 6 + 20: 6 + 0.13: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 0.14: _ZN9oceanbase6common7ObLogKVIRA4_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 0.22: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 0.23: _ZN9oceanbase6common7ObLogKVIRA10_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 0.29: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 0.36: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 0.46: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 0.47: _ZN9oceanbase6common7ObLogKVIlLb0EEC2EPKcRKl:0 + 0: 0 + 0.55: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.57: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.59: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.63: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.65: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.67: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.71: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.73: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.76: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.79: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.81: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.83: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.87: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.89: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase8memtable13ObMemtableCtx11trans_beginEv:2939:231 + 1: 227 + 4: 227 _ZN9oceanbase8memtable18ObTransCallbackMgr11trans_startEv:241 + 5: 224 +_ZNK9oceanbase5share6ObLSID18get_serialize_sizeEv:2926:274 + 1: 266 + 4: 266 +_ZN9oceanbase3sql18ObPlanCacheManager24get_or_create_plan_cacheEmRKNS0_14ObPCMemPctConfE:2901:26 + 1: 26 + 3: 26 + 5.1: 19 + 6: 19 + 11.1: 0 + 12: 0 + 13: 0 + 14.1: 0 + 15.1: 0 + 19: 0 + 19.1: 0 + 23.1: 0 + 24.1: 0 + 24.2: 0 + 28: 0 + 29.1: 0 + 30: 0 + 31: 0 + 38: 0 + 43: 0 + 45: 0 + 47.1: 0 + 58.1: 0 + 62: 19 + 4: _ZN9oceanbase3sql24ObPlanCacheManagerAtomicC2Ev:624 + 0: 24 + 5: _ZN9oceanbase6common4hash9ObHashMapImPNS_3sql11ObPlanCacheENS1_24LatchReadWriteDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS5_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE11read_atomicINS3_24ObPlanCacheManagerAtomicEEEiRKmRT_:600 + 2: 24 + 2: _ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS_3sql11ObPlanCacheEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE11read_atomicINS4_24ObPlanCacheManagerAtomicEEEiRKmRT_:432 + 2: 24 _ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS_3sql11ObPlanCacheEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE11read_atomicINS4_24ObPlanCacheManagerAtomicENS1_8pre_procIS7_EEEEiRKmRT_RT0_:24 + 11: _ZN9oceanbase3lib7ObLabelC2IA13_cEERKT_:0 + 2: _ZN9oceanbase3lib7ObLabelaSILm13EEERS1_RAT__Kc:0 + 4: 0 + 35: _ZN9oceanbase3sql11ObPlanCache13inc_ref_countEv:0 + 3: 0 + 36: _ZN9oceanbase3sql11ObPlanCache13inc_ref_countEv:0 + 3: 0 + 37: _ZN9oceanbase6common4hash9ObHashMapImPNS_3sql11ObPlanCacheENS1_24LatchReadWriteDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS5_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE14set_refactoredERKmRKS5_iii:0 + 8: 0 + 5: _ZN9oceanbase6common4hash11HashMapPairImPNS_3sql11ObPlanCacheEE4initERKmRKS5_:0 + 3: _ZN9oceanbase6common11copy_assignImEEiRT_RKS2_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapImEEiRT_RKS2_NS0_8BoolTypeILb0EEE:0 + 2: 0 + 5.1: _ZN9oceanbase6common11copy_assignIPNS_3sql11ObPlanCacheEEEiRT_RKS5_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapIPNS_3sql11ObPlanCacheEEEiRT_RKS5_NS0_8BoolTypeILb0EEE:0 + 2: 0 + 47: _ZN9oceanbase6common4hash9ObHashMapImPNS_3sql11ObPlanCacheENS1_24LatchReadWriteDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS5_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE17atomic_refactoredINS3_24ObPlanCacheManagerAtomicEEEiRKmRT_:0 + 3: _ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS_3sql11ObPlanCacheEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE17atomic_refactoredINS4_24ObPlanCacheManagerAtomicEEEiRKmRT_:0 + 2: 0 +_ZN9oceanbase6common6DCHashINS_4palf5LSKeyELl8EE6Handle6retireEil:2896:16 + 0: 15 + 1: 15 + 2: 15 + 4: 15 _ZN9oceanbase6common6DCHashINS_4palf5LSKeyELl8EE15do_pending_taskEPNS0_7DCArrayE:15 + 6: 16 + 7: 0 + 9: 0 + 10: 0 + 12: 16 + 2: _ZN9oceanbase6common6DCHashINS_4palf5LSKeyELl8EE17change_node_countEl:1425 + 1: 15 + 4: 15 + 5: 15 + 6: 15 + 8: 15 + 10: 0 + 11.1: 0 + 2: _ZN9oceanbase6common15ObSimpleCounter3incEl:120 + 0: 15 + 3: _ZNK9oceanbase6common15ObSimpleCounter5valueEv:105 + 0: 15 + 4: _ZSt3maxIlERKT_S2_S2_:150 + 5: 15 + 5: _ZSt3minIlERKT_S2_S2_:150 + 5: 15 + 10: _ZN9oceanbase6common6DCHashINS_4palf5LSKeyELl8EE6next2nEm:0 + 2: 0 + 5: _ZN9oceanbase6common6DCHashINS_4palf5LSKeyELl8EE6Handle11release_refEv:705 + 0: 15 + 0: _ZN9oceanbase6common7ObQSync11release_refEl:525 + 2: 15 + 3: 15 + 4.1: 0 + 2: _ZN9oceanbase6common7ObQSync7add_refEll:405 + 3: 15 + 6: 15 + 7: _ZN9oceanbase6common7ObQSync4syncEv:0 + 2.1: 0 + 2.3: 0 + 5.1: 0 + 8: _ZN9oceanbase6common7DCArray13retire_parentEv:0 + 0: 0 + 9: _ZN9oceanbase6common7ObQSync4syncEv:0 + 2.1: 0 + 2.3: 0 + 5.1: 0 +_ZN9oceanbase3sql13ObDASUpdateOp10release_opEv:2888:379 + 1: 361 + 3: 361 +_ZN9oceanbase6common8ObMember5resetEv:2880:128 + 1: 120 + 3: 120 + 5: 120 + 2: _ZN9oceanbase6common6ObAddr5resetEv:840 + 2: 120 +_ZNK9oceanbase8observer16ObInnerSQLResult7get_intEPKcRl:2870:29 + 0: 27 + 0.1: 0 + 0.2: 0 + 0.5: 27 + 0.6: 0 + 0.7: 0 + 0.10: 27 _ZNK9oceanbase8observer16ObInnerSQLResult8find_idxEPKcRl:29 + 0.12: 0 + 0.14: 0 + 0.17: 18 + 0.18: 0 + 0.19: 0 + 0.22: 18 _ZNK9oceanbase8observer16ObInnerSQLResult7get_intElRl:18 + 0.25: 0 + 0.29: 17 +_ZN9oceanbase7storage15ObTableHandleV2C2ERKS1_:2856:244 + 1: 238 + 2: 238 + 4: 238 _ZN9oceanbase7storage15ObTableHandleV2aSERKS1_:239 +_ZN9oceanbase7storage15ObTableHandleV2C1ERKS1_:2856:244 + 1: 238 + 2: 238 + 4: 238 _ZN9oceanbase7storage15ObTableHandleV2aSERKS1_:239 +_ZN9oceanbase6common2SVINS_12blocksstable11ObRowWriterELb0EED2Ev:2836:66 + 1: 64 + 2: 64 + 4: 64 _ZN9oceanbase12blocksstable11ObRowWriterD1Ev:69 + 5: 68 + 6: 0 + 6.1: 0 + 8: 68 + 10: 68 +_ZNK9oceanbase4palf11LogStateMgr15get_proposal_idEv:2820:289 + 1: 282 + 2: 282 +_ZN6obutil5MutexD2Ev:2718:264 + 1: 252 + 2: 252 + 4: 243 + 5.1: 0 + 7.1: 243 + 7.2: 0 +_ZN6obutil5MutexD1Ev:2718:264 + 1: 252 + 2: 252 + 4: 243 + 5.1: 0 + 7.1: 243 + 7.2: 0 +_ZN9oceanbase5share19ObPersistentLSTable20construct_ls_replicaERNS_6common9sqlclient13ObMySQLResultERNS0_11ObLSReplicaE:2717:1 + 3: 1 + 4: 1 + 6: 1 + 7: 1 + 8: 1 + 9: 1 + 12: 1 + 13: 1 + 14: 1 + 18: 1 + 19: 1 + 22: 1 + 23: 1 + 25: 1 + 27: 1 + 28: 1 + 29: 1 + 33.1: 1 _ZNK9oceanbase8observer16ObInnerSQLResult7get_intEPKcRl:1 + 33.2: 2 + 33.4: 0 + 33.6: 0 + 37.1: 2 + 37.2: 2 _ZN9oceanbase3omt19ObTenantTimezoneMgr12get_instanceEv:2 + 37.3: 2 _ZN9oceanbase3omt19ObTenantTimezoneMgr13get_tenant_tzEmRNS_6common11ObTZMapWrapE:2 + 37.4: 4 + 37.6: 0 + 38.1: 4 _ZN9oceanbase6common18ObTimeZoneInfoWrap15set_tz_info_mapEPKNS0_11ObTZInfoMapE:4 + 39: 3 + 39.2: 3 _ZNK9oceanbase8observer16ObInnerSQLResult13get_timestampEPKcPKNS_6common14ObTimeZoneInfoERl:3 + 39.3: 3 + 39.5: 0 + 39.7: 0 + 40: 0 + 40.2: 3 _ZNK9oceanbase8observer16ObInnerSQLResult13get_timestampEPKcPKNS_6common14ObTimeZoneInfoERl:3 + 40.3: 0 + 40.5: 0 + 40.7: 0 + 41.2: 0 + 41.4: 0 + 42: 3 + 42.1: 3 _ZNK9oceanbase8observer16ObInnerSQLResult7get_intEPKcRl:3 + 42.2: 1 + 42.4: 0 + 42.6: 0 + 43: 0 + 43.1: 1 _ZNK9oceanbase8observer16ObInnerSQLResult11get_varcharEPKcRNS_6common8ObStringE:1 + 43.2: 3 + 43.4: 0 + 43.6: 0 + 44: 0 + 44.1: 3 _ZNK9oceanbase8observer16ObInnerSQLResult7get_intEPKcRl:3 + 44.2: 2 + 44.4: 0 + 44.6: 0 + 45: 0 + 45.1: 2 _ZNK9oceanbase8observer16ObInnerSQLResult7get_intEPKcRl:2 + 45.2: 1 + 45.4: 0 + 45.6: 0 + 46: 0 + 46.1: 1 _ZNK9oceanbase8observer16ObInnerSQLResult7get_intEPKcRl:1 + 46.2: 0 + 46.4: 0 + 46.6: 0 + 47: 0 + 47.1: 0 + 47.2: 2 + 47.4: 0 + 47.6: 0 + 48: 0 + 48.1: 2 _ZNK9oceanbase8observer16ObInnerSQLResult7get_intEPKcRl:2 + 48.2: 1 + 48.7: 0 + 48.10: 0 + 48.13: 0 + 49: 0 + 49.1: 1 _ZNK9oceanbase8observer16ObInnerSQLResult7get_intEPKcRl:1 + 49.2: 1 + 49.4: 0 + 49.6: 0 + 50: 0 + 50.1: 1 _ZNK9oceanbase8observer16ObInnerSQLResult11get_varcharEPKcRNS_6common8ObStringE:1 + 50.2: 1 + 50.7: 0 + 50.10: 0 + 50.13: 0 + 51: 0 + 51.1: 2 _ZNK9oceanbase8observer16ObInnerSQLResult7get_intEPKcRl:2 + 51.2: 2 + 51.7: 0 + 51.10: 0 + 51.13: 0 + 52: 0 + 52.1: 2 _ZNK9oceanbase8observer16ObInnerSQLResult7get_intEPKcRl:2 + 52.2: 2 + 52.7: 0 + 52.10: 0 + 52.13: 0 + 54: 0 + 54.1: 2 _ZNK9oceanbase8observer16ObInnerSQLResult7get_intEPKcRl:2 + 54.2: 1 + 54.4: 0 + 54.6: 0 + 55: 0 + 55.1: 1 _ZNK9oceanbase8observer16ObInnerSQLResult11get_varcharEPKcRNS_6common8ObStringE:1 + 55.2: 1 + 55.4: 0 + 55.6: 0 + 56: 0 + 56.1: 1 _ZNK9oceanbase8observer16ObInnerSQLResult7get_intEPKcRl:1 + 56.2: 1 + 56.7: 0 + 56.10: 0 + 56.13: 0 + 57: 0 + 57.1: 1 _ZNK9oceanbase8observer16ObInnerSQLResult7get_intEPKcRl:1 + 57.2: 0 + 57.4: 0 + 57.6: 0 + 58: 0 + 58.1: 0 + 58.2: 0 + 58.7: 0 + 58.10: 0 + 58.13: 0 + 60.1: 1 _ZN9oceanbase5share11ObLSReplica16text2member_listEPKcRNS_6common9ObSEArrayINS0_12SimpleMemberELl7ENS4_15ObNullAllocatorELb0EEE:1 + 60.2: 1 + 63.1: 0 + 64.1: 1 _ZN9oceanbase6common6ObAddr11set_ip_addrERKNS0_8ObStringEi:2 + 64.2: 2 + 65: 0 + 66.1: 0 + 70.1: 2 + 71: 0 + 72.1: 0 + 73.1: 2 _ZN9oceanbase5share18get_replica_statusEPKcRNS0_15ObReplicaStatusE:2 + 73.2: 2 + 74.1: 0 + 78: 2 + 79.1: 2 + 79.2: 2 _ZN9oceanbase5share17ObLSRestoreStatusC1ERKNS1_6StatusE:2 + 79.3: 2 _ZN9oceanbase5share11ObLSReplica4initEllmRKNS0_6ObLSIDERKNS_6common6ObAddrElRKNS5_6ObRoleERKNS5_13ObReplicaTypeElRKNS0_15ObReplicaStatusERKNS0_17ObLSRestoreStatusElmRKNS5_8ObStringElll:3 + 79.4: 2 + 97.1: 0 + 102.1: 2 + 102.3: 4 + 102.4: 4 + 103.2: 2 + 104.1: 0 + 110: 2 + 111.43: 2 + 10: _ZN9oceanbase6common8ObStringC2Ev:10 + 1: 1 + 11: _ZN9oceanbase6common6ObAddrC2Ev:23 + 1: 1 + 15: _ZN9oceanbase6common8ObStringC2Ev:7 + 1: 1 + 16: _ZN9oceanbase6common9ObSEArrayINS_5share12SimpleMemberELl7ENS0_15ObNullAllocatorELb0EEC2Ev:107 + 0.1: 1 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_5share12SimpleMemberELl7ENS0_15ObNullAllocatorELb0EEC2ElRKS4_:92 + 2: 1 + 5: 1 + 6: 1 + 8: 1 + 17.1: 1 + 2: _ZN9oceanbase6common8ObIArrayINS_5share12SimpleMemberEEC2EPS3_l:8 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_5share12SimpleMemberEEC2EPS3_l:8 + 0: 1 + 7: _ZN9oceanbase6common15ObNullAllocatorC2ERKS1_:18 + 0: 1 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:21 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:21 + 2: 1 + 8: 1 + 20: _ZN9oceanbase6common8ObStringC2Ev:4 + 1: 1 + 26: _ZN9oceanbase6common8ObStringC2Ev:7 + 1: 1 + 35: _ZN9oceanbase6common18ObTimeZoneInfoWrapC2Ev:178 + 1: 2 _ZN9oceanbase6common17ObTimeZoneInfoPosC2Ev:2 + 3: 2 + 5: 2 + 6: 2 + 7: 2 + 2: _ZN9oceanbase6common14ObTimeZoneInfoC2Ev:86 + 1: 2 + 2: 2 + 1: _ZN9oceanbase6common11ObTZMapWrapC2Ev:14 + 0: 2 + 36: _ZN9oceanbase6common11ObTZMapWrapC2Ev:14 + 0: 2 + 38: _ZNK9oceanbase6common11ObTZMapWrap10get_tz_mapEv:56 + 0: 4 + 39.1: _ZNK9oceanbase6common18ObTimeZoneInfoWrap18get_time_zone_infoEv:21 + 0: 3 + 40.1: _ZNK9oceanbase6common18ObTimeZoneInfoWrap18get_time_zone_infoEv:21 + 0: 3 + 60: _ZN9oceanbase6common10to_cstringINS0_8ObStringEEEPKcRKT_:0 + 2: 0 + 69: _ZNK9oceanbase6common8ObString9to_stringEPcl:138 + 4: 2 + 5: 2 + 5.3: 2 + 5.4: 2 + 6: 2 + 8.1: 2 + 4: _ZNK9oceanbase6common8ObString3ptrEv:8 + 0: 2 + 5: _ZNK9oceanbase6common8ObString6lengthEv:6 + 0: 2 + 70: _ZNK9oceanbase6common8ObString6lengthEv:8 + 0: 2 + 79.1: _ZN9oceanbase5share6ObLSIDC2El:14 + 0: 2 + 103: _ZN9oceanbase6common12ObIArrayWrapINS_5share12SimpleMemberEE2atEl:14 + 6: 2 + 103.1: _ZN9oceanbase5share11ObLSReplica10add_memberENS0_12SimpleMemberE:170 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_5share12SimpleMemberELl7ENS0_15ObNullAllocatorELb0EE9push_backERKS3_:112 + 5: 2 + 6: 0 + 12: 0 + 15: 0 + 15.1: 2 + 16: 2 + 15.1: _ZN9oceanbase6common9ObClassOpINS_5share12SimpleMemberELb0EE20construct_and_assignERKS3_RS3_:46 + 3: _ZN9oceanbase6common16construct_assignINS_5share12SimpleMemberEEEiRT_RKS4_:46 + 2: _ZN9oceanbase6common21construct_assign_wrapINS_5share12SimpleMemberEEEiRT_RKS4_NS0_8BoolTypeILb0EEE:46 + 2: 2 + 111.43: _ZN9oceanbase6common13ObSEArrayImplINS_5share12SimpleMemberELl7ENS0_15ObNullAllocatorELb0EED2Ev:76 + 1: 2 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_5share12SimpleMemberELl7ENS0_15ObNullAllocatorELb0EE7destroyEv:26 + 9: 2 + 11: 0 + 111.47: _ZN9oceanbase6common13ObSEArrayImplINS_5share12SimpleMemberELl7ENS0_15ObNullAllocatorELb0EED2Ev:0 + 1: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_5share12SimpleMemberELl7ENS0_15ObNullAllocatorELb0EE7destroyEv:0 + 9: 0 + 11: 0 +_ZThn72_N9oceanbase11transaction7ObTsMgr15wait_gts_elapseEmlPNS0_10ObTsCbTaskERb:2680:269 +_ZN9oceanbase8observer16ObInnerSQLResult4openEv:2665:4 + 1: 4 + 2: 4 + 3: 4 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:4 + 5.1: 3 + 6.2: 4 + 8: 4 + 9: 0 + 10.1: 0 + 11.1: 4 + 11.2: 4 _ZN9oceanbase5share19ObTenantSwitchGuard9switch_toEmb:5 + 11.3: 4 + 12.1: 0 + 14: 4 + 15.1: 4 + 15.4: 3 + 18.2: 4 + 18.3: 7 + 18.4: 7 + 18.5: 3 _ZN9oceanbase3lib2_SILNS0_13ContextSourceE0EED2Ev:3 + 18.7: 4 + 18.9: 3 + 18.10: 0 + 19: 4 + 20: 0 + 21.1: 0 + 22.2: 4 + 22.3: 4 _ZN9oceanbase3sql11ObResultSet4openEv:4 + 22.4: 3 + 23: 0 + 23.2: 0 + 24.1: 0 + 27.1: 3 + 30.1: 3 + 30.2: 3 _ZN9oceanbase3sql11ObResultSet12get_next_rowERPKNS_6common8ObNewRowE:3 + 30.3: 3 + 30.4: 0 + 31: 3 + 31.2: 1 + 31.3: 0 + 31.4: 0 + 32: 2 + 33: 2 + 34: 2 + 36.1: 0 + 39: 1 + 45: 3 _ZN9oceanbase3lib15CompatModeGuardD2Ev:3 + 45.1: 0 + 46: 3 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:3 + 46.1: 3 + 47: 3 + 48.10: 2 + 48.11: 0 + 4: _ZN9oceanbase5share25_make_tenant_switch_guardEv:150 + 2: 3 + 2.1: 0 + 2.3: 0 + 2.6: 0 + 2.2: _ZN9oceanbase5share19ObTenantSwitchGuardC2Ev:0 + 0.4: _ZNSt8functionIFiRN9oceanbase6common10ObLDHandleEEEC2Ev:0 + 1: _ZNSt14_Function_baseC2Ev:0 + 0: 0 + 0.5: _ZN9oceanbase5share19ObTenantSwitchGuard5resetEv:0 + 2: 0 + 3: 0 + 4: 0 + 3: _ZN9oceanbase5share19ObTenantSwitchGuardC2ERKS1_:93 + 0.1: _ZNSt8functionIFiRN9oceanbase6common10ObLDHandleEEEC2Ev:21 + 1: _ZNSt14_Function_baseC2Ev:21 + 0: 3 + 2: _ZN9oceanbase5share19ObTenantSwitchGuard5resetEv:72 + 2: 3 + 3: 3 + 4: 3 + 5: _ZNK9oceanbase8observer16ObInnerSQLResult19has_tenant_resourceEv:21 + 0: 3 + 6: _ZN9oceanbase8observer16ObInnerSQLResult10result_setEv:21 + 0: 3 + 6.1: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:33 + 0: 3 + 0.2: 0 + 6.2: _ZN9oceanbase3sql13ObExecContext19set_plan_start_timeEl:56 + 0: 4 + 0: _ZN9oceanbase3sql17ObPhysicalPlanCtx19set_plan_start_timeEl:28 + 0: 4 + 11.1: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:56 + 0: 4 + 14: _ZN9oceanbase3lib15CompatModeGuardC2ENS0_6Worker10CompatModeE:408 + 2: 4 + 2: _ZN9oceanbase3lib6Worker4selfEv:112 + 3: 4 + 4: 0 + 2.1: _ZN9oceanbase3lib6Worker22get_compatibility_modeEv:172 + 2: _ZN9oceanbase3lib15get_compat_modeEv:172 + 2: 4 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:100 + 2: 4 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 3: _ZN9oceanbase3lib6Worker4selfEv:36 + 3: 4 + 4: 0 + 3.1: _ZN9oceanbase3lib6Worker22set_compatibility_modeENS1_10CompatModeE:76 + 2: _ZN9oceanbase3lib15set_compat_modeENS0_6Worker10CompatModeE:76 + 2: 4 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 15: _ZNK9oceanbase8observer16ObInnerSQLResult19has_tenant_resourceEv:28 + 0: 4 + 16: _ZNK9oceanbase3sql11ObResultSet13get_stmt_typeEv:28 + 2: 4 + 17: _ZN9oceanbase3sql17ObRemoteResultSet13get_stmt_typeEv:0 + 0: 0 + 18: _ZN9oceanbase3lib2_SILNS0_13ContextSourceE0EEC2EbRNS0_13MemoryContextE:596 + 1: 4 + 4.1: 4 + 7: 4 + 10: 4 + 13: 4 + 1: _ZN9oceanbase3lib6_SBaseC2Ev:44 + 1: 4 + 4: _ZN9oceanbase3libeqEDnRKNS0_13MemoryContextE:32 + 1: 4 + 7: _ZN9oceanbase3lib4FlowC2ERNS0_13MemoryContextE:140 + 1: 4 + 3: 4 + 8: _ZN9oceanbase3lib4Flow4initEv:256 + 4: 4 + 7: 4 + 8: 4 + 9: 4 + 12: 4 + 7: _ZL12abort_unlessb:24 + 5: 4 + 6: 0 + 18.6: _ZNK9oceanbase3lib6_SBase7get_retEv:24 + 2: 4 + 22.1: _ZNK9oceanbase8observer16ObInnerSQLResult19has_tenant_resourceEv:28 + 0: 4 + 23: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:0 + 0: 0 + 0.2: 0 + 23.1: _ZN9oceanbase3sql13ObExecContext17get_task_exec_ctxEv:0 + 2: 0 + 30: _ZNK9oceanbase8observer16ObInnerSQLResult19has_tenant_resourceEv:21 + 0: 3 + 31.1: _ZNK9oceanbase8observer16ObInnerSQLResult19has_tenant_resourceEv:7 + 0: 1 + 48.10: _ZN9oceanbase5share19ObTenantSwitchGuardD2Ev:25 + 2: 3 _ZN9oceanbase5share19ObTenantSwitchGuard7releaseEv:3 + 3.1: 0 + 3.2: 0 + 3: _ZNSt14_Function_baseD2Ev:22 + 2: 2 + 3: 0 + 3.2: 0 +_ZN9oceanbase4palf11PalfEnvImpl20get_palf_handle_implElRPNS0_14PalfHandleImplE:2664:35 + 2: 33 + 3: 33 + 5.1: 33 + 6: 0 + 7.1: 0 + 8.1: 33 _ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE3getERKS3_RPS4_:33 + 8.2: 15 + 9.1: 0 + 10.1: 15 + 10.2: 15 + 11: 0 + 13.1: 15 _ZZN9oceanbase4palf11PalfEnvImpl20get_palf_handle_implElRPNS0_14PalfHandleImplEENK5$_689clEPKc.0e4bf25207570af14a78557c8489c4fc:16 + 16: 16 + 17: 0 + 19: 0 + 20.4: 16 + 4: _ZN9oceanbase4palf5LSKeyC2El:132 + 0: 33 + 5: _ZN9oceanbase4palf16is_valid_palf_idEl:99 + 2: 33 + 10.1: _ZNK9oceanbase4palf14PalfHandleImpl17check_can_be_usedEv:90 + 2: 15 + 17: _ZN9oceanbase4palf11PalfEnvImpl23revert_palf_handle_implEPNS0_14PalfHandleImplE:0 + 2: 0 + 3: 0 +_ZN9oceanbase4palf11LogWriteBufC2Ev:2641:21 + 1: 19 + 3: 19 + 3.1: 0 + 0: _ZN9oceanbase6common9ObSEArrayINS_4palf11LogWriteBuf11InnerStructELl2ENS0_19ModulePageAllocatorELb0EEC2Ev:2337 + 0.1: 19 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_4palf11LogWriteBuf11InnerStructELl2ENS0_19ModulePageAllocatorELb0EEC2ElRKS5_:2071 + 2: 19 + 5: 19 + 6: 19 + 8: 19 + 17.1: 19 + 2: _ZN9oceanbase6common8ObIArrayINS_4palf11LogWriteBuf11InnerStructEEC2EPS4_l:190 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_4palf11LogWriteBuf11InnerStructEEC2EPS4_l:190 + 0: 19 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:779 + 0: 19 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:399 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:399 + 2: 19 + 8: 19 + 2: _ZN9oceanbase4palf11LogWriteBuf5resetEv:19 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_4palf11LogWriteBuf11InnerStructELl2ENS0_19ModulePageAllocatorELb0EE5resetEv:19 + 0: 19 _ZN9oceanbase6common13ObSEArrayImplINS_4palf11LogWriteBuf11InnerStructELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv:19 +_ZN9oceanbase4palf11LogWriteBufC1Ev:2641:21 + 1: 19 + 3: 19 + 3.1: 0 + 0: _ZN9oceanbase6common9ObSEArrayINS_4palf11LogWriteBuf11InnerStructELl2ENS0_19ModulePageAllocatorELb0EEC2Ev:2337 + 0.1: 19 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_4palf11LogWriteBuf11InnerStructELl2ENS0_19ModulePageAllocatorELb0EEC2ElRKS5_:2071 + 2: 19 + 5: 19 + 6: 19 + 8: 19 + 17.1: 19 + 2: _ZN9oceanbase6common8ObIArrayINS_4palf11LogWriteBuf11InnerStructEEC2EPS4_l:190 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_4palf11LogWriteBuf11InnerStructEEC2EPS4_l:190 + 0: 19 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:779 + 0: 19 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:399 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:399 + 2: 19 + 8: 19 + 2: _ZN9oceanbase4palf11LogWriteBuf5resetEv:19 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_4palf11LogWriteBuf11InnerStructELl2ENS0_19ModulePageAllocatorELb0EE5resetEv:19 + 0: 19 _ZN9oceanbase6common13ObSEArrayImplINS_4palf11LogWriteBuf11InnerStructELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv:19 +_ZN9oceanbase4palf17LogIOFlushLogTask4initERKNS0_13FlushLogCbCtxERKNS0_11LogWriteBufEll:2612:11 + 4: 11 + 5: 11 + 6: 11 + 7: 0 + 8.1: 0 + 9.1: 11 + 9.2: 11 _ZNK9oceanbase4palf11LogWriteBuf8is_validEv:11 + 10: 0 + 11.1: 0 + 14: 8 + 15: 7 + 16: 7 + 17: 7 + 18.1: 7 _ZZN9oceanbase4palf17LogIOFlushLogTask4initERKNS0_13FlushLogCbCtxERKNS0_11LogWriteBufEllENK5$_664clEPKc.1598dc2348996c1ae1caea6120522988:7 + 21: 5 + 9.1: _ZNK9oceanbase4palf13FlushLogCbCtx8is_validEv:233 + 0: 11 _ZNK9oceanbase4palf3LSN8is_validEv:10 + 0.1: _ZN9oceanbase4palf15is_valid_log_tsEl:55 + 2: 11 + 13: _ZN9oceanbase4palf13FlushLogCbCtxaSERKS1_:496 + 2: 10 + 3: 10 + 4: 10 _ZN9oceanbase4palf3LSNaSERKS1_:10 + 5: 8 + 6: 8 + 7: 8 + 8: 8 + 14: _ZN9oceanbase4palf11LogWriteBufaSERKS1_:703 + 0: _ZN9oceanbase6common9ObSEArrayINS_4palf11LogWriteBuf11InnerStructELl2ENS0_19ModulePageAllocatorELb0EEaSERKS6_:703 + 0: _ZN9oceanbase6common13ObSEArrayImplINS_4palf11LogWriteBuf11InnerStructELl2ENS0_19ModulePageAllocatorELb0EEaSERKS6_:703 + 4: 8 + 5: 8 _ZN9oceanbase6common13ObSEArrayImplINS_4palf11LogWriteBuf11InnerStructELl2ENS0_19ModulePageAllocatorELb0EE5reuseEv:8 + 7: 8 _ZN9oceanbase6common13ObSEArrayImplINS_4palf11LogWriteBuf11InnerStructELl2ENS0_19ModulePageAllocatorELb0EE7reserveEl:8 + 8.1: 8 + 8.3: 8 + 8.5: 0 + 9: 7 + 13: 7 + 14: 0 + 15: 7 + 6: _ZNK9oceanbase6common12ObIArrayWrapINS_4palf11LogWriteBuf11InnerStructEE5countEv:40 + 0: 8 + 9: _ZN9oceanbase6common16construct_assignINS_4palf11LogWriteBuf11InnerStructEEEiRT_RKS5_:56 + 2: _ZN9oceanbase6common21construct_assign_wrapINS_4palf11LogWriteBuf11InnerStructEEEiRT_RKS5_NS0_8BoolTypeILb0EEE:56 + 2: 7 +_ZN9oceanbase6common5occam26ObOccamTimeGuardDetectHung5clickEt:2580:20 + 0: 20 + 2: 20 + 3: 20 + 4: 20 + 5: 20 + 6: 20 + 7: 20 + 8: 20 + 9: 20 + 11: 20 + 1: _ZN9oceanbase6common5occam16ObOccamTimeGuard5clickEt:740 + 2: 20 + 4: 20 + 5: 20 + 6: 20 + 7: 20 + 3: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:20 + 2: 20 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:22 + 3: _ZN9oceanbase6common5occam20ObThreadHungDetector12get_instanceEv:260 + 0: 20 + 0.1: 0 + 0.2: 0 + 0.3: 0 + 0.5: 0 + 0.7: 0 +_ZN9oceanbase6common6number8ObNumber17construct_digits_EPKclllPjRlS6_:2576:22 + 2: 21 + 7: 15 + 10: 15 + 11: 21 + 12: 7 + 14: 7 + 15: 7 + 16.1: 7 + 16.4: 7 + 17: 7 + 19: 7 + 21: 7 + 24: 22 + 25: 0 + 26: 0 + 27: 0 + 28: 0 + 28.1: 0 + 28.2: 0 + 28.3: 0 + 28.5: 0 + 29: 0 + 30: 0 + 31: 0 + 35.1: 0 + 35.4: 0 + 36: 0 + 39: 0 + 40: 0 + 49: 22 + 49.1: 22 + 49.2: 7 + 49.3: 7 + 52.1: 7 + 52.3: 21 + 54: 21 + 17: _ZN9oceanbase6common10ObFastAtoiIjE23atoi_positive_uncheckedEPKcS4_:174 + 3.1: 7 + 4: 7 + 37: _ZN9oceanbase6common10ObFastAtoiIjE23atoi_positive_uncheckedEPKcS4_:0 + 3: 0 + 3.1: 0 + 4: 0 + 39: _ZN9oceanbase6common10ObFastAtoiIjE23atoi_positive_uncheckedEPKcS4_:0 + 3.1: 0 + 4: 0 +_ZNK9oceanbase7storage8ObITable14get_end_log_tsEv:2550:257 + 1: 255 + 2: 255 +_ZN9oceanbase4palf19LogGroupEntryHeaderC2Ev:2526:56 + 0: 54 _ZN9oceanbase4palf3LSNC1Ev:56 + 1: 54 + 3: 49 + 2: _ZN9oceanbase4palf19LogGroupEntryHeader5resetEv:1309 + 3: 55 + 6: 55 _ZN9oceanbase4palf3LSN5resetEv:56 + 8: 49 +_ZN9oceanbase4palf19LogGroupEntryHeaderC1Ev:2526:56 + 0: 54 _ZN9oceanbase4palf3LSNC1Ev:56 + 1: 54 + 3: 49 + 2: _ZN9oceanbase4palf19LogGroupEntryHeader5resetEv:1309 + 3: 55 + 6: 55 _ZN9oceanbase4palf3LSN5resetEv:56 + 8: 49 +_ZN9oceanbase4palf14PalfHandleImpl21inner_after_flush_logERKNS0_13FlushLogCbCtxE:2517:6 + 1: 6 + 2: 6 + 3.1: 6 _ZZN9oceanbase4palf14PalfHandleImpl21inner_after_flush_logERKNS0_13FlushLogCbCtxEENK6$_1146clEPKc.0e4bf25207570af14a78557c8489c4fc:6 + 5: 6 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:5 + 6: 6 + 7: 8 + 8: 0 + 9.1: 8 _ZN9oceanbase4palf16LogSlidingWindow15after_flush_logERKNS0_13FlushLogCbCtxE:8 + 9.2: 6 + 10.1: 0 + 12: 6 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:6 + 14.1: 7 _ZZN9oceanbase4palf14PalfHandleImpl21inner_after_flush_logERKNS0_13FlushLogCbCtxEENK6$_1148clEPKc.0e4bf25207570af14a78557c8489c4fc:8 + 16: 8 + 17.4: 8 + 6: _ZN9oceanbase6common8TCRWLock10RLockGuardC2ERS1_:6 + 0: 6 _ZN9oceanbase6common8TCRWLock6rdlockEl:6 + 13: _ZN9oceanbase6common10ObMiniStat10ObStatItem4statEl:386 + 3: 7 + 4: 7 + 5: 7 + 6: 0 + 7.1: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:8 + 2: 8 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:8 + 17.4: _ZN9oceanbase6common8TCRWLock10RLockGuardD2Ev:1120 + 0.2: 0 + 0: _ZN9oceanbase6common8TCRWLock8rdunlockEv:1120 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:32 + 0: 8 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPi:944 + 2: 8 + 4.1: 8 + 4.2: 0 + 6: 8 + 6.1: 8 + 10: 8 + 2: _ZN9oceanbase6common8get_itidEv:224 + 4: 8 + 5: 0 + 6: 0 + 8: 0 + 11: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:88 + 2: 8 + 2.1: 0 + 3: 0 + 17.5: _ZN9oceanbase6common8TCRWLock10RLockGuardD2Ev:0 + 0.2: 0 + 0: _ZN9oceanbase6common8TCRWLock8rdunlockEv:0 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:0 + 0: 0 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPi:0 + 2: 0 + 4.1: 0 + 4.2: 0 + 6: 0 + 6.1: 0 + 10: 0 + 2: _ZN9oceanbase6common8get_itidEv:0 + 4: 0 + 5: 0 + 6: 0 + 8: 0 + 11: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:0 + 2: 0 + 2.1: 0 + 3: 0 +_ZN9oceanbase6common13ObSEArrayImplINS_5share16ObServerLocalityELl32ENS0_19ModulePageAllocatorELb0EE5resetEv:2484:278 + 0: 276 _ZN9oceanbase6common13ObSEArrayImplINS_5share16ObServerLocalityELl32ENS0_19ModulePageAllocatorELb0EE7destroyEv:296 +_ZN9oceanbase4palf19LogGroupEntryHeaderD2Ev:2484:58 + 1: 57 + 3: 62 + 3.2: 0 + 2: _ZN9oceanbase4palf19LogGroupEntryHeader5resetEv:1537 + 3: 57 + 6: 57 _ZN9oceanbase4palf3LSN5resetEv:62 + 8: 62 +_ZN9oceanbase4palf19LogGroupEntryHeaderD1Ev:2484:58 + 1: 57 + 3: 62 + 3.2: 0 + 2: _ZN9oceanbase4palf19LogGroupEntryHeader5resetEv:1537 + 3: 57 + 6: 57 _ZN9oceanbase4palf3LSN5resetEv:62 + 8: 62 +_ZN9oceanbase11transaction12ObTxExecInfoC2ERNS0_24TransModulePageAllocatorE:2475:3 + 0.1: 3 _ZN9oceanbase4palf3LSNC1Ev:3 + 0.4: 3 _ZN9oceanbase4palf3LSNC1Ev:3 + 0.5: 3 + 4: 3 + 4.4: 3 + 0: _ZN9oceanbase5share6ObLSIDC2Ev:24 + 0: 3 + 0.2: _ZN9oceanbase6common9ObSEArrayINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EEC2Ev:426 + 0.1: 3 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EEC2ElRKS4_:372 + 2: 3 + 5: 3 + 6: 3 + 8: 3 + 17.1: 3 + 2: _ZN9oceanbase6common8ObIArrayINS_11transaction14ObTxBufferNodeEEC2EPS3_l:54 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_11transaction14ObTxBufferNodeEEC2EPS3_l:54 + 0: 3 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:117 + 0: 3 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:54 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:54 + 2: 3 + 8: 3 + 0.3: _ZN9oceanbase6common6ObAddrC2Ev:99 + 1: 3 + 0.5: _ZN9oceanbase11transaction11ObXATransIDC2Ev:45 + 0.2: 3 _ZN9oceanbase11transaction11ObXATransID5resetEv:3 + 0: _ZN9oceanbase6common8ObStringC2Ev:21 + 1: 3 + 0.1: _ZN9oceanbase6common8ObStringC2Ev:21 + 1: 3 + 1.2: _ZN9oceanbase6common9ObSEArrayINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EECI2NS0_13ObSEArrayImplIS3_Ll3ES4_Lb0EEEElRKS4_:402 + 0: 3 + 0: _ZN9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EEC2ElRKS4_:357 + 2: 3 + 5: 3 + 6: 3 + 8: 3 + 17.1: 3 + 2: _ZN9oceanbase6common8ObIArrayINS_5share6ObLSIDEEC2EPS3_l:36 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_5share6ObLSIDEEC2EPS3_l:36 + 0: 3 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:123 + 0: 3 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:75 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:75 + 2: 3 + 8: 3 + 2.2: _ZN9oceanbase6common9ObSEArrayINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EECI2NS0_13ObSEArrayImplIS3_Ll3ES4_Lb0EEEElRKS4_:372 + 0: 3 + 0: _ZN9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EEC2ElRKS4_:351 + 2: 3 + 5: 3 + 6: 3 + 8: 3 + 17.1: 3 + 2: _ZN9oceanbase6common8ObIArrayINS_5share6ObLSIDEEC2EPS3_l:54 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_5share6ObLSIDEEC2EPS3_l:54 + 0: 3 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:105 + 0: 3 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:54 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:54 + 2: 3 + 8: 3 + 3.2: _ZN9oceanbase6common9ObSEArrayINS_4palf3LSNELl10ENS0_19ModulePageAllocatorELb0EECI2NS0_13ObSEArrayImplIS3_Ll10ES4_Lb0EEEElRKS4_:468 + 0: 3 + 0: _ZN9oceanbase6common13ObSEArrayImplINS_4palf3LSNELl10ENS0_19ModulePageAllocatorELb0EEC2ElRKS4_:414 + 2: 3 + 5: 3 + 6: 3 + 8: 3 + 17.1: 3 + 2: _ZN9oceanbase6common8ObIArrayINS_4palf3LSNEEC2EPS3_l:54 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_4palf3LSNEEC2EPS3_l:54 + 0: 3 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:126 + 0: 3 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:75 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:75 + 2: 3 + 8: 3 + 4.2: _ZN9oceanbase6common9ObSEArrayINS_11transaction11ObLSLogInfoELl10ENS0_19ModulePageAllocatorELb0EECI2NS0_13ObSEArrayImplIS3_Ll10ES4_Lb0EEEElRKS4_:456 + 0: 3 + 0: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction11ObLSLogInfoELl10ENS0_19ModulePageAllocatorELb0EEC2ElRKS4_:402 + 2: 3 + 5: 3 + 6: 3 + 8: 3 + 17.1: 3 + 2: _ZN9oceanbase6common8ObIArrayINS_11transaction11ObLSLogInfoEEC2EPS3_l:54 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_11transaction11ObLSLogInfoEEC2EPS3_l:54 + 0: 3 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:126 + 0: 3 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:75 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:75 + 2: 3 + 8: 3 + 4.17: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction11ObLSLogInfoELl10ENS0_19ModulePageAllocatorELb0EED2Ev:0 + 1: 0 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction11ObLSLogInfoELl10ENS0_19ModulePageAllocatorELb0EE7destroyEv:0 + 4.1: 0 + 4.3: 0 + 9: 0 + 11: 0 + 13: 0 + 15: 0 + 24: 0 + 5: _ZN9oceanbase11transaction11ObLSLogInfoD2Ev:0 + 0.1: _ZN9oceanbase5share6ObLSIDD2Ev:0 + 0: _ZN9oceanbase5share6ObLSID5resetEv:0 + 0: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction11ObLSLogInfoELl10ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 4.19: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EED2Ev:0 + 1: 0 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:0 + 9: 0 + 11: 0 + 13: 0 + 15: 0 + 24: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 4.20: _ZN9oceanbase6common13ObSEArrayImplINS_4palf3LSNELl10ENS0_19ModulePageAllocatorELb0EED2Ev:0 + 1: 0 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_4palf3LSNELl10ENS0_19ModulePageAllocatorELb0EE7destroyEv:0 + 9: 0 + 11: 0 + 13: 0 + 15: 0 + 24: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_4palf3LSNELl10ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 4.22: _ZN9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EED2Ev:0 + 1: 0 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EE7destroyEv:0 + 4.1: 0 + 4.3: 0 + 9: 0 + 11: 0 + 13: 0 + 15: 0 + 24: 0 + 5: _ZN9oceanbase5share6ObLSIDD2Ev:0 + 0: _ZN9oceanbase5share6ObLSID5resetEv:0 + 0: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 4.23: _ZN9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EED2Ev:0 + 1: 0 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EE7destroyEv:0 + 4.1: 0 + 4.3: 0 + 9: 0 + 11: 0 + 13: 0 + 15: 0 + 24: 0 + 5: _ZN9oceanbase5share6ObLSIDD2Ev:0 + 0: _ZN9oceanbase5share6ObLSID5resetEv:0 + 0: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 4.24: _ZN9oceanbase5share6ObLSIDD2Ev:0 + 0: _ZN9oceanbase5share6ObLSID5resetEv:0 + 0: 0 +_ZThn72_N9oceanbase11transaction7ObTsMgr7get_gtsEmNS0_11MonotonicTsEPNS0_10ObTsCbTaskERlRS2_:2460:257 +_ZN9oceanbase8memtable18ObTransCallbackMgr17calc_checksum_allEv:2440:247 + 1: 244 + 2: 244 _ZN9oceanbase8memtable16ObTxCallbackList20tx_calc_checksum_allEv:246 +_ZN9oceanbase5share12ObTenantBaseC2Emb:2435:6 + 1: 6 + 2: 4 + 3: 4 + 5: 5 + 6: 5 + 7: 5 + 8: 5 + 9: 6 + 10: 5 + 10.2: 0 + 0.1: _ZN9oceanbase6common4hash9ObHashMapINS_5share17ThreadDynamicNodeEdNS1_24LatchReadWriteDefendModeENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS4_dEEEELi82ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev:795 + 0.1: 5 + 0: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS_5share17ThreadDynamicNodeEdEEEELi82ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEC2Ev:255 + 0: 5 + 2: 5 + 0.1: _ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocatorC2EmRKNS_3lib7ObLabelE:140 + 3: 5 + 4: 5 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:70 + 7: 5 + 2: _ZN9oceanbase6common4hash10SpinIniterC2ERVi:45 + 2: 5 + 3.1: 0 + 0.1: _ZN9oceanbase6common4hash11ObHashTableINS_5share17ThreadDynamicNodeENS1_11HashMapPairIS4_dEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS6_EELi82ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev:300 + 0: 5 + 1: 5 + 0: _ZN9oceanbase6common8ObMallocC2Ev:160 + 0: 5 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:125 + 5: 5 + 7: 5 + 8: _ZN9oceanbase6common4hash9constructIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_5share17ThreadDynamicNodeEdEENS0_7ObLatchENS1_5NCondEEEEEvRT_:70 + 2: _ZN9oceanbase6common4hash12do_constructIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_5share17ThreadDynamicNodeEdEENS0_7ObLatchENS1_5NCondEEEEEvRT_NS1_16NormalPointerTagE:70 + 2: 5 + 0.2: _ZN9oceanbase6common8ObMallocC2Ev:35 + 0: 5 + 4: _ZN9oceanbase6common8ObMalloc8set_attrERKNS_3lib9ObMemAttrE:170 + 0: 5 + 0.2: _ZN9oceanbase6common4hash9ObHashSetIlNS1_19ReadWriteDefendModeENS1_9hash_funcIlEENS1_8equal_toIlEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIlNS1_11HashNullObjEEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev:865 + 0.2: 5 + 0: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIlNS1_11HashNullObjEEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEC2Ev:235 + 2: 4 + 0.1: _ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocatorC2EmRKNS_3lib7ObLabelE:168 + 3: 4 + 4: 4 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:68 + 7: 4 + 2: _ZN9oceanbase6common4hash10SpinIniterC2ERVi:39 + 2: 5 + 3.1: 0 + 0.1: _ZN9oceanbase6common8ObMallocC2ERKNS_3lib7ObLabelE:295 + 1: 5 + 2: 5 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:105 + 5: 5 + 7: 5 + 0.2: _ZN9oceanbase6common4hash11ObHashTableIlNS1_11HashMapPairIlNS1_11HashNullObjEEENS1_9hash_funcIlEENS1_8equal_toIlEENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19ReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev:280 + 0: 5 + 1: 5 + 0: _ZN9oceanbase6common8ObMallocC2Ev:140 + 0: 5 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:105 + 5: 5 + 7: 5 + 8: _ZN9oceanbase6common4hash9constructIPNS1_17ObHashTableBucketINS1_11HashMapPairIlNS1_11HashNullObjEEE16pthread_rwlock_tNS1_5NCondEEEEEvRT_:70 + 2: _ZN9oceanbase6common4hash12do_constructIPNS1_17ObHashTableBucketINS1_11HashMapPairIlNS1_11HashNullObjEEE16pthread_rwlock_tNS1_5NCondEEEEEvRT_NS1_16NormalPointerTagE:70 + 2: 5 +_ZN9oceanbase5share12ObTenantBaseC1Emb:2435:6 + 1: 6 + 2: 4 + 3: 4 + 5: 5 + 6: 5 + 7: 5 + 8: 5 + 9: 6 + 10: 5 + 10.2: 0 + 0.1: _ZN9oceanbase6common4hash9ObHashMapINS_5share17ThreadDynamicNodeEdNS1_24LatchReadWriteDefendModeENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS4_dEEEELi82ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev:795 + 0.1: 5 + 0: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS_5share17ThreadDynamicNodeEdEEEELi82ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEC2Ev:255 + 0: 5 + 2: 5 + 0.1: _ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocatorC2EmRKNS_3lib7ObLabelE:140 + 3: 5 + 4: 5 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:70 + 7: 5 + 2: _ZN9oceanbase6common4hash10SpinIniterC2ERVi:45 + 2: 5 + 3.1: 0 + 0.1: _ZN9oceanbase6common4hash11ObHashTableINS_5share17ThreadDynamicNodeENS1_11HashMapPairIS4_dEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS6_EELi82ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev:300 + 0: 5 + 1: 5 + 0: _ZN9oceanbase6common8ObMallocC2Ev:160 + 0: 5 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:125 + 5: 5 + 7: 5 + 8: _ZN9oceanbase6common4hash9constructIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_5share17ThreadDynamicNodeEdEENS0_7ObLatchENS1_5NCondEEEEEvRT_:70 + 2: _ZN9oceanbase6common4hash12do_constructIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_5share17ThreadDynamicNodeEdEENS0_7ObLatchENS1_5NCondEEEEEvRT_NS1_16NormalPointerTagE:70 + 2: 5 + 0.2: _ZN9oceanbase6common8ObMallocC2Ev:35 + 0: 5 + 4: _ZN9oceanbase6common8ObMalloc8set_attrERKNS_3lib9ObMemAttrE:170 + 0: 5 + 0.2: _ZN9oceanbase6common4hash9ObHashSetIlNS1_19ReadWriteDefendModeENS1_9hash_funcIlEENS1_8equal_toIlEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIlNS1_11HashNullObjEEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev:865 + 0.2: 5 + 0: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIlNS1_11HashNullObjEEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEC2Ev:235 + 2: 4 + 0.1: _ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocatorC2EmRKNS_3lib7ObLabelE:168 + 3: 4 + 4: 4 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:68 + 7: 4 + 2: _ZN9oceanbase6common4hash10SpinIniterC2ERVi:39 + 2: 5 + 3.1: 0 + 0.1: _ZN9oceanbase6common8ObMallocC2ERKNS_3lib7ObLabelE:295 + 1: 5 + 2: 5 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:105 + 5: 5 + 7: 5 + 0.2: _ZN9oceanbase6common4hash11ObHashTableIlNS1_11HashMapPairIlNS1_11HashNullObjEEENS1_9hash_funcIlEENS1_8equal_toIlEENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19ReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev:280 + 0: 5 + 1: 5 + 0: _ZN9oceanbase6common8ObMallocC2Ev:140 + 0: 5 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:105 + 5: 5 + 7: 5 + 8: _ZN9oceanbase6common4hash9constructIPNS1_17ObHashTableBucketINS1_11HashMapPairIlNS1_11HashNullObjEEE16pthread_rwlock_tNS1_5NCondEEEEEvRT_:70 + 2: _ZN9oceanbase6common4hash12do_constructIPNS1_17ObHashTableBucketINS1_11HashMapPairIlNS1_11HashNullObjEEE16pthread_rwlock_tNS1_5NCondEEEEEvRT_NS1_16NormalPointerTagE:70 + 2: 5 +_ZN9oceanbase8memtable13ObMemtableCtxC2Ev:2393:2 + 0.4: 3 + 4: 3 + 5: 3 + 10: 3 + 11: 3 + 12: 3 + 23: 3 + 25: 3 _ZN9oceanbase11transaction9tablelock12ObLockMemCtxC2ERNS_6common12ObIAllocatorE:3 + 26: 3 + 27: 3 + 28: 3 + 28.12: 0 + 28.15: 0 + 0: _ZN9oceanbase8memtable18ObRedoLogGeneratorC2Ev:105 + 1: 3 + 2: 3 + 0.3: _ZN9oceanbase7storage14ObTxTableGuardC2Ev:66 + 0: 3 + 0.4: _ZN9oceanbase6common7ObArrayINS_11transaction9ObTransIDENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEEC2Ev:300 + 0.1: 3 + 0.5: _ZN9oceanbase6common11ObArrayImplINS_11transaction9ObTransIDENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEEC2ElRKS4_:246 + 3: 3 + 4: 3 + 7.1: 3 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:138 + 0: 3 + 1: _ZN9oceanbase8memtable14ObIMemtableCtxC2ERNS0_24ObMemtableCtxCbAllocatorE:481 + 0: _ZN9oceanbase8memtable10ObIMvccCtxC2ERNS0_24ObMemtableCtxCbAllocatorE:481 + 1: 2 + 2: 2 + 6: 3 + 7: 3 + 9: 3 + 15: 2 + 2: _ZN9oceanbase8memtable18ObTransCallbackMgrC2ERNS0_10ObIMvccCtxERNS0_24ObMemtableCtxCbAllocatorE:305 + 1: 2 + 2: 2 _ZN9oceanbase8memtable16ObTxCallbackListC1ERNS0_18ObTransCallbackMgrE:2 + 3: 2 + 5: 3 + 6: 3 + 8: 3 + 17: 3 + 19.1: 0 + 4: _ZN9oceanbase6common10SpinRWLockC2Ej:52 + 1: 3 _ZN9oceanbase6common7ObLatchC1Ev:2 + 2: _ZN9oceanbase6common10SpinRWLockC2Ej:75 + 1: 3 _ZN9oceanbase6common7ObLatchC1Ev:3 + 3: _ZN9oceanbase6common15ObSmallSpinLockIhLl0ELl500ELl100EEC2Ev:21 + 0: _ZN9oceanbase6common15ObSmallSpinLockIhLl0ELl500ELl100EE4initEv:21 + 2: 3 + 6: _ZN9oceanbase8memtable16ObQueryAllocatorC2Ev:177 + 0: 3 + 0.1: 3 _ZN9oceanbase6common15ObFIFOAllocatorC1Em:3 + 2: 3 + 4: 3 + 7: _ZN9oceanbase8memtable24ObMemtableCtxCbAllocatorC2Ev:147 + 0: 3 + 0.1: 3 _ZN9oceanbase6common15ObFIFOAllocatorC1Em:3 + 2: 3 + 4: 3 + 8: _ZN9oceanbase6common14ObTimeIntervalC2Elb:33 + 1: 3 + 11.2: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:471 + 2: 3 + 3: 3 + 4: 3 + 5: 3 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:162 + 0: 3 + 28.13: _ZN9oceanbase7storage14ObTxTableGuardD2Ev:0 + 0: _ZN9oceanbase7storage14ObTxTableGuard5resetEv:0 + 2: 0 + 3: 0 + 4: 0 + 28.19: _ZN9oceanbase8memtable24ObMemtableCtxCbAllocatorD2Ev:0 + 1: 0 + 2: 0 + 3.1: 0 + 5: 0 + 6.1: 0 + 28.20: _ZN9oceanbase8memtable16ObQueryAllocatorD2Ev:0 + 1: 0 + 2: 0 + 3.1: 0 + 5: 0 + 6.1: 0 + 28.22: _ZN9oceanbase6common10SpinRWLockD2Ev:0 + 2: 0 + 28.23: _ZN9oceanbase8memtable10ObIMvccCtxD2Ev:0 + 0: 0 + 0: _ZN9oceanbase8memtable18ObTransCallbackMgrD2Ev:0 + 0: _ZN9oceanbase6common10SpinRWLockD2Ev:0 + 2: 0 +_ZN9oceanbase8memtable13ObMemtableCtxC1Ev:2393:2 + 0.4: 3 + 4: 3 + 5: 3 + 10: 3 + 11: 3 + 12: 3 + 23: 3 + 25: 3 _ZN9oceanbase11transaction9tablelock12ObLockMemCtxC2ERNS_6common12ObIAllocatorE:3 + 26: 3 + 27: 3 + 28: 3 + 28.12: 0 + 28.15: 0 + 0: _ZN9oceanbase8memtable18ObRedoLogGeneratorC2Ev:105 + 1: 3 + 2: 3 + 0.3: _ZN9oceanbase7storage14ObTxTableGuardC2Ev:66 + 0: 3 + 0.4: _ZN9oceanbase6common7ObArrayINS_11transaction9ObTransIDENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEEC2Ev:300 + 0.1: 3 + 0.5: _ZN9oceanbase6common11ObArrayImplINS_11transaction9ObTransIDENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEEC2ElRKS4_:246 + 3: 3 + 4: 3 + 7.1: 3 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:138 + 0: 3 + 1: _ZN9oceanbase8memtable14ObIMemtableCtxC2ERNS0_24ObMemtableCtxCbAllocatorE:481 + 0: _ZN9oceanbase8memtable10ObIMvccCtxC2ERNS0_24ObMemtableCtxCbAllocatorE:481 + 1: 2 + 2: 2 + 6: 3 + 7: 3 + 9: 3 + 15: 2 + 2: _ZN9oceanbase8memtable18ObTransCallbackMgrC2ERNS0_10ObIMvccCtxERNS0_24ObMemtableCtxCbAllocatorE:305 + 1: 2 + 2: 2 _ZN9oceanbase8memtable16ObTxCallbackListC1ERNS0_18ObTransCallbackMgrE:2 + 3: 2 + 5: 3 + 6: 3 + 8: 3 + 17: 3 + 19.1: 0 + 4: _ZN9oceanbase6common10SpinRWLockC2Ej:52 + 1: 3 _ZN9oceanbase6common7ObLatchC1Ev:2 + 2: _ZN9oceanbase6common10SpinRWLockC2Ej:75 + 1: 3 _ZN9oceanbase6common7ObLatchC1Ev:3 + 3: _ZN9oceanbase6common15ObSmallSpinLockIhLl0ELl500ELl100EEC2Ev:21 + 0: _ZN9oceanbase6common15ObSmallSpinLockIhLl0ELl500ELl100EE4initEv:21 + 2: 3 + 6: _ZN9oceanbase8memtable16ObQueryAllocatorC2Ev:177 + 0: 3 + 0.1: 3 _ZN9oceanbase6common15ObFIFOAllocatorC1Em:3 + 2: 3 + 4: 3 + 7: _ZN9oceanbase8memtable24ObMemtableCtxCbAllocatorC2Ev:147 + 0: 3 + 0.1: 3 _ZN9oceanbase6common15ObFIFOAllocatorC1Em:3 + 2: 3 + 4: 3 + 8: _ZN9oceanbase6common14ObTimeIntervalC2Elb:33 + 1: 3 + 11.2: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:471 + 2: 3 + 3: 3 + 4: 3 + 5: 3 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:162 + 0: 3 + 28.13: _ZN9oceanbase7storage14ObTxTableGuardD2Ev:0 + 0: _ZN9oceanbase7storage14ObTxTableGuard5resetEv:0 + 2: 0 + 3: 0 + 4: 0 + 28.19: _ZN9oceanbase8memtable24ObMemtableCtxCbAllocatorD2Ev:0 + 1: 0 + 2: 0 + 3.1: 0 + 5: 0 + 6.1: 0 + 28.20: _ZN9oceanbase8memtable16ObQueryAllocatorD2Ev:0 + 1: 0 + 2: 0 + 3.1: 0 + 5: 0 + 6.1: 0 + 28.22: _ZN9oceanbase6common10SpinRWLockD2Ev:0 + 2: 0 + 28.23: _ZN9oceanbase8memtable10ObIMvccCtxD2Ev:0 + 0: 0 + 0: _ZN9oceanbase8memtable18ObTransCallbackMgrD2Ev:0 + 0: _ZN9oceanbase6common10SpinRWLockD2Ev:0 + 2: 0 +_ZN9oceanbase3sql18ObBasicSessionInfo5resetEb:2392:3 + 1: 3 + 4: 3 + 7: 3 + 7.1: 3 _ZN9oceanbase5share19ObTenantSwitchGuard9switch_toEmb:3 + 7.2: 2 + 8.1: 2 _ZN9oceanbase11transaction14ObTransService10release_txERNS0_8ObTxDescE:2 + 10: 1 + 11: 0 + 12: 1 _ZN9oceanbase11transaction11ObXATransID5resetEv:1 + 13: 1 + 14: 1 + 16: 1 + 17: 1 + 18: 1 + 19: 1 + 20: 1 + 26: 1 + 29: 1 _ZN9oceanbase11transaction14ObTxExecResult5resetEv:1 + 30: 1 + 31: 1 + 42: 2 _ZN9oceanbase3sql15ObSessionValMap5reuseEv:2 + 43: 6 + 44: 6 + 45: 1 + 48.1: 0 + 48.3: 0 + 49: 0 + 50: 0 + 51: 0 + 52.2: 0 + 52.4: 0 + 53: 0 + 53.4: 0 + 53.5: 0 + 54: 0 + 54.1: 0 + 54.2: 0 + 54.3: 0 + 55: 0 + 55.1: 0 + 63: 2 + 65: 2 + 67: 2 + 68: 2 + 69: 2 + 70: 2 + 71: 5 + 72: 5 + 75: 5 _ZN9oceanbase3sql18ObBasicSessionInfo26reset_session_changed_infoEv:5 + 77: 4 + 78: 4 + 81: 3 + 85: 3 + 86: 3 _ZN9oceanbase3sql16ObQueryRetryInfo5resetEv:3 + 89: 0 + 92: 0 + 97: 1 + 100: 1 + 101: 1 + 106: 1 + 107: 1 + 108: 2 _ZN9oceanbase6common16ObClusterVersion12get_instanceEv:2 + 110: 2 + 111: 2 + 112: 2 + 113: 2 + 118: 3 + 120: 4 _ZN9oceanbase5share15ObSysVarFactory7destroyEv:4 + 123.1: 2 + 2: _ZN9oceanbase3sql18ObBasicSessionInfo9set_validEb:21 + 0: 3 + 6: _ZN9oceanbase5share25_make_tenant_switch_guardEv:123 + 2: 3 + 2.1: 0 + 2.3: 0 + 2.6: 0 + 2.2: _ZN9oceanbase5share19ObTenantSwitchGuardC2Ev:0 + 0.4: _ZNSt8functionIFiRN9oceanbase6common10ObLDHandleEEEC2Ev:0 + 1: _ZNSt14_Function_baseC2Ev:0 + 0: 0 + 0.5: _ZN9oceanbase5share19ObTenantSwitchGuard5resetEv:0 + 2: 0 + 3: 0 + 4: 0 + 3: _ZN9oceanbase5share19ObTenantSwitchGuardC2ERKS1_:54 + 0.1: _ZNSt8functionIFiRN9oceanbase6common10ObLDHandleEEEC2Ev:12 + 1: _ZNSt14_Function_baseC2Ev:12 + 0: 3 + 2: _ZN9oceanbase5share19ObTenantSwitchGuard5resetEv:42 + 2: 3 + 3: 3 + 4: 3 + 7: _ZNK9oceanbase11transaction8ObTxDesc13get_tenant_idEv:12 + 0: 3 + 8: _ZN9oceanbase5share11ObTenantEnv3mtlIPNS_11transaction14ObTransServiceEEET_v:10 + 2: 2 _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:2 + 2.1: _ZN9oceanbase5share12ObTenantBase3getIPNS_11transaction14ObTransServiceEEET_v:8 + 0: _ZN9oceanbase5share12ObTenantBase9inner_getENS1_8IdentityIPNS_11transaction14ObTransServiceEEE:8 + 0: 2 + 11.1: _ZN9oceanbase5share19ObTenantSwitchGuardD2Ev:9 + 2: 1 _ZN9oceanbase5share19ObTenantSwitchGuard7releaseEv:1 + 3.1: 0 + 3.2: 0 + 3: _ZNSt14_Function_baseD2Ev:8 + 2: 1 + 3: 0 + 3.2: 0 + 22: _ZN9oceanbase6common8ObString5resetEv:34 + 3: 1 + 30: _ZN9oceanbase6common13ObSEArrayImplINS_3sql18ObBasicSessionInfo13TableStmtTypeELl2ENS0_19ModulePageAllocatorELb0EE5resetEv:8 + 0: 1 _ZN9oceanbase6common13ObSEArrayImplINS_3sql18ObBasicSessionInfo13TableStmtTypeELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv:1 + 31: _ZN9oceanbase6common13ObSEArrayImplINS_3sql18ObBasicSessionInfo13TableStmtTypeELl1ENS0_19ModulePageAllocatorELb0EE5resetEv:8 + 0: 1 _ZN9oceanbase6common13ObSEArrayImplINS_3sql18ObBasicSessionInfo13TableStmtTypeELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:1 + 36: _ZN9oceanbase6common21ObSmallBlockAllocatorINS0_8ObMallocENS0_10ObNullLockEE5resetEv:16 + 0: 2 _ZN9oceanbase6common6ObPoolINS0_8ObMallocENS0_10ObNullLockEE5resetEv:2 + 37: _ZN9oceanbase6common21ObSmallBlockAllocatorINS0_8ObMallocENS0_10ObNullLockEE5resetEv:16 + 0: 2 _ZN9oceanbase6common6ObPoolINS0_8ObMallocENS0_10ObNullLockEE5resetEv:2 + 38: _ZN9oceanbase6common21ObSmallBlockAllocatorINS0_8ObMallocENS0_10ObNullLockEE5resetEv:16 + 0: 2 _ZN9oceanbase6common6ObPoolINS0_8ObMallocENS0_10ObNullLockEE5resetEv:2 + 39: _ZN9oceanbase3sql18ObBasicSessionInfo10TransFlags5resetEv:14 + 0: 2 + 40: _ZN9oceanbase3sql18ObBasicSessionInfo13SqlScopeFlags5resetEv:14 + 0: 2 + 45: _ZN9oceanbase6common13ObSEArrayImplIlLl32ENS0_19ModulePageAllocatorELb0EE5resetEv:9 + 0: 1 _ZN9oceanbase6common13ObSEArrayImplIlLl32ENS0_19ModulePageAllocatorELb0EE7destroyEv:1 + 51: _ZNK9oceanbase6common12ObIArrayWrapINS_5share17ObSysVarClassTypeEE2atEl:0 + 6: 0 + 60: _ZN9oceanbase3sql18ObBasicSessionInfo13SysVarIncInfo5resetEv:9 + 3.1: 1 + 3.1: _ZN9oceanbase6common13ObSEArrayImplINS_5share17ObSysVarClassTypeELl64ENS0_19ModulePageAllocatorELb0EE5resetEv:5 + 0: 1 _ZN9oceanbase6common13ObSEArrayImplINS_5share17ObSysVarClassTypeELl64ENS0_19ModulePageAllocatorELb0EE7destroyEv:2 + 62: _ZN9oceanbase6common8ObString5resetEv:64 + 3: 4 + 70: _ZN9oceanbase6common15ObLogIdLevelMap11reset_levelEv:12 + 0: 2 _ZN9oceanbase6common15ObLogIdLevelMap9set_levelEa:2 + 76: _ZN9oceanbase6common16ObArenaAllocator5resetEv:204 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:204 + 4.1: 4 + 6: 0 + 7: 0 + 13: 4 + 14: 4 + 15: 4 + 18: 4 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:0 + 0: 0 + 5.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:0 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 78: _ZN9oceanbase6common18ObDSSessionActions5resetEv:4 + 0: 4 _ZN9oceanbase6common18ObDSSessionActions9clear_allEv:4 + 79: _ZN9oceanbase3sql18ObPartitionHitInfo5resetEv:48 + 0: 3 + 83: _ZN9oceanbase6common12ObCurTraceId7TraceId5resetEv:105 + 0: 3 + 87: _ZN9oceanbase6common12ObCurTraceId7TraceId5resetEv:42 + 0: 3 + 88: _ZN9oceanbase3sql18ObBasicSessionInfo15MultiThreadData5resetEb:430 + 14: 3 + 15: 3 + 17: 3 + 19: 3 + 20: 3 + 21: 3 + 22: 3 _ZN9oceanbase3rpc13ObSqlSockDesc22clear_sql_session_infoEv:3 + 24: 2 + 25: 2 + 26: 2 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:2 + 28: 0 + 29: 0 + 30: 0 + 31: 0 + 6: _ZN9oceanbase6common8ObString5resetEv:126 + 3: 3 + 11: _ZN9oceanbase6common6ObAddr5resetEv:21 + 2: 3 + 12: _ZN9oceanbase6common6ObAddr5resetEv:21 + 2: 3 + 13: _ZN9oceanbase6common6ObAddr5resetEv:21 + 2: 3 + 23: _ZN9oceanbase3rpc13ObSqlSockDesc5resetEv:28 + 1: 2 + 2: 2 + 93: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache5resetEv:74 + 2: _ZN9oceanbase3sql18ObBasicSessionInfo16SysVarsCacheData5resetEv:74 + 2: 0 + 5: 0 + 8: 0 + 10: 0 + 24: 0 + 27: 0 + 29: 0 + 34: 0 + 35: 0 + 36.1: 0 + 38: 0 + 40: 1 + 41: 1 + 43: 1 + 45: _ZN9oceanbase6common8ObString5resetEv:7 + 3: 1 + 46: _ZN9oceanbase6common8ObString5resetEv:7 + 3: 1 + 96: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache9clean_incEv:7 + 2: 1 + 108.1: _ZN9oceanbase6common16ObClusterVersion19get_cluster_versionEv:8 + 0: 2 + 109: _ZN9oceanbase6common13ObSEArrayImplINS_5share21ObLabelSeSessionLabelELl4ENS0_19ModulePageAllocatorELb0EE5reuseEv:28 + 8: 2 + 9: 2 + 116: _ZN9oceanbase6common12ObStringBufTINS0_19ModulePageAllocatorENS0_9PageArenaIcS2_EEE5resetEv:16 + 2: 2 _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:2 + 117: _ZN9oceanbase6common12ObStringBufTINS0_19ModulePageAllocatorENS0_9PageArenaIcS2_EEE5resetEv:32 + 2: 4 _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:4 + 119: _ZN9oceanbase6common12ObStringBufTINS0_19ModulePageAllocatorENS0_9PageArenaIcS2_EEE5resetEv:24 + 2: 3 _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:3 + 122: _ZN9oceanbase6common8ObString5resetEv:20 + 3: 2 +_ZN9oceanbase5share6schema16ObSchemaMgrCache3getElRPKNS1_11ObSchemaMgrERNS1_17ObSchemaMgrHandleE:2383:10 + 3: 8 + 4: 8 + 5: 8 + 9: 0 + 10.1: 0 + 11.1: 8 + 12: 0 + 13.1: 0 + 17: 8 + 18: 8 _ZN9oceanbase6common12TCRLockGuardC2ERKNS0_8TCRWLockE:9 + 19: 9 + 20: 9 + 20.2: 9 + 21: 9 + 23: 9 + 25.1: 0 + 26: 0 + 27: 0 + 28: 0 + 30.2: 0 + 35: 0 + 37: 0 + 41: 9 + 42: 0 + 44: 9 + 45: 9 + 46: 9 + 47: 9 + 48.1: 9 + 50: 9 _ZN9oceanbase6common12TCRLockGuardD2Ev:11 + 50.1: 0 + 52: 11 + 6: _ZN9oceanbase5share6schema17ObSchemaMgrHandle5resetEv:184 + 4: 8 + 2: _ZN9oceanbase5share6schema17ObSchemaMgrHandle6revertEv:136 + 2: 8 + 3.1: 0 + 4.1: 0 + 5: 0 + 5.1: 0 + 6: 0 + 6.1: 0 + 7: 0 + 8.1: 0 + 14: 0 + 15: 0 + 6.1: _ZN9oceanbase6common16ObClockGenerator8getClockEv:0 + 4: 0 + 5.1: 0 + 8: 0 + 6: _ZN9oceanbase6common16ObClockGenerator6get_usEv:0 + 2: 0 + 8: _ZNK9oceanbase5share6schema16ObSchemaMgrCache16check_inner_statEv:240 + 3: 8 + 3.1: 8 + 4: 8 + 4.1: 8 + 6.1: 0 + 20.1: _ZNK9oceanbase5share6schema11ObSchemaMgr18get_schema_versionEv:63 + 0: 9 + 48: _ZN9oceanbase6common16ObClockGenerator8getClockEv:189 + 4: 9 + 5.1: 0 + 8: 9 + 6: _ZN9oceanbase6common16ObClockGenerator6get_usEv:0 + 2: 0 +_ZNK9oceanbase7storage8ObITable16get_start_log_tsEv:2370:239 + 1: 237 + 2: 237 +_ZN9oceanbase4palf16LogSlidingWindow25try_push_log_to_children_EllRKNS0_3LSNES4_RKNS0_11LogWriteBufE:2356:11 + 5: 10 + 6: 10 + 8: 9 _ZNK9oceanbase4palf12LogConfigMgr17get_children_listERNS_6common15BaseLearnerListILl15ENS0_10LogLearnerEEE:9 + 8.1: 5 + 9.1: 0 + 10.2: 0 + 10.3: 0 + 11: 5 + 11.1: 0 + 11.2: 0 + 13.1: 0 + 17: 5 + 18.4: 6 + 18.5: 0 + 7: _ZN9oceanbase6common15BaseLearnerListILl15ENS_4palf10LogLearnerEEC2Ev:1404 + 0: 10 + 0: _ZN9oceanbase6common9ObSEArrayINS_4palf10LogLearnerELl1ENS0_19ModulePageAllocatorELb0EEC2Ev:1224 + 0.1: 9 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_4palf10LogLearnerELl1ENS0_19ModulePageAllocatorELb0EEC2ElRKS4_:1089 + 5: 9 + 6: 9 + 8: 9 + 17.1: 9 + 2: _ZN9oceanbase6common8ObIArrayINS_4palf10LogLearnerEEC2EPS3_l:72 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_4palf10LogLearnerEEC2EPS3_l:72 + 0: 9 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:477 + 0: 9 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:189 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:189 + 2: 9 + 8: 9 + 10.1: _ZNK9oceanbase6common15BaseLearnerListILl15ENS_4palf10LogLearnerEE8is_validEv:40 + 2: 5 + 18.4: _ZN9oceanbase6common15BaseLearnerListILl15ENS_4palf10LogLearnerEED2Ev:60 + 0.1: 5 _ZN9oceanbase6common13ObSEArrayImplINS_4palf10LogLearnerELl1ENS0_19ModulePageAllocatorELb0EED2Ev:6 + 0.2: 0 + 0.3: 0 + 0: _ZN9oceanbase6common15BaseLearnerListILl15ENS_4palf10LogLearnerEE5resetEv:20 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_4palf10LogLearnerELl1ENS0_19ModulePageAllocatorELb0EE5resetEv:20 + 0: 5 _ZN9oceanbase6common13ObSEArrayImplINS_4palf10LogLearnerELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:5 +_ZN9oceanbase4palf16LogSlidingWindow25try_update_match_lsn_map_ERKNS_6common6ObAddrERKNS0_3LSNE:2347:9 + 1: 9 + 2: 9 + 3: 9 + 3.1: 9 + 4: 0 + 5.1: 0 + 9: 9 + 10: 11 + 10.1: 12 + 12.1: 0 + 13.1: 0 + 15.1: 0 + 18: 0 + 19.1: 0 + 23.1: 14 + 24.1: 15 + 25.1: 0 + 29: 15 _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEED2Ev:15 + 29.1: 0 + 30.1: 10 _ZZN9oceanbase4palf16LogSlidingWindow25try_update_match_lsn_map_ERKNS_6common6ObAddrERKNS0_3LSNEENK5$_375clEPKc.0e4bf25207570af14a78557c8489c4fc:11 + 31: 9 + 3: _ZNK9oceanbase6common6ObAddr8is_validEv:198 + 3: 9 + 4: 0 + 5: 0 + 8.1: 9 + 9.1: 9 + 10: 9 + 13.1: 0 + 13.3: 0 + 14: 0 + 3.1: _ZNK9oceanbase4palf3LSN8is_validEv:36 + 2: 9 + 8: _ZN9oceanbase4palf3LSNC2Ev:72 + 2: _ZN9oceanbase4palf3LSN5resetEv:72 + 2: 9 + 9: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEEC2ERS3_:382 + 1: 9 + 2: 9 + 4: 11 + 5.1: 0 + 4: _ZN9oceanbase6common10ObSpinLock4lockEv:162 + 2: 9 _ZN9oceanbase6common12ObLatchMutex4lockEjl:11 + 10: _ZNK9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf3LSNENS0_14ShareMemMgrTagEE3getERKS2_RS4_:77 + 2: 11 _ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf3LSNENS0_14ShareMemMgrTagEE7do_get_ERKS2_RS4_:11 + 12: _ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf3LSNENS0_14ShareMemMgrTagEE6insertERKS2_RKS4_:0 + 2: 0 + 23: _ZNK9oceanbase4palf3LSN8is_validEv:112 + 2: 14 + 24: _ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf3LSNENS0_14ShareMemMgrTagEE16insert_or_updateERKS2_RKS4_:140 + 2: 14 _ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf3LSNENS0_14ShareMemMgrTagEE20do_insert_or_update_ERKS2_RKS4_:15 +_ZN9oceanbase6common6DCHashINS_4palf5LSKeyELl8EE24alloc_and_init_cur_arrayEv:2334:35 + 0: 35 + 3: 22 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 8.1: 0 + 9: 0 + 10: 0 + 12: 0 + 15: 0 + 15.1: 0 + 16.1: 13 + 17.1: 0 + 20.4: 16 _ZN9oceanbase6common11ObTimeGuardD2Ev:12 + 20.5: 0 + 1: _ZN9oceanbase6common11ObTimeGuardC2EPKcl:935 + 2: 20 + 3: 20 + 4: 20 + 6: 20 + 7: 20 + 8: 20 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:35 + 2: 35 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:35 + 10: _ZN9oceanbase6common7DCArray4initEPNS0_8HashNodeES3_:0 + 2: 0 + 2.1: 0 + 2.3: 0 + 3: 0 + 7: 0 + 8: 0 + 5: _ZN9oceanbase6common8HashNode10set_linkedEv:0 + 0: 0 + 0: _ZN9oceanbase6common8HashNode9load_hashEv:0 + 0: 0 + 11: _ZN9oceanbase6common11ObTimeGuard5clickEPKc:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 16: _ZNK9oceanbase6common11ObTimeGuard8get_diffEv:113 + 2: 13 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:22 + 2: 22 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:22 +_ZNK9oceanbase8observer16ObInnerSQLResult7get_objElRPKNS_6common5ObObjE:2321:19 + 1: 17 + 2: 17 + 3: 17 + 4: 0 + 5.1: 0 + 6.1: 17 + 7: 0 + 8.1: 0 + 9.2: 17 + 10: 17 + 10.3: 17 + 11: 0 + 12.1: 0 + 14: 17 + 14.1: 0 + 14.3: 17 + 15: 17 + 15.1: 17 + 16: 0 + 17.1: 0 + 19: 17 + 20: 17 + 23: 17 + 27: 18 + 20: _ZN9oceanbase8observer16ObInnerSQLResult18check_extend_valueERKNS_6common5ObObjE:187 + 3: 17 + 5.1: 0 + 3: _ZNK9oceanbase6common5ObObj7is_nullEv:51 + 0: _ZNK9oceanbase6common9ObObjMeta7is_nullEv:51 + 0: 17 + 5.1: _ZNK9oceanbase6common5ObObj12is_min_valueEv:0 + 2.1: 0 +_ZN9oceanbase10rootserver8DRLSInfo12fill_serversEv:2294:0 + 1: 0 + 2: 0 + 5: 0 + 6: 0 + 7.1: 0 + 8.1: 0 + 8.2: 0 + 9.1: 0 + 12.2: 0 + 12.5: 0 + 13: 0 + 14: 0 + 15.1: 0 + 16: 0 + 17.1: 0 + 18.1: 0 + 18.2: 0 + 18.3: 0 + 19.1: 0 + 20.2: 0 + 20.3: 0 + 21.1: 0 + 22.1: 0 + 23: 0 + 24.1: 0 + 25.1: 0 + 25.2: 0 + 25.12: 0 + 25.14: 0 + 25.15: 0 + 32.1: 0 + 36: 0 + 37.12: 0 + 37.13: 0 + 3: _ZN9oceanbase6common19ObFixedLengthStringILl128EEC2Ev:0 + 3: 0 + 4: _ZN9oceanbase6common7ObArrayINS_5share14ObServerStatusENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEEC2Ev:0 + 0.1: 0 + 0.5: _ZN9oceanbase6common11ObArrayImplINS_5share14ObServerStatusENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEEC2ElRKS4_:0 + 3: 0 + 4: 0 + 7.1: 0 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 11: _ZN9oceanbase6common4hash12ObReferedMapINS0_6ObAddrENS_10rootserver16DRServerStatInfoEE5reuseEv:2294 + 0: _ZN9oceanbase6common4hash11ObHashTableINS0_6ObAddrENS1_12ObReferedMapIS3_NS_10rootserver16DRServerStatInfoEE4ItemENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS8_6GetKeyENS1_13SimpleAllocerINS1_15ObHashTableNodeIS8_EELi76ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE5reuseEv:2294 + 2: _ZN9oceanbase6common4hash11ObHashTableINS0_6ObAddrENS1_12ObReferedMapIS3_NS_10rootserver16DRServerStatInfoEE4ItemENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS8_6GetKeyENS1_13SimpleAllocerINS1_15ObHashTableNodeIS8_EELi76ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE5clearEv:2294 + 3: 0 + 3.1: 0 + 6.1: 62 + 6.3: 62 + 7: 62 + 10: 62 + 11.1: 0 + 13: 0 + 14: 0 + 18: 62 + 20: 0 + 3: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_12ObReferedMapINS0_6ObAddrENS_10rootserver16DRServerStatInfoEE4ItemENS1_5NLockENS1_5NCondEEEEEbRKT_:0 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_12ObReferedMapINS0_6ObAddrENS_10rootserver16DRServerStatInfoEE4ItemENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:0 + 2: 0 + 12: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_12ObReferedMapINS0_6ObAddrENS_10rootserver16DRServerStatInfoEE4ItemEE16check_magic_codeEv:0 + 0: 0 + 12.1: _ZL12abort_unlessb:0 + 6: 0 + 12: _ZN9oceanbase6common11ObArrayImplINS_5share14ObServerStatusENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE5beginEv:0 + 2: 0 + 2: _ZN9oceanbase6common5array8IteratorINS0_11ObArrayImplINS_5share14ObServerStatusENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEEES5_EC2EPS5_:0 + 2: 0 + 12.3: _ZN9oceanbase6common11ObArrayImplINS_5share14ObServerStatusENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE3endEv:0 + 2: 0 + 12.4: _ZNK9oceanbase6common5array8IteratorINS0_11ObArrayImplINS_5share14ObServerStatusENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEEES5_EneERKSC_:0 + 2: 0 + 12.8: _ZN9oceanbase6common5array8IteratorINS0_11ObArrayImplINS_5share14ObServerStatusENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEEES5_EppEv:0 + 2: 0 + 25.1: _ZNK9oceanbase6common5array8IteratorINS0_11ObArrayImplINS_5share14ObServerStatusENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEEES5_EptEv:0 + 2: 0 + 25.3: _ZNK9oceanbase5share14ObServerStatus8is_aliveEv:0 + 0: 0 + 25.5: _ZNK9oceanbase5share14ObServerStatus9is_activeEv:0 + 0: 0 + 0.1: 0 + 25.7: _ZNK9oceanbase5share14ObServerStatus20is_permanent_offlineEv:0 + 0: 0 + 25.9: _ZNK9oceanbase5share14ObServerStatus21is_migrate_in_blockedEv:0 + 0: 0 + 25.11: _ZNK9oceanbase5share14ObServerStatus10is_stoppedEv:0 + 0: 0 +_ZN9oceanbase6common13ObSEArrayImplINS_4palf11LogWriteBuf11InnerStructELl2ENS0_19ModulePageAllocatorELb0EED2Ev:2280:31 + 1: 30 + 3: 30 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_4palf11LogWriteBuf11InnerStructELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv:1170 + 9: 30 + 11: 0 + 13: 30 + 15: 30 + 24: 30 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_4palf11LogWriteBuf11InnerStructELl2ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE8dec_urefEPNS0_12LinkHashNodeIS3_EE:2275:67 + 1: 65 + 2: 65 + 3: 65 + 7: 65 + 3: _ZN9oceanbase6common9RefHandle3decEPNS0_7RefNodeE:325 + 0: 65 + 4: _ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE13on_uref_cleanEPNS0_12LinkHashNodeIS3_EE:0 + 3: 0 + 3: _ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE10free_valueEPS4_:0 + 2: _ZN9oceanbase4palf19PalfHandleImplAlloc10free_valueEPNS0_14PalfHandleImplE:0 + 2: _ZN9oceanbase4palf21PalfHandleImplFactory4freeEPNS0_14PalfHandleImplE:0 + 2: 0 + 2.1: 0 + 2.3: 0 + 2: _ZN9oceanbase3lib7ObLabelC2IPKcEERKT_:0 + 2: _ZN9oceanbase3lib7ObLabelaSIPKcvEERS1_T_:0 + 2: 0 + 4: _ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE8dec_hrefEPNS0_12LinkHashNodeIS3_EE:0 + 3: 0 + 3: _ZN9oceanbase6common7RefNode5xhrefEi:0 + 0: 0 + 4: _ZN9oceanbase4palf19PalfHandleImplAlloc9free_nodeEPNS_6common12LinkHashNodeINS0_5LSKeyEEE:0 + 2: 0 + 2.1: 0 + 2.3: 0 + 2: _ZN9oceanbase3lib7ObLabelC2IPKcEERKT_:0 + 2: _ZN9oceanbase3lib7ObLabelaSIPKcvEERS1_T_:0 + 2: 0 +_ZN9oceanbase6common19obj_print_plain_strILNS0_9ObObjTypeE5EEEiRKNS0_5ObObjEPclRlRKNS0_16ObObjPrintParamsE:2236:75 + 0: 72 + 0.1: 72 _ZN9oceanbase6common15databuff_printfEPclRlPKcz:71 + 0: _ZNK9oceanbase6common5ObObj7get_intEv:288 + 0: 72 +_ZN9oceanbase3sql16ObSQLSessionInfoC2Ev:2213:2 + 0.1: 0 + 0.2: 0 + 0.3: 0 + 0.4: 1 _ZN9oceanbase6common4hash9ObHashMapImPNS_2pl16ObPLPackageStateENS1_19NoPthreadDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS5_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev:1 + 0.5: 2 _ZN9oceanbase6common4hash9ObHashMapImNS_5share15ObSequenceValueENS1_19NoPthreadDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS4_EEEELi65ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev:2 + 0.6: 2 + 0.9: 2 _ZN9oceanbase3sql29ObTenantCachedSchemaGuardInfoC2Ev:2 + 2: 2 _ZN9oceanbase3sql18ObBasicSessionInfoC1Ev:2 + 3: 1 + 5: 1 _ZN9oceanbase6common15ObWarningBufferC2Ev:1 + 6: 1 _ZN9oceanbase3sql23ObEndTransAsyncCallbackC1Ev:1 + 7: 0 + 21: 0 + 25: 0 + 27: 0 + 28: 0 + 29: 0 + 30: 0 + 32: 1 + 33: 1 + 34: 1 + 35: 2 + 37: 2 + 38: 2 + 39: 2 + 40: 2 + 41: 2 + 43: 2 + 48: 1 + 49: 1 + 51: 1 + 53: 1 + 54: 1 + 58: 1 + 59: 1 + 60: 1 + 62: 1 + 62.1: 1 _ZN9oceanbase6common11ObSqlStringC1ERKNS_3lib7ObLabelE:1 + 63: 1 + 66: 1 + 67: 2 + 67.2: 1 + 68: 1 + 69: 1 + 69.29: 0 + 69.30: 0 + 69.31: 0 + 69.32: 0 + 69.33: 0 + 69.34: 0 + 69.35: 0 + 69.36: 0 + 69.38: 0 + 69.39: 0 + 69.40: 0 + 69.42: 0 + 994: 1 + 998: 1 + 1001: 1 + 1002: 1 + 1003: 1 + 1004: 1 + 0: _ZN9oceanbase6common13LinkHashValueINS_3sql14SessionInfoKeyEEC2Ev:7 + 0: 1 + 0.1: _ZN9oceanbase3sql17ObAuditRecordDataC2Ev:0 + 2: _ZN9oceanbase3sql17ObAuditRecordData5resetEv:0 + 2: 0 + 3: 0 + 4: 0 + 7: 0 + 9: 0 + 0.6: _ZN9oceanbase6common4hash9ObHashMapINS0_8ObStringEPNS_3sql17ObInnerContextMapENS1_19NoPthreadDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_S6_EEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl2EEC2Ev:266 + 0: 2 _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS0_8ObStringEPNS_3sql17ObInnerContextMapEEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEC2Ev:2 + 0.1: 2 + 0.1: _ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_PNS_3sql17ObInnerContextMapEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS8_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS8_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl2EEC2Ev:144 + 0: 2 + 1: 2 + 0: _ZN9oceanbase6common8ObMallocC2Ev:88 + 0: 2 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:62 + 5: 2 + 7: 2 + 8: _ZN9oceanbase6common4hash9constructIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringEPNS_3sql17ObInnerContextMapEEENS1_5NLockENS1_5NCondEEEEEvRT_:28 + 2: _ZN9oceanbase6common4hash12do_constructIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringEPNS_3sql17ObInnerContextMapEEENS1_5NLockENS1_5NCondEEEEEvRT_NS1_16NormalPointerTagE:28 + 2: 2 + 0.2: _ZN9oceanbase6common8ObMallocC2Ev:36 + 0: 2 + 4: _ZN9oceanbase6common8ObMalloc8set_attrERKNS_3lib9ObMemAttrE:70 + 0: 2 + 0.7: _ZN9oceanbase3sql16ObSQLSessionInfo11CursorCacheC2Ev:436 + 0: 2 + 0: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:56 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:56 + 2: 2 + 8: 2 + 0.1: _ZN9oceanbase6common4hash9ObHashMapIlPNS_2pl14ObPLCursorInfoENS1_19NoPthreadDefendModeENS1_9hash_funcIlEENS1_8equal_toIlEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIlS5_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev:330 + 0.1: 2 + 0: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIlPNS_2pl14ObPLCursorInfoEEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEC2Ev:116 + 0: 2 + 2: 2 + 0.1: _ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocatorC2EmRKNS_3lib7ObLabelE:70 + 3: 2 + 4: 2 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:28 + 7: 2 + 2: _ZN9oceanbase6common4hash10SpinIniterC2ERVi:18 + 2: 2 + 3.1: 0 + 0.1: _ZN9oceanbase6common4hash11ObHashTableIlNS1_11HashMapPairIlPNS_2pl14ObPLCursorInfoEEENS1_9hash_funcIlEENS1_8equal_toIlEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev:116 + 0: 2 + 1: 2 + 0: _ZN9oceanbase6common8ObMallocC2Ev:58 + 0: 2 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:44 + 5: 2 + 7: 2 + 8: _ZN9oceanbase6common4hash9constructIPNS1_17ObHashTableBucketINS1_11HashMapPairIlPNS_2pl14ObPLCursorInfoEEENS1_5NLockENS1_5NCondEEEEEvRT_:30 + 2: _ZN9oceanbase6common4hash12do_constructIPNS1_17ObHashTableBucketINS1_11HashMapPairIlPNS_2pl14ObPLCursorInfoEEENS1_5NLockENS1_5NCondEEEEEvRT_NS1_16NormalPointerTagE:30 + 2: 2 + 0.2: _ZN9oceanbase6common8ObMallocC2Ev:14 + 0: 2 + 4: _ZN9oceanbase6common8ObMalloc8set_attrERKNS_3lib9ObMemAttrE:70 + 0: 2 + 0.10: _ZN9oceanbase6common7ObArrayIPNS0_9sqlclient28ObCommonServerConnectionPoolENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEEC2Ev:106 + 0.1: 1 + 0.5: _ZN9oceanbase6common11ObArrayImplIPNS0_9sqlclient28ObCommonServerConnectionPoolENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEEC2ElRKS5_:88 + 4: 1 + 7.1: 1 + 2: _ZN9oceanbase6common8ObIArrayIPNS0_9sqlclient28ObCommonServerConnectionPoolEEC2Ev:14 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS0_9sqlclient28ObCommonServerConnectionPoolEEC2Ev:14 + 0: 1 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:56 + 0: 1 + 0.11: _ZN9oceanbase3sql16ObSQLSessionInfo15ApplicationInfoC2Ev:21 + 0.1: _ZN9oceanbase6common8ObStringC2Ev:21 + 1: 1 + 0.12: _ZN9oceanbase3sql14FLTControlInfoC2Ev:80 + 0: 1 + 1: 1 + 2: 1 + 3: 1 + 4: 1 + 5: 1 + 0.13: _ZN9oceanbase3sql16ObAppInfoEncoderC2Ev:24 + 0: 1 + 0: _ZN9oceanbase3sql17ObSessInfoEncoderC2Ev:6 + 0: 1 + 0.14: _ZN9oceanbase3sql19ObAppCtxInfoEncoderC2Ev:24 + 0: 1 + 0: _ZN9oceanbase3sql17ObSessInfoEncoderC2Ev:6 + 0: 1 + 0.15: _ZN9oceanbase3sql21ObClientIdInfoEncoderC2Ev:24 + 0: 1 + 0: _ZN9oceanbase3sql17ObSessInfoEncoderC2Ev:6 + 0: 1 + 0.16: _ZN9oceanbase3sql20ObControlInfoEncoderC2Ev:24 + 0: 1 + 0: _ZN9oceanbase3sql17ObSessInfoEncoderC2Ev:6 + 0: 1 + 1: _ZN9oceanbase6common17ObVersionProviderC2Ev:28 + 0: 2 + 4: _ZN9oceanbase6common15ObWarningBufferC2Ev:162 + 1: 1 + 3: 1 + 0.5: _ZN9oceanbase6common7ObArrayINS0_15ObWarningBuffer11WarningItemENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEECI2NS0_11ObArrayImplIS3_S4_Lb0ES6_S8_EEElRKS4_:96 + 0: 1 + 0: _ZN9oceanbase6common11ObArrayImplINS0_15ObWarningBuffer11WarningItemENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEEC2ElRKS4_:78 + 3: 1 + 4: 1 + 7.1: 1 + 2: _ZN9oceanbase6common8ObIArrayINS0_15ObWarningBuffer11WarningItemEEC2Ev:10 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_15ObWarningBuffer11WarningItemEEC2Ev:10 + 0: 1 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:43 + 0: 1 + 0.6: _ZN9oceanbase6common15ObWarningBuffer11WarningItemC2Ev:35 + 0: 1 + 1: 1 + 5: 1 + 5.1: _ZN9oceanbase6common11ObArrayImplINS0_15ObWarningBuffer11WarningItemENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE9set_labelERKNS_3lib7ObLabelE:14 + 0: _ZN9oceanbase6common19ModulePageAllocator9set_labelERKNS_3lib7ObLabelE:14 + 0: 1 + 46: _ZN9oceanbase3sql20ObSessionEncryptInfoC2Ev:30 + 0: 2 + 47: _ZN9oceanbase6common9ObSEArrayImLl8ENS0_19ModulePageAllocatorELb0EEC2Ev:294 + 0.1: 2 + 0.5: _ZN9oceanbase6common13ObSEArrayImplImLl8ENS0_19ModulePageAllocatorELb0EEC2ElRKS2_:258 + 2: 2 + 5: 2 + 6: 2 + 8: 2 + 17.1: 2 + 2: _ZN9oceanbase6common8ObIArrayImEC2EPml:28 + 0: _ZN9oceanbase6common12ObIArrayWrapImEC2EPml:28 + 0: 2 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:84 + 0: 2 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:42 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:42 + 2: 2 + 8: 2 + 52: _ZN9oceanbase3sql16ObSQLSessionInfo24ObCachedTenantConfigInfoC2EPS1_:60 + 1: 1 + 3: 1 + 4: 1 + 5: 1 + 6: 1 + 7: 1 + 9: 1 + 57: _ZN9oceanbase6common16ObSessionDDLInfoC2Ev:7 + 1: 1 + 62: _ZN9oceanbase3lib7ObLabelC2IA10_cEERKT_:14 + 2: _ZN9oceanbase3lib7ObLabelaSILm10EEERS1_RAT__Kc:14 + 4: 1 + 65: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:7 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:7 + 2: 1 +_ZN9oceanbase3sql16ObSQLSessionInfoC1Ev:2213:2 + 0.1: 0 + 0.2: 0 + 0.3: 0 + 0.4: 1 _ZN9oceanbase6common4hash9ObHashMapImPNS_2pl16ObPLPackageStateENS1_19NoPthreadDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS5_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev:1 + 0.5: 2 _ZN9oceanbase6common4hash9ObHashMapImNS_5share15ObSequenceValueENS1_19NoPthreadDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS4_EEEELi65ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev:2 + 0.6: 2 + 0.9: 2 _ZN9oceanbase3sql29ObTenantCachedSchemaGuardInfoC2Ev:2 + 2: 2 _ZN9oceanbase3sql18ObBasicSessionInfoC1Ev:2 + 3: 1 + 5: 1 _ZN9oceanbase6common15ObWarningBufferC2Ev:1 + 6: 1 _ZN9oceanbase3sql23ObEndTransAsyncCallbackC1Ev:1 + 7: 0 + 21: 0 + 25: 0 + 27: 0 + 28: 0 + 29: 0 + 30: 0 + 32: 1 + 33: 1 + 34: 1 + 35: 2 + 37: 2 + 38: 2 + 39: 2 + 40: 2 + 41: 2 + 43: 2 + 48: 1 + 49: 1 + 51: 1 + 53: 1 + 54: 1 + 58: 1 + 59: 1 + 60: 1 + 62: 1 + 62.1: 1 _ZN9oceanbase6common11ObSqlStringC1ERKNS_3lib7ObLabelE:1 + 63: 1 + 66: 1 + 67: 2 + 67.2: 1 + 68: 1 + 69: 1 + 69.29: 0 + 69.30: 0 + 69.31: 0 + 69.32: 0 + 69.33: 0 + 69.34: 0 + 69.35: 0 + 69.36: 0 + 69.38: 0 + 69.39: 0 + 69.40: 0 + 69.42: 0 + 994: 1 + 998: 1 + 1001: 1 + 1002: 1 + 1003: 1 + 1004: 1 + 0: _ZN9oceanbase6common13LinkHashValueINS_3sql14SessionInfoKeyEEC2Ev:7 + 0: 1 + 0.1: _ZN9oceanbase3sql17ObAuditRecordDataC2Ev:0 + 2: _ZN9oceanbase3sql17ObAuditRecordData5resetEv:0 + 2: 0 + 3: 0 + 4: 0 + 7: 0 + 9: 0 + 0.6: _ZN9oceanbase6common4hash9ObHashMapINS0_8ObStringEPNS_3sql17ObInnerContextMapENS1_19NoPthreadDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_S6_EEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl2EEC2Ev:266 + 0: 2 _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS0_8ObStringEPNS_3sql17ObInnerContextMapEEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEC2Ev:2 + 0.1: 2 + 0.1: _ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_PNS_3sql17ObInnerContextMapEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS8_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS8_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl2EEC2Ev:144 + 0: 2 + 1: 2 + 0: _ZN9oceanbase6common8ObMallocC2Ev:88 + 0: 2 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:62 + 5: 2 + 7: 2 + 8: _ZN9oceanbase6common4hash9constructIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringEPNS_3sql17ObInnerContextMapEEENS1_5NLockENS1_5NCondEEEEEvRT_:28 + 2: _ZN9oceanbase6common4hash12do_constructIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringEPNS_3sql17ObInnerContextMapEEENS1_5NLockENS1_5NCondEEEEEvRT_NS1_16NormalPointerTagE:28 + 2: 2 + 0.2: _ZN9oceanbase6common8ObMallocC2Ev:36 + 0: 2 + 4: _ZN9oceanbase6common8ObMalloc8set_attrERKNS_3lib9ObMemAttrE:70 + 0: 2 + 0.7: _ZN9oceanbase3sql16ObSQLSessionInfo11CursorCacheC2Ev:436 + 0: 2 + 0: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:56 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:56 + 2: 2 + 8: 2 + 0.1: _ZN9oceanbase6common4hash9ObHashMapIlPNS_2pl14ObPLCursorInfoENS1_19NoPthreadDefendModeENS1_9hash_funcIlEENS1_8equal_toIlEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIlS5_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev:330 + 0.1: 2 + 0: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIlPNS_2pl14ObPLCursorInfoEEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEC2Ev:116 + 0: 2 + 2: 2 + 0.1: _ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocatorC2EmRKNS_3lib7ObLabelE:70 + 3: 2 + 4: 2 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:28 + 7: 2 + 2: _ZN9oceanbase6common4hash10SpinIniterC2ERVi:18 + 2: 2 + 3.1: 0 + 0.1: _ZN9oceanbase6common4hash11ObHashTableIlNS1_11HashMapPairIlPNS_2pl14ObPLCursorInfoEEENS1_9hash_funcIlEENS1_8equal_toIlEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev:116 + 0: 2 + 1: 2 + 0: _ZN9oceanbase6common8ObMallocC2Ev:58 + 0: 2 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:44 + 5: 2 + 7: 2 + 8: _ZN9oceanbase6common4hash9constructIPNS1_17ObHashTableBucketINS1_11HashMapPairIlPNS_2pl14ObPLCursorInfoEEENS1_5NLockENS1_5NCondEEEEEvRT_:30 + 2: _ZN9oceanbase6common4hash12do_constructIPNS1_17ObHashTableBucketINS1_11HashMapPairIlPNS_2pl14ObPLCursorInfoEEENS1_5NLockENS1_5NCondEEEEEvRT_NS1_16NormalPointerTagE:30 + 2: 2 + 0.2: _ZN9oceanbase6common8ObMallocC2Ev:14 + 0: 2 + 4: _ZN9oceanbase6common8ObMalloc8set_attrERKNS_3lib9ObMemAttrE:70 + 0: 2 + 0.10: _ZN9oceanbase6common7ObArrayIPNS0_9sqlclient28ObCommonServerConnectionPoolENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEEC2Ev:106 + 0.1: 1 + 0.5: _ZN9oceanbase6common11ObArrayImplIPNS0_9sqlclient28ObCommonServerConnectionPoolENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEEC2ElRKS5_:88 + 4: 1 + 7.1: 1 + 2: _ZN9oceanbase6common8ObIArrayIPNS0_9sqlclient28ObCommonServerConnectionPoolEEC2Ev:14 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS0_9sqlclient28ObCommonServerConnectionPoolEEC2Ev:14 + 0: 1 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:56 + 0: 1 + 0.11: _ZN9oceanbase3sql16ObSQLSessionInfo15ApplicationInfoC2Ev:21 + 0.1: _ZN9oceanbase6common8ObStringC2Ev:21 + 1: 1 + 0.12: _ZN9oceanbase3sql14FLTControlInfoC2Ev:80 + 0: 1 + 1: 1 + 2: 1 + 3: 1 + 4: 1 + 5: 1 + 0.13: _ZN9oceanbase3sql16ObAppInfoEncoderC2Ev:24 + 0: 1 + 0: _ZN9oceanbase3sql17ObSessInfoEncoderC2Ev:6 + 0: 1 + 0.14: _ZN9oceanbase3sql19ObAppCtxInfoEncoderC2Ev:24 + 0: 1 + 0: _ZN9oceanbase3sql17ObSessInfoEncoderC2Ev:6 + 0: 1 + 0.15: _ZN9oceanbase3sql21ObClientIdInfoEncoderC2Ev:24 + 0: 1 + 0: _ZN9oceanbase3sql17ObSessInfoEncoderC2Ev:6 + 0: 1 + 0.16: _ZN9oceanbase3sql20ObControlInfoEncoderC2Ev:24 + 0: 1 + 0: _ZN9oceanbase3sql17ObSessInfoEncoderC2Ev:6 + 0: 1 + 1: _ZN9oceanbase6common17ObVersionProviderC2Ev:28 + 0: 2 + 4: _ZN9oceanbase6common15ObWarningBufferC2Ev:162 + 1: 1 + 3: 1 + 0.5: _ZN9oceanbase6common7ObArrayINS0_15ObWarningBuffer11WarningItemENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEECI2NS0_11ObArrayImplIS3_S4_Lb0ES6_S8_EEElRKS4_:96 + 0: 1 + 0: _ZN9oceanbase6common11ObArrayImplINS0_15ObWarningBuffer11WarningItemENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEEC2ElRKS4_:78 + 3: 1 + 4: 1 + 7.1: 1 + 2: _ZN9oceanbase6common8ObIArrayINS0_15ObWarningBuffer11WarningItemEEC2Ev:10 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_15ObWarningBuffer11WarningItemEEC2Ev:10 + 0: 1 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:43 + 0: 1 + 0.6: _ZN9oceanbase6common15ObWarningBuffer11WarningItemC2Ev:35 + 0: 1 + 1: 1 + 5: 1 + 5.1: _ZN9oceanbase6common11ObArrayImplINS0_15ObWarningBuffer11WarningItemENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE9set_labelERKNS_3lib7ObLabelE:14 + 0: _ZN9oceanbase6common19ModulePageAllocator9set_labelERKNS_3lib7ObLabelE:14 + 0: 1 + 46: _ZN9oceanbase3sql20ObSessionEncryptInfoC2Ev:30 + 0: 2 + 47: _ZN9oceanbase6common9ObSEArrayImLl8ENS0_19ModulePageAllocatorELb0EEC2Ev:294 + 0.1: 2 + 0.5: _ZN9oceanbase6common13ObSEArrayImplImLl8ENS0_19ModulePageAllocatorELb0EEC2ElRKS2_:258 + 2: 2 + 5: 2 + 6: 2 + 8: 2 + 17.1: 2 + 2: _ZN9oceanbase6common8ObIArrayImEC2EPml:28 + 0: _ZN9oceanbase6common12ObIArrayWrapImEC2EPml:28 + 0: 2 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:84 + 0: 2 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:42 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:42 + 2: 2 + 8: 2 + 52: _ZN9oceanbase3sql16ObSQLSessionInfo24ObCachedTenantConfigInfoC2EPS1_:60 + 1: 1 + 3: 1 + 4: 1 + 5: 1 + 6: 1 + 7: 1 + 9: 1 + 57: _ZN9oceanbase6common16ObSessionDDLInfoC2Ev:7 + 1: 1 + 62: _ZN9oceanbase3lib7ObLabelC2IA10_cEERKT_:14 + 2: _ZN9oceanbase3lib7ObLabelaSILm10EEERS1_RAT__Kc:14 + 4: 1 + 65: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:7 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:7 + 2: 1 +_ZN9oceanbase8keybtree10ObKeyBtree18get_retire_stationEv:2208:96 + 1: 96 + 2: 96 + 2.1: 0 + 2.7: 0 + 3: 96 + 2.2: _ZN9oceanbase8keybtree10ObKeyBtree10get_qclockEv:0 + 2: 0 + 2.1: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common6QClockC2Ev:0 + 0: 0 + 0.1: _ZN9oceanbase6common6QClock9ClockSlotC2Ev:0 + 0: 0 + 2.3: _ZN9oceanbase6common13RetireStationC2ERNS0_6QClockEl:0 + 0.2: 0 + 1: 0 + 0.1: _ZN9oceanbase6common13RetireStation10RetireListC2Ev:0 + 0: 0 + 0: _ZN9oceanbase6common10HazardListC2Ev:0 + 0: 0 + 0.4: _ZN9oceanbase6common10HazardListC2Ev:0 + 0: 0 +_ZN9oceanbase3sql11ObPlanCache20asyn_update_baselineEv:2169:0 + 1: 0 + 3: 0 + 4: 0 + 4.2: 0 + 4.3: 0 + 4.5: 0 + 4.7: 0 + 4.8: 0 + 4.10: 0 + 6: 0 + 6.1: 0 + 7.1: 0 + 9: 0 + 10.2: 14 + 10.4: 14 + 11.1: 15 + 13: 15 _ZN9oceanbase3sql11ObPlanCache8ref_planEmRNS0_15ObCacheObjGuardE:15 + 13.1: 25 + 14: 25 + 16: 25 + 18.1: 25 + 22.1: 0 + 25.1: 0 + 28: 0 + 29: 0 + 29.10: 0 + 29.12: 0 + 4.2: _ZN9oceanbase6common8precheckINS0_9ObSEArrayImLl1024ENS0_19ModulePageAllocatorELb0EEEEEibRb:0 + 6: 0 + 4.7: _ZN9oceanbase6common9ObSEArrayImLl1024ENS0_19ModulePageAllocatorELb0EEC2Ev:0 + 0.1: 0 + 0.5: _ZN9oceanbase6common13ObSEArrayImplImLl1024ENS0_19ModulePageAllocatorELb0EEC2ElRKS2_:0 + 2: 0 + 5: 0 + 6: 0 + 8: 0 + 17.1: 0 + 2: _ZN9oceanbase6common8ObIArrayImEC2EPml:0 + 0: _ZN9oceanbase6common12ObIArrayWrapImEC2EPml:0 + 0: 0 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:0 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:0 + 2: 0 + 8: 0 + 4.9: _ZN9oceanbase6common2SVINS0_9ObSEArrayImLl1024ENS0_19ModulePageAllocatorELb0EEELb0EE3getEv:0 + 2: 0 + 5: _ZN9oceanbase3sql16ObGetAllPlanIdOpC2EPNS_6common8ObIArrayImEE:0 + 1: 0 + 11: _ZN9oceanbase6common12ObIArrayWrapImE2atEl:60 + 6: 15 + 12: _ZN9oceanbase3sql15ObCacheObjGuardC2ENS0_16CacheRefHandleIDE:225 + 1: 15 + 2: 15 + 25: _ZN9oceanbase3sql15ObCacheObjGuardD2Ev:512 + 2: 25 + 5: 25 + 5.1: 0 + 6: 14 + 5: _ZN9oceanbase3sql20ObCacheObjectFactory4freeINS0_17ObILibCacheObjectEEEvRPT_NS0_16CacheRefHandleIDE:200 + 2: 25 + 3: 25 _ZN9oceanbase3sql20ObCacheObjectFactory10inner_freeERPNS0_17ObILibCacheObjectENS0_16CacheRefHandleIDE:28 +_ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS_2pl16ObPLPackageStateEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv:2135:4 + 1: 3 + 3: 3 + 3.1: 3 + 6.1: 98 + 6.3: 98 + 8: 98 + 9.1: 0 + 11: 0 + 12: 0 + 15: 0 + 19: 3 + 22: 3 + 24: 5 + 26: 5 + 3: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImPNS_2pl16ObPLPackageStateEEENS1_5NLockENS1_5NCondEEEEEbRKT_:51 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImPNS_2pl16ObPLPackageStateEEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:51 + 2: 3 + 65226: 3 + 10: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_11HashMapPairImPNS_2pl16ObPLPackageStateEEEE16check_magic_codeEv:0 + 0: 0 + 10.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 22: _ZN9oceanbase6common4hash7destroyIPNS1_17ObHashTableBucketINS1_11HashMapPairImPNS_2pl16ObPLPackageStateEEENS1_5NLockENS1_5NCondEEENS0_8ObMallocEEEvRT_RT0_:67 + 2: _ZN9oceanbase6common4hash10do_destroyIPNS1_17ObHashTableBucketINS1_11HashMapPairImPNS_2pl16ObPLPackageStateEEENS1_5NLockENS1_5NCondEEENS0_8ObMallocEEEvRT_NS1_16NormalPointerTagERT0_:67 + 2: 3 + 3: 3 _ZN9oceanbase6common8ObMalloc4freeEPv:3 + 4: 5 +_ZN9oceanbase4palf22BatchLogIOFlushLogTask8do_task_EiPNS0_11PalfEnvImplE:2129:8 + 1: 8 + 2: 8 + 3: 8 + 4: 8 _ZN9oceanbase4palf19PalfHandleImplGuardC1Ev:8 + 5: 8 _ZN9oceanbase4palf3LSNC1Ev:9 + 6: 9 _ZN9oceanbase4palf11PalfEnvImpl20get_palf_handle_implElRNS0_19PalfHandleImplGuardE:11 + 6.1: 2 + 7.1: 0 + 8.2: 2 _ZNK9oceanbase4palf14PalfHandleImpl14get_palf_epochERl:2 + 8.3: 2 + 9.1: 0 + 13.1: 8 + 14.1: 3 + 15: 3 + 16: 0 + 17.1: 0 + 18.1: 3 + 18.2: 3 + 19.1: 0 + 21.1: 3 _ZN9oceanbase6common16ObFixedArrayImplIPNS_4palf11LogWriteBufENS0_12ObIAllocatorEE9push_backERKS4_:4 + 21.2: 5 + 22.1: 0 + 24.1: 5 _ZN9oceanbase6common16ObFixedArrayImplIlNS0_12ObIAllocatorEE9push_backERKl:6 + 24.2: 7 + 25.1: 0 + 27.1: 7 _ZN9oceanbase6common16ObFixedArrayImplINS_4palf3LSNENS0_12ObIAllocatorEE9push_backERKS3_:7 + 27.2: 8 + 28.1: 0 + 32: 9 _ZNK9oceanbase4palf11LogWriteBuf14get_total_sizeEv:8 + 32.1: 9 _ZN9oceanbase4palfplERKNS0_3LSNEm:9 + 32.2: 9 _ZN9oceanbase4palf3LSNaSERKS1_:9 + 35: 6 + 36.1: 6 _ZN9oceanbase4palf14PalfHandleImpl16inner_append_logERKNS_6common12ObFixedArrayINS0_3LSNENS2_12ObIAllocatorEEERKNS3_IPNS0_11LogWriteBufES5_EERKNS3_IlS5_EE:6 + 36.2: 1 + 38.1: 0 + 39.2: 1 _ZN9oceanbase4palf14PalfHandleImpl17advance_reuse_lsnERKNS0_3LSNE:1 + 39.3: 3 + 40.1: 0 + 41.1: 3 _ZN9oceanbase4palf22BatchLogIOFlushLogTask29push_flush_cb_to_thread_pool_EiPNS0_11PalfEnvImplE:3 + 41.2: 4 + 42.1: 0 + 47: 4 + 48.18: 3 + 48.20: 0 + 48.22: 4 _ZN9oceanbase4palf19PalfHandleImplGuardD1Ev:4 + 8.1: _ZNK9oceanbase4palf19PalfHandleImplGuard20get_palf_handle_implEv:14 + 0: 2 + 11: _ZNK9oceanbase6common12ObIArrayWrapIPNS_4palf17LogIOFlushLogTaskEE5countEv:8 + 0: 2 + 14: _ZN9oceanbase6common16ObFixedArrayImplIPNS_4palf17LogIOFlushLogTaskENS0_12ObIAllocatorEEixEl:12 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_4palf17LogIOFlushLogTaskEE2atEl:12 + 6: 3 + 36: _ZNK9oceanbase4palf19PalfHandleImplGuard20get_palf_handle_implEv:42 + 0: 6 + 39.1: _ZNK9oceanbase4palf19PalfHandleImplGuard20get_palf_handle_implEv:7 + 0: 1 +_ZN9oceanbase4palf16LogSlidingWindow31try_update_last_slide_log_info_EllRKNS0_3LSNES4_RKll:2124:8 + 7: 7 + 8: 7 + 9: 7 + 10: 7 + 11: 7 + 14: 0 + 15.1: 0 + 17: 7 + 18: 9 + 19: 9 + 22: 9 + 23: 9 + 24.1: 9 _ZZN9oceanbase4palf16LogSlidingWindow31try_update_last_slide_log_info_EllRKNS0_3LSNES4_RKllENK5$_187clEPKc.0e4bf25207570af14a78557c8489c4fc:9 + 26: 10 _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEED2Ev:10 + 26.1: 0 + 27: 9 + 9: _ZNK9oceanbase4palf3LSN8is_validEv:28 + 2: 7 + 10: _ZNK9oceanbase4palf3LSN8is_validEv:28 + 2: 7 + 17: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEEC2ERS3_:176 + 1: 7 + 4: 9 + 5.1: 0 + 4: _ZN9oceanbase6common10ObSpinLock4lockEv:49 + 2: 7 _ZN9oceanbase6common12ObLatchMutex4lockEjl:7 + 20: _ZN9oceanbase4palf3LSNaSERKS1_:99 + 2: 9 + 21: _ZN9oceanbase4palf3LSNaSERKS1_:90 + 2: 9 +_ZN9oceanbase8keybtree9BtreeNode33split_child_cause_recursive_splitEPS1_S2_iNS_8memtable20ObStoreRowkeyWrapperEPNS3_9ObMvccRowES4_S6_l:2090:9 + 4: 7 + 5: 7 + 8: 7 + 9: 7 + 10: 7 + 11: 7 + 12: 7 + 13: 3 _ZN9oceanbase8keybtree9BtreeNode15copy_and_insertERS1_iiiNS_8memtable20ObStoreRowkeyWrapperEPNS3_9ObMvccRowES4_S6_:2 + 14.1: 3 _ZN9oceanbase8keybtree9BtreeNode4copyERS1_iii:3 + 16: 5 _ZN9oceanbase8keybtree9BtreeNode4copyERS1_iii:5 + 17: 11 + 17.3: 11 _ZN9oceanbase8keybtree9BtreeNode15copy_and_insertERS1_iiiNS_8memtable20ObStoreRowkeyWrapperEPNS3_9ObMvccRowES4_S6_:11 + 19.2: 2 + 5: _ZNK9oceanbase8keybtree9BtreeNode7is_leafEv:91 + 0: 7 + 6: _ZN9oceanbase8keybtree9BtreeNode8get_hostEv:28 + 0: 7 + 6.1: _ZN9oceanbase8keybtree10ObKeyBtree17update_split_infoEi:315 + 2: 7 + 5: 7 + 6: 7 + 7: 7 + 10: _ZSt3maxIlERKT_S2_S2_:49 + 5: 7 + 11: _ZSt3maxIlERKT_S2_S2_:49 + 5: 7 + 14: _ZNK9oceanbase8keybtree9BtreeNode4sizeEPNS0_11MultibitSetE:27 + 2.4: 3 + 2.3: _ZNK9oceanbase8keybtree11MultibitSet4sizeEv:15 + 0: 3 + 17: _ZNK9oceanbase8keybtree9BtreeNode4sizeEPNS0_11MultibitSetE:77 + 2.4: 11 + 2.3: _ZNK9oceanbase8keybtree11MultibitSet4sizeEv:44 + 0: 11 +_ZN9oceanbase5share11ObLSReplica6assignERKS1_:2061:2 + 1: 2 + 2: 2 + 3: 2 + 5: 0 + 6.1: 0 + 7.1: 3 + 9.1: 4 + 10.1: 0 + 12: 4 + 13: 4 + 15: 4 + 18: 4 + 19: 4 + 20: 4 + 21: 4 + 22: 4 + 23: 4 _ZN9oceanbase5share17ObLSRestoreStatusaSERKS1_:4 + 25: 5 + 26: 5 + 27: 5 + 28: 5 + 29: 5 + 30: 5 + 33: 5 + 4: _ZN9oceanbase5share11ObLSReplica5resetEv:423 + 3: 2 + 8: 2 + 9: 2 + 10: 2 + 11: 3 + 12: 3 + 13: 3 + 14: 3 _ZN9oceanbase5share17ObLSRestoreStatusaSERKNS1_6StatusE:3 + 17: 3 + 19: 3 + 21: 3 + 23: 3 + 6: _ZN9oceanbase5share6ObLSID5resetEv:8 + 0: 2 + 7: _ZN9oceanbase6common6ObAddr5resetEv:8 + 2: 2 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_5share12SimpleMemberELl7ENS0_15ObNullAllocatorELb0EE5resetEv:16 + 0: 2 _ZN9oceanbase6common13ObSEArrayImplINS_5share12SimpleMemberELl7ENS0_15ObNullAllocatorELb0EE7destroyEv:2 + 15: _ZN9oceanbase6common17ObReplicaProperty5resetEv:66 + 2: 3 + 18: _ZN9oceanbase6common19ObFixedLengthStringILl128EE5resetEv:21 + 0: 3 + 5: _ZN9oceanbase6common11copy_assignINS0_9ObSEArrayINS_5share12SimpleMemberELl7ENS0_15ObNullAllocatorELb0EEEEEiRT_RKS7_:273 + 2: _ZN9oceanbase6common16copy_assign_wrapINS0_9ObSEArrayINS_5share12SimpleMemberELl7ENS0_15ObNullAllocatorELb0EEEEEiRT_RKS7_NS0_8BoolTypeILb0EEE:273 + 2: _ZN9oceanbase6common9ObSEArrayINS_5share12SimpleMemberELl7ENS0_15ObNullAllocatorELb0EEaSERKS5_:273 + 0: _ZN9oceanbase6common13ObSEArrayImplINS_5share12SimpleMemberELl7ENS0_15ObNullAllocatorELb0EEaSERKS5_:273 + 5: 3 _ZN9oceanbase6common13ObSEArrayImplINS_5share12SimpleMemberELl7ENS0_15ObNullAllocatorELb0EE5reuseEv:3 + 7: 3 _ZN9oceanbase6common13ObSEArrayImplINS_5share12SimpleMemberELl7ENS0_15ObNullAllocatorELb0EE7reserveEl:3 + 8.1: 3 + 8.3: 3 + 8.5: 0 + 9: 3 + 13: 3 + 14: 0 + 15: 3 + 6: _ZNK9oceanbase6common12ObIArrayWrapINS_5share12SimpleMemberEE5countEv:12 + 0: 3 + 9: _ZN9oceanbase6common16construct_assignINS_5share12SimpleMemberEEEiRT_RKS4_:54 + 2: _ZN9oceanbase6common21construct_assign_wrapINS_5share12SimpleMemberEEEiRT_RKS4_NS0_8BoolTypeILb0EEE:54 + 2: 3 + 7.1: _ZN9oceanbase6common11copy_assignINS0_17ObReplicaPropertyEEEiRT_RKS3_:48 + 2: _ZN9oceanbase6common16copy_assign_wrapINS0_17ObReplicaPropertyEEEiRT_RKS3_NS0_8BoolTypeILb0EEE:48 + 2: 3 + 9.1: _ZN9oceanbase6common19ObFixedLengthStringILl128EE6assignERKS2_:175 + 2: 3 + 4: 4 + 5.1: 0 + 8: 0 + 4: _ZN9oceanbase6common19ObFixedLengthStringILl128EE6assignEPKc:138 + 2: 3 + 6: 3 + 7: 3 + 8: 0 + 9.1: 0 + 11: 0 + 12: 0 + 14: 3 + 15: 4 + 18: 0 + 16: _ZN9oceanbase5share6ObLSIDaSERKS1_:32 + 0: 4 + 17: _ZN9oceanbase6common6ObAddraSERKS1_:92 + 1: 4 + 2: 4 + 3: 4 +_ZN9oceanbase4palf17LogIOFlushLogTask13after_consumeEPNS0_11PalfEnvImplE:2047:10 + 1: 10 + 2: 10 + 3: 10 + 4: 10 _ZN9oceanbase4palf19PalfHandleImplGuardC1Ev:10 + 6: 9 + 7: 0 + 8.1: 0 + 9.1: 9 _ZN9oceanbase4palf11PalfEnvImpl20get_palf_handle_implElRNS0_19PalfHandleImplGuardE:11 + 9.2: 5 + 10.1: 0 + 11.2: 5 _ZNK9oceanbase4palf14PalfHandleImpl14get_palf_epochERl:5 + 11.3: 5 + 12.1: 0 + 13.1: 5 + 14.1: 0 + 18.2: 5 _ZN9oceanbase4palf14PalfHandleImpl21inner_after_flush_logERKNS0_13FlushLogCbCtxE:6 + 18.3: 8 + 19.1: 0 + 21.1: 8 _ZZN9oceanbase4palf17LogIOFlushLogTask13after_consumeEPNS0_11PalfEnvImplEENK5$_678clEPKc.1598dc2348996c1ae1caea6120522988:9 + 23: 8 _ZN9oceanbase4palf11PalfEnvImpl17get_log_allocatorEv:8 + 23.1: 8 _ZN9oceanbase6common22ObTenantMutilAllocator26free_log_io_flush_log_taskEPNS_4palf17LogIOFlushLogTaskE:9 + 24: 10 + 25.8: 10 _ZN9oceanbase6common11ObTimeGuardD2Ev:10 + 25.9: 0 + 25.10: 0 + 25.12: 10 _ZN9oceanbase4palf19PalfHandleImplGuardD1Ev:10 + 5: _ZN9oceanbase6common11ObTimeGuardC2EPKcl:505 + 2: 11 + 3: 11 + 4: 11 + 6: 11 + 7: 11 + 8: 11 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:10 + 2: 10 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:12 + 11.1: _ZNK9oceanbase4palf19PalfHandleImplGuard20get_palf_handle_implEv:20 + 0: 5 + 18.1: _ZNK9oceanbase4palf19PalfHandleImplGuard20get_palf_handle_implEv:20 + 0: 5 +_ZN9oceanbase11transaction14ObPartTransCtx31get_prepare_version_if_preparedERbRl:2043:50 + 1: 45 + 3: 45 + 5: 45 + 6: 0 + 7: 0 + 10: 19 + 13: 30 + 17: 50 +_ZN9oceanbase3sql13ObDASDeleteOp10release_opEv:2008:258 + 1: 251 + 3: 251 +_ZN9oceanbase7storage18ObLSTabletIterator15get_next_tabletERNS0_14ObTabletHandleE:1983:12 + 1: 11 + 2: 11 + 4: 11 _ZN9oceanbase7storage14ObTabletHandle5resetEv:12 + 5: 12 + 6: 0 + 7.1: 0 + 10: 12 + 11: 0 + 14: 16 _ZN9oceanbase7storage17ObLSTabletService10get_tabletERKNS_6common10ObTabletIDERNS0_14ObTabletHandleEl:14 + 15: 16 + 16.1: 0 + 19: 16 + 22.1: 16 + 25: 16 + 13: _ZN9oceanbase6common12ObIArrayWrapINS0_10ObTabletIDEE2atEl:108 + 6: 12 + 18: _ZN9oceanbase7storage14ObTabletHandle17set_wash_priorityENS0_18WashTabletPriorityE:80 + 0: 16 +_ZN9oceanbase8memtable13ObMemtableCtx11trans_clearEv:1976:251 + 1: 247 + 2: 247 +_ZN9oceanbase6common14ObKVCacheStore13refresh_scoreEv:1973:0 + 1: 0 + 7: 0 + 8.1: 0 + 10.1: 17 + 10.2: 17 + 11: 19 _ZN9oceanbase6common14ObKVCacheStore14add_handle_refEPNS0_18ObKVMemBlockHandleE:18 + 12: 16 + 13: 16 + 15: 16 + 16: 16 + 17: 16 + 19: 16 _ZN9oceanbase6common14ObKVCacheStore13de_handle_refEPNS0_18ObKVMemBlockHandleE:18 + 24: 0 +_ZNK9oceanbase3sql6ObICmd21cause_implicit_commitEv:1944:253 + 0: 243 +_ZN9oceanbase6common16ObMemberListBaseILl7EE13remove_serverERKNS0_6ObAddrE:1934:9 + 1: 9 + 4: 10 + 6.1: 10 + 9: 10 + 10.2: 0 + 10.3: 10 + 10.5: 0 + 11: 10 _ZNK9oceanbase6common8ObMember10get_serverEv:10 + 19: 10 + 20.1: 10 + 21: 0 + 23: 10 _ZN9oceanbase6common8ObMember5resetEv:10 + 24: 10 + 26: 10 + 4: _ZNK9oceanbase6common6ObAddr8is_validEv:222 + 3: 9 + 4: 0 + 5: 0 + 8.1: 9 + 9.1: 9 + 10: 10 + 13.1: 0 + 13.3: 0 + 14: 0 + 11.1: _ZNK9oceanbase6common6ObAddreqERKS1_:440 + 2: 10 + 2.1: 10 + 2.2: 10 +_ZN9oceanbase4palf11LogIOWorker15reduce_io_task_EPv:1932:9 + 1: 9 + 2: 9 + 3: 9 + 11: 9 + 12.1: 13 + 12.3: 13 + 13: 1 + 15: 9 + 16: 0 + 17.1: 0 + 18.1: 9 + 26: 8 + 28.1: 0 + 29.1: 13 _ZN9oceanbase6common13ObLightyQueue3popERPvl:9 + 36: 12 _ZN9oceanbase4palf11LogIOWorker25BatchLogIOFlushLogTaskMgr6handleElPNS0_11PalfEnvImplE:12 + 37.1: 0 + 40: 4 + 41: 0 + 43.1: 4 _ZZN9oceanbase4palf11LogIOWorker15reduce_io_task_EPvENK5$_772clEPKc.1598dc2348996c1ae1caea6120522988:4 + 44: 3 + 18.1: _ZN9oceanbase4palf11LogIOWorker12need_reduce_EPNS0_9LogIOTaskE:97 + 3: 10 _ZNK9oceanbase4palf17LogIOFlushLogTask16get_io_task_typeEv:10 + 26: _ZN9oceanbase4palf11LogIOWorker25BatchLogIOFlushLogTaskMgr6insertEPNS0_17LogIOFlushLogTaskE:416 + 3: 9 + 4: 9 + 5: 9 _ZN9oceanbase4palf11LogIOWorker25BatchLogIOFlushLogTaskMgr26find_usable_batch_io_task_ElRPNS0_22BatchLogIOFlushLogTaskE:9 + 6.1: 0 + 7.1: 8 _ZN9oceanbase4palf22BatchLogIOFlushLogTask9push_backEPNS0_17LogIOFlushLogTaskE:7 + 8.1: 0 + 12: 0 + 4: _ZNK9oceanbase4palf9LogIOTask11get_palf_idEv:36 + 0: 9 + 41: _ZN9oceanbase4palf11LogIOWorker15handle_io_task_EPNS0_9LogIOTaskE:0 + 3: 0 + 4.1: 0 + 6.1: 0 + 8: 0 + 9: 0 + 11: 0 +_ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_PNS_3sql17ObInnerContextMapEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS8_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS8_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl2EE7destroyEv:1929:3 + 1: 3 + 3: 3 + 3.1: 3 + 6.1: 102 + 6.3: 102 + 8: 102 + 9.1: 0 + 11: 0 + 12: 0 + 15: 0 + 19: 1 + 22: 1 + 24: 2 + 26: 2 + 3: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringEPNS_3sql17ObInnerContextMapEEENS1_5NLockENS1_5NCondEEEEEbRKT_:51 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringEPNS_3sql17ObInnerContextMapEEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:51 + 2: 3 + 65226: 3 + 10: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_11HashMapPairINS0_8ObStringEPNS_3sql17ObInnerContextMapEEEE16check_magic_codeEv:0 + 0: 0 + 10.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 22: _ZN9oceanbase6common4hash7destroyIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringEPNS_3sql17ObInnerContextMapEEENS1_5NLockENS1_5NCondEEENS0_8ObMallocEEEvRT_RT0_:25 + 2: _ZN9oceanbase6common4hash10do_destroyIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringEPNS_3sql17ObInnerContextMapEEENS1_5NLockENS1_5NCondEEENS0_8ObMallocEEEvRT_NS1_16NormalPointerTagERT0_:25 + 2: 1 + 3: 1 _ZN9oceanbase6common8ObMalloc4freeEPv:1 + 4: 2 +_ZN9oceanbase6common22ObFixedHashMapIteratorImPNS0_14ObKVCacheStore14TenantWashInfoENS0_4hash9hash_funcImEEEppEv:1912:1 + 1: 1 + 2: 1 + 3.1: 0 + 4.1: 1 + 4.2: 1 + 7: 1 + 7.1: 56 + 8: 56 + 9: 1 + 14: 0 + 17: 1 +_ZN9oceanbase4palf11PalfEnvImpl20get_palf_handle_implElRNS0_19PalfHandleImplGuardE:1890:22 + 2: 22 + 4: 22 + 5: 22 _ZN9oceanbase4palf11PalfEnvImpl20get_palf_handle_implElRPNS0_14PalfHandleImplE:22 + 6.1: 1 + 7.1: 9 + 10.1: 1 + 12: 1 + 16: 9 + 7.1: _ZN9oceanbase4palf19PalfHandleImplGuard20set_palf_handle_implElPNS0_14PalfHandleImplEPNS_6common13ObLinkHashMapINS0_5LSKeyES2_NS0_19PalfHandleImplAllocENS4_9RefHandleELl8EEE:343 + 4: 9 + 6: 9 + 8: 1 + 9.1: 1 + 12: 9 + 13: 9 + 14: 9 + 16: 1 + 5: _ZN9oceanbase4palf16is_valid_palf_idEl:27 + 2: 9 + 12: _ZN9oceanbase4palf11PalfEnvImpl23revert_palf_handle_implEPNS0_14PalfHandleImplE:22 + 2: 1 + 3: 1 +_ZN9oceanbase6common17ObTimeZoneInfoPosC2Ev:1866:3 + 1: 3 + 3: 3 + 4: 2 + 6: 3 + 6.1: 3 + 7: 2 + 8: 2 + 0: _ZN9oceanbase6common14ObTimeZoneInfoC2Ev:60 + 1: 3 + 1: _ZN9oceanbase6common11ObTZMapWrapC2Ev:27 + 0: 3 + 0.1: _ZN9oceanbase6common13LinkHashValueINS0_9ObTZIDKeyEEC2Ev:12 + 0: 3 + 2: _ZN9oceanbase6common22ObTZTransitionTypeInfoC2Ev:147 + 1: 3 + 3: 3 + 2: _ZN9oceanbase6common20ObTZTransitionStructC2Ev:30 + 1: 3 + 3: 3 + 3.1: _ZN9oceanbase6common7ObArrayINS0_22ObTZTransitionTypeInfoENS0_8ObMallocELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_17DefaultItemEncodeIS2_EEEC2Ev:740 + 0.1: 4 + 0.5: _ZN9oceanbase6common11ObArrayImplINS0_22ObTZTransitionTypeInfoENS0_8ObMallocELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_17DefaultItemEncodeIS2_EEEC2ElRKS3_:652 + 3: 4 + 4: 4 + 7.1: 4 + 2: _ZN9oceanbase6common8ObIArrayINS0_22ObTZTransitionTypeInfoEEC2Ev:68 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_22ObTZTransitionTypeInfoEEC2Ev:68 + 0: 4 + 5: _ZN9oceanbase6common8ObMallocC2ERKS1_:416 + 0: 4 + 4.1: _ZN9oceanbase6common7ObArrayINS0_18ObTZRevertTypeInfoENS0_8ObMallocELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_17DefaultItemEncodeIS2_EEEC2Ev:624 + 0.1: 4 + 0.5: _ZN9oceanbase6common11ObArrayImplINS0_18ObTZRevertTypeInfoENS0_8ObMallocELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_17DefaultItemEncodeIS2_EEEC2ElRKS3_:524 + 3: 4 + 4: 4 + 7.1: 4 + 2: _ZN9oceanbase6common8ObIArrayINS0_18ObTZRevertTypeInfoEEC2Ev:56 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_18ObTZRevertTypeInfoEEC2Ev:56 + 0: 4 + 5: _ZN9oceanbase6common8ObMallocC2ERKS1_:300 + 0: 4 +_ZNK9oceanbase8observer16ObInnerSQLResult11get_varcharEPKcRNS_6common8ObStringE:1843:11 + 0: 11 + 0.1: 0 + 0.2: 0 + 0.5: 11 + 0.6: 0 + 0.7: 0 + 0.10: 21 _ZNK9oceanbase8observer16ObInnerSQLResult8find_idxEPKcRl:11 + 0.12: 0 + 0.14: 0 + 0.17: 21 + 0.18: 0 + 0.19: 0 + 0.22: 21 _ZNK9oceanbase8observer16ObInnerSQLResult11get_varcharElRNS_6common8ObStringE:21 + 0.25: 0 + 0.29: 19 +_ZN9oceanbase4palf15PalfFSCbWrapper14update_end_lsnElRKNS0_3LSNEl:1841:11 + 1: 11 + 3: 11 + 4.1: 0 + 6: 11 + 7: 11 + 8.4: 11 + 8.8: 6 + 9: 11 + 10: 11 + 12.1: 0 + 13.1: 11 _ZN9oceanbase10logservice11ObApplyFsCb14update_end_lsnElRKNS_4palf3LSNEl:11 + 13.2: 6 + 14.1: 0 + 17.1: 6 _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEED2Ev:6 + 18: 6 + 3: _ZNK9oceanbase6common7ObDListINS_4palf12PalfFSCbNodeEE8is_emptyEv:44 + 0: 11 + 7: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEEC2ERS3_:352 + 1: 11 + 4: 11 + 5.1: 0 + 4: _ZN9oceanbase6common10ObSpinLock4lockEv:187 + 2: 11 _ZN9oceanbase6common12ObLatchMutex4lockEjl:11 + 17: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEED2Ev:0 + 2: 0 + 3: 0 + 3.1: 0 + 4.1: 0 + 3: _ZN9oceanbase6common10ObSpinLock6unlockEv:0 + 2: 0 +_ZNK9oceanbase3sql18ObBasicSessionInfo17inner_get_sys_varENS_5share17ObSysVarClassTypeERlRPNS2_13ObBasicSysVarE:1820:22 + 3: 20 + 4: 20 + 5: 20 + 6: 0 + 7.1: 0 + 8.1: 20 _ZN9oceanbase5share15ObSysVarFactory22calc_sys_var_store_idxENS0_17ObSysVarClassTypeERl:20 + 9.1: 0 + 10.1: 20 + 12: 0 + 13.1: 0 + 14.1: 20 + 15: 0 + 16.1: 0 + 18: 20 + 20: 20 +_ZN9oceanbase6common13ObVSliceAlloc24purge_extra_cached_blockEi:1820:2 + 0: 2 + 1.1: 52 + 1.3: 52 + 4: 52 + 6: 0 + 8: 0 + 14: 2 + 65398: 0 + 3: _ZN9oceanbase6common13ObVSliceAlloc5Arena5clearEv:884 + 0: 52 + 6: _ZN9oceanbase6common14ObBlockVSlicer6freezeERl:0 + 1: 0 + 2: 0 + 7: _ZN9oceanbase6common12ObSimpleSync4syncEv:0 + 1.1: 0 + 2: 0 + 8: _ZN9oceanbase6common14ObBlockVSlicer6retireEl:0 + 0: 0 + 9: _ZN9oceanbase6common13ObVSliceAlloc13destroy_blockEPNS0_14ObBlockVSlicerE:0 + 1: 0 + 1: _ZNK9oceanbase6common14ObBlockVSlicer12get_blk_sizeEv:0 + 0: 0 + 1.1: _ZN9oceanbase6common15ObBlockAllocMgr10free_blockEPvl:0 + 3: 0 + 2: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZThn32_NK9oceanbase3sql16ObStartTransStmt21cause_implicit_commitEv:1800:229 +_ZN9oceanbase10rootserver16ObServerBalancer35distribute_for_server_status_changeEv:1798:0 + 1: 0 + 2: 0 + 3.1: 0 + 4: 0 + 5: 0 + 6.1: 0 + 10: 0 + 14.1: 0 + 14.3: 0 + 15: 0 + 17.1: 0 + 18: 0 + 19.1: 0 + 20.1: 0 + 20.3: 0 + 21.1: 0 + 25: 0 + 29.1: 0 + 29.3: 0 + 30: 0 + 32.1: 0 + 33: 0 + 34.1: 0 + 35.1: 0 + 35.3: 0 + 36.1: 0 + 41: 0 + 44.1: 0 + 44.3: 0 + 45: 0 + 46: 0 + 47.1: 0 + 48.1: 0 + 50.1: 0 + 50.2: 0 + 51.1: 0 + 54.1: 0 + 55: 0 + 4: _ZNK9oceanbase10rootserver16ObServerBalancer16check_inner_statEv:0 + 0: 0 + 10.1: _ZN9oceanbase6common4hash9ObHashMapImPNS0_7ObArrayIPNS_5share14ObResourcePoolENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS6_EENS0_22NotImplementItemEncodeIS6_EEEENS1_24LatchReadWriteDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImSD_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE5beginEv:0 + 2: 0 + 2: _ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS0_7ObArrayIPNS_5share14ObResourcePoolENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS7_EENS0_22NotImplementItemEncodeIS7_EEEEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstISF_EENS1_13SimpleAllocerINS1_15ObHashTableNodeISF_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE5beginEv:0 + 2: 0 + 3: 0 + 5: 0 + 5.1: 0 + 6.1: 0 + 8.1: 0 + 8.2: 0 + 8.3: 0 + 9: 0 + 10: 0 + 5: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImPNS0_7ObArrayIPNS_5share14ObResourcePoolENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS8_EENS0_22NotImplementItemEncodeIS8_EEEEEENS0_7ObLatchENS1_5NCondEEEEEbRKT_:0 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImPNS0_7ObArrayIPNS_5share14ObResourcePoolENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS8_EENS0_22NotImplementItemEncodeIS8_EEEEEENS0_7ObLatchENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:0 + 2: 0 + 10.2: _ZN9oceanbase6common4hash24ObHashTableConstIteratorImNS1_11HashMapPairImPNS0_7ObArrayIPNS_5share14ObResourcePoolENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS7_EENS0_22NotImplementItemEncodeIS7_EEEEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstISF_EENS1_13SimpleAllocerINS1_15ObHashTableNodeISF_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEC2ERKNS1_19ObHashTableIteratorImSF_SH_SJ_SL_SR_SS_ST_SU_Ll1EEE:0 + 1: 0 + 14.2: _ZNK9oceanbase6common4hash24ObHashTableConstIteratorImNS1_11HashMapPairImPNS0_7ObArrayIPNS_5share14ObResourcePoolENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS7_EENS0_22NotImplementItemEncodeIS7_EEEEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstISF_EENS1_13SimpleAllocerINS1_15ObHashTableNodeISF_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEneERKSV_:0 + 2: 0 + 14.4: _ZN9oceanbase6common4hash24ObHashTableConstIteratorImNS1_11HashMapPairImPNS0_7ObArrayIPNS_5share14ObResourcePoolENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS7_EENS0_22NotImplementItemEncodeIS7_EEEEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstISF_EENS1_13SimpleAllocerINS1_15ObHashTableNodeISF_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEppEv:0 + 2: 0 + 3.1: 0 + 4.1: 0 + 4.2: 0 + 7: 0 + 7.1: 0 + 8: 0 + 9: 0 + 14: 0 + 25.1: _ZN9oceanbase6common4hash9ObHashMapImPNS0_7ObArrayIPNS_5share14ObResourcePoolENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS6_EENS0_22NotImplementItemEncodeIS6_EEEENS1_24LatchReadWriteDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImSD_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE5beginEv:0 + 2: 0 + 2: _ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS0_7ObArrayIPNS_5share14ObResourcePoolENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS7_EENS0_22NotImplementItemEncodeIS7_EEEEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstISF_EENS1_13SimpleAllocerINS1_15ObHashTableNodeISF_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE5beginEv:0 + 2: 0 + 3: 0 + 5: 0 + 5.1: 0 + 6.1: 0 + 8.1: 0 + 8.2: 0 + 8.3: 0 + 9: 0 + 10: 0 + 5: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImPNS0_7ObArrayIPNS_5share14ObResourcePoolENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS8_EENS0_22NotImplementItemEncodeIS8_EEEEEENS0_7ObLatchENS1_5NCondEEEEEbRKT_:0 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImPNS0_7ObArrayIPNS_5share14ObResourcePoolENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS8_EENS0_22NotImplementItemEncodeIS8_EEEEEENS0_7ObLatchENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:0 + 2: 0 + 25.2: _ZN9oceanbase6common4hash24ObHashTableConstIteratorImNS1_11HashMapPairImPNS0_7ObArrayIPNS_5share14ObResourcePoolENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS7_EENS0_22NotImplementItemEncodeIS7_EEEEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstISF_EENS1_13SimpleAllocerINS1_15ObHashTableNodeISF_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEC2ERKNS1_19ObHashTableIteratorImSF_SH_SJ_SL_SR_SS_ST_SU_Ll1EEE:0 + 1: 0 + 29.2: _ZNK9oceanbase6common4hash24ObHashTableConstIteratorImNS1_11HashMapPairImPNS0_7ObArrayIPNS_5share14ObResourcePoolENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS7_EENS0_22NotImplementItemEncodeIS7_EEEEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstISF_EENS1_13SimpleAllocerINS1_15ObHashTableNodeISF_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEneERKSV_:0 + 2: 0 + 29.4: _ZN9oceanbase6common4hash24ObHashTableConstIteratorImNS1_11HashMapPairImPNS0_7ObArrayIPNS_5share14ObResourcePoolENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS7_EENS0_22NotImplementItemEncodeIS7_EEEEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstISF_EENS1_13SimpleAllocerINS1_15ObHashTableNodeISF_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEppEv:0 + 2: 0 + 3.1: 0 + 4.1: 0 + 4.2: 0 + 7: 0 + 7.1: 0 + 8: 0 + 9: 0 + 14: 0 + 41.1: _ZN9oceanbase6common4hash9ObHashMapImPNS_5share14ObResourcePoolENS1_24LatchReadWriteDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS5_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE5beginEv:0 + 2: 0 + 2: _ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS_5share14ObResourcePoolEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE5beginEv:0 + 2: 0 + 3: 0 + 5: 0 + 5.1: 0 + 6.1: 0 + 8.1: 0 + 8.2: 0 + 8.3: 0 + 9: 0 + 10: 0 + 5: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImPNS_5share14ObResourcePoolEEENS0_7ObLatchENS1_5NCondEEEEEbRKT_:0 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImPNS_5share14ObResourcePoolEEENS0_7ObLatchENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:0 + 2: 0 + 41.2: _ZN9oceanbase6common4hash24ObHashTableConstIteratorImNS1_11HashMapPairImPNS_5share14ObResourcePoolEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEC2ERKNS1_19ObHashTableIteratorImS7_S9_SB_SD_SJ_SK_SL_SM_Ll1EEE:0 + 1: 0 + 44.2: _ZNK9oceanbase6common4hash24ObHashTableConstIteratorImNS1_11HashMapPairImPNS_5share14ObResourcePoolEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEneERKSN_:0 + 2: 0 + 44.4: _ZN9oceanbase6common4hash24ObHashTableConstIteratorImNS1_11HashMapPairImPNS_5share14ObResourcePoolEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEppEv:1798 + 2: 0 + 3.1: 0 + 4.1: 0 + 4.2: 0 + 7: 0 + 7.1: 62 + 8: 62 + 9: 0 + 14: 0 + 65306.1: 0 +_ZN9oceanbase4palf10LogStorage6writevERKNS_6common12ObFixedArrayINS0_3LSNENS2_12ObIAllocatorEEERKNS3_IPNS0_11LogWriteBufES5_EERKNS3_IlS5_EE:1795:4 + 3: 3 + 4: 3 + 5: 3 + 6: 3 + 6.1: 3 + 6.2: 3 + 6.3: 3 + 7: 3 + 8: 0 + 9.1: 0 + 12: 3 + 15.1: 3 + 16.1: 3 + 17.1: 3 + 18: 3 + 18.1: 0 + 19.1: 3 + 20: 3 + 27: 3 + 28.1: 0 + 28.2: 3 + 28.4: 3 + 28.5: 3 + 29.1: 0 + 30: 0 + 31: 0 + 32.1: 0 + 37: 0 + 38: 0 + 39.1: 0 + 41.1: 0 + 41.2: 0 + 42.1: 0 + 44.1: 0 + 45.1: 0 + 48: 0 + 49: 0 + 53: 3 + 53.1: 3 _ZN9oceanbase4palf10LogStorage6writevERKNS0_3LSNERKNS0_11LogWriteBufEl:3 + 53.2: 8 + 54.1: 0 + 57: 8 + 58.1: 8 _ZZN9oceanbase4palf10LogStorage6writevERKNS_6common12ObFixedArrayINS0_3LSNENS2_12ObIAllocatorEEERKNS3_IPNS0_11LogWriteBufES5_EERKNS3_IlS5_EEENK5$_501clEPKc.0e4bf25207570af14a78557c8489c4fc:8 + 61.1: 6 + 63: 5 + 65446: 0 + 5: _ZNK9oceanbase6common12ObIArrayWrapINS_4palf3LSNEE5countEv:12 + 0: 3 + 6.1: _ZNK9oceanbase6common16ObFixedArrayImplINS_4palf3LSNENS0_12ObIAllocatorEEixEl:12 + 0: _ZNK9oceanbase6common12ObIArrayWrapINS_4palf3LSNEE2atEl:12 + 6: 3 + 6.2: _ZNK9oceanbase6common16ObFixedArrayImplIPNS_4palf11LogWriteBufENS0_12ObIAllocatorEEixEl:12 + 0: _ZNK9oceanbase6common12ObIArrayWrapIPNS_4palf11LogWriteBufEE2atEl:12 + 6: 3 + 6.4: _ZNK9oceanbase4palf3LSN8is_validEv:12 + 2: 3 + 7.1: _ZNK9oceanbase6common16ObFixedArrayImplIlNS0_12ObIAllocatorEEixEl:12 + 0: _ZNK9oceanbase6common12ObIArrayWrapIlE2atEl:12 + 6: 3 + 7.2: _ZN9oceanbase4palf15is_valid_log_tsEl:12 + 2: 3 + 14: _ZNK9oceanbase6common16ObFixedArrayImplINS_4palf3LSNENS0_12ObIAllocatorEEixEl:0 + 0: _ZNK9oceanbase6common12ObIArrayWrapINS_4palf3LSNEE2atEl:0 + 6: 0 + 14.1: _ZN9oceanbase4palf3LSNC2ERKS1_:33 + 0: 3 + 15: _ZNK9oceanbase6common16ObFixedArrayImplIPNS_4palf11LogWriteBufENS0_12ObIAllocatorEEixEl:0 + 0: _ZNK9oceanbase6common12ObIArrayWrapIPNS_4palf11LogWriteBufEE2atEl:0 + 6: 0 + 16: _ZNK9oceanbase6common16ObFixedArrayImplIlNS0_12ObIAllocatorEEixEl:0 + 0: _ZNK9oceanbase6common12ObIArrayWrapIlE2atEl:0 + 6: 0 + 19: _ZNK9oceanbase4palf11LogWriteBuf14get_total_sizeEv:168 + 3.1: 3 + 3.3: 3 + 4: 3 + 3.1: _ZNK9oceanbase6common12ObIArrayWrapINS_4palf11LogWriteBuf11InnerStructEE5countEv:12 + 0: 3 + 4: _ZNK9oceanbase6common13ObSEArrayImplINS_4palf11LogWriteBuf11InnerStructELl2ENS0_19ModulePageAllocatorELb0EEixEl:36 + 2.1: 3 + 2.2: 3 + 3.1: 0 + 5: 3 + 29: _ZNK9oceanbase6common16ObFixedArrayImplIPNS_4palf11LogWriteBufENS0_12ObIAllocatorEEixEl:0 + 0: _ZNK9oceanbase6common12ObIArrayWrapIPNS_4palf11LogWriteBufEE2atEl:0 + 6: 0 + 35: _ZNK9oceanbase4palf11LogWriteBuf14get_total_sizeEv:0 + 3.1: 0 + 3.3: 0 + 4: 0 + 3.1: _ZNK9oceanbase6common12ObIArrayWrapINS_4palf11LogWriteBuf11InnerStructEE5countEv:0 + 0: 0 + 4: _ZNK9oceanbase6common13ObSEArrayImplINS_4palf11LogWriteBuf11InnerStructELl2ENS0_19ModulePageAllocatorELb0EEixEl:0 + 2.1: 0 + 2.2: 0 + 3.1: 0 + 5: 0 +_ZN9oceanbase8observer20ObInnerSQLConnection5queryERNS_6common9sqlclient11ObIExecutorERNS0_16ObInnerSQLResultEPNS0_29ObVirtualTableIteratorFactoryEb:1794:0 + 4: 0 + 5: 0 + 10: 1 + 12: 1 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:1 + 13: 1 + 14.1: 1 _ZN9oceanbase3sql18ObBasicSessionInfo20set_query_start_timeEl:1 + 17: 0 + 22: 0 + 24: 0 + 28: 0 + 30: 0 + 31: 0 + 32.1: 0 + 33.1: 0 + 34: 0 + 35.1: 0 + 37.1: 0 + 37.2: 2 + 38.1: 0 + 39.1: 2 + 40: 0 + 41.1: 0 + 42.2: 2 + 43.1: 0 + 44: 0 + 45.1: 0 + 47.1: 2 _ZN9oceanbase3sql16ObQueryRetryInfo4initEv:2 + 47.2: 2 + 48.1: 0 + 53: 0 + 54: 2 _ZN9oceanbase5share25_make_tenant_switch_guardEv:2 + 54.2: 2 + 54.3: 0 + 54.4: 2 _ZN9oceanbase5share19ObTenantSwitchGuard9switch_toEmb:2 + 54.5: 1 + 54.7: 0 + 54.8: 0 + 55: 1 + 56: 1 + 59.3: 0 + 60: 1 + 62: 1 + 62.2: 1 + 63: 1 + 65: 0 + 66.1: 0 + 67.1: 0 + 68.1: 0 + 71: 0 + 71.2: 0 + 74.1: 1 _ZN9oceanbase3sql16ObSQLSessionInfo20get_raw_audit_recordEv:1 + 74.2: 1 + 76.1: 1 _ZN9oceanbase3sql16ObSQLSessionInfo20get_raw_audit_recordEv:1 + 76.2: 1 + 77: 1 _ZN9oceanbase3lib21ObMallocCallbackGuardC1ERNS0_16ObMallocCallbackE:1 + 78: 1 + 79: 1 + 84: 1 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:1 + 84.2: 1 + 85: 1 + 86: 0 + 88.3: 1 _ZN9oceanbase6common14ObMaxWaitGuardC1EPNS0_15ObWaitEventDescEPNS0_21ObDiagnoseSessionInfoE:1 + 89.3: 1 _ZN9oceanbase6common16ObTotalWaitGuardC1EPNS0_15ObWaitEventStatEPNS0_21ObDiagnoseSessionInfoE:1 + 92: 1 + 93: 0 + 97: 0 + 99.1: 0 + 99.2: 0 + 100.1: 0 + 101.1: 0 + 101.2: 2 + 103.1: 0 + 104.1: 2 _ZNK9oceanbase5share6schema19ObSchemaGetterGuard18get_schema_versionEmRl:3 + 104.2: 3 + 105.1: 0 + 106.1: 3 _ZNK9oceanbase5share6schema19ObSchemaGetterGuard18get_schema_versionEmRl:3 + 106.2: 3 + 107.1: 0 + 108.2: 3 + 109.3: 0 + 110.3: 0 + 114: 0 + 116.1: 3 _ZN9oceanbase6common20check_stack_overflowERblPl:3 + 116.2: 3 + 116.4: 3 + 116.5: 3 _ZN9oceanbase8observer20ObInnerSQLConnection8do_queryERNS_6common9sqlclient11ObIExecutorERNS0_16ObInnerSQLResultE:3 + 116.8: 0 + 116.9: 0 + 116.10: 0 + 116.12: 1 + 116.14: 0 + 118.1: 0 + 119: 0 + 119.1: 0 + 121: 0 + 121.1: 0 + 122: 0 + 123.1: 0 + 126.1: 1 + 127.1: 1 + 127.4: 1 + 129: 0 + 130.1: 1 + 130.4: 1 + 132: 0 + 135: 1 + 136: 0 + 138: 1 _ZN9oceanbase6common16ObTotalWaitGuardD1Ev:1 + 138.3: 0 + 138.4: 0 + 138.6: 1 _ZN9oceanbase6common14ObMaxWaitGuardD1Ev:1 + 140.2: 0 + 142: 0 + 144.1: 0 + 144.2: 0 + 147: 0 + 148.1: 0 + 152.1: 0 + 153.1: 0 + 154.1: 0 + 155.1: 0 + 156.1: 0 + 157: 0 + 159.2: 0 + 160.2: 0 + 160.3: 0 + 165: 0 + 165.4: 0 + 168.1: 2 + 169: 2 _ZN9oceanbase8observer20ObInnerSQLConnection13process_finalINS_6common9sqlclient11ObIExecutorEEEiRKT_RNS0_16ObInnerSQLResultEi:2 + 169.1: 2 + 170: 2 + 171.1: 0 + 175: 2 + 178.1: 2 + 179: 2 _ZN9oceanbase3sql16ObQueryRetryInfo5resetEv:2 + 181: 2 + 182.48: 2 _ZN9oceanbase8observer20ObInnerSQLConnection12TimeoutGuardD1Ev:2 + 182.50: 0 + 6: _ZNK9oceanbase8observer20ObInnerSQLConnection15get_compat_modeEv:0 + 3: _ZNK9oceanbase6common9sqlclient16ObISQLConnection21is_oracle_compat_modeEv:0 + 0: 0 + 6.1: _ZN9oceanbase3lib15CompatModeGuardC2ENS0_6Worker10CompatModeE:0 + 2: _ZN9oceanbase3lib6Worker4selfEv:0 + 3: 0 + 4: 0 + 2.1: _ZN9oceanbase3lib6Worker22get_compatibility_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 3: _ZN9oceanbase3lib6Worker4selfEv:0 + 3: 0 + 4: 0 + 3.1: _ZN9oceanbase3lib6Worker22set_compatibility_modeENS1_10CompatModeE:0 + 2: _ZN9oceanbase3lib15set_compat_modeENS0_6Worker10CompatModeE:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 7: _ZN9oceanbase3sql12ObExecRecordC2Ev:7 + 2: 0 + 8: _ZN9oceanbase3sql15ObExecTimestampC2Ev:11 + 2: 1 + 11: _ZN9oceanbase8observer8ObServer12get_instanceEv:25 + 2: 1 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 14: _ZN9oceanbase8observer20ObInnerSQLConnection11get_sessionEv:20 + 0: 1 + 16: _ZN9oceanbase8observer20ObInnerSQLConnection11get_sessionEv:0 + 0: 0 + 16.1: _ZN9oceanbase3sql16ObSQLSessionInfo14set_trans_typeENS_11transaction9ObTxClassE:0 + 0: 0 + 19: _ZN9oceanbase6common12ObCurTraceId3getEv:0 + 2: _ZN9oceanbase6common12ObCurTraceId12get_trace_idEv:0 + 5: 0 + 5.1: 0 + 5.1: _ZN9oceanbase6common12ObCurTraceId7TraceIdC2Ev:0 + 0: 0 + 21: _ZN9oceanbase8observer20ObInnerSQLConnection11get_sessionEv:0 + 0: 0 + 21.1: _ZN9oceanbase3sql18ObBasicSessionInfo25get_retry_info_for_updateEv:0 + 0: 0 + 24.1: _ZNK9oceanbase8observer8ObServer8get_selfEv:0 + 0: 0 + 24.2: _ZN9oceanbase6common12ObCurTraceId4initERKNS0_6ObAddrE:0 + 4: 0 + 2: _ZN9oceanbase6common12ObCurTraceId12get_trace_idEv:0 + 5: 0 + 5.1: 0 + 5.1: _ZN9oceanbase6common12ObCurTraceId7TraceIdC2Ev:0 + 0: 0 + 42.1: _ZNK9oceanbase3sql16ObQueryRetryInfo9is_initedEv:14 + 0: 2 + 43: _ZNK9oceanbase8observer20ObInnerSQLConnection16is_inner_sessionEv:0 + 0: 0 + 52: _ZN9oceanbase8observer20ObInnerSQLConnection11get_sessionEv:30 + 0: 2 + 52.1: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:42 + 0: 2 + 55: _ZN9oceanbase3sql5ObSql16get_execution_idEv:21 + 0: 1 + 57: _ZN9oceanbase8observer20ObInnerSQLConnection11get_sessionEv:20 + 0: 1 + 57.2: _ZN9oceanbase8observer16ObQueryRetryCtrl29clear_state_before_each_retryERNS_3sql16ObQueryRetryInfoE:12 + 2: 1 + 4: _ZN9oceanbase3sql16ObQueryRetryInfo29clear_state_before_each_retryEv:7 + 2: 1 + 58: _ZN9oceanbase8observer16ObQueryRetryCtrl17reset_retry_timesEv:5 + 0: 1 + 61: _ZN9oceanbase3sql16ObQueryRetryInfo29clear_state_before_each_retryEv:6 + 2: 1 + 62.1: _ZN9oceanbase3lib13is_mysql_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 62.2: _ZN9oceanbase8observer16ObInnerSQLResult11set_is_readEb:7 + 0: 1 + 64: _ZN9oceanbase8observer16ObInnerSQLResult10result_setEv:0 + 0: 0 + 64.1: _ZNK9oceanbase3sql11ObResultSet11is_user_sqlEv:0 + 0: 0 + 66: _ZN9oceanbase8observer20ObInnerSQLConnection11get_sessionEv:0 + 0: 0 + 67: _ZN9oceanbase8observer16ObInnerSQLResult4initEv:0 + 2: 0 + 70: _ZN9oceanbase8observer16ObInnerSQLResult10result_setEv:0 + 0: 0 + 70.1: _ZN9oceanbase3sql11ObResultSet12set_user_sqlEb:0 + 0: 0 + 71.1: _ZN9oceanbase3lib13is_mysql_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 71.2: _ZN9oceanbase8observer16ObInnerSQLResult11set_is_readEb:0 + 0: 0 + 74: _ZN9oceanbase8observer20ObInnerSQLConnection11get_sessionEv:15 + 0: 1 + 75.1: _ZN9oceanbase8observer23ObProcessMallocCallbackC2ElRl:63 + 1: 1 + 2: 1 + 2.3: 1 + 0: _ZN9oceanbase3lib16ObMallocCallbackC2Ev:21 + 0: 1 + 76: _ZN9oceanbase8observer20ObInnerSQLConnection11get_sessionEv:15 + 0: 1 + 80: _ZN9oceanbase6common15ObWaitEventDescC2Ev:42 + 1: 1 + 81: _ZN9oceanbase6common15ObWaitEventStatC2Ev:18 + 1: 1 + 82: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:8 + 2: 1 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:1 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:7 + 2: 1 + 85.1: _ZN9oceanbase8observer20ObInnerSQLConnection11get_sessionEv:0 + 0: 0 + 85.2: _ZNK9oceanbase3sql18ObBasicSessionInfo29get_local_ob_enable_sql_auditEv:0 + 2: 0 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache23get_ob_enable_sql_auditEv:0 + 0: 0 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache23get_ob_enable_sql_auditEb:0 + 0: 0 + 96: _ZN9oceanbase8observer20ObInnerSQLConnection11get_sessionEv:0 + 0: 0 + 108.1: _ZNK9oceanbase8observer20ObInnerSQLConnection17is_extern_sessionEv:27 + 0: 3 + 109: _ZN9oceanbase8observer16ObInnerSQLResult10result_setEv:0 + 0: 0 + 109.1: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:0 + 0: 0 + 0.2: 0 + 109.3: _ZN9oceanbase3sql17ObTaskExecutorCtx37set_query_tenant_begin_schema_versionEl:0 + 2: 0 + 110: _ZN9oceanbase8observer16ObInnerSQLResult10result_setEv:0 + 0: 0 + 110.1: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:0 + 0: 0 + 0.2: 0 + 110.3: _ZN9oceanbase3sql17ObTaskExecutorCtx34set_query_sys_begin_schema_versionEl:0 + 2: 0 + 116.7: _ZNSt8functionIFivEEC2IZN9oceanbase8observer20ObInnerSQLConnection5queryERNS3_6common9sqlclient11ObIExecutorERNS4_16ObInnerSQLResultEPNS4_29ObVirtualTableIteratorFactoryEbE5$_154vEET_:0 + 8: 0 + 9: 0 + 1: _ZNSt14_Function_baseC2Ev:0 + 0: 0 + 7.1: _ZNSt14_Function_base13_Base_managerIZN9oceanbase8observer20ObInnerSQLConnection5queryERNS1_6common9sqlclient11ObIExecutorERNS2_16ObInnerSQLResultEPNS2_29ObVirtualTableIteratorFactoryEbE5$_154E15_M_init_functorERSt9_Any_dataOSC_:0 + 1.1: _ZNSt14_Function_base13_Base_managerIZN9oceanbase8observer20ObInnerSQLConnection5queryERNS1_6common9sqlclient11ObIExecutorERNS2_16ObInnerSQLResultEPNS2_29ObVirtualTableIteratorFactoryEbE5$_154E15_M_init_functorERSt9_Any_dataOSC_St17integral_constantIbLb0EE:0 + 1: 0 + 126: _ZN9oceanbase8observer20ObInnerSQLConnection11get_sessionEv:19 + 0: 1 + 126.1: _ZN9oceanbase3sql18ObBasicSessionInfo20set_session_in_retryEbi:28 + 3: 1 + 11: 1 _ZN9oceanbase3sql18ObBasicSessionInfo20set_session_in_retryENS0_20ObSessionRetryStatusE:1 + 127: _ZN9oceanbase8observer16ObInnerSQLResult20get_execute_start_tsEv:7 + 0: 1 + 130: _ZN9oceanbase8observer16ObInnerSQLResult18get_execute_end_tsEv:7 + 0: 1 + 140.1: _ZNK9oceanbase8observer16ObInnerSQLResult9is_initedEv:0 + 0: 0 + 141: _ZN9oceanbase8observer20ObInnerSQLConnection11get_sessionEv:0 + 0: 0 + 141.1: _ZN9oceanbase8observer20ObInnerSQLTimeRecordC2ERNS_3sql16ObSQLSessionInfoE:0 + 1: 0 + 3: 0 + 142: _ZN9oceanbase8observer20ObInnerSQLTimeRecord27set_execute_start_timestampEl:0 + 0: 0 + 152: _ZNK9oceanbase8observer16ObInnerSQLResult9is_initedEv:0 + 0: 0 + 153: _ZN9oceanbase8observer16ObInnerSQLResult10result_setEv:0 + 0: 0 + 159: _ZN9oceanbase8observer20ObInnerSQLConnection11get_sessionEv:0 + 0: 0 + 159.1: _ZNK9oceanbase3sql18ObBasicSessionInfo18get_in_transactionEv:0 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo17is_in_transactionEv:0 + 0: 0 + 0.1: _ZNK9oceanbase11transaction8ObTxDesc8is_in_txEv:0 + 0: 0 + 160: _ZN9oceanbase8observer16ObInnerSQLResult10result_setEv:0 + 0: 0 + 160.1: _ZNK9oceanbase3sql11ObResultSet13get_stmt_typeEv:0 + 2: 0 + 161: _ZN9oceanbase8observer20ObInnerSQLConnection11get_sessionEv:0 + 0: 0 + 161.1: _ZN9oceanbase3sql18ObBasicSessionInfo23set_has_inner_dml_writeEb:0 + 0: _ZN9oceanbase3sql18ObBasicSessionInfo10TransFlags23set_has_inner_dml_writeEb:0 + 0: _ZN9oceanbase3sql18ObBasicSessionInfo10TransFlags8set_flagEbm:0 + 3: 0 + 168: _ZNK9oceanbase8observer16ObInnerSQLResult9is_initedEv:16 + 0: 2 + 176: _ZN9oceanbase6common12ObCurTraceId5resetEv:51 + 2: _ZN9oceanbase6common12ObCurTraceId12get_trace_idEv:25 + 5: 1 + 5.1: 0 + 5.1: _ZN9oceanbase6common12ObCurTraceId7TraceIdC2Ev:0 + 0: 0 + 4: _ZN9oceanbase6common12ObCurTraceId7TraceId5resetEv:26 + 0: 1 + 178: _ZNK9oceanbase8observer20ObInnerSQLConnection16is_inner_sessionEv:18 + 0: 2 + 182.57: _ZN9oceanbase3lib15CompatModeGuardD2Ev:0 + 2: _ZN9oceanbase3lib6Worker4selfEv:0 + 3: 0 + 4: 0 + 2.1: _ZN9oceanbase3lib6Worker22set_compatibility_modeENS1_10CompatModeE:0 + 2: _ZN9oceanbase3lib15set_compat_modeENS0_6Worker10CompatModeE:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 182.59: _ZN9oceanbase3lib15CompatModeGuardD2Ev:144 + 2: _ZN9oceanbase3lib6Worker4selfEv:52 + 3: 2 + 4: 0 + 2.1: _ZN9oceanbase3lib6Worker22set_compatibility_modeENS1_10CompatModeE:92 + 2: _ZN9oceanbase3lib15set_compat_modeENS0_6Worker10CompatModeE:92 + 2: 2 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:50 + 2: 2 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 +_ZN9oceanbase8observer16ObInnerSQLResult4nextEv:1774:7 + 1: 6 + 2: 6 + 5: 6 + 6: 0 + 7.1: 0 + 8.1: 6 + 9: 0 + 10.2: 4 + 11: 6 + 11.1: 6 + 11.2: 6 _ZN9oceanbase5share19ObTenantSwitchGuard9switch_toEmb:6 + 11.3: 4 + 12.1: 0 + 13.1: 4 + 14: 2 + 16: 2 + 17: 2 + 18.2: 2 + 18.3: 2 + 18.4: 2 + 18.5: 0 + 18.7: 2 + 18.9: 0 + 18.10: 0 + 19.1: 2 + 19.2: 2 _ZN9oceanbase3sql11ObResultSet12get_next_rowERPKNS_6common8ObNewRowE:2 + 19.3: 0 + 21: 0 + 21.2: 0 + 22.1: 0 + 24.2: 0 + 24.3: 0 + 24.4: 0 + 26.1: 0 + 31: 0 + 31.1: 0 + 32: 1 + 33.8: 5 + 33.9: 0 + 3: _ZN9oceanbase5share25_make_tenant_switch_guardEv:300 + 2: 6 + 2.1: 0 + 2.3: 0 + 2.6: 0 + 2.2: _ZN9oceanbase5share19ObTenantSwitchGuardC2Ev:0 + 0.4: _ZNSt8functionIFiRN9oceanbase6common10ObLDHandleEEEC2Ev:0 + 1: _ZNSt14_Function_baseC2Ev:0 + 0: 0 + 0.5: _ZN9oceanbase5share19ObTenantSwitchGuard5resetEv:0 + 2: 0 + 3: 0 + 4: 0 + 3: _ZN9oceanbase5share19ObTenantSwitchGuardC2ERKS1_:186 + 0.1: _ZNSt8functionIFiRN9oceanbase6common10ObLDHandleEEEC2Ev:42 + 1: _ZNSt14_Function_baseC2Ev:42 + 0: 6 + 2: _ZN9oceanbase5share19ObTenantSwitchGuard5resetEv:144 + 2: 6 + 3: 6 + 4: 6 + 10.1: _ZNK9oceanbase8observer16ObInnerSQLResult19has_tenant_resourceEv:42 + 0: 6 + 11.1: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:84 + 0: 6 + 17: _ZN9oceanbase3lib15CompatModeGuardC2ENS0_6Worker10CompatModeE:204 + 2: 2 + 2: _ZN9oceanbase3lib6Worker4selfEv:56 + 3: 2 + 4: 0 + 2.1: _ZN9oceanbase3lib6Worker22get_compatibility_modeEv:86 + 2: _ZN9oceanbase3lib15get_compat_modeEv:86 + 2: 2 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:50 + 2: 2 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 3: _ZN9oceanbase3lib6Worker4selfEv:18 + 3: 2 + 4: 0 + 3.1: _ZN9oceanbase3lib6Worker22set_compatibility_modeENS1_10CompatModeE:38 + 2: _ZN9oceanbase3lib15set_compat_modeENS0_6Worker10CompatModeE:38 + 2: 2 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 18: _ZN9oceanbase3lib2_SILNS0_13ContextSourceE0EEC2EbRNS0_13MemoryContextE:296 + 1: 2 + 4.1: 2 + 7: 2 + 10: 2 + 13: 2 + 1: _ZN9oceanbase3lib6_SBaseC2Ev:22 + 1: 2 + 4: _ZN9oceanbase3libeqEDnRKNS0_13MemoryContextE:16 + 1: 2 + 7: _ZN9oceanbase3lib4FlowC2ERNS0_13MemoryContextE:70 + 1: 2 + 3: 2 + 8: _ZN9oceanbase3lib4Flow4initEv:128 + 4: 2 + 7: 2 + 8: 2 + 9: 2 + 12: 2 + 7: _ZL12abort_unlessb:12 + 5: 2 + 6: 0 + 18.6: _ZNK9oceanbase3lib6_SBase7get_retEv:12 + 2: 2 + 19: _ZNK9oceanbase8observer16ObInnerSQLResult19has_tenant_resourceEv:14 + 0: 2 + 21: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:0 + 0: 0 + 0.2: 0 + 21.1: _ZN9oceanbase3sql13ObExecContext17get_task_exec_ctxEv:0 + 2: 0 + 24.1: _ZNK9oceanbase8observer16ObInnerSQLResult19has_tenant_resourceEv:0 + 0: 0 + 33.8: _ZN9oceanbase5share19ObTenantSwitchGuardD2Ev:56 + 2: 1 _ZN9oceanbase5share19ObTenantSwitchGuard7releaseEv:1 + 3.1: 0 + 3.2: 0 + 3: _ZNSt14_Function_baseD2Ev:55 + 2: 5 + 3: 0 + 3.2: 0 +_ZN9oceanbase6common12ObBucketLock12try_lock_allEb:1762:0 + 1: 0 + 2: 0 + 4: 0 + 6: 0 + 7: 0 + 8.1: 0 + 10.1: 25 + 10.2: 25 + 10.3: 25 + 10.5: 25 + 11: 25 + 14: 28 _ZN9oceanbase6common7ObLatch10try_rdlockEj:30 + 16: 25 + 17: 25 + 19.1: 1 + 24.1: 0 + 25: 0 + 29: 0 + 31: 0 + 12: _ZN9oceanbase6common7ObLatch10try_wrlockEjPKj:131 + 2: 1 + 3.3: 1 + 4: 1 + 5: 1 + 7: 0 + 8.1: 0 + 10: 1 + 11: 0 + 14.1: 1 + 14.2: 0 + 14.5: 0 + 17: 1 + 3.1: _Z9ob_gettidv:53 + 3: 1 + 4: 0 + 2: _Z13get_tid_cachev:25 + 7: 1 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 +_ZN9oceanbase6common2SVINS_12blocksstable11ObRowWriterELb0EEC2IZNS_8memtable22ObMemtableRowCompactor23construct_compact_node_ElPNS6_15ObMvccTransNodeEE5$_651EEibOT_.1dd22efca7fa83ae50e8099a04ad3959:1750:59 + 1: 55 + 2: 55 + 3: 55 + 5: 0 + 6: 0 + 7: 0 + 9: 0 + 15: 53 + 1: _ZN9oceanbase6common6SVBaseC2Eib:440 + 1: 55 + 2: 55 + 16: 55 + 9: _ZZN9oceanbase8memtable22ObMemtableRowCompactor23construct_compact_node_ElPNS0_15ObMvccTransNodeEENK5$_651clEPv:0 + 0: 0 +_ZN9oceanbase6common16ObKVCacheInstMap13refresh_scoreEv:1736:0 + 1: 0 + 2: 0 + 3: 0 + 4: 0 + 5.1: 0 + 11: 0 + 12.2: 0 + 13.1: 0 + 14: 0 + 17: 0 + 18: 0 + 20: 0 + 21: 0 + 22: 0 + 25: 0 + 11: _ZN9oceanbase6common7DRWLock11RDLockGuardC2ERS1_:0 + 0: 0 + 2: 0 + 3.1: 0 + 2: _ZN9oceanbase6common7DRWLock6rdlockEv:0 + 2: 0 + 2.1: 0 + 2: _ZN9oceanbase6common8get_itidEv:0 + 4: 0 + 5: 0 + 6: 0 + 8: 0 + 12: _ZN9oceanbase6common4hash9ObHashMapINS0_16ObKVCacheInstKeyEPNS0_13ObKVCacheInstENS1_19NoPthreadDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_S5_EEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE5beginEv:0 + 2: _ZN9oceanbase6common4hash11ObHashTableINS0_16ObKVCacheInstKeyENS1_11HashMapPairIS3_PNS0_13ObKVCacheInstEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE5beginEv:0 + 5: 0 + 5.1: 0 + 6.1: 0 + 8.1: 0 + 8.2: 0 + 8.3: 0 + 9: 0 + 10: 0 + 5: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_16ObKVCacheInstKeyEPNS0_13ObKVCacheInstEEENS1_5NLockENS1_5NCondEEEEEbRKT_:0 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_16ObKVCacheInstKeyEPNS0_13ObKVCacheInstEEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:0 + 2: 0 + 12.8: _ZN9oceanbase6common4hash19ObHashTableIteratorINS0_16ObKVCacheInstKeyENS1_11HashMapPairIS3_PNS0_13ObKVCacheInstEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEppEv:1736 + 4.2: 0 + 7.1: 62 + 8: 62 + 16: _ZNK9oceanbase6common9ObCounterILl32ENS0_33ObCounterSlotPickerByCPUNonAtomicEE5valueEv:0 + 6: 0 + 24: _ZN9oceanbase6common7DRWLock11RDLockGuardD2Ev:0 + 2: 0 + 3: 0 + 3.1: 0 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase6common7DRWLock8rdunlockEv:0 + 2: 0 + 2.1: 0 + 2: _ZN9oceanbase6common8get_itidEv:0 + 4: 0 + 5: 0 + 6: 0 + 8: 0 + 24.1: _ZN9oceanbase6common7DRWLock11RDLockGuardD2Ev:0 + 2: 0 + 3: 0 + 3.1: 0 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase6common7DRWLock8rdunlockEv:0 + 2: 0 + 2.1: 0 + 2: _ZN9oceanbase6common8get_itidEv:0 + 4: 0 + 5: 0 + 6: 0 + 8: 0 +_ZNK9oceanbase4palf19LogGroupEntryHeader28get_header_parity_check_res_Ev:1733:13 + 1: 13 + 2: 14 _ZN9oceanbase6common12parity_checkEt:14 + 3: 15 _ZN9oceanbase6common12parity_checkEt:14 + 4: 15 _ZN9oceanbase6common12parity_checkEj:15 + 5: 12 _ZN9oceanbase6common12parity_checkEm:12 + 6: 13 _ZN9oceanbase6common12parity_checkEm:13 + 7: 14 _ZN9oceanbase6common12parity_checkEm:13 + 8: 14 _ZN9oceanbase6common12parity_checkEm:13 + 9: 14 _ZN9oceanbase6common12parity_checkEm:14 + 10: 14 + 11: 14 _ZN9oceanbase6common12parity_checkEm:14 + 12: 14 +_ZN9oceanbase3sql17ObLCObjectManager11common_freeEPNS0_17ObILibCacheObjectENS0_16CacheRefHandleIDE:1731:19 + 2: 17 + 3: 17 + 4: 17 + 7: 15 + 8: 15 + 9: 15 + 10: 0 + 11.1: 0 + 17.1: 0 + 18: 0 + 19: 0 + 20.1: 0 + 21.1: 0 + 21.2: 0 + 22.1: 0 + 25.1: 0 + 28: 15 + 7: _ZN9oceanbase3sql17ObILibCacheObject13dec_ref_countENS0_16CacheRefHandleIDE:571 + 2: 17 + 3: 17 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:18 + 4: 0 + 5: 0 + 6.1: 0 + 11: 15 + 8.1: _ZN9oceanbase3sql19ObCacheRefHandleMgr15record_deref_opENS0_16CacheRefHandleIDE:0 + 3: 0 + 4.1: 0 + 9: _ZNK9oceanbase3sql17ObILibCacheObject8added_lcEv:60 + 0: 15 + 10.1: _ZN9oceanbase3sql17ObILibCacheObject20set_logical_del_timeEl:0 + 0: 0 + 21.1: _ZNK9oceanbase3sql17ObILibCacheObject13get_object_idEv:0 + 0: 0 +_ZN9oceanbase4palf7LogTask11try_freeze_ERKNS0_3LSNE:1681:24 + 1: 23 + 3: 23 + 4: 23 + 6.1: 10 _ZZN9oceanbase4palf7LogTask11try_freeze_ERKNS0_3LSNEENK5$_571clEPKc.0e4bf25207570af14a78557c8489c4fc:10 + 7.1: 12 + 8: 0 + 9.1: 0 + 10.1: 12 + 11: 0 + 12.1: 0 + 13.1: 12 + 14: 0 + 15.1: 0 + 20: 12 + 25: 23 + 4: _ZNK9oceanbase4palf7LogTask10is_freezedEv:138 + 2: _ZNK9oceanbase4palf15LogSimpleBitMap8test_mapEl:138 + 2: 23 + 7.1: _ZNK9oceanbase4palf3LSN8is_validEv:48 + 2: 12 + 10.1: _ZNK9oceanbase4palf7LogTask8is_validEv:48 + 2: _ZNK9oceanbase4palf15LogSimpleBitMap8test_mapEl:48 + 2: 12 + 13.1: _ZNK9oceanbase4palf3LSNgeERKS1_:84 + 2: 12 + 2: _ZNK9oceanbase4palf3LSNltERKS1_:48 + 2: 12 + 21: _ZN9oceanbase4palf7LogTask3refElb:96 + 5: 12 + 22: _ZN9oceanbase4palf3LSNaSERKS1_:84 + 2: 12 + 23: _ZN9oceanbase4palf15LogSimpleBitMap7set_mapEl:192 + 3: 12 + 4.1: 12 + 5: 0 + 6: 0 +_ZNK9oceanbase3lib25ObTenantResourceMgrHandle8is_validEv:1680:80 + 1: 80 + 2: 80 + 2.1: 80 + 2.2: 80 +_ZN9oceanbase3sql20ObStartTransResolverD2Ev:1668:280 + 1: 278 + 2: 278 +_ZN9oceanbase3sql20ObStartTransResolverD1Ev:1668:280 + 1: 278 + 2: 278 +_ZN9oceanbase5share6schema17ObSchemaMgrHandleaSERKS2_:1638:23 + 1: 21 + 2: 21 + 4: 21 + 5: 21 + 6: 21 + 7: 0 + 8: 0 + 11: 21 + 3: _ZN9oceanbase5share6schema17ObSchemaMgrHandle5resetEv:420 + 4: 21 + 2: _ZN9oceanbase5share6schema17ObSchemaMgrHandle6revertEv:273 + 2: 21 + 3.1: 0 + 4.1: 0 + 5: 0 + 5.1: 0 + 6: 0 + 6.1: 0 + 7: 0 + 8.1: 0 + 14: 0 + 15: 0 + 6.1: _ZN9oceanbase6common16ObClockGenerator8getClockEv:0 + 4: 0 + 5.1: 0 + 8: 0 + 6: _ZN9oceanbase6common16ObClockGenerator6get_usEv:0 + 2: 0 +_ZN9oceanbase3sql18ObBasicSessionInfo40process_session_compatibility_mode_valueERKNS_6common5ObObjE:1635:7 + 1: 7 + 2: 7 + 4: 7 + 5: 0 + 6: 0 + 8.1: 0 + 11: 0 + 12.1: 0 + 14.1: 7 + 19: 0 + 20.1: 0 + 23: 8 + 27: 8 + 4: _ZNK9oceanbase6common5ObObj14is_string_typeEv:259 + 0: _ZNK9oceanbase6common9ObObjMeta14is_string_typeEv:259 + 0: 7 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:119 + 0: 7 + 0.3: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:42 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:42 + 2: 7 + 5: _ZNK9oceanbase6common5ObObj10get_stringEv:0 + 1: 0 + 1: _ZN9oceanbase6common8ObStringC2ElPKc:0 + 5: 0 + 24: _ZN9oceanbase3sql18ObBasicSessionInfo22set_compatibility_modeENS_6common19ObCompatibilityModeE:848 + 2: 8 + 3: 8 + 2: _ZN9oceanbase6common33ob_compatibility_mode_to_sql_modeENS0_19ObCompatibilityModeE:96 + 2: 8 + 3: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache12get_sql_modeEv:480 + 0: 8 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache12get_sql_modeEb:208 + 0: 8 + 4: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache12set_sql_modeEm:224 + 0: 8 +_ZN9oceanbase3omt15ObResourceGroup18check_worker_countEv:1621:10 + 1: 9 + 3: 7 + 4: 7 + 4.2: 32 + 4.3: 32 + 5: 27 + 7: 27 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:28 + 8: 22 + 10.1: 0 + 13: 0 + 14: 0 + 17: 0 + 21: 3 + 22: 3 + 23: 0 + 24: 0 + 25: 0 + 31: 4 + 3: _ZN9oceanbase3lib7ObMutex7trylockEv:144 + 0: 9 _ZN9oceanbase6common12ObLatchMutex8try_lockEjPKj:9 + 4: _ZN9oceanbase6common7ObDListINS0_11ObDLinkNodeIPNS_3lib6WorkerEEEE9get_firstEv:49 + 0: 7 + 6: _ZNK9oceanbase3omt10ObThWorker22get_active_inactive_tsEv:189 + 0: 27 + 8: _ZN9oceanbase3omt10ObThWorker9is_activeEv:154 + 0: 22 + 10.1: _ZN9oceanbase3omt10ObThWorker17is_waiting_activeEv:0 + 0: 0 + 12: _ZNK9oceanbase3omt10ObThWorker22get_active_inactive_tsEv:0 + 0: 0 + 15: _ZN9oceanbase6common7ObDListINS0_11ObDLinkNodeIPNS_3lib6WorkerEEEE6removeEPS6_:0 + 3: 0 + 7: 0 + 6: _ZN9oceanbase6common11ObDLinkBaseINS0_11ObDLinkNodeIPNS_3lib6WorkerEEEE6unlinkEv:0 + 2: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 16: _ZN9oceanbase3omt10ObThWorker5resetEv:0 + 5: 0 + 6: 0 + 8: 0 + 10: 0 + 11: 0 + 13: 0 + 14: 0 + 15: _ZN9oceanbase3lib6Worker10unset_tidxEv:0 + 2: 0 + 29: _ZN9oceanbase3lib7ObMutex6unlockEv:3 + 0: 3 _ZN9oceanbase6common12ObLatchMutex6unlockEv:4 +_ZNK9oceanbase8observer16ObInnerSQLResult8get_uintElRm:1614:11 + 0: 10 + 0.1: 0 + 0.2: 0 + 0.5: 10 + 0.6: 0 + 0.7: 0 + 0.10: 10 + 0.13: 10 + 0.14: 0 + 0.15: 0 + 0.18: 10 + 0.19: 0 + 0.21: 10 + 0.22: 10 + 0.23: 0 + 0.24: 0 + 0.27: 10 + 0.32: 9 + 0.34: 0 + 0.39: 10 + 0.27: _ZN9oceanbase8observer16ObInnerSQLResult18check_extend_valueERKNS_6common5ObObjE:150 + 3: 10 + 5.1: 0 + 3: _ZNK9oceanbase6common5ObObj7is_nullEv:30 + 0: _ZNK9oceanbase6common9ObObjMeta7is_nullEv:30 + 0: 10 + 5.1: _ZNK9oceanbase6common5ObObj12is_min_valueEv:0 + 2.1: 0 + 0.32: _ZNK9oceanbase6common5ObObj10get_uint64ERm:153 + 3: 9 + 4: 9 + 3: _ZNK9oceanbase6common9ObObjMeta9is_uint64Ev:27 + 0: 9 +_ZN9oceanbase3sql14ObExprValuesOp7destroyEv:1614:279 + 0: 269 +_ZN9oceanbase8memtable13ObMemtableCtxD2Ev:1602:2 + 1: 2 + 3: 2 _ZN9oceanbase8memtable13ObMemtableCtx5resetEv:2 + 4: 8 + 4.1: 0 + 4.2: 0 + 4.3: 7 _ZN9oceanbase6common11ObArrayImplINS_11transaction9ObTransIDENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEED2Ev:8 + 4.6: 8 _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEED2Ev:8 + 4.15: 0 + 4.18: 0 + 4.22: 0 + 4.23: 0 + 4.25: 0 + 4.26: 0 + 4: _ZN9oceanbase11transaction9tablelock12ObLockMemCtxD2Ev:269 + 0: 2 _ZN9oceanbase11transaction9tablelock12ObLockMemCtx5resetEv:2 + 0.1: 4 _ZN9oceanbase7storage15ObTableHandleV2D1Ev:4 + 0.5: _ZN9oceanbase6common10SpinRWLockD2Ev:32 + 2: 4 _ZN9oceanbase6common7ObLatchD1Ev:5 + 0.7: _ZN9oceanbase11transaction9tablelock14ObArenaObjPoolINS1_22ObMemCtxLockOpLinkNodeELl1EED2Ev:203 + 0.1: _ZN9oceanbase11transaction9tablelock22ObMemCtxLockOpLinkNodeD2Ev:203 + 0: 7 + 0: _ZN9oceanbase11transaction9tablelock13ObTableLockOpD2Ev:77 + 0: _ZN9oceanbase11transaction9ObTransIDD2Ev:77 + 0: 7 + 4.1: _ZN9oceanbase11transaction9tablelock12ObLockMemCtxD2Ev:0 + 0: 0 + 0.1: 0 + 0.5: _ZN9oceanbase6common10SpinRWLockD2Ev:0 + 2: 0 + 0.7: _ZN9oceanbase11transaction9tablelock14ObArenaObjPoolINS1_22ObMemCtxLockOpLinkNodeELl1EED2Ev:0 + 0.1: _ZN9oceanbase11transaction9tablelock22ObMemCtxLockOpLinkNodeD2Ev:0 + 0: 0 + 0: _ZN9oceanbase11transaction9tablelock13ObTableLockOpD2Ev:0 + 0: _ZN9oceanbase11transaction9ObTransIDD2Ev:0 + 0: 0 + 4.4: _ZN9oceanbase7storage14ObTxTableGuardD2Ev:72 + 0: _ZN9oceanbase7storage14ObTxTableGuard5resetEv:72 + 2: 8 + 3: 0 + 4: 0 + 4.10: _ZN9oceanbase8memtable24ObMemtableCtxCbAllocatorD2Ev:456 + 1: 8 + 2: 8 + 3.1: 0 + 5: 8 + 6: 0 + 6.1: 8 _ZN9oceanbase6common15ObFIFOAllocatorD1Ev:8 + 4.11: _ZN9oceanbase8memtable16ObQueryAllocatorD2Ev:424 + 1: 8 + 2: 8 + 3.1: 0 + 5: 8 + 6: 0 + 6.1: 8 _ZN9oceanbase6common15ObFIFOAllocatorD1Ev:8 + 4.13: _ZN9oceanbase6common10SpinRWLockD2Ev:24 + 2: 3 _ZN9oceanbase6common7ObLatchD1Ev:4 + 4.14: _ZN9oceanbase8memtable10ObIMvccCtxD2Ev:120 + 0: 4 + 0: _ZN9oceanbase8memtable18ObTransCallbackMgrD2Ev:64 + 0: 4 + 0.1: 4 _ZN9oceanbase8memtable16ObTxCallbackListD1Ev:5 + 0: _ZN9oceanbase6common10SpinRWLockD2Ev:32 + 2: 4 _ZN9oceanbase6common7ObLatchD1Ev:4 + 4.16: _ZN9oceanbase7storage14ObTxTableGuardD2Ev:0 + 0: _ZN9oceanbase7storage14ObTxTableGuard5resetEv:0 + 2: 0 + 3: 0 + 4: 0 +_ZN9oceanbase8memtable13ObMemtableCtxD1Ev:1602:2 + 1: 2 + 3: 2 _ZN9oceanbase8memtable13ObMemtableCtx5resetEv:2 + 4: 8 + 4.1: 0 + 4.2: 0 + 4.3: 7 _ZN9oceanbase6common11ObArrayImplINS_11transaction9ObTransIDENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEED2Ev:8 + 4.6: 8 _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEED2Ev:8 + 4.15: 0 + 4.18: 0 + 4.22: 0 + 4.23: 0 + 4.25: 0 + 4.26: 0 + 4: _ZN9oceanbase11transaction9tablelock12ObLockMemCtxD2Ev:269 + 0: 2 _ZN9oceanbase11transaction9tablelock12ObLockMemCtx5resetEv:2 + 0.1: 4 _ZN9oceanbase7storage15ObTableHandleV2D1Ev:4 + 0.5: _ZN9oceanbase6common10SpinRWLockD2Ev:32 + 2: 4 _ZN9oceanbase6common7ObLatchD1Ev:5 + 0.7: _ZN9oceanbase11transaction9tablelock14ObArenaObjPoolINS1_22ObMemCtxLockOpLinkNodeELl1EED2Ev:203 + 0.1: _ZN9oceanbase11transaction9tablelock22ObMemCtxLockOpLinkNodeD2Ev:203 + 0: 7 + 0: _ZN9oceanbase11transaction9tablelock13ObTableLockOpD2Ev:77 + 0: _ZN9oceanbase11transaction9ObTransIDD2Ev:77 + 0: 7 + 4.1: _ZN9oceanbase11transaction9tablelock12ObLockMemCtxD2Ev:0 + 0: 0 + 0.1: 0 + 0.5: _ZN9oceanbase6common10SpinRWLockD2Ev:0 + 2: 0 + 0.7: _ZN9oceanbase11transaction9tablelock14ObArenaObjPoolINS1_22ObMemCtxLockOpLinkNodeELl1EED2Ev:0 + 0.1: _ZN9oceanbase11transaction9tablelock22ObMemCtxLockOpLinkNodeD2Ev:0 + 0: 0 + 0: _ZN9oceanbase11transaction9tablelock13ObTableLockOpD2Ev:0 + 0: _ZN9oceanbase11transaction9ObTransIDD2Ev:0 + 0: 0 + 4.4: _ZN9oceanbase7storage14ObTxTableGuardD2Ev:72 + 0: _ZN9oceanbase7storage14ObTxTableGuard5resetEv:72 + 2: 8 + 3: 0 + 4: 0 + 4.10: _ZN9oceanbase8memtable24ObMemtableCtxCbAllocatorD2Ev:456 + 1: 8 + 2: 8 + 3.1: 0 + 5: 8 + 6: 0 + 6.1: 8 _ZN9oceanbase6common15ObFIFOAllocatorD1Ev:8 + 4.11: _ZN9oceanbase8memtable16ObQueryAllocatorD2Ev:424 + 1: 8 + 2: 8 + 3.1: 0 + 5: 8 + 6: 0 + 6.1: 8 _ZN9oceanbase6common15ObFIFOAllocatorD1Ev:8 + 4.13: _ZN9oceanbase6common10SpinRWLockD2Ev:24 + 2: 3 _ZN9oceanbase6common7ObLatchD1Ev:4 + 4.14: _ZN9oceanbase8memtable10ObIMvccCtxD2Ev:120 + 0: 4 + 0: _ZN9oceanbase8memtable18ObTransCallbackMgrD2Ev:64 + 0: 4 + 0.1: 4 _ZN9oceanbase8memtable16ObTxCallbackListD1Ev:5 + 0: _ZN9oceanbase6common10SpinRWLockD2Ev:32 + 2: 4 _ZN9oceanbase6common7ObLatchD1Ev:4 + 4.16: _ZN9oceanbase7storage14ObTxTableGuardD2Ev:0 + 0: _ZN9oceanbase7storage14ObTxTableGuard5resetEv:0 + 2: 0 + 3: 0 + 4: 0 +_ZN9oceanbase3sql9ObExprAdd11add_int_intERKNS0_6ObExprERNS0_9ObEvalCtxERNS_6common7ObDatumE:1602:280 + 1: 267 + 2: 267 _ZN9oceanbase3sql19ObArithExprOperator19def_arith_eval_funcINS0_13ObArithOpWrapINS0_19ObIntIntBatchAddRawEEEJEEEiRKNS0_6ObExprERNS0_9ObEvalCtxERNS_6common7ObDatumEDpRT0_:273 +_ZNK9oceanbase8observer16ObInnerSQLResult7get_intElRl:1581:19 + 1: 19 + 3: 19 + 4: 19 _ZNK9oceanbase8observer16ObInnerSQLResult7get_objElRPKNS_6common5ObObjE:19 + 5.1: 0 + 6.1: 18 + 7: 0 + 8.1: 0 + 9.1: 18 + 10: 0 + 11.1: 0 + 13: 18 + 15: 18 + 9.1: _ZNK9oceanbase6common5ObObj14get_type_classEv:162 + 0: _ZNK9oceanbase6common9ObObjMeta14get_type_classEv:162 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:126 + 0: 18 + 0.1: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:36 + 2: 18 + 13: _ZNK9oceanbase6common5ObObj7get_intEv:72 + 0: 18 +_ZZN9oceanbase4palf16LogSlidingWindow21handle_committed_log_EvENK5$_136clEPKc.0e4bf25207570af14a78557c8489c4fc:1577:19 + 0: 19 + 0.1: 0 + 0.2: 19 + 0.3: 19 _ZN9oceanbase6common8ObLogger13need_to_printEmi:19 + 0.19: 0 + 0.21: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:323 + 2: 19 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS0_6ObAddrELb0EEC2EPKcS4_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKNS_4palf3LSNELb0EEC2EPKcS5_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVIRKNS_4palf3LSNELb0EEC2EPKcS5_:0 + 0: 0 + 0.12: _ZN9oceanbase6common7ObLogKVIRKNS_4palf3LSNELb0EEC2EPKcS5_:0 + 0: 0 + 0.14: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.15: _ZN9oceanbase6common20ObLogPrintPointerCntIPNS_4palf7LogTaskEEC2ES4_:0 + 0: 0 + 0.16: _ZN9oceanbase6common7ObLogKVINS0_20ObLogPrintPointerCntIPNS_4palf7LogTaskEEELb1EEC2EPKcOKS6_:0 + 0: 0 + 0.18: _ZN9oceanbase6common7ObLogKVIRKbLb0EEC2EPKcS3_:0 + 0: 0 + 0.20: _ZN9oceanbase6common7ObLogKVIbLb1EEC2EPKcOKb:0 + 0: 0 +_ZN9oceanbase4palf10LogStorage6writevERKNS0_3LSNERKNS0_11LogWriteBufEl:1575:3 + 1: 2 + 2: 2 + 6: 3 + 7: 0 + 8.1: 0 + 9.1: 3 + 9.2: 3 + 10: 0 + 11.1: 0 + 12.1: 3 + 13: 0 + 14.1: 0 + 17.2: 4 + 18: 4 + 18.1: 4 + 19: 0 + 20.1: 0 + 21.1: 4 + 21.2: 0 + 22.1: 0 + 25.1: 4 + 25.2: 0 + 26: 4 + 26.1: 0 + 27.1: 0 + 28.1: 12 + 28.3: 4 _ZN9oceanbase4palf11LogBlockMgr6writevEmmRKNS0_11LogWriteBufE:4 + 30.1: 0 + 32: 12 + 33: 12 _ZN9oceanbase4palf10LogStorage32update_log_tail_guarded_by_lock_El:12 + 34.1: 10 _ZZN9oceanbase4palf10LogStorage6writevERKNS0_3LSNERKNS0_11LogWriteBufElENK5$_494clEPKc.0e4bf25207570af14a78557c8489c4fc:10 + 37: 7 + 3: _ZNK9oceanbase4palf11LogWriteBuf14get_total_sizeEv:42 + 3.1: 2 + 3.3: 0 + 4: 2 + 3.1: _ZNK9oceanbase6common12ObIArrayWrapINS_4palf11LogWriteBuf11InnerStructEE5countEv:8 + 0: 2 + 4: _ZNK9oceanbase6common13ObSEArrayImplINS_4palf11LogWriteBuf11InnerStructELl2ENS0_19ModulePageAllocatorELb0EEixEl:8 + 2.1: 0 + 2.2: 0 + 3.1: 0 + 5: 2 + 9.1: _ZNK9oceanbase4palf11LogWriteBuf8is_validEv:9 + 2: 3 + 9.2: _ZNK9oceanbase4palf3LSN8is_validEv:21 + 2: 3 + 12.1: _ZNK9oceanbase4palf3LSN8is_validEv:33 + 2: 3 + 17.1: _ZNK9oceanbase4palf11LogWriteBuf14get_total_sizeEv:132 + 3.1: 4 + 3.3: 4 + 4: 4 + 3.1: _ZNK9oceanbase6common12ObIArrayWrapINS_4palf11LogWriteBuf11InnerStructEE5countEv:0 + 0: 0 + 4: _ZNK9oceanbase6common13ObSEArrayImplINS_4palf11LogWriteBuf11InnerStructELl2ENS0_19ModulePageAllocatorELb0EEixEl:64 + 2.1: 4 + 2.2: 4 + 3.1: 0 + 5: 4 + 17.5: _ZN9oceanbase4palfplERKNS0_3LSNEm:24 + 4: 4 + 3: _ZN9oceanbase4palf3LSNaSERKS1_:12 + 2: 4 + 18: _ZN9oceanbase4palf11lsn_2_blockERKNS0_3LSNEm:20 + 2: 4 + 18.2: _ZNK9oceanbase4palf3LSNgtERKS1_:12 + 2: _ZNK9oceanbase4palf3LSNltERKS1_:12 + 2: 4 + 21.1: _ZNK9oceanbase4palf10LogStorage18need_switch_block_Ev:32 + 4: 4 + 26.1: _ZN9oceanbase4palf10LogStorage20append_block_header_ERKNS0_3LSNEl:0 + 4: 0 + 3: _ZN9oceanbase4palf11lsn_2_blockERKNS0_3LSNEm:0 + 2: 0 + 28.1: _ZN9oceanbase4palf11lsn_2_blockERKNS0_3LSNEm:12 + 2: 4 + 28.2: _ZNK9oceanbase4palf10LogStorage15get_phy_offset_ERKNS0_3LSNE:64 + 2: 4 + 2: _ZN9oceanbase4palf12lsn_2_offsetERKNS0_3LSNEm:36 + 2: 4 +_ZN9oceanbase4palf11LogIOWorker25BatchLogIOFlushLogTaskMgr6handleElPNS0_11PalfEnvImplE:1571:12 + 1: 12 + 2: 12 + 7.1: 12 + 7.3: 4 + 8: 10 + 9: 10 + 10: 0 + 11.1: 0 + 14.1: 10 _ZN9oceanbase4palf22BatchLogIOFlushLogTask7do_taskEiPNS0_11PalfEnvImplE:10 + 15.1: 0 + 17.1: 3 _ZZN9oceanbase4palf11LogIOWorker25BatchLogIOFlushLogTaskMgr6handleElPNS0_11PalfEnvImplEENK5$_782clEPKc.1598dc2348996c1ae1caea6120522988:3 + 20: 4 + 22: 4 + 23: 4 + 23.3: 4 + 25: 4 + 28: 4 + 3: _ZNK9oceanbase6common12ObIArrayWrapIPNS_4palf22BatchLogIOFlushLogTaskEE5countEv:72 + 0: 12 + 8: _ZN9oceanbase6common16ObFixedArrayImplIPNS_4palf22BatchLogIOFlushLogTaskENS0_12ObIAllocatorEEixEl:40 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_4palf22BatchLogIOFlushLogTaskEE2atEl:40 + 6: 10 + 23: _ZNK9oceanbase4palf22BatchLogIOFlushLogTask9get_countEv:16 + 0: _ZNK9oceanbase6common12ObIArrayWrapIPNS_4palf17LogIOFlushLogTaskEE5countEv:16 + 0: 4 + 24: _ZN9oceanbase4palf22BatchLogIOFlushLogTask5reuseEv:184 + 6: 4 + 2: _ZN9oceanbase6common16ObFixedArrayImplIPNS_4palf17LogIOFlushLogTaskENS0_12ObIAllocatorEE5clearEv:32 + 0: 4 + 3: _ZN9oceanbase6common16ObFixedArrayImplIPNS_4palf11LogWriteBufENS0_12ObIAllocatorEE5clearEv:32 + 0: 4 + 4: _ZN9oceanbase6common16ObFixedArrayImplIlNS0_12ObIAllocatorEE5clearEv:32 + 0: 4 + 5: _ZN9oceanbase6common16ObFixedArrayImplINS_4palf3LSNENS0_12ObIAllocatorEE5clearEv:44 + 0: 4 +_ZN9oceanbase4palf9LogEngine21submit_flush_log_taskERKNS0_13FlushLogCbCtxERKNS0_11LogWriteBufE:1567:9 + 2: 9 + 3: 9 + 4: 9 + 5: 9 + 6: 0 + 7.1: 0 + 8.1: 10 + 8.2: 11 _ZNK9oceanbase4palf11LogWriteBuf8is_validEv:10 + 9: 0 + 10.1: 0 + 11.1: 11 _ZN9oceanbase4palf9LogEngine24generate_flush_log_task_ERKNS0_13FlushLogCbCtxERKNS0_11LogWriteBufERPNS0_17LogIOFlushLogTaskE:11 + 12.1: 0 + 13.1: 7 + 14.1: 0 + 16.1: 7 _ZZN9oceanbase4palf9LogEngine21submit_flush_log_taskERKNS0_13FlushLogCbCtxERKNS0_11LogWriteBufEENK5$_454clEPKc.1598dc2348996c1ae1caea6120522988:9 + 18: 11 + 8.1: _ZNK9oceanbase4palf13FlushLogCbCtx8is_validEv:175 + 0: 10 _ZNK9oceanbase4palf3LSN8is_validEv:10 + 0.1: _ZN9oceanbase4palf15is_valid_log_tsEl:50 + 2: 10 + 13.1: _ZN9oceanbase4palf11LogIOWorker14submit_io_taskEPNS0_9LogIOTaskE:179 + 2: 3 + 3: 3 + 5.1: 3 + 7.1: 7 _ZN9oceanbase6common13ObLightyQueue4pushEPv:3 + 8.1: 0 + 11: 0 +_ZN9oceanbase6common8TCRWLock21RLockGuardWithTimeoutD2Ev:1565:8 + 1: 8 + 2: 8 + 3: 8 + 3.1: 0 + 5: 9 + 3: _ZN9oceanbase6common8TCRWLock8rdunlockEv:1292 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:32 + 0: 8 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPi:1132 + 2: 8 + 4.1: 8 + 4.2: 8 + 6: 16 + 6.1: 9 + 10: 9 + 2: _ZN9oceanbase6common8get_itidEv:224 + 4: 8 + 5: 0 + 6: 0 + 8: 0 + 11: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:72 + 2: 9 + 2.1: 0 + 3: 0 +_ZN9oceanbase4palf16LogSlidingWindow32inc_update_max_flushed_log_info_ERKNS0_3LSNES4_RKl:1553:7 + 3: 6 + 6: 6 _ZNK9oceanbase4palf16LogSlidingWindow23get_max_flushed_end_lsnERNS0_3LSNE:6 + 7.1: 6 + 7.3: 6 + 9.1: 0 + 10.2: 6 + 13: 6 + 15.1: 8 + 16.1: 0 + 20: 8 + 21: 8 + 22.1: 8 _ZZN9oceanbase4palf16LogSlidingWindow32inc_update_max_flushed_log_info_ERKNS0_3LSNES4_RKlENK5$_194clEPKc.0e4bf25207570af14a78557c8489c4fc:8 + 25: 8 _ZN9oceanbase6common8TCRWLock10WLockGuardD2Ev:9 + 25.1: 0 + 27.6: 8 + 5: _ZN9oceanbase4palf3LSNC2Ev:42 + 2: _ZN9oceanbase4palf3LSN5resetEv:42 + 2: 6 + 7: _ZNK9oceanbase4palf3LSN8is_validEv:30 + 2: 6 + 7.2: _ZNK9oceanbase4palf3LSN8is_validEv:48 + 2: 6 + 10.1: _ZNK9oceanbase4palf3LSN8is_validEv:66 + 2: 6 + 13: _ZN9oceanbase6common8TCRWLock10WLockGuardC2ERS1_:90 + 0: 6 _ZN9oceanbase6common8TCRWLock6wrlockEl:6 + 15: _ZNK9oceanbase4palf3LSN8is_validEv:88 + 2: 8 + 19: _ZN9oceanbase4palf3LSNaSERKS1_:88 + 2: 8 +_ZZN9oceanbase10logservice23ObApplyServiceQueueTask22is_snapshot_apply_doneERbENK3$_5clEPKc.d3a41d52a3cfae37a6a74713ee8e7132:1533:27 + 0: 27 + 0.1: 0 + 0.2: 24 + 0.3: 27 _ZN9oceanbase6common8ObLogger13need_to_printEmi:27 + 0.7: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:459 + 2: 27 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase4palf11PalfEnvImpl22try_freeze_log_for_allEv:1529:29 + 1: 23 + 2: 23 + 4: 23 + 5: 0 + 6.1: 0 + 7.1: 23 + 7.2: 28 + 8.1: 0 + 10: 28 + 11.3: 28 + 7.1: _ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE8for_eachINS2_11PalfEnvImpl16FreezeLogFunctorEEEiRT_:276 + 3: 23 _ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE3mapINS7_8HandleOnINS2_11PalfEnvImpl16FreezeLogFunctorEEEEEiRT_:26 + 2: _ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE8HandleOnINS2_11PalfEnvImpl16FreezeLogFunctorEEC2ERS7_RSA_:253 + 0: 23 +_ZN9oceanbase3sql18ObBasicSessionInfoC2Ev:1527:2 + 0: 2 _ZN9oceanbase3sql18ObBasicSessionInfo13SysVarIncInfoC1Ev:2 + 0.2: 0 + 3: 2 + 5: 2 + 6: 2 + 8: 2 + 9: 2 + 15: 2 + 17: 2 + 18: 2 + 19: 2 _ZN9oceanbase11transaction14ObTxExecResultC1Ev:2 + 20: 1 + 21: 1 + 22: 0 + 23: 0 + 25: 0 + 26: 0 + 36: 0 + 39: 0 + 40: 0 + 42: 0 + 42.1: 0 + 43: 0 + 44: 1 + 46: 1 _ZN9oceanbase5share15ObSysVarFactoryC1Ev:1 + 47: 1 + 48: 1 + 50: 1 + 51: 1 + 52: 1 + 53: 1 + 57: 1 + 58: 1 + 63: 0 + 66: 0 + 67: 0 + 68: 0 + 71: 0 + 72: 0 + 74: 2 + 75: 1 + 79: 1 + 80: 1 + 81: 1 + 82: 1 + 83: 1 _ZN9oceanbase6common16ObClusterVersion12get_instanceEv:1 + 83.2: 1 + 84: 1 + 85: 1 + 87: 1 + 89: 2 + 90: 1 + 91: 2 + 92: 1 + 93: 1 + 94: 1 + 95: 1 + 96: 1 + 97: 1 + 97.37: 0 + 97.42: 0 + 97.43: 0 + 97.46: 0 + 97.47: 0 + 97.49: 0 + 97.50: 0 + 97.51: 0 + 97.53: 0 + 97.54: 0 + 97.57: 0 + 97.58: 0 + 97.59: 0 + 97.60: 0 + 97.61: 0 + 97.62: 0 + 97.63: 0 + 97.64: 0 + 97.65: 0 + 97.68: 0 + 0.1: _ZN9oceanbase6common9ObSEArrayINS_3sql18ObBasicSessionInfo13TableStmtTypeELl2ENS0_19ModulePageAllocatorELb0EEC2Ev:0 + 0.1: 0 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_3sql18ObBasicSessionInfo13TableStmtTypeELl2ENS0_19ModulePageAllocatorELb0EEC2ElRKS5_:0 + 2: 0 + 5: 0 + 6: 0 + 8: 0 + 17.1: 0 + 2: _ZN9oceanbase6common8ObIArrayINS_3sql18ObBasicSessionInfo13TableStmtTypeEEC2EPS4_l:0 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_3sql18ObBasicSessionInfo13TableStmtTypeEEC2EPS4_l:0 + 0: 0 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:0 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:0 + 2: 0 + 8: 0 + 0.4: _ZN9oceanbase6common8ObStringC2Ev:16 + 1: 1 + 0.7: _ZN9oceanbase6common12ObCurTraceId7TraceIdC2Ev:0 + 0: 0 + 0.9: _ZN9oceanbase3sql18ObBasicSessionInfo15MultiThreadDataC2Ev:0 + 8: 0 + 10: 0 + 12: 0 + 13: 0 + 14: 0 + 16: 0 + 17: 0 + 21: 0 + 22: 0 + 23: 0 + 25: 0 + 1: _ZN9oceanbase6common8ObStringC2Ev:0 + 1: 0 + 5: _ZN9oceanbase6common6ObAddrC2Ev:0 + 1: 0 + 6: _ZN9oceanbase6common6ObAddrC2Ev:0 + 1: 0 + 7: _ZN9oceanbase6common6ObAddrC2Ev:0 + 1: 0 + 15: _ZN9oceanbase3rpc13ObSqlSockDescC2Ev:0 + 0: 0 + 0.10: _ZN9oceanbase6common8ObStringC2Ev:0 + 1: 0 + 0.11: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCacheC2Ev:0 + 0: 0 + 0.12: _ZN9oceanbase6common17ActiveSessionStatC2Ev:124 + 2: 2 + 12: 1 + 13: 1 + 1: _ZN9oceanbase6common16ObRecursiveMutexC2Ej:44 + 1: 2 _ZN9oceanbase6common7ObLatchC1Ev:2 + 2: _ZN9oceanbase6common16ObRecursiveMutexC2Ej:58 + 1: 2 _ZN9oceanbase6common7ObLatchC1Ev:2 + 11: _ZN9oceanbase6common8ObStringC2Ev:78 + 1: 2 + 21: _ZN9oceanbase11transaction11ObXATransIDC2Ev:27 + 0.2: 1 _ZN9oceanbase11transaction11ObXATransID5resetEv:1 + 0: _ZN9oceanbase6common8ObStringC2Ev:8 + 1: 1 + 0.1: _ZN9oceanbase6common8ObStringC2Ev:8 + 1: 1 + 26.1: _ZN9oceanbase6common21ObSmallBlockAllocatorINS0_8ObMallocENS0_10ObNullLockEEC2EllRKS2_:4 + 3: 0 + 2: _ZN9oceanbase6common6ObPoolINS0_8ObMallocENS0_10ObNullLockEEC2EllRKS2_:4 + 2: 0 + 4: 0 + 5: 0 + 6: 0 + 8: 1 + 11: 0 + 9: _ZN9oceanbase6common8ObMallocC2ERKS1_:0 + 0: 0 + 28.1: _ZN9oceanbase6common8ObMallocC2ERKNS_3lib7ObLabelE:0 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 7: 0 + 29.1: _ZN9oceanbase6common21ObSmallBlockAllocatorINS0_8ObMallocENS0_10ObNullLockEEC2EllRKS2_:0 + 3: 0 + 2: _ZN9oceanbase6common6ObPoolINS0_8ObMallocENS0_10ObNullLockEEC2EllRKS2_:0 + 2: 0 + 4: 0 + 5: 0 + 6: 0 + 8: 0 + 11: 0 + 9: _ZN9oceanbase6common8ObMallocC2ERKS1_:0 + 0: 0 + 31.1: _ZN9oceanbase6common8ObMallocC2ERKNS_3lib7ObLabelE:0 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 7: 0 + 32.1: _ZN9oceanbase6common21ObSmallBlockAllocatorINS0_8ObMallocENS0_10ObNullLockEEC2EllRKS2_:0 + 3: 0 + 2: _ZN9oceanbase6common6ObPoolINS0_8ObMallocENS0_10ObNullLockEEC2EllRKS2_:0 + 2: 0 + 4: 0 + 5: 0 + 6: 0 + 8: 0 + 11: 0 + 9: _ZN9oceanbase6common8ObMallocC2ERKS1_:0 + 0: 0 + 33.1: _ZN9oceanbase6common8ObMallocC2ERKNS_3lib7ObLabelE:0 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 7: 0 + 34.1: _ZN9oceanbase6common21ObSmallBlockAllocatorINS0_8ObMallocENS0_10ObNullLockEEC2EllRKS2_:0 + 3: 0 + 2: _ZN9oceanbase6common6ObPoolINS0_8ObMallocENS0_10ObNullLockEEC2EllRKS2_:0 + 2: 0 + 4: 0 + 5: 0 + 6: 0 + 8: 0 + 11: 0 + 9: _ZN9oceanbase6common8ObMallocC2ERKS1_:0 + 0: 0 + 35.1: _ZN9oceanbase6common8ObMallocC2ERKNS_3lib7ObLabelE:0 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 7: 0 + 36.1: _ZN9oceanbase6common12ObStringBufTINS0_19ModulePageAllocatorENS0_9PageArenaIcS2_EEEC2ERKNS_3lib7ObLabelEl:0 + 4: 0 + 2.3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 37: _ZN9oceanbase3sql18ObBasicSessionInfo10TransFlagsC2Ev:0 + 0: 0 + 38: _ZN9oceanbase3sql18ObBasicSessionInfo13SqlScopeFlagsC2Ev:0 + 0: 0 + 39.1: _ZN9oceanbase6common12ObStringBufTINS0_19ModulePageAllocatorENS0_9PageArenaIcS2_EEEC2ERKNS_3lib7ObLabelEl:0 + 4: 0 + 2.3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 40.1: _ZN9oceanbase6common12ObStringBufTINS0_19ModulePageAllocatorENS0_9PageArenaIcS2_EEEC2ERKNS_3lib7ObLabelEl:0 + 4: 0 + 2.3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 41: _ZN9oceanbase6common18ObWrapperAllocatorC2EPNS0_12ObIAllocatorE:0 + 0: 0 + 42: _ZN9oceanbase6common18ObWrapperAllocatorC2EPNS0_12ObIAllocatorE:0 + 0: 0 + 43: _ZN9oceanbase6common9ObSEArrayIlLl32ENS0_19ModulePageAllocatorELb0EEC2Ev:139 + 0.1: 1 + 0.5: _ZN9oceanbase6common13ObSEArrayImplIlLl32ENS0_19ModulePageAllocatorELb0EEC2ElRKS2_:121 + 5: 1 + 6: 1 + 8: 1 + 17.1: 1 + 2: _ZN9oceanbase6common8ObIArrayIlEC2EPll:14 + 0: _ZN9oceanbase6common12ObIArrayWrapIlEC2EPll:14 + 0: 1 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:42 + 0: 1 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:21 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:21 + 2: 1 + 8: 1 + 49: _ZN9oceanbase6common18ObTimeZoneInfoWrapC2Ev:106 + 1: 1 _ZN9oceanbase6common17ObTimeZoneInfoPosC2Ev:1 + 3: 1 + 5: 1 + 6: 1 + 7: 1 + 2: _ZN9oceanbase6common14ObTimeZoneInfoC2Ev:46 + 1: 1 + 2: 1 + 1: _ZN9oceanbase6common11ObTZMapWrapC2Ev:12 + 0: 1 + 54: _ZN9oceanbase7obmysql22ObMySQLCapabilityFlagsC2Ev:12 + 0: 1 + 57: _ZN9oceanbase6common9ObSEArrayINS_3sql18ObBasicSessionInfo10ChangedVarELl8ENS0_19ModulePageAllocatorELb0EEC2Ev:139 + 0.1: 1 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_3sql18ObBasicSessionInfo10ChangedVarELl8ENS0_19ModulePageAllocatorELb0EEC2ElRKS5_:121 + 5: 1 + 6: 1 + 8: 1 + 17.1: 1 + 2: _ZN9oceanbase6common8ObIArrayINS_3sql18ObBasicSessionInfo10ChangedVarEEC2EPS4_l:14 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_3sql18ObBasicSessionInfo10ChangedVarEEC2EPS4_l:14 + 0: 1 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:42 + 0: 1 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:21 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:21 + 2: 1 + 8: 1 + 59.1: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:0 + 4: 0 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 60.1: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:0 + 4: 0 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 62: _ZN9oceanbase5share17ObFeedbackManagerC2Ev:0 + 1: 0 + 2: 0 + 2.1: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:0 + 4: 0 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 64: _ZN9oceanbase6common18ObDSSessionActionsC2Ev:0 + 0: 0 + 1: 0 + 0: _ZN9oceanbase6common7ObDListINS0_14ObDSActionNodeEEC2Ev:0 + 2: 0 + 3: 0 + 4: 0 + 65463: _ZN9oceanbase6common11ObDLinkBaseINS0_14ObDSActionNodeEEC2Ev:0 + 2: 0 + 0.1: _ZN9oceanbase6common7ObDListINS0_14ObDSActionNodeEEC2Ev:0 + 2: 0 + 3: 0 + 4: 0 + 65463: _ZN9oceanbase6common11ObDLinkBaseINS0_14ObDSActionNodeEEC2Ev:0 + 2: 0 + 65: _ZN9oceanbase3sql18ObPartitionHitInfoC2Ev:0 + 0: 0 + 69: _ZN9oceanbase3sql16ObQueryRetryInfoC2Ev:0 + 1: 0 + 3: 0 + 4: 0 + 5: 0 + 7: 0 + 3: _ZN9oceanbase6common7ObArrayINS0_6ObAddrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_22NotImplementItemEncodeIS2_EEEC2Ev:0 + 0.1: 0 + 0.5: _ZN9oceanbase6common11ObArrayImplINS0_6ObAddrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_22NotImplementItemEncodeIS2_EEEC2ElRKS3_:0 + 7.1: 0 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 73: _ZN9oceanbase3sql16ObConfigInfoInPCC2Ev:0 + 1: 0 + 2: 0 + 4: 0 + 7: 0 + 83.1: _ZN9oceanbase6common16ObClusterVersion19get_cluster_versionEv:4 + 0: 1 + 85: _ZN9oceanbase6common9ObSEArrayINS_5share21ObLabelSeSessionLabelELl4ENS0_19ModulePageAllocatorELb0EEC2Ev:136 + 0.1: 1 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_5share21ObLabelSeSessionLabelELl4ENS0_19ModulePageAllocatorELb0EEC2ElRKS4_:118 + 5: 1 + 6: 1 + 8: 1 + 17.1: 1 + 2: _ZN9oceanbase6common8ObIArrayINS_5share21ObLabelSeSessionLabelEEC2EPS3_l:14 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_5share21ObLabelSeSessionLabelEEC2EPS3_l:14 + 0: 1 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:42 + 0: 1 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:21 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:21 + 2: 1 + 8: 1 + 91: _ZN9oceanbase6common15ObLogIdLevelMap11reset_levelEv:12 + 0: 2 _ZN9oceanbase6common15ObLogIdLevelMap9set_levelEa:2 + 97.40: _ZN9oceanbase3sql16ObQueryRetryInfoD2Ev:0 + 0: 0 + 97.44: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:0 + 0: 0 + 97.45: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:0 + 0: 0 + 97.48: _ZN9oceanbase6common18ObTimeZoneInfoWrapD2Ev:0 + 0: 0 + 0.1: 0 + 97.66: _ZN9oceanbase6common16ObRecursiveMutexD2Ev:0 + 2: 0 + 97.67: _ZN9oceanbase6common16ObRecursiveMutexD2Ev:0 + 2: 0 +_ZN9oceanbase3sql18ObBasicSessionInfoC1Ev:1527:2 + 0: 2 _ZN9oceanbase3sql18ObBasicSessionInfo13SysVarIncInfoC1Ev:2 + 0.2: 0 + 3: 2 + 5: 2 + 6: 2 + 8: 2 + 9: 2 + 15: 2 + 17: 2 + 18: 2 + 19: 2 _ZN9oceanbase11transaction14ObTxExecResultC1Ev:2 + 20: 1 + 21: 1 + 22: 0 + 23: 0 + 25: 0 + 26: 0 + 36: 0 + 39: 0 + 40: 0 + 42: 0 + 42.1: 0 + 43: 0 + 44: 1 + 46: 1 _ZN9oceanbase5share15ObSysVarFactoryC1Ev:1 + 47: 1 + 48: 1 + 50: 1 + 51: 1 + 52: 1 + 53: 1 + 57: 1 + 58: 1 + 63: 0 + 66: 0 + 67: 0 + 68: 0 + 71: 0 + 72: 0 + 74: 2 + 75: 1 + 79: 1 + 80: 1 + 81: 1 + 82: 1 + 83: 1 _ZN9oceanbase6common16ObClusterVersion12get_instanceEv:1 + 83.2: 1 + 84: 1 + 85: 1 + 87: 1 + 89: 2 + 90: 1 + 91: 2 + 92: 1 + 93: 1 + 94: 1 + 95: 1 + 96: 1 + 97: 1 + 97.37: 0 + 97.42: 0 + 97.43: 0 + 97.46: 0 + 97.47: 0 + 97.49: 0 + 97.50: 0 + 97.51: 0 + 97.53: 0 + 97.54: 0 + 97.57: 0 + 97.58: 0 + 97.59: 0 + 97.60: 0 + 97.61: 0 + 97.62: 0 + 97.63: 0 + 97.64: 0 + 97.65: 0 + 97.68: 0 + 0.1: _ZN9oceanbase6common9ObSEArrayINS_3sql18ObBasicSessionInfo13TableStmtTypeELl2ENS0_19ModulePageAllocatorELb0EEC2Ev:0 + 0.1: 0 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_3sql18ObBasicSessionInfo13TableStmtTypeELl2ENS0_19ModulePageAllocatorELb0EEC2ElRKS5_:0 + 2: 0 + 5: 0 + 6: 0 + 8: 0 + 17.1: 0 + 2: _ZN9oceanbase6common8ObIArrayINS_3sql18ObBasicSessionInfo13TableStmtTypeEEC2EPS4_l:0 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_3sql18ObBasicSessionInfo13TableStmtTypeEEC2EPS4_l:0 + 0: 0 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:0 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:0 + 2: 0 + 8: 0 + 0.4: _ZN9oceanbase6common8ObStringC2Ev:16 + 1: 1 + 0.7: _ZN9oceanbase6common12ObCurTraceId7TraceIdC2Ev:0 + 0: 0 + 0.9: _ZN9oceanbase3sql18ObBasicSessionInfo15MultiThreadDataC2Ev:0 + 8: 0 + 10: 0 + 12: 0 + 13: 0 + 14: 0 + 16: 0 + 17: 0 + 21: 0 + 22: 0 + 23: 0 + 25: 0 + 1: _ZN9oceanbase6common8ObStringC2Ev:0 + 1: 0 + 5: _ZN9oceanbase6common6ObAddrC2Ev:0 + 1: 0 + 6: _ZN9oceanbase6common6ObAddrC2Ev:0 + 1: 0 + 7: _ZN9oceanbase6common6ObAddrC2Ev:0 + 1: 0 + 15: _ZN9oceanbase3rpc13ObSqlSockDescC2Ev:0 + 0: 0 + 0.10: _ZN9oceanbase6common8ObStringC2Ev:0 + 1: 0 + 0.11: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCacheC2Ev:0 + 0: 0 + 0.12: _ZN9oceanbase6common17ActiveSessionStatC2Ev:124 + 2: 2 + 12: 1 + 13: 1 + 1: _ZN9oceanbase6common16ObRecursiveMutexC2Ej:44 + 1: 2 _ZN9oceanbase6common7ObLatchC1Ev:2 + 2: _ZN9oceanbase6common16ObRecursiveMutexC2Ej:58 + 1: 2 _ZN9oceanbase6common7ObLatchC1Ev:2 + 11: _ZN9oceanbase6common8ObStringC2Ev:78 + 1: 2 + 21: _ZN9oceanbase11transaction11ObXATransIDC2Ev:27 + 0.2: 1 _ZN9oceanbase11transaction11ObXATransID5resetEv:1 + 0: _ZN9oceanbase6common8ObStringC2Ev:8 + 1: 1 + 0.1: _ZN9oceanbase6common8ObStringC2Ev:8 + 1: 1 + 26.1: _ZN9oceanbase6common21ObSmallBlockAllocatorINS0_8ObMallocENS0_10ObNullLockEEC2EllRKS2_:4 + 3: 0 + 2: _ZN9oceanbase6common6ObPoolINS0_8ObMallocENS0_10ObNullLockEEC2EllRKS2_:4 + 2: 0 + 4: 0 + 5: 0 + 6: 0 + 8: 1 + 11: 0 + 9: _ZN9oceanbase6common8ObMallocC2ERKS1_:0 + 0: 0 + 28.1: _ZN9oceanbase6common8ObMallocC2ERKNS_3lib7ObLabelE:0 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 7: 0 + 29.1: _ZN9oceanbase6common21ObSmallBlockAllocatorINS0_8ObMallocENS0_10ObNullLockEEC2EllRKS2_:0 + 3: 0 + 2: _ZN9oceanbase6common6ObPoolINS0_8ObMallocENS0_10ObNullLockEEC2EllRKS2_:0 + 2: 0 + 4: 0 + 5: 0 + 6: 0 + 8: 0 + 11: 0 + 9: _ZN9oceanbase6common8ObMallocC2ERKS1_:0 + 0: 0 + 31.1: _ZN9oceanbase6common8ObMallocC2ERKNS_3lib7ObLabelE:0 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 7: 0 + 32.1: _ZN9oceanbase6common21ObSmallBlockAllocatorINS0_8ObMallocENS0_10ObNullLockEEC2EllRKS2_:0 + 3: 0 + 2: _ZN9oceanbase6common6ObPoolINS0_8ObMallocENS0_10ObNullLockEEC2EllRKS2_:0 + 2: 0 + 4: 0 + 5: 0 + 6: 0 + 8: 0 + 11: 0 + 9: _ZN9oceanbase6common8ObMallocC2ERKS1_:0 + 0: 0 + 33.1: _ZN9oceanbase6common8ObMallocC2ERKNS_3lib7ObLabelE:0 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 7: 0 + 34.1: _ZN9oceanbase6common21ObSmallBlockAllocatorINS0_8ObMallocENS0_10ObNullLockEEC2EllRKS2_:0 + 3: 0 + 2: _ZN9oceanbase6common6ObPoolINS0_8ObMallocENS0_10ObNullLockEEC2EllRKS2_:0 + 2: 0 + 4: 0 + 5: 0 + 6: 0 + 8: 0 + 11: 0 + 9: _ZN9oceanbase6common8ObMallocC2ERKS1_:0 + 0: 0 + 35.1: _ZN9oceanbase6common8ObMallocC2ERKNS_3lib7ObLabelE:0 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 7: 0 + 36.1: _ZN9oceanbase6common12ObStringBufTINS0_19ModulePageAllocatorENS0_9PageArenaIcS2_EEEC2ERKNS_3lib7ObLabelEl:0 + 4: 0 + 2.3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 37: _ZN9oceanbase3sql18ObBasicSessionInfo10TransFlagsC2Ev:0 + 0: 0 + 38: _ZN9oceanbase3sql18ObBasicSessionInfo13SqlScopeFlagsC2Ev:0 + 0: 0 + 39.1: _ZN9oceanbase6common12ObStringBufTINS0_19ModulePageAllocatorENS0_9PageArenaIcS2_EEEC2ERKNS_3lib7ObLabelEl:0 + 4: 0 + 2.3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 40.1: _ZN9oceanbase6common12ObStringBufTINS0_19ModulePageAllocatorENS0_9PageArenaIcS2_EEEC2ERKNS_3lib7ObLabelEl:0 + 4: 0 + 2.3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 41: _ZN9oceanbase6common18ObWrapperAllocatorC2EPNS0_12ObIAllocatorE:0 + 0: 0 + 42: _ZN9oceanbase6common18ObWrapperAllocatorC2EPNS0_12ObIAllocatorE:0 + 0: 0 + 43: _ZN9oceanbase6common9ObSEArrayIlLl32ENS0_19ModulePageAllocatorELb0EEC2Ev:139 + 0.1: 1 + 0.5: _ZN9oceanbase6common13ObSEArrayImplIlLl32ENS0_19ModulePageAllocatorELb0EEC2ElRKS2_:121 + 5: 1 + 6: 1 + 8: 1 + 17.1: 1 + 2: _ZN9oceanbase6common8ObIArrayIlEC2EPll:14 + 0: _ZN9oceanbase6common12ObIArrayWrapIlEC2EPll:14 + 0: 1 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:42 + 0: 1 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:21 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:21 + 2: 1 + 8: 1 + 49: _ZN9oceanbase6common18ObTimeZoneInfoWrapC2Ev:106 + 1: 1 _ZN9oceanbase6common17ObTimeZoneInfoPosC2Ev:1 + 3: 1 + 5: 1 + 6: 1 + 7: 1 + 2: _ZN9oceanbase6common14ObTimeZoneInfoC2Ev:46 + 1: 1 + 2: 1 + 1: _ZN9oceanbase6common11ObTZMapWrapC2Ev:12 + 0: 1 + 54: _ZN9oceanbase7obmysql22ObMySQLCapabilityFlagsC2Ev:12 + 0: 1 + 57: _ZN9oceanbase6common9ObSEArrayINS_3sql18ObBasicSessionInfo10ChangedVarELl8ENS0_19ModulePageAllocatorELb0EEC2Ev:139 + 0.1: 1 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_3sql18ObBasicSessionInfo10ChangedVarELl8ENS0_19ModulePageAllocatorELb0EEC2ElRKS5_:121 + 5: 1 + 6: 1 + 8: 1 + 17.1: 1 + 2: _ZN9oceanbase6common8ObIArrayINS_3sql18ObBasicSessionInfo10ChangedVarEEC2EPS4_l:14 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_3sql18ObBasicSessionInfo10ChangedVarEEC2EPS4_l:14 + 0: 1 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:42 + 0: 1 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:21 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:21 + 2: 1 + 8: 1 + 59.1: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:0 + 4: 0 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 60.1: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:0 + 4: 0 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 62: _ZN9oceanbase5share17ObFeedbackManagerC2Ev:0 + 1: 0 + 2: 0 + 2.1: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:0 + 4: 0 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 64: _ZN9oceanbase6common18ObDSSessionActionsC2Ev:0 + 0: 0 + 1: 0 + 0: _ZN9oceanbase6common7ObDListINS0_14ObDSActionNodeEEC2Ev:0 + 2: 0 + 3: 0 + 4: 0 + 65463: _ZN9oceanbase6common11ObDLinkBaseINS0_14ObDSActionNodeEEC2Ev:0 + 2: 0 + 0.1: _ZN9oceanbase6common7ObDListINS0_14ObDSActionNodeEEC2Ev:0 + 2: 0 + 3: 0 + 4: 0 + 65463: _ZN9oceanbase6common11ObDLinkBaseINS0_14ObDSActionNodeEEC2Ev:0 + 2: 0 + 65: _ZN9oceanbase3sql18ObPartitionHitInfoC2Ev:0 + 0: 0 + 69: _ZN9oceanbase3sql16ObQueryRetryInfoC2Ev:0 + 1: 0 + 3: 0 + 4: 0 + 5: 0 + 7: 0 + 3: _ZN9oceanbase6common7ObArrayINS0_6ObAddrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_22NotImplementItemEncodeIS2_EEEC2Ev:0 + 0.1: 0 + 0.5: _ZN9oceanbase6common11ObArrayImplINS0_6ObAddrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_22NotImplementItemEncodeIS2_EEEC2ElRKS3_:0 + 7.1: 0 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 73: _ZN9oceanbase3sql16ObConfigInfoInPCC2Ev:0 + 1: 0 + 2: 0 + 4: 0 + 7: 0 + 83.1: _ZN9oceanbase6common16ObClusterVersion19get_cluster_versionEv:4 + 0: 1 + 85: _ZN9oceanbase6common9ObSEArrayINS_5share21ObLabelSeSessionLabelELl4ENS0_19ModulePageAllocatorELb0EEC2Ev:136 + 0.1: 1 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_5share21ObLabelSeSessionLabelELl4ENS0_19ModulePageAllocatorELb0EEC2ElRKS4_:118 + 5: 1 + 6: 1 + 8: 1 + 17.1: 1 + 2: _ZN9oceanbase6common8ObIArrayINS_5share21ObLabelSeSessionLabelEEC2EPS3_l:14 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_5share21ObLabelSeSessionLabelEEC2EPS3_l:14 + 0: 1 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:42 + 0: 1 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:21 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:21 + 2: 1 + 8: 1 + 91: _ZN9oceanbase6common15ObLogIdLevelMap11reset_levelEv:12 + 0: 2 _ZN9oceanbase6common15ObLogIdLevelMap9set_levelEa:2 + 97.40: _ZN9oceanbase3sql16ObQueryRetryInfoD2Ev:0 + 0: 0 + 97.44: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:0 + 0: 0 + 97.45: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:0 + 0: 0 + 97.48: _ZN9oceanbase6common18ObTimeZoneInfoWrapD2Ev:0 + 0: 0 + 0.1: 0 + 97.66: _ZN9oceanbase6common16ObRecursiveMutexD2Ev:0 + 2: 0 + 97.67: _ZN9oceanbase6common16ObRecursiveMutexD2Ev:0 + 2: 0 +_ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImNS_5share15ObSequenceValueEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS6_EELi65ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv:1515:2 + 1: 1 + 3: 1 + 3.1: 1 + 6.1: 78 + 6.3: 78 + 8: 78 + 9.1: 0 + 11: 0 + 12: 0 + 15: 0 + 19: 3 + 22: 3 + 24: 4 + 26: 4 + 3: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImNS_5share15ObSequenceValueEEENS1_5NLockENS1_5NCondEEEEEbRKT_:17 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImNS_5share15ObSequenceValueEEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:17 + 2: 1 + 65226: 1 + 10: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_11HashMapPairImNS_5share15ObSequenceValueEEEE16check_magic_codeEv:0 + 0: 0 + 10.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 22: _ZN9oceanbase6common4hash7destroyIPNS1_17ObHashTableBucketINS1_11HashMapPairImNS_5share15ObSequenceValueEEENS1_5NLockENS1_5NCondEEENS0_8ObMallocEEEvRT_RT0_:59 + 2: _ZN9oceanbase6common4hash10do_destroyIPNS1_17ObHashTableBucketINS1_11HashMapPairImNS_5share15ObSequenceValueEEENS1_5NLockENS1_5NCondEEENS0_8ObMallocEEEvRT_NS1_16NormalPointerTagERT0_:59 + 2: 3 + 3: 3 _ZN9oceanbase6common8ObMalloc4freeEPv:3 + 4: 4 +_ZN9oceanbase6common4hash9ObHashMapINS0_8ObStringElNS1_19NoPthreadDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_lEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE6createElRKNS_3lib7ObLabelESN_mm:1500:5 + 3: 5 + 4: 5 + 5: 5 + 6: 4 + 6.1: 4 _ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_lEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE6createElPSH_PSK_:4 + 4.1: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS0_8ObStringElEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEE8set_attrERKNS_3lib9ObMemAttrE:95 + 0: _ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocator8set_attrERKNS_3lib9ObMemAttrE:95 + 0: 5 + 5.1: _ZN9oceanbase6common8ObMalloc8set_attrERKNS_3lib9ObMemAttrE:95 + 0: 5 + 6: _ZN9oceanbase6common4hash14cal_next_primeEl:1193 + 3: 5 + 7: 4 + 7.3: 4 + 6: _ZSt11lower_boundIPKllET_S2_S2_RKT0_:862 + 9: _ZSt13__lower_boundIPKllN9__gnu_cxx5__ops14_Iter_less_valEET_S5_S5_RKT0_T1_:862 + 8.1: 22 + 10: 22 + 13: 22 + 13: _ZNK9__gnu_cxx5__ops14_Iter_less_valclIPKlS3_EEbT_RT0_:88 + 1: 22 +_ZN9oceanbase3lib11ObLockGuardINS0_7ObMutexEEC2ERS2_:1498:30 + 1: 27 + 2: 27 + 3: 27 + 4: 26 + 5.1: 0 + 7: 26 + 4: _ZN9oceanbase3lib7ObMutex4lockEv:540 + 0: 27 _ZN9oceanbase6common12ObLatchMutex4lockEjl:27 +_ZN9oceanbase10logservice8AppendCb22set_cb_first_handle_tsEl:1498:124 + 1: 124 + 2: 124 + 3: 0 + 5: 129 +easy_vsnprintf:1494:1 + 1: 1 + 11: 1 + 13.1: 9 + 13.3: 9 + 15: 11 + 17: 6 + 18: 6 + 27.1: 6 + 28: 0 + 31: 6 + 34: 6 + 36: 0 + 38: 0 + 41.1: 0 + 42: 0 + 49: 0 + 49.1: 0 + 49.2: 0 + 49.3: 0 + 50: 0 + 54: 0 + 59: 0 + 71: 6 + 73: 0 + 73.1: 0 + 73.2: 0 + 75: 0 + 81: 0 + 81.1: 0 + 81.3: 0 + 81.4: 0 + 82: 0 + 85: 0 + 85.1: 0 + 86: 0 + 87: 0 + 89.1: 0 + 90: 0 + 93.1: 0 + 93.2: 0 + 112: 0 + 113: 0 + 113.1: 0 + 113.2: 0 + 113.3: 0 + 115: 0 + 115.1: 0 + 115.2: 0 + 115.3: 0 + 121: 6 + 122: 6 + 122.1: 2 + 122.2: 4 + 122.3: 6 + 124: 0 + 124.1: 0 + 124.2: 0 + 124.3: 0 + 130: 0 + 130.1: 0 + 130.2: 0 + 130.3: 0 + 132: 0 + 139: 0 + 141: 0 + 142: 0 + 144: 0 + 146: 0 + 147: 0 + 150: 0 + 154.1: 0 + 155: 0 + 158: 0 + 160: 0 + 170: 0 + 170.1: 0 + 170.2: 0 + 170.3: 0 + 176: 0 + 177: 0 + 184: 0 + 184.1: 0 + 184.2: 0 + 184.3: 0 + 185: 0 + 191: 0 + 197: 0 + 202: 6 + 212: 6 easy_sprintf_num.d385e87c688932a1c661f7dac1e442c1:6 + 218: 5 + 222: 0 + 224: 0 + 98: easy_fill_space:0 + 2: 0 + 2.1: 0 + 5: 0 + 7: 0 + 7.1: 0 + 8: 0 + 163: easy_fill_space:0 + 2: 0 + 2.1: 0 + 5: 0 + 7.1: 0 + 8: 0 + 213: easy_fill_space:20 + 2: 4 + 2.1: 0 + 5: 0 + 7.1: 0 + 8: 0 +_ZN9oceanbase6common4hash11ObHashTableINS0_6ObAddrENS1_12ObReferedMapIS3_NS_10rootserver16DRServerStatInfoEE4ItemENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS8_6GetKeyENS1_13SimpleAllocerINS1_15ObHashTableNodeIS8_EELi76ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv:1488:0 + 1: 0 + 3: 0 + 3.1: 0 + 6.1: 93 + 6.3: 93 + 8: 93 + 9.1: 0 + 11: 0 + 12: 0 + 15: 0 + 19: 0 + 22: 0 + 24: 0 + 26: 0 + 3: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_12ObReferedMapINS0_6ObAddrENS_10rootserver16DRServerStatInfoEE4ItemENS1_5NLockENS1_5NCondEEEEEbRKT_:0 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_12ObReferedMapINS0_6ObAddrENS_10rootserver16DRServerStatInfoEE4ItemENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:0 + 2: 0 + 65226: 0 + 10: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_12ObReferedMapINS0_6ObAddrENS_10rootserver16DRServerStatInfoEE4ItemEE16check_magic_codeEv:0 + 0: 0 + 10.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 22: _ZN9oceanbase6common4hash7destroyIPNS1_17ObHashTableBucketINS1_12ObReferedMapINS0_6ObAddrENS_10rootserver16DRServerStatInfoEE4ItemENS1_5NLockENS1_5NCondEEENS0_8ObMallocEEEvRT_RT0_:0 + 2: _ZN9oceanbase6common4hash10do_destroyIPNS1_17ObHashTableBucketINS1_12ObReferedMapINS0_6ObAddrENS_10rootserver16DRServerStatInfoEE4ItemENS1_5NLockENS1_5NCondEEENS0_8ObMallocEEEvRT_NS1_16NormalPointerTagERT0_:0 + 2: 0 + 3: 0 + 4: 0 +_ZN9oceanbase7storage16ObTabletDDLKvMgr26check_has_effective_ddl_kvERb:1462:12 + 1: 12 + 2: 12 + 3: 12 _ZN9oceanbase6common12TCRLockGuardC2ERKNS0_8TCRWLockE:12 + 4: 10 + 5: 0 + 6.1: 0 + 8.1: 10 + 10: 0 + 11.2: 10 + 11.3: 0 + 8: _ZNK9oceanbase7storage16ObTabletDDLKvMgr9get_countEv:70 + 2: 10 + 11.2: _ZN9oceanbase6common12TCRLockGuardD2Ev:610 + 2: 10 + 3: 10 + 3.1: 10 + 3.2: 0 + 3: _ZN9oceanbase6common8TCRWLock8rdunlockEl:400 + 3: 10 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:40 + 0: 10 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPil:220 + 2: 10 + 2.1: 10 + 3: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:70 + 2: 10 + 2.1: 0 + 3: 0 +_ZN9oceanbase3sql18ObEndTransResolverD2Ev:1458:246 + 1: 243 + 2: 243 +_ZN9oceanbase3sql18ObEndTransResolverD1Ev:1458:246 + 1: 243 + 2: 243 +_ZNK9oceanbase11transaction7ObTxMsg10serialize_EPclRl:1452:0 + 0: 1 + 0.1: 2 + 0.3: 0 + 0.9: 0 + 0.10: 2 + 0.12: 0 + 0.18: 0 + 0.19: 2 + 0.21: 0 + 0.27: 0 + 0.28: 2 + 0.30: 0 + 0.36: 0 + 0.37: 1 + 0.39: 0 + 0.45: 0 + 0.46: 1 + 0.48: 0 + 0.54: 0 + 0.55: 1 + 0.57: 0 + 0.63: 0 + 0.64: 1 + 0.66: 0 + 0.72: 0 + 0.73: 0 + 0.75: 0 + 0.81: 0 + 0.82: 0 + 0.84: 0 + 0.90: 0 + 0.91: 0 + 0.93: 0 + 0.99: 0 + 0.100: 0 + 0.107: 0 + 0.108: 0 + 0.115: 0 + 0.116: 0 + 0.123: 0 + 0.124: 0 + 0.131: 0 + 0.132: 0 + 0.139: 0 + 0.140: 0 + 0.147: 0 + 0.148: 0 + 0.155: 0 + 0.156: 0 + 0.163: 0 + 0.164: 0 + 0.171: 0 + 0.172: 0 + 0.179: 0 + 0.180: 0 + 0.187: 0 + 0.1: _ZN9oceanbase6common13serialization6encodeEPclRls:85 + 2: _ZN9oceanbase6common13serialization11encode_vi32EPclRli:85 + 3: 2 + 4: 1 + 5: 1 + 6.1: 1 + 7: 0 + 8: 0 + 11: 2 + 4: _ZN9oceanbase6common13serialization19encoded_length_vi32Ei:15 + 4: 1 + 6.1: 0 + 8.1: 0 + 0.3: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRA6_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 0.10: _ZN9oceanbase6common13serialization6encodeEPclRll:514 + 2: _ZN9oceanbase6common13serialization11encode_vi64EPclRll:514 + 3: 2 + 4: 2 + 5: 2 + 6.1: 8 + 7: 8 + 8: 8 + 11: 8 + 4: _ZN9oceanbase6common13serialization19encoded_length_vi64El:128 + 4: 2 + 6.1: 2 + 8.1: 2 + 10.1: 2 + 12.1: 2 + 14.1: 0 + 16.1: 0 + 18.1: 0 + 0.12: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 0.13: _ZN9oceanbase6common7ObLogKVIRA17_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 0.19: _ZN9oceanbase6common13serialization6encodeEPclRlm:252 + 2: _ZN9oceanbase6common13serialization11encode_vi64EPclRll:252 + 3: 2 + 4: 2 + 5: 2 + 6.1: 2 + 7: 2 + 8: 2 + 11: 2 + 4: _ZN9oceanbase6common13serialization19encoded_length_vi64El:44 + 4: 2 + 6.1: 2 + 8.1: 0 + 10.1: 0 + 12.1: 0 + 14.1: 0 + 16.1: 0 + 18.1: 0 + 0.21: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 0.22: _ZN9oceanbase6common7ObLogKVIRA11_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 0.28: _ZN9oceanbase6common13serialization6encodeINS_11transaction9ObTransIDEEEiPclRlRKT_:14 + 2: _ZN9oceanbase6common13serialization11EnumEncoderILb0ENS_11transaction9ObTransIDEE6encodeEPclRlRKS4_:14 + 2: 2 _ZNK9oceanbase11transaction9ObTransID9serializeEPclRl:2 + 0.30: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 0.31: _ZN9oceanbase6common7ObLogKVIRA7_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 0.37: _ZN9oceanbase6common13serialization6encodeINS_5share6ObLSIDEEEiPclRlRKT_:7 + 2: _ZN9oceanbase6common13serialization11EnumEncoderILb0ENS_5share6ObLSIDEE6encodeEPclRlRKS4_:7 + 2: 1 _ZNK9oceanbase5share6ObLSID9serializeEPclRl:1 + 0.39: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 0.40: _ZN9oceanbase6common7ObLogKVIRA10_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 0.46: _ZN9oceanbase6common13serialization6encodeINS0_6ObAddrEEEiPclRlRKT_:7 + 2: _ZN9oceanbase6common13serialization11EnumEncoderILb0ENS0_6ObAddrEE6encodeEPclRlRKS3_:7 + 2: 1 _ZNK9oceanbase6common6ObAddr9serializeEPclRl:1 + 0.48: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 0.49: _ZN9oceanbase6common7ObLogKVIRA13_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 0.55: _ZN9oceanbase6common13serialization6encodeINS_5share6ObLSIDEEEiPclRlRKT_:7 + 2: _ZN9oceanbase6common13serialization11EnumEncoderILb0ENS_5share6ObLSIDEE6encodeEPclRlRKS4_:7 + 2: 1 _ZNK9oceanbase5share6ObLSID9serializeEPclRl:1 + 0.57: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 0.58: _ZN9oceanbase6common7ObLogKVIRA8_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 0.64: _ZN9oceanbase6common13serialization6encodeEPclRll:366 + 2: _ZN9oceanbase6common13serialization11encode_vi64EPclRll:366 + 3: 1 + 4: 1 + 5: 1 + 6.1: 6 + 7: 6 + 8: 6 + 11: 6 + 4: _ZN9oceanbase6common13serialization19encoded_length_vi64El:106 + 4: 1 + 6.1: 1 + 8.1: 1 + 10.1: 1 + 12.1: 1 + 14.1: 1 + 16.1: 1 + 18.1: 1 + 0.66: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 0.67: _ZN9oceanbase6common7ObLogKVIRA12_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 0.73: _ZN9oceanbase6common13serialization6encodeEPclRll:0 + 2: _ZN9oceanbase6common13serialization11encode_vi64EPclRll:0 + 3: 0 + 4: 0 + 5: 0 + 6.1: 0 + 7: 0 + 8: 0 + 11: 0 + 4: _ZN9oceanbase6common13serialization19encoded_length_vi64El:0 + 4: 0 + 6.1: 0 + 8.1: 0 + 10.1: 0 + 12.1: 0 + 14.1: 0 + 16.1: 0 + 18.1: 0 + 0.75: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 0.76: _ZN9oceanbase6common7ObLogKVIRA11_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 0.82: _ZN9oceanbase6common13serialization6encodeEPclRll:0 + 2: _ZN9oceanbase6common13serialization11encode_vi64EPclRll:0 + 3: 0 + 4: 0 + 5: 0 + 6.1: 0 + 7: 0 + 8: 0 + 11: 0 + 4: _ZN9oceanbase6common13serialization19encoded_length_vi64El:0 + 4: 0 + 6.1: 0 + 8.1: 0 + 10.1: 0 + 12.1: 0 + 14.1: 0 + 16.1: 0 + 18.1: 0 + 0.84: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 0.85: _ZN9oceanbase6common7ObLogKVIRA7_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 0.91: _ZN9oceanbase6common13serialization6encodeEPclRll:0 + 2: _ZN9oceanbase6common13serialization11encode_vi64EPclRll:0 + 3: 0 + 4: 0 + 5: 0 + 6.1: 0 + 7: 0 + 8: 0 + 11: 0 + 4: _ZN9oceanbase6common13serialization19encoded_length_vi64El:0 + 4: 0 + 6.1: 0 + 8.1: 0 + 10.1: 0 + 12.1: 0 + 14.1: 0 + 16.1: 0 + 18.1: 0 + 0.93: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 0.94: _ZN9oceanbase6common7ObLogKVIRA12_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 0.102: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.104: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.106: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.110: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.112: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.114: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.118: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.120: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.122: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.126: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.128: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.130: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.134: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.136: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.138: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.142: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.144: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.146: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.150: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.152: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.154: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.158: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.160: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.162: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.166: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.168: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.170: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.174: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.176: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.178: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.182: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.184: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.186: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 +_ZNK9oceanbase4palf11LogWriteBuf13get_write_bufElRPKcRl:1443:13 + 3: 13 + 5: 13 + 8: 13 + 9: 13 + 11: 13 + 8: _ZNK9oceanbase6common13ObSEArrayImplINS_4palf11LogWriteBuf11InnerStructELl2ENS0_19ModulePageAllocatorELb0EEixEl:247 + 2: 13 + 3.1: 0 + 5: 13 + 9: _ZNK9oceanbase6common13ObSEArrayImplINS_4palf11LogWriteBuf11InnerStructELl2ENS0_19ModulePageAllocatorELb0EEixEl:156 + 2: 13 + 2.1: 13 + 2.2: 13 + 3.1: 0 + 5: 13 +_ZN9oceanbase3sql18ObEndTransExecutor7executeERNS0_13ObExecContextERNS0_14ObEndTransStmtE:1434:267 + 1: 239 + 2: 239 _ZN9oceanbase3sql18ObEndTransExecutor9end_transERNS0_13ObExecContextERNS0_14ObEndTransStmtE:239 +_ZN9oceanbase12blocksstable11ObRowReaderD2Ev:1434:72 + 0: 68 _ZN9oceanbase12blocksstable11ObRowReader5resetEv:68 + 0.1: 71 + 0.2: 0 +_ZN9oceanbase6common13ObSEArrayImplINS_5share6schema19ObSchemaGetterGuard9SchemaObjELl2ENS0_19ModulePageAllocatorELb0EE7reserveEl:1431:5 + 1: 5 + 2: 5 + 3: 5 + 5: 5 + 6: 5 + 7: 5 + 7.3: 5 + 9: 2 + 10: 2 + 11: 4 + 12: 4 + 15: 4 + 16: 4 + 23: 0 + 24.1: 0 + 27: 4 + 8: _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema19ObSchemaGetterGuard9SchemaObjELl2ENS0_19ModulePageAllocatorELb0EE16internal_malloc_El:359 + 2: 5 + 7: 3 + 13: 5 + 13: _ZN9oceanbase6common19ModulePageAllocator5allocEl:250 + 2: 5 + 3: 5 _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:5 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:75 + 5: 5 + 7: 5 + 8: 5 + 10: _ZN9oceanbase6common9ObClassOpINS_5share6schema19ObSchemaGetterGuard9SchemaObjELb0EE12array_expandEPKS5_PS5_l:363 + 4: 2 + 4.1: 5 + 4.3: 5 + 18: 3 + 18.1: 9 + 5: _ZN9oceanbase6common16construct_assignINS_5share6schema19ObSchemaGetterGuard9SchemaObjEEEiRT_RKS6_:108 + 2: _ZN9oceanbase6common21construct_assign_wrapINS_5share6schema19ObSchemaGetterGuard9SchemaObjEEEiRT_RKS6_NS0_8BoolTypeILb0EEE:108 + 2: _ZN9oceanbase5share6schema19ObSchemaGetterGuard9SchemaObjC2ERKS3_:108 + 0: 4 _ZN9oceanbase6common15ObKVCacheHandleC1ERKS1_:4 + 19: _ZN9oceanbase5share6schema19ObSchemaGetterGuard9SchemaObjD2Ev:28 + 0: 7 _ZN9oceanbase6common15ObKVCacheHandleD1Ev:9 + 13: _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema19ObSchemaGetterGuard9SchemaObjELl2ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: 0 +_ZZN9oceanbase4palf16LogSlidingWindow20try_freeze_last_log_ElRKNS0_3LSNERbENK5$_166clEPKc.0e4bf25207570af14a78557c8489c4fc:1428:17 + 0: 17 + 0.1: 0 + 0.2: 17 + 0.3: 17 _ZN9oceanbase6common8ObLogger13need_to_printEmi:17 + 0.17: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:289 + 2: 17 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKNS0_6ObAddrELb0EEC2EPKcS4_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.11: _ZN9oceanbase6common20ObLogPrintPointerCntIPNS_4palf7LogTaskEEC2ES4_:0 + 0: 0 + 0.12: _ZN9oceanbase6common7ObLogKVINS0_20ObLogPrintPointerCntIPNS_4palf7LogTaskEEELb1EEC2EPKcOKS6_:0 + 0: 0 + 0.14: _ZN9oceanbase6common7ObLogKVIRKNS_4palf3LSNELb0EEC2EPKcS5_:0 + 0: 0 + 0.16: _ZN9oceanbase6common7ObLogKVIRKNS_4palf3LSNELb0EEC2EPKcS5_:0 + 0: 0 +_ZN9oceanbase6common7ObLatchC2Ev:1428:119 + 1: 119 + 2: 119 + 3: 119 +_ZN9oceanbase6common7ObLatchC1Ev:1428:119 + 1: 119 + 2: 119 + 3: 119 +_ZN9oceanbase4palf11LogBlockMgr6writevEmmRKNS0_11LogWriteBufE:1428:4 + 3: 3 + 4: 3 + 5: 3 + 6: 0 + 7.1: 3 _ZNK9oceanbase4palf11LogWriteBuf8is_validEv:3 + 7.2: 3 + 8: 0 + 9.1: 3 + 10: 0 + 11.1: 0 + 13.1: 12 + 14.1: 0 + 17.1: 12 _ZZN9oceanbase4palf11LogBlockMgr6writevEmmRKNS0_11LogWriteBufEENK5$_114clEPKc.1598dc2348996c1ae1caea6120522988:12 + 19: 12 + 13.1: _ZN9oceanbase4palf15LogBlockHandler6writevEmRKNS0_11LogWriteBufE:456 + 4: 10 _ZN9oceanbase4palf15LogBlockHandler18inner_writev_once_EmRKNS0_11LogWriteBufE:3 + 5.1: 0 + 7.1: 10 _ZZN9oceanbase4palf15LogBlockHandler6writevEmRKNS0_11LogWriteBufEENK4$_78clEPKc.1598dc2348996c1ae1caea6120522988:11 + 9: 12 +_ZN9oceanbase8memtable15RowHeaderGetter3getEv:1425:98 + 1: 95 + 20: 95 + 25: 95 +_ZN9oceanbase3sql9ObEvalCtxD2Ev:1422:241 + 0: 237 +_ZN9oceanbase4palf16LogSlidingWindow25set_last_submit_log_info_ERKNS0_3LSNES4_lRKl:1416:6 + 4: 6 + 5: 6 + 6: 6 + 6.1: 6 + 7.1: 6 + 8: 0 + 9.1: 0 + 11: 6 + 12: 6 + 15: 6 + 16: 6 + 17.1: 6 _ZZN9oceanbase4palf16LogSlidingWindow25set_last_submit_log_info_ERKNS0_3LSNES4_lRKlENK5$_185clEPKc.0e4bf25207570af14a78557c8489c4fc:6 + 19: 6 _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEED2Ev:6 + 19.1: 0 + 20: 7 + 6: _ZNK9oceanbase4palf3LSN8is_validEv:24 + 2: 6 + 11: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEEC2ERS3_:132 + 1: 6 + 4: 6 + 5.1: 0 + 4: _ZN9oceanbase6common10ObSpinLock4lockEv:42 + 2: 6 _ZN9oceanbase6common12ObLatchMutex4lockEjl:6 + 13: _ZN9oceanbase4palf3LSNaSERKS1_:60 + 2: 6 + 14: _ZN9oceanbase4palf3LSNaSERKS1_:66 + 2: 6 +_ZN9oceanbase4palf19LogGroupEntryHeader8generateEbbRKNS0_11LogWriteBufElllRKNS0_3LSNERKlRl:1408:5 + 9: 5 + 10: 5 + 12: 5 + 13.1: 5 _ZNK9oceanbase4palf3LSN8is_validEv:5 + 14: 5 + 15: 0 + 16.1: 0 + 19: 5 + 21: 5 + 22: 5 + 23: 5 + 24: 5 _ZN9oceanbase4palf3LSNaSERKS1_:6 + 25: 6 + 26: 6 + 27: 0 + 29: 6 + 30: 0 + 32: 9 _ZN9oceanbase4palf19LogGroupEntryHeader23calculate_log_checksum_EbRKNS0_11LogWriteBufElRl:6 + 33.1: 0 + 36.1: 9 _ZZN9oceanbase4palf19LogGroupEntryHeader8generateEbbRKNS0_11LogWriteBufElllRKNS0_3LSNERKlRlENK5$_635clEPKc.1598dc2348996c1ae1caea6120522988:9 + 38: 9 + 11: _ZN9oceanbase4palf15is_valid_log_tsEl:15 + 2: 5 +_ZN9oceanbase6common6number8ObNumber5from_ElRNS2_10IAllocatorE:1398:242 + 1: 233 + 2: 233 _ZN9oceanbase6common6number8ObNumber13from_integer_IlEEiT_RNS2_10IAllocatorE:237 +_ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE8HandleOnINS2_11PalfEnvImpl18SwitchStateFunctorEEclERS3_PS4_:1397:9 + 1: 9 + 3: 12 + 4: 11 + 2: _ZN9oceanbase4palf11PalfEnvImpl18SwitchStateFunctorclERKNS0_5LSKeyEPNS0_14PalfHandleImplE:366 + 2: 9 + 3: 9 + 4.1: 0 + 5.1: 12 _ZN9oceanbase4palf14PalfHandleImpl22check_and_switch_stateEv:9 + 6.1: 0 + 3: _ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE6revertEPS4_:672 + 3: 12 + 3: _ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE6revertEPNS0_12LinkHashNodeIS3_EE:576 + 6: 12 + 6.1: 12 + 6.2: 12 + 7.1: 0 + 10: 12 + 11: _ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE8dec_urefEPNS0_12LinkHashNodeIS3_EE:72 + 3: 12 + 3: _ZN9oceanbase6common9RefHandle3decEPNS0_7RefNodeE:60 + 0: 12 + 4: _ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE13on_uref_cleanEPNS0_12LinkHashNodeIS3_EE:0 + 3: 0 + 3: _ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE10free_valueEPS4_:0 + 2: _ZN9oceanbase4palf19PalfHandleImplAlloc10free_valueEPNS0_14PalfHandleImplE:0 + 2: _ZN9oceanbase4palf21PalfHandleImplFactory4freeEPNS0_14PalfHandleImplE:0 + 2: 0 + 2.1: 0 + 2.3: 0 + 2: _ZN9oceanbase3lib7ObLabelC2IPKcEERKT_:0 + 2: _ZN9oceanbase3lib7ObLabelaSIPKcvEERS1_T_:0 + 2: 0 + 4: _ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE8dec_hrefEPNS0_12LinkHashNodeIS3_EE:0 + 3: 0 + 3: _ZN9oceanbase6common7RefNode5xhrefEi:0 + 0: 0 + 4: _ZN9oceanbase4palf19PalfHandleImplAlloc9free_nodeEPNS_6common12LinkHashNodeINS0_5LSKeyEEE:0 + 2: 0 + 2.1: 0 + 2.3: 0 + 2: _ZN9oceanbase3lib7ObLabelC2IPKcEERKT_:0 + 2: _ZN9oceanbase3lib7ObLabelaSIPKcvEERS1_T_:0 + 2: 0 +_ZN9oceanbase11transaction21tx_isolation_from_strERKNS_6common8ObStringE:1392:3 + 1: 3 + 2: 3 + 2.1: 0 + 2.2: 0 + 11: 12 + 16: 3 + 4: _ZN9oceanbase6common8ObStringC2EPKc:0 + 1: 0 + 3: 0 + 5: _ZN9oceanbase6common8ObStringC2EPKc:0 + 1: 0 + 3: 0 + 6: _ZN9oceanbase6common8ObStringC2EPKc:0 + 1: 0 + 3: 0 + 7: _ZN9oceanbase6common8ObStringC2EPKc:0 + 1: 0 + 3: 0 + 11: _ZNK9oceanbase6common8ObString12case_compareERKS1_:1125 + 3: 12 + 7.1: 12 + 10: 12 + 10.1: 12 + 11: 12 + 10: _ZSt3minIiERKT_S2_S2_:276 + 5: 12 +_ZN9oceanbase5share6schema15ObSchemaMgrInfoC2ERKS2_:1388:13 + 0: 13 _ZN9oceanbase5share6schema17ObSchemaMgrHandleC1Ev:13 + 1: 13 + 3: 10 + 3.1: 0 + 0.1: _ZN9oceanbase5share6schema21ObRefreshSchemaStatusC2Ev:187 + 0: 11 + 2: 11 + 2: _ZN9oceanbase5share6schema15ObSchemaMgrInfoaSERKS2_:597 + 2: 11 + 3: 11 + 4: 11 + 5: 11 + 6: 11 _ZN9oceanbase5share6schema17ObSchemaMgrHandleaSERKS2_:11 + 7: 10 +_ZN9oceanbase5share6schema15ObSchemaMgrInfoC1ERKS2_:1388:13 + 0: 13 _ZN9oceanbase5share6schema17ObSchemaMgrHandleC1Ev:13 + 1: 13 + 3: 10 + 3.1: 0 + 0.1: _ZN9oceanbase5share6schema21ObRefreshSchemaStatusC2Ev:187 + 0: 11 + 2: 11 + 2: _ZN9oceanbase5share6schema15ObSchemaMgrInfoaSERKS2_:597 + 2: 11 + 3: 11 + 4: 11 + 5: 11 + 6: 11 _ZN9oceanbase5share6schema17ObSchemaMgrHandleaSERKS2_:11 + 7: 10 +_ZN9oceanbase4palf11LogWriteBuf9push_backEPKcl:1386:10 + 2: 10 + 3: 10 + 4: 10 + 5: 0 + 6.1: 0 + 10.1: 10 + 10.3: 10 + 11: 10 + 13: 0 + 19: 12 + 16: _ZN9oceanbase6common13ObSEArrayImplINS_4palf11LogWriteBuf11InnerStructELl2ENS0_19ModulePageAllocatorELb0EE9push_backERKS4_:310 + 5: 10 + 6: 0 + 12: 0 + 15: 0 + 15.1: 10 + 16: 10 + 15.1: _ZN9oceanbase6common9ObClassOpINS_4palf11LogWriteBuf11InnerStructELb1EE20construct_and_assignERKS4_RS4_:130 + 2: 10 +_ZN9oceanbase3lib2TGILNS0_6TGTypeE5EE9push_taskEPv:1386:80 + 1: 77 + 3: 77 + 6: 77 _ZN9oceanbase6common18ObSimpleThreadPool4pushEPv:79 + 8: 0 +_ZN9oceanbase4palf15LogBlockHandler17inner_write_once_EmPKcl:1384:3 + 3: 3 + 5: 3 + 6: 3 + 7: 3 + 9: 3 + 10: 3 _ZN9oceanbase4palf16LogDIOAlignedBuf9align_bufEPKclRPcRlRm:4 + 12.1: 0 + 14.1: 9 _ZN9oceanbase4palf15LogBlockHandler17inner_write_impl_EiPKcll:1 + 15.1: 0 + 19: 6 + 20: 6 + 21: 6 + 24.1: 0 + 27: 0 + 30: 8 + 18: _ZN9oceanbase4palf16LogDIOAlignedBuf12truncate_bufEv:550 + 2: 9 + 7: 7 _ZN9oceanbase6common11lower_alignEll:7 + 8: 5 + 9: 5 + 10: 5 + 13: 6 + 14: 6 + 15.1: 6 _ZZN9oceanbase4palf16LogDIOAlignedBuf12truncate_bufEvENK4$_59clEPKc.1598dc2348996c1ae1caea6120522988:7 + 2: _ZNK9oceanbase4palf16LogDIOAlignedBuf11need_align_Ev:36 + 2: 9 + 3: _ZN9oceanbase4palf16LogDIOAlignedBuf9reset_bufEv:0 + 3: 0 + 4: 0 + 5: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:30 + 2: 9 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:9 + 13: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:7 + 2: 7 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:7 + 22: _ZN9oceanbase4palf24palf_reach_time_intervalElRl:174 + 3: 8 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:6 + 5: 0 +_ZN9oceanbase5share6schema17ObSchemaMgrHandleD2Ev:1377:28 + 1: 27 + 2.1: 0 + 3: 27 + 2: _ZN9oceanbase5share6schema17ObSchemaMgrHandle5resetEv:486 + 4: 27 + 2: _ZN9oceanbase5share6schema17ObSchemaMgrHandle6revertEv:216 + 2: 27 + 3.1: 0 + 4.1: 0 + 5: 0 + 5.1: 0 + 6: 0 + 6.1: 0 + 7: 0 + 8.1: 0 + 14: 0 + 15: 0 + 6.1: _ZN9oceanbase6common16ObClockGenerator8getClockEv:0 + 4: 0 + 5.1: 0 + 8: 0 + 6: _ZN9oceanbase6common16ObClockGenerator6get_usEv:0 + 2: 0 +_ZN9oceanbase5share6schema17ObSchemaMgrHandleD1Ev:1377:28 + 1: 27 + 2.1: 0 + 3: 27 + 2: _ZN9oceanbase5share6schema17ObSchemaMgrHandle5resetEv:486 + 4: 27 + 2: _ZN9oceanbase5share6schema17ObSchemaMgrHandle6revertEv:216 + 2: 27 + 3.1: 0 + 4.1: 0 + 5: 0 + 5.1: 0 + 6: 0 + 6.1: 0 + 7: 0 + 8.1: 0 + 14: 0 + 15: 0 + 6.1: _ZN9oceanbase6common16ObClockGenerator8getClockEv:0 + 4: 0 + 5.1: 0 + 8: 0 + 6: _ZN9oceanbase6common16ObClockGenerator6get_usEv:0 + 2: 0 +_ZN9oceanbase7storage8ObTxData11deserializeEPKclRlRNS_6common12ObSliceAllocE:1376:6 + 4: 6 + 5: 6 + 6: 6 + 7: 6 + 9: 6 + 10: 0 + 11.1: 0 + 12.1: 6 + 13.1: 0 + 14.1: 6 + 15: 0 + 16.1: 0 + 17.1: 6 + 18.1: 0 + 19.1: 6 + 20: 0 + 21.1: 0 + 22.1: 6 _ZN9oceanbase7storage8ObTxData12deserialize_EPKclRlRNS_6common12ObSliceAllocE:6 + 23.1: 0 + 26: 4 + 12.1: _ZN9oceanbase6common13serialization11decode_vi64EPKclRlPl:276 + 6.2: 6 + 6.3: 6 + 7: 0 + 11: 0 + 12: 0 + 15: 6 + 18: 6 + 19: 6 + 20: 6 + 17.1: _ZN9oceanbase6common13serialization11decode_vi64EPKclRlPl:294 + 6: 0 + 6.2: 6 + 6.3: 6 + 7: 0 + 11: 0 + 12: 0 + 15: 6 + 18: 6 + 19: 6 + 20: 6 +_ZN9oceanbase6common15ObKVCacheHandleC2ERKS1_:1372:50 + 1: 49 + 2: 49 + 3: 49 _ZN9oceanbase6common15ObKVCacheHandleaSERKS1_:49 +_ZN9oceanbase6common15ObKVCacheHandleC1ERKS1_:1372:50 + 1: 49 + 2: 49 + 3: 49 _ZN9oceanbase6common15ObKVCacheHandleaSERKS1_:49 +_ZN9oceanbase3sql18ObCacheObjAtomicOpclERNS_6common4hash11HashMapPairImPNS0_17ObILibCacheObjectEEE:1360:20 + 1: 20 + 2: 20 + 3: 20 + 4: 20 + 9: 20 + 4: _ZN9oceanbase3sql17ObILibCacheObject13inc_ref_countENS0_16CacheRefHandleIDE:460 + 2: 20 + 3: 20 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:23 + 4: 0 + 5: 0 + 6.1: 0 + 11: 20 + 4: _ZN9oceanbase3sql20ObCacheObjectFactory14get_plan_cacheEm:0 + 5: 0 + 8: 0 + 8.1: 0 + 9.1: 0 + 11: 0 + 11.2: 0 + 4: _ZN9oceanbase3sql14ObPCMemPctConfC2Ev:0 + 0: 0 + 2: 0 + 11.1: _ZN9oceanbase3sql5ObSql22get_plan_cache_managerEv:0 + 0: 0 + 8.1: _ZN9oceanbase3sql19ObCacheRefHandleMgr13record_ref_opENS0_16CacheRefHandleIDE:0 + 3: 0 + 5.1: 0 +_ZN9oceanbase6common12ObIAllocatorD2Ev:1338:235 + 0: 223 +_ZN9oceanbase5share25get_tenant_base_with_lockEmRNS_6common10ObLDHandleERPNS0_12ObTenantBaseERSt8functionIFiS3_EE:1338:7 + 2: 7 + 3: 7 + 4: 7 + 5: 7 _ZN9oceanbase8observer14global_contextEv:7 + 6: 0 + 7.1: 0 + 8.1: 9 _ZN9oceanbase8observer14global_contextEv:9 + 8.2: 9 _ZNK9oceanbase3omt13ObMultiTenant27get_tenant_with_tenant_lockEmRNS_6common10ObLDHandleERPNS0_8ObTenantE:10 + 9: 0 + 9.1: 0 + 9.3: 0 + 9.4: 0 + 10.1: 0 + 12.1: 7 + 13: 0 + 14.1: 0 + 16: 7 + 21: 7 + 17: _ZNSt8functionIFiRN9oceanbase6common10ObLDHandleEEEaSIZNS0_5share25get_tenant_base_with_lockEmS3_RPNS7_12ObTenantBaseERS5_E4$_13EENSt9enable_ifIXsrSt6__and_IJSt6__not_ISt7is_sameINSt5decayIT_E4typeES5_EESt5__or_IJSt7is_voidIiESt14is_convertibleIDTclcl18__callable_functorclsr3stdE7declvalIRSK_EEEclL_ZSt7declvalIS3_ENSt20add_rvalue_referenceISI_E4typeEvEEEEiEEEEE5valueESB_E4typeEOSI_:441 + 2.1: _ZNSt14_Function_baseD2Ev:63 + 2: 7 + 3: 0 + 3.2: 0 + 2.4: _ZNSt8functionIFiRN9oceanbase6common10ObLDHandleEEEC2IZNS0_5share25get_tenant_base_with_lockEmS3_RPNS7_12ObTenantBaseERS5_E4$_13vEET_:28 + 7.1: _ZNSt14_Function_base13_Base_managerIZN9oceanbase5share25get_tenant_base_with_lockEmRNS1_6common10ObLDHandleERPNS2_12ObTenantBaseERSt8functionIFiS5_EEE4$_13E15_M_init_functorERSt9_Any_dataOSD_:28 + 1.1: _ZNSt14_Function_base13_Base_managerIZN9oceanbase5share25get_tenant_base_with_lockEmRNS1_6common10ObLDHandleERPNS2_12ObTenantBaseERSt8functionIFiS5_EEE4$_13E15_M_init_functorERSt9_Any_dataOSD_St17integral_constantIbLb1EE:28 + 1: 7 + 2.5: _ZNSt8functionIFiRN9oceanbase6common10ObLDHandleEEE4swapERS5_:350 + 2: _ZSt4swapISt9_Any_dataEvRT_S2_:126 + 9: 7 + 10: 7 + 11: 7 + 3: _ZSt4swapIPFbRSt9_Any_dataRKS0_St18_Manager_operationEEvRT_S8_:147 + 10: 7 + 11: 7 + 4: _ZSt4swapIPFiRKSt9_Any_dataRN9oceanbase6common10ObLDHandleEEEvRT_SA_:77 + 11: 7 +_ZN9oceanbase4palf9LogEngine24generate_flush_log_task_ERKNS0_13FlushLogCbCtxERKNS0_11LogWriteBufERPNS0_17LogIOFlushLogTaskE:1336:11 + 3: 11 + 4: 11 + 6: 11 + 7: 13 + 7.1: 13 _ZNK9oceanbase4palf11LogWriteBuf8is_validEv:13 + 8: 0 + 9.1: 12 _ZN9oceanbase6common22ObTenantMutilAllocator27alloc_log_io_flush_log_taskEv:12 + 10: 0 + 11.1: 0 + 12.1: 11 _ZN9oceanbase4palf17LogIOFlushLogTask4initERKNS0_13FlushLogCbCtxERKNS0_11LogWriteBufEll:11 + 13.1: 0 + 16: 4 + 7: _ZNK9oceanbase4palf13FlushLogCbCtx8is_validEv:172 + 0: 13 _ZNK9oceanbase4palf3LSN8is_validEv:11 + 0.1: _ZN9oceanbase4palf15is_valid_log_tsEl:65 + 2: 13 +_ZN9oceanbase11transaction19ObTransNeedWaitWrap24set_trans_need_wait_wrapENS0_11MonotonicTsEl:1332:273 + 3: 267 + 4: 0 + 5: 0 + 7: 264 +_ZN9oceanbase4palf12LogConfigMgr19leader_do_loop_workEv:1330:6 + 1: 4 + 2: 4 + 3: 4 + 4: 5 _ZNK9oceanbase4palf11LogStateMgr15get_proposal_idEv:5 + 5: 4 _ZNK9oceanbase4palf11LogStateMgr10get_leaderEv:4 + 6: 5 _ZNK9oceanbase4palf11LogStateMgr16is_leader_activeEv:5 + 7: 5 + 8: 5 + 9: 5 + 10: 5 + 10.1: 0 + 11: 0 + 12: 0 + 13: 0 + 14: 0 + 15: 0 + 16: 0 + 16.1: 0 + 17: 5 _ZN9oceanbase4palf12LogConfigMgr22try_resend_config_log_El:5 + 17.1: 4 + 18.1: 0 + 21: 4 + 21.3: 0 + 22: 0 + 22.1: 0 + 23.1: 0 + 25: 7 + 26.8: 9 _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEED2Ev:7 + 3: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEEC2ERS3_:139 + 1: 4 + 4: 5 + 5.1: 0 + 4: _ZN9oceanbase6common10ObSpinLock4lockEv:68 + 2: 4 _ZN9oceanbase6common12ObLatchMutex4lockEjl:4 + 5.1: _ZNK9oceanbase6common6ObAddreqERKS1_:208 + 2: 4 + 2.1: 4 + 2.2: 4 + 21.1: _ZN9oceanbase4palf27palf_reach_time_interval_nsElRl:235 + 3: 4 _ZN9oceanbase6common13ObTimeUtility15current_time_nsEv:5 + 4: 7 + 6: 0 + 26.11: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEED2Ev:0 + 2: 0 + 3: 0 + 3.1: 0 + 4.1: 0 + 3: _ZN9oceanbase6common10ObSpinLock6unlockEv:0 + 2: 0 +_ZN9oceanbase6common11ObArrayImplINS_5share11ObLSReplicaENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE7destroyEv:1325:10 + 1: 11 + 2: 11 + 3.1: 5 + 4: 0 + 6: 7 + 7: 2 + 9: 7 + 11: 7 + 13: 7 + 4: _ZN9oceanbase5share11ObLSReplicaD2Ev:295 + 2.1: _ZN9oceanbase6common13ObSEArrayImplINS_5share12SimpleMemberELl7ENS0_15ObNullAllocatorELb0EED2Ev:235 + 1: 5 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_5share12SimpleMemberELl7ENS0_15ObNullAllocatorELb0EE7destroyEv:215 + 9: 5 + 11: 0 + 13: 5 + 15: 5 + 24: 5 + 2.2: _ZN9oceanbase5share6ObLSIDD2Ev:60 + 0: _ZN9oceanbase5share6ObLSID5resetEv:60 + 0: 5 + 6: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:352 + 0: 8 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:248 + 2: 8 + 3: 8 _ZN9oceanbase3lib17ObMallocAllocator12get_instanceEv:8 + 4: 8 + 5: 8 + 4: _ZL12abort_unlessb:48 + 5: 8 + 6: 0 +_ZN9oceanbase8observer20ObInnerSQLConnection8do_queryERNS_6common9sqlclient11ObIExecutorERNS0_16ObInnerSQLResultE:1307:3 + 1: 3 + 2: 3 + 3.1: 3 + 3.2: 5 + 3.3: 5 + 3.4: 2 _ZN9oceanbase3lib2_SILNS0_13ContextSourceE0EED2Ev:2 + 3.6: 3 + 3.8: 2 + 3.9: 0 + 5: 4 + 6.1: 3 + 7: 3 + 8: 0 + 9.1: 0 + 10.1: 3 + 11: 0 + 12.1: 0 + 13.3: 3 _ZN9oceanbase8observer20ObInnerSQLConnection18ObSqlQueryExecutor7executeERNS_3sql5ObSqlERNS3_8ObSqlCtxERNS3_11ObResultSetE:3 + 13.4: 3 + 14.1: 0 + 17.1: 3 + 18: 0 + 19.1: 0 + 20.1: 3 + 20.2: 3 _ZN9oceanbase3sql18ObBasicSessionInfo38update_query_sensitive_system_variableERNS_5share6schema19ObSchemaGetterGuardE:3 + 20.3: 4 + 21.1: 0 + 22.2: 0 + 23: 4 + 23.1: 0 + 23.2: 0 + 23.3: 0 + 24.1: 0 + 25.1: 4 _ZN9oceanbase8observer16ObInnerSQLResult4openEv:4 + 25.2: 2 + 26.1: 0 + 31: 1 + 3: _ZN9oceanbase3lib2_SILNS0_13ContextSourceE0EEC2EbRNS0_13MemoryContextE:471 + 1: 3 + 4.1: 3 + 7: 3 + 10: 3 + 13: 3 + 1: _ZN9oceanbase3lib6_SBaseC2Ev:33 + 1: 3 + 4: _ZN9oceanbase3libeqEDnRKNS0_13MemoryContextE:24 + 1: 3 + 7: _ZN9oceanbase3lib4FlowC2ERNS0_13MemoryContextE:105 + 1: 3 + 3: 3 + 8: _ZN9oceanbase3lib4Flow4initEv:213 + 4: 3 + 7: 3 + 8: 3 + 9: 3 + 12: 3 + 7: _ZL12abort_unlessb:18 + 5: 3 + 6: 0 + 7: 0 + 3.5: _ZNK9oceanbase3lib6_SBase7get_retEv:18 + 2: 3 + 6: _ZN9oceanbase8observer16ObInnerSQLResult7sql_ctxEv:24 + 13.2: _ZN9oceanbase8observer16ObInnerSQLResult10result_setEv:24 + 0: 3 + 16: _ZN9oceanbase8observer16ObInnerSQLResult10result_setEv:24 + 0: 3 + 16.1: _ZN9oceanbase3sql11ObResultSet11get_sessionEv:21 + 0: 3 + 23.1: _ZN9oceanbase8observer16ObInnerSQLResult10result_setEv:0 + 0: 0 +_ZN9oceanbase4palf7LogTask23set_initial_header_infoERKNS0_17LogTaskHeaderInfoE:1288:7 + 1: 7 + 4: 7 + 5: 7 + 6: 0 + 7.1: 0 + 10: 7 + 11: 7 + 12: 7 + 13: 7 + 14: 7 + 16: 7 + 19.1: 10 _ZZN9oceanbase4palf7LogTask23set_initial_header_infoERKNS0_17LogTaskHeaderInfoEENK5$_564clEPKc.0e4bf25207570af14a78557c8489c4fc:10 + 21: 10 + 5: _ZNK9oceanbase4palf7LogTask8is_validEv:42 + 2: _ZNK9oceanbase4palf15LogSimpleBitMap8test_mapEl:42 + 2: 7 + 9: _ZN9oceanbase4palf3LSNaSERKS1_:49 + 2: 7 + 14: _ZN9oceanbase4palf7LogTask15update_data_lenEl:35 + 2: 7 + 16: _ZN9oceanbase4palf7LogTask21inc_update_max_log_tsEl:168 + 2: _ZN9oceanbase6common10inc_updateIlEElPT_S2_:168 + 3: 7 + 4.1: 14 + 5: 7 + 18: _ZN9oceanbase4palf7LogTask9set_validEv:191 + 2: 8 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:8 + 3: _ZN9oceanbase4palf15LogSimpleBitMap7set_mapEl:128 + 3: 8 + 4.1: 8 + 5: 0 + 6: 0 +_ZN9oceanbase4palf17LogIOFlushLogTaskC2Ev:1283:15 + 0.1: 15 _ZN9oceanbase4palf11LogWriteBufC1Ev:15 + 0.2: 12 + 1: 14 + 1.1: 12 + 1.3: 0 + 0: _ZN9oceanbase4palf9LogIOTaskC2Ev:112 + 0: 14 + 0.3: _ZN9oceanbase4palf13FlushLogCbCtxC2Ev:556 + 2: 14 + 3: 14 _ZN9oceanbase4palf3LSNC1Ev:14 + 4: 15 + 6: 15 +_ZN9oceanbase4palf17LogIOFlushLogTaskC1Ev:1283:15 + 0.1: 15 _ZN9oceanbase4palf11LogWriteBufC1Ev:15 + 0.2: 12 + 1: 14 + 1.1: 12 + 1.3: 0 + 0: _ZN9oceanbase4palf9LogIOTaskC2Ev:112 + 0: 14 + 0.3: _ZN9oceanbase4palf13FlushLogCbCtxC2Ev:556 + 2: 14 + 3: 14 _ZN9oceanbase4palf3LSNC1Ev:14 + 4: 15 + 6: 15 +_ZN9oceanbase10logservice13ObApplyStatus27get_min_unapplied_log_ts_nsERl:1261:1 + 1: 1 + 2: 1 + 4: 1 _ZN9oceanbase6common8TCRWLock10RLockGuardC2ERS1_:1 + 5: 1 _ZN9oceanbase3lib11ObLockGuardINS0_7ObMutexEEC2ERS2_:1 + 7: 1 + 8: 0 + 9.1: 0 + 10.1: 1 + 12.1: 1 + 15: 0 + 16: 0 + 16.1: 0 + 17.1: 0 + 21.1: 0 + 24.2: 25 + 25.1: 25 + 29: 0 + 30: 0 + 31.1: 0 + 32: 0 + 32.1: 0 + 33.1: 0 + 39: 0 + 40.1: 0 + 42: 0 + 43.1: 0 + 44: 0 + 44.1: 0 + 45.1: 0 + 47: 0 + 48.12: 0 + 48.13: 0 + 48.14: 0 + 48.16: 0 + 25: _ZN9oceanbase10logservice23ObApplyServiceQueueTask22is_snapshot_apply_doneERb:483 + 3: 25 + 4.1: 24 _ZZN9oceanbase10logservice23ObApplyServiceQueueTask22is_snapshot_apply_doneERbENK3$_5clEPKc.d3a41d52a3cfae37a6a74713ee8e7132:27 +_ZNK9oceanbase6common4hash18ObPointerHashArrayINS_5share6schema24ObTableSchemaHashWrapperEPNS4_21ObSimpleTableSchemaV2ENS4_13GetTableKeyV2EE21placement_hash_searchERKS5_Rl:1257:4 + 1: 4 + 3: 4 + 5: 4 + 9: 5 + 13: 5 + 15.2: 2 + 16: 2 + 19: 5 + 20: 5 + 28: 4 + 8: _ZNK9oceanbase6common4hash18ObPointerHashArrayINS_5share6schema24ObTableSchemaHashWrapperEPNS4_21ObSimpleTableSchemaV2ENS4_13GetTableKeyV2EE17key_to_anchor_idxERKS5_:96 + 2: 4 _ZN9oceanbase6common7do_hashINS_5share6schema24ObTableSchemaHashWrapperEEEmRKT_:6 + 3: 4 + 4: 4 + 4.2: 0 + 8.2: _ZNK9oceanbase6common4hash18ObPointerHashArrayINS_5share6schema24ObTableSchemaHashWrapperEPNS4_21ObSimpleTableSchemaV2ENS4_13GetTableKeyV2EE10probe_nextEl:90 + 3: 5 + 5: 5 + 15.1: _ZNK9oceanbase5share6schema13GetTableKeyV2INS1_24ObTableSchemaHashWrapperEPNS1_21ObSimpleTableSchemaV2EEclEPKS4_:345 + 2: 5 + 4: 5 _ZNK9oceanbase5share6schema21ObSimpleTableSchemaV213get_tenant_idEv:5 + 3: _ZN9oceanbase5share6schema24ObTableSchemaHashWrapperC2EmmmNS_6common14ObNameCaseModeERKNS3_8ObStringE:160 + 2: 5 + 5: _ZNK9oceanbase5share6schema21ObSimpleTableSchemaV215get_database_idEv:35 + 0: 5 + 6: _ZNK9oceanbase5share6schema21ObSimpleTableSchemaV214get_session_idEv:35 + 0: 5 + 7: _ZNK9oceanbase5share6schema21ObSimpleTableSchemaV218get_name_case_modeEv:35 + 0: 5 + 11: _ZN9oceanbase5share6schema24ObTableSchemaHashWrapperC2Ev:0 + 1: 0 + 0: _ZN9oceanbase6common8ObStringC2Ev:0 + 1: 0 + 15.4: _ZNK9oceanbase5share6schema24ObTableSchemaHashWrappereqERKS2_:239 + 2: 0 + 3: 5 + 3.1: 5 + 4: 5 + 4.1: 5 + 5: 5 + 5.1: 5 + 6.1: 0 + 6.2: 2 + 2: _ZN9oceanbase5share6schema25ObCompareNameWithTenantIDC2EmNS_6common14ObNameCaseModeEm:55 + 3: 5 +_ZN9oceanbase10logservice12ObLogService9open_palfERKNS_5share6ObLSIDERNS_4palf15PalfHandleGuardE:1252:13 + 2: 13 + 3: 13 + 4: 13 _ZN9oceanbase4palf10PalfHandleC1Ev:13 + 5: 13 + 6: 0 + 7.1: 0 + 8.1: 13 + 8.2: 13 _ZN9oceanbase4palf7PalfEnv4openElRNS0_10PalfHandleE:13 + 8.3: 7 + 9.1: 0 + 10.1: 7 + 12.1: 7 _ZZN9oceanbase10logservice12ObLogService9open_palfERKNS_5share6ObLSIDERNS_4palf15PalfHandleGuardEENK5$_340clEPKc.1291a23568de5f940ae06fb9e7354412:7 + 15: 7 + 16: 0 + 16.1: 0 + 17: 0 + 21: 0 + 22: 0 + 25.4: 7 _ZN9oceanbase4palf10PalfHandleD1Ev:7 + 25.5: 0 + 8.1: _ZNK9oceanbase5share6ObLSID2idEv:91 + 0: 13 + 10.1: _ZN9oceanbase4palf15PalfHandleGuard3setERNS0_10PalfHandleEPNS0_7PalfEnvE:147 + 2: 7 _ZN9oceanbase4palf10PalfHandleaSERKS1_:8 + 3: 7 + 4: 7 +_ZN9oceanbase7storage8ObTablet26check_has_effective_ddl_kvERb:1247:11 + 1: 11 + 2: 11 + 5: 11 + 6: 0 + 7.1: 0 + 8.1: 12 + 9.1: 0 + 10.1: 12 _ZN9oceanbase7storage16ObTabletDDLKvMgr26check_has_effective_ddl_kvERb:12 + 11.1: 0 + 14: 10 + 8.1: _ZNK9oceanbase7storage8ObTablet14get_ddl_kv_mgrERPNS0_16ObTabletDDLKvMgrE:517 + 2: 11 + 5: 11 + 6: 12 _ZNK9oceanbase7storage14ObMetaObjGuardINS0_16ObTabletDDLKvMgrEE8is_validEv:11 + 7: 0 + 8.1: 0 + 10: 12 _ZN9oceanbase7storage14ObMetaObjGuardINS0_16ObTabletDDLKvMgrEE7get_objEv:12 + 13: 0 + 4: _ZNK9oceanbase7storage16ObResourceHandleINS0_13ObMetaPointerINS0_8ObTabletEEEE16get_resource_ptrEv:176 + 0: 11 + 0.2: _ZNK9oceanbase7storage20ObResourceValueStoreINS0_13ObMetaPointerINS0_8ObTabletEEEE13get_value_ptrEv:44 + 0: 11 +_ZN9oceanbase5share6schema19ObSchemaGetterGuard10get_schemaINS1_14ObTenantSchemaEEEiNS1_12ObSchemaTypeEmmRPKT_l:1237:2 + 6: 2 + 7: 2 + 8: 2 + 9: 2 + 10: 2 + 11: 2 _ZN9oceanbase6common15ObKVCacheHandleC1Ev:2 + 13: 3 + 15.1: 3 + 16: 0 + 17.1: 0 + 18.1: 3 + 18.3: 3 + 19: 0 + 20.1: 0 + 21.2: 0 + 22: 0 + 23.1: 0 + 25.1: 3 _ZN9oceanbase5share6schema16is_normal_schemaENS1_12ObSchemaTypeE:3 + 26: 3 + 27: 0 + 28.1: 0 + 29.1: 3 _ZN9oceanbase5share6schema19ObSchemaGetterGuard20get_from_local_cacheINS1_14ObTenantSchemaEEEiNS1_12ObSchemaTypeEmmRPKT_:3 + 29.2: 2 + 31.1: 0 + 33.1: 2 _ZNK9oceanbase5share6schema19ObSchemaGetterGuard14get_schema_mgrEmRPKNS1_11ObSchemaMgrE:2 + 33.2: 2 + 34.1: 0 + 35.1: 2 + 37: 2 + 38: 0 + 39.1: 0 + 41: 2 + 42: 0 + 43.1: 2 _ZN9oceanbase5share6schema19ObSchemaGetterGuard18get_schema_versionENS1_12ObSchemaTypeEmmRl:2 + 43.2: 4 + 47.1: 0 + 50: 0 + 51: 4 + 52.1: 0 + 53.1: 0 + 56.1: 4 _ZN9oceanbase5share6schema19ObSchemaGetterGuard17get_schema_statusEmRNS1_21ObRefreshSchemaStatusE:4 + 56.2: 4 + 57.1: 0 + 58.1: 4 _ZN9oceanbase5share6schema27ObMultiVersionSchemaService10get_schemaEPKNS1_11ObSchemaMgrERKNS1_21ObRefreshSchemaStatusENS1_12ObSchemaTypeEmlRNS_6common15ObKVCacheHandleERPKNS1_8ObSchemaE:4 + 58.2: 1 + 65.1: 0 + 67.1: 1 + 68: 0 + 69.1: 0 + 71.1: 1 _ZN9oceanbase5share6schema19ObSchemaGetterGuard18put_to_local_cacheINS1_8ObSchemaEEEiNS1_12ObSchemaTypeEmmRPKT_RNS_6common15ObKVCacheHandleE:1 + 71.2: 2 + 73.1: 0 + 83.1: 0 + 85: 0 + 86: 0 + 87.1: 0 + 89.2: 0 + 89.4: 0 + 92: 0 + 92.1: 0 + 93: 0 + 93.1: 0 + 94: 0 + 95.1: 0 + 96.1: 0 + 97: 0 + 98.1: 0 + 99.1: 0 + 99.2: 0 + 100.1: 0 + 103: 0 + 105: 0 + 106.1: 0 + 106.2: 0 + 107.1: 0 + 108.1: 0 + 108.2: 0 + 116.1: 0 + 118.1: 0 + 120.1: 0 + 120.2: 0 + 122.1: 0 + 130: 2 + 130.1: 0 + 131: 2 + 132.1: 0 + 133: 0 + 134: 0 + 135: 0 + 136.1: 0 + 138: 0 + 138.3: 0 + 140: 0 + 141: 0 + 141.1: 0 + 142: 0 + 143.1: 0 + 145.1: 0 + 146.1: 0 + 148: 0 + 152: 0 + 153.27: 1 _ZN9oceanbase6common15ObKVCacheHandleD1Ev:1 + 153.28: 0 + 12: _ZN9oceanbase5share6schema21ObRefreshSchemaStatusC2Ev:57 + 0: 3 + 2: 3 + 15: _ZNK9oceanbase5share6schema19ObSchemaGetterGuard16check_inner_statEv:111 + 2: 3 + 3: 3 + 4: 0 + 5.1: 0 + 6.1: 3 + 6.2: 3 + 7: 3 + 7.1: 3 + 8: 0 + 9.1: 0 + 11: 3 + 18.2: _ZN9oceanbase6common13is_sys_tenantEm:15 + 2: 3 + 52: _ZN9oceanbase6common12is_cte_tableEm:0 + 2: 0 + 89.1: _ZN9oceanbase5share6schema19ObSchemaGetterGuard17use_schema_statusEv:0 + 0: 0 + 0: _ZN9oceanbase5share6schema19ObSchemaGetterGuard18is_standby_clusterEv:0 + 0: 0 + 0.1: _ZN9oceanbase5share6schema19ObSchemaGetterGuard20restore_tenant_existEv:0 + 0: 0 + 89.3: _ZN9oceanbase6common13is_sys_tenantEm:0 + 2: 0 +_ZNK9oceanbase5obrpc16ObTransRpcResult10serialize_EPclRl:1232:2 + 0: 2 + 0.1: 2 + 0.3: 0 + 0.9: 0 + 0.10: 2 + 0.12: 0 + 0.18: 0 + 0.19: 2 + 0.21: 0 + 0.27: 2 + 0.28: 0 + 0.35: 0 + 0.36: 0 + 0.43: 0 + 0.44: 0 + 0.51: 0 + 0.1: _ZN9oceanbase6common13serialization6encodeEPclRli:126 + 2: _ZN9oceanbase6common13serialization11encode_vi32EPclRli:126 + 3: 2 + 4: 2 + 5: 2 + 6.1: 2 + 7: 0 + 8: 0 + 11: 2 + 4: _ZN9oceanbase6common13serialization19encoded_length_vi32Ei:14 + 4: 2 + 6.1: 0 + 8.1: 0 + 10.1: 0 + 0.3: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRA8_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 0.10: _ZN9oceanbase6common13serialization6encodeEPclRll:802 + 2: _ZN9oceanbase6common13serialization11encode_vi64EPclRll:802 + 3: 2 + 4: 2 + 5: 2 + 6.1: 14 + 7: 14 + 8: 14 + 11: 14 + 4: _ZN9oceanbase6common13serialization19encoded_length_vi64El:212 + 4: 2 + 6.1: 2 + 8.1: 2 + 10.1: 2 + 12.1: 2 + 14.1: 2 + 16.1: 2 + 18.1: 2 + 0.12: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 0.13: _ZN9oceanbase6common7ObLogKVIRA16_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 0.19: _ZN9oceanbase6common13serialization6encodeEPclRll:112 + 2: _ZN9oceanbase6common13serialization11encode_vi64EPclRll:112 + 3: 2 + 4: 2 + 5: 2 + 6.1: 2 + 7: 0 + 8: 0 + 11: 2 + 4: _ZN9oceanbase6common13serialization19encoded_length_vi64El:16 + 4: 2 + 6.1: 0 + 8.1: 0 + 10.1: 0 + 12.1: 0 + 14.1: 0 + 16.1: 0 + 18.1: 0 + 0.21: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 0.22: _ZN9oceanbase6common7ObLogKVIRA14_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 0.30: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.32: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.34: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.38: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.40: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.42: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.46: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.48: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.50: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase3sql11ObDASLockOp10release_opEv:1232:158 + 1: 154 + 3: 154 +_ZN9oceanbase5share11ObLSReplica4initEllmRKNS0_6ObLSIDERKNS_6common6ObAddrElRKNS5_6ObRoleERKNS5_13ObReplicaTypeElRKNS0_15ObReplicaStatusERKNS0_17ObLSRestoreStatusElmRKNS5_8ObStringElll:1210:3 + 18: 3 + 19: 3 + 21.1: 2 + 22: 1 + 22.1: 2 + 23: 0 + 24.1: 0 + 25.1: 2 _ZN9oceanbase6common17ObReplicaProperty20set_memstore_percentEl:2 + 26.1: 0 + 27.1: 2 + 28.1: 0 + 30: 2 + 31: 2 + 32: 2 + 35: 2 + 36: 2 + 37: 2 + 38: 2 + 39: 2 + 40: 2 _ZN9oceanbase5share17ObLSRestoreStatusaSERKS1_:2 + 41: 2 + 42: 2 + 43: 2 + 44: 2 + 46: 2 + 20: _ZN9oceanbase5share11ObLSReplica5resetEv:405 + 3: 3 + 8: 3 + 9: 3 + 10: 3 + 11: 3 + 12: 3 + 13: 3 + 14: 3 _ZN9oceanbase5share17ObLSRestoreStatusaSERKNS1_6StatusE:3 + 17: 2 + 19: 2 + 21: 2 + 23: 2 + 6: _ZN9oceanbase5share6ObLSID5resetEv:12 + 0: 3 + 7: _ZN9oceanbase6common6ObAddr5resetEv:12 + 2: 3 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_5share12SimpleMemberELl7ENS0_15ObNullAllocatorELb0EE5resetEv:15 + 0: 3 _ZN9oceanbase6common13ObSEArrayImplINS_5share12SimpleMemberELl7ENS0_15ObNullAllocatorELb0EE7destroyEv:3 + 15: _ZN9oceanbase6common17ObReplicaProperty5resetEv:44 + 2: 2 + 18: _ZN9oceanbase6common19ObFixedLengthStringILl128EE5resetEv:14 + 0: 2 + 21: _ZNK9oceanbase5share6ObLSID20is_valid_with_tenantEm:48 + 5: 1 + 5.1: 1 + 4: _ZN9oceanbase6common14is_user_tenantEm:29 + 3: 2 + 2: _ZN9oceanbase6common13is_sys_tenantEm:4 + 2: 1 + 4.1: _ZNK9oceanbase5share6ObLSID8is_validEv:4 + 0: 1 + 5.2: _ZN9oceanbase6common14is_meta_tenantEm:9 + 3: 1 + 5.3: _ZNK9oceanbase5share6ObLSID9is_sys_lsEv:4 + 0: 1 + 22.1: _ZNK9oceanbase6common8ObStringcvMS1_KFbvEEv:40 + 0: 2 + 27.1: _ZN9oceanbase6common19ObFixedLengthStringILl128EE6assignERKNS0_8ObStringE:88 + 2: 2 + 3: 2 + 4: 0 + 5.1: 0 + 7: 0 + 8: 0 + 10: 2 + 11: 2 + 13: 0 + 3: _ZNK9oceanbase6common8ObString6lengthEv:18 + 0: 2 + 7: _ZNK9oceanbase6common8ObString3ptrEv:0 + 0: 0 + 10: _ZNK9oceanbase6common8ObString3ptrEv:10 + 0: 2 + 11: _ZNK9oceanbase6common8ObString6lengthEv:10 + 0: 2 + 33: _ZN9oceanbase5share6ObLSIDaSERKS1_:22 + 0: 2 + 34: _ZN9oceanbase6common6ObAddraSERKS1_:54 + 1: 2 + 2: 2 + 3: 2 +_ZN9oceanbase6common5occam26ObOccamTimeGuardDetectHungD2Ev:1200:8 + 0: 6 + 1: 6 + 2: 6 _ZN9oceanbase6common5occam20ObThreadHungDetector12get_instanceEv:7 + 2.1: 7 + 3: 7 + 6: 7 + 7: 7 + 8: 7 + 9: 7 + 10: 7 + 16: 0 + 20.1: 7 + 22: 0 + 22.1: 7 _ZN9oceanbase6common5occam16ObOccamTimeGuardD2Ev:7 + 22.2: 0 + 20: _ZN9oceanbase6common5occam20ObThreadHungDetector12get_instanceEv:91 + 0: 7 + 0.1: 0 + 0.2: 0 + 0.3: 0 + 0.5: 0 + 0.7: 0 +_ZN9oceanbase10logservice14ObReplayStatus17update_end_offsetERKNS_4palf3LSNE:1197:0 + 1: 0 + 2: 0 + 4: 0 + 5: 1 + 6: 0 + 7.1: 0 + 8.1: 1 + 9.1: 0 + 10.1: 1 _ZNK9oceanbase4palf3LSN8is_validEv:2 + 10.2: 2 + 11: 0 + 12.1: 0 + 13.1: 2 _ZNK9oceanbase10logservice14ObReplayStatus15need_submit_logEv:2 + 13.2: 5 + 18: 0 + 18.1: 0 + 19.1: 0 + 23: 0 + 24: 0 + 24.1: 0 + 25.1: 0 + 30: 5 + 31.6: 5 + 31.7: 0 + 31.6: _ZN9oceanbase6common8TCRWLock10RLockGuardD2Ev:1025 + 0: 5 + 0.2: 0 + 0: _ZN9oceanbase6common8TCRWLock8rdunlockEv:1005 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:25 + 0: 5 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPi:875 + 2: 5 + 4.1: 10 + 4.2: 10 + 6: 15 + 6.1: 5 + 10: 5 + 2: _ZN9oceanbase6common8get_itidEv:140 + 4: 5 + 5: 0 + 6: 0 + 8: 0 + 11: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:65 + 2: 5 + 2.1: 0 + 3: 0 +_ZN9oceanbase8memtable13ObLockWaitMgr26fetch_deadlocked_sessions_ERPNS_6common9ObSEArrayINS1_8SessPairELl16ENS2_19ModulePageAllocatorELb0EEE:1191:42 + 1: 16 + 2: 16 + 4: 7 + 6: 7 + 7.1: 0 + 9: 4 + 10: 2 + 11.1: 2 + 11.3: 0 + 2: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEEC2ERS3_:413 + 1: 16 + 4: 7 + 5.1: 0 + 4: _ZN9oceanbase6common10ObSpinLock4lockEv:272 + 2: 16 _ZN9oceanbase6common12ObLatchMutex4lockEjl:16 + 9: _ZN9oceanbase6common13ObSEArrayImplINS_8memtable13ObLockWaitMgr8SessPairELl16ENS0_19ModulePageAllocatorELb0EE5resetEv:16 + 0: 4 _ZN9oceanbase6common13ObSEArrayImplINS_8memtable13ObLockWaitMgr8SessPairELl16ENS0_19ModulePageAllocatorELb0EE7destroyEv:4 + 11.1: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEED2Ev:36 + 2: 2 + 3: 2 + 3.1: 2 + 4.1: 0 + 3: _ZN9oceanbase6common10ObSpinLock6unlockEv:2 + 2: 2 _ZN9oceanbase6common12ObLatchMutex6unlockEv:2 +_ZN9oceanbase6common13ObSEArrayImplINS_5share6schema19ObSchemaGetterGuard9SchemaObjELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv:1188:6 + 1: 6 + 4.1: 31 + 4.3: 31 + 9: 4 + 11: 1 + 13: 5 + 15: 5 + 24: 5 + 25: 5 + 5: _ZN9oceanbase5share6schema19ObSchemaGetterGuard9SchemaObjD2Ev:231 + 0: 33 _ZN9oceanbase6common15ObKVCacheHandleD1Ev:38 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema19ObSchemaGetterGuard9SchemaObjELl2ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:8 + 4: 1 _ZN9oceanbase6common19ModulePageAllocator4freeEPv:1 +_ZN9oceanbase3sql16ObSQLSessionInfoD2Ev:1180:1 + 1: 1 + 2: 1 + 3: 0 + 4: 0 + 6: 1 _ZN9oceanbase3sql16ObSQLSessionInfo7destroyEb:1 + 7: 0 + 7.1: 4 + 7.2: 0 + 7.7: 0 + 7.8: 0 + 7.10: 0 + 7.11: 0 + 7.12: 0 + 7.13: 0 + 7.14: 0 + 7.15: 0 + 7.16: 0 + 7.17: 0 + 7.19: 0 + 7.20: 0 + 7.21: 0 + 7.23: 0 + 7.29: 1 _ZN9oceanbase6common11ObArrayImplIPNS0_9sqlclient28ObCommonServerConnectionPoolENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEED2Ev:1 + 7.30: 1 _ZN9oceanbase6common11ObSqlStringD1Ev:1 + 7.33: 2 _ZN9oceanbase6common13ObSEArrayImplImLl8ENS0_19ModulePageAllocatorELb0EED2Ev:2 + 7.41: 4 _ZN9oceanbase3sql23ObEndTransAsyncCallbackD1Ev:4 + 7.45: 1 _ZN9oceanbase3sql18ObBasicSessionInfoD1Ev:1 + 7.32: _ZN9oceanbase3sql29ObTenantCachedSchemaGuardInfoD2Ev:63 + 0.1: 2 _ZN9oceanbase5share6schema19ObSchemaGetterGuardD1Ev:2 + 0.2: 0 + 0.3: 0 + 0: _ZN9oceanbase3sql29ObTenantCachedSchemaGuardInfo5resetEv:55 + 2: 1 _ZN9oceanbase5share6schema19ObSchemaGetterGuard5resetEv:1 + 4: 2 + 7.34: _ZN9oceanbase3sql16ObSQLSessionInfo11CursorCacheD2Ev:78 + 0: 2 + 0.1: 2 + 0.2: 0 + 0.5: 2 _ZN9oceanbase6common4hash9ObHashMapIlPNS_2pl14ObPLCursorInfoENS1_19NoPthreadDefendModeENS1_9hash_funcIlEENS1_8equal_toIlEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIlS5_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:2 + 0.6: 0 + 0.7: 0 + 0: _ZN9oceanbase3libneEDnRKNS0_13MemoryContextE:16 + 1: 2 + 7.35: _ZN9oceanbase6common4hash9ObHashMapINS0_8ObStringEPNS_3sql17ObInnerContextMapENS1_19NoPthreadDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_S6_EEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl2EED2Ev:140 + 2: _ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_PNS_3sql17ObInnerContextMapEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS8_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS8_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl2EED2Ev:63 + 2.1: 3 + 2.2: 3 + 3: 3 _ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_PNS_3sql17ObInnerContextMapEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS8_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS8_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl2EE7destroyEv:3 + 2: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringEPNS_3sql17ObInnerContextMapEEENS1_5NLockENS1_5NCondEEEEEbRKT_:24 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringEPNS_3sql17ObInnerContextMapEEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:24 + 2: 3 + 2.2: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS0_8ObStringEPNS_3sql17ObInnerContextMapEEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEED2Ev:42 + 2: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS0_8ObStringEPNS_3sql17ObInnerContextMapEEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEE5clearEv:42 + 2: 2 + 3.1: 2 + 4: 0 + 5: 0 + 6.1: 0 + 15: 2 + 10: _ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocator4freeEPv:0 + 3: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 7.36: _ZN9oceanbase6common4hash9ObHashMapImNS_5share15ObSequenceValueENS1_19NoPthreadDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS4_EEEELi65ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:88 + 2: 4 + 2.2: 4 _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImNS_5share15ObSequenceValueEEEEELi65ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEED2Ev:4 + 2: _ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImNS_5share15ObSequenceValueEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS6_EELi65ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:42 + 2.1: 2 + 2.2: 2 + 3: 2 _ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImNS_5share15ObSequenceValueEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS6_EELi65ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv:2 + 2: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImNS_5share15ObSequenceValueEEENS1_5NLockENS1_5NCondEEEEEbRKT_:16 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImNS_5share15ObSequenceValueEEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:16 + 2: 2 + 7.37: _ZN9oceanbase6common4hash9ObHashMapImPNS_2pl16ObPLPackageStateENS1_19NoPthreadDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS5_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:168 + 2: 5 + 2.2: 5 _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImPNS_2pl16ObPLPackageStateEEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEED2Ev:5 + 2: _ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS_2pl16ObPLPackageStateEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:100 + 2.1: 4 + 2.2: 4 + 3: 4 _ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS_2pl16ObPLPackageStateEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv:4 + 2: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImPNS_2pl16ObPLPackageStateEEENS1_5NLockENS1_5NCondEEEEEbRKT_:48 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImPNS_2pl16ObPLPackageStateEEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:48 + 2: 4 + 7.38: _ZN9oceanbase6common4hash9ObHashMapINS0_8ObStringEmNS1_19NoPthreadDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_mEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:68 + 2: 4 + 2.2: 4 _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS0_8ObStringEmEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEED2Ev:4 + 2: _ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_mEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:36 + 2.1: 4 + 2.2: 0 + 3: 0 + 2: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringEmEENS1_5NLockENS1_5NCondEEEEEbRKT_:32 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringEmEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:32 + 2: 4 + 7.39: _ZN9oceanbase6common4hash9ObHashMapImPNS_3sql15ObPsSessionInfoENS1_19NoPthreadDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS5_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:68 + 2: 4 + 2.2: 4 _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImPNS_3sql15ObPsSessionInfoEEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEED2Ev:4 + 2: _ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS_3sql15ObPsSessionInfoEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:36 + 2.1: 4 + 2.2: 0 + 3: 0 + 2: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImPNS_3sql15ObPsSessionInfoEEENS1_5NLockENS1_5NCondEEEEEbRKT_:32 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImPNS_3sql15ObPsSessionInfoEEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:32 + 2: 4 + 7.42: _ZN9oceanbase6common15ObWarningBufferD2Ev:240 + 0.1: 4 _ZN9oceanbase6common11ObArrayImplINS0_15ObWarningBuffer11WarningItemENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEED2Ev:4 + 0: _ZN9oceanbase6common15ObWarningBuffer5resetEv:236 + 2: 4 + 5: 4 + 4: _ZN9oceanbase6common15ObWarningBuffer11WarningItem5resetEv:144 + 2: 4 + 3: 4 + 5: 4 + 8: 4 + 7.43: _ZN9oceanbase6common15ObWarningBufferD2Ev:116 + 0.1: 2 _ZN9oceanbase6common11ObArrayImplINS0_15ObWarningBuffer11WarningItemENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEED2Ev:2 + 0: _ZN9oceanbase6common15ObWarningBuffer5resetEv:114 + 2: 2 + 5: 2 + 4: _ZN9oceanbase6common15ObWarningBuffer11WarningItem5resetEv:72 + 2: 2 + 3: 2 + 5: 2 + 8: 2 +_ZN9oceanbase3sql16ObSQLSessionInfoD1Ev:1180:1 + 1: 1 + 2: 1 + 3: 0 + 4: 0 + 6: 1 _ZN9oceanbase3sql16ObSQLSessionInfo7destroyEb:1 + 7: 0 + 7.1: 4 + 7.2: 0 + 7.7: 0 + 7.8: 0 + 7.10: 0 + 7.11: 0 + 7.12: 0 + 7.13: 0 + 7.14: 0 + 7.15: 0 + 7.16: 0 + 7.17: 0 + 7.19: 0 + 7.20: 0 + 7.21: 0 + 7.23: 0 + 7.29: 1 _ZN9oceanbase6common11ObArrayImplIPNS0_9sqlclient28ObCommonServerConnectionPoolENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEED2Ev:1 + 7.30: 1 _ZN9oceanbase6common11ObSqlStringD1Ev:1 + 7.33: 2 _ZN9oceanbase6common13ObSEArrayImplImLl8ENS0_19ModulePageAllocatorELb0EED2Ev:2 + 7.41: 4 _ZN9oceanbase3sql23ObEndTransAsyncCallbackD1Ev:4 + 7.45: 1 _ZN9oceanbase3sql18ObBasicSessionInfoD1Ev:1 + 7.32: _ZN9oceanbase3sql29ObTenantCachedSchemaGuardInfoD2Ev:63 + 0.1: 2 _ZN9oceanbase5share6schema19ObSchemaGetterGuardD1Ev:2 + 0.2: 0 + 0.3: 0 + 0: _ZN9oceanbase3sql29ObTenantCachedSchemaGuardInfo5resetEv:55 + 2: 1 _ZN9oceanbase5share6schema19ObSchemaGetterGuard5resetEv:1 + 4: 2 + 7.34: _ZN9oceanbase3sql16ObSQLSessionInfo11CursorCacheD2Ev:78 + 0: 2 + 0.1: 2 + 0.2: 0 + 0.5: 2 _ZN9oceanbase6common4hash9ObHashMapIlPNS_2pl14ObPLCursorInfoENS1_19NoPthreadDefendModeENS1_9hash_funcIlEENS1_8equal_toIlEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIlS5_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:2 + 0.6: 0 + 0.7: 0 + 0: _ZN9oceanbase3libneEDnRKNS0_13MemoryContextE:16 + 1: 2 + 7.35: _ZN9oceanbase6common4hash9ObHashMapINS0_8ObStringEPNS_3sql17ObInnerContextMapENS1_19NoPthreadDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_S6_EEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl2EED2Ev:140 + 2: _ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_PNS_3sql17ObInnerContextMapEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS8_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS8_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl2EED2Ev:63 + 2.1: 3 + 2.2: 3 + 3: 3 _ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_PNS_3sql17ObInnerContextMapEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS8_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS8_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl2EE7destroyEv:3 + 2: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringEPNS_3sql17ObInnerContextMapEEENS1_5NLockENS1_5NCondEEEEEbRKT_:24 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringEPNS_3sql17ObInnerContextMapEEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:24 + 2: 3 + 2.2: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS0_8ObStringEPNS_3sql17ObInnerContextMapEEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEED2Ev:42 + 2: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS0_8ObStringEPNS_3sql17ObInnerContextMapEEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEE5clearEv:42 + 2: 2 + 3.1: 2 + 4: 0 + 5: 0 + 6.1: 0 + 15: 2 + 10: _ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocator4freeEPv:0 + 3: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 7.36: _ZN9oceanbase6common4hash9ObHashMapImNS_5share15ObSequenceValueENS1_19NoPthreadDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS4_EEEELi65ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:88 + 2: 4 + 2.2: 4 _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImNS_5share15ObSequenceValueEEEEELi65ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEED2Ev:4 + 2: _ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImNS_5share15ObSequenceValueEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS6_EELi65ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:42 + 2.1: 2 + 2.2: 2 + 3: 2 _ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImNS_5share15ObSequenceValueEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS6_EELi65ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv:2 + 2: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImNS_5share15ObSequenceValueEEENS1_5NLockENS1_5NCondEEEEEbRKT_:16 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImNS_5share15ObSequenceValueEEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:16 + 2: 2 + 7.37: _ZN9oceanbase6common4hash9ObHashMapImPNS_2pl16ObPLPackageStateENS1_19NoPthreadDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS5_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:168 + 2: 5 + 2.2: 5 _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImPNS_2pl16ObPLPackageStateEEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEED2Ev:5 + 2: _ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS_2pl16ObPLPackageStateEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:100 + 2.1: 4 + 2.2: 4 + 3: 4 _ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS_2pl16ObPLPackageStateEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv:4 + 2: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImPNS_2pl16ObPLPackageStateEEENS1_5NLockENS1_5NCondEEEEEbRKT_:48 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImPNS_2pl16ObPLPackageStateEEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:48 + 2: 4 + 7.38: _ZN9oceanbase6common4hash9ObHashMapINS0_8ObStringEmNS1_19NoPthreadDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_mEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:68 + 2: 4 + 2.2: 4 _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS0_8ObStringEmEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEED2Ev:4 + 2: _ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_mEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:36 + 2.1: 4 + 2.2: 0 + 3: 0 + 2: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringEmEENS1_5NLockENS1_5NCondEEEEEbRKT_:32 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringEmEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:32 + 2: 4 + 7.39: _ZN9oceanbase6common4hash9ObHashMapImPNS_3sql15ObPsSessionInfoENS1_19NoPthreadDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS5_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:68 + 2: 4 + 2.2: 4 _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImPNS_3sql15ObPsSessionInfoEEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEED2Ev:4 + 2: _ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS_3sql15ObPsSessionInfoEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:36 + 2.1: 4 + 2.2: 0 + 3: 0 + 2: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImPNS_3sql15ObPsSessionInfoEEENS1_5NLockENS1_5NCondEEEEEbRKT_:32 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImPNS_3sql15ObPsSessionInfoEEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:32 + 2: 4 + 7.42: _ZN9oceanbase6common15ObWarningBufferD2Ev:240 + 0.1: 4 _ZN9oceanbase6common11ObArrayImplINS0_15ObWarningBuffer11WarningItemENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEED2Ev:4 + 0: _ZN9oceanbase6common15ObWarningBuffer5resetEv:236 + 2: 4 + 5: 4 + 4: _ZN9oceanbase6common15ObWarningBuffer11WarningItem5resetEv:144 + 2: 4 + 3: 4 + 5: 4 + 8: 4 + 7.43: _ZN9oceanbase6common15ObWarningBufferD2Ev:116 + 0.1: 2 _ZN9oceanbase6common11ObArrayImplINS0_15ObWarningBuffer11WarningItemENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEED2Ev:2 + 0: _ZN9oceanbase6common15ObWarningBuffer5resetEv:114 + 2: 2 + 5: 2 + 4: _ZN9oceanbase6common15ObWarningBuffer11WarningItem5resetEv:72 + 2: 2 + 3: 2 + 5: 2 + 8: 2 +_ZNK9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS_3omt16ObTenantTimezoneEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE18foreach_refactoredINS4_19ObTenantTimezoneMgr16UpdateTenantTZOpEEEiRT_:1178:0 + 1: 0 + 2: 0 + 5: 0 + 5.1: 0 + 6.1: 0 + 7: 0 + 9.1: 31 + 9.2: 31 + 9.3: 31 + 9.5: 31 + 10: 31 + 13: 31 + 14.1: 31 + 14.3: 31 + 16.1: 0 + 17.1: 0 + 19: 0 + 24: 0 + 5: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImPNS_3omt16ObTenantTimezoneEEENS1_5NLockENS1_5NCondEEEEEbRKT_:0 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImPNS_3omt16ObTenantTimezoneEEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:0 + 2: 0 + 15: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_11HashMapPairImPNS_3omt16ObTenantTimezoneEEEE16check_magic_codeEv:0 + 0: 0 + 1237.3: 0 + 15.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 16: _ZN9oceanbase3omt19ObTenantTimezoneMgr16UpdateTenantTZOpclERNS_6common4hash11HashMapPairImPNS0_16ObTenantTimezoneEEE:0 + 3: 0 + 4: 0 + 4.1: 0 + 5.1: 0 + 7: 0 + 4: _ZN9oceanbase3omt16ObTenantTimezone10get_tz_mgrEv:0 + 0: 0 +unw_init_local_common:1176:0 + 1: 2 + 4: 2 + 5: 0 + 9: 2 + 10: 2 + 12: 2 + 11: common_init:1062 + 4: 2 + 5: 2 + 6: 2 + 7: 2 + 8: 2 + 9: 2 + 10: 2 + 11: 2 + 12: 2 + 13: 2 + 14: 2 + 15: 2 + 16: 2 + 17: 2 + 18: 2 + 19: 2 + 20: 2 + 22: 2 + 23: 2 + 26: 2 _ULx86_64_r_uc_addr:2 + 28: 2 + 31: 2 + 32: 2 + 34: 2 + 36: 2 + 38: 2 + 39: 2 + 40: 2 + 41: 2 + 43: 2 + 4: dwarf_get_uc:14 + 3: 2 + 22: dwarf_get:42 + 2: 2 + 3: 0 + 9: 2 access_mem:2 + 26: dwarf_get:56 + 2: 2 + 9: 2 access_mem:2 +_ZN9oceanbase5share6schema17ObSchemaMgrHandle5resetEv:1163:19 + 1: 19 + 4: 18 + 6: 18 + 2: _ZN9oceanbase5share6schema17ObSchemaMgrHandle6revertEv:781 + 2: 19 + 3.1: 6 + 4.1: 6 + 5: 6 + 5.1: 6 + 6: 6 + 6.1: 6 + 7: 0 + 8.1: 0 + 14: 6 + 15: 6 + 65515: 19 + 6.1: _ZN9oceanbase6common16ObClockGenerator8getClockEv:102 + 4: 6 + 5.1: 0 + 8: 6 + 6: _ZN9oceanbase6common16ObClockGenerator6get_usEv:0 + 2: 0 +_ZN9oceanbase4palf17LogIOFlushLogTaskD2Ev:1158:11 + 1: 9 + 3: 11 _ZN9oceanbase4palf11LogWriteBufD1Ev:11 + 3.1: 0 + 3.2: 0 + 3.3: 11 _ZN9oceanbase4palf13FlushLogCbCtxD1Ev:11 + 3.5: 0 + 2: _ZN9oceanbase4palf17LogIOFlushLogTask7destroyEv:662 + 2: 9 + 3: 9 + 4: 9 _ZN9oceanbase4palf11LogWriteBuf5resetEv:9 + 6.1: 10 _ZZN9oceanbase4palf17LogIOFlushLogTask7destroyEvENK5$_665clEPKc.1598dc2348996c1ae1caea6120522988:10 + 5: _ZN9oceanbase4palf13FlushLogCbCtx5resetEv:406 + 3: 9 + 4: 9 _ZN9oceanbase4palf3LSN5resetEv:9 + 5: 10 + 7: 10 +_ZN9oceanbase4palf17LogIOFlushLogTaskD1Ev:1158:11 + 1: 9 + 3: 11 _ZN9oceanbase4palf11LogWriteBufD1Ev:11 + 3.1: 0 + 3.2: 0 + 3.3: 11 _ZN9oceanbase4palf13FlushLogCbCtxD1Ev:11 + 3.5: 0 + 2: _ZN9oceanbase4palf17LogIOFlushLogTask7destroyEv:662 + 2: 9 + 3: 9 + 4: 9 _ZN9oceanbase4palf11LogWriteBuf5resetEv:9 + 6.1: 10 _ZZN9oceanbase4palf17LogIOFlushLogTask7destroyEvENK5$_665clEPKc.1598dc2348996c1ae1caea6120522988:10 + 5: _ZN9oceanbase4palf13FlushLogCbCtx5resetEv:406 + 3: 9 + 4: 9 _ZN9oceanbase4palf3LSN5resetEv:9 + 5: 10 + 7: 10 +_ZN9oceanbase3sql18ObBasicSessionInfo22deep_copy_sys_variableERNS_5share13ObBasicSysVarENS2_17ObSysVarClassTypeERKNS_6common5ObObjE:1158:6 + 3: 6 + 4: 6 + 6: 6 + 7: 0 + 8.1: 0 + 10: 0 + 13: 6 + 14.1: 0 + 16: 0 + 18: 6 + 19: 0 + 19.1: 0 + 22: 6 _ZN9oceanbase5share13ObBasicSysVar9set_valueERKNS_6common5ObObjE:6 + 27: 6 + 28: 6 + 33: 0 + 33.1: 0 + 34.1: 0 + 36.1: 0 + 39: 0 + 39.1: 0 + 40.1: 0 + 42.1: 0 + 42.2: 0 + 45: 0 + 45.1: 0 + 48: 6 + 5: _ZN9oceanbase6common5ObObjC2Ev:72 + 2: _ZN9oceanbase6common5ObObj5resetEv:72 + 6: 6 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:24 + 0: 6 + 13: _ZN9oceanbase6common12ObStringBufTINS0_19ModulePageAllocatorENS0_9PageArenaIcS2_EEE9write_objERKNS0_5ObObjEPS6_:156 + 7.1: 6 _ZN9oceanbase6common12ob_write_objINS0_9PageArenaIcNS0_19ModulePageAllocatorEEEEEiRT_RKNS0_5ObObjERS7_:6 + 8.1: 0 + 10: 0 + 16: _ZNK9oceanbase6common5ObObj8get_typeEv:102 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:102 + 0: 6 + 16.1: _ZN9oceanbase6common17ob_is_string_typeENS0_9ObObjTypeE:78 + 0: 6 + 0: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:18 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:18 + 2: 6 + 17: _ZN9oceanbase6common5ObObj19set_collation_levelERKNS0_16ObCollationLevelE:24 + 0: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:24 + 0: 6 + 19.2: _ZN9oceanbase6common5ObObj18set_collation_typeERKNS0_15ObCollationTypeE:0 + 0: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:0 + 0: 0 + 28: _ZNK9oceanbase6common12ObStringBufTINS0_19ModulePageAllocatorENS0_9PageArenaIcS2_EEE4usedEv:66 + 2: 6 + 2: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4usedEv:24 + 0: 6 + 32.1: _ZN9oceanbase6common12ObStringBufTINS0_19ModulePageAllocatorENS0_9PageArenaIcS2_EEEC2ERKNS_3lib7ObLabelEl:0 + 4: 0 + 2.3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 38: _ZN9oceanbase6common12ObStringBufTINS0_19ModulePageAllocatorENS0_9PageArenaIcS2_EEE5resetEv:0 + 2: 0 + 42: _ZNK9oceanbase6common12ObStringBufTINS0_19ModulePageAllocatorENS0_9PageArenaIcS2_EEE4usedEv:0 + 2: 0 + 2: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4usedEv:0 + 0: 0 +_ZN9oceanbase4palf7LogTask5resetEv:1155:11 + 1: 11 + 4: 11 + 9: 11 + 2: _ZN9oceanbase4palf15LogSimpleBitMap9reset_allEv:121 + 2: 11 + 3: _ZN9oceanbase4palf17LogTaskHeaderInfo5resetEv:605 + 7: 11 + 12: 11 + 14: 11 + 3: _ZN9oceanbase4palf3LSN5resetEv:198 + 2: 11 + 9: _ZN9oceanbase4palf3LSN5resetEv:121 + 2: 11 +_ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS0_8ObStringElEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEE4freeEPS7_:1144:11 + 1: 11 + 2: 11 + 3: 11 + 4.1: 0 + 6: 11 + 7: 11 + 7.1: 11 + 8.1: 0 + 11: 11 + 12: 11 + 13: 11 + 16.2: 15 + 2: _ZN9oceanbase6common4hash10SpinLockerC2ERVi:88 + 2: 11 + 3.1: 0 + 16.2: _ZN9oceanbase6common4hash10SpinLockerD2Ev:99 + 2: 11 + 3: 11 + 16.3: _ZN9oceanbase6common4hash10SpinLockerD2Ev:0 + 2: 0 + 3: 0 +_ZN9oceanbase3sql17ObMergeDistinctOpC2ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE:1140:5 + 1: 4 _ZN9oceanbase3sql10ObOperatorC2ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE:6 + 2: 5 + 3: 5 + 6: 5 + 7: 5 + 3.1: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:665 + 4: 5 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:575 + 2: 5 + 3: 5 + 4: 5 + 5: 5 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:265 + 0: 5 + 5: _ZN9oceanbase3sql17ObChunkDatumStore13LastStoredRowC2ERNS_6common12ObIAllocatorE:255 + 1: 5 + 2: 5 +_ZN9oceanbase3sql17ObMergeDistinctOpC1ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE:1140:5 + 1: 4 _ZN9oceanbase3sql10ObOperatorC2ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE:6 + 2: 5 + 3: 5 + 6: 5 + 7: 5 + 3.1: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:665 + 4: 5 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:575 + 2: 5 + 3: 5 + 4: 5 + 5: 5 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:265 + 0: 5 + 5: _ZN9oceanbase3sql17ObChunkDatumStore13LastStoredRowC2ERNS_6common12ObIAllocatorE:255 + 1: 5 + 2: 5 +_ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScanner24inner_inner_get_next_rowERPKNS0_10ObDatumRowERbS6_S6_:1140:2 + 2: 1 + 3: 1 + 4: 1 + 5: 1 + 6: 1 + 7: 2 + 13: 2 + 15: 2 + 16: 2 + 17: 2 + 20: 2 + 21.1: 2 + 22: 0 + 23.1: 2 + 23.2: 2 _ZThn320_N9oceanbase12blocksstable18ObMicroBlockReader22get_multi_version_infoEllRNS0_21ObMultiVersionRowFlagERNS_11transaction9ObTransIDERlS7_:2 + 23.3: 2 + 30.1: 0 + 32.2: 2 + 33: 2 + 34: 2 + 36: 2 + 37: 2 + 38: 2 + 40: 2 _ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScanner13lock_for_readERKNS_11transaction16ObLockForReadArgERbRlS6_:3 + 40.1: 2 + 44.1: 0 + 48: 2 + 49.2: 2 + 50.1: 0 + 53: 0 + 54: 0 + 58: 0 + 59.1: 2 + 60: 2 + 61: 2 + 61.1: 2 + 63.1: 2 + 64: 2 + 70.2: 2 + 71: 2 + 72: 0 + 74: 0 + 75.1: 2 + 85: 0 + 87: 2 + 88.1: 2 + 91: 0 + 91.1: 0 + 95: 2 _ZThn320_N9oceanbase12blocksstable18ObMicroBlockReader7get_rowElRNS0_10ObDatumRowE:2 + 95.1: 1 + 96.1: 0 + 97.2: 1 + 98: 0 + 98.2: 0 + 99: 0 + 99.1: 0 + 103.1: 0 + 104.2: 0 + 105: 0 + 109: 2 + 110: 2 + 112: 0 + 112.1: 0 + 114: 2 + 120: 2 + 120.1: 2 + 121: 2 + 124: 0 + 126: 2 + 130: 2 + 132: 2 + 136: 2 + 7: _ZNK9oceanbase12blocksstable23ObIMicroBlockRowScanner12end_of_blockEv:43 + 3: 1 + 6: 1 + 7: 2 + 11: 0 + 11.1: 0 + 12: _ZN9oceanbase12blocksstable21ObMultiVersionRowFlagC2Ev:8 + 0: 2 + 14: _ZN9oceanbase11transaction9ObTransIDC2Ev:16 + 0: 2 + 21: _ZNK9oceanbase6common11ObQueryFlag20is_ignore_trans_statEv:8 + 0: 2 + 23.1: _ZNK9oceanbase7storage15ObTableReadInfo23get_schema_rowkey_countEv:8 + 1: 2 + 32.1: _ZNK9oceanbase12blocksstable21ObMultiVersionRowFlag18is_uncommitted_rowEv:8 + 0: 2 + 35: _ZN9oceanbase11transaction16ObLockForReadArgC2ERNS_8memtable15ObMvccAccessCtxENS0_9ObTransIDElb:62 + 4: 2 + 5: 2 + 6: 2 + 7: 2 + 49.1: _ZN9oceanbase12blocksstable14ObGhostRowUtil12is_ghost_rowERKNS0_21ObMultiVersionRowFlagERb:34 + 4: 2 + 6: 2 + 8: 0 + 9: 0 + 10.1: 0 + 10.2: 0 + 10.6: 0 + 13: 0 + 6: _ZNK9oceanbase12blocksstable21ObMultiVersionRowFlag12is_ghost_rowEv:10 + 0: 2 + 8: _ZNK9oceanbase12blocksstable21ObMultiVersionRowFlag25is_last_multi_version_rowEv:0 + 0: 0 + 59: _ZNK9oceanbase12blocksstable21ObMultiVersionRowFlag25is_last_multi_version_rowEv:0 + 0: 0 + 61: _ZNK9oceanbase6common11ObQueryFlag20is_ignore_trans_statEv:20 + 0: 2 + 70.1: _ZNK9oceanbase12blocksstable21ObMultiVersionRowFlag18is_uncommitted_rowEv:4 + 0: 2 + 88: _ZNK9oceanbase12blocksstable23ObIMicroBlockRowScanner12is_row_emptyERKNS0_10ObDatumRowE:14 + 1: _ZNK9oceanbase12blocksstable12ObDmlRowFlag12is_not_existEv:14 + 2: 2 + 91: _ZNK9oceanbase12blocksstable10ObDatumRow12get_capacityEv:0 + 0: _ZNK9oceanbase12blocksstable20ObStorageDatumBuffer12get_capacityEv:0 + 0: 0 + 92: _ZN9oceanbase11transaction9ObTransID5resetEv:0 + 0: 0 + 97.1: _ZNK9oceanbase12blocksstable12ObDmlRowFlag7is_lockEv:12 + 2: 1 + 98: _ZNK9oceanbase7storage15ObTableReadInfo25get_seq_read_column_countEv:0 + 1: 0 + 98.1: _ZNK9oceanbase7storage15ObTableReadInfo16get_rowkey_countEv:0 + 1: 0 + 104.1: _ZNK9oceanbase12blocksstable10ObDatumRow18is_uncommitted_rowEv:0 + 0: _ZNK9oceanbase12blocksstable21ObMultiVersionRowFlag18is_uncommitted_rowEv:0 + 0: 0 + 106: _ZN9oceanbase12blocksstable12ObDmlRowFlag8set_flagENS0_9ObDmlFlagE:0 + 3: 0 + 112.1: _ZN9oceanbase6common7ObDatum7set_intEl:0 + 0: 0 + 118: _ZN9oceanbase12blocksstable12ObDmlRowFlag8set_flagENS0_9ObDmlFlagE:0 + 3: 0 + 122: _ZN9oceanbase11transaction9ObTransID5resetEv:22 + 0: 2 +_ZN9oceanbase3lib25ObTenantResourceMgrHandle14get_memory_mgrEv:1134:56 + 1: 54 + 3: 54 + 6: 54 +_ZN9oceanbase10logservice13ObApplyStatus29update_palf_committed_end_lsnERKNS_4palf3LSNEl:1133:11 + 2: 11 + 3: 11 + 4: 11 + 5: 0 + 6.1: 0 + 9: 11 _ZN9oceanbase6common8TCRWLock10RLockGuardC2ERS1_:11 + 10: 6 + 12.1: 0 + 13.1: 6 + 13.2: 6 + 14: 6 _ZNK9oceanbase4palf3LSNgeERKS1_:6 + 14.1: 6 + 15.1: 0 + 17: 6 _ZN9oceanbase4palf3LSNaSERKS1_:6 + 18: 6 _ZN9oceanbase10logservice13ObApplyStatus29submit_task_to_apply_service_ERNS0_18ObApplyServiceTaskE:6 + 18.1: 5 + 19.1: 0 + 22.3: 0 + 25: 0 + 26.1: 0 + 28.1: 0 + 31: 5 _ZN9oceanbase6common8TCRWLock10RLockGuardD2Ev:5 + 31.1: 0 + 32.1: 2 _ZZN9oceanbase10logservice13ObApplyStatus29update_palf_committed_end_lsnERKNS_4palf3LSNElENK4$_56clEPKc.d3a41d52a3cfae37a6a74713ee8e7132:2 + 34: 1 +_ZN9oceanbase3omt13ObMultiTenant4run1Ev:1131:0 + 1: 0 + 3.1: 0 + 6: 0 + 7.3: 29 + 7.5: 29 + 8: 29 + 9.1: 0 + 10.2: 29 + 13: 29 _ZN9oceanbase3omt8ObTenant6timeupEv:29 + 17: 0 + 19: 0 + 19.1: 0 + 19.3: 0 + 19.4: 0 + 21.3: 0 + 21.5: 0 + 22: 0 + 23: 0 + 23.1: 0 + 24.1: 0 + 29.1: 0 + 30.5: 0 + 2: _ZN9oceanbase3lib15set_thread_nameEPKc:0 + 3: 0 + 4: 0 + 5: 0 + 7: 0 + 2: _Z12ob_get_tnamev:0 + 8: 0 + 8.1: 0 + 8.1: _ZZ12ob_get_tnamevEN8TNameBufC2Ev:0 + 1: 0 + 9: _ZN9oceanbase3lib21set_thread_name_innerEPKc:0 + 2: 0 + 5: _ZN9oceanbase6common14SpinRLockGuardC2ERKNS0_10SpinRWLockE:0 + 1: 0 + 3: 0 + 4.1: 0 + 3: _ZN9oceanbase6common10SpinRWLock6rdlockEl:0 + 0: 0 + 7: _ZNK9oceanbase6common14ObSortedVectorIPNS_3omt8ObTenantENS0_9PageArenaIS4_NS0_20DefaultPageAllocatorEEEE5beginEv:0 + 0: _ZNK9oceanbase6common8ObVectorIPNS_3omt8ObTenantENS0_9PageArenaIS4_NS0_20DefaultPageAllocatorEEEE5beginEv:0 + 0: 0 + 10.1: _ZNK9oceanbase3omt8ObTenant11has_stoppedEv:203 + 2: 29 + 16: _ZN9oceanbase6common14SpinRLockGuardD2Ev:0 + 2: 0 + 3: 0 + 3.1: 0 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase6common10SpinRWLock6unlockEv:0 + 0: 0 + 16.1: _ZN9oceanbase6common14SpinRLockGuardD2Ev:0 + 2: 0 + 3: 0 + 3.1: 0 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase6common10SpinRWLock6unlockEv:0 + 0: 0 + 19: _ZN9oceanbase6common14ObTscTimestamp12get_instanceEv:0 + 2: 0 + 2.1: 0 + 2.3: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common14ObTscTimestampC2Ev:0 + 1: 0 + 20: _ZN9oceanbase6common14SpinRLockGuardC2ERKNS0_10SpinRWLockE:0 + 1: 0 + 3: 0 + 4.1: 0 + 3: _ZN9oceanbase6common10SpinRWLock6rdlockEl:0 + 0: 0 + 21: _ZNK9oceanbase6common14ObSortedVectorIPNS_3omt8ObTenantENS0_9PageArenaIS4_NS0_20DefaultPageAllocatorEEEE5beginEv:0 + 0: _ZNK9oceanbase6common8ObVectorIPNS_3omt8ObTenantENS0_9PageArenaIS4_NS0_20DefaultPageAllocatorEEEE5beginEv:0 + 0: 0 + 21.2: _ZNK9oceanbase6common14ObSortedVectorIPNS_3omt8ObTenantENS0_9PageArenaIS4_NS0_20DefaultPageAllocatorEEEE3endEv:0 + 0: _ZNK9oceanbase6common8ObVectorIPNS_3omt8ObTenantENS0_9PageArenaIS4_NS0_20DefaultPageAllocatorEEEE3endEv:0 + 0: 0 + 27: _ZN9oceanbase6common14SpinRLockGuardD2Ev:0 + 2: 0 + 3: 0 + 3.1: 0 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase6common10SpinRWLock6unlockEv:0 + 0: 0 + 27.1: _ZN9oceanbase6common14SpinRLockGuardD2Ev:0 + 2: 0 + 3: 0 + 3.1: 0 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase6common10SpinRWLock6unlockEv:0 + 0: 0 +_ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE6revertEPS4_:1129:17 + 2: 16 + 3: 16 + 5: 17 + 3: _ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE6revertEPNS0_12LinkHashNodeIS3_EE:544 + 6: 16 + 6.1: 16 + 6.2: 16 + 7.1: 0 + 10: 16 + 11: 16 _ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE8dec_urefEPNS0_12LinkHashNodeIS3_EE:16 +_ZN9oceanbase6common19ObTableAccessHelper12AccessHelperILi0ELi4EJlNS0_14ObStringHolderES3_S3_EE28get_values_to_tuple_from_rowEPNS0_9sqlclient13ObMySQLResultERA4_PKcRNS0_7ObTupleIJlS3_S3_S3_EEE:1115:3 + 3: 3 + 5: 0 + 6: 0 + 6.1: 1 + 6.2: 1 + 6.4: 0 + 6.5: 0 + 6.6: 1 _ZN9oceanbase6common19ObTableAccessHelper34get_signle_column_from_signle_row_EPNS0_9sqlclient13ObMySQLResultEPKcRl:1 + 7.2: 0 + 7.3: 0 + 7.5: 0 + 7.6: 0 + 7.9: 0 + 7.13: 0 + 9: 0 + 10.5: 0 + 10.6: 0 + 4.2: _ZN9oceanbase6common5occam25get_file_name_without_dirIcLm44EEEPKT_RAT0__S4_m:930 + 3: 33 + 3.3: 32 + 3.4: 32 + 3.7: 0 + 404: 3 + 4.3: _ZN9oceanbase6common5occam16TimeGuardFactory10make_guardEllPKcS4_lS4_:44 + 6: 1 _ZN9oceanbase6common5occam26ObOccamTimeGuardDetectHungC2EjjPKcS4_S4_t:1 + 6.3: _ZSt3getILm0EJlN9oceanbase6common14ObStringHolderES2_S2_EERNSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeERS7_:4 + 1: _ZSt12__get_helperILm0ElJN9oceanbase6common14ObStringHolderES2_S2_EERT0_RSt11_Tuple_implIXT_EJS3_DpT1_EE:4 + 1: _ZNSt11_Tuple_implILm0EJlN9oceanbase6common14ObStringHolderES2_S2_EE7_M_headERS3_:4 + 0: _ZNSt10_Head_baseILm0ElLb0EE7_M_headERS0_:4 + 0: 1 + 7.1: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 7.4: _ZN9oceanbase6common7ObLogKVIiLb0EEC2EPKcRKi:0 + 0: 0 + 7.6: _ZN9oceanbase6common7ObLogKVIPKcLb1EEC2ES3_OKS3_:0 + 0: 0 + 7.7: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 7.8: _ZNK9oceanbase5share12ObTenantBase2idEv:0 + 0: 0 + 7.10: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 + 7.12: _ZN9oceanbase6common7ObLogKVIRKPKcLb0EEC2ES3_S5_:0 + 0: 0 +_ZN9oceanbase3sql18ObBasicSessionInfo30process_session_sql_mode_valueERKNS_6common5ObObjE:1115:5 + 1: 5 + 2: 5 + 3: 5 + 4: 5 + 5: 0 + 6: 0 + 7.1: 0 + 9.1: 5 + 14: 0 + 15.1: 0 + 17: 5 + 18.1: 5 _ZN9oceanbase6common21is_sql_mode_supportedEm:5 + 19: 0 + 20.1: 0 + 20.11: 0 + 20.14: 0 + 21.1: 0 + 25: 5 + 4: _ZNK9oceanbase6common5ObObj14is_string_typeEv:160 + 0: _ZNK9oceanbase6common9ObObjMeta14is_string_typeEv:160 + 0: 5 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:85 + 0: 5 + 0.3: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:30 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:30 + 2: 5 + 5: _ZNK9oceanbase6common5ObObj10get_stringEv:0 + 1: 0 + 1: _ZN9oceanbase6common8ObStringC2ElPKc:0 + 5: 0 + 20.1: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 23: _ZN9oceanbase3sql18ObBasicSessionInfo12set_sql_modeEm:435 + 4: 5 + 5: 5 + 5: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache12get_sql_modeEv:240 + 0: 5 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache12get_sql_modeEb:90 + 0: 5 + 6: _ZN9oceanbase3sql18ObBasicSessionInfo12SysVarsCache12set_sql_modeEm:115 + 0: 5 +easy_sprintf_num.d385e87c688932a1c661f7dac1e442c1:1109:6 + 1: 6 + 8: 6 + 10: 6 + 11: 5 + 15: 13 + 16.1: 13 + 19: 0 + 20.1: 0 + 25: 0 + 26.1: 0 + 31: 0 + 32.1: 0 + 35: 4 + 36: 0 + 37: 0 + 38.1: 0 + 39: 0 + 40: 0 + 45: 4 + 47: 0 + 47.1: 4 + 47.3: 4 + 48: 0 + 53: 4 + 57: 4 +_ZN9oceanbase6common15ObBlockAllocMgr11alloc_blockElRNS_3lib9ObMemAttrE:1109:9 + 0: 9 + 2: 9 + 3: 9 + 4: 9 + 4.1: 9 + 5: 0 + 6: 0 + 6.1: 0 + 6.3: 0 + 6.4: 0 + 7.1: 0 + 9.1: 9 + 10: 0 + 12: 7 + 9.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:290 + 3: 9 _ZN9oceanbase3lib17ObMallocAllocator12get_instanceEv:9 + 4: 9 + 5: 9 _ZN9oceanbase3lib17ObMallocAllocator5allocElRKNS0_9ObMemAttrE:9 + 6: 7 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 9: _ZSt3maxIlERKT_S2_S2_:0 + 5: 0 +_ZN9oceanbase7storage8ObLSLock4lockEll:1100:2 + 1: 2 + 2: 2 + 3: 2 + 6: 2 + 7: 2 + 9.1: 5 + 10: 2 + 11: 0 + 11.1: 0 + 12.1: 0 + 16.1: 2 + 17: 2 _ZN9oceanbase6common7ObLatch6rdlockEjl:2 + 17.1: 5 + 18.1: 0 + 26: 5 + 27: 5 + 28: 5 + 32.3: 2 + 8: _ZN9oceanbase6common11ObTimeGuardC2EPKcl:242 + 2: 2 + 3: 2 + 4: 2 + 6: 2 + 8: 2 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:2 + 2: 2 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:2 + 24: _ZN9oceanbase6common11ObTimeGuard5clickEPKc:340 + 3: 5 + 4: 5 + 5: 5 + 6: 5 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:5 + 2: 5 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:5 + 32.3: _ZN9oceanbase6common11ObTimeGuardD2Ev:37 + 2.1: 2 + 2.2: 0 + 3.1: 0 + 3.5: 0 + 2: _ZNK9oceanbase6common11ObTimeGuard8get_diffEv:19 + 2: 2 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:5 + 2: 5 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:5 + 32.4: _ZN9oceanbase6common11ObTimeGuardD2Ev:0 + 2.1: 0 + 2.2: 0 + 3.1: 0 + 3.5: 0 + 2: _ZNK9oceanbase6common11ObTimeGuard8get_diffEv:0 + 2: 0 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 +_ZN9oceanbase6common19ObTableAccessHelper34get_signle_column_from_signle_row_EPNS0_9sqlclient13ObMySQLResultEPKcRl:1095:1 + 3: 1 + 5: 0 + 6: 0 + 6.1: 1 + 6.2: 1 _ZNK9oceanbase8observer16ObInnerSQLResult7get_intEPKcRl:1 + 6.3: 1 + 6.4: 1 + 7.1: 0 + 7.2: 0 + 7.3: 0 + 7.5: 0 + 7.6: 0 + 7.7: 0 + 7.9: 0 + 7.13: 0 + 9.1: 1 _ZN9oceanbase6common8ObLogger10get_loggerEv:1 + 9.2: 1 _ZN9oceanbase6common8ObLogger13need_to_printEi:1 + 9.3: 0 + 9.5: 0 + 9.6: 0 + 9.7: 0 + 9.9: 0 + 9.15: 0 + 11: 0 + 12.10: 0 + 12.11: 0 + 4.2: _ZN9oceanbase6common5occam25get_file_name_without_dirIcLm44EEEPKT_RAT0__S4_m:924 + 3: 38 + 3.3: 36 + 3.4: 36 + 3.7: 0 + 4.3: _ZN9oceanbase6common5occam16TimeGuardFactory10make_guardEllPKcS4_lS4_:88 + 6: 2 _ZN9oceanbase6common5occam26ObOccamTimeGuardDetectHungC2EjjPKcS4_S4_t:2 + 7.4: _ZN9oceanbase6common7ObLogKVIiLb0EEC2EPKcRKi:0 + 0: 0 + 7.6: _ZN9oceanbase6common7ObLogKVIPKcLb1EEC2ES3_OKS3_:0 + 0: 0 + 7.8: _ZNK9oceanbase5share12ObTenantBase2idEv:0 + 0: 0 + 7.10: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 + 7.12: _ZN9oceanbase6common7ObLogKVIRKPKcLb0EEC2ES3_S5_:0 + 0: 0 + 9.4: _ZN9oceanbase6common7ObLogKVIiLb0EEC2EPKcRKi:0 + 0: 0 + 9.6: _ZN9oceanbase6common7ObLogKVIPKcLb1EEC2ES3_OKS3_:0 + 0: 0 + 9.8: _ZNK9oceanbase5share12ObTenantBase2idEv:0 + 0: 0 + 9.10: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 + 9.12: _ZN9oceanbase6common7ObLogKVIRKPKcLb0EEC2ES3_S5_:0 + 0: 0 + 9.14: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase4palf16LogSlidingWindow12LogTaskGuardD2Ev:1090:18 + 1: 17 + 2.1: 0 + 3: 14 + 2: _ZN9oceanbase4palf16LogSlidingWindow12LogTaskGuard15revert_log_taskEv:788 + 1: 17 + 2: 17 + 2.1: 17 + 3: 16 _ZN9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE6revertEl:16 + 4: 0 + 5: 0 + 6.1: 0 + 9: 14 + 10: 14 + 2.1: _ZN9oceanbase4palf15is_valid_log_idEl:51 + 2: 17 + 5: _ZNK9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE12get_begin_snEv:0 + 0: 0 +_ZN9oceanbase6common8ObMalloc4freeEPv:1078:22 + 0: 22 + 0: _ZN9oceanbase6common7ob_freeEPv:990 + 2: 22 + 3: 22 _ZN9oceanbase3lib17ObMallocAllocator12get_instanceEv:22 + 4: 22 + 5: 22 _ZN9oceanbase3lib17ObMallocAllocator4freeEPv:22 + 75: 22 + 4: _ZL12abort_unlessb:44 + 5: 22 + 6: 0 +_ZN9oceanbase5obrpc18ObRpcProcessorBase11do_responseERKNS1_8ResponseE:1078:3 + 1: 3 + 2: 3 + 3: 3 + 5.1: 3 + 6: 0 + 7.1: 0 + 8.1: 3 + 9: 0 + 10.1: 0 + 24: 3 + 26: 3 + 28: 3 + 29: 3 + 33: 3 + 35: 3 + 36: 3 + 37: 3 + 38: 3 + 39: 3 + 40: 3 + 41: 3 + 42: 0 + 48: 3 + 51: 2 + 54.1: 1 + 54.2: 0 + 54.3: 0 + 54.4: 0 + 54.6: 0 + 54.7: 0 + 55.1: 1 + 55.2: 0 + 55.3: 0 + 55.4: 0 + 55.6: 0 + 55.7: 0 + 57: 1 + 58: 0 + 59: 0 + 61: 1 + 62: 0 + 67: 1 + 68: 0 + 70: 0 + 21: _ZNK9oceanbase5obrpc11ObRpcPacket9get_pcodeEv:9 + 2: 3 + 24: _ZNK9oceanbase5obrpc11ObRpcPacket15unneed_responseEv:12 + 2: 3 + 27: _ZN9oceanbase5obrpc11ObRpcPacket9set_pcodeENS0_15ObRpcPacketCodeE:12 + 2: 3 + 28: _ZNK9oceanbase5obrpc11ObRpcPacket8get_chidEv:18 + 2: 3 + 28.1: _ZN9oceanbase5obrpc11ObRpcPacket8set_chidEj:21 + 2: 3 + 29: _ZN9oceanbase5obrpc11ObRpcPacket14set_session_idEl:12 + 2: 3 + 30: _ZN9oceanbase6common12ObCurTraceId3getEv:75 + 2: _ZN9oceanbase6common12ObCurTraceId12get_trace_idEv:75 + 5: 3 + 5.1: 0 + 5.1: _ZN9oceanbase6common12ObCurTraceId7TraceIdC2Ev:0 + 0: 0 + 30.1: _ZN9oceanbase5obrpc11ObRpcPacket12set_trace_idEPKm:99 + 3: 3 + 5: 3 + 31: _ZN9oceanbase5obrpc11ObRpcPacket8set_respEv:51 + 2: 3 + 33: _ZNK9oceanbase5obrpc11ObRpcPacket18get_src_cluster_idEv:21 + 2: 3 + 33.1: _ZN9oceanbase5obrpc11ObRpcPacket18set_dst_cluster_idEl:21 + 2: 3 + 35: _ZNK9oceanbase3rpc9ObRequest24get_request_arrival_timeEv:21 + 2: 3 + 35.1: _ZN9oceanbase5obrpc11ObRpcPacket24set_request_arrival_timeEl:21 + 2: 3 + 36: _ZNK9oceanbase3rpc9ObRequest21get_arrival_push_diffEv:18 + 2: 3 + 36.1: _ZN9oceanbase5obrpc11ObRpcPacket21set_arrival_push_diffEi:12 + 2: 3 + 37: _ZNK9oceanbase3rpc9ObRequest17get_push_pop_diffEv:18 + 2: 3 + 37.1: _ZN9oceanbase5obrpc11ObRpcPacket17set_push_pop_diffEi:12 + 2: 3 + 38: _ZNK9oceanbase3rpc9ObRequest26get_pop_process_start_diffEv:18 + 2: 3 + 38.1: _ZN9oceanbase5obrpc11ObRpcPacket26set_pop_process_start_diffEi:12 + 2: 3 + 39: _ZNK9oceanbase3rpc9ObRequest26get_process_start_end_diffEv:18 + 2: 3 + 39.1: _ZN9oceanbase5obrpc11ObRpcPacket26set_process_start_end_diffEi:12 + 2: 3 + 40: _ZNK9oceanbase3rpc9ObRequest29get_process_end_response_diffEv:18 + 2: 3 + 40.1: _ZN9oceanbase5obrpc11ObRpcPacket29set_process_end_response_diffEi:12 + 2: 3 + 49: _ZN9oceanbase5obrpc11ObRpcPacket15set_bad_routingEv:0 + 2: 0 + 51: _ZN9oceanbase5obrpc11ObRpcPacket16set_unis_versionEm:14 + 2: 2 + 52: _ZN9oceanbase5obrpc11ObRpcPacket13calc_checksumEv:38 + 2: 2 _ZN9oceanbase6common8ob_crc64EPKvl:2 + 53: _ZNK9oceanbase5obrpc11ObRpcPacket8get_clenEv:14 + 2: 2 + 54.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:6 + 2: 2 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:2 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:4 + 2: 1 + 55.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:5 + 2: 1 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:1 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:4 + 2: 1 + 57: _ZNK9oceanbase5obrpc11ObRpcPacket17ratelimit_enabledEv:4 + 2: 1 + 58: _ZN9oceanbase3rpc9ObRequest24enable_request_ratelimitEv:0 + 2: 0 + 3.1: 0 + 5: 0 + 6: 0 + 59: _ZN9oceanbase3rpc9ObRequest24set_request_opacket_sizeEl:0 + 2: 0 + 3.1: 0 + 5: 0 + 61: _ZNK9oceanbase5obrpc11ObRpcPacket18is_background_flowEv:4 + 2: 1 + 62: _ZN9oceanbase3rpc9ObRequest27set_request_background_flowEv:0 + 2: 0 + 3.1: 0 + 5: 0 + 67: _ZN9oceanbase3rpc20ObRpcRequestOperator15response_resultEPNS0_9ObRequestEPNS_5obrpc11ObRpcPacketE:24 + 1: 1 _ZN9oceanbase3rpc20ObRpcRequestOperator12get_operatorEPKNS0_9ObRequestE:1 + 1.1: 1 _ZN9oceanbase5obrpc24ObEasyRpcRequestOperator15response_resultEPNS_3rpc9ObRequestEPNS0_11ObRpcPacketE:1 +_ZN9oceanbase3sql13AllocOpHelperILi11EE5allocERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputElRPNS0_10ObOperatorE:1071:7 + 3: 5 + 4: 5 + 7: 5 + 8: 5 + 9: 0 + 10.1: 0 + 12.1: 5 + 13: 0 + 14.1: 0 + 16: 5 + 17: 5 _ZN9oceanbase6common16ObArenaAllocator5allocEl:6 + 18: 6 + 19: 0 + 20.1: 0 + 22: 6 + 23: 5 _ZN9oceanbase3sql17ObMergeDistinctOpC1ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE:5 + 25.1: 5 + 33: 5 + 24: _ZN9oceanbase3sql10ObOperator20set_children_pointerEPPS1_j:255 + 7: 5 + 8: 5 + 9: 5 + 10: 5 + 12: 0 + 14: 5 + 15: 0 + 17: 5 +_ZN9oceanbase5share6schema19ObSchemaGetterGuard5resetEv:1067:7 + 1: 6 + 3: 6 + 4: 6 + 6: 6 + 10: 6 + 12.1: 6 + 12.3: 1 + 20: 7 + 21: 7 + 4: _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema19ObSchemaGetterGuard9SchemaObjELl2ENS0_19ModulePageAllocatorELb0EE5resetEv:48 + 0: 6 _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema19ObSchemaGetterGuard9SchemaObjELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv:6 + 13: _ZN9oceanbase6common12ObIArrayWrapINS_5share6schema15ObSchemaMgrInfoEE2atEl:14 + 6: 1 + 13.1: _ZN9oceanbase5share6schema15ObSchemaMgrInfo5resetEv:88 + 2: 1 + 4: 1 + 5: 1 _ZN9oceanbase5share6schema17ObSchemaMgrHandle5resetEv:1 + 6: _ZN9oceanbase5share6schema21ObRefreshSchemaStatus5resetEv:22 + 2: 1 + 4: 1 + 15: _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema15ObSchemaMgrInfoELl2ENS0_19ModulePageAllocatorELb0EE5resetEv:66 + 0: 6 _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema15ObSchemaMgrInfoELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv:6 + 16: _ZN9oceanbase6common16ObArenaAllocator5reuseEv:247 + 0: 6 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE5reuseEv:223 + 2: 6 _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16free_large_pagesEv:7 + 3: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE10fast_reuseEv:217 + 2: 7 + 3: 7 + 4: 7 + 7: 7 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page5reuseEv:0 + 2: 0 +_ZN9oceanbase6common6DCHashINS_4palf5LSKeyELl8EE15do_pending_taskEPNS0_7DCArrayE:1065:15 + 0: 15 + 2: 15 + 5: 15 + 5.1: 0 + 6: 15 + 7: 0 + 8: 0 + 10: 0 + 11: 0 + 18: 15 + 3: _ZN9oceanbase6common7DCArray20copy_from_prev_arrayEPNS0_8HashNodeEl:105 + 4: 15 + 5: 0 + 5.1: 0 + 6: 0 + 6.1: 0 + 7.1: 0 + 7.3: 0 + 8: 0 + 10: 0 + 6.1: _ZN9oceanbase6common7DCArray17is_parent_retiredEv:0 + 0: 0 + 7: _ZN9oceanbase6common10ObSpinLock7trylockEv:0 + 2: 0 + 14: _ZN9oceanbase6common10ObSpinLock6unlockEv:0 + 2: 0 +_ZNK9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS_3sql11ObPlanCacheEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE18foreach_refactoredINS4_18ObPlanCacheManager18ObGetAllCacheKeyOpEEEiRT_:1064:0 + 1: 0 + 2: 0 + 5: 0 + 5.1: 0 + 6.1: 0 + 7: 0 + 9.1: 10 + 9.2: 10 + 9.3: 10 + 9.5: 10 + 10: 10 + 13: 10 + 14.1: 10 + 14.3: 10 + 16: 0 + 16.1: 0 + 17.1: 0 + 19: 0 + 22.1: 0 + 24: 0 + 5: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImPNS_3sql11ObPlanCacheEEENS0_7ObLatchENS1_5NCondEEEEEbRKT_:0 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImPNS_3sql11ObPlanCacheEEENS0_7ObLatchENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:0 + 2: 0 + 12: _ZN9oceanbase6common4hash16ObBucketLockCondINS1_11HashMapPairImPNS_3sql11ObPlanCacheEEENS1_24LatchReadWriteDefendModeEE4lockEv:110 + 2: 10 + 12.1: _ZN9oceanbase6common4hash15LatchReadLockerC2ERNS0_7ObLatchE:460 + 0: 10 + 3: 10 _ZN9oceanbase6common7ObLatch6rdlockEjl:10 + 4.1: 0 + 6: 10 + 7: 10 + 15: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_11HashMapPairImPNS_3sql11ObPlanCacheEEEE16check_magic_codeEv:0 + 0: 0 + 15.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 22: _ZN9oceanbase6common4hash15LatchReadLockerD2Ev:144 + 2: 12 + 3: 12 _ZN9oceanbase6common7ObLatch6unlockEPKj:12 + 3.1: 0 +_ZN9oceanbase6common14ObKVCacheStore24compute_tenant_wash_sizeEv:1064:0 + 1: 0 + 2: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 15: 0 + 17: 0 + 18: 0 + 18.1: 0 + 19: 0 + 21: 0 + 22.1: 0 + 23.1: 0 + 24.1: 0 + 28.1: 0 + 28.2: 0 + 28.3: 0 + 28.5: 0 + 29: 0 + 30.1: 0 + 31.1: 0 + 34: 0 + 35: 0 + 36: 0 + 38.1: 0 + 40.1: 0 + 41.1: 0 + 42.1: 0 + 43.1: 0 + 45: 0 + 46: 0 + 50: 0 + 52.1: 0 + 52.2: 0 + 52.3: 0 + 53: 0 + 54: 0 + 55: 0 + 56.1: 0 + 57.1: 0 + 59: 0 + 61.1: 0 + 64: 0 + 65: 0 + 70: 0 + 70.1: 0 + 70.3: 0 + 71: 0 + 72: 0 + 73: 0 + 74: 0 + 75: 0 + 76: 0 + 77: 0 + 79: 0 + 80: 0 + 81: 0 + 85: 0 + 86: 0 + 89: 0 + 90: 0 + 93: 0 + 94: 0 + 97: 0 + 98: 0 + 103: 0 + 104: 0 + 104.1: 1 + 104.3: 1 + 104.4: 1 _ZN9oceanbase6common22ObFixedHashMapIteratorImPNS0_14ObKVCacheStore14TenantWashInfoENS0_4hash9hash_funcImEEEppEv:1 + 105: 1 + 106: 1 + 108: 1 + 109: 1 + 113: 0 + 114: 0 + 115: 0 + 116: 0 + 117: 0 + 119: 0 + 124: 0 + 125: 0 + 126: 0 + 132: 1 + 133: 1 + 134: 0 + 135.1: 0 + 138: 1 + 140: 1 + 141: 1 + 146: 0 + 146.1: 0 + 148: 0 + 151.1: 0 + 151.2: 0 + 151.3: 0 + 152: 0 + 153: 0 + 154: 0 + 155.1: 0 + 156.1: 0 + 157: 0 + 158: 0 + 159: 0 + 160: 0 + 161.1: 0 + 165: 0 + 169.1: 0 + 171: 0 + 16: _ZN9oceanbase6common22ObFixedHashMapIteratorImPNS0_14ObKVCacheStore14TenantWashInfoENS0_4hash9hash_funcImEEEC2Ev:0 + 0: 0 + 29: _ZNK9oceanbase6common16ObFixedArrayImplImNS0_16ObArenaAllocatorEE2atElRm:0 + 3: 0 + 6: 0 + 6: _ZN9oceanbase6common11copy_assignImEEiRT_RKS2_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapImEEiRT_RKS2_NS0_8BoolTypeILb0EEE:0 + 2: 0 + 40.1: _ZN9oceanbase6common10ObFreeHeapINS0_14ObKVCacheStore14TenantWashInfoEE4sbrkERPS3_:0 + 3: 0 + 53: _ZN9oceanbase6common12ObIArrayWrapINS0_19ObKVCacheInstHandleEE2atEl:0 + 6: 0 + 53.1: _ZN9oceanbase6common19ObKVCacheInstHandle8get_instEv:0 + 0: 0 + 70.4: _ZN9oceanbase6common22ObFixedHashMapIteratorImPNS0_14ObKVCacheStore14TenantWashInfoENS0_4hash9hash_funcImEEEppEv:899 + 2: 0 + 3.1: 0 + 4.1: 0 + 4.2: 0 + 7: 0 + 7.1: 31 + 8: 31 + 9: 0 + 14: 0 + 70.5: _ZNK9oceanbase6common22ObFixedHashMapIteratorImPNS0_14ObKVCacheStore14TenantWashInfoENS0_4hash9hash_funcImEEEneERKS8_:0 + 2: 0 + 104.5: _ZNK9oceanbase6common22ObFixedHashMapIteratorImPNS0_14ObKVCacheStore14TenantWashInfoENS0_4hash9hash_funcImEEEneERKS8_:7 + 2: 1 + 141: _ZN9oceanbase6common14ObKVCacheStore20is_tenant_wash_validEll:50 + 3: 1 + 8: 1 + 146.1: _ZN9oceanbase6common14ObKVCacheStore20is_global_wash_validEll:0 + 2: 0 + 3: 0 + 8: 0 + 152: _ZN9oceanbase6common12ObIArrayWrapINS0_19ObKVCacheInstHandleEE2atEl:0 + 6: 0 + 152.1: _ZN9oceanbase6common19ObKVCacheInstHandle8get_instEv:0 + 0: 0 + 158: _ZSt3minIlERKT_S2_S2_:0 + 5: 0 +_ZN9oceanbase6common13ObSEArrayImplINS_4palf10LogLearnerELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:1064:14 + 1: 14 + 4.1: 14 + 4.3: 0 + 5: 0 + 9: 14 + 11: 0 + 13: 14 + 15: 14 + 24: 14 + 25: 14 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_4palf10LogLearnerELl1ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.1: 0 + 0.2: 0 +_ZN9oceanbase3sql16ObSQLSessionInfo4initEjmPNS_6common12ObIAllocatorEPKNS2_11ObTZInfoMapElm:1064:2 + 3: 2 + 5: 2 + 8: 2 _ZN9oceanbase3sql18ObBasicSessionInfo4initEjmPNS_6common12ObIAllocatorEPKNS2_11ObTZInfoMapE:2 + 9.1: 0 + 10.1: 1 + 10.2: 0 + 11: 1 + 11.3: 1 _ZN9oceanbase6common4hash9ObHashMapImPNS_2pl16ObPLPackageStateENS1_19NoPthreadDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS5_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE6createElRKNS_3lib7ObLabelESP_mm:1 + 14.1: 0 + 15.1: 0 + 15.2: 1 + 16: 1 + 19.1: 0 + 20.1: 1 + 20.2: 2 + 21: 2 + 24.1: 0 + 26: 2 + 27: 2 + 28: 1 + 30: 2 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:2 + 33: 1 + 34: 1 + 35.1: 0 + 37: 0 + 38: 0 + 41: 0 + 7: _ZN9oceanbase3sql16ObSQLSessionInfo26set_registered_to_deadlockEb:12 + 0: 2 + 10.1: _ZNK9oceanbase3sql18ObBasicSessionInfo20is_acquire_from_poolEv:9 + 0: 1 + 11: _ZN9oceanbase6common4hash14cal_next_primeEl:247 + 7: 1 + 7.3: 1 + 6: _ZSt11lower_boundIPKllET_S2_S2_RKT0_:216 + 9: _ZSt13__lower_boundIPKllN9__gnu_cxx5__ops14_Iter_less_valEET_S5_S5_RKT0_T1_:216 + 8.1: 5 + 10: 5 + 13: 5 + 13: _ZNK9__gnu_cxx5__ops14_Iter_less_valclIPKlS3_EEbT_RT0_:25 + 1: 5 + 11.1: _ZN9oceanbase3lib7ObLabelC2IA11_cEERKT_:14 + 2: _ZN9oceanbase3lib7ObLabelaSILm11EEERS1_RAT__Kc:14 + 4: 1 + 11.2: _ZN9oceanbase3lib7ObLabelC2IA9_cEERKT_:14 + 2: _ZN9oceanbase3lib7ObLabelaSILm9EEERS1_RAT__Kc:14 + 4: 1 + 16: _ZN9oceanbase6common4hash14cal_next_primeEl:0 + 7: 0 + 7.3: 0 + 6: _ZSt11lower_boundIPKllET_S2_S2_RKT0_:0 + 9: _ZSt13__lower_boundIPKllN9__gnu_cxx5__ops14_Iter_less_valEET_S5_S5_RKT0_T1_:0 + 8.1: 0 + 10: 0 + 13: 0 + 13: _ZNK9__gnu_cxx5__ops14_Iter_less_valclIPKlS3_EEbT_RT0_:0 + 1: 0 + 16.3: _ZN9oceanbase6common4hash9ObHashMapImNS_5share15ObSequenceValueENS1_19NoPthreadDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS4_EEEELi65ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE6createElRKNS_3lib7ObLabelESO_mm:0 + 5: 0 + 6: 0 + 6.1: 0 + 4.1: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImNS_5share15ObSequenceValueEEEEELi65ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEE8set_attrERKNS_3lib9ObMemAttrE:0 + 0: _ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocator8set_attrERKNS_3lib9ObMemAttrE:0 + 0: 0 + 5.1: _ZN9oceanbase6common8ObMalloc8set_attrERKNS_3lib9ObMemAttrE:0 + 0: 0 + 6: _ZN9oceanbase6common4hash14cal_next_primeEl:0 + 3: 0 + 7: 0 + 7.3: 0 + 6: _ZSt11lower_boundIPKllET_S2_S2_RKT0_:0 + 9: _ZSt13__lower_boundIPKllN9__gnu_cxx5__ops14_Iter_less_valEET_S5_S5_RKT0_T1_:0 + 8.1: 0 + 10: 0 + 13: 0 + 13: _ZNK9__gnu_cxx5__ops14_Iter_less_valclIPKlS3_EEbT_RT0_:0 + 1: 0 + 20.1: _ZNK9oceanbase3sql18ObBasicSessionInfo20is_acquire_from_poolEv:9 + 0: 1 + 21: _ZN9oceanbase6common4hash14cal_next_primeEl:217 + 7: 1 + 7.3: 1 + 6: _ZSt11lower_boundIPKllET_S2_S2_RKT0_:200 + 9: _ZSt13__lower_boundIPKllN9__gnu_cxx5__ops14_Iter_less_valEET_S5_S5_RKT0_T1_:200 + 8.1: 1 + 10: 1 + 13: 1 + 13: _ZNK9__gnu_cxx5__ops14_Iter_less_valclIPKlS3_EEbT_RT0_:33 + 1: 1 + 21.3: _ZN9oceanbase6common4hash9ObHashMapINS0_8ObStringEPNS_3sql17ObInnerContextMapENS1_19NoPthreadDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_S6_EEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl2EE6createElRKNS_3lib7ObLabelESQ_mm:310 + 4: 1 + 5: 1 + 6: 1 + 6.1: 1 _ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_PNS_3sql17ObInnerContextMapEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS8_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS8_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl2EE6createElPSK_PSN_:1 + 4.1: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS0_8ObStringEPNS_3sql17ObInnerContextMapEEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEE8set_attrERKNS_3lib9ObMemAttrE:41 + 0: _ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocator8set_attrERKNS_3lib9ObMemAttrE:41 + 0: 1 + 5.1: _ZN9oceanbase6common8ObMalloc8set_attrERKNS_3lib9ObMemAttrE:39 + 0: 1 + 6: _ZN9oceanbase6common4hash14cal_next_primeEl:200 + 3: 1 + 7: 1 + 7.3: 1 + 6: _ZSt11lower_boundIPKllET_S2_S2_RKT0_:181 + 9: _ZSt13__lower_boundIPKllN9__gnu_cxx5__ops14_Iter_less_valEET_S5_S5_RKT0_T1_:181 + 8.1: 1 + 10: 1 + 13: 1 + 13: _ZNK9__gnu_cxx5__ops14_Iter_less_valclIPKlS3_EEbT_RT0_:24 + 1: 1 + 27: _ZNK9oceanbase3sql18ObBasicSessionInfo15is_obproxy_modeEv:18 + 0: 2 +_ZN9oceanbase5share6schema19ObSchemaGetterGuard10get_schemaINS1_19ObSysVariableSchemaEEEiNS1_12ObSchemaTypeEmmRPKT_l:1060:1 + 6: 1 + 7: 1 + 8: 1 + 9: 1 + 10: 1 + 11: 1 _ZN9oceanbase6common15ObKVCacheHandleC1Ev:1 + 13: 1 + 15.1: 1 + 16: 0 + 17.1: 0 + 18.1: 1 + 18.3: 0 + 19: 0 + 20.1: 0 + 21.2: 1 + 22: 0 + 23.1: 0 + 25.1: 1 _ZN9oceanbase5share6schema16is_normal_schemaENS1_12ObSchemaTypeE:1 + 26: 2 + 27: 0 + 28.1: 0 + 29.1: 2 _ZN9oceanbase5share6schema19ObSchemaGetterGuard20get_from_local_cacheINS1_19ObSysVariableSchemaEEEiNS1_12ObSchemaTypeEmmRPKT_:2 + 29.2: 4 + 31.1: 0 + 33.1: 4 _ZNK9oceanbase5share6schema19ObSchemaGetterGuard14get_schema_mgrEmRPKNS1_11ObSchemaMgrE:4 + 33.2: 3 + 34.1: 0 + 35.1: 3 + 37: 3 + 38: 0 + 39.1: 0 + 41: 3 + 42: 0 + 43.1: 3 _ZN9oceanbase5share6schema19ObSchemaGetterGuard18get_schema_versionENS1_12ObSchemaTypeEmmRl:3 + 43.2: 1 + 47.1: 0 + 50: 0 + 51: 1 + 52.1: 0 + 53.1: 0 + 56.1: 1 _ZN9oceanbase5share6schema19ObSchemaGetterGuard17get_schema_statusEmRNS1_21ObRefreshSchemaStatusE:1 + 56.2: 1 + 57.1: 0 + 58.1: 2 _ZN9oceanbase5share6schema27ObMultiVersionSchemaService10get_schemaEPKNS1_11ObSchemaMgrERKNS1_21ObRefreshSchemaStatusENS1_12ObSchemaTypeEmlRNS_6common15ObKVCacheHandleERPKNS1_8ObSchemaE:1 + 58.2: 2 + 65.1: 0 + 67.1: 2 + 68: 0 + 69.1: 0 + 71.1: 2 _ZN9oceanbase5share6schema19ObSchemaGetterGuard18put_to_local_cacheINS1_8ObSchemaEEEiNS1_12ObSchemaTypeEmmRPKT_RNS_6common15ObKVCacheHandleE:2 + 71.2: 4 + 73.1: 0 + 83.1: 0 + 85: 0 + 86: 0 + 87.1: 0 + 89.2: 0 + 89.4: 0 + 92: 0 + 92.1: 0 + 93: 0 + 93.1: 0 + 94: 0 + 95.1: 0 + 96.1: 0 + 97: 0 + 98.1: 0 + 99.1: 0 + 99.2: 0 + 100.1: 0 + 103: 0 + 105: 0 + 106.1: 0 + 106.2: 0 + 107.1: 0 + 108.1: 0 + 108.2: 0 + 116.1: 0 + 118.1: 0 + 120.1: 0 + 120.2: 0 + 122.1: 0 + 130: 4 + 130.1: 0 + 131: 4 + 132.1: 0 + 133: 0 + 134: 0 + 135: 0 + 136.1: 0 + 138: 0 + 138.3: 0 + 140: 0 + 141: 0 + 141.1: 0 + 142: 0 + 143.1: 0 + 145.1: 0 + 146.1: 0 + 148: 0 + 152: 0 + 153.27: 5 _ZN9oceanbase6common15ObKVCacheHandleD1Ev:5 + 153.28: 0 + 12: _ZN9oceanbase5share6schema21ObRefreshSchemaStatusC2Ev:19 + 0: 1 + 2: 1 + 15: _ZNK9oceanbase5share6schema19ObSchemaGetterGuard16check_inner_statEv:37 + 2: 1 + 3: 1 + 4: 0 + 5.1: 0 + 6.1: 1 + 6.2: 1 + 7: 1 + 7.1: 1 + 8: 0 + 9.1: 0 + 11: 1 + 18.2: _ZN9oceanbase6common13is_sys_tenantEm:0 + 2: 0 + 52: _ZN9oceanbase6common12is_cte_tableEm:0 + 2: 0 + 89.1: _ZN9oceanbase5share6schema19ObSchemaGetterGuard17use_schema_statusEv:0 + 0: 0 + 0: _ZN9oceanbase5share6schema19ObSchemaGetterGuard18is_standby_clusterEv:0 + 0: 0 + 0.1: _ZN9oceanbase5share6schema19ObSchemaGetterGuard20restore_tenant_existEv:0 + 0: 0 + 89.3: _ZN9oceanbase6common13is_sys_tenantEm:0 + 2: 0 +_ZN9oceanbase5share15ObCharsetSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:1057:9 + 10: 7 + 11: 7 + 5: _ZN9oceanbase5share13ObBasicSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKS1_RKNS_6common5ObObjERSB_EPFiS4_S7_S9_SD_EPFiRNSA_12ObIAllocatorERKNS2_18ObBasicSessionInfoES9_SE_EPFiSK_SN_S9_RNSA_8ObStringEEPFNSA_9ObObjTypeEvEb:917 + 11: 7 + 12: 7 + 13: 7 + 14: 7 + 15: 7 + 16: 7 + 17: 7 + 18: 7 + 20: _ZN9oceanbase5share13ObBasicSysVar11clean_valueEv:602 + 2: _ZN9oceanbase5share13ObBasicSysVar16clean_base_valueEv:168 + 2: 7 + 3: _ZN9oceanbase6common5ObObj13set_nop_valueEv:112 + 2: _ZN9oceanbase6common5ObObj7set_extEl:112 + 4: 7 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:56 + 0: 7 + 3: _ZN9oceanbase5share13ObBasicSysVar15clean_inc_valueEv:147 + 2: _ZN9oceanbase6common5ObObj13set_nop_valueEv:147 + 2: _ZN9oceanbase6common5ObObj7set_extEl:147 + 4: 7 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:56 + 0: 7 + 4: _ZN9oceanbase6common5ObObj5resetEv:84 + 6: 7 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:28 + 0: 7 + 5: _ZN9oceanbase6common5ObObj5resetEv:203 + 5: 7 + 6: 7 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:28 + 0: 7 + 3: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:42 + 0: 7 + 4: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:28 + 0: 7 +_ZZN9oceanbase4palf11PalfEnvImpl20get_palf_handle_implElRPNS0_14PalfHandleImplEENK5$_689clEPKc.0e4bf25207570af14a78557c8489c4fc:1056:16 + 0: 16 + 0.1: 0 + 0.2: 16 + 0.3: 16 _ZN9oceanbase6common8ObLogger13need_to_printEmi:17 + 0.8: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:272 + 2: 16 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS0_6ObAddrELb0EEC2EPKcS4_:0 + 0: 0 + 0.7: _ZN9oceanbase6common7ObLogKVIPKvLb1EEC2EPKcOKS3_:0 + 0: 0 +_ZN9oceanbase6common12ob_write_objINS0_9PageArenaIcNS0_19ModulePageAllocatorEEEEEiRT_RKNS0_5ObObjERS7_:1052:6 + 1: 6 + 2: 6 + 4: 6 + 5: 6 _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE5allocEl:6 + 6: 7 + 7: 7 + 8: 0 + 9.1: 0 + 10.1: 8 _ZN9oceanbase6common5ObObj9deep_copyERKS1_PclRl:7 + 11.1: 0 + 14: 0 + 16: 8 + 3: _ZNK9oceanbase6common5ObObj14need_deep_copyEv:294 + 3: 0 + 4: 0 + 6.2: 6 + 6.3: 6 + 7: 6 + 8: 0 + 8.1: 0 + 8.2: 0 + 2: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:120 + 0: 6 + 2.2: _ZN9oceanbase6common17ob_is_string_typeENS0_9ObObjTypeE:66 + 0: 6 + 0: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:54 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:54 + 2: 6 + 7.3: _ZN9oceanbase6common15ob_is_number_tcENS0_9ObObjTypeE:0 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:0 + 2: 0 + 4: _ZNK9oceanbase6common5ObObj18get_deep_copy_sizeEv:72 + 3: 0 + 4: 6 + 5.1: 0 + 6: 0 + 3: _ZNK9oceanbase6common5ObObj14is_string_typeEv:48 + 0: _ZNK9oceanbase6common9ObObjMeta14is_string_typeEv:48 + 0: 6 + 5.2: _ZN9oceanbase6common15ob_is_number_tcENS0_9ObObjTypeE:0 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:0 + 2: 0 +_ZNK9oceanbase4palf12LogConfigMgr17get_children_listERNS_6common15BaseLearnerListILl15ENS0_10LogLearnerEEE:1041:9 + 1: 9 + 2: 9 + 4: 9 + 5: 9 + 6: 0 + 7.1: 9 + 7.2: 6 + 8.1: 0 + 12: 0 + 13.2: 5 + 13.3: 0 + 4: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEEC2ERS3_:261 + 1: 9 + 4: 9 + 5.1: 0 + 4: _ZN9oceanbase6common10ObSpinLock4lockEv:162 + 2: 9 _ZN9oceanbase6common12ObLatchMutex4lockEjl:11 + 7.1: _ZN9oceanbase6common15BaseLearnerListILl15ENS_4palf10LogLearnerEE9deep_copyERKS4_:99 + 3: 9 _ZN9oceanbase6common15BaseLearnerListILl15ENS_4palf10LogLearnerEE6appendERKS4_:9 + 2: _ZN9oceanbase6common15BaseLearnerListILl15ENS_4palf10LogLearnerEE5resetEv:63 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_4palf10LogLearnerELl1ENS0_19ModulePageAllocatorELb0EE5resetEv:63 + 0: 9 _ZN9oceanbase6common13ObSEArrayImplINS_4palf10LogLearnerELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:9 + 13.2: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEED2Ev:101 + 2: 6 + 3: 6 + 3.1: 5 + 4.1: 0 + 3: _ZN9oceanbase6common10ObSpinLock6unlockEv:6 + 2: 6 _ZN9oceanbase6common12ObLatchMutex6unlockEv:7 +_ZN9oceanbase6common16ObFixedArrayImplIPNS_4palf17LogIOFlushLogTaskENS0_12ObIAllocatorEE9push_backERKS4_:1035:11 + 1: 9 + 2: 9 + 3: 9 + 4: 9 + 5: 0 + 6.1: 0 + 6.5: 0 + 6.7: 0 + 9: 0 + 10.1: 0 + 10.5: 0 + 10.9: 0 + 12.1: 9 + 13: 0 + 14.1: 0 + 14.5: 0 + 14.11: 0 + 16: 9 + 17: 9 + 19: 9 + 23: 0 + 33: 9 + 6.1: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 6.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 10.1: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 10.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 10.8: _ZN9oceanbase6common7ObLogKVIRKjLb0EEC2EPKcS3_:0 + 0: 0 + 14.1: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 14.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 14.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 14.10: _ZN9oceanbase6common7ObLogKVIRKjLb0EEC2EPKcS3_:0 + 0: 0 + 19: _ZN9oceanbase6common16construct_assignIPNS_4palf17LogIOFlushLogTaskEEEiRT_RKS5_:63 + 2: _ZN9oceanbase6common21construct_assign_wrapIPNS_4palf17LogIOFlushLogTaskEEEiRT_RKS5_NS0_8BoolTypeILb0EEE:63 + 2: 9 +_ZN9oceanbase4palf11LogStateMgr19need_update_leader_ERNS_6common6ObAddrE:1034:7 + 1: 7 + 2: 7 + 3: 7 + 4: 7 + 6: 3 + 8.1: 0 + 10: 0 + 11: 0 + 12.1: 0 + 16: 3 + 16.1: 3 + 17: 0 + 18.1: 0 + 23: 3 + 6: _ZNK9oceanbase4palf11LogStateMgr17get_elect_leader_ERNS_6common6ObAddrERl:525 + 3: 7 + 5: 7 + 7.1: 7 _ZNK9oceanbase4palf8election12ElectionImpl25get_current_leader_likelyERNS_6common6ObAddrERl:8 + 11.1: 0 + 15: 0 + 4: _ZN9oceanbase6common6ObAddrC2Ev:133 + 1: 7 + 8: _ZN9oceanbase6common6ObAddraSERKS1_:60 + 1: 3 + 2: 3 + 3: 3 + 16: _ZNK9oceanbase6common6ObAddrneERKS1_:150 + 2: _ZNK9oceanbase6common6ObAddreqERKS1_:150 + 2: 3 + 2.1: 3 + 2.2: 3 +_ZN9oceanbase6common11ObObjCaster7to_typeENS0_9ObObjTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS5_RPS6_:1033:6 + 2: 6 + 3: 6 + 4: 6 + 5: 6 + 7: 5 + 8: 6 + 10: 5 + 11: 5 + 12.1: 1 + 12.2: 0 + 13: 1 + 13.1: 1 + 15: 1 + 16.1: 0 + 16.2: 0 + 18: 0 + 20: 0 + 21.1: 1 + 21.2: 1 + 21.6: 1 _ZN9oceanbase6common11ObObjCaster7to_typeENS0_9ObObjTypeENS0_15ObCollationTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS6_:1 + 29.1: 0 + 31: 1 + 33: 6 + 6: _ZNK9oceanbase6common5ObObj8get_typeEv:102 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:102 + 0: 6 + 7: _ZN9oceanbase6common17ob_is_string_typeENS0_9ObObjTypeE:229 + 0: 6 + 0: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:48 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:48 + 2: 6 + 0.1: _ZN9oceanbase6common13ob_is_text_tcENS0_9ObObjTypeE:110 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:110 + 2: 5 + 12.1: _ZNK9oceanbase6common5ObObj18get_collation_typeEv:6 + 0: _ZNK9oceanbase6common9ObObjMeta18get_collation_typeEv:6 + 0: 1 + 19.1: _ZN9oceanbase6common9ObObjMeta15set_type_simpleERKNS0_9ObObjTypeE:0 + 2: 0 + 21.2: _ZN9oceanbase3lib13is_mysql_modeEv:43 + 2: _ZN9oceanbase3lib15get_compat_modeEv:43 + 2: 1 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:27 + 2: 1 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 +_ZNK9oceanbase8observer16ObInnerSQLResult8get_uintEPKcRm:1031:7 + 0: 7 + 0.1: 0 + 0.2: 0 + 0.5: 7 + 0.6: 0 + 0.7: 0 + 0.10: 11 _ZNK9oceanbase8observer16ObInnerSQLResult8find_idxEPKcRl:7 + 0.12: 0 + 0.14: 0 + 0.17: 11 + 0.18: 0 + 0.19: 0 + 0.22: 11 _ZNK9oceanbase8observer16ObInnerSQLResult8get_uintElRm:11 + 0.25: 0 + 0.29: 10 +_ZZN9oceanbase4palf16LogSlidingWindow28generate_group_entry_header_ElPNS0_7LogTaskERNS0_19LogGroupEntryHeaderERlENK5$_160clEPKc.0e4bf25207570af14a78557c8489c4fc:1030:13 + 0: 13 + 0.1: 0 + 0.2: 13 + 0.3: 12 _ZN9oceanbase6common8ObLogger13need_to_printEmi:12 + 0.19: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:204 + 2: 12 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKNS0_6ObAddrELb0EEC2EPKcS4_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVIRKbLb0EEC2EPKcS3_:0 + 0: 0 + 0.12: _ZN9oceanbase6common7ObLogKVIRKbLb0EEC2EPKcS3_:0 + 0: 0 + 0.14: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.16: _ZN9oceanbase6common7ObLogKVIRKNS_4palf19LogGroupEntryHeaderELb0EEC2EPKcS5_:0 + 0: 0 + 0.17: _ZN9oceanbase6common20ObLogPrintPointerCntIPNS_4palf7LogTaskEEC2ES4_:0 + 0: 0 + 0.18: _ZN9oceanbase6common7ObLogKVINS0_20ObLogPrintPointerCntIPNS_4palf7LogTaskEEELb1EEC2EPKcOKS6_:0 + 0: 0 +_ZNK9oceanbase3lib17ObTenantMemoryMgr12get_ctx_holdEmRl:1029:25 + 1: 21 + 2: 21 + 3: 21 + 4: 0 + 5.1: 0 + 7: 21 + 8: 21 + 9: 0 + 12: 21 +_ZN9oceanbase6common4hash11ObHashTableINS_5share6schema16ObSchemaCacheKeyENS1_11HashMapPairIS5_PKNS4_18ObSchemaCacheValueEEENS1_9hash_funcIS5_EENS1_8equal_toIS5_EENS1_10pair_firstISA_EENS1_13SimpleAllocerINS1_15ObHashTableNodeISA_EELi76ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19ReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKS5_RSA_l:1026:7 + 3: 7 + 5: 7 + 5.1: 7 + 6.1: 0 + 10: 6 + 11: 6 + 17: 8 + 18: 8 _ZN9oceanbase6common4hash11ObHashTableINS_5share6schema16ObSchemaCacheKeyENS1_11HashMapPairIS5_PKNS4_18ObSchemaCacheValueEEENS1_9hash_funcIS5_EENS1_8equal_toIS5_EENS1_10pair_firstISA_EENS1_13SimpleAllocerINS1_15ObHashTableNodeISA_EELi76ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19ReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE32internal_get_with_timeout_unsafeERNS1_17ObHashTableBucketISA_16pthread_rwlock_tNS1_5NCondEEERKS5_RPKSA_l:8 + 18.1: 3 + 19: 3 + 29: 5 + 5: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_5share6schema16ObSchemaCacheKeyEPKNS6_18ObSchemaCacheValueEEE16pthread_rwlock_tNS1_5NCondEEEEEbRKT_:126 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_5share6schema16ObSchemaCacheKeyEPKNS6_18ObSchemaCacheValueEEE16pthread_rwlock_tNS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:126 + 2: 7 + 65464: 7 + 9: _ZNK9oceanbase6common4hash9hash_funcINS_5share6schema16ObSchemaCacheKeyEEclERKS5_:49 + 2: 7 _ZNK9oceanbase5share6schema16ObSchemaCacheKey4hashEv:7 + 14.1: _ZN9oceanbase6common4hash10ReadLockerC2ER16pthread_rwlock_t:72 + 2: 8 + 3.1: 0 + 21: _ZN9oceanbase6common11copy_assignINS0_4hash11HashMapPairINS_5share6schema16ObSchemaCacheKeyEPKNS5_18ObSchemaCacheValueEEEEEiRT_RKSB_:84 + 2: _ZN9oceanbase6common16copy_assign_wrapINS0_4hash11HashMapPairINS_5share6schema16ObSchemaCacheKeyEPKNS5_18ObSchemaCacheValueEEEEEiRT_RKSB_NS0_8BoolTypeILb1EEE:84 + 2: _ZN9oceanbase6common4hash11HashMapPairINS_5share6schema16ObSchemaCacheKeyEPKNS4_18ObSchemaCacheValueEE6assignERKS9_:84 + 3: _ZN9oceanbase6common11copy_assignINS_5share6schema16ObSchemaCacheKeyEEEiRT_RKS5_:60 + 2: _ZN9oceanbase6common16copy_assign_wrapINS_5share6schema16ObSchemaCacheKeyEEEiRT_RKS5_NS0_8BoolTypeILb0EEE:60 + 2: _ZN9oceanbase5share6schema16ObSchemaCacheKeyaSERKS2_:60 + 0: 3 + 5.1: _ZN9oceanbase6common11copy_assignIPKNS_5share6schema18ObSchemaCacheValueEEEiRT_RKS7_:24 + 2: _ZN9oceanbase6common16copy_assign_wrapIPKNS_5share6schema18ObSchemaCacheValueEEEiRT_RKS7_NS0_8BoolTypeILb0EEE:24 + 2: 3 + 28: _ZN9oceanbase6common4hash10ReadLockerD2Ev:27 + 2: 3 + 3: 3 + 28.1: _ZN9oceanbase6common4hash10ReadLockerD2Ev:0 + 2: 0 + 3: 0 +_ZN9oceanbase8observer20ObInnerSQLConnection19set_session_timeoutEll:1022:6 + 1: 6 + 7: 6 + 7.1: 6 _ZN9oceanbase3sql18ObBasicSessionInfo19update_sys_variableENS_5share17ObSysVarClassTypeERKNS_6common5ObObjE:6 + 8.1: 0 + 11: 0 + 15: 10 + 15.1: 10 _ZN9oceanbase3sql18ObBasicSessionInfo19update_sys_variableENS_5share17ObSysVarClassTypeERKNS_6common5ObObjE:6 + 16.1: 0 + 20: 10 + 6: _ZN9oceanbase6common5ObObj7set_intEl:54 + 3: 6 + 2: _ZN9oceanbase6common9ObObjMeta7set_intEv:24 + 0: 6 + 7: _ZN9oceanbase8observer20ObInnerSQLConnection11get_sessionEv:108 + 0: 6 + 14: _ZN9oceanbase6common5ObObj7set_intEl:54 + 3: 6 + 2: _ZN9oceanbase6common9ObObjMeta7set_intEv:24 + 0: 6 + 15: _ZN9oceanbase8observer20ObInnerSQLConnection11get_sessionEv:84 + 0: 6 +_ZZN9oceanbase4palf14LogGroupBuffer11get_log_bufERKNS0_3LSNElRNS0_11LogWriteBufEENK5$_596clEPKc.1598dc2348996c1ae1caea6120522988:1018:13 + 0: 13 + 0.1: 0 + 0.2: 12 + 0.3: 13 _ZN9oceanbase6common8ObLogger13need_to_printEmi:13 + 0.18: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:221 + 2: 13 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS_4palf3LSNELb0EEC2EPKcS5_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.12: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.14: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.15: _ZN9oceanbase6common7ObLogKVIlLb1EEC2EPKcOKl:0 + 0: 0 + 0.17: _ZN9oceanbase6common7ObLogKVIRKNS_4palf11LogWriteBufELb0EEC2EPKcS5_:0 + 0: 0 +_ZN9oceanbase4palf11LogChecksum21verify_accum_checksumEll:1007:9 + 2: 9 + 3: 9 + 4: 9 + 5: 0 + 7: 9 + 8: 9 _ZN9oceanbase6common8ob_crc64EmPKvl:9 + 10: 8 + 11: 0 + 12.1: 0 + 15.1: 8 _ZZN9oceanbase4palf11LogChecksum21verify_accum_checksumEllENK5$_153clEPKc.1598dc2348996c1ae1caea6120522988:8 + 19: 9 +_ZNK9oceanbase10logservice12ObLogHandler10is_in_syncERbS2_:1002:2 + 2: 2 + 3: 2 + 4: 2 + 5: 2 + 6: 2 _ZN9oceanbase4palf3LSNC1Ev:2 + 7: 1 _ZN9oceanbase4palf3LSNC1Ev:1 + 8: 1 _ZN9oceanbase6common8TCRWLock10RLockGuardC2ERS1_:1 + 9: 1 + 10: 0 + 11.1: 1 + 12: 0 + 13.1: 1 _ZNK9oceanbase4palf10PalfHandle11get_end_lsnERNS0_3LSNE:1 + 13.2: 2 + 13.3: 2 _ZNK9oceanbase4palf3LSN8is_validEv:2 + 13.4: 2 + 14.1: 0 + 15.1: 2 _ZNK9oceanbase4palf10PalfHandle20get_last_rebuild_lsnERNS0_3LSNE:2 + 15.2: 2 + 16.1: 0 + 17.1: 2 _ZNK9oceanbase4palf3LSN8is_validEv:2 + 17.2: 2 + 17.3: 0 + 17.4: 0 + 18: 0 + 22: 2 + 23: 2 + 24: 2 + 29: 2 _ZNK9oceanbase4palf10PalfHandle13get_max_ts_nsERl:2 + 29.1: 2 + 31.1: 0 + 32.2: 2 _ZN9oceanbase6common14ObTscTimestamp12current_timeEv:2 + 32.3: 2 + 32.4: 0 + 32.7: 0 + 34: 0 + 34.1: 0 + 35.1: 0 + 38: 2 + 40: 2 + 41: 0 + 42: 0 + 44: 2 + 46.1: 2 _ZZNK9oceanbase10logservice12ObLogHandler10is_in_syncERbS2_ENK5$_212clEPKc.1291a23568de5f940ae06fb9e7354412:2 + 48: 2 + 49.9: 2 + 32.1: _ZN9oceanbase6common14ObTscTimestamp12get_instanceEv:34 + 2: 2 + 2.1: 0 + 2.3: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common14ObTscTimestampC2Ev:0 + 1: 0 + 49.9: _ZN9oceanbase6common8TCRWLock10RLockGuardD2Ev:296 + 0: 2 + 0.2: 0 + 0: _ZN9oceanbase6common8TCRWLock8rdunlockEv:288 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:10 + 0: 2 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPi:236 + 2: 2 + 4.1: 2 + 4.2: 0 + 6: 2 + 6.1: 2 + 10: 2 + 2: _ZN9oceanbase6common8get_itidEv:56 + 4: 2 + 5: 0 + 6: 0 + 8: 0 + 11: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:26 + 2: 2 + 2.1: 0 + 3: 0 + 49.12: _ZN9oceanbase6common8TCRWLock10RLockGuardD2Ev:0 + 0: 0 + 0.2: 0 + 0: _ZN9oceanbase6common8TCRWLock8rdunlockEv:0 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:0 + 0: 0 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPi:0 + 2: 0 + 4.1: 0 + 4.2: 0 + 6: 0 + 6.1: 0 + 10: 0 + 2: _ZN9oceanbase6common8get_itidEv:0 + 4: 0 + 5: 0 + 6: 0 + 8: 0 + 11: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:0 + 2: 0 + 2.1: 0 + 3: 0 +_ZZN9oceanbase4palf16LogSlidingWindow23handle_next_submit_log_ERbENK5$_144clEPKc.0e4bf25207570af14a78557c8489c4fc:1000:15 + 0: 14 + 0.1: 0 + 0.2: 14 + 0.3: 12 _ZN9oceanbase6common8ObLogger13need_to_printEmi:12 + 0.13: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:204 + 2: 12 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKNS0_6ObAddrELb0EEC2EPKcS4_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.11: _ZN9oceanbase6common20ObLogPrintPointerCntIPNS_4palf7LogTaskEEC2ES4_:0 + 0: 0 + 0.12: _ZN9oceanbase6common7ObLogKVINS0_20ObLogPrintPointerCntIPNS_4palf7LogTaskEEELb1EEC2EPKcOKS6_:0 + 0: 0 +_ZN9oceanbase12blocksstableL13get_offset_16EPKvl.8f1e732d6655d093e942b32e16c602d8:1000:100 + 1: 100 +_ZThn320_N9oceanbase12blocksstable21ObMicroBlockGetReader7get_rowERKNS0_16ObMicroBlockDataERKNS0_13ObDatumRowkeyERKNS_7storage15ObTableReadInfoERNS0_10ObDatumRowE:988:78 +_ZN9oceanbase10rootserver24ObTenantRecoveryReportor18update_ls_recoveryEPNS_7storage4ObLSEPNS_6common12ObMySQLProxyE:975:3 + 1: 3 + 2: 3 + 4: 3 + 5: 0 + 6.1: 0 + 8: 3 + 9: 3 + 10: 3 + 11: 3 + 18: 3 _ZN9oceanbase10logservice12ObLogService13get_palf_roleERKNS_5share6ObLSIDERNS_6common6ObRoleERl:3 + 18.1: 4 + 19.1: 0 + 20.1: 4 _ZN9oceanbase6common16is_strong_leaderENS0_6ObRoleE:4 + 20.2: 4 + 22.1: 4 _ZN9oceanbase10rootserver24ObTenantRecoveryReportor15get_sync_point_ERKNS_5share6ObLSIDERlS6_:4 + 22.2: 0 + 23.1: 0 + 25: 0 + 25.1: 0 + 28.1: 0 + 30.1: 0 + 30.2: 1 + 31.1: 0 + 32.1: 1 + 32.2: 1 + 33: 1 _ZN9oceanbase6common16is_strong_leaderENS0_6ObRoleE:1 + 35: 0 + 36.1: 0 + 38.1: 1 _ZN9oceanbase5share24ObLSRecoveryStatOperator23update_ls_recovery_statERKNS0_16ObLSRecoveryStatERNS_6common12ObMySQLProxyE:1 + 38.2: 0 + 40.1: 0 + 45.1: 0 + 45.2: 0 + 45.3: 0 + 45.6: 0 + 46.1: 0 + 52: 0 + 3: _ZN9oceanbase5share11ObTenantEnv3mtlIPNS_10logservice12ObLogServiceEEET_v:57 + 2: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:57 + 2: 3 + 2.1: 0 + 2.2: 0 + 13: _ZN9oceanbase5share16ObLSRecoveryStatC2Ev:147 + 1: 3 + 4: 3 + 6: 3 + 14: _ZNK9oceanbase7storage4ObLS9get_ls_idEv:33 + 0: _ZN9oceanbase5share6ObLSIDC2ERKS1_:33 + 0: 3 + 15.1: _ZNK9oceanbase5share12ObTenantBase2idEv:24 + 0: 3 + 17: _ZN9oceanbase5share24ObLSRecoveryStatOperatorC2Ev:123 + 0.1: 3 + 45: _ZN9oceanbase6common14ObTscTimestamp12get_instanceEv:0 + 2: 0 + 2.1: 0 + 2.3: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common14ObTscTimestampC2Ev:0 + 1: 0 +_ZN9oceanbase6common7do_hashINS_5share6schema24ObTableSchemaHashWrapperEEEmRKT_:972:6 + 1: 6 + 2: _ZN9oceanbase6common13dispatch_hashINS_5share6schema24ObTableSchemaHashWrapperEEEmRKT_NS0_8BoolTypeILb1EEE:834 + 2: _ZNK9oceanbase5share6schema24ObTableSchemaHashWrapper4hashEv:834 + 5: 6 _ZN9oceanbase5share6schema8ObSchema25get_cs_type_with_cmp_modeENS_6common14ObNameCaseModeE:6 + 6: 6 _ZN9oceanbase6common9ObCharset4hashENS0_15ObCollationTypeERKNS0_8ObStringEmbPFmPKvmmE:7 + 3: _ZN9oceanbase6common10murmurhashEPKvim:360 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:360 + 13: 6 + 14: 6 + 15: 6 + 17: 6 + 18: 6 + 41: 6 + 42: 6 + 43: 6 + 4: _ZN9oceanbase6common10murmurhashEPKvim:312 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:312 + 5: 6 + 13: 6 + 14: 6 + 15: 6 + 17: 6 + 18: 6 + 41: 6 + 42: 6 + 43: 6 +_ZN9oceanbase3sql18ObBasicSessionInfo19update_sys_variableERKNS_6common8ObStringES5_:966:3 + 1: 3 + 2: 3 + 4: 3 + 5: 3 _ZN9oceanbase5share15ObSysVarFactory23find_sys_var_id_by_nameERKNS_6common8ObStringEb:3 + 6: 0 + 7.1: 0 + 8.1: 1 + 9.1: 0 + 10.1: 1 + 11: 0 + 12.1: 0 + 16: 1 + 16.2: 0 + 17: 0 + 17.1: 0 + 18: 0 + 19.1: 0 + 20: 0 + 27: 2 _ZN9oceanbase6common9ObCharset20get_system_collationEv:2 + 28: 1 + 32: 1 _ZN9oceanbase6common9ObCharset20get_system_collationEv:1 + 33: 1 + 33.1: 1 _ZN9oceanbase6common11ObObjCaster7to_typeENS0_9ObObjTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS5_RPS6_:1 + 33.2: 1 + 34.1: 0 + 36.1: 1 + 37: 0 + 38.1: 0 + 39.1: 1 _ZN9oceanbase3sql18ObBasicSessionInfo19update_sys_variableENS_5share17ObSysVarClassTypeERKNS_6common5ObObjE:1 + 39.2: 0 + 40.1: 0 + 43: 0 + 8.1: _ZNK9oceanbase3sql18ObBasicSessionInfo17inner_get_sys_varENS_5share17ObSysVarClassTypeERPNS2_13ObBasicSysVarE:17 + 2: 1 + 3: 1 _ZNK9oceanbase3sql18ObBasicSessionInfo17inner_get_sys_varENS_5share17ObSysVarClassTypeERlRPNS2_13ObBasicSysVarE:1 + 16: _ZNK9oceanbase6common8ObString6lengthEv:15 + 0: 1 + 16.1: _ZNK9oceanbase6common8ObStringixEl:0 + 0: 0 + 22.2: _ZN9oceanbase6common8ObString10assign_ptrEPKci:12 + 5: 2 + 25: _ZN9oceanbase6common5ObObjC2Ev:8 + 0: _ZN9oceanbase6common9ObObjMetaC2Ev:8 + 4: 2 + 26: _ZN9oceanbase6common5ObObj11set_varcharERKNS0_8ObStringE:26 + 4: 2 + 5: 2 + 2: _ZN9oceanbase6common9ObObjMeta11set_varcharEv:12 + 0: 2 + 27.1: _ZN9oceanbase6common5ObObj18set_collation_typeERKNS0_15ObCollationTypeE:5 + 0: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:5 + 0: 1 + 29: _ZN9oceanbase6common5ObObjC2Ev:14 + 2: _ZN9oceanbase6common5ObObj5resetEv:14 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:7 + 0: 1 + 30.1: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:138 + 4: 1 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:120 + 2: 1 + 3: 1 + 4: 1 + 5: 1 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:50 + 0: 1 + 31: _ZNK9oceanbase3sql18ObBasicSessionInfo14get_dtc_paramsEv:203 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo17get_timezone_infoEv:11 + 0: _ZNK9oceanbase6common18ObTimeZoneInfoWrap18get_time_zone_infoEv:11 + 0: 1 + 3: _ZNK9oceanbase3sql18ObBasicSessionInfo25get_local_nls_date_formatEv:58 + 2: 1 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache19get_nls_date_formatEv:30 + 0: 1 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache19get_nls_date_formatEb:7 + 0: 1 + 4: _ZNK9oceanbase3sql18ObBasicSessionInfo30get_local_nls_timestamp_formatEv:30 + 2: 1 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_nls_timestamp_formatEv:9 + 0: 1 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_nls_timestamp_formatEb:7 + 0: 1 + 5: _ZNK9oceanbase3sql18ObBasicSessionInfo33get_local_nls_timestamp_tz_formatEv:32 + 2: 1 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache27get_nls_timestamp_tz_formatEv:11 + 0: 1 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache27get_nls_timestamp_tz_formatEb:7 + 0: 1 + 6: _ZNK9oceanbase3sql18ObBasicSessionInfo17get_nls_collationEv:25 + 2: 1 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache17get_nls_collationEv:22 + 0: 1 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache17get_nls_collationEb:18 + 0: 1 + 7: _ZNK9oceanbase3sql18ObBasicSessionInfo24get_nls_collation_nationEv:24 + 2: 1 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_nls_nation_collationEv:22 + 0: 1 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_nls_nation_collationEb:18 + 0: 1 + 8: _ZNK9oceanbase3sql18ObBasicSessionInfo30get_local_collation_connectionEv:23 + 2: 1 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_collation_connectionEv:20 + 0: 1 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_collation_connectionEb:18 + 0: 1 + 32.1: _ZN9oceanbase6common15ObObjCastParamsC2EPNS0_12ObIAllocatorEPKNS0_20ObDataTypeCastParamsEmNS0_15ObCollationTypeEPNS0_10ObAccuracyE:248 + 3: 1 + 4: 1 + 6: 1 + 8: 1 + 9: 1 + 10: 1 + 13: 1 + 18: 1 + 12: _ZN9oceanbase6common20ObDataTypeCastParamsC2Ev:43 + 4: 1 + 6: 1 + 2.1: _ZN9oceanbase6common8ObStringC2Ev:32 + 1: 1 + 16: _ZN9oceanbase6common15ObObjCastParams24set_compatible_cast_modeEv:64 + 2: 1 + 2: _ZN9oceanbase3lib14is_oracle_modeEv:49 + 2: _ZN9oceanbase3lib15get_compat_modeEv:49 + 2: 1 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:33 + 2: 1 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 42: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:0 + 0: 0 + 42.2: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:0 + 0: 0 +_ZN9oceanbase3omt8ObTenant6timeupEv:962:29 + 1: 29 + 3: 29 _ZN9oceanbase3omt8ObTenant27calibrate_group_token_countEv:31 + 4: 24 _ZN9oceanbase3omt8ObTenant24check_group_worker_countEv:24 + 5: 14 _ZN9oceanbase3omt8ObTenant18check_worker_countEv:14 + 6: 10 _ZN9oceanbase3omt8ObTenant18update_token_usageEv:10 + 7: 16 _ZN9oceanbase3omt8ObTenant22calibrate_worker_countEv:16 + 8: 16 _ZN9oceanbase3omt8ObTenant16handle_retry_reqEv:16 + 9: 25 _ZN9oceanbase3omt8ObTenant21calibrate_token_countEv:26 + 10: 28 +_ZN9oceanbase8observer20ObInnerSQLConnection11set_timeoutERlb:957:1 + 1: 1 + 2: 1 + 3: 1 _ZN9oceanbase6common12ObTimeoutCtx7get_ctxEv:1 + 4: 1 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:1 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10.1: 0 + 13: 0 + 14: 2 + 14.1: 0 + 15: 0 + 16.1: 0 + 18: 3 + 18.1: 2 _ZNK9oceanbase3lib6Worker18get_timeout_remainEv:2 + 19: 1 + 19.1: 1 _ZNK9oceanbase3lib6Worker18get_timeout_remainEv:1 + 20: 1 + 22: 1 + 28: 3 + 29: 3 + 30: 2 _ZNK9oceanbase6common12ObTimeoutCtx15get_abs_timeoutEl:2 + 31: 1 _ZNK9oceanbase6common12ObTimeoutCtx15get_abs_timeoutEl:1 + 32: 1 _ZNK9oceanbase6common12ObTimeoutCtx11get_timeoutEl:1 + 33: 1 + 35: 2 _ZNK9oceanbase6common12ObTimeoutCtx18is_trx_timeout_setEv:2 + 36: 0 + 38: 2 + 39: 0 + 40.1: 0 + 48: 3 + 50: 1 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:1 + 51: 1 + 52: 1 + 57: 3 + 58: 3 + 58.1: 3 + 58.2: 0 + 58.3: 0 + 59: 3 + 60: 4 _ZN9oceanbase8observer20ObInnerSQLConnection19set_session_timeoutEll:3 + 61.1: 0 + 63: 4 + 67.1: 0 + 67.2: 0 + 68.1: 0 + 68.3: 0 + 68.4: 0 + 71.1: 0 + 72.1: 0 + 76: 4 + 14: _ZN9oceanbase3lib6Worker4selfEv:0 + 3: 0 + 4: 0 + 18: _ZN9oceanbase3lib6Worker4selfEv:56 + 3: 2 + 4: 0 + 19: _ZN9oceanbase3lib6Worker4selfEv:28 + 3: 1 + 4: 0 + 20: _ZN9oceanbase3lib6Worker4selfEv:28 + 3: 1 + 4: 0 + 20.1: _ZNK9oceanbase3lib6Worker14get_timeout_tsEv:7 + 0: 1 + 29: _ZNK9oceanbase6common12ObTimeoutCtx14is_timeout_setEv:18 + 0: 3 + 58.1: _ZNK9oceanbase8observer20ObInnerSQLConnection16is_inner_sessionEv:24 + 0: 3 + 58.2: _ZNK9oceanbase6common12ObTimeoutCtx14is_timeout_setEv:0 + 0: 0 + 63: _ZN9oceanbase3lib6Worker4selfEv:112 + 3: 4 + 4: 0 + 63.1: _ZN9oceanbase8observer20ObInnerSQLConnection11get_sessionEv:72 + 0: 4 + 63.3: _ZN9oceanbase3lib6Worker14set_timeout_tsEl:28 + 0: 4 + 67.2: _ZN9oceanbase8observer20ObInnerSQLConnection11get_sessionEv:0 + 0: 0 + 67.10: _ZNK9oceanbase3sql18ObBasicSessionInfo17get_query_timeoutERl:0 + 2: 0 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache20get_ob_query_timeoutEv:0 + 0: 0 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache20get_ob_query_timeoutEb:0 + 0: 0 + 68.5: _ZNK9oceanbase3sql18ObBasicSessionInfo20get_query_start_timeEv:0 + 0: 0 + 71.1: _ZN9oceanbase3lib6Worker4selfEv:0 + 3: 0 + 4: 0 + 5: 0 + 72.1: _ZN9oceanbase3lib6Worker4selfEv:0 + 3: 0 + 4: 0 + 72.2: _ZN9oceanbase3lib6Worker14set_timeout_tsEl:0 + 0: 0 +_ZNK9oceanbase4palf11LogWriteBuf14get_total_sizeEv:954:8 + 1: 8 + 3.1: 8 + 3.3: 8 + 4: 8 + 6: 9 + 3.1: _ZNK9oceanbase6common12ObIArrayWrapINS_4palf11LogWriteBuf11InnerStructEE5countEv:136 + 0: 8 + 52: 8 + 4: _ZNK9oceanbase6common13ObSEArrayImplINS_4palf11LogWriteBuf11InnerStructELl2ENS0_19ModulePageAllocatorELb0EEixEl:96 + 2.1: 8 + 2.2: 8 + 3.1: 0 + 5: 8 +_ZN9oceanbase5share24ObLSRecoveryStatOperator9fill_cellEPNS_6common9sqlclient13ObMySQLResultERNS0_16ObLSRecoveryStatE:953:3 + 1: 3 + 2: 3 + 4: 3 + 5: 0 + 6.1: 0 + 8: 3 + 9: 3 + 10: 3 + 11: 3 + 12: 3 + 13: 3 + 14.1: 3 _ZNK9oceanbase8observer16ObInnerSQLResult7get_intEPKcRl:3 + 14.3: 0 + 14.6: 0 + 15: 0 + 15.1: 0 + 15.3: 0 + 15.6: 0 + 16: 0 + 16.1: 1 + 16.3: 0 + 16.6: 1 + 17: 0 + 17.1: 4 _ZNK9oceanbase8observer16ObInnerSQLResult8get_uintEPKcRm:1 + 17.3: 0 + 17.6: 4 + 18: 0 + 18.1: 4 _ZNK9oceanbase8observer16ObInnerSQLResult8get_uintEPKcRm:4 + 18.3: 0 + 18.6: 2 + 19: 0 + 19.1: 2 _ZNK9oceanbase8observer16ObInnerSQLResult8get_uintEPKcRm:2 + 19.3: 0 + 19.6: 1 + 20: 0 + 21.1: 0 + 24: 1 + 25: 1 + 25.1: 1 + 27.1: 0 + 32: 1 + 3: _ZN9oceanbase5share16ObLSRecoveryStat5resetEv:66 + 2: 3 + 5: 3 + 24: _ZN9oceanbase5share6ObLSIDC2El:7 + 0: 1 + 25: _ZN9oceanbase5share16ObLSRecoveryStat4initEmRKNS0_6ObLSIDEllll:110 + 7: 1 + 9: 1 + 9.1: 1 + 14: 0 + 15.1: 0 + 18: 1 + 20: 1 + 21: 1 + 22: 1 + 23: 1 + 25: 0 + 8: _ZN9oceanbase5share16ObLSRecoveryStat5resetEv:22 + 2: 1 + 5: 1 + 19: _ZN9oceanbase5share6ObLSIDaSERKS1_:4 + 0: 1 +_ZN9oceanbase6common13ObSpLinkQueue3popERPNS0_6ObLinkE:952:11 + 1: 11 + 3.2: 12 + 3.3: 12 + 7: 6 + 9: 7 + 3.1: _ZN9oceanbase6common13ObSpLinkQueue6do_popERPNS0_6ObLinkE:568 + 4.1: 16 + 5: 0 + 7: 16 + 9: 6 + 12.1: 10 + 13: 0 + 15: 12 + 16: 12 + 4: _ZN9oceanbase6common13ObSpLinkQueue4pushEPNS0_6ObLinkE:120 + 4: 5 + 7: 5 + 8: 5 + 9: 5 +_ZN9oceanbase6common14ObTimerMonitor8end_taskEll:951:3 + 1: 3 + 6: 0 + 7: 0 + 9: 0 + 10: 0 + 13: 0 + 17: 0 + 20: 0 + 21: 0 + 23: 0 + 4: _ZNK9oceanbase6common14ObTimerMonitor8find_posEl:939 + 2: 3 + 5: 3 + 5.1: 57 + 6: 57 +_ZN9oceanbase3lib20ObTenantCtxAllocator10get_chunksEPPNS0_6AChunkEiRi:951:1 + 1: 1 + 2: 1 + 3: 1 + 4.1: 32 + 4.2: 31 + 4.3: 31 + 5: 31 + 8: 1 + 2: _ZN9oceanbase3lib11ObLockGuardINS0_7ObMutexEEC2ERS2_:30 + 1: 1 + 4: 1 + 5.1: 0 + 4: _ZN9oceanbase3lib7ObMutex4lockEv:19 + 0: 1 _ZN9oceanbase6common12ObLatchMutex4lockEjl:1 + 8: _ZN9oceanbase3lib11ObLockGuardINS0_7ObMutexEED2Ev:18 + 2: 1 + 3: 1 + 3.1: 1 + 4.1: 0 + 3: _ZN9oceanbase3lib7ObMutex6unlockEv:1 + 0: 1 _ZN9oceanbase6common12ObLatchMutex6unlockEv:1 +_ZN9oceanbase4palf10LogStorage32update_log_tail_guarded_by_lock_El:946:12 + 1: 11 + 2: 11 + 4: 10 + 2: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEEC2ERS3_:348 + 1: 11 + 4: 12 + 5.1: 0 + 4: _ZN9oceanbase6common10ObSpinLock4lockEv:220 + 2: 11 _ZN9oceanbase6common12ObLatchMutex4lockEjl:11 + 3.1: _ZN9oceanbase4palf3LSNaSERKS1_:84 + 2: 12 + 4: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEED2Ev:118 + 2: 0 + 3: 0 + 3.1: 10 + 4.1: 0 + 3: _ZN9oceanbase6common10ObSpinLock6unlockEv:48 + 2: 12 _ZN9oceanbase6common12ObLatchMutex6unlockEv:12 +_ZN9oceanbase6common19ObTableAccessHelper12AccessHelperILi1ELi4EJlNS0_14ObStringHolderES3_S3_EE28get_values_to_tuple_from_rowEPNS0_9sqlclient13ObMySQLResultERA4_PKcRNS0_7ObTupleIJlS3_S3_S3_EEE:939:3 + 3: 2 + 6: 0 + 8: 0 + 8.1: 0 + 8.2: 0 + 8.4: 3 + 8.5: 3 + 8.6: 0 + 9.1: 0 + 9.2: 0 + 9.3: 0 + 9.5: 0 + 9.6: 0 + 9.7: 0 + 9.9: 0 + 9.13: 0 + 11: 3 _ZN9oceanbase6common19ObTableAccessHelper12AccessHelperILi0ELi4EJlNS0_14ObStringHolderES3_S3_EE28get_values_to_tuple_from_rowEPNS0_9sqlclient13ObMySQLResultERA4_PKcRNS0_7ObTupleIJlS3_S3_S3_EEE:3 + 11.1: 0 + 14: 0 + 15.5: 0 + 15.6: 0 + 4.2: _ZN9oceanbase6common5occam25get_file_name_without_dirIcLm44EEEPKT_RAT0__S4_m:800 + 3: 32 + 3.3: 32 + 3.4: 32 + 3.7: 0 + 4.3: _ZN9oceanbase6common5occam16TimeGuardFactory10make_guardEllPKcS4_lS4_:0 + 6: 0 + 8.3: _ZSt3getILm1EJlN9oceanbase6common14ObStringHolderES2_S2_EERNSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeERS7_:0 + 1: _ZSt12__get_helperILm1EN9oceanbase6common14ObStringHolderEJS2_S2_EERT0_RSt11_Tuple_implIXT_EJS3_DpT1_EE:0 + 1: _ZNSt11_Tuple_implILm1EJN9oceanbase6common14ObStringHolderES2_S2_EE7_M_headERS3_:0 + 0: _ZNSt10_Head_baseILm1EN9oceanbase6common14ObStringHolderELb0EE7_M_headERS3_:0 + 0: 0 + 9.4: _ZN9oceanbase6common7ObLogKVIiLb0EEC2EPKcRKi:0 + 0: 0 + 9.6: _ZN9oceanbase6common7ObLogKVIPKcLb1EEC2ES3_OKS3_:0 + 0: 0 + 9.8: _ZNK9oceanbase5share12ObTenantBase2idEv:0 + 0: 0 + 9.10: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 + 9.12: _ZN9oceanbase6common7ObLogKVIRKPKcLb0EEC2ES3_S5_:0 + 0: 0 +_ZN9oceanbase7storage17ObLSTabletService10get_tabletERKNS_6common10ObTabletIDERNS0_14ObTabletHandleEl:937:14 + 4: 12 + 5: 12 + 7: 12 + 8: 0 + 9.1: 0 + 10.3: 12 + 12: 0 + 13.1: 0 + 14.1: 17 _ZN9oceanbase7storage17ObLSTabletService20check_and_get_tabletERKNS_6common10ObTabletIDERNS0_14ObTabletHandleEl:13 + 15.1: 0 + 18: 17 + 10.1: _ZNK9oceanbase6common10ObTabletID8is_validEv:48 + 0: 12 +_ZN9oceanbase8observer16ObInnerSQLResultC2ERNS_3sql16ObSQLSessionInfoE:934:2 + 0: 2 _ZN9oceanbase6common9sqlclient13ObMySQLResultC2Ev:2 + 1: 2 + 2: 2 + 4: 2 _ZN9oceanbase3sql8ObSqlCtxC1Ev:2 + 4.1: 3 _ZN9oceanbase5share6schema19ObSchemaGetterGuardC1ENS1_15ObSchemaMgrItem3ModE:3 + 5: 3 + 6: 3 + 8.1: 3 + 9: 3 + 13: 3 + 14: 3 + 16: 2 + 17: 3 + 18: 3 + 18.6: 0 + 18.7: 0 + 18.8: 0 + 18.9: 0 + 1: _ZN9oceanbase6common4hash9ObHashMapINS0_8ObStringElNS1_19NoPthreadDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_lEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev:314 + 0.1: 2 + 0: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS0_8ObStringElEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEC2Ev:120 + 0: 2 + 2: 2 + 0.1: _ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocatorC2EmRKNS_3lib7ObLabelE:68 + 3: 2 + 4: 2 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:30 + 7: 2 + 2: _ZN9oceanbase6common4hash10SpinIniterC2ERVi:18 + 2: 2 + 3.1: 0 + 0.1: _ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_lEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev:110 + 0: 2 + 1: 2 + 0: _ZN9oceanbase6common8ObMallocC2Ev:54 + 0: 2 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:36 + 5: 2 + 7: 2 + 8: _ZN9oceanbase6common4hash9constructIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringElEENS1_5NLockENS1_5NCondEEEEEvRT_:28 + 2: _ZN9oceanbase6common4hash12do_constructIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringElEENS1_5NLockENS1_5NCondEEEEEvRT_NS1_16NormalPointerTagE:28 + 2: 2 + 0.2: _ZN9oceanbase6common8ObMallocC2Ev:30 + 0: 2 + 4: _ZN9oceanbase6common8ObMalloc8set_attrERKNS_3lib9ObMemAttrE:46 + 0: 2 + 2: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:42 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:42 + 2: 2 + 8: 2 + 3: _ZN9oceanbase8observer16ObInnerSQLResult21MemEntifyDestroyGuardC2ERNS_3lib13MemoryContextE:14 + 0: 2 + 8: _ZNK9oceanbase3sql18ObBasicSessionInfo22get_compatibility_modeEv:90 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12get_sql_modeEv:90 + 0: 3 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache12get_sql_modeEv:69 + 0: 3 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache12get_sql_modeEb:21 + 0: 3 +_ZN9oceanbase8observer16ObInnerSQLResultC1ERNS_3sql16ObSQLSessionInfoE:934:2 + 0: 2 _ZN9oceanbase6common9sqlclient13ObMySQLResultC2Ev:2 + 1: 2 + 2: 2 + 4: 2 _ZN9oceanbase3sql8ObSqlCtxC1Ev:2 + 4.1: 3 _ZN9oceanbase5share6schema19ObSchemaGetterGuardC1ENS1_15ObSchemaMgrItem3ModE:3 + 5: 3 + 6: 3 + 8.1: 3 + 9: 3 + 13: 3 + 14: 3 + 16: 2 + 17: 3 + 18: 3 + 18.6: 0 + 18.7: 0 + 18.8: 0 + 18.9: 0 + 1: _ZN9oceanbase6common4hash9ObHashMapINS0_8ObStringElNS1_19NoPthreadDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_lEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev:314 + 0.1: 2 + 0: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS0_8ObStringElEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEC2Ev:120 + 0: 2 + 2: 2 + 0.1: _ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocatorC2EmRKNS_3lib7ObLabelE:68 + 3: 2 + 4: 2 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:30 + 7: 2 + 2: _ZN9oceanbase6common4hash10SpinIniterC2ERVi:18 + 2: 2 + 3.1: 0 + 0.1: _ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_lEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev:110 + 0: 2 + 1: 2 + 0: _ZN9oceanbase6common8ObMallocC2Ev:54 + 0: 2 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:36 + 5: 2 + 7: 2 + 8: _ZN9oceanbase6common4hash9constructIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringElEENS1_5NLockENS1_5NCondEEEEEvRT_:28 + 2: _ZN9oceanbase6common4hash12do_constructIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringElEENS1_5NLockENS1_5NCondEEEEEvRT_NS1_16NormalPointerTagE:28 + 2: 2 + 0.2: _ZN9oceanbase6common8ObMallocC2Ev:30 + 0: 2 + 4: _ZN9oceanbase6common8ObMalloc8set_attrERKNS_3lib9ObMemAttrE:46 + 0: 2 + 2: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:42 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:42 + 2: 2 + 8: 2 + 3: _ZN9oceanbase8observer16ObInnerSQLResult21MemEntifyDestroyGuardC2ERNS_3lib13MemoryContextE:14 + 0: 2 + 8: _ZNK9oceanbase3sql18ObBasicSessionInfo22get_compatibility_modeEv:90 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12get_sql_modeEv:90 + 0: 3 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache12get_sql_modeEv:69 + 0: 3 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache12get_sql_modeEb:21 + 0: 3 +_ZN9oceanbase4palf13FlushLogCbCtxD2Ev:933:20 + 1: 20 + 3: 17 + 3.2: 0 + 2: _ZN9oceanbase4palf13FlushLogCbCtx5resetEv:634 + 3: 20 + 4: 20 _ZN9oceanbase4palf3LSN5resetEv:20 + 5: 17 + 7: 17 +_ZN9oceanbase4palf13FlushLogCbCtxD1Ev:933:20 + 1: 20 + 3: 17 + 3.2: 0 + 2: _ZN9oceanbase4palf13FlushLogCbCtx5resetEv:634 + 3: 20 + 4: 20 _ZN9oceanbase4palf3LSN5resetEv:20 + 5: 17 + 7: 17 +_ZN9oceanbase5share6schema16ObSchemaStoreMap3getEm:931:21 + 1: 19 + 3.1: 19 + 3.3: 19 + 2: _ZN9oceanbase6common11ObLinkArray6locateElb:703 + 2.1: 19 + 1: _ZN9oceanbase6common11ObLinkArray10locate_segElb:646 + 2: 19 + 4.1: _ZN9oceanbase6common11ObLinkArray6searchEl:551 + 3: 19 + 4.1: 19 + 3: _ZN9oceanbase6common9ol_searchINS0_11ObLinkArray3SegEEEPT_S5_S5_RS5_:285 + 4.1: 19 + 4.2: 19 + 5: 19 + 5.1: 19 + 4.1: _ZN9oceanbase6common9link_nextEPNS0_6ObLinkE:57 + 2: 19 +_ZN9oceanbase5share6schema19ObSchemaGetterGuard20get_from_local_cacheINS1_14ObTenantSchemaEEEiNS1_12ObSchemaTypeEmmRPKT_:930:3 + 5: 3 + 6: 3 + 7: 3 + 9: 3 + 10: 0 + 11.1: 0 + 12.1: 3 + 12.2: 3 + 13: 3 + 15.1: 3 _ZN9oceanbase5share6schema16is_normal_schemaENS1_12ObSchemaTypeE:3 + 16: 0 + 17.1: 0 + 21.1: 3 + 21.4: 3 + 21.5: 4 + 21.6: 8 + 21.7: 8 + 21.9: 4 + 21.10: 0 + 21.12: 4 + 22: 4 + 22.1: 0 + 23: 4 + 23.1: 0 + 24: 0 + 24.1: 0 + 25: 0 + 30: 3 + 31.1: 3 _ZZN9oceanbase5share6schema19ObSchemaGetterGuard20get_from_local_cacheINS1_14ObTenantSchemaEEEiNS1_12ObSchemaTypeEmmRPKT_ENKUlPKcE1_clESB_:3 + 32.1: 0 + 33: 0 + 34.1: 0 + 36: 0 + 37.1: 0 + 41: 2 + 9: _ZNK9oceanbase5share6schema19ObSchemaGetterGuard16check_inner_statEv:144 + 2: 3 + 3: 3 + 4: 0 + 5.1: 0 + 6.1: 3 + 6.2: 3 + 7: 3 + 7.1: 3 + 8: 0 + 9.1: 0 + 11: 3 + 21.1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema19ObSchemaGetterGuard9SchemaObjEE5countEv:27 + 0: 3 + 21.2: _ZN9oceanbase6common12ObIArrayWrapINS_5share6schema19ObSchemaGetterGuard9SchemaObjEE2atEl:21 + 6: 3 +_ZN9oceanbase4palf11LogStateMgr16is_state_changedEv:927:9 + 1: 7 + 3: 7 + 4: 7 + 6.1: 7 + 7: 0 + 8: 0 + 9.1: 7 + 10: 0 + 11: 0 + 12: 0 + 14: 0 + 15: 0 + 17.1: 7 + 18: 0 + 19.1: 7 + 20: 7 _ZN9oceanbase4palf11LogStateMgr26leader_active_need_switch_ERb:7 + 22: 5 + 4: _ZNK9oceanbase4palf11LogStateMgr17is_follower_init_Ev:140 + 2: _ZNK9oceanbase4palf11LogStateMgr21check_role_and_state_ERKNS_6common6ObRoleERKNS0_14ObReplicaStateE:140 + 3: 7 + 4: 7 + 5: _ZN9oceanbase4palf11LogStateMgr26follower_init_need_switch_Ev:0 + 3: 0 + 6.1: _ZNK9oceanbase4palf11LogStateMgr19is_follower_active_Ev:98 + 2: _ZNK9oceanbase4palf11LogStateMgr21check_role_and_state_ERKNS_6common6ObRoleERKNS0_14ObReplicaStateE:98 + 3: 7 + 4: 7 + 9.1: _ZNK9oceanbase4palf11LogStateMgr20is_follower_pending_Ev:140 + 2: _ZNK9oceanbase4palf11LogStateMgr21check_role_and_state_ERKNS_6common6ObRoleERKNS0_14ObReplicaStateE:140 + 3: 7 + 4: 7 + 13: _ZN9oceanbase6common6ObAddrC2Ev:0 + 1: 0 + 17.1: _ZNK9oceanbase4palf11LogStateMgr20is_leader_reconfirm_Ev:140 + 2: _ZNK9oceanbase4palf11LogStateMgr21check_role_and_state_ERKNS_6common6ObRoleERKNS0_14ObReplicaStateE:140 + 3: 7 + 4: 7 + 19.1: _ZNK9oceanbase4palf11LogStateMgr17is_leader_active_Ev:70 + 2: _ZNK9oceanbase4palf11LogStateMgr21check_role_and_state_ERKNS_6common6ObRoleERKNS0_14ObReplicaStateE:70 + 3: 7 + 4: 7 +_ZN9oceanbase6common15BaseLearnerListILl15ENS_4palf10LogLearnerEE6appendERKS4_:924:9 + 1: 7 + 2: 7 + 3.1: 7 + 3.2: 7 + 3.3: 7 + 3.5: 0 + 5.1: 0 + 6.1: 0 + 7.1: 0 + 7.2: 0 + 8.1: 0 + 10: 0 + 10.1: 0 + 11: 7 + 4: _ZN9oceanbase4palf10LogLearnerC2Ev:0 + 4: 0 + 5: 0 + 1: _ZN9oceanbase6common6ObAddrC2Ev:0 + 1: 0 + 2: _ZN9oceanbase6common19ObFixedLengthStringILl128EEC2EPKc:0 + 3: _ZN9oceanbase6common19ObFixedLengthStringILl128EE6assignEPKc:0 + 14: 0 + 15: 0 + 5: _ZNK9oceanbase6common15BaseLearnerListILl15ENS_4palf10LogLearnerEE11get_learnerElRS3_:0 + 3: 0 + 5.1: _ZNK9oceanbase6common13ObSEArrayImplINS_4palf10LogLearnerELl1ENS0_19ModulePageAllocatorELb0EE2atElRS3_:0 + 6: 0 + 6: _ZN9oceanbase6common9ObClassOpINS_4palf10LogLearnerELb0EE6assignERKS3_RS3_:0 + 3: _ZN9oceanbase6common11copy_assignINS_4palf10LogLearnerEEEiRT_RKS4_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapINS_4palf10LogLearnerEEEiRT_RKS4_NS0_8BoolTypeILb0EEE:0 + 2: 0 +_ZN9oceanbase5share6schema19ObSchemaGetterGuard31get_outline_info_with_signatureEmmRKNS_6common8ObStringERPKNS1_13ObOutlineInfoE:921:2 + 5: 2 + 6: 2 + 7: 2 + 8: 2 + 10: 2 + 11: 2 + 12: 0 + 13.1: 0 + 14.1: 2 + 14.2: 2 + 15: 2 + 17: 0 + 18.1: 0 + 19.1: 4 _ZNK9oceanbase5share6schema19ObSchemaGetterGuard25check_tenant_schema_guardEm:4 + 20.1: 0 + 21.1: 4 + 22.1: 0 + 23.1: 4 _ZNK9oceanbase5share6schema12ObOutlineMgr33get_outline_schema_with_signatureEmmRKNS_6common8ObStringERPKNS1_21ObSimpleOutlineSchemaE:4 + 25.1: 0 + 26.1: 4 + 27.1: 4 _ZZN9oceanbase5share6schema19ObSchemaGetterGuard31get_outline_info_with_signatureEmmRKNS_6common8ObStringERPKNS1_13ObOutlineInfoEENK5$_921clEPKc.bfa63f0f3456173f564c7cf65584fc48:4 + 28.1: 0 + 28.4: 0 + 33.1: 0 + 34.1: 0 + 35: 0 + 36.1: 0 + 39: 3 + 11: _ZNK9oceanbase5share6schema19ObSchemaGetterGuard16check_inner_statEv:96 + 2: 2 + 3: 2 + 4: 0 + 5.1: 0 + 6.1: 2 + 6.2: 2 + 7: 2 + 7.1: 2 + 8: 0 + 9.1: 0 + 11: 2 + 16.1: _ZNK9oceanbase6common8ObString5emptyEv:32 + 2: 2 + 2.1: 2 + 21.1: _ZNK9oceanbase5share6schema19ObSchemaGetterGuard16check_lazy_guardEmRPKNS1_11ObSchemaMgrE:140 + 3: 4 + 4: 4 _ZNK9oceanbase5share6schema19ObSchemaGetterGuard14get_schema_mgrEmRPKNS1_11ObSchemaMgrE:4 + 5.1: 0 + 6.1: 4 + 7: 0 + 8.1: 0 + 10: 0 + 28.1: _ZNK9oceanbase5share6schema21ObSimpleOutlineSchema13get_tenant_idEv:0 + 0: 0 + 28.2: _ZNK9oceanbase5share6schema21ObSimpleOutlineSchema14get_outline_idEv:0 + 0: 0 + 28.3: _ZNK9oceanbase5share6schema21ObSimpleOutlineSchema18get_schema_versionEv:0 + 0: 0 +_ZN9oceanbase12blocksstable20ObStorageDatumBuffer7reserveElb:917:0 + 1: 0 + 2: 0 + 5: 0 + 6: 0 + 7.1: 0 + 8.1: 0 + 9: 0 + 10.1: 0 + 11.1: 0 + 12.1: 0 + 13: 0 + 14.1: 0 + 16.1: 0 + 16.2: 18 + 17: 1 + 18.1: 0 + 18.3: 0 + 19: 0 + 22: 1 + 23: 1 _ZN9oceanbase6common18ObWrapperAllocator4freeEPv:1 + 25: 1 + 26: 1 + 29: 1 + 16.2: _ZN9oceanbase12blocksstable14ObStorageDatumC2Ev:702 + 0.1: _ZN9oceanbase12blocksstable14ObStorageDatum7set_nopEv:702 + 0: _ZN9oceanbase12blocksstable14ObStorageDatum13set_ext_valueEl:702 + 1: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:270 + 0: 18 + 1.1: _ZN9oceanbase6common11ObDatumDesc7set_extEv:144 + 0: 18 + 1.3: _ZN9oceanbase6common5ObObj7set_extEl:288 + 4: 18 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:144 + 0: 18 + 19: _ZN9oceanbase12blocksstable14ObStorageDatumaSERKS1_:0 + 2: 0 + 4: 0 + 5: 0 + 7.1: 0 + 8: 0 + 9: 0 + 10: 0 + 12: 0 + 3: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:0 + 0: 0 + 5: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:0 + 0: 0 + 7.1: _ZNK9oceanbase12blocksstable14ObStorageDatum12is_local_bufEv:0 + 0: 0 +_ZN9oceanbase4palf16LogSlidingWindow26try_advance_committed_lsn_ERKNS0_3LSNE:916:11 + 1: 9 + 3: 9 + 5.1: 0 + 9.2: 9 + 10: 9 + 16.1: 9 _ZZN9oceanbase4palf16LogSlidingWindow26try_advance_committed_lsn_ERKNS0_3LSNEENK5$_189clEPKc.0e4bf25207570af14a78557c8489c4fc:10 + 20.1: 0 + 24: 8 + 3: _ZNK9oceanbase4palf3LSN8is_validEv:36 + 2: 9 + 9.1: _ZNK9oceanbase4palf3LSNgtERKS1_:54 + 2: _ZNK9oceanbase4palf3LSNltERKS1_:54 + 2: 9 + 17: _ZN9oceanbase4palf24palf_reach_time_intervalElRl:217 + 3: 9 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:9 + 5: 0 + 18: _ZN9oceanbase4palf3LSNC2Ev:0 + 2: _ZN9oceanbase4palf3LSN5resetEv:0 + 2: 0 + 19: _ZNK9oceanbase4palf16LogSlidingWindow22get_committed_end_lsn_ERNS0_3LSNE:0 + 2: 0 + 2.4: _ZN9oceanbase4palf3LSNaSERKS1_:0 + 2: 0 + 21: _ZN9oceanbase4palf3LSNaSERKS1_:0 + 2: 0 +_ZN9oceanbase3sql17ObMergeDistinctOp11inner_closeEv:911:5 + 1: 5 + 7: 4 + 3: _ZN9oceanbase3sql17ObChunkDatumStore13LastStoredRow5resetEv:70 + 2: 5 + 3: 5 + 4: _ZN9oceanbase6common16ObArenaAllocator5resetEv:628 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:628 + 4.1: 6 + 6: 0 + 7: 5 + 13: 4 + 14: 4 + 15: 4 + 18: 4 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:15 + 0: 5 + 5.1: _ZL12abort_unlessb:30 + 5: 5 + 6: 0 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:247 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:247 + 0: 5 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:168 + 2: 6 + 3: 6 _ZN9oceanbase3lib17ObMallocAllocator12get_instanceEv:6 + 4: 6 + 5: 6 + 4: _ZL12abort_unlessb:12 + 5: 6 + 6: 0 +_ZSt6__sortIPN9oceanbase4palf3LSNEN9__gnu_cxx5__ops15_Iter_comp_iterINS1_10LSNCompareEEEEvT_S9_T0_:908:12 + 3: 12 + 5: 10 _ZSt16__introsort_loopIPN9oceanbase4palf3LSNElN9__gnu_cxx5__ops15_Iter_comp_iterINS1_10LSNCompareEEEEvT_S9_T0_T1_:10 + 6: 10 + 7: 10 + 8: 10 _ZSt22__final_insertion_sortIPN9oceanbase4palf3LSNEN9__gnu_cxx5__ops15_Iter_comp_iterINS1_10LSNCompareEEEEvT_S9_T0_:12 + 10.2: 10 + 6: _ZSt4__lgl:80 + 1: 10 +_ZN9oceanbase11transaction9tablelock12ObLockMemCtxC2ERNS_6common12ObIAllocatorE:906:3 + 3: 3 + 4: 3 + 5: 3 + 6: 3 _ZN9oceanbase7storage15ObTableHandleV2C1Ev:3 + 6.1: 3 + 0: _ZN9oceanbase6common10SpinRWLockC2Ej:63 + 1: 3 _ZN9oceanbase6common7ObLatchC1Ev:3 + 1: _ZN9oceanbase11transaction9tablelock14ObArenaObjPoolINS1_22ObMemCtxLockOpLinkNodeELl1EEC2ERNS_6common12ObIAllocatorE:297 + 1: 3 + 3: 3 + 4: 3 + 0.1: _ZN9oceanbase11transaction9tablelock22ObMemCtxLockOpLinkNodeC2Ev:234 + 2: 3 + 3: 3 + 0: _ZN9oceanbase6common11ObDLinkBaseINS_11transaction9tablelock22ObMemCtxLockOpLinkNodeEEC2Ev:12 + 1: 3 + 1: _ZN9oceanbase11transaction9tablelock13ObTableLockOpC2Ev:156 + 2: 3 + 3: 3 + 7: 3 + 10: 3 + 1: _ZN9oceanbase11transaction9tablelock8ObLockIDC2Ev:45 + 1: 3 + 2: 3 + 2: _ZN9oceanbase11transaction9tablelock14ObArenaObjPoolINS1_17ObOBJLockCallbackELl1EEC2ERNS_6common12ObIAllocatorE:252 + 1: 3 + 3: 3 + 4: 3 + 0.1: _ZN9oceanbase11transaction9tablelock17ObOBJLockCallbackC2Ev:147 + 4: 3 + 0: _ZN9oceanbase8memtable16ObITransCallbackC2Ev:93 + 2: 3 + 3: 3 + 5: 3 + 3: _ZN9oceanbase6common7ObDListINS_11transaction9tablelock22ObMemCtxLockOpLinkNodeEEC2Ev:126 + 2: 3 + 3: 3 + 4: 3 + 65463: _ZN9oceanbase6common11ObDLinkBaseINS_11transaction9tablelock22ObMemCtxLockOpLinkNodeEEC2Ev:54 + 2: 3 + 6.6: _ZN9oceanbase6common10SpinRWLockD2Ev:0 + 2: 0 + 6.8: _ZN9oceanbase11transaction9tablelock14ObArenaObjPoolINS1_22ObMemCtxLockOpLinkNodeELl1EED2Ev:0 + 0.1: _ZN9oceanbase11transaction9tablelock22ObMemCtxLockOpLinkNodeD2Ev:0 + 0: 0 + 0: _ZN9oceanbase11transaction9tablelock13ObTableLockOpD2Ev:0 + 0: _ZN9oceanbase11transaction9ObTransIDD2Ev:0 + 0: 0 +_ZNK9oceanbase8memtable15ObMvccTransNode12is_lock_nodeERb:900:62 + 1: 60 + 7.1: 60 + 12: 60 +_ZN9oceanbase3sql14ObDASBaseRtDefD2Ev:900:161 + 0: 150 +_ZN9oceanbase6common16ObKVCacheInstMap20print_all_cache_infoEv:899:0 + 1: 0 + 2: 0 + 3: 0 + 6: 0 + 7: 0 + 7.2: 0 + 7.5: 0 + 8.1: 0 + 8.2: 0 + 10.1: 0 + 10.2: 0 + 13: 0 + 16.1: 0 + 19: 0 + 19.1: 0 + 20: 0 + 22.1: 0 + 22.3: 0 + 23: 0 + 23.1: 0 + 27.1: 0 + 30.4: 0 + 4: _ZN9oceanbase6common4hash9ObHashSetImNS1_19ReadWriteDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImNS1_11HashNullObjEEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE5clearEv:0 + 2: 0 + 7.4: _ZNK9oceanbase6common4hash19ObHashTableIteratorINS0_16ObKVCacheInstKeyENS1_11HashMapPairIS3_PNS0_13ObKVCacheInstEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEneERKSN_:0 + 2: 0 + 7.8: _ZN9oceanbase6common4hash19ObHashTableIteratorINS0_16ObKVCacheInstKeyENS1_11HashMapPairIS3_PNS0_13ObKVCacheInstEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEppEv:899 + 2: 0 + 3.1: 0 + 4.1: 0 + 4.2: 0 + 7: 0 + 7.1: 31 + 8: 31 + 9: 0 + 14: 0 + 8.1: _ZNK9oceanbase6common4hash9ObHashSetImNS1_19ReadWriteDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImNS1_11HashNullObjEEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE16exist_refactoredERKm:0 + 4: 0 + 5: 0 + 3: _ZN9oceanbase6common4hash11HashMapPairImNS1_11HashNullObjEEC2Ev:0 + 0: 0 + 10: _ZNK9oceanbase6common4hash19ObHashTableIteratorINS0_16ObKVCacheInstKeyENS1_11HashMapPairIS3_PNS0_13ObKVCacheInstEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEptEv:0 + 3: 0 + 4.1: 0 + 10.1: _ZN9oceanbase6common4hash9ObHashSetImNS1_19ReadWriteDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImNS1_11HashNullObjEEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE14set_refactoredERKmiii:0 + 7: 0 + 4: _ZN9oceanbase6common4hash11HashMapPairImNS1_11HashNullObjEE4initERKmRKS3_:0 + 3: _ZN9oceanbase6common11copy_assignImEEiRT_RKS2_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapImEEiRT_RKS2_NS0_8BoolTypeILb0EEE:0 + 2: 0 + 22: _ZN9oceanbase6common4hash9ObHashSetImNS1_19ReadWriteDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImNS1_11HashNullObjEEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE5beginEv:0 + 2: 0 + 22.4: _ZNK9oceanbase6common4hash19ObHashTableIteratorImNS1_11HashMapPairImNS1_11HashNullObjEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19ReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEneERKSL_:0 + 2: 0 +_ZN9oceanbase6common11ObArrayImplIPNS_7storage4ObLSENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEE9push_backERKS4_:897:6 + 1: 6 + 2: 6 + 3: 6 + 4: 0 + 5.1: 0 + 6.1: 6 + 7: 3 + 9: 3 + 9.1: 7 + 10: 7 + 14: 6 + 17: 7 + 21: 2 + 28.1: 0 + 32: 8 + 7: _ZN9oceanbase6common11ObArrayImplIPNS_7storage4ObLSENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEE10extend_bufEv:0 + 2: 0 + 3: 0 + 17: _ZN9oceanbase6common16construct_assignIPNS_7storage4ObLSEEEiRT_RKS5_:49 + 2: _ZN9oceanbase6common21construct_assign_wrapIPNS_7storage4ObLSEEEiRT_RKS5_NS0_8BoolTypeILb0EEE:49 + 2: 7 +_ZNK9oceanbase5share6schema12ObOutlineMgr33get_outline_schema_with_signatureEmmRKNS_6common8ObStringERPKNS1_21ObSimpleOutlineSchemaE:896:4 + 5: 4 + 6: 4 + 7: 4 + 12.1: 4 + 12.2: 4 + 15: 0 + 16.1: 0 + 18: 4 + 23: 0 + 24: 0 + 25.1: 0 + 27: 0 + 32: 4 + 14: _ZNK9oceanbase6common8ObString5emptyEv:60 + 2: 4 + 2.1: 4 + 19: _ZN9oceanbase5share6schema29ObOutlineSignatureHashWrapperC2EmmRKNS_6common8ObStringE:72 + 2: 4 + 21: _ZNK9oceanbase6common4hash16ObPointerHashMapINS_5share6schema29ObOutlineSignatureHashWrapperEPNS4_21ObSimpleOutlineSchemaENS4_17ObGetOutlineKeyV3ELl8064ENS0_19ModulePageAllocatorEE14get_refactoredERKS5_RS7_:388 + 4: 4 + 5.1: 0 + 8.1: 4 + 9: 4 + 9: _ZNK9oceanbase6common4hash18ObPointerHashArrayINS_5share6schema29ObOutlineSignatureHashWrapperEPNS4_21ObSimpleOutlineSchemaENS4_17ObGetOutlineKeyV3EE14get_refactoredERKS5_RS7_:84 + 3: 4 + 4: 4 _ZNK9oceanbase6common4hash18ObPointerHashArrayINS_5share6schema29ObOutlineSignatureHashWrapperEPNS4_21ObSimpleOutlineSchemaENS4_17ObGetOutlineKeyV3EE21placement_hash_searchERKS5_Rl:4 + 5: 0 + 5.1: 0 + 6.1: 0 + 9: 0 +_ZN9oceanbase3sql18ObBasicSessionInfoD2Ev:891:1 + 1: 1 + 2: 1 _ZN9oceanbase3sql18ObBasicSessionInfo7destroyEv:1 + 3: 1 + 3.1: 0 + 3.7: 1 _ZN9oceanbase6common18ObDSSessionActionsD1Ev:1 + 3.11: 1 _ZN9oceanbase6common13ObSEArrayImplINS0_8ObStringELl16ENS0_19ModulePageAllocatorELb0EED2Ev:1 + 3.12: 1 _ZN9oceanbase6common13ObSEArrayImplINS_3sql18ObBasicSessionInfo10ChangedVarELl8ENS0_19ModulePageAllocatorELb0EED2Ev:1 + 3.14: 1 _ZN9oceanbase5share15ObSysVarFactoryD1Ev:1 + 3.15: 0 + 3.16: 0 + 3.27: 1 + 3.28: 1 + 3.30: 1 _ZN9oceanbase11transaction14ObTxExecResultD1Ev:1 + 3.33: 1 _ZN9oceanbase3sql18ObBasicSessionInfo13SysVarIncInfoD1Ev:1 + 3.36: 0 + 3.38: 0 + 3.39: 0 + 3.40: 0 + 3.41: 0 + 3.42: 0 + 3.43: 0 + 3.44: 0 + 3.45: 0 + 3.46: 0 + 3.47: 0 + 3.49: 0 + 3.50: 0 + 3.53: 0 + 3.54: 0 + 3.55: 0 + 3.56: 0 + 3.57: 0 + 3.58: 0 + 3.59: 0 + 3.60: 0 + 3.61: 0 + 3.62: 0 + 3.63: 0 + 3.64: 0 + 3.5: _ZN9oceanbase3sql16ObQueryRetryInfoD2Ev:28 + 0: 1 _ZN9oceanbase6common11ObArrayImplINS0_6ObAddrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_22NotImplementItemEncodeIS2_EEED2Ev:1 + 3.8: _ZN9oceanbase5share17ObFeedbackManagerD2Ev:48 + 0: 1 _ZN9oceanbase5share17ObFeedbackManager5resetEv:1 + 0.2: 0 + 0.1: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:28 + 0: 1 _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEED2Ev:1 + 3.9: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:90 + 0: 1 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEED2Ev:82 + 0: 1 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:63 + 4.1: 1 + 6: 0 + 7: 0 + 13: 1 + 14: 1 + 15: 1 + 18: 1 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:0 + 0: 0 + 5.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:0 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 3.10: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:76 + 0: 1 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEED2Ev:68 + 0: 1 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:60 + 4.1: 1 + 6: 0 + 7: 0 + 13: 1 + 14: 1 + 15: 1 + 18: 1 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:0 + 0: 0 + 5.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:0 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 3.13: _ZN9oceanbase6common18ObTimeZoneInfoWrapD2Ev:122 + 0: 1 + 0.1: _ZN9oceanbase6common17ObTimeZoneInfoPosD2Ev:103 + 0: 1 + 0.1: 2 _ZN9oceanbase6common11ObArrayImplINS0_18ObTZRevertTypeInfoENS0_8ObMallocELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_17DefaultItemEncodeIS2_EEED2Ev:1 + 0.3: 2 _ZN9oceanbase6common11ObArrayImplINS0_22ObTZTransitionTypeInfoENS0_8ObMallocELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_17DefaultItemEncodeIS2_EEED2Ev:1 + 3.18: _ZN9oceanbase6common12ObStringBufTINS0_19ModulePageAllocatorENS0_9PageArenaIcS2_EEED2Ev:0 + 3: 0 + 3.1: 0 + 2: _ZN9oceanbase6common12ObStringBufTINS0_19ModulePageAllocatorENS0_9PageArenaIcS2_EEE5resetEv:0 + 2: 0 + 2: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:0 + 4.1: 0 + 6: 0 + 7: 0 + 13: 0 + 14: 0 + 15: 0 + 18: 0 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:0 + 0: 0 + 5.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:0 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 3.19: _ZN9oceanbase6common12ObStringBufTINS0_19ModulePageAllocatorENS0_9PageArenaIcS2_EEED2Ev:0 + 3: 0 _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEED2Ev:1 + 2: _ZN9oceanbase6common12ObStringBufTINS0_19ModulePageAllocatorENS0_9PageArenaIcS2_EEE5resetEv:0 + 2: 0 + 3.22: _ZN9oceanbase6common12ObStringBufTINS0_19ModulePageAllocatorENS0_9PageArenaIcS2_EEED2Ev:16 + 3: 1 _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEED2Ev:1 + 2: _ZN9oceanbase6common12ObStringBufTINS0_19ModulePageAllocatorENS0_9PageArenaIcS2_EEE5resetEv:12 + 2: 1 _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:1 + 3.23: _ZN9oceanbase6common21ObSmallBlockAllocatorINS0_8ObMallocENS0_10ObNullLockEED2Ev:100 + 0: 1 + 0: _ZN9oceanbase6common6ObPoolINS0_8ObMallocENS0_10ObNullLockEED2Ev:77 + 1: 1 + 2: _ZN9oceanbase6common6ObPoolINS0_8ObMallocENS0_10ObNullLockEE5resetEv:54 + 2: 1 + 4.1: 1 + 5: 0 + 10: 1 + 11: 1 + 12: 1 + 13: 1 + 6: _ZN9oceanbase6common8ObMalloc4freeEPv:0 + 0: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 3.24: _ZN9oceanbase6common21ObSmallBlockAllocatorINS0_8ObMallocENS0_10ObNullLockEED2Ev:74 + 0: 1 + 0: _ZN9oceanbase6common6ObPoolINS0_8ObMallocENS0_10ObNullLockEED2Ev:62 + 1: 1 + 2: _ZN9oceanbase6common6ObPoolINS0_8ObMallocENS0_10ObNullLockEE5resetEv:54 + 2: 1 + 4.1: 1 + 5: 0 + 10: 1 + 11: 1 + 12: 1 + 13: 1 + 6: _ZN9oceanbase6common8ObMalloc4freeEPv:0 + 0: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 3.25: _ZN9oceanbase6common21ObSmallBlockAllocatorINS0_8ObMallocENS0_10ObNullLockEED2Ev:74 + 0: 1 + 0: _ZN9oceanbase6common6ObPoolINS0_8ObMallocENS0_10ObNullLockEED2Ev:62 + 1: 1 + 2: _ZN9oceanbase6common6ObPoolINS0_8ObMallocENS0_10ObNullLockEE5resetEv:54 + 2: 1 + 4.1: 1 + 5: 0 + 10: 1 + 11: 1 + 12: 1 + 13: 1 + 6: _ZN9oceanbase6common8ObMalloc4freeEPv:0 + 0: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 3.26: _ZN9oceanbase6common21ObSmallBlockAllocatorINS0_8ObMallocENS0_10ObNullLockEED2Ev:70 + 0: 1 + 0: _ZN9oceanbase6common6ObPoolINS0_8ObMallocENS0_10ObNullLockEED2Ev:58 + 1: 1 + 2: _ZN9oceanbase6common6ObPoolINS0_8ObMallocENS0_10ObNullLockEE5resetEv:50 + 2: 1 + 4.1: 1 + 5: 0 + 10: 1 + 11: 1 + 12: 1 + 13: 1 + 6: _ZN9oceanbase6common8ObMalloc4freeEPv:0 + 0: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 3.27: _ZN9oceanbase6common13ObSEArrayImplINS_3sql18ObBasicSessionInfo13TableStmtTypeELl1ENS0_19ModulePageAllocatorELb0EED2Ev:20 + 1: 1 + 2: 1 _ZN9oceanbase6common13ObSEArrayImplINS_3sql18ObBasicSessionInfo13TableStmtTypeELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:1 + 3.28: _ZN9oceanbase6common13ObSEArrayImplINS_3sql18ObBasicSessionInfo13TableStmtTypeELl2ENS0_19ModulePageAllocatorELb0EED2Ev:20 + 1: 1 + 2: 1 _ZN9oceanbase6common13ObSEArrayImplINS_3sql18ObBasicSessionInfo13TableStmtTypeELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv:1 + 3.29: _ZN9oceanbase11transaction11ObXATransIDD2Ev:1 + 0: _ZN9oceanbase11transaction11ObXATransID7destroyEv:1 + 0: 1 _ZN9oceanbase11transaction11ObXATransID5resetEv:1 + 3.31: _ZN9oceanbase6common16ObRecursiveMutexD2Ev:9 + 2: 1 _ZN9oceanbase6common7ObLatchD1Ev:1 + 3.32: _ZN9oceanbase6common16ObRecursiveMutexD2Ev:9 + 2: 1 _ZN9oceanbase6common7ObLatchD1Ev:1 +_ZN9oceanbase3sql18ObBasicSessionInfoD1Ev:891:1 + 1: 1 + 2: 1 _ZN9oceanbase3sql18ObBasicSessionInfo7destroyEv:1 + 3: 1 + 3.1: 0 + 3.7: 1 _ZN9oceanbase6common18ObDSSessionActionsD1Ev:1 + 3.11: 1 _ZN9oceanbase6common13ObSEArrayImplINS0_8ObStringELl16ENS0_19ModulePageAllocatorELb0EED2Ev:1 + 3.12: 1 _ZN9oceanbase6common13ObSEArrayImplINS_3sql18ObBasicSessionInfo10ChangedVarELl8ENS0_19ModulePageAllocatorELb0EED2Ev:1 + 3.14: 1 _ZN9oceanbase5share15ObSysVarFactoryD1Ev:1 + 3.15: 0 + 3.16: 0 + 3.27: 1 + 3.28: 1 + 3.30: 1 _ZN9oceanbase11transaction14ObTxExecResultD1Ev:1 + 3.33: 1 _ZN9oceanbase3sql18ObBasicSessionInfo13SysVarIncInfoD1Ev:1 + 3.36: 0 + 3.38: 0 + 3.39: 0 + 3.40: 0 + 3.41: 0 + 3.42: 0 + 3.43: 0 + 3.44: 0 + 3.45: 0 + 3.46: 0 + 3.47: 0 + 3.49: 0 + 3.50: 0 + 3.53: 0 + 3.54: 0 + 3.55: 0 + 3.56: 0 + 3.57: 0 + 3.58: 0 + 3.59: 0 + 3.60: 0 + 3.61: 0 + 3.62: 0 + 3.63: 0 + 3.64: 0 + 3.5: _ZN9oceanbase3sql16ObQueryRetryInfoD2Ev:28 + 0: 1 _ZN9oceanbase6common11ObArrayImplINS0_6ObAddrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_22NotImplementItemEncodeIS2_EEED2Ev:1 + 3.8: _ZN9oceanbase5share17ObFeedbackManagerD2Ev:48 + 0: 1 _ZN9oceanbase5share17ObFeedbackManager5resetEv:1 + 0.2: 0 + 0.1: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:28 + 0: 1 _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEED2Ev:1 + 3.9: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:90 + 0: 1 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEED2Ev:82 + 0: 1 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:63 + 4.1: 1 + 6: 0 + 7: 0 + 13: 1 + 14: 1 + 15: 1 + 18: 1 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:0 + 0: 0 + 5.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:0 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 3.10: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:76 + 0: 1 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEED2Ev:68 + 0: 1 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:60 + 4.1: 1 + 6: 0 + 7: 0 + 13: 1 + 14: 1 + 15: 1 + 18: 1 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:0 + 0: 0 + 5.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:0 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 3.13: _ZN9oceanbase6common18ObTimeZoneInfoWrapD2Ev:122 + 0: 1 + 0.1: _ZN9oceanbase6common17ObTimeZoneInfoPosD2Ev:103 + 0: 1 + 0.1: 2 _ZN9oceanbase6common11ObArrayImplINS0_18ObTZRevertTypeInfoENS0_8ObMallocELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_17DefaultItemEncodeIS2_EEED2Ev:1 + 0.3: 2 _ZN9oceanbase6common11ObArrayImplINS0_22ObTZTransitionTypeInfoENS0_8ObMallocELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_17DefaultItemEncodeIS2_EEED2Ev:1 + 3.18: _ZN9oceanbase6common12ObStringBufTINS0_19ModulePageAllocatorENS0_9PageArenaIcS2_EEED2Ev:0 + 3: 0 + 3.1: 0 + 2: _ZN9oceanbase6common12ObStringBufTINS0_19ModulePageAllocatorENS0_9PageArenaIcS2_EEE5resetEv:0 + 2: 0 + 2: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:0 + 4.1: 0 + 6: 0 + 7: 0 + 13: 0 + 14: 0 + 15: 0 + 18: 0 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:0 + 0: 0 + 5.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:0 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 3.19: _ZN9oceanbase6common12ObStringBufTINS0_19ModulePageAllocatorENS0_9PageArenaIcS2_EEED2Ev:0 + 3: 0 _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEED2Ev:1 + 2: _ZN9oceanbase6common12ObStringBufTINS0_19ModulePageAllocatorENS0_9PageArenaIcS2_EEE5resetEv:0 + 2: 0 + 3.22: _ZN9oceanbase6common12ObStringBufTINS0_19ModulePageAllocatorENS0_9PageArenaIcS2_EEED2Ev:16 + 3: 1 _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEED2Ev:1 + 2: _ZN9oceanbase6common12ObStringBufTINS0_19ModulePageAllocatorENS0_9PageArenaIcS2_EEE5resetEv:12 + 2: 1 _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:1 + 3.23: _ZN9oceanbase6common21ObSmallBlockAllocatorINS0_8ObMallocENS0_10ObNullLockEED2Ev:100 + 0: 1 + 0: _ZN9oceanbase6common6ObPoolINS0_8ObMallocENS0_10ObNullLockEED2Ev:77 + 1: 1 + 2: _ZN9oceanbase6common6ObPoolINS0_8ObMallocENS0_10ObNullLockEE5resetEv:54 + 2: 1 + 4.1: 1 + 5: 0 + 10: 1 + 11: 1 + 12: 1 + 13: 1 + 6: _ZN9oceanbase6common8ObMalloc4freeEPv:0 + 0: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 3.24: _ZN9oceanbase6common21ObSmallBlockAllocatorINS0_8ObMallocENS0_10ObNullLockEED2Ev:74 + 0: 1 + 0: _ZN9oceanbase6common6ObPoolINS0_8ObMallocENS0_10ObNullLockEED2Ev:62 + 1: 1 + 2: _ZN9oceanbase6common6ObPoolINS0_8ObMallocENS0_10ObNullLockEE5resetEv:54 + 2: 1 + 4.1: 1 + 5: 0 + 10: 1 + 11: 1 + 12: 1 + 13: 1 + 6: _ZN9oceanbase6common8ObMalloc4freeEPv:0 + 0: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 3.25: _ZN9oceanbase6common21ObSmallBlockAllocatorINS0_8ObMallocENS0_10ObNullLockEED2Ev:74 + 0: 1 + 0: _ZN9oceanbase6common6ObPoolINS0_8ObMallocENS0_10ObNullLockEED2Ev:62 + 1: 1 + 2: _ZN9oceanbase6common6ObPoolINS0_8ObMallocENS0_10ObNullLockEE5resetEv:54 + 2: 1 + 4.1: 1 + 5: 0 + 10: 1 + 11: 1 + 12: 1 + 13: 1 + 6: _ZN9oceanbase6common8ObMalloc4freeEPv:0 + 0: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 3.26: _ZN9oceanbase6common21ObSmallBlockAllocatorINS0_8ObMallocENS0_10ObNullLockEED2Ev:70 + 0: 1 + 0: _ZN9oceanbase6common6ObPoolINS0_8ObMallocENS0_10ObNullLockEED2Ev:58 + 1: 1 + 2: _ZN9oceanbase6common6ObPoolINS0_8ObMallocENS0_10ObNullLockEE5resetEv:50 + 2: 1 + 4.1: 1 + 5: 0 + 10: 1 + 11: 1 + 12: 1 + 13: 1 + 6: _ZN9oceanbase6common8ObMalloc4freeEPv:0 + 0: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 3.27: _ZN9oceanbase6common13ObSEArrayImplINS_3sql18ObBasicSessionInfo13TableStmtTypeELl1ENS0_19ModulePageAllocatorELb0EED2Ev:20 + 1: 1 + 2: 1 _ZN9oceanbase6common13ObSEArrayImplINS_3sql18ObBasicSessionInfo13TableStmtTypeELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:1 + 3.28: _ZN9oceanbase6common13ObSEArrayImplINS_3sql18ObBasicSessionInfo13TableStmtTypeELl2ENS0_19ModulePageAllocatorELb0EED2Ev:20 + 1: 1 + 2: 1 _ZN9oceanbase6common13ObSEArrayImplINS_3sql18ObBasicSessionInfo13TableStmtTypeELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv:1 + 3.29: _ZN9oceanbase11transaction11ObXATransIDD2Ev:1 + 0: _ZN9oceanbase11transaction11ObXATransID7destroyEv:1 + 0: 1 _ZN9oceanbase11transaction11ObXATransID5resetEv:1 + 3.31: _ZN9oceanbase6common16ObRecursiveMutexD2Ev:9 + 2: 1 _ZN9oceanbase6common7ObLatchD1Ev:1 + 3.32: _ZN9oceanbase6common16ObRecursiveMutexD2Ev:9 + 2: 1 _ZN9oceanbase6common7ObLatchD1Ev:1 +_ZN9oceanbase3sql11ObPlanCache13dec_ref_countEv:880:17 + 1: 16 + 2: 16 + 3: 16 + 9: 16 + 10.1: 0 + 12.1: 0 + 13: 0 + 14: 0 + 17: 0 + 19.1: 0 + 20.2: 0 + 22: 16 + 17: _ZN9oceanbase6common4hash9ObHashMapImPNS_3sql11ObPlanCacheENS1_24LatchReadWriteDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS5_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE16erase_refactoredERKmPS5_:0 + 10: 0 +_ZN9oceanbase8observer16ObInnerSQLResult4initEb:879:3 + 1: 3 + 2: 3 + 4: 3 + 10: 1 + 10.1: 0 + 10.5: 0 + 10.6: 4 _ZN9oceanbase3lib17__MemoryContext__14create_contextIJRNS0_12ContextParamEPNS0_10StaticInfoEEEEiRNS0_13MemoryContextERKNS0_11DynamicInfoEDpOT_:1 + 11.1: 0 + 14: 4 + 15: 0 + 15.2: 0 + 16: 0 + 18: 4 + 18.2: 4 _ZN9oceanbase3sql11ObResultSetC2ERNS0_16ObSQLSessionInfoERNS_6common12ObIAllocatorE:4 + 21: 0 + 23: 0 + 3: _ZN9oceanbase3lib12ContextParamC2Ev:21 + 5: 3 + 4: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:21 + 0: 3 + 4.1: _ZN9oceanbase3lib12ContextParam12set_mem_attrIJmRA10_KcNS_6common8ObCtxIds11ObCtxIdEnumEEEERS1_DpOT_:78 + 2: 3 + 7: _ZN9oceanbase3lib12ContextParam14set_propertiesEl:24 + 2: 3 + 8: _ZN9oceanbase3lib12ContextParam13set_page_sizeEl:24 + 2: 3 + 9: _ZN9oceanbase3lib12ContextParam15set_ablock_sizeEj:21 + 2: 3 + 10: _ZN9oceanbase3lib4Flow11current_ctxEv:84 + 2: _ZN9oceanbase3lib4Flow12current_flowEv:84 + 3: 3 + 8: 0 + 12: 0 + 8.1: _ZN9oceanbase3lib4FlowC2ERNS0_13MemoryContextE:0 + 1: 0 + 3: 0 + 10: _ZN9oceanbase3lib4Flow4initEv:0 + 4: 0 + 7: 0 + 8: 0 + 9: 0 + 12: 0 + 7: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 10.7: _ZNK9oceanbase3lib13MemoryContextptEv:12 + 1: 3 + 10.8: _ZN9oceanbase3lib11DynamicInfoC2Ev:202 + 1: 3 + 2: 1 + 1: _Z9ob_gettidv:159 + 3: 3 + 4: 0 + 2: _Z13get_tid_cachev:75 + 7: 3 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:3 + 2: 3 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:3 + 13: _ZN9oceanbase8observer16ObInnerSQLResult23set_has_tenant_resourceEb:28 + 1: 4 + 15: _ZNK9oceanbase3lib13MemoryContextptEv:28 + 1: 4 + 19: _ZN9oceanbase3sql11ObResultSet23set_is_inner_result_setEb:0 + 0: 0 +_ZN9oceanbase7storage18LockForReadFunctorC2ERKNS_11transaction16ObLockForReadArgERbRlS6_RKNS_6common10ObFunctionIFiRKNS0_8ObTxDataEPNS0_9ObTxCCCtxEEEERKNS9_IFbvEEE:872:4 + 6: 4 + 7: 4 + 8: 4 + 9: 4 + 11: 4 + 11.2: 4 + 10: _ZN9oceanbase6common8function24DefaultFunctionAllocator21get_default_allocatorEv:76 + 1: 4 + 1.1: 0 + 1.3: 0 + 10.1: _ZN9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEEC2ERKS9_RNS0_12ObIAllocatorE:232 + 2: 4 + 6: _ZN9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEE6assignERKS9_:156 + 4: 4 + 4: _ZN9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEE12base_assign_EPNS9_8AbstractE:144 + 4: 4 + 6: 4 + 7: 4 _ZNK9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEE7DerivedINS2_26ObCleanoutNothingOperationEE4copyERNS0_12ObIAllocatorEPv:4 + 8: 4 + 9: 0 + 10.1: 0 + 11: _ZN9oceanbase6common8function24DefaultFunctionAllocator21get_default_allocatorEv:48 + 1: 4 + 1.1: 0 + 1.3: 0 + 11.1: _ZN9oceanbase6common10ObFunctionIFbvEEC2ERKS3_RNS0_12ObIAllocatorE:196 + 2: 4 + 6: _ZN9oceanbase6common10ObFunctionIFbvEE6assignERKS3_:148 + 4: 4 + 4: _ZN9oceanbase6common10ObFunctionIFbvEE12base_assign_EPNS3_8AbstractE:136 + 4: 4 + 6: 4 + 7: 4 _ZNK9oceanbase6common10ObFunctionIFbvEE7DerivedINS_7storage25ObReCheckNothingOperationEE4copyERNS0_12ObIAllocatorEPv:3 _ZNK9oceanbase6common10ObFunctionIFbvEE7DerivedINS_7storage38ObReCheckTxNodeForLockForReadOperationEE4copyERNS0_12ObIAllocatorEPv:1 + 8: 4 + 9: 0 + 10.1: 0 + 11.3: _ZN9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEED2Ev:0 + 0.2: 0 + 0: _ZN9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEE5resetEv:0 + 1: 0 + 2: 0 + 3: 0 + 4: 0 + 6: 0 + 3: _ZN9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEE13is_local_obj_Ev:0 + 1: 0 +_ZN9oceanbase7storage18LockForReadFunctor19inner_lock_for_readERKNS0_8ObTxDataEPNS0_9ObTxCCCtxE:871:4 + 1: 4 + 2: 4 + 3: 4 + 4: 4 + 5: 4 + 15: 4 + 20.1: 0 + 21: 0 + 26.1: 0 + 27: 0 + 33: 4 + 37.2: 4 + 40: 0 + 51: 0 + 63: 5 + 70.1: 2 + 84: 2 + 85.1: 2 _ZN9oceanbase6common14ObTscTimestamp12current_timeEv:2 + 85.2: 2 + 85.3: 0 + 85.6: 0 + 86.1: 0 + 98: 0 + 99: 0 + 107: 5 + 108.4: 5 + 20: _ZNK9oceanbase7storage16ObUndoStatusList10is_containEl:0 + 4.1: 0 + 5: 0 + 5.1: 0 + 6: 0 + 6: _ZNK9oceanbase11transaction12ObUndoAction10is_containEl:0 + 1: 0 + 1.1: 0 + 26: _ZNK9oceanbase7storage16ObUndoStatusList10is_containEl:0 + 4.1: 0 + 5: 0 + 5.1: 0 + 6: 0 + 6: _ZNK9oceanbase11transaction12ObUndoAction10is_containEl:0 + 1: 0 + 1.1: 0 + 35: _ZNK9oceanbase7storage16ObUndoStatusList10is_containEl:0 + 4.1: 0 + 5: 0 + 5.1: 0 + 6: _ZNK9oceanbase11transaction12ObUndoAction10is_containEl:0 + 1: 0 + 1.1: 0 + 37.1: _ZNK9oceanbase11transaction9ObTransIDeqERKS1_:12 + 1: 4 + 52: _ZNK9oceanbase7storage16ObUndoStatusList10is_containEl:0 + 4.1: 0 + 5: 0 + 5.1: 0 + 6: 0 + 6: _ZNK9oceanbase11transaction12ObUndoAction10is_containEl:0 + 1: 0 + 1.1: 0 + 85: _ZN9oceanbase6common14ObTscTimestamp12get_instanceEv:26 + 2: 2 + 2.1: 0 + 2.3: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common14ObTscTimestampC2Ev:0 + 1: 0 +_ZZN9oceanbase4palf19LogGroupEntryHeader23update_header_checksum_EvENK5$_643clEPKc.1598dc2348996c1ae1caea6120522988:870:15 + 0: 15 + 0.1: 0 + 0.2: 15 + 0.3: 15 _ZN9oceanbase6common8ObLogger13need_to_printEmi:15 + 0.6: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:255 + 2: 15 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKNS_4palf19LogGroupEntryHeaderELb0EEC2EPKcS5_:0 + 0: 0 + 0.5: _ZN9oceanbase6common7ObLogKVIlLb1EEC2EPKcOKl:0 + 0: 0 +_ZN9oceanbase6common5occam16ObOccamTimeGuardD2Ev:869:7 + 1: 7 + 3.1: 13 + 3.3: 13 + 4: 13 + 6.1: 10 + 7: 10 + 9: 0 + 10: 0 + 11: 0 + 12: 0 + 13: 0 + 14: 0 + 16: 0 + 16.2: 0 + 18.2: 10 + 18.4: 0 + 6: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:7 + 2: 7 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:7 + 16.1: _ZN9oceanbase6common7ObLogKVIRKNS0_5occam16ObOccamTimeGuardELb0EEC2EPKcS5_:0 + 0: 0 +_ZN9oceanbase4palf16LogDIOAlignedBuf9align_bufEPKclRPcRlRm:867:4 + 5: 4 + 6: 4 + 7: 4 + 8: 0 + 9.1: 0 + 11.1: 4 + 12.1: 0 + 15: 3 + 16: 7 + 18: 2 + 19: 2 + 20: 2 _ZN9oceanbase6common11lower_alignEll:2 + 21: 1 + 22: 1 + 24: 1 + 11.1: _ZNK9oceanbase4palf16LogDIOAlignedBuf11need_align_Ev:16 + 2: 4 + 14: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:16 + 2: 4 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:4 + 17: _ZN9oceanbase4palf16LogDIOAlignedBuf10align_buf_Ev:360 + 2: 7 + 3: 0 + 5: 7 _ZN9oceanbase6common11upper_alignEll:7 + 6: 7 + 7: 4 _ZN9oceanbase6common11upper_alignEll:4 + 21: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:2 + 2: 2 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:2 +_ZZN9oceanbase4palf16LogSlidingWindow23handle_next_submit_log_ERbENK5$_154clEPKc.0e4bf25207570af14a78557c8489c4fc:862:10 + 0: 11 + 0.1: 0 + 0.2: 11 + 0.3: 10 _ZN9oceanbase6common8ObLogger13need_to_printEmi:10 + 0.17: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:170 + 2: 10 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKNS0_6ObAddrELb0EEC2EPKcS4_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.12: _ZN9oceanbase6common7ObLogKVIRKbLb0EEC2EPKcS3_:0 + 0: 0 + 0.14: _ZN9oceanbase6common7ObLogKVIRKbLb0EEC2EPKcS3_:0 + 0: 0 + 0.16: _ZN9oceanbase6common7ObLogKVIRKbLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase3sql18ObBasicSessionInfo8set_userERKNS_6common8ObStringES5_m:851:1 + 1: 1 + 2: 1 + 3: 1 + 3.1: 1 + 4: 1 + 4.1: 1 + 5: 0 + 6.1: 0 + 8: 1 + 9.2: 1 + 12: 3 + 13.1: 1 + 14.1: 0 + 15.1: 1 _ZN9oceanbase6common12ObStringBufTINS0_19ModulePageAllocatorENS0_9PageArenaIcS2_EEE12write_stringERKNS0_8ObStringEPS6_:1 + 15.2: 2 + 16.1: 0 + 17.1: 2 _ZN9oceanbase6common12ObStringBufTINS0_19ModulePageAllocatorENS0_9PageArenaIcS2_EEE12write_stringERKNS0_8ObStringEPS6_:2 + 17.2: 2 + 18.1: 0 + 20: 2 + 22: 2 _ZN9oceanbase3lib11ObLockGuardINS_6common16ObRecursiveMutexEED2Ev:2 + 22.1: 0 + 23: 2 + 3: _ZNK9oceanbase6common8ObString6lengthEv:4 + 0: 1 + 4.1: _ZNK9oceanbase6common8ObString6lengthEv:3 + 0: 1 + 9.1: _ZNK9oceanbase6common8ObString3ptrEv:8 + 0: 1 + 10.1: _ZNK9oceanbase6common8ObString3ptrEv:7 + 0: 1 + 11: _ZN9oceanbase6common8ObStringC2EPKc:61 + 1: 4 + 3: 4 + 6: 4 + 12: _ZN9oceanbase3lib11ObLockGuardINS_6common16ObRecursiveMutexEEC2ERS3_:332 + 1: 3 + 2: 3 + 4: 1 + 5.1: 0 + 4: _ZN9oceanbase6common16ObRecursiveMutex4lockEv:294 + 2: 3 + 3: 3 + 6: 3 _ZN9oceanbase6common7ObLatch6wrlockEjlPKj:3 + 7.1: 0 + 12: 1 + 3: _ZNK9oceanbase6common7ObLatch14is_wrlocked_byEPKj:192 + 3: 3 + 4: 3 + 2.1: _Z9ob_gettidv:159 + 3: 3 + 4: 0 + 2: _Z13get_tid_cachev:75 + 7: 3 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 + 13: _ZN9oceanbase6common12ObStringBufTINS0_19ModulePageAllocatorENS0_9PageArenaIcS2_EEE12write_stringERKNS0_8ObStringEPS6_:113 + 3: 1 + 7.1: 1 + 7.2: 1 + 7.3: 1 + 11: 1 + 13: 0 + 14.1: 0 + 20: 1 + 7.1: _ZNK9oceanbase6common8ObString6lengthEv:7 + 0: 1 + 7.2: _ZNK9oceanbase6common8ObString3ptrEv:4 + 0: 1 + 8: _ZN9oceanbase6common8ObString6assignEPci:0 + 3: 0 + 11.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE3dupEPKvl:42 + 3: 1 + 4: 1 _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE5allocEl:2 + 5: 2 + 6: 2 + 16: _ZN9oceanbase6common8ObString6assignEPci:22 + 2: 1 + 3: 1 + 4: 1 +_ZN9oceanbase3sql24ObPlanCacheManagerAtomicclERNS_6common4hash11HashMapPairImPNS0_11ObPlanCacheEEE:850:20 + 0: 17 + 1: 17 + 2: 17 + 3: 0 + 4.1: 0 + 6: 17 + 7: 17 + 9: 17 + 7: _ZN9oceanbase3sql11ObPlanCache13inc_ref_countEv:153 + 3: 17 +_ZN9oceanbase10compaction22ObPartitionMergePolicy27check_need_mini_minor_mergeERKNS_7storage8ObTabletERb:849:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 14: 0 + 14.4: 1 _ZNK9oceanbase3omt17ObTenantConfigMgr27get_tenant_config_with_lockEmmm:1 + 14.5: 3 _ZN9oceanbase3omt19ObTenantConfigGuardC1EPNS0_14ObTenantConfigE:3 + 15: 3 _ZN9oceanbase7storage19ObTablesHandleArrayC1Ev:3 + 16.1: 3 + 17.2: 3 + 18.2: 3 + 20.1: 3 + 22.2: 0 + 23: 0 + 24: 0 + 25.1: 0 + 25.2: 0 + 26.1: 0 + 29: 3 + 30.1: 3 _ZNK9oceanbase7storage18ObTabletTableStore23get_mini_minor_sstablesERNS0_19ObTablesHandleArrayE:3 + 30.2: 2 + 31.1: 0 + 36.1: 0 + 36.3: 2 + 36.4: 2 + 36.6: 0 + 38: 2 _ZNK9oceanbase7storage8ObITable20is_buf_minor_sstableEv:3 + 38.1: 3 + 39: 0 + 40.1: 0 + 41.1: 3 + 41.2: 3 _ZNK9oceanbase12blocksstable9ObSSTable23get_upper_trans_versionEv:3 + 41.3: 3 + 43: 3 _ZNK9oceanbase12blocksstable9ObSSTable28get_max_merged_trans_versionEv:3 + 43.1: 4 + 47: 0 + 48: 0 + 48.1: 0 + 49: 0 + 50: 0 + 52.1: 0 + 52.2: 0 + 55: 0 + 60: 4 + 66.2: 0 + 67: 0 + 68.1: 0 + 69.1: 0 + 72: 0 + 74: 0 + 75: 0 + 85: 4 + 89: 4 + 89.4: 4 + 90: 0 + 94.3: 0 + 96: 0 + 97.13: 4 _ZN9oceanbase7storage19ObTablesHandleArrayD1Ev:4 + 97.14: 0 + 97.15: 0 + 97.17: 2 _ZN9oceanbase3omt19ObTenantConfigGuardD1Ev:2 + 14.1: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 14.2: _ZNK9oceanbase5share12ObTenantBase2idEv:0 + 0: 0 + 14.3: _ZN9oceanbase3omt17ObTenantConfigMgr26default_fallback_tenant_idEv:0 + 4: 0 + 4.1: 0 + 2: _ZN9oceanbase5share5GuardILNS0_12ObEntityTypeE0EE13current_guardEv:0 + 3: 0 + 8: 0 + 10: 0 + 11: 0 + 12: 0 + 8.1: _ZN9oceanbase5share5GuardILNS0_12ObEntityTypeE0EEC2ERNS0_13ObTenantSpaceE:0 + 1: 0 + 3: 0 + 11: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 2.1: _ZN9oceanbase5share5GuardILNS0_12ObEntityTypeE0EEptEv:0 + 0: 0 + 2.2: _ZNK9oceanbase5share13ObTenantSpace10get_tenantEv:0 + 0: 0 + 4.1: _ZNK9oceanbase5share12ObTenantBase2idEv:0 + 0: 0 + 16: _ZN9oceanbase3omt19ObTenantConfigGuard8is_validEv:30 + 0: 3 + 22.1: _ZNK9oceanbase7storage8ObTablet20is_ls_tx_data_tabletEv:0 + 2: _ZNK9oceanbase6common10ObTabletID20is_ls_tx_data_tabletEv:0 + 0: 0 + 37: _ZNK9oceanbase7storage19ObTablesHandleArray9get_tableEl:22 + 0.3: 2 + 0.3: _ZNK9oceanbase6common12ObIArrayWrapIPNS_7storage8ObITableEE2atEl:14 + 6: 2 + 66.1: _ZNK9oceanbase7storage18ObTabletTableStore15get_table_countEv:0 + 0: 0 + 0.1: _ZNK9oceanbase7storage13ObITableArray5countEv:0 + 0: 0 + 89.3: _ZNK9oceanbase7storage13ObITableArray5countEv:40 + 0: 4 + 90.1: _ZN9oceanbase6common10ObTabletIDD2Ev:0 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:0 + 0: 0 + 90.3: _ZN9oceanbase6common10ObTabletIDD2Ev:0 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:0 + 0: 0 + 90.4: _ZN9oceanbase5share6ObLSIDD2Ev:0 + 0: _ZN9oceanbase5share6ObLSID5resetEv:0 + 0: 0 + 90.5: _ZN9oceanbase5share6ObLSIDD2Ev:0 + 0: _ZN9oceanbase5share6ObLSID5resetEv:0 + 0: 0 + 91.1: _ZN9oceanbase5share6ObLSIDC2ERKS1_:0 + 0: 0 + 91.2: _ZN9oceanbase6common10ObTabletIDC2ERKS1_:0 + 0: 0 +_ZZN9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE5slideElPNS0_16ISlidingCallBackEENKUlPKcE1_clES7_:846:12 + 0: 12 + 0.1: 0 + 0.2: 10 + 0.3: 12 _ZN9oceanbase6common8ObLogger13need_to_printEmi:12 + 0.9: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:204 + 2: 12 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 +_ZNK9oceanbase4palf11LogStateMgr16is_leader_activeEv:841:29 + 0: 29 + 0: _ZNK9oceanbase4palf11LogStateMgr17is_leader_active_Ev:667 + 2: _ZNK9oceanbase4palf11LogStateMgr21check_role_and_state_ERKNS_6common6ObRoleERKNS0_14ObReplicaStateE:667 + 3: 29 + 4: 29 +_ZN9oceanbase8observer20ObInnerSQLConnection12init_sessionEPNS_3sql16ObSQLSessionInfoEb:841:2 + 1: 2 + 2: 2 + 3: 2 + 9: 2 + 18: 2 _ZN9oceanbase3sql16ObSQLSessionInfo4initEjmPNS_6common12ObIAllocatorEPKNS2_11ObTZInfoMapElm:2 + 19.1: 0 + 20.1: 0 + 21.1: 0 + 22.1: 3 _ZN9oceanbase3sql18ObBasicSessionInfo22update_max_packet_sizeEv:1 + 23.1: 0 + 24.1: 1 + 24.2: 3 _ZN9oceanbase3sql18ObBasicSessionInfo11init_tenantERKNS_6common8ObStringEm:3 + 25.1: 0 + 26.1: 1 _ZN9oceanbase8observer20ObInnerSQLConnection13switch_tenantEm:1 + 27.1: 0 + 28.1: 1 + 28.4: 1 _ZN9oceanbase3sql18ObBasicSessionInfo19update_sys_variableENS_5share17ObSysVarClassTypeERKNS_6common5ObObjE:1 + 30.1: 0 + 31.1: 0 + 31.4: 1 + 33.1: 0 + 34.1: 1 _ZN9oceanbase3sql18ObBasicSessionInfo19update_sys_variableENS_5share17ObSysVarClassTypeERKNS_6common8ObStringE:1 + 36.1: 0 + 37.1: 2 + 39.1: 0 + 40.1: 3 _ZN9oceanbase3sql18ObBasicSessionInfo19update_sys_variableENS_5share17ObSysVarClassTypeERKNS_6common8ObStringE:2 + 42.1: 0 + 45: 3 _ZN9oceanbase3sql18ObBasicSessionInfo20set_default_databaseERKNS_6common8ObStringENS2_15ObCollationTypeE:3 + 46.1: 0 + 47.1: 1 _ZN9oceanbase3sql18ObBasicSessionInfo15get_pc_mem_confERNS0_14ObPCMemPctConfE:1 + 48.1: 0 + 50: 0 + 54: 0 + 58: 0 + 60: 3 + 8: _ZN9oceanbase3sql14ObPCMemPctConfC2Ev:44 + 0: 2 + 2: 2 + 9: _ZN9oceanbase3sql16ObSQLSessionInfo17set_inner_sessionEv:48 + 2: 2 + 3: 2 + 12: _ZN9oceanbase6common5ObObj7set_intEl:20 + 3: 2 + 2: _ZN9oceanbase6common9ObObjMeta7set_intEv:12 + 0: 2 + 13: _ZN9oceanbase6common5ObObj7set_intEl:34 + 3: 2 + 2: _ZN9oceanbase6common9ObObjMeta7set_intEv:8 + 0: 2 + 16: _ZN9oceanbase6common5ObObj8set_uintENS0_9ObObjTypeEm:24 + 4: 2 + 2: _ZN9oceanbase6common9ObObjMeta8set_typeERKNS0_9ObObjTypeE:8 + 2: 2 + 17: _ZN9oceanbase6common5ObObj8set_uintENS0_9ObObjTypeEm:26 + 4: 2 + 2: _ZN9oceanbase6common9ObObjMeta8set_typeERKNS0_9ObObjTypeE:18 + 2: 2 + 24.1: _ZN9oceanbase6common8ObStringC2EPKc:42 + 1: 3 + 3: 3 + 44: _ZN9oceanbase6common8ObStringC2EPKc:48 + 1: 3 + 3: 3 + 50: _ZN9oceanbase3sql5ObSql22get_plan_cache_managerEv:0 + 0: 0 + 50.1: _ZN9oceanbase3sql16ObSQLSessionInfo22set_plan_cache_managerEPNS0_18ObPlanCacheManagerE:0 + 0: 0 + 51: _ZN9oceanbase3sql18ObBasicSessionInfo15set_database_idEm:0 + 0: 0 + 53.1: _ZN9oceanbase6common16ObSessionDDLInfo10set_is_ddlEb:0 + 0: 0 +_ZN9oceanbase6common16ObFixedArrayImplINS_4palf3LSNENS0_12ObIAllocatorEE9push_backERKS3_:841:7 + 1: 7 + 2: 7 + 3: 7 + 4: 7 + 5: 0 + 6.1: 0 + 6.5: 0 + 6.7: 0 + 9: 0 + 10.1: 0 + 10.5: 0 + 10.9: 0 + 12.1: 7 + 13: 0 + 14.1: 0 + 14.5: 0 + 14.11: 0 + 16: 7 + 17: 7 + 19: 0 + 22: 0 + 23: 0 + 26: 8 + 29: 8 + 33: 9 + 6.1: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 6.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 10.1: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 10.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 10.8: _ZN9oceanbase6common7ObLogKVIRKjLb0EEC2EPKcS3_:0 + 0: 0 + 14.1: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 14.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 14.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 14.10: _ZN9oceanbase6common7ObLogKVIRKjLb0EEC2EPKcS3_:0 + 0: 0 + 19: _ZN9oceanbase6common16construct_assignINS_4palf3LSNEEEiRT_RKS4_:0 + 2: _ZN9oceanbase6common21construct_assign_wrapINS_4palf3LSNEEEiRT_RKS4_NS0_8BoolTypeILb0EEE:0 + 2: 0 + 26: _ZN9oceanbase6common11copy_assignINS_4palf3LSNEEEiRT_RKS4_:28 + 2: _ZN9oceanbase6common16copy_assign_wrapINS_4palf3LSNEEEiRT_RKS4_NS0_8BoolTypeILb0EEE:28 + 2: 7 _ZN9oceanbase4palf3LSNaSERKS1_:7 +_ZN9oceanbase8observer20ObInnerSQLConnection4initEPNS0_24ObInnerSQLConnectionPoolEPNS_5share6schema27ObMultiVersionSchemaServiceEPNS_3sql5ObSqlEPNS0_15ObVTIterCreatorEPNS_6common14ObServerConfigEPNS8_16ObSQLSessionInfoEPNSD_12ObISQLClientEPNS0_20ObRestoreSQLModifierEbb:839:3 + 10: 3 + 11: 3 + 12: 3 + 13: 0 + 14.1: 0 + 15.1: 3 + 17: 0 + 18.1: 0 + 21: 3 + 22: 3 + 23: 3 + 24: 3 + 25: 3 + 26: 3 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:3 + 27: 2 + 28: 2 + 28.1: 0 + 28.2: 0 + 28.4: 0 + 30: 2 backtrace:2 + 32: 2 + 33: 2 + 34: 2 + 35: 2 _ZNK9oceanbase6common12ObMySQLProxy14is_oracle_modeEv:2 + 36.1: 0 + 37: 0 + 41: 3 _ZN9oceanbase8observer20ObInnerSQLConnection12init_sessionEPNS_3sql16ObSQLSessionInfoEb:2 + 42.1: 0 + 44: 3 + 47: 3 + 27: _Z9ob_gettidv:106 + 3: 2 + 4: 0 + 2: _Z13get_tid_cachev:50 + 7: 2 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 + 28.1: _ZN9oceanbase6common9EventItemC2Ev:0 + 2: 0 + 28.3: _ZN9oceanbase6common10EventTable9get_eventEl:0 + 1.4: 0 + 37: _ZNK9oceanbase3sql18ObBasicSessionInfo22get_compatibility_modeEv:0 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12get_sql_modeEv:0 + 0: 0 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache12get_sql_modeEv:0 + 0: 0 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache12get_sql_modeEb:0 + 0: 0 +_ZN9oceanbase3lib11ObLockGuardINS0_7ObMutexEED2Ev:839:27 + 1: 25 + 2: 25 + 3: 25 + 3.1: 26 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 7.1: 26 + 3: _ZN9oceanbase3lib7ObMutex6unlockEv:25 + 0: 25 _ZN9oceanbase6common12ObLatchMutex6unlockEv:27 +_ZN9oceanbase5share6schema27ObMultiVersionSchemaService27get_baseline_schema_versionEmbRl:834:6 + 4: 6 + 5: 6 + 8: 0 + 9.1: 0 + 10.1: 8 + 11: 0 + 12.1: 0 + 13.1: 8 _ZN9oceanbase5share6schema16ObSchemaStoreMap3getEm:8 + 14: 0 + 15.1: 0 + 17: 6 + 18: 6 + 19: 0 + 21: 0 + 23: 0 + 25: 0 + 27: 0 + 28: 0 + 29: 0 + 30.1: 0 + 31.1: 0 + 32.1: 0 + 35: 0 + 35.2: 0 + 37.1: 0 + 38.1: 0 + 39: 0 + 40.1: 0 + 43: 0 + 44.1: 0 + 49: 6 + 7: _ZNK9oceanbase5share6schema27ObMultiVersionSchemaService16check_inner_statEv:182 + 3: 8 _ZNK9oceanbase5share6schema21ObServerSchemaService16check_inner_statEv:7 + 3.1: 8 + 5.1: 0 + 17: _ZNK9oceanbase5share6schema13ObSchemaStore27get_baseline_schema_versionEv:24 + 0: 6 + 20: _ZN9oceanbase5share6schema21ObRefreshSchemaStatusC2Ev:0 + 0: 0 + 2: 0 +_ZN9oceanbase5share26ObSessionSpecialBoolSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiS4_S7_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSN_SQ_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:834:4 + 11: 3 + 12: 3 + 13: 3 + 6: _ZN9oceanbase5share12ObBoolSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:741 + 5: _ZN9oceanbase5share15ObTypeLibSysVarC2EPPKcPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSF_EPFiS7_SA_SD_SH_EPFiRNSE_12ObIAllocatorERKNS5_18ObBasicSessionInfoESD_SI_EPFiSO_SR_SD_RNSE_8ObStringEEPFNSE_9ObObjTypeEvEb:741 + 14: 3 + 7: _ZN9oceanbase5share13ObBasicSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKS1_RKNS_6common5ObObjERSB_EPFiS4_S7_S9_SD_EPFiRNSA_12ObIAllocatorERKNS2_18ObBasicSessionInfoES9_SE_EPFiSK_SN_S9_RNSA_8ObStringEEPFNSA_9ObObjTypeEvEb:393 + 11: 3 + 12: 3 + 13: 3 + 14: 3 + 15: 3 + 16: 3 + 17: 3 + 18: 3 + 20: _ZN9oceanbase5share13ObBasicSysVar11clean_valueEv:258 + 2: _ZN9oceanbase5share13ObBasicSysVar16clean_base_valueEv:72 + 2: 3 + 3: _ZN9oceanbase6common5ObObj13set_nop_valueEv:48 + 2: _ZN9oceanbase6common5ObObj7set_extEl:48 + 4: 3 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:24 + 0: 3 + 3: _ZN9oceanbase5share13ObBasicSysVar15clean_inc_valueEv:63 + 2: _ZN9oceanbase6common5ObObj13set_nop_valueEv:63 + 2: _ZN9oceanbase6common5ObObj7set_extEl:63 + 4: 3 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:24 + 0: 3 + 4: _ZN9oceanbase6common5ObObj5resetEv:36 + 6: 3 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:12 + 0: 3 + 5: _ZN9oceanbase6common5ObObj5resetEv:87 + 5: 3 + 6: 3 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:12 + 0: 3 + 3: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:18 + 0: 3 + 4: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:12 + 0: 3 + 13: _ZN9oceanbase5share15ObSysVarTypeLibC2EPPKc:306 + 1: 3 + 2: 3 + 3: 3 + 8.1: 9 + 8.3: 9 + 9: 3 +_ZZN9oceanbase4palf16LogSlidingWindow25try_update_match_lsn_map_ERKNS_6common6ObAddrERKNS0_3LSNEENK5$_375clEPKc.0e4bf25207570af14a78557c8489c4fc:820:11 + 0: 11 + 0.1: 0 + 0.2: 11 + 0.3: 10 _ZN9oceanbase6common8ObLogger13need_to_printEmi:10 + 0.13: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:170 + 2: 10 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKNS0_6ObAddrELb0EEC2EPKcS4_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVIRKNS0_6ObAddrELb0EEC2EPKcS4_:0 + 0: 0 + 0.12: _ZN9oceanbase6common7ObLogKVIRKNS_4palf3LSNELb0EEC2EPKcS5_:0 + 0: 0 +_ZNK9oceanbase4palf16LogSlidingWindow23get_last_submit_log_id_Ev:810:9 + 1: 9 + 2: 9 + 3: 11 + 4: 9 + 2: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEEC2ERS3_:293 + 1: 9 + 4: 11 + 5.1: 0 + 4: _ZN9oceanbase6common10ObSpinLock4lockEv:180 + 2: 9 _ZN9oceanbase6common12ObLatchMutex4lockEjl:9 + 4: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEED2Ev:107 + 2: 0 + 3: 0 + 3.1: 9 + 4.1: 0 + 3: _ZN9oceanbase6common10ObSpinLock6unlockEv:44 + 2: 11 _ZN9oceanbase6common12ObLatchMutex6unlockEv:11 +_ZN9oceanbase6common13ObSEArrayImplINS0_9ObDFMElemELl10ENS0_19ModulePageAllocatorELb0EED2Ev:810:11 + 1: 10 + 3: 10 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS0_9ObDFMElemELl10ENS0_19ModulePageAllocatorELb0EE7destroyEv:440 + 9: 10 + 11: 0 + 13: 10 + 15: 10 + 24: 10 + 10: _ZN9oceanbase6common13ObSEArrayImplINS0_9ObDFMElemELl10ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase4palf7PalfEnv4openElRNS0_10PalfHandleE:807:13 + 1: 13 + 3: 13 + 4: 13 + 5: 13 _ZN9oceanbase4palf11PalfEnvImpl20get_palf_handle_implElRPNS0_14PalfHandleImplE:13 + 6.1: 0 + 7.1: 7 + 9.1: 7 _ZZN9oceanbase4palf7PalfEnv4openElRNS0_10PalfHandleEENK5$_625clEPKc.0e4bf25207570af14a78557c8489c4fc:7 + 11: 7 + 12: 0 + 14: 7 +_ZNK9oceanbase5share6schema21ObSimpleTableSchemaV218get_schema_versionEv:806:64 + 0: 62 +_ZNK9oceanbase4palf11LogStateMgr12can_slide_swEv:804:17 + 1: 16 + 2: 16 + 2.1: 16 + 2.3: 18 + 3: 0 + 3.1: 0 + 2: _ZNK9oceanbase4palf11LogStateMgr20is_leader_reconfirm_Ev:352 + 2: _ZNK9oceanbase4palf11LogStateMgr21check_role_and_state_ERKNS_6common6ObRoleERKNS0_14ObReplicaStateE:352 + 3: 16 + 4: 16 + 2.1: _ZNK9oceanbase4palf11LogStateMgr17is_leader_active_Ev:160 + 2: _ZNK9oceanbase4palf11LogStateMgr21check_role_and_state_ERKNS_6common6ObRoleERKNS0_14ObReplicaStateE:160 + 3: 16 + 4: 16 + 2.2: _ZNK9oceanbase4palf11LogStateMgr19is_follower_active_Ev:0 + 2: _ZNK9oceanbase4palf11LogStateMgr21check_role_and_state_ERKNS_6common6ObRoleERKNS0_14ObReplicaStateE:0 + 3: 0 + 4: 0 + 3.1: _ZNK9oceanbase4palf11LogStateMgr17is_follower_init_Ev:0 + 2: _ZNK9oceanbase4palf11LogStateMgr21check_role_and_state_ERKNS_6common6ObRoleERKNS0_14ObReplicaStateE:0 + 3: 0 + 4: 0 + 3.2: _ZNK9oceanbase4palf11LogStateMgr20is_follower_pending_Ev:0 + 2: _ZNK9oceanbase4palf11LogStateMgr21check_role_and_state_ERKNS_6common6ObRoleERKNS0_14ObReplicaStateE:0 + 3: 0 + 4: 0 +_ZZN9oceanbase4palf15LogBlockHandler6writevEmRKNS0_11LogWriteBufEENK4$_78clEPKc.1598dc2348996c1ae1caea6120522988:800:11 + 0: 13 + 0.1: 0 + 0.2: 13 + 0.3: 11 _ZN9oceanbase6common8ObLogger13need_to_printEmi:11 + 0.11: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:187 + 2: 11 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKNS_4palf11LogWriteBufELb0EEC2EPKcS5_:0 + 0: 0 + 0.9: _ZN9oceanbase6common20ObLogPrintPointerCntIPNS_4palf15LogBlockHandlerEEC2ES4_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVINS0_20ObLogPrintPointerCntIPNS_4palf15LogBlockHandlerEEELb1EEC2EPKcOKS6_:0 + 0: 0 +_ZN9oceanbase3lib2_SILNS0_13ContextSourceE0EED2Ev:798:8 + 1: 7 + 2: 7 + 6.1: 7 + 3: _ZN9oceanbase3lib4Flow6deinitEv:525 + 2: 7 + 4: 7 + 5: 7 + 6: 7 + 9: 7 + 10: 7 + 4: _ZL12abort_unlessb:42 + 5: 7 + 6: 0 + 6.1: _ZN9oceanbase3lib6_SBaseD2Ev:42 + 2: 7 + 3.2: 0 + 3.3: 0 + 3.4: 0 + 3.8: 0 + 3.1: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 +_ZZN9oceanbase4palf7LogTask18update_header_infoERKNS0_3LSNElENK5$_567clEPKc.0e4bf25207570af14a78557c8489c4fc:792:13 + 0: 12 + 0.1: 0 + 0.2: 12 + 0.3: 12 _ZN9oceanbase6common8ObLogger13need_to_printEmi:12 + 0.11: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:204 + 2: 12 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS_4palf3LSNELb0EEC2EPKcS5_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.9: _ZN9oceanbase6common20ObLogPrintPointerCntIPNS_4palf7LogTaskEEC2ES4_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVINS0_20ObLogPrintPointerCntIPNS_4palf7LogTaskEEELb1EEC2EPKcOKS6_:0 + 0: 0 +_ZZN9oceanbase4palf11LogChecksum22acquire_accum_checksumElRlENK5$_151clEPKc.1598dc2348996c1ae1caea6120522988:790:11 + 0: 10 + 0.1: 0 + 0.2: 10 + 0.3: 10 _ZN9oceanbase6common8ObLogger13need_to_printEmi:10 + 0.13: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:170 + 2: 10 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.12: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase10compaction22ObPartitionMergePolicy22check_need_major_mergeERKNS_7storage8ObTabletERlRbS7_S7_:784:2 + 6: 2 + 7: 2 + 8: 2 + 9: 2 + 10: 2 + 12: 2 + 15: 2 + 16: 2 + 18: 3 + 19: 0 + 20.1: 0 + 22: 3 + 22.1: 3 _ZNK9oceanbase7storage13ObITableArray18get_boundary_tableEb:5 + 23: 4 + 24: 4 _ZNK9oceanbase7storage8ObITable20get_snapshot_versionEv:4 + 25: 4 + 26: 0 + 29: 4 + 30: 0 + 31: 0 + 32: 0 + 33.1: 0 + 34.1: 0 + 34.2: 0 + 34.3: 0 + 34.6: 0 + 34.8: 0 + 34.11: 0 + 36.1: 0 + 38: 0 + 39: 0 + 40.1: 0 + 43: 0 + 44: 0 + 45.1: 0 + 45.2: 0 + 45.6: 0 + 49: 0 + 51: 0 + 52: 0 + 53: 0 + 54.1: 0 + 55.1: 0 + 57: 0 + 59: 0 + 60: 0 + 61.1: 0 + 61.2: 0 + 61.6: 0 + 66: 4 + 66.2: 0 + 66.3: 0 + 66.4: 0 + 66.5: 0 + 66.7: 0 + 67.1: 0 + 71.1: 0 + 77: 4 + 11: _ZN9oceanbase7storage21ObTenantFreezeInfoMgr10FreezeInfoC2Ev:46 + 0: 2 + 12: _ZNK9oceanbase7storage8ObTablet20get_snapshot_versionEv:14 + 0: 2 + 18: _ZNK9oceanbase7storage8ObTablet8is_validEv:213 + 3: 2 + 3.1: 2 _ZNK9oceanbase7storage12ObTabletMeta8is_validEv:2 + 4: 3 + 5: 3 + 5.1: 3 _ZNK9oceanbase7storage15ObStorageSchema8is_validEv:3 + 2: _ZNK9oceanbase7storage19ObMetaPointerHandleINS0_14ObTabletMapKeyENS0_8ObTabletEE8is_validEv:70 + 2: 2 + 3: 2 + 3.1: 2 + 4: 2 + 4.1: 2 + 4.1: _ZNK9oceanbase7storage18ObTabletTableStore8is_validEv:87 + 2: 3 + 3: 3 + 3: _ZNK9oceanbase7storage18ObTabletTableStore15get_table_countEv:42 + 0: 3 + 0.1: _ZNK9oceanbase7storage13ObITableArray5countEv:21 + 0: 3 + 22: _ZNK9oceanbase7storage18ObTabletTableStore18get_major_sstablesEv:21 + 0: 3 + 30.1: _ZNK9oceanbase7storage16ObTabletHAStatus23is_data_status_completeEv:0 + 0: _ZN9oceanbase7storage18ObTabletDataStatus11is_completeERKNS1_6STATUSE:0 + 0: 0 + 34.1: _ZN9oceanbase5share11ObTenantEnv3mtlIPNS_7storage21ObTenantFreezeInfoMgrEEET_v:0 + 2: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.1: _ZN9oceanbase5share12ObTenantBase3getIPNS_7storage21ObTenantFreezeInfoMgrEEET_v:0 + 0: _ZN9oceanbase5share12ObTenantBase9inner_getENS1_8IdentityIPNS_7storage21ObTenantFreezeInfoMgrEEE:0 + 0: 0 + 52: _ZNK9oceanbase7storage8ObTablet16get_memtable_mgrEv:0 + 0: 0 + 66.3: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 66.4: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 71.2: _ZN9oceanbase6common10ObTabletIDD2Ev:0 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:0 + 0: 0 + 71.5: _ZN9oceanbase5share6ObLSIDC2ERKS1_:0 + 0: 0 + 71.6: _ZN9oceanbase6common10ObTabletIDC2ERKS1_:0 + 0: 0 + 71.7: _ZN9oceanbase5share6ObLSIDD2Ev:0 + 0: _ZN9oceanbase5share6ObLSID5resetEv:0 + 0: 0 +_ZN9oceanbase7storage17ObLSDDLLogHandler14get_rec_log_tsEv:782:0 + 1: 0 + 2: 0 + 3: 0 + 5: 0 + 6: 0 + 6.1: 0 + 6.2: 0 + 7.1: 0 + 10: 7 _ZN9oceanbase7storage14ObTabletHandleC1Ev:8 + 11: 9 + 12: 9 _ZN9oceanbase7storage18ObLSTabletIterator15get_next_tabletERNS0_14ObTabletHandleE:9 + 12.1: 10 + 14: 0 + 17.1: 0 + 20: 0 + 21.1: 0 + 22.2: 10 _ZN9oceanbase7storage8ObTablet26check_has_effective_ddl_kvERb:11 + 22.3: 10 + 23.1: 0 + 24.1: 10 + 25.1: 0 + 25.2: 0 + 26.1: 0 + 28: 0 + 31.1: 10 _ZN9oceanbase7storage14ObTabletHandleD1Ev:10 + 31.2: 0 + 33: 0 + 34.8: 0 + 34.9: 0 + 6: _ZN9oceanbase7storage4ObLS14get_tablet_svrEv:0 + 0: 0 + 19.1: _ZNK9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE8is_validEv:160 + 2: 10 + 25: _ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE7get_objEv:0 + 2: 0 +_ZNK9oceanbase4palf8election12ElectionImpl25get_current_leader_likelyERNS_6common6ObAddrERl:776:8 + 2: 8 + 12: 0 + 13: 0 + 14: 0 + 14.1: 0 + 14.2: 0 + 23: 3 + 6: _ZNK9oceanbase4palf8election16ElectionProposer12check_leaderEPl:414 + 7: 3 + 10: 3 + 3: _ZN9oceanbase4palf8election16get_monotonic_tsEv:219 + 4: 8 + 5.1: 0 + 6: 0 + 8: 3 + 6: _ZNK9oceanbase4palf8election16ElectionProposer19LeaderLeaseAndEpoch3getERlS4_:171 + 4: 3 + 5: 0 + 7: 3 + 8: 3 + 9: 3 + 10: 3 + 11: 3 + 13: 3 + 14.1: 3 + 14.3: 3 + 7: _ZN9oceanbase6common6ObAddraSERKS1_:93 + 1: 3 + 2: 3 + 3: 3 +_ZN9oceanbase8keybtree18BtreeNodeAllocator10alloc_nodeEb:775:19 + 1: 19 + 2: 19 + 5: 20 _ZN9oceanbase8keybtree18BtreeNodeAllocator3popERPNS0_9BtreeNodeE:19 + 6.1: 0 + 6.2: 0 + 6.5: 0 + 6.8: 0 + 8: 20 + 6.1: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 6.2: _ZNK9oceanbase8keybtree18BtreeNodeAllocator13get_allocatedEv:0 + 0: 0 + 6.7: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase6common16ObRecursiveMutex6unlockEv:773:7 + 1: 6 + 2: 6 + 3: 6 + 4: 0 + 5.1: 0 + 6.1: 6 + 7: 7 _ZN9oceanbase6common7ObLatch6unlockEPKj:6 + 8.1: 0 + 11: 7 + 3: _ZNK9oceanbase6common7ObLatch14is_wrlocked_byEPKj:318 + 3: 6 + 4: 6 + 2.1: _Z9ob_gettidv:270 + 3: 6 + 4: 0 + 2: _Z13get_tid_cachev:126 + 7: 6 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 +_ZN9oceanbase3sql15ObSQLSessionMgr19CheckSessionFunctorclENS0_14SessionInfoKeyEPNS0_16ObSQLSessionInfoE:773:1 + 2: 1 + 3: 1 + 5: 1 + 6: 1 + 7: 0 + 8.1: 0 + 9.1: 1 + 10: 0 + 11.1: 0 + 13: 1 + 14: 1 + 16: 1 _ZN9oceanbase3sql18ObBasicSessionInfo14try_lock_queryEv:1 + 18.1: 0 + 20: 0 + 23: 2 _ZN9oceanbase3sql18ObBasicSessionInfo20try_lock_thread_dataEv:2 + 25.1: 0 + 27: 0 + 30: 2 + 31: 0 + 32.1: 0 + 33.1: 3 _ZN9oceanbase3sql18ObBasicSessionInfo10is_timeoutERb:2 + 34.1: 0 + 35.1: 3 + 36.1: 0 + 37: 0 + 45: 3 _ZN9oceanbase3sql18ObBasicSessionInfo21is_trx_commit_timeoutERPNS_11transaction13ObITxCallbackERi:3 + 47.1: 2 + 48.1: 0 + 49.1: 3 _ZN9oceanbase3sql18ObBasicSessionInfo19is_trx_idle_timeoutERb:2 + 52.1: 3 + 52.2: 0 + 53.1: 0 + 55: 0 + 56.1: 0 + 64: 4 + 65: 0 + 69: 4 + 9.1: _ZNK9oceanbase3sql18ObBasicSessionInfo8is_validEv:7 + 0: 1 + 41.1: _ZN9oceanbase3sql29ObTenantCachedSchemaGuardInfo23try_revert_schema_guardEv:214 + 2: 3 + 4: 3 + 5.1: 2 _ZZN9oceanbase3sql29ObTenantCachedSchemaGuardInfo23try_revert_schema_guardEvENK5$_505clEPKc.7d011f5114f8312fd0eb7b31f2639cf5:2 + 2: _ZNK9oceanbase5share6schema19ObSchemaGetterGuard9is_initedEv:24 + 0: 3 + 4: _ZN9oceanbase6common16ObClockGenerator8getClockEv:63 + 4: 3 + 5.1: 0 + 8: 3 + 6: _ZN9oceanbase6common16ObClockGenerator6get_usEv:0 + 2: 0 + 9: _ZN9oceanbase3sql29ObTenantCachedSchemaGuardInfo5resetEv:44 + 2: 2 _ZN9oceanbase5share6schema19ObSchemaGetterGuard5resetEv:2 + 4: 2 + 43: _ZN9oceanbase3sql16ObSQLSessionInfo21refresh_tenant_configEv:48 + 0: 3 _ZN9oceanbase3sql16ObSQLSessionInfo24ObCachedTenantConfigInfo7refreshEv:3 + 52.2: _ZNK9oceanbase3sql18ObBasicSessionInfo13associated_xaEv:0 + 0: 0 + 55: _ZN9oceanbase3sql15ObSQLSessionMgr20kill_idle_timeout_txEPNS0_16ObSQLSessionInfoE:0 + 2: _ZN9oceanbase3sql17ObSqlTransControl20kill_idle_timeout_txEPNS0_16ObSQLSessionInfoE:0 + 3: 0 + 60: _ZN9oceanbase3sql18ObBasicSessionInfo18unlock_thread_dataEv:24 + 0: 3 _ZN9oceanbase6common16ObRecursiveMutex6unlockEv:3 + 62: _ZN9oceanbase3sql18ObBasicSessionInfo12unlock_queryEv:33 + 0: 3 _ZN9oceanbase6common16ObRecursiveMutex6unlockEv:4 +_ZN9oceanbase5share6schema19ObSchemaGetterGuardC2Ev:772:2 + 1: 2 + 8: 2 + 12: 2 + 13: 2 + 1.1: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:230 + 4: 2 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:200 + 2: 2 + 3: 2 + 4: 2 + 5: 2 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:76 + 0: 2 + 5.2: _ZN9oceanbase6common9ObSEArrayINS_5share6schema15ObSchemaMgrInfoELl2ENS0_19ModulePageAllocatorELb0EECI2NS0_13ObSEArrayImplIS4_Ll2ES5_Lb0EEEElRKS5_:268 + 0: 2 + 0: _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema15ObSchemaMgrInfoELl2ENS0_19ModulePageAllocatorELb0EEC2ElRKS5_:232 + 2: 2 + 5: 2 + 6: 2 + 8: 2 + 17.1: 2 + 2: _ZN9oceanbase6common8ObIArrayINS_5share6schema15ObSchemaMgrInfoEEC2EPS4_l:40 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_5share6schema15ObSchemaMgrInfoEEC2EPS4_l:40 + 0: 2 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:70 + 0: 2 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:42 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:42 + 2: 2 + 8: 2 + 6.2: _ZN9oceanbase6common9ObSEArrayINS_5share6schema19ObSchemaGetterGuard9SchemaObjELl2ENS0_19ModulePageAllocatorELb0EECI2NS0_13ObSEArrayImplIS5_Ll2ES6_Lb0EEEElRKS6_:214 + 0: 2 + 0: _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema19ObSchemaGetterGuard9SchemaObjELl2ENS0_19ModulePageAllocatorELb0EEC2ElRKS6_:178 + 2: 2 + 5: 2 + 6: 2 + 8: 2 + 17.1: 2 + 2: _ZN9oceanbase6common8ObIArrayINS_5share6schema19ObSchemaGetterGuard9SchemaObjEEC2EPS5_l:28 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_5share6schema19ObSchemaGetterGuard9SchemaObjEEC2EPS5_l:28 + 0: 2 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:56 + 0: 2 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:28 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:28 + 2: 2 + 8: 2 +_ZN9oceanbase5share6schema19ObSchemaGetterGuardC1Ev:772:2 + 1: 2 + 8: 2 + 12: 2 + 13: 2 + 1.1: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:230 + 4: 2 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:200 + 2: 2 + 3: 2 + 4: 2 + 5: 2 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:76 + 0: 2 + 5.2: _ZN9oceanbase6common9ObSEArrayINS_5share6schema15ObSchemaMgrInfoELl2ENS0_19ModulePageAllocatorELb0EECI2NS0_13ObSEArrayImplIS4_Ll2ES5_Lb0EEEElRKS5_:268 + 0: 2 + 0: _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema15ObSchemaMgrInfoELl2ENS0_19ModulePageAllocatorELb0EEC2ElRKS5_:232 + 2: 2 + 5: 2 + 6: 2 + 8: 2 + 17.1: 2 + 2: _ZN9oceanbase6common8ObIArrayINS_5share6schema15ObSchemaMgrInfoEEC2EPS4_l:40 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_5share6schema15ObSchemaMgrInfoEEC2EPS4_l:40 + 0: 2 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:70 + 0: 2 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:42 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:42 + 2: 2 + 8: 2 + 6.2: _ZN9oceanbase6common9ObSEArrayINS_5share6schema19ObSchemaGetterGuard9SchemaObjELl2ENS0_19ModulePageAllocatorELb0EECI2NS0_13ObSEArrayImplIS5_Ll2ES6_Lb0EEEElRKS6_:214 + 0: 2 + 0: _ZN9oceanbase6common13ObSEArrayImplINS_5share6schema19ObSchemaGetterGuard9SchemaObjELl2ENS0_19ModulePageAllocatorELb0EEC2ElRKS6_:178 + 2: 2 + 5: 2 + 6: 2 + 8: 2 + 17.1: 2 + 2: _ZN9oceanbase6common8ObIArrayINS_5share6schema19ObSchemaGetterGuard9SchemaObjEEC2EPS5_l:28 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_5share6schema19ObSchemaGetterGuard9SchemaObjEEC2EPS5_l:28 + 0: 2 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:56 + 0: 2 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:28 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:28 + 2: 2 + 8: 2 +_ZZN9oceanbase4palf16LogSlidingWindow31try_update_last_slide_log_info_EllRKNS0_3LSNES4_RKllENK5$_187clEPKc.0e4bf25207570af14a78557c8489c4fc:769:9 + 0: 10 + 0.1: 0 + 0.2: 10 + 0.3: 9 _ZN9oceanbase6common8ObLogger13need_to_printEmi:9 + 0.19: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:153 + 2: 9 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS0_6ObAddrELb0EEC2EPKcS4_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.12: _ZN9oceanbase6common7ObLogKVIRKNS_4palf3LSNELb0EEC2EPKcS5_:0 + 0: 0 + 0.14: _ZN9oceanbase6common7ObLogKVIRKNS_4palf3LSNELb0EEC2EPKcS5_:0 + 0: 0 + 0.16: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.18: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 +_ZNK9oceanbase6common4hash11ObHashTableINS_7storage20ObDiskUsageReportKeyENS1_11HashMapPairIS4_NS3_11TenantUsageEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi89ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE18foreach_refactoredINS0_10ObFunctionIFiRKS7_EEEEEiRT_:767:0 + 1: 0 + 2: 0 + 5: 0 + 5.1: 0 + 6.1: 0 + 7: 0 + 9.1: 7 + 9.2: 7 + 9.3: 7 + 9.5: 7 + 10: 7 + 13: 8 + 14.1: 8 + 14.3: 8 + 16: 0 + 16.1: 0 + 17.1: 0 + 19: 0 + 22.1: 0 + 24: 0 + 5: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_7storage20ObDiskUsageReportKeyENS5_11TenantUsageEEENS0_7ObLatchENS1_5NCondEEEEEbRKT_:0 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_7storage20ObDiskUsageReportKeyENS5_11TenantUsageEEENS0_7ObLatchENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:0 + 2: 0 + 12: _ZN9oceanbase6common4hash16ObBucketLockCondINS1_11HashMapPairINS_7storage20ObDiskUsageReportKeyENS4_11TenantUsageEEENS1_24LatchReadWriteDefendModeEE4lockEv:77 + 2: 7 + 12.1: _ZN9oceanbase6common4hash15LatchReadLockerC2ERNS0_7ObLatchE:337 + 0: 7 + 3: 8 _ZN9oceanbase6common7ObLatch6rdlockEjl:7 + 4.1: 0 + 6: 8 + 7: 8 + 15: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_11HashMapPairINS_7storage20ObDiskUsageReportKeyENS4_11TenantUsageEEEE16check_magic_codeEv:0 + 0: 0 + 15.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 16: _ZNK9oceanbase6common10ObFunctionIFiRKNS0_4hash11HashMapPairINS_7storage20ObDiskUsageReportKeyENS4_11TenantUsageEEEEEclES9_:0 + 2: 0 + 2.1: 0 + 22: _ZN9oceanbase6common4hash15LatchReadLockerD2Ev:96 + 2: 8 + 3: 8 _ZN9oceanbase6common7ObLatch6unlockEPKj:8 + 3.1: 0 +_ZN9oceanbase4palf15LogBlockHandler18inner_writev_once_EmRKNS0_11LogWriteBufE:765:3 + 2: 3 + 3: 3 + 5: 3 _ZNK9oceanbase4palf11LogWriteBuf13get_buf_countEv:3 + 7.1: 9 + 7.3: 9 + 7.5: 9 + 8: 3 + 9: 3 + 10: 3 _ZNK9oceanbase4palf11LogWriteBuf13get_write_bufElRPKcRl:3 + 11.1: 0 + 12.1: 9 _ZN9oceanbase4palf15LogBlockHandler17inner_write_once_EmPKcl:3 + 13.1: 0 + 16: 9 + 19: 9 +_ZN9oceanbase3omt8ObTenant21calibrate_token_countEv:765:26 + 1: 26 + 2: 26 + 2.1: 0 + 4: 0 + 5: 0 + 5.1: 0 + 6: 0 + 9: 0 + 9.2: 0 + 9.3: 0 + 10: 0 + 11: 0 + 12: 0 + 13: 0 + 18: 0 + 18.1: 0 + 19: 0 + 21: 0 + 22: 0 + 24: 0 + 25: 0 + 29: 27 + 6: _ZN9oceanbase3lib7ObMutex7trylockEv:0 + 0: 0 + 9: _ZN9oceanbase6common7ObDListINS0_11ObDLinkNodeIPNS_3lib6WorkerEEEE9get_firstEv:0 + 0: 0 + 11: _ZN9oceanbase3omt10ObThWorker9is_activeEv:0 + 0: 0 + 13: _ZN9oceanbase3lib6Worker12has_req_flagEv:0 + 2: 0 + 19: _ZNK9oceanbase3omt8ObTenant18worker_count_boundEv:0 + 6: 0 + 10: 0 + 19.1: _ZN9oceanbase6common3minEll:0 + 2: 0 + 19.2: _ZN9oceanbase3omt8ObTenant9set_tokenEl:0 + 2: 0 + 3: 0 + 22: _ZN9oceanbase6common3maxEll:0 + 2: 0 + 22.1: _ZN9oceanbase3omt8ObTenant9set_tokenEl:0 + 2: 0 + 3: 0 + 26: _ZN9oceanbase3lib7ObMutex6unlockEv:0 + 0: 0 +_ZNK9oceanbase5obrpc16ObTransRpcResult9serializeEPclRl:764:2 + 0: 2 + 0.1: 2 + 0.2: 2 + 0.4: 0 + 0.11: 0 + 0.12: 2 + 0.13: 2 _ZNK9oceanbase5obrpc16ObTransRpcResult19serialize_dispatch_EPclRlSt17integral_constantIbLb0EE:2 + 0.15: 0 + 0.21: 0 + 0.22: 2 + 0.24: 2 + 0.25: 0 + 0.32: 0 + 0.33: 0 + 0.35: 0 + 0.2: _ZN9oceanbase6common13serialization6encodeEPclRll:72 + 2: _ZN9oceanbase6common13serialization11encode_vi64EPclRll:72 + 3: 2 + 4: 2 + 5: 2 + 11: 2 + 0.4: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 0.5: _ZN9oceanbase6common7ObLogKVIRA13_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 0.15: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 0.22: _ZN9oceanbase6common13serialization22encode_fixed_bytes_i64EPclRll:494 + 5: 2 + 8: 8 + 9: 8 + 0.27: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.29: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.31: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.34: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase4palf22BatchLogIOFlushLogTask9push_backEPNS0_17LogIOFlushLogTaskE:761:7 + 1: 7 + 2: 7 + 3: 7 + 4: 7 + 5: 0 + 6.1: 0 + 7.1: 7 + 8: 0 + 9.1: 0 + 10.1: 9 _ZN9oceanbase6common16ObFixedArrayImplIPNS_4palf17LogIOFlushLogTaskENS0_12ObIAllocatorEE9push_backERKS4_:11 + 11.1: 0 + 13: 9 + 14.1: 9 _ZZN9oceanbase4palf22BatchLogIOFlushLogTask9push_backEPNS0_17LogIOFlushLogTaskEENK5$_723clEPKc.1598dc2348996c1ae1caea6120522988:9 + 16: 9 + 3: _ZNK9oceanbase4palf9LogIOTask11get_palf_idEv:28 + 0: 7 +_ZZNK9oceanbase4palf16LogSlidingWindow17get_majority_lsn_ERKNS_6common16ObMemberListBaseILl7EEElRNS0_3LSNEENK5$_271clEPKc.0e4bf25207570af14a78557c8489c4fc:759:11 + 0: 11 + 0.1: 0 + 0.2: 11 + 0.3: 11 _ZN9oceanbase6common8ObLogger13need_to_printEmi:11 + 0.9: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:187 + 2: 11 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS0_6ObAddrELb0EEC2EPKcS4_:0 + 0: 0 + 0.7: _ZN9oceanbase6common7ObLogKVINS0_6ObAddrELb0EEC2EPKcRKS2_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVINS_4palf3LSNELb0EEC2EPKcRKS3_:0 + 0: 0 +_ZN9oceanbase4palf24palf_reach_time_intervalElRl:758:22 + 1: 22 + 3: 22 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:22 + 5: 0 + 8: 18 +_ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE3mapINS7_8HandleOnINS2_11PalfEnvImpl18SwitchStateFunctorEEEEEiRT_:757:3 + 1: 3 + 3: 3 + 6.1: 11 + 6.3: 9 + 6.4: 9 + 7: 9 _ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE8HandleOnINS2_11PalfEnvImpl18SwitchStateFunctorEEclERS3_PS4_:9 + 11: 0 + 12: 7 + 3: _ZNK9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE4sizeEv:45 + 0: _ZNK9oceanbase6common11CountHandle4sizeEv:45 + 0: 3 + 259: 3 + 5: _ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE8IteratorC2ERS7_:79 + 0: 7 _ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE4nextEPNS0_12LinkHashNodeIS3_EE:3 + 6.2: _ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE8Iterator4nextERPS4_:245 + 1: 17 + 4: 10 + 5: 10 _ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE4nextEPNS0_12LinkHashNodeIS3_EE:11 + 65528: 7 + 11.1: _ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE8IteratorD2Ev:0 + 0.2: 0 + 0: _ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE8Iterator7destroyEv:0 + 1: 0 + 2: 0 + 3: 0 +_ZZN9oceanbase4palf19LogGroupEntryHeader8generateEbbRKNS0_11LogWriteBufElllRKNS0_3LSNERKlRlENK5$_635clEPKc.1598dc2348996c1ae1caea6120522988:756:9 + 0: 9 + 0.1: 0 + 0.2: 9 + 0.3: 9 _ZN9oceanbase6common8ObLogger13need_to_printEmi:9 + 0.11: 0 + 0.13: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:153 + 2: 9 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKbLb0EEC2EPKcS3_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKNS_4palf19LogGroupEntryHeaderELb0EEC2EPKcS5_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.12: _ZN9oceanbase6common7ObLogKVIbLb1EEC2EPKcOKb:0 + 0: 0 +_ZZN9oceanbase4palf10LogStorage6writevERKNS0_3LSNERKNS0_11LogWriteBufElENK5$_494clEPKc.0e4bf25207570af14a78557c8489c4fc:756:10 + 0: 9 + 0.1: 0 + 0.2: 9 + 0.3: 9 _ZN9oceanbase6common8ObLogger13need_to_printEmi:9 + 0.15: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:153 + 2: 9 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS_4palf14LogBlockHeaderELb0EEC2EPKcS5_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKNS_4palf3LSNELb0EEC2EPKcS5_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVIRKNS_4palf3LSNELb0EEC2EPKcS5_:0 + 0: 0 + 0.12: _ZN9oceanbase6common7ObLogKVIRKNS_4palf11LogWriteBufELb0EEC2EPKcS5_:0 + 0: 0 + 0.13: _ZN9oceanbase6common20ObLogPrintPointerCntIPNS_4palf10LogStorageEEC2ES4_:0 + 0: 0 + 0.14: _ZN9oceanbase6common7ObLogKVINS0_20ObLogPrintPointerCntIPNS_4palf10LogStorageEEELb1EEC2EPKcOKS6_:0 + 0: 0 +_ZN9oceanbase4palf11LogChecksum22acquire_accum_checksumElRl:751:9 + 2: 9 + 4: 9 + 7: 9 + 8: 9 _ZN9oceanbase6common8ob_crc64EmPKvl:9 + 10: 9 + 11.1: 9 _ZZN9oceanbase4palf11LogChecksum22acquire_accum_checksumElRlENK5$_151clEPKc.1598dc2348996c1ae1caea6120522988:11 + 14: 10 +_ZN9oceanbase3omt8ObTenant22calibrate_worker_countEv:750:16 + 1: 15 + 3: 15 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:15 + 4: 15 + 5: 0 + 7: 0 + 7.2: 0 + 7.3: 0 + 8: 0 + 9: 0 + 13: 0 + 14.1: 0 + 15: 0 + 16: 0 + 18: 0 + 22: 15 + 5: _ZN9oceanbase3lib7ObMutex7trylockEv:0 + 0: 0 + 7: _ZN9oceanbase6common7ObDListINS0_11ObDLinkNodeIPNS_3lib6WorkerEEEE9get_firstEv:0 + 0: 0 + 9: _ZN9oceanbase3omt10ObThWorker9is_activeEv:0 + 0: 0 + 13: _ZNK9oceanbase6common7ObDListINS0_11ObDLinkNodeIPNS_3lib6WorkerEEEE8get_sizeEv:0 + 0: 0 + 19: _ZN9oceanbase3lib7ObMutex6unlockEv:0 + 0: 0 +_ZN9oceanbase12blocksstable18ObMicroBlockReader22get_multi_version_infoEllRNS0_21ObMultiVersionRowFlagERNS_11transaction9ObTransIDERlS7_:749:2 + 7: 2 + 8: 2 + 9: 2 + 10: 2 + 11: 0 + 12.1: 0 + 13.1: 2 + 13.3: 2 + 13.5: 2 + 13.6: 2 + 17: 0 + 18.1: 0 + 20.1: 2 _ZN9oceanbase12blocksstable11ObRowReader15read_row_headerEPKclRPKNS0_11ObRowHeaderE:2 + 24.1: 0 + 27: 2 + 28: 2 + 31: 2 + 31.3: 2 + 32: 3 _ZN9oceanbase12blocksstable11ObRowReader11read_columnEPKcllRNS0_14ObStorageDatumE:2 + 37.1: 0 + 39: 3 + 40: 0 + 41: 0 + 44: 3 + 45: 3 + 50: 3 + 27: _ZNK9oceanbase12blocksstable11ObRowHeader12get_trans_idEv:8 + 0: 2 + 27.1: _ZN9oceanbase11transaction9ObTransIDaSERKl:8 + 1: 2 + 30: _ZN9oceanbase12blocksstable14ObStorageDatumC2Ev:64 + 0.1: _ZN9oceanbase12blocksstable14ObStorageDatum7set_nopEv:64 + 0: _ZN9oceanbase12blocksstable14ObStorageDatum13set_ext_valueEl:64 + 1: _ZN9oceanbase12blocksstable14ObStorageDatum5reuseEv:16 + 0: 2 + 1.1: _ZN9oceanbase6common11ObDatumDesc7set_extEv:16 + 0: 2 + 1.3: _ZN9oceanbase6common5ObObj7set_extEl:32 + 4: 2 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:16 + 0: 2 + 39: _ZNK9oceanbase12blocksstable21ObMultiVersionRowFlag18is_uncommitted_rowEv:12 + 0: 3 + 41: _ZNK9oceanbase6common7ObDatum7get_intEv:0 + 0: 0 + 45: _ZNK9oceanbase6common7ObDatum7get_intEv:18 + 0: 3 +_ZZN9oceanbase4palf16LogSlidingWindow10submit_logEPKcllRNS0_3LSNERlENK5$_111clES3_.0e4bf25207570af14a78557c8489c4fc:747:9 + 0: 9 + 0.1: 0 + 0.2: 9 + 0.3: 9 _ZN9oceanbase6common8ObLogger13need_to_printEmi:9 + 0.19: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:153 + 2: 9 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS0_6ObAddrELb0EEC2EPKcS4_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVIRKNS_4palf3LSNELb0EEC2EPKcS5_:0 + 0: 0 + 0.12: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.14: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.16: _ZN9oceanbase6common7ObLogKVIRKbLb0EEC2EPKcS3_:0 + 0: 0 + 0.18: _ZN9oceanbase6common7ObLogKVIRKbLb0EEC2EPKcS3_:0 + 0: 0 +_ZZN9oceanbase4palf11LogBlockMgr6writevEmmRKNS0_11LogWriteBufEENK5$_114clEPKc.1598dc2348996c1ae1caea6120522988:744:12 + 0: 12 + 0.1: 0 + 0.2: 12 + 0.3: 12 _ZN9oceanbase6common8ObLogger13need_to_printEmi:12 + 0.9: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:204 + 2: 12 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 +_ZNK9oceanbase12blocksstable17ObFuseRowCacheKey13get_tenant_idEv:740:77 + 1: 74 + 2: 74 +_ZN9oceanbase6common16ObMultiModRefMgrINS_7storage10ObLSGetModEE3decES3_:740:6 + 1: 5 + 3: 5 + 4: 5 + 5.1: 0 + 7: 5 + 9: 5 + 11: 5 + 12: 5 + 12.1: 0 + 13: 0 + 14: 0 + 16: 0 + 17: 0 + 18: 0 + 24: 5 + 27: 5 + 7: _ZN9oceanbase6common8get_itidEv:120 + 4: 5 + 5: 0 + 6: 0 + 8: 0 + 9: _ZN9oceanbase6common5ObRef4lockEv:110 + 1.1: 5 + 11: _ZN9oceanbase6common5ObRef3decEv:20 + 1.1: 5 + 12.1: _ZN9oceanbase6common16ObMultiModRefMgrINS_7storage10ObLSGetModEE17get_total_ref_cntEv:0 + 2.1: 0 + 4: 0 + 4: _ZNK9oceanbase6common5ObRef11get_ref_cntEv:0 + 1: 0 + 13: _ZN9oceanbase6common5ObRef3incEv:0 + 1.1: 0 + 14: _ZN9oceanbase6common5ObRef6unlockEv:0 + 1: 0 + 17: _ZN9oceanbase6common5ObRef3decEv:0 + 1.1: 0 + 18: _ZN9oceanbase6common16ObMultiModRefMgrINS_7storage10ObLSGetModEE17get_total_ref_cntEv:0 + 2.1: 0 + 4: 0 + 4: _ZNK9oceanbase6common5ObRef11get_ref_cntEv:0 + 1: 0 + 21: _ZN9oceanbase6common16ObMultiModRefMgrINS_7storage10ObLSGetModEE15unlock_all_slotEv:0 + 1.1: 0 + 3: _ZN9oceanbase6common5ObRef6unlockEv:0 + 1: 0 + 24: _ZN9oceanbase6common5ObRef6unlockEv:30 + 1: 5 +_ZN9oceanbase7storage9ObTxTable13lock_for_readERKNS_11transaction16ObLockForReadArgElRbRlS6_RKNS_6common10ObFunctionIFiRKNS0_8ObTxDataEPNS0_9ObTxCCCtxEEEERKNS9_IFbvEEE:738:4 + 7: 4 + 8: 4 _ZN9oceanbase7storage18LockForReadFunctorC2ERKNS_11transaction16ObLockForReadArgERbRlS6_RKNS_6common10ObFunctionIFiRKNS0_8ObTxDataEPNS0_9ObTxCCCtxEEEERKNS9_IFbvEEE:4 + 9: 4 _ZN9oceanbase7storage9ObTxTable18check_with_tx_dataENS_11transaction9ObTransIDERNS0_21ObITxDataCheckFunctorEl:5 + 13: 4 + 9.1: _ZN9oceanbase11transaction9ObTransIDD2Ev:16 + 0: 2 + 9.2: _ZN9oceanbase11transaction9ObTransIDD2Ev:0 + 0: 0 + 13: _ZN9oceanbase7storage18LockForReadFunctorD2Ev:310 + 0: 2 + 0: _ZN9oceanbase6common10ObFunctionIFbvEED2Ev:94 + 0.2: 0 + 0: _ZN9oceanbase6common10ObFunctionIFbvEE5resetEv:94 + 1: 2 + 2: 2 _ZN9oceanbase6common10ObFunctionIFbvEE8AbstractD2Ev:3 + 3: 3 + 4: 0 + 6: 4 + 3: _ZN9oceanbase6common10ObFunctionIFbvEE13is_local_obj_Ev:33 + 1: 3 + 0.1: _ZN9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEED2Ev:180 + 0.2: 0 + 0: _ZN9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEE5resetEv:180 + 1: 4 + 2: 4 _ZN9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEE8AbstractD2Ev:4 + 3: 4 + 4: 0 + 6: 4 + 3: _ZN9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEE13is_local_obj_Ev:68 + 1: 4 + 13.1: _ZN9oceanbase7storage18LockForReadFunctorD2Ev:0 + 0: 0 + 0: _ZN9oceanbase6common10ObFunctionIFbvEED2Ev:0 + 0.2: 0 + 0: _ZN9oceanbase6common10ObFunctionIFbvEE5resetEv:0 + 1: 0 + 2: 0 + 3: 0 + 4: 0 + 6: 0 + 3: _ZN9oceanbase6common10ObFunctionIFbvEE13is_local_obj_Ev:0 + 1: 0 + 0.1: _ZN9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEED2Ev:0 + 0.2: 0 + 0: _ZN9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEE5resetEv:0 + 1: 0 + 2: 0 + 3: 0 + 4: 0 + 6: 0 + 3: _ZN9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEE13is_local_obj_Ev:0 + 1: 0 +_ZN9oceanbase3omt8ObTenant6unlockERNS_6common10ObLDHandleE:735:7 + 1: 7 + 2: 7 + 3: 8 _ZN9oceanbase6common9ObLDLatch6unlockERNS0_10ObLDHandleEPKj:7 + 2: _Z9ob_gettidv:315 + 3: 7 + 4: 0 + 2: _Z13get_tid_cachev:147 + 7: 7 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 +_ZZN9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE6revertElENKUlPKcE4_clES5_:730:10 + 0: 10 + 0.1: 0 + 0.2: 10 + 0.3: 10 _ZN9oceanbase6common8ObLogger13need_to_printEmi:10 + 0.9: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:170 + 2: 10 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 +_ZNK9oceanbase4palf12LSNAllocator14get_max_log_tsEv:729:3 + 1: 2 + 3: 2 + 5: 2 + 8: 3 + 10: 3 + 5: _ZN9oceanbase6common8TCRWLock10RLockGuardC2ERS1_:2 + 0: 2 _ZN9oceanbase6common8TCRWLock6rdlockEl:2 + 7: _Z7load128RoPN5types9uint128_tE:60 + 2: 3 + 9: _ZN9oceanbase6common8TCRWLock10RLockGuardD2Ev:501 + 0.2: 0 + 0: _ZN9oceanbase6common8TCRWLock8rdunlockEv:501 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:12 + 0: 3 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPi:435 + 2: 3 + 4.1: 3 + 4.2: 3 + 6: 6 + 6.1: 3 + 10: 3 + 2: _ZN9oceanbase6common8get_itidEv:84 + 4: 3 + 5: 0 + 6: 0 + 8: 0 + 11: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:33 + 2: 3 + 2.1: 0 + 3: 0 +_ZN9oceanbase7storage16ObUndoStatusList11deserializeEPKclRlRNS_6common12ObSliceAllocE:726:3 + 4: 3 + 5: 3 + 6: 3 + 7: 3 + 9: 3 + 10.1: 0 + 11.1: 3 + 12.1: 0 + 13.1: 3 + 14: 0 + 15.1: 0 + 16.1: 3 + 17: 0 + 18.1: 0 + 19.1: 3 + 20: 0 + 21.1: 0 + 24: 3 + 25: 3 _ZN9oceanbase7storage16ObUndoStatusList12deserialize_EPKclRlRNS_6common12ObSliceAllocE:3 + 26.1: 0 + 28: 3 + 31: 3 + 9: _ZN9oceanbase6common13serialization11decode_vi64EPKclRlPl:159 + 4: 3 + 6.2: 3 + 6.3: 3 + 7: 0 + 11: 0 + 12: 0 + 15: 3 + 18: 3 + 19: 3 + 20: 3 + 11.1: _ZN9oceanbase6common13serialization11decode_vi64EPKclRlPl:153 + 6: 0 + 6.2: 3 + 6.3: 3 + 7: 0 + 11: 0 + 12: 0 + 15: 3 + 18: 3 + 19: 3 + 20: 3 +_ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE10ELS3_10EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE:720:3 + 0: 3 + 0.2: 0 + 0.3: 0 + 0.4: 3 + 0.6: 0 + 0.7: 0 + 0.8: 3 + 0.9: 3 + 0.12: 0 + 0.18: 3 + 0.20: 4 + 0.27: 3 _ZN9oceanbase6common9ObCharset8strcmpspENS0_15ObCollationTypeEPKclS4_lb:3 + 0: _ZNK9oceanbase6common5ObObj14get_type_classEv:39 + 0: _ZNK9oceanbase6common9ObObjMeta14get_type_classEv:39 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:21 + 0: 3 + 0.1: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:18 + 2: 3 + 0.4: _ZNK9oceanbase6common5ObObj14get_type_classEv:39 + 0: _ZNK9oceanbase6common9ObObjMeta14get_type_classEv:39 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:21 + 0: 3 + 0.1: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:18 + 2: 3 + 0.9: _ZNK9oceanbase6common5ObObj18get_collation_typeEv:24 + 0: _ZNK9oceanbase6common9ObObjMeta18get_collation_typeEv:24 + 0: 3 + 0.23: _ZN9oceanbase3lib14is_oracle_modeEv:120 + 2: _ZN9oceanbase3lib15get_compat_modeEv:120 + 2: 3 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:72 + 2: 3 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 0.26: _ZN9oceanbase6common22is_calc_with_end_spaceENS0_9ObObjTypeES1_bNS0_15ObCollationTypeES2_:3 + 5: 3 + 5.1: 0 + 6.1: 0 + 0.28: _ZN9oceanbase6common13ObObjCmpFuncs9INT_TO_CREi:60 + 0: 4 +_ZN9oceanbase5share6schema19ObSchemaGetterGuard28get_outline_info_with_sql_idEmmRKNS_6common8ObStringERPKNS1_13ObOutlineInfoE:720:3 + 5: 3 + 6: 3 + 7: 3 + 8: 3 + 10: 3 + 11: 3 + 12: 0 + 13.1: 0 + 14.1: 3 + 14.2: 3 + 15: 3 + 17: 0 + 18.1: 0 + 19.1: 3 + 20.1: 0 + 21.1: 3 _ZNK9oceanbase5share6schema19ObSchemaGetterGuard16check_lazy_guardEmRPKNS1_11ObSchemaMgrE:3 + 22.1: 0 + 23.1: 2 _ZNK9oceanbase5share6schema12ObOutlineMgr30get_outline_schema_with_sql_idEmmRKNS_6common8ObStringERPKNS1_21ObSimpleOutlineSchemaE:2 + 25.1: 0 + 26.1: 2 + 28.1: 0 + 28.4: 0 + 33.1: 0 + 34.1: 0 + 35: 0 + 36.1: 0 + 38: 2 + 11: _ZNK9oceanbase5share6schema19ObSchemaGetterGuard16check_inner_statEv:144 + 2: 3 + 3: 3 + 4: 0 + 5.1: 0 + 6.1: 3 + 6.2: 3 + 7: 3 + 7.1: 3 + 8: 0 + 9.1: 0 + 11: 3 + 16.1: _ZNK9oceanbase6common8ObString5emptyEv:48 + 2: 3 + 2.1: 3 + 19.1: _ZNK9oceanbase5share6schema19ObSchemaGetterGuard25check_tenant_schema_guardEm:54 + 2: 3 + 4: 3 + 6: 0 + 7.1: 0 + 10: 0 + 3: _ZNK9oceanbase5share6schema19ObSchemaGetterGuard22is_tenant_schema_guardEv:30 + 0: 3 + 28.1: _ZNK9oceanbase5share6schema21ObSimpleOutlineSchema13get_tenant_idEv:0 + 0: 0 + 28.2: _ZNK9oceanbase5share6schema21ObSimpleOutlineSchema14get_outline_idEv:0 + 0: 0 + 28.3: _ZNK9oceanbase5share6schema21ObSimpleOutlineSchema18get_schema_versionEv:0 + 0: 0 +_ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScanner13lock_for_readERKNS_11transaction16ObLockForReadArgERbRlS6_:716:3 + 5: 3 + 6: 3 + 7: 3 + 9.3: 3 _ZN9oceanbase7storage9ObTxTable13lock_for_readERKNS_11transaction16ObLockForReadArgElRbRlS6_RKNS_6common10ObFunctionIFiRKNS0_8ObTxDataEPNS0_9ObTxCCCtxEEEERKNS9_IFbvEEE:3 + 9.4: 2 + 11.1: 0 + 13: 2 + 8: _ZNK9oceanbase7storage14ObTxTableGuard5epochEv:12 + 0: 3 + 9: _ZNK9oceanbase7storage14ObTxTableGuard12get_tx_tableEv:12 + 0: 3 + 9.1: _ZN9oceanbase6common8function24DefaultFunctionAllocator21get_default_allocatorEv:33 + 1: 3 + 1.1: 0 + 1.3: 0 + 9.2: _ZN9oceanbase6common10ObFunctionIFbvEEC2INS_7storage25ObReCheckNothingOperationELb1EEEOT_RNS0_12ObIAllocatorE:150 + 2: 3 + 6.1: _ZN9oceanbase6common10ObFunctionIFbvEE6assignINS_7storage25ObReCheckNothingOperationELb1EEEiOT_:129 + 7: 3 + 12: 3 + 12.1: _ZN9oceanbase6common10ObFunctionIFbvEE7DerivedINS_7storage25ObReCheckNothingOperationEEC2IS6_EEOT_:54 + 0: 3 + 9.4: _ZN9oceanbase6common10ObFunctionIFbvEED2Ev:60 + 0.2: 0 + 0: _ZN9oceanbase6common10ObFunctionIFbvEE5resetEv:60 + 1: 1 + 2: 1 _ZN9oceanbase6common10ObFunctionIFbvEE8AbstractD2Ev:2 + 3: 2 + 4: 0 + 6: 2 + 3: _ZN9oceanbase6common10ObFunctionIFbvEE13is_local_obj_Ev:20 + 1: 2 + 9.6: _ZN9oceanbase6common10ObFunctionIFbvEED2Ev:0 + 0.2: 0 + 0: _ZN9oceanbase6common10ObFunctionIFbvEE5resetEv:0 + 1: 0 + 2: 0 + 3: 0 + 4: 0 + 6: 0 + 3: _ZN9oceanbase6common10ObFunctionIFbvEE13is_local_obj_Ev:0 + 1: 0 + 9.7: _ZN9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEED2Ev:0 + 0.2: 0 + 0: _ZN9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEE5resetEv:0 + 1: 0 + 2: 0 + 3: 0 + 4: 0 + 6: 0 + 3: _ZN9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEE13is_local_obj_Ev:0 + 1: 0 + 9.9: _ZN9oceanbase6common8function24DefaultFunctionAllocator21get_default_allocatorEv:54 + 1: 3 + 1.1: 0 + 1.3: 0 + 9.10: _ZN9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEEC2INS2_26ObCleanoutNothingOperationELb1EEEOT_RNS0_12ObIAllocatorE:102 + 2: 3 + 6.1: _ZN9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEE6assignINS2_26ObCleanoutNothingOperationELb1EEEiOT_:69 + 7: 3 + 12: 3 + 12.1: _ZN9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEE7DerivedINS2_26ObCleanoutNothingOperationEEC2ISB_EEOT_:45 + 0: 3 + 9.12: _ZN9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEED2Ev:66 + 0.2: 0 + 0: _ZN9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEE5resetEv:66 + 1: 2 + 2: 2 _ZN9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEE8AbstractD2Ev:2 + 3: 2 + 4: 0 + 6: 2 + 3: _ZN9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEE13is_local_obj_Ev:22 + 1: 2 +_ZNK9oceanbase5share6schema11ObSchemaMgr16get_table_schemaEmmmRKNS_6common8ObStringERPKNS1_21ObSimpleTableSchemaV2E:713:0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 15.1: 0 + 15.2: 0 + 16: 0 + 18: 0 + 19.1: 0 + 20.1: 2 + 21.1: 0 + 22.1: 2 + 23: 2 + 25: 0 + 26.1: 0 + 28: 2 + 29: 2 + 30: 2 + 32: 2 + 33.1: 0 + 34.1: 0 + 35.1: 0 + 36: 0 + 37.1: 0 + 39: 2 + 40: 2 + 43: 0 + 44: 0 + 45.1: 0 + 49.1: 1 + 52: 1 + 53: 1 _ZNK9oceanbase6common4hash16ObPointerHashMapINS_5share6schema24ObTableSchemaHashWrapperEPNS4_21ObSimpleTableSchemaV2ENS4_13GetTableKeyV2ELl8064ENS0_19ModulePageAllocatorEE14get_refactoredERKS5_RS7_:1 + 54: 2 + 55: 2 + 56: 0 + 57.1: 0 + 66: 2 + 17.1: _ZNK9oceanbase6common8ObString5emptyEv:0 + 2: 0 + 2.1: 0 + 40: _ZN9oceanbase5share6schema24ObTableSchemaHashWrapperC2EmmmNS_6common14ObNameCaseModeERKNS3_8ObStringE:78 + 2: 2 + 41: _ZNK9oceanbase6common4hash16ObPointerHashMapINS_5share6schema24ObTableSchemaHashWrapperEPNS4_21ObSimpleTableSchemaV2ENS4_13GetTableKeyV2ELl8064ENS0_19ModulePageAllocatorEE14get_refactoredERKS5_RS7_:257 + 4: 2 + 5.1: 0 + 8.1: 2 + 9: 2 + 9: _ZNK9oceanbase6common4hash18ObPointerHashArrayINS_5share6schema24ObTableSchemaHashWrapperEPNS4_21ObSimpleTableSchemaV2ENS4_13GetTableKeyV2EE14get_refactoredERKS5_RS7_:60 + 3: 3 + 4: 3 _ZNK9oceanbase6common4hash18ObPointerHashArrayINS_5share6schema24ObTableSchemaHashWrapperEPNS4_21ObSimpleTableSchemaV2ENS4_13GetTableKeyV2EE21placement_hash_searchERKS5_Rl:3 + 5: 0 + 5.1: 0 + 6.1: 0 + 9: 0 + 52: _ZN9oceanbase5share6schema24ObTableSchemaHashWrapperC2EmmmNS_6common14ObNameCaseModeERKNS3_8ObStringE:31 + 2: 1 +_ZN9oceanbase10compaction22ObPartitionMergePolicy30cal_hist_minor_merge_thresholdEv:712:6 + 1: 4 + 3: 5 _ZN9oceanbase3omt17ObTenantConfigMgr12get_instanceEv:5 + 3.4: 5 _ZNK9oceanbase3omt17ObTenantConfigMgr27get_tenant_config_with_lockEmmm:5 + 3.5: 3 _ZN9oceanbase3omt19ObTenantConfigGuardC1EPNS0_14ObTenantConfigE:3 + 4.1: 3 + 5.2: 3 + 6: 3 + 7: 3 + 8.1: 5 _ZN9oceanbase3omt19ObTenantConfigGuardD1Ev:5 + 3.1: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:85 + 2: 5 + 2.1: 0 + 2.2: 0 + 3.2: _ZNK9oceanbase5share12ObTenantBase2idEv:75 + 0: 5 + 3.3: _ZN9oceanbase3omt17ObTenantConfigMgr26default_fallback_tenant_idEv:220 + 4: 5 + 4.1: 0 + 2: _ZN9oceanbase5share5GuardILNS0_12ObEntityTypeE0EE13current_guardEv:140 + 3: 5 + 8: 0 + 10: 0 + 11: 0 + 12: 0 + 8.1: _ZN9oceanbase5share5GuardILNS0_12ObEntityTypeE0EEC2ERNS0_13ObTenantSpaceE:0 + 1: 0 + 3: 0 + 11: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 2.1: _ZN9oceanbase5share5GuardILNS0_12ObEntityTypeE0EEptEv:15 + 0: 5 + 2.2: _ZNK9oceanbase5share13ObTenantSpace10get_tenantEv:45 + 0: 5 + 4.1: _ZNK9oceanbase5share12ObTenantBase2idEv:0 + 0: 0 + 4: _ZN9oceanbase3omt19ObTenantConfigGuard8is_validEv:36 + 0: 3 +_ZN9oceanbase3sql20ObSecurityAuditUtils17check_allow_auditERNS0_16ObSQLSessionInfoERNS0_16ObAuditTrailTypeE:710:4 + 1: 4 + 2: 4 + 3: 4 + 4: 4 _ZN9oceanbase3omt17ObTenantConfigMgr12get_instanceEv:4 + 4.3: 4 _ZNK9oceanbase3omt17ObTenantConfigMgr27get_tenant_config_with_lockEmmm:4 + 4.4: 2 _ZN9oceanbase3omt19ObTenantConfigGuardC1EPNS0_14ObTenantConfigE:2 + 5.1: 2 + 7: 0 + 8.1: 0 + 10.2: 2 + 10.4: 0 + 10.5: 0 + 11.2: 2 + 12.3: 2 + 14.1: 0 + 14.3: 0 + 14.4: 0 + 15.2: 0 + 15.3: 0 + 16.1: 0 + 17: 0 + 18: 0 + 18.1: 0 + 18.2: 0 + 19: 0 + 20: 0 + 20.1: 0 + 20.2: 0 + 20.3: 0 + 20.6: 0 + 21.1: 0 + 28: 2 + 29.6: 2 _ZN9oceanbase3omt19ObTenantConfigGuardD1Ev:2 + 29.7: 0 + 4.1: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:28 + 0: 4 + 4.2: _ZN9oceanbase3omt17ObTenantConfigMgr26default_fallback_tenant_idEv:260 + 4: 4 + 4.1: 4 + 2: _ZN9oceanbase5share5GuardILNS0_12ObEntityTypeE0EE13current_guardEv:112 + 3: 4 + 8: 0 + 10: 0 + 11: 0 + 12: 0 + 8.1: _ZN9oceanbase5share5GuardILNS0_12ObEntityTypeE0EEC2ERNS0_13ObTenantSpaceE:0 + 1: 0 + 3: 0 + 11: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 2.1: _ZN9oceanbase5share5GuardILNS0_12ObEntityTypeE0EEptEv:12 + 0: 4 + 2.2: _ZNK9oceanbase5share13ObTenantSpace10get_tenantEv:36 + 0: 4 + 4.1: _ZNK9oceanbase5share12ObTenantBase2idEv:28 + 0: 4 + 5: _ZN9oceanbase3omt19ObTenantConfigGuard8is_validEv:14 + 0: 2 + 10.1: _ZNK9oceanbase3sql18ObBasicSessionInfo20is_oracle_compatibleEv:74 + 0: 2 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo22get_compatibility_modeEv:66 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12get_sql_modeEv:66 + 0: 2 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache12get_sql_modeEv:44 + 0: 2 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache12get_sql_modeEb:24 + 0: 2 + 10.3: _ZNK9oceanbase3sql18ObBasicSessionInfo18is_oracle_sys_userEv:0 + 0: _ZN9oceanbase6common15is_ora_sys_userEm:0 + 2: 0 + 12.2: _ZNK9oceanbase3sql18ObBasicSessionInfo18is_mysql_root_userEv:22 + 0: _ZN9oceanbase6common12is_root_userEm:22 + 2: 2 + 14.2: _ZN9oceanbase6common8ObString11make_stringEPKc:0 + 2: 0 + 2.2: 0 + 4: 0 + 15.1: _ZN9oceanbase6common8ObString11make_stringEPKc:0 + 2: 0 + 2.2: 0 + 4: 0 + 16: _ZN9oceanbase3omt19ObTenantConfigGuardptEv:0 + 0: 0 +_ZN9oceanbase6common15ObTimeConverter13str_to_offsetERKNS0_8ObStringERiS5_bb:707:2 + 2: 2 + 3: 2 + 4: 2 + 9: 2 + 10: 2 + 10.1: 3 + 10.2: 0 + 12: 4 + 15: 4 + 16.1: 0 + 16.2: 0 + 17: 0 + 18.1: 0 + 20: 0 + 21: 0 + 22: 0 + 23: 0 + 25: 0 + 38: 0 + 39.1: 0 + 40.1: 0 + 41.1: 0 + 42.1: 0 + 43.1: 0 + 45: 0 + 45.2: 0 + 46: 0 + 47.1: 0 + 50: 0 + 51: 0 + 52: 0 + 54.1: 0 + 54.2: 0 + 55.1: 0 + 56.2: 0 + 57.1: 0 + 58.1: 0 + 58.3: 0 + 59: 0 + 61: 0 + 61.3: 0 + 66: 0 + 67: 0 + 71: 0 + 72: 0 + 72.2: 0 + 74: 0 + 76: 0 + 77.1: 0 + 81: 0 + 81.2: 0 + 82: 0 + 83: 0 + 84.1: 0 + 90: 4 + 10.1: _ZN9oceanbase6common8ObString4trimEv:258 + 3: 2 + 5: 2 + 6: 2 + 6.1: 2 + 6.2: 2 + 6.3: 2 + 7: 0 + 9: 3 + 9.1: 3 + 9.2: 3 + 9.3: 3 + 12: 3 + 13: 3 + 12.1: _ZNK9oceanbase6common8ObString7compareERKS1_:155 + 3: 3 + 4: 0 + 7.1: 4 + 7.2: 3 + 16.1: _ZNK9oceanbase6common8ObString3ptrEv:0 + 0: 0 + 16.2: _ZNK9oceanbase6common8ObString6lengthEv:0 + 0: 0 + 34: _ZN9oceanbase6common15ObTimeConverter12ObTimeDigitsC2Ev:0 + 1: 0 + 2: 0 + 35: _ZN9oceanbase6common15ObTimeConverter12ObTimeDigitsC2Ev:0 + 1: 0 + 2: 0 + 38: _ZN9oceanbase6common15ObTimeConverter26get_datetime_digits_delimsERPKcS3_iRNS1_12ObTimeDigitsERNS1_12ObTimeDelimsE:0 + 6: 0 + 7.1: 0 + 9.1: 0 + 10.1: 0 + 12: 0 + 9.1: _ZN9oceanbase6common15ObTimeConverter19get_datetime_delimsERPKcS3_RNS1_12ObTimeDelimsE:0 + 2: 0 + 3: 0 + 4: 0 + 5.1: 0 + 8.1: 0 + 8.2: 0 + 8.3: 0 + 8.5: 0 + 10: 0 + 11: 0 + 13: 0 + 40.1: _ZN9oceanbase6common15ObTimeConverter26get_datetime_digits_delimsERPKcS3_iRNS1_12ObTimeDigitsERNS1_12ObTimeDelimsE:0 + 6: 0 + 7.1: 0 + 9.1: 0 + 10.1: 0 + 12: 0 + 9.1: _ZN9oceanbase6common15ObTimeConverter19get_datetime_delimsERPKcS3_RNS1_12ObTimeDelimsE:0 + 2: 0 + 3: 0 + 4: 0 + 5.1: 0 + 8.1: 0 + 8.2: 0 + 8.3: 0 + 8.5: 0 + 10: 0 + 11: 0 + 13: 0 + 45.1: _ZN9oceanbase6common15ObTimeConverter15is_single_colonERKNS1_12ObTimeDelimsE:0 + 2.1: 0 + 54.2: _ZN9oceanbase6common15ObTimeConverter23check_leading_precisionERKNS1_12ObTimeDigitsE:0 + 4: 0 + 6.1: 0 + 6.2: 0 + 6.3: 0 + 6.5: 0 + 9: 0 + 56.2: _ZN9oceanbase6common15ObTimeConverter23check_leading_precisionERKNS1_12ObTimeDigitsE:0 + 4: 0 + 6.1: 0 + 6.2: 0 + 6.3: 0 + 6.5: 0 + 9: 0 +_ZN9oceanbase5share33ObSysVarObEnableBlkNestedloopJoinC2Ev:706:3 + 0: 4 + 0: _ZN9oceanbase5share12ObBoolSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:630 + 5: _ZN9oceanbase5share15ObTypeLibSysVarC2EPPKcPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSF_EPFiS7_SA_SD_SH_EPFiRNSE_12ObIAllocatorERKNS5_18ObBasicSessionInfoESD_SI_EPFiSO_SR_SD_RNSE_8ObStringEEPFNSE_9ObObjTypeEvEb:630 + 14: 3 + 7: _ZN9oceanbase5share13ObBasicSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKS1_RKNS_6common5ObObjERSB_EPFiS4_S7_S9_SD_EPFiRNSA_12ObIAllocatorERKNS2_18ObBasicSessionInfoES9_SE_EPFiSK_SN_S9_RNSA_8ObStringEEPFNSA_9ObObjTypeEvEb:294 + 11: 3 + 13: 3 + 20: _ZN9oceanbase5share13ObBasicSysVar11clean_valueEv:207 + 2: _ZN9oceanbase5share13ObBasicSysVar16clean_base_valueEv:72 + 2: 3 + 3: _ZN9oceanbase6common5ObObj13set_nop_valueEv:48 + 2: _ZN9oceanbase6common5ObObj7set_extEl:48 + 4: 3 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:24 + 0: 3 + 3: _ZN9oceanbase5share13ObBasicSysVar15clean_inc_valueEv:63 + 2: _ZN9oceanbase6common5ObObj13set_nop_valueEv:63 + 2: _ZN9oceanbase6common5ObObj7set_extEl:63 + 4: 3 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:24 + 0: 3 + 4: _ZN9oceanbase6common5ObObj5resetEv:36 + 6: 3 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:12 + 0: 3 + 5: _ZN9oceanbase6common5ObObj5resetEv:36 + 6: 3 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:12 + 0: 3 + 13: _ZN9oceanbase5share15ObSysVarTypeLibC2EPPKc:294 + 1: 3 + 2: 3 + 3: 3 + 8.1: 10 + 8.3: 10 + 9: 4 +_ZN9oceanbase8observer16ObInnerSQLResultD2Ev:705:2 + 1: 2 + 2: 2 _ZN9oceanbase8observer16ObInnerSQLResult5closeEv:2 + 3: 1 + 5: 3 _ZN9oceanbase5share25_make_tenant_switch_guardEv:2 + 5.2: 4 + 5.3: 4 _ZN9oceanbase5share19ObTenantSwitchGuardD2Ev:4 + 5.4: 3 + 5.5: 3 _ZN9oceanbase5share19ObTenantSwitchGuard9switch_toEmb:2 + 5.6: 2 + 5.7: 1 + 5.9: 4 + 6: 2 _ZN9oceanbase3sql11ObResultSetD2Ev:1 + 9: 4 + 10: 1 + 13: 4 + 17.1: 1 + 17.3: 0 + 18: 0 + 21.5: 5 _ZN9oceanbase5share6schema19ObSchemaGetterGuardD1Ev:4 + 21.6: 1 + 21.7: 1 + 21.8: 1 _ZN9oceanbase3sql8ObSqlCtxD2Ev:1 + 21.9: 4 _ZN9oceanbase8observer16ObInnerSQLResult21MemEntifyDestroyGuardD2Ev:4 + 21.10: 5 _ZN9oceanbase6common4hash9ObHashMapINS0_8ObStringElNS1_19NoPthreadDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_lEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:5 + 21.11: 6 _ZN9oceanbase6common9sqlclient13ObMySQLResultD2Ev:5 + 21.12: 1 + 21.13: 1 + 21.14: 1 + 21.15: 1 + 5.4: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:21 + 0: 3 + 14: _ZN9oceanbase6common10TSIFactory12get_instanceINS_8observer13ObReqTimeInfoELm0EEEPT_v:35 + 7: 0 + 8: 1 + 8.1: 1 +_ZN9oceanbase8observer16ObInnerSQLResultD1Ev:705:2 + 1: 2 + 2: 2 _ZN9oceanbase8observer16ObInnerSQLResult5closeEv:2 + 3: 1 + 5: 3 _ZN9oceanbase5share25_make_tenant_switch_guardEv:2 + 5.2: 4 + 5.3: 4 _ZN9oceanbase5share19ObTenantSwitchGuardD2Ev:4 + 5.4: 3 + 5.5: 3 _ZN9oceanbase5share19ObTenantSwitchGuard9switch_toEmb:2 + 5.6: 2 + 5.7: 1 + 5.9: 4 + 6: 2 _ZN9oceanbase3sql11ObResultSetD2Ev:1 + 9: 4 + 10: 1 + 13: 4 + 17.1: 1 + 17.3: 0 + 18: 0 + 21.5: 5 _ZN9oceanbase5share6schema19ObSchemaGetterGuardD1Ev:4 + 21.6: 1 + 21.7: 1 + 21.8: 1 _ZN9oceanbase3sql8ObSqlCtxD2Ev:1 + 21.9: 4 _ZN9oceanbase8observer16ObInnerSQLResult21MemEntifyDestroyGuardD2Ev:4 + 21.10: 5 _ZN9oceanbase6common4hash9ObHashMapINS0_8ObStringElNS1_19NoPthreadDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_lEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:5 + 21.11: 6 _ZN9oceanbase6common9sqlclient13ObMySQLResultD2Ev:5 + 21.12: 1 + 21.13: 1 + 21.14: 1 + 21.15: 1 + 5.4: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:21 + 0: 3 + 14: _ZN9oceanbase6common10TSIFactory12get_instanceINS_8observer13ObReqTimeInfoELm0EEEPT_v:35 + 7: 0 + 8: 1 + 8.1: 1 +_ZN9oceanbase6common16ObFixedArrayImplIlNS0_12ObIAllocatorEE9push_backERKl:703:6 + 1: 6 + 2: 6 + 3: 6 + 4: 6 + 5: 0 + 6.1: 0 + 6.5: 0 + 6.7: 0 + 9: 0 + 10.1: 0 + 10.5: 0 + 10.9: 0 + 12.1: 6 + 13: 0 + 14.1: 0 + 14.5: 0 + 14.11: 0 + 16: 6 + 17: 6 + 19: 6 + 23: 0 + 33: 7 + 6.1: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 6.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 10.1: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 10.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 10.8: _ZN9oceanbase6common7ObLogKVIRKjLb0EEC2EPKcS3_:0 + 0: 0 + 14.1: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 14.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 14.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 14.10: _ZN9oceanbase6common7ObLogKVIRKjLb0EEC2EPKcS3_:0 + 0: 0 + 19: _ZN9oceanbase6common16construct_assignIlEEiRT_RKS2_:42 + 2: _ZN9oceanbase6common21construct_assign_wrapIlEEiRT_RKS2_NS0_8BoolTypeILb0EEE:42 + 2: 6 +_ZN9oceanbase11transaction12ObLSTxCtxMgr20get_min_start_log_tsERl:696:0 + 1: 0 + 2: 0 + 6: 0 + 6.1: 0 + 7.1: 0 + 9.1: 0 + 12: 0 + 13.3: 0 + 3: _ZN9oceanbase6common8TCRWLock10RLockGuardC2ERS1_:0 + 0: _ZN9oceanbase6common8TCRWLock6rdlockEl:0 + 3.1: 0 + 4: 0 + 5: 0 + 3.2: _ZN9oceanbase6common8TCRWLock10try_rdlockEv:0 + 3: 0 + 5: 0 + 4: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:0 + 0: 0 + 4.1: _ZN9oceanbase6common5TCRef7inc_refEPi:0 + 2: 0 + 4.1: 0 + 4.2: 0 + 6: 0 + 6.1: 0 + 10: 0 + 2: _ZN9oceanbase6common8get_itidEv:0 + 4: 0 + 5: 0 + 6: 0 + 8: 0 + 11: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 8: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:0 + 0: 0 + 8.1: _ZN9oceanbase6common5TCRef7dec_refEPi:0 + 2: 0 + 4.1: 0 + 4.2: 0 + 6: 0 + 6.1: 0 + 10: 0 + 2: _ZN9oceanbase6common8get_itidEv:0 + 4: 0 + 5: 0 + 6: 0 + 8: 0 + 11: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 9: _ZN9oceanbase6common9LWaitCond6signalEv:0 + 2: 0 + 2.1: 0 + 3: 0 + 5: _ZN9oceanbase11transaction23GetMinStartLogTsFunctorC2Ev:0 + 0: 0 + 6: _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE8for_eachINS0_23GetMinStartLogTsFunctorEEEiRT_:696 + 3.1: 26 + 3.3: 26 + 4: 28 _ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocEE22for_each_in_one_bucketINS0_23GetMinStartLogTsFunctorEEEiRT_l:31 + 9: _ZN9oceanbase11transaction23GetMinStartLogTsFunctor20get_min_start_log_tsEv:0 + 0: 0 + 13.5: _ZN9oceanbase6common8TCRWLock10RLockGuardD2Ev:0 + 0.2: 0 + 0: _ZN9oceanbase6common8TCRWLock8rdunlockEv:0 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:0 + 0: 0 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPi:0 + 2: 0 + 4.1: 0 + 4.2: 0 + 6: 0 + 6.1: 0 + 10: 0 + 2: _ZN9oceanbase6common8get_itidEv:0 + 4: 0 + 5: 0 + 6: 0 + 8: 0 + 11: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:0 + 2: 0 + 2.1: 0 + 3: 0 + 13.7: _ZN9oceanbase6common8TCRWLock10RLockGuardD2Ev:0 + 0.2: 0 + 0: _ZN9oceanbase6common8TCRWLock8rdunlockEv:0 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:0 + 0: 0 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPi:0 + 2: 0 + 4.1: 0 + 4.2: 0 + 6: 0 + 6.1: 0 + 10: 0 + 2: _ZN9oceanbase6common8get_itidEv:0 + 4: 0 + 5: 0 + 6: 0 + 8: 0 + 11: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:0 + 2: 0 + 2.1: 0 + 3: 0 +_ZZN9oceanbase4palf11LogChecksum21verify_accum_checksumEllENK5$_153clEPKc.1598dc2348996c1ae1caea6120522988:694:8 + 0: 9 + 0.1: 0 + 0.2: 9 + 0.3: 8 _ZN9oceanbase6common8ObLogger13need_to_printEmi:8 + 0.15: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:136 + 2: 8 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.12: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.14: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase11transaction9ObTransID12deserialize_EPKclRl:688:6 + 0: 6 + 0.1: 6 + 0.2: 6 + 0.4: 0 + 0.10: 6 + 0.11: 0 + 0.18: 0 + 0.2: _ZN9oceanbase6common13serialization6decodeEPKclRlS4_:370 + 2: 6 + 3: _ZN9oceanbase6common13serialization11decode_vi64EPKclRlPl:328 + 4: 6 + 6.2: 6 + 6.3: 6 + 7: 1 + 11: 1 + 12: 1 + 15: 5 + 18: 6 + 19: 6 + 20: 6 + 0.4: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.5: _ZN9oceanbase6common7ObLogKVIRA7_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 0.13: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.15: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.17: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase6common12ObSliceAlloc12add_to_blistEPNS0_13ObBlockSlicerE:682:0 + 0: 0 + 1: 0 + 2: 0 + 5: 0 + 1: _ZN9oceanbase6common15ObDListWithLock3addEPNS0_7ObDLinkE:0 + 1: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEEC2ERS3_:0 + 1: 0 + 4: 0 + 5.1: 0 + 4: _ZN9oceanbase6common10ObSpinLock4lockEv:0 + 2: 0 + 2: _ZN9oceanbase6common15ObDListWithLock4add_EPNS0_7ObDLinkE:0 + 1: 0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 3: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEED2Ev:0 + 2: 0 + 3: 0 + 3.1: 0 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase6common10ObSpinLock6unlockEv:0 + 2: 0 + 2: _ZN9oceanbase6common11ObStockCtrl6recyleEv:0 + 2: 0 + 2: _ZN9oceanbase6common11ObStockCtrl9inc_if_ltEii:0 + 1: 0 + 3.1: 0 + 3.2: 0 + 3.3: 0 + 3: _ZN9oceanbase6common12ObSliceAlloc13destroy_blockEPNS0_13ObBlockSlicerE:682 + 1: 0 + 2: _ZN9oceanbase6common12ObSimpleSync4syncEv:682 + 1.1: 62 + 2: 62 + 382: 0 + 3: _ZN9oceanbase6common15ObBlockAllocMgr10free_blockEPvl:0 + 1: 0 + 3: 0 + 2: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase5share6schema15ObSchemaMgrInfoD2Ev:680:18 + 1: 17 + 2: 17 _ZN9oceanbase5share6schema17ObSchemaMgrHandle5resetEv:17 + 3: 17 _ZN9oceanbase5share6schema17ObSchemaMgrHandleD1Ev:17 + 3.1: 0 + 3.2: 0 +_ZN9oceanbase5share6schema15ObSchemaMgrInfoD1Ev:680:18 + 1: 17 + 2: 17 _ZN9oceanbase5share6schema17ObSchemaMgrHandle5resetEv:17 + 3: 17 _ZN9oceanbase5share6schema17ObSchemaMgrHandleD1Ev:17 + 3.1: 0 + 3.2: 0 +_ZN9oceanbase3sql19ObDumpAllCacheObjOpclERNS_6common4hash11HashMapPairImPNS0_17ObILibCacheObjectEEE:676:9 + 1: 9 + 2: 9 + 3: 9 + 4: 0 + 5.1: 0 + 6.1: 9 + 7: 0 + 8.1: 0 + 9.1: 9 _ZNK9oceanbase3sql25ObDumpAllCacheObjByTypeOp11should_dumpEPNS0_17ObILibCacheObjectE:9 + 9.2: 0 + 10: 7 + 10.1: 0 + 10.6: 0 + 10.9: 0 + 18.1: 0 + 20: 7 + 10.1: _ZNK9oceanbase3sql17ObILibCacheObject13get_object_idEv:0 + 0: 0 + 10.2: _ZNK9oceanbase3sql17ObILibCacheObject13get_tenant_idEv:0 + 0: 0 + 10.3: _ZNK9oceanbase3sql17ObILibCacheObject20get_logical_del_timeEv:0 + 0: 0 + 10.4: _ZNK9oceanbase3sql17ObILibCacheObject13get_ref_countEv:0 + 0: 0 + 10.5: _ZN9oceanbase3sql17ObILibCacheObject13get_allocatorEv:0 + 0: 0 + 10.7: _ZNK9oceanbase3sql17ObILibCacheObject8added_lcEv:0 + 0: 0 + 10.8: _ZN9oceanbase3sql17AllocCacheObjInfoC2Emmllllb:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 +_ZN9oceanbase3sql18ObBasicSessionInfo20set_default_databaseERKNS_6common8ObStringENS2_15ObCollationTypeE:674:3 + 2: 3 + 3: 3 + 4: 3 + 5: 0 + 6.1: 0 + 8: 3 + 9: 0 + 10: 0 + 11.1: 0 + 12.1: 0 + 13.1: 0 + 17: 3 + 18: 3 + 19: 2 + 19.2: 2 + 20.1: 2 + 21.1: 2 + 22: 0 + 24.1: 2 _ZN9oceanbase3lib11ObLockGuardINS_6common16ObRecursiveMutexEED2Ev:2 + 26: 1 + 10: _ZN9oceanbase3sql18ObBasicSessionInfo19update_sys_variableENS_5share17ObSysVarClassTypeEl:0 + 4: 0 + 3: _ZN9oceanbase6common5ObObj7set_intEl:0 + 3: 0 + 2: _ZN9oceanbase6common9ObObjMeta7set_intEv:0 + 0: 0 + 12.1: _ZN9oceanbase3sql18ObBasicSessionInfo19update_sys_variableENS_5share17ObSysVarClassTypeEl:0 + 4: 0 + 3: _ZN9oceanbase6common5ObObj7set_intEl:0 + 3: 0 + 2: _ZN9oceanbase6common9ObObjMeta7set_intEv:0 + 0: 0 + 18: _ZN9oceanbase3lib11ObLockGuardINS_6common16ObRecursiveMutexEEC2ERS3_:357 + 1: 3 + 2: 3 + 4: 2 + 5.1: 0 + 4: _ZN9oceanbase6common16ObRecursiveMutex4lockEv:308 + 2: 3 + 3: 3 + 6: 3 _ZN9oceanbase6common7ObLatch6wrlockEjlPKj:3 + 7.1: 0 + 12: 2 + 3: _ZNK9oceanbase6common7ObLatch14is_wrlocked_byEPKj:180 + 3: 3 + 4: 3 + 2.1: _Z9ob_gettidv:159 + 3: 3 + 4: 0 + 2: _Z13get_tid_cachev:75 + 7: 3 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 + 19: _ZNK9oceanbase6common8ObString3ptrEv:8 + 0: 2 + 19.1: _ZNK9oceanbase6common8ObString6lengthEv:8 + 0: 2 + 20: _ZNK9oceanbase6common8ObString6lengthEv:8 + 0: 2 + 21: _ZNK9oceanbase3sql18ObBasicSessionInfo21is_track_session_infoEv:18 + 0: 2 +_ZN9oceanbase10rootserver14ObTenantLSInfo32adjust_primary_zone_by_ls_group_ERKNS_6common8ObIArrayINS2_19ObFixedLengthStringILl128EEEEERKNS2_7ObArrayINS_5share19ObLSPrimaryZoneInfoENS2_19ModulePageAllocatorELb0ENS2_22ObArrayDefaultCallBackISB_EENS2_22NotImplementItemEncodeISB_EEEERKNSA_6schema14ObTenantSchemaE:662:2 + 4: 2 + 5: 2 + 9: 2 + 9.2: 2 _ZNK9oceanbase5share6schema14ObTenantSchema8is_validEv:2 + 9.3: 2 + 11: 0 + 12.1: 0 + 14.1: 2 _ZN9oceanbase8observer14global_contextEv:2 + 15: 0 + 16.1: 0 + 17.1: 2 + 17.6: 2 + 18: 2 + 22.1: 2 + 23: 2 _ZN9oceanbase8observer14global_contextEv:2 + 23.1: 2 _ZN9oceanbase5share18ObLSStatusOperator24get_ls_primary_zone_infoEmRKNS0_6ObLSIDERNS0_19ObLSPrimaryZoneInfoERNS_6common12ObISQLClientE:2 + 23.2: 0 + 25.1: 0 + 26.4: 0 + 26.5: 1 + 28.1: 0 + 40.1: 0 + 41: 0 + 41.1: 0 + 43.1: 0 + 44.1: 0 + 44.2: 0 + 45.1: 0 + 48.1: 0 + 48.3: 0 + 48.5: 0 + 50.1: 0 + 51.1: 0 + 53: 0 + 53.3: 0 + 53.4: 0 + 54.1: 0 + 58: 0 + 58.1: 0 + 58.3: 0 + 58.5: 0 + 59: 0 + 7: _ZNK9oceanbase6common12ObIArrayWrapINS_5share19ObLSPrimaryZoneInfoEE5countEv:14 + 0: 2 + 18.1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share19ObLSPrimaryZoneInfoEE2atEl:8 + 6: 2 + 18.3: _ZNK9oceanbase5share6ObLSID9is_sys_lsEv:10 + 0: 2 + 20: _ZN9oceanbase5share18ObLSStatusOperatorC2Ev:80 + 0.1: 2 + 184: 2 + 21: _ZN9oceanbase5share19ObLSPrimaryZoneInfoC2Ev:154 + 0: 2 + 1: 2 + 1.1: 2 + 1.2: 2 _ZN9oceanbase6common11ObSqlStringC1ERKNS_3lib7ObLabelE:2 + 1: _ZN9oceanbase5share6ObLSIDC2Ev:24 + 0: 2 + 1.1: _ZN9oceanbase3lib7ObLabelC2IA10_cEERKT_:28 + 2: _ZN9oceanbase3lib7ObLabelaSILm10EEERS1_RAT__Kc:28 + 4: 2 + 1.8: _ZN9oceanbase6common19ObFixedLengthStringILl128EEC2Ev:14 + 3: 2 + 22: _ZN9oceanbase6common18gen_meta_tenant_idEm:62 + 3: 2 + 5.1: 2 + 5.2: 2 + 3: _ZN9oceanbase6common20is_virtual_tenant_idEm:20 + 2: 2 + 5.1: _ZN9oceanbase6common13is_sys_tenantEm:8 + 2: 2 + 5.2: _ZN9oceanbase6common14is_meta_tenantEm:12 + 4.1: 2 + 26.1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share19ObLSPrimaryZoneInfoEE2atEl:0 + 6: 0 + 26.2: _ZNK9oceanbase5share19ObLSPrimaryZoneInfo16get_primary_zoneEv:0 + 2: 0 + 30: _ZN9oceanbase5share19ObLSPrimaryZoneInfoD2Ev:11 + 0: 1 _ZN9oceanbase6common11ObSqlStringD1Ev:1 + 30.1: _ZN9oceanbase5share19ObLSPrimaryZoneInfoD2Ev:0 + 0: 0 + 38: _ZN9oceanbase6common7ObArrayINS0_19ObFixedLengthStringILl128EEENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEEC2Ev:0 + 0.1: 0 + 0.5: _ZN9oceanbase6common11ObArrayImplINS0_19ObFixedLengthStringILl128EEENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEEC2ElRKS4_:0 + 3: 0 + 4: 0 + 7.1: 0 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 39: _ZN9oceanbase6common9ObSEArrayImLl3ENS0_19ModulePageAllocatorELb0EEC2Ev:0 + 0.1: 0 + 0.5: _ZN9oceanbase6common13ObSEArrayImplImLl3ENS0_19ModulePageAllocatorELb0EEC2ElRKS2_:0 + 2: 0 + 5: 0 + 6: 0 + 8: 0 + 17.1: 0 + 2: _ZN9oceanbase6common8ObIArrayImEC2EPml:0 + 0: _ZN9oceanbase6common12ObIArrayWrapImEC2EPml:0 + 0: 0 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:0 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:0 + 2: 0 + 8: 0 + 40: _ZN9oceanbase3lib7ObLabelC2IA10_cEERKT_:0 + 2: _ZN9oceanbase3lib7ObLabelaSILm10EEERS1_RAT__Kc:0 + 4: 0 + 49: _ZN9oceanbase6common12ObIArrayWrapINS0_19ObFixedLengthStringILl128EEEE2atEl:0 + 6: 0 + 50: _ZN9oceanbase10rootserver14ObTenantLSInfo17get_zone_priorityERKNS_6common19ObFixedLengthStringILl128EEERKNS_5share6schema14ObTenantSchemaERNS2_11ObSqlStringE:0 + 4: 0 + 5: 0 + 6: 0 + 6.2: 0 + 7: 0 + 8.1: 0 + 9.1: 0 + 11.1: 0 + 14: 0 + 6.1: _ZNK9oceanbase6common19ObFixedLengthStringILl128EE8is_emptyEv:0 + 2: 0 + 53.2: _ZNK9oceanbase6common12ObIArrayWrapINS_5share19ObLSPrimaryZoneInfoEE2atEl:0 + 6: 0 + 58.2: _ZN9oceanbase6common13ObSEArrayImplImLl3ENS0_19ModulePageAllocatorELb0EED2Ev:0 + 1: 0 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplImLl3ENS0_19ModulePageAllocatorELb0EE7destroyEv:0 + 9: 0 + 11: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplImLl3ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 58.4: _ZN9oceanbase6common13ObSEArrayImplImLl3ENS0_19ModulePageAllocatorELb0EED2Ev:0 + 1: 0 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplImLl3ENS0_19ModulePageAllocatorELb0EE7destroyEv:0 + 9: 0 + 11: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplImLl3ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase5obrpc10ObRpcProxy8rpc_postINS0_15ObTransRpcProxy5ObRpcILNS0_15ObRpcPacketCodeE1626EvEEEEiRKNT_7RequestEPNS1_7AsyncCBIS7_EERKNS0_9ObRpcOptsE:661:0 + 2: 0 + 3: 0 + 3.1: 0 + 6: 0 + 8: 0 + 11: 0 + 13: 1 + 14: 0 + 15.1: 0 + 16.1: 1 + 17: 0 + 18.1: 0 + 22: 1 + 23.1: 1 + 24: 0 + 25: 0 + 27: 0 + 29: 0 + 30: 0 + 32: 0 + 33: 0 + 34: 0 + 34.1: 0 + 34.2: 0 + 36.1: 0 + 37.1: 0 + 37.2: 0 + 38.1: 0 + 40: 0 + 41: 0 + 42.1: 0 + 43.1: 0 + 43.2: 0 + 45.1: 0 + 47: 0 + 48: 0 + 48.2: 0 + 50.1: 0 + 55: 0 + 55.1: 0 + 57.1: 0 + 63: 0 + 63.2: 0 + 64: 0 + 64.2: 0 + 65.1: 0 + 72: 0 + 73: 0 + 78: 0 + 79.1: 0 + 80: 0 + 81.1: 0 + 83.1: 0 + 84: 0 + 85.1: 0 + 88: 0 + 89: 0 + 89.1: 1 + 92.1: 0 + 93.2: 1 + 94: 0 + 95.1: 0 + 96.1: 1 + 99.1: 1 + 105: 1 + 106: 1 + 107: 1 + 108: 1 + 109.2: 0 + 109.3: 0 + 109.4: 0 + 109.5: 0 + 109.6: 0 + 109.10: 0 + 109.11: 0 + 109.12: 0 + 110.2: 0 + 110.3: 0 + 110.4: 0 + 110.5: 0 + 110.6: 0 + 110.10: 0 + 110.11: 0 + 110.12: 0 + 111: 0 + 112: 0 + 112.1: 0 + 112.2: 0 + 114.1: 0 + 116.2: 0 + 116.3: 0 + 116.4: 0 + 116.5: 0 + 116.6: 0 + 116.10: 0 + 116.11: 0 + 116.12: 0 + 117.1: 0 + 119.2: 0 + 119.3: 0 + 119.4: 0 + 119.5: 0 + 119.6: 0 + 119.10: 0 + 119.11: 0 + 119.12: 0 + 121: 0 + 125.2: 0 + 125.3: 0 + 125.4: 0 + 125.5: 0 + 125.6: 0 + 125.10: 0 + 125.11: 0 + 125.12: 0 + 126.2: 0 + 126.3: 0 + 126.4: 0 + 126.5: 0 + 126.6: 0 + 126.10: 0 + 126.11: 0 + 126.12: 0 + 131.1: 1 + 131.2: 0 + 132.1: 0 + 133.1: 0 + 133.2: 0 + 134.1: 0 + 142: 0 + 142.1: 0 + 148: 1 + 149: 1 _ZN9oceanbase6common16ObCompressorPool12get_instanceEv:1 + 150: 1 + 151: 0 + 155: 1 + 156: 1 _ZN9oceanbase5obrpc9ObTxRPCCBILNS0_15ObRpcPacketCodeE1626EE8set_argsERKNS_11transaction16ObTxKeepaliveMsgE:1 + 158: 1 + 159: 1 + 161: 1 + 164.1: 1 _ZNK9oceanbase5obrpc10ObRpcProxy8init_pktEPNS0_11ObRpcPacketENS0_15ObRpcPacketCodeERKNS0_9ObRpcOptsEb:1 + 164.2: 2 + 165.1: 0 + 170: 2 + 171: 2 _ZNK9oceanbase3rpc5frame14ObReqTransport4postERKNS2_7RequestE:2 + 171.1: 0 + 172: 0 + 173.1: 0 + 182: 0 + 187.2: 0 + 187.4: 0 + 187.7: 0 + 187.18: 0 + 187.22: 0 + 187.23: 0 + 187.26: 0 + 187.28: 0 + 187.30: 0 + 188: 0 + 189.52: 0 + 8: _ZN9oceanbase3lib22UnisCompatVersionGuardC2Em:0 + 1: 0 + 3: 0 + 10: _ZN9oceanbase6common11ObTimeGuardC2EPKcl:0 + 2: 0 + 3: 0 + 4: 0 + 6: 0 + 8: 0 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 21: _ZN9oceanbase3rpc5frame14ObReqTransport7RequestC2Ev:24 + 0: _ZN9oceanbase3rpc5frame14ObReqTransport7Request5resetEv:24 + 3: 1 + 23: _ZN9oceanbase6common13serialization14encoded_lengthINS_11transaction16ObTxKeepaliveMsgEEElRKT_:8 + 2: _ZN9oceanbase6common13serialization11EnumEncoderILb0ENS_11transaction16ObTxKeepaliveMsgEE14encoded_lengthERKS4_:8 + 2: 1 _ZNK9oceanbase11transaction16ObTxKeepaliveMsg18get_serialize_sizeEv:1 + 27.1: _ZN9oceanbase6common16ObCompressorPool20need_common_compressERKNS0_16ObCompressorTypeE:0 + 2: _ZN9oceanbase6common16ObCompressorPool13need_compressERKNS0_16ObCompressorTypeE:0 + 2: 0 + 40.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib7ObLabelE:0 + 3: 0 + 2.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 4: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 9: _ZSt3maxIlERKT_S2_S2_:0 + 5: 0 + 43.1: _ZN9oceanbase6common13serialization6encodeINS_11transaction16ObTxKeepaliveMsgEEEiPclRlRKT_:0 + 2: _ZN9oceanbase6common13serialization11EnumEncoderILb0ENS_11transaction16ObTxKeepaliveMsgEE6encodeEPclRlRKS4_:0 + 2: 0 + 48: _ZN9oceanbase5obrpc18ObIRpcExtraPayload8instanceEv:0 + 0: 0 + 0: _ZN9oceanbase5obrpc18ObIRpcExtraPayload16instance_pointerEv:0 + 2: 0 + 2.1: 0 + 2.3: 0 + 2.2: _ZN9oceanbase5obrpc19ObEmptyExtraPayload14empty_instanceEv:0 + 2: 0 + 2.1: 0 + 2.3: 0 + 48.1: _ZN9oceanbase6common13serialization6encodeINS_5obrpc18ObIRpcExtraPayloadEEEiPclRlRKT_:0 + 2: _ZN9oceanbase6common13serialization11EnumEncoderILb0ENS_5obrpc18ObIRpcExtraPayloadEE6encodeEPclRlRKS4_:0 + 2: 0 + 53: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 55: _ZN9oceanbase6common13serialization6encodeINS_3lib16ObRuntimeContextEEEiPclRlRKT_:0 + 2: _ZN9oceanbase6common13serialization11EnumEncoderILb0ENS_3lib16ObRuntimeContextEE6encodeEPclRlRKS4_:0 + 2: 0 + 63.1: _ZN9oceanbase5trace7ObTrace9is_initedEv:0 + 0: 0 + 0: _ZN9oceanbase5trace7ObTrace11check_magicEv:0 + 0: 0 + 0.1: _ZNK9oceanbase5trace4UUID9is_initedEv:0 + 0: 0 + 0.1: 0 + 64.1: _ZN9oceanbase6common13serialization6encodeINS_5trace7ObTraceEEEiPclRlRKT_:0 + 2: _ZN9oceanbase6common13serialization11EnumEncoderILb0ENS_5trace7ObTraceEE6encodeEPclRlRKS4_:0 + 2: 0 + 93.1: _ZN9oceanbase3rpc5frame14ObReqTransport7Request3pktEv:7 + 0: 1 + 98.1: _ZN9oceanbase5obrpc11ObRpcPacket21set_disable_debugsyncEv:0 + 2: 0 + 100.1: _ZN9oceanbase5obrpc11ObRpcPacket18set_has_trace_infoEv:0 + 2: 0 + 102: _ZN9oceanbase6common11ObTimeGuard5clickEPKc:68 + 3: 1 + 4: 1 + 5: 1 + 6: 1 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:1 + 2: 1 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:1 + 109.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:0 + 2: 0 + 110.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:0 + 2: 0 + 112: _ZN9oceanbase3rpc5frame14ObReqTransport7Request3bufEv:0 + 0: 0 + 116.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:0 + 2: 0 + 119.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:0 + 2: 0 + 121: _ZN9oceanbase3rpc5frame14ObReqTransport7Request3bufEv:0 + 0: 0 + 121.1: _ZN9oceanbase5obrpc11ObRpcPacket11set_contentEPKcl:0 + 2: 0 + 3: 0 + 122: _ZN9oceanbase5obrpc11ObRpcPacket19set_compressor_typeERKNS_6common16ObCompressorTypeE:0 + 2: 0 + 123: _ZN9oceanbase5obrpc11ObRpcPacket16set_original_lenEi:0 + 2: 0 + 125.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:0 + 2: 0 + 126.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:0 + 2: 0 + 131: _ZN9oceanbase3rpc5frame14ObReqTransport7Request3bufEv:7 + 0: 1 + 131.1: _ZN9oceanbase6common13serialization6encodeINS_11transaction16ObTxKeepaliveMsgEEEiPclRlRKT_:12 + 2: _ZN9oceanbase6common13serialization11EnumEncoderILb0ENS_11transaction16ObTxKeepaliveMsgEE6encodeEPclRlRKS4_:12 + 2: 1 _ZNK9oceanbase11transaction16ObTxKeepaliveMsg9serializeEPclRl:1 + 142: _ZN9oceanbase3rpc5frame14ObReqTransport7Request3bufEv:0 + 0: 0 + 142.1: _ZN9oceanbase5obrpc11ObRpcPacket11set_contentEPKcl:0 + 2: 0 + 3: 0 + 145: _ZN9oceanbase6common11ObTimeGuard5clickEPKc:67 + 3: 1 + 4: 1 + 5: 1 + 6: 1 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 149.1: _ZN9oceanbase6common16ObCompressorPool20need_stream_compressERKNS0_16ObCompressorTypeE:8 + 2: 1 + 3: 1 + 151: _ZN9oceanbase5obrpc11ObRpcPacket19set_compressor_typeERKNS_6common16ObCompressorTypeE:0 + 2: 0 + 154: _ZN9oceanbase3rpc5frame14ObReqTransport7Request2cbEv:7 + 0: 1 + 157: _ZN9oceanbase3rpc5frame14ObReqTransport7AsyncCB7set_dstERKNS_6common6ObAddrE:23 + 0: _ZN9oceanbase6common6ObAddraSERKS1_:23 + 1: 1 + 2: 1 + 3: 1 + 158: _ZN9oceanbase3rpc5frame14ObReqTransport7AsyncCB13set_tenant_idEm:4 + 0: 1 + 159: _ZN9oceanbase3rpc5frame14ObReqTransport7AsyncCB11set_timeoutEl:11 + 0: 1 + 160: _ZN9oceanbase3rpc5frame14ObReqTransport7AsyncCB11set_send_tsEl:4 + 0: 1 + 161: _ZN9oceanbase3rpc5frame14ObReqTransport7AsyncCB11set_payloadEl:4 + 0: 1 + 163: _ZN9oceanbase3rpc5frame14ObReqTransport7Request9set_asyncEv:4 + 0: 1 + 164: _ZN9oceanbase3rpc5frame14ObReqTransport7Request3pktEv:7 + 0: 1 + 167: _ZN9oceanbase6common11ObTimeGuard5clickEPKc:136 + 3: 2 + 4: 2 + 5: 2 + 6: 2 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:2 + 2: 2 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:2 + 174: _ZN9oceanbase3rpc5frame14ObReqTransport7Request7destroyEv:0 + 1: 0 + 2: 0 + 3: 0 + 178: _ZN9oceanbase6common11ObTimeGuard5clickEPKc:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 183: _ZN9oceanbase6common7ob_freeEPv:0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 187.1: _ZN9oceanbase3lib20is_trace_log_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:0 + 2: 0 + 187.3: _ZN9oceanbase6common18get_trace_recorderEv:0 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:0 + 7: 0 + 8: 0 + 8.1: 0 + 187.6: _ZN9oceanbase3lib20is_trace_log_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:0 + 2: 0 + 187.8: _ZN9oceanbase6common18get_trace_recorderEv:0 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:0 + 7: 0 + 8: 0 + 8.1: 0 + 187.9: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl189ELl1600EE9add_eventERb:0 + 2: 0 + 3.1: 0 + 7: 0 + 12: 0 + 13: 0 + 187.11: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:0 + 0: 0 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 187.13: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:0 + 0: 0 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 187.14: _ZN9oceanbase6common18get_trace_recorderEv:0 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:0 + 7: 0 + 8: 0 + 8.1: 0 + 187.15: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl189ELl1600EE10check_lockEv:0 + 2: 0 + 3: _ZN9oceanbase3lib7ObMutex4lockEv:0 + 0: 0 + 187.16: _ZN9oceanbase6common18get_trace_recorderEv:0 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:0 + 7: 0 + 8: 0 + 8.1: 0 + 187.18: _ZN9oceanbase6common18get_trace_recorderEv:0 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:0 + 7: 0 + 8: 0 + 8.1: 0 + 187.19: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl189ELl1600EE10get_bufferEv:0 + 0: 0 + 187.20: _ZN9oceanbase6common18get_trace_recorderEv:0 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:0 + 7: 0 + 8: 0 + 8.1: 0 + 187.21: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl189ELl1600EE14get_buffer_posEv:0 + 0: 0 + 187.24: _ZN9oceanbase6common18get_trace_recorderEv:0 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:0 + 7: 0 + 8: 0 + 8.1: 0 + 187.28: _ZN9oceanbase6common18get_trace_recorderEv:0 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:0 + 7: 0 + 8: 0 + 8.1: 0 + 187.31: _ZN9oceanbase6common18get_trace_recorderEv:0 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:0 + 7: 0 + 8: 0 + 8.1: 0 + 187.32: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl189ELl1600EE12check_unlockEv:0 + 2: 0 + 3: _ZN9oceanbase3lib7ObMutex6unlockEv:0 + 0: 0 + 189.45: _ZN9oceanbase3rpc5frame14ObReqTransport7RequestD2Ev:0 + 0: 0 + 0.1: 0 + 0.5: 0 + 0.2: _ZN9oceanbase3rpc5frame14ObReqTransport7Request7destroyEv:0 + 2: 0 + 3: 0 + 189.48: _ZN9oceanbase3rpc5frame14ObReqTransport7RequestD2Ev:0 + 0: 0 + 0.1: 0 + 0.5: 0 + 0.2: _ZN9oceanbase3rpc5frame14ObReqTransport7Request7destroyEv:0 + 2: 0 + 3: 0 + 189.50: _ZN9oceanbase6common11ObTimeGuardD2Ev:0 + 2.1: 0 + 2.2: 0 + 3.1: 0 + 3.5: 0 + 2: _ZNK9oceanbase6common11ObTimeGuard8get_diffEv:0 + 2: 0 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 189.51: _ZN9oceanbase3lib22UnisCompatVersionGuardD2Ev:0 + 2.1: 0 + 189.54: _ZN9oceanbase6common11ObTimeGuardD2Ev:0 + 2.1: 0 + 2.2: 0 + 3.1: 0 + 3.5: 0 + 2: _ZNK9oceanbase6common11ObTimeGuard8get_diffEv:0 + 2: 0 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 189.55: _ZN9oceanbase3lib22UnisCompatVersionGuardD2Ev:0 + 2.1: 0 +_ZZN9oceanbase4palf7LogTask23set_initial_header_infoERKNS0_17LogTaskHeaderInfoEENK5$_564clEPKc.0e4bf25207570af14a78557c8489c4fc:660:10 + 0: 10 + 0.1: 0 + 0.2: 10 + 0.3: 10 _ZN9oceanbase6common8ObLogger13need_to_printEmi:10 + 0.9: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:170 + 2: 10 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS_4palf17LogTaskHeaderInfoELb0EEC2EPKcS5_:0 + 0: 0 + 0.7: _ZN9oceanbase6common20ObLogPrintPointerCntIPNS_4palf7LogTaskEEC2ES4_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVINS0_20ObLogPrintPointerCntIPNS_4palf7LogTaskEEELb1EEC2EPKcOKS6_:0 + 0: 0 +_ZN9oceanbase5share18ObLSStatusOperator24get_ls_primary_zone_infoEmRKNS0_6ObLSIDERNS0_19ObLSPrimaryZoneInfoERNS_6common12ObISQLClientE:658:2 + 2: 2 + 3: 2 + 4: 2 + 4.2: 2 + 5: 0 + 6.1: 0 + 8.1: 2 _ZN9oceanbase6common11ObSqlStringC1ERKNS_3lib7ObLabelE:2 + 10.1: 1 + 11.1: 0 + 12.2: 1 _ZN9oceanbase6common11ObSqlString10append_fmtEPKcz:1 + 12.3: 0 + 14.1: 0 + 15.1: 0 + 15.2: 1 + 16.1: 0 + 17.2: 1 + 18: 0 + 19.1: 0 + 21: 0 + 22.1: 0 + 23.2: 1 _ZN9oceanbase5share19ObLSPrimaryZoneInfo6assignERKS1_:1 + 23.3: 0 + 24.1: 0 + 26.2: 0 + 26.3: 0 + 28: 0 + 8: _ZN9oceanbase3lib7ObLabelC2IA10_cEERKT_:56 + 2: _ZN9oceanbase3lib7ObLabelaSILm10EEERS1_RAT__Kc:56 + 4: 2 + 9: _ZN9oceanbase6common9ObSEArrayINS_5share19ObLSPrimaryZoneInfoELl1ENS0_19ModulePageAllocatorELb0EEC2Ev:322 + 0.1: 2 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_5share19ObLSPrimaryZoneInfoELl1ENS0_19ModulePageAllocatorELb0EEC2ElRKS4_:286 + 2: 2 + 5: 2 + 6: 2 + 8: 2 + 17.1: 2 + 2: _ZN9oceanbase6common8ObIArrayINS_5share19ObLSPrimaryZoneInfoEEC2EPS3_l:36 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_5share19ObLSPrimaryZoneInfoEEC2EPS3_l:36 + 0: 2 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:114 + 0: 2 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:38 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:38 + 2: 2 + 8: 2 + 10: _ZN9oceanbase5share18ObLSStatusOperator30construct_ls_primary_info_sql_ERNS_6common11ObSqlStringE:65 + 3: 2 _ZN9oceanbase6common11ObSqlString10assign_fmtEPKcz:2 + 7.1: 0 + 9: 0 + 12.1: _ZNK9oceanbase5share6ObLSID2idEv:4 + 0: 1 + 17.1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share19ObLSPrimaryZoneInfoEE5countEv:7 + 0: 1 + 23.1: _ZN9oceanbase6common12ObIArrayWrapINS_5share19ObLSPrimaryZoneInfoEE2atEl:11 + 6: 1 + 26: _ZN9oceanbase6common13ObSEArrayImplINS_5share19ObLSPrimaryZoneInfoELl1ENS0_19ModulePageAllocatorELb0EED2Ev:0 + 1: 0 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_5share19ObLSPrimaryZoneInfoELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:0 + 4.1: 0 + 4.3: 0 + 5: 0 + 9: 0 + 11: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_5share19ObLSPrimaryZoneInfoELl1ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 26.1: _ZN9oceanbase6common13ObSEArrayImplINS_5share19ObLSPrimaryZoneInfoELl1ENS0_19ModulePageAllocatorELb0EED2Ev:0 + 1: 0 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_5share19ObLSPrimaryZoneInfoELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:0 + 4.1: 0 + 4.3: 0 + 5: 0 + 9: 0 + 11: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_5share19ObLSPrimaryZoneInfoELl1ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZZN9oceanbase4palf11LogIOWorker25BatchLogIOFlushLogTaskMgr26find_usable_batch_io_task_ElRPNS0_22BatchLogIOFlushLogTaskEENK5$_785clEPKc.1598dc2348996c1ae1caea6120522988:655:11 + 0: 10 + 0.1: 0 + 0.2: 7 + 0.3: 10 _ZN9oceanbase6common8ObLogger13need_to_printEmi:10 + 0.11: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:170 + 2: 10 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.9: _ZN9oceanbase6common20ObLogPrintPointerCntIPNS_4palf11LogIOWorker25BatchLogIOFlushLogTaskMgrEEC2ES5_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVINS0_20ObLogPrintPointerCntIPNS_4palf11LogIOWorker25BatchLogIOFlushLogTaskMgrEEELb1EEC2EPKcOKS7_:0 + 0: 0 +_ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl128ENS0_19ModulePageAllocatorELb0EE7destroyEv:651:0 + 1: 0 + 4.1: 31 + 4.3: 31 + 9: 0 + 11: 0 + 13: 0 + 15: 0 + 24: 0 + 25: 0 + 5: _ZN9oceanbase6common10ObTabletIDD2Ev:248 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:248 + 0: 31 + 10: _ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl128ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZSt16__introsort_loopIPN9oceanbase4palf3LSNElN9__gnu_cxx5__ops15_Iter_comp_iterINS1_10LSNCompareEEEEvT_S9_T0_T1_:650:10 + 3: 10 + 4: 10 + 4.1: 10 + 6: 0 + 8: 0 + 13: 0 + 14: 0 + 17.3: 10 +_ZN9oceanbase8observer16ObInnerSQLResult11inner_closeEv:650:1 + 1: 1 + 2: 1 + 3: 1 + 7.1: 0 + 8: 1 + 8.1: 1 + 8.2: 1 _ZN9oceanbase5share19ObTenantSwitchGuard9switch_toEmb:2 + 8.3: 0 + 9.1: 0 + 11.2: 3 + 11.3: 3 + 11.4: 3 + 11.5: 3 _ZN9oceanbase3lib2_SILNS0_13ContextSourceE0EED2Ev:3 + 11.7: 0 + 11.9: 3 + 11.10: 0 + 12.1: 0 + 12.2: 0 _ZN9oceanbase3sql11ObResultSet5closeEv:1 + 12.3: 3 + 13: 0 + 13.2: 0 + 14.1: 0 + 15.2: 3 + 15.3: 0 + 15.4: 0 + 16.1: 0 + 20: 3 + 21: 3 + 23: 3 + 24.7: 2 + 3: _ZN9oceanbase3lib15CompatModeGuardC2ENS0_6Worker10CompatModeE:100 + 2: _ZN9oceanbase3lib6Worker4selfEv:28 + 3: 1 + 4: 0 + 2.1: _ZN9oceanbase3lib6Worker22get_compatibility_modeEv:44 + 2: _ZN9oceanbase3lib15get_compat_modeEv:44 + 2: 1 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:25 + 2: 1 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 3: _ZN9oceanbase3lib6Worker4selfEv:9 + 3: 1 + 4: 0 + 3.1: _ZN9oceanbase3lib6Worker22set_compatibility_modeENS1_10CompatModeE:19 + 2: _ZN9oceanbase3lib15set_compat_modeENS0_6Worker10CompatModeE:19 + 2: 1 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 6: _ZN9oceanbase5share25_make_tenant_switch_guardEv:56 + 2: 1 + 2.1: 0 + 2.3: 0 + 2.6: 0 + 2.2: _ZN9oceanbase5share19ObTenantSwitchGuardC2Ev:0 + 0.4: _ZNSt8functionIFiRN9oceanbase6common10ObLDHandleEEEC2Ev:0 + 1: _ZNSt14_Function_baseC2Ev:0 + 0: 0 + 0.5: _ZN9oceanbase5share19ObTenantSwitchGuard5resetEv:0 + 2: 0 + 3: 0 + 4: 0 + 3: _ZN9oceanbase5share19ObTenantSwitchGuardC2ERKS1_:39 + 0.1: _ZNSt8functionIFiRN9oceanbase6common10ObLDHandleEEEC2Ev:11 + 1: _ZNSt14_Function_baseC2Ev:11 + 0: 1 + 2: _ZN9oceanbase5share19ObTenantSwitchGuard5resetEv:28 + 2: 1 + 3: 1 + 4: 1 + 7: _ZNK9oceanbase8observer16ObInnerSQLResult19has_tenant_resourceEv:7 + 0: 1 + 8.1: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:14 + 0: 1 + 11: _ZN9oceanbase3lib2_SILNS0_13ContextSourceE0EEC2EbRNS0_13MemoryContextE:0 + 1: 0 + 4.1: 0 + 7: 0 + 10: 0 + 13: 0 + 1: _ZN9oceanbase3lib6_SBaseC2Ev:0 + 1: 0 + 4: _ZN9oceanbase3libeqEDnRKNS0_13MemoryContextE:0 + 1: 0 + 7: _ZN9oceanbase3lib4FlowC2ERNS0_13MemoryContextE:0 + 1: 0 + 3: 0 + 8: _ZN9oceanbase3lib4Flow4initEv:0 + 4: 0 + 7: 0 + 8: 0 + 9: 0 + 12: 0 + 7: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 11.6: _ZNK9oceanbase3lib6_SBase7get_retEv:0 + 2: 0 + 12: _ZNK9oceanbase8observer16ObInnerSQLResult19has_tenant_resourceEv:0 + 0: 0 + 13: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:0 + 0: 0 + 0.2: 0 + 13.1: _ZN9oceanbase3sql13ObExecContext17get_task_exec_ctxEv:0 + 2: 0 + 15.1: _ZNK9oceanbase8observer16ObInnerSQLResult19has_tenant_resourceEv:21 + 0: 3 + 24.7: _ZN9oceanbase5share19ObTenantSwitchGuardD2Ev:25 + 2: 3 _ZN9oceanbase5share19ObTenantSwitchGuard7releaseEv:3 + 3: _ZNSt14_Function_baseD2Ev:22 + 2: 2 + 3: 0 + 3.2: 0 + 24.8: _ZN9oceanbase5share19ObTenantSwitchGuardD2Ev:0 + 2: 0 + 3: _ZNSt14_Function_baseD2Ev:0 + 2: 0 + 3: 0 + 3.2: 0 + 24.9: _ZN9oceanbase3lib15CompatModeGuardD2Ev:0 + 2.2: 0 + 2: _ZN9oceanbase3lib6Worker4selfEv:0 + 3: 0 + 4: 0 + 2.1: _ZN9oceanbase3lib6Worker22set_compatibility_modeENS1_10CompatModeE:0 + 2: _ZN9oceanbase3lib15set_compat_modeENS0_6Worker10CompatModeE:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 24.11: _ZN9oceanbase3lib15CompatModeGuardD2Ev:140 + 2.2: 0 + 2: _ZN9oceanbase3lib6Worker4selfEv:52 + 3: 2 + 4: 0 + 2.1: _ZN9oceanbase3lib6Worker22set_compatibility_modeENS1_10CompatModeE:88 + 2: _ZN9oceanbase3lib15set_compat_modeENS0_6Worker10CompatModeE:88 + 2: 2 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:50 + 2: 2 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 +_ZN9oceanbase5share25ObSessionSpecialIntSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:648:4 + 10: 4 + 11: 4 + 12: 4 + 5: _ZN9oceanbase5share11ObIntSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:540 + 5: _ZN9oceanbase5share13ObBasicSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKS1_RKNS_6common5ObObjERSB_EPFiS4_S7_S9_SD_EPFiRNSA_12ObIAllocatorERKNS2_18ObBasicSessionInfoES9_SE_EPFiSK_SN_S9_RNSA_8ObStringEEPFNSA_9ObObjTypeEvEb:540 + 11: 4 + 12: 4 + 13: 4 + 14: 4 + 15: 4 + 16: 4 + 17: 4 + 18: 4 + 20: _ZN9oceanbase5share13ObBasicSysVar11clean_valueEv:344 + 2: _ZN9oceanbase5share13ObBasicSysVar16clean_base_valueEv:96 + 2: 4 + 3: _ZN9oceanbase6common5ObObj13set_nop_valueEv:64 + 2: _ZN9oceanbase6common5ObObj7set_extEl:64 + 4: 4 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:32 + 0: 4 + 3: _ZN9oceanbase5share13ObBasicSysVar15clean_inc_valueEv:84 + 2: _ZN9oceanbase6common5ObObj13set_nop_valueEv:84 + 2: _ZN9oceanbase6common5ObObj7set_extEl:84 + 4: 4 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:32 + 0: 4 + 4: _ZN9oceanbase6common5ObObj5resetEv:48 + 6: 4 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:16 + 0: 4 + 5: _ZN9oceanbase6common5ObObj5resetEv:116 + 5: 4 + 6: 4 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:16 + 0: 4 + 3: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:24 + 0: 4 + 4: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:16 + 0: 4 +_ZN9oceanbase5share6schema19ObSchemaGetterGuard20get_from_local_cacheINS1_19ObSysVariableSchemaEEEiNS1_12ObSchemaTypeEmmRPKT_:647:2 + 5: 2 + 6: 2 + 7: 2 + 9: 2 + 10: 0 + 11.1: 0 + 12.1: 2 + 12.2: 2 + 13: 2 + 15.1: 2 _ZN9oceanbase5share6schema16is_normal_schemaENS1_12ObSchemaTypeE:2 + 16: 0 + 17.1: 0 + 21.1: 2 + 21.4: 2 + 21.5: 2 + 21.6: 4 + 21.7: 4 + 21.9: 2 + 21.10: 1 + 21.12: 1 + 22: 2 + 22.1: 0 + 23: 2 + 23.1: 0 + 24: 0 + 24.1: 0 + 25: 0 + 30: 3 + 31.1: 3 _ZZN9oceanbase5share6schema19ObSchemaGetterGuard20get_from_local_cacheINS1_19ObSysVariableSchemaEEEiNS1_12ObSchemaTypeEmmRPKT_ENKUlPKcE1_clESB_:3 + 32.1: 0 + 33: 0 + 34.1: 0 + 36: 0 + 37.1: 0 + 41: 3 + 9: _ZNK9oceanbase5share6schema19ObSchemaGetterGuard16check_inner_statEv:96 + 2: 2 + 3: 2 + 4: 0 + 5.1: 0 + 6.1: 2 + 6.2: 2 + 7: 2 + 7.1: 2 + 8: 0 + 9.1: 0 + 11: 2 + 21.1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema19ObSchemaGetterGuard9SchemaObjEE5countEv:18 + 0: 2 + 21.2: _ZN9oceanbase6common12ObIArrayWrapINS_5share6schema19ObSchemaGetterGuard9SchemaObjEE2atEl:7 + 6: 1 +_ZN9oceanbase4palf11LogWriteBufD2Ev:646:33 + 1: 29 + 3: 30 _ZN9oceanbase6common13ObSEArrayImplINS_4palf11LogWriteBuf11InnerStructELl2ENS0_19ModulePageAllocatorELb0EED2Ev:31 + 3.1: 0 + 3.2: 0 + 2: _ZN9oceanbase4palf11LogWriteBuf5resetEv:116 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_4palf11LogWriteBuf11InnerStructELl2ENS0_19ModulePageAllocatorELb0EE5resetEv:116 + 0: 29 _ZN9oceanbase6common13ObSEArrayImplINS_4palf11LogWriteBuf11InnerStructELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv:30 +_ZN9oceanbase4palf11LogWriteBufD1Ev:646:33 + 1: 29 + 3: 30 _ZN9oceanbase6common13ObSEArrayImplINS_4palf11LogWriteBuf11InnerStructELl2ENS0_19ModulePageAllocatorELb0EED2Ev:31 + 3.1: 0 + 3.2: 0 + 2: _ZN9oceanbase4palf11LogWriteBuf5resetEv:116 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_4palf11LogWriteBuf11InnerStructELl2ENS0_19ModulePageAllocatorELb0EE5resetEv:116 + 0: 29 _ZN9oceanbase6common13ObSEArrayImplINS_4palf11LogWriteBuf11InnerStructELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv:30 +_ZN9oceanbase7storage19ObTablesHandleArrayC2Ev:642:3 + 4: 3 + 5: 3 + 2: _ZN9oceanbase6common10ObTabletIDC2Em:177 + 0: 3 + 3: _ZN9oceanbase6common9ObSEArrayIPNS_7storage8ObITableELl8ENS0_19ModulePageAllocatorELb0EEC2Ev:447 + 0.1: 3 + 0.5: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl8ENS0_19ModulePageAllocatorELb0EEC2ElRKS5_:402 + 2: 3 + 5: 3 + 6: 3 + 8: 3 + 17.1: 3 + 2: _ZN9oceanbase6common8ObIArrayIPNS_7storage8ObITableEEC2EPS4_l:36 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_7storage8ObITableEEC2EPS4_l:36 + 0: 3 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:171 + 0: 3 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:75 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:75 + 2: 3 + 8: 3 +_ZN9oceanbase7storage19ObTablesHandleArrayC1Ev:642:3 + 4: 3 + 5: 3 + 2: _ZN9oceanbase6common10ObTabletIDC2Em:177 + 0: 3 + 3: _ZN9oceanbase6common9ObSEArrayIPNS_7storage8ObITableELl8ENS0_19ModulePageAllocatorELb0EEC2Ev:447 + 0.1: 3 + 0.5: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl8ENS0_19ModulePageAllocatorELb0EEC2ElRKS5_:402 + 2: 3 + 5: 3 + 6: 3 + 8: 3 + 17.1: 3 + 2: _ZN9oceanbase6common8ObIArrayIPNS_7storage8ObITableEEC2EPS4_l:36 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_7storage8ObITableEEC2EPS4_l:36 + 0: 3 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:171 + 0: 3 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:75 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:75 + 2: 3 + 8: 3 +easy_connection_on_timeout_conn.8d7a091449e6908669a41293537a4cf4:639:3 + 1: 3 + 7: 3 + 8: 3 + 10: 3 + 13: 3 + 16: 0 + 18: 0 + 19.2: 0 + 19.3: 0 + 19.4: 0 + 19.7: 0 + 19.8: 0 + 23: 0 + 23.1: 0 + 24: 0 + 25: 0 + 26: 0 + 27: 0 + 28.2: 0 + 29: 0 + 29.3: 0 + 43: 3 ev_now:3 + 44: 3 + 45: 3 + 50: 3 easy_connection_check_rx_request:3 + 51.2: 0 + 51.3: 0 + 51.4: 0 + 51.7: 0 + 54: 3 + 54.1: 0 + 56: 0 + 57: 0 + 62.1: 0 + 62.2: 0 + 62.3: 0 + 62.4: 0 + 62.7: 0 + 62.8: 0 + 68: 3 + 69: 3 + 70: 0 + 72: 0 + 74: 0 + 80: 0 + 83: 3 + 84: 3 + 84.2: 0 + 85: 0 + 86: 0 + 87.1: 0 + 87.2: 0 + 87.3: 0 + 87.4: 0 + 87.7: 0 + 89: 0 + 90: 0 + 98: 0 + 98.1: 0 + 99: 0 + 100: 0 + 101: 0 + 102: 0 + 103.1: 0 + 103.2: 0 + 103.3: 0 + 103.4: 0 + 104: 0 + 113: 0 + 114.1: 0 + 114.2: 0 + 114.3: 0 + 114.4: 0 + 114.7: 0 + 119.1: 0 + 119.2: 0 + 119.3: 0 + 119.4: 0 + 119.7: 0 + 124: 3 + 127: 0 + 127.1: 0 + 128: 0 + 129.1: 0 + 129.2: 0 + 129.3: 0 + 129.4: 0 + 129.7: 0 + 131: 0 + 135.1: 0 + 135.2: 0 + 135.3: 0 + 135.4: 0 + 135.7: 0 + 147: 3 easy_connection_rearm_failure_detection_timer.8d7a091449e6908669a41293537a4cf4:3 + 153: 0 + 156: 2 + 14: easy_connection_autoconn:0 + 5: 0 + 7: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 14.2: 0 + 14.3: 0 + 14.4: 0 + 14.8: 0 + 14.9: 0 + 18: 0 + 20: 0 + 21: 0 + 24: 0 + 25: 0 + 26: 0 + 27.1: 0 + 27.2: 0 + 27.3: 0 + 27.4: 0 + 27.9: 0 + 27.10: 0 + 29: 0 + 33: 0 + 35: 0 + 39: 0 + 41: 0 + 42.1: 0 + 42.2: 0 + 42.3: 0 + 42.4: 0 + 42.7: 0 + 47: 0 + 48.1: 0 + 49.1: 0 + 51: 0 + 56.1: 0 + 56.2: 0 + 56.3: 0 + 56.4: 0 + 56.7: 0 + 61.1: 0 + 61.2: 0 + 61.3: 0 + 61.4: 0 + 62: 0 + 62.1: 0 + 63: 0 + 64: 0 + 58: easy_connection_evio_start:0 + 2: 0 + 3: 0 + 6: 0 + 7: 0 + 10: 0 + 11: 0 + 14: 0 + 29: current_time:0 + 3: 0 + 4.2: 0 + 4.3: 0 + 4.4: 0 + 6: 0 + 29.1: easy_atomic_cmp_set:0 + 2: 0 + 30: easy_connection_dump_slow_request:0 + 5.1: 0 + 5.2: 0 + 5.3: 0 + 5.4: 0 + 5.7: 0 + 6: 0 + 6.1: 0 + 7.1: 0 + 7.2: 0 + 7.3: 0 + 7.4: 0 + 8: 0 + 8.1: 0 + 9.1: 0 + 9.2: 0 + 9.3: 0 + 9.4: 0 + 10.1: 0 + 10.2: 0 + 10.3: 0 + 10.4: 0 + 10.7: 0 + 12.1: 0 + 12.2: 0 + 12.3: 0 + 12.4: 0 + 14.1: 0 + 14.2: 0 + 14.3: 0 + 14.4: 0 + 14.7: 0 + 15: 0 + 125: easy_connection_update_ack_bytes_and_time:0 + 3: 0 + 7: 0 + 8: 0 + 9.1: 0 + 9.2: 0 + 9.3: 0 + 9.4: 0 + 9.7: 0 + 9.9: 0 + 9.10: 0 + 12: 0 + 13: 0 + 14: 0 + 16: 0 + 17: 0 + 17.1: 0 + 18: 0 + 19: 0 +_ZNK9oceanbase3omt13ObMultiTenant10get_tenantEmRPNS0_8ObTenantE:639:1 + 2: 1 + 3: 1 + 5: 1 + 5.1: 0 + 3: _ZN9oceanbase6common14SpinRLockGuardC2ERKNS0_10SpinRWLockE:31 + 1: 1 + 3: 1 + 4.1: 0 + 3: _ZN9oceanbase6common10SpinRWLock6rdlockEl:16 + 0: 1 _ZN9oceanbase6common7ObLatch6rdlockEjl:1 + 4: _ZNK9oceanbase3omt13ObMultiTenant17get_tenant_unsafeEmRPNS0_8ObTenantE:545 + 4: 1 + 6: 13 + 8: 14 + 10.1: 0 + 11.1: 14 + 12: 1 + 5: _ZNK9oceanbase6common14ObSortedVectorIPNS_3omt8ObTenantENS0_9PageArenaIS4_NS0_20DefaultPageAllocatorEEEE5beginEv:8 + 0: _ZNK9oceanbase6common8ObVectorIPNS_3omt8ObTenantENS0_9PageArenaIS4_NS0_20DefaultPageAllocatorEEEE5beginEv:8 + 0: 1 + 5: _ZN9oceanbase6common14SpinRLockGuardD2Ev:20 + 2: 1 + 3: 1 + 3.1: 1 + 4.1: 0 + 3: _ZN9oceanbase6common10SpinRWLock6unlockEv:3 + 0: 1 _ZN9oceanbase6common7ObLatch6unlockEPKj:1 +_ZN9oceanbase4palf13FlushLogCbCtxC2Ev:634:13 + 2: 13 + 3: 13 _ZN9oceanbase4palf3LSNC1Ev:13 + 4: 12 + 6: 12 + 8: 13 + 9: 12 +_ZN9oceanbase4palf13FlushLogCbCtxC1Ev:634:13 + 2: 13 + 3: 13 _ZN9oceanbase4palf3LSNC1Ev:13 + 4: 12 + 6: 12 + 8: 13 + 9: 12 +_ZN9oceanbase5share18ObSysVarRecyclebinC2Ev:632:3 + 0: 3 + 0: _ZN9oceanbase5share12ObBoolSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:588 + 5: _ZN9oceanbase5share15ObTypeLibSysVarC2EPPKcPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSF_EPFiS7_SA_SD_SH_EPFiRNSE_12ObIAllocatorERKNS5_18ObBasicSessionInfoESD_SI_EPFiSO_SR_SD_RNSE_8ObStringEEPFNSE_9ObObjTypeEvEb:588 + 14: 3 + 7: _ZN9oceanbase5share13ObBasicSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKS1_RKNS_6common5ObObjERSB_EPFiS4_S7_S9_SD_EPFiRNSA_12ObIAllocatorERKNS2_18ObBasicSessionInfoES9_SE_EPFiSK_SN_S9_RNSA_8ObStringEEPFNSA_9ObObjTypeEvEb:294 + 11: 3 + 13: 3 + 20: _ZN9oceanbase5share13ObBasicSysVar11clean_valueEv:207 + 2: _ZN9oceanbase5share13ObBasicSysVar16clean_base_valueEv:72 + 2: 3 + 3: _ZN9oceanbase6common5ObObj13set_nop_valueEv:48 + 2: _ZN9oceanbase6common5ObObj7set_extEl:48 + 4: 3 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:24 + 0: 3 + 3: _ZN9oceanbase5share13ObBasicSysVar15clean_inc_valueEv:63 + 2: _ZN9oceanbase6common5ObObj13set_nop_valueEv:63 + 2: _ZN9oceanbase6common5ObObj7set_extEl:63 + 4: 3 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:24 + 0: 3 + 4: _ZN9oceanbase6common5ObObj5resetEv:36 + 6: 3 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:12 + 0: 3 + 5: _ZN9oceanbase6common5ObObj5resetEv:36 + 6: 3 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:12 + 0: 3 + 13: _ZN9oceanbase5share15ObSysVarTypeLibC2EPPKc:252 + 1: 3 + 2: 3 + 3: 3 + 8.1: 8 + 8.3: 8 + 9: 2 +_ZN9oceanbase8observer20ObInnerSQLConnection12TimeoutGuardD2Ev:631:3 + 1: 3 + 2: 3 + 3.2: 3 + 4.1: 0 + 9: 3 + 10.3: 3 + 13: 3 + 14: 3 _ZN9oceanbase8observer20ObInnerSQLConnection19set_session_timeoutEll:3 + 14.1: 5 + 15.1: 0 + 19.4: 5 + 19.7: 0 + 3: _ZN9oceanbase3lib6Worker4selfEv:84 + 3: 3 + 4: 0 + 4: _ZN9oceanbase3lib6Worker4selfEv:5 + 3: 1 + 4: 0 + 4.1: _ZN9oceanbase3lib6Worker14set_timeout_tsEl:8 + 0: 1 + 9: _ZN9oceanbase8observer20ObInnerSQLConnection11get_sessionEv:54 + 0: 3 + 9.1: _ZNK9oceanbase3sql18ObBasicSessionInfo17get_query_timeoutERl:150 + 2: 3 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache20get_ob_query_timeoutEv:141 + 0: 3 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache20get_ob_query_timeoutEb:75 + 0: 3 + 10.2: _ZNK9oceanbase3sql18ObBasicSessionInfo14get_tx_timeoutERl:72 + 2: 3 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache18get_ob_trx_timeoutEv:63 + 0: 3 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache18get_ob_trx_timeoutEb:54 + 0: 3 +_ZN9oceanbase8observer20ObInnerSQLConnection12TimeoutGuardD1Ev:631:3 + 1: 3 + 2: 3 + 3.2: 3 + 4.1: 0 + 9: 3 + 10.3: 3 + 13: 3 + 14: 3 _ZN9oceanbase8observer20ObInnerSQLConnection19set_session_timeoutEll:3 + 14.1: 5 + 15.1: 0 + 19.4: 5 + 19.7: 0 + 3: _ZN9oceanbase3lib6Worker4selfEv:84 + 3: 3 + 4: 0 + 4: _ZN9oceanbase3lib6Worker4selfEv:5 + 3: 1 + 4: 0 + 4.1: _ZN9oceanbase3lib6Worker14set_timeout_tsEl:8 + 0: 1 + 9: _ZN9oceanbase8observer20ObInnerSQLConnection11get_sessionEv:54 + 0: 3 + 9.1: _ZNK9oceanbase3sql18ObBasicSessionInfo17get_query_timeoutERl:150 + 2: 3 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache20get_ob_query_timeoutEv:141 + 0: 3 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache20get_ob_query_timeoutEb:75 + 0: 3 + 10.2: _ZNK9oceanbase3sql18ObBasicSessionInfo14get_tx_timeoutERl:72 + 2: 3 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache18get_ob_trx_timeoutEv:63 + 0: 3 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache18get_ob_trx_timeoutEb:54 + 0: 3 +_ZN9oceanbase3sql18ObBasicSessionInfo11init_tenantERKNS_6common8ObStringEm:629:3 + 1: 3 + 2: 3 + 3: 3 + 4: 0 + 5.1: 0 + 6.1: 3 + 7: 0 + 8.1: 0 + 9.1: 3 + 10: 0 + 11.1: 0 + 12.1: 3 + 14.1: 4 + 15.1: 0 + 18: 4 _ZN9oceanbase3omt19ObTenantTimezoneMgr12get_instanceEv:4 + 18.1: 3 _ZN9oceanbase3omt19ObTenantTimezoneMgr13get_tenant_tzEmRNS_6common11ObTZMapWrapE:3 + 18.2: 1 + 19.1: 0 + 21: 1 + 21.1: 1 _ZN9oceanbase6common18ObTimeZoneInfoWrap15set_tz_info_mapEPKNS0_11ObTZInfoMapE:1 + 22: 1 + 23: 1 + 27: 1 + 3: _ZN9oceanbase6common18is_valid_tenant_idEm:21 + 2: 3 + 6.1: _ZNK9oceanbase6common8ObString5emptyEv:60 + 2: 3 + 2.1: 3 + 12.1: _ZN9oceanbase6common11ob_cstrcopyEPclRKNS0_8ObStringE:39 + 2.2: _ZN9oceanbase6common11ob_cstrcopyEPclPKcl:39 + 7: 3 + 8: 3 + 14.1: _ZN9oceanbase6common11ob_cstrcopyEPclRKNS0_8ObStringE:138 + 2: _ZNK9oceanbase6common8ObString3ptrEv:12 + 0: 3 + 2.1: _ZNK9oceanbase6common8ObString6lengthEv:60 + 0: 3 + 2.2: _ZN9oceanbase6common11ob_cstrcopyEPclPKcl:66 + 3: 3 + 4.1: 0 + 7: 3 + 8: 4 + 17: _ZN9oceanbase6common11ObTZMapWrapC2Ev:32 + 0: 4 + 21: _ZNK9oceanbase6common11ObTZMapWrap10get_tz_mapEv:4 + 0: 1 +_ZN9oceanbase11transaction7ObTsMgr7get_gtsEmPNS0_10ObTsCbTaskERl:627:2 + 1: 2 + 3: 1 + 5: 1 + 6: 0 + 7.1: 0 + 8.1: 1 + 9: 0 + 10.1: 0 + 11.1: 1 + 12: 0 + 13.1: 0 + 21: 1 _ZN9oceanbase11transaction7ObTsMgr23get_ts_source_info_opt_EmRNS0_19ObTsSourceInfoGuardEbb:1 + 21.1: 1 + 22.1: 0 + 23.2: 1 + 24: 0 + 25.1: 0 + 26.1: 1 + 26.2: 2 + 27.1: 0 + 28.1: 2 + 29.1: 2 + 30: 0 + 31.1: 0 + 32.1: 2 _ZN9oceanbase11transaction11ObGtsSource7get_gtsEPNS0_10ObTsCbTaskERl:2 + 32.2: 2 + 34.1: 0 + 40.5: 0 + 40.6: 2 _ZN9oceanbase11transaction19ObTsSourceInfoGuardD1Ev:2 + 42: 2 + 42.1: 2 _ZN9oceanbase11transaction16ObTransStatistic27add_gts_acquire_total_countEml:2 + 44: 2 + 46: 1 + 46.1: 1 + 49: 0 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:2 + 2: 2 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:2 + 11.1: _ZN9oceanbase6common18is_valid_tenant_idEm:8 + 2: 1 + 19: _ZN9oceanbase11transaction19ObTsSourceInfoGuardC2Ev:26 + 0: 1 + 23.1: _ZN9oceanbase11transaction19ObTsSourceInfoGuard18get_ts_source_infoEv:4 + 0: 1 + 26.1: _ZN9oceanbase11transaction14ObTsSourceInfo13get_ts_sourceEmRNS0_15ObTsSourceGuardERb:120 + 2: 1 + 3: 1 _ZN9oceanbase5share11ObQSyncLock6rdlockEv:2 + 4: 2 + 5: 0 + 6.1: 0 + 7.1: 2 + 7.2: 2 + 8: 0 + 9.1: 0 + 11: 2 + 12: 2 + 13: 2 + 15: 2 + 16: 0 + 18: 0 + 7.1: _ZN9oceanbase6common18is_valid_tenant_idEm:18 + 2: 2 + 40.1: _ZN9oceanbase11transaction15ObTsSourceGuardD2Ev:40 + 2: 2 + 3.1: 0 + 3: _ZN9oceanbase11transaction14ObTsSourceInfo17revert_ts_source_ERNS0_15ObTsSourceGuardE:22 + 3: 2 _ZN9oceanbase5share11ObQSyncLock8rdunlockEv:2 + 40.4: _ZN9oceanbase11transaction15ObTsSourceGuardD2Ev:0 + 2: 0 + 3.1: 0 + 3: _ZN9oceanbase11transaction14ObTsSourceInfo17revert_ts_source_ERNS0_15ObTsSourceGuardE:0 + 3: 0 + 42: _ZN9oceanbase11transaction16ObTransStatistic12get_instanceEv:28 + 2: 2 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 45: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:5 + 2: 2 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:2 + 46: _ZN9oceanbase11transaction16ObTransStatistic12get_instanceEv:7 + 2: 1 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 +_ZNSt17_Function_handlerIFiPKN9oceanbase3lib17ObTenantMemoryMgrEEZNKS1_20ObTenantCtxAllocator8get_holdEvEUlS4_E_E9_M_invokeERKSt9_Any_dataOS4_:625:28 + 1: 25 + 2: 25 + 3: 25 + 2.1: _ZZNK9oceanbase3lib20ObTenantCtxAllocator8get_holdEvENKUlPKNS0_17ObTenantMemoryMgrEE_clES4_:350 + 1: 25 _ZNK9oceanbase3lib17ObTenantMemoryMgr12get_ctx_holdEmRl:25 +_ZN9oceanbase6common13ObSEArrayImplINS_5share19ObLSReplicaLocationELl3ENS0_19ModulePageAllocatorELb0EE6assignERKNS0_8ObIArrayIS3_EE:623:2 + 0: 1 + 1: 2 + 2: 1 + 3: 2 + 3.1: 1 + 3.3: 1 + 4: 2 + 5: 1 + 6: 2 + 7: 2 + 8: 2 + 9: 1 _ZN9oceanbase5share17ObLSRestoreStatusaSERKS1_:1 + 18: 1 + 21: 1 + 4: _ZN9oceanbase6common13ObSEArrayImplINS_5share19ObLSReplicaLocationELl3ENS0_19ModulePageAllocatorELb0EE5reuseEv:88 + 4.1: 2 + 4.3: 0 + 5: 2 _ZN9oceanbase5share19ObLSReplicaLocationD2Ev:2 + 8: 2 + 9: 2 + 5: _ZNK9oceanbase6common12ObIArrayWrapINS_5share19ObLSReplicaLocationEE5countEv:8 + 0: 2 + 6: _ZN9oceanbase6common13ObSEArrayImplINS_5share19ObLSReplicaLocationELl3ENS0_19ModulePageAllocatorELb0EE7reserveEl:46 + 2: 2 + 3: 2 + 5: 0 + 6: 0 + 7: 0 + 7.3: 0 + 9: 0 + 10: 0 + 11: 0 + 12: 0 + 13: 0 + 15: 0 + 16: 0 + 23: 0 + 24.1: 0 + 27: 0 + 8: _ZN9oceanbase6common13ObSEArrayImplINS_5share19ObLSReplicaLocationELl3ENS0_19ModulePageAllocatorELb0EE16internal_malloc_El:0 + 2: 0 + 7: 0 + 13: 0 + 13: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 10: _ZN9oceanbase6common9ObClassOpINS_5share19ObLSReplicaLocationELb0EE12array_expandEPKS3_PS3_l:0 + 4.1: 0 + 4.3: 0 + 18.1: 0 + 19: 0 + 5: _ZN9oceanbase6common16construct_assignINS_5share19ObLSReplicaLocationEEEiRT_RKS4_:0 + 2: _ZN9oceanbase6common21construct_assign_wrapINS_5share19ObLSReplicaLocationEEEiRT_RKS4_NS0_8BoolTypeILb1EEE:0 + 2: _ZN9oceanbase5share19ObLSReplicaLocationC2Ev:0 + 3: 0 + 4: 0 + 7: 0 + 1: _ZN9oceanbase6common6ObAddrC2Ev:0 + 1: 0 + 5: _ZN9oceanbase6common17ObReplicaPropertyC2Ev:0 + 0: 0 + 6: _ZN9oceanbase5share17ObLSRestoreStatusC2Ev:0 + 0: 0 + 3: _ZN9oceanbase5share19ObLSReplicaLocation6assignERKS1_:0 + 3: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 4: _ZN9oceanbase6common6ObAddraSERKS1_:0 + 1: 0 + 2: 0 + 3: 0 + 8: _ZNKSt9type_info9hash_codeEv:62 + 3.2: 0 + 3.4: 2 + 3.5: 2 _ZSt11_Hash_bytesPKvmm:2 + 3: _ZNKSt9type_info4nameEv:30 + 1: 2 + 8.1: _ZNKSt9type_info9hash_codeEv:0 + 3.2: 0 + 3.5: 0 _ZSt11_Hash_bytesPKvmm:1 +_ZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS0_7ObLabelEPNS_6common9LabelItemEEE:622:0 + 1: 0 + 2: 0 + 8: 0 + 8.1: 0 + 8.2: 0 + 8.3: 0 + 9: 0 + 10: 0 + 11.1: 0 + 15: 0 + 15.4: 1 + 15.6: 0 + 15.7: 0 + 15.15: 0 + 18: 0 + 20: 0 + 21: 0 + 25: 1 + 26: 1 + 27: 1 + 28: 1 + 29: 1 + 29.1: 1 + 30: 1 + 31: 1 + 33: 1 + 34.1: 1 + 37: 0 + 38: 0 + 42: 1 + 48.1: 1 + 48.3: 1 + 48.5: 1 + 49: 1 + 49.2: 0 + 56: 1 + 56.1: 1 + 61: 1 + 9: _ZNK9oceanbase6common12ObMemoryDump9is_initedEv:0 + 0: 0 + 13: _ZN9oceanbase6common13ObLatchRGuardC2ERNS0_7ObLatchEj:0 + 1: 0 + 2: 0 + 4: 0 + 5.1: 0 + 15.2: _ZN9oceanbase6common8precheckIA1024_ZNKS_3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS2_7ObLabelEPNS0_9LabelItemEEEE11ItemWrapperEEibRb:0 + 6: _ZN9oceanbase6common15check_from_heapEiRb:0 + 4: 0 + 5: 0 + 6: 0 + 6.1: 0 + 10: 0 + 10.2: 0 + 15.6: _ZN9oceanbase6common2SVIA1024_ZNKS_3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS2_7ObLabelEPNS0_9LabelItemEEEE11ItemWrapperLb0EEC2IZNKS3_10iter_labelESA_E4$_56EEibOT_:0 + 3: 0 + 5: 0 + 6: 0 + 9: _ZZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS0_7ObLabelEPNS_6common9LabelItemEEEENK4$_56clEPv:0 + 0.1: _ZN9oceanbase3lib7ObLabelC2Ev:0 + 1: _ZN9oceanbase3lib7ObLabelC2IDnEERKT_:0 + 2: _ZN9oceanbase3lib7ObLabelaSIDnvEERS1_T_:0 + 2: 0 + 15.10: _ZN9oceanbase3lib7ObLabelC2Ev:0 + 1: _ZN9oceanbase3lib7ObLabelC2IDnEERKT_:0 + 2: _ZN9oceanbase3lib7ObLabelaSIDnvEERS1_T_:0 + 2: 0 + 16: _ZN9oceanbase6common9LabelItemC2Ev:0 + 2: 0 + 21.1: _ZSt11lower_boundIPN9oceanbase6common12ObMemoryDump14TenantCtxRangeESt4pairImmEPFbRKS3_RKS6_EET_SD_SD_RKT0_T1_:320 + 13: _ZSt13__lower_boundIPN9oceanbase6common12ObMemoryDump14TenantCtxRangeESt4pairImmEN9__gnu_cxx5__ops14_Iter_comp_valIPFbRKS3_RKS6_EEEET_SH_SH_RKT0_T1_:320 + 8.1: 9 + 10: 9 + 13: 6 + 6: _ZSt8distanceIPN9oceanbase6common12ObMemoryDump14TenantCtxRangeEENSt15iterator_traitsIT_E15difference_typeES6_S6_:0 + 3: _ZSt10__distanceIPN9oceanbase6common12ObMemoryDump14TenantCtxRangeEENSt15iterator_traitsIT_E15difference_typeES6_S6_St26random_access_iterator_tag:0 + 6: 0 + 12: _ZSt7advanceIPN9oceanbase6common12ObMemoryDump14TenantCtxRangeElEvRT_T0_:72 + 4.1: _ZSt9__advanceIPN9oceanbase6common12ObMemoryDump14TenantCtxRangeElEvRT_T0_St26random_access_iterator_tag:72 + 6: 9 + 13: _ZN9__gnu_cxx5__ops14_Iter_comp_valIPFbRKN9oceanbase6common12ObMemoryDump14TenantCtxRangeERKSt4pairImmEEEclIPS5_SA_EEbT_RT0_:97 + 1: _ZN9oceanbase6common12ObMemoryDump14TenantCtxRange7compareERKS2_RKSt4pairImmE:97 + 3: 9 + 4: 8 + 4.1: 6 + 23: _ZN9oceanbase3lib7ObLabelaSILm14EEERS1_RAT__Kc:11 + 4: 1 + 36: _ZN9oceanbase3lib7ObLabelaSILm16EEERS1_RAT__Kc:0 + 4: 0 + 46: 0 + 42: _ZSt4sortIPZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS1_7ObLabelEPNS0_6common9LabelItemEEEE11ItemWrapperZNKS2_10iter_labelESA_E4$_57EvT_SE_T0_:39 + 11.1: _ZSt6__sortIPZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS1_7ObLabelEPNS0_6common9LabelItemEEEE11ItemWrapperN9__gnu_cxx5__ops15_Iter_comp_iterIZNKS2_10iter_labelESA_E4$_57EEEvT_SI_T0_:39 + 5: 1 _ZSt16__introsort_loopIPZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS1_7ObLabelEPNS0_6common9LabelItemEEEE11ItemWrapperlN9__gnu_cxx5__ops15_Iter_comp_iterIZNKS2_10iter_labelESA_E4$_57EEEvT_SI_T0_T1_.a1b49044713ee2b295a5be406ce610bf:1 + 6: 1 + 6: _ZSt4__lgl:8 + 1: 1 + 8: _ZSt22__final_insertion_sortIPZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS1_7ObLabelEPNS0_6common9LabelItemEEEE11ItemWrapperN9__gnu_cxx5__ops15_Iter_comp_iterIZNKS2_10iter_labelESA_E4$_57EEEvT_SI_T0_:17 + 3: 1 + 5: 0 + 5: _ZSt16__insertion_sortIPZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS1_7ObLabelEPNS0_6common9LabelItemEEEE11ItemWrapperN9__gnu_cxx5__ops15_Iter_comp_iterIZNKS2_10iter_labelESA_E4$_57EEEvT_SI_T0_:0 + 5.1: 0 + 7: 0 + 10: 0 + 11: 0 + 12: 0 + 7: _ZN9__gnu_cxx5__ops15_Iter_comp_iterIZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS3_7ObLabelEPNS2_6common9LabelItemEEEE4$_57EclIPZNKS4_10iter_labelESC_E11ItemWrapperSH_EEbT_T0_:0 + 1: _ZZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS0_7ObLabelEPNS_6common9LabelItemEEEENK4$_57clERZNKS1_10iter_labelES9_E11ItemWrapperSC_:0 + 2: 0 + 11: _ZSt13move_backwardIPZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS1_7ObLabelEPNS0_6common9LabelItemEEEE11ItemWrapperSC_ET0_T_SE_SD_:0 + 10.1: _ZSt23__copy_move_backward_a2ILb1EPZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS1_7ObLabelEPNS0_6common9LabelItemEEEE11ItemWrapperSC_ET1_T0_SE_SD_:0 + 2: _ZSt22__copy_move_backward_aILb1EPZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS1_7ObLabelEPNS0_6common9LabelItemEEEE11ItemWrapperSC_ET1_T0_SE_SD_:0 + 10: _ZNSt20__copy_move_backwardILb1ELb0ESt26random_access_iterator_tagE13__copy_move_bIPZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS4_7ObLabelEPNS3_6common9LabelItemEEEE11ItemWrapperSF_EET0_T_SH_SG_:0 + 3: 0 + 3.1: 0 + 4: 0 + 15: _ZSt25__unguarded_linear_insertIPZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS1_7ObLabelEPNS0_6common9LabelItemEEEE11ItemWrapperN9__gnu_cxx5__ops14_Val_comp_iterIZNKS2_10iter_labelESA_E4$_57EEEvT_T0_:0 + 4: 0 + 7.1: 0 + 9: 0 + 13: 0 + 64281: 0 + 7.1: _ZN9__gnu_cxx5__ops14_Val_comp_iterIZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS3_7ObLabelEPNS2_6common9LabelItemEEEE4$_57EclIZNKS4_10iter_labelESC_E11ItemWrapperPSG_EEbRT_T0_:0 + 1: _ZZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS0_7ObLabelEPNS_6common9LabelItemEEEENK4$_57clERZNKS1_10iter_labelES9_E11ItemWrapperSC_:0 + 2: 0 + 6: _ZSt26__unguarded_insertion_sortIPZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS1_7ObLabelEPNS0_6common9LabelItemEEEE11ItemWrapperN9__gnu_cxx5__ops15_Iter_comp_iterIZNKS2_10iter_labelESA_E4$_57EEEvT_SI_T0_:0 + 3.1: 0 + 3.3: 0 + 4: _ZSt25__unguarded_linear_insertIPZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS1_7ObLabelEPNS0_6common9LabelItemEEEE11ItemWrapperN9__gnu_cxx5__ops14_Val_comp_iterIZNKS2_10iter_labelESA_E4$_57EEEvT_T0_:0 + 4: 0 + 7.1: 0 + 9: 0 + 13: 0 + 7.1: _ZN9__gnu_cxx5__ops14_Val_comp_iterIZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS3_7ObLabelEPNS2_6common9LabelItemEEEE4$_57EclIZNKS4_10iter_labelESC_E11ItemWrapperPSG_EEbRT_T0_:0 + 1: _ZZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS0_7ObLabelEPNS_6common9LabelItemEEEENK4$_57clERZNKS1_10iter_labelES9_E11ItemWrapperSC_:0 + 2: 0 + 10: _ZSt16__insertion_sortIPZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS1_7ObLabelEPNS0_6common9LabelItemEEEE11ItemWrapperN9__gnu_cxx5__ops15_Iter_comp_iterIZNKS2_10iter_labelESA_E4$_57EEEvT_SI_T0_:9 + 5.1: 1 + 7: 0 + 10: 0 + 12: 0 + 7: _ZN9__gnu_cxx5__ops15_Iter_comp_iterIZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS3_7ObLabelEPNS2_6common9LabelItemEEEE4$_57EclIPZNKS4_10iter_labelESC_E11ItemWrapperSH_EEbT_T0_:0 + 1: _ZZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS0_7ObLabelEPNS_6common9LabelItemEEEENK4$_57clERZNKS1_10iter_labelES9_E11ItemWrapperSC_:0 + 2: 0 + 11: _ZSt13move_backwardIPZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS1_7ObLabelEPNS0_6common9LabelItemEEEE11ItemWrapperSC_ET0_T_SE_SD_:0 + 10.1: _ZSt23__copy_move_backward_a2ILb1EPZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS1_7ObLabelEPNS0_6common9LabelItemEEEE11ItemWrapperSC_ET1_T0_SE_SD_:0 + 2: _ZSt22__copy_move_backward_aILb1EPZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS1_7ObLabelEPNS0_6common9LabelItemEEEE11ItemWrapperSC_ET1_T0_SE_SD_:0 + 10: _ZNSt20__copy_move_backwardILb1ELb0ESt26random_access_iterator_tagE13__copy_move_bIPZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS4_7ObLabelEPNS3_6common9LabelItemEEEE11ItemWrapperSF_EET0_T_SH_SG_:0 + 3: 0 + 3.1: 0 + 4: 0 + 15: _ZSt25__unguarded_linear_insertIPZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS1_7ObLabelEPNS0_6common9LabelItemEEEE11ItemWrapperN9__gnu_cxx5__ops14_Val_comp_iterIZNKS2_10iter_labelESA_E4$_57EEEvT_T0_:0 + 4: 0 + 7.1: 0 + 9: 0 + 13: 0 + 7.1: _ZN9__gnu_cxx5__ops14_Val_comp_iterIZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS3_7ObLabelEPNS2_6common9LabelItemEEEE4$_57EclIZNKS4_10iter_labelESC_E11ItemWrapperPSG_EEbRT_T0_:0 + 1: _ZZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS0_7ObLabelEPNS_6common9LabelItemEEEENK4$_57clERZNKS1_10iter_labelES9_E11ItemWrapperSC_:0 + 2: 0 + 49.1: _ZNK9oceanbase3lib7ObLabeleqERKS1_:0 + 3: 0 + 4: 0 + 5: 0 + 50: _ZNSt8functionIFiPKN9oceanbase3lib17ObTenantMemoryMgrEEEC2IZNKS1_20ObTenantCtxAllocator10iter_labelES_IFiRNS1_7ObLabelEPNS0_6common9LabelItemEEEE4$_58vEET_:0 + 8: 0 + 9: 0 + 7.1: _ZNSt14_Function_base13_Base_managerIZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS2_7ObLabelEPNS1_6common9LabelItemEEEE4$_58E15_M_init_functorERSt9_Any_dataOSC_:0 + 1.1: _ZNSt14_Function_base13_Base_managerIZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS2_7ObLabelEPNS1_6common9LabelItemEEEE4$_58E15_M_init_functorERSt9_Any_dataOSC_St17integral_constantIbLb1EE:0 + 1: 0 + 50.1: _ZNK9oceanbase3lib20ObTenantCtxAllocator27with_resource_handle_invokeESt8functionIFiPKNS0_17ObTenantMemoryMgrEEE:14 + 3: 0 + 5.1: 0 + 7: 0 + 7.1: _ZNKSt8functionIFiPKN9oceanbase3lib17ObTenantMemoryMgrEEEclES4_:0 + 2: 0 + 3: 0 + 4.1: 0 + 2: _ZNKSt14_Function_base8_M_emptyEv:0 + 0: 0 + 50.2: _ZNSt14_Function_baseD2Ev:0 + 2: 0 + 3: 0 + 3.2: 0 + 50.3: _ZNSt14_Function_baseD2Ev:0 + 2: 0 + 3: 0 + 3.2: 0 + 56: _ZNKSt8functionIFiRN9oceanbase3lib7ObLabelEPNS0_6common9LabelItemEEEclES3_S6_:18 + 2: 1 + 3: 0 + 4.2: 1 _ZNSt17_Function_handlerIFiRN9oceanbase3lib7ObLabelEPNS0_6common9LabelItemEEZNKS1_20ObTenantCtxAllocator11print_usageEvE4$_60E9_M_invokeERKSt9_Any_dataS3_OS6_.a1b49044713ee2b295a5be406ce610bf:1 + 2: _ZNKSt14_Function_base8_M_emptyEv:5 + 0: 1 + 60.1: _ZN9oceanbase6common2SVIA1024_ZNKS_3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS2_7ObLabelEPNS0_9LabelItemEEEE11ItemWrapperLb0EED2Ev:1 + 2: 1 + 8: 0 + 8.1: 0 + 60.3: _ZN9oceanbase6common2SVIA1024_ZNKS_3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS2_7ObLabelEPNS0_9LabelItemEEEE11ItemWrapperLb0EED2Ev:0 + 7: 0 + 8: 0 + 8.1: 0 + 60.5: _ZN9oceanbase6common13ObLatchRGuardD2Ev:0 + 2: 0 + 3: 0 + 3.1: 0 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 60.6: _ZN9oceanbase6common13ObLatchRGuardD2Ev:24 + 2: 1 + 3: 1 _ZN9oceanbase6common7ObLatch6unlockEPKj:1 + 3.1: 1 + 3.2: 0 + 4.1: 0 + 4.5: 0 +_ZN9oceanbase3omt19ObTenantTimezoneMgr19get_tenant_timezoneEmRNS_6common11ObTZMapWrapERPNS2_21ObTimeZoneInfoManagerE:622:9 + 3: 8 + 5: 10 _ZN9oceanbase3omt19ObTenantTimezoneMgr25get_tenant_timezone_innerEmRNS_6common11ObTZMapWrapERPNS2_21ObTimeZoneInfoManagerE:8 + 8: 2 _ZN9oceanbase3omt19ObTenantTimezoneMgr23refresh_tenant_timezoneEm:2 + 9.1: 0 + 10.1: 2 _ZN9oceanbase3omt19ObTenantTimezoneMgr25get_tenant_timezone_innerEmRNS_6common11ObTZMapWrapERPNS2_21ObTimeZoneInfoManagerE:2 + 13: 2 _ZN9oceanbase3omt19ObTenantTimezoneMgr25get_tenant_timezone_innerEmRNS_6common11ObTZMapWrapERPNS2_21ObTimeZoneInfoManagerE:2 + 14.1: 0 + 17.1: 0 + 21.1: 0 + 24: 10 +_Z27ob_strnncollsp_utf8mb4_helpPPKhmS1_mS1_S1_bPiS2_:621:7 + 5: 6 + 6: 6 + 7: 6 + 8: 6 + 9: 6 + 10: 6 + 11: 6 + 13: 6 + 15: 0 + 17: 0 + 35.1: 0 + 35.2: 0 + 37: 0 + 38: 0 + 43: 6 + 44: 6 + 45: 6 + 46: 6 + 47: 6 + 48: 9 + 49.1: 0 +_ZN9oceanbase4palf10PalfHandleC2Ev:620:20 + 1: 20 + 4: 20 + 5: 20 +_ZN9oceanbase4palf10PalfHandleC1Ev:620:20 + 1: 20 + 4: 20 + 5: 20 +_ZNK9oceanbase4palf11LogWriteBuf8is_validEv:616:45 + 1: 44 + 2: 44 +_ZN9oceanbase6common13ObSEArrayImplINS_5share6schema15ObSchemaMgrInfoELl2ENS0_19ModulePageAllocatorELb0EE9push_backERKS4_:614:13 + 2: 13 + 5: 13 + 6: 0 + 12: 0 + 15: 0 + 15.1: 13 + 16: 10 + 19: 10 + 15.1: _ZN9oceanbase6common9ObClassOpINS_5share6schema15ObSchemaMgrInfoELb0EE20construct_and_assignERKS4_RS4_:52 + 3: _ZN9oceanbase6common16construct_assignINS_5share6schema15ObSchemaMgrInfoEEEiRT_RKS5_:52 + 2: _ZN9oceanbase6common21construct_assign_wrapINS_5share6schema15ObSchemaMgrInfoEEEiRT_RKS5_NS0_8BoolTypeILb0EEE:52 + 2: 13 _ZN9oceanbase5share6schema15ObSchemaMgrInfoC1ERKS2_:13 +_ZN9oceanbase3sql18ObBasicSessionInfo26reset_session_changed_infoEv:612:5 + 1: 5 + 2: 5 + 3: 4 + 4: 4 + 6: 4 _ZN9oceanbase5share17ObFeedbackManager5resetEv:4 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_3sql18ObBasicSessionInfo10ChangedVarELl8ENS0_19ModulePageAllocatorELb0EE5resetEv:40 + 0: 5 _ZN9oceanbase6common13ObSEArrayImplINS_3sql18ObBasicSessionInfo10ChangedVarELl8ENS0_19ModulePageAllocatorELb0EE7destroyEv:5 + 3: _ZN9oceanbase6common13ObSEArrayImplINS0_8ObStringELl16ENS0_19ModulePageAllocatorELb0EE5resetEv:32 + 0: 4 _ZN9oceanbase6common13ObSEArrayImplINS0_8ObStringELl16ENS0_19ModulePageAllocatorELb0EE7destroyEv:4 + 5: _ZN9oceanbase6common16ObArenaAllocator5resetEv:264 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:264 + 4.1: 4 + 6: 0 + 7: 0 + 13: 4 + 14: 4 + 15: 4 + 18: 4 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:0 + 0: 0 + 5.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:0 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase4palf19LogGroupEntryHeader22update_header_checksumEv:611:13 + 1: 13 + 3: 13 + 2: _ZN9oceanbase4palf19LogGroupEntryHeader23update_header_checksum_Ev:403 + 2: 15 _ZNK9oceanbase4palf19LogGroupEntryHeader28get_header_parity_check_res_Ev:13 + 8.1: 15 _ZZN9oceanbase4palf19LogGroupEntryHeader23update_header_checksum_EvENK5$_643clEPKc.1598dc2348996c1ae1caea6120522988:15 +_ZN9oceanbase8memtable15ObMvccTransNode28set_snapshot_version_barrierEl:610:61 + 1: 61 + 2: 61 + 3: 61 +_ZNK9oceanbase3lib25ObTenantResourceMgrHandle14get_memory_mgrEv:609:30 + 1: 29 + 3: 29 + 6: 29 +_ZN9oceanbase6common11ObSqlStringC2ERKNS_3lib7ObLabelE:608:8 + 1: 8 + 2: 8 + 3: 8 + 1: _ZN9oceanbase6common8ObMallocC2ERKNS_3lib7ObLabelE:328 + 1: 8 + 2: 8 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:152 + 5: 8 + 7: 8 +_ZN9oceanbase6common11ObSqlStringC1ERKNS_3lib7ObLabelE:608:8 + 1: 8 + 2: 8 + 3: 8 + 1: _ZN9oceanbase6common8ObMallocC2ERKNS_3lib7ObLabelE:328 + 1: 8 + 2: 8 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:152 + 5: 8 + 7: 8 +_ZZN9oceanbase4palf7LogTask11try_freeze_ERKNS0_3LSNEENK5$_571clEPKc.0e4bf25207570af14a78557c8489c4fc:607:10 + 0: 10 + 0.1: 0 + 0.2: 10 + 0.3: 9 _ZN9oceanbase6common8ObLogger13need_to_printEmi:10 + 0.7: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:153 + 2: 9 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS_4palf7LogTaskELb0EEC2EPKcS5_:0 + 0: 0 +_ZZN9oceanbase4palf16LogSlidingWindow26try_advance_committed_lsn_ERKNS0_3LSNEENK5$_189clEPKc.0e4bf25207570af14a78557c8489c4fc:607:10 + 0: 10 + 0.1: 0 + 0.2: 9 + 0.3: 10 _ZN9oceanbase6common8ObLogger13need_to_printEmi:10 + 0.9: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:170 + 2: 10 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS0_6ObAddrELb0EEC2EPKcS4_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKNS_4palf3LSNELb0EEC2EPKcS5_:0 + 0: 0 +_ZN9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE6revertEPNS0_12LinkHashNodeIS3_EE:605:14 + 1: 11 + 6: 11 + 6.1: 11 + 6.2: 11 + 7.1: 0 + 10: 0 + 13: 11 + 11: _ZN9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE8dec_urefEPNS0_12LinkHashNodeIS3_EE:77 + 3: 11 + 3: _ZN9oceanbase6common9RefHandle3decEPNS0_7RefNodeE:55 + 0: 11 + 4: _ZN9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE13on_uref_cleanEPNS0_12LinkHashNodeIS3_EE:0 + 3: 0 + 3: _ZN9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE10free_valueEPS4_:0 + 2: 0 + 4: _ZN9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE8dec_hrefEPNS0_12LinkHashNodeIS3_EE:0 + 3: 0 + 3: _ZN9oceanbase6common7RefNode5xhrefEi:0 + 0: 0 + 4: _ZN9oceanbase3sql15ObSQLSessionMgr10ValueAlloc9free_nodeEPNS_6common12LinkHashNodeINS0_14SessionInfoKeyEEE:0 + 3: 0 + 3.3: 0 + 3: _ZN9oceanbase3lib7ObLabelC2IPKcEERKT_:0 + 2: _ZN9oceanbase3lib7ObLabelaSIPKcvEERS1_T_:0 + 2: 0 + 3.1: _ZN9oceanbase6common21ObFixedClassAllocatorINS0_12LinkHashNodeINS_3sql14SessionInfoKeyEEEE4freeEPS5_:0 + 4: 0 + 3: _ZN9oceanbase6common12LinkHashNodeINS_3sql14SessionInfoKeyEED2Ev:0 + 0: _ZN9oceanbase6common6ObLinkD2Ev:0 + 0: 0 + 0.1: _ZN9oceanbase6common7RefNodeD2Ev:0 + 0: _ZN9oceanbase6common6ObLinkD2Ev:0 + 0: 0 +_ZN9oceanbase7storage9ObTxTable18check_with_tx_dataENS_11transaction9ObTransIDERNS0_21ObITxDataCheckFunctorEl:604:5 + 3: 5 + 4: 5 + 6: 5 + 7: 0 + 8.1: 0 + 9.1: 5 + 9.2: 2 + 11.2: 2 _ZN9oceanbase7storage13ObTxDataTable18check_with_tx_dataENS_11transaction9ObTransIDERNS0_21ObITxDataCheckFunctorE:2 + 11.3: 0 + 11.6: 0 + 13: 0 + 15.1: 0 + 18: 2 _ZN9oceanbase7storage9ObTxTable22check_state_and_epoch_ENS_11transaction9ObTransIDElbRi:2 + 19: 2 + 9.1: _ZN9oceanbase7storage12ObTxCtxTable18check_with_tx_dataENS_11transaction9ObTransIDERNS0_21ObITxDataCheckFunctorE:164 + 4: 6 + 4.1: 5 _ZN9oceanbase11transaction12ObLSTxCtxMgr18check_with_tx_dataERKNS0_9ObTransIDERNS_7storage21ObITxDataCheckFunctorE:5 + 6: 3 _ZN9oceanbase7storage18LockForReadFunctor7recheckEv:3 + 12: 0 + 15.1: 0 + 21: 0 + 4: _ZN9oceanbase7storage12ObTxCtxTable17get_ls_tx_ctx_mgrEv:55 + 2: 5 + 9.2: _ZN9oceanbase11transaction9ObTransIDD2Ev:32 + 0: 2 + 9.3: _ZN9oceanbase11transaction9ObTransIDD2Ev:0 + 0: 0 + 11.5: _ZN9oceanbase11transaction9ObTransIDD2Ev:0 + 0: 0 + 11.8: _ZN9oceanbase11transaction9ObTransIDD2Ev:0 + 0: 0 + 18.2: _ZN9oceanbase11transaction9ObTransIDD2Ev:0 + 0: 0 +_ZN9oceanbase3sql16ObSQLSessionInfo7destroyEb:604:5 + 1: 4 + 2: 4 + 3: 3 + 4: 3 + 5.1: 0 + 11: 3 + 15: 3 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:3 + 15.1: 1 _ZN9oceanbase3sql18ObBasicSessionInfo20set_query_start_timeEl:1 + 18: 1 + 19: 1 + 23.2: 0 + 23.3: 0 + 24: 0 + 24.1: 0 + 25.1: 0 + 27.1: 0 + 27.2: 0 + 28.1: 0 + 34.1: 0 + 36.1: 0 + 41: 1 + 42: 1 _ZN9oceanbase3sql16ObSQLSessionInfo16drop_temp_tablesEbb:1 + 43: 1 + 44.1: 0 + 46: 1 _ZN9oceanbase3sql16ObSQLSessionInfo36refresh_temp_tables_sess_active_timeEv:1 + 50: 1 + 51: 1 _ZN9oceanbase3sql16ObSQLSessionInfo17close_all_ps_stmtEv:1 + 52.1: 0 + 57: 0 + 57.1: 1 + 58: 0 + 59.1: 0 + 60: 0 + 63: 0 + 63.1: 1 + 64: 0 + 66.1: 0 + 68: 0 + 68.1: 0 + 69: 0 + 70: 0 + 72: 0 + 73: 1 + 77: 1 + 77.1: 0 + 78.1: 0 + 79: 0 + 82: 0 + 82.1: 1 + 83.1: 0 + 88: 1 _ZN9oceanbase3sql16ObSQLSessionInfo23reset_all_package_stateEv:1 + 90: 1 _ZN9oceanbase3sql16ObSQLSessionInfo5resetEb:1 + 91: 2 + 93.5: 3 + 4: _ZN9oceanbase3rpcL12is_io_threadEv:60 + 2: 3 + 11: _ZN9oceanbase3sql18ObBasicSessionInfo19get_is_deserializedEv:45 + 0: 3 + 19: _ZNK9oceanbase3sql18ObBasicSessionInfo17is_in_transactionEv:23 + 0: 1 + 0.1: _ZNK9oceanbase11transaction8ObTxDesc8is_in_txEv:7 + 0: 1 + 20: _ZNK9oceanbase3sql18ObBasicSessionInfo9get_tx_idEv:0 + 0.1: 0 + 0.2: _ZN9oceanbase11transaction9ObTransIDC2Ev:0 + 0: 0 + 21: _ZN9oceanbase5share25_make_tenant_switch_guardEv:0 + 2: 0 + 2.1: 0 + 2.3: 0 + 2.6: 0 + 2.2: _ZN9oceanbase5share19ObTenantSwitchGuardC2Ev:0 + 0.4: _ZNSt8functionIFiRN9oceanbase6common10ObLDHandleEEEC2Ev:0 + 1: _ZNSt14_Function_baseC2Ev:0 + 0: 0 + 0.5: _ZN9oceanbase5share19ObTenantSwitchGuard5resetEv:0 + 2: 0 + 3: 0 + 4: 0 + 3: _ZN9oceanbase5share19ObTenantSwitchGuardC2ERKS1_:0 + 0.1: _ZNSt8functionIFiRN9oceanbase6common10ObLDHandleEEEC2Ev:0 + 1: _ZNSt14_Function_baseC2Ev:0 + 0: 0 + 2: _ZN9oceanbase5share19ObTenantSwitchGuard5resetEv:0 + 2: 0 + 3: 0 + 4: 0 + 23: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:0 + 0: 0 + 23.1: _ZNK9oceanbase3sql16ObSQLSessionInfo8is_innerEv:0 + 2: 0 + 36: _ZN9oceanbase5share19ObTenantSwitchGuardD2Ev:0 + 2: 0 + 3.1: 0 + 3.2: 0 + 3: _ZNSt14_Function_baseD2Ev:0 + 2: 0 + 3: 0 + 3.2: 0 + 41: _ZN9oceanbase3sql18ObBasicSessionInfo19get_is_deserializedEv:8 + 0: 1 + 57.1: _ZNK9oceanbase3sql16ObSQLSessionInfo11CursorCache9is_initedEv:8 + 0: _ZN9oceanbase3libneEDnRKNS0_13MemoryContextE:8 + 1: 1 + 68: _ZN9oceanbase3sql18ObBasicSessionInfo21get_session_allocatorEv:0 + 0: 0 + 73: _ZNK9oceanbase3sql18ObBasicSessionInfo10get_sessidEv:6 + 0: 1 + 77: _ZNK9oceanbase3sql16ObSQLSessionInfo15is_user_sessionEv:7 + 0: 1 + 82.1: _ZN9oceanbase3sql16ObSQLSessionInfo21free_dblink_conn_poolEv:43 + 2: 1 + 3.1: 0 + 3.2: 1 + 3.3: 1 + 3.5: 0 + 4: 0 + 5: 0 + 7.1: 0 + 7.2: 0 + 8.1: 0 + 12: 1 + 14: 1 + 4: _ZN9oceanbase6common12ObIArrayWrapIPNS0_9sqlclient28ObCommonServerConnectionPoolEE2atEl:0 + 6: 0 + 7.1: _ZNK9oceanbase3sql18ObBasicSessionInfo10get_sessidEv:0 + 0: 0 + 12: _ZN9oceanbase6common11ObArrayImplIPNS0_9sqlclient28ObCommonServerConnectionPoolENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEE5resetEv:8 + 0: 1 _ZN9oceanbase6common11ObArrayImplIPNS0_9sqlclient28ObCommonServerConnectionPoolENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEE7destroyEv:1 + 86: _ZN9oceanbase3sql16ObSQLSessionInfo26reset_pl_debugger_resourceEv:19 + 2: _ZN9oceanbase3sql16ObSQLSessionInfo16free_pl_debuggerEv:19 + 2: 1 + 3: 1 _ZN9oceanbase2pl12ObPDBManager12get_instanceEv:1 + 4: 1 + 5.1: 0 + 6: 0 + 7: 0 + 8.1: 0 + 10.1: 0 +_ZZN9oceanbase10logservice17ObLogApplyService19handle_submit_task_EPNS0_13ObApplyStatusEENK5$_165clEPKc.d3a41d52a3cfae37a6a74713ee8e7132:602:10 + 0: 12 + 0.1: 0 + 0.2: 12 + 0.3: 10 _ZN9oceanbase6common8ObLogger13need_to_printEmi:11 + 0.7: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:170 + 2: 10 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.1: _ZN9oceanbase6common20ObLogPrintPointerCntIPNS_10logservice13ObApplyStatusEEC2ES4_:0 + 0: 0 + 0.4: _ZN9oceanbase6common7ObLogKVINS0_20ObLogPrintPointerCntIPNS_10logservice13ObApplyStatusEEELb1EEC2EPKcOKS6_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase3omt8ObTenant18update_token_usageEv:599:10 + 1: 10 + 2: 10 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:11 + 3: 15 + 4: 15 + 5: 1 + 6: 1 + 7: 1 + 8: 1 + 9: 1 + 10: 1 + 12: 16 + 10: _ZSt3maxIdERKT_S2_S2_:12 + 5: 1 +_ZZN9oceanbase10logservice13ObApplyStatus29submit_task_to_apply_service_ERNS0_18ObApplyServiceTaskEENK4$_70clEPKc.d3a41d52a3cfae37a6a74713ee8e7132:598:9 + 0: 10 + 0.1: 0 + 0.2: 10 + 0.3: 9 _ZN9oceanbase6common8ObLogger13need_to_printEmi:10 + 0.9: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:153 + 2: 9 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.1: _ZN9oceanbase6common20ObLogPrintPointerCntIPNS_10logservice13ObApplyStatusEEC2ES4_:0 + 0: 0 + 0.4: _ZN9oceanbase6common7ObLogKVINS0_20ObLogPrintPointerCntIPNS_10logservice13ObApplyStatusEEELb1EEC2EPKcOKS6_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS_10logservice18ObApplyServiceTaskELb0EEC2EPKcS5_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 +_ZZN9oceanbase4palf7LogTask20try_freeze_by_myselfEvENK5$_570clEPKc.0e4bf25207570af14a78557c8489c4fc:594:10 + 0: 9 + 0.1: 0 + 0.2: 9 + 0.3: 9 _ZN9oceanbase6common8ObLogger13need_to_printEmi:9 + 0.7: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:153 + 2: 9 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS_4palf7LogTaskELb0EEC2EPKcS5_:0 + 0: 0 +_ZNK9oceanbase5share15ObLSLocationMap3getERKNS0_20ObLSLocationCacheKeyERNS0_12ObLSLocationE:588:1 + 3: 1 + 4: 1 + 8: 1 + 9: 0 + 10.1: 0 + 12: 1 + 13: 1 + 14: 1 + 15.1: 1 + 16.2: 1 + 26.2: 1 + 27: 0 + 31: 0 + 32: 0 + 12: _ZNK9oceanbase5share20ObLSLocationCacheKey4hashEv:164 + 3: _ZN9oceanbase6common10murmurhashEPKvim:60 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:60 + 13: 1 + 14: 1 + 15: 1 + 17: 1 + 18: 1 + 41: 1 + 42: 1 + 43: 1 + 4: _ZN9oceanbase6common10murmurhashEPKvim:53 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:53 + 5: 1 + 13: 1 + 14: 1 + 15: 1 + 17: 1 + 18: 1 + 41: 1 + 42: 1 + 43: 1 + 5: _ZN9oceanbase6common10murmurhashEPKvim:51 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:51 + 5: 1 + 13: 1 + 14: 1 + 15: 1 + 17: 1 + 18: 1 + 41: 1 + 42: 1 + 43: 1 + 13: _ZN9oceanbase5share20ObQSyncLockReadGuardC2ERNS0_11ObQSyncLockE:8 + 0: 1 + 1: 1 _ZN9oceanbase5share11ObQSyncLock6rdlockEv:1 + 16.1: _ZNK9oceanbase5share20ObLSLocationCacheKeyeqERKS1_:39 + 4: 1 + 5: 1 + 5.1: 1 + 6: 1 + 6.1: _ZNK9oceanbase5share6ObLSIDeqERKS1_:9 + 0: 1 + 26: _ZN9oceanbase6common16ObClockGenerator8getClockEv:21 + 4: 1 + 5.1: 0 + 8: 1 + 6: _ZN9oceanbase6common16ObClockGenerator6get_usEv:0 + 2: 0 + 27.1: _ZN9oceanbase5share12ObLSLocation18set_last_access_tsEl:0 + 0: 0 + 29: _ZN9oceanbase5share12ObLSLocation9deep_copyERKS1_:233 + 2: 1 + 3: 1 + 5: 1 + 6: 0 + 7.1: 0 + 10: 0 + 4: _ZN9oceanbase5share20ObLSLocationCacheKeyaSERKS1_:19 + 0: 1 + 0: _ZN9oceanbase5share6ObLSIDaSERKS1_:9 + 0: 1 + 6: _ZN9oceanbase6common13ObSEArrayImplINS_5share19ObLSReplicaLocationELl3ENS0_19ModulePageAllocatorELb0EE6assignERKNS0_8ObIArrayIS3_EE:178 + 0: 0 + 1: 0 + 2: 0 + 3: 1 + 3.1: 0 + 3.3: 0 + 4: 1 + 5: 0 + 6: 1 + 7: 1 + 8: 1 + 9: 0 + 18: 0 + 4: _ZN9oceanbase6common13ObSEArrayImplINS_5share19ObLSReplicaLocationELl3ENS0_19ModulePageAllocatorELb0EE5reuseEv:30 + 4.1: 1 + 4.3: 0 + 5: 0 + 8: 1 + 9: 1 + 5: _ZNK9oceanbase6common12ObIArrayWrapINS_5share19ObLSReplicaLocationEE5countEv:5 + 0: 1 + 6: _ZN9oceanbase6common13ObSEArrayImplINS_5share19ObLSReplicaLocationELl3ENS0_19ModulePageAllocatorELb0EE7reserveEl:22 + 2: 1 + 3: 1 + 5: 0 + 6: 0 + 7: 0 + 7.3: 0 + 9: 0 + 10: 0 + 11: 0 + 12: 0 + 13: 0 + 15: 0 + 16: 0 + 23: 0 + 24.1: 0 + 27: 0 + 8: _ZN9oceanbase6common13ObSEArrayImplINS_5share19ObLSReplicaLocationELl3ENS0_19ModulePageAllocatorELb0EE16internal_malloc_El:0 + 2: 0 + 7: 0 + 13: 0 + 13: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 10: _ZN9oceanbase6common9ObClassOpINS_5share19ObLSReplicaLocationELb0EE12array_expandEPKS3_PS3_l:0 + 4.1: 0 + 4.3: 0 + 18.1: 0 + 19: 0 + 5: _ZN9oceanbase6common16construct_assignINS_5share19ObLSReplicaLocationEEEiRT_RKS4_:0 + 2: _ZN9oceanbase6common21construct_assign_wrapINS_5share19ObLSReplicaLocationEEEiRT_RKS4_NS0_8BoolTypeILb1EEE:0 + 2: _ZN9oceanbase5share19ObLSReplicaLocationC2Ev:0 + 3: 0 + 4: 0 + 7: 0 + 1: _ZN9oceanbase6common6ObAddrC2Ev:0 + 1: 0 + 5: _ZN9oceanbase6common17ObReplicaPropertyC2Ev:0 + 0: 0 + 6: _ZN9oceanbase5share17ObLSRestoreStatusC2Ev:0 + 0: 0 + 3: _ZN9oceanbase5share19ObLSReplicaLocation6assignERKS1_:0 + 3: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 4: _ZN9oceanbase6common6ObAddraSERKS1_:0 + 1: 0 + 2: 0 + 3: 0 + 8: _ZNKSt9type_info9hash_codeEv:31 + 3.4: 1 + 3.5: 1 _ZSt11_Hash_bytesPKvmm:1 + 3: _ZNKSt9type_info4nameEv:15 + 1: 1 + 8.1: _ZNKSt9type_info9hash_codeEv:18 + 3.5: 1 _ZSt11_Hash_bytesPKvmm:1 + 31.1: _ZN9oceanbase5share20ObQSyncLockReadGuardD2Ev:0 + 1: 0 +_ZN9oceanbase6common8ObMemberaSERKS1_:585:14 + 1: 13 + 3: 13 + 4: 13 + 5: 13 + 2: _ZN9oceanbase6common6ObAddraSERKS1_:260 + 1: 13 + 2: 13 + 3: 13 +_ZZN9oceanbase4palf9LogEngine21submit_flush_log_taskERKNS0_13FlushLogCbCtxERKNS0_11LogWriteBufEENK5$_454clEPKc.1598dc2348996c1ae1caea6120522988:584:9 + 0: 11 + 0.1: 0 + 0.2: 11 + 0.3: 9 _ZN9oceanbase6common8ObLogger13need_to_printEmi:9 + 0.9: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:153 + 2: 9 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS_4palf13FlushLogCbCtxELb0EEC2EPKcS5_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKNS_4palf11LogWriteBufELb0EEC2EPKcS5_:0 + 0: 0 +_ZN9oceanbase8memtable13ObLockWaitMgr4run1Ev:583:0 + 1: 0 + 4: 0 + 5.1: 50 + 5.2: 0 + 5.3: 0 + 6: 50 _ZN9oceanbase8memtable13ObLockWaitMgr13check_timeoutEv:50 + 7.1: 2 + 8: 0 + 9: 0 + 10: 0 + 14: 0 + 16: 0 + 17: 0 + 21: 0 + 23: 0 + 13: _ZN9oceanbase6common16ObClockGenerator14getCurrentTimeEv:22 + 2: 2 + 4: 2 + 5: 2 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:2 + 6: 0 + 9: 0 + 13: 0 + 17: _ZN9oceanbase5share8detector21ObDeadLockDetectorMgr19is_deadlock_enabledEv:0 + 0: 0 + 18: _ZN9oceanbase8memtable15RowHolderMapper5clearEv:0 + 0: _ZN9oceanbase6common15ObLinearHashMapINS0_9ObIntWarpENS_11transaction9ObTransIDENS0_14ShareMemMgrTagEE5clearEv:0 + 2: 0 +_ZNK9oceanbase8observer16ObInnerSQLResult13get_timestampEPKcPKNS_6common14ObTimeZoneInfoERl:580:6 + 2: 6 + 4: 6 + 5: 6 + 6: 6 + 7: 0 + 8.1: 0 + 9.1: 6 + 10: 0 + 11.1: 0 + 12.1: 6 _ZNK9oceanbase8observer16ObInnerSQLResult8find_idxEPKcRl:6 + 14: 0 + 16.1: 0 + 18.1: 2 + 19: 0 + 20.1: 0 + 21.1: 3 _ZNK9oceanbase8observer16ObInnerSQLResult13get_timestampElPKNS_6common14ObTimeZoneInfoERl:2 + 23.1: 0 + 26: 3 +_ZNK9oceanbase4palf11LogStateMgr18is_follower_activeEv:580:21 + 0: 20 + 0: _ZNK9oceanbase4palf11LogStateMgr19is_follower_active_Ev:460 + 2: _ZNK9oceanbase4palf11LogStateMgr21check_role_and_state_ERKNS_6common6ObRoleERKNS0_14ObReplicaStateE:460 + 3: 20 + 4: 20 +_ZNK9oceanbase5obrpc10ObRpcProxy8init_pktEPNS0_11ObRpcPacketENS0_15ObRpcPacketCodeERKNS0_9ObRpcOptsEb:576:1 + 3: 1 + 4: 1 + 9.1: 1 + 10: 0 + 11.1: 0 + 12: 0 + 12.1: 1 + 21: 1 + 23: 1 + 24: 1 + 25: 1 + 26: 1 + 29: 1 + 30: 1 + 31: 1 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:1 + 32: 1 + 34: 1 + 35: 1 + 36: 1 + 37: 1 + 38: 0 + 42: 0 + 46: 1 + 48: 1 + 49: 2 + 50: 0 + 52: 2 + 52.1: 0 + 53: 0 + 54: 0 + 59: 2 + 5: _ZN9oceanbase6common12ObCurTraceId3getEv:25 + 2: _ZN9oceanbase6common12ObCurTraceId12get_trace_idEv:25 + 5: 1 + 5.1: 0 + 5.1: _ZN9oceanbase6common12ObCurTraceId7TraceIdC2Ev:0 + 0: 0 + 13: _ZN9oceanbase6common12ObCurTraceId4initERKNS0_6ObAddrE:11 + 4: 1 _ZN9oceanbase6common12ObCurTraceId7TraceId4initERKNS0_6ObAddrE:1 + 14: _ZN9oceanbase6common12ObCurTraceId3getEv:25 + 2: _ZN9oceanbase6common12ObCurTraceId12get_trace_idEv:25 + 5: 1 + 5.1: 0 + 5.1: _ZN9oceanbase6common12ObCurTraceId7TraceIdC2Ev:0 + 0: 0 + 14.1: _ZN9oceanbase5obrpc11ObRpcPacket12set_trace_idEPKm:33 + 3: 1 + 5: 1 + 15: _ZN9oceanbase6common12ObCurTraceId5resetEv:27 + 4: _ZN9oceanbase6common12ObCurTraceId7TraceId5resetEv:27 + 0: 1 + 17.1: _ZN9oceanbase5obrpc11ObRpcPacket12set_trace_idEPKm:16 + 3: 0 + 4: 1 + 6: 0 + 21: _ZN9oceanbase5obrpc11ObRpcPacket9set_pcodeENS0_15ObRpcPacketCodeE:4 + 2: 1 + 24: _ZN9oceanbase5obrpc11ObRpcPacket8set_chidEj:6 + 2: 1 + 25: _ZN9oceanbase5obrpc11ObRpcPacket11set_timeoutEl:4 + 0: 1 + 26: _ZN9oceanbase5obrpc11ObRpcPacket12set_priorityEh:3 + 2: 1 + 27: _ZN9oceanbase5obrpc11ObRpcPacket14set_session_idEl:8 + 2: 1 + 28: _ZN9oceanbase6common21ObThreadLogLevelUtils9get_levelEv:45 + 5: 1 + 3: _ZN9oceanbase6common21ObThreadLogLevelUtils20get_thread_log_levelEv:25 + 3: _ZN9oceanbase6common15get_local_storeEv:25 + 3: 1 + 3.1: 0 + 3.1: _ZN9oceanbase6common12ObLocalStoreC2Ev:0 + 1: 0 + 0: _ZN9oceanbase6common16ObThreadLogLevelC2Ev:0 + 0: 0 + 28.1: _ZN9oceanbase5obrpc11ObRpcPacket13set_log_levelEa:14 + 2: 1 + 3: 1 + 29: _ZN9oceanbase5obrpc11ObRpcPacket13set_tenant_idEl:4 + 2: 1 + 30: _ZN9oceanbase5obrpc11ObRpcPacket18set_priv_tenant_idEl:4 + 2: 1 + 31.1: _ZN9oceanbase5obrpc11ObRpcPacket13set_timestampEl:4 + 2: 1 + 32: _ZN9oceanbase5obrpc11ObRpcPacket18set_dst_cluster_idEl:7 + 2: 1 + 34: _ZN9oceanbase5obrpc11ObRpcPacket18set_src_cluster_idEl:7 + 2: 1 + 35: _ZN9oceanbase5obrpc11ObRpcPacket16set_unis_versionEm:7 + 2: 1 + 36: _ZNK9oceanbase5obrpc10ObRpcProxy12get_group_idEv:4 + 0: 1 + 36.2: _ZN9oceanbase3lib11this_workerEv:28 + 2: _ZN9oceanbase3lib6Worker4selfEv:28 + 3: 1 + 4: 0 + 36.3: _ZN9oceanbase5obrpc11ObRpcPacket12set_group_idEi:7 + 2: 1 + 36.4: _ZNK9oceanbase3lib6Worker12get_group_idEv:7 + 0: 1 + 38: _ZN9oceanbase3lib11this_workerEv:0 + 2: _ZN9oceanbase3lib6Worker4selfEv:0 + 3: 0 + 4: 0 + 42: _ZN9oceanbase3lib11this_workerEv:0 + 2: _ZN9oceanbase3lib6Worker4selfEv:0 + 3: 0 + 4: 0 + 42.1: _ZNK9oceanbase3lib6Worker22get_curr_request_levelEv:0 + 0: 0 + 48: _ZN9oceanbase5obrpc11ObRpcPacket13calc_checksumEv:22 + 2: 2 _ZN9oceanbase6common8ob_crc64EPKvl:1 + 50: _ZN9oceanbase5obrpc11ObRpcPacket19set_unneed_responseEv:0 + 2: 0 + 53: _ZN9oceanbase5obrpc11ObRpcPacket16enable_ratelimitEv:0 + 2: 0 + 55: _ZN9oceanbase5obrpc11ObRpcPacket19set_background_flowEv:0 + 2: 0 +_ZN9oceanbase8observer24ObInnerSQLConnectionPool10alloc_connERPNS0_20ObInnerSQLConnectionE:576:1 + 1: 1 + 2: 1 + 4: 1 + 5: 0 + 6.1: 0 + 7.1: 1 + 8: 0 + 9.1: 0 + 11: 1 + 12: 2 + 12.1: 2 + 13: 0 + 14: 0 + 15: 0 + 16.1: 0 + 18: 0 + 19: 0 + 23: 2 _ZN9oceanbase6common11ObDLinkBaseINS_8observer24ObInnerSQLConnectionPool8LinkNodeEED2Ev:2 + 24: 2 _ZN9oceanbase8observer20ObInnerSQLConnectionC1Ev:2 + 26: 1 + 29.1: 1 _ZN9oceanbase6common10EventTable8instanceEv:1 + 29.4: 1 + 30.1: 1 _ZN9oceanbase6common8ObLogger13need_to_printEi:2 + 31: 2 + 31.1: 0 + 32: 0 + 34: 0 + 35.1: 0 + 37: 0 + 39: 0 + 39.3: 0 + 40: 0 + 41.1: 0 + 43: 0 + 47: 2 _ZN9oceanbase6common7ObDListINS_8observer20ObInnerSQLConnectionEE8add_lastEPS3_:2 + 47.1: 2 + 48: 0 + 49.1: 0 + 51: 2 + 54: 2 _ZN9oceanbase3lib11ObLockGuardINS_6common12ObThreadCondEED2Ev:2 + 54.1: 0 + 56: 3 + 11: _ZN9oceanbase3lib11ObLockGuardINS_6common12ObThreadCondEEC2ERS3_:83 + 1: 1 + 2: 1 + 4: 2 + 5.1: 0 + 4: _ZN9oceanbase6common12ObThreadCond4lockEv:52 + 2: 1 + 3: 1 + 4: 1 + 5: 0 + 6.1: 0 + 7.1: 2 + 8: 0 + 9.1: 0 + 11: 2 + 12: _ZNK9oceanbase6common7ObDListINS_8observer24ObInnerSQLConnectionPool8LinkNodeEE8is_emptyEv:22 + 0: 2 + 22: _ZN9oceanbase6common7ObDListINS_8observer24ObInnerSQLConnectionPool8LinkNodeEE12remove_firstEv:108 + 2: _ZN9oceanbase6common7ObDListINS_8observer24ObInnerSQLConnectionPool8LinkNodeEE6removeEPS4_:108 + 3: 2 + 7: 2 + 6: _ZN9oceanbase6common11ObDLinkBaseINS_8observer24ObInnerSQLConnectionPool8LinkNodeEE6unlinkEv:72 + 2: 2 + 4: 2 + 5: 2 + 6: 2 + 7: 2 + 29: _ZN9oceanbase6common9EventItemC2Ev:15 + 2: 1 + 29.2: _ZN9oceanbase6common10EventTable9get_eventEl:22 + 1.4: 1 + 29.3: _ZNK9oceanbase6common9EventItem4callEv:29 + 2: 1 + 3: 1 + 5.1: 0 + 7.1: 0 + 8: 0 + 9.1: 0 + 11: 0 + 12: 0 + 13.1: 0 + 18: 1 + 30: _ZN9oceanbase6common8ObLogger10get_loggerEv:17 + 2: 1 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 38.1: _ZNK9oceanbase6common7ObDListINS_8observer20ObInnerSQLConnectionEE8is_emptyEv:0 + 0: 0 + 0.3: 0 + 39.2: _ZNK9oceanbase8observer20ObInnerSQLConnection18get_init_timestampEv:0 + 0: 0 +_ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl128ENS0_19ModulePageAllocatorELb0EE9push_backERKS2_:576:12 + 2: 12 + 5: 12 + 6: 0 + 12: 0 + 15: 0 + 15.1: 12 + 16: 12 + 19: 12 + 15.1: _ZN9oceanbase6common9ObClassOpINS0_10ObTabletIDELb0EE20construct_and_assignERKS2_RS2_:84 + 3: _ZN9oceanbase6common16construct_assignINS0_10ObTabletIDEEEiRT_RKS3_:84 + 2: _ZN9oceanbase6common21construct_assign_wrapINS0_10ObTabletIDEEEiRT_RKS3_NS0_8BoolTypeILb0EEE:84 + 2: _ZN9oceanbase6common10ObTabletIDC2ERKS1_:84 + 0: 12 +_ZN9oceanbase5share17ObFeedbackManager5resetEv:575:5 + 1: 5 + 2: 5 + 3: 5 + 4: 5 + 5: 5 + 7: 5 + 2: _ZN9oceanbase5share17ObFeedbackManager21free_feedback_elementINS0_27ObFeedbackPartitionLocationEEEvPT_:20 + 1: 5 + 2: 0 + 4: _ZN9oceanbase5share17ObFeedbackManager21free_feedback_elementINS0_23ObFollowerFirstFeedbackEEEvPT_:20 + 1: 5 + 2: 0 + 6: _ZN9oceanbase6common16ObArenaAllocator5resetEv:255 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:255 + 4.1: 5 + 6: 0 + 7: 0 + 13: 5 + 14: 5 + 15: 5 + 18: 5 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:0 + 0: 0 + 5.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:0 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase12blocksstable11ObRowReader11read_columnEPKcllRNS0_14ObStorageDatumE:575:2 + 5: 2 + 7: 2 _ZN9oceanbase12blocksstable11ObRowReader9setup_rowEPKcl:2 + 8.1: 0 + 9.1: 1 + 9.2: 1 + 9.3: 1 + 10: 0 + 11.1: 0 + 12.1: 3 + 13.1: 0 + 15: 3 + 9.2: _ZNK9oceanbase12blocksstable11ObRowHeader16get_column_countEv:4 + 0: 1 + 12.1: _ZN9oceanbase12blocksstable11ObRowReader31read_specific_column_in_clusterElRNS0_14ObStorageDatumE:361 + 4: 1 + 5: 1 + 6: 1 + 7: 1 + 10.1: 0 + 13.1: 0 + 17: 0 + 18: 0 + 22: 2 + 23.1: 0 + 25.1: 3 _ZN9oceanbase12blocksstable21ObClusterColumnReader18read_storage_datumElRNS0_14ObStorageDatumE:2 + 26.1: 0 + 29: 0 + 7: _ZNK9oceanbase12blocksstable11ObRowHeader17is_single_clusterEv:4 + 0: 1 + 11: _ZN9oceanbase12blocksstable11ObRowHeader16calc_cluster_idxEl:0 + 2: 0 + 13.1: _ZNK9oceanbase12blocksstable11ObRowHeader16get_rowkey_countEv:0 + 0: 0 + 18: _ZN9oceanbase12blocksstable11ObRowHeader16calc_cluster_idxEl:0 + 2: 0 + 22: _ZN9oceanbase12blocksstable11ObRowReader28analyze_info_and_init_readerEl:235 + 2: 1 + 3: 1 + 3.1: 1 + 3.2: 1 + 4: 0 + 5.1: 0 + 6.1: 1 + 9: 1 + 10: 1 + 10.3: 2 _ZN9oceanbase12blocksstable21ObClusterColumnReader4initEPKcmmRKNS0_20ObColClusterInfoMaskE:2 + 15.1: 0 + 18: 2 + 23: 0 + 7: _ZN9oceanbase12blocksstable21ObClusterColumnReader5resetEv:45 + 2: 1 + 3: 1 + 4: 1 + 7: 1 + 8: _ZNK9oceanbase12blocksstable11ObRowReader18get_cluster_offsetEl:29 + 2: 1 + 2.1: 1 _ZN9oceanbase12blocksstableL12get_offset_8EPKvl.8f1e732d6655d093e942b32e16c602d8:1 + 2: _ZNK9oceanbase12blocksstable11ObRowHeader15get_offset_typeEv:3 + 0: 1 + 10: _ZNK9oceanbase12blocksstable11ObRowReader19get_cluster_end_posEl:53 + 2: 1 + 2.1: 1 + 3: 1 + 3.1: 0 + 2.1: _ZNK9oceanbase12blocksstable11ObRowHeader19get_offset_type_lenEv:16 + 0: _ZNK9oceanbase12blocksstable11ObRowHeader15get_offset_typeEv:5 + 0: 1 + 0.1: _ZN9oceanbase12blocksstable20ObColClusterInfoMask18get_bytes_type_lenENS1_9BYTES_LENE:11 + 5: 1 + 10.1: _ZNK9oceanbase12blocksstable11ObRowHeader16get_column_countEv:5 + 0: 1 + 10.2: _ZNK9oceanbase12blocksstable20ObColClusterInfoMask16get_column_countEv:0 + 0: 0 + 10.4: _ZNK9oceanbase12blocksstable11ObRowHeader17is_single_clusterEv:2 + 0: 1 +_ZN9oceanbase6common20value_sematic_string16DefaultAllocator5allocEl:570:6 + 1: 6 + 1.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib7ObLabelE:423 + 3: 6 + 2.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:138 + 5: 6 + 7: 6 + 4: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:195 + 3: 6 _ZN9oceanbase3lib17ObMallocAllocator12get_instanceEv:6 + 4: 6 + 5: 6 _ZN9oceanbase3lib17ObMallocAllocator5allocElRKNS0_9ObMemAttrE:6 + 6: 3 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 9: _ZSt3maxIlERKT_S2_S2_:0 + 5: 0 +_ZZN9oceanbase4palf10LogStorage6writevERKNS_6common12ObFixedArrayINS0_3LSNENS2_12ObIAllocatorEEERKNS3_IPNS0_11LogWriteBufES5_EERKNS3_IlS5_EEENK5$_501clEPKc.0e4bf25207570af14a78557c8489c4fc:566:8 + 0: 7 + 0.1: 0 + 0.2: 6 + 0.3: 7 _ZN9oceanbase6common8ObLogger13need_to_printEmi:7 + 0.17: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:119 + 2: 7 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.11: _ZN9oceanbase6common20ObLogPrintPointerCntIPNS_4palf10LogStorageEEC2ES4_:0 + 0: 0 + 0.12: _ZN9oceanbase6common7ObLogKVINS0_20ObLogPrintPointerCntIPNS_4palf10LogStorageEEELb1EEC2EPKcOKS6_:0 + 0: 0 + 0.14: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.16: _ZN9oceanbase6common7ObLogKVIRKNS0_12ObFixedArrayINS_4palf3LSNENS0_12ObIAllocatorEEELb0EEC2EPKcS8_:0 + 0: 0 +_ZN9oceanbase8observer20ObInnerSQLConnection12execute_readElmPKcRNS_6common12ObISQLClient10ReadResultEbb:566:2 + 6: 2 + 8: 2 + 10: 3 + 11.1: 0 + 13: 3 + 10: _ZN9oceanbase8observer20ObInnerSQLConnection30retry_while_no_tenant_resourceIZNS1_12execute_readElmPKcRNS_6common12ObISQLClient10ReadResultEbbE5$_306EEilRKmT_:369 + 2: 2 + 9: 2 + 10: 2 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:2 + 11.1: 1 _ZN9oceanbase3sql18ObBasicSessionInfo20set_query_start_timeEl:1 + 14: 1 _ZN9oceanbase8observer20ObInnerSQLConnection11set_timeoutERlb:1 + 14.1: 2 + 15.1: 0 + 18: 2 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:2 + 18.1: 1 + 19: 1 + 21: 0 + 22.1: 0 + 23.2: 1 + 25.1: 0 + 26.1: 0 + 26.2: 0 + 27: 0 + 29.1: 0 + 31: 0 + 32: 0 + 38.1: 0 + 43.1: 0 + 45: 1 + 46.11: 1 _ZN9oceanbase8observer20ObInnerSQLConnection12TimeoutGuardD1Ev:1 + 46.12: 0 + 3: _ZN9oceanbase5share6ObLSIDC2El:16 + 0: 2 + 6: _ZNK9oceanbase8observer20ObInnerSQLConnection11is_in_transEv:18 + 0: 2 + 11: _ZN9oceanbase8observer20ObInnerSQLConnection11get_sessionEv:18 + 0: 1 + 12: _ZN9oceanbase8observer20ObInnerSQLConnection12TimeoutGuardC2ERS1_:157 + 1: 1 + 4: 1 + 4: _ZN9oceanbase3lib6Worker4selfEv:28 + 3: 1 + 4: 0 + 4.1: _ZNK9oceanbase3lib6Worker14get_timeout_tsEv:7 + 0: 1 + 5: _ZN9oceanbase8observer20ObInnerSQLConnection11get_sessionEv:14 + 0: 1 + 5.2: _ZNK9oceanbase3sql18ObBasicSessionInfo17get_query_timeoutERl:59 + 2: 1 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache20get_ob_query_timeoutEv:49 + 0: 1 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache20get_ob_query_timeoutEb:25 + 0: 1 + 6.2: _ZNK9oceanbase3sql18ObBasicSessionInfo14get_tx_timeoutERl:35 + 2: 1 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache18get_ob_trx_timeoutEv:21 + 0: 1 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache18get_ob_trx_timeoutEb:18 + 0: 1 + 23.1: _ZZN9oceanbase8observer20ObInnerSQLConnection12execute_readElmPKcRNS_6common12ObISQLClient10ReadResultEbbENK5$_306clEv:28 + 0: 1 _ZN9oceanbase8observer20ObInnerSQLConnection18execute_read_innerElmPKcRNS_6common12ObISQLClient10ReadResultEbb:1 + 26: _ZN9oceanbase8observer14global_contextEv:0 + 2: _ZN9oceanbase8observer8ObServer12get_instanceEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 +_ZN9oceanbase6common13ObSEArrayImplINS_5share17ObSysVarClassTypeELl64ENS0_19ModulePageAllocatorELb0EE9push_backERKS3_:564:12 + 2: 12 + 5: 12 + 6: 0 + 12: 0 + 15: 0 + 15.1: 12 + 16: 12 + 19: 12 + 15.1: _ZN9oceanbase6common9ObClassOpINS_5share17ObSysVarClassTypeELb1EE20construct_and_assignERKS3_RS3_:72 + 2: 12 +_ZZN9oceanbase4palf17LogIOFlushLogTask4initERKNS0_13FlushLogCbCtxERKNS0_11LogWriteBufEllENK5$_664clEPKc.1598dc2348996c1ae1caea6120522988:560:7 + 0: 7 + 0.1: 0 + 0.2: 7 + 0.3: 7 _ZN9oceanbase6common8ObLogger13need_to_printEmi:7 + 0.13: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:119 + 2: 7 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS_4palf13FlushLogCbCtxELb0EEC2EPKcS5_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKNS_4palf11LogWriteBufELb0EEC2EPKcS5_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.12: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 +_ZZN9oceanbase4palf16LogSlidingWindow32inc_update_max_flushed_log_info_ERKNS0_3LSNES4_RKlENK5$_194clEPKc.0e4bf25207570af14a78557c8489c4fc:559:8 + 0: 7 + 0.1: 0 + 0.2: 6 + 0.3: 7 _ZN9oceanbase6common8ObLogger13need_to_printEmi:8 + 0.15: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:119 + 2: 7 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS0_6ObAddrELb0EEC2EPKcS4_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKNS_4palf3LSNELb0EEC2EPKcS5_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVIRKNS_4palf3LSNELb0EEC2EPKcS5_:0 + 0: 0 + 0.12: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.14: _ZN9oceanbase6common7ObLogKVIRKNS_4palf3LSNELb0EEC2EPKcS5_:0 + 0: 0 +_ZN9oceanbase6common19obj_print_plain_strILNS0_9ObObjTypeE10EEEiRKNS0_5ObObjEPclRlRKNS0_16ObObjPrintParamsE:558:18 + 0: 18 + 0.1: 18 _ZN9oceanbase6common15databuff_printfEPclRlPKcz:18 + 0: _ZNK9oceanbase6common5ObObj10get_uint64Ev:72 + 0: 18 +_ZN9oceanbase3sql16ObPlanCacheValue19get_outline_versionERNS_5share6schema19ObSchemaGetterGuardEmRNS3_18ObSchemaObjVersionE:554:2 + 3: 2 + 5: 2 + 7: 2 + 8: 2 + 10.1: 0 + 11.1: 2 + 13.1: 0 + 14.1: 2 + 15: 2 + 15.1: 2 + 16: 2 + 21: 2 + 22: 2 _ZN9oceanbase5share6schema19ObSchemaGetterGuard31get_outline_info_with_signatureEmmRKNS_6common8ObStringERPKNS1_13ObOutlineInfoE:2 + 26.1: 0 + 27.1: 2 + 28: 3 + 28.1: 3 _ZN9oceanbase5share6schema19ObSchemaGetterGuard28get_outline_info_with_sql_idEmmRKNS_6common8ObStringERPKNS1_13ObOutlineInfoE:3 + 32.1: 0 + 35: 2 + 39: 0 + 40: 0 + 41: 0 + 45: 2 + 6: _ZN9oceanbase5share6schema18ObSchemaObjVersion5resetEv:46 + 2: 2 + 5: 2 + 6: 2 + 28: _ZN9oceanbase6common8ObString11make_stringEPKc:32 + 2.2: 3 + 4: 2 + 39: _ZNK9oceanbase5share6schema13ObOutlineInfo14get_outline_idEv:0 + 0: 0 + 40: _ZNK9oceanbase5share6schema13ObOutlineInfo18get_schema_versionEv:0 + 0: 0 +_ZN9oceanbase4palf14PalfHandleImpl16inner_append_logERKNS_6common12ObFixedArrayINS0_3LSNENS2_12ObIAllocatorEEERKNS3_IPNS0_11LogWriteBufES5_EERKNS3_IlS5_EE:549:6 + 3: 6 + 4: 6 + 5: 6 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:6 + 6: 5 + 7: 0 + 8.1: 0 + 9.1: 5 _ZN9oceanbase4palf9LogEngine10append_logERKNS_6common12ObFixedArrayINS0_3LSNENS2_12ObIAllocatorEEERKNS3_IPNS0_11LogWriteBufES5_EERKNS3_IlS5_EE:5 + 10.1: 0 + 12: 3 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:3 + 14: 1 + 15.1: 0 + 19: 1 + 13: _ZN9oceanbase6common10ObMiniStat10ObStatItem4statEl:64 + 3: 1 + 4: 1 + 5: 1 + 6: 0 + 7.1: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:10 + 2: 2 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:2 +_ZN9oceanbase6common18ObMySQLTransactionC2Eb:546:2 + 1: 2 + 2: 2 + 3: 2 + 4: 2 + 5: 2 + 0: _ZN9oceanbase6common23ObSingleConnectionProxyC2Ev:52 + 2: 2 + 0: _ZN9oceanbase6common12ObISQLClientC2Ev:8 + 0: 2 + 0.1: _ZN9oceanbase6common4hash9ObHashMapIPKcPNS0_24ObSqlTransQueryStashDescENS1_24LatchReadWriteDefendModeENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS4_S6_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev:386 + 0.1: 2 + 0: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIPKcPNS0_24ObSqlTransQueryStashDescEEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEC2Ev:102 + 0: 2 + 2: 2 + 0.1: _ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocatorC2EmRKNS_3lib7ObLabelE:68 + 3: 2 + 4: 2 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:30 + 7: 2 + 2: _ZN9oceanbase6common4hash10SpinIniterC2ERVi:18 + 2: 2 + 3.1: 0 + 0.1: _ZN9oceanbase6common4hash11ObHashTableIPKcNS1_11HashMapPairIS4_PNS0_24ObSqlTransQueryStashDescEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS8_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS8_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev:142 + 0: 2 + 1: 2 + 0: _ZN9oceanbase6common8ObMallocC2Ev:70 + 0: 2 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:56 + 5: 2 + 7: 2 + 8: _ZN9oceanbase6common4hash9constructIPNS1_17ObHashTableBucketINS1_11HashMapPairIPKcPNS0_24ObSqlTransQueryStashDescEEENS0_7ObLatchENS1_5NCondEEEEEvRT_:36 + 2: _ZN9oceanbase6common4hash12do_constructIPNS1_17ObHashTableBucketINS1_11HashMapPairIPKcPNS0_24ObSqlTransQueryStashDescEEENS0_7ObLatchENS1_5NCondEEEEEvRT_NS1_16NormalPointerTagE:36 + 2: 2 + 0.2: _ZN9oceanbase6common8ObMallocC2Ev:36 + 0: 2 + 4: _ZN9oceanbase6common8ObMalloc8set_attrERKNS_3lib9ObMemAttrE:92 + 0: 2 + 5.1: _ZN9oceanbase6common23ObSingleConnectionProxyD2Ev:0 + 1: 0 + 3.2: 0 + 2: _ZN9oceanbase6common23ObSingleConnectionProxy5closeEv:0 + 2: 0 + 2.1: 0 + 3: 0 + 6: 0 + 7: 0 +_ZN9oceanbase6common18ObMySQLTransactionC1Eb:546:2 + 1: 2 + 2: 2 + 3: 2 + 4: 2 + 5: 2 + 0: _ZN9oceanbase6common23ObSingleConnectionProxyC2Ev:52 + 2: 2 + 0: _ZN9oceanbase6common12ObISQLClientC2Ev:8 + 0: 2 + 0.1: _ZN9oceanbase6common4hash9ObHashMapIPKcPNS0_24ObSqlTransQueryStashDescENS1_24LatchReadWriteDefendModeENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS4_S6_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev:386 + 0.1: 2 + 0: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIPKcPNS0_24ObSqlTransQueryStashDescEEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEC2Ev:102 + 0: 2 + 2: 2 + 0.1: _ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocatorC2EmRKNS_3lib7ObLabelE:68 + 3: 2 + 4: 2 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:30 + 7: 2 + 2: _ZN9oceanbase6common4hash10SpinIniterC2ERVi:18 + 2: 2 + 3.1: 0 + 0.1: _ZN9oceanbase6common4hash11ObHashTableIPKcNS1_11HashMapPairIS4_PNS0_24ObSqlTransQueryStashDescEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS8_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS8_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev:142 + 0: 2 + 1: 2 + 0: _ZN9oceanbase6common8ObMallocC2Ev:70 + 0: 2 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:56 + 5: 2 + 7: 2 + 8: _ZN9oceanbase6common4hash9constructIPNS1_17ObHashTableBucketINS1_11HashMapPairIPKcPNS0_24ObSqlTransQueryStashDescEEENS0_7ObLatchENS1_5NCondEEEEEvRT_:36 + 2: _ZN9oceanbase6common4hash12do_constructIPNS1_17ObHashTableBucketINS1_11HashMapPairIPKcPNS0_24ObSqlTransQueryStashDescEEENS0_7ObLatchENS1_5NCondEEEEEvRT_NS1_16NormalPointerTagE:36 + 2: 2 + 0.2: _ZN9oceanbase6common8ObMallocC2Ev:36 + 0: 2 + 4: _ZN9oceanbase6common8ObMalloc8set_attrERKNS_3lib9ObMemAttrE:92 + 0: 2 + 5.1: _ZN9oceanbase6common23ObSingleConnectionProxyD2Ev:0 + 1: 0 + 3.2: 0 + 2: _ZN9oceanbase6common23ObSingleConnectionProxy5closeEv:0 + 2: 0 + 2.1: 0 + 3: 0 + 6: 0 + 7: 0 +_ZN9oceanbase7storage13ObTxDataTable25DEBUG_calc_with_row_iter_EPNS0_18ObStoreRowIteratorElRl:544:0 + 3: 0 + 4: 0 + 6: 0 + 8.1: 4 + 9: 4 _ZN9oceanbase7storage8ObTxData5resetEv:4 + 10: 3 + 11: 3 _ZN9oceanbase7storage18ObStoreRowIterator12get_next_rowERPKNS_12blocksstable10ObDatumRowE:3 + 11.1: 2 + 13.1: 0 + 15.1: 2 + 15.2: 2 + 18: 2 + 19.1: 2 + 21.2: 2 _ZN9oceanbase7storage8ObTxData11deserializeEPKclRlRNS_6common12ObSliceAllocE:2 + 21.3: 4 + 22.1: 0 + 23.1: 4 + 23.2: 3 + 24: 4 + 24.1: 3 + 26: 3 + 30: 4 + 32: 0 + 38: 0 + 41.5: 0 + 5: _ZN9oceanbase7storage8ObTxDataC2Ev:0 + 0.2: 0 + 0: _ZN9oceanbase7storage14ObTxCommitDataC2Ev:0 + 0.4: 0 + 0: _ZN9oceanbase11transaction9ObTransIDC2Ev:0 + 0: 0 + 0.1: _ZN9oceanbase7storage16ObUndoStatusListC2Ev:0 + 0: 0 + 15.1: _ZNK9oceanbase6common7ObDatum7get_intEv:6 + 0: 2 + 19: _ZNK9oceanbase6common7ObDatum10get_stringEv:32 + 0: 2 + 0: _ZN9oceanbase6common8ObStringC2ElPKc:6 + 5: 2 + 21.1: _ZNK9oceanbase6common8ObString6lengthEv:8 + 0: 2 + 31: _ZN9oceanbase7storage13ObTxDataTable22free_undo_status_list_EPNS0_16ObUndoStatusNodeE:0 + 3.1: 0 + 5: 0 + 6: 0 + 41.5: _ZN9oceanbase7storage8ObTxDataD2Ev:0 + 0: _ZN9oceanbase7storage16ObUndoStatusListD2Ev:0 + 0: _ZN9oceanbase7storage16ObUndoStatusList5resetEv:0 + 2: 0 + 3: 0 + 4: _ZN9oceanbase6common15ObSmallSpinLockIhLl0ELl500ELl100EE6unlockEv:0 + 2: 0 + 3: 0 +_ZN9oceanbase5obrpc18ObRpcProcessorBase13part_responseEib:542:0 + 1: 0 + 2: 0 + 3: 0 + 4: 0 + 5.1: 0 + 9: 0 + 11.1: 0 + 12: 0 + 13: 0 + 14.1: 0 + 18.1: 0 + 18.4: 0 + 18.5: 0 + 18.7: 0 + 20: 0 + 21.1: 0 + 22.1: 0 + 30: 0 + 35: 0 + 35.2: 0 + 36: 0 + 38: 0 + 40: 0 + 41: 0 + 41.1: 0 + 42.1: 0 + 44.1: 0 + 44.2: 0 + 45.1: 0 + 53: 0 + 55.1: 0 + 56: 0 + 57.1: 0 + 65: 0 + 67: 0 + 68: 0 + 69: 0 + 70.1: 0 + 72: 0 + 73: 0 + 74: 0 + 77: 0 + 78: 0 + 79.1: 0 + 84: 0 + 85: 0 + 86: 0 + 87.1: 0 + 94: 0 + 95: 0 + 96: 0 + 97.1: 0 + 98.4: 0 + 98.5: 1 + 101.1: 0 + 104: 1 + 105: 1 _ZN9oceanbase5obrpc18ObRpcProcessorBase9serializeEv:1 + 105.1: 2 + 106.1: 0 + 112: 0 + 113: 2 + 115: 2 + 116: 2 + 120: 0 + 122: 2 + 122.2: 2 + 124: 2 _ZN9oceanbase5obrpc18ObRpcProcessorBase11do_responseERKNS1_8ResponseE:3 + 124.1: 0 + 125.1: 0 + 128: 0 + 129: 0 + 132: 0 + 133: 0 + 138: 0 + 8: _ZN9oceanbase5obrpc15ObRpcResultCodeC2Ev:0 + 2: 0 + 0: _ZN9oceanbase6common9ObSEArrayINS0_15ObWarningBuffer11WarningItemELl2ENS0_19ModulePageAllocatorELb0EEC2Ev:0 + 0.1: 0 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS0_15ObWarningBuffer11WarningItemELl2ENS0_19ModulePageAllocatorELb0EEC2ElRKS4_:0 + 2: 0 + 8: 0 + 17.1: 0 + 2: _ZN9oceanbase6common8ObIArrayINS0_15ObWarningBuffer11WarningItemEEC2EPS3_l:0 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_15ObWarningBuffer11WarningItemEEC2EPS3_l:0 + 0: 0 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:0 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:0 + 2: 0 + 8: 0 + 3: _ZN9oceanbase6common13ObSEArrayImplINS0_15ObWarningBuffer11WarningItemELl2ENS0_19ModulePageAllocatorELb0EE5resetEv:0 + 0: _ZN9oceanbase6common13ObSEArrayImplINS0_15ObWarningBuffer11WarningItemELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv:0 + 13: 0 + 23: 0 + 24: 0 + 11: _ZN9oceanbase6common25ob_get_tsi_warning_bufferEv:0 + 2: 0 + 14: _ZNK9oceanbase6common15ObWarningBuffer11get_err_msgEv:0 + 0: _ZNK9oceanbase6common15ObWarningBuffer11WarningItem3getEv:0 + 0: 0 + 18.3: _ZNK9oceanbase6common15ObWarningBuffer26get_readable_warning_countEv:0 + 2: 0 + 19: _ZNK9oceanbase6common15ObWarningBuffer16get_warning_itemEj:0 + 5: 0 + 6: 0 + 8: _ZNK9oceanbase6common11ObArrayImplINS0_15ObWarningBuffer11WarningItemENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEEixEl:0 + 0: _ZNK9oceanbase6common12ObIArrayWrapINS0_15ObWarningBuffer11WarningItemEE2atEl:0 + 6: 0 + 21: _ZN9oceanbase6common13ObSEArrayImplINS0_15ObWarningBuffer11WarningItemELl2ENS0_19ModulePageAllocatorELb0EE9push_backERKS3_:0 + 5: 0 + 6: 0 + 12: 0 + 15: 0 + 15.1: 0 + 16: 0 + 15.1: _ZN9oceanbase6common9ObClassOpINS0_15ObWarningBuffer11WarningItemELb0EE20construct_and_assignERKS3_RS3_:0 + 3: _ZN9oceanbase6common16construct_assignINS0_15ObWarningBuffer11WarningItemEEEiRT_RKS4_:0 + 2: _ZN9oceanbase6common21construct_assign_wrapINS0_15ObWarningBuffer11WarningItemEEEiRT_RKS4_NS0_8BoolTypeILb0EEE:0 + 2: 0 + 31: _ZN9oceanbase6common16ObCompressorPool20need_common_compressERKNS0_16ObCompressorTypeE:0 + 2: _ZN9oceanbase6common16ObCompressorPool13need_compressERKNS0_16ObCompressorTypeE:0 + 2: 0 + 32: _ZN9oceanbase6common12ObDataBufferC2Ev:0 + 0: 0 + 1: 0 + 35.1: _ZN9oceanbase6common13serialization14encoded_lengthINS_5obrpc15ObRpcResultCodeEEElRKT_:0 + 2: _ZN9oceanbase6common13serialization11EnumEncoderILb0ENS_5obrpc15ObRpcResultCodeEE14encoded_lengthERKS4_:0 + 2: _ZNK9oceanbase5obrpc15ObRpcResultCode18get_serialize_sizeEv:0 + 0: _ZNK9oceanbase5obrpc15ObRpcResultCode28get_serialize_size_dispatch_ESt17integral_constantIbLb0EE:0 + 0: 0 + 67: _ZN9oceanbase3rpc20ObRpcRequestOperator21alloc_response_bufferEPNS0_9ObRequestEl:0 + 1: 0 + 1.1: 0 + 74.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib7ObLabelE:0 + 3: 0 + 2.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 4: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 9: _ZSt3maxIlERKT_S2_S2_:0 + 5: 0 + 77: _ZN9oceanbase6common12ObDataBuffer8set_dataEPcl:0 + 4: 0 + 4.2: 0 + 5: 0 + 6: 0 + 8: 0 + 84: _ZN9oceanbase6common12ObDataBuffer8set_dataEPcl:0 + 4: 0 + 4.2: 0 + 5: 0 + 6: 0 + 8: 0 + 98.1: _ZN9oceanbase6common12ObDataBuffer8get_dataEv:0 + 0: 0 + 98.2: _ZNK9oceanbase6common12ObDataBuffer12get_capacityEv:0 + 0: 0 + 98.3: _ZN9oceanbase6common12ObDataBuffer12get_positionEv:0 + 0: 0 + 113.1: _ZNK9oceanbase5obrpc15ObRpcStreamCond6sessidEv:0 + 0: 0 + 114: _ZN9oceanbase5obrpc11ObRpcPacketC2Ev:344 + 1: 2 + 2: 2 + 3: 2 + 4.1: 2 + 5: 2 + 6: _ZN9oceanbase5obrpc11ObRpcPacket18set_dst_cluster_idEl:22 + 2: 2 + 7: _ZN9oceanbase5obrpc11ObRpcPacket19set_compressor_typeERKNS_6common16ObCompressorTypeE:14 + 2: 2 + 8: _ZN9oceanbase5obrpc11ObRpcPacket16set_original_lenEi:20 + 2: 2 + 9: _ZN9oceanbase5obrpc11ObRpcPacket18set_src_cluster_idEl:22 + 2: 2 + 115: _ZN9oceanbase5obrpc18ObRpcProcessorBase8ResponseC2ElbbbPNS0_11ObRpcPacketE:34 + 5: 2 + 6: 2 + 7: 2 + 8: 2 + 9: 2 + 119.2: _ZN9oceanbase5obrpc18ObRpcProcessorBase15compress_resultEPKclPclPNS0_11ObRpcPacketE:0 + 4: 0 + 5: 0 + 7: 0 + 7.1: 0 + 8.1: 0 + 22: 0 + 17: _ZN9oceanbase5obrpc11ObRpcPacket11set_contentEPKcl:0 + 2: 0 + 3: 0 + 18: _ZN9oceanbase5obrpc11ObRpcPacket19set_compressor_typeERKNS_6common16ObCompressorTypeE:0 + 2: 0 + 23: _ZN9oceanbase5obrpc11ObRpcPacket11set_contentEPKcl:0 + 2: 0 + 3: 0 + 24: _ZN9oceanbase5obrpc11ObRpcPacket19set_compressor_typeERKNS_6common16ObCompressorTypeE:0 + 2: 0 + 122: _ZN9oceanbase6common12ObDataBuffer8get_dataEv:8 + 0: 2 + 122.2: _ZN9oceanbase5obrpc11ObRpcPacket11set_contentEPKcl:28 + 2: 2 + 3: 2 + 128: _ZN9oceanbase3rpc20ObRpcRequestOperator15response_resultEPNS0_9ObRequestEPNS_5obrpc11ObRpcPacketE:0 + 1: 0 + 1.1: 0 + 134: _ZN9oceanbase6common7ob_freeEPv:0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 137.8: _ZN9oceanbase5obrpc15ObRpcResultCodeD2Ev:0 + 0: _ZN9oceanbase6common13ObSEArrayImplINS0_15ObWarningBuffer11WarningItemELl2ENS0_19ModulePageAllocatorELb0EED2Ev:0 + 1: 0 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS0_15ObWarningBuffer11WarningItemELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv:0 + 9: 0 + 11: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplINS0_15ObWarningBuffer11WarningItemELl2ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 137.9: _ZN9oceanbase5obrpc15ObRpcResultCodeD2Ev:0 + 0: _ZN9oceanbase6common13ObSEArrayImplINS0_15ObWarningBuffer11WarningItemELl2ENS0_19ModulePageAllocatorELb0EED2Ev:0 + 1: 0 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS0_15ObWarningBuffer11WarningItemELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv:0 + 9: 0 + 11: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplINS0_15ObWarningBuffer11WarningItemELl2ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZSt22__final_insertion_sortIPN9oceanbase4palf3LSNEN9__gnu_cxx5__ops15_Iter_comp_iterINS1_10LSNCompareEEEEvT_S9_T0_:539:12 + 2: 11 + 3: 11 + 5: 11 + 10: 11 _ZSt16__insertion_sortIPN9oceanbase4palf3LSNEN9__gnu_cxx5__ops15_Iter_comp_iterINS1_10LSNCompareEEEEvT_S9_T0_:11 + 11.3: 11 + 6: _ZSt26__unguarded_insertion_sortIPN9oceanbase4palf3LSNEN9__gnu_cxx5__ops15_Iter_comp_iterINS1_10LSNCompareEEEEvT_S9_T0_:0 + 3.1: 0 + 3.3: 0 + 4.1: _ZSt25__unguarded_linear_insertIPN9oceanbase4palf3LSNEN9__gnu_cxx5__ops14_Val_comp_iterINS1_10LSNCompareEEEEvT_T0_:0 + 7.2: 0 + 4.1: _ZN9oceanbase4palf3LSNC2ERKS1_:0 + 0: 0 + 7.1: _ZN9__gnu_cxx5__ops14_Val_comp_iterIN9oceanbase4palf10LSNCompareEEclINS3_3LSNEPS7_EEbRT_T0_:0 + 1: _ZN9oceanbase4palf10LSNCompareclERKNS0_3LSNES4_:0 + 2: _ZNK9oceanbase4palf3LSNgtERKS1_:0 + 2: _ZNK9oceanbase4palf3LSNltERKS1_:0 + 2: 0 + 9.1: _ZN9oceanbase4palf3LSNaSERKS1_:0 + 2: 0 + 13.1: _ZN9oceanbase4palf3LSNaSERKS1_:0 + 2: 0 +_ZN9oceanbase3sql18ObBasicSessionInfo4initEjmPNS_6common12ObIAllocatorEPKNS2_11ObTZInfoMapE:539:2 + 2: 2 + 3: 2 + 5: 2 + 6: 0 + 7: 2 + 8: 0 + 9.1: 0 + 10: 0 + 12: 2 + 13: 0 + 17: 0 + 18.1: 0 + 18.2: 0 + 19: 2 + 20.1: 0 + 21.1: 2 + 21.2: 2 + 22: 2 _ZN9oceanbase6common18ObDSSessionActions4initElRNS0_12ObIAllocatorE:2 + 23.1: 0 + 24.1: 2 _ZN9oceanbase3sql18ObBasicSessionInfo17set_session_stateENS0_17ObSQLSessionStateE:2 + 25.1: 0 + 28: 1 + 29: 1 + 31: 1 + 33: 1 _ZN9oceanbase3omt19ObTenantTimezoneMgr12get_instanceEv:1 + 33.1: 1 _ZN9oceanbase3omt19ObTenantTimezoneMgr13get_tenant_tzEmRNS_6common11ObTZMapWrapE:1 + 33.2: 2 + 34.1: 0 + 36: 2 + 36.1: 2 _ZN9oceanbase6common18ObTimeZoneInfoWrap15set_tz_info_mapEPKNS0_11ObTZInfoMapE:2 + 39: 0 + 42: 1 + 5: _ZNK9oceanbase3sql18ObBasicSessionInfo20is_acquire_from_poolEv:14 + 0: 2 + 7.1: _ZNK9oceanbase3sql18ObBasicSessionInfo22is_use_inner_allocatorEv:0 + 2: 0 + 13: _ZN9oceanbase6common18ObWrapperAllocator9set_allocEPNS0_12ObIAllocatorE:0 + 0: 0 + 18.1: _ZNK9oceanbase3sql18ObBasicSessionInfo20is_acquire_from_poolEv:0 + 0: 0 + 19: _ZN9oceanbase3sql15ObSessionValMap4initEllPNS_6common18ObWrapperAllocatorE:204 + 4: 1 + 5: 1 + 7: 1 + 11: 2 + 13.1: 0 + 15: 0 + 8: _ZN9oceanbase6common18ObWrapperAllocator9set_allocEPNS0_12ObIAllocatorE:0 + 0: 0 + 11: _ZN9oceanbase6common4hash9ObHashMapINS0_8ObStringENS_3sql17ObSessionVariableENS1_19NoPthreadDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS0_17ObPooledAllocatorINS1_15ObHashTableNodeINS1_11HashMapPairIS3_S5_EEEENS0_18ObWrapperAllocatorENS0_10ObNullLockEEENS1_13NormalPointerESG_Ll1EE6createElPSI_PSG_:138 + 2: 0 + 2.1: 0 + 2: _ZN9oceanbase6common4hash14cal_next_primeEl:138 + 7: 0 + 7.3: 0 + 6: _ZSt11lower_boundIPKllET_S2_S2_RKT0_:138 + 9: _ZSt13__lower_boundIPKllN9__gnu_cxx5__ops14_Iter_less_valEET_S5_S5_RKT0_T1_:138 + 8.1: 3 + 10: 3 + 13: 3 + 13: _ZNK9__gnu_cxx5__ops14_Iter_less_valclIPKlS3_EEbT_RT0_:24 + 1: 3 + 21.1: _ZNK9oceanbase3sql18ObBasicSessionInfo20is_acquire_from_poolEv:14 + 0: 2 + 32: _ZN9oceanbase6common11ObTZMapWrapC2Ev:8 + 0: 1 + 36: _ZNK9oceanbase6common11ObTZMapWrap10get_tz_mapEv:8 + 0: 2 +_ZN9oceanbase8observer24ObInnerSQLConnectionPool6revertEPNS0_20ObInnerSQLConnectionE:537:4 + 1: 4 + 2: 4 + 3: 4 + 4.1: 0 + 5.1: 4 + 6: 0 + 7.1: 0 + 9: 4 + 11: 0 + 11.1: 0 + 12.1: 1 + 13.1: 0 + 14.1: 1 _ZN9oceanbase8observer24ObInnerSQLConnectionPool9free_connEPNS0_20ObInnerSQLConnectionE:2 + 15.1: 0 + 18: 0 + 9: _ZNK9oceanbase8observer20ObInnerSQLConnection11is_spi_connEv:28 + 0: 4 + 12.1: _ZN9oceanbase8observer20ObInnerSQLConnection7destroyEv:279 + 2: 4 + 4: 4 + 5: 4 + 6: 0 + 7.1: 0 + 11: 4 + 12: 4 + 15: 4 _ZN9oceanbase3sql16ObSQLSessionInfo7destroyEb:4 + 16: 1 + 17: 1 + 19: 1 + 21: 1 +_ZN9oceanbase6common13ObSEArrayImplINS_4palf10LogLearnerELl1ENS0_19ModulePageAllocatorELb0EED2Ev:534:6 + 1: 6 + 3: 6 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_4palf10LogLearnerELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:312 + 4.1: 6 + 4.3: 0 + 5: 0 + 9: 6 + 11: 0 + 13: 6 + 15: 6 + 24: 6 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_4palf10LogLearnerELl1ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZZN9oceanbase4palf7PalfEnv5closeERNS0_10PalfHandleEENK5$_626clEPKc.0e4bf25207570af14a78557c8489c4fc:533:10 + 0: 10 + 0.1: 0 + 0.2: 10 + 0.3: 9 _ZN9oceanbase6common8ObLogger13need_to_printEmi:11 + 0.5: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:153 + 2: 9 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKNS_4palf10PalfHandleELb0EEC2EPKcS5_:0 + 0: 0 +_ZZN9oceanbase4palf17LogIOFlushLogTask13after_consumeEPNS0_11PalfEnvImplEENK5$_678clEPKc.1598dc2348996c1ae1caea6120522988:533:9 + 0: 10 + 0.1: 0 + 0.2: 10 + 0.3: 9 _ZN9oceanbase6common8ObLogger13need_to_printEmi:10 + 0.5: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:153 + 2: 9 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKNS0_11ObTimeGuardELb0EEC2EPKcS4_:0 + 0: 0 +_ZN9oceanbase4palf21LogIOTaskCbThreadPool6handleEPv:532:10 + 1: 10 + 2: 10 + 3: 10 + 4: 10 + 5: 0 + 6.1: 0 + 7.1: 10 + 8: 0 + 9.1: 0 + 10.1: 10 _ZN9oceanbase4palf17LogIOFlushLogTask13after_consumeEPNS0_11PalfEnvImplE:10 + 11.1: 0 + 13.1: 7 _ZZN9oceanbase4palf21LogIOTaskCbThreadPool6handleEPvENK5$_759clEPKc.1598dc2348996c1ae1caea6120522988:7 + 15: 6 +_ZN9oceanbase8memtable10ObMemtable3setERNS_7storage10ObStoreCtxEmRKNS2_15ObTableReadInfoERKNS_6common8ObIArrayINS_5share6schema9ObColDescEEERKNS9_IlEERKNS2_10ObStoreRowESL_:531:1 + 8: 1 + 9: 1 + 11: 1 + 12.1: 0 + 13: 0 + 14.2: 1 + 14.3: 1 + 15: 1 + 15.3: 1 + 16: 0 + 17.1: 0 + 18.1: 1 _ZN9oceanbase8memtable16ObMvccWriteGuard10write_authERNS_7storage10ObStoreCtxE:1 + 18.2: 1 + 19.1: 0 + 21: 1 + 23.1: 0 + 30: 0 + 32: 0 + 33.6: 0 + 33.7: 0 + 10: _ZN9oceanbase8memtable16ObMvccWriteGuardC2Eb:28 + 1: 1 + 2: 1 + 3: 1 + 15.1: _ZNK9oceanbase7storage15ObTableReadInfo23get_schema_rowkey_countEv:8 + 1: 1 + 21: _ZN9oceanbase3lib15CompatModeGuardC2ENS0_6Worker10CompatModeE:131 + 2: _ZN9oceanbase3lib6Worker4selfEv:28 + 3: 1 + 4: 0 + 2.1: _ZN9oceanbase3lib6Worker22get_compatibility_modeEv:46 + 2: _ZN9oceanbase3lib15get_compat_modeEv:46 + 2: 1 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:25 + 2: 1 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 3: _ZN9oceanbase3lib6Worker4selfEv:9 + 3: 1 + 4: 0 + 3.1: _ZN9oceanbase3lib6Worker22set_compatibility_modeENS1_10CompatModeE:44 + 2: _ZN9oceanbase3lib15set_compat_modeENS0_6Worker10CompatModeE:44 + 2: 1 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 23: _ZN9oceanbase8memtable10ObMemtable4set_ERNS_7storage10ObStoreCtxEmRKNS2_15ObTableReadInfoERKNS_6common8ObIArrayINS_5share6schema9ObColDescEEERKNS2_10ObStoreRowEPSH_PKNS9_IlEE:242 + 10: 1 + 11: 1 _ZN9oceanbase12blocksstable11ObRowWriterC1Ev:1 + 12: 0 + 13: 0 + 17.1: 0 + 21: 0 + 21.2: 0 + 23.1: 0 + 25.2: 0 + 26.1: 0 + 27.1: 0 + 29.1: 0 + 29.2: 1 + 30.1: 0 + 31.1: 1 + 32: 0 + 33.1: 0 + 35: 0 + 36: 0 + 39: 0 + 40: 0 + 41: 0 + 42: 0 + 44.2: 0 + 44.3: 1 + 45.1: 0 + 46.2: 1 + 47: 0 + 48.1: 0 + 50.1: 1 + 52: 1 + 53: 1 + 54: 1 + 55: 1 _ZN9oceanbase8memtable10ObMemtable11mvcc_write_ERNS_7storage10ObStoreCtxEPKNS0_13ObMemtableKeyERKNS2_15ObTableReadInfoERKNS0_11ObTxNodeArgERb:1 + 55.1: 0 + 60: 0 + 62.1: 0 + 65.1: 0 + 82: 0 + 82.1: 0 + 83: 0 + 85.1: 0 + 86: 0 + 90: 0 + 93.1: 0 + 104: 0 + 105: 0 + 106: 0 + 109: 0 + 110.21: 0 + 110.25: 0 + 14: _ZN9oceanbase8memtable9ObRowDataC2Ev:0 + 0: 0 + 15: _ZN9oceanbase6common13ObStoreRowkeyC2Ev:0 + 0: 0 + 16: _ZN9oceanbase8memtable13ObMemtableKeyC2Ev:0 + 0: 0 + 17: _ZNK9oceanbase8memtable15ObMvccAccessCtx11get_mem_ctxEv:0 + 1: 0 + 19: _ZN9oceanbase8memtable10ObMemtable9set_beginERNS0_15ObMvccAccessCtxE:0 + 2: 0 + 3.1: 0 + 3.2: 0 + 3.3: 0 + 3.4: 0 + 3.6: 0 + 3.7: 0 + 3.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:0 + 2: 0 + 21: _ZNK9oceanbase7storage15ObTableReadInfo23get_schema_rowkey_countEv:0 + 1: 0 + 21.1: _ZN9oceanbase6common13ObStoreRowkey6assignEPNS0_5ObObjEl:0 + 3: 0 + 3.2: 0 + 5.1: 0 + 8: 0 + 7: _ZN9oceanbase6common8ObRowkey6assignEPNS0_5ObObjEl:0 + 2: 0 + 3: 0 + 25.1: _ZN9oceanbase8memtable13ObMemtableKey6encodeERKNS_6common8ObIArrayINS_5share6schema9ObColDescEEEPKNS2_13ObStoreRowkeyE:0 + 8.1: 0 + 9.1: 0 + 14.2: 0 + 14.3: 0 + 14.5: 0 + 15: 0 + 16: 0 + 17.1: 0 + 18: 0 + 19.1: 0 + 20.1: 0 + 25.2: 0 + 26: 0 + 28: 0 + 29.1: 0 + 30.1: 0 + 15: _ZNK9oceanbase6common13ObStoreRowkey11get_obj_ptrEv:0 + 0: _ZNK9oceanbase6common8ObRowkey11get_obj_ptrEv:0 + 0: 0 + 16: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE2atEl:0 + 6: 0 + 17: _ZNK9oceanbase6common5ObObj8get_typeEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:0 + 0: 0 + 25.1: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:0 + 0: 0 + 29.1: _ZNK9oceanbase6common5ObObj18get_collation_typeEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta18get_collation_typeEv:0 + 0: 0 + 36: _ZN9oceanbase8memtable13ObMemtableKey6encodeEPKNS_6common13ObStoreRowkeyE:0 + 3: 0 + 29: _ZNK9oceanbase7storage15ObTableReadInfo23get_schema_rowkey_countEv:0 + 1: 0 + 31.1: _ZN9oceanbase8memtable13ObMemtableCtx13old_row_allocEl:8 + 3: 0 + 4.1: 0 + 6: 0 + 3: _ZN9oceanbase8memtable24ObMemtableCtxCbAllocator5allocEl:8 + 3: 1 _ZN9oceanbase6common15ObFIFOAllocator5allocEl:1 + 4.1: 0 + 7.1: 0 + 8: 0 + 36: _ZN9oceanbase8memtable9ObRowData3setEPKci:0 + 2: 0 + 3: 0 + 44.1: _ZNK9oceanbase7storage15ObTableReadInfo23get_schema_rowkey_countEv:0 + 1: 0 + 46.1: _ZNK9oceanbase12blocksstable12ObDmlRowFlag12is_not_existEv:5 + 2: 1 + 50: _ZNK9oceanbase12blocksstable12ObDmlRowFlag12get_dml_flagEv:5 + 0: 1 + 50.1: _ZN9oceanbase8memtable14ObMemtableDataC2ENS_12blocksstable9ObDmlFlagElPKc:20 + 1: 1 + 51.1: _ZN9oceanbase8memtable11ObTxNodeArgC2EPKNS0_14ObMemtableDataEPKNS0_9ObRowDataEll:75 + 4: 1 + 5: 1 + 6: 1 + 8: 1 + 9: 1 + 10: 1 + 86: _ZN9oceanbase8memtable13ObMemtableCtx12old_row_freeEPv:0 + 6: _ZN9oceanbase8memtable24ObMemtableCtxCbAllocator4freeEPv:0 + 5.1: 0 + 6: 0 + 87: _ZN9oceanbase8memtable9ObRowData5resetEv:0 + 2: 0 + 3: 0 + 30.1: _ZN9oceanbase8memtable16ObMvccWriteGuard13set_is_freezeEb:0 + 1: 0 + 31: _ZN9oceanbase3lib15CompatModeGuardD2Ev:0 + 2.2: 0 + 2: _ZN9oceanbase3lib6Worker4selfEv:0 + 3: 0 + 4: 0 + 2.1: _ZN9oceanbase3lib6Worker22set_compatibility_modeENS1_10CompatModeE:0 + 2: _ZN9oceanbase3lib15set_compat_modeENS0_6Worker10CompatModeE:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 31.1: _ZN9oceanbase3lib15CompatModeGuardD2Ev:0 + 2.2: 0 + 2: _ZN9oceanbase3lib6Worker4selfEv:0 + 3: 0 + 4: 0 + 2.1: _ZN9oceanbase3lib6Worker22set_compatibility_modeENS1_10CompatModeE:0 + 2: _ZN9oceanbase3lib15set_compat_modeENS0_6Worker10CompatModeE:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 +_ZN9oceanbase6common8ObMalloc5allocEl:530:8 + 1: 7 + 2: 11 + 2: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:172 + 3: 7 _ZN9oceanbase3lib17ObMallocAllocator12get_instanceEv:7 + 4: 5 + 5: 5 _ZN9oceanbase3lib17ObMallocAllocator5allocElRKNS0_9ObMemAttrE:5 + 6: 11 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 9: _ZSt3maxIlERKT_S2_S2_:0 + 5: 0 +_ZN9oceanbase3sql18ObBasicSessionInfo21gen_sys_var_in_pc_strEv:528:1 + 1: 1 + 2: 1 + 3: 1 + 6: 1 + 7: 1 + 9.1: 1 + 10: 0 + 11.1: 0 + 13: 1 + 16.1: 1 + 20: 2 + 21.1: 2 _ZNK9oceanbase3sql18ObBasicSessionInfo26get_influence_plan_sys_varERNS0_12ObSysVarInPCE:3 + 21.2: 5 + 22.1: 0 + 23.1: 5 _ZN9oceanbase3sql12ObSysVarInPC18serialize_sys_varsEPclRl:5 + 23.2: 1 + 24.1: 0 + 26: 1 + 29: 1 + 30.4: 3 + 4: _ZN9oceanbase3sql12ObSysVarInPCC2Ev:152 + 0: 1 + 0: _ZN9oceanbase6common9ObSEArrayINS0_5ObObjELl32ENS0_19ModulePageAllocatorELb0EEC2Ev:142 + 0.1: 1 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS0_5ObObjELl32ENS0_19ModulePageAllocatorELb0EEC2ElRKS3_:127 + 2: 1 + 5: 1 + 6: 1 + 8: 1 + 17.1: 1 + 2: _ZN9oceanbase6common8ObIArrayINS0_5ObObjEEC2EPS2_l:8 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_5ObObjEEC2EPS2_l:8 + 0: 1 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:53 + 0: 1 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:21 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:21 + 2: 1 + 8: 1 + 9: _ZN9oceanbase6common12ObStringBufTINS0_19ModulePageAllocatorENS0_9PageArenaIcS2_EEE5allocEl:0 + 0: 0 + 15: _ZN9oceanbase6common8ObString3ptrEv:7 + 0: 1 + 16: _ZNK9oceanbase6common8ObString6lengthEv:7 + 0: 1 + 17: _ZN9oceanbase6common8ObString5resetEv:11 + 3: 1 + 26: _ZN9oceanbase6common8ObString6assignEPci:28 + 2: 1 + 3: 1 + 4: 1 + 5: 1 + 6: 0 + 30.4: _ZN9oceanbase3sql12ObSysVarInPCD2Ev:1 + 0: 1 _ZN9oceanbase6common13ObSEArrayImplINS0_5ObObjELl32ENS0_19ModulePageAllocatorELb0EED2Ev:3 + 30.5: _ZN9oceanbase3sql12ObSysVarInPCD2Ev:0 + 0: 0 +_ZZN9oceanbase4palf16LogSlidingWindow15after_flush_logERKNS0_13FlushLogCbCtxEENK5$_183clEPKc.0e4bf25207570af14a78557c8489c4fc:526:6 + 0: 7 + 0.1: 0 + 0.2: 7 + 0.3: 6 _ZN9oceanbase6common8ObLogger13need_to_printEmi:6 + 0.19: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:102 + 2: 6 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKNS0_6ObAddrELb0EEC2EPKcS4_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVIRKbLb0EEC2EPKcS3_:0 + 0: 0 + 0.12: _ZN9oceanbase6common7ObLogKVIRKNS_4palf13FlushLogCbCtxELb0EEC2EPKcS5_:0 + 0: 0 + 0.14: _ZN9oceanbase6common7ObLogKVIRKNS_4palf3LSNELb0EEC2EPKcS5_:0 + 0: 0 + 0.16: _ZN9oceanbase6common7ObLogKVIRKNS_4palf3LSNELb0EEC2EPKcS5_:0 + 0: 0 + 0.18: _ZN9oceanbase6common7ObLogKVIRKNS0_11ObTimeGuardELb0EEC2EPKcS4_:0 + 0: 0 +_ZN9oceanbase8observer20ObInnerSQLConnection18execute_read_innerElmPKcRNS_6common12ObISQLClient10ReadResultEbb:526:1 + 6: 1 + 7: 1 + 17: 1 + 19: 1 + 20: 0 + 21.1: 0 + 22.1: 1 + 22.2: 1 + 24: 0 + 25.1: 0 + 26.1: 1 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:1 + 26.3: 1 + 28.2: 1 _ZNK9oceanbase3omt13ObMultiTenant19is_available_tenantEm:1 + 28.3: 2 + 31.1: 2 + 33: 0 + 35: 2 + 36.1: 2 + 36.2: 2 _ZN9oceanbase8observer20ObInnerSQLConnection13switch_tenantEm:2 + 36.3: 2 + 37.1: 0 + 38.2: 3 + 40.2: 3 _ZN9oceanbase8observer16ObInnerSQLResult4initEb:3 + 40.3: 0 + 41.1: 0 + 42.1: 0 + 44.2: 0 + 44.3: 1 + 46.1: 0 + 48.2: 0 + 49: 0 + 50.1: 0 + 54: 0 + 55: 0 + 59.1: 0 + 60.2: 0 + 60.4: 0 + 61: 0 + 62.1: 0 + 64.1: 0 + 64.3: 0 + 65: 0 + 66.1: 0 + 71: 0 + 71.1: 0 + 71.2: 0 + 73.1: 0 + 79: 0 + 79.2: 0 + 79.3: 0 + 80.1: 0 + 82: 0 + 84.1: 0 + 84.2: 0 + 84.3: 0 + 85.1: 0 + 90: 0 + 91.2: 0 + 91.3: 0 + 92: 0 + 93.1: 0 + 93.3: 0 + 94.2: 0 + 95: 0 + 101: 0 + 102: 0 + 103.1: 0 + 104.4: 0 + 105.1: 0 + 106.2: 0 + 106.4: 0 + 106.5: 0 + 106.6: 0 + 106.10: 0 + 106.11: 0 + 110.1: 0 + 111.3: 0 + 112.2: 0 + 113.1: 0 + 116.2: 0 + 116.3: 0 + 117.1: 0 + 118.2: 0 + 123.1: 0 + 126: 0 + 126.2: 0 + 127: 0 + 128: 1 + 131.35: 1 + 8: _ZN9oceanbase5trace16__ObFLTSpanGuardC2Ejh:24 + 2: 1 _ZN9oceanbase5trace7ObTrace12get_instanceEv:1 + 2.1: 1 _ZN9oceanbase5trace7ObTrace10begin_spanEjhb:1 + 16: _ZN9oceanbase8observer20ObInnerSQLConnection18ObSqlQueryExecutorC2EPKc:51 + 0: 1 + 0.1: 1 + 0.4: _ZN9oceanbase6common8ObString11make_stringEPKc:19 + 2: 1 + 2.2: 1 + 4: 1 + 28.1: _ZN9oceanbase8observer14global_contextEv:17 + 2: _ZN9oceanbase8observer8ObServer12get_instanceEv:17 + 2: 1 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 38.1: _ZN9oceanbase6common12ObISQLClient10ReadResult14create_handlerINS_8observer21ObInnerSQLReadContextEJNS4_20ObInnerSQLConnectionEEEEiRPT_DpRT0_:75 + 3: 2 + 4: 0 + 6: 2 _ZN9oceanbase8observer21ObInnerSQLReadContextC1ERNS0_20ObInnerSQLConnectionE:2 + 7: 3 + 40.1: _ZN9oceanbase8observer21ObInnerSQLReadContext10get_resultEv:12 + 0: 3 + 43.1: _ZN9oceanbase8observer16ObInnerSQLResult10result_setEv:0 + 0: 0 + 43.2: _ZN9oceanbase3sql11ObResultSet12set_user_sqlEb:0 + 0: 0 + 48.1: _ZNK9oceanbase8observer20ObInnerSQLConnection16is_resource_connEv:0 + 0: 0 + 53: _ZN9oceanbase8observer20ObInnerSQLConnection12TimeoutGuardC2ERS1_:0 + 1: 0 + 4: 0 + 4: _ZN9oceanbase3lib6Worker4selfEv:0 + 3: 0 + 4: 0 + 4.1: _ZNK9oceanbase3lib6Worker14get_timeout_tsEv:0 + 0: 0 + 5: _ZN9oceanbase8observer20ObInnerSQLConnection11get_sessionEv:0 + 0: 0 + 5.2: _ZNK9oceanbase3sql18ObBasicSessionInfo17get_query_timeoutERl:0 + 2: 0 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache20get_ob_query_timeoutEv:0 + 0: 0 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache20get_ob_query_timeoutEb:0 + 0: 0 + 6.2: _ZNK9oceanbase3sql18ObBasicSessionInfo14get_tx_timeoutERl:0 + 2: 0 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache18get_ob_trx_timeoutEv:0 + 0: 0 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache18get_ob_trx_timeoutEb:0 + 0: 0 + 59: _ZNK9oceanbase8observer20ObInnerSQLConnection11is_in_transEv:0 + 0: 0 + 60.1: _ZNK9oceanbase6common6ObAddr8is_validEv:0 + 3: 0 + 4: 0 + 5: 0 + 8.1: 0 + 9.1: 0 + 10: 0 + 13.1: 0 + 13.3: 0 + 14: 0 + 69: _ZN9oceanbase6common6ObAddrC2Ev:0 + 1: 0 + 70: _ZN9oceanbase5share6ObLSIDC2El:0 + 0: 0 + 71: _ZN9oceanbase5share6ObLSIDC2ERKS1_:0 + 0: 0 + 71.2: _ZN9oceanbase5share6ObLSIDD2Ev:0 + 0: _ZN9oceanbase5share6ObLSID5resetEv:0 + 0: 0 + 71.3: _ZN9oceanbase5share6ObLSIDD2Ev:0 + 0: _ZN9oceanbase5share6ObLSID5resetEv:0 + 0: 0 + 75: _ZN9oceanbase8observer20ObInnerSQLConnection16set_resource_svrERKNS_6common6ObAddrE:0 + 0: _ZN9oceanbase6common6ObAddraSERKS1_:0 + 1: 0 + 2: 0 + 3: 0 + 76: _ZN9oceanbase8observer20ObInnerSQLConnection20set_resource_conn_idEm:0 + 0: 0 + 83: _ZN9oceanbase6common5ObObjC2Ev:0 + 2: _ZN9oceanbase6common5ObObj5resetEv:0 + 6: 0 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:0 + 0: 0 + 84: _ZN9oceanbase8observer20ObInnerSQLConnection11get_sessionEv:0 + 0: 0 + 84.1: _ZN9oceanbase6common8ObStringC2EPKc:0 + 1: 0 + 3: 0 + 87: _ZNK9oceanbase6common5ObObj10get_uint64Ev:0 + 0: 0 + 91: _ZN9oceanbase8observer8ObServer12get_instanceEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 91.3: _ZNK9oceanbase8observer20ObInnerSQLConnection20get_resource_conn_idEv:0 + 0: 0 + 91.4: _ZN9oceanbase5obrpc21ObInnerSQLTransmitArgC2ENS_6common6ObAddrES3_mmNS2_8ObStringENS1_21InnerSQLOperationTypeEbllllmNS2_16ObSessionDDLInfoEb:0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 11: _ZN9oceanbase6common18ObTimeZoneInfoWrapC2Ev:0 + 1: 0 + 3: 0 + 5: 0 + 6: 0 + 7: 0 + 2: _ZN9oceanbase6common14ObTimeZoneInfoC2Ev:0 + 1: 0 + 2: 0 + 1: _ZN9oceanbase6common11ObTZMapWrapC2Ev:0 + 0: 0 + 11.1: _ZN9oceanbase6common8ObStringC2Ev:0 + 1: 0 + 92: _ZN9oceanbase6common8ObString11make_stringEPKc:0 + 2: 0 + 2.2: 0 + 4: 0 + 93: _ZNK9oceanbase8observer20ObInnerSQLConnection15get_compat_modeEv:0 + 3: _ZNK9oceanbase6common9sqlclient16ObISQLConnection21is_oracle_compat_modeEv:0 + 0: 0 + 94: _ZN9oceanbase3lib6Worker4selfEv:0 + 3: 0 + 4: 0 + 94.1: _ZNK9oceanbase3lib6Worker14get_timeout_tsEv:0 + 0: 0 + 96: _ZN9oceanbase8observer20ObInnerSQLConnection11get_sessionEv:0 + 0: 0 + 96.1: _ZNK9oceanbase3sql18ObBasicSessionInfo25get_local_nls_date_formatEv:0 + 2: 0 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache19get_nls_date_formatEv:0 + 0: 0 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache19get_nls_date_formatEb:0 + 0: 0 + 96.3: _ZN9oceanbase5obrpc21ObInnerSQLTransmitArg15set_nls_formatsERKNS_6common8ObStringES5_S5_:0 + 4: 0 + 5: 0 + 6: 0 + 97.1: _ZNK9oceanbase3sql18ObBasicSessionInfo30get_local_nls_timestamp_formatEv:0 + 2: 0 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_nls_timestamp_formatEv:0 + 0: 0 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_nls_timestamp_formatEb:0 + 0: 0 + 98.1: _ZNK9oceanbase3sql18ObBasicSessionInfo33get_local_nls_timestamp_tz_formatEv:0 + 2: 0 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache27get_nls_timestamp_tz_formatEv:0 + 0: 0 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache27get_nls_timestamp_tz_formatEb:0 + 0: 0 + 100.1: _ZN9oceanbase8observer16ObInnerSQLResult17remote_result_setEv:0 + 1: 0 + 100.2: _ZN9oceanbase3sql17ObRemoteResultSet18get_stream_handlerEv:0 + 0: 0 + 104.2: _ZNK9oceanbase3sql18ObBasicSessionInfo16get_tz_info_wrapEv:0 + 0: 0 + 104.3: _ZN9oceanbase5obrpc21ObInnerSQLTransmitArg16set_tz_info_wrapERKNS_6common18ObTimeZoneInfoWrapE:0 + 0: 0 + 106.1: _ZN9oceanbase8observer14global_contextEv:0 + 2: _ZN9oceanbase8observer8ObServer12get_instanceEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 106.3: _ZNK9oceanbase5obrpc18ObInnerSQLRpcProxy2toERKNS_6common6ObAddrE:0 + 0: _ZN9oceanbase5obrpc18ObInnerSQLRpcProxyC2ERKS1_:0 + 0: 0 + 0: _ZN9oceanbase5obrpc10ObRpcProxyC2ERKS1_:0 + 0: 0 + 0: _ZN9oceanbase5obrpc15ObRpcResultCodeC2ERKS1_:0 + 0: 0 + 0: _ZN9oceanbase6common9ObSEArrayINS0_15ObWarningBuffer11WarningItemELl2ENS0_19ModulePageAllocatorELb0EEC2ERKS5_:0 + 0: 0 + 0: _ZN9oceanbase6common13ObSEArrayImplINS0_15ObWarningBuffer11WarningItemELl2ENS0_19ModulePageAllocatorELb0EEC2ERKS5_:0 + 2: 0 + 3: 0 + 4: 0 + 6: 0 + 8: 0 + 10: 0 + 2: _ZN9oceanbase6common8ObIArrayINS0_15ObWarningBuffer11WarningItemEEC2EPS3_l:0 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_15ObWarningBuffer11WarningItemEEC2EPS3_l:0 + 0: 0 + 7.1: _ZN9oceanbase6common19ModulePageAllocatorC2ERKNS_3lib7ObLabelEll:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:0 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:0 + 2: 0 + 8: 0 + 16: _ZN9oceanbase6common13ObSEArrayImplINS0_15ObWarningBuffer11WarningItemELl2ENS0_19ModulePageAllocatorELb0EEaSERKS5_:0 + 4: 0 + 7: 0 + 8.1: 0 + 8.3: 0 + 8.5: 0 + 9: 0 + 13: 0 + 14: 0 + 15: 0 + 5: _ZN9oceanbase6common13ObSEArrayImplINS0_15ObWarningBuffer11WarningItemELl2ENS0_19ModulePageAllocatorELb0EE5reuseEv:0 + 8: 0 + 9: 0 + 6: _ZNK9oceanbase6common12ObIArrayWrapINS0_15ObWarningBuffer11WarningItemEE5countEv:0 + 0: 0 + 9: _ZN9oceanbase6common16construct_assignINS0_15ObWarningBuffer11WarningItemEEEiRT_RKS4_:0 + 2: _ZN9oceanbase6common21construct_assign_wrapINS0_15ObWarningBuffer11WarningItemEEEiRT_RKS4_NS0_8BoolTypeILb0EEE:0 + 2: 0 + 0.6: _ZN9oceanbase5obrpc10ObRpcProxy10set_serverERKNS_6common6ObAddrE:0 + 0: _ZN9oceanbase6common6ObAddraSERKS1_:0 + 1: 0 + 2: 0 + 3: 0 + 106.4: _ZN9oceanbase5obrpc18ObInnerSQLRpcProxy14dst_cluster_idEl:0 + 0: _ZN9oceanbase5obrpc10ObRpcProxy15set_dst_clusterEl:0 + 0: 0 + 106.5: _ZN9oceanbase5obrpc18ObInnerSQLRpcProxy2byEm:0 + 0: _ZN9oceanbase5obrpc10ObRpcProxy10set_tenantEm:0 + 0: 0 + 106.6: _ZN9oceanbase5obrpc18ObInnerSQLRpcProxy7timeoutEl:0 + 0: _ZN9oceanbase5obrpc10ObRpcProxy11set_timeoutEl:0 + 0: 0 + 106.7: _ZN9oceanbase5obrpc25ObInnerSqlRpcStreamHandle10get_resultEv:0 + 3: 0 + 4.1: 0 + 3: _ZN9oceanbase5obrpc24ObInnerSQLTransmitResult17is_scanner_initedEv:0 + 0: _ZNK9oceanbase6common9ObScanner9is_initedEv:0 + 0: 0 + 106.8: _ZN9oceanbase5obrpc25ObInnerSqlRpcStreamHandle10get_handleEv:0 + 0: 0 + 106.9: _ZN9oceanbase5obrpc9ObRpcOptsC2Ev:0 + 1: 0 + 2: 0 + 3: 0 + 8: 0 + 5: _ZN9oceanbase6common6ObAddrC2Ev:0 + 1: 0 + 6: _ZN9oceanbase6common8ObStringC2Ev:0 + 1: 0 + 106.11: _ZN9oceanbase5obrpc10ObRpcProxyD2Ev:0 + 0: 0 + 0: _ZN9oceanbase5obrpc15ObRpcResultCodeD2Ev:0 + 0: _ZN9oceanbase6common13ObSEArrayImplINS0_15ObWarningBuffer11WarningItemELl2ENS0_19ModulePageAllocatorELb0EED2Ev:0 + 1: 0 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS0_15ObWarningBuffer11WarningItemELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv:0 + 9: 0 + 11: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplINS0_15ObWarningBuffer11WarningItemELl2ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 106.13: _ZN9oceanbase5obrpc10ObRpcProxyD2Ev:0 + 0: 0 + 0: _ZN9oceanbase5obrpc15ObRpcResultCodeD2Ev:0 + 0: _ZN9oceanbase6common13ObSEArrayImplINS0_15ObWarningBuffer11WarningItemELl2ENS0_19ModulePageAllocatorELb0EED2Ev:0 + 1: 0 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS0_15ObWarningBuffer11WarningItemELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv:0 + 9: 0 + 11: 0 + 13: 0 + 15: 0 + 24: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplINS0_15ObWarningBuffer11WarningItemELl2ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 111.1: _ZN9oceanbase5obrpc25ObInnerSqlRpcStreamHandle10get_resultEv:0 + 3: 0 + 4.1: 0 + 3: _ZN9oceanbase5obrpc24ObInnerSQLTransmitResult17is_scanner_initedEv:0 + 0: _ZNK9oceanbase6common9ObScanner9is_initedEv:0 + 0: 0 + 111.2: _ZNK9oceanbase5obrpc24ObInnerSQLTransmitResult12get_err_codeEv:0 + 0: 0 + 114.2: _ZN9oceanbase8observer16ObInnerSQLResult17remote_result_setEv:0 + 1: 0 + 114.4: _ZNK9oceanbase5obrpc24ObInnerSQLTransmitResult13get_stmt_typeEv:0 + 0: 0 + 114.5: _ZN9oceanbase3sql17ObRemoteResultSet13set_stmt_typeENS0_4stmt8StmtTypeE:0 + 0: 0 + 118.3: _ZN9oceanbase3lib13is_mysql_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 118.4: _ZN9oceanbase8observer16ObInnerSQLResult11set_is_readEb:0 + 0: 0 + 120.1: _ZN9oceanbase8observer20ObInnerSQLConnection11get_sessionEv:0 + 0: 0 + 120.2: _ZN9oceanbase3sql16ObSQLSessionInfo14set_trans_typeENS_11transaction9ObTxClassE:0 + 0: 0 + 122: _ZN9oceanbase5obrpc21ObInnerSQLTransmitArgD2Ev:0 + 0: _ZN9oceanbase6common18ObTimeZoneInfoWrapD2Ev:0 + 0: 0 + 0.1: _ZN9oceanbase6common17ObTimeZoneInfoPosD2Ev:0 + 0: 0 + 0.1: 0 + 0.3: 0 + 122.2: _ZN9oceanbase5obrpc21ObInnerSQLTransmitArgD2Ev:0 + 0: _ZN9oceanbase6common18ObTimeZoneInfoWrapD2Ev:0 + 0: 0 + 0.1: _ZN9oceanbase6common17ObTimeZoneInfoPosD2Ev:0 + 0: 0 + 0.1: 0 + 0.3: 0 + 123: _ZNK9oceanbase8observer20ObInnerSQLConnection11is_in_transEv:0 + 0: 0 + 124: _ZN9oceanbase8observer20ObInnerSQLConnection24reset_resource_conn_infoEv:0 + 1: 0 + 1: _ZN9oceanbase6common6ObAddr5resetEv:0 + 2: 0 + 131.37: _ZN9oceanbase5trace16__ObFLTSpanGuardD2Ev:0 + 0: 0 + 0.1: 0 + 0.2: 0 + 0.4: 0 + 0.5: 0 + 0.7: 0 + 0.8: 0 + 0.12: 0 + 0.3: _ZNK9oceanbase5trace4UUID9is_initedEv:0 + 0: 0 + 0.1: 0 + 0.6: _ZN9oceanbase5trace7ObTrace13is_auto_flushEv:0 + 0: 0 + 131.39: _ZN9oceanbase5trace16__ObFLTSpanGuardD2Ev:4 + 0: 1 + 0.1: 0 + 0.2: 0 + 0.4: 0 + 0.5: 0 + 0.7: 0 + 0.8: 0 + 0.12: 0 + 0.3: _ZNK9oceanbase5trace4UUID9is_initedEv:0 + 0: 0 + 0.1: 0 + 0.6: _ZN9oceanbase5trace7ObTrace13is_auto_flushEv:0 + 0: 0 +_ZN9oceanbase3lib13ObResourceMgr23get_tenant_resource_mgrEmRNS0_25ObTenantResourceMgrHandleE:526:2 + 2: 2 + 3: 2 + 5: 2 + 6: 0 + 7.1: 0 + 8.1: 2 + 9: 0 + 10.1: 0 + 12: 2 + 13: 2 + 15: 2 + 16: 0 + 16.1: 1 + 18.1: 0 + 20: 0 + 22.1: 1 + 22.2: 1 + 23.1: 0 + 25.1: 0 + 27: 1 + 27.1: 1 + 28: 0 + 30: 0 + 30.1: 0 + 32.1: 0 + 34: 0 + 35: 0 + 35.1: 0 + 36.1: 0 + 40: 0 + 41: 0 + 41.1: 0 + 42.1: 0 + 45: 0 + 45.1: 0 + 47: 1 + 4: _ZN9oceanbase3lib25ObTenantResourceMgrHandle5resetEv:24 + 2: 0 + 3: 0 + 5: 0 + 2: _ZNK9oceanbase3lib25ObTenantResourceMgrHandle8is_validEv:24 + 2: 2 + 2.1: 0 + 15: _ZN9oceanbase6common14SpinRLockGuardC2ERKNS0_10SpinRWLockE:61 + 1: 2 + 3: 1 + 4.1: 0 + 3: _ZN9oceanbase6common10SpinRWLock6rdlockEl:42 + 0: 2 _ZN9oceanbase6common7ObLatch6rdlockEjl:2 + 16: _ZN9oceanbase3lib13ObResourceMgr30get_tenant_resource_mgr_unsafeEmRPNS0_19ObTenantResourceMgrE:81 + 3: 1 + 4: 1 + 5: 1 + 6: 0 + 7.1: 0 + 8.1: 1 + 9: 0 + 10.1: 0 + 12: 1 + 13: 1 + 14.1: 1 + 15: 1 + 16: 1 + 18: 0 + 25: 1 + 22.1: _ZN9oceanbase3lib25ObTenantResourceMgrHandle4initEPNS0_13ObResourceMgrEPNS0_19ObTenantResourceMgrE:45 + 5: 1 + 6: 0 + 7: 0 + 8.1: 0 + 9.1: 1 + 10: 0 + 11.1: 0 + 13: 1 + 14: 1 + 17: 1 + 6: _ZNK9oceanbase3lib25ObTenantResourceMgrHandle8is_validEv:6 + 2: 1 + 2.1: 0 + 15: _ZN9oceanbase3lib13ObResourceMgr7inc_refEPNS0_19ObTenantResourceMgrE:9 + 3: 1 + 25: _ZN9oceanbase6common14SpinRLockGuardD2Ev:24 + 2: 1 + 3: 1 + 3.1: 1 + 4.1: 0 + 3: _ZN9oceanbase6common10SpinRWLock6unlockEv:3 + 0: 1 _ZN9oceanbase6common7ObLatch6unlockEPKj:1 + 27.1: _ZNK9oceanbase3lib25ObTenantResourceMgrHandle8is_validEv:13 + 2: 1 + 2.1: 1 +_ZZN9oceanbase4palf22BatchLogIOFlushLogTask9push_backEPNS0_17LogIOFlushLogTaskEENK5$_723clEPKc.1598dc2348996c1ae1caea6120522988:522:9 + 0: 9 + 0.1: 0 + 0.2: 9 + 0.3: 9 _ZN9oceanbase6common8ObLogger13need_to_printEmi:9 + 0.7: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:153 + 2: 9 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.5: _ZN9oceanbase6common20ObLogPrintPointerCntIPNS_4palf22BatchLogIOFlushLogTaskEEC2ES4_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVINS0_20ObLogPrintPointerCntIPNS_4palf22BatchLogIOFlushLogTaskEEELb1EEC2EPKcOKS6_:0 + 0: 0 +_ZZN9oceanbase4palf17LogIOFlushLogTask7destroyEvENK5$_665clEPKc.1598dc2348996c1ae1caea6120522988:522:10 + 0: 9 + 0.1: 0 + 0.2: 9 + 0.3: 9 _ZN9oceanbase6common8ObLogger13need_to_printEmi:9 + 0.4: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:153 + 2: 9 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.1: _ZN9oceanbase6common7ObLogKVIPKvLb1EEC2EPKcOKS3_:0 + 0: 0 +_ZN9oceanbase7storage23ObTenantTabletScheduler17schedule_ls_mergeERlRNS0_4ObLSERbS5_:522:0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 9.1: 0 + 10.1: 0 + 11.1: 0 + 13.2: 0 + 14.1: 0 + 18: 0 + 19: 0 + 21: 0 + 22: 0 + 26: 0 + 27: 0 + 27.1: 0 + 30: 0 + 34.1: 2 + 35: 2 + 36: 2 _ZN9oceanbase7storage18ObLSTabletIterator15get_next_tabletERNS0_14ObTabletHandleE:2 + 36.1: 1 + 38: 0 + 41.1: 0 + 44: 0 + 45.1: 0 + 47.2: 1 + 49.1: 0 + 50.2: 0 + 50.3: 0 + 54: 0 + 56.1: 0 + 60: 1 + 60.3: 1 + 61: 1 + 61.3: 1 _ZN9oceanbase7storage23ObTenantTabletScheduler27schedule_tablet_minor_mergeENS_5share6ObLSIDERNS0_8ObTabletE:1 + 61.4: 1 + 65.1: 0 + 68: 1 + 68.2: 4 + 69.2: 1 + 69.4: 1 _ZN9oceanbase7storage23ObTenantTabletScheduler27schedule_tablet_major_mergeERlRNS0_4ObLSERNS0_8ObTabletERbRNS1_20ObScheduleStatisticsEb:1 + 69.5: 4 + 75: 0 + 76: 0 + 79.1: 0 + 82: 4 + 85: 4 + 86: 4 + 87.1: 4 + 88.2: 4 _ZN9oceanbase7storage19ObFastFreezeChecker22check_need_fast_freezeERKNS0_8ObTabletERb:4 + 88.3: 2 + 89.1: 0 + 90.1: 2 + 91.1: 0 + 91.2: 0 + 92.1: 0 + 99: 0 + 99.1: 0 + 100: 0 + 101.16: 0 + 101.17: 0 + 13.1: _ZN9oceanbase7storage4ObLS17build_tablet_iterIJRNS0_18ObLSTabletIteratorEEEEiDpOT_:0 + 0: 0 + 0.1: 0 + 16: _ZNK9oceanbase7storage4ObLS9get_ls_idEv:0 + 0: _ZN9oceanbase5share6ObLSIDC2ERKS1_:0 + 0: 0 + 17: _ZN9oceanbase6common10ObTabletIDC2Em:0 + 0: 0 + 43.1: _ZNK9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE8is_validEv:22 + 2: 1 + 46.3: _ZN9oceanbase6common10ObTabletIDaSERKS1_:11 + 0: 1 + 60.2: _ZN9oceanbase5share6ObLSIDD2Ev:8 + 0: _ZN9oceanbase5share6ObLSID5resetEv:8 + 0: 1 + 60.5: _ZN9oceanbase5share6ObLSIDD2Ev:0 + 0: _ZN9oceanbase5share6ObLSID5resetEv:0 + 0: 0 + 61.1: _ZN9oceanbase5share6ObLSIDC2ERKS1_:8 + 0: 1 + 69.1: _ZNK9oceanbase7storage23ObTenantTabletScheduler23could_major_merge_startEv:5 + 0: 1 + 69.3: _ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE7get_objEv:18 + 2: 1 + 87: _ZNK9oceanbase7storage19ObFastFreezeChecker10need_checkEv:32 + 0: 4 + 88.1: _ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE7get_objEv:56 + 2: 4 + 91: _ZN9oceanbase5share11ObTenantEnv3mtlIPNS_7storage15ObTenantFreezerEEET_v:0 + 2: 0 + 2.1: _ZN9oceanbase5share12ObTenantBase3getIPNS_7storage15ObTenantFreezerEEET_v:0 + 0: _ZN9oceanbase5share12ObTenantBase9inner_getENS1_8IdentityIPNS_7storage15ObTenantFreezerEEE:0 + 0: 0 +_ZZN9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE5slideElPNS0_16ISlidingCallBackEENKUlPKcE5_clES7_:520:8 + 0: 8 + 0.1: 0 + 0.2: 8 + 0.3: 8 _ZN9oceanbase6common8ObLogger13need_to_printEmi:8 + 0.7: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:136 + 2: 8 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 +_ZZN9oceanbase4palf16LogSlidingWindow15after_flush_logERKNS0_13FlushLogCbCtxEENK5$_173clEPKc.0e4bf25207570af14a78557c8489c4fc:520:8 + 0: 8 + 0.1: 0 + 0.2: 8 + 0.3: 8 _ZN9oceanbase6common8ObLogger13need_to_printEmi:8 + 0.9: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:136 + 2: 8 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS0_6ObAddrELb0EEC2EPKcS4_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKNS_4palf13FlushLogCbCtxELb0EEC2EPKcS5_:0 + 0: 0 +_ZN9oceanbase10logservice12ObLogService13get_palf_roleERKNS_5share6ObLSIDERNS_6common6ObRoleERl:516:3 + 3: 3 + 4: 3 + 6: 3 + 7: 0 + 8.1: 0 + 9.1: 3 _ZN9oceanbase10logservice12ObLogService9open_palfERKNS_5share6ObLSIDERNS_4palf15PalfHandleGuardE:3 + 9.2: 4 + 10.1: 0 + 11.2: 4 + 12.1: 0 + 14: 4 + 15.4: 5 + 5: _ZN9oceanbase4palf15PalfHandleGuardC2Ev:27 + 0: 3 _ZN9oceanbase4palf10PalfHandleC1Ev:3 + 11.1: _ZN9oceanbase4palf15PalfHandleGuard8get_roleERNS_6common6ObRoleERl:28 + 3: 4 _ZNK9oceanbase4palf10PalfHandle8get_roleERNS_6common6ObRoleERlRb:5 + 15.4: _ZN9oceanbase4palf15PalfHandleGuardD2Ev:121 + 3: 5 _ZN9oceanbase4palf10PalfHandleD1Ev:5 + 2: _ZN9oceanbase4palf15PalfHandleGuard5resetEv:96 + 2: 4 + 4: 4 _ZN9oceanbase4palf7PalfEnv5closeERNS0_10PalfHandleE:5 + 5: 5 + 15.5: _ZN9oceanbase4palf15PalfHandleGuardD2Ev:0 + 3: 0 + 2: _ZN9oceanbase4palf15PalfHandleGuard5resetEv:0 + 2: 0 + 4: 0 + 5: 0 +_ZN9oceanbase4palf22BatchLogIOFlushLogTask7do_taskEiPNS0_11PalfEnvImplE:515:10 + 1: 8 + 2: 8 + 4: 8 + 5: 0 + 6.1: 0 + 7.1: 8 + 7.2: 0 + 8: 0 + 9.1: 0 + 10.1: 8 _ZN9oceanbase4palf22BatchLogIOFlushLogTask8do_task_EiPNS0_11PalfEnvImplE:8 + 11.1: 0 + 15: 3 + 7.2: _ZNK9oceanbase6common12ObIArrayWrapIPNS_4palf17LogIOFlushLogTaskEE5emptyEv:0 + 0: 0 + 12: _ZN9oceanbase4palf22BatchLogIOFlushLogTask13clear_memory_EPNS0_11PalfEnvImplE:0 + 3.1: 0 + 3.3: 0 + 4: 0 + 5: 0 + 6: 0 + 6.1: 0 + 2: _ZNK9oceanbase6common12ObIArrayWrapIPNS_4palf17LogIOFlushLogTaskEE5countEv:0 + 0: 0 + 4: _ZN9oceanbase6common16ObFixedArrayImplIPNS_4palf17LogIOFlushLogTaskENS0_12ObIAllocatorEEixEl:0 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_4palf17LogIOFlushLogTaskEE2atEl:0 + 6: 0 +_ZN9oceanbase6common19ObTableAccessHelper12AccessHelperILi3ELi4EJlNS0_14ObStringHolderES3_S3_EE28get_values_to_tuple_from_rowEPNS0_9sqlclient13ObMySQLResultERA4_PKcRNS0_7ObTupleIJlS3_S3_S3_EEE:512:0 + 3: 0 + 6: 0 + 8: 0 + 8.1: 0 + 8.2: 0 + 8.4: 1 + 8.5: 1 + 8.6: 0 + 9.2: 0 + 9.3: 0 + 9.5: 0 + 9.6: 0 + 9.9: 0 + 9.13: 0 + 11: 1 _ZN9oceanbase6common19ObTableAccessHelper12AccessHelperILi2ELi4EJlNS0_14ObStringHolderES3_S3_EE28get_values_to_tuple_from_rowEPNS0_9sqlclient13ObMySQLResultERA4_PKcRNS0_7ObTupleIJlS3_S3_S3_EEE:1 + 11.1: 0 + 14: 0 + 15.5: 1 + 15.6: 0 + 4.2: _ZN9oceanbase6common5occam25get_file_name_without_dirIcLm44EEEPKT_RAT0__S4_m:433 + 3: 16 + 3.3: 15 + 3.4: 15 + 3.7: 0 + 382: 0 + 4.3: _ZN9oceanbase6common5occam16TimeGuardFactory10make_guardEllPKcS4_lS4_:44 + 6: 1 _ZN9oceanbase6common5occam26ObOccamTimeGuardDetectHungC2EjjPKcS4_S4_t:1 + 9.1: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 9.4: _ZN9oceanbase6common7ObLogKVIiLb0EEC2EPKcRKi:0 + 0: 0 + 9.6: _ZN9oceanbase6common7ObLogKVIPKcLb1EEC2ES3_OKS3_:0 + 0: 0 + 9.7: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 9.8: _ZNK9oceanbase5share12ObTenantBase2idEv:0 + 0: 0 + 9.10: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 + 9.12: _ZN9oceanbase6common7ObLogKVIRKPKcLb0EEC2ES3_S5_:0 + 0: 0 +_ZN9oceanbase6common12ObMemoryDump6handleEPv:511:0 + 1: 0 + 2: 0 + 4: 0 + 5.1: 0 + 7: 0 + 8: 0 + 9.1: 0 + 10.1: 0 + 11: 0 + 12: 0 + 13: 0 + 14: 0 + 15: 0 + 16: 0 + 17: 0 + 20: 0 + 23: 0 + 24.1: 0 + 24.3: 0 + 25: 0 + 26.1: 1 + 26.3: 1 + 28: 1 + 29: 1 + 32: 1 + 33: 1 + 34: 1 + 35: 1 + 36: 1 _ZN9oceanbase3lib20ObTenantCtxAllocator10get_chunksEPPNS0_6AChunkEiRi:1 + 40.1: 2 + 40.3: 2 + 41: 1 + 42: 1 + 75: 1 + 76: 1 _ZN9oceanbase6common18do_with_segv_catchIRZNS0_12ObMemoryDump6handleEPvE4$_22EEvOT_RbRDTclfL0p_EE.a1b49044713ee2b295a5be406ce610bf:1 + 77: 2 + 78.1: 0 + 79: 0 + 83: 2 + 84: 2 + 85: 2 + 86: 2 + 87: 2 + 88: 2 + 90: 2 + 91.1: 0 + 94: 2 + 94.1: 2 + 95: 1 _ZN9oceanbase6common15databuff_printfEPclRlPKcz:1 + 97: 1 + 98: 1 + 102: 0 + 103: 0 + 107: 0 + 108.1: 0 + 110: 0 + 111: 0 + 112: 0 + 114: 0 + 115.1: 0 + 118: 0 + 119: 0 + 121: 0 + 124: 0 + 126: 0 + 127.1: 0 + 129: 0 + 130: 0 + 132: 0 + 134: 0 + 135: 0 + 137: 0 + 138: 0 + 139: 0 + 140: 0 + 141: 0 + 142: 0 + 143: 0 + 149: 0 + 150: 0 + 151: 0 + 152.1: 0 + 156: 0 + 157: 0 + 158: 0 + 158.1: 0 + 159.1: 0 + 160: 0 + 160.1: 0 + 161: 0 + 162: 0 + 163: 0 + 166: 0 + 167: 0 + 168: 0 + 171.1: 0 + 173: 0 + 175.1: 0 + 175.3: 0 + 176: 0 + 177: 0 + 178: 0 + 196: 0 + 197: 0 + 198: 0 + 199.1: 0 + 203: 0 + 204: 0 + 208: 0 + 209: 0 + 212: 0 + 213: 0 + 215: 0 + 13: _ZSt4sortIPmEvT_S1_:0 + 9.1: 0 + 28: _ZN9oceanbase3lib17ObMallocAllocator12get_instanceEv:14 + 2: 1 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 28.1: _ZNK9oceanbase3lib17ObMallocAllocator24get_tenant_ctx_allocatorEmm:38 + 3: 1 + 4: 1 + 7: 0 + 9: 0 + 10.1: 0 + 10.3: 0 + 10.4: 0 + 13.2: 0 + 16.1: 0 + 8: _ZN9oceanbase5obsys12ObRLockGuardC2ERKNS0_8ObRWLockEb:0 + 0: _ZNK9oceanbase5obsys8ObRWLock5rlockEv:0 + 0: 0 + 0.1: _ZN9oceanbase5obsys15ObLockGuardBaseINS0_7ObRLockEEC2ERKS2_b:0 + 0: 0 + 2.1: 0 + 2.3: 0 + 39: _ZN9oceanbase6common4hash9ObHashMapINS0_8ObStringENS0_13LabelInfoItemENS1_24LatchReadWriteDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_S4_EEEELi82ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE5clearEv:1 + 2: 1 _ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_NS0_13LabelInfoItemEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS6_EELi82ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE5clearEv:1 + 120: _ZSt4swapIPN9oceanbase6common12ObMemoryDump4StatEEvRT_S6_:0 + 9: 0 + 10: 0 + 173: _ZSt4sortIPPN9oceanbase3lib6AChunkEEvT_S5_:0 + 9.1: 0 +_ZNK9oceanbase7storage8ObLSMeta20get_migration_statusERNS0_17ObMigrationStatusE:509:4 + 1: 3 + 2: 3 + 3: 3 + 4.1: 2 + 5: 0 + 6.1: 0 + 8: 2 + 10: 2 + 11.2: 2 + 3: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEEC2ERS3_:91 + 1: 3 + 4: 4 + 5.1: 0 + 4: _ZN9oceanbase6common10ObSpinLock4lockEv:51 + 2: 3 _ZN9oceanbase6common12ObLatchMutex4lockEjl:3 + 4: _ZNK9oceanbase7storage8ObLSMeta8is_validEv:238 + 3: 4 + 4: 4 + 4.1: 4 + 5: 4 + 5.1: 4 + 6: 4 + 6.1: 4 _ZN9oceanbase10logservice11ObGCHandler20is_valid_ls_gc_stateERKNS0_9LSGCStateE:4 + 7: 2 + 2: _ZN9oceanbase6common11is_valid_idEm:32 + 2: 4 + 3.1: _ZNK9oceanbase5share6ObLSID8is_validEv:32 + 0: 4 + 7.1: _ZNK9oceanbase5share17ObLSRestoreStatus8is_validEv:14 + 0.1: 2 + 11.2: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEED2Ev:36 + 2: 2 + 3: 2 + 3.1: 2 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase6common10ObSpinLock6unlockEv:2 + 2: 2 _ZN9oceanbase6common12ObLatchMutex6unlockEv:2 + 11.3: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEED2Ev:0 + 2: 0 + 3: 0 + 3.1: 0 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase6common10ObSpinLock6unlockEv:0 + 2: 0 +_ZN9oceanbase7storage16ObUndoStatusList12deserialize_EPKclRlRNS_6common12ObSliceAllocE:504:3 + 4: 3 + 5: 3 + 6: 0 + 8.1: 3 + 8.3: 3 + 8.6: 0 + 8.7: 0 + 8.15: 0 + 9.1: 3 + 9.3: 3 + 10.3: 0 + 10.6: 0 + 10.7: 0 + 10.15: 0 + 12: 0 + 12.1: 0 + 14: 0 + 14.1: 0 + 15: 0 + 16.1: 0 + 21: 0 + 22: 0 + 23: 0 + 27: 0 + 31.11: 3 + 7: _ZN9oceanbase11transaction12ObUndoActionC2Ev:30 + 0: _ZN9oceanbase11transaction12ObUndoAction5resetEv:30 + 3: 3 + 8.2: _ZN9oceanbase6common13serialization6decodeEPKclRlRi:168 + 2: 3 + 3: _ZN9oceanbase6common13serialization11decode_vi32EPKclRlPi:141 + 5: 3 + 6.2: 3 + 6.3: 3 + 7: 0 + 11: 0 + 12: 0 + 15: 3 + 18: 3 + 19: 3 + 20: 3 + 8.5: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 8.8: _ZN9oceanbase6common7ObLogKVIRA15_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 8.10: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 8.12: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 8.14: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 10.2: _ZN9oceanbase6common13serialization6decodeINS_11transaction12ObUndoActionEEEiPKclRlRT_:0 + 2: _ZN9oceanbase6common13serialization11EnumEncoderILb0ENS_11transaction12ObUndoActionEE6decodeEPKclRlRS4_:0 + 2: 0 + 10.5: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 10.8: _ZN9oceanbase6common7ObLogKVIRA7_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 10.10: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 10.12: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 10.14: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 18: _ZN9oceanbase7storage16ObUndoStatusNodeC2Ev:0 + 0: 0 +_ZN9oceanbase6common9ob_pwriteEiPKcll:499:0 + 1: 0 + 5.1: 11 + 6: 0 + 7: 11 + 8: 0 + 16: 11 + 19: 10 +_ZZN9oceanbase4palf16LogSlidingWindow25set_last_submit_log_info_ERKNS0_3LSNES4_lRKlENK5$_185clEPKc.0e4bf25207570af14a78557c8489c4fc:498:6 + 0: 6 + 0.1: 0 + 0.2: 6 + 0.3: 6 _ZN9oceanbase6common8ObLogger13need_to_printEmi:6 + 0.15: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:102 + 2: 6 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS0_6ObAddrELb0EEC2EPKcS4_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVIRKNS_4palf3LSNELb0EEC2EPKcS5_:0 + 0: 0 + 0.12: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.14: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase7storage16ObTxCtxTableInfo5resetEv:498:2 + 1: 2 + 4: 2 + 5: 2 _ZN9oceanbase7storage8ObTxData5resetEv:2 + 7: 2 _ZN9oceanbase11transaction9tablelock15ObTableLockInfo5resetEv:2 + 2: _ZN9oceanbase11transaction9ObTransID5resetEv:14 + 0: 2 + 6: _ZN9oceanbase11transaction12ObTxExecInfo5resetEv:404 + 2: 2 + 4: 2 + 5: 2 + 6: 2 _ZN9oceanbase4palf3LSN5resetEv:2 + 7: 2 + 9: 2 + 11: 2 + 13: 2 + 14: 2 + 16: 2 + 18: 2 _ZN9oceanbase4palf3LSN5resetEv:2 + 19: 2 + 22: 2 + 23: 2 + 24: 2 _ZN9oceanbase11transaction11ObXATransID5resetEv:2 + 25: 2 + 3: _ZN9oceanbase5share6ObLSID5resetEv:16 + 0: 2 + 4: _ZN9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EE5resetEv:10 + 0: 2 _ZN9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EE7destroyEv:2 + 5: _ZN9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EE5resetEv:16 + 0: 2 _ZN9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EE7destroyEv:2 + 7: _ZN9oceanbase6common13ObSEArrayImplINS_4palf3LSNELl10ENS0_19ModulePageAllocatorELb0EE5resetEv:16 + 0: 2 _ZN9oceanbase6common13ObSEArrayImplINS_4palf3LSNELl10ENS0_19ModulePageAllocatorELb0EE7destroyEv:2 + 8: _ZN9oceanbase6common6ObAddr5resetEv:20 + 2: 2 + 22: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EE5resetEv:16 + 0: 2 _ZN9oceanbase6common13ObSEArrayImplINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:2 + 23: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction11ObLSLogInfoELl10ENS0_19ModulePageAllocatorELb0EE5resetEv:16 + 0: 2 _ZN9oceanbase6common13ObSEArrayImplINS_11transaction11ObLSLogInfoELl10ENS0_19ModulePageAllocatorELb0EE7destroyEv:2 +_ZN9oceanbase6common12ObLatchMutex4waitElj:497:8 + 1: 8 + 4: 8 _ZN9oceanbase6common21ObDiagnoseSessionInfo23get_local_diagnose_infoEv:8 + 9: 7 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:7 + 10: 2 + 14: 2 + 15: 0 + 17: 1 + 18: 1 + 18.1: 0 + 19: 1 + 19.1: 0 + 20: 0 + 35: 4 + 20: _ZN9oceanbase3lib7ObFutex4waitEil:36 + 3: 0 + 4.1: 0 + 6: 0 + 12.1: 4 + 3: _ZL13make_timespecl:0 + 4: 0 + 5: _Z10futex_waitPViiPK8timespec:16 + 3: 4 + 4: 0 + 25: _ZN9oceanbase6common12ObLatchMutex12low_try_lockElj:96 + 4: 4 + 5: 4 + 9: 0 +_ZN9oceanbase4palf10PalfHandleD2Ev:496:18 + 1: 16 + 3: 16 + 6: 16 +_ZN9oceanbase4palf10PalfHandleD1Ev:496:18 + 1: 16 + 3: 16 + 6: 16 +_ZNK9oceanbase11transaction7ObTxMsg19get_serialize_size_Ev:493:1 + 0: 1 + 0: _ZN9oceanbase6common13serialization14encoded_lengthEs:6 + 2: _ZN9oceanbase6common13serialization19encoded_length_vi32Ei:6 + 4: 1 + 6.1: 0 + 8.1: 0 + 0.1: _ZN9oceanbase6common13serialization14encoded_lengthEl:60 + 2: _ZN9oceanbase6common13serialization19encoded_length_vi64El:60 + 4: 1 + 6.1: 1 + 8.1: 1 + 10.1: 1 + 12.1: 1 + 14.1: 0 + 16.1: 0 + 18.1: 0 + 0.2: _ZN9oceanbase6common13serialization14encoded_lengthEm:27 + 2: _ZN9oceanbase6common13serialization19encoded_length_vi64El:27 + 4: 1 + 6.1: 1 + 8.1: 0 + 10.1: 0 + 12.1: 0 + 14.1: 0 + 16.1: 0 + 18.1: 0 + 0.3: _ZN9oceanbase6common13serialization14encoded_lengthINS_11transaction9ObTransIDEEElRKT_:5 + 2: _ZN9oceanbase6common13serialization11EnumEncoderILb0ENS_11transaction9ObTransIDEE14encoded_lengthERKS4_:5 + 2: 1 _ZNK9oceanbase11transaction9ObTransID18get_serialize_sizeEv:1 + 0.4: _ZN9oceanbase6common13serialization14encoded_lengthINS_5share6ObLSIDEEElRKT_:5 + 2: _ZN9oceanbase6common13serialization11EnumEncoderILb0ENS_5share6ObLSIDEE14encoded_lengthERKS4_:5 + 2: 1 _ZNK9oceanbase5share6ObLSID18get_serialize_sizeEv:1 + 0.5: _ZN9oceanbase6common13serialization14encoded_lengthINS0_6ObAddrEEElRKT_:4 + 2: _ZN9oceanbase6common13serialization11EnumEncoderILb0ENS0_6ObAddrEE14encoded_lengthERKS3_:4 + 2: 1 _ZNK9oceanbase6common6ObAddr18get_serialize_sizeEv:1 + 0.6: _ZN9oceanbase6common13serialization14encoded_lengthINS_5share6ObLSIDEEElRKT_:1 + 2: _ZN9oceanbase6common13serialization11EnumEncoderILb0ENS_5share6ObLSIDEE14encoded_lengthERKS4_:1 + 2: 1 _ZNK9oceanbase5share6ObLSID18get_serialize_sizeEv:1 + 0.7: _ZN9oceanbase6common13serialization14encoded_lengthEl:113 + 2: _ZN9oceanbase6common13serialization19encoded_length_vi64El:113 + 4: 1 + 6.1: 1 + 8.1: 1 + 10.1: 1 + 12.1: 1 + 14.1: 1 + 16.1: 1 + 18.1: 1 + 0.8: _ZN9oceanbase6common13serialization14encoded_lengthEl:111 + 2: _ZN9oceanbase6common13serialization19encoded_length_vi64El:111 + 4: 1 + 6.1: 1 + 8.1: 1 + 10.1: 1 + 12.1: 1 + 14.1: 1 + 16.1: 1 + 18.1: 1 + 0.9: _ZN9oceanbase6common13serialization14encoded_lengthEl:8 + 2: _ZN9oceanbase6common13serialization19encoded_length_vi64El:8 + 4: 1 + 6.1: 0 + 8.1: 0 + 10.1: 0 + 12.1: 0 + 14.1: 0 + 16.1: 0 + 18.1: 0 + 0.10: _ZN9oceanbase6common13serialization14encoded_lengthEl:8 + 2: _ZN9oceanbase6common13serialization19encoded_length_vi64El:8 + 4: 1 + 6.1: 0 + 8.1: 0 + 10.1: 0 + 12.1: 0 + 14.1: 0 + 16.1: 0 + 18.1: 0 +_ZN9oceanbase6common19ObTableAccessHelper20get_values_from_row_ILi0ELi1ElJEEEiPNS0_9sqlclient13ObMySQLResultERAT0__PKcRT1_DpRT2_:493:1 + 4: 1 + 6: 0 + 7: 0 + 7.1: 0 + 7.2: 0 + 7.3: 0 + 7.4: 0 + 8.1: 0 + 8.2: 0 + 8.3: 0 + 8.5: 0 + 8.6: 0 + 8.7: 0 + 8.9: 0 + 8.11: 0 + 8.15: 0 + 9.1: 0 + 9.2: 0 + 9.4: 0 + 12.1: 0 + 12.2: 0 + 12.3: 0 + 12.5: 0 + 12.6: 0 + 12.7: 0 + 12.9: 0 + 12.11: 0 + 12.17: 0 + 14: 0 + 15.17: 0 + 15.18: 0 + 5.2: _ZN9oceanbase6common5occam25get_file_name_without_dirIcLm44EEEPKT_RAT0__S4_m:450 + 3: 18 + 3.3: 18 + 3.4: 18 + 3.7: 0 + 5.3: _ZN9oceanbase6common5occam16TimeGuardFactory10make_guardEllPKcS4_lS4_:0 + 6: 0 + 8.4: _ZN9oceanbase6common7ObLogKVIiLb0EEC2EPKcRKi:0 + 0: 0 + 8.6: _ZN9oceanbase6common7ObLogKVIPKcLb1EEC2ES3_OKS3_:0 + 0: 0 + 8.8: _ZNK9oceanbase5share12ObTenantBase2idEv:0 + 0: 0 + 8.10: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 + 8.12: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 8.14: _ZN9oceanbase6common7ObLogKVIRKPKcLb0EEC2ES3_S5_:0 + 0: 0 + 12.4: _ZN9oceanbase6common7ObLogKVIiLb0EEC2EPKcRKi:0 + 0: 0 + 12.6: _ZN9oceanbase6common7ObLogKVIPKcLb1EEC2ES3_OKS3_:0 + 0: 0 + 12.8: _ZNK9oceanbase5share12ObTenantBase2idEv:0 + 0: 0 + 12.10: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 + 12.12: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 12.14: _ZN9oceanbase6common7ObLogKVIRKPKcLb0EEC2ES3_S5_:0 + 0: 0 + 12.16: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase11transaction12ObTxExecInfoD2Ev:493:3 + 0: 3 + 0.1: 3 + 0.3: 3 _ZN9oceanbase6common13ObSEArrayImplINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EED2Ev:3 + 0.4: 3 _ZN9oceanbase6common13ObSEArrayImplINS_4palf3LSNELl10ENS0_19ModulePageAllocatorELb0EED2Ev:3 + 0: _ZN9oceanbase11transaction11ObXATransIDD2Ev:3 + 0: _ZN9oceanbase11transaction11ObXATransID7destroyEv:3 + 0: 3 _ZN9oceanbase11transaction11ObXATransID5resetEv:3 + 0.1: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction11ObLSLogInfoELl10ENS0_19ModulePageAllocatorELb0EED2Ev:57 + 1: 3 + 2: 3 _ZN9oceanbase6common13ObSEArrayImplINS_11transaction11ObLSLogInfoELl10ENS0_19ModulePageAllocatorELb0EE7destroyEv:3 + 0.6: _ZN9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EED2Ev:172 + 1: 2 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EE7destroyEv:136 + 4.1: 2 + 4.3: 0 + 9: 2 + 10: 0 + 11: 0 + 13: 2 + 15: 2 + 24: 2 + 5: _ZN9oceanbase5share6ObLSIDD2Ev:0 + 0: _ZN9oceanbase5share6ObLSID5resetEv:0 + 0: 0 + 0.7: _ZN9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EED2Ev:94 + 1: 2 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EE7destroyEv:86 + 4.1: 2 + 4.3: 0 + 9: 2 + 10: 0 + 11: 0 + 13: 2 + 15: 2 + 24: 2 + 5: _ZN9oceanbase5share6ObLSIDD2Ev:0 + 0: _ZN9oceanbase5share6ObLSID5resetEv:0 + 0: 0 + 0.8: _ZN9oceanbase5share6ObLSIDD2Ev:16 + 0: _ZN9oceanbase5share6ObLSID5resetEv:16 + 0: 2 +_ZN9oceanbase6common7ob_freeEPv:490:11 + 1: 10 + 2: 10 + 3: 10 _ZN9oceanbase3lib17ObMallocAllocator12get_instanceEv:10 + 4: 10 + 5: 10 _ZN9oceanbase3lib17ObMallocAllocator4freeEPv:10 + 8: 0 + 4: _ZL12abort_unlessb:20 + 5: 10 + 6: 0 +_ZN9oceanbase3sql18ObBasicSessionInfo20set_query_start_timeEl:489:3 + 1: 3 + 2: 3 + 3: 2 + 4: 2 _ZN9oceanbase3lib11ObLockGuardINS_6common16ObRecursiveMutexEED2Ev:3 + 2: _ZN9oceanbase3lib11ObLockGuardINS_6common16ObRecursiveMutexEEC2ERS3_:355 + 1: 3 + 2: 3 + 4: 2 + 5.1: 0 + 4: _ZN9oceanbase6common16ObRecursiveMutex4lockEv:306 + 2: 3 + 3: 3 + 6: 3 _ZN9oceanbase6common7ObLatch6wrlockEjlPKj:3 + 7.1: 0 + 12: 2 + 3: _ZNK9oceanbase6common7ObLatch14is_wrlocked_byEPKj:183 + 3: 3 + 4: 3 + 2.1: _Z9ob_gettidv:159 + 3: 3 + 4: 0 + 2: _Z13get_tid_cachev:75 + 7: 3 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 +_ZN9oceanbase8observer20ObInnerSQLConnection13switch_tenantEm:482:3 + 1: 3 + 2: 3 + 4: 3 + 5.1: 0 + 6.1: 3 + 7: 3 + 7.1: 3 _ZN9oceanbase3sql18ObBasicSessionInfo13switch_tenantEm:3 + 8.1: 0 + 9.1: 3 + 9.4: 1 _ZN9oceanbase3sql18ObBasicSessionInfo8set_userERKNS_6common8ObStringES5_m:1 + 10.1: 0 + 16: 3 + 6.1: _ZNK9oceanbase8observer20ObInnerSQLConnection16is_inner_sessionEv:24 + 0: 3 + 9.1: _ZN9oceanbase8observer20ObInnerSQLConnection11get_sessionEv:14 + 0: 1 + 9.2: _ZN9oceanbase6common8ObStringC2EPKc:28 + 1: 1 + 3: 1 + 9.3: _ZN9oceanbase6common8ObStringC2EPKc:14 + 1: 1 + 3: 1 + 12: _ZN9oceanbase8observer20ObInnerSQLConnection11get_sessionEv:72 + 0: 3 + 12.1: _ZN9oceanbase3sql16ObSQLSessionInfo17set_user_priv_setEl:21 + 0: 3 + 13: _ZN9oceanbase8observer20ObInnerSQLConnection11get_sessionEv:42 + 0: 3 + 13.1: _ZN9oceanbase3sql18ObBasicSessionInfo15set_database_idEm:33 + 0: 3 +_ZN9oceanbase11transaction7ObTsMgr22is_external_consistentEm:480:2 + 1: 2 + 2: 2 + 5: 2 + 6: 0 + 7.1: 0 + 8.1: 2 + 9: 0 + 10.1: 0 + 11.1: 2 + 12: 0 + 13.1: 0 + 16: 2 + 21: 2 _ZN9oceanbase11transaction7ObTsMgr23get_ts_source_info_opt_EmRNS0_19ObTsSourceInfoGuardEbb:2 + 21.1: 3 + 22.1: 0 + 23.2: 3 + 24: 0 + 25.1: 0 + 26.1: 3 _ZN9oceanbase11transaction14ObTsSourceInfo13get_ts_sourceEmRNS0_15ObTsSourceGuardERb:3 + 26.2: 2 + 27.1: 0 + 28.1: 2 + 29.1: 2 + 30: 0 + 31.1: 0 + 33: 2 _ZN9oceanbase11transaction11ObGtsSource22is_external_consistentEv:2 + 37: 0 + 39.1: 2 _ZN9oceanbase11transaction15ObTsSourceGuardD1Ev:2 + 39.4: 0 + 39.5: 0 + 39.6: 2 _ZN9oceanbase11transaction19ObTsSourceInfoGuardD1Ev:2 + 42: 2 + 11.1: _ZN9oceanbase6common18is_valid_tenant_idEm:16 + 2: 2 + 19: _ZN9oceanbase11transaction19ObTsSourceInfoGuardC2Ev:16 + 0: 2 + 20: _ZN9oceanbase11transaction15ObTsSourceGuardC2Ev:22 + 0: 2 + 23.1: _ZN9oceanbase11transaction19ObTsSourceInfoGuard18get_ts_source_infoEv:12 + 0: 3 + 29: _ZN9oceanbase11transaction15ObTsSourceGuard13get_ts_sourceEv:8 + 0: 2 +_ZN9oceanbase7storage23ObTenantTabletScheduler27schedule_tablet_major_mergeERlRNS0_4ObLSERNS0_8ObTabletERbRNS1_20ObScheduleStatisticsEb:479:1 + 7: 1 + 8: 1 + 9: 1 + 10: 1 + 11: 1 + 13: 1 + 14: 1 + 15: 1 + 18.1: 1 _ZN9oceanbase10compaction22ObPartitionMergePolicy22check_need_major_mergeERKNS_7storage8ObTabletERlRbS7_S7_:2 + 18.2: 4 + 24.1: 0 + 25.1: 4 + 26: 4 + 27: 4 + 29.1: 0 + 30.1: 0 + 32: 0 + 34.1: 0 + 37: 0 + 41.1: 0 + 42: 0 + 43: 0 + 43.1: 0 + 44.1: 0 + 48: 4 + 48.4: 4 + 49: 0 + 49.1: 0 + 49.3: 0 + 49.4: 0 + 50.1: 0 + 51.1: 0 + 51.2: 0 + 51.4: 0 + 51.5: 0 + 52.1: 0 + 53.2: 0 + 53.3: 0 + 54.1: 0 + 57: 4 + 58.7: 4 + 12: _ZNK9oceanbase7storage4ObLS9get_ls_idEv:11 + 0: _ZN9oceanbase5share6ObLSIDC2ERKS1_:11 + 0: 1 + 16: _ZN9oceanbase7storage23ObTenantTabletScheduler24check_weak_read_ts_readyERKlRNS0_4ObLSE:18 + 7: 1 + 8.1: 1 + 9.1: 0 + 9.2: 0 + 9.6: 0 + 7.1: _ZNK9oceanbase7storage14ObLSWRSHandler19get_ls_weak_read_tsEv:7 + 0: 1 + 30: _ZN9oceanbase7storage23ObTenantTabletScheduler18schedule_merge_dagERKNS_5share6ObLSIDERKNS_6common10ObTabletIDENS0_11ObMergeTypeERKl:0 + 6: 0 + 10: 0 + 11: 0 + 12: 0 + 12.1: 0 + 14.1: 0 + 17: 0 + 7: _ZN9oceanbase10compaction21ObTabletMergeDagParamC2Ev:0 + 5: 0 + 7: 0 + 8: _ZN9oceanbase5share6ObLSIDaSERKS1_:0 + 0: 0 + 9: _ZN9oceanbase6common10ObTabletIDaSERKS1_:0 + 0: 0 + 48.3: _ZNK9oceanbase7storage20ObTabletReportStatus11need_reportEv:56 + 0: 4 + 49.1: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 49.2: _ZNK9oceanbase5share12ObTenantBase2idEv:0 + 0: 0 + 51.2: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 51.3: _ZNK9oceanbase5share12ObTenantBase2idEv:0 + 0: 0 + 53.1: _ZN9oceanbase7storage4ObLS14get_tablet_svrEv:0 + 0: 0 +_ZN9oceanbase14dbms_scheduler24ObDBMSSchedTableOperator12extract_infoERNS_6common9sqlclient13ObMySQLResultElbRNS2_12ObIAllocatorERNS0_18ObDBMSSchedJobInfoE:479:0 + 3: 0 + 4: 0 + 7: 0 + 8: 0 + 9.1: 0 + 9.3: 0 + 9.6: 0 + 10: 0 + 10.1: 1 + 10.4: 0 + 10.6: 0 + 11: 0 + 11.1: 1 _ZNK9oceanbase8observer16ObInnerSQLResult11get_varcharEPKcRNS_6common8ObStringE:1 + 11.4: 0 + 11.6: 0 + 12: 0 + 12.1: 0 + 12.4: 0 + 12.6: 0 + 42.2: 0 + 42.3: 1 + 42.5: 0 + 42.11: 0 + 42.12: 1 + 42.16: 1 + 42.18: 0 + 42.26: 0 + 43.2: 1 + 43.3: 1 _ZNK9oceanbase8observer16ObInnerSQLResult7get_objEPKcRNS_6common5ObObjE:1 + 43.5: 0 + 43.11: 0 + 43.12: 0 + 43.16: 0 + 43.18: 0 + 43.26: 0 + 44.2: 0 + 44.3: 1 + 44.5: 0 + 44.11: 0 + 44.12: 1 + 44.16: 0 + 44.18: 0 + 44.26: 0 + 45.2: 1 + 45.3: 1 _ZNK9oceanbase8observer16ObInnerSQLResult7get_objEPKcRNS_6common5ObObjE:1 + 45.5: 0 + 45.11: 0 + 45.12: 0 + 45.16: 0 + 45.18: 0 + 45.26: 0 + 46: 0 + 46.1: 1 + 46.2: 1 + 46.5: 0 + 46.7: 0 + 47.2: 1 + 47.3: 1 _ZNK9oceanbase8observer16ObInnerSQLResult7get_objEPKcRNS_6common5ObObjE:1 + 47.5: 0 + 47.11: 0 + 47.12: 1 + 47.16: 1 + 47.18: 0 + 47.26: 0 + 52: 0 + 52.1: 1 _ZNK9oceanbase8observer16ObInnerSQLResult11get_varcharEPKcRNS_6common8ObStringE:1 + 52.4: 0 + 52.6: 0 + 53: 0 + 53.1: 1 + 53.2: 1 + 53.5: 0 + 53.7: 0 + 54: 0 + 54.1: 1 _ZNK9oceanbase8observer16ObInnerSQLResult7get_intEPKcRl:1 + 54.2: 0 + 54.5: 0 + 54.7: 0 + 55: 0 + 55.1: 0 + 55.4: 0 + 55.6: 0 + 56: 0 + 56.1: 0 + 56.4: 0 + 56.6: 0 + 57: 0 + 57.1: 0 + 57.4: 0 + 57.6: 0 + 58: 0 + 58.1: 0 + 58.4: 0 + 58.6: 0 + 59: 0 + 59.1: 0 + 59.2: 0 + 59.5: 0 + 59.7: 0 + 60: 0 + 60.1: 0 + 60.4: 0 + 60.6: 0 + 61: 0 + 61.1: 1 + 61.4: 0 + 61.6: 0 + 62: 0 + 62.1: 1 _ZNK9oceanbase8observer16ObInnerSQLResult11get_varcharEPKcRNS_6common8ObStringE:1 + 62.4: 0 + 62.6: 0 + 63: 0 + 63.1: 1 _ZNK9oceanbase8observer16ObInnerSQLResult8get_boolEPKcRb:1 + 63.2: 1 + 63.5: 0 + 63.7: 0 + 64: 0 + 64.1: 1 _ZNK9oceanbase8observer16ObInnerSQLResult8get_boolEPKcRb:1 + 64.2: 0 + 64.5: 0 + 64.7: 0 + 65: 0 + 65.1: 0 + 65.2: 0 + 65.5: 0 + 65.7: 0 + 66: 0 + 66.1: 0 + 66.2: 0 + 66.5: 0 + 66.7: 0 + 68.1: 0 + 68.2: 0 + 68.4: 0 + 70: 0 + 5: _ZN9oceanbase14dbms_scheduler18ObDBMSSchedJobInfoC2Ev:0 + 2: 0 + 3: 0 + 4: _ZN9oceanbase6common8ObStringC2Ev:0 + 1: 0 + 32: _ZN9oceanbase6common8ObStringC2Ev:0 + 1: 0 + 42.1: _ZN9oceanbase6common5ObObjC2Ev:0 + 2: _ZN9oceanbase6common5ObObj5resetEv:0 + 6: 0 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:0 + 0: 0 + 42.12: _ZNK9oceanbase6common5ObObj7is_nullEv:3 + 0: _ZNK9oceanbase6common9ObObjMeta7is_nullEv:3 + 0: 1 + 42.16: _ZNK9oceanbase6common5ObObj13get_timestampERl:11 + 4: 1 + 43.1: _ZN9oceanbase6common5ObObjC2Ev:12 + 2: _ZN9oceanbase6common5ObObj5resetEv:12 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4 + 0: 1 + 43.12: _ZNK9oceanbase6common5ObObj7is_nullEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta7is_nullEv:0 + 0: 0 + 43.16: _ZNK9oceanbase6common5ObObj13get_timestampERl:0 + 4: 0 + 44.1: _ZN9oceanbase6common5ObObjC2Ev:0 + 2: _ZN9oceanbase6common5ObObj5resetEv:0 + 6: 0 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:0 + 0: 0 + 44.12: _ZNK9oceanbase6common5ObObj7is_nullEv:3 + 0: _ZNK9oceanbase6common9ObObjMeta7is_nullEv:3 + 0: 1 + 44.16: _ZNK9oceanbase6common5ObObj13get_timestampERl:0 + 4: 0 + 45.1: _ZN9oceanbase6common5ObObjC2Ev:12 + 2: _ZN9oceanbase6common5ObObj5resetEv:12 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4 + 0: 1 + 45.12: _ZNK9oceanbase6common5ObObj7is_nullEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta7is_nullEv:0 + 0: 0 + 45.16: _ZNK9oceanbase6common5ObObj13get_timestampERl:0 + 4: 0 + 47.1: _ZN9oceanbase6common5ObObjC2Ev:12 + 2: _ZN9oceanbase6common5ObObj5resetEv:12 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4 + 0: 1 + 47.12: _ZNK9oceanbase6common5ObObj7is_nullEv:3 + 0: _ZNK9oceanbase6common9ObObjMeta7is_nullEv:3 + 0: 1 + 47.16: _ZNK9oceanbase6common5ObObj13get_timestampERl:11 + 4: 1 +_ZN9oceanbase7storage23ObTxDataSingleRowGetter13get_next_row_ERNS0_14ObSSTableArrayERNS0_8ObTxDataE:478:0 + 1: 0 + 2: 0 + 4: 0 + 4.2: 1 _ZN9oceanbase6common14ObVersionRangeC1Ev:1 + 4.3: 1 + 4.4: 1 _ZN9oceanbase7storage20ObTableAccessContext4initERKNS_6common11ObQueryFlagERNS0_10ObStoreCtxERNS2_12ObIAllocatorERKNS2_14ObVersionRangeE:1 + 4.5: 1 + 4.7: 0 + 4.10: 0 + 9.3: 1 + 9.5: 1 + 12: 1 _ZN9oceanbase7storage23ObTxDataSingleRowGetter22get_row_from_sstables_ERNS_12blocksstable13ObDatumRowkeyERNS0_14ObSSTableArrayERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextERNS0_8ObTxDataE:1 + 12.1: 2 + 15.1: 0 + 17.1: 0 + 22: 2 + 23.10: 1 + 23.16: 0 + 23.19: 2 _ZN9oceanbase7storage20ObTableAccessContextD1Ev:2 + 4.1: _ZN9oceanbase6common11ObQueryFlagC2ENS1_9ScanOrderEbbbbbbNS1_7SqlModeEbbmbbbb:15 + 33: 1 + 4.12: _ZN9oceanbase7storage10ObStoreCtxC2Ev:0 + 0.2: 0 + 0: _ZN9oceanbase5share6ObLSIDC2Ev:0 + 0: 0 + 0.1: _ZN9oceanbase8memtable15ObMvccAccessCtxC2Ev:0 + 1: 0 + 3: 0 + 4: 0 + 7: 0 + 10: 0 + 5: _ZN9oceanbase7storage14ObTxTableGuardC2Ev:0 + 0: 0 + 0.10: _ZN9oceanbase6common10ObTabletIDC2Em:0 + 0: 0 + 5: _ZNK9oceanbase11transaction9ObTransID6get_idEv:4 + 0: 1 + 9: _ZN9oceanbase12blocksstable13ObDatumRowkeyC2Ev:30 + 0.4: _ZN9oceanbase12blocksstable13ObDatumRowkey5resetEv:30 + 0: 1 + 9.1: _ZN9oceanbase6common7ObDatum7set_intEl:20 + 0: 1 + 9.2: _ZN9oceanbase6common7ObDatum7set_intEl:24 + 0: 1 + 9.4: _ZN9oceanbase12blocksstable13ObDatumRowkey6assignEPNS0_14ObStorageDatumEi:40 + 9: 1 + 10: 1 + 8: _ZN9oceanbase12blocksstable13ObDatumRowkey5resetEv:26 + 0: 1 + 23.15: _ZN9oceanbase7storage10ObStoreCtxD2Ev:0 + 0: 0 + 23.18: _ZN9oceanbase7storage10ObStoreCtxD2Ev:162 + 0: 2 _ZN9oceanbase7storage10ObStoreCtx5resetEv:2 + 0.1: _ZN9oceanbase8memtable15ObMvccAccessCtxD2Ev:160 + 1: 2 + 3: 2 + 5: 2 + 8: 2 + 9.4: 2 _ZN9oceanbase11transaction12ObTxSnapshotD1Ev:2 + 9: _ZN9oceanbase11transaction9ObTransIDD2Ev:22 + 0: 2 + 9.3: _ZN9oceanbase7storage14ObTxTableGuardD2Ev:18 + 0: _ZN9oceanbase7storage14ObTxTableGuard5resetEv:18 + 2: 2 + 3: 0 + 4: 0 +_ZN9oceanbase6common7ObTimer4run1Ev:477:0 + 1: 0 + 2: 0 + 4: 0 + 5.1: 0 + 5.2: 0 + 5.3: 0 + 5.8: 0 + 5.9: 0 + 5.11: 0 + 6: 0 + 9: 0 + 11: 0 + 15.1: 0 + 15.2: 0 + 15.3: 0 + 15.6: 0 + 16.1: 0 + 16.2: 0 + 16.3: 0 + 16.4: 0 + 16.9: 0 + 17.1: 0 + 17.3: 0 + 18.1: 0 + 18.2: 0 + 18.3: 0 + 18.6: 0 + 22: 0 + 26: 0 + 26.1: 0 + 26.2: 0 + 26.3: 0 + 27: 0 + 28: 0 + 28.1: 0 + 28.2: 0 + 29: 0 + 29.1: 0 + 30: 0 + 31.1: 0 + 31.2: 0 + 31.3: 0 + 31.8: 0 + 34: 0 + 35: 0 + 38.1: 0 + 38.2: 0 + 38.3: 0 + 39: 0 + 44: 0 + 45: 0 + 46: 0 + 48: 0 + 51: 0 + 54.1: 0 + 54.2: 0 + 54.3: 0 + 54.4: 0 + 55: 0 + 55.1: 1 + 55.2: 1 + 56: 1 + 57: 0 + 58: 0 + 59: 0 + 60: 0 + 61: 0 + 62: 0 + 63: 0 + 67: 1 + 69: 1 + 72: 1 + 75: 1 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:1 + 75.1: 2 + 76: 2 _ZN9oceanbase6common13ObTimeUtility19current_time_coarseEv:2 + 76.1: 1 + 77: 1 + 80: 1 + 81.1: 0 + 81.2: 0 + 81.3: 0 + 81.12: 0 + 86: 1 _ZN6obutil9ObSysTimeC1El:1 + 86.1: 1 _ZNK6obutil9ObMonitorINS_5MutexEE10timed_waitERKNS_9ObSysTimeE:1 + 89.1: 0 + 91: 1 + 91.1: 1 + 91.2: 1 + 91.3: 1 + 93: 1 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:1 + 94: 1 + 95: 1 _ZN9oceanbase6common14ObTimerMonitor12get_instanceEv:1 + 95.1: 1 _ZN9oceanbase6common14ObTimerMonitor10start_taskElllPKNS0_11ObTimerTaskE:1 + 97: 1 _ZN9oceanbase5share21ObLSLocationTimerTask12runTimerTaskEv:1 + 99: 2 + 100: 2 + 101.1: 2 + 101.2: 0 + 101.3: 0 + 102.1: 3 + 102.2: 0 + 102.3: 0 + 103.1: 3 + 103.2: 0 + 103.3: 0 + 104.1: 3 + 104.2: 0 + 104.3: 0 + 105: 3 + 106: 3 _ZN9oceanbase6common14ObTimerMonitor12get_instanceEv:3 + 106.1: 3 _ZN9oceanbase6common14ObTimerMonitor8end_taskEll:3 + 109: 0 + 110.1: 0 + 110.2: 0 + 110.5: 0 + 110.16: 0 + 115.1: 0 + 115.2: 0 + 115.5: 0 + 115.8: 0 + 116.25: 0 + 3: _ZN9oceanbase6common7ObTimer5TokenC2EllPNS0_11ObTimerTaskE:0 + 1: 0 + 5.2: _ZN9oceanbase6common7ObLogKVIPKvLb1EEC2EPKcOKS3_:0 + 0: 0 + 5.10: _ZN9oceanbase6common7ObLogKVIlLb1EEC2EPKcOKl:0 + 0: 0 + 5.12: _ZN9oceanbase6common10ObSzStringC2EPKc:0 + 0: 0 + 5.13: _ZN9oceanbase6common7ObLogKVINS0_10ObSzStringELb1EEC2EPKcOKS2_:0 + 0: 0 + 13: _ZN6obutil7ObLockTINS_9ObMonitorINS_5MutexEEEEC2ERKS3_:0 + 1: 0 + 4: 0 + 3: _ZNK6obutil9ObMonitorINS_5MutexEE4lockEv:0 + 2: 0 + 3: 0 + 4: 0 + 15: _ZN9oceanbase6common14ObTscTimestamp12get_instanceEv:0 + 2: 0 + 2.1: 0 + 2.3: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common14ObTscTimestampC2Ev:0 + 1: 0 + 16.4: _ZN9oceanbase6common7ObLogKVIPKvLb1EEC2EPKcOKS3_:0 + 0: 0 + 16.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 16.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 18.5: _ZN9oceanbase6common7ObLogKVIRKNS0_7ObTimer5TokenELb0EEC2EPKcS5_:0 + 0: 0 + 30: _ZN9oceanbase6common7ObTimer5TokenC2EllPNS0_11ObTimerTaskE:0 + 1: 0 + 31.5: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 31.7: _ZN9oceanbase6common7ObLogKVIRKNS0_7ObTimer5TokenELb0EEC2EPKcS5_:0 + 0: 0 + 36: _ZN6obutil9ObMonitorINS_5MutexEE10notify_allEv:0 + 2: 0 + 81.5: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 81.7: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 81.9: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 81.11: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 89.2: _ZN6obutil7ObLockTINS_9ObMonitorINS_5MutexEEEED2Ev:0 + 2: 0 + 4: 0 + 4.1: 0 + 92: _ZN9oceanbase6common11ObTimerTask13timeout_checkEv:16 + 0: 3 + 101.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:10 + 2: 2 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:2 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:8 + 2: 2 + 101.3: _ZN9oceanbase6common20ObDiagnoseTenantInfo11update_statEsl:0 + 7: 0 + 3: _ZN9oceanbase6common11ObStatArrayINS0_18ObStatEventAddStatELl546EE3getEl:0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 102.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:14 + 2: 2 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:3 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:12 + 2: 3 + 102.3: _ZN9oceanbase6common20ObDiagnoseTenantInfo11update_statEsl:0 + 7: 0 + 3: _ZN9oceanbase6common11ObStatArrayINS0_18ObStatEventAddStatELl546EE3getEl:0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 103.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:15 + 2: 3 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:3 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:12 + 2: 3 + 103.3: _ZN9oceanbase6common20ObDiagnoseTenantInfo11update_statEsl:0 + 7: 0 + 3: _ZN9oceanbase6common11ObStatArrayINS0_18ObStatEventAddStatELl546EE3getEl:0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 104.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:15 + 2: 3 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:3 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:12 + 2: 3 + 104.3: _ZN9oceanbase6common20ObDiagnoseTenantInfo11update_statEsl:0 + 7: 0 + 3: _ZN9oceanbase6common11ObStatArrayINS0_18ObStatEventAddStatELl546EE3getEl:0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 110.2: _ZN9oceanbase6common10to_cstringINS0_11ObTimerTaskEEEPKcRKT_:0 + 2: 0 + 110.6: _ZN9oceanbase6common7ObLogKVIPKcLb1EEC2ES3_OKS3_:0 + 0: 0 + 110.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 110.10: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 110.12: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 110.13: _ZN9oceanbase6common7ObLogKVIPKvLb1EEC2EPKcOKS3_:0 + 0: 0 + 110.15: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 115.2: _ZN9oceanbase6common7ObLogKVIPKvLb1EEC2EPKcOKS3_:0 + 0: 0 + 115.7: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase3sql16ObGetAllPlanIdOpclERNS_6common4hash11HashMapPairImPNS0_17ObILibCacheObjectEEE:477:9 + 1: 9 + 2: 9 + 3: 9 + 4: 0 + 5.1: 0 + 6.1: 9 + 6.2: 9 + 7: 9 _ZN9oceanbase6common13ObSEArrayImplImLl1024ENS0_19ModulePageAllocatorELb0EE9push_backERKm:9 + 8.1: 0 + 10: 9 +_ZZN9oceanbase4palf14PalfHandleImpl21inner_after_flush_logERKNS0_13FlushLogCbCtxEENK6$_1148clEPKc.0e4bf25207570af14a78557c8489c4fc:475:8 + 0: 9 + 0.1: 0 + 0.2: 9 + 0.3: 8 _ZN9oceanbase6common8ObLogger13need_to_printEmi:9 + 0.5: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:136 + 2: 8 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 +_ZNK9oceanbase4palf14PalfHandleImpl20get_last_rebuild_lsnERNS0_3LSNE:475:2 + 1: 2 + 3: 2 + 4: 2 + 7: 2 + 11.3: 2 + 3: _ZN9oceanbase6common8TCRWLock10RLockGuardC2ERS1_:2 + 0: 2 _ZN9oceanbase6common8TCRWLock6rdlockEl:2 + 7: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEEC2ERS3_:69 + 1: 2 + 2: 2 + 4: 1 + 5.1: 0 + 4: _ZN9oceanbase6common10ObSpinLock4lockEv:36 + 2: 2 _ZN9oceanbase6common12ObLatchMutex4lockEjl:2 + 8: _ZN9oceanbase4palf3LSNaSERKS1_:10 + 2: 1 + 9: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEED2Ev:16 + 2: 0 + 3: 1 + 3.1: 1 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase6common10ObSpinLock6unlockEv:1 + 2: 1 _ZN9oceanbase6common12ObLatchMutex6unlockEv:1 + 11.2: _ZN9oceanbase6common8TCRWLock10RLockGuardD2Ev:0 + 0.2: 0 + 0: _ZN9oceanbase6common8TCRWLock8rdunlockEv:0 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:0 + 0: 0 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPi:0 + 2: 0 + 4.1: 0 + 4.2: 0 + 6: 0 + 6.1: 0 + 10: 0 + 2: _ZN9oceanbase6common8get_itidEv:0 + 4: 0 + 5: 0 + 6: 0 + 8: 0 + 11: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:0 + 2: 0 + 2.1: 0 + 3: 0 + 11.3: _ZN9oceanbase6common8TCRWLock10RLockGuardD2Ev:223 + 0.2: 0 + 0: _ZN9oceanbase6common8TCRWLock8rdunlockEv:223 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:4 + 0: 1 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPi:182 + 2: 1 + 4.1: 1 + 4.2: 1 + 6: 3 + 6.1: 2 + 10: 2 + 2: _ZN9oceanbase6common8get_itidEv:28 + 4: 1 + 5: 0 + 6: 0 + 8: 0 + 11: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:30 + 2: 2 + 2.1: 0 + 3: 0 +_ZN9oceanbase10rootserver24ObTenantRecoveryReportor15get_sync_point_ERKNS_5share6ObLSIDERlS6_:474:4 + 2: 4 + 3: 4 + 7.1: 4 _ZN9oceanbase10logservice12ObLogService9open_palfERKNS_5share6ObLSIDERNS_4palf15PalfHandleGuardE:4 + 7.2: 1 + 8.1: 0 + 9.2: 1 + 10.1: 0 + 11.2: 2 + 12.1: 0 + 13.1: 2 + 15: 0 + 17: 0 + 19.1: 0 + 19.2: 0 + 21.1: 0 + 22.2: 0 + 23: 0 + 24.1: 0 + 25.2: 0 + 26.1: 0 + 27.2: 0 + 31.1: 0 + 31.2: 0 + 32.1: 0 + 34: 0 + 34.2: 0 + 35: 0 + 35.2: 2 _ZN9oceanbase10rootserver24ObTenantRecoveryReportor16get_readable_scnERKNS_5share6ObLSIDERl:2 + 35.3: 0 + 36.1: 0 + 39: 0 + 40.13: 0 + 6: _ZN9oceanbase4palf15PalfHandleGuardC2Ev:36 + 0: 4 _ZN9oceanbase4palf10PalfHandleC1Ev:4 + 7: _ZN9oceanbase5share11ObTenantEnv3mtlIPNS_10logservice12ObLogServiceEEET_v:152 + 2: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:76 + 2: 4 + 2.1: 0 + 2.2: 0 + 2.1: _ZN9oceanbase5share12ObTenantBase3getIPNS_10logservice12ObLogServiceEEET_v:76 + 0: _ZN9oceanbase5share12ObTenantBase9inner_getENS1_8IdentityIPNS_10logservice12ObLogServiceEEE:76 + 0: 4 + 9.1: _ZNK9oceanbase4palf15PalfHandleGuard13get_end_ts_nsIJRlEEEiDpOT_:4 + 0.1: 1 _ZNK9oceanbase4palf10PalfHandle13get_end_ts_nsERl:1 + 11.1: _ZN9oceanbase4palf15PalfHandleGuard15get_access_modeIJRlRNS0_10AccessModeEEEEiDpOT_:1 + 0.2: 1 _ZNK9oceanbase4palf10PalfHandle15get_access_modeERlRNS0_10AccessModeE:1 + 16: _ZN9oceanbase5share17ObLSRestoreStatusC2Ev:0 + 0: 0 + 19: _ZN9oceanbase5share11ObTenantEnv3mtlIPNS_7storage11ObLSServiceEEET_v:0 + 2: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.1: _ZN9oceanbase5share12ObTenantBase3getIPNS_7storage11ObLSServiceEEET_v:0 + 0: _ZN9oceanbase5share12ObTenantBase9inner_getENS1_8IdentityIPNS_7storage11ObLSServiceEEE:0 + 0: 0 + 22.1: _ZN9oceanbase7storage10ObLSHandle6get_lsEv:0 + 0: 0 + 25.1: _ZN9oceanbase7storage4ObLS18get_restore_statusIJRNS_5share17ObLSRestoreStatusEEEEiDpOT_:0 + 0: 0 + 0.1: 0 + 27.1: _ZNK9oceanbase5share17ObLSRestoreStatus13is_in_restoreEv:0 + 0: 0 + 28.1: _ZN9oceanbase7storage4ObLS23get_log_restore_handlerEv:0 + 0: 0 + 40.13: _ZN9oceanbase4palf15PalfHandleGuardD2Ev:0 + 3: 0 + 2: _ZN9oceanbase4palf15PalfHandleGuard5resetEv:0 + 2: 0 + 4: 0 + 5: 0 + 40.14: _ZN9oceanbase4palf15PalfHandleGuardD2Ev:0 + 3: 0 + 2: _ZN9oceanbase4palf15PalfHandleGuard5resetEv:0 + 2: 0 + 4: 0 + 5: 0 +_ZN9oceanbase6common16ObFixedArrayImplIPNS_4palf11LogWriteBufENS0_12ObIAllocatorEE9push_backERKS4_:473:4 + 1: 4 + 2: 4 + 3: 4 + 4: 4 + 5: 0 + 6.1: 0 + 6.5: 0 + 6.7: 0 + 9: 0 + 10.1: 0 + 10.5: 0 + 10.9: 0 + 12.1: 4 + 13: 0 + 14.1: 0 + 14.5: 0 + 14.11: 0 + 16: 4 + 17: 4 + 19: 4 + 23: 0 + 33: 5 + 6.1: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 6.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 10.1: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 10.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 10.8: _ZN9oceanbase6common7ObLogKVIRKjLb0EEC2EPKcS3_:0 + 0: 0 + 14.1: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 14.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 14.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 14.10: _ZN9oceanbase6common7ObLogKVIRKjLb0EEC2EPKcS3_:0 + 0: 0 + 19: _ZN9oceanbase6common16construct_assignIPNS_4palf11LogWriteBufEEEiRT_RKS5_:28 + 2: _ZN9oceanbase6common21construct_assign_wrapIPNS_4palf11LogWriteBufEEEiRT_RKS5_NS0_8BoolTypeILb0EEE:28 + 2: 4 +_ZN9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE8HandleOnINS_5share20ObActiveSessHistTaskEEclERS3_PS4_:473:9 + 3: 9 + 4: 8 + 2: _ZN9oceanbase5share20ObActiveSessHistTaskclENS_3sql14SessionInfoKeyEPNS2_16ObSQLSessionInfoE:270 + 2: 9 + 3.1: 9 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 10.1: 0 + 4: _ZN9oceanbase3sql18ObBasicSessionInfo12get_ash_statEv:0 + 0: 0 + 6: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:0 + 0: 0 + 7: _ZNK9oceanbase3sql18ObBasicSessionInfo11get_user_idEv:0 + 0: 0 + 8: _ZNK9oceanbase3sql18ObBasicSessionInfo10get_sessidEv:0 + 0: 0 + 3: _ZN9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE6revertEPS4_:152 + 3: 9 _ZN9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE6revertEPNS0_12LinkHashNodeIS3_EE:9 +_ZZN9oceanbase4palf16LogDIOAlignedBuf12truncate_bufEvENK4$_59clEPKc.1598dc2348996c1ae1caea6120522988:468:7 + 0: 7 + 0.1: 0 + 0.2: 6 + 0.3: 7 _ZN9oceanbase6common8ObLogger13need_to_printEmi:7 + 0.11: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:119 + 2: 7 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.1: _ZN9oceanbase6common20ObLogPrintPointerCntIPNS_4palf16LogDIOAlignedBufEEC2ES4_:0 + 0: 0 + 0.4: _ZN9oceanbase6common7ObLogKVINS0_20ObLogPrintPointerCntIPNS_4palf16LogDIOAlignedBufEEELb1EEC2EPKcOKS6_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase6common22ObTenantMutilAllocator27alloc_log_io_flush_log_taskEv:468:12 + 1: 12 + 3: 12 _ZN9oceanbase6common12ObSliceAlloc5allocEv:12 + 4: 15 + 5: 15 _ZN9oceanbase4palf17LogIOFlushLogTaskC1Ev:15 + 7: 12 +_ZN9oceanbase8observer15ObSqlEndTransCbD2Ev:467:4 + 1: 4 + 3.3: _ZN9oceanbase8observer16ObMPPacketSenderD2Ev:371 + 1: 4 + 3: 3 _ZN9oceanbase6common13ObSEArrayImplIPNS_7obmysql12Obp20EncoderELl4ENS0_19ModulePageAllocatorELb0EED2Ev:3 + 3.1: 0 + 3.2: 0 + 3.3: 3 _ZN9oceanbase6common13ObSEArrayImplINS_7obmysql10ObCommonKVINS0_5ObObjES4_EELl4ENS0_19ModulePageAllocatorELb0EED2Ev:3 + 3.7: 0 + 2: _ZN9oceanbase8observer16ObMPPacketSender5resetEv:242 + 2: 4 + 3: 4 + 4: 0 + 10: 3 + 11: 3 + 15: 3 + 16: 3 + 17: 3 + 18: 3 + 19: 3 + 5: _ZN9oceanbase3rpc20ObSqlRequestOperator7destroyEPNS0_9ObRequestE:0 + 1: 0 + 1.1: 0 + 12: _ZN9oceanbase7obmysql20ObCompressionContext5resetEv:75 + 0: 3 +_ZN9oceanbase8observer15ObSqlEndTransCbD1Ev:467:4 + 1: 4 + 3.3: _ZN9oceanbase8observer16ObMPPacketSenderD2Ev:371 + 1: 4 + 3: 3 _ZN9oceanbase6common13ObSEArrayImplIPNS_7obmysql12Obp20EncoderELl4ENS0_19ModulePageAllocatorELb0EED2Ev:3 + 3.1: 0 + 3.2: 0 + 3.3: 3 _ZN9oceanbase6common13ObSEArrayImplINS_7obmysql10ObCommonKVINS0_5ObObjES4_EELl4ENS0_19ModulePageAllocatorELb0EED2Ev:3 + 3.7: 0 + 2: _ZN9oceanbase8observer16ObMPPacketSender5resetEv:242 + 2: 4 + 3: 4 + 4: 0 + 10: 3 + 11: 3 + 15: 3 + 16: 3 + 17: 3 + 18: 3 + 19: 3 + 5: _ZN9oceanbase3rpc20ObSqlRequestOperator7destroyEPNS0_9ObRequestE:0 + 1: 0 + 1.1: 0 + 12: _ZN9oceanbase7obmysql20ObCompressionContext5resetEv:75 + 0: 3 +_ZZN9oceanbase10logservice13ObApplyStatus20try_submit_cb_queuesEvENK4$_26clEPKc.d3a41d52a3cfae37a6a74713ee8e7132:464:8 + 0: 8 + 0.2: 8 + 0.3: 8 _ZN9oceanbase6common8ObLogger13need_to_printEmi:9 + 0.5: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:136 + 2: 8 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.1: _ZN9oceanbase6common20ObLogPrintPointerCntIPNS_10logservice13ObApplyStatusEEC2ES4_:0 + 0: 0 + 0.4: _ZN9oceanbase6common7ObLogKVINS0_20ObLogPrintPointerCntIPNS_10logservice13ObApplyStatusEEELb1EEC2EPKcOKS6_:0 + 0: 0 +_ZNK9oceanbase7storage19ObTabletMemtableMgr19get_active_memtableERNS0_15ObTableHandleV2E:464:5 + 1: 5 + 2: 5 + 3: 5 _ZN9oceanbase6common12TCRLockGuardC2ERKNS0_8TCRWLockE:5 + 4: 5 _ZN9oceanbase7storage15ObTableHandleV25resetEv:5 + 5: 5 + 6: 0 + 7.1: 0 + 8.1: 5 _ZNK9oceanbase7storage19ObTabletMemtableMgr20get_active_memtable_ERNS0_15ObTableHandleV2E:5 + 8.2: 3 + 10.1: 0 + 13: 2 + 14.3: 2 + 14.3: _ZN9oceanbase6common12TCRLockGuardD2Ev:120 + 2: 2 + 3: 2 + 3.1: 2 + 3.2: 0 + 3: _ZN9oceanbase6common8TCRWLock8rdunlockEl:78 + 3: 2 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:8 + 0: 2 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPil:44 + 2: 2 + 2.1: 2 + 3: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:12 + 2: 2 + 2.1: 0 + 3: 0 + 14.4: _ZN9oceanbase6common12TCRLockGuardD2Ev:0 + 2: 0 + 3: 0 + 3.1: 0 + 3.2: 0 + 3: _ZN9oceanbase6common8TCRWLock8rdunlockEl:0 + 3: 0 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:0 + 0: 0 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPil:0 + 2: 0 + 2.1: 0 + 3: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:0 + 2: 0 + 2.1: 0 + 3: 0 +_ZNK9oceanbase4palf11LogStateMgr19is_leader_reconfirmEv:464:16 + 0: 16 + 0: _ZNK9oceanbase4palf11LogStateMgr20is_leader_reconfirm_Ev:368 + 2: _ZNK9oceanbase4palf11LogStateMgr21check_role_and_state_ERKNS_6common6ObRoleERKNS0_14ObReplicaStateE:368 + 3: 16 + 4: 16 +_ZN9oceanbase5share12ObUnitConfigC2ERKS1_:462:2 + 1: 2 + 2: 2 + 4: 2 + 5: 2 + 1: _ZNK9oceanbase5share12ObUnitConfig14unit_config_idEv:6 + 0: 2 + 2: _ZNK9oceanbase5share12ObUnitConfig4nameEv:8 + 0: 2 + 2.1: _ZN9oceanbase6common19ObFixedLengthStringILl128EEC2ERKS2_:116 + 2: 2 + 3: 2 + 4.1: 0 + 3: _ZN9oceanbase6common19ObFixedLengthStringILl128EE6assignEPKc:88 + 2: 2 + 6: 2 + 7: 2 + 8: 0 + 9.1: 0 + 11: 0 + 12: 0 + 14: 2 + 15: 2 + 18: 0 + 3.1: _ZN9oceanbase5share14ObUnitResourceC2ERKS1_:242 + 0: 2 + 0: _ZN9oceanbase5share14ObUnitResourceaSERKS1_:206 + 2: 2 + 3: 2 + 4: 2 + 5: 2 + 6: 2 + 7: 2 + 8: 2 + 9: 2 +_ZN9oceanbase5share12ObUnitConfigC1ERKS1_:462:2 + 1: 2 + 2: 2 + 4: 2 + 5: 2 + 1: _ZNK9oceanbase5share12ObUnitConfig14unit_config_idEv:6 + 0: 2 + 2: _ZNK9oceanbase5share12ObUnitConfig4nameEv:8 + 0: 2 + 2.1: _ZN9oceanbase6common19ObFixedLengthStringILl128EEC2ERKS2_:116 + 2: 2 + 3: 2 + 4.1: 0 + 3: _ZN9oceanbase6common19ObFixedLengthStringILl128EE6assignEPKc:88 + 2: 2 + 6: 2 + 7: 2 + 8: 0 + 9.1: 0 + 11: 0 + 12: 0 + 14: 2 + 15: 2 + 18: 0 + 3.1: _ZN9oceanbase5share14ObUnitResourceC2ERKS1_:242 + 0: 2 + 0: _ZN9oceanbase5share14ObUnitResourceaSERKS1_:206 + 2: 2 + 3: 2 + 4: 2 + 5: 2 + 6: 2 + 7: 2 + 8: 2 + 9: 2 +_ZN9oceanbase4palf29push_task_into_cb_thread_poolElPNS0_9LogIOTaskE:462:3 + 1: 3 + 2: 3 + 3: 3 + 4: 0 + 7.1: 3 + 7.3: 0 + 7.4: 0 + 7.8: 3 + 7.9: 0 + 7.11: 3 + 7.15: 4 + 7.17: 0 + 9.1: 0 + 12.1: 0 + 14: 0 + 17: 4 + 7.3: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 7.8: _ZN9oceanbase3lib5TGMgr8instanceEv:36 + 2: 3 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 7.9: _ZN9oceanbase3lib5TGMgr8instanceEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 7.13: _ZN9oceanbase3lib5FWrapIZNS_4palf29push_task_into_cb_thread_poolElPNS2_9LogIOTaskEE5$_659Lb0EEclES5_:21 + 2: _ZZN9oceanbase4palf29push_task_into_cb_thread_poolElPNS0_9LogIOTaskEENK5$_659clEv:21 + 0: 3 _ZN9oceanbase3lib2TGILNS0_6TGTypeE5EE9push_taskEPv:3 + 11: _ZN9oceanbase4palf24palf_reach_time_intervalElRl:0 + 3: 0 + 5: 0 +_ZN9oceanbase3omt15ObResourceGroup21calibrate_token_countEv:462:12 + 1: 11 + 3: 11 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:12 + 4: 8 + 7: 0 + 7.2: 0 + 7.3: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 16: 0 + 20: 0 + 20.1: 0 + 20.2: 0 + 21: 0 + 21.1: 0 + 22: 0 + 24: 0 + 25: 0 + 27: 0 + 28: 0 + 30: 8 + 7: _ZN9oceanbase6common7ObDListINS0_11ObDLinkNodeIPNS_3lib6WorkerEEEE9get_firstEv:0 + 0: 0 + 9: _ZN9oceanbase3omt10ObThWorker9is_activeEv:0 + 0: 0 + 11: _ZN9oceanbase3lib6Worker12has_req_flagEv:0 + 2: 0 + 16: _ZNK9oceanbase3omt8ObTenant12unit_min_cpuEv:0 + 2: 0 + 17.1: _ZN9oceanbase3omt15ObResourceGroup13set_token_cntEl:0 + 0: 0 + 18: _ZN9oceanbase3omt15ObResourceGroup17set_min_token_cntEl:0 + 0: 0 + 22: _ZN9oceanbase6common3minEll:0 + 2: 0 + 22.1: _ZN9oceanbase3omt15ObResourceGroup13set_token_cntEl:0 + 0: 0 + 25: _ZN9oceanbase6common3maxEll:0 + 2: 0 + 25.1: _ZN9oceanbase3omt15ObResourceGroup13set_token_cntEl:0 + 0: 0 +_ZNSt14_Function_base13_Base_managerIZNK9oceanbase3lib20ObTenantCtxAllocator8get_holdEvEUlPKNS2_17ObTenantMemoryMgrEE_E10_M_managerERSt9_Any_dataRKS9_St18_Manager_operation:456:26 + 2: 23 + 3: 23 + 7: 0 + 11: 0 + 22: 22 + 15: _ZNSt14_Function_base13_Base_managerIZNK9oceanbase3lib20ObTenantCtxAllocator8get_holdEvEUlPKNS2_17ObTenantMemoryMgrEE_E8_M_cloneERSt9_Any_dataRKS9_St17integral_constantIbLb1EE:0 + 2: 0 +_ZN9oceanbase3sql24ObTenantSqlMemoryManager38count_profile_into_work_area_intervalsEPNS0_21ObSqlWorkAreaIntervalERlS4_:456:0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 14: 0 + 15: 0 + 16.1: 0 + 18.1: 3 + 18.5: 3 + 19: 3 + 20: 3 + 21.2: 3 + 21.4: 3 + 21.8: 0 + 22.1: 0 + 24.2: 0 + 24.3: 0 + 25.1: 0 + 27: 0 + 27.1: 0 + 28: 0 + 28.1: 0 + 28.2: 0 + 30.1: 0 + 31.1: 0 + 31.2: 0 + 31.3: 0 + 33.1: 0 + 34.2: 0 + 34.3: 0 + 38: 0 + 39: 0 + 43.1: 0 + 45: 0 + 19: _ZN9oceanbase3sql15ObSqlMemoryList8get_lockEv:48 + 0: 3 + 19.1: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEEC2ERS3_:117 + 1: 3 + 2: 3 + 4: 3 + 5.1: 0 + 4: _ZN9oceanbase6common10ObSpinLock4lockEv:51 + 2: 3 _ZN9oceanbase6common12ObLatchMutex4lockEjl:3 + 20: _ZN9oceanbase3sql15ObSqlMemoryList16get_profile_listEv:33 + 0: 3 + 22: _ZNK9oceanbase3sql20ObSqlWorkAreaProfile15get_auto_policyEv:0 + 0: 0 + 24.1: _ZNK9oceanbase3sql20ObSqlWorkAreaProfile14get_cache_sizeEv:0 + 0: 0 + 27: _ZN9oceanbase3sql20ObSqlWorkAreaProfile18calc_one_pass_sizeEl:0 + 2: 0 + 28: _ZNK9oceanbase3sql20ObSqlWorkAreaProfile17get_one_pass_sizeEv:0 + 0: 0 + 31.1: _ZN9oceanbase3sql21ObSqlWorkAreaInterval17get_interval_statEv:0 + 0: 0 + 34.2: _ZN9oceanbase3sql25ObSqlWorkAreaIntervalStat15analyze_profileERNS0_20ObSqlWorkAreaProfileElllb:0 + 9: 0 + 10: 0 + 11: 0 + 9: _ZNK9oceanbase3sql20ObSqlWorkAreaProfile10is_sort_waEv:0 + 0: 0 + 43: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEED2Ev:66 + 2: 3 + 3: 3 + 3.1: 3 + 4.1: 0 + 3: _ZN9oceanbase6common10ObSpinLock6unlockEv:3 + 2: 3 _ZN9oceanbase6common12ObLatchMutex6unlockEv:3 +_ZN9oceanbase6common11ObArrayImplINS_5share19ObLSPrimaryZoneInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE9push_backERKS3_:455:1 + 1: 1 + 2: 1 + 3: 1 + 4: 0 + 5.1: 0 + 6.1: 1 + 7: 2 + 9: 2 + 9.1: 2 + 10: 2 + 11: 0 + 12.1: 0 + 14: 0 + 17: 1 + 18.1: 0 + 21: 1 + 28.1: 0 + 32: 1 + 7: _ZN9oceanbase6common11ObArrayImplINS_5share19ObLSPrimaryZoneInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE10extend_bufEv:19 + 2: 1 + 3: 1 _ZN9oceanbase6common11ObArrayImplINS_5share19ObLSPrimaryZoneInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE10extend_bufEl:2 + 11: _ZN9oceanbase6common11copy_assignINS_5share19ObLSPrimaryZoneInfoEEEiRT_RKS4_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapINS_5share19ObLSPrimaryZoneInfoEEEiRT_RKS4_NS0_8BoolTypeILb1EEE:0 + 2: 0 + 17: _ZN9oceanbase6common16construct_assignINS_5share19ObLSPrimaryZoneInfoEEEiRT_RKS4_:148 + 2: _ZN9oceanbase6common21construct_assign_wrapINS_5share19ObLSPrimaryZoneInfoEEEiRT_RKS4_NS0_8BoolTypeILb1EEE:148 + 3: 2 _ZN9oceanbase5share19ObLSPrimaryZoneInfo6assignERKS1_:2 + 2: _ZN9oceanbase5share19ObLSPrimaryZoneInfoC2Ev:134 + 0: 2 + 1: 2 + 1.1: 2 + 1.2: 2 _ZN9oceanbase6common11ObSqlStringC1ERKNS_3lib7ObLabelE:2 + 1: _ZN9oceanbase5share6ObLSIDC2Ev:22 + 0: 2 + 1.1: _ZN9oceanbase3lib7ObLabelC2IA10_cEERKT_:22 + 2: _ZN9oceanbase3lib7ObLabelaSILm10EEERS1_RAT__Kc:22 + 4: 2 + 1.6: _ZN9oceanbase5share6ObLSIDD2Ev:0 + 0: _ZN9oceanbase5share6ObLSID5resetEv:0 + 0: 0 + 1.8: _ZN9oceanbase6common19ObFixedLengthStringILl128EEC2Ev:12 + 3: 2 +_ZN9oceanbase5share12ObSqlModeVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:455:1 + 11: 1 + 12: 0 + 5: _ZN9oceanbase5share11ObSetSysVarC2EPPKcPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSF_EPFiS7_SA_SD_SH_EPFiRNSE_12ObIAllocatorERKNS5_18ObBasicSessionInfoESD_SI_EPFiSO_SR_SD_RNSE_8ObStringEEPFNSE_9ObObjTypeEvE:451 + 6: _ZN9oceanbase5share15ObTypeLibSysVarC2EPPKcPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSF_EPFiS7_SA_SD_SH_EPFiRNSE_12ObIAllocatorERKNS5_18ObBasicSessionInfoESD_SI_EPFiSO_SR_SD_RNSE_8ObStringEEPFNSE_9ObObjTypeEvEb:451 + 14: 1 + 7: _ZN9oceanbase5share13ObBasicSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKS1_RKNS_6common5ObObjERSB_EPFiS4_S7_S9_SD_EPFiRNSA_12ObIAllocatorERKNS2_18ObBasicSessionInfoES9_SE_EPFiSK_SN_S9_RNSA_8ObStringEEPFNSA_9ObObjTypeEvEb:131 + 11: 1 + 12: 1 + 13: 1 + 14: 1 + 15: 1 + 16: 1 + 17: 1 + 18: 1 + 20: _ZN9oceanbase5share13ObBasicSysVar11clean_valueEv:86 + 2: _ZN9oceanbase5share13ObBasicSysVar16clean_base_valueEv:24 + 2: 1 + 3: _ZN9oceanbase6common5ObObj13set_nop_valueEv:16 + 2: _ZN9oceanbase6common5ObObj7set_extEl:16 + 4: 1 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:8 + 0: 1 + 3: _ZN9oceanbase5share13ObBasicSysVar15clean_inc_valueEv:21 + 2: _ZN9oceanbase6common5ObObj13set_nop_valueEv:21 + 2: _ZN9oceanbase6common5ObObj7set_extEl:21 + 4: 1 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:8 + 0: 1 + 4: _ZN9oceanbase6common5ObObj5resetEv:12 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4 + 0: 1 + 5: _ZN9oceanbase6common5ObObj5resetEv:29 + 5: 1 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4 + 0: 1 + 3: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:6 + 0: 1 + 4: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:4 + 0: 1 + 13: _ZN9oceanbase5share15ObSysVarTypeLibC2EPPKc:306 + 1: 1 + 2: 1 + 3: 1 + 8.1: 19 + 8.3: 19 + 9: 0 +_ZN9oceanbase3lib20set_tenant_tg_helperEPNS0_8TGHelperE:455:15 + 1: 13 + 2: 13 + 3: 13 +_ZN9oceanbase5share15ObNumericSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:453:3 + 10: 3 + 11: 3 + 5: _ZN9oceanbase5share13ObBasicSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKS1_RKNS_6common5ObObjERSB_EPFiS4_S7_S9_SD_EPFiRNSA_12ObIAllocatorERKNS2_18ObBasicSessionInfoES9_SE_EPFiSK_SN_S9_RNSA_8ObStringEEPFNSA_9ObObjTypeEvEb:393 + 11: 3 + 12: 3 + 13: 3 + 14: 3 + 15: 3 + 16: 3 + 17: 3 + 18: 3 + 20: _ZN9oceanbase5share13ObBasicSysVar11clean_valueEv:258 + 2: _ZN9oceanbase5share13ObBasicSysVar16clean_base_valueEv:72 + 2: 3 + 3: _ZN9oceanbase6common5ObObj13set_nop_valueEv:48 + 2: _ZN9oceanbase6common5ObObj7set_extEl:48 + 4: 3 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:24 + 0: 3 + 3: _ZN9oceanbase5share13ObBasicSysVar15clean_inc_valueEv:63 + 2: _ZN9oceanbase6common5ObObj13set_nop_valueEv:63 + 2: _ZN9oceanbase6common5ObObj7set_extEl:63 + 4: 3 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:24 + 0: 3 + 4: _ZN9oceanbase6common5ObObj5resetEv:36 + 6: 3 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:12 + 0: 3 + 5: _ZN9oceanbase6common5ObObj5resetEv:87 + 5: 3 + 6: 3 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:12 + 0: 3 + 3: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:18 + 0: 3 + 4: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:12 + 0: 3 +_ZN9oceanbase5share24ObZoneMergeTableOperator26construct_zone_merge_info_ERNS_6common9sqlclient13ObMySQLResultEbRNS2_8ObIArrayINS0_15ObZoneMergeInfoEEE:450:1 + 4: 1 + 5: 1 + 9: 1 + 12.1: 1 _ZNK9oceanbase8observer16ObInnerSQLResult7get_intEPKcRl:1 + 12.2: 0 + 12.4: 0 + 12.9: 0 + 13: 0 + 13.1: 0 + 13.2: 0 + 13.4: 0 + 13.9: 0 + 14: 0 + 14.1: 0 + 14.2: 0 + 14.4: 0 + 14.9: 0 + 15: 0 + 15.1: 0 + 15.2: 0 + 15.4: 0 + 15.9: 0 + 16: 0 + 16.1: 0 + 16.2: 0 + 16.4: 0 + 16.9: 0 + 17: 0 + 17.1: 0 + 17.2: 0 + 17.4: 0 + 17.9: 0 + 18: 0 + 18.1: 0 + 18.2: 0 + 18.4: 0 + 18.9: 0 + 19: 0 + 19.1: 0 + 19.2: 0 + 19.4: 0 + 19.9: 0 + 20: 0 + 20.1: 0 + 20.2: 0 + 20.4: 0 + 20.9: 0 + 21: 0 + 21.2: 0 + 21.3: 0 + 21.5: 0 + 21.6: 0 + 21.7: 0 + 21.10: 0 + 21.14: 0 + 21.16: 0 + 23: 0 + 23.1: 0 + 25: 0 + 26.2: 0 + 28: 0 + 28.1: 0 + 29.2: 0 + 30: 0 + 30.1: 0 + 31.1: 0 + 37: 0 + 39: 0 + 40.1: 0 + 43: 0 + 43.1: 0 + 44.1: 0 + 49: 0 + 50.28: 0 + 10: _ZN9oceanbase5share15ObZoneMergeInfoC2Ev:363 + 0: 1 + 1: 1 + 3: 1 + 3.1: 1 + 3.2: 1 + 3.3: 1 + 3.4: 1 + 3.5: 1 + 3.6: 1 + 3.7: 1 + 4: 1 + 0: _ZN9oceanbase6common7ObDListINS_5share15ObMergeInfoItemEEC2Ev:14 + 65463: _ZN9oceanbase6common11ObDLinkBaseINS_5share15ObMergeInfoItemEEC2Ev:14 + 2: 1 + 2: _ZN9oceanbase6common19ObFixedLengthStringILl128EEC2Ev:4 + 3: 1 + 3: _ZN9oceanbase5share15ObMergeInfoItemC2ERNS_6common7ObDListIS1_EEPKclb:40 + 5: 1 + 5.3: 1 + 6: 1 + 7: _ZN9oceanbase6common7ObDListINS_5share15ObMergeInfoItemEE8add_lastEPS3_:8 + 12: _ZN9oceanbase6common11ObDLinkBaseINS_5share15ObMergeInfoItemEE10add_beforeEPS3_:8 + 2: _ZN9oceanbase6common11ObDLinkBaseINS_5share15ObMergeInfoItemEE3addEPS3_S5_S5_:8 + 2: 1 + 3: 1 + 3.1: _ZN9oceanbase5share15ObMergeInfoItemC2ERNS_6common7ObDListIS1_EEPKclb:35 + 5: 1 + 5.3: 1 + 6: 1 + 7: _ZN9oceanbase6common7ObDListINS_5share15ObMergeInfoItemEE8add_lastEPS3_:8 + 12: _ZN9oceanbase6common11ObDLinkBaseINS_5share15ObMergeInfoItemEE10add_beforeEPS3_:8 + 2: _ZN9oceanbase6common11ObDLinkBaseINS_5share15ObMergeInfoItemEE3addEPS3_S5_S5_:8 + 2: 1 + 3: 1 + 3.2: _ZN9oceanbase5share15ObMergeInfoItemC2ERNS_6common7ObDListIS1_EEPKclb:29 + 5: 1 + 5.3: 1 + 6: 1 + 7: _ZN9oceanbase6common7ObDListINS_5share15ObMergeInfoItemEE8add_lastEPS3_:8 + 12: _ZN9oceanbase6common11ObDLinkBaseINS_5share15ObMergeInfoItemEE10add_beforeEPS3_:8 + 2: _ZN9oceanbase6common11ObDLinkBaseINS_5share15ObMergeInfoItemEE3addEPS3_S5_S5_:8 + 2: 1 + 3: 1 + 3.3: _ZN9oceanbase5share15ObMergeInfoItemC2ERNS_6common7ObDListIS1_EEPKclb:29 + 5: 1 + 5.3: 1 + 6: 1 + 7: _ZN9oceanbase6common7ObDListINS_5share15ObMergeInfoItemEE8add_lastEPS3_:8 + 12: _ZN9oceanbase6common11ObDLinkBaseINS_5share15ObMergeInfoItemEE10add_beforeEPS3_:8 + 2: _ZN9oceanbase6common11ObDLinkBaseINS_5share15ObMergeInfoItemEE3addEPS3_S5_S5_:8 + 2: 1 + 3: 1 + 3.4: _ZN9oceanbase5share15ObMergeInfoItemC2ERNS_6common7ObDListIS1_EEPKclb:29 + 5: 1 + 5.3: 1 + 6: 1 + 7: _ZN9oceanbase6common7ObDListINS_5share15ObMergeInfoItemEE8add_lastEPS3_:8 + 12: _ZN9oceanbase6common11ObDLinkBaseINS_5share15ObMergeInfoItemEE10add_beforeEPS3_:8 + 2: _ZN9oceanbase6common11ObDLinkBaseINS_5share15ObMergeInfoItemEE3addEPS3_S5_S5_:8 + 2: 1 + 3: 1 + 3.5: _ZN9oceanbase5share15ObMergeInfoItemC2ERNS_6common7ObDListIS1_EEPKclb:29 + 5: 1 + 5.3: 1 + 6: 1 + 7: _ZN9oceanbase6common7ObDListINS_5share15ObMergeInfoItemEE8add_lastEPS3_:8 + 12: _ZN9oceanbase6common11ObDLinkBaseINS_5share15ObMergeInfoItemEE10add_beforeEPS3_:8 + 2: _ZN9oceanbase6common11ObDLinkBaseINS_5share15ObMergeInfoItemEE3addEPS3_S5_S5_:8 + 2: 1 + 3: 1 + 3.6: _ZN9oceanbase5share15ObMergeInfoItemC2ERNS_6common7ObDListIS1_EEPKclb:29 + 5: 1 + 5.3: 1 + 6: 1 + 7: _ZN9oceanbase6common7ObDListINS_5share15ObMergeInfoItemEE8add_lastEPS3_:8 + 12: _ZN9oceanbase6common11ObDLinkBaseINS_5share15ObMergeInfoItemEE10add_beforeEPS3_:8 + 2: _ZN9oceanbase6common11ObDLinkBaseINS_5share15ObMergeInfoItemEE3addEPS3_S5_S5_:8 + 2: 1 + 3: 1 + 3.7: _ZN9oceanbase5share15ObMergeInfoItemC2ERNS_6common7ObDListIS1_EEPKclb:44 + 5: 1 + 5.3: 1 + 6: 1 + 7: _ZN9oceanbase6common7ObDListINS_5share15ObMergeInfoItemEE8add_lastEPS3_:23 + 13: 1 + 12: _ZN9oceanbase6common11ObDLinkBaseINS_5share15ObMergeInfoItemEE10add_beforeEPS3_:16 + 2: _ZN9oceanbase6common11ObDLinkBaseINS_5share15ObMergeInfoItemEE3addEPS3_S5_S5_:16 + 2: 1 + 3: 1 + 4: 1 + 5: 1 + 21.1: _ZN9oceanbase6common8ObStringC2Ev:0 + 1: 0 + 21.4: _ZNK9oceanbase6common8ObString6lengthEv:0 + 0: 0 + 21.12: _ZN9oceanbase6common8ObString3ptrEv:0 + 0: 0 + 27: _ZN9oceanbase6common12ObIArrayWrapINS_5share15ObZoneMergeInfoEE2atEl:0 + 6: 0 +_ZN9oceanbase6common11ObArrayImplINS_5share11ObLSReplicaENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE6assignERKNS0_8ObIArrayIS3_EE:449:0 + 1: 0 + 2: 0 + 3: 0 + 4: 0 + 6: 0 + 6.1: 0 + 7: 1 + 8.1: 0 + 9: 0 + 11: 1 + 12.1: 1 + 12.3: 1 + 12.5: 0 + 13: 0 + 14.1: 0 + 15: 0 + 18.1: 1 + 18.3: 1 + 19: 1 + 20.1: 0 + 21: 0 + 24: 0 + 25: 0 + 27: 0 + 28: 0 + 32: 0 + 5: _ZNK9oceanbase6common12ObIArrayWrapINS_5share11ObLSReplicaEE5countEv:0 + 0: 0 + 11: _ZSt3minIlERKT_S2_S2_:7 + 5: 1 + 13: _ZNK9oceanbase6common12ObIArrayWrapINS_5share11ObLSReplicaEE2atEl:0 + 6: 0 + 13.1: _ZN9oceanbase6common11copy_assignINS_5share11ObLSReplicaEEEiRT_RKS4_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapINS_5share11ObLSReplicaEEEiRT_RKS4_NS0_8BoolTypeILb1EEE:0 + 2: 0 + 19: _ZNK9oceanbase6common12ObIArrayWrapINS_5share11ObLSReplicaEE2atEl:16 + 6: 1 + 19.1: _ZN9oceanbase6common16construct_assignINS_5share11ObLSReplicaEEEiRT_RKS4_:315 + 2: _ZN9oceanbase6common21construct_assign_wrapINS_5share11ObLSReplicaEEEiRT_RKS4_NS0_8BoolTypeILb1EEE:315 + 3: 1 _ZN9oceanbase5share11ObLSReplica6assignERKS1_:1 + 2: _ZN9oceanbase5share11ObLSReplicaC2Ev:311 + 1: 1 + 4: 1 + 5: 1 + 6: 1 + 7: 1 + 8: 1 + 9: 1 + 14: 1 + 16: 1 + 18: 1 + 3: _ZN9oceanbase6common6ObAddrC2Ev:27 + 1: 1 + 6: _ZN9oceanbase6common9ObSEArrayINS_5share12SimpleMemberELl7ENS0_15ObNullAllocatorELb0EEC2Ev:112 + 0.1: 1 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_5share12SimpleMemberELl7ENS0_15ObNullAllocatorELb0EEC2ElRKS4_:107 + 5: 1 + 6: 1 + 8: 1 + 17.1: 1 + 2: _ZN9oceanbase6common8ObIArrayINS_5share12SimpleMemberEEC2EPS3_l:14 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_5share12SimpleMemberEEC2EPS3_l:14 + 0: 1 + 7: _ZN9oceanbase6common15ObNullAllocatorC2ERKS1_:8 + 0: 1 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:28 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:28 + 2: 1 + 8: 1 + 10: _ZN9oceanbase5share17ObLSRestoreStatusC2Ev:9 + 0: 1 + 11: _ZN9oceanbase6common17ObReplicaPropertyC2Ev:16 + 0: 1 + 13: _ZN9oceanbase6common19ObFixedLengthStringILl128EEC2Ev:9 + 3: 1 +_ZNK9oceanbase4palf11LogStateMgr8get_roleEv:444:37 + 0: 37 +_ZN9oceanbase8observer24ObInnerSQLConnectionPool7acquireEmRPNS_6common9sqlclient16ObISQLConnectionEPNS2_12ObISQLClientE:444:0 + 1: 0 + 2: 0 + 4: 0 + 5: 0 + 6: 0 + 7.1: 0 + 8.1: 3 _ZN9oceanbase8observer24ObInnerSQLConnectionPool10alloc_connERPNS0_20ObInnerSQLConnectionE:1 + 9.1: 0 + 10.1: 3 _ZN9oceanbase8observer20ObInnerSQLConnection4initEPNS0_24ObInnerSQLConnectionPoolEPNS_5share6schema27ObMultiVersionSchemaServiceEPNS_3sql5ObSqlEPNS0_15ObVTIterCreatorEPNS_6common14ObServerConfigEPNS8_16ObSQLSessionInfoEPNSD_12ObISQLClientEPNS0_20ObRestoreSQLModifierEbb:3 + 12.1: 0 + 15: 3 + 18: 3 + 20: 0 + 21: 0 + 22.1: 0 + 25: 0 + 26: 0 + 27.1: 0 + 32: 3 + 14: _ZN9oceanbase8observer20ObInnerSQLConnection3refEv:120 + 2: 3 + 3.1: 0 + 5: 3 + 6: 3 + 7.1: 0 + 20: _ZN9oceanbase8observer20ObInnerSQLConnection7destroyEv:0 + 2: 0 + 4: 0 + 5: 0 + 6: 0 + 7.1: 0 + 11: 0 + 12: 0 + 15: 0 + 16: 0 + 17: 0 + 19: 0 + 21: 0 +_ZN9oceanbase6common18get_signal_handlerEv:444:13 + 1: 12 + 6: 12 + 6.1: 0 + 7: 12 + 6.1: _ZZN9oceanbase6common18get_signal_handlerEvEN7WrapperC2Ev:0 + 0: 0 +_ZN9oceanbase6common14ObStringHolder6assignERKNS0_8ObStringE:441:7 + 0: 6 + 3: 6 + 5: 6 _ZN9oceanbase6common20value_sematic_string16DefaultAllocator5allocEl:6 + 8: 3 + 9: 3 + 12: 4 + 2: _ZN9oceanbase6common14ObStringHolder5resetEv:42 + 1: 6 + 2: 0 + 4: 0 + 3: _ZNK9oceanbase6common8ObString5emptyEv:84 + 2: 6 + 2.1: 6 + 9: _ZNK9oceanbase6common8ObString3ptrEv:12 + 0: 3 +_ZN9oceanbase6common5occam20ObThreadHungDetector13ClickPointIdx7get_idxEv:440:10 + 1: 10 + 2: 10 + 3: 0 + 4.1: 0 + 4.3: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10.1: 0 + 17: 10 + 3: _Z9ob_gettidv:0 + 3: 0 + 4: 0 + 2: _Z13get_tid_cachev:0 + 7: 0 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 + 7: _Z9ob_gettidv:0 + 3: 0 + 4: 0 + 2: _Z13get_tid_cachev:0 + 7: 0 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 +_ZN9oceanbase6common11ObSqlString7vappendEPKcP13__va_list_tag:440:4 + 1: 4 + 2: 4 + 4: 4 + 6: 4 + 7: 0 + 8.1: 0 + 10: 4 + 11: 1 + 12: 0 + 13.1: 0 + 14.1: 1 + 15: 2 _ZN9oceanbase6common11ObSqlString7reserveEl:1 + 16.1: 0 + 18: 2 + 19: 1 + 20: 0 + 21.1: 0 + 23: 1 + 24: 0 + 25.1: 0 + 28: 1 + 33: 0 + 38: 1 +_ZN9oceanbase4palf7PalfEnv5closeERNS0_10PalfHandleE:440:5 + 1: 4 + 2: 4 _ZN9oceanbase4palf10PalfHandle23unregister_file_size_cbEv:5 + 3: 4 _ZN9oceanbase4palf10PalfHandle25unregister_role_change_cbEv:4 + 4: 3 _ZN9oceanbase4palf10PalfHandle21unregister_rebuild_cbEv:3 + 5: 4 + 6: 9 + 7.1: 9 _ZZN9oceanbase4palf7PalfEnv5closeERNS0_10PalfHandleEENK5$_626clEPKc.0e4bf25207570af14a78557c8489c4fc:10 + 8: 10 + 5: _ZN9oceanbase4palf11PalfEnvImpl23revert_palf_handle_implEPNS0_14PalfHandleImplE:78 + 2: 4 + 3: 5 _ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE6revertEPS4_:6 +_ZN9oceanbase7storage13ObTxDataTable31get_tx_data_in_memtables_cache_ENS_11transaction9ObTransIDERNS0_15ObTableHandleV2ERNS0_13ObTxDataGuardERb:439:2 + 4: 2 + 5: 2 + 7: 2 _ZN9oceanbase6common12TCRLockGuardC2ERKNS0_8TCRWLockE:2 + 8: 2 + 9: 2 + 11.2: 1 + 11.3: 3 + 11.7: 1 + 12: 2 + 13: 2 + 13.1: 2 _ZN9oceanbase7storage15ObTableHandleV220get_tx_data_memtableERPNS0_16ObTxDataMemtableE:2 + 13.2: 2 + 14: 0 + 15.1: 0 + 16.1: 2 + 17: 0 + 18.1: 0 + 20: 2 _ZN9oceanbase7storage16ObTxDataMemtable11get_tx_dataERKNS_11transaction9ObTransIDERNS0_13ObTxDataGuardE:2 + 20.1: 1 + 21: 1 + 22: 0 + 23: 0 + 23.1: 0 + 27.1: 0 + 39.6: 1 + 11: _ZNK9oceanbase6common12ObIArrayWrapINS_7storage15ObTableHandleV2EE5countEv:12 + 0: 2 + 13: _ZN9oceanbase6common12ObIArrayWrapINS_7storage15ObTableHandleV2EE2atEl:30 + 6: 2 + 23: _ZN9oceanbase6common12ObIArrayWrapINS_7storage15ObTableHandleV2EE2atEl:0 + 6: 0 + 39.5: _ZN9oceanbase6common12TCRLockGuardD2Ev:0 + 2: 0 + 3: 0 + 3.1: 0 + 3.2: 0 + 3: _ZN9oceanbase6common8TCRWLock8rdunlockEl:0 + 3: 0 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:0 + 0: 0 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPil:0 + 2: 0 + 2.1: 0 + 3: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:0 + 2: 0 + 2.1: 0 + 3: 0 + 39.6: _ZN9oceanbase6common12TCRLockGuardD2Ev:60 + 2: 1 + 3: 1 + 3.1: 1 + 3.2: 0 + 3: _ZN9oceanbase6common8TCRWLock8rdunlockEl:39 + 3: 1 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:4 + 0: 1 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPil:22 + 2: 1 + 2.1: 1 + 3: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:6 + 2: 1 + 2.1: 0 + 3: 0 +_ZN9oceanbase7storage8ObTablet28get_kept_multi_version_startERlS2_:438:3 + 3: 3 + 4: 3 + 5: 3 + 6: 3 + 10: 3 + 11: 0 + 12.1: 0 + 13.1: 3 + 14: 3 + 14.1: 3 _ZNK9oceanbase7storage13ObITableArray18get_boundary_tableEb:3 + 14.2: 3 _ZNK9oceanbase7storage8ObITable20get_snapshot_versionEv:3 + 17: 0 + 18.1: 3 _ZN9oceanbase7storage21ObTenantFreezeInfoMgr25get_min_reserved_snapshotERKNS_6common10ObTabletIDElRl:3 + 20.1: 0 + 22: 0 + 22.3: 0 + 22.9: 0 + 25: 0 + 8: _ZN9oceanbase5share11ObTenantEnv3mtlIPNS_7storage21ObTenantFreezeInfoMgrEEET_v:102 + 2: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:57 + 2: 3 + 2.1: 0 + 2.2: 0 + 2.1: _ZN9oceanbase5share12ObTenantBase3getIPNS_7storage21ObTenantFreezeInfoMgrEEET_v:45 + 0: _ZN9oceanbase5share12ObTenantBase9inner_getENS1_8IdentityIPNS_7storage21ObTenantFreezeInfoMgrEEE:45 + 0: 3 + 22: _ZNK9oceanbase7storage8ObTablet23get_multi_version_startEv:0 + 0: 0 + 22.3: _ZNK9oceanbase7storage8ObTablet20get_snapshot_versionEv:0 + 0: 0 +_ZN9oceanbase6common13ObSEArrayImplIlLl32ENS0_19ModulePageAllocatorELb0EE7reserveEl:437:2 + 1: 2 + 2: 2 + 3: 2 + 5: 2 + 6: 2 + 7: 2 + 7.3: 2 + 9: 2 + 10: 2 + 11: 2 + 12: 2 + 13: 0 + 15: 2 + 16: 2 + 23: 0 + 24.1: 0 + 27: 3 + 8: _ZN9oceanbase6common13ObSEArrayImplIlLl32ENS0_19ModulePageAllocatorELb0EE16internal_malloc_El:140 + 2: 2 + 7: 2 + 13: 2 + 13: _ZN9oceanbase6common19ModulePageAllocator5allocEl:94 + 2: 2 + 3: 2 _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:2 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:30 + 5: 2 + 7: 2 + 8: 2 + 10: _ZN9oceanbase6common9ObClassOpIlLb1EE12array_expandEPKlPll:16 + 2: 2 +_ZN9oceanbase6common6ObPoolINS0_8ObMallocENS0_10ObNullLockEE5resetEv:432:6 + 1: 6 + 2: 6 + 4.1: 6 + 5: 0 + 10: 6 + 11: 6 + 12: 6 + 13: 6 + 17: 6 + 6: _ZN9oceanbase6common8ObMalloc4freeEPv:0 + 0: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase6common13ObSEArrayImplImLl1024ENS0_19ModulePageAllocatorELb0EE9push_backERKm:432:9 + 2: 9 + 5: 9 + 6: 0 + 12: 0 + 15: 0 + 15.1: 9 + 16: 9 + 19: 9 + 15.1: _ZN9oceanbase6common9ObClassOpImLb1EE20construct_and_assignERKmRm:63 + 2: 9 +_ZN9oceanbase5share11ObLSReplicaC2Ev:431:3 + 1: 3 + 4: 3 + 5: 3 + 6: 3 + 7: 1 + 8: 1 + 9: 1 + 14: 1 + 16: 1 + 18: 1 + 19: 3 + 20: 1 + 3: _ZN9oceanbase6common6ObAddrC2Ev:63 + 1: 3 + 6: _ZN9oceanbase6common9ObSEArrayINS_5share12SimpleMemberELl7ENS0_15ObNullAllocatorELb0EEC2Ev:112 + 0.1: 1 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_5share12SimpleMemberELl7ENS0_15ObNullAllocatorELb0EEC2ElRKS4_:97 + 5: 1 + 6: 1 + 8: 1 + 17.1: 1 + 2: _ZN9oceanbase6common8ObIArrayINS_5share12SimpleMemberEEC2EPS3_l:12 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_5share12SimpleMemberEEC2EPS3_l:12 + 0: 1 + 7: _ZN9oceanbase6common15ObNullAllocatorC2ERKS1_:18 + 0: 1 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:25 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:25 + 2: 1 + 8: 1 + 10: _ZN9oceanbase5share17ObLSRestoreStatusC2Ev:7 + 0: 1 + 11: _ZN9oceanbase6common17ObReplicaPropertyC2Ev:14 + 0: 1 + 13: _ZN9oceanbase6common19ObFixedLengthStringILl128EEC2Ev:7 + 3: 1 +_ZN9oceanbase5share11ObLSReplicaC1Ev:431:3 + 1: 3 + 4: 3 + 5: 3 + 6: 3 + 7: 1 + 8: 1 + 9: 1 + 14: 1 + 16: 1 + 18: 1 + 19: 3 + 20: 1 + 3: _ZN9oceanbase6common6ObAddrC2Ev:63 + 1: 3 + 6: _ZN9oceanbase6common9ObSEArrayINS_5share12SimpleMemberELl7ENS0_15ObNullAllocatorELb0EEC2Ev:112 + 0.1: 1 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_5share12SimpleMemberELl7ENS0_15ObNullAllocatorELb0EEC2ElRKS4_:97 + 5: 1 + 6: 1 + 8: 1 + 17.1: 1 + 2: _ZN9oceanbase6common8ObIArrayINS_5share12SimpleMemberEEC2EPS3_l:12 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_5share12SimpleMemberEEC2EPS3_l:12 + 0: 1 + 7: _ZN9oceanbase6common15ObNullAllocatorC2ERKS1_:18 + 0: 1 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:25 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:25 + 2: 1 + 8: 1 + 10: _ZN9oceanbase5share17ObLSRestoreStatusC2Ev:7 + 0: 1 + 11: _ZN9oceanbase6common17ObReplicaPropertyC2Ev:14 + 0: 1 + 13: _ZN9oceanbase6common19ObFixedLengthStringILl128EEC2Ev:7 + 3: 1 +_ZN9oceanbase7storage18LockForReadFunctorclERKNS0_8ObTxDataEPNS0_9ObTxCCCtxE:424:3 + 1: 3 + 2: 3 + 4: 3 + 7: 3 + 7.1: 0 + 8: 0 + 9.1: 0 + 11.1: 1 + 11.3: 1 + 12: 3 _ZN9oceanbase7storage18LockForReadFunctor19inner_lock_for_readERKNS0_8ObTxDataEPNS0_9ObTxCCCtxE:2 + 13: 2 _ZN9oceanbase8observer14global_contextEv:2 + 13.1: 1 + 14: 1 _ZN9oceanbase8observer14global_contextEv:1 + 16: 0 + 17.1: 0 + 18.1: 1 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:1 + 18.4: 1 + 19: 0 + 21: 1 + 22: 0 + 24.3: 1 + 30: 0 + 30.1: 3 + 31.1: 0 + 37: 2 + 5: _ZNK9oceanbase8memtable15ObMvccAccessCtx19eval_lock_expire_tsEl:33 + 2: 3 + 10.1: 0 + 11: 0 + 15: 3 + 30.1: _ZNK9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEEclES5_S7_:37 + 2: 3 + 2.2: 3 _ZNK9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEE7DerivedINS2_26ObCleanoutNothingOperationEE6invokeES5_S7_:3 +_ZN9oceanbase11transaction10ObTransCtxC2EPKcl:422:1 + 0.5: 1 + 0.6: 1 + 1: 1 + 2: 1 + 3.1: 1 + 5: 1 + 7: 1 + 11: 1 + 11.1: 1 + 11.2: 1 + 0: _ZN9oceanbase11transaction15ObTransHashLinkINS0_10ObTransCtxEEC2Ev:17 + 0: 1 + 0.1: _ZN9oceanbase11transaction9ObTransIDC2Ev:8 + 0: 1 + 0.2: _ZN9oceanbase6common6ObAddrC2Ev:7 + 1: 1 + 0.3: _ZN9oceanbase11transaction7CtxLockC2Ev:8 + 0: 1 _ZN9oceanbase6common7ObLatchC1Ev:1 + 0.4: _ZN9oceanbase11transaction18ObTxCommitCallbackC2Ev:55 + 0.4: _ZN9oceanbase11transaction18ObTxCommitCallback5resetEv:55 + 2: 1 + 4: 1 + 7: 1 + 8: 1 + 0.6: _ZN9oceanbase11transaction18ObTransTimeoutTaskC2Ev:89 + 0: 1 + 0: _ZN9oceanbase11transaction14ObITimeoutTaskC2Ev:53 + 0: 1 + 0: _ZN9oceanbase6common15ObTimeWheelTaskC2Ev:33 + 0: 1 + 0.1: 1 _ZN9oceanbase6common15ObTimeWheelTask5resetEv:1 + 0: _ZN9oceanbase6common11ObDLinkBaseINS0_15ObTimeWheelTaskEEC2Ev:7 + 1: 1 + 0.7: _ZN9oceanbase6common15ObSmallSpinLockIhLl0ELl500ELl100EEC2Ev:7 + 0: _ZN9oceanbase6common15ObSmallSpinLockIhLl0ELl500ELl100EE4initEv:7 + 2: 1 + 0.7: _ZN9oceanbase11transaction11ObTraceInfoC2Ev:50 + 1: 1 + 2: 1 + 1: _ZN9oceanbase6common8ObStringC2EiiPc:18 + 1: 1 + 2: _ZN9oceanbase6common8ObStringC2EiiPc:18 + 1: 1 + 0.8: _ZN9oceanbase11transaction14ObTxELRHandlerC2Ev:21 + 0: 1 + 6: _ZN9oceanbase11transaction11MonotonicTsC2El:14 + 0: 1 + 11.13: _ZN9oceanbase11transaction19ObTransNeedWaitWrapD2Ev:0 + 0.1: _ZN9oceanbase11transaction11MonotonicTsD2Ev:0 + 0: _ZN9oceanbase11transaction11MonotonicTs5resetEv:0 + 0: 0 + 11.14: _ZN9oceanbase11transaction18ObTxCommitCallbackD2Ev:0 + 0: _ZN9oceanbase11transaction18ObTxCommitCallback5resetEv:0 + 2: 0 + 4: 0 + 7: 0 + 8: 0 + 0.1: _ZN9oceanbase11transaction9ObTransIDD2Ev:0 + 0: 0 + 11.15: _ZN9oceanbase11transaction11MonotonicTsD2Ev:0 + 0: _ZN9oceanbase11transaction11MonotonicTs5resetEv:0 + 0: 0 + 11.16: _ZN9oceanbase11transaction7CtxLockD2Ev:0 + 0: 0 + 11.18: _ZN9oceanbase5share6ObLSIDD2Ev:0 + 0: _ZN9oceanbase5share6ObLSID5resetEv:0 + 0: 0 + 11.19: _ZN9oceanbase11transaction15ObTransHashLinkINS0_10ObTransCtxEED2Ev:0 + 2: 0 + 3: 0 +_ZZNK9oceanbase4palf19LogGroupEntryHeader9serializeEPclRlENK5$_651clEPKc.1598dc2348996c1ae1caea6120522988:420:6 + 0: 6 + 0.1: 0 + 0.2: 6 + 0.3: 6 _ZN9oceanbase6common8ObLogger13need_to_printEmi:6 + 0.11: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:102 + 2: 6 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVIRKNS_4palf19LogGroupEntryHeaderELb0EEC2EPKcS5_:0 + 0: 0 +_ZN9oceanbase6common16ob_fast_digits10Em:420:13 + 1: 13 + 18: 13 + 20.1: 4 + 22.1: 0 + 24.1: 0 + 25: 0 + 26: 0 + 27: 0 + 30: 0 + 33: 0 + 35.1: 0 + 36: 0 + 38: 0 + 41: 13 + 43: 13 +_ZN9oceanbase4palf22BatchLogIOFlushLogTask29push_flush_cb_to_thread_pool_EiPNS0_11PalfEnvImplE:420:3 + 1: 3 + 2: 3 + 4: 3 + 5: 0 + 6.1: 0 + 8.1: 4 + 9: 3 + 10: 3 + 11.1: 0 + 13.1: 4 _ZN9oceanbase4palf29push_task_into_cb_thread_poolElPNS0_9LogIOTaskE:3 + 15.1: 0 + 19: 4 + 23: 4 + 9: _ZN9oceanbase6common16ObFixedArrayImplIPNS_4palf17LogIOFlushLogTaskENS0_12ObIAllocatorEEixEl:12 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_4palf17LogIOFlushLogTaskEE2atEl:12 + 6: 3 + 19: _ZN9oceanbase6common16ObFixedArrayImplIPNS_4palf17LogIOFlushLogTaskENS0_12ObIAllocatorEEixEl:16 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_4palf17LogIOFlushLogTaskEE2atEl:16 + 6: 4 +_ZN9oceanbase7storage11ObLSService11get_ls_iterERNS_6common13ObSharedGuardINS0_12ObLSIteratorEEENS0_10ObLSGetModE:419:0 + 1: 0 + 2: 0 + 6: 0 + 7: 0 + 8: 0 + 9.1: 0 + 10.1: 0 + 11: 0 + 12.1: 0 + 13.1: 2 _ZN9oceanbase6common25ObConcurrentFIFOAllocator5allocElRKNS_3lib9ObMemAttrE:1 + 14: 0 + 15.1: 0 + 18: 2 + 19: 1 + 23.1: 0 + 26: 1 + 6.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 17: _ZN9oceanbase7storage12ObLSIteratorC2Ev:202 + 3: 2 + 6: 2 + 1: _ZN9oceanbase6common7ObArrayIPNS_7storage4ObLSENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEEC2Ev:166 + 0.1: 2 + 0.5: _ZN9oceanbase6common11ObArrayImplIPNS_7storage4ObLSENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEEC2ElRKS5_:136 + 7.1: 2 + 2: _ZN9oceanbase6common8ObIArrayIPNS_7storage4ObLSEEC2Ev:30 + 0: _ZN9oceanbase6common12ObIArrayWrapIPNS_7storage4ObLSEEC2Ev:30 + 0: 2 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:90 + 0: 2 + 18: _ZN9oceanbase7storage12ObLSIterator10set_ls_mapERNS0_7ObLSMapENS0_10ObLSGetModE:22 + 1: 2 + 2: 2 + 19: _ZN9oceanbase6common5guard27DefaultSharedGuardAllocator21get_default_allocatorEv:34 + 1: 2 + 1.1: 0 + 1.3: 0 + 19.1: _ZN9oceanbase6common13ObSharedGuardINS_7storage12ObLSIteratorEE6assignIZNS2_11ObLSService11get_ls_iterERS4_NS2_10ObLSGetModEE5$_394EEiPS3_OT_RNS0_12ObIAllocatorE:103 + 4: 2 _ZN9oceanbase6common5guard27DefaultSharedGuardAllocator5allocEl:2 + 14: 1 _ZN9oceanbase6common13ObSharedGuardINS_7storage12ObLSIteratorEE5resetEv:1 + 15: 1 + 16: 1 + 6.1: _ZN9oceanbase6common5guard12ControlBlockINS_7storage12ObLSIteratorEEC2IZNS3_11ObLSService11get_ls_iterERNS0_13ObSharedGuardIS4_EENS3_10ObLSGetModEE5$_394EEOT_RNS0_12ObIAllocatorEPv:45 + 1: 1 + 4: 1 + 5: 1 + 3.1: _ZN9oceanbase6common10ObFunctionIFvPNS_7storage12ObLSIteratorEEEC2IZNS2_11ObLSService11get_ls_iterERNS0_13ObSharedGuardIS3_EENS2_10ObLSGetModEE5$_394Lb1EEEOT_RNS0_12ObIAllocatorE:27 + 2: 1 + 6.1: _ZN9oceanbase6common10ObFunctionIFvPNS_7storage12ObLSIteratorEEE6assignIZNS2_11ObLSService11get_ls_iterERNS0_13ObSharedGuardIS3_EENS2_10ObLSGetModEE5$_394Lb1EEEiOT_:23 + 7: 1 + 12: 1 + 12.1: _ZN9oceanbase6common10ObFunctionIFvPNS_7storage12ObLSIteratorEEE7DerivedIZNS2_11ObLSService11get_ls_iterERNS0_13ObSharedGuardIS3_EENS2_10ObLSGetModEE5$_394EC2ISD_EEOT_:15 + 0: 1 +_ZN9oceanbase6common4hash16LatchWriteLockerD2Ev:416:23 + 1: 23 + 2: 23 + 3: 23 _ZN9oceanbase6common7ObLatch6unlockEPKj:23 + 3.1: 0 + 5: 24 +_ZN9oceanbase4palf11LogStateMgr26leader_active_need_switch_ERb:416:7 + 1: 7 + 4: 7 + 5: 7 _ZN9oceanbase4palf11LogStateMgr19need_update_leader_ERNS_6common6ObAddrE:7 + 7.1: 4 + 8: 4 _ZN9oceanbase4palf11LogStateMgr28check_leader_log_sync_state_Ev:4 + 15: 5 + 3: _ZN9oceanbase6common6ObAddrC2Ev:147 + 1: 7 +_ZN9oceanbase7storage23ObTenantTabletScheduler27schedule_tablet_minor_mergeENS_5share6ObLSIDERNS0_8ObTabletE:415:1 + 1: 0 + 2: 0 + 3: 0 + 5.1: 7 + 5.3: 7 + 5.5: 7 + 6: 7 + 7: 7 _ZN9oceanbase10compaction22ObPartitionMergePolicy26check_need_buf_minor_mergeERKNS_7storage8ObTabletERb:4 _ZN9oceanbase10compaction22ObPartitionMergePolicy27check_need_hist_minor_mergeERKNS_7storage8ObTabletERb:4 + 9: 5 + 12.1: 0 + 14.1: 2 + 14.2: 0 + 16: 0 + 18: 0 + 19.1: 0 + 25: 1 +_ZN9oceanbase3sql18ObBasicSessionInfo19is_trx_idle_timeoutERb:414:2 + 1: 2 + 3: 2 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:2 + 7: 3 + 8: 3 + 8.3: 3 + 10: 3 + 12: 3 + 14.1: 0 + 15: 0 + 16: 0 + 19: 3 + 8: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache23get_ob_trx_idle_timeoutEv:108 + 0: 3 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache23get_ob_trx_idle_timeoutEb:69 + 0: 3 + 10: _ZNK9oceanbase3sql18ObBasicSessionInfo17is_in_transactionEv:63 + 0: 3 + 0.1: _ZNK9oceanbase11transaction8ObTxDesc8is_in_txEv:27 + 0: 3 + 11: _ZN9oceanbase11transaction8ObTxDesc13is_committingEv:27 + 2: 3 +_ZNK9oceanbase7storage18ObTabletTableStore23get_mini_minor_sstablesERNS0_19ObTablesHandleArrayE:412:3 + 1: 3 + 2: 3 + 3: 3 + 4: 0 + 5.1: 0 + 6.1: 3 + 7: 2 + 8.1: 0 + 10.1: 0 + 11.1: 0 + 13: 2 + 6.2: _ZNK9oceanbase7storage16ObTabletHAStatus23is_data_status_completeEv:21 + 0: _ZN9oceanbase7storage18ObTabletDataStatus11is_completeERKNS1_6STATUSE:21 + 0: 3 + 7: _ZNK9oceanbase7storage13ObITableArray14get_all_tablesERNS0_19ObTablesHandleArrayE:160 + 2: 3 + 3: 3 + 4.1: 3 + 6.1: 0 + 6.2: 2 + 6.3: 2 + 6.5: 2 + 7: 2 + 8.1: 2 _ZN9oceanbase7storage19ObTablesHandleArray9add_tableEPNS0_8ObITableE:2 + 9.1: 0 +_ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_lEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE6createElPSH_PSK_:410:4 + 1: 4 + 2: 4 + 3: 4 + 4.1: 0 + 5: 0 + 6.1: 4 + 7.1: 0 + 9: 0 + 10.1: 3 + 12.1: 0 + 13: 0 + 16: 3 + 17: 3 + 19: 3 + 21: 3 + 6.1: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringElEENS1_5NLockENS1_5NCondEEEEEbRKT_:20 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringElEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:20 + 2: 4 + 10.1: _ZN9oceanbase6common4hash6createIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringElEENS1_5NLockENS1_5NCondEEENS0_8ObMallocEEEiRT_lllRT0_:56 + 3: 4 _ZN9oceanbase6common4hash9do_createIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringElEENS1_5NLockENS1_5NCondEEENS0_8ObMallocEEEiRT_lllNS1_16NormalPointerTagERT0_:4 +_ZN9oceanbase6common15ObLinearHashMapINS_12blocksstable12MacroBlockIdENS2_14ObBlockManager9BlockInfoENS0_14ShareMemMgrTagEE11do_foreach_INS4_25GetAllMacroBlockIdFunctorENS7_14DoForeachOnBktIS9_EEEEbRT_RT0_:410:0 + 1: 0 + 3: 0 + 4.1: 10 + 4.2: 10 + 4.3: 10 + 4.5: 10 + 5: 10 _ZN9oceanbase6common15ObLinearHashMapINS_12blocksstable12MacroBlockIdENS2_14ObBlockManager9BlockInfoENS0_14ShareMemMgrTagEE16do_foreach_scan_INS4_25GetAllMacroBlockIdFunctorENS7_14DoForeachOnBktIS9_EEEEbmmRT_RT0_:10 + 7: 0 + 8: 0 +_ZN9oceanbase5share6schema17ObSysTableChecker20check_sys_table_nameEmmRKNS_6common8ObStringERb:410:0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10.1: 0 + 11.1: 0 + 12: 0 + 13.1: 0 + 14.1: 0 + 18: 0 + 18.1: 0 + 19: 0 + 19.1: 0 + 20: 0 + 20.1: 0 + 21: 0 + 21.1: 0 + 28.1: 1 + 30.1: 1 + 32.1: 0 + 34: 0 + 35: 0 + 37.1: 1 + 37.3: 1 + 38: 0 + 39.1: 0 + 41.1: 1 + 41.3: 1 + 41.4: 1 + 41.7: 0 + 42.2: 2 + 45.1: 2 _ZZN9oceanbase5share6schema17ObSysTableChecker20check_sys_table_nameEmmRKNS_6common8ObStringERbENK4$_24clEPKc.238ab44b22ba0c710eddc3a8b49e8eb3:2 + 47: 2 + 11.1: _ZNK9oceanbase6common8ObString5emptyEv:0 + 2: 0 + 2.1: 0 + 17.1: _ZN9oceanbase6common13is_sys_tenantEm:0 + 2: 0 + 18.1: _ZNK9oceanbase6common8ObString12case_compareEPKc:0 + 8: _ZNK9oceanbase6common8ObString12case_compareERKS1_:0 + 10: 0 + 10.1: 0 + 11: 0 + 19.1: _ZNK9oceanbase6common8ObString12case_compareEPKc:0 + 8: _ZNK9oceanbase6common8ObString12case_compareERKS1_:0 + 10: 0 + 10.1: 0 + 11: 0 + 20.1: _ZNK9oceanbase6common8ObString12case_compareEPKc:0 + 8: _ZNK9oceanbase6common8ObString12case_compareERKS1_:0 + 10: 0 + 10.1: 0 + 11: 0 + 21.1: _ZNK9oceanbase6common8ObString12case_compareEPKc:0 + 8: _ZNK9oceanbase6common8ObString12case_compareERKS1_:0 + 10.1: 0 + 11: 0 + 27: _ZN9oceanbase5share6schema17ObSysTableChecker16TableNameWrapperC2EmNS_6common14ObNameCaseModeERKNS4_8ObStringE:0 + 3: 0 + 28: _ZNK9oceanbase5share6schema17ObSysTableChecker16TableNameWrapper4hashEv:3 + 5: 0 + 4: _ZN9oceanbase6common10murmurhashEPKvim:0 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:0 + 13: 0 + 14: 0 + 15: 0 + 17: 0 + 18: 0 + 41: 0 + 42: 0 + 43: 0 + 30: _ZNK9oceanbase6common4hash9ObHashMapImPNS0_9ObSEArrayINS_5share6schema17ObSysTableChecker16TableNameWrapperELl2ENS0_19ModulePageAllocatorELb0EEENS1_19NoPthreadDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImSA_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKmRSA_l:169 + 7: _ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS0_9ObSEArrayINS_5share6schema17ObSysTableChecker16TableNameWrapperELl2ENS0_19ModulePageAllocatorELb0EEEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstISC_EENS1_13SimpleAllocerINS1_15ObHashTableNodeISC_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKmRSC_l:169 + 5: 1 + 5.1: 1 + 6.1: 0 + 10: 1 + 19: 1 + 5: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImPNS0_9ObSEArrayINS_5share6schema17ObSysTableChecker16TableNameWrapperELl2ENS0_19ModulePageAllocatorELb0EEEEENS1_5NLockENS1_5NCondEEEEEbRKT_:10 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImPNS0_9ObSEArrayINS_5share6schema17ObSysTableChecker16TableNameWrapperELl2ENS0_19ModulePageAllocatorELb0EEEEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:10 + 2: 1 + 18: _ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS0_9ObSEArrayINS_5share6schema17ObSysTableChecker16TableNameWrapperELl2ENS0_19ModulePageAllocatorELb0EEEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstISC_EENS1_13SimpleAllocerINS1_15ObHashTableNodeISC_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE32internal_get_with_timeout_unsafeERNS1_17ObHashTableBucketISC_NS1_5NLockENS1_5NCondEEERKmRPKSC_l:122 + 6: _ZNK9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS0_9ObSEArrayINS_5share6schema17ObSysTableChecker16TableNameWrapperELl2ENS0_19ModulePageAllocatorELb0EEEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstISC_EENS1_13SimpleAllocerINS1_15ObHashTableNodeISC_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE12internal_getERKNS1_17ObHashTableBucketISC_NS1_5NLockENS1_5NCondEEERKmRPKSC_Rb:122 + 6: 1 + 8.1: 4 + 10: 5 + 14: 1 + 16: 4 + 9: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_11HashMapPairImPNS0_9ObSEArrayINS_5share6schema17ObSysTableChecker16TableNameWrapperELl2ENS0_19ModulePageAllocatorELb0EEEEEE16check_magic_codeEv:24 + 0: 5 + 9.1: _ZL12abort_unlessb:10 + 5: 5 + 6: 0 + 10.1: _ZNK9oceanbase6common4hash8equal_toImEclERKmS5_:20 + 2: 5 + 21: _ZN9oceanbase6common11copy_assignINS0_4hash11HashMapPairImPNS0_9ObSEArrayINS_5share6schema17ObSysTableChecker16TableNameWrapperELl2ENS0_19ModulePageAllocatorELb0EEEEEEEiRT_RKSD_:4 + 2: _ZN9oceanbase6common16copy_assign_wrapINS0_4hash11HashMapPairImPNS0_9ObSEArrayINS_5share6schema17ObSysTableChecker16TableNameWrapperELl2ENS0_19ModulePageAllocatorELb0EEEEEEEiRT_RKSD_NS0_8BoolTypeILb1EEE:4 + 2: _ZN9oceanbase6common4hash11HashMapPairImPNS0_9ObSEArrayINS_5share6schema17ObSysTableChecker16TableNameWrapperELl2ENS0_19ModulePageAllocatorELb0EEEE6assignERKSB_:4 + 5.1: _ZN9oceanbase6common11copy_assignIPNS0_9ObSEArrayINS_5share6schema17ObSysTableChecker16TableNameWrapperELl2ENS0_19ModulePageAllocatorELb0EEEEEiRT_RKSA_:4 + 2: _ZN9oceanbase6common16copy_assign_wrapIPNS0_9ObSEArrayINS_5share6schema17ObSysTableChecker16TableNameWrapperELl2ENS0_19ModulePageAllocatorELb0EEEEEiRT_RKSA_NS0_8BoolTypeILb0EEE:4 + 2: 1 + 42: _ZN9oceanbase6common12ObIArrayWrapINS_5share6schema17ObSysTableChecker16TableNameWrapperEE2atEl:4 + 6: 1 + 42.1: _ZNK9oceanbase5share6schema17ObSysTableChecker16TableNameWrappereqERKS3_:64 + 2: 1 + 3: 1 + 4: 1 + 4.1: 1 + 5: 1 + 5.1: 2 _ZN9oceanbase6common9ObCharset6strcmpENS0_15ObCollationTypeERKNS0_8ObStringES5_:1 + 2: _ZN9oceanbase5share6schema8ObSchema25get_cs_type_with_cmp_modeENS_6common14ObNameCaseModeE:13 + 4: 1 + 6.1: 0 + 9.1: 0 +_ZZN9oceanbase4palf19LogGroupEntryHeader23calculate_log_checksum_EbRKNS0_11LogWriteBufElRlENK5$_642clEPKc.1598dc2348996c1ae1caea6120522988:409:7 + 0: 7 + 0.1: 0 + 0.2: 7 + 0.3: 6 _ZN9oceanbase6common8ObLogger13need_to_printEmi:7 + 0.9: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:102 + 2: 6 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS_4palf19LogGroupEntryHeaderELb0EEC2EPKcS5_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 +_ZNK9oceanbase5share6schema11ObSchemaMgr17get_tenant_schemaEmRPKNS1_20ObSimpleTenantSchemaE:408:2 + 2: 2 + 3: 2 + 4: 2 + 9.1: 2 + 10: 0 + 11.1: 0 + 13: 2 + 16: 2 + 18.1: 2 + 19: 0 + 20.1: 0 + 21.1: 2 + 24: 2 + 28: 4 + 15: _ZNK9oceanbase6common14ObSortedVectorIPNS_5share6schema20ObSimpleTenantSchemaENS0_9PageArenaIS5_NS0_20DefaultPageAllocatorEEEE11lower_boundImPFbPKS4_mEEEPS5_RKT_T0_:240 + 2: _ZNK9oceanbase6common14ObSortedVectorIPNS_5share6schema20ObSimpleTenantSchemaENS0_9PageArenaIS5_NS0_20DefaultPageAllocatorEEEE5beginEv:14 + 0: _ZNK9oceanbase6common8ObVectorIPNS_5share6schema20ObSimpleTenantSchemaENS0_9PageArenaIS5_NS0_20DefaultPageAllocatorEEEE5beginEv:14 + 0: 2 + 2.1: _ZNK9oceanbase6common14ObSortedVectorIPNS_5share6schema20ObSimpleTenantSchemaENS0_9PageArenaIS5_NS0_20DefaultPageAllocatorEEEE3endEv:14 + 0: _ZNK9oceanbase6common8ObVectorIPNS_5share6schema20ObSimpleTenantSchemaENS0_9PageArenaIS5_NS0_20DefaultPageAllocatorEEEE3endEv:14 + 0: 2 + 2.2: _ZSt11lower_boundIPPN9oceanbase5share6schema20ObSimpleTenantSchemaEmPFbPKS3_mEET_SA_SA_RKT0_T1_:212 + 13: _ZSt13__lower_boundIPPN9oceanbase5share6schema20ObSimpleTenantSchemaEmN9__gnu_cxx5__ops14_Iter_comp_valIPFbPKS3_mEEEET_SE_SE_RKT0_T1_:212 + 8.1: 6 + 10: 6 + 13: 6 + 6: _ZSt8distanceIPPN9oceanbase5share6schema20ObSimpleTenantSchemaEENSt15iterator_traitsIT_E15difference_typeES7_S7_:20 + 3: _ZSt10__distanceIPPN9oceanbase5share6schema20ObSimpleTenantSchemaEENSt15iterator_traitsIT_E15difference_typeES7_S7_St26random_access_iterator_tag:20 + 6: 2 + 13: _ZN9__gnu_cxx5__ops14_Iter_comp_valIPFbPKN9oceanbase5share6schema20ObSimpleTenantSchemaEmEEclIPPS5_KmEEbT_RT0_:78 + 1: 6 + 1: _ZN9oceanbase5share6schema11ObSchemaMgr22compare_with_tenant_idEPKNS1_20ObSimpleTenantSchemaEm:54 + 3: 6 + 3.1: 6 +_ZZN9oceanbase10logservice12ObLogService9open_palfERKNS_5share6ObLSIDERNS_4palf15PalfHandleGuardEENK5$_340clEPKc.1291a23568de5f940ae06fb9e7354412:406:7 + 0: 7 + 0.1: 0 + 0.2: 7 + 0.3: 7 _ZN9oceanbase6common8ObLogger13need_to_printEmi:7 + 0.7: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:119 + 2: 7 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS_5share6ObLSIDELb0EEC2EPKcS5_:0 + 0: 0 +_ZN9oceanbase6common11ObArrayImplINS0_22ObTZTransitionTypeInfoENS0_8ObMallocELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_17DefaultItemEncodeIS2_EEE7destroyEv:406:8 + 1: 7 + 2: 7 + 3.1: 0 + 3.3: 0 + 4: 0 + 6: 0 + 7: 0 + 9: 7 + 11: 7 + 13: 7 + 6: _ZN9oceanbase6common8ObMalloc4freeEPv:0 + 0: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase6common18ObDSSessionActions9clear_allEv:404:5 + 1: 4 + 2: 4 + 3: 4 + 4: 0 + 5.1: 0 + 7: 4 + 8.1: 0 + 8.2: 4 + 8.3: 4 + 9: 0 + 10: 0 + 11: 0 + 12.1: 0 + 14: 0 + 17.1: 0 + 17.2: 4 + 17.3: 4 + 18: 0 + 19: 0 + 20: 0 + 21.1: 0 + 23: 0 + 26.1: 0 + 26.2: 4 + 26.3: 4 + 28: 0 + 29: 0 + 33: 4 + 8.2: _ZNK9oceanbase6common7ObDListINS0_14ObDSActionNodeEE8is_emptyEv:16 + 0: 4 + 17.2: _ZNK9oceanbase6common7ObDListINS0_14ObDSActionNodeEE8is_emptyEv:16 + 0: 4 +_ZN9oceanbase3sql18ObBasicSessionInfo10is_timeoutERb:403:2 + 1: 2 + 2: 2 + 3: 2 + 4: 2 + 5: 2 + 6: 2 + 6.3: 2 + 8: 3 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:2 + 9: 3 + 10: 0 + 11.1: 0 + 12.1: 3 + 13: 0 + 14.1: 0 + 15.1: 3 + 17.1: 3 + 17.2: 3 + 18: 3 + 18.1: 3 + 21: 0 + 21.1: 0 + 23.1: 0 + 25.1: 0 + 29: 0 + 32: 3 + 19: _ZNK9oceanbase3sql18ObBasicSessionInfo13get_user_nameEv:0 + 0: 0 + 21: _ZNK9oceanbase3sql18ObBasicSessionInfo13get_peer_addrEv:0 + 0: 0 +_ZN9oceanbase7storage15ObTenantFreezer21get_tenant_mem_usage_ERlS2_S2_S2_:401:2 + 5: 2 + 6: 2 + 7: 2 + 8: 2 + 9: 0 + 10.1: 0 + 12: 2 + 13: 2 _ZN9oceanbase6common22ObMemstoreAllocatorMgr29get_tenant_memstore_allocatorEmRPNS0_20ObGMemstoreAllocatorE:2 + 15.1: 0 + 16.1: 2 + 17: 0 + 18.1: 0 + 20: 2 + 21: 2 + 22: 2 _ZN9oceanbase3lib22get_tenant_memory_holdEmm:2 + 24: 3 _ZN9oceanbase3lib24get_tenant_memory_remainEm:2 + 28: 3 + 20: _ZN9oceanbase6common20ObGMemstoreAllocator28get_mem_active_memstore_usedEv:62 + 2: 2 + 2.2: 2 + 1: _ZNK9oceanbase6common12ObHandleList6hazardEv:34 + 0: 2 + 2.2: _ZNK9oceanbase6common11ObFifoArena9allocatedEv:14 + 0: 2 + 21: _ZNK9oceanbase6common20ObGMemstoreAllocator27get_mem_total_memstore_usedEv:34 + 0: _ZNK9oceanbase6common11ObFifoArena4holdEv:34 + 1: 2 + 2: 2 + 3: 2 +_ZNK9oceanbase4palf11LogWriteBuf25check_memory_is_continousEv:400:10 + 1: 10 + 3.1: 10 + 4: 0 + 4.1: 0 + 4.2: 0 + 9: 10 + 3.1: _ZNK9oceanbase6common12ObIArrayWrapINS_4palf11LogWriteBuf11InnerStructEE5countEv:40 + 0: 10 +_ZN9oceanbase4palf15LogBlockHandler17inner_write_impl_EiPKcll:400:1 + 1: 1 + 2: 1 + 7: 9 + 9: 0 + 10.1: 0 + 12: 0 + 14: 9 + 17.1: 0 + 18: 8 + 19: 8 + 20: 8 + 3: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:1 + 2: 1 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:1 + 8: _ZN9oceanbase4palf24palf_reach_time_intervalElRl:0 + 3: 0 + 5: 0 + 18: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:8 + 2: 8 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:8 +_ZN9oceanbase5share22ObSysVarObOrgClusterIdC2Ev:399:3 + 0: 3 + 0: _ZN9oceanbase5share22ObStrictRangeIntSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:339 + 5: _ZN9oceanbase5share11ObIntSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:339 + 5: _ZN9oceanbase5share13ObBasicSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKS1_RKNS_6common5ObObjERSB_EPFiS4_S7_S9_SD_EPFiRNSA_12ObIAllocatorERKNS2_18ObBasicSessionInfoES9_SE_EPFiSK_SN_S9_RNSA_8ObStringEEPFNSA_9ObObjTypeEvEb:339 + 11: 3 + 12: 3 + 13: 3 + 15: 3 + 20: _ZN9oceanbase5share13ObBasicSysVar11clean_valueEv:207 + 2: _ZN9oceanbase5share13ObBasicSysVar16clean_base_valueEv:72 + 2: 3 + 3: _ZN9oceanbase6common5ObObj13set_nop_valueEv:48 + 2: _ZN9oceanbase6common5ObObj7set_extEl:48 + 4: 3 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:24 + 0: 3 + 3: _ZN9oceanbase5share13ObBasicSysVar15clean_inc_valueEv:63 + 2: _ZN9oceanbase6common5ObObj13set_nop_valueEv:63 + 2: _ZN9oceanbase6common5ObObj7set_extEl:63 + 4: 3 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:24 + 0: 3 + 4: _ZN9oceanbase6common5ObObj5resetEv:36 + 6: 3 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:12 + 0: 3 + 5: _ZN9oceanbase6common5ObObj5resetEv:36 + 6: 3 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:12 + 0: 3 +_ZNK9oceanbase7storage8ObTablet19get_active_memtableERNS0_15ObTableHandleV2E:398:4 + 1: 4 + 2: 4 + 5: 4 + 6: 0 + 7.1: 0 + 8.1: 4 + 9.1: 0 + 10.1: 4 _ZNK9oceanbase7storage19ObTabletMemtableMgr19get_active_memtableERNS0_15ObTableHandleV2E:5 + 12.1: 0 + 15: 2 + 8.1: _ZNK9oceanbase7storage8ObTablet16get_memtable_mgrERPNS0_14ObIMemtableMgrE:156 + 2: 4 + 5: 4 + 6: 4 _ZNK9oceanbase7storage19ObMemtableMgrHandle8is_validEv:4 + 7: 0 + 8.1: 0 + 13: 0 + 4: _ZNK9oceanbase7storage16ObResourceHandleINS0_13ObMetaPointerINS0_8ObTabletEEEE16get_resource_ptrEv:68 + 0: 4 + 0.2: _ZNK9oceanbase7storage20ObResourceValueStoreINS0_13ObMetaPointerINS0_8ObTabletEEEE13get_value_ptrEv:20 + 0: 4 + 10: _ZN9oceanbase7storage19ObMemtableMgrHandle16get_memtable_mgrEv:12 + 0: 4 +_ZN9oceanbase3sql18ObBasicSessionInfo13set_time_zoneERKNS_6common8ObStringEbb:398:2 + 2: 2 + 4: 2 + 5: 2 + 7: 4 _ZN9oceanbase6common15ObTimeConverter13str_to_offsetERKNS0_8ObStringERiS5_bb:2 + 10.1: 0 + 13: 4 + 16: 0 + 18: 0 + 19: 0 + 19.1: 0 + 19.2: 0 + 20.1: 0 + 21.1: 0 + 22: 0 + 23.1: 0 + 27: 0 + 27.1: 0 + 28.1: 0 + 32: 0 + 33: 0 + 33.1: 0 + 36: 0 + 36.1: 0 + 37: 0 + 37.1: 0 + 37.2: 0 + 39.1: 0 + 45: 0 + 49.1: 0 + 50: 0 + 51.1: 0 + 51.2: 0 + 54.1: 0 + 57: 0 + 64: 4 + 13: _ZN9oceanbase6common18ObTimeZoneInfoWrap18set_tz_info_offsetEi:184 + 2: 4 + 3: 4 + 4: 4 + 5: 4 + 2: _ZN9oceanbase6common14ObTimeZoneInfo10set_offsetEi:28 + 0: 4 + 4: _ZN9oceanbase6common14ObTimeZoneInfo25set_error_on_overlap_timeEb:28 + 0: 4 + 17: _ZN9oceanbase6common11ObTZMapWrapC2Ev:0 + 0: 0 + 25: _ZNK9oceanbase6common18ObTimeZoneInfoWrap15get_cur_versionEv:0 + 0: 0 + 26: _ZNK9oceanbase6common21ObTimeZoneInfoManager11get_versionEv:0 + 0: 0 + 26.1: _ZN9oceanbase6common18ObTimeZoneInfoWrap15set_cur_versionEl:0 + 0: 0 + 29: _ZNK9oceanbase6common8ObString3ptrEv:0 + 0: 0 + 30: _ZNK9oceanbase6common8ObString6lengthEv:0 + 0: 0 + 31: _ZNK9oceanbase6common8ObString3ptrEv:0 + 0: 0 + 31.1: _ZN9oceanbase6common8ObStringC2ElPKc:0 + 1: 0 + 2: 0 + 3: 0 + 5: 0 + 6: 0 + 37: _ZN9oceanbase6common18ObTimeZoneInfoWrap15get_tz_info_posEv:0 + 0: 0 + 40: _ZN9oceanbase6common18ObTimeZoneInfoWrap15set_cur_versionEl:0 + 0: 0 + 42: _ZN9oceanbase6common18ObTimeZoneInfoWrap20set_tz_info_positionEv:0 + 2: 0 + 3: 0 + 4: 0 + 3: _ZN9oceanbase6common14ObTimeZoneInfo25set_error_on_overlap_timeEb:0 + 0: 0 + 51: _ZN9oceanbase6common8ObStringC2EPKc:0 + 1: 0 + 3: 0 + 57: _ZN9oceanbase6common18ObTimeZoneInfoWrap18set_tz_info_offsetEi:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 2: _ZN9oceanbase6common14ObTimeZoneInfo10set_offsetEi:0 + 0: 0 + 4: _ZN9oceanbase6common14ObTimeZoneInfo25set_error_on_overlap_timeEb:0 + 0: 0 +_ZN9oceanbase4palf14LogGroupBuffer20inc_update_reuse_lsnERKNS0_3LSNE:396:2 + 1: 2 + 3: 3 _ZNK9oceanbase4palf3LSN8is_validEv:3 + 5.1: 0 + 7: 3 _ZN9oceanbase4palf3LSNC1Ev:3 + 9.1: 4 _ZNK9oceanbase4palf3LSNgtERKS1_:4 + 9.2: 4 + 10: 4 + 16.1: 4 _ZZN9oceanbase4palf14LogGroupBuffer20inc_update_reuse_lsnERKNS0_3LSNEENK5$_621clEPKc.1598dc2348996c1ae1caea6120522988:4 + 18: 4 + 8: _ZNK9oceanbase4palf14LogGroupBuffer14get_reuse_lsn_ERNS0_3LSNE:63 + 2: 3 _ZN9oceanbase4palf3LSNC1Em:4 + 2.4: 4 _ZN9oceanbase4palf3LSNaSERKS1_:4 + 13: _ZNK9oceanbase4palf14LogGroupBuffer14get_reuse_lsn_ERNS0_3LSNE:0 + 2: 0 + 2.4: 0 +_ZN9oceanbase11transaction9ObTransID21deserialize_dispatch_EPKclRlSt17integral_constantIbLb0EE:396:6 + 0: 6 + 0.1: 6 _ZN9oceanbase11transaction9ObTransID12deserialize_EPKclRl:6 + 0.3: 0 + 0.8: 6 + 0.9: 6 + 0.10: 0 + 0.15: 0 + 0.3: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIKlLb0EEC2EPKcRS2_:0 + 0: 0 + 0.12: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.14: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 +_ZZN9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE6revertElENKUlPKcE3_clES5_:395:7 + 0: 7 + 0.1: 0 + 0.2: 7 + 0.3: 5 _ZN9oceanbase6common8ObLogger13need_to_printEmi:6 + 0.9: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:85 + 2: 5 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase6common16ObFixedArrayImplINS_3sql15ObTableRowCountENS0_12ObIAllocatorEE9push_backERKS3_:393:3 + 1: 3 + 2: 3 + 3: 3 + 4: 3 + 5: 3 _ZN9oceanbase6common16ObFixedArrayImplINS_3sql15ObTableRowCountENS0_12ObIAllocatorEE7reserveEl:3 + 6.1: 0 + 6.5: 0 + 6.7: 0 + 9: 0 + 10.1: 0 + 10.5: 0 + 10.9: 0 + 12.1: 0 + 13: 0 + 14.1: 0 + 14.5: 0 + 14.11: 0 + 16: 0 + 17: 3 + 19: 3 + 22: 3 + 23: 3 + 26: 0 + 29: 0 + 33: 3 + 6.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 10.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 10.8: _ZN9oceanbase6common7ObLogKVIRKjLb0EEC2EPKcS3_:0 + 0: 0 + 14.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 14.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 14.10: _ZN9oceanbase6common7ObLogKVIRKjLb0EEC2EPKcS3_:0 + 0: 0 + 19: _ZN9oceanbase6common16construct_assignINS_3sql15ObTableRowCountEEEiRT_RKS4_:21 + 2: _ZN9oceanbase6common21construct_assign_wrapINS_3sql15ObTableRowCountEEEiRT_RKS4_NS0_8BoolTypeILb0EEE:21 + 2: 3 + 26: _ZN9oceanbase6common11copy_assignINS_3sql15ObTableRowCountEEEiRT_RKS4_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapINS_3sql15ObTableRowCountEEEiRT_RKS4_NS0_8BoolTypeILb0EEE:0 + 2: 0 +_ZN9oceanbase10logservice17ObLogApplyService19handle_submit_task_EPNS0_13ObApplyStatusE:392:2 + 1: 2 + 3: 9 _ZN9oceanbase10logservice13ObApplyStatus20try_submit_cb_queuesEv:2 + 4.1: 0 + 6.1: 9 _ZZN9oceanbase10logservice17ObLogApplyService19handle_submit_task_EPNS0_13ObApplyStatusEENK5$_165clEPKc.d3a41d52a3cfae37a6a74713ee8e7132:10 + 8: 12 +_ZNK9oceanbase7storage17ObStorageLogEntry9serializeEPclRl:391:1 + 1: 1 + 2: 1 + 5: 1 + 5.1: 1 + 6: 0 + 7.1: 0 + 10: 1 + 11.1: 0 + 12.1: 1 + 13.1: 0 + 14.1: 1 + 15.1: 0 + 16.1: 1 + 17.1: 0 + 18.1: 1 + 19.1: 0 + 20.1: 1 + 21.1: 0 + 22.1: 1 + 23.1: 0 + 24.1: 1 + 25.1: 0 + 26.1: 1 + 27.1: 0 + 28.1: 1 + 29.1: 0 + 31: 1 + 35: 1 + 10: _ZN9oceanbase6common13serialization10encode_i16EPclRls:22 + 2: 1 + 4: 1 + 6: 1 + 12.1: _ZN9oceanbase6common13serialization10encode_i16EPclRls:24 + 2: 1 + 4: 1 + 6: 1 + 14.1: _ZN9oceanbase6common13serialization10encode_i16EPclRls:24 + 2: 1 + 4: 1 + 6: 1 + 16.1: _ZN9oceanbase6common13serialization10encode_i16EPclRls:24 + 2: 1 + 4: 1 + 6: 1 + 18.1: _ZN9oceanbase6common13serialization10encode_i32EPclRli:21 + 2: 1 + 4: 1 + 8: 1 + 20.1: _ZN9oceanbase6common13serialization10encode_i32EPclRli:21 + 2: 1 + 4: 1 + 8: 1 + 22.1: _ZN9oceanbase6common13serialization10encode_i64EPclRll:22 + 2: 1 + 4: 1 + 12: 1 + 24.1: _ZN9oceanbase6common13serialization10encode_i64EPclRll:22 + 2: 1 + 4: 1 + 12: 1 + 26.1: _ZN9oceanbase6common13serialization10encode_i64EPclRll:22 + 2: 1 + 4: 1 + 12: 1 + 28.1: _ZN9oceanbase6common13serialization10encode_i64EPclRll:22 + 2: 1 + 4: 1 + 12: 1 +_ZN9oceanbase6common4hash9ObHashMapImNS_5share15ObSequenceValueENS1_19NoPthreadDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS4_EEEELi65ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev:390:2 + 0.1: 2 + 1: 2 + 5: 2 + 0: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImNS_5share15ObSequenceValueEEEEELi65ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEC2Ev:114 + 0: 2 + 2: 2 + 0.1: _ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocatorC2EmRKNS_3lib7ObLabelE:68 + 3: 2 + 4: 2 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:30 + 7: 2 + 2: _ZN9oceanbase6common4hash10SpinIniterC2ERVi:20 + 2: 2 + 3.1: 0 + 0.1: _ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImNS_5share15ObSequenceValueEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS6_EELi65ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev:124 + 0: 2 + 1: 2 + 0: _ZN9oceanbase6common8ObMallocC2Ev:52 + 0: 2 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:44 + 5: 2 + 7: 2 + 8: _ZN9oceanbase6common4hash9constructIPNS1_17ObHashTableBucketINS1_11HashMapPairImNS_5share15ObSequenceValueEEENS1_5NLockENS1_5NCondEEEEEvRT_:36 + 2: _ZN9oceanbase6common4hash12do_constructIPNS1_17ObHashTableBucketINS1_11HashMapPairImNS_5share15ObSequenceValueEEENS1_5NLockENS1_5NCondEEEEEvRT_NS1_16NormalPointerTagE:36 + 2: 2 + 0.2: _ZN9oceanbase6common8ObMallocC2Ev:30 + 0: 2 + 4: _ZN9oceanbase6common8ObMalloc8set_attrERKNS_3lib9ObMemAttrE:68 + 0: 2 +_ZN9oceanbase3sql18ObBasicSessionInfo13SysVarIncInfoC2Ev:390:2 + 1: 2 + 2: 2 + 1: _ZN9oceanbase6common9ObSEArrayINS_5share17ObSysVarClassTypeELl64ENS0_19ModulePageAllocatorELb0EEC2Ev:302 + 0.1: 2 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_5share17ObSysVarClassTypeELl64ENS0_19ModulePageAllocatorELb0EEC2ElRKS4_:272 + 5: 2 + 6: 2 + 8: 2 + 17.1: 2 + 2: _ZN9oceanbase6common8ObIArrayINS_5share17ObSysVarClassTypeEEC2EPS3_l:24 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_5share17ObSysVarClassTypeEEC2EPS3_l:24 + 0: 2 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:114 + 0: 2 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:50 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:50 + 2: 2 + 8: 2 +_ZN9oceanbase3sql18ObBasicSessionInfo13SysVarIncInfoC1Ev:390:2 + 1: 2 + 2: 2 + 1: _ZN9oceanbase6common9ObSEArrayINS_5share17ObSysVarClassTypeELl64ENS0_19ModulePageAllocatorELb0EEC2Ev:302 + 0.1: 2 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_5share17ObSysVarClassTypeELl64ENS0_19ModulePageAllocatorELb0EEC2ElRKS4_:272 + 5: 2 + 6: 2 + 8: 2 + 17.1: 2 + 2: _ZN9oceanbase6common8ObIArrayINS_5share17ObSysVarClassTypeEEC2EPS3_l:24 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_5share17ObSysVarClassTypeEEC2EPS3_l:24 + 0: 2 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:114 + 0: 2 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:50 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:50 + 2: 2 + 8: 2 +_ZN9oceanbase6common22ObTenantMutilAllocator26free_log_io_flush_log_taskEPNS_4palf17LogIOFlushLogTaskE:387:9 + 2: 9 + 3: 9 _ZN9oceanbase4palf17LogIOFlushLogTaskD1Ev:11 + 4: 9 _ZN9oceanbase6common12ObSliceAlloc4freeEPv:9 + 6: 0 +_ZN9oceanbase6common16ObFixedArrayImplINS_3sql15ObTableRowCountENS0_12ObIAllocatorEE4initEl:387:3 + 1: 3 + 2: 3 + 3: 3 + 4: 0 + 5.1: 0 + 6.1: 3 + 7: 0 + 8.1: 0 + 8.2: 0 + 8.5: 0 + 8.11: 0 + 9.1: 3 + 10: 0 + 11.1: 0 + 11.5: 0 + 11.9: 0 + 12.1: 3 + 15: 3 + 16: 3 _ZN9oceanbase6common16ObArenaAllocator5allocEl:3 + 17: 3 + 18: 0 + 19.1: 0 + 21: 3 + 22: 3 + 23: 3 + 26: 3 + 8.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 8.8: _ZN9oceanbase6common7ObLogKVIRKPNS_3sql15ObTableRowCountELb0EEC2EPKcS6_:0 + 0: 0 + 8.10: _ZN9oceanbase6common7ObLogKVIRKjLb0EEC2EPKcS3_:0 + 0: 0 + 11.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 11.8: _ZN9oceanbase6common7ObLogKVIRKPNS0_12ObIAllocatorELb0EEC2EPKcS5_:0 + 0: 0 +_ZN9oceanbase3sql18ObBasicSessionInfo18store_query_stringERKNS_6common8ObStringE:386:2 + 1: 2 + 2: 2 + 3: 2 _ZN9oceanbase3sql18ObBasicSessionInfo19store_query_string_ERKNS_6common8ObStringE:2 + 4: 3 _ZN9oceanbase3lib11ObLockGuardINS_6common16ObRecursiveMutexEED2Ev:3 + 4.1: 0 + 2: _ZN9oceanbase3lib11ObLockGuardINS_6common16ObRecursiveMutexEEC2ERS3_:250 + 1: 2 + 2: 2 + 4: 2 + 5.1: 0 + 4: _ZN9oceanbase6common16ObRecursiveMutex4lockEv:218 + 2: 2 + 3: 2 + 6: 2 _ZN9oceanbase6common7ObLatch6wrlockEjlPKj:2 + 7.1: 0 + 12: 2 + 3: _ZNK9oceanbase6common7ObLatch14is_wrlocked_byEPKj:122 + 3: 2 + 4: 2 + 2.1: _Z9ob_gettidv:106 + 3: 2 + 4: 0 + 2: _Z13get_tid_cachev:50 + 7: 2 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 +_ZZN9oceanbase4palf7PalfEnv4openElRNS0_10PalfHandleEENK5$_625clEPKc.0e4bf25207570af14a78557c8489c4fc:385:7 + 0: 7 + 0.1: 0 + 0.2: 7 + 0.3: 6 _ZN9oceanbase6common8ObLogger13need_to_printEmi:6 + 0.9: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:102 + 2: 6 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKNS_4palf10PalfHandleELb0EEC2EPKcS5_:0 + 0: 0 +_ZNK9oceanbase8observer16ObInnerSQLResult7get_objEPKcRNS_6common5ObObjE:384:3 + 0: 3 + 0.1: 0 + 0.2: 0 + 0.5: 3 + 0.6: 0 + 0.7: 0 + 0.10: 3 _ZNK9oceanbase8observer16ObInnerSQLResult8find_idxEPKcRl:3 + 0.12: 0 + 0.14: 0 + 0.17: 3 + 0.18: 0 + 0.19: 0 + 0.22: 3 _ZNK9oceanbase8observer16ObInnerSQLResult7get_objElRNS_6common5ObObjEPKNS2_14ObTimeZoneInfoEPNS2_12ObIAllocatorE:3 + 0.25: 0 + 0.29: 3 +_ZN9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE3mapINS8_8HandleOnINS_5share20ObActiveSessHistTaskEEEEEiRT_:384:0 + 1: 0 + 3: 0 + 6.1: 8 + 6.3: 8 + 6.4: 8 + 7: 8 _ZN9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE8HandleOnINS_5share20ObActiveSessHistTaskEEclERS3_PS4_:9 + 11: 0 + 11.1: 0 + 12: 0 + 3: _ZNK9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE4sizeEv:0 + 0: _ZNK9oceanbase6common11CountHandle4sizeEv:0 + 0: 0 + 259: 0 + 5: _ZN9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE8IteratorC2ERS8_:0 + 0: 0 + 6.2: _ZN9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE8Iterator4nextERPS4_:168 + 1: 8 + 4: 8 + 5: 8 _ZN9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE4nextEPNS0_12LinkHashNodeIS3_EE:9 +_ZN9oceanbase3sql24def_relational_eval_funcINS0_18ObRelationalTCFuncILb1ELNS_6common14ObObjTypeClassE1ELS4_1ELNS3_7ObCmpOpE0EE8DatumCmpEEEiRKNS0_6ObExprERNS0_9ObEvalCtxERNS3_7ObDatumE:383:0 + 1: 1 + 2: 1 + 3: 1 + 4: 1 + 6: 2 + 8.1: 0 + 9.1: 2 + 10: 2 + 11: 0 + 12.1: 0 + 14: 2 + 17: 2 + 6: _ZN9oceanbase3sql24ObRelationalExprOperator23get_comparator_operandsERKNS0_6ObExprERNS0_9ObEvalCtxERPNS_6common7ObDatumESA_RS8_Rb:164 + 6: 1 + 7: 1 + 8.1: 0 + 9.1: 1 + 12.1: 2 + 13.1: 0 + 14.1: 2 + 18: 2 + 7: _ZNK9oceanbase3sql6ObExpr4evalERNS0_9ObEvalCtxERPNS_6common7ObDatumE:39 + 4: 1 + 6: 1 + 7: 1 + 9: 1 + 10: 0 + 10.1: 0 + 11: 0 + 13: 0 + 15.1: 1 + 15.2: 0 + 17: 0 + 18: 0 + 20: 0 + 21: 0 + 22: 0 + 9: _ZNK9oceanbase3sql6ObExpr15is_batch_resultEv:4 + 0: 1 + 11: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 24: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:0 + 0: 0 + 9.1: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:4 + 0: 1 + 12.1: _ZNK9oceanbase3sql6ObExpr4evalERNS0_9ObEvalCtxERPNS_6common7ObDatumE:39 + 4: 1 + 6: 1 + 7: 1 + 9: 1 + 10: 0 + 10.1: 0 + 11: 0 + 13: 0 + 15.1: 1 + 15.2: 0 + 17: 0 + 18: 0 + 20: 0 + 21: 0 + 22: 0 + 24: 0 + 9: _ZNK9oceanbase3sql6ObExpr15is_batch_resultEv:4 + 0: 1 + 11: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 24: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:0 + 0: 0 + 14.1: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:8 + 0: 2 + 14: _ZNK9oceanbase3sql18ObRelationalTCFuncILb1ELNS_6common14ObObjTypeClassE1ELS3_1ELNS2_7ObCmpOpE0EE8DatumCmpclERNS2_7ObDatumERKS7_SA_:62 + 2: _ZN9oceanbase6common9datum_cmp14ObTCPayloadCmpILNS0_14ObObjTypeClassE1EE3cmpERKNS0_7ObDatumES7_:34 + 2: 2 + 2: _ZN9oceanbase6common14ObDatumPayloadILNS0_14ObObjTypeClassE1EE3getERKNS0_7ObDatumE:12 + 0: 2 + 2.4: _ZN9oceanbase6common14ObDatumPayloadILNS0_14ObObjTypeClassE1EE3getERKNS0_7ObDatumE:6 + 0: 2 + 2.2: _ZN9oceanbase6common7ObDatum7set_intEl:28 + 0: 2 +_ZN9oceanbase8observer20ObInnerSQLConnection18ObSqlQueryExecutor7executeERNS_3sql5ObSqlERNS3_8ObSqlCtxERNS3_11ObResultSetE:382:3 + 1: 3 + 7: 3 _ZN9oceanbase8observer14ObReqTimeGuardC2Eb:3 + 8: 2 + 10.1: 2 + 11.1: 2 _ZN9oceanbase6common16ObArenaAllocator5allocEl:2 + 12: 1 + 13: 0 + 14.1: 0 + 17: 1 + 18.3: 1 + 19.2: 2 + 20.1: 2 _ZN9oceanbase3sql18ObBasicSessionInfo18store_query_stringERKNS_6common8ObStringE:2 + 22: 3 _ZN9oceanbase3sql5ObSql10stmt_queryERKNS_6common8ObStringERNS0_8ObSqlCtxERNS0_11ObResultSetE:3 + 22.1: 1 + 24: 0 + 25.4: 3 _ZN9oceanbase8observer14ObReqTimeGuardD2Ev:2 + 25.6: 0 + 10: _ZNK9oceanbase6common8ObString6lengthEv:8 + 0: 2 + 11: _ZN9oceanbase3sql11ObResultSet12get_mem_poolEv:16 + 0: 2 + 16: _ZNK9oceanbase6common8ObString6lengthEv:4 + 0: 1 + 16.2: _ZN9oceanbase6common8ObStringC2EiiPc:9 + 1: 1 + 18.1: _ZN9oceanbase6common8ObString3ptrEv:4 + 0: 1 + 18.2: _ZNK9oceanbase6common8ObString6lengthEv:4 + 0: 1 + 19.1: _ZNK9oceanbase6common8ObString6lengthEv:8 + 0: 2 + 20: _ZN9oceanbase3sql11ObResultSet11get_sessionEv:16 + 0: 2 + 21: _ZN9oceanbase3sql11ObResultSet23inc_need_update_endtimeEv:24 + 0: 3 +_ZN9oceanbase3omt19ObTenantTimezoneMgr26get_tenant_timezone_staticEmRNS_6common11ObTZMapWrapE:381:6 + 2: 6 + 3: 6 + 4: 7 + 4.1: 6 _ZN9oceanbase3omt19ObTenantTimezoneMgr19get_tenant_timezoneEmRNS_6common11ObTZMapWrapERPNS2_21ObTimeZoneInfoManagerE:6 + 4: _ZN9oceanbase3omt19ObTenantTimezoneMgr12get_instanceEv:60 + 2: 6 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 +_ZN9oceanbase5share6schema17ObSchemaMgrHandleC2Ev:374:13 + 1: 11 + 2: 11 + 3: 11 +_ZN9oceanbase5share6schema17ObSchemaMgrHandleC1Ev:374:13 + 1: 11 + 2: 11 + 3: 11 +_ZN9oceanbase6common4hash11ObHashTableINS_5share6ObLSIDENS1_11HashMapPairIS4_NS3_11ObLSReplicaEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi11ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14set_refactoredERKS4_RKS7_iii:372:0 + 2: 0 + 3: 0 + 5: 0 + 5.1: 0 + 6.1: 0 + 7: 0 + 16: 0 + 17: 0 + 21: 0 + 23.1: 0 + 25.2: 0 + 26: 0 + 27: 0 + 32: 0 + 33: 0 + 34: 0 + 35.1: 0 + 36.1: 0 + 37.2: 0 + 38.1: 0 + 39: 0 + 42: 0 + 43: 0 + 48: 0 + 49: 0 + 62: 0 + 63.1: 4 + 66: 4 + 5: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_5share6ObLSIDENS5_11ObLSReplicaEEENS0_7ObLatchENS1_5NCondEEEEEbRKT_:0 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_5share6ObLSIDENS5_11ObLSReplicaEEENS0_7ObLatchENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:0 + 2: 0 + 15: _ZNK9oceanbase6common4hash9hash_funcINS_5share6ObLSIDEEclERKS4_:0 + 2: 0 + 20: _ZN9oceanbase6common4hash16ObBucketLockCondINS1_11HashMapPairINS_5share6ObLSIDENS4_11ObLSReplicaEEENS1_24LatchReadWriteDefendModeEE4lockEv:0 + 2: 0 + 20.1: _ZN9oceanbase6common4hash16LatchWriteLockerC2ERNS0_7ObLatchE:0 + 3: 0 + 4.1: 0 + 24: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_11HashMapPairINS_5share6ObLSIDENS4_11ObLSReplicaEEEE16check_magic_codeEv:0 + 0: 0 + 24.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 25.1: _ZNK9oceanbase6common4hash8equal_toINS_5share6ObLSIDEEclERKS4_S7_:0 + 2: _ZNK9oceanbase5share6ObLSIDeqERKS1_:0 + 0: 0 + 37.1: _ZN9oceanbase6common4hash4copyINS1_11HashMapPairINS_5share6ObLSIDENS4_11ObLSReplicaEEEEEiRT_RKS8_NS1_13NormalPairTagE:0 + 2: 0 + 3: 0 + 4.1: 0 + 6: 0 + 3: _ZN9oceanbase6common11copy_assignINS0_4hash11HashMapPairINS_5share6ObLSIDENS4_11ObLSReplicaEEEEEiRT_RKS8_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapINS0_4hash11HashMapPairINS_5share6ObLSIDENS4_11ObLSReplicaEEEEEiRT_RKS8_NS0_8BoolTypeILb1EEE:0 + 2: _ZN9oceanbase6common4hash11HashMapPairINS_5share6ObLSIDENS3_11ObLSReplicaEE6assignERKS6_:0 + 5.1: 0 + 6.1: 0 + 8: 0 + 3: _ZN9oceanbase6common11copy_assignINS_5share6ObLSIDEEEiRT_RKS4_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapINS_5share6ObLSIDEEEiRT_RKS4_NS0_8BoolTypeILb0EEE:0 + 2: _ZN9oceanbase5share6ObLSIDaSERKS1_:0 + 0: 0 + 5.1: _ZN9oceanbase6common11copy_assignINS_5share11ObLSReplicaEEEiRT_RKS4_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapINS_5share11ObLSReplicaEEEiRT_RKS4_NS0_8BoolTypeILb1EEE:0 + 2: 0 + 63: _ZN9oceanbase6common4hash11ObHashTableINS_5share6ObLSIDENS1_11HashMapPairIS4_NS3_11ObLSReplicaEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi11ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE12internal_setERNS1_17ObHashTableBucketIS7_NS0_7ObLatchENS1_5NCondEEERKS7_b:240 + 4: 0 + 6: 0 + 7: 1 + 8: 0 + 9.1: 0 + 11: 1 + 12: 4 + 13.1: 0 + 15: 4 + 16: 4 + 17: 4 + 18.1: 4 + 21: 4 + 12: _ZN9oceanbase6common11copy_assignINS0_4hash11HashMapPairINS_5share6ObLSIDENS4_11ObLSReplicaEEEEEiRT_RKS8_:63 + 2: _ZN9oceanbase6common16copy_assign_wrapINS0_4hash11HashMapPairINS_5share6ObLSIDENS4_11ObLSReplicaEEEEEiRT_RKS8_NS0_8BoolTypeILb1EEE:63 + 2: _ZN9oceanbase6common4hash11HashMapPairINS_5share6ObLSIDENS3_11ObLSReplicaEE6assignERKS6_:63 + 5.1: 4 + 6.1: 0 + 8: 0 + 3: _ZN9oceanbase6common11copy_assignINS_5share6ObLSIDEEEiRT_RKS4_:7 + 2: _ZN9oceanbase6common16copy_assign_wrapINS_5share6ObLSIDEEEiRT_RKS4_NS0_8BoolTypeILb0EEE:7 + 2: _ZN9oceanbase5share6ObLSIDaSERKS1_:7 + 0: 1 + 5.1: _ZN9oceanbase6common11copy_assignINS_5share11ObLSReplicaEEEiRT_RKS4_:1 + 2: _ZN9oceanbase6common16copy_assign_wrapINS_5share11ObLSReplicaEEEiRT_RKS4_NS0_8BoolTypeILb1EEE:1 + 2: 1 _ZN9oceanbase5share11ObLSReplica6assignERKS1_:1 + 65: _ZN9oceanbase6common4hash16LatchWriteLockerD2Ev:32 + 2: 4 + 3: 4 _ZN9oceanbase6common7ObLatch6unlockEPKj:4 + 3.1: 0 + 65.1: _ZN9oceanbase6common4hash16LatchWriteLockerD2Ev:0 + 2: 0 + 3: 0 + 3.1: 0 +_ZN9oceanbase6common12ObStringBufTINS0_19ModulePageAllocatorENS0_9PageArenaIcS2_EEE12write_stringERKNS0_8ObStringEPS6_:372:3 + 2: 3 + 3: 3 + 4: 3 + 5: 0 + 6.1: 0 + 7.1: 3 + 7.2: 3 + 7.3: 3 + 11: 3 + 13: 0 + 14.1: 0 + 20: 4 + 7.1: _ZNK9oceanbase6common8ObString6lengthEv:21 + 0: 3 + 7.2: _ZNK9oceanbase6common8ObString3ptrEv:12 + 0: 3 + 8: _ZN9oceanbase6common8ObString6assignEPci:0 + 3: 0 + 11.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE3dupEPKvl:90 + 3: 3 + 4: 3 _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE5allocEl:4 + 5: 4 + 6: 4 + 16: _ZN9oceanbase6common8ObString6assignEPci:44 + 2: 4 + 3: 4 + 4: 4 +_ZZN9oceanbase4palf14PalfHandleImpl21inner_after_flush_logERKNS0_13FlushLogCbCtxEENK6$_1146clEPKc.0e4bf25207570af14a78557c8489c4fc:370:6 + 0: 5 + 0.1: 0 + 0.2: 5 + 0.3: 5 _ZN9oceanbase6common8ObLogger13need_to_printEmi:5 + 0.7: 0 + 0.9: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:85 + 2: 5 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKNS_4palf13FlushLogCbCtxELb0EEC2EPKcS5_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS0_6ObAddrELb0EEC2EPKcS4_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIlLb1EEC2EPKcOKl:0 + 0: 0 +_ZN9oceanbase7storage13ObLSLockGuardD2Ev:370:2 + 1: 2 + 2: 2 + 2.1: 0 + 3: 2 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:2 + 3.1: 4 + 4: 4 + 5.1: 0 + 10: 4 + 11.2: 4 + 11.4: 0 + 2: _ZN9oceanbase7storage8ObLSLock6unlockEl:138 + 2: 2 + 3: 2 + 6.1: 2 + 7: 2 + 7.1: 2 _ZN9oceanbase6common7ObLatch6unlockEPKj:2 + 8.1: 0 + 11: 2 + 12: 2 +_ZN9oceanbase7storage13ObLSLockGuardD1Ev:370:2 + 1: 2 + 2: 2 + 2.1: 0 + 3: 2 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:2 + 3.1: 4 + 4: 4 + 5.1: 0 + 10: 4 + 11.2: 4 + 11.4: 0 + 2: _ZN9oceanbase7storage8ObLSLock6unlockEl:138 + 2: 2 + 3: 2 + 6.1: 2 + 7: 2 + 7.1: 2 _ZN9oceanbase6common7ObLatch6unlockEPKj:2 + 8.1: 0 + 11: 2 + 12: 2 +_ZN9oceanbase3sql16ObPlanCacheValue16match_dep_schemaERKNS0_14ObPlanCacheCtxERKNS_6common8ObIArrayINS0_12PCVSchemaObjEEERb:370:1 + 3: 1 + 4: 1 + 5: 1 + 6: 1 + 7: 1 + 8: 0 + 9.1: 0 + 10.1: 1 + 14: 0 + 16.1: 2 + 16.6: 2 + 17: 1 + 18: 0 + 19.1: 0 + 21.1: 1 + 32: 0 + 32.1: 0 + 33: 0 + 34.2: 0 + 35: 2 + 35.1: 0 + 36: 0 + 38: 0 + 44: 2 + 10.1: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql12PCVSchemaObjEE5countEv:4 + 0: 1 + 17: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql12PCVSchemaObjEE2atEl:7 + 6: 1 + 21.1: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql12PCVSchemaObjEE2atEl:4 + 6: 1 + 32: _ZNK9oceanbase3sql18ObBasicSessionInfo20get_sessid_for_tableEv:0 + 0: 0 + 0.2: 0 + 0.5: 0 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo15is_obproxy_modeEv:0 + 0: 0 + 0.1: _ZNK9oceanbase3sql18ObBasicSessionInfo16get_proxy_sessidEv:0 + 0: 0 + 0.2: _ZNK9oceanbase3sql18ObBasicSessionInfo17is_master_sessionEv:0 + 0: 0 + 0.3: _ZNK9oceanbase3sql18ObBasicSessionInfo10get_sessidEv:0 + 0: 0 + 33: _ZNK9oceanbase3sql16ObSQLSessionInfo20get_sess_create_timeEv:0 + 0: 0 + 34.1: _ZN9oceanbase3lib14is_oracle_modeEv:92 + 2: _ZN9oceanbase3lib15get_compat_modeEv:92 + 2: 2 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:56 + 2: 2 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 36.3: _ZNK9oceanbase3sql12PCVSchemaObj13match_compareERKS1_:0 + 3: 0 + 4: 0 + 4.1: 0 + 5: 0 + 5.1: 0 +_ZNK9oceanbase7storage21ObTenantFreezeInfoMgr26get_multi_version_durationERl:368:4 + 1: 4 + 4: 4 _ZN9oceanbase3omt17ObTenantConfigMgr12get_instanceEv:4 + 4.4: 3 _ZNK9oceanbase3omt17ObTenantConfigMgr27get_tenant_config_with_lockEmmm:3 + 4.5: 1 _ZN9oceanbase3omt19ObTenantConfigGuardC1EPNS0_14ObTenantConfigE:1 + 5.1: 0 + 6.2: 0 + 12.1: 0 + 4.1: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:51 + 2: 3 + 2.1: 0 + 2.2: 0 + 4.2: _ZNK9oceanbase5share12ObTenantBase2idEv:45 + 0: 3 + 4.3: _ZN9oceanbase3omt17ObTenantConfigMgr26default_fallback_tenant_idEv:132 + 4: 3 + 4.1: 0 + 2: _ZN9oceanbase5share5GuardILNS0_12ObEntityTypeE0EE13current_guardEv:84 + 3: 3 + 8: 0 + 10: 0 + 11: 0 + 12: 0 + 8.1: _ZN9oceanbase5share5GuardILNS0_12ObEntityTypeE0EEC2ERNS0_13ObTenantSpaceE:0 + 1: 0 + 3: 0 + 11: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 2.1: _ZN9oceanbase5share5GuardILNS0_12ObEntityTypeE0EEptEv:9 + 0: 3 + 2.2: _ZNK9oceanbase5share13ObTenantSpace10get_tenantEv:27 + 0: 3 + 4.1: _ZNK9oceanbase5share12ObTenantBase2idEv:0 + 0: 0 + 5: _ZN9oceanbase3omt19ObTenantConfigGuard8is_validEv:0 + 0: 0 +_ZN9oceanbase7storage23ObTxDataSingleRowGetter22get_row_from_sstables_ERNS_12blocksstable13ObDatumRowkeyERNS0_14ObSSTableArrayERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextERNS0_8ObTxDataE:367:1 + 5: 1 + 6: 1 + 8: 1 + 9: 1 + 10: 1 + 14.1: 2 + 14.2: 3 + 14.6: 2 + 15: 1 + 16: 0 + 17.1: 0 + 18.1: 1 _ZN9oceanbase12blocksstable9ObSSTable3getERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS0_13ObDatumRowkeyERPNS2_18ObStoreRowIteratorE:1 + 19.1: 0 + 20.1: 3 _ZN9oceanbase7storage18ObStoreRowIterator12get_next_rowERPKNS_12blocksstable10ObDatumRowE:1 + 22.1: 0 + 24.1: 3 + 27.1: 3 _ZN9oceanbase7storage23ObTxDataSingleRowGetter35deserialize_tx_data_from_store_row_EPKNS_12blocksstable10ObDatumRowERNS0_8ObTxDataE:3 + 28.1: 0 + 33: 0 + 34: 0 + 35: 2 + 39: 2 + 40: 0 + 43: 2 + 14: _ZNK9oceanbase7storage13ObITableArray5countEv:3 + 0: 1 + 15: _ZNK9oceanbase7storage13ObITableArrayixEl:18 + 0: 1 + 0.2: 1 + 24.1: _ZNK9oceanbase12blocksstable12ObDmlRowFlag12is_not_existEv:21 + 2: 3 +_ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16free_large_pagesEv:364:7 + 1: 6 + 3.1: 6 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 13: 0 + 14: 0 + 18: 2 + 19: 7 + 21: 7 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:0 + 0: 0 + 5.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 6: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE13is_large_pageEPKNS3_4PageE:0 + 2.2: 0 + 2.2: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page8raw_sizeEv:0 + 0: 0 + 9: _ZNK9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page8raw_sizeEv:0 + 0: 0 + 10: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:0 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZNK6obutil4Cond15timed_wait_implINS_5MutexEEEbRKT_RKNS_9ObSysTimeE:362:4 + 1: 4 + 3: 4 _ZN6obutil9ObSysTime12microSecondsEl:4 + 4.1: 0 + 10: 4 _ZNK6obutil5Mutex6unlockERNS0_9LockStateE:4 + 12: 4 _ZN6obutil9ObSysTime3nowENS0_5ClockE:4 + 12.2: 2 _ZNK6obutil9ObSysTimecv7timevalEv:2 + 14: 2 + 15: 2 + 20: 2 + 21: 2 _ZNK6obutil5Mutex4lockERNS0_9LockStateE:2 + 23: 1 + 25.1: 0 + 30: 1 + 3.1: _ZNK6obutil9ObSysTimeltERKS0_:12 + 2: 4 + 12.1: _ZNK6obutil9ObSysTimeplERKS0_:48 + 2: 3 _ZN6obutil9ObSysTimeC1El:3 +_ZN9oceanbase3sql10ObOperator10filter_rowERNS0_9ObEvalCtxERKNS_6common8ObIArrayIPNS0_6ObExprEEERb:361:1 + 1: 1 + 2: 1 + 3: 1 + 4: 1 + 5.1: 1 + 5.5: 1 + 5.9: 1 + 6: 1 + 7: 2 + 8.1: 0 + 11: 2 + 11.1: 2 + 12: 1 + 18: 2 + 5.9: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE5countEv:8 + 0: 1 + 7: _ZNK9oceanbase3sql6ObExpr4evalERNS0_9ObEvalCtxERPNS_6common7ObDatumE:112 + 4: 1 + 6: 1 + 7: 1 + 9: 1 + 10: 0 + 10.1: 0 + 11: 0 + 13: 0 + 15.1: 1 + 15.2: 1 + 17: 1 + 18: 0 + 20: 1 + 21: 2 + 22: 2 + 24: 0 + 9: _ZNK9oceanbase3sql6ObExpr15is_batch_resultEv:4 + 0: 1 + 11: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 24: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:0 + 0: 0 +_ZN9oceanbase6common4hash9ObHashMapINS_5share17ThreadDynamicNodeEdNS1_24LatchReadWriteDefendModeENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS4_dEEEELi82ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:360:5 + 1: 5 + 2: 5 + 2: _ZN9oceanbase6common4hash11ObHashTableINS_5share17ThreadDynamicNodeENS1_11HashMapPairIS4_dEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS6_EELi82ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:45 + 2.1: 5 + 2.2: 0 + 3: 0 + 5.2: 0 + 2: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_5share17ThreadDynamicNodeEdEENS0_7ObLatchENS1_5NCondEEEEEbRKT_:40 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_5share17ThreadDynamicNodeEdEENS0_7ObLatchENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:40 + 2: 5 + 2.2: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS_5share17ThreadDynamicNodeEdEEEELi82ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEED2Ev:116 + 2.1: 0 + 2: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS_5share17ThreadDynamicNodeEdEEEELi82ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEE5clearEv:116 + 2: 6 + 3.1: 6 + 4: 0 + 5: 0 + 6.1: 0 + 15: 5 + 10: _ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocator4freeEPv:0 + 2: 0 + 3: _ZN9oceanbase6common7ob_freeEPv:0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase4palf19PalfHandleImplGuardC2Ev:360:18 + 1: 18 + 3: 18 + 4: 18 +_ZN9oceanbase4palf19PalfHandleImplGuardC1Ev:360:18 + 1: 18 + 3: 18 + 4: 18 +_ZN9oceanbase6common11ObSqlString10assign_fmtEPKcz:355:3 + 1: 3 + 3: 3 + 4: 3 + 8: 3 + 9: 3 _ZN9oceanbase6common11ObSqlString7vappendEPKcP13__va_list_tag:3 + 10.1: 0 + 14: 1 + 2: _ZN9oceanbase6common11ObSqlString5reuseEv:42 + 3: _ZN9oceanbase6common11ObSqlString10set_lengthEl:42 + 11: 3 + 12: 3 + 13: 0 + 6.1: _ZNK9oceanbase6common11ObSqlString8capacityEv:15 + 0: 3 +_ZN9oceanbase6common4hash15LatchReadLockerD2Ev:354:20 + 1: 20 + 2: 20 + 3: 20 _ZN9oceanbase6common7ObLatch6unlockEPKj:20 + 3.1: 0 + 5: 17 +_ZN9oceanbase5share38ObSysVarObPlanCacheEvictHighPercentageC2Ev:354:3 + 0: 3 + 0: _ZN9oceanbase5share11ObIntSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:294 + 5: _ZN9oceanbase5share13ObBasicSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKS1_RKNS_6common5ObObjERSB_EPFiS4_S7_S9_SD_EPFiRNSA_12ObIAllocatorERKNS2_18ObBasicSessionInfoES9_SE_EPFiSK_SN_S9_RNSA_8ObStringEEPFNSA_9ObObjTypeEvEb:294 + 11: 3 + 13: 3 + 20: _ZN9oceanbase5share13ObBasicSysVar11clean_valueEv:207 + 2: _ZN9oceanbase5share13ObBasicSysVar16clean_base_valueEv:72 + 2: 3 + 3: _ZN9oceanbase6common5ObObj13set_nop_valueEv:48 + 2: _ZN9oceanbase6common5ObObj7set_extEl:48 + 4: 3 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:24 + 0: 3 + 3: _ZN9oceanbase5share13ObBasicSysVar15clean_inc_valueEv:63 + 2: _ZN9oceanbase6common5ObObj13set_nop_valueEv:63 + 2: _ZN9oceanbase6common5ObObj7set_extEl:63 + 4: 3 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:24 + 0: 3 + 4: _ZN9oceanbase6common5ObObj5resetEv:36 + 6: 3 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:12 + 0: 3 + 5: _ZN9oceanbase6common5ObObj5resetEv:36 + 6: 3 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:12 + 0: 3 +_ZN9oceanbase5share37ObSysVarObPlanCacheEvictLowPercentageC2Ev:354:3 + 0: 3 + 0: _ZN9oceanbase5share11ObIntSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:294 + 5: _ZN9oceanbase5share13ObBasicSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKS1_RKNS_6common5ObObjERSB_EPFiS4_S7_S9_SD_EPFiRNSA_12ObIAllocatorERKNS2_18ObBasicSessionInfoES9_SE_EPFiSK_SN_S9_RNSA_8ObStringEEPFNSA_9ObObjTypeEvEb:294 + 11: 3 + 13: 3 + 20: _ZN9oceanbase5share13ObBasicSysVar11clean_valueEv:207 + 2: _ZN9oceanbase5share13ObBasicSysVar16clean_base_valueEv:72 + 2: 3 + 3: _ZN9oceanbase6common5ObObj13set_nop_valueEv:48 + 2: _ZN9oceanbase6common5ObObj7set_extEl:48 + 4: 3 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:24 + 0: 3 + 3: _ZN9oceanbase5share13ObBasicSysVar15clean_inc_valueEv:63 + 2: _ZN9oceanbase6common5ObObj13set_nop_valueEv:63 + 2: _ZN9oceanbase6common5ObObj7set_extEl:63 + 4: 3 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:24 + 0: 3 + 4: _ZN9oceanbase6common5ObObj5resetEv:36 + 6: 3 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:12 + 0: 3 + 5: _ZN9oceanbase6common5ObObj5resetEv:36 + 6: 3 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:12 + 0: 3 +_ZN9oceanbase5share29ObSysVarObPlanCachePercentageC2Ev:354:3 + 0: 3 + 0: _ZN9oceanbase5share11ObIntSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:294 + 5: _ZN9oceanbase5share13ObBasicSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKS1_RKNS_6common5ObObjERSB_EPFiS4_S7_S9_SD_EPFiRNSA_12ObIAllocatorERKNS2_18ObBasicSessionInfoES9_SE_EPFiSK_SN_S9_RNSA_8ObStringEEPFNSA_9ObObjTypeEvEb:294 + 11: 3 + 13: 3 + 20: _ZN9oceanbase5share13ObBasicSysVar11clean_valueEv:207 + 2: _ZN9oceanbase5share13ObBasicSysVar16clean_base_valueEv:72 + 2: 3 + 3: _ZN9oceanbase6common5ObObj13set_nop_valueEv:48 + 2: _ZN9oceanbase6common5ObObj7set_extEl:48 + 4: 3 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:24 + 0: 3 + 3: _ZN9oceanbase5share13ObBasicSysVar15clean_inc_valueEv:63 + 2: _ZN9oceanbase6common5ObObj13set_nop_valueEv:63 + 2: _ZN9oceanbase6common5ObObj7set_extEl:63 + 4: 3 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:24 + 0: 3 + 4: _ZN9oceanbase6common5ObObj5resetEv:36 + 6: 3 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:12 + 0: 3 + 5: _ZN9oceanbase6common5ObObj5resetEv:36 + 6: 3 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:12 + 0: 3 +_ZN9oceanbase5share28ObSysVarObProxyUserPrivilegeC2Ev:354:3 + 0: 3 + 0: _ZN9oceanbase5share11ObIntSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:294 + 5: _ZN9oceanbase5share13ObBasicSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKS1_RKNS_6common5ObObjERSB_EPFiS4_S7_S9_SD_EPFiRNSA_12ObIAllocatorERKNS2_18ObBasicSessionInfoES9_SE_EPFiSK_SN_S9_RNSA_8ObStringEEPFNSA_9ObObjTypeEvEb:294 + 11: 3 + 13: 3 + 20: _ZN9oceanbase5share13ObBasicSysVar11clean_valueEv:207 + 2: _ZN9oceanbase5share13ObBasicSysVar16clean_base_valueEv:72 + 2: 3 + 3: _ZN9oceanbase6common5ObObj13set_nop_valueEv:48 + 2: _ZN9oceanbase6common5ObObj7set_extEl:48 + 4: 3 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:24 + 0: 3 + 3: _ZN9oceanbase5share13ObBasicSysVar15clean_inc_valueEv:63 + 2: _ZN9oceanbase6common5ObObj13set_nop_valueEv:63 + 2: _ZN9oceanbase6common5ObObj7set_extEl:63 + 4: 3 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:24 + 0: 3 + 4: _ZN9oceanbase6common5ObObj5resetEv:36 + 6: 3 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:12 + 0: 3 + 5: _ZN9oceanbase6common5ObObj5resetEv:36 + 6: 3 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:12 + 0: 3 +_ZN9oceanbase5share26ObSysVarObBnlJoinCacheSizeC2Ev:354:3 + 0: 3 + 0: _ZN9oceanbase5share11ObIntSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:294 + 5: _ZN9oceanbase5share13ObBasicSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKS1_RKNS_6common5ObObjERSB_EPFiS4_S7_S9_SD_EPFiRNSA_12ObIAllocatorERKNS2_18ObBasicSessionInfoES9_SE_EPFiSK_SN_S9_RNSA_8ObStringEEPFNSA_9ObObjTypeEvEb:294 + 11: 3 + 13: 3 + 20: _ZN9oceanbase5share13ObBasicSysVar11clean_valueEv:207 + 2: _ZN9oceanbase5share13ObBasicSysVar16clean_base_valueEv:72 + 2: 3 + 3: _ZN9oceanbase6common5ObObj13set_nop_valueEv:48 + 2: _ZN9oceanbase6common5ObObj7set_extEl:48 + 4: 3 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:24 + 0: 3 + 3: _ZN9oceanbase5share13ObBasicSysVar15clean_inc_valueEv:63 + 2: _ZN9oceanbase6common5ObObj13set_nop_valueEv:63 + 2: _ZN9oceanbase6common5ObObj7set_extEl:63 + 4: 3 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:24 + 0: 3 + 4: _ZN9oceanbase6common5ObObj5resetEv:36 + 6: 3 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:12 + 0: 3 + 5: _ZN9oceanbase6common5ObObj5resetEv:36 + 6: 3 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:12 + 0: 3 +_ZN9oceanbase8observer20ObInnerSQLConnectionC2Ev:353:2 + 0.1: 2 _ZN9oceanbase8observer16ObQueryRetryCtrlC1Ev:2 + 1: 2 + 1.1: 2 _ZN9oceanbase3sql16ObSQLSessionInfoC1Ev:2 + 1.2: 1 + 2: 1 + 3: 1 + 7: 1 + 8: 1 + 9: 1 + 16: 1 + 18: 1 + 20: 1 + 22: 2 + 22.1: 2 + 23: 1 + 23.5: 0 + 0: _ZN9oceanbase6common9sqlclient16ObISQLConnectionC2Ev:12 + 1: 2 + 0.2: _ZN9oceanbase6common11ObDLinkBaseINS_8observer20ObInnerSQLConnectionEEC2Ev:14 + 1: 2 + 17: _ZN9oceanbase6common6ObAddrC2Ev:27 + 1: 1 +_ZN9oceanbase8observer20ObInnerSQLConnectionC1Ev:353:2 + 0.1: 2 _ZN9oceanbase8observer16ObQueryRetryCtrlC1Ev:2 + 1: 2 + 1.1: 2 _ZN9oceanbase3sql16ObSQLSessionInfoC1Ev:2 + 1.2: 1 + 2: 1 + 3: 1 + 7: 1 + 8: 1 + 9: 1 + 16: 1 + 18: 1 + 20: 1 + 22: 2 + 22.1: 2 + 23: 1 + 23.5: 0 + 0: _ZN9oceanbase6common9sqlclient16ObISQLConnectionC2Ev:12 + 1: 2 + 0.2: _ZN9oceanbase6common11ObDLinkBaseINS_8observer20ObInnerSQLConnectionEEC2Ev:14 + 1: 2 + 17: _ZN9oceanbase6common6ObAddrC2Ev:27 + 1: 1 +_ZNK9oceanbase4palf12LogConfigMgr30get_paxos_log_sync_replica_numERl:352:10 + 1: 8 + 2: 8 + 3: 8 + 4: 0 + 5.1: 0 + 7: 8 + 9: 8 +_ZN9oceanbase6common9ob_mallocElRKNS_3lib7ObLabelE:352:4 + 1: 4 + 3: 4 + 4: 2 + 2.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:92 + 5: 4 + 7: 4 + 4: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:130 + 3: 4 _ZN9oceanbase3lib17ObMallocAllocator12get_instanceEv:4 + 4: 4 + 5: 4 _ZN9oceanbase3lib17ObMallocAllocator5allocElRKNS0_9ObMemAttrE:4 + 6: 2 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 9: _ZSt3maxIlERKT_S2_S2_:0 + 5: 0 +_ZN9oceanbase3sql18ObBasicSessionInfo17set_session_stateENS0_17ObSQLSessionStateE:349:2 + 1: 2 + 2: 2 + 3: 2 _ZN9oceanbase3sql18ObBasicSessionInfo18set_session_state_ENS0_17ObSQLSessionStateE:2 + 4: 2 _ZN9oceanbase3lib11ObLockGuardINS_6common16ObRecursiveMutexEED2Ev:2 + 4.1: 0 + 2: _ZN9oceanbase3lib11ObLockGuardINS_6common16ObRecursiveMutexEEC2ERS3_:250 + 1: 2 + 2: 2 + 4: 2 + 5.1: 0 + 4: _ZN9oceanbase6common16ObRecursiveMutex4lockEv:218 + 2: 2 + 3: 2 + 6: 2 _ZN9oceanbase6common7ObLatch6wrlockEjlPKj:2 + 7.1: 0 + 12: 2 + 3: _ZNK9oceanbase6common7ObLatch14is_wrlocked_byEPKj:122 + 3: 2 + 4: 2 + 2.1: _Z9ob_gettidv:106 + 3: 2 + 4: 0 + 2: _Z13get_tid_cachev:50 + 7: 2 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 +_ZN9oceanbase4palf11LogStateMgr28check_leader_log_sync_state_Ev:347:4 + 1: 3 + 4: 3 _ZNK9oceanbase4palf16LogSlidingWindow12get_start_idEv:3 + 5: 4 _ZN9oceanbase6common13ObTimeUtility15current_time_nsEv:3 + 6: 4 + 6.1: 4 + 7: 4 + 7.1: 4 + 8: 1 + 10.1: 4 _ZNK9oceanbase4palf16LogSlidingWindow8is_emptyEv:3 + 15: 0 + 16: 0 + 17.1: 0 + 18: 0 + 22: 5 +_ZN9oceanbase7storage19ObTablesHandleArray9add_tableEPNS0_8ObITableE:346:2 + 1: 2 + 2: 2 + 3: 2 + 4: 0 + 5.1: 0 + 6.1: 2 + 7: 2 + 8: 0 + 9.1: 0 + 13.1: 0 + 14: 0 + 15.1: 0 + 16.1: 0 + 17: 0 + 18.1: 0 + 21: 2 + 22.1: 2 + 23.1: 0 + 25: 2 + 27: 2 + 7: _ZN9oceanbase5share11ObTenantEnv3mtlIPNS_7storage18ObTenantMetaMemMgrEEET_v:36 + 2: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:12 + 2: 2 + 2.1: 0 + 2.2: 0 + 2.1: _ZN9oceanbase5share12ObTenantBase3getIPNS_7storage18ObTenantMetaMemMgrEEET_v:24 + 0: _ZN9oceanbase5share12ObTenantBase9inner_getENS1_8IdentityIPNS_7storage18ObTenantMetaMemMgrEEE:24 + 0: 2 + 11.1: _ZN9oceanbase6common10ObTabletIDaSERKS1_:16 + 0: 2 + 13.1: _ZN9oceanbase5share11ObTenantEnv3mtlIPNS_7storage18ObTenantMetaMemMgrEEET_v:28 + 2: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:28 + 2: 2 + 2.1: 0 + 2.2: 0 + 2.1: _ZN9oceanbase5share12ObTenantBase3getIPNS_7storage18ObTenantMetaMemMgrEEET_v:0 + 0: _ZN9oceanbase5share12ObTenantBase9inner_getENS1_8IdentityIPNS_7storage18ObTenantMetaMemMgrEEE:0 + 0: 0 + 16.2: _ZNK9oceanbase6common10ObTabletIDneERKS1_:0 + 0: 0 + 22.1: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl8ENS0_19ModulePageAllocatorELb0EE9push_backERKS4_:62 + 5: 2 + 6: 0 + 12: 0 + 15: 0 + 15.1: 2 + 16: 2 + 15.1: _ZN9oceanbase6common9ObClassOpIPNS_7storage8ObITableELb1EE20construct_and_assignERKS4_RS4_:16 + 2: 2 + 25: _ZN9oceanbase7storage8ObITable7inc_refEv:12 + 2: 2 +_ZN9oceanbase11transaction14ObPartTransCtx18check_with_tx_dataERNS_7storage21ObITxDataCheckFunctorE:344:5 + 1: 4 + 4: 4 + 6: 5 _ZNK9oceanbase11transaction11ObCtxTxData11get_tx_dataERPKNS_7storage8ObTxDataE:4 + 11: 3 + 15: 3 _ZN9oceanbase7storage18LockForReadFunctorclERKNS0_8ObTxDataEPNS0_9ObTxCCCtxE:3 + 16.1: 0 + 22: 4 + 12: _ZNK9oceanbase8memtable10ObIMvccCtx17get_trans_versionEv:21 + 0: 3 + 13: _ZN9oceanbase7storage9ObTxCCCtxC2ENS_11transaction9ObTxStateEl:21 + 1: 3 +_ZNK9oceanbase8observer16ObInnerSQLResult7get_objElRNS_6common5ObObjEPKNS2_14ObTimeZoneInfoEPNS2_12ObIAllocatorE:342:3 + 3: 3 + 6: 3 + 7: 3 + 8: 0 + 9.1: 0 + 10.1: 3 + 11: 0 + 12.1: 0 + 13.2: 3 + 14: 3 + 14.3: 3 + 15: 0 + 16.1: 0 + 18: 3 + 18.1: 0 + 18.3: 3 + 19: 3 + 19.1: 3 + 20: 0 + 21.1: 0 + 23: 3 + 26: 3 +_ZNK9oceanbase3rpc5frame14ObReqTransport12post_sessionEP14easy_session_t:340:2 + 1: 2 + 2: 2 + 3: 2 + 4: 2 + 6: 2 + 7: 0 + 8.1: 0 + 9.1: 2 + 9.2: 2 + 10: 0 + 11.1: 0 + 14: 2 + 15: 2 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:2 + 16: 1 + 17: 1 + 20: 1 easy_inet_addr_to_str:1 + 21: 0 + 22.1: 0 + 23: 0 + 28: 0 + 17: _ZNK9oceanbase3rpc5frame14ObReqTransport14balance_assignEP14easy_session_t:35 + 4: 1 + 11: 0 + 14: 0 + 17: 1 + 18: 1 +_ZN9oceanbase7storage21ObTenantFreezeInfoMgr25get_min_reserved_snapshotERKNS_6common10ObTabletIDElRl:340:3 + 4: 3 + 5: 3 + 7: 3 + 10: 3 _ZN9oceanbase6common8TCRWLock10RLockGuardC2ERS1_:3 + 13: 4 + 14: 0 + 15.1: 0 + 16.1: 4 _ZNK9oceanbase7storage21ObTenantFreezeInfoMgr26get_multi_version_durationERl:4 + 16.2: 0 + 17.1: 0 + 19: 0 + 20: 0 + 21.1: 0 + 21.2: 0 + 23.1: 0 + 24: 0 + 25: 0 + 26: 0 + 29: 0 + 29.1: 0 + 30.1: 0 + 31.2: 0 + 32: 0 + 34: 0 + 34.1: 0 + 35.1: 0 + 36.1: 0 + 37.1: 0 + 41: 0 + 42.8: 0 + 42.9: 0 + 6: _ZN9oceanbase7storage21ObTenantFreezeInfoMgr10FreezeInfoC2Ev:54 + 0: 3 + 30: _ZSt3minIlERKT_S2_S2_:0 + 5: 0 + 31.1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share14ObSnapshotInfoEE5countEv:0 + 0: 0 + 33: _ZN9oceanbase6common12ObIArrayWrapINS_5share14ObSnapshotInfoEE2atEl:0 + 6: 0 + 37: _ZSt3minIlERKT_S2_S2_:0 + 5: 0 + 42.8: _ZN9oceanbase6common8TCRWLock10RLockGuardD2Ev:0 + 0: 0 + 0.2: 0 + 0: _ZN9oceanbase6common8TCRWLock8rdunlockEv:0 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:0 + 0: 0 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPi:0 + 2: 0 + 4.1: 0 + 4.2: 0 + 6: 0 + 6.1: 0 + 10: 0 + 2: _ZN9oceanbase6common8get_itidEv:0 + 4: 0 + 5: 0 + 6: 0 + 8: 0 + 11: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:0 + 2: 0 + 2.1: 0 + 3: 0 +_ZN9oceanbase3omt19ObTenantTimezoneMgr13get_tenant_tzEmRNS_6common11ObTZMapWrapE:340:6 + 2: 6 + 3: 6 + 4: 6 + 5.1: 0 + 6.1: 7 _ZN9oceanbase3omt19ObTenantTimezoneMgr26get_tenant_timezone_staticEmRNS_6common11ObTZMapWrapE:6 + 7.1: 0 + 9: 7 +_ZN9oceanbase6common13ObSEArrayImplINS0_5ObObjELl32ENS0_19ModulePageAllocatorELb0EED2Ev:339:3 + 1: 3 + 3: 2 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS0_5ObObjELl32ENS0_19ModulePageAllocatorELb0EE7destroyEv:237 + 9: 3 + 11: 2 + 13: 2 + 15: 2 + 24: 2 + 10: _ZN9oceanbase6common13ObSEArrayImplINS0_5ObObjELl32ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:126 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:126 + 0: 3 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:93 + 2: 3 + 3: 3 _ZN9oceanbase3lib17ObMallocAllocator12get_instanceEv:3 + 4: 3 + 5: 3 _ZN9oceanbase3lib17ObMallocAllocator4freeEPv:3 + 4: _ZL12abort_unlessb:6 + 5: 3 + 6: 0 +_ZN9oceanbase3sql18ObBasicSessionInfo20update_timezone_infoEv:338:2 + 1: 2 + 2: 2 + 4: 2 + 5: 2 _ZN9oceanbase3omt19ObTenantTimezoneMgr12get_instanceEv:2 + 5.1: 3 _ZN9oceanbase3omt19ObTenantTimezoneMgr19get_tenant_timezoneEmRNS_6common11ObTZMapWrapERPNS2_21ObTimeZoneInfoManagerE:3 + 5.2: 5 + 6.1: 0 + 7.1: 5 + 8: 0 + 9.1: 0 + 10.2: 5 + 10.5: 0 + 10.6: 0 + 13.2: 0 + 14: 0 + 15.1: 0 + 16.2: 0 + 16.3: 0 + 17.1: 0 + 20: 0 + 21.1: 0 + 21.2: 0 + 22.1: 0 + 29: 5 + 30.8: 5 + 3: _ZN9oceanbase6common11ObTZMapWrapC2Ev:8 + 0: 2 + 10.1: _ZNK9oceanbase6common18ObTimeZoneInfoWrap17is_position_classEv:35 + 0: 5 + 10.3: _ZNK9oceanbase6common21ObTimeZoneInfoManager11get_versionEv:0 + 0: 0 + 12: _ZN9oceanbase6common8ObStringC2Ev:0 + 1: 0 + 13.1: _ZNK9oceanbase6common17ObTimeZoneInfoPos8is_validEv:0 + 0: 0 + 19: _ZNK9oceanbase6common18ObTimeZoneInfoWrap15get_cur_versionEv:0 + 0: 0 + 20: _ZNK9oceanbase6common21ObTimeZoneInfoManager11get_versionEv:0 + 0: 0 + 20.1: _ZN9oceanbase6common18ObTimeZoneInfoWrap15set_cur_versionEl:0 + 0: 0 + 23: _ZN9oceanbase6common18ObTimeZoneInfoWrap15set_cur_versionEl:0 + 0: 0 + 25.1: _ZNK9oceanbase6common18ObTimeZoneInfoWrap24is_error_on_overlap_timeEv:0 + 0: 0 + 25.2: _ZN9oceanbase6common14ObTimeZoneInfo25set_error_on_overlap_timeEb:0 + 0: 0 +_ZN9oceanbase5share6schema17ObSchemaMgrHandleC2ERKS2_:336:12 + 1: 12 + 2: 12 + 3: 12 _ZN9oceanbase5share6schema17ObSchemaMgrHandleaSERKS2_:12 +_ZN9oceanbase5share6schema17ObSchemaMgrHandleC1ERKS2_:336:12 + 1: 12 + 2: 12 + 3: 12 _ZN9oceanbase5share6schema17ObSchemaMgrHandleaSERKS2_:12 +_ZN9oceanbase6common4hash9ObHashMapImPNS_2pl16ObPLPackageStateENS1_19NoPthreadDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS5_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE6createElRKNS_3lib7ObLabelESP_mm:334:1 + 3: 1 + 4: 1 + 5: 1 + 6: 1 + 6.1: 1 _ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS_2pl16ObPLPackageStateEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE6createElPSJ_PSM_:1 + 4.1: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImPNS_2pl16ObPLPackageStateEEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEE8set_attrERKNS_3lib9ObMemAttrE:19 + 0: _ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocator8set_attrERKNS_3lib9ObMemAttrE:19 + 0: 1 + 5.1: _ZN9oceanbase6common8ObMalloc8set_attrERKNS_3lib9ObMemAttrE:19 + 0: 1 + 6: _ZN9oceanbase6common4hash14cal_next_primeEl:270 + 3: 1 + 7: 1 + 7.3: 1 + 6: _ZSt11lower_boundIPKllET_S2_S2_RKT0_:196 + 9: _ZSt13__lower_boundIPKllN9__gnu_cxx5__ops14_Iter_less_valEET_S5_S5_RKT0_T1_:196 + 8.1: 5 + 10: 5 + 13: 5 + 13: _ZNK9__gnu_cxx5__ops14_Iter_less_valclIPKlS3_EEbT_RT0_:20 + 1: 5 +_ZN9oceanbase6common4hash9ObHashMapINS0_8ObStringElNS1_19NoPthreadDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_lEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:334:5 + 1: 5 + 2: 5 + 2: _ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_lEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:69 + 2.1: 5 + 2.2: 2 + 3: 2 _ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_lEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv:2 + 5.2: 0 + 2: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringElEENS1_5NLockENS1_5NCondEEEEEbRKT_:40 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringElEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:40 + 2: 5 + 2.2: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS0_8ObStringElEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEED2Ev:82 + 2.1: 0 + 2: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS0_8ObStringElEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEE5clearEv:82 + 2: 3 + 3.1: 3 + 4: 0 + 5: 0 + 6.1: 0 + 15: 5 + 10: _ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocator4freeEPv:0 + 3: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZZNK9oceanbase4palf16LogSlidingWindow32is_all_committed_log_slided_out_ERNS0_3LSNERlS3_ENK5$_218clEPKc.0e4bf25207570af14a78557c8489c4fc:332:4 + 0: 4 + 0.1: 0 + 0.2: 4 + 0.3: 4 _ZN9oceanbase6common8ObLogger13need_to_printEmi:4 + 0.15: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:68 + 2: 4 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS0_6ObAddrELb0EEC2EPKcS4_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKbLb0EEC2EPKcS3_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVIRKNS_4palf3LSNELb0EEC2EPKcS5_:0 + 0: 0 + 0.12: _ZN9oceanbase6common7ObLogKVIRKNS_4palf3LSNELb0EEC2EPKcS5_:0 + 0: 0 + 0.14: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase3sql18ObBasicSessionInfo20set_session_in_retryENS0_20ObSessionRetryStatusE:332:1 + 1: 1 + 2: 1 + 3: 1 + 3.1: 0 + 3.2: 0 + 12: 1 + 2: _ZN9oceanbase3lib11ObLockGuardINS_6common16ObRecursiveMutexEEC2ERS3_:137 + 1: 1 + 2: 1 + 4: 1 + 5.1: 0 + 4: _ZN9oceanbase6common16ObRecursiveMutex4lockEv:115 + 2: 1 + 3: 1 + 4: 0 + 6: 1 _ZN9oceanbase6common7ObLatch6wrlockEjlPKj:1 + 7.1: 0 + 9: 1 + 12: 1 + 3: _ZNK9oceanbase6common7ObLatch14is_wrlocked_byEPKj:62 + 3: 1 + 4: 1 + 2.1: _Z9ob_gettidv:53 + 3: 1 + 4: 0 + 2: _Z13get_tid_cachev:25 + 7: 1 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 + 12: _ZN9oceanbase3lib11ObLockGuardINS_6common16ObRecursiveMutexEED2Ev:136 + 2: 1 + 3: 1 + 3.1: 1 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase6common16ObRecursiveMutex6unlockEv:115 + 2: 1 + 3: 1 + 4: 0 + 5.1: 0 + 6.1: 1 + 7: 1 _ZN9oceanbase6common7ObLatch6unlockEPKj:1 + 8.1: 0 + 11: 0 + 3: _ZNK9oceanbase6common7ObLatch14is_wrlocked_byEPKj:61 + 3: 1 + 4: 1 + 2.1: _Z9ob_gettidv:53 + 3: 1 + 4: 0 + 2: _Z13get_tid_cachev:25 + 7: 1 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 +_ZN9oceanbase7storage4ObLS11get_ls_infoERNS0_10ObLSVTInfoE:329:2 + 1: 2 + 2: 2 + 4: 2 + 5: 2 + 6: 2 + 8: 2 + 9: 0 + 10.1: 0 + 11.1: 2 _ZNK9oceanbase10logservice12ObLogHandler8get_roleERNS_6common6ObRoleERl:2 + 12.1: 0 + 13.1: 2 _ZNK9oceanbase10logservice12ObLogHandler10is_in_syncERbS2_:2 + 15.1: 0 + 16.1: 2 _ZNK9oceanbase7storage8ObLSMeta20get_migration_statusERNS0_17ObMigrationStatusE:2 + 17.1: 0 + 20: 1 + 21: 1 + 22: 1 + 23: 1 + 24: 1 + 25: 1 + 26: 1 _ZNK9oceanbase7storage8ObLSMeta22get_clog_checkpoint_tsEv:1 + 27: 1 _ZN9oceanbase7storage8ObLSMeta17get_clog_base_lsnEv:1 + 29: 0 + 19: _ZN9oceanbase5share6ObLSIDaSERKS1_:10 + 0: 1 + 23: _ZNK9oceanbase7storage17ObLSTabletService16get_tablet_countEv:7 + 2: _ZNK9oceanbase7storage13ObTabletIDSet4sizeEv:7 + 0: _ZNK9oceanbase6common4hash9ObHashSetINS0_10ObTabletIDENS1_19NoPthreadDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_NS1_11HashNullObjEEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE4sizeEv:7 + 2: _ZNK9oceanbase6common4hash11ObHashTableINS0_10ObTabletIDENS1_11HashMapPairIS3_NS1_11HashNullObjEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS6_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE4sizeEv:7 + 2: 1 + 24: _ZNK9oceanbase7storage14ObLSWRSHandler19get_ls_weak_read_tsEv:7 + 0: 1 +_ZN9oceanbase6common17ObjHashCalculatorILNS0_9ObObjTypeE5ENS0_13ObDefaultHashENS0_5ObObjEE15calc_hash_valueERKS4_m:328:5 + 0: 4 + 0.1: _ZN9oceanbase6common13ObDefaultHash4hashEPKvmm:248 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:248 + 5: 4 + 13: 4 + 14: 4 + 15: 4 + 17: 4 + 18: 4 + 41: 4 + 42: 4 + 43: 4 +_ZN9oceanbase3omt8ObTenant8get_unitEv:328:2 + 1: 2 + 2: 2 _ZN9oceanbase6common12TCRLockGuardC2ERKNS0_8TCRWLockE:2 + 4: 2 + 3: _ZN9oceanbase5share16ObUnitInfoGetter14ObTenantConfigC2ERKS2_:126 + 0: 2 _ZN9oceanbase5share12ObUnitConfigC1ERKS1_:2 + 4: _ZN9oceanbase6common12TCRLockGuardD2Ev:120 + 2: 2 + 3: 2 + 3.1: 2 + 3.2: 0 + 3: _ZN9oceanbase6common8TCRWLock8rdunlockEl:78 + 3: 2 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:8 + 0: 2 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPil:44 + 2: 2 + 2.1: 2 + 3: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:12 + 2: 2 + 2.1: 0 + 3: 0 + 4.1: _ZN9oceanbase6common12TCRLockGuardD2Ev:0 + 2: 0 + 3: 0 + 3.1: 0 + 3.2: 0 + 3: _ZN9oceanbase6common8TCRWLock8rdunlockEl:0 + 3: 0 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:0 + 0: 0 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPil:0 + 2: 0 + 2.1: 0 + 3: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:0 + 2: 0 + 2.1: 0 + 3: 0 +_ZN9oceanbase6common4hash9ObHashMapImPNS_2pl16ObPLPackageStateENS1_19NoPthreadDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS5_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev:326:1 + 0.1: 2 + 1: 1 + 5: 2 + 0: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImPNS_2pl16ObPLPackageStateEEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEC2Ev:64 + 0: 2 + 2: 1 + 0.1: _ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocatorC2EmRKNS_3lib7ObLabelE:34 + 3: 1 + 4: 1 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:15 + 7: 1 + 2: _ZN9oceanbase6common4hash10SpinIniterC2ERVi:14 + 2: 2 + 3.1: 0 + 0.1: _ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS_2pl16ObPLPackageStateEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev:124 + 0: 2 + 1: 2 + 0: _ZN9oceanbase6common8ObMallocC2Ev:52 + 0: 2 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:44 + 5: 2 + 7: 2 + 8: _ZN9oceanbase6common4hash9constructIPNS1_17ObHashTableBucketINS1_11HashMapPairImPNS_2pl16ObPLPackageStateEEENS1_5NLockENS1_5NCondEEEEEvRT_:36 + 2: _ZN9oceanbase6common4hash12do_constructIPNS1_17ObHashTableBucketINS1_11HashMapPairImPNS_2pl16ObPLPackageStateEEENS1_5NLockENS1_5NCondEEEEEvRT_NS1_16NormalPointerTagE:36 + 2: 2 + 0.2: _ZN9oceanbase6common8ObMallocC2Ev:30 + 0: 2 + 4: _ZN9oceanbase6common8ObMalloc8set_attrERKNS_3lib9ObMemAttrE:68 + 0: 2 +_ZZN9oceanbase4palf21LogIOTaskCbThreadPool6handleEPvENK5$_759clEPKc.1598dc2348996c1ae1caea6120522988:325:7 + 0: 7 + 0.1: 0 + 0.2: 6 + 0.3: 7 _ZN9oceanbase6common8ObLogger13need_to_printEmi:7 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:105 + 2: 7 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 64843: 7 +_ZN9oceanbase3lib7Threads22get_expect_run_wrapperEv:325:13 + 1: 13 + 3: 13 +_ZNK9oceanbase6common8ObStringeqERKS1_:322:4 + 1: 4 + 2: 5 + 2: _ZNK9oceanbase6common8ObString7compareERKS1_:214 + 3: 4 + 4: 4 + 5.1: 4 + 7.1: 5 + 7.2: 4 + 7.1: _ZSt3minIiERKT_S2_S2_:28 + 5: 4 +_ZN9oceanbase4palf10PalfHandleaSERKS1_:322:8 + 1: 7 + 2: 7 + 5: 7 + 6: 7 + 7: 7 + 8: 7 + 10: 7 +_ZN9oceanbase3sql18ObBasicSessionInfo19store_query_string_ERKNS_6common8ObStringE:322:2 + 1: 2 + 2: 2 + 3: 2 + 5: 2 + 6: 0 + 7.1: 0 + 8.1: 2 + 9: 0 + 10: 0 + 12: 0 + 14: 0 + 15.1: 0 + 16: 1 + 17: 0 + 18.1: 0 + 20: 1 + 21: 1 + 24: 3 + 25: 3 + 27: 2 + 28: 2 + 30: 2 + 3: _ZSt3minIlERKT_S2_S2_:22 + 5: 2 + 4: _ZNK9oceanbase6common8ObString6lengthEv:8 + 0: 2 + 15: _ZN9oceanbase3lib7ObLabelC2IA16_cEERKT_:0 + 2: _ZN9oceanbase3lib7ObLabelaSILm16EEERS1_RAT__Kc:0 + 4: 0 + 25: _ZNK9oceanbase6common8ObString3ptrEv:12 + 0: 3 +_ZNK9oceanbase5share6schema21ObServerSchemaService16check_inner_statEv:321:7 + 1: 7 + 3: 7 + 3.1: 7 + 4: 7 + 4.1: 7 + 5: 7 + 5.1: 7 + 7.1: 0 + 10: 8 +_ZNK9oceanbase4palf16LogSlidingWindow23get_max_flushed_end_lsnERNS0_3LSNE:320:21 + 1: 20 + 2: 20 + 3: 20 + 2.4: _ZN9oceanbase4palf3LSNaSERKS1_:60 + 2: 20 +_ZN9oceanbase3sql8ObSqlCtxD2Ev:318:1 + 0: 1 _ZN9oceanbase3sql8ObSqlCtx5resetEv:2 + 0.1: 4 + 0.2: 0 + 0.3: 0 + 0.4: 3 _ZN9oceanbase6common16ObFixedArrayImplIlNS0_12ObIAllocatorEED2Ev:3 + 0.5: 3 _ZN9oceanbase6common16ObFixedArrayImplIPNS0_9ObSEArrayIlLl4ENS0_19ModulePageAllocatorELb1EEENS0_12ObIAllocatorEED2Ev:3 + 0.6: 3 _ZN9oceanbase6common16ObFixedArrayImplIPNS0_9ObSEArrayIlLl4ENS0_19ModulePageAllocatorELb1EEENS0_12ObIAllocatorEED2Ev:4 + 0.7: 4 _ZN9oceanbase6common16ObFixedArrayImplINS_3sql18LocationConstraintENS0_12ObIAllocatorEED2Ev:4 + 0.8: 4 _ZN9oceanbase6common16ObFixedArrayImplINS0_8ObStringENS0_12ObIAllocatorEED2Ev:4 + 0.9: 4 _ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql20ObTablePartitionInfoENS0_12ObIAllocatorEED2Ev:4 + 0.11: 0 + 0.12: 0 + 0.13: 0 + 0.14: 0 + 0.15: 0 + 0.16: 0 + 0.1: _ZN9oceanbase3sql13ObSpmCacheCtxD2Ev:87 + 0: 3 + 0: _ZN9oceanbase3sql15ObCacheObjGuardD2Ev:33 + 2: 3 + 5: 0 + 5.1: 0 + 6: 0 + 5: _ZN9oceanbase3sql20ObCacheObjectFactory4freeINS0_17ObILibCacheObjectEEEvRPT_NS0_16CacheRefHandleIDE:0 + 2: 0 + 3: 0 +_ZN9oceanbase5share8ObLSInfo21update_replica_statusEv:315:2 + 1: 1 + 2: 1 + 3: 0 + 4: 0 + 5.1: 0 + 8.2: 1 + 8.6: 1 + 8.8: 1 + 8.9: 1 + 8.11: 1 + 8.12: 0 + 8.14: 1 + 14.1: 1 + 14.4: 0 + 14.6: 1 + 14.7: 1 + 14.9: 1 + 14.12: 1 + 16: 1 + 19.1: 1 + 19.3: 1 + 20: 1 + 26: 0 + 32: 0 + 46: 1 + 3: _ZNK9oceanbase5share8ObLSInfo8is_validEv:33 + 2: 1 + 2: _ZNK9oceanbase5share6ObLSID20is_valid_with_tenantEm:25 + 5: 1 + 5.1: 0 + 4: _ZN9oceanbase6common14is_user_tenantEm:19 + 3: 1 + 2: _ZN9oceanbase6common13is_sys_tenantEm:0 + 2: 0 + 4.1: _ZNK9oceanbase5share6ObLSID8is_validEv:5 + 0: 1 + 5.2: _ZN9oceanbase6common14is_meta_tenantEm:0 + 3: 0 + 5.3: _ZNK9oceanbase5share6ObLSID9is_sys_lsEv:0 + 0: 0 + 8.2: _ZNK9oceanbase6common12ObIArrayWrapINS_5share11ObLSReplicaEE5countEv:4 + 0: 1 + 8.3: _ZN9oceanbase6common12ObIArrayWrapINS_5share11ObLSReplicaEE2atEl:4 + 6: 1 + 8.11: _ZNK9oceanbase6common12ObIArrayWrapINS_5share11ObLSReplicaEE5countEv:4 + 0: 1 + 9: _ZNK9oceanbase5share11ObLSReplica16is_strong_leaderEv:4 + 0: 1 _ZN9oceanbase6common16is_strong_leaderENS0_6ObRoleE:1 + 14.2: _ZN9oceanbase6common12ObIArrayWrapINS_5share11ObLSReplicaEE2atEl:4 + 6: 1 + 14.9: _ZNK9oceanbase6common12ObIArrayWrapINS_5share11ObLSReplicaEE5countEv:4 + 0: 1 + 14.10: _ZN9oceanbase6common12ObIArrayWrapINS_5share11ObLSReplicaEE2atEl:0 + 6: 0 + 16.1: _ZNK9oceanbase5share11ObLSReplica16get_replica_typeEv:0 + 0: 0 + 16.2: _ZN9oceanbase6common18ObReplicaTypeCheck19is_paxos_replica_V2Ei:0 + 2: 0 + 19: _ZNK9oceanbase6common12ObIArrayWrapINS_5share12SimpleMemberEE5countEv:4 + 0: 1 + 20: _ZNK9oceanbase5share11ObLSReplica10get_serverEv:26 + 0: 1 + 20.1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share12SimpleMemberEE2atEl:4 + 6: 1 + 20.3: _ZNK9oceanbase6common6ObAddreqERKS1_:42 + 2: 1 + 2.1: 1 + 2.2: 1 + 22.1: _ZNK9oceanbase5share12SimpleMember13get_timestampEv:4 + 0: 1 + 26: _ZN9oceanbase5share11ObLSReplica28update_in_member_list_statusEbl:17 + 4: 1 + 5: 1 + 34.2: _ZN9oceanbase6common18ObReplicaTypeCheck21is_replica_type_validEi:0 + 3: 0 +_ZN9oceanbase5share13ObBasicSysVar9set_valueERKNS_6common5ObObjE:312:25 + 1: 24 + 2: 24 + 3: 24 +_ZN9oceanbase3sql17ObTableInsertUpOp19calc_auto_incrementERKNS0_10ObUpdCtDefE:311:1 + 1: 1 + 2: 1 + 3: 1 + 4: 1 + 4.2: 0 + 4.3: 0 + 4.5: 0 + 5: 0 + 12.1: 0 + 12.2: 1 + 12.3: 1 + 13: 0 + 14: 0 + 15: 0 + 21: 1 + 24.1: 1 + 24.5: 0 + 24.6: 1 + 24.7: 1 + 24.9: 0 + 25: 1 + 26.2: 1 + 26.4: 0 + 26.11: 1 _ZN9oceanbase3sql17ObTableInsertUpOp21update_auto_incrementERKNS0_6ObExprEm:1 + 86: 0 + 3: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:7 + 2: 1 + 4: _ZN9oceanbase6common12ObCurTraceId3getEv:25 + 2: _ZN9oceanbase6common12ObCurTraceId12get_trace_idEv:25 + 5: 1 + 5.1: 0 + 5.1: _ZN9oceanbase6common12ObCurTraceId7TraceIdC2Ev:0 + 0: 0 + 4.2: _ZN9oceanbase3lib20is_trace_log_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:0 + 2: 0 + 4.3: _ZN9oceanbase6common18get_trace_recorderEv:0 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:0 + 7: 0 + 8: 0 + 8.1: 0 + 4.5: _ZN9oceanbase3lib20is_trace_log_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:0 + 2: 0 + 4.6: _ZN9oceanbase6common18get_trace_recorderEv:0 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:0 + 7: 0 + 8: 0 + 8.1: 0 + 4.13: _Z17CHECK_TRACE_TIMESmPKm:106 + 10.1: 1 + 11.1: 1 + 12: 1 + 13: 1 + 14: 1 + 18: 0 + 19: 0 + 20: 0 + 4.14: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl189ELl1600EE9add_eventEv:0 + 2: 0 + 3.1: 0 + 6: 0 + 10: 0 + 11: 0 + 12: 0 + 4.15: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:0 + 0: 0 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 13: _ZN9oceanbase6common12ObIArrayWrapINS_5share12AutoincParamEE2atEl:0 + 6: 0 + 14: _ZN9oceanbase6common12ObIArrayWrapINS_5share12AutoincParamEE2atEl:0 + 6: 0 + 21: _ZN9oceanbase3sql17ObPhysicalPlanCtx18get_autoinc_id_tmpEv:7 + 2: 1 + 22: _ZN9oceanbase3sql17ObPhysicalPlanCtx27set_last_insert_id_cur_stmtEm:11 + 2: 1 + 24.1: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql13ColumnContentEE5countEv:10 + 0: 1 + 24.9: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql13ColumnContentEE5countEv:0 + 0: 0 + 26.2: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql6ObExprEE2atEl:8 + 6: 1 + 26.10: _ZNK9oceanbase6common12ObIArrayWrapImE2atEl:8 + 6: 1 +_ZN9oceanbase3sql18ObBasicSessionInfo31process_session_time_zone_valueERKNS_6common5ObObjEb:308:3 + 2: 2 + 5: 2 + 6: 2 _ZNK9oceanbase6common5ObObj10get_stringERNS0_8ObStringE:2 + 7.1: 0 + 8.1: 4 _ZN9oceanbase3sql18ObBasicSessionInfo13set_time_zoneERKNS_6common8ObStringEbb:2 + 9.1: 0 + 11: 4 + 4: _ZN9oceanbase6common8ObStringC2Ev:20 + 1: 2 + 5: _ZNK9oceanbase3sql18ObBasicSessionInfo20is_oracle_compatibleEv:70 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo22get_compatibility_modeEv:70 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12get_sql_modeEv:70 + 0: 2 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache12get_sql_modeEv:64 + 0: 2 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache12get_sql_modeEb:36 + 0: 2 +_ZN9oceanbase3sql16ObFastParserBase31process_identifier_begin_with_tERb:308:1 + 1: 1 + 2: 1 + 5: 0 + 6: 0 + 7.2: 0 + 7.4: 0 + 11: 1 _ZN9oceanbase3sql16ObFastParserBase8ObRawSql11strncasecmpEPKcl:1 + 13: 1 + 14.1: 1 + 14.2: 2 _ZN9oceanbase3sql16ObFastParserBase8ObRawSql11strncasecmpEPKcl:1 + 20.2: 1 + 20.4: 1 + 23: 2 + 3: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql11strncasecmpEPKcl:89 + 2: 1 + 2: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql11strncasecmpElPKcl:83 + 6: 3 + 9: 3 + 4: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:17 + 2: 1 + 2.1: 1 + 5: 1 + 12: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:0 + 2: 0 + 2.1: 0 + 5: 0 + 4: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:0 + 2: 0 + 3: 0 + 12: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:28 + 2: 1 + 3: 1 + 15: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:31 + 2: 1 + 3: 1 + 4: 1 + 7: 1 +_ZN9oceanbase6common8ObLogger13need_to_printEi:307:3 + 0: 3 + 0: _ZNK9oceanbase6common8ObLogger13get_log_levelEv:250 + 3: 3 + 8: 3 + 11: 2 + 13.1: 3 + 18: 3 + 6: _ZNK9oceanbase6common15ObLogIdLevelMap9get_levelEv:21 + 0: 3 + 9: _ZN9oceanbase6common21ObThreadLogLevelUtils3getEv:80 + 5: 2 + 3: _ZN9oceanbase6common21ObThreadLogLevelUtils20get_thread_log_levelEv:42 + 3: _ZN9oceanbase6common15get_local_storeEv:42 + 3: 2 + 3.1: 0 + 3.1: _ZN9oceanbase6common12ObLocalStoreC2Ev:0 + 1: 0 + 0: _ZN9oceanbase6common16ObThreadLogLevelC2Ev:0 + 0: 0 + 10: _ZN9oceanbase6common21ObThreadLogLevelUtils9get_levelEv:57 + 5: 3 + 12: _ZNK9oceanbase6common15ObLogIdLevelMap9get_levelEv:0 + 0: 0 +_ZN9oceanbase6common16ObCommonSqlProxy4readEPNS0_9sqlclient16ObISQLConnectionERNS0_12ObISQLClient10ReadResultEmPKc:307:3 + 2: 3 + 3: 3 + 4: 3 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:3 + 6: 2 + 7: 0 + 8.1: 0 + 9.1: 2 + 10: 0 + 11.1: 0 + 13: 2 _ZN9oceanbase8observer20ObInnerSQLConnection12execute_readEmPKcRNS_6common12ObISQLClient10ReadResultEbb:2 + 14.1: 0 + 17.1: 1 _ZZN9oceanbase6common16ObCommonSqlProxy4readEPNS0_9sqlclient16ObISQLConnectionERNS0_12ObISQLClient10ReadResultEmPKcENK5$_247clES9_.3b9eb7bac0c1e969a148d6b2684be9fe:1 + 18: 2 + 5: _ZN9oceanbase6common12ObISQLClient10ReadResult5resetEv:16 + 2: 2 + 3: 0 + 4: 0 + 9.1: _ZNK9oceanbase6common12ObISQLClient9is_activeEv:10 + 0: 2 +_ZN9oceanbase6common15ObLinearHashMapINS_5share6ObLSIDEPNS_10logservice13ObApplyStatusENS0_14ShareMemMgrTagEE7shrink_Ev:305:0 + 1: 0 + 3: 1 + 5: 1 + 6: 1 + 15: 1 + 18: 0 + 23: 0 + 24: 0 + 24.1: 0 + 24.3: 0 + 25: 0 + 26: 0 + 28: 0 + 29: 0 + 31: 0 + 33: 0 + 34: 0 + 37: 0 + 41.1: 0 + 41.3: 0 + 42: 1 + 47: 1 + 3: _ZN9oceanbase6common15ObLinearHashMapINS_5share6ObLSIDEPNS_10logservice13ObApplyStatusENS0_14ShareMemMgrTagEE11es_trylock_Ev:2 + 2: 1 + 2: _ZN9oceanbase6common10ObSpinLock7trylockEv:0 + 2: 0 + 4: _ZNK9oceanbase6common15ObLinearHashMapINS_5share6ObLSIDEPNS_10logservice13ObApplyStatusENS0_14ShareMemMgrTagEE8bkt_cnt_Ev:27 + 5: 1 + 4: _ZNK9oceanbase6common15ObLinearHashMapINS_5share6ObLSIDEPNS_10logservice13ObApplyStatusENS0_14ShareMemMgrTagEE8load_Lp_ERmS9_:14 + 2: 1 + 3: 1 + 4: 1 + 9: _ZNK9oceanbase6common15ObLinearHashMapINS_5share6ObLSIDEPNS_10logservice13ObApplyStatusENS0_14ShareMemMgrTagEE8load_Lp_ERmS9_:51 + 2: 1 + 3: 1 + 4: 1 + 30: _ZN9oceanbase6common15ObLinearHashMapINS_5share6ObLSIDEPNS_10logservice13ObApplyStatusENS0_14ShareMemMgrTagEE7set_Lp_Emm:0 + 2: 0 + 3: 0 + 33: _ZN9oceanbase6common15ObLinearHashMapINS_5share6ObLSIDEPNS_10logservice13ObApplyStatusENS0_14ShareMemMgrTagEE12seg_bkt_idx_Em:0 + 2: 0 + 34: _ZN9oceanbase6common15ObLinearHashMapINS_5share6ObLSIDEPNS_10logservice13ObApplyStatusENS0_14ShareMemMgrTagEE8seg_idx_Em:0 + 2.1: 0 + 3: 0 + 34.1: _ZN9oceanbase6common15ObLinearHashMapINS_5share6ObLSIDEPNS_10logservice13ObApplyStatusENS0_14ShareMemMgrTagEE19wait_evict_haz_seg_ERPNS8_6BucketE:0 + 2: 0 + 3: 0 + 4: 0 + 34.2: _ZN9oceanbase6common15ObLinearHashMapINS_5share6ObLSIDEPNS_10logservice13ObApplyStatusENS0_14ShareMemMgrTagEE8des_seg_EPNS8_6BucketE:0 + 2: 0 + 3: 0 + 43: _ZN9oceanbase6common15ObLinearHashMapINS_5share6ObLSIDEPNS_10logservice13ObApplyStatusENS0_14ShareMemMgrTagEE10es_unlock_Ev:7 + 2: 1 + 3: 1 + 4.1: 0 + 2: _ZN9oceanbase6common10ObSpinLock6unlockEv:1 + 2: 1 _ZN9oceanbase6common12ObLatchMutex6unlockEv:1 +_ZN9oceanbase4palf7LogTask11can_be_slidEv:304:19 + 1: 19 + 6: 19 + 3: _ZN9oceanbase4palf7LogTask12is_pre_slideEv:190 + 2: _ZNK9oceanbase4palf15LogSimpleBitMap8test_mapEl:190 + 2: 19 +_ZN9oceanbase8observer14ObReqTimeGuardC2Eb:302:3 + 1: 3 + 6: 2 + 7: 2 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS_8observer13ObReqTimeInfoELm0EEEPT_v:72 + 7: 3 + 8: 0 + 8.1: 0 + 5: _ZN9oceanbase8observer13ObReqTimeInfo17update_start_timeEv:145 + 2: 3 + 5: 2 + 6.1: 0 + 9: 1 + 11: 2 + 9: _ZN9oceanbase6common13ObTimeUtility22current_monotonic_timeEv:59 + 9: _ZN9oceanbase6common13ObTimeUtility23current_monotonic_time_Ev:59 + 7: 2 + 8: 0 + 11: 0 + 11.2: 1 + 12: 1 +_ZN9oceanbase6common13ObSEArrayImplINS_3sql18ObBasicSessionInfo10ChangedVarELl8ENS0_19ModulePageAllocatorELb0EE7destroyEv:300:5 + 1: 5 + 9: 5 + 11: 0 + 13: 5 + 15: 5 + 24: 5 + 25: 5 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_3sql18ObBasicSessionInfo10ChangedVarELl8ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: 0 +_ZN9oceanbase5share6schema17ObSchemaMgrHandleC2ENS1_15ObSchemaMgrItem3ModE:300:10 + 1: 10 + 2: 10 + 3: 10 +_ZN9oceanbase5share6schema17ObSchemaMgrHandleC1ENS1_15ObSchemaMgrItem3ModE:300:10 + 1: 10 + 2: 10 + 3: 10 +_ZN9oceanbase5share19ObLSLocationService22renew_all_ls_locationsEv:295:1 + 1: 1 + 2: 1 + 7: 1 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:1 + 8: 1 + 9: 0 + 10.1: 0 + 11.1: 1 + 11.2: 1 + 12: 0 + 13.1: 0 + 14.1: 1 _ZN9oceanbase5share6schema27ObMultiVersionSchemaService14get_tenant_idsERNS_6common8ObIArrayImEE:1 + 14.2: 0 + 15.1: 0 + 17.2: 0 + 17.4: 0 + 19: 0 + 21.1: 0 + 22: 0 + 23: 0 + 24: 0 + 26: 0 + 26.1: 1 + 29.1: 0 + 30.1: 1 _ZN9oceanbase5share17ObLSTableOperator13get_by_tenantEmRNS_6common8ObIArrayINS0_8ObLSInfoEEE:1 + 30.2: 0 + 31.1: 0 + 33: 0 + 33.2: 0 + 33.4: 0 + 35: 0 + 36: 0 + 36.2: 0 + 36.3: 0 + 37.1: 0 + 38.1: 0 + 38.3: 0 + 38.5: 0 + 38.6: 0 + 44.1: 0 + 48: 0 + 48.1: 0 + 49.1: 0 + 52: 0 + 55.1: 0 + 55.3: 0 + 56: 0 + 58: 0 + 59.20: 0 + 59.21: 0 + 59.22: 0 + 59.24: 0 + 4: _ZN9oceanbase6common7ObArrayINS_5share8ObLSInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEEC2Ev:107 + 0.1: 1 + 0.5: _ZN9oceanbase6common11ObArrayImplINS_5share8ObLSInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEEC2ElRKS4_:89 + 3: 1 + 4: 1 + 7.1: 1 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:58 + 0: 1 + 5: _ZN9oceanbase6common7ObArrayImNS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackImEENS0_22NotImplementItemEncodeImEEEC2Ev:78 + 0.1: 1 + 0.5: _ZN9oceanbase6common11ObArrayImplImNS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackImEENS0_22NotImplementItemEncodeImEEEC2ElRKS2_:60 + 3: 1 + 4: 1 + 7.1: 1 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:28 + 0: 1 + 17: _ZNK9oceanbase6common12ObIArrayWrapImE5countEv:0 + 0: 0 + 20: _ZN9oceanbase6common11ObArrayImplINS_5share8ObLSInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE5resetEv:0 + 0: 0 + 21: _ZN9oceanbase6common12ObIArrayWrapImE2atEl:0 + 6: 0 + 23: _ZN9oceanbase6common18is_valid_tenant_idEm:0 + 2: 0 + 33: _ZNK9oceanbase6common12ObIArrayWrapINS_5share8ObLSInfoEE5countEv:0 + 0: 0 + 35: _ZN9oceanbase5share12ObLSLocationC2Ev:0 + 4: 0 + 1: _ZN9oceanbase6common6ObLinkC2Ev:0 + 0: 0 + 2: _ZN9oceanbase5share20ObLSLocationCacheKeyC2Ev:0 + 1: 0 + 4: 0 + 3: _ZN9oceanbase5share6ObLSIDC2Ev:0 + 0: 0 + 5: _ZN9oceanbase6common9ObSEArrayINS_5share19ObLSReplicaLocationELl3ENS0_19ModulePageAllocatorELb0EEC2Ev:0 + 0.1: 0 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_5share19ObLSReplicaLocationELl3ENS0_19ModulePageAllocatorELb0EEC2ElRKS4_:0 + 5: 0 + 6: 0 + 8: 0 + 17.1: 0 + 2: _ZN9oceanbase6common8ObIArrayINS_5share19ObLSReplicaLocationEEC2EPS3_l:0 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_5share19ObLSReplicaLocationEEC2EPS3_l:0 + 0: 0 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:0 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:0 + 2: 0 + 8: 0 + 38.3: _ZNK9oceanbase5share12ObLSLocation13get_tenant_idEv:0 + 0: _ZNK9oceanbase5share20ObLSLocationCacheKey13get_tenant_idEv:0 + 0: 0 + 38.4: _ZNK9oceanbase5share12ObLSLocation9get_ls_idEv:0 + 0: _ZNK9oceanbase5share20ObLSLocationCacheKey9get_ls_idEv:0 + 0: _ZN9oceanbase5share6ObLSIDC2ERKS1_:0 + 0: 0 +_ZN9oceanbase7storage23ObTxDataSingleRowGetter35deserialize_tx_data_from_store_row_EPKNS_12blocksstable10ObDatumRowERNS0_8ObTxDataE:294:3 + 2: 3 + 4: 3 + 5: 3 + 6: 3 + 7: 3 + 7.2: 3 _ZN9oceanbase7storage8ObTxData11deserializeEPKclRlRNS_6common12ObSliceAllocE:4 + 8.1: 0 + 9.2: 0 + 10.1: 0 + 11: 0 + 12.1: 0 + 16: 0 + 5: _ZNK9oceanbase6common7ObDatum7get_intEv:18 + 0: 3 + 5.4: _ZN9oceanbase11transaction9ObTransIDaSERKS1_:9 + 1: 3 + 6: _ZNK9oceanbase6common7ObDatum10get_stringEv:36 + 0: 3 + 0: _ZN9oceanbase6common8ObStringC2ElPKc:9 + 5: 3 + 7.1: _ZNK9oceanbase6common8ObString6lengthEv:12 + 0: 3 + 9: _ZNK9oceanbase6common8ObString3ptrEv:0 + 0: 0 + 9.1: _ZNK9oceanbase6common8ObString6lengthEv:0 + 0: 0 +_ZN9oceanbase5share19ObLSPrimaryZoneInfo6assignERKS1_:294:3 + 1: 3 + 2: 3 + 3: 3 + 4: 3 + 5.1: 0 + 6.1: 1 + 7.1: 0 + 9: 1 + 10: 1 + 14: 1 + 4: _ZN9oceanbase6common19ObFixedLengthStringILl128EE6assignERKS2_:100 + 2: 3 + 4: 0 + 5.1: 0 + 8: 0 + 4: _ZN9oceanbase6common19ObFixedLengthStringILl128EE6assignEPKc:79 + 2: 3 + 6: 3 + 7: 2 + 8: 0 + 9.1: 0 + 11: 0 + 12: 0 + 14: 2 + 15: 0 + 18: 0 + 11: _ZN9oceanbase5share6ObLSIDaSERKS1_:8 + 0: 1 +_ZN9oceanbase5share17ObLSTableIterator4nextERNS0_8ObLSInfoE:294:2 + 1: 2 + 2: 2 + 3: 2 + 4: 0 + 5.1: 0 + 6.1: 2 + 7: 0 + 8.1: 0 + 9.1: 2 + 10: 0 + 11.1: 0 + 14: 2 + 16: 2 + 17: 0 + 18.1: 0 + 19.1: 0 + 20.1: 0 + 22: 0 + 25: 0 + 28: 0 + 15: _ZN9oceanbase5share8ObLSInfo5resetEv:48 + 2: 2 + 4: 2 + 4: _ZN9oceanbase6common11ObArrayImplINS_5share11ObLSReplicaENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE5resetEv:16 + 0: 2 _ZN9oceanbase6common11ObArrayImplINS_5share11ObLSReplicaENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE7destroyEv:2 + 17: _ZN9oceanbase6common11ObArrayImplINS_5share8ObLSInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEEixEl:24 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_5share8ObLSInfoEE2atEl:24 + 6: 2 + 17.1: _ZN9oceanbase5share8ObLSInfo6assignERKS1_:84 + 2: 2 + 3: 2 + 4: 2 + 6: 0 + 7.1: 0 + 10: 0 + 4: _ZNK9oceanbase5share8ObLSInfo13get_tenant_idEv:10 + 0: 2 + 5: _ZNK9oceanbase5share8ObLSInfo9get_ls_idEv:10 + 0: _ZN9oceanbase5share6ObLSIDC2ERKS1_:10 + 0: 2 + 5.3: _ZN9oceanbase5share6ObLSIDaSERKS1_:8 + 0: 2 + 6: _ZN9oceanbase6common11copy_assignINS0_7ObArrayINS_5share11ObLSReplicaENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_17DefaultItemEncodeIS4_EEEEEEiRT_RKSB_:24 + 2: _ZN9oceanbase6common16copy_assign_wrapINS0_7ObArrayINS_5share11ObLSReplicaENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_17DefaultItemEncodeIS4_EEEEEEiRT_RKSB_NS0_8BoolTypeILb0EEE:24 + 2: _ZN9oceanbase6common7ObArrayINS_5share11ObLSReplicaENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEEaSERKS9_:24 + 0: 2 _ZN9oceanbase6common11ObArrayImplINS_5share11ObLSReplicaENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEEaSERKS9_:2 + 3: _ZN9oceanbase6common24get_copy_assign_ret_wrapINS0_7ObArrayINS_5share11ObLSReplicaENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_17DefaultItemEncodeIS4_EEEEEEiRT_NS0_8BoolTypeILb1EEE:0 + 2: _ZNK9oceanbase6common11ObArrayImplINS_5share11ObLSReplicaENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE19get_copy_assign_retEv:0 + 0: 0 +_ZN9oceanbase4palf19PalfHandleImplGuardD2Ev:293:14 + 1: 12 + 2: 12 + 2.1: 12 + 3: 11 _ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE6revertEPS4_:11 + 3.1: 0 + 5: 10 +_ZN9oceanbase4palf19PalfHandleImplGuardD1Ev:293:14 + 1: 12 + 2: 12 + 2.1: 12 + 3: 11 _ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE6revertEPS4_:11 + 3.1: 0 + 5: 10 +_ZN9oceanbase6common8ObMalloc5allocElRKNS_3lib9ObMemAttrE:292:4 + 1: 4 + 2: 6 + 2: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:134 + 3: 4 _ZN9oceanbase3lib17ObMallocAllocator12get_instanceEv:4 + 4: 4 + 5: 4 _ZN9oceanbase3lib17ObMallocAllocator5allocElRKNS0_9ObMemAttrE:4 + 6: 6 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 9: _ZSt3maxIlERKT_S2_S2_:0 + 5: 0 +_ZN9oceanbase4palf14PalfHandleImpl17advance_reuse_lsnERKNS0_3LSNE:291:1 + 1: 1 + 3: 1 + 4: 1 + 5: 0 + 6.1: 3 + 7.1: 0 + 9.1: 3 _ZZN9oceanbase4palf14PalfHandleImpl17advance_reuse_lsnERKNS0_3LSNEENK6$_1145clEPKc.0e4bf25207570af14a78557c8489c4fc:3 + 11: 3 + 6.1: _ZN9oceanbase4palf16LogSlidingWindow17advance_reuse_lsnERKNS0_3LSNE:157 + 3: 1 + 4: 1 + 6.1: 1 + 8.1: 4 _ZN9oceanbase4palf14LogGroupBuffer20inc_update_reuse_lsnERKNS0_3LSNE:2 + 9.1: 0 + 11.1: 4 _ZZN9oceanbase4palf16LogSlidingWindow17advance_reuse_lsnERKNS0_3LSNEENK5$_411clEPKc.0e4bf25207570af14a78557c8489c4fc:4 + 13: 3 + 6.1: _ZNK9oceanbase4palf3LSN8is_validEv:4 + 2: 1 +_ZNK9oceanbase8observer16ObInnerSQLResult13get_timestampElPKNS_6common14ObTimeZoneInfoERl:290:2 + 2: 2 + 4: 2 + 5: 2 + 6: 0 + 7.1: 0 + 8.1: 2 + 9: 0 + 10.1: 0 + 11.1: 2 + 11.4: 2 + 12: 0 + 13.1: 0 + 15: 2 + 15.1: 0 + 15.3: 2 + 16: 2 + 16.1: 2 + 17: 0 + 18.1: 0 + 20: 2 + 21: 3 + 24: 3 + 28: 3 + 21: _ZN9oceanbase8observer16ObInnerSQLResult18check_extend_valueERKNS_6common5ObObjE:30 + 3: 2 + 5.1: 0 + 3: _ZNK9oceanbase6common5ObObj7is_nullEv:14 + 0: _ZNK9oceanbase6common9ObObjMeta7is_nullEv:14 + 0: 2 + 5.1: _ZNK9oceanbase6common5ObObj12is_min_valueEv:0 + 2.1: 0 + 24: _ZNK9oceanbase6common5ObObj13get_timestampEv:15 + 0: 3 +_ZN9oceanbase8observer20ObInnerSQLConnection5unrefEv:290:6 + 1: 6 + 2: 6 + 3: 6 + 4: 0 + 5.1: 0 + 6.1: 6 + 7.1: 0 + 9: 6 + 10: 4 _ZN9oceanbase8observer24ObInnerSQLConnectionPool6revertEPNS0_20ObInnerSQLConnectionE:4 + 11.1: 0 + 18: 2 +_ZN9oceanbase8observer16ObInnerSQLResult21MemEntifyDestroyGuardD2Ev:290:4 + 1: 3 + 2: 3 + 2.1: 3 + 2.2: 0 + 4: 4 + 6: 4 + 2: _ZN9oceanbase3libneEDnRKNS0_13MemoryContextE:21 + 1: 3 + 1: _ZNK9oceanbase3lib13MemoryContext11ref_contextEv:12 + 1: 3 + 3: _ZN9oceanbase3lib17__MemoryContext__15destory_contextERNS0_13MemoryContextE:57 + 3: 0 + 4: 0 + 5: 3 + 6: 3 _ZN9oceanbase3lib17__MemoryContext__15destory_contextEPS1_:3 + 2: _ZNK9oceanbase3lib13MemoryContext16check_magic_codeEv:9 + 0: 3 + 2.1: _ZL12abort_unlessb:6 + 5: 3 + 6: 0 + 5: _ZL12abort_unlessb:6 + 5: 3 + 6: 0 + 4: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:72 + 2: 4 + 8: 4 +_ZN9oceanbase7storage19ObFastFreezeChecker22check_need_fast_freezeERKNS0_8ObTabletERb:289:4 + 3: 3 + 4: 3 + 5: 3 + 6: 3 _ZN9oceanbase7storage15ObTableHandleV2C1Ev:3 + 7: 3 + 9: 3 + 10.1: 3 _ZNK9oceanbase7storage8ObTablet19get_active_memtableERNS0_15ObTableHandleV2E:4 + 10.2: 2 + 14.1: 0 + 16.1: 0 + 16.2: 0 + 17.1: 0 + 18.1: 0 + 19: 0 + 20.1: 0 + 21.1: 0 + 21.2: 0 + 22.1: 0 + 22.2: 0 + 22.3: 0 + 23: 0 + 23.2: 0 + 23.4: 0 + 23.5: 0 + 23.8: 0 + 24.1: 0 + 29: 2 + 30.8: 2 _ZN9oceanbase7storage15ObTableHandleV2D1Ev:2 + 30.9: 0 + 23.1: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 23.3: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 26.1: _ZN9oceanbase7storage19ObFastFreezeChecker30check_hotspot_need_fast_freezeERKNS_8memtable10ObMemtableERb:0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 9.1: 0 + 9.2: 0 + 9.3: 0 + 9.4: 0 + 9.6: 0 + 10.1: 0 + 8: _ZNK9oceanbase8memtable10ObMemtable15has_hotspot_rowEv:0 + 0: 0 + 9.2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 9.3: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 +_ZN9oceanbase6common13ObSEArrayImplINS_5share12SimpleMemberELl7ENS0_15ObNullAllocatorELb0EE7destroyEv:288:6 + 1: 6 + 9: 6 + 11: 0 + 13: 6 + 15: 6 + 24: 6 + 25: 6 +_ZNK9oceanbase5obrpc15ObRpcResultCode9serializeEPclRl:285:0 + 0: 0 + 0.1: 0 + 0.2: 0 + 0.4: 0 + 0.11: 0 + 0.12: 0 + 0.13: 1 + 0.15: 0 + 0.21: 0 + 0.22: 1 + 0.24: 1 + 0.25: 0 + 0.32: 0 + 0.33: 0 + 0.35: 0 + 0.2: _ZN9oceanbase6common13serialization6encodeEPclRll:3 + 2: _ZN9oceanbase6common13serialization11encode_vi64EPclRll:3 + 3: 1 + 4: 0 + 5: 0 + 11: 0 + 0.4: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 0.5: _ZN9oceanbase6common7ObLogKVIRA13_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 0.15: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 0.22: _ZN9oceanbase6common13serialization22encode_fixed_bytes_i64EPclRll:247 + 5: 1 + 8: 4 + 9: 4 + 0.27: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.29: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.31: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.34: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIlNS1_11HashNullObjEEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEED2Ev:285:7 + 1: 5 + 2.1: 0 + 3: 5 + 2: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIlNS1_11HashNullObjEEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEE5clearEv:105 + 2: 5 + 3.1: 5 + 4: 0 + 5: 0 + 6.1: 0 + 15: 5 + 10: _ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocator4freeEPv:0 + 2: 0 + 3: _ZN9oceanbase6common7ob_freeEPv:0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase5share11ObLSReplicaD2Ev:284:4 + 1: 4 + 2: 4 + 2.1: _ZN9oceanbase6common13ObSEArrayImplINS_5share12SimpleMemberELl7ENS0_15ObNullAllocatorELb0EED2Ev:228 + 1: 4 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_5share12SimpleMemberELl7ENS0_15ObNullAllocatorELb0EE7destroyEv:168 + 9: 4 + 11: 0 + 13: 4 + 15: 4 + 24: 4 + 2.2: _ZN9oceanbase5share6ObLSIDD2Ev:32 + 0: _ZN9oceanbase5share6ObLSID5resetEv:32 + 0: 4 +_ZN9oceanbase5share11ObLSReplicaD1Ev:284:4 + 1: 4 + 2: 4 + 2.1: _ZN9oceanbase6common13ObSEArrayImplINS_5share12SimpleMemberELl7ENS0_15ObNullAllocatorELb0EED2Ev:228 + 1: 4 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_5share12SimpleMemberELl7ENS0_15ObNullAllocatorELb0EE7destroyEv:168 + 9: 4 + 11: 0 + 13: 4 + 15: 4 + 24: 4 + 2.2: _ZN9oceanbase5share6ObLSIDD2Ev:32 + 0: _ZN9oceanbase5share6ObLSID5resetEv:32 + 0: 4 +_ZN9oceanbase10rootserver24ObTenantRecoveryReportor4run2Ev:282:0 + 1: 0 + 2: 0 + 3: 0 + 4.1: 0 + 5: 0 + 6: 0 + 7.1: 0 + 9.1: 0 + 11.1: 0 + 15: 0 + 16: 0 + 17: 0 + 18.1: 0 + 19.1: 0 + 19.2: 0 + 21.1: 0 + 22.2: 0 + 23.1: 0 + 25: 0 + 26.1: 0 + 26.2: 4 + 27: 4 + 28: 0 + 29.1: 0 + 32: 4 _ZN9oceanbase6common14SpinRLockGuardC2ERKNS0_10SpinRWLockE:4 + 33: 1 _ZNK9oceanbase5share15ObAllTenantInfo8is_validEv:2 + 33.1: 2 + 35: 2 + 35.1: 2 _ZN9oceanbase7storage4ObLS26update_ls_replayable_pointIJlEEEiDpOT_:2 + 35.2: 4 + 36.1: 0 + 39: 3 _ZN9oceanbase6common14SpinRLockGuardD2Ev:3 + 39.2: 0 + 40: 3 + 40.1: 3 + 43.1: 3 _ZN9oceanbase10rootserver24ObTenantRecoveryReportor18update_ls_recoveryEPNS_7storage4ObLSEPNS_6common12ObMySQLProxyE:3 + 43.2: 0 + 44.1: 0 + 50: 0 + 50.1: 0 + 51: 0 + 51.3: 0 + 52.1: 0 + 55: 0 + 55.1: 0 + 56.1: 0 + 58: 0 + 59.1: 0 + 61: 0 + 61.1: 0 + 62: 0 + 62.1: 0 + 63.15: 0 + 9: _ZN9oceanbase5share17ObReentrantThread8get_condEv:0 + 1: 0 + 13: _ZN9oceanbase6common13ObSharedGuardINS_7storage12ObLSIteratorEEC2Ev:0 + 0: _ZN9oceanbase6common5guard8BlockPtrINS_7storage12ObLSIteratorEEC2Ev:0 + 0: 0 + 14: _ZN9oceanbase5share11ObTenantEnv3mtlIPNS_7storage11ObLSServiceEEET_v:0 + 2: 0 + 2.1: _ZN9oceanbase5share12ObTenantBase3getIPNS_7storage11ObLSServiceEEET_v:0 + 0: _ZN9oceanbase5share12ObTenantBase9inner_getENS1_8IdentityIPNS_7storage11ObLSServiceEEE:0 + 0: 0 + 22.1: _ZNK9oceanbase6common13ObSharedGuardINS_7storage12ObLSIteratorEE7get_ptrEv:0 + 0: 0 + 35: _ZNK9oceanbase5share15ObAllTenantInfo18get_replayable_scnEv:14 + 0: 2 + 40: _ZNK9oceanbase7storage4ObLS9is_sys_lsEv:24 + 0: _ZNK9oceanbase5share6ObLSID9is_sys_lsEv:24 + 0: 3 +_ZNK9oceanbase7storage13ObITableArray18get_boundary_tableEb:280:8 + 1: 8 + 3: 8 + 5.1: 8 + 7.1: 8 + 8: 8 + 10: 0 + 12: 8 +_ZNK9oceanbase4palf14PalfHandleImpl15get_access_modeERlRNS0_10AccessModeE:280:1 + 1: 1 + 2: 1 + 3: 1 + 4: 1 + 5: 0 + 6.1: 0 + 7.2: 1 + 8.1: 0 + 10: 1 + 11.3: 1 + 3: _ZN9oceanbase6common8TCRWLock10RLockGuardC2ERS1_:1 + 0: 1 _ZN9oceanbase6common8TCRWLock6rdlockEl:1 + 7.1: _ZNK9oceanbase4palf10LogModeMgr15get_access_modeERlRNS0_10AccessModeE:41 + 2: 1 + 3: 1 + 4: 0 + 5.1: 0 + 7: 1 + 8: 1 + 10: 0 + 11.3: _ZN9oceanbase6common8TCRWLock10RLockGuardD2Ev:148 + 0.2: 0 + 0: _ZN9oceanbase6common8TCRWLock8rdunlockEv:148 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:4 + 0: 1 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPi:122 + 2: 1 + 4.1: 1 + 4.2: 0 + 6: 1 + 6.1: 1 + 10: 1 + 2: _ZN9oceanbase6common8get_itidEv:28 + 4: 1 + 5: 0 + 6: 0 + 8: 0 + 11: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:15 + 2: 1 + 2.1: 0 + 3: 0 + 11.4: _ZN9oceanbase6common8TCRWLock10RLockGuardD2Ev:0 + 0.2: 0 + 0: _ZN9oceanbase6common8TCRWLock8rdunlockEv:0 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:0 + 0: 0 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPi:0 + 2: 0 + 4.1: 0 + 4.2: 0 + 6: 0 + 6.1: 0 + 10: 0 + 2: _ZN9oceanbase6common8get_itidEv:0 + 4: 0 + 5: 0 + 6: 0 + 8: 0 + 11: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:0 + 2: 0 + 2.1: 0 + 3: 0 +_ZN9oceanbase6common9ObCharset4hashENS0_15ObCollationTypeERKNS0_8ObStringEmbPFmPKvmmE:280:7 + 3: 7 + 5: 7 + 6.2: 7 _ZN9oceanbase6common9ObCharset4hashENS0_15ObCollationTypeEPKclmbPFmPKvmmE:8 + 9: 0 + 5: _ZNK9oceanbase6common8ObString5emptyEv:112 + 2: 7 + 2.1: 7 +_ZN9oceanbase6common13ObSEArrayImplINS_4palf11LogWriteBuf11InnerStructELl2ENS0_19ModulePageAllocatorELb0EE7reserveEl:280:8 + 1: 8 + 2: 8 + 3: 8 + 5: 0 + 6: 0 + 7: 0 + 7.3: 0 + 9: 0 + 10: 0 + 11: 0 + 12: 0 + 13: 0 + 15: 0 + 16: 0 + 23: 0 + 24.1: 0 + 27: 8 + 8: _ZN9oceanbase6common13ObSEArrayImplINS_4palf11LogWriteBuf11InnerStructELl2ENS0_19ModulePageAllocatorELb0EE16internal_malloc_El:0 + 2: 0 + 7: 0 + 13: 0 + 13: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 10: _ZN9oceanbase6common9ObClassOpINS_4palf11LogWriteBuf11InnerStructELb1EE12array_expandEPKS4_PS4_l:0 + 2: 0 +_ZN9oceanbase3sql16ObFastParserBase31process_identifier_begin_with_lERb:280:2 + 1: 2 + 2: 2 + 3: 2 + 6: 0 + 7: 0 + 9.1: 0 + 12: 0 + 14: 0 + 15.1: 0 + 15.2: 0 + 15.4: 0 + 19: 2 + 4: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql11strncasecmpEPKcl:184 + 2: 2 + 2: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql11strncasecmpElPKcl:172 + 6: 6 + 9: 6 + 4: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:34 + 2: 2 + 2.1: 2 + 5: 2 + 12: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:0 + 2: 0 + 2.1: 0 + 5: 0 + 5: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:0 + 2: 0 + 3: 0 + 8: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:0 + 2: 0 + 3: 0 + 10: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:0 + 2: 0 + 3: 0 + 13: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql4scanEl:0 + 2: 0 + 3: 0 +_ZN9oceanbase4palf12LogConfigMgr22try_resend_config_log_El:279:5 + 1: 5 + 2: 5 + 3: 5 + 3.1: 0 + 4: 4 + 5: 0 + 7: 0 + 9.1: 0 + 11: 4 + 5: _ZNK9oceanbase4palf16LogConfigVersion8is_validEv:0 + 2: 0 + 2.1: 0 + 6: _ZN9oceanbase4palf27palf_reach_time_interval_nsElRl:0 + 3: 0 + 4: 0 + 6: 0 +_ZN9oceanbase6common9Ob2DArrayINS_3sql15ObDatumObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS3_Ll1ES4_Lb0EEEE7destroyEv:278:2 + 1: 2 + 4.1: 2 + 4.3: 2 + 9: 2 + 11: 2 + 2: _ZN9oceanbase6common9Ob2DArrayINS_3sql15ObDatumObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS3_Ll1ES4_Lb0EEEE13destruct_objsEv:22 + 11: 2 + 3: _ZNK9oceanbase6common9Ob2DArrayINS_3sql15ObDatumObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS3_Ll1ES4_Lb0EEEE15get_block_countEv:8 + 0: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql15ObDatumObjParamEE5countEv:8 + 0: 2 + 6: _ZN9oceanbase6common9Ob2DArrayINS_3sql15ObDatumObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS3_Ll1ES4_Lb0EEEE10free_blockES6_:52 + 0: _ZN9oceanbase6common18ObWrapperAllocator4freeEPv:52 + 2: 2 + 3: 2 + 10: _ZN9oceanbase6common13ObSEArrayImplIPNS_3sql15ObDatumObjParamELl1ENS0_18ObWrapperAllocatorELb0EE7destroyEv:80 + 9: 2 + 11: 0 + 13: 2 + 15: 2 + 24: 2 + 10: _ZN9oceanbase6common13ObSEArrayImplIPNS_3sql15ObDatumObjParamELl1ENS0_18ObWrapperAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common18ObWrapperAllocator4freeEPv:0 + 2: 0 + 3: 0 +_ZN9oceanbase3sql24ObTenantSqlMemoryManager32try_push_profiles_work_area_sizeEl:278:0 + 1: 0 + 2: 0 + 3: 0 + 4: 0 + 5.1: 0 + 7.1: 2 + 7.5: 2 + 8: 3 + 9: 3 + 10.1: 0 + 10.2: 3 + 10.6: 0 + 11.1: 0 + 12: 0 + 12.1: 0 + 13: 0 + 14.1: 0 + 18: 3 + 20: 0 + 24: 0 + 8.1: _ZN9oceanbase6common10ObSpinLock7trylockEv:50 + 2: 2 _ZN9oceanbase6common12ObLatchMutex8try_lockEjPKj:2 + 10: _ZN9oceanbase6common7ObDListINS_3sql20ObSqlWorkAreaProfileEE9get_firstEv:33 + 0: 3 + 11: _ZNK9oceanbase3sql20ObSqlWorkAreaProfile15get_auto_policyEv:0 + 0: 0 + 18.1: _ZN9oceanbase6common10ObSpinLock6unlockEv:33 + 2: 3 _ZN9oceanbase6common12ObLatchMutex6unlockEv:3 +_ZNK9oceanbase3omt13ObMultiTenant19is_available_tenantEm:277:1 + 1: 0 + 4: 0 + 7.1: 1 + 8: 1 _ZN9oceanbase3omt8ObTenant8get_unitEv:2 + 9: 2 + 15.2: 2 + 4: _ZN9oceanbase6common14SpinRLockGuardC2ERKNS0_10SpinRWLockE:11 + 1: 0 + 3: 1 + 4.1: 0 + 3: _ZN9oceanbase6common10SpinRWLock6rdlockEl:0 + 0: 0 + 5: _ZNK9oceanbase3omt13ObMultiTenant17get_tenant_unsafeEmRPNS0_8ObTenantE:51 + 6: 1 + 7: 0 + 8: 1 + 10.1: 0 + 11.1: 1 + 5: _ZNK9oceanbase6common14ObSortedVectorIPNS_3omt8ObTenantENS0_9PageArenaIS4_NS0_20DefaultPageAllocatorEEEE5beginEv:7 + 0: _ZNK9oceanbase6common8ObVectorIPNS_3omt8ObTenantENS0_9PageArenaIS4_NS0_20DefaultPageAllocatorEEEE5beginEv:7 + 0: 1 + 6: _ZNK9oceanbase6common14ObSortedVectorIPNS_3omt8ObTenantENS0_9PageArenaIS4_NS0_20DefaultPageAllocatorEEEE3endEv:7 + 0: _ZNK9oceanbase6common8ObVectorIPNS_3omt8ObTenantENS0_9PageArenaIS4_NS0_20DefaultPageAllocatorEEEE3endEv:7 + 0: 1 + 7: _ZN9oceanbase3omt8ObTenant17get_create_statusEv:104 + 2: 1 _ZN9oceanbase6common12TCRLockGuardC2ERKNS0_8TCRWLockE:1 + 3: 1 + 4: _ZN9oceanbase6common12TCRLockGuardD2Ev:80 + 2: 1 + 3: 1 + 3.1: 1 + 3.2: 0 + 3: _ZN9oceanbase6common8TCRWLock8rdunlockEl:47 + 3: 1 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:4 + 0: 1 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPil:30 + 2: 1 + 2.1: 1 + 3: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:6 + 2: 1 + 2.1: 0 + 3: 0 + 15.2: _ZN9oceanbase6common14SpinRLockGuardD2Ev:38 + 2: 2 + 3: 2 + 3.1: 2 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase6common10SpinRWLock6unlockEv:6 + 0: 2 _ZN9oceanbase6common7ObLatch6unlockEPKj:2 + 15.3: _ZN9oceanbase6common14SpinRLockGuardD2Ev:0 + 2: 0 + 3: 0 + 3.1: 0 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase6common10SpinRWLock6unlockEv:0 + 0: 0 +_ZN9oceanbase5share20ObLSTemplateOperator9exec_readINS0_24ObLSRecoveryStatOperatorENS0_16ObLSRecoveryStatEEEiRKmRKNS_6common11ObSqlStringERNS7_12ObISQLClientEPT_RNS7_8ObIArrayIT0_EE:275:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8.1: 0 + 10: 0 + 11: 0 + 11.2: 0 + 12: 0 + 12.1: 0 + 13: 0 + 14: 0 + 15.1: 0 + 16.1: 0 + 16.2: 0 + 17.1: 0 + 19: 0 + 19.4: 0 + 19.13: 0 + 21: 0 + 21.1: 0 + 21.2: 1 + 22.1: 0 + 23.2: 1 + 24: 0 + 25.1: 0 + 28.1: 1 + 28.2: 2 _ZN9oceanbase8observer16ObInnerSQLResult4nextEv:2 + 28.3: 3 + 28.4: 3 + 30: 3 _ZN9oceanbase5share24ObLSRecoveryStatOperator9fill_cellEPNS_6common9sqlclient13ObMySQLResultERNS0_16ObLSRecoveryStatE:3 + 30.1: 1 + 31.1: 0 + 32.1: 1 _ZN9oceanbase6common13ObSEArrayImplINS_5share16ObLSRecoveryStatELl1ENS0_19ModulePageAllocatorELb0EE9push_backERKS3_:1 + 32.2: 1 + 33.1: 0 + 36: 0 + 37: 0 + 39.1: 0 + 41: 0 + 42.1: 0 + 47: 0 + 47.2: 0 + 48: 0 + 12: _ZN9oceanbase5share14ObLSLifeIAgent18get_exec_tenant_idEm:0 + 3: 0 + 5.1: 0 + 3: _ZN9oceanbase6common13is_sys_tenantEm:0 + 2: 0 + 5.1: _ZN9oceanbase6common14is_meta_tenantEm:0 + 3: 0 + 4.1: 0 + 19.6: _ZN9oceanbase6common2SVINS0_12ObISQLClient10ReadResultELb1EEC2IZNS_5share20ObLSTemplateOperator9exec_readINS6_24ObLSRecoveryStatOperatorENS6_16ObLSRecoveryStatEEEiRKmRKNS0_11ObSqlStringERS2_PT_RNS0_8ObIArrayIT0_EEEUlPvE_EEibOSH_:0 + 3: 0 + 5: 0 + 6: 0 + 9: _ZZN9oceanbase5share20ObLSTemplateOperator9exec_readINS0_24ObLSRecoveryStatOperatorENS0_16ObLSRecoveryStatEEEiRKmRKNS_6common11ObSqlStringERNS7_12ObISQLClientEPT_RNS7_8ObIArrayIT0_EEENKUlPvE_clESJ_:0 + 0: 0 + 21: _ZNK9oceanbase6common11ObSqlString3ptrEv:0 + 0: 0 + 23.1: _ZN9oceanbase6common12ObISQLClient10ReadResult10get_resultEv:4 + 0: 1 _ZN9oceanbase6common12ObISQLClient10ReadResult12mysql_resultEv:1 + 27: _ZN9oceanbase5share16ObLSRecoveryStatC2Ev:49 + 1: 1 + 4: 3 + 6: 1 + 29: _ZN9oceanbase5share16ObLSRecoveryStat5resetEv:60 + 2: 3 + 5: 3 + 46.1: _ZN9oceanbase6common2SVINS0_12ObISQLClient10ReadResultELb1EED2Ev:0 + 4: 0 + 6: 0 + 6.1: 0 + 46.3: _ZN9oceanbase6common2SVINS0_12ObISQLClient10ReadResultELb1EED2Ev:0 + 4: 0 + 6: 0 + 6.1: 0 +_ZN9oceanbase7storage19ObTablesHandleArray5resetEv:274:3 + 1: 2 + 2: 2 + 3.1: 2 + 3.3: 2 + 4: 2 + 5: 2 + 6: 2 _ZN9oceanbase7storage8ObITable7dec_refEv:2 + 7: 2 + 8: 0 + 9.1: 0 + 11: 0 + 11.1: 0 + 13.1: 2 + 14.1: 0 + 18: 2 + 22: 2 + 24: 2 + 4: _ZN9oceanbase6common12ObIArrayWrapIPNS_7storage8ObITableEE2atEl:16 + 6: 2 + 18: _ZN9oceanbase6common12ObIArrayWrapIPNS_7storage8ObITableEE2atEl:10 + 6: 2 + 20: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl8ENS0_19ModulePageAllocatorELb0EE5resetEv:18 + 0: 2 _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl8ENS0_19ModulePageAllocatorELb0EE7destroyEv:2 +_ZN9oceanbase6common11DefHashFuncINS0_19DatumHashCalculatorILNS0_9ObObjTypeE5ENS0_12ObMurmurHashEEEE4hashERKNS0_7ObDatumEm:273:3 + 1: 3 + 3: 3 + 8: 3 + 3: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:12 + 0: 3 + 6: _ZN9oceanbase6common19DatumHashCalculatorILNS0_9ObObjTypeE5ENS0_12ObMurmurHashEE15calc_datum_hashERKNS0_7ObDatumEm:114 + 2: _ZN9oceanbase6common17ObjHashCalculatorILNS0_9ObObjTypeE5ENS0_12ObMurmurHashENS0_7ObDatumEE15calc_hash_valueERKS4_m:114 + 0: _ZNK9oceanbase6common7ObDatum7get_intEv:18 + 0: 3 + 0.1: _ZN9oceanbase6common12ObMurmurHash4hashEPKvmm:96 + 2: _ZN9oceanbase6common13murmurhash64AEPKvim:96 + 5: 3 + 13: 3 + 14: 3 + 15: 3 +_ZTHN9oceanbase6common5occam20ObThreadHungDetector15click_point_idxE:270:10 + 0: 0 + 0.1: 0 +_ZN9oceanbase7storage23ObTenantTabletScheduler20try_remove_old_tableERNS0_4ObLSE:270:0 + 1: 0 + 2: 0 + 3: 0 + 6: 0 + 8.1: 0 + 9.1: 0 + 12: 0 + 13: 0 + 15.1: 0 + 16: 0 + 16.1: 3 + 18.1: 0 + 20: 0 + 24: 0 + 25.1: 0 + 26.2: 3 + 28.2: 3 + 30: 3 + 31: 3 + 32: 3 + 33: 3 + 34: 3 _ZN9oceanbase7storage8ObTablet28get_kept_multi_version_startERlS2_:3 + 34.1: 0 + 35.1: 0 + 36.1: 0 + 36.2: 0 + 37.1: 0 + 38.1: 0 + 39: 0 + 41: 0 + 41.1: 0 + 42: 0 + 43: 0 + 43.1: 0 + 44.1: 0 + 46.1: 0 + 46.2: 0 + 46.4: 0 + 49: 0 + 49.1: 0 + 53.18: 0 + 53.20: 0 + 53.22: 0 + 53.25: 0 + 53.26: 0 + 3.1: _ZNK9oceanbase5share12ObTenantBase2idEv:0 + 0: 0 + 4: _ZNK9oceanbase7storage4ObLS9get_ls_idEv:0 + 0: _ZN9oceanbase5share6ObLSIDC2ERKS1_:0 + 0: 0 + 8: _ZN9oceanbase7storage4ObLS17build_tablet_iterIJRNS0_18ObLSTabletIteratorEEEEiDpOT_:0 + 0: 0 + 0.1: 0 + 14: _ZN9oceanbase6common10ObTabletIDC2Em:0 + 0: 0 + 23.1: _ZNK9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE8is_validEv:66 + 2: 3 + 27.2: _ZN9oceanbase6common10ObTabletIDaSERKS1_:33 + 0: 3 + 39: _ZNK9oceanbase7storage8ObTablet18get_storage_schemaEv:0 + 0: 0 + 40: _ZNK9oceanbase7storage4ObLS15get_rebuild_seqIJEEElDpOT_:0 + 0: 0 + 41: _ZNK9oceanbase7storage8ObTablet20get_snapshot_versionEv:0 + 0: 0 + 49.2: _ZN9oceanbase7storage23ObUpdateTableStoreParamD2Ev:0 + 0: 0 + 49.6: _ZN9oceanbase7storage23ObUpdateTableStoreParamD2Ev:0 + 0: 0 +_ZN9oceanbase10rootserver14ObTenantLSInfo31adjust_user_tenant_primary_zoneEv:270:0 + 1: 0 + 2: 0 + 6: 0 + 6.1: 0 + 7: 0 + 8.1: 0 + 9.1: 0 + 9.2: 0 + 11.1: 0 + 13: 0 + 13.1: 0 + 14: 0 + 14.1: 1 + 16.1: 0 + 20: 1 + 23.1: 1 + 23.3: 2 + 23.4: 2 + 23.6: 1 + 25: 2 + 28.1: 1 + 30: 1 _ZN9oceanbase10rootserver14ObTenantLSInfo32adjust_primary_zone_by_ls_group_ERKNS_6common8ObIArrayINS2_19ObFixedLengthStringILl128EEEEERKNS2_7ObArrayINS_5share19ObLSPrimaryZoneInfoENS2_19ModulePageAllocatorELb0ENS2_22ObArrayDefaultCallBackISB_EENS2_22NotImplementItemEncodeISB_EEEERKNSA_6schema14ObTenantSchemaE:2 + 30.1: 0 + 31.1: 0 + 38: 1 + 38.2: 1 _ZN9oceanbase6common11ObArrayImplINS_5share19ObLSPrimaryZoneInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE9push_backERKS3_:1 + 38.3: 1 + 39.1: 0 + 42.2: 0 + 43: 0 + 43.1: 0 + 44.1: 0 + 48: 0 + 48.1: 0 + 50: 0 + 51.14: 0 + 51.15: 0 + 51.16: 0 + 51.19: 0 + 3: _ZN9oceanbase5share18ObLSStatusOperatorC2Ev:0 + 0.1: 0 + 184: 0 + 4: _ZN9oceanbase6common7ObArrayINS_5share19ObLSPrimaryZoneInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEEC2Ev:0 + 0.1: 0 + 0.5: _ZN9oceanbase6common11ObArrayImplINS_5share19ObLSPrimaryZoneInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEEC2ElRKS4_:0 + 3: 0 + 4: 0 + 7.1: 0 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 5: _ZN9oceanbase6common7ObArrayINS0_19ObFixedLengthStringILl128EEENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEEC2Ev:0 + 0.1: 0 + 0.5: _ZN9oceanbase6common11ObArrayImplINS0_19ObFixedLengthStringILl128EEENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEEC2ElRKS4_:0 + 3: 0 + 4: 0 + 7.1: 0 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 13: _ZNK9oceanbase5share6schema14ObTenantSchema13get_tenant_idEv:0 + 0: 0 + 22: _ZN9oceanbase6common7ObArrayINS_5share19ObLSPrimaryZoneInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEEC2Ev:73 + 0.1: 1 + 0.5: _ZN9oceanbase6common11ObArrayImplINS_5share19ObLSPrimaryZoneInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEEC2ElRKS4_:66 + 3: 1 + 4: 1 + 7.1: 1 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:27 + 0: 1 + 24: _ZN9oceanbase6common12ObIArrayWrapINS_5share19ObLSPrimaryZoneInfoEE2atEl:28 + 6: 2 + 28: _ZNK9oceanbase5share19ObLSPrimaryZoneInfo15get_ls_group_idEv:10 + 2: 2 + 34: _ZN9oceanbase6common11ObArrayImplINS_5share19ObLSPrimaryZoneInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE5resetEv:0 + 0: 0 + 35: _ZNK9oceanbase5share19ObLSPrimaryZoneInfo15get_ls_group_idEv:0 + 2: 0 +_ZN9oceanbase5share6schema19ObSchemaGetterGuard15get_tenant_infoEmRPKNS1_14ObTenantSchemaE:269:2 + 2: 2 + 3: 2 + 4: 2 + 5.1: 2 _ZZN9oceanbase5share6schema19ObSchemaGetterGuard15get_tenant_infoEmRPKNS1_14ObTenantSchemaEENK5$_245clEPKc.bfa63f0f3456173f564c7cf65584fc48:2 + 7: 2 + 8: 0 + 9.1: 0 + 10.1: 2 + 11: 0 + 12.1: 0 + 13.1: 2 _ZN9oceanbase5share6schema19ObSchemaGetterGuard10get_schemaINS1_14ObTenantSchemaEEEiNS1_12ObSchemaTypeEmmRPKT_l:2 + 17.1: 0 + 20: 1 + 7: _ZNK9oceanbase5share6schema19ObSchemaGetterGuard16check_inner_statEv:80 + 2: 2 + 3: 2 + 4: 0 + 5.1: 0 + 6.1: 2 + 6.2: 2 + 7: 2 + 7.1: 2 + 8: 0 + 9.1: 0 + 11: 2 +_ZN9oceanbase6common13ObSEArrayImplINS_11transaction9tablelock13ObTableLockOpELl10ENS2_24TransModulePageAllocatorELb0EE7destroyEv:268:4 + 1: 4 + 4.1: 4 + 4.3: 0 + 9: 4 + 11: 0 + 13: 4 + 15: 4 + 24: 4 + 25: 4 + 5: _ZN9oceanbase11transaction9tablelock13ObTableLockOpD2Ev:0 + 0: _ZN9oceanbase11transaction9ObTransIDD2Ev:0 + 0: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction9tablelock13ObTableLockOpELl10ENS2_24TransModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: 0 +_ZZN9oceanbase5share6schema19ObSchemaGetterGuard20get_from_local_cacheINS1_19ObSysVariableSchemaEEEiNS1_12ObSchemaTypeEmmRPKT_ENKUlPKcE1_clESB_:264:3 + 0: 3 + 0.1: 0 + 0.2: 3 + 0.3: 3 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:3 + 0.4: 0 + 0.12: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:51 + 2: 3 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.1: _ZN9oceanbase6common7ObLogKVIiLb0EEC2EPKcRKi:0 + 0: 0 + 0.5: _ZN9oceanbase6common7ObLogKVIPKcLb1EEC2ES3_OKS3_:0 + 0: 0 + 0.7: _ZN9oceanbase6common7ObLogKVIRKNS_5share6schema12ObSchemaTypeELb0EEC2EPKcS6_:0 + 0: 0 + 0.9: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 + 0.11: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 +_ZZN9oceanbase5share6schema19ObSchemaGetterGuard20get_from_local_cacheINS1_14ObTenantSchemaEEEiNS1_12ObSchemaTypeEmmRPKT_ENKUlPKcE1_clESB_:264:3 + 0: 3 + 0.1: 0 + 0.2: 3 + 0.3: 3 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:3 + 0.4: 0 + 0.12: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:51 + 2: 3 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.1: _ZN9oceanbase6common7ObLogKVIiLb0EEC2EPKcRKi:0 + 0: 0 + 0.5: _ZN9oceanbase6common7ObLogKVIPKcLb1EEC2ES3_OKS3_:0 + 0: 0 + 0.7: _ZN9oceanbase6common7ObLogKVIRKNS_5share6schema12ObSchemaTypeELb0EEC2EPKcS6_:0 + 0: 0 + 0.9: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 + 0.11: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 +_ZZN9oceanbase4palf11LogIOWorker15reduce_io_task_EPvENK5$_772clEPKc.1598dc2348996c1ae1caea6120522988:264:4 + 0: 4 + 0.1: 0 + 0.2: 4 + 0.3: 4 _ZN9oceanbase6common8ObLogger13need_to_printEmi:4 + 0.9: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:68 + 2: 4 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.7: _ZN9oceanbase6common20ObLogPrintPointerCntIPNS_4palf11LogIOWorkerEEC2ES4_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVINS0_20ObLogPrintPointerCntIPNS_4palf11LogIOWorkerEEELb1EEC2EPKcOKS6_:0 + 0: 0 +_ZN9oceanbase7storage14ObLSWRSHandler29generate_weak_read_timestamp_ERNS0_4ObLSElRl:264:1 + 1: 1 + 2: 1 + 3: 1 + 4: 1 + 8.1: 0 + 11.1: 0 + 11.2: 0 + 11.3: 0 + 11.6: 0 + 12.1: 0 + 15.1: 0 + 17.3: 0 + 17.4: 1 + 22.1: 0 + 22.2: 0 + 22.3: 0 + 22.6: 0 + 23.1: 0 + 26.1: 0 + 29.1: 1 + 30: 1 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:1 + 30.1: 3 + 30.2: 0 + 31: 3 + 31.2: 0 + 31.3: 0 + 31.4: 0 + 32.1: 3 _ZZN9oceanbase7storage14ObLSWRSHandler29generate_weak_read_timestamp_ERNS0_4ObLSElRlENK5$_192clEPKc.d95568170f20f515ba23d039c2565689:3 + 34.1: 2 _ZN9oceanbase11transaction20ObKeepAliveLSHandler15print_stat_infoEv:2 + 38: 2 + 39.9: 2 + 5: _ZNK9oceanbase7storage4ObLS9get_ls_idEv:11 + 0: _ZN9oceanbase5share6ObLSIDC2ERKS1_:11 + 0: 1 + 8: _ZN9oceanbase7storage4ObLS25get_max_decided_log_ts_nsIJRlEEEiDpOT_:12 + 0: 1 + 0.1: 1 _ZN9oceanbase10logservice12ObLogHandler25get_max_decided_log_ts_nsERl:1 + 11: _ZN9oceanbase6common14ObTscTimestamp12get_instanceEv:0 + 2: 0 + 2.1: 0 + 2.3: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common14ObTscTimestampC2Ev:0 + 1: 0 + 17.2: _ZN9oceanbase7storage13ObLSTxService17get_trans_serviceEv:0 + 0: 0 + 22: _ZN9oceanbase6common14ObTscTimestamp12get_instanceEv:0 + 2: 0 + 2.1: 0 + 2.3: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common14ObTscTimestampC2Ev:0 + 1: 0 + 29: _ZSt3minIlERKT_S2_S2_:11 + 5: 1 + 31.1: _ZN9oceanbase6common14ObTscTimestamp12get_instanceEv:0 + 2: 0 + 2.1: 0 + 2.3: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common14ObTscTimestampC2Ev:0 + 1: 0 + 34: _ZN9oceanbase7storage4ObLS25get_keep_alive_ls_handlerEv:14 + 0: 2 +_ZN9oceanbase4palf10PalfHandle23unregister_file_size_cbEv:264:5 + 1: 5 + 2: 5 + 3: 5 + 4: 5 + 5.1: 5 _ZZN9oceanbase4palf10PalfHandle23unregister_file_size_cbEvENK5$_765clEPKc.0e4bf25207570af14a78557c8489c4fc:5 + 6.1: 0 + 7.1: 0 + 9.1: 0 + 9.2: 0 + 9.5: 0 + 10: 0 + 12: 4 + 13: 4 +_ZN9oceanbase3sql12ObMaterialOp7destroyEv:264:2 + 1: 2 + 2: 2 _ZN9oceanbase3sql20ObSqlMemMgrProcessor31unregister_profile_if_necessaryEv:2 + 4: 2 _ZN9oceanbase3sql17ObChunkDatumStore5resetEv:2 + 7: 1 + 3: _ZN9oceanbase3sql17ObChunkDatumStore8Iterator5resetEv:86 + 0: 2 + 0.1: 2 _ZN9oceanbase3sql17ObChunkDatumStore13ChunkIterator5resetEv:2 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator5resetEv:56 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator12reset_cursorEv:56 + 3: 2 + 5: _ZN9oceanbase3sql12ObMaterialOp19destroy_mem_contextEv:121 + 2: 2 + 2: _ZN9oceanbase3libneEDnRKNS0_13MemoryContextE:20 + 1: 2 + 1: _ZNK9oceanbase3lib13MemoryContext11ref_contextEv:14 + 1: 2 + 3: _ZN9oceanbase3lib17__MemoryContext__15destory_contextERNS0_13MemoryContextE:52 + 3: 0 + 4: 0 + 5: 2 + 6: 2 _ZN9oceanbase3lib17__MemoryContext__15destory_contextEPS1_:2 + 2: _ZNK9oceanbase3lib13MemoryContext16check_magic_codeEv:14 + 0: 2 + 2.1: _ZL12abort_unlessb:4 + 5: 2 + 6: 0 + 5: _ZL12abort_unlessb:4 + 5: 2 + 6: 0 + 4: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:25 + 2: 1 + 8: 1 +_ZN9oceanbase6common16ObFixedArrayImplINS_3sql15ObTableRowCountENS0_12ObIAllocatorEE7reserveEl:261:3 + 1: 3 + 2: 3 + 3: 3 + 4: 0 + 5.1: 0 + 5.5: 0 + 5.9: 0 + 6.1: 3 + 7: 3 _ZN9oceanbase6common16ObFixedArrayImplINS_3sql15ObTableRowCountENS0_12ObIAllocatorEE4initEl:3 + 8.1: 0 + 8.5: 0 + 8.9: 0 + 11: 0 + 11.1: 3 + 12: 0 + 13.1: 0 + 13.5: 0 + 13.11: 0 + 17: 3 + 5.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 5.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 8.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 8.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 13.6: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 13.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 13.10: _ZN9oceanbase6common7ObLogKVIRKjLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:260:4 + 1: 4 + 3: 4 _ZN9oceanbase3lib17ObMallocAllocator12get_instanceEv:4 + 4: 4 + 5: 4 _ZN9oceanbase3lib17ObMallocAllocator5allocElRKNS0_9ObMemAttrE:4 + 6: 4 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 18: 4 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 9: _ZSt3maxIlERKT_S2_S2_:0 + 5: 0 +_ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImPNS_2pl16ObPLPackageStateEEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEED2Ev:260:5 + 1: 5 + 2.1: 0 + 3: 4 + 2: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImPNS_2pl16ObPLPackageStateEEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEE5clearEv:95 + 2: 5 + 3.1: 5 + 4: 0 + 5: 0 + 6.1: 0 + 15: 4 + 10: _ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocator4freeEPv:0 + 3: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase6common13ObLinkHashMapINS_11transaction9ObTransIDENS_7storage8ObTxDataENS4_24TxDataHashMapAllocHandleENS0_9RefHandleELl8EE3getERKS3_RPS5_:256:2 + 1: 2 + 3: 2 + 4: 2 _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9ObTransIDENS_7storage8ObTxDataENS4_24TxDataHashMapAllocHandleENS0_9RefHandleELl8EE18get_retire_stationEv:2 + 5.1: 2 _ZN9oceanbase6common6DCHashINS_11transaction9ObTransIDELl8EE3getERKS3_RPNS0_11KeyHashNodeIS3_EE:2 + 5.2: 1 + 8: 0 + 12: 0 + 16.2: 1 + 4.1: _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9ObTransIDENS_7storage8ObTxDataENS4_24TxDataHashMapAllocHandleENS0_9RefHandleELl8EE5GuardC2ERNS0_13RetireStationE:56 + 0: _ZN9oceanbase6common9RefHandleC2ERNS0_13RetireStationE:34 + 0: _ZN9oceanbase6common13BaseRefHandleC2ERNS0_13RetireStationE:34 + 0: _ZN9oceanbase6common17get_global_qclockEv:34 + 2: 2 + 2.1: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common6QClockC2Ev:0 + 0: 0 + 0.1: _ZN9oceanbase6common6QClock9ClockSlotC2Ev:0 + 0: 0 + 0.4: _ZN9oceanbase6common13BaseRefHandle14enter_criticalEv:22 + 0: 2 _ZN9oceanbase6common6QClock14enter_criticalEv:2 + 9: _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9ObTransIDENS_7storage8ObTxDataENS4_24TxDataHashMapAllocHandleENS0_9RefHandleELl8EE11try_inc_refEPNS0_12LinkHashNodeIS3_EE:0 + 6.1: 0 + 4: _ZN9oceanbase6common9RefHandle3incEPNS0_7RefNodeE:0 + 0: _ZN9oceanbase6common15faa_if_positiveEPii:0 + 2: 0 + 4.1: 0 + 4.2: 0 + 4.3: 0 + 6.1: _ZN9oceanbase6common15is_last_bit_setEm:0 + 2: 0 + 7: _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9ObTransIDENS_7storage8ObTxDataENS4_24TxDataHashMapAllocHandleENS0_9RefHandleELl8EE8dec_urefEPNS0_12LinkHashNodeIS3_EE:0 + 3: 0 + 3: _ZN9oceanbase6common9RefHandle3decEPNS0_7RefNodeE:0 + 0: 0 + 4: _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9ObTransIDENS_7storage8ObTxDataENS4_24TxDataHashMapAllocHandleENS0_9RefHandleELl8EE13on_uref_cleanEPNS0_12LinkHashNodeIS3_EE:0 + 4: _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9ObTransIDENS_7storage8ObTxDataENS4_24TxDataHashMapAllocHandleENS0_9RefHandleELl8EE8dec_hrefEPNS0_12LinkHashNodeIS3_EE:0 + 3: 0 + 4: 0 + 3: _ZN9oceanbase6common7RefNode5xhrefEi:0 + 0: 0 + 16.2: _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9ObTransIDENS_7storage8ObTxDataENS4_24TxDataHashMapAllocHandleENS0_9RefHandleELl8EE5GuardD2Ev:35 + 0: _ZN9oceanbase6common13BaseRefHandle14leave_criticalEv:35 + 0: _ZN9oceanbase6common6QClock14leave_criticalEm:35 + 1: 1 + 2: _ZN9oceanbase6common6QClock6locateEm:14 + 0: 1 + 2.1: _ZN9oceanbase6common6QClock9ClockSlot11clear_clockEv:15 + 0: 1 + 16.3: _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9ObTransIDENS_7storage8ObTxDataENS4_24TxDataHashMapAllocHandleENS0_9RefHandleELl8EE5GuardD2Ev:0 + 0: _ZN9oceanbase6common13BaseRefHandle14leave_criticalEv:0 + 0: _ZN9oceanbase6common6QClock14leave_criticalEm:0 + 1: 0 + 2: _ZN9oceanbase6common6QClock6locateEm:0 + 0: 0 + 2.1: _ZN9oceanbase6common6QClock9ClockSlot11clear_clockEv:0 + 0: 0 +_ZN9oceanbase6common16ObCommonSqlProxy4readERNS0_12ObISQLClient10ReadResultEmPKc:255:0 + 1: 0 + 2: 0 + 3: 0 + 4: 3 + 5.1: 0 + 6.1: 3 _ZN9oceanbase6common16ObCommonSqlProxy4readEPNS0_9sqlclient16ObISQLConnectionERNS0_12ObISQLClient10ReadResultEmPKc:3 + 7.1: 0 + 9: 2 + 10: 1 + 4: _ZN9oceanbase6common16ObCommonSqlProxy7acquireEmRPNS0_9sqlclient16ObISQLConnectionE:72 + 2: 0 + 3: 0 + 4: 0 + 5.1: 0 + 6.1: 3 + 7.1: 0 + 8.1: 3 + 9: 0 + 10.1: 0 + 12: 0 + 3: _ZNK9oceanbase6common16ObCommonSqlProxy9is_initedEv:0 + 0: 0 + 9: _ZN9oceanbase6common16ObCommonSqlProxy5closeEPNS0_9sqlclient16ObISQLConnectionEi:69 + 2: 2 + 3: 2 + 4: 2 _ZN9oceanbase8observer24ObInnerSQLConnectionPool7releaseEPNS_6common9sqlclient16ObISQLConnectionEbj:2 + 5: 1 + 6.1: 0 +_ZN9oceanbase3sql16ObPlanCacheValue24check_dep_schema_versionERKNS_6common8ObIArrayINS0_12PCVSchemaObjEEERKNS3_IPS4_EERb:254:2 + 3: 2 + 4: 2 + 5: 2 + 8: 2 + 9: 0 + 10.1: 0 + 12.1: 3 + 13: 2 + 15: 2 + 16: 0 + 17.1: 0 + 18: 0 + 18.1: 2 _ZNK9oceanbase3sql12PCVSchemaObjeqERKS1_:2 + 23: 0 + 28: 3 + 6: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql12PCVSchemaObjEE5countEv:8 + 0: 2 + 13: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql12PCVSchemaObjEE2atEl:10 + 6: 2 + 14: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql12PCVSchemaObjEE2atEl:8 + 6: 2 +_ZSt16__insertion_sortIPN9oceanbase4palf3LSNEN9__gnu_cxx5__ops15_Iter_comp_iterINS1_10LSNCompareEEEEvT_S9_T0_:253:11 + 2: 11 + 3: 11 + 5.1: 11 + 7: 0 + 18.3: 11 + 7: _ZN9__gnu_cxx5__ops15_Iter_comp_iterIN9oceanbase4palf10LSNCompareEEclIPNS3_3LSNES8_EEbT_T0_:0 + 1: _ZN9oceanbase4palf10LSNCompareclERKNS0_3LSNES4_:0 + 2: _ZNK9oceanbase4palf3LSNgtERKS1_:0 + 2: _ZNK9oceanbase4palf3LSNltERKS1_:0 + 2: 0 + 11: _ZSt13move_backwardIPN9oceanbase4palf3LSNES3_ET0_T_S5_S4_:0 + 10.1: _ZSt23__copy_move_backward_a2ILb1EPN9oceanbase4palf3LSNES3_ET1_T0_S5_S4_:0 + 2: _ZSt22__copy_move_backward_aILb1EPN9oceanbase4palf3LSNES3_ET1_T0_S5_S4_:0 + 10: _ZNSt20__copy_move_backwardILb1ELb0ESt26random_access_iterator_tagE13__copy_move_bIPN9oceanbase4palf3LSNES6_EET0_T_S8_S7_:0 + 3: 0 + 3.1: 0 + 4.1: _ZN9oceanbase4palf3LSNaSERKS1_:0 + 2: 0 + 15.1: _ZSt25__unguarded_linear_insertIPN9oceanbase4palf3LSNEN9__gnu_cxx5__ops14_Val_comp_iterINS1_10LSNCompareEEEEvT_T0_:0 + 7.2: 0 + 7.1: _ZN9__gnu_cxx5__ops14_Val_comp_iterIN9oceanbase4palf10LSNCompareEEclINS3_3LSNEPS7_EEbRT_T0_:0 + 1: _ZN9oceanbase4palf10LSNCompareclERKNS0_3LSNES4_:0 + 2: _ZNK9oceanbase4palf3LSNgtERKS1_:0 + 2: _ZNK9oceanbase4palf3LSNltERKS1_:0 + 2: 0 + 507.1: 0 + 9.1: _ZN9oceanbase4palf3LSNaSERKS1_:0 + 2: 0 +_ZN9oceanbase6common4hash9do_createIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringElEENS1_5NLockENS1_5NCondEEENS0_8ObMallocEEEiRT_lllNS1_16NormalPointerTagERT0_:253:4 + 2: 3 + 5: 3 + 7.1: 3 _ZN9oceanbase6common8ObMalloc5allocEl:4 + 8.1: 0 + 12: 2 + 14: 3 +_ZN9oceanbase4palf11PalfEnvImpl24try_switch_state_for_allEv:253:3 + 1: 3 + 2: 3 + 4: 3 + 5: 0 + 6.1: 0 + 7.1: 3 + 7.2: 7 + 8.1: 0 + 10: 7 + 11.3: 7 + 7.1: _ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE8for_eachINS2_11PalfEnvImpl18SwitchStateFunctorEEEiRT_:36 + 3: 3 _ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE3mapINS7_8HandleOnINS2_11PalfEnvImpl18SwitchStateFunctorEEEEEiRT_:3 + 2: _ZN9oceanbase6common13ObLinkHashMapINS_4palf5LSKeyENS2_14PalfHandleImplENS2_19PalfHandleImplAllocENS0_9RefHandleELl8EE8HandleOnINS2_11PalfEnvImpl18SwitchStateFunctorEEC2ERS7_RSA_:33 + 0: 3 +_ZN9oceanbase10compaction22ObPartitionMergePolicy21deal_hist_minor_mergeERKNS_7storage8ObTabletERl:252:2 + 3: 2 + 4: 2 + 6: 2 _ZN9oceanbase10compaction22ObPartitionMergePolicy30cal_hist_minor_merge_thresholdEv:2 + 7: 2 + 9: 2 + 11: 2 + 12: 0 + 13.1: 0 + 14.1: 2 + 15: 2 + 16.1: 0 + 17: 0 + 18.1: 0 + 19.1: 0 + 19.2: 0 + 21: 0 + 23: 0 + 24.1: 0 + 29: 0 + 29.1: 0 + 29.2: 0 + 32.1: 0 + 33.2: 0 + 35: 0 + 36.1: 0 + 39: 0 + 40: 0 + 41: 0 + 41.1: 0 + 42.1: 0 + 46.1: 0 + 46.5: 0 + 47.1: 0 + 48: 0 + 49.1: 0 + 50.1: 0 + 50.2: 0 + 51: 0 + 57: 0 + 58: 0 + 59: 0 + 61: 0 + 66: 0 + 66.1: 0 + 67: 2 + 5: _ZNK9oceanbase7storage8ObTablet15get_table_storeEv:14 + 0: 2 + 11: _ZNK9oceanbase7storage18ObTabletTableStore8is_validEv:74 + 2: 2 + 3: 2 + 3: _ZNK9oceanbase7storage18ObTabletTableStore15get_table_countEv:34 + 0: 2 + 0.1: _ZNK9oceanbase7storage13ObITableArray5countEv:28 + 0: 2 + 16.1: _ZN9oceanbase5share11ObTenantEnv3mtlIPNS_7storage21ObTenantFreezeInfoMgrEEET_v:0 + 2: 0 + 2.1: _ZN9oceanbase5share12ObTenantBase3getIPNS_7storage21ObTenantFreezeInfoMgrEEET_v:0 + 0: _ZN9oceanbase5share12ObTenantBase9inner_getENS1_8IdentityIPNS_7storage21ObTenantFreezeInfoMgrEEE:0 + 0: 0 + 19.1: _ZNK9oceanbase7storage18ObTabletTableStore18get_major_sstablesEv:0 + 0: 0 + 28: _ZN9oceanbase6common9ObSEArrayINS_7storage21ObTenantFreezeInfoMgr10FreezeInfoELl8ENS0_19ModulePageAllocatorELb0EEC2Ev:0 + 0.1: 0 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_7storage21ObTenantFreezeInfoMgr10FreezeInfoELl8ENS0_19ModulePageAllocatorELb0EEC2ElRKS5_:0 + 2: 0 + 5: 0 + 6: 0 + 8: 0 + 17.1: 0 + 2: _ZN9oceanbase6common8ObIArrayINS_7storage21ObTenantFreezeInfoMgr10FreezeInfoEEC2EPS4_l:0 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_7storage21ObTenantFreezeInfoMgr10FreezeInfoEEC2EPS4_l:0 + 0: 0 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:0 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:0 + 2: 0 + 8: 0 + 47: _ZNK9oceanbase7storage13ObITableArrayixEl:0 + 0: 0 + 0.2: 0 +_ZN9oceanbase4palf10PalfHandle21unregister_rebuild_cbEv:250:3 + 1: 3 + 2: 3 + 3: 3 + 4: 3 + 5.1: 3 _ZZN9oceanbase4palf10PalfHandle21unregister_rebuild_cbEvENK5$_775clEPKc.0e4bf25207570af14a78557c8489c4fc:3 + 6.1: 0 + 7.1: 0 + 9.1: 0 + 9.2: 0 + 10: 0 + 11.1: 0 + 13: 4 + 14: 4 + 6.1: _ZN9oceanbase4palf14PalfHandleImpl21unregister_rebuild_cbEPNS0_17PalfRebuildCbNodeE:0 + 3: 0 + 6: 0 + 7.1: 0 + 9.5: _ZN9oceanbase5share8mtl_freeEPv:0 + 2: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase6common11ObArrayImplINS_5share19ObLSPrimaryZoneInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE10extend_bufEl:248:2 + 1: 2 + 2: 2 + 4: 2 + 5: 2 + 6: 2 + 8.1: 0 + 8.2: 0 + 8.3: 0 + 8.5: 0 + 9: 0 + 10.1: 0 + 15.1: 0 + 15.3: 0 + 16: 0 + 18: 0 + 19: 0 + 22.1: 0 + 23: 0 + 35: 2 + 36: 2 + 37: 2 + 40.1: 0 + 41: 0 + 43: 2 + 4: _ZN9oceanbase6common19ModulePageAllocator5allocEl:80 + 2: 2 + 3: 2 _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:2 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:32 + 5: 2 + 7: 2 + 8: 2 + 9: _ZN9oceanbase6common16construct_assignINS_5share19ObLSPrimaryZoneInfoEEEiRT_RKS4_:0 + 2: _ZN9oceanbase6common21construct_assign_wrapINS_5share19ObLSPrimaryZoneInfoEEEiRT_RKS4_NS0_8BoolTypeILb1EEE:0 + 3: 0 + 2: _ZN9oceanbase5share19ObLSPrimaryZoneInfoC2Ev:0 + 0: 0 + 1: 0 + 1.2: 0 + 1: _ZN9oceanbase5share6ObLSIDC2Ev:0 + 0: 0 + 1.1: _ZN9oceanbase3lib7ObLabelC2IA10_cEERKT_:0 + 2: _ZN9oceanbase3lib7ObLabelaSILm10EEERS1_RAT__Kc:0 + 4: 0 + 1.6: _ZN9oceanbase5share6ObLSIDD2Ev:0 + 0: _ZN9oceanbase5share6ObLSID5resetEv:0 + 0: 0 + 1.8: _ZN9oceanbase6common19ObFixedLengthStringILl128EEC2Ev:0 + 3: 0 + 19: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 25: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase3sql18ObBasicSessionInfo20try_lock_thread_dataEv:248:2 + 0: 2 + 0: _ZN9oceanbase6common16ObRecursiveMutex7trylockEv:180 + 2: 2 + 3: 2 + 6: 2 _ZN9oceanbase6common7ObLatch10try_wrlockEjPKj:2 + 8.1: 0 + 14: 2 + 3: _ZNK9oceanbase6common7ObLatch14is_wrlocked_byEPKj:104 + 3: 2 + 4: 2 + 2.1: _Z9ob_gettidv:90 + 3: 2 + 4: 0 + 2: _Z13get_tid_cachev:42 + 7: 2 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 +_ZN9oceanbase3sql18ObBasicSessionInfo19update_sys_variableENS_5share17ObSysVarClassTypeERKNS_6common8ObStringE:248:3 + 1: 3 + 4: 3 _ZN9oceanbase6common9ObCharset20get_system_collationEv:3 + 5: 5 _ZN9oceanbase3sql18ObBasicSessionInfo19update_sys_variableENS_5share17ObSysVarClassTypeERKNS_6common5ObObjE:5 + 2: _ZN9oceanbase6common5ObObjC2Ev:12 + 0: _ZN9oceanbase6common9ObObjMetaC2Ev:12 + 4: 3 + 3: _ZN9oceanbase6common5ObObj11set_varcharERKNS0_8ObStringE:57 + 4: 3 + 5: 3 + 2: _ZN9oceanbase6common9ObObjMeta11set_varcharEv:15 + 0: 3 + 4: _ZNK9oceanbase6common8ObString3ptrEv:12 + 0: 3 + 5: _ZNK9oceanbase6common8ObString6lengthEv:9 + 0: 3 + 4.1: _ZN9oceanbase6common5ObObj18set_collation_typeERKNS0_15ObCollationTypeE:12 + 0: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:12 + 0: 4 +_ZNK9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS_3sql9ObPsCacheEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE18foreach_refactoredINS4_18ObPlanCacheManager18ObGetAllCacheKeyOpEEEiRT_:247:0 + 1: 0 + 2: 0 + 5: 0 + 5.1: 0 + 6.1: 0 + 7: 0 + 9.1: 2 + 9.2: 2 + 9.3: 2 + 9.5: 2 + 10: 2 + 13: 3 + 14.1: 3 + 14.3: 3 + 16: 0 + 16.1: 0 + 17.1: 0 + 19: 0 + 22.1: 0 + 24: 0 + 5: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImPNS_3sql9ObPsCacheEEENS0_7ObLatchENS1_5NCondEEEEEbRKT_:0 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImPNS_3sql9ObPsCacheEEENS0_7ObLatchENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:0 + 2: 0 + 12: _ZN9oceanbase6common4hash16ObBucketLockCondINS1_11HashMapPairImPNS_3sql9ObPsCacheEEENS1_24LatchReadWriteDefendModeEE4lockEv:22 + 2: 2 + 12.1: _ZN9oceanbase6common4hash15LatchReadLockerC2ERNS0_7ObLatchE:107 + 0: 2 + 3: 3 _ZN9oceanbase6common7ObLatch6rdlockEjl:2 + 4.1: 0 + 6: 3 + 7: 3 + 15: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_11HashMapPairImPNS_3sql9ObPsCacheEEEE16check_magic_codeEv:0 + 0: 0 + 15.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 22: _ZN9oceanbase6common4hash15LatchReadLockerD2Ev:36 + 2: 3 + 3: 3 _ZN9oceanbase6common7ObLatch6unlockEPKj:3 + 3.1: 0 +_ZN9oceanbase6common6DCHashINS_11transaction9tablelock8ObLockIDELl8EE6Handle6retireEil:247:1 + 0: 1 + 1: 1 + 2: 1 + 4: 1 + 6: 1 + 7: 0 + 9: 0 + 10: 0 + 12: 1 + 2: _ZN9oceanbase6common6DCHashINS_11transaction9tablelock8ObLockIDELl8EE17change_node_countEl:99 + 1: 1 + 4: 1 + 5: 1 + 6: 1 + 8: 1 + 10: 0 + 11.1: 0 + 2: _ZN9oceanbase6common15ObSimpleCounter3incEl:8 + 0: 1 + 3: _ZNK9oceanbase6common15ObSimpleCounter5valueEv:7 + 0: 1 + 4: _ZSt3maxIlERKT_S2_S2_:10 + 5: 1 + 5: _ZSt3minIlERKT_S2_S2_:10 + 5: 1 + 10: _ZN9oceanbase6common6DCHashINS_11transaction9tablelock8ObLockIDELl8EE6next2nEm:0 + 2: 0 + 4: _ZN9oceanbase6common6DCHashINS_11transaction9tablelock8ObLockIDELl8EE15do_pending_taskEPNS0_7DCArrayE:42 + 2: 1 + 5: 1 + 5.1: 0 + 6: 1 + 7: 0 + 8: 0 + 10: 0 + 11: 0 + 3: _ZN9oceanbase6common7DCArray20copy_from_prev_arrayEPNS0_8HashNodeEl:13 + 4: 1 + 5: 0 + 5.1: 0 + 6: 0 + 6.1: 0 + 7.1: 0 + 7.3: 0 + 8: 0 + 10: 0 + 6.1: _ZN9oceanbase6common7DCArray17is_parent_retiredEv:0 + 0: 0 + 7: _ZN9oceanbase6common10ObSpinLock7trylockEv:0 + 2: 0 + 14: _ZN9oceanbase6common10ObSpinLock6unlockEv:0 + 2: 0 + 5: _ZN9oceanbase6common6DCHashINS_11transaction9tablelock8ObLockIDELl8EE6Handle11release_refEv:48 + 0: 1 + 0: _ZN9oceanbase6common7ObQSync11release_refEl:36 + 2: 1 + 3: 1 + 4.1: 0 + 2: _ZN9oceanbase6common7ObQSync7add_refEll:27 + 3: 1 + 6: 1 + 7: _ZN9oceanbase6common7ObQSync4syncEv:0 + 2.1: 0 + 2.3: 0 + 5.1: 0 + 8: _ZN9oceanbase6common7DCArray13retire_parentEv:0 + 0: 0 + 9: _ZN9oceanbase6common7ObQSync4syncEv:0 + 2.1: 0 + 2.3: 0 + 5.1: 0 +_ZN9oceanbase3lib17ObMallocAllocator27with_resource_handle_invokeEmSt8functionIFiPNS0_17ObTenantMemoryMgrEEE:247:3 + 1: 3 + 2: 3 + 3: 3 _ZN9oceanbase3lib25ObTenantResourceMgrHandleC1Ev:3 + 4: 3 _ZN9oceanbase3lib13ObResourceMgr12get_instanceEv:3 + 4.1: 2 _ZN9oceanbase3lib13ObResourceMgr23get_tenant_resource_mgrEmRNS0_25ObTenantResourceMgrHandleE:2 + 4.2: 1 + 6.1: 0 + 7.1: 1 _ZNK9oceanbase3lib25ObTenantResourceMgrHandle8is_validEv:1 + 7.2: 2 + 8: 0 + 9.1: 0 + 11: 2 _ZN9oceanbase3lib25ObTenantResourceMgrHandle14get_memory_mgrEv:2 + 11.2: 2 + 13: 2 + 14.3: 3 _ZN9oceanbase3lib25ObTenantResourceMgrHandleD1Ev:2 + 14.4: 0 + 11.1: _ZNKSt8functionIFiPN9oceanbase3lib17ObTenantMemoryMgrEEEclES3_:30 + 2: 2 + 3: 0 + 4.1: 2 _ZNSt17_Function_handlerIFiPN9oceanbase3lib17ObTenantMemoryMgrEEZNS1_17ObMallocAllocator17get_tenant_remainEmE4$_46E9_M_invokeERKSt9_Any_dataOS3_.a1b49044713ee2b295a5be406ce610bf:2 + 2: _ZNKSt14_Function_base8_M_emptyEv:10 + 0: 2 +_ZNK9oceanbase7storage8ObLSMeta19get_serialize_size_Ev:246:1 + 0: 1 + 0.4: 1 _ZN9oceanbase6common13serialization14encoded_lengthEl:1 + 0.6: 1 _ZN9oceanbase6common13serialization14encoded_lengthEl:1 + 0.9: 1 _ZN9oceanbase6common13serialization14encoded_lengthEl:1 + 0.11: 0 + 0.12: 0 + 0: _ZN9oceanbase6common13serialization14encoded_lengthEm:4 + 2: 1 _ZN9oceanbase6common13serialization19encoded_length_vi64El:1 + 0.1: _ZN9oceanbase6common13serialization14encoded_lengthINS_5share6ObLSIDEEElRKT_:5 + 2: _ZN9oceanbase6common13serialization11EnumEncoderILb0ENS_5share6ObLSIDEE14encoded_lengthERKS4_:5 + 2: 1 _ZNK9oceanbase5share6ObLSID18get_serialize_sizeEv:1 + 0.2: _ZN9oceanbase6common13serialization14encoded_lengthINS0_13ObReplicaTypeEEElRKT_:23 + 2: _ZN9oceanbase6common13serialization11EnumEncoderILb1ENS0_13ObReplicaTypeEE14encoded_lengthERKS3_:23 + 2: 1 + 2: _ZN9oceanbase6common13serialization19encoded_length_vi32Ei:11 + 4: 1 + 6.1: 0 + 8.1: 0 + 10.1: 0 + 0.3: _ZN9oceanbase6common13serialization14encoded_lengthINS_7storage15ObInnerLSStatusEEElRKT_:13 + 2: _ZN9oceanbase6common13serialization11EnumEncoderILb1ENS_7storage15ObInnerLSStatusEE14encoded_lengthERKS4_:13 + 2: 1 + 2: _ZN9oceanbase6common13serialization19encoded_length_vi32Ei:6 + 4: 1 + 6.1: 0 + 8.1: 0 + 10.1: 0 + 0.5: _ZN9oceanbase6common13serialization14encoded_lengthINS_4palf3LSNEEElRKT_:5 + 2: _ZN9oceanbase6common13serialization11EnumEncoderILb0ENS_4palf3LSNEE14encoded_lengthERKS4_:5 + 2: 1 _ZNK9oceanbase4palf3LSN18get_serialize_sizeEv:1 + 0.7: _ZN9oceanbase6common13serialization14encoded_lengthINS_7storage17ObMigrationStatusEEElRKT_:23 + 2: _ZN9oceanbase6common13serialization11EnumEncoderILb1ENS_7storage17ObMigrationStatusEE14encoded_lengthERKS4_:23 + 2: 1 + 2: _ZN9oceanbase6common13serialization19encoded_length_vi32Ei:11 + 4: 1 + 6.1: 0 + 8.1: 0 + 10.1: 0 + 0.8: _ZN9oceanbase6common13serialization14encoded_lengthINS_10logservice9LSGCStateEEElRKT_:13 + 2: _ZN9oceanbase6common13serialization11EnumEncoderILb1ENS_10logservice9LSGCStateEE14encoded_lengthERKS4_:13 + 2: 1 + 2: _ZN9oceanbase6common13serialization19encoded_length_vi32Ei:6 + 4: 1 + 6.1: 0 + 8.1: 0 + 10.1: 0 + 0.10: _ZN9oceanbase6common13serialization14encoded_lengthINS_5share17ObLSRestoreStatusEEElRKT_:0 + 2: _ZN9oceanbase6common13serialization11EnumEncoderILb0ENS_5share17ObLSRestoreStatusEE14encoded_lengthERKS4_:0 + 2: 0 + 0.13: _ZN9oceanbase6common13serialization14encoded_lengthINS_11transaction11ObAllIDMetaEEElRKT_:0 + 2: _ZN9oceanbase6common13serialization11EnumEncoderILb0ENS_11transaction11ObAllIDMetaEE14encoded_lengthERKS4_:0 + 2: 0 + 0.14: _ZN9oceanbase6common13serialization14encoded_lengthINS_7storage13ObLSSavedInfoEEElRKT_:4 + 2: _ZN9oceanbase6common13serialization11EnumEncoderILb0ENS_7storage13ObLSSavedInfoEE14encoded_lengthERKS4_:4 + 2: _ZNK9oceanbase7storage13ObLSSavedInfo18get_serialize_sizeEv:4 + 0: 1 + 0: _ZNK9oceanbase7storage13ObLSSavedInfo28get_serialize_size_dispatch_ESt17integral_constantIbLb0EE:0 + 0: 0 +_ZN9oceanbase8observer21ObInnerSQLReadContextC2ERNS0_20ObInnerSQLConnectionE:245:2 + 1.1: 2 + 1.2: 2 _ZN9oceanbase8observer29ObVirtualTableIteratorFactoryC1ERNS0_15ObVTIterCreatorE:2 + 1.3: 2 + 1.4: 2 _ZN9oceanbase8observer16ObInnerSQLResultC1ERNS_3sql16ObSQLSessionInfoE:2 + 2: 2 + 3: 3 + 3.3: 0 + 3.4: 0 + 1: _ZN9oceanbase8observer20ObInnerSQLConnection8RefGuardC2ERS1_:70 + 1: 2 + 3: _ZN9oceanbase8observer20ObInnerSQLConnection3refEv:62 + 2: 2 + 3.1: 0 + 5: 2 + 6: 2 + 7.1: 0 + 1.1: _ZNK9oceanbase8observer20ObInnerSQLConnection19get_vt_iter_creatorEv:14 + 0: 2 + 1.3: _ZN9oceanbase8observer20ObInnerSQLConnection11get_sessionEv:36 + 0: 2 +_ZN9oceanbase8observer21ObInnerSQLReadContextC1ERNS0_20ObInnerSQLConnectionE:245:2 + 1.1: 2 + 1.2: 2 _ZN9oceanbase8observer29ObVirtualTableIteratorFactoryC1ERNS0_15ObVTIterCreatorE:2 + 1.3: 2 + 1.4: 2 _ZN9oceanbase8observer16ObInnerSQLResultC1ERNS_3sql16ObSQLSessionInfoE:2 + 2: 2 + 3: 3 + 3.3: 0 + 3.4: 0 + 1: _ZN9oceanbase8observer20ObInnerSQLConnection8RefGuardC2ERS1_:70 + 1: 2 + 3: _ZN9oceanbase8observer20ObInnerSQLConnection3refEv:62 + 2: 2 + 3.1: 0 + 5: 2 + 6: 2 + 7.1: 0 + 1.1: _ZNK9oceanbase8observer20ObInnerSQLConnection19get_vt_iter_creatorEv:14 + 0: 2 + 1.3: _ZN9oceanbase8observer20ObInnerSQLConnection11get_sessionEv:36 + 0: 2 +_ZZN9oceanbase5share6schema19ObSchemaGetterGuard18get_schema_versionENS1_12ObSchemaTypeEmmRlENK5$_562clEPKc.bfa63f0f3456173f564c7cf65584fc48:243:3 + 0: 3 + 0.1: 0 + 0.2: 3 + 0.3: 3 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:3 + 0.4: 0 + 0.12: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:51 + 2: 3 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.1: _ZN9oceanbase6common7ObLogKVIiLb0EEC2EPKcRKi:0 + 0: 0 + 0.5: _ZN9oceanbase6common7ObLogKVIPKcLb1EEC2ES3_OKS3_:0 + 0: 0 + 0.7: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 + 0.9: _ZN9oceanbase6common7ObLogKVIRKNS_5share6schema25ObSimpleSysVariableSchemaELb0EEC2EPKcS6_:0 + 0: 0 + 0.10: _ZNK9oceanbase5share6schema11ObSchemaMgr18get_schema_versionEv:0 + 0: 0 + 0.11: _ZN9oceanbase6common7ObLogKVIlLb1EEC2EPKcOKl:0 + 0: 0 +_ZN9oceanbase6commonL13parse_versionEPKcPil.61d1885c38c5cddde571b3feb2b6fe43:242:0 + 1: 0 + 2: 0 + 3: 0 + 4: 0 + 7: 0 + 9: 0 + 12: 0 + 13.1: 0 + 15.1: 1 + 16.1: 0 + 19: 1 + 20.1: 3 + 20.2: 3 + 21: 4 + 22: 3 + 28: 0 + 29: 0 + 30.1: 0 + 31.1: 0 + 33: 0 + 36: 0 + 37.1: 0 + 37.2: 0 + 38: 0 + 39: 0 + 39.1: 0 + 40: 0 + 42: 0 + 42.1: 0 + 43: 0 + 44: 0 + 45.1: 0 + 48: 0 + 49: 0 + 52: 0 + 53.1: 0 + 53.2: 0 + 53.3: 0 + 53.4: 0 + 53.5: 0 + 58: 0 + 59.1: 0 + 67: 0 + 22: atoi:33 + 2: 3 +_ZNK9oceanbase5share6schema12ObOutlineMgr30get_outline_schema_with_sql_idEmmRKNS_6common8ObStringERPKNS1_21ObSimpleOutlineSchemaE:240:2 + 5: 2 + 6: 2 + 7: 2 + 12.1: 2 + 12.2: 2 + 15: 0 + 16.1: 0 + 18: 2 + 21: 2 _ZNK9oceanbase6common4hash16ObPointerHashMapINS_5share6schema25ObOutlineSqlIdHashWrapperEPNS4_21ObSimpleOutlineSchemaENS4_17ObGetOutlineKeyV3ELl8064ENS0_19ModulePageAllocatorEE14get_refactoredERKS5_RS7_:2 + 22: 2 + 23: 0 + 24: 0 + 25.1: 0 + 27: 0 + 32: 2 + 14: _ZNK9oceanbase6common8ObString5emptyEv:22 + 2: 2 + 2.1: 2 + 19: _ZN9oceanbase5share6schema25ObOutlineSqlIdHashWrapperC2EmmRKNS_6common8ObStringE:28 + 2: 2 +_ZN9oceanbase8memtable16ObTxCallbackListC2ERNS0_18ObTransCallbackMgrE:240:2 + 2: 2 + 7: 2 + 8: 2 _ZN9oceanbase6common7ObLatchC1Ev:2 + 9: 2 + 9.1: 1 + 1: _ZN9oceanbase8memtable16ObITransCallbackC2Ev:64 + 2: 2 + 3: 2 + 5: 2 + 3: _ZN9oceanbase6common15ObBatchChecksumC2Ev:44 + 0: 2 + 9: _ZN9oceanbase8memtable16ObTxCallbackList5resetEv:44 + 6: 1 + 8: 1 + 2: _ZN9oceanbase8memtable16ObITransCallback8set_prevEPS1_:7 + 0: 1 + 3: _ZN9oceanbase8memtable16ObITransCallback8set_nextEPS1_:7 + 0: 1 +_ZN9oceanbase8memtable16ObTxCallbackListC1ERNS0_18ObTransCallbackMgrE:240:2 + 2: 2 + 7: 2 + 8: 2 _ZN9oceanbase6common7ObLatchC1Ev:2 + 9: 2 + 9.1: 1 + 1: _ZN9oceanbase8memtable16ObITransCallbackC2Ev:64 + 2: 2 + 3: 2 + 5: 2 + 3: _ZN9oceanbase6common15ObBatchChecksumC2Ev:44 + 0: 2 + 9: _ZN9oceanbase8memtable16ObTxCallbackList5resetEv:44 + 6: 1 + 8: 1 + 2: _ZN9oceanbase8memtable16ObITransCallback8set_prevEPS1_:7 + 0: 1 + 3: _ZN9oceanbase8memtable16ObITransCallback8set_nextEPS1_:7 + 0: 1 +_ZN9oceanbase6common13ObSEArrayImplINS0_8ObStringELl16ENS0_19ModulePageAllocatorELb0EE7destroyEv:240:4 + 1: 4 + 9: 4 + 11: 0 + 13: 4 + 15: 4 + 24: 4 + 25: 4 + 10: _ZN9oceanbase6common13ObSEArrayImplINS0_8ObStringELl16ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: 0 +_ZN9oceanbase6common12ObBucketLock10unlock_allEv:240:0 + 1: 0 + 2: 0 + 3: 0 + 5: 0 + 6: 0 + 7.1: 0 + 9.2: 10 + 9.3: 10 + 9.5: 10 + 10: 11 _ZN9oceanbase6common7ObLatch6unlockEPKj:11 + 13: 0 + 15: 0 +_ZN9oceanbase5share6schema19ObSchemaGetterGuard4initEb:240:6 + 2: 5 + 3: 5 + 4: 5 + 5: 0 + 6.1: 0 + 8: 5 + 9: 5 + 11: 5 +_ZN9oceanbase6common11lower_alignEll:238:9 + 1: 7 + 3: 7 + 4: 7 + 5: 7 +_ZN9oceanbase5share24ObSysVarObCapabilityFlagC2Ev:236:2 + 0: 2 + 0: _ZN9oceanbase5share11ObIntSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:196 + 5: _ZN9oceanbase5share13ObBasicSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKS1_RKNS_6common5ObObjERSB_EPFiS4_S7_S9_SD_EPFiRNSA_12ObIAllocatorERKNS2_18ObBasicSessionInfoES9_SE_EPFiSK_SN_S9_RNSA_8ObStringEEPFNSA_9ObObjTypeEvEb:196 + 11: 2 + 13: 2 + 20: _ZN9oceanbase5share13ObBasicSysVar11clean_valueEv:138 + 2: _ZN9oceanbase5share13ObBasicSysVar16clean_base_valueEv:48 + 2: 2 + 3: _ZN9oceanbase6common5ObObj13set_nop_valueEv:32 + 2: _ZN9oceanbase6common5ObObj7set_extEl:32 + 4: 2 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:16 + 0: 2 + 3: _ZN9oceanbase5share13ObBasicSysVar15clean_inc_valueEv:42 + 2: _ZN9oceanbase6common5ObObj13set_nop_valueEv:42 + 2: _ZN9oceanbase6common5ObObj7set_extEl:42 + 4: 2 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:16 + 0: 2 + 4: _ZN9oceanbase6common5ObObj5resetEv:24 + 6: 2 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:8 + 0: 2 + 5: _ZN9oceanbase6common5ObObj5resetEv:24 + 6: 2 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:8 + 0: 2 +_ZNK9oceanbase5share11ObLSReplica8is_validEv:235:3 + 1: 3 + 2: 3 + 2.1: 3 + 3: 1 + 3.1: 3 + 4: 3 + 4.1: 3 + 5: 3 + 5.1: 3 + 6: 3 + 2: _ZNK9oceanbase5share6ObLSID20is_valid_with_tenantEm:83 + 5: 2 + 5.1: 1 + 4: _ZN9oceanbase6common14is_user_tenantEm:48 + 3: 3 + 2: _ZN9oceanbase6common13is_sys_tenantEm:4 + 2: 1 + 4.1: _ZNK9oceanbase5share6ObLSID8is_validEv:10 + 0: 2 + 5.2: _ZN9oceanbase6common14is_meta_tenantEm:11 + 3: 1 + 5.3: _ZNK9oceanbase5share6ObLSID9is_sys_lsEv:5 + 0: 1 + 6.1: _ZNK9oceanbase6common19ObFixedLengthStringILl128EE8is_emptyEv:30 + 2: 3 +_ZNK9oceanbase10logservice14ObReplayStatus15need_submit_logEv:235:2 + 1: 2 + 2: 2 + 3: 3 + 3.1: 0 + 4: 5 + 2: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEEC2ERS3_:63 + 1: 2 + 4: 3 + 5.1: 0 + 4: _ZN9oceanbase6common10ObSpinLock4lockEv:34 + 2: 2 _ZN9oceanbase6common12ObLatchMutex4lockEjl:2 + 4: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEED2Ev:68 + 2: 3 + 3: 3 + 3.1: 5 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase6common10ObSpinLock6unlockEv:3 + 2: 3 _ZN9oceanbase6common12ObLatchMutex6unlockEv:3 +_ZN9oceanbase5share18get_replica_statusEPKcRNS0_15ObReplicaStatusE:234:2 + 1: 2 + 2: 2 + 3: 2 + 4: 0 + 5.1: 0 + 7: 2 + 9: 8 + 10: 2 + 15: 0 + 16.1: 0 + 19: 2 +_ZZN9oceanbase4palf14LogGroupBuffer20inc_update_reuse_lsnERKNS0_3LSNEENK5$_621clEPKc.1598dc2348996c1ae1caea6120522988:232:4 + 0: 4 + 0.1: 0 + 0.2: 4 + 0.3: 4 _ZN9oceanbase6common8ObLogger13need_to_printEmi:4 + 0.7: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:68 + 2: 4 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKNS_4palf3LSNELb0EEC2EPKcS5_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS_4palf3LSNELb0EEC2EPKcS5_:0 + 0: 0 +_ZZN9oceanbase4palf10PalfHandle23unregister_file_size_cbEvENK5$_765clEPKc.0e4bf25207570af14a78557c8489c4fc:232:5 + 0: 4 + 0.1: 0 + 0.2: 4 + 0.3: 4 _ZN9oceanbase6common8ObLogger13need_to_printEmi:4 + 0.5: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:68 + 2: 4 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKPNS_4palf12PalfFSCbNodeELb0EEC2EPKcS6_:0 + 0: 0 +_ZNK9oceanbase7storage14ObMetaObjGuardINS0_16ObTabletDDLKvMgrEE8is_validEv:231:11 + 1: 11 + 2: 11 + 2.1: 11 + 2.2: 11 +_ZN9oceanbase7storage13ObTxDataTable34check_need_update_memtables_cache_ERb:231:2 + 1: 2 + 2: 2 + 5: 2 + 6: 0 + 7: 0 + 8.1: 0 + 9.1: 2 _ZN9oceanbase7storage13ObTxDataTable17get_memtable_mgr_Ev:2 + 11.1: 1 + 11.2: 1 + 13: 1 + 15: 1 + 9.2: _ZN9oceanbase7storage19ObTxDataMemtableMgr18get_memtable_rangeERlS2_:88 + 3: 1 _ZN9oceanbase6common12TCRLockGuardC2ERKNS0_8TCRWLockE:1 + 4: 1 + 5: 1 + 7: _ZN9oceanbase6common12TCRLockGuardD2Ev:68 + 2: 1 + 3: 1 + 3.1: 1 + 3.2: 0 + 3: _ZN9oceanbase6common8TCRWLock8rdunlockEl:47 + 3: 1 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:4 + 0: 1 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPil:30 + 2: 1 + 2.1: 1 + 3: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:6 + 2: 1 + 2.1: 0 + 3: 0 +_ZN9oceanbase6common5occam20ObThreadHungDetector12get_instanceEv:231:7 + 0: 7 + 0.1: 0 + 0.2: 0 + 0.3: 0 + 0.4: 7 + 0.5: 0 + 0.7: 0 +_ZNK9oceanbase3sql18ObBasicSessionInfo17get_int64_sys_varENS_5share17ObSysVarClassTypeERl:230:2 + 2: 2 + 4: 2 + 5: 3 + 6.1: 0 + 7.1: 3 + 8: 0 + 9.1: 0 + 12: 3 _ZNK9oceanbase5share13ObBasicSysVar9get_valueEv:3 + 13.1: 0 + 15: 3 + 18: 3 + 5: _ZNK9oceanbase3sql18ObBasicSessionInfo17inner_get_sys_varENS_5share17ObSysVarClassTypeERPNS2_13ObBasicSysVarE:22 + 2: 2 + 3: 2 _ZNK9oceanbase3sql18ObBasicSessionInfo17inner_get_sys_varENS_5share17ObSysVarClassTypeERlRPNS2_13ObBasicSysVarE:2 + 12.1: _ZNK9oceanbase6common5ObObj7get_intERl:27 + 3: 3 + 4: 3 + 3: _ZNK9oceanbase6common9ObObjMeta6is_intEv:9 + 0: 3 +_ZN9oceanbase4palf9LogEngine10append_logERKNS_6common12ObFixedArrayINS0_3LSNENS2_12ObIAllocatorEEERKNS3_IPNS0_11LogWriteBufES5_EERKNS3_IlS5_EE:229:5 + 2: 4 + 3: 4 + 4: 4 + 5: 0 + 6.1: 0 + 7.1: 5 _ZN9oceanbase4palf10LogStorage6writevERKNS_6common12ObFixedArrayINS0_3LSNENS2_12ObIAllocatorEEERKNS3_IPNS0_11LogWriteBufES5_EERKNS3_IlS5_EE:4 + 8.1: 0 + 11: 5 +_ZN9oceanbase7storage13ObTxDataTable26check_tx_data_in_memtable_ENS_11transaction9ObTransIDERNS0_21ObITxDataCheckFunctorE:228:2 + 1: 2 + 4: 2 _ZN9oceanbase7storage13ObTxDataTable22update_memtables_cacheEv:2 + 5.1: 0 + 9: 2 _ZN9oceanbase7storage15ObTableHandleV2C1Ev:2 + 11: 2 + 13: 2 _ZN9oceanbase7storage13ObTxDataTable31get_tx_data_in_memtables_cache_ENS_11transaction9ObTransIDERNS0_15ObTableHandleV2ERNS0_13ObTxDataGuardERb:2 + 13.1: 0 + 14.1: 0 + 15.1: 0 + 17.1: 0 + 17.2: 0 + 18.1: 0 + 23: 0 + 25.2: 0 + 25.3: 0 + 27: 0 + 10: _ZN9oceanbase7storage13ObTxDataGuardC2Ev:52 + 0: 2 + 13.1: _ZN9oceanbase11transaction9ObTransIDD2Ev:0 + 0: 0 + 13.2: _ZN9oceanbase11transaction9ObTransIDD2Ev:0 + 0: 0 + 17: _ZN9oceanbase7storage13ObTxDataGuard7tx_dataEv:0 + 0: 0 + 25: _ZN9oceanbase7storage13ObTxDataGuardD2Ev:0 + 0: 0 + 0.2: 0 + 0: _ZN9oceanbase7storage13ObTxDataGuard5resetEv:0 + 2: 0 + 2: _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9ObTransIDENS_7storage8ObTxDataENS4_24TxDataHashMapAllocHandleENS0_9RefHandleELl8EE6revertEPS5_:0 + 2: 0 + 3: 0 + 3: _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9ObTransIDENS_7storage8ObTxDataENS4_24TxDataHashMapAllocHandleENS0_9RefHandleELl8EE6revertEPNS0_12LinkHashNodeIS3_EE:0 + 6: 0 + 6.1: 0 + 6.2: 0 + 7.1: 0 + 10: 0 + 11: _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9ObTransIDENS_7storage8ObTxDataENS4_24TxDataHashMapAllocHandleENS0_9RefHandleELl8EE8dec_urefEPNS0_12LinkHashNodeIS3_EE:0 + 3: 0 + 3: _ZN9oceanbase6common9RefHandle3decEPNS0_7RefNodeE:0 + 0: 0 + 4: _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9ObTransIDENS_7storage8ObTxDataENS4_24TxDataHashMapAllocHandleENS0_9RefHandleELl8EE13on_uref_cleanEPNS0_12LinkHashNodeIS3_EE:0 + 4: _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9ObTransIDENS_7storage8ObTxDataENS4_24TxDataHashMapAllocHandleENS0_9RefHandleELl8EE8dec_hrefEPNS0_12LinkHashNodeIS3_EE:0 + 3: 0 + 4: 0 + 3: _ZN9oceanbase6common7RefNode5xhrefEi:0 + 0: 0 + 25.1: _ZN9oceanbase7storage13ObTxDataGuardD2Ev:0 + 0: 0 + 0.2: 0 + 0: _ZN9oceanbase7storage13ObTxDataGuard5resetEv:0 + 2: 0 + 2: _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9ObTransIDENS_7storage8ObTxDataENS4_24TxDataHashMapAllocHandleENS0_9RefHandleELl8EE6revertEPS5_:0 + 2: 0 + 3: 0 + 3: _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9ObTransIDENS_7storage8ObTxDataENS4_24TxDataHashMapAllocHandleENS0_9RefHandleELl8EE6revertEPNS0_12LinkHashNodeIS3_EE:0 + 6: 0 + 6.1: 0 + 6.2: 0 + 7.1: 0 + 10: 0 + 11: _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9ObTransIDENS_7storage8ObTxDataENS4_24TxDataHashMapAllocHandleENS0_9RefHandleELl8EE8dec_urefEPNS0_12LinkHashNodeIS3_EE:0 + 3: 0 + 3: _ZN9oceanbase6common9RefHandle3decEPNS0_7RefNodeE:0 + 0: 0 + 4: _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9ObTransIDENS_7storage8ObTxDataENS4_24TxDataHashMapAllocHandleENS0_9RefHandleELl8EE13on_uref_cleanEPNS0_12LinkHashNodeIS3_EE:0 + 4: _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9ObTransIDENS_7storage8ObTxDataENS4_24TxDataHashMapAllocHandleENS0_9RefHandleELl8EE8dec_hrefEPNS0_12LinkHashNodeIS3_EE:0 + 3: 0 + 4: 0 + 3: _ZN9oceanbase6common7RefNode5xhrefEi:0 + 0: 0 +_ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImPNS_3sql15ObPsSessionInfoEEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEED2Ev:228:4 + 1: 4 + 2.1: 0 + 3: 4 + 2: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImPNS_3sql15ObPsSessionInfoEEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEE5clearEv:84 + 2: 4 + 3.1: 4 + 4: 0 + 5: 0 + 6.1: 0 + 15: 4 + 10: _ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocator4freeEPv:0 + 3: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImNS_5share15ObSequenceValueEEEEELi65ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEED2Ev:228:4 + 1: 4 + 2.1: 0 + 3: 4 + 2: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImNS_5share15ObSequenceValueEEEEELi65ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEE5clearEv:84 + 2: 4 + 3.1: 4 + 4: 0 + 5: 0 + 6.1: 0 + 15: 4 + 10: _ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocator4freeEPv:0 + 3: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS0_8ObStringEmEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEED2Ev:228:4 + 1: 4 + 2.1: 0 + 3: 4 + 2: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS0_8ObStringEmEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEE5clearEv:84 + 2: 4 + 3.1: 4 + 4: 0 + 5: 0 + 6.1: 0 + 15: 4 + 10: _ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocator4freeEPv:0 + 2: 0 + 3: _ZN9oceanbase6common7ob_freeEPv:0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase3sql17ObPhysicalPlanCtxD2Ev:224:2 + 1: 2 + 2: 2 _ZN9oceanbase6common16ObFixedArrayImplINS_3sql20ObImplicitCursorInfoENS0_12ObIAllocatorEED2Ev:2 + 2.2: 2 _ZN9oceanbase6common16ObFixedArrayImplINS_3sql15ObTableRowCountENS0_12ObIAllocatorEED2Ev:2 + 2.3: 1 _ZN9oceanbase11transaction9ObTxParamD1Ev:1 + 2.4: 1 _ZN9oceanbase6common16ObFixedArrayImplINS_5share12AutoincParamENS0_12ObIAllocatorEED2Ev:1 + 2.5: 1 _ZN9oceanbase6common13ObSEArrayImplIPcLl1ENS0_19ModulePageAllocatorELb1EED2Ev:2 + 2.6: 2 _ZN9oceanbase6common9Ob2DArrayINS_3sql15ObDatumObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS3_Ll1ES4_Lb0EEEED2Ev:2 + 2.1: _ZN9oceanbase6common16ObFixedArrayImplINS_3sql17PartParamIdxArrayENS0_12ObIAllocatorEED2Ev:38 + 0: 2 _ZN9oceanbase6common16ObFixedArrayImplINS_3sql17PartParamIdxArrayENS0_12ObIAllocatorEE7destroyEv:2 + 0.3: 0 + 2.7: _ZN9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEED2Ev:44 + 1: 2 + 2: 2 _ZN9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE7destroyEv:2 + 3: 1 _ZN9oceanbase6common13ObSEArrayImplIPNS0_10ObObjParamELl1ENS0_18ObWrapperAllocatorELb0EED2Ev:2 + 3.1: 0 + 3.2: 0 +_ZN9oceanbase3sql17ObPhysicalPlanCtxD1Ev:224:2 + 1: 2 + 2: 2 _ZN9oceanbase6common16ObFixedArrayImplINS_3sql20ObImplicitCursorInfoENS0_12ObIAllocatorEED2Ev:2 + 2.2: 2 _ZN9oceanbase6common16ObFixedArrayImplINS_3sql15ObTableRowCountENS0_12ObIAllocatorEED2Ev:2 + 2.3: 1 _ZN9oceanbase11transaction9ObTxParamD1Ev:1 + 2.4: 1 _ZN9oceanbase6common16ObFixedArrayImplINS_5share12AutoincParamENS0_12ObIAllocatorEED2Ev:1 + 2.5: 1 _ZN9oceanbase6common13ObSEArrayImplIPcLl1ENS0_19ModulePageAllocatorELb1EED2Ev:2 + 2.6: 2 _ZN9oceanbase6common9Ob2DArrayINS_3sql15ObDatumObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS3_Ll1ES4_Lb0EEEED2Ev:2 + 2.1: _ZN9oceanbase6common16ObFixedArrayImplINS_3sql17PartParamIdxArrayENS0_12ObIAllocatorEED2Ev:38 + 0: 2 _ZN9oceanbase6common16ObFixedArrayImplINS_3sql17PartParamIdxArrayENS0_12ObIAllocatorEE7destroyEv:2 + 0.3: 0 + 2.7: _ZN9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEED2Ev:44 + 1: 2 + 2: 2 _ZN9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE7destroyEv:2 + 3: 1 _ZN9oceanbase6common13ObSEArrayImplIPNS0_10ObObjParamELl1ENS0_18ObWrapperAllocatorELb0EED2Ev:2 + 3.1: 0 + 3.2: 0 +_ZN9oceanbase5share27ObSysVarObCompatibilityModeC2Ev:223:1 + 0: 1 + 0: _ZN9oceanbase5share12ObEnumSysVarC2EPPKcPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSF_EPFiS7_SA_SD_SH_EPFiRNSE_12ObIAllocatorERKNS5_18ObBasicSessionInfoESD_SI_EPFiSO_SR_SD_RNSE_8ObStringEEPFNSE_9ObObjTypeEvE:203 + 6: _ZN9oceanbase5share15ObTypeLibSysVarC2EPPKcPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSF_EPFiS7_SA_SD_SH_EPFiRNSE_12ObIAllocatorERKNS5_18ObBasicSessionInfoESD_SI_EPFiSO_SR_SD_RNSE_8ObStringEEPFNSE_9ObObjTypeEvEb:203 + 14: 1 + 7: _ZN9oceanbase5share13ObBasicSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKS1_RKNS_6common5ObObjERSB_EPFiS4_S7_S9_SD_EPFiRNSA_12ObIAllocatorERKNS2_18ObBasicSessionInfoES9_SE_EPFiSK_SN_S9_RNSA_8ObStringEEPFNSA_9ObObjTypeEvEb:98 + 11: 1 + 13: 1 + 18: 1 + 20: _ZN9oceanbase5share13ObBasicSysVar11clean_valueEv:69 + 2: _ZN9oceanbase5share13ObBasicSysVar16clean_base_valueEv:24 + 2: 1 + 3: _ZN9oceanbase6common5ObObj13set_nop_valueEv:16 + 2: _ZN9oceanbase6common5ObObj7set_extEl:16 + 4: 1 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:8 + 0: 1 + 3: _ZN9oceanbase5share13ObBasicSysVar15clean_inc_valueEv:21 + 2: _ZN9oceanbase6common5ObObj13set_nop_valueEv:21 + 2: _ZN9oceanbase6common5ObObj7set_extEl:21 + 4: 1 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:8 + 0: 1 + 4: _ZN9oceanbase6common5ObObj5resetEv:12 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4 + 0: 1 + 5: _ZN9oceanbase6common5ObObj5resetEv:12 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4 + 0: 1 + 13: _ZN9oceanbase5share15ObSysVarTypeLibC2EPPKc:91 + 1: 1 + 2: 1 + 3: 1 + 8.1: 3 + 8.3: 3 + 9: 1 +_ZN9oceanbase5share26ObSysVarErrorOnOverlapTimeC2Ev:223:1 + 0: 1 + 0: _ZN9oceanbase5share12ObBoolSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:203 + 5: _ZN9oceanbase5share15ObTypeLibSysVarC2EPPKcPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSF_EPFiS7_SA_SD_SH_EPFiRNSE_12ObIAllocatorERKNS5_18ObBasicSessionInfoESD_SI_EPFiSO_SR_SD_RNSE_8ObStringEEPFNSE_9ObObjTypeEvEb:203 + 14: 1 + 7: _ZN9oceanbase5share13ObBasicSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKS1_RKNS_6common5ObObjERSB_EPFiS4_S7_S9_SD_EPFiRNSA_12ObIAllocatorERKNS2_18ObBasicSessionInfoES9_SE_EPFiSK_SN_S9_RNSA_8ObStringEEPFNSA_9ObObjTypeEvEb:98 + 11: 1 + 13: 1 + 20: _ZN9oceanbase5share13ObBasicSysVar11clean_valueEv:69 + 2: _ZN9oceanbase5share13ObBasicSysVar16clean_base_valueEv:24 + 2: 1 + 3: _ZN9oceanbase6common5ObObj13set_nop_valueEv:16 + 2: _ZN9oceanbase6common5ObObj7set_extEl:16 + 4: 1 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:8 + 0: 1 + 3: _ZN9oceanbase5share13ObBasicSysVar15clean_inc_valueEv:21 + 2: _ZN9oceanbase6common5ObObj13set_nop_valueEv:21 + 2: _ZN9oceanbase6common5ObObj7set_extEl:21 + 4: 1 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:8 + 0: 1 + 4: _ZN9oceanbase6common5ObObj5resetEv:12 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4 + 0: 1 + 5: _ZN9oceanbase6common5ObObj5resetEv:12 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4 + 0: 1 + 13: _ZN9oceanbase5share15ObSysVarTypeLibC2EPPKc:91 + 1: 1 + 2: 1 + 3: 1 + 8.1: 3 + 8.3: 3 + 9: 1 +_ZN9oceanbase5share24ObSysVarIsResultAccurateC2Ev:223:1 + 0: 1 + 0: _ZN9oceanbase5share12ObBoolSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:203 + 5: _ZN9oceanbase5share15ObTypeLibSysVarC2EPPKcPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSF_EPFiS7_SA_SD_SH_EPFiRNSE_12ObIAllocatorERKNS5_18ObBasicSessionInfoESD_SI_EPFiSO_SR_SD_RNSE_8ObStringEEPFNSE_9ObObjTypeEvEb:203 + 14: 1 + 7: _ZN9oceanbase5share13ObBasicSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKS1_RKNS_6common5ObObjERSB_EPFiS4_S7_S9_SD_EPFiRNSA_12ObIAllocatorERKNS2_18ObBasicSessionInfoES9_SE_EPFiSK_SN_S9_RNSA_8ObStringEEPFNSA_9ObObjTypeEvEb:98 + 11: 1 + 13: 1 + 20: _ZN9oceanbase5share13ObBasicSysVar11clean_valueEv:69 + 2: _ZN9oceanbase5share13ObBasicSysVar16clean_base_valueEv:24 + 2: 1 + 3: _ZN9oceanbase6common5ObObj13set_nop_valueEv:16 + 2: _ZN9oceanbase6common5ObObj7set_extEl:16 + 4: 1 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:8 + 0: 1 + 3: _ZN9oceanbase5share13ObBasicSysVar15clean_inc_valueEv:21 + 2: _ZN9oceanbase6common5ObObj13set_nop_valueEv:21 + 2: _ZN9oceanbase6common5ObObj7set_extEl:21 + 4: 1 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:8 + 0: 1 + 4: _ZN9oceanbase6common5ObObj5resetEv:12 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4 + 0: 1 + 5: _ZN9oceanbase6common5ObObj5resetEv:12 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4 + 0: 1 + 13: _ZN9oceanbase5share15ObSysVarTypeLibC2EPPKc:91 + 1: 1 + 2: 1 + 3: 1 + 8.1: 3 + 8.3: 3 + 9: 1 +_ZN9oceanbase5share18ObSysVarGeneralLogC2Ev:223:1 + 0: 1 + 0: _ZN9oceanbase5share12ObBoolSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:203 + 5: _ZN9oceanbase5share15ObTypeLibSysVarC2EPPKcPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSF_EPFiS7_SA_SD_SH_EPFiRNSE_12ObIAllocatorERKNS5_18ObBasicSessionInfoESD_SI_EPFiSO_SR_SD_RNSE_8ObStringEEPFNSE_9ObObjTypeEvEb:203 + 14: 1 + 7: _ZN9oceanbase5share13ObBasicSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKS1_RKNS_6common5ObObjERSB_EPFiS4_S7_S9_SD_EPFiRNSA_12ObIAllocatorERKNS2_18ObBasicSessionInfoES9_SE_EPFiSK_SN_S9_RNSA_8ObStringEEPFNSA_9ObObjTypeEvEb:98 + 11: 1 + 13: 1 + 20: _ZN9oceanbase5share13ObBasicSysVar11clean_valueEv:69 + 2: _ZN9oceanbase5share13ObBasicSysVar16clean_base_valueEv:24 + 2: 1 + 3: _ZN9oceanbase6common5ObObj13set_nop_valueEv:16 + 2: _ZN9oceanbase6common5ObObj7set_extEl:16 + 4: 1 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:8 + 0: 1 + 3: _ZN9oceanbase5share13ObBasicSysVar15clean_inc_valueEv:21 + 2: _ZN9oceanbase6common5ObObj13set_nop_valueEv:21 + 2: _ZN9oceanbase6common5ObObj7set_extEl:21 + 4: 1 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:8 + 0: 1 + 4: _ZN9oceanbase6common5ObObj5resetEv:12 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4 + 0: 1 + 5: _ZN9oceanbase6common5ObObj5resetEv:12 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4 + 0: 1 + 13: _ZN9oceanbase5share15ObSysVarTypeLibC2EPPKc:91 + 1: 1 + 2: 1 + 3: 1 + 8.1: 3 + 8.3: 3 + 9: 1 +_ZN9oceanbase7storage4ObLS26update_ls_replayable_pointIJlEEEiDpOT_:222:2 + 0: 2 _ZN9oceanbase7storage13ObLSLockGuardC1ERNS0_8ObLSLockEllb:2 + 0.1: 0 + 0.2: 0 + 0.7: 1 + 0.8: 0 + 0.9: 0 + 0.15: 1 + 0.16: 0 + 0.17: 0 + 0.23: 1 + 0.25: 1 + 0.26: 2 + 0.27: 4 _ZN9oceanbase7storage13ObLSLockGuardD1Ev:2 + 0.28: 0 + 0.30: 1 _ZN9oceanbase7storage8ObLSMeta26update_ls_replayable_pointEl:1 + 0.14: _ZN9oceanbase7storage18can_update_ls_metaERKNS0_15ObInnerLSStatusE:8 + 2: 1 +_ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImNS1_11HashNullObjEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19ReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE5clearEv:222:0 + 1: 0 + 3: 0 + 3.1: 0 + 6.1: 3 + 6.3: 3 + 7: 3 + 10: 3 + 11.1: 0 + 13: 0 + 14: 0 + 18: 3 + 20: 0 + 22: 0 + 3: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImNS1_11HashNullObjEEE16pthread_rwlock_tNS1_5NCondEEEEEbRKT_:0 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImNS1_11HashNullObjEEE16pthread_rwlock_tNS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:0 + 2: 0 + 65255: 0 + 8: _ZN9oceanbase6common4hash16ObBucketLockCondINS1_11HashMapPairImNS1_11HashNullObjEEENS1_19ReadWriteDefendModeEE4lockEv:24 + 2: 3 + 8.1: _ZN9oceanbase6common4hash11WriteLockerC2ER16pthread_rwlock_t:36 + 2: 3 + 3.1: 0 + 12: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_11HashMapPairImNS1_11HashNullObjEEEE16check_magic_codeEv:0 + 0: 0 + 12.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 19: _ZN9oceanbase6common4hash11WriteLockerD2Ev:27 + 2: 3 + 3: 3 + 19.1: _ZN9oceanbase6common4hash11WriteLockerD2Ev:0 + 2: 0 + 3: 0 +_ZZN9oceanbase4palf16LogSlidingWindow17advance_reuse_lsnERKNS0_3LSNEENK5$_411clEPKc.0e4bf25207570af14a78557c8489c4fc:221:4 + 0: 4 + 0.1: 0 + 0.2: 3 + 0.3: 4 _ZN9oceanbase6common8ObLogger13need_to_printEmi:4 + 0.7: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:68 + 2: 4 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS_4palf3LSNELb0EEC2EPKcS5_:0 + 0: 0 +_ZZN9oceanbase4palf10PalfHandle25unregister_role_change_cbEvENK5$_770clEPKc.0e4bf25207570af14a78557c8489c4fc:221:4 + 0: 4 + 0.1: 0 + 0.2: 3 + 0.3: 4 _ZN9oceanbase6common8ObLogger13need_to_printEmi:4 + 0.5: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:68 + 2: 4 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKPNS_4palf20PalfRoleChangeCbNodeELb0EEC2EPKcS6_:0 + 0: 0 +_ZNK9oceanbase6common4hash18ObPointerHashArrayINS_5share6schema29ObOutlineSignatureHashWrapperEPNS4_21ObSimpleOutlineSchemaENS4_17ObGetOutlineKeyV3EE21placement_hash_searchERKS5_Rl:220:4 + 1: 4 + 3: 4 + 5: 4 + 9: 0 + 13: 0 + 15.2: 0 + 16: 0 + 19: 0 + 20: 0 + 28: 4 + 8: _ZNK9oceanbase6common4hash18ObPointerHashArrayINS_5share6schema29ObOutlineSignatureHashWrapperEPNS4_21ObSimpleOutlineSchemaENS4_17ObGetOutlineKeyV3EE17key_to_anchor_idxERKS5_:0 + 3: 0 + 4: 0 + 4.2: 0 + 2: _ZN9oceanbase6common7do_hashINS_5share6schema29ObOutlineSignatureHashWrapperEEEmRKT_:0 + 2: 0 + 8.2: _ZNK9oceanbase6common4hash18ObPointerHashArrayINS_5share6schema29ObOutlineSignatureHashWrapperEPNS4_21ObSimpleOutlineSchemaENS4_17ObGetOutlineKeyV3EE10probe_nextEl:0 + 3: 0 + 5: 0 + 15.1: _ZNK9oceanbase5share6schema17ObGetOutlineKeyV3INS1_29ObOutlineSignatureHashWrapperEPNS1_21ObSimpleOutlineSchemaEEclEPKS4_:0 + 3: 0 + 2: _ZN9oceanbase5share6schema29ObOutlineSignatureHashWrapperC2Ev:0 + 1: 0 + 2: _ZN9oceanbase6common8ObStringC2Ev:0 + 1: 0 + 4: _ZNK9oceanbase5share6schema21ObSimpleOutlineSchema13get_tenant_idEv:0 + 0: 0 + 4.1: _ZN9oceanbase5share6schema29ObOutlineSignatureHashWrapper13set_tenant_idEm:0 + 0: 0 + 5: _ZNK9oceanbase5share6schema21ObSimpleOutlineSchema15get_database_idEv:0 + 0: 0 + 5.1: _ZN9oceanbase5share6schema29ObOutlineSignatureHashWrapper15set_database_idEm:0 + 0: 0 + 6.1: _ZN9oceanbase5share6schema29ObOutlineSignatureHashWrapper13set_signatureERKNS_6common8ObStringE:0 + 0: 0 + 15.4: _ZNK9oceanbase5share6schema29ObOutlineSignatureHashWrappereqERKS2_:0 + 2: 0 + 3.1: 0 +_ZN9oceanbase5obrpc18ObRpcProcessorBase14set_ob_requestERNS_3rpc9ObRequestE:220:2 + 1: 2 + 3: 2 + 4: 2 + 5: 2 + 6: 2 + 7: 2 + 2: _ZN9oceanbase3rpc5frame14ObReqProcessor14set_ob_requestERNS0_9ObRequestE:88 + 2: 2 + 3: 2 + 4: 2 + 5: 2 + 6: 2 + 2: _ZNK9oceanbase3rpc9ObRequest8get_typeEv:12 + 0: 2 + 3: _ZNK9oceanbase3rpc9ObRequest16get_nio_protocolEv:12 + 0: 2 + 5: _ZNK9oceanbase3rpc9ObRequest21get_receive_timestampEv:14 + 2: 2 + 6: _ZNK9oceanbase3rpc9ObRequest21get_enqueue_timestampEv:14 + 2: 2 + 3: _ZNK9oceanbase3rpc9ObRequest10get_packetEv:14 + 2: 2 + 4: _ZNK9oceanbase5obrpc11ObRpcPacket8get_clenEv:12 + 2: 2 + 5: _ZNK9oceanbase5obrpc11ObRpcPacket13get_tenant_idEv:8 + 2: 2 + 6: _ZNK9oceanbase3rpc9ObRequest18get_send_timestampEv:48 + 3: 2 + 3.1: 2 + 4: _ZNK9oceanbase5obrpc11ObRpcPacket13get_timestampEv:8 + 2: 2 +_ZNK9oceanbase3lib17ObMallocAllocator19get_tenant_ctx_holdEmm:219:3 + 1: 3 + 4: 3 + 7: 3 _ZNK9oceanbase3lib20ObTenantCtxAllocator8get_holdEv:3 + 9: 0 + 4: _ZNK9oceanbase3lib17ObMallocAllocator24get_tenant_ctx_allocatorEmm:81 + 3: 3 + 4: 3 + 7: 0 + 9: 0 + 10.1: 0 + 10.3: 0 + 10.4: 0 + 13.2: 0 + 8: _ZN9oceanbase5obsys12ObRLockGuardC2ERKNS0_8ObRWLockEb:0 + 0: _ZNK9oceanbase5obsys8ObRWLock5rlockEv:0 + 0: 0 + 0.1: _ZN9oceanbase5obsys15ObLockGuardBaseINS0_7ObRLockEEC2ERKS2_b:0 + 2.1: 0 + 2.3: 0 + 10.2: _ZN9oceanbase3lib20ObTenantCtxAllocator13get_tenant_idEv:0 + 2: 0 + 16.1: _ZN9oceanbase5obsys12ObRLockGuardD2Ev:0 + 0: _ZN9oceanbase5obsys15ObLockGuardBaseINS0_7ObRLockEED2Ev:0 + 2: 0 + 3: 0 + 3.1: 0 +_ZNK9oceanbase12blocksstable23ObBloomFilterCacheValue11may_containEjRb:219:1 + 1: 1 + 2: 1 + 3: 1 + 4: 1 + 5: 0 + 6.1: 0 + 7.1: 1 + 8.1: 0 + 10: 1 + 7.1: _ZNK9oceanbase12blocksstable13ObBloomFilter11may_containEjRb:168 + 2: 1 + 3: 1 + 4: 1 + 5: 0 + 6.1: 0 + 8: 1 + 9: 1 + 10: 1 + 11.1: 1 + 12: 2 + 13: 1 + 16: 1 + 19: 0 + 4: _ZNK9oceanbase12blocksstable13ObBloomFilter8is_validEv:38 + 0: 1 + 0.1: 1 + 0.2: 1 +_ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_PNS_3sql17ObInnerContextMapEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS8_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS8_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl2EE6createElPSK_PSN_:219:1 + 1: 1 + 2: 1 + 3: 1 + 4.1: 0 + 5: 0 + 6.1: 1 + 7.1: 0 + 9: 0 + 10.1: 2 + 12.1: 0 + 13: 0 + 16: 2 + 17: 2 + 19: 2 + 21: 2 + 6.1: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringEPNS_3sql17ObInnerContextMapEEENS1_5NLockENS1_5NCondEEEEEbRKT_:5 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringEPNS_3sql17ObInnerContextMapEEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:5 + 2: 1 + 10.1: _ZN9oceanbase6common4hash6createIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringEPNS_3sql17ObInnerContextMapEEENS1_5NLockENS1_5NCondEEENS0_8ObMallocEEEiRT_lllRT0_:60 + 3: _ZN9oceanbase6common4hash9do_createIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringEPNS_3sql17ObInnerContextMapEEENS1_5NLockENS1_5NCondEEENS0_8ObMallocEEEiRT_lllNS1_16NormalPointerTagERT0_:60 + 7.1: 2 _ZN9oceanbase6common8ObMalloc5allocEl:1 + 8.1: 0 + 12: 2 +_ZN9oceanbase11transaction30ObTenantWeakReadClusterService24persist_version_if_need_EllllbRl:217:1 + 6: 1 + 7: 1 + 8.1: 1 _ZN9oceanbase6common11ObSqlStringC1ERKNS_3lib7ObLabelE:1 + 9.2: 1 + 10.1: 1 + 11: 1 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:1 + 15: 1 + 15.1: 1 + 16: 1 + 17: 0 + 18.1: 1 _ZN9oceanbase11transaction30ObTenantWeakReadClusterService25build_update_version_sql_EllllbRNS_6common11ObSqlStringE:1 + 18.2: 0 + 20.1: 0 + 22.1: 0 + 22.2: 0 + 22.3: 0 + 23.1: 0 + 33: 0 + 34: 0 + 35.1: 0 + 39: 0 + 40.1: 0 + 43: 0 + 43.1: 0 + 44: 0 + 44.1: 0 + 46.1: 0 + 56.1: 0 + 58: 0 + 59.1: 0 + 60: 0 + 60.1: 0 + 62: 0 + 63.11: 0 + 63.14: 0 + 8: _ZN9oceanbase3lib7ObLabelC2IA10_cEERKT_:24 + 2: _ZN9oceanbase3lib7ObLabelaSILm10EEERS1_RAT__Kc:24 + 4: 1 + 9: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:17 + 2: 1 + 2.1: 0 + 2.2: 0 + 9.1: _ZNK9oceanbase5share12ObTenantBase2idEv:15 + 0: 1 + 10: _ZN9oceanbase6common18gen_meta_tenant_idEm:35 + 3: 1 + 5.1: 1 + 5.2: 1 + 3: _ZN9oceanbase6common20is_virtual_tenant_idEm:11 + 2: 1 + 5.1: _ZN9oceanbase6common13is_sys_tenantEm:4 + 2: 1 + 5.2: _ZN9oceanbase6common14is_meta_tenantEm:5 + 4.1: 1 + 22.1: _ZN9oceanbase6common11ObSqlString3ptrEv:0 + 0: 0 +_ZNK9oceanbase6common15ObFIFOAllocator5totalEv:215:6 + 1: 5 + 2: 5 + 2: _ZNK9oceanbase6common15ObFIFOAllocator12normal_totalEv:150 + 3: 5 + 4: 5 + 3.1: _ZNK9oceanbase6common7ObDListINS0_11ObDLinkNodeIPNS0_15ObFIFOAllocator14BasePageHeaderEEEE8get_sizeEv:30 + 0: 5 +_ZN9oceanbase8observer20ObInnerSQLConnection11init_resultERNS0_16ObInnerSQLResultEPNS0_29ObVirtualTableIteratorFactoryElRNS_5share6schema19ObSchemaGetterGuardEPNS_2pl11ObPLBlockNSEbbbbbb:214:0 + 11: 0 + 16.2: 0 + 17: 0 + 19: 1 + 20: 1 + 21: 1 + 21.3: 1 + 24: 1 + 25: 1 + 26: 1 + 27: 1 + 28: 1 + 29: 1 + 30: 1 + 34: 2 + 38: 2 + 14: _ZN9oceanbase8observer16ObInnerSQLResult10result_setEv:0 + 0: 0 + 15: _ZN9oceanbase8observer8ObServer12get_instanceEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 16: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:0 + 0: 0 + 0.2: 0 + 16.3: _ZN9oceanbase6common16ObClusterVersion19get_cluster_versionEv:0 + 0: 0 + 16.4: _ZN9oceanbase3sql17ObTaskExecutorCtx23set_min_cluster_versionEm:0 + 2: 0 + 17: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:0 + 0: 0 + 0.2: 0 + 18: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:0 + 0: 0 + 0.2: 0 + 18.1: _ZN9oceanbase8observer16ObInnerSQLResult7sql_ctxEv:7 + 0: 1 + 18.2: _ZN9oceanbase3sql13ObExecContext11set_sql_ctxEPNS0_8ObSqlCtxE:11 + 0: 1 + 20: _ZN9oceanbase8observer20ObInnerSQLConnection11get_sessionEv:19 + 0: 1 + 31: _ZN9oceanbase8observer16ObInnerSQLResult10result_setEv:7 + 0: 1 + 31.1: _ZN9oceanbase3sql11ObResultSet4initEv:16 + 1: 1 + 2.1: 0 + 1: _ZN9oceanbase3sql16ObSQLSessionInfo20get_pl_exact_err_msgEv:0 + 0: 0 + 36: _ZN9oceanbase3sql11ObResultSet22set_simple_ps_protocolEv:0 + 0: 0 +_ZN9oceanbase3sql18ObBasicSessionInfo25process_session_log_levelERKNS_6common5ObObjE:214:2 + 1: 2 + 3: 2 + 5: 2 + 6: 1 + 7: 1 + 8: 1 + 9.1: 0 + 9.4: 0 + 11.1: 0 + 13: 0 + 16: 1 + 4: _ZN9oceanbase6common8ObStringC2Ev:22 + 1: 2 + 5: _ZNK9oceanbase6common5ObObj11get_varcharERNS0_8ObStringE:14 + 10: 2 _ZNK9oceanbase6common5ObObj10get_stringERNS0_8ObStringE:3 + 6: _ZNK9oceanbase6common8ObString12case_compareEPKc:76 + 8: _ZNK9oceanbase6common8ObString12case_compareERKS1_:76 + 3: 2 + 10: 2 + 10.1: 2 + 11: 1 + 10: _ZSt3minIiERKT_S2_S2_:6 + 5: 2 + 8: _ZN9oceanbase6common15ObLogIdLevelMap11reset_levelEv:9 + 0: 1 _ZN9oceanbase6common15ObLogIdLevelMap9set_levelEa:1 + 9.2: _ZN9oceanbase6common8ObString3ptrEv:0 + 0: 0 + 9.3: _ZNK9oceanbase6common8ObString6lengthEv:0 + 0: 0 +_ZN9oceanbase3sql16ObFastParserBase8ObRawSql11strncasecmpEPKcl:213:3 + 1: 3 + 2: 3 + 2: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql11strncasecmpElPKcl:153 + 5.1: 3 + 6: 3 + 9: 3 + 12: 0 + 80: 0 + 4: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:54 + 2: 3 + 2.1: 3 + 5: 3 + 12: _ZN9oceanbase3sql16ObFastParserBase8ObRawSql7char_atEl:0 + 2: 0 + 2.1: 0 + 5: 0 +_ZZN9oceanbase4palf11LogIOWorker25BatchLogIOFlushLogTaskMgr6handleElPNS0_11PalfEnvImplEENK5$_782clEPKc.1598dc2348996c1ae1caea6120522988:211:3 + 0: 4 + 0.1: 0 + 0.2: 4 + 0.3: 3 _ZN9oceanbase6common8ObLogger13need_to_printEmi:4 + 0.9: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:51 + 2: 3 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.7: _ZN9oceanbase6common20ObLogPrintPointerCntIPNS_4palf22BatchLogIOFlushLogTaskEEC2ES4_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVINS0_20ObLogPrintPointerCntIPNS_4palf22BatchLogIOFlushLogTaskEEELb1EEC2EPKcOKS6_:0 + 0: 0 +_ZN9oceanbase6common6number8ObNumber10TAllocatorINS0_15ObObjCastParamsEE5allocEl:211:7 + 0: 7 + 0: _ZNK9oceanbase6common15ObObjCastParams5allocEl:155 + 3: 7 + 5.1: 0 +_ZNSt14_Function_base13_Base_managerIZN9oceanbase5share25get_tenant_base_with_lockEmRNS1_6common10ObLDHandleERPNS2_12ObTenantBaseERSt8functionIFiS5_EEE4$_13E10_M_managerERSt9_Any_dataRKSF_St18_Manager_operation.dffa7baff4f06077efbca9bde9102f22:210:10 + 2: 10 + 3: 10 + 7: 0 + 11: 0 + 22: 10 + 15: _ZNSt14_Function_base13_Base_managerIZN9oceanbase5share25get_tenant_base_with_lockEmRNS1_6common10ObLDHandleERPNS2_12ObTenantBaseERSt8functionIFiS5_EEE4$_13E8_M_cloneERSt9_Any_dataRKSF_St17integral_constantIbLb1EE:0 + 2: 0 +_ZN9oceanbase4palf10PalfHandle25unregister_role_change_cbEv:210:4 + 1: 4 + 2: 4 + 3: 4 + 4: 4 + 5.1: 4 _ZZN9oceanbase4palf10PalfHandle25unregister_role_change_cbEvENK5$_770clEPKc.0e4bf25207570af14a78557c8489c4fc:4 + 6.1: 0 + 7.1: 0 + 9.1: 0 + 9.2: 0 + 9.5: 0 + 10: 0 + 12: 3 + 13: 3 +_ZN9oceanbase3omt19ObTenantTimezoneMgr12get_instanceEv:210:9 + 1: 7 + 2: 7 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 3: 7 +_ZSt22__final_insertion_sortIN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS1_19ModulePageAllocatorELb0EEEN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S9_T0_:209:1 + 2: 1 + 3: 1 + 11: 1 + 3: _ZN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS0_19ModulePageAllocatorELb0EEmiERKS4_:11 + 3: 1 + 1776: 1 + 5: _ZN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS0_19ModulePageAllocatorELb0EEplEl:0 + 3: 0 + 5.1: _ZSt16__insertion_sortIN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS1_19ModulePageAllocatorELb0EEEN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S9_T0_:0 + 5.1: 0 + 7: 0 + 65524.1: 0 + 5.1: _ZNK9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS0_19ModulePageAllocatorELb0EEneERKS4_:0 + 3: 0 + 7: _ZNK9__gnu_cxx5__ops15_Iter_less_iterclIN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS4_19ModulePageAllocatorELb0EEES8_EEbT_T0_:0 + 1: 0 + 1: _ZN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS0_19ModulePageAllocatorELb0EEdeEv:0 + 3: _ZN9oceanbase6common12ObIArrayWrapIlE2atEl:0 + 6: 0 + 11.1: _ZSt13move_backwardIN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS1_19ModulePageAllocatorELb0EEES5_ET0_T_S7_S6_:0 + 10.1: _ZSt23__copy_move_backward_a2ILb1EN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS1_19ModulePageAllocatorELb0EEES5_ET1_T0_S7_S6_:0 + 2: _ZSt22__copy_move_backward_aILb1EN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS1_19ModulePageAllocatorELb0EEES5_ET1_T0_S7_S6_:0 + 10: _ZNSt20__copy_move_backwardILb1ELb0ESt26random_access_iterator_tagE13__copy_move_bIN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS4_19ModulePageAllocatorELb0EEES8_EET0_T_SA_S9_:0 + 3: 0 + 3.1: 0 + 3.2: 0 + 4: 0 + 3: _ZN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS0_19ModulePageAllocatorELb0EEmiERKS4_:0 + 3: 0 + 4: _ZN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS0_19ModulePageAllocatorELb0EEmmEv:0 + 3: 0 + 4.3: _ZN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS0_19ModulePageAllocatorELb0EEmmEv:0 + 3: 0 + 12.1: _ZN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS0_19ModulePageAllocatorELb0EEdeEv:0 + 3: _ZN9oceanbase6common12ObIArrayWrapIlE2atEl:0 + 6: 0 + 15: _ZSt25__unguarded_linear_insertIN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS1_19ModulePageAllocatorELb0EEEN9__gnu_cxx5__ops14_Val_less_iterEEvT_T0_:0 + 7.1: 0 + 9: 0 + 7.1: _ZNK9__gnu_cxx5__ops14_Val_less_iterclIlN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS4_19ModulePageAllocatorELb0EEEEEbRT_T0_:0 + 1: 0 + 491: 0 + 1: _ZN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS0_19ModulePageAllocatorELb0EEdeEv:0 + 3: _ZN9oceanbase6common12ObIArrayWrapIlE2atEl:0 + 6: 0 + 13.1: _ZN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS0_19ModulePageAllocatorELb0EEdeEv:0 + 3: _ZN9oceanbase6common12ObIArrayWrapIlE2atEl:0 + 6: 0 + 6.1: _ZSt26__unguarded_insertion_sortIN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS1_19ModulePageAllocatorELb0EEEN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S9_T0_:0 + 3.1: 0 + 3.1: _ZNK9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS0_19ModulePageAllocatorELb0EEneERKS4_:0 + 3: 0 + 3.3: _ZN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS0_19ModulePageAllocatorELb0EEppEv:0 + 3: 0 + 4: _ZSt25__unguarded_linear_insertIN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS1_19ModulePageAllocatorELb0EEEN9__gnu_cxx5__ops14_Val_less_iterEEvT_T0_:0 + 4: 0 + 7.1: 0 + 9: 0 + 13: 0 + 63773: 0 + 4: _ZN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS0_19ModulePageAllocatorELb0EEdeEv:0 + 3: _ZN9oceanbase6common12ObIArrayWrapIlE2atEl:0 + 6: 0 + 7.1: _ZNK9__gnu_cxx5__ops14_Val_less_iterclIlN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS4_19ModulePageAllocatorELb0EEEEEbRT_T0_:0 + 1: 0 + 1: _ZN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS0_19ModulePageAllocatorELb0EEdeEv:0 + 3: _ZN9oceanbase6common12ObIArrayWrapIlE2atEl:0 + 6: 0 + 10: _ZSt16__insertion_sortIN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS1_19ModulePageAllocatorELb0EEEN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S9_T0_:182 + 3: 1 + 5.1: 2 + 7: 2 + 3: _ZNK9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS0_19ModulePageAllocatorELb0EEeqERKS4_:3 + 3: 1 + 5.1: _ZNK9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS0_19ModulePageAllocatorELb0EEneERKS4_:9 + 3: 2 + 7: _ZNK9__gnu_cxx5__ops15_Iter_less_iterclIN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS4_19ModulePageAllocatorELb0EEES8_EEbT_T0_:24 + 1: 2 + 1: _ZN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS0_19ModulePageAllocatorELb0EEdeEv:8 + 3: _ZN9oceanbase6common12ObIArrayWrapIlE2atEl:8 + 6: 2 + 11.1: _ZSt13move_backwardIN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS1_19ModulePageAllocatorELb0EEES5_ET0_T_S7_S6_:53 + 10.1: _ZSt23__copy_move_backward_a2ILb1EN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS1_19ModulePageAllocatorELb0EEES5_ET1_T0_S7_S6_:53 + 2: _ZSt22__copy_move_backward_aILb1EN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS1_19ModulePageAllocatorELb0EEES5_ET1_T0_S7_S6_:53 + 10: _ZNSt20__copy_move_backwardILb1ELb0ESt26random_access_iterator_tagE13__copy_move_bIN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS4_19ModulePageAllocatorELb0EEES8_EET0_T_SA_S9_:53 + 3.1: 2 + 4: 2 + 4.1: _ZN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS0_19ModulePageAllocatorELb0EEdeEv:3 + 3: _ZN9oceanbase6common12ObIArrayWrapIlE2atEl:3 + 6: 1 + 12.1: _ZN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS0_19ModulePageAllocatorELb0EEdeEv:13 + 3: _ZN9oceanbase6common12ObIArrayWrapIlE2atEl:13 + 6: 2 + 15: _ZSt25__unguarded_linear_insertIN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS1_19ModulePageAllocatorELb0EEEN9__gnu_cxx5__ops14_Val_less_iterEEvT_T0_:15 + 7.1: 1 + 9: 1 + 7.1: _ZNK9__gnu_cxx5__ops14_Val_less_iterclIlN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS4_19ModulePageAllocatorELb0EEEEEbRT_T0_:7 + 1: 1 + 65519: 0 + 1: _ZN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS0_19ModulePageAllocatorELb0EEdeEv:0 + 3: _ZN9oceanbase6common12ObIArrayWrapIlE2atEl:0 + 6: 0 + 13.1: _ZN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS0_19ModulePageAllocatorELb0EEdeEv:4 + 3: _ZN9oceanbase6common12ObIArrayWrapIlE2atEl:4 + 6: 1 +_ZN9oceanbase6common7ObLatchD2Ev:208:26 + 1: 26 + 2: 26 + 5: 26 +_ZN9oceanbase6common7ObLatchD1Ev:208:26 + 1: 26 + 2: 26 + 5: 26 +_ZN9oceanbase5share17ObLabelSeResolver26deserialize_session_labelsERKNS_6common8ObStringERNS2_8ObIArrayINS0_21ObLabelSeSessionLabelEEE:207:1 + 2: 1 + 3: 1 + 4: 1 + 5: 1 _ZN9oceanbase6common13ObSEArrayImplINS_5share21ObLabelSeSessionLabelELl4ENS0_19ModulePageAllocatorELb0EE5reuseEv:1 + 8: 0 + 8.1: 3 _ZN9oceanbase6common8ObString8split_onEc:2 + 10: 0 + 11: 0 + 12: 0 + 13: 0 + 19.2: 0 + 20: 0 + 21: 0 + 24.2: 0 + 25: 0 + 26: 0 + 29.2: 0 + 30: 0 + 31: 0 + 33: 0 + 34.1: 0 + 39: 0 + 39.1: 0 + 40.1: 0 + 44: 3 + 7: _ZN9oceanbase6common8ObStringC2Ev:34 + 1: 2 + 8.3: _ZNK9oceanbase6common8ObString5emptyEv:12 + 2: 3 + 9: _ZN9oceanbase5share21ObLabelSeSessionLabelC2Ev:0 + 0: _ZN9oceanbase5share17ObLabelSeLabelTagC2Ev:0 + 0: 0 + 36: _ZN9oceanbase5share21ObLabelSeSessionLabel13set_policy_idEm:0 + 0: 0 + 37.1: _ZN9oceanbase5share21ObLabelSeSessionLabel18set_read_label_tagENS0_17ObLabelSeLabelTagE:0 + 0: 0 + 38.1: _ZN9oceanbase5share21ObLabelSeSessionLabel19set_write_label_tagENS0_17ObLabelSeLabelTagE:0 + 0: 0 +_ZN9oceanbase7storage14ObLSWRSHandler38generate_ls_weak_read_snapshot_versionERNS0_4ObLSERbS4_Rll:206:1 + 5: 1 + 6: 1 + 7: 1 + 9: 1 + 10: 1 + 13: 1 + 14: 0 + 15.1: 0 + 16.1: 1 + 18: 0 + 19.1: 0 + 19.2: 0 + 19.3: 0 + 19.6: 0 + 20.1: 0 + 22.1: 1 _ZN9oceanbase7storage14ObLSWRSHandler29generate_weak_read_timestamp_ERNS0_4ObLSElRl:1 + 22.2: 2 + 24: 0 + 25: 0 + 26.2: 1 + 27: 1 + 29: 0 + 29.1: 0 + 30.1: 0 + 32: 0 + 34: 0 + 37: 0 + 37.1: 0 + 38: 0 + 47: 0 + 56: 0 + 57: 0 + 61: 0 + 62.7: 0 + 8: _ZNK9oceanbase7storage4ObLS9get_ls_idEv:11 + 0: _ZN9oceanbase5share6ObLSIDC2ERKS1_:11 + 0: 1 + 12: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEEC2ERS3_:29 + 1: 1 + 2: 1 + 4: 1 + 5.1: 0 + 4: _ZN9oceanbase6common10ObSpinLock4lockEv:7 + 2: 1 _ZN9oceanbase6common12ObLatchMutex4lockEjl:1 + 19: _ZN9oceanbase6common14ObTscTimestamp12get_instanceEv:0 + 2: 0 + 2.1: 0 + 2.3: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common14ObTscTimestampC2Ev:0 + 1: 0 + 26.1: _ZN9oceanbase7storage4ObLS20get_migration_statusIJRNS0_17ObMigrationStatusEEEEiDpOT_:30 + 0: 2 + 0.1: 2 _ZNK9oceanbase7storage8ObLSMeta20get_migration_statusERNS0_17ObMigrationStatusE:2 + 48: _ZNK9oceanbase5share6ObLSID9is_sys_lsEv:0 + 0: 0 + 58: _ZN9oceanbase6common10inc_updateIlEElPT_S2_:0 + 3: 0 + 4.1: 0 + 5: 0 + 62.7: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEED2Ev:0 + 2: 0 + 3: 0 + 3.1: 0 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase6common10ObSpinLock6unlockEv:0 + 2: 0 + 62.8: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEED2Ev:0 + 2: 0 + 3: 0 + 3.1: 0 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase6common10ObSpinLock6unlockEv:0 + 2: 0 +_ZN9oceanbase6common9ObCharset27charset_type_by_name_oracleERKNS0_8ObStringE:206:1 + 1: 1 + 3: 1 + 3.1: 2 + 4: 1 + 4.1: 2 + 6.1: 2 _ZNK9oceanbase6common8ObString12case_compareEPKc:2 + 8.1: 0 + 10.1: 3 + 3: _ZNK9oceanbase6common8ObString12case_compareEPKc:56 + 8: _ZNK9oceanbase6common8ObString12case_compareERKS1_:56 + 3: 1 + 10: 1 + 10.1: 1 + 11: 1 + 10: _ZSt3minIiERKT_S2_S2_:4 + 5: 1 + 4.1: _ZNK9oceanbase6common8ObString12case_compareEPKc:47 + 8: _ZNK9oceanbase6common8ObString12case_compareERKS1_:47 + 10: 1 + 10.1: 1 + 11: 2 + 10.1: _ZNK9oceanbase6common8ObString12case_compareEPKc:0 + 8: _ZNK9oceanbase6common8ObString12case_compareERKS1_:0 + 3: 0 + 10: 0 + 10.1: 0 + 11: 0 + 10: _ZSt3minIiERKT_S2_S2_:0 + 5: 0 +_ZN9oceanbase6common13serialization14encoded_lengthEl:206:3 + 1: 3 + 2: 2 + 2: _ZN9oceanbase6common13serialization19encoded_length_vi64El:173 + 4: 3 + 6.1: 2 + 8.1: 2 + 10.1: 2 + 12.1: 2 + 14.1: 2 + 16.1: 2 + 18.1: 2 +_ZN9oceanbase4palf11LogIOWorker9run_loop_Ev:205:0 + 1: 0 + 4.1: 4 + 4.2: 2 + 5: 4 + 5.1: 4 _ZN9oceanbase3lib6Thread7currentEv:4 + 5.2: 3 _ZN9oceanbase3lib6Thread7currentEv:3 + 7: 2 + 8: 9 _ZN9oceanbase6common13ObLightyQueue3popERPvl:2 + 9: 9 _ZN9oceanbase4palf11LogIOWorker15reduce_io_task_EPv:9 + 14: 0 + 15: 0 + 16.1: 0 + 17: 0 + 21: 0 + 5.5: _ZNK9oceanbase3lib6Thread12has_set_stopEv:8 + 2: 2 + 18: _ZN9oceanbase4palf11LogIOWorker15handle_io_task_EPNS0_9LogIOTaskE:0 + 3: 0 + 4.1: 0 + 6.1: 0 + 8: 0 + 9: 0 +_ZN9oceanbase3lib17ObMallocAllocator17get_tenant_remainEm:203:2 + 1: 2 + 2: 2 + 3.3: 2 _ZN9oceanbase3lib17ObMallocAllocator27with_resource_handle_invokeEmSt8functionIFiPNS0_17ObTenantMemoryMgrEEE:2 + 7: 3 + 3: _ZNSt8functionIFiPN9oceanbase3lib17ObTenantMemoryMgrEEEC2IZNS1_17ObMallocAllocator17get_tenant_remainEmE4$_46vEET_:60 + 8: 2 + 9: 2 + 7.1: _ZNSt14_Function_base13_Base_managerIZN9oceanbase3lib17ObMallocAllocator17get_tenant_remainEmE4$_46E15_M_init_functorERSt9_Any_dataOS4_:8 + 1.1: _ZNSt14_Function_base13_Base_managerIZN9oceanbase3lib17ObMallocAllocator17get_tenant_remainEmE4$_46E15_M_init_functorERSt9_Any_dataOS4_St17integral_constantIbLb1EE:8 + 1: 2 + 3.1: _ZNSt14_Function_baseD2Ev:66 + 2: 3 + 3: 3 _ZNSt14_Function_base13_Base_managerIZN9oceanbase3lib17ObMallocAllocator17get_tenant_remainEmE4$_46E10_M_managerERSt9_Any_dataRKS6_St18_Manager_operation.a1b49044713ee2b295a5be406ce610bf:3 + 3.2: 0 + 3.2: _ZNSt14_Function_baseD2Ev:0 + 2: 0 + 3: 0 + 3.2: 0 +_ZZN9oceanbase5share6schema19ObSchemaGetterGuard31get_outline_info_with_signatureEmmRKNS_6common8ObStringERPKNS1_13ObOutlineInfoEENK5$_921clEPKc.bfa63f0f3456173f564c7cf65584fc48:201:4 + 0: 3 + 0.1: 0 + 0.2: 3 + 0.3: 3 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:3 + 0.9: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:51 + 2: 3 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKNS0_8ObStringELb0EEC2EPKcS4_:0 + 0: 0 +_ZN9oceanbase6common12ObCurTraceId7TraceId4initERKNS0_6ObAddrE:201:1 + 1: 1 + 2: 1 + 3: 1 + 4: 1 + 5: 1 + 6: 1 + 7: 1 + 8: 0 + 9: 0 + 11: 1 + 13: 1 + 2: _ZN9oceanbase6common12ObCurTraceId12SeqGenerator7gen_seqEv:49 + 2: 1 + 3: 0 + 5: 1 + 4: _ZNK9oceanbase6common6ObAddr10using_ipv6Ev:9 + 0: 1 + 6: _ZNK9oceanbase6common6ObAddr8get_portEv:5 + 0: 1 + 7: _ZNK9oceanbase6common6ObAddr10using_ipv6Ev:4 + 0: 1 + 11: _ZNK9oceanbase6common6ObAddr8get_ipv4Ev:14 + 0: 1 +_ZNK9oceanbase6common4hash16ObPointerHashMapINS_5share6schema25ObOutlineSqlIdHashWrapperEPNS4_21ObSimpleOutlineSchemaENS4_17ObGetOutlineKeyV3ELl8064ENS0_19ModulePageAllocatorEE14get_refactoredERKS5_RS7_:200:2 + 1: 2 + 4: 2 + 5.1: 0 + 8.1: 2 + 9: 2 + 15: 2 + 9: _ZNK9oceanbase6common4hash18ObPointerHashArrayINS_5share6schema25ObOutlineSqlIdHashWrapperEPNS4_21ObSimpleOutlineSchemaENS4_17ObGetOutlineKeyV3EE14get_refactoredERKS5_RS7_:44 + 3: 2 + 4: 2 _ZNK9oceanbase6common4hash18ObPointerHashArrayINS_5share6schema25ObOutlineSqlIdHashWrapperEPNS4_21ObSimpleOutlineSchemaENS4_17ObGetOutlineKeyV3EE21placement_hash_searchERKS5_Rl:2 + 5: 0 + 5.1: 0 + 6.1: 0 + 9: 0 +easy_connection_check_rx_request:198:3 + 1: 3 + 8: 3 + 9.1: 0 + 9.2: 0 + 9.3: 0 + 9.4: 0 + 14: 3 + 14.1: 3 + 15: 0 + 15.1: 0 + 16: 0 + 17: 0 + 18: 0 + 21: 0 + 23: 0 + 24: 0 + 32: 0 + 33: 0 + 33.3: 0 + 34.2: 0 + 34.3: 0 + 34.4: 0 + 40: 3 + 33.1: easy_atomic_cmp_set:0 + 2: 0 +_ZZN9oceanbase8observer31init_srv_xlator_for_transactionEPNS0_14ObSrvRpcXlatorEEN6$_14348__invokeERKNS0_15ObGlobalContextERPNS_3rpc5frame14ObReqProcessorERNS_5obrpc19ObRpcSessionHandlerE.4993347bc18636af120d9542b56e15f4:198:1 + 0: 2 + 0: _ZZN9oceanbase8observer31init_srv_xlator_for_transactionEPNS0_14ObSrvRpcXlatorEENK6$_1434clERKNS0_15ObGlobalContextERPNS_3rpc5frame14ObReqProcessorERNS_5obrpc19ObRpcSessionHandlerE:157 + 0: 1 + 0.1: 1 _ZN9oceanbase6common16ObArenaAllocator5allocEl:1 + 0.5: 0 + 0.6: 2 _ZN9oceanbase3rpc5frame14ObReqProcessor4initEv:2 + 0.8: 0 + 0.11: 2 + 0.12: 0 + 0: _ZN9oceanbase8observer23get_sql_arena_allocatorEv:61 + 1: _ZN9oceanbase3lib6Worker4selfEv:22 + 3: 1 + 4: 0 + 1.1: _ZN9oceanbase3lib6Worker23get_sql_arena_allocatorEv:39 + 2: 1 + 2: _ZN9oceanbase3lib4Flow11current_ctxEv:28 + 2: _ZN9oceanbase3lib4Flow12current_flowEv:28 + 3: 1 + 8: 0 + 12: 0 + 8.1: _ZN9oceanbase3lib4FlowC2ERNS0_13MemoryContextE:0 + 1: 0 + 3: 0 + 10: _ZN9oceanbase3lib4Flow4initEv:0 + 4: 0 + 7: 0 + 8: 0 + 9: 0 + 12: 0 + 7: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 2.1: _ZNK9oceanbase3lib13MemoryContextptEv:4 + 1: 1 + 0.2: _ZN9oceanbase5obrpc14ObTxKeepalivePC2Ev:28 + 0: 2 + 0.10: _ZN9oceanbase8observer23worker_allocator_deleteINS_5obrpc14ObTxKeepalivePEEEvRPT_:0 + 3: 0 + 4: 0 + 4.1: 0 + 4: _ZN9oceanbase8observer23get_sql_arena_allocatorEv:0 + 1: _ZN9oceanbase3lib6Worker4selfEv:0 + 3: 0 + 4: 0 + 1.1: _ZN9oceanbase3lib6Worker23get_sql_arena_allocatorEv:0 + 2: 0 + 2: _ZN9oceanbase3lib4Flow11current_ctxEv:0 + 2: _ZN9oceanbase3lib4Flow12current_flowEv:0 + 3: 0 + 8: 0 + 12: 0 + 8.1: _ZN9oceanbase3lib4FlowC2ERNS0_13MemoryContextE:0 + 1: 0 + 3: 0 + 10: _ZN9oceanbase3lib4Flow4initEv:0 + 4: 0 + 7: 0 + 8: 0 + 9: 0 + 12: 0 + 7: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 2.1: _ZNK9oceanbase3lib13MemoryContextptEv:0 + 1: 0 + 0.11: _ZN9oceanbase5obrpc18ObRpcProcessorBase19set_session_handlerERNS0_19ObRpcSessionHandlerE:8 + 0: 2 +_ZN9oceanbase6common4hash9ObHashSetIlNS1_19ReadWriteDefendModeENS1_9hash_funcIlEENS1_8equal_toIlEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIlNS1_11HashNullObjEEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:196:7 + 1: 7 + 2.2: 7 _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIlNS1_11HashNullObjEEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEED2Ev:7 + 2: _ZN9oceanbase6common4hash11ObHashTableIlNS1_11HashMapPairIlNS1_11HashNullObjEEENS1_9hash_funcIlEENS1_8equal_toIlEENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19ReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:63 + 2.1: 7 + 2.2: 0 + 3: 0 + 5.2: 0 + 2: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairIlNS1_11HashNullObjEEE16pthread_rwlock_tNS1_5NCondEEEEEbRKT_:56 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairIlNS1_11HashNullObjEEE16pthread_rwlock_tNS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:56 + 2: 7 +easy_connection_rearm_failure_detection_timer.8d7a091449e6908669a41293537a4cf4:195:3 + 1: 3 + 3: 3 + 4: 3 + 7: 3 + 15: 0 + 16: 0 + 22: 0 + 23.1: 0 + 24: 0 + 25.1: 0 + 25.2: 0 + 25.3: 0 + 25.4: 0 + 25.7: 0 + 29: 0 + 30.2: 3 + 28: easy_connection_set_keepalive:0 + 2: 0 + 5: 0 + 6: 0 + 7.1: 0 + 7.2: 0 + 7.3: 0 + 7.4: 0 + 7.7: 0 + 9: 0 + 10: 0 + 11: 0 +_ZN9oceanbase7storage19ObTablesHandleArrayD2Ev:193:4 + 1: 3 + 2: 3 _ZN9oceanbase7storage19ObTablesHandleArray5resetEv:3 + 3: 2 + 3.1: 0 + 3.2: 0 + 3: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl8ENS0_19ModulePageAllocatorELb0EED2Ev:114 + 1: 2 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl8ENS0_19ModulePageAllocatorELb0EE7destroyEv:84 + 9: 2 + 11: 0 + 13: 2 + 15: 2 + 24: 2 + 10: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl8ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 3.3: _ZN9oceanbase6common10ObTabletIDD2Ev:16 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:16 + 0: 2 + 3.4: _ZN9oceanbase6common10ObTabletIDD2Ev:0 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:0 + 0: 0 +_ZN9oceanbase7storage19ObTablesHandleArrayD1Ev:193:4 + 1: 3 + 2: 3 _ZN9oceanbase7storage19ObTablesHandleArray5resetEv:3 + 3: 2 + 3.1: 0 + 3.2: 0 + 3: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl8ENS0_19ModulePageAllocatorELb0EED2Ev:114 + 1: 2 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl8ENS0_19ModulePageAllocatorELb0EE7destroyEv:84 + 9: 2 + 11: 0 + 13: 2 + 15: 2 + 24: 2 + 10: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl8ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 3.3: _ZN9oceanbase6common10ObTabletIDD2Ev:16 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:16 + 0: 2 + 3.4: _ZN9oceanbase6common10ObTabletIDD2Ev:0 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:0 + 0: 0 +_ZN9oceanbase11transaction33ObTenantWeakReadClusterVersionMgr21update_server_versionERKNS_6common6ObAddrEllllRb:193:1 + 6: 1 + 7: 1 + 9: 1 + 10: 1 + 12: 1 + 15: 1 + 22: 0 + 25.1: 0 + 26.1: 0 + 27.2: 0 + 28.1: 0 + 31.1: 0 + 31.2: 0 + 32: 0 + 32.1: 0 + 33.1: 0 + 36: 0 + 43: 1 + 44: 1 + 46.1: 0 + 47: 0 + 49: 1 + 53: 0 + 54.7: 0 + 54.8: 0 + 15: _ZN9oceanbase6common14SpinRLockGuardC2ERKNS0_10SpinRWLockE:35 + 1: 1 + 3: 1 + 4.1: 0 + 3: _ZN9oceanbase6common10SpinRWLock6rdlockEl:20 + 0: 1 _ZN9oceanbase6common7ObLatch6rdlockEjl:1 + 18: _ZN9oceanbase11transaction33ObTenantWeakReadClusterVersionMgr17find_match_serverERlRKNS_6common6ObAddrERPNS1_10ServerInfoE:33 + 6.1: 1 + 6.2: 0 + 7: 1 + 7.1: 1 _ZNK9oceanbase11transaction33ObTenantWeakReadClusterVersionMgr10ServerInfo5matchERKNS_6common6ObAddrE:1 + 8: 1 + 13: 1 + 22: _ZN9oceanbase11transaction33ObTenantWeakReadClusterVersionMgr10ServerInfoC2ERKNS_6common6ObAddrElll:0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 9.1: 0 + 10: 0 + 0.1: _ZN9oceanbase6common15ObSmallSpinLockIhLl0ELl500ELl100EEC2Ev:0 + 0: _ZN9oceanbase6common15ObSmallSpinLockIhLl0ELl500ELl100EE4initEv:0 + 2: 0 + 5: _ZN9oceanbase6common6ObAddraSERKS1_:0 + 1: 0 + 2: 0 + 3: 0 + 25: _ZN9oceanbase6common10SpinRWLock6unlockEv:0 + 0: 0 + 27.1: _ZN9oceanbase6common10SpinRWLock6wrlockEl:0 + 0: 0 +unw_backtrace:190:2 + 1: 2 + 4: 2 + 6: 2 _Ux86_64_getcontext_trace:2 + 8: 2 + 9: 0 + 11: 2 _ULx86_64_tdep_trace:2 + 13: 0 + 17: 2 + 18: 2 + 14: slow_backtrace:0 + 6: 0 + 9: 0 + 11: 0 + 14: 0 + 16: 0 +backtrace:190:2 + 1: 2 + 4: 2 + 6: 2 _Ux86_64_getcontext_trace:2 + 8: 2 + 9: 0 + 11: 2 _ULx86_64_tdep_trace:2 + 13: 0 + 17: 2 + 18: 2 + 14: slow_backtrace:0 + 6: 0 + 9: 0 + 11: 0 + 14: 0 + 16: 0 +_ZN9oceanbase6common5guard27DefaultSharedGuardAllocator5allocEl:190:2 + 0: 2 + 4: 1 + 4.1: _ZN9oceanbase6common9ob_mallocElRKNS_3lib7ObLabelE:141 + 3: 2 + 2.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:46 + 5: 2 + 7: 2 + 4: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:65 + 3: 2 _ZN9oceanbase3lib17ObMallocAllocator12get_instanceEv:2 + 4: 2 + 5: 2 _ZN9oceanbase3lib17ObMallocAllocator5allocElRKNS0_9ObMemAttrE:2 + 6: 1 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 9: _ZSt3maxIlERKT_S2_S2_:0 + 5: 0 +_ZNK9oceanbase4palf14PalfHandleImpl14get_palf_epochERl:189:7 + 1: 7 + 3: 7 + 6: 7 + 8: 7 + 6: _ZNK9oceanbase4palf9LogEngine14get_palf_epochEv:49 + 0: 7 +_ZNK9oceanbase3sql25ObDumpAllCacheObjByTypeOp11should_dumpEPNS0_17ObILibCacheObjectE:189:9 + 1: 7 + 3: 7 + 5: 0 + 8: 0 + 11: 0 + 3: _ZNK9oceanbase3sql17ObILibCacheObject14should_releaseEl:91 + 3: 7 + 3.1: 7 + 3: _ZNK9oceanbase3sql17ObILibCacheObject13get_ref_countEv:28 + 0: 7 +_ZNK9oceanbase7storage19ObTabletMemtableMgr20get_active_memtable_ERNS0_15ObTableHandleV2E:188:5 + 1: 4 + 2: 4 + 4: 4 + 5: 4 + 7.1: 0 + 8: 0 + 9: 0 + 9.1: 0 + 10: 0 + 11.1: 0 + 12.1: 0 + 13: 0 + 14: 0 + 17: 4 + 4: _ZNK9oceanbase7storage14ObIMemtableMgr19get_memtable_count_Ev:32 + 0: 4 + 9: _ZNK9oceanbase7storage14ObIMemtableMgr17get_memtable_idx_El:0 + 0: 0 +_ZN9oceanbase3sql18ObBasicSessionInfo21is_trx_commit_timeoutERPNS_11transaction13ObITxCallbackERi:187:3 + 1: 3 + 3: 3 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:3 + 4: 2 + 5: 0 + 6: 0 + 7: 0 + 8.1: 0 + 9: 0 + 10: 0 + 13: 2 + 4: _ZNK9oceanbase3sql18ObBasicSessionInfo17is_in_transactionEv:50 + 0: 2 + 0.1: _ZNK9oceanbase11transaction8ObTxDesc8is_in_txEv:18 + 0: 2 + 4.1: _ZN9oceanbase11transaction8ObTxDesc13is_committingEv:18 + 2: 2 + 5: _ZN9oceanbase11transaction8ObTxDesc13is_tx_timeoutEv:0 + 0: 0 + 0: _ZN9oceanbase6common16ObClockGenerator8getClockEv:0 + 4: 0 + 5.1: 0 + 8: 0 + 6: _ZN9oceanbase6common16ObClockGenerator6get_usEv:0 + 2: 0 + 8.1: _ZN9oceanbase11transaction8ObTxDesc20is_tx_commit_timeoutEv:0 + 0: 0 + 0: _ZN9oceanbase6common16ObClockGenerator8getClockEv:0 + 4: 0 + 5.1: 0 + 8: 0 + 6: _ZN9oceanbase6common16ObClockGenerator6get_usEv:0 + 2: 0 +_ZN9oceanbase8observer24ObInnerSQLConnectionPool9free_connEPNS0_20ObInnerSQLConnectionE:186:2 + 1: 1 + 2: 1 + 3: 1 + 4: 0 + 5.1: 0 + 6.1: 1 + 7: 0 + 8.1: 0 + 10: 1 + 11: 1 + 12: 0 + 13.1: 0 + 15: 1 _ZN9oceanbase8observer20ObInnerSQLConnectionD1Ev:1 + 16: 0 + 17: 0 + 17.1: 0 + 18: 0 + 19.1: 0 + 21: 0 + 21.2: 0 + 22: 0 + 26: 0 + 26.1: 0 + 29: 0 + 10: _ZN9oceanbase3lib11ObLockGuardINS_6common12ObThreadCondEEC2ERS3_:55 + 1: 1 + 2: 1 + 4: 1 + 5.1: 0 + 4: _ZN9oceanbase6common12ObThreadCond4lockEv:35 + 2: 1 + 3: 1 + 4: 1 + 5: 0 + 6.1: 0 + 7.1: 1 + 8: 0 + 9.1: 0 + 11: 1 + 11: _ZN9oceanbase6common7ObDListINS_8observer20ObInnerSQLConnectionEE6removeEPS3_:75 + 3: 1 + 3.2: 1 + 7: 1 + 6: _ZN9oceanbase6common11ObDLinkBaseINS_8observer20ObInnerSQLConnectionEE6unlinkEv:36 + 2: 1 + 4: 1 + 5: 1 + 6: 1 + 7: 1 + 16: _ZN9oceanbase8observer24ObInnerSQLConnectionPool8LinkNodeC2Ev:0 + 0: 0 + 0: _ZN9oceanbase6common11ObDLinkBaseINS_8observer24ObInnerSQLConnectionPool8LinkNodeEEC2Ev:0 + 1: 0 +_ZN9oceanbase7storage13ObLSLockGuardC2ERNS0_8ObLSLockEllb:186:2 + 4: 2 + 5: 2 + 7: 2 + 9: 2 + 11: 2 + 13: 2 + 14: 2 _ZN9oceanbase7storage8ObLSLock4lockEll:2 + 15: 3 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:2 + 17: 0 + 19: 0 + 20: 0 + 23: 3 + 19: _ZN9oceanbase7storage8ObLSLock6unlockEl:0 + 2: 0 + 3: 0 + 6.1: 0 + 7: 0 + 7.1: 0 + 8.1: 0 + 11: 0 + 12: 0 +_ZN9oceanbase7storage13ObLSLockGuardC1ERNS0_8ObLSLockEllb:186:2 + 4: 2 + 5: 2 + 7: 2 + 9: 2 + 11: 2 + 13: 2 + 14: 2 _ZN9oceanbase7storage8ObLSLock4lockEll:2 + 15: 3 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:2 + 17: 0 + 19: 0 + 20: 0 + 23: 3 + 19: _ZN9oceanbase7storage8ObLSLock6unlockEl:0 + 2: 0 + 3: 0 + 6.1: 0 + 7: 0 + 7.1: 0 + 8.1: 0 + 11: 0 + 12: 0 +_ZN9oceanbase6common4hash12ObReferedMapImNS_10rootserver14DRUnitStatInfoEE6locateERKmRPNS5_4ItemE:186:1 + 1: 1 + 2: 1 + 3: 1 + 4: 1 + 5: 0 + 6.1: 0 + 7.1: 1 + 14: 0 + 15: 0 + 15.1: 0 + 16.1: 0 + 19: 0 + 20: 0 + 20.3: 0 + 21.1: 0 + 28.1: 0 + 30: 0 + 31: 0 + 32: 0 + 33.1: 0 + 35: 1 + 38: 1 + 7.1: _ZN9oceanbase6common4hash11ObHashTableImNS1_12ObReferedMapImNS_10rootserver14DRUnitStatInfoEE4ItemENS1_9hash_funcImEENS1_8equal_toImEENS7_6GetKeyENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi5ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKmRPKS7_l:100 + 5: 1 + 5.1: 1 + 6.1: 0 + 10: 1 + 5: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_12ObReferedMapImNS_10rootserver14DRUnitStatInfoEE4ItemENS1_5NLockENS1_5NCondEEEEEbRKT_:10 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_12ObReferedMapImNS_10rootserver14DRUnitStatInfoEE4ItemENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:10 + 2: 1 + 9: _ZNK9oceanbase6common4hash9hash_funcImEclERKm:3 + 0: 1 + 16: _ZN9oceanbase6common4hash11ObHashTableImNS1_12ObReferedMapImNS_10rootserver14DRUnitStatInfoEE4ItemENS1_9hash_funcImEENS1_8equal_toImEENS7_6GetKeyENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi5ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE32internal_get_with_timeout_unsafeERNS1_17ObHashTableBucketIS7_NS1_5NLockENS1_5NCondEEERKmRPKS7_l:55 + 6: _ZNK9oceanbase6common4hash11ObHashTableImNS1_12ObReferedMapImNS_10rootserver14DRUnitStatInfoEE4ItemENS1_9hash_funcImEENS1_8equal_toImEENS7_6GetKeyENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi5ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE12internal_getERKNS1_17ObHashTableBucketIS7_NS1_5NLockENS1_5NCondEEERKmRPKS7_Rb:55 + 6: 1 + 8.1: 1 + 10: 1 + 11: 1 + 16: 0 + 9: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_12ObReferedMapImNS_10rootserver14DRUnitStatInfoEE4ItemEE16check_magic_codeEv:13 + 0: 1 + 9.1: _ZL12abort_unlessb:2 + 5: 1 + 6: 0 + 10.1: _ZNK9oceanbase6common4hash8equal_toImEclERKmS5_:4 + 2: 1 + 13: _ZN9oceanbase6common4hash12ObReferedMapImNS_10rootserver14DRUnitStatInfoEE4ItemC2Ev:0 + 0: 0 + 0: _ZN9oceanbase10rootserver14DRUnitStatInfoC2Ev:0 + 0: 0 + 1: 0 + 4: 0 + 2: _ZN9oceanbase5share10ObUnitInfoC2Ev:0 + 0: 0 + 0.1: 0 + 0.7: 0 + 14: _ZN9oceanbase10rootserver14DRUnitStatInfo7set_keyEm:0 + 0: 0 + 18: _ZN9oceanbase6common4hash11ObHashTableImNS1_12ObReferedMapImNS_10rootserver14DRUnitStatInfoEE4ItemENS1_9hash_funcImEENS1_8equal_toImEENS7_6GetKeyENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi5ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKmRPKS7_l:0 + 5: 0 + 5.1: 0 + 6.1: 0 + 10: 0 + 5: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_12ObReferedMapImNS_10rootserver14DRUnitStatInfoEE4ItemENS1_5NLockENS1_5NCondEEEEEbRKT_:0 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_12ObReferedMapImNS_10rootserver14DRUnitStatInfoEE4ItemENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:0 + 2: 0 + 9: _ZNK9oceanbase6common4hash9hash_funcImEclERKm:0 + 0: 0 + 16: _ZN9oceanbase6common4hash11ObHashTableImNS1_12ObReferedMapImNS_10rootserver14DRUnitStatInfoEE4ItemENS1_9hash_funcImEENS1_8equal_toImEENS7_6GetKeyENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi5ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE32internal_get_with_timeout_unsafeERNS1_17ObHashTableBucketIS7_NS1_5NLockENS1_5NCondEEERKmRPKS7_l:0 + 35: 0 + 6: _ZNK9oceanbase6common4hash11ObHashTableImNS1_12ObReferedMapImNS_10rootserver14DRUnitStatInfoEE4ItemENS1_9hash_funcImEENS1_8equal_toImEENS7_6GetKeyENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi5ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE12internal_getERKNS1_17ObHashTableBucketIS7_NS1_5NLockENS1_5NCondEEERKmRPKS7_Rb:0 + 6: 0 + 8.1: 0 + 10: 0 + 11: 0 + 12: 0 + 16: 0 + 9: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_12ObReferedMapImNS_10rootserver14DRUnitStatInfoEE4ItemEE16check_magic_codeEv:0 + 0: 0 + 9.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 10.1: _ZNK9oceanbase6common4hash8equal_toImEclERKmS5_:0 + 2: 0 + 24: _ZN9oceanbase6common4hash12ObReferedMapImNS_10rootserver14DRUnitStatInfoEE4Item7set_mapEPS5_:0 + 0: 0 + 27: _ZN9oceanbase6common4hash12ObReferedMapImNS_10rootserver14DRUnitStatInfoEE4ItemD2Ev:0 + 0: _ZN9oceanbase10rootserver14DRUnitStatInfoD2Ev:0 + 0: _ZN9oceanbase5share10ObUnitInfoD2Ev:0 + 0: _ZN9oceanbase5share14ObResourcePoolD2Ev:0 + 0: _ZN9oceanbase6common13ObSEArrayImplINS0_19ObFixedLengthStringILl128EEELl5ENS0_19ModulePageAllocatorELb0EED2Ev:0 + 1: 0 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS0_19ObFixedLengthStringILl128EEELl5ENS0_19ModulePageAllocatorELb0EE7destroyEv:0 + 9: 0 + 11: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplINS0_19ObFixedLengthStringILl128EEELl5ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 27.1: _ZN9oceanbase6common4hash12ObReferedMapImNS_10rootserver14DRUnitStatInfoEE4ItemD2Ev:0 + 0: _ZN9oceanbase10rootserver14DRUnitStatInfoD2Ev:0 + 0: _ZN9oceanbase5share10ObUnitInfoD2Ev:0 + 0: _ZN9oceanbase5share14ObResourcePoolD2Ev:0 + 0: _ZN9oceanbase6common13ObSEArrayImplINS0_19ObFixedLengthStringILl128EEELl5ENS0_19ModulePageAllocatorELb0EED2Ev:0 + 1: 0 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS0_19ObFixedLengthStringILl128EEELl5ENS0_19ModulePageAllocatorELb0EE7destroyEv:0 + 9: 0 + 11: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplINS0_19ObFixedLengthStringILl128EEELl5ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase6common18ObTimeZoneInfoWrap25set_error_on_overlap_timeEb:186:6 + 1: 6 + 3: 6 + 4: 6 + 7: 6 + 5: _ZN9oceanbase6common14ObTimeZoneInfo25set_error_on_overlap_timeEb:30 + 0: 6 +_ZN9oceanbase11transaction11ObTransCond4waitElRi:185:1 + 1: 1 + 4: 1 + 5.1: 0 + 9: 1 _ZN9oceanbase6common16ObClockGenerator8getClockEv:1 + 10.1: 1 + 12: 1 + 13.1: 1 + 14: 1 _ZN9oceanbase6common16ObClockGenerator8getClockEv:1 + 14.1: 0 + 15: 0 + 15.1: 0 _ZN6obutil9ObSysTimeC1El:1 + 15.2: 1 _ZNK6obutil9ObMonitorINS_5MutexEE10timed_waitERKNS_9ObSysTimeE:1 + 15.4: 0 + 20: 0 + 22: 0 + 22.1: 0 + 23.1: 1 _ZN9oceanbase3lib6Worker9sched_runEl:1 + 26: 1 + 10: _ZN9oceanbase3lib6Worker4selfEv:28 + 3: 1 + 4: 0 + 12: _ZN6obutil7ObLockTINS_9ObMonitorINS_5MutexEEEEC2ERKS3_:35 + 1: 1 + 4: 1 + 3: _ZNK6obutil9ObMonitorINS_5MutexEE4lockEv:24 + 2: 1 _ZNK6obutil5Mutex4lockEv:1 + 3: 1 + 4: 1 + 23: _ZN9oceanbase3lib6Worker4selfEv:28 + 3: 1 + 4: 0 +access_mem:184:4 + 2: 4 + 3: 4 + 6: 0 + 11: 4 + 14: 0 + 16: 4 + 19: 4 + 20: 4 + 12: validate_mem:0 + 4: 0 + 7: 0 + 11: 0 + 17: 0 + 14: is_cached_valid_mem:0 + 3: 0 + 5: 0 + 20: cache_valid_mem:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 9: 0 + 13: 0 + 14: 0 + 15: 0 +_ZN9oceanbase7storage8ObTablet26update_upper_trans_versionERNS0_4ObLSERb:184:1 + 1: 1 + 2: 1 + 3: 1 + 6: 1 + 7: 0 + 8.1: 0 + 14.1: 1 + 14.2: 2 + 14.3: 2 + 14.5: 1 + 15: 1 + 16: 1 + 17: 0 + 18.1: 0 + 19.1: 1 _ZNK9oceanbase12blocksstable9ObSSTable23get_upper_trans_versionEv:1 + 20: 0 + 21: 0 + 23.1: 0 + 24.1: 0 + 25: 0 + 26.1: 0 + 31: 0 + 32.1: 0 + 34: 0 + 35.1: 0 + 35.2: 0 + 35.6: 0 + 42: 1 + 13: _ZN9oceanbase7storage18ObTabletTableStore18get_minor_sstablesEv:11 + 0: 1 + 15: _ZNK9oceanbase7storage13ObITableArrayixEl:17 + 0: 1 + 0.2: 1 + 21.1: _ZN9oceanbase7storage4ObLS43get_upper_trans_version_before_given_log_tsIJlRlEEEiDpOT_:13 + 0.2: 0 +_ZN9oceanbase3sql29ObTenantCachedSchemaGuardInfo27refresh_tenant_schema_guardEm:183:1 + 1: 1 + 2: 1 + 4: 2 + 4.2: 1 _ZN9oceanbase5share6schema27ObMultiVersionSchemaService23get_tenant_schema_guardEmRNS1_19ObSchemaGetterGuardEllNS2_17RefreshSchemaModeE:1 + 5.1: 0 + 6.1: 2 _ZNK9oceanbase5share6schema19ObSchemaGetterGuard18get_schema_versionEmRl:2 + 7.1: 0 + 9: 1 + 10: 1 + 13: 1 + 4: _ZN9oceanbase8observer8ObServer12get_instanceEv:17 + 2: 1 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 9: _ZN9oceanbase6common16ObClockGenerator8getClockEv:17 + 4: 1 + 5.1: 0 + 8: 1 + 6: _ZN9oceanbase6common16ObClockGenerator6get_usEv:0 + 2: 0 +_ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS_5share6ObLSIDENS5_11ObLSReplicaEEEEELi11ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEE5allocIJEEEPS9_DpRT_:182:0 + 1: 0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 6.1: 0 + 6.2: 0 + 7.1: 0 + 9: 0 + 10: 0 + 11: 0 + 14: 0 + 15: 0 + 15.1: 0 + 18.1: 0 + 24: 1 + 26: 1 + 27: 1 + 28: 1 + 32: 1 + 33: 1 + 34: 1 + 35: 1 + 36: 1 + 37: 1 + 38: 1 + 42: 1 + 43: 1 + 46.4: 1 + 3: _ZN9oceanbase6common4hash10SpinLockerC2ERVi:0 + 2: 0 + 3.1: 0 + 17: _ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocator5allocEl:9 + 4: _ZN9oceanbase6common9ob_mallocElRKNS_3lib9ObMemAttrE:9 + 3: 0 + 4: 0 + 5: 0 + 6: 1 + 7: 0 + 8: 0 + 10: 0 + 11: 0 + 13: 0 + 14.1: 0 + 8: _ZNK9oceanbase3lib14AllocFailedCtx9need_washEv:0 + 2: 0 + 43: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_11HashMapPairINS_5share6ObLSIDENS4_11ObLSReplicaEEEEC2Ev:27 + 0: _ZN9oceanbase6common4hash11HashMapPairINS_5share6ObLSIDENS3_11ObLSReplicaEEC2Ev:27 + 0: 2 + 0.4: 2 _ZN9oceanbase5share11ObLSReplicaC1Ev:2 + 0: _ZN9oceanbase5share6ObLSIDC2Ev:16 + 0: 2 + 0.2: _ZN9oceanbase5share6ObLSIDD2Ev:0 + 0: _ZN9oceanbase5share6ObLSID5resetEv:0 + 0: 0 + 46.4: _ZN9oceanbase6common4hash10SpinLockerD2Ev:9 + 2: 1 + 3: 1 + 46.5: _ZN9oceanbase6common4hash10SpinLockerD2Ev:0 + 2: 0 + 3: 0 +_ZN9oceanbase11transaction11ObGtsSource7get_gtsEPNS0_10ObTsCbTaskERl:182:2 + 1: 2 + 2: 2 + 3: 2 + 6: 2 + 7: 0 + 8.1: 0 + 9.1: 2 + 11: 2 + 14.1: 0 + 18: 0 + 20: 0 + 22.1: 0 + 24: 0 + 27: 0 + 28.1: 0 + 34: 2 + 9.1: _ZNK9oceanbase11transaction15ObGTSLocalCache7get_gtsERl:36 + 3: 2 + 4: 2 + 5: 2 + 20: _ZN9oceanbase11transaction14ObGTSTaskQueue4pushEPNS0_10ObTsCbTaskE:0 + 2: 0 + 3: 0 + 4: 0 + 5.1: 0 + 9.1: 0 + 14: 0 + 9.3: _ZN9oceanbase6common11ObLinkQueue4pushEPNS0_6ObLinkE:0 + 6: 0 + 7: _ZN9oceanbase6common11ObLinkQueue3idxEl:0 + 0: 0 + 8.1: _ZN9oceanbase6common13ObSpLinkQueue4pushEPNS0_6ObLinkE:0 + 7: 0 + 8: 0 + 9: 0 + 27: _ZN9oceanbase11transaction11ObGtsSource12refresh_gts_Eb:0 + 6: 0 + 7.1: 0 + 10: 0 + 13: 0 + 16: 0 + 3: _ZN9oceanbase6common6ObAddrC2Ev:0 + 1: 0 + 32: _ZN9oceanbase11transaction15ObGtsStatistics21inc_get_gts_cache_cntEv:18 + 0.1: 2 +_ZN9oceanbase6common11ObIORequest7destroyEv:181:1 + 1: 1 + 3: 1 + 6: 1 + 7: 1 + 7.1: 1 + 8: 1 _ZN9oceanbase5share13ObLocalDevice9free_iocbEPNS_6common6ObIOCBE:1 + 9: 1 + 12: 1 + 12.1: 0 + 14: 0 + 17: 1 + 23: 1 + 24: 1 + 25: 1 _ZN9oceanbase6common12ObThreadCond7destroyEv:1 + 29: 0 + 30: 0 + 31: 0 + 35: 0 + 11: _ZN9oceanbase6common8ObIOInfo5resetEv:32 + 2: 1 + 3: 1 _ZN9oceanbase6common6ObIOFd5resetEv:1 + 5: 1 + 12.1: _ZN9oceanbase6common11ObRefHolderINS0_17ObTenantIOManagerEE7get_ptrEv:0 + 0: 0 + 13.1: _ZN9oceanbase6common13ObIOAllocator4freeEPv:0 + 2: 0 + 3: 0 + 5: 0 + 2: _ZN9oceanbase6common14ObIOMemoryPoolILl2101248EE7containEPv:0 + 3.1: 0 + 4: 0 + 4.1: 0 + 5: 0 + 5.1: 0 + 27: _ZN9oceanbase6common11ObIORetCode5resetEv:0 + 2: 0 + 33: _ZN9oceanbase6common11ObRefHolderINS0_17ObTenantIOManagerEE5resetEv:0 + 1: 0 + 2: 0 + 3: 0 +_ZN9oceanbase5share19ObPersistentLSTable19construct_ls_infos_ERNS_6common9sqlclient13ObMySQLResultERNS2_8ObIArrayINS0_8ObLSInfoEEE:181:0 + 3: 0 + 4: 0 + 5: 0 + 5.1: 0 + 6: 0 + 7.1: 0 + 11.1: 1 + 12: 1 _ZN9oceanbase8observer16ObInnerSQLResult4nextEv:1 + 12.1: 1 + 14: 1 + 16.1: 0 + 20: 0 + 21: 0 _ZN9oceanbase5share19ObPersistentLSTable20construct_ls_replicaERNS_6common9sqlclient13ObMySQLResultERNS0_11ObLSReplicaE:1 + 21.1: 1 + 22.1: 0 + 23.1: 1 _ZNK9oceanbase5share11ObLSReplica8is_validEv:1 + 23.2: 1 + 24: 0 + 25.1: 0 + 26.2: 0 + 27: 0 + 27.1: 0 + 28.1: 0 + 31: 1 _ZNK9oceanbase5share8ObLSInfo8is_validEv:1 + 31.1: 2 + 33: 0 + 33.1: 0 + 34.1: 0 + 35.1: 0 + 35.2: 0 + 36.1: 0 + 40: 1 + 40.2: 1 _ZN9oceanbase5share8ObLSInfo15init_by_replicaERKNS0_11ObLSReplicaE:1 + 40.3: 1 + 41.1: 0 + 46: 0 + 46.1: 1 _ZNK9oceanbase5share8ObLSInfo8is_validEv:1 + 46.2: 1 + 49: 1 _ZN9oceanbase5share8ObLSInfo21update_replica_statusEv:1 + 49.1: 0 + 50.1: 0 + 51.1: 0 + 51.2: 0 + 52.1: 0 + 56: 0 + 9: _ZN9oceanbase5share8ObLSInfoC2Ev:0 + 1: 0 + 4: 0 + 3: _ZN9oceanbase6common7ObArrayINS_5share11ObLSReplicaENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEEC2Ev:0 + 0.1: 0 + 0.5: _ZN9oceanbase6common11ObArrayImplINS_5share11ObLSReplicaENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEEC2ElRKS4_:0 + 6: 0 + 7.1: 0 + 2: _ZN9oceanbase6common8ObIArrayINS_5share11ObLSReplicaEEC2Ev:0 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_5share11ObLSReplicaEEC2Ev:0 + 0: 0 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 10: _ZN9oceanbase5share11ObLSReplicaC2Ev:0 + 1: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 14: 0 + 16: 0 + 18: 0 + 3: _ZN9oceanbase6common6ObAddrC2Ev:0 + 1: 0 + 6: _ZN9oceanbase6common9ObSEArrayINS_5share12SimpleMemberELl7ENS0_15ObNullAllocatorELb0EEC2Ev:0 + 0.1: 0 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_5share12SimpleMemberELl7ENS0_15ObNullAllocatorELb0EEC2ElRKS4_:0 + 5: 0 + 6: 0 + 8: 0 + 17.1: 0 + 2: _ZN9oceanbase6common8ObIArrayINS_5share12SimpleMemberEEC2EPS3_l:0 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_5share12SimpleMemberEEC2EPS3_l:0 + 0: 0 + 7: _ZN9oceanbase6common15ObNullAllocatorC2ERKS1_:0 + 0: 0 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:0 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:0 + 2: 0 + 8: 0 + 10: _ZN9oceanbase5share17ObLSRestoreStatusC2Ev:0 + 0: 0 + 11: _ZN9oceanbase6common17ObReplicaPropertyC2Ev:0 + 0: 0 + 13: _ZN9oceanbase6common19ObFixedLengthStringILl128EEC2Ev:0 + 3: 0 + 26.1: _ZNK9oceanbase5share8ObLSInfo15is_self_replicaERKNS0_11ObLSReplicaE:15 + 2: 1 + 3: 1 + 2: _ZNK9oceanbase5share11ObLSReplica13get_tenant_idEv:7 + 0: 1 + 3.1: _ZNK9oceanbase5share11ObLSReplica9get_ls_idEv:0 + 0: _ZN9oceanbase5share6ObLSIDC2ERKS1_:0 + 0: 0 + 3.2: _ZNK9oceanbase5share6ObLSIDeqERKS1_:0 + 0: 0 + 39: _ZN9oceanbase5share8ObLSInfo5resetEv:50 + 2: 2 + 4: _ZN9oceanbase6common11ObArrayImplINS_5share11ObLSReplicaENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE5resetEv:22 + 0: 2 _ZN9oceanbase6common11ObArrayImplINS_5share11ObLSReplicaENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE7destroyEv:2 + 55: _ZN9oceanbase5share11ObLSReplicaD2Ev:0 + 2.1: _ZN9oceanbase6common13ObSEArrayImplINS_5share12SimpleMemberELl7ENS0_15ObNullAllocatorELb0EED2Ev:0 + 1: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_5share12SimpleMemberELl7ENS0_15ObNullAllocatorELb0EE7destroyEv:0 + 9: 0 + 11: 0 + 55.1: _ZN9oceanbase5share11ObLSReplicaD2Ev:0 + 2.1: _ZN9oceanbase6common13ObSEArrayImplINS_5share12SimpleMemberELl7ENS0_15ObNullAllocatorELb0EED2Ev:0 + 1: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_5share12SimpleMemberELl7ENS0_15ObNullAllocatorELb0EE7destroyEv:0 + 9: 0 + 11: 0 + 55.2: _ZN9oceanbase5share8ObLSInfoD2Ev:0 + 1: 0 + 2: 0 + 55.3: _ZN9oceanbase5share8ObLSInfoD2Ev:0 + 1: 0 + 2: 0 +_ZN9oceanbase11transaction20ObKeepAliveLSHandler10check_gts_Ev:181:1 + 1: 1 + 3: 1 + 4: 1 + 5: 1 + 7: 1 + 8: 0 + 9.1: 0 + 10.1: 1 _ZN9oceanbase11transaction7ObTsMgr12get_instanceEv:1 + 10.4: 1 _ZN9oceanbase11transaction7ObTsMgr7get_gtsEmPNS0_10ObTsCbTaskERl:1 + 11.1: 0 + 12.1: 1 + 13.1: 0 + 14.1: 1 + 14.2: 1 + 16.1: 1 + 20: 1 + 21: 1 + 24: 1 + 10.2: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:19 + 2: 1 + 2.1: 0 + 2.2: 0 + 10.3: _ZNK9oceanbase5share12ObTenantBase2idEv:15 + 0: 1 +_ZNK9oceanbase6common8ObMember10get_serverEv:180:18 + 1: 18 + 2: 18 +_ZNK9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEE7DerivedINS2_26ObCleanoutNothingOperationEE4copyERNS0_12ObIAllocatorEPv:180:4 + 0: 4 + 7: 4 + 10: 0 + 11: 0 + 12.1: 0 + 16: 4 + 8: _ZN9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEE7DerivedINS2_26ObCleanoutNothingOperationEEC2IRKSB_EEOT_:56 + 0: 4 +_ZN9oceanbase6common8TCRWLock10WLockGuardD2Ev:180:9 + 0: 9 + 0.1: 9 + 0.2: 0 + 0: _ZN9oceanbase6common8TCRWLock8wrunlockEv:81 + 3: 9 + 4: 9 _ZN9oceanbase6common7ObLatch6unlockEPKj:9 +_ZN9oceanbase5share6schema8ObSchema25get_cs_type_with_cmp_modeENS_6common14ObNameCaseModeE:180:6 + 1: 6 + 4: 6 + 6.1: 0 + 9.1: 0 + 11: 6 +_ZNK9oceanbase10logservice12ObLogHandler13get_max_ts_nsERl:179:0 + 1: 0 + 2: 0 + 3: 1 _ZNK9oceanbase4palf10PalfHandle13get_max_ts_nsERl:1 + 4: 1 + 4: _ZN9oceanbase6common8TCRWLock10RLockGuardD2Ev:144 + 0: 1 + 0.2: 0 + 0: _ZN9oceanbase6common8TCRWLock8rdunlockEv:140 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:5 + 0: 1 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPi:118 + 2: 1 + 4.1: 1 + 4.2: 0 + 6: 1 + 6.1: 1 + 10: 1 + 2: _ZN9oceanbase6common8get_itidEv:28 + 4: 1 + 5: 0 + 6: 0 + 8: 0 + 11: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:9 + 2: 1 + 2.1: 0 + 3: 0 + 4.1: _ZN9oceanbase6common8TCRWLock10RLockGuardD2Ev:0 + 0: 0 + 0.2: 0 + 0: _ZN9oceanbase6common8TCRWLock8rdunlockEv:0 + 3: _ZN9oceanbase6common8TCRWLock9get_tcrefEv:0 + 0: 0 + 3.1: _ZN9oceanbase6common5TCRef7dec_refEPi:0 + 2: 0 + 4.1: 0 + 4.2: 0 + 6: 0 + 6.1: 0 + 10: 0 + 2: _ZN9oceanbase6common8get_itidEv:0 + 4: 0 + 5: 0 + 6: 0 + 8: 0 + 11: _ZN9oceanbase6common5TCRef5xref_EPii:0 + 0: 0 + 4: _ZN9oceanbase6common9LWaitCond6signalEv:0 + 2: 0 + 2.1: 0 + 3: 0 +_ZNK9oceanbase8observer16ObInnerSQLResult8get_boolEPKcRb:178:2 + 0: 2 + 0.1: 0 + 0.2: 0 + 0.5: 2 + 0.6: 0 + 0.7: 0 + 0.10: 2 _ZNK9oceanbase8observer16ObInnerSQLResult8find_idxEPKcRl:2 + 0.12: 0 + 0.14: 0 + 0.17: 1 + 0.18: 0 + 0.19: 0 + 0.22: 1 _ZNK9oceanbase8observer16ObInnerSQLResult8get_boolElRb:1 + 0.25: 0 + 0.29: 1 +_ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS0_8ObStringENS0_13LabelInfoItemEEEEELi82ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEE4freeEPS8_:177:1 + 1: 1 + 2: 1 + 3: 2 + 4.1: 0 + 6: 2 + 7: 2 + 7.1: 2 + 8.1: 0 + 11: 2 + 12: 2 + 13: 2 + 16.2: 2 + 2: _ZN9oceanbase6common4hash10SpinLockerC2ERVi:12 + 2: 2 + 3.1: 0 + 16.2: _ZN9oceanbase6common4hash10SpinLockerD2Ev:18 + 2: 2 + 3: 2 + 16.3: _ZN9oceanbase6common4hash10SpinLockerD2Ev:0 + 2: 0 + 3: 0 +_ZN9oceanbase11transaction16ObTransStatistic27add_gts_acquire_total_countEml:176:2 + 1: 2 + 3.2: 2 + 3.3: 0 + 3.4: 0 + 3.5: 0 + 3.6: 0 + 3.10: 0 + 3.11: 0 + 3.12: 0 + 4.3: 2 + 4.4: 0 + 2: _ZN9oceanbase6common20ObTenantStatEstGuardC2Em:76 + 1: 2 + 2: 2 + 3: 2 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 12: 2 + 3: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:10 + 2: 2 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:2 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:8 + 2: 2 + 6: _ZN9oceanbase6common17ObSessionDIBuffer13get_tenant_idEv:0 + 3: 0 + 4: 0 + 3.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:10 + 2: 2 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:2 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:8 + 2: 2 + 4.3: _ZN9oceanbase6common20ObTenantStatEstGuardD2Ev:26 + 1: 2 + 2: 2 + 3: 0 + 3.1: 0 +_ZN9oceanbase10logservice11ObApplyFsCb14update_end_lsnElRKNS_4palf3LSNEl:176:11 + 3: 11 + 5: 11 _ZN9oceanbase10logservice13ObApplyStatus29update_palf_committed_end_lsnERKNS_4palf3LSNEl:11 +_ZNK9oceanbase6common8ObString12case_compareEPKc:175:2 + 1: 2 + 3: 2 + 4: 2 + 8: 2 + 8: _ZNK9oceanbase6common8ObString12case_compareERKS1_:99 + 3: 3 + 4: 0 + 10: 3 + 10.1: 3 + 11: 3 + 10: _ZSt3minIiERKT_S2_S2_:24 + 5: 3 +_ZN9oceanbase3sql18ObBasicSessionInfo14reset_timezoneEv:175:0 + 1: 0 + 4: 0 + 5.1: 0 + 6.1: 1 + 7.1: 0 + 11: 2 _ZNK9oceanbase3sql18ObBasicSessionInfo16get_sys_variableENS_5share17ObSysVarClassTypeERNS_6common5ObObjE:1 + 12.1: 0 + 13.1: 3 + 14.1: 0 + 16: 3 + 3: _ZN9oceanbase6common5ObObjC2Ev:0 + 2: _ZN9oceanbase6common5ObObj5resetEv:0 + 6: 0 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:0 + 0: 0 + 10: _ZN9oceanbase6common5ObObjC2Ev:11 + 2: _ZN9oceanbase6common5ObObj5resetEv:11 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:3 + 0: 1 + 13.1: _ZN9oceanbase3sql18ObBasicSessionInfo34process_session_overlap_time_valueERKNS_6common5ObObjE:65 + 3: 3 + 3.1: 2 _ZN9oceanbase6common18ObTimeZoneInfoWrap25set_error_on_overlap_timeEb:3 + 4.1: 0 + 6: 0 + 3: _ZNK9oceanbase6common5ObObj8get_boolEv:22 + 0: 2 +_ZZN9oceanbase4palf14PalfHandleImpl17advance_reuse_lsnERKNS0_3LSNEENK6$_1145clEPKc.0e4bf25207570af14a78557c8489c4fc:174:3 + 0: 3 + 0.1: 0 + 0.2: 3 + 0.3: 3 _ZN9oceanbase6common8ObLogger13need_to_printEmi:3 + 0.7: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:51 + 2: 3 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS_4palf3LSNELb0EEC2EPKcS5_:0 + 0: 0 +_ZN9oceanbase6common13ObLinkHashMapINS_11transaction9tablelock8ObLockIDENS3_9ObOBJLockENS3_14ObOBJLockAllocENS0_9RefHandleELl8EE5GuardC2ERNS0_13RetireStationE:174:2 + 0: 2 + 0.1: 2 + 0: _ZN9oceanbase6common9RefHandleC2ERNS0_13RetireStationE:128 + 0: 2 + 0: _ZN9oceanbase6common13BaseRefHandleC2ERNS0_13RetireStationE:100 + 0: 2 + 0: _ZN9oceanbase6common17get_global_qclockEv:26 + 2: 2 + 2.1: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common6QClockC2Ev:0 + 0: 0 + 0.1: _ZN9oceanbase6common6QClock9ClockSlotC2Ev:0 + 0: 0 + 0.4: _ZN9oceanbase6common13BaseRefHandle14enter_criticalEv:10 + 0: 2 _ZN9oceanbase6common6QClock14enter_criticalEv:2 +_ZN9oceanbase3sql12ObQueryRange21or_single_head_graphsERNS_6common7ObDListINS0_9ObKeyPartEEEPNS0_13ObExecContextERKNS2_20ObDataTypeCastParamsE:172:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 6.1: 0 + 7.1: 0 + 8.1: 0 + 9: 0 + 10.1: 0 + 11.1: 0 + 12: 0 + 13.1: 0 + 16: 0 + 19: 0 + 20: 0 + 21.1: 0 + 22.1: 0 + 23: 0 + 24.1: 0 + 27.1: 1 + 29: 0 + 30: 0 + 33: 1 + 34.1: 0 + 35.1: 1 + 40: 0 + 42.1: 1 + 42.2: 1 + 43: 0 + 44.1: 0 + 47: 1 + 48: 0 + 50: 0 + 54.1: 1 + 55: 0 + 56: 0 + 61: 1 + 64: 0 + 64.1: 0 + 65.1: 0 + 66.1: 0 + 66.2: 0 + 67.1: 0 + 73: 1 + 75: 0 + 76: 0 + 77.1: 0 + 81: 1 + 83.2: 1 + 87: 1 + 87.1: 1 + 88: 0 + 89.1: 0 + 93.1: 0 + 93.2: 1 + 93.3: 1 + 95: 1 _ZN9oceanbase3sql9ObKeyPart19normal_key_is_equalEPKS1_:1 + 96: 0 + 97.1: 0 + 99.1: 0 + 101: 0 + 102: 0 + 103: 0 + 104: 0 + 105.1: 0 + 106: 0 + 107: 0 + 107.1: 0 + 109: 0 + 110: 0 + 111: 0 + 112: 0 + 113.1: 0 + 114: 0 + 115: 0 + 115.1: 0 + 117: 0 + 117.1: 0 + 120: 0 + 121: 0 + 121.1: 0 + 122.1: 0 + 122.2: 0 + 124: 0 + 130: 0 + 134: 0 + 142: 0 + 18: _ZN9oceanbase6common7ObDListINS_3sql9ObKeyPartEE9get_firstEv:0 + 0: 0 + 31: _ZN9oceanbase6common11ObDLinkBaseINS_3sql9ObKeyPartEE8get_nextEv:0 + 0: 0 + 36: _ZN9oceanbase6common11ObDLinkBaseINS_3sql9ObKeyPartEE10replace_byEPS3_:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 8: 0 + 42.2: _ZNK9oceanbase3sql9ObKeyPart13is_normal_keyEv:24 + 0: 1 + 0.1: 1 + 47: _ZNK9oceanbase3sql9ObKeyPart14is_always_trueEv:4 + 0.1: 1 + 52: _ZN9oceanbase6common7ObDListINS_3sql9ObKeyPartEE6removeEPS3_:0 + 3: 0 + 7: 0 + 6: _ZN9oceanbase6common11ObDLinkBaseINS_3sql9ObKeyPartEE6unlinkEv:0 + 2: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 54.1: _ZNK9oceanbase3sql9ObKeyPart15is_always_falseEv:4 + 0.1: 1 + 56: _ZNK9oceanbase6common7ObDListINS_3sql9ObKeyPartEE8get_sizeEv:0 + 0: 0 + 57: _ZN9oceanbase6common7ObDListINS_3sql9ObKeyPartEE6removeEPS3_:0 + 7: 0 + 6: _ZN9oceanbase6common11ObDLinkBaseINS_3sql9ObKeyPartEE6unlinkEv:0 + 2: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 63: _ZN9oceanbase6common7ObDListINS_3sql9ObKeyPartEEC2Ev:0 + 2: 0 + 3: 0 + 4: 0 + 65463: _ZN9oceanbase6common11ObDLinkBaseINS_3sql9ObKeyPartEEC2Ev:0 + 2: 0 + 74: _ZN9oceanbase6common7ObDListINS_3sql9ObKeyPartEE5clearEv:0 + 2: 0 + 3: 0 + 4: 0 + 82: _ZN9oceanbase6common7ObDListINS_3sql9ObKeyPartEE9get_firstEv:4 + 0: 1 + 87.1: _ZN9oceanbase6common11ObDLinkBaseINS_3sql9ObKeyPartEE8get_nextEv:4 + 0: 1 + 94: _ZN9oceanbase6common11ObDLinkBaseINS_3sql9ObKeyPartEE8get_nextEv:8 + 0: 1 + 128: _ZN9oceanbase6common7ObDListINS_3sql9ObKeyPartEE6removeEPS3_:0 + 3: 0 + 7: 0 + 6: _ZN9oceanbase6common11ObDLinkBaseINS_3sql9ObKeyPartEE6unlinkEv:0 + 2: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 136: _ZN9oceanbase6common11ObDLinkBaseINS_3sql9ObKeyPartEE8get_nextEv:0 + 0: 0 +_ZNK9oceanbase3lib20ObTenantCtxAllocator11print_usageEv:171:1 + 1: 1 + 4: 1 + 4.3: 1 + 4.5: 1 + 4.7: 1 + 4.9: 0 + 5: 0 + 6: 0 + 8.1: 0 + 8.2: 1 _ZNSt14_Function_baseD2Ev:1 + 21: 0 + 21.1: 0 + 22: 0 + 25: 0 + 26: 0 + 29: 0 + 30.1: 0 + 30.2: 0 + 35: 0 + 35.1: 1 + 36.1: 0 + 52: 1 + 52.6: 1 _ZN9oceanbase6common2SVIA65536_cLb0EED2Ev:1 + 52.7: 0 + 4.2: _ZN9oceanbase6common8precheckIA65536_cEEibRb:9 + 6: 1 _ZN9oceanbase6common15check_from_heapEiRb:1 + 4.5: _ZN9oceanbase6common2SVIA65536_cLb0EEC2IZNKS_3lib20ObTenantCtxAllocator11print_usageEvE4$_59EEibOT_:19 + 1: 1 + 3: 1 + 5: 0 + 6: 0 + 7: 0 + 9: 0 + 1: _ZN9oceanbase6common6SVBaseC2Eib:6 + 1: 1 + 2: 1 + 9: _ZZNK9oceanbase3lib20ObTenantCtxAllocator11print_usageEvENK4$_59clEPv:0 + 0: 0 + 4.8: _ZN9oceanbase6common2SVIA65536_cLb0EE3getEv:0 + 2: 0 + 7: _ZN9oceanbase6common9LabelItemC2Ev:0 + 2: 0 + 8: _ZNSt8functionIFiRN9oceanbase3lib7ObLabelEPNS0_6common9LabelItemEEEC2IZNKS1_20ObTenantCtxAllocator11print_usageEvE4$_60vEET_:0 + 8: 0 + 9: 0 + 1: _ZNSt14_Function_baseC2Ev:0 + 0: 0 + 7.1: _ZNSt14_Function_base13_Base_managerIZNK9oceanbase3lib20ObTenantCtxAllocator11print_usageEvE4$_60E15_M_init_functorERSt9_Any_dataOS4_:0 + 1.1: _ZNSt14_Function_base13_Base_managerIZNK9oceanbase3lib20ObTenantCtxAllocator11print_usageEvE4$_60E15_M_init_functorERSt9_Any_dataOS4_St17integral_constantIbLb0EE:0 + 1: 0 + 30: _ZNSt8functionIFiPKN9oceanbase3lib17ObTenantMemoryMgrEEEC2IZNKS1_20ObTenantCtxAllocator11print_usageEvE4$_61vEET_:0 + 8: 0 + 9: 0 + 7.1: _ZNSt14_Function_base13_Base_managerIZNK9oceanbase3lib20ObTenantCtxAllocator11print_usageEvE4$_61E15_M_init_functorERSt9_Any_dataOS4_:0 + 1.1: _ZNSt14_Function_base13_Base_managerIZNK9oceanbase3lib20ObTenantCtxAllocator11print_usageEvE4$_61E15_M_init_functorERSt9_Any_dataOS4_St17integral_constantIbLb1EE:0 + 1: 0 +_ZZN9oceanbase11transaction20ObKeepAliveLSHandler15print_stat_infoEvENK5$_442clEPKc.6c6f3ed9193054173c335adef4549614:170:2 + 0: 2 + 0.1: 0 + 0.2: 2 + 0.3: 2 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:2 + 0.14: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:34 + 2: 2 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.1: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 0.4: _ZNK9oceanbase5share12ObTenantBase2idEv:0 + 0: 0 + 0.5: _ZN9oceanbase6common7ObLogKVImLb1EEC2EPKcOKm:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVINS_5share6ObLSIDELb0EEC2EPKcRKS3_:0 + 0: 0 + 0.7: _ZN9oceanbase6common7ObLogKVIlLb0EEC2EPKcRKl:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIlLb0EEC2EPKcRKl:0 + 0: 0 + 0.9: _ZN9oceanbase6common7ObLogKVIlLb0EEC2EPKcRKl:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVIlLb0EEC2EPKcRKl:0 + 0: 0 + 0.11: _ZN9oceanbase6common7ObLogKVIlLb0EEC2EPKcRKl:0 + 0: 0 + 0.12: _ZN9oceanbase6common7ObLogKVINS_4palf3LSNELb0EEC2EPKcRKS3_:0 + 0: 0 + 0.13: _ZN9oceanbase6common7ObLogKVIlLb0EEC2EPKcRKl:0 + 0: 0 +_ZN9oceanbase6common14SpinRLockGuardC2ERKNS0_10SpinRWLockE:170:4 + 1: 4 + 2: 4 + 3: 1 + 4.1: 0 + 6: 1 + 3: _ZN9oceanbase6common10SpinRWLock6rdlockEl:68 + 0: 4 _ZN9oceanbase6common7ObLatch6rdlockEjl:4 +_ZN9oceanbase5share24ObLSRecoveryStatOperator23update_ls_recovery_statERKNS0_16ObLSRecoveryStatERNS_6common12ObMySQLProxyE:170:1 + 3: 1 + 4: 1 + 5: 1 + 6: 0 + 7.1: 0 + 9: 1 _ZN9oceanbase6common18ObMySQLTransactionC1Eb:1 + 10.2: 1 + 11: 1 _ZN9oceanbase6common18ObMySQLTransaction5startEPNS0_12ObISQLClientEmb:1 + 11.1: 0 + 12.1: 0 + 13.1: 0 + 13.2: 0 + 14.1: 0 + 16.1: 0 + 17: 0 + 18: 0 + 18.1: 0 + 19.1: 0 + 20: 0 + 20.3: 0 + 23: 0 + 23.1: 0 + 24: 0 + 5: _ZNK9oceanbase5share16ObLSRecoveryStat8is_validEv:60 + 2: 1 + 3: 1 + 3.1: 1 + 4: 1 + 4.1: 1 + 5: 1 + 5.1: 1 + 6: 1 + 6.1: 1 + 2.1: _ZNK9oceanbase5share6ObLSID8is_validEv:5 + 0: 1 + 10: _ZNK9oceanbase5share16ObLSRecoveryStat13get_tenant_idEv:9 + 2: 1 + 10.1: _ZN9oceanbase5share14ObLSLifeIAgent18get_exec_tenant_idEm:36 + 3: 1 + 5.1: 1 + 3: _ZN9oceanbase6common13is_sys_tenantEm:4 + 2: 1 + 5.1: _ZN9oceanbase6common14is_meta_tenantEm:15 + 3: 1 + 4.1: 1 + 16: _ZNK9oceanbase6common18ObMySQLTransaction10is_startedEv:0 + 0: 0 +_ZZNK9oceanbase10logservice12ObLogHandler10is_in_syncERbS2_ENK5$_212clEPKc.1291a23568de5f940ae06fb9e7354412:168:2 + 0: 2 + 0.1: 0 + 0.2: 2 + 0.3: 2 _ZN9oceanbase6common8ObLogger13need_to_printEmi:2 + 0.21: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:34 + 2: 2 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKbLb0EEC2EPKcS3_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.12: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.14: _ZN9oceanbase6common7ObLogKVIRKbLb0EEC2EPKcS3_:0 + 0: 0 + 0.16: _ZN9oceanbase6common7ObLogKVIRKbLb0EEC2EPKcS3_:0 + 0: 0 + 0.18: _ZN9oceanbase6common7ObLogKVIRKNS_4palf3LSNELb0EEC2EPKcS5_:0 + 0: 0 + 0.20: _ZN9oceanbase6common7ObLogKVIRKNS_4palf3LSNELb0EEC2EPKcS5_:0 + 0: 0 +_ZN9oceanbase6common13ObSEArrayImplINS_4palf11LogWriteBuf11InnerStructELl2ENS0_19ModulePageAllocatorELb0EE5reuseEv:168:8 + 1: 8 + 8: 8 + 9: 8 + 10: 8 +_ZN9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE3mapINS8_8HandleOnINS5_19CheckSessionFunctorEEEEEiRT_:167:0 + 1: 0 + 3: 0 + 6.1: 3 + 6.3: 1 + 6.4: 1 + 7: 1 + 11: 0 + 11.1: 0 + 12: 0 + 3: _ZNK9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE4sizeEv:0 + 0: _ZNK9oceanbase6common11CountHandle4sizeEv:0 + 0: 0 + 259: 0 + 5: _ZN9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE8IteratorC2ERS8_:0 + 0: 0 + 6.2: _ZN9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE8Iterator4nextERPS4_:55 + 1: 3 + 4: 3 + 5: 3 _ZN9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE4nextEPNS0_12LinkHashNodeIS3_EE:3 + 7: _ZN9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE8HandleOnINS5_19CheckSessionFunctorEEclERS3_PS4_:85 + 2: 1 _ZN9oceanbase3sql15ObSQLSessionMgr19CheckSessionFunctorclENS0_14SessionInfoKeyEPNS0_16ObSQLSessionInfoE:1 + 3: 5 + 3: _ZN9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE6revertEPS4_:40 + 3: 5 _ZN9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE6revertEPNS0_12LinkHashNodeIS3_EE:5 +_ZN9oceanbase8observer20ObInnerSQLConnection12execute_readEmPKcRNS_6common12ObISQLClient10ReadResultEbb:166:2 + 5: 2 + 6: 2 _ZN9oceanbase6common14ObServerConfig12get_instanceEv:2 + 6.2: 2 _ZN9oceanbase8observer20ObInnerSQLConnection12execute_readElmPKcRNS_6common12ObISQLClient10ReadResultEbb:2 +_ZN9oceanbase6common22ObMemstoreAllocatorMgr29get_tenant_memstore_allocatorEmRPNS0_20ObGMemstoreAllocatorE:166:2 + 2: 2 + 3: 2 + 4: 2 + 5: 0 + 6.1: 0 + 7.1: 2 + 8: 2 + 10: 0 + 12: 0 + 13: 0 + 14: 0 + 16: 0 + 17: 0 + 18.1: 0 + 20.1: 0 + 21: 0 + 25: 0 + 26: 0 + 27: 0 + 28: 0 + 33: 0 + 34.1: 0 + 37.1: 0 + 39.1: 0 + 41: 0 + 43: 0 + 45: 0 + 46: 0 + 47: 0 + 48: 0 + 49.1: 0 + 50.1: 0 + 52: 0 + 53.1: 0 + 56.1: 0 + 58: 0 + 59: 0 + 61: 0 + 64: 0 + 65.1: 0 + 68.1: 0 + 69: 0 + 70.1: 0 + 72: 2 + 9.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 7: 0 + 11: _ZN9oceanbase3lib7ObLabelaSILm16EEERS1_RAT__Kc:0 + 4: 0 + 17: _ZN9oceanbase6common20ObGMemstoreAllocator4initEm:0 + 3: 0 + 2: _ZN9oceanbase6common20ObGMemstoreAllocator28update_last_freeze_timestampEv:0 + 2: 0 + 42.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 7: 0 + 44: _ZN9oceanbase3lib7ObLabelaSILm16EEERS1_RAT__Kc:0 + 4: 0 + 48: _ZN9oceanbase6common20ObGMemstoreAllocator4initEm:0 + 3: 0 + 2: _ZN9oceanbase6common20ObGMemstoreAllocator28update_last_freeze_timestampEv:0 + 2: 0 + 50.1: _ZN9oceanbase6common4hash9ObHashMapImPNS0_20ObGMemstoreAllocatorENS1_24LatchReadWriteDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS4_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE14set_refactoredERKmRKS4_iii:0 + 8: 0 + 5: _ZN9oceanbase6common4hash11HashMapPairImPNS0_20ObGMemstoreAllocatorEE4initERKmRKS4_:0 + 3: _ZN9oceanbase6common11copy_assignImEEiRT_RKS2_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapImEEiRT_RKS2_NS0_8BoolTypeILb0EEE:0 + 2: 0 + 5.1: _ZN9oceanbase6common11copy_assignIPNS0_20ObGMemstoreAllocatorEEEiRT_RKS4_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapIPNS0_20ObGMemstoreAllocatorEEEiRT_RKS4_NS0_8BoolTypeILb0EEE:0 + 2: 0 +_ZN9oceanbase3sql18ObBasicSessionInfo18set_session_state_ENS0_17ObSQLSessionStateE:164:2 + 1: 2 + 2: 2 + 3: 2 + 4: 0 + 5.1: 0 + 6.1: 2 + 6.2: 0 + 9: 0 + 10: 0 + 11.1: 0 + 13: 0 + 14.1: 0 + 16: 0 + 17.1: 0 + 20: 2 + 21: 2 + 23: 2 + 21: _ZN9oceanbase6common16ObClockGenerator8getClockEv:34 + 4: 2 + 5.1: 0 + 8: 2 + 6: _ZN9oceanbase6common16ObClockGenerator6get_usEv:0 + 2: 0 +_ZN9oceanbase3lib11ObLockGuardINS_6common12ObThreadCondEED2Ev:164:2 + 1: 2 + 2: 2 + 3: 2 + 3.1: 3 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 7.1: 3 + 3: _ZN9oceanbase6common12ObThreadCond6unlockEv:80 + 2: 2 + 3: 2 + 4: 2 + 5: 0 + 6.1: 0 + 7.1: 3 + 8: 0 + 9.1: 0 + 11: 3 +_ZN9oceanbase10rootserver24ObTenantRecoveryReportor16get_readable_scnERKNS_5share6ObLSIDERl:164:2 + 1: 1 + 2: 1 + 3: 1 _ZN9oceanbase7storage10ObLSHandleC1Ev:1 + 4: 1 + 6.1: 1 _ZN9oceanbase7storage11ObLSService6get_lsERKNS_5share6ObLSIDERNS0_10ObLSHandleENS0_10ObLSGetModE:1 + 6.2: 2 + 8.1: 0 + 9.2: 2 + 10: 0 + 11.1: 0 + 12.1: 2 _ZN9oceanbase7storage4ObLS11get_ls_infoERNS0_10ObLSVTInfoE:2 + 12.2: 0 + 13.1: 0 + 15: 0 + 15.3: 0 + 18: 0 + 20.5: 0 + 20.7: 0 + 20.9: 0 + 5: _ZN9oceanbase7storage10ObLSVTInfoC2Ev:11 + 0: _ZN9oceanbase5share6ObLSIDC2Ev:11 + 0: 1 + 6: _ZN9oceanbase5share11ObTenantEnv3mtlIPNS_7storage11ObLSServiceEEET_v:30 + 2: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:14 + 2: 1 + 2.1: 0 + 2.2: 0 + 2.1: _ZN9oceanbase5share12ObTenantBase3getIPNS_7storage11ObLSServiceEEET_v:16 + 0: _ZN9oceanbase5share12ObTenantBase9inner_getENS1_8IdentityIPNS_7storage11ObLSServiceEEE:16 + 0: 1 + 9.1: _ZN9oceanbase7storage10ObLSHandle6get_lsEv:8 + 0: 2 +_ZN9oceanbase6common4hash9ObHashMapIlPNS_2pl14ObPLCursorInfoENS1_19NoPthreadDefendModeENS1_9hash_funcIlEENS1_8equal_toIlEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIlS5_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:163:2 + 1: 2 + 2: 3 + 2: _ZN9oceanbase6common4hash11ObHashTableIlNS1_11HashMapPairIlPNS_2pl14ObPLCursorInfoEEENS1_9hash_funcIlEENS1_8equal_toIlEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:18 + 2.1: 2 + 2.2: 0 + 3: 0 + 5.2: 0 + 2: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairIlPNS_2pl14ObPLCursorInfoEEENS1_5NLockENS1_5NCondEEEEEbRKT_:16 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairIlPNS_2pl14ObPLCursorInfoEEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:16 + 2: 2 + 2.2: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIlPNS_2pl14ObPLCursorInfoEEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEED2Ev:52 + 2.1: 0 + 2: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIlPNS_2pl14ObPLCursorInfoEEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEE5clearEv:52 + 2: 2 + 3.1: 2 + 4: 0 + 5: 0 + 6.1: 0 + 15: 3 + 10: _ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocator4freeEPv:0 + 3: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase3sql23ObPxTenantTargetMonitor8get_roleERNS_6common6ObRoleE:162:0 + 1: 0 + 2: 0 + 3: 0 + 4: 0 + 5.1: 0 + 5.3: 0 + 5.4: 0 + 5.6: 0 + 5.7: 0 + 6: 0 + 7: 0 + 10.1: 0 + 11: 0 + 12.1: 0 + 13.1: 0 + 13.2: 6 + 14.1: 0 + 15.1: 6 + 17.1: 6 _ZN9oceanbase10logservice12ObLogService9open_palfERKNS_5share6ObLSIDERNS_4palf15PalfHandleGuardE:6 + 17.2: 0 + 18.1: 0 + 19.2: 0 + 20.1: 0 + 22: 0 + 22.1: 0 + 23: 0 + 5: _ZN9oceanbase5share25_make_tenant_switch_guardEv:0 + 2: 0 + 2.1: 0 + 2.3: 0 + 2.6: 0 + 2.2: _ZN9oceanbase5share19ObTenantSwitchGuardC2Ev:0 + 0.4: _ZNSt8functionIFiRN9oceanbase6common10ObLDHandleEEEC2Ev:0 + 1: _ZNSt14_Function_baseC2Ev:0 + 0: 0 + 0.5: _ZN9oceanbase5share19ObTenantSwitchGuard5resetEv:0 + 2: 0 + 3: 0 + 4: 0 + 3: _ZN9oceanbase5share19ObTenantSwitchGuardC2ERKS1_:0 + 0.1: _ZNSt8functionIFiRN9oceanbase6common10ObLDHandleEEEC2Ev:0 + 1: _ZNSt14_Function_baseC2Ev:0 + 0: 0 + 2: _ZN9oceanbase5share19ObTenantSwitchGuard5resetEv:0 + 2: 0 + 3: 0 + 4: 0 + 5.2: _ZN9oceanbase5share19ObTenantSwitchGuardD2Ev:0 + 2: 0 + 3.1: 0 + 3.2: 0 + 3: _ZNSt14_Function_baseD2Ev:0 + 2: 0 + 3: 0 + 3.2: 0 + 9: _ZN9oceanbase4palf15PalfHandleGuardC2Ev:0 + 0: 0 + 10: _ZN9oceanbase5share11ObTenantEnv3mtlIPNS_10logservice12ObLogServiceEEET_v:0 + 2: 0 + 2.1: _ZN9oceanbase5share12ObTenantBase3getIPNS_10logservice12ObLogServiceEEET_v:0 + 0: _ZN9oceanbase5share12ObTenantBase9inner_getENS1_8IdentityIPNS_10logservice12ObLogServiceEEE:0 + 0: 0 + 19.1: _ZN9oceanbase4palf15PalfHandleGuard8get_roleERNS_6common6ObRoleERl:0 + 3: 0 +_ZN9oceanbase3sql17ObMergeDistinctOp10inner_openEv:162:5 + 1: 3 + 2: 3 + 3: 3 + 4: 0 + 5.1: 0 + 6.1: 3 + 7: 0 + 8.1: 0 + 10: 3 + 12: 3 + 6.1: _ZN9oceanbase3sql11get_my_specINS0_17ObMergeDistinctOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:12 + 5: _ZNK9oceanbase3sql10ObOperator8get_specEv:12 + 0: 3 +_ZN9oceanbase8observer19ObTenantMetaChecker18build_replica_map_ERNS_6common4hash9ObHashMapINS_5share6ObLSIDENS5_11ObLSReplicaENS3_24LatchReadWriteDefendModeENS3_9hash_funcIS6_EENS3_8equal_toIS6_EENS3_13SimpleAllocerINS3_15ObHashTableNodeINS3_11HashMapPairIS6_S7_EEEELi11ENS3_19SpinMutexDefendModeENS3_29DefaultSimpleAllocerAllocatorEEENS3_13NormalPointerENS2_8ObMallocELl1EEE:160:0 + 1: 0 + 2: 0 + 3: 0 + 4: 0 + 4.1: 0 + 5: 0 + 6.1: 0 + 7.1: 0 + 8: 0 + 9.1: 0 + 10.5: 0 + 13.1: 0 + 14.1: 0 + 14.2: 0 + 15.1: 0 + 16.2: 0 + 16.3: 0 + 16.4: 0 + 17.1: 0 + 19: 0 + 20.1: 4 + 21: 4 _ZN9oceanbase5share8ObLSInfo5resetEv:5 + 22: 2 + 23: 0 + 24.1: 0 + 25.1: 2 _ZN9oceanbase5share17ObLSTableIterator4nextERNS0_8ObLSInfoE:2 + 25.2: 0 + 27.1: 0 + 29.2: 0 + 33.1: 0 + 33.2: 4 + 34.1: 0 + 37: 0 + 38.1: 0 + 42: 0 + 44: 0 + 44.1: 0 + 45: 0 + 46.16: 2 + 10.1: _ZN9oceanbase6common4hash14cal_next_primeEl:0 + 7: 0 + 7.3: 0 + 6: _ZSt11lower_boundIPKllET_S2_S2_RKT0_:0 + 9: _ZSt13__lower_boundIPKllN9__gnu_cxx5__ops14_Iter_less_valEET_S5_S5_RKT0_T1_:0 + 8.1: 0 + 10: 0 + 13: 0 + 13: _ZNK9__gnu_cxx5__ops14_Iter_less_valclIPKlS3_EEbT_RT0_:0 + 1: 0 + 10.4: _ZN9oceanbase6common4hash9ObHashMapINS_5share6ObLSIDENS3_11ObLSReplicaENS1_24LatchReadWriteDefendModeENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS4_S5_EEEELi11ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE6createElRKNS_3lib7ObLabelESP_mm:0 + 5: 0 + 6: 0 + 6.1: 0 + 4.1: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS_5share6ObLSIDENS5_11ObLSReplicaEEEEELi11ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEE8set_attrERKNS_3lib9ObMemAttrE:0 + 0: _ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocator8set_attrERKNS_3lib9ObMemAttrE:0 + 0: 0 + 5.1: _ZN9oceanbase6common8ObMalloc8set_attrERKNS_3lib9ObMemAttrE:0 + 0: 0 + 6: _ZN9oceanbase6common4hash14cal_next_primeEl:0 + 3: 0 + 7: 0 + 7.3: 0 + 6: _ZSt11lower_boundIPKllET_S2_S2_RKT0_:0 + 9: _ZSt13__lower_boundIPKllN9__gnu_cxx5__ops14_Iter_less_valEET_S5_S5_RKT0_T1_:0 + 8.1: 0 + 10: 0 + 13: 0 + 13: _ZNK9__gnu_cxx5__ops14_Iter_less_valclIPKlS3_EEbT_RT0_:0 + 1: 0 + 16.1: _ZN9oceanbase5share17ObLSTableIterator11get_filtersEv:0 + 0: 0 + 29.1: _ZNK9oceanbase5share8ObLSInfo13replica_countEv:0 + 0: _ZNK9oceanbase6common12ObIArrayWrapINS_5share11ObLSReplicaEE5countEv:0 + 0: 0 + 32.1: _ZN9oceanbase6common12ObIArrayWrapINS_5share11ObLSReplicaEE2atEl:0 + 6: 0 + 33: _ZNK9oceanbase5share11ObLSReplica9get_ls_idEv:0 + 0: _ZN9oceanbase5share6ObLSIDC2ERKS1_:0 + 0: 0 + 46.16: _ZN9oceanbase5share17ObLSTableIteratorD2Ev:0 + 0: 0 + 0.1: 0 + 46.17: _ZN9oceanbase5share17ObLSTableIteratorD2Ev:0 + 0: 0 + 0.1: 0 +_ZN9oceanbase6common6ObAddr13set_ipv4_addrEPKci:160:2 + 1: 2 + 3: 2 + 6: 2 + 8: 2 + 10: 2 + 7: _ZN9oceanbase6common6ObAddr17convert_ipv4_addrEPKc:62 + 6: 2 + 7: 2 + 8: 2 + 9: 0 + 14: 2 + 14.3: 2 +_ZN9oceanbase5share8ObLSInfo11add_replicaERKNS0_11ObLSReplicaE:160:1 + 1: 1 + 2: 1 + 3: 0 + 3.1: 1 _ZNK9oceanbase5share11ObLSReplica8is_validEv:1 + 4: 0 + 5.1: 0 + 6.1: 1 + 6.8: 1 + 7: 0 + 8.1: 0 + 11: 1 + 12: 1 _ZNK9oceanbase5share8ObLSInfo9find_idx_ERKNS0_11ObLSReplicaERl:1 + 13: 1 + 14.1: 0 + 16: 1 _ZN9oceanbase6common11ObArrayImplINS_5share11ObLSReplicaENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE9push_backERKS3_:1 + 17.1: 0 + 20: 0 + 20.1: 0 + 21: 0 + 22.1: 0 + 23.1: 0 + 23.2: 0 + 24.1: 0 + 28: 1 + 3: _ZNK9oceanbase5share8ObLSInfo8is_validEv:33 + 2: 1 + 2: _ZNK9oceanbase5share6ObLSID20is_valid_with_tenantEm:25 + 5: 1 + 5.1: 0 + 4: _ZN9oceanbase6common14is_user_tenantEm:19 + 3: 1 + 2: _ZN9oceanbase6common13is_sys_tenantEm:0 + 2: 0 + 4.1: _ZNK9oceanbase5share6ObLSID8is_validEv:5 + 0: 1 + 5.2: _ZN9oceanbase6common14is_meta_tenantEm:0 + 3: 0 + 5.3: _ZNK9oceanbase5share6ObLSID9is_sys_lsEv:0 + 0: 0 + 6.13: _ZNK9oceanbase5share6ObLSIDneERKS1_:8 + 0: 1 + 23.1: _ZN9oceanbase6common12ObIArrayWrapINS_5share11ObLSReplicaEE2atEl:0 + 6: 0 +_ZNK9oceanbase3sql18ObBasicSessionInfo16get_sys_variableENS_5share17ObSysVarClassTypeERNS_6common5ObObjE:159:1 + 2: 1 + 3: 1 + 4: 1 + 5: 1 + 6: 0 + 7.1: 0 + 8.1: 1 + 9.1: 0 + 10.1: 1 + 11: 0 + 12.1: 0 + 14: 1 _ZNK9oceanbase5share13ObBasicSysVar9get_valueEv:1 + 16: 1 + 8.1: _ZNK9oceanbase3sql18ObBasicSessionInfo17inner_get_sys_varENS_5share17ObSysVarClassTypeERPNS2_13ObBasicSysVarE:63 + 2: 1 + 3: _ZNK9oceanbase3sql18ObBasicSessionInfo17inner_get_sys_varENS_5share17ObSysVarClassTypeERlRPNS2_13ObBasicSysVarE:53 + 8.1: 1 _ZN9oceanbase5share15ObSysVarFactory22calc_sys_var_store_idxENS0_17ObSysVarClassTypeERl:1 + 9.1: 0 + 10.1: 1 + 12: 0 + 13.1: 0 + 14.1: 1 + 15: 0 + 16.1: 0 + 18: 1 + 20: 1 +_ZN9oceanbase6common10ObFunctionIFbvEED2Ev:159:4 + 0: 4 + 0.1: 3 + 0.2: 0 + 0: _ZN9oceanbase6common10ObFunctionIFbvEE5resetEv:102 + 1: 4 + 2: 4 _ZN9oceanbase6common10ObFunctionIFbvEE8AbstractD2Ev:4 + 3: 3 + 4: 0 + 6: 3 + 3: _ZN9oceanbase6common10ObFunctionIFbvEE13is_local_obj_Ev:30 + 1: 3 +_ZN9oceanbase5share6schema19ObSchemaGetterGuard23get_sys_variable_schemaEmRPKNS1_19ObSysVariableSchemaE:159:1 + 2: 1 + 3: 1 + 4: 1 + 5: 0 + 6.1: 0 + 7.1: 1 + 8: 0 + 9.1: 0 + 10.1: 3 _ZN9oceanbase5share6schema19ObSchemaGetterGuard10get_schemaINS1_19ObSysVariableSchemaEEEiNS1_12ObSchemaTypeEmmRPKT_l:1 + 14.1: 0 + 16: 3 + 4: _ZNK9oceanbase5share6schema19ObSchemaGetterGuard16check_inner_statEv:40 + 2: 1 + 3: 1 + 4: 0 + 5.1: 0 + 6.1: 1 + 6.2: 1 + 7: 1 + 7.1: 1 + 8: 0 + 9.1: 0 + 11: 1 +_ZN9oceanbase6common6ObAddr17parse_from_stringERKNS0_8ObStringE:158:1 + 1: 1 + 3: 1 + 6: 1 + 7: 1 + 8: 1 + 9: 1 + 10: 1 + 11: 1 + 12: 1 + 13: 1 + 14: 1 + 15: 1 + 15.1: 1 + 26: 0 + 27: 0 + 32: 0 + 33: 0 + 34: 0 + 35: 0 + 41: 0 + 6: _ZNK9oceanbase6common8ObString3ptrEv:10 + 0: 1 + 7: _ZNK9oceanbase6common8ObString6lengthEv:3 + 0: 1 +_ZN9oceanbase6common13ObSEArrayImplINS_4palf3LSNELl10ENS0_19ModulePageAllocatorELb0EED2Ev:158:3 + 1: 2 + 3: 2 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_4palf3LSNELl10ENS0_19ModulePageAllocatorELb0EE7destroyEv:84 + 9: 2 + 11: 0 + 13: 2 + 15: 2 + 24: 2 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_4palf3LSNELl10ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase10compaction22ObPartitionMergePolicy27check_need_hist_minor_mergeERKNS_7storage8ObTabletERb:158:4 + 3: 4 + 5: 4 _ZN9oceanbase10compaction22ObPartitionMergePolicy30cal_hist_minor_merge_thresholdEv:4 + 6: 2 + 7: 2 + 8: 2 _ZN9oceanbase10compaction22ObPartitionMergePolicy21deal_hist_minor_mergeERKNS_7storage8ObTabletERl:2 + 10.1: 0 + 11: 0 + 13: 0 + 15: 0 + 16: 0 + 16.1: 0 + 16.2: 0 + 16.3: 0 + 16.5: 0 + 17.1: 0 + 17.2: 0 + 17.6: 0 + 20: 1 + 16.1: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 16.2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 +_ZN9oceanbase6common11ObSqlStringD2Ev:157:3 + 1: 3 + 3: 3 + 3.2: 0 + 2: _ZN9oceanbase6common11ObSqlString5resetEv:67 + 2: 3 + 4: 2 + 8: 3 + 3: _ZN9oceanbase6common8ObMalloc4freeEPv:3 + 0: 3 _ZN9oceanbase6common7ob_freeEPv:3 +_ZN9oceanbase6common11ObSqlStringD1Ev:157:3 + 1: 3 + 3: 3 + 3.2: 0 + 2: _ZN9oceanbase6common11ObSqlString5resetEv:67 + 2: 3 + 4: 2 + 8: 3 + 3: _ZN9oceanbase6common8ObMalloc4freeEPv:3 + 0: 3 _ZN9oceanbase6common7ob_freeEPv:3 +_ZN9oceanbase6common13ObSEArrayImplINS_5share16ObLSRecoveryStatELl1ENS0_19ModulePageAllocatorELb0EE9push_backERKS3_:155:1 + 2: 1 + 5: 1 + 6: 0 + 12: 0 + 15: 0 + 15.1: 1 + 16: 1 + 19: 1 + 15.1: _ZN9oceanbase6common9ObClassOpINS_5share16ObLSRecoveryStatELb0EE20construct_and_assignERKS3_RS3_:104 + 3: _ZN9oceanbase6common16construct_assignINS_5share16ObLSRecoveryStatEEEiRT_RKS4_:104 + 2: _ZN9oceanbase6common21construct_assign_wrapINS_5share16ObLSRecoveryStatEEEiRT_RKS4_NS0_8BoolTypeILb1EEE:104 + 2: _ZN9oceanbase5share16ObLSRecoveryStatC2Ev:40 + 1: 1 + 4: 1 + 6: 1 + 3: _ZN9oceanbase5share16ObLSRecoveryStat6assignERKS1_:56 + 3: 1 + 4: 1 + 6: 1 + 7: 1 + 8: 1 + 9: 1 + 5: _ZN9oceanbase5share6ObLSIDaSERKS1_:9 + 0: 1 +_ZN9oceanbase5share12ObLSLocation9deep_copyERKS1_:155:2 + 1: 2 + 2: 2 + 3: 2 + 5: 2 + 6: 2 _ZN9oceanbase6common13ObSEArrayImplINS_5share19ObLSReplicaLocationELl3ENS0_19ModulePageAllocatorELb0EE6assignERKNS0_8ObIArrayIS3_EE:2 + 7.1: 0 + 10: 1 + 4: _ZN9oceanbase5share20ObLSLocationCacheKeyaSERKS1_:32 + 0: 2 + 0: _ZN9oceanbase5share6ObLSIDaSERKS1_:16 + 0: 2 +_ZN9oceanbase6common8ObString8split_onEc:154:2 + 0: 3 + 0: _ZNK9oceanbase6common8ObString4findEc:56 + 0: 2 + 0.1: _ZN9oceanbase6common8ObString8split_onEPKc:43 + 3: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 3 + 2: _ZNK9oceanbase6common8ObString8containsEPKc:34 + 0: 2 + 4: _ZN9oceanbase6common8ObString6assignEPci:0 + 5: 0 +_ZN9oceanbase6common16ObFixedArrayImplINS_3sql17PartParamIdxArrayENS0_12ObIAllocatorEE7destroyEv:154:2 + 1: 2 + 2: 2 + 5: 2 + 6.1: 0 + 7: 0 + 9: 0 + 10: 0 + 12: 2 + 13: 2 + 15: 2 + 17: 2 + 7: _ZN9oceanbase3sql17PartParamIdxArrayD2Ev:0 + 0: _ZN9oceanbase6common16ObFixedArrayImplIlNS0_12ObIAllocatorEED2Ev:0 + 0: 0 + 0.3: 0 + 0: _ZN9oceanbase6common16ObFixedArrayImplIlNS0_12ObIAllocatorEE7destroyEv:0 + 2: 0 + 5: 0 + 9: 0 + 10: 0 + 12: 0 + 13: 0 + 15: 0 +_ZNK9oceanbase5share6schema19ObSchemaGetterGuard25check_tenant_schema_guardEm:152:4 + 1: 4 + 2: 4 + 4: 4 + 6: 0 + 7.1: 0 + 10: 4 + 3: _ZNK9oceanbase5share6schema19ObSchemaGetterGuard22is_tenant_schema_guardEv:48 + 0: 4 +_ZN9oceanbase7storage9ObTxTable22check_state_and_epoch_ENS_11transaction9ObTransIDElbRi:152:2 + 4: 2 + 5: 2 + 6: 2 + 8: 2 + 10: 0 + 11.1: 0 + 12.1: 2 + 16: 0 + 17: 0 + 18.1: 0 + 26: 0 + 27.1: 0 + 30.1: 2 + 31: 0 + 32.1: 0 + 34.1: 0 + 37: 2 +_ZN9oceanbase6common6ObAddr11set_ip_addrERKNS0_8ObStringEi:152:2 + 1: 2 + 3: 2 + 4: 2 + 8: 2 + 9: 2 _ZN9oceanbase6common6ObAddr11set_ip_addrEPKci:2 + 11: 2 + 4: _ZNK9oceanbase6common8ObString6lengthEv:16 + 0: 2 + 8: _ZNK9oceanbase6common8ObString3ptrEv:16 + 0: 2 +_ZN9oceanbase8observer15ObSqlEndTransCb5resetEv:151:1 + 1: 1 + 3: 1 + 5: 1 + 6: 1 + 7: 1 + 8: 1 + 2: _ZN9oceanbase8observer16ObMPPacketSender5resetEv:71 + 2: 1 + 3: 1 + 4: 0 + 10: 1 + 11: 1 + 15: 1 + 16: 1 + 17: 1 + 18: 1 + 19: 1 + 5: _ZN9oceanbase3rpc20ObSqlRequestOperator7destroyEPNS0_9ObRequestE:0 + 1: 0 + 1.1: 0 + 12: _ZN9oceanbase7obmysql20ObCompressionContext5resetEv:25 + 0: 1 + 4: _ZN9oceanbase3sql23ObEndTransCbPacketParam5resetEv:39 + 2: 1 + 3: 1 + 5: 1 + 7: 1 +_ZN9oceanbase6common13ObSEArrayImplIPcLl1ENS0_19ModulePageAllocatorELb1EED2Ev:150:2 + 1: 2 + 3: 2 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplIPcLl1ENS0_19ModulePageAllocatorELb1EE7destroyEv:76 + 9: 2 + 11: 0 + 13: 2 + 15: 2 + 24: 2 + 10: _ZN9oceanbase6common13ObSEArrayImplIPcLl1ENS0_19ModulePageAllocatorELb1EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase3lib6Thread7currentEv:150:7 + 1: 6 + 3: 6 +_ZN9oceanbase6common15ObWarningBufferC2Ev:149:1 + 1: 1 + 3: 1 + 4: 1 + 6: 1 + 0.5: _ZN9oceanbase6common7ObArrayINS0_15ObWarningBuffer11WarningItemENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEECI2NS0_11ObArrayImplIS3_S4_Lb0ES6_S8_EEElRKS4_:75 + 0: 1 + 0: _ZN9oceanbase6common11ObArrayImplINS0_15ObWarningBuffer11WarningItemENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEEC2ElRKS4_:61 + 3: 1 + 4: 1 + 7.1: 1 + 2: _ZN9oceanbase6common8ObIArrayINS0_15ObWarningBuffer11WarningItemEEC2Ev:7 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_15ObWarningBuffer11WarningItemEEC2Ev:7 + 0: 1 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:34 + 0: 1 + 0.6: _ZN9oceanbase6common15ObWarningBuffer11WarningItemC2Ev:36 + 0: 1 + 1: 1 + 5: 1 + 5.1: _ZN9oceanbase6common11ObArrayImplINS0_15ObWarningBuffer11WarningItemENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE9set_labelERKNS_3lib7ObLabelE:11 + 0: _ZN9oceanbase6common19ModulePageAllocator9set_labelERKNS_3lib7ObLabelE:11 + 0: 1 +_ZN9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEED2Ev:149:3 + 0: 3 + 0.1: 3 + 0.2: 0 + 0: _ZN9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEE5resetEv:101 + 1: 3 + 2: 3 _ZN9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEE8AbstractD2Ev:4 + 3: 4 + 4: 0 + 6: 3 + 3: _ZN9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEE13is_local_obj_Ev:40 + 1: 4 +_ZN9oceanbase8observer14ObSrvRpcXlator9translateERNS_3rpc9ObRequestERPNS2_5frame14ObReqProcessorE:148:1 + 1: 1 + 2: 1 + 3: 1 + 8: 1 + 8.2: 1 + 8.3: 1 + 9: 0 + 10.1: 0 + 12: 2 _ZZN9oceanbase8observer31init_srv_xlator_for_transactionEPNS0_14ObSrvRpcXlatorEEN6$_14348__invokeERKNS0_15ObGlobalContextERPNS_3rpc5frame14ObReqProcessorERNS_5obrpc19ObRpcSessionHandlerE.4993347bc18636af120d9542b56e15f4:1 + 15: 2 + 16: 0 + 19: 2 + 21: 0 + 24: 2 + 5: _ZNK9oceanbase3rpc9ObRequest10get_packetEv:7 + 2: 1 + 6: _ZNK9oceanbase5obrpc11ObRpcPacket9get_pcodeEv:10 + 2: 1 + 20: _ZN9oceanbase6common9ob_deleteINS_3rpc5frame14ObReqProcessorEEEvRPT_:0 + 3: 0 + 4: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase3sql3dtl22ObDtlChannelMemManager19get_max_mem_percentEv:148:1 + 1: 1 + 2: 1 + 3: 1 _ZN9oceanbase3omt17ObTenantConfigMgr12get_instanceEv:1 + 3.2: 1 _ZNK9oceanbase3omt17ObTenantConfigMgr27get_tenant_config_with_lockEmmm:1 + 3.3: 1 _ZN9oceanbase3omt19ObTenantConfigGuardC1EPNS0_14ObTenantConfigE:1 + 4.1: 1 + 5.2: 1 + 7: 0 + 8.1: 0 + 10: 0 + 11.2: 1 _ZN9oceanbase3omt19ObTenantConfigGuardD1Ev:1 + 11.3: 0 + 3.1: _ZN9oceanbase3omt17ObTenantConfigMgr26default_fallback_tenant_idEv:65 + 4: 1 + 4.1: 1 + 2: _ZN9oceanbase5share5GuardILNS0_12ObEntityTypeE0EE13current_guardEv:28 + 3: 1 + 8: 0 + 11: 0 + 12: 0 + 8.1: _ZN9oceanbase5share5GuardILNS0_12ObEntityTypeE0EEC2ERNS0_13ObTenantSpaceE:0 + 1: 0 + 3: 0 + 10: _ZN9oceanbase5share5GuardILNS0_12ObEntityTypeE0EE4initEv:0 + 4: 0 + 7: 0 + 8: 0 + 9: 0 + 12: 0 + 13: 0 + 7: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 11: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 2.1: _ZN9oceanbase5share5GuardILNS0_12ObEntityTypeE0EEptEv:3 + 0: 1 + 2.2: _ZNK9oceanbase5share13ObTenantSpace10get_tenantEv:9 + 0: 1 + 4.1: _ZNK9oceanbase5share12ObTenantBase2idEv:7 + 0: 1 + 4: _ZN9oceanbase3omt19ObTenantConfigGuard8is_validEv:7 + 0: 1 +_ZN9oceanbase11transaction30ObTenantWeakReadClusterService25build_update_version_sql_EllllbRNS_6common11ObSqlStringE:148:1 + 6: 1 + 7: 1 + 9: 1 + 11.6: 1 + 11.9: 1 + 11.12: 1 _ZN9oceanbase6common11ObSqlString10assign_fmtEPKcz:1 + 15.1: 0 + 19: 1 + 19.3: 1 + 19.6: 0 + 23.1: 0 + 28: 0 + 8: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:17 + 2: 1 + 2.1: 0 + 2.2: 0 + 8.1: _ZNK9oceanbase5share12ObTenantBase2idEv:17 + 0: 1 +_ZN9oceanbase11transaction14ObTransService22handle_trans_keepaliveERKNS0_16ObTxKeepaliveMsgERNS_5obrpc16ObTransRpcResultE:148:1 + 1: 1 + 3: 1 + 4: 1 + 5: 1 _ZN9oceanbase11transaction11ObTxDescMgr3getERKNS0_9ObTransIDERPNS0_8ObTxDescE:1 + 7.1: 0 + 8.1: 1 + 9: 0 + 10.1: 1 + 11.1: 0 + 12: 0 + 13.1: 0 + 17: 1 + 18: 1 + 19: 1 _ZN9oceanbase11transaction11ObTxDescMgr6revertERNS0_8ObTxDescE:1 + 21.1: 1 _ZZN9oceanbase11transaction14ObTransService22handle_trans_keepaliveERKNS0_16ObTxKeepaliveMsgERNS_5obrpc16ObTransRpcResultEENK5$_982clEPKc.93feb755617c21c32b229b78773c290c:1 + 22: 0 + 16: _ZN9oceanbase5obrpc16ObTransRpcResult5resetEv:16 + 2: 1 + 3: 1 + 17: _ZNK9oceanbase11transaction7ObTxMsg13get_timestampEv:4 + 0: 1 + 17.1: _ZN9oceanbase5obrpc16ObTransRpcResult4initEil:8 + 2: 1 + 3: 1 +_ZN6obutil9ObSysTime3nowENS0_5ClockE:148:4 + 1: 4 + 2: 4 + 5: 4 + 8.1: 0 + 14: 3 + 19: 0 + 22.1: 0 + 28: 0 + 30: 4 +_ZN9oceanbase7storage15ObLobDataReader4initERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextE:147:2 + 1: 2 + 2: 2 + 3: 2 + 4: 0 + 5.1: 0 + 6.1: 2 + 7: 0 + 8.1: 0 + 9.1: 2 + 10: 0 + 11.1: 0 + 12.1: 2 + 13: 0 + 14.1: 0 + 16: 2 + 18: 2 + 20: 3 + 12.1: _ZNK9oceanbase11transaction12ObTxSnapshot8is_validEv:10 + 0: 2 + 17: _ZN9oceanbase6common10ObTabletIDaSERKS1_:16 + 0: 2 +_ZN9oceanbase3sql9ObKeyPart19normal_key_is_equalEPKS1_:147:1 + 1: 1 + 3: 1 + 4: 1 _ZNK9oceanbase3sql9ObKeyPart16is_question_markEv:1 + 4.1: 1 _ZNK9oceanbase3sql9ObKeyPart16is_question_markEv:1 + 5: 1 + 6: 1 + 7: 1 + 8: 1 + 8.1: 1 _ZNK9oceanbase3sql12ObKeyPartPoseqERKS1_:1 + 9: 1 + 9.1: 1 + 10: 1 + 10.1: 1 + 11: 0 + 11.1: 0 + 12: 0 + 12.1: 0 + 13: 0 + 13.1: 0 + 14: 0 + 14.1: 0 + 15: 0 + 15.1: 0 + 17: 0 + 5.1: _ZNK9oceanbase3sql9ObKeyPart13is_normal_keyEv:17 + 0: 1 + 0.1: 1 + 6.1: _ZNK9oceanbase3sql9ObKeyPart13is_normal_keyEv:18 + 0: 1 + 0.1: 1 + 7.1: _ZNK9oceanbase3sql11ObKeyPartIdeqERKS1_:18 + 2: 1 + 2.1: 1 + 9.1: _ZNK9oceanbase3sql9ObKeyPart17is_rowid_key_partEv:11 + 0: 1 + 9.2: _ZNK9oceanbase3sql9ObKeyPart17is_rowid_key_partEv:11 + 0: 1 +_ZN9oceanbase3sql18ObBasicSessionInfo13switch_tenantEm:147:3 + 1: 2 + 2: 2 + 3: 2 + 4: 0 + 5.1: 0 + 6.1: 2 + 7: 0 + 8.1: 0 + 9.1: 2 + 9.2: 1 + 10: 0 + 11: 0 + 14.1: 0 + 19.1: 0 + 20.1: 0 + 23: 1 + 33: 1 + 35: 1 +_ZN9oceanbase5obrpc14ObRpcProcessorINS0_15ObTransRpcProxy5ObRpcILNS0_15ObRpcPacketCodeE1626EvEEEC2Ev:146:0 + 0: 0 + 0.1: 2 + 0.2: 2 + 0.5: 0 + 0: _ZN9oceanbase5obrpc18ObRpcProcessorBaseC2Ev:0 + 1: 0 + 2: 0 + 5.1: 0 + 6: 0 + 0: _ZN9oceanbase3rpc5frame14ObReqProcessorC2Ev:0 + 1: 0 + 3: 0 + 5: 0 + 0.1: _ZN9oceanbase5obrpc16ObTransRpcResultC2Ev:38 + 1: 2 _ZN9oceanbase5obrpc16ObTransRpcResult5resetEv:2 + 0.4: _ZN9oceanbase11transaction7ObTxMsgD2Ev:0 + 0: 0 + 0.7: _ZN9oceanbase11transaction16ObTxKeepaliveMsgC2Ev:72 + 2: 2 + 1: _ZN9oceanbase11transaction7ObTxMsgC2Es:36 + 1: 0 + 3: 0 + 6: 0 + 9: 0 + 10: 0 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:1 + 10.1: 2 + 11: 2 + 12: 0 + 7: _ZN9oceanbase6common6ObAddrC2Ev:0 + 1: 0 +_ZNK9oceanbase6common4hash16ObPointerHashMapINS_5share6schema24ObTableSchemaHashWrapperEPNS4_21ObSimpleTableSchemaV2ENS4_13GetTableKeyV2ELl8064ENS0_19ModulePageAllocatorEE14get_refactoredERKS5_RS7_:145:1 + 1: 1 + 4: 1 + 5.1: 0 + 8.1: 1 + 9: 0 + 15: 2 + 9: _ZNK9oceanbase6common4hash18ObPointerHashArrayINS_5share6schema24ObTableSchemaHashWrapperEPNS4_21ObSimpleTableSchemaV2ENS4_13GetTableKeyV2EE14get_refactoredERKS5_RS7_:75 + 3: 1 + 4: 2 _ZNK9oceanbase6common4hash18ObPointerHashArrayINS_5share6schema24ObTableSchemaHashWrapperEPNS4_21ObSimpleTableSchemaV2ENS4_13GetTableKeyV2EE21placement_hash_searchERKS5_Rl:1 + 5: 2 + 5.1: 2 + 6.1: 0 + 9: 2 +_ZN9oceanbase7storage20ObTableAccessContext4initERKNS_6common11ObQueryFlagERNS0_10ObStoreCtxERNS2_12ObIAllocatorERKNS2_14ObVersionRangeE:143:1 + 4: 1 + 5: 1 + 6: 1 + 7: 0 + 8.1: 0 + 10: 1 + 11: 1 + 12: 1 + 13: 1 + 14: 1 + 15: 1 + 16: 1 + 21: 1 + 22: 1 + 23: 1 + 25: 1 + 17: _ZN9oceanbase5share6ObLSIDaSERKS1_:7 + 0: 1 + 18: _ZN9oceanbase6common10ObTabletIDaSERKS1_:8 + 0: 1 + 19: _ZN9oceanbase5share6ObLSIDaSERKS1_:7 + 0: 1 + 20: _ZN9oceanbase6common10ObTabletIDaSERKS1_:11 + 0: 1 + 21: _ZNK9oceanbase6common10ObTabletID2idEv:4 + 0: 1 +_ZN9oceanbase5share8ObLSInfo15init_by_replicaERKNS0_11ObLSReplicaE:143:1 + 1: 1 + 2: 1 + 3: 1 + 4: 0 + 5.1: 0 + 6.2: 1 + 6.5: 1 _ZN9oceanbase5share8ObLSInfo4initEmRKNS0_6ObLSIDE:1 + 9.1: 0 + 10.1: 1 _ZN9oceanbase5share8ObLSInfo11add_replicaERKNS0_11ObLSReplicaE:1 + 11.1: 0 + 13: 1 + 3: _ZNK9oceanbase5share11ObLSReplica8is_validEv:70 + 2: 1 + 3: 0 + 3.1: 1 + 4: 1 + 4.1: 1 + 5: 1 + 5.1: 1 + 6: 1 + 2: _ZNK9oceanbase5share6ObLSID20is_valid_with_tenantEm:29 + 5: 1 + 5.1: 0 + 4: _ZN9oceanbase6common14is_user_tenantEm:20 + 3: 1 + 2: _ZN9oceanbase6common13is_sys_tenantEm:0 + 2: 0 + 4.1: _ZNK9oceanbase5share6ObLSID8is_validEv:8 + 0: 1 + 5.2: _ZN9oceanbase6common14is_meta_tenantEm:0 + 3: 0 + 5.3: _ZNK9oceanbase5share6ObLSID9is_sys_lsEv:0 + 0: 0 + 6.1: _ZNK9oceanbase6common19ObFixedLengthStringILl128EE8is_emptyEv:7 + 2: 1 + 6.4: _ZNK9oceanbase5share11ObLSReplica9get_ls_idEv:3 + 0: _ZN9oceanbase5share6ObLSIDC2ERKS1_:3 + 0: 1 +_ZNK9oceanbase5share6schema19ObSchemaGetterGuard16check_lazy_guardEmRPKNS1_11ObSchemaMgrE:141:3 + 1: 3 + 3: 3 + 4: 3 _ZNK9oceanbase5share6schema19ObSchemaGetterGuard14get_schema_mgrEmRPKNS1_11ObSchemaMgrE:3 + 5.1: 0 + 6.1: 3 + 7: 0 + 8.1: 0 + 10: 3 +_ZN9oceanbase6common14ObTimerMonitor10start_taskElllPKNS0_11ObTimerTaskE:141:1 + 4: 1 + 11: 1 + 12: 1 + 14: 1 + 15: 1 + 16: 1 + 18: 1 + 19: 1 + 21: 1 + 5: _ZNK9oceanbase6common14ObTimerMonitor8find_posEl:83 + 2: 1 + 5: 1 + 5.1: 3 + 5.3: 3 + 6: 4 + 7: _ZN9oceanbase6common14ObTimerMonitor17record_new_threadEl:0 + 2: 0 + 5.1: 0 + 7: 0 + 15: 0 + 16: 0 +_ZN9oceanbase6common11ObArrayImplINS_5share8ObLSInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEED2Ev:141:0 + 1: 0 + 3: 2 + 3.2: 0 + 2: _ZN9oceanbase6common11ObArrayImplINS_5share8ObLSInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE7destroyEv:119 + 2: 0 + 3.1: 1 + 3.3: 1 + 4: 0 + 6: 1 + 7: 2 + 9: 2 + 11: 2 + 6: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:39 + 0: 1 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:31 + 2: 1 + 3: 1 _ZN9oceanbase3lib17ObMallocAllocator12get_instanceEv:1 + 4: 1 + 5: 1 _ZN9oceanbase3lib17ObMallocAllocator4freeEPv:1 + 4: _ZL12abort_unlessb:2 + 5: 1 + 6: 0 +_ZN9oceanbase5share11ObLSReplica16text2member_listEPKcRNS_6common9ObSEArrayINS0_12SimpleMemberELl7ENS4_15ObNullAllocatorELb0EEE:141:1 + 1: 1 + 2: 1 + 3: 1 + 4: 1 + 6: 1 + 7: 0 + 8.1: 0 + 10.1: 0 + 12: 1 + 12.3: 1 + 17: 1 + 19: 0 + 20: 0 + 21: 0 + 22: 0 + 23: 0 + 23.1: 0 + 24: 0 + 25.1: 0 + 26.1: 0 + 27.1: 0 + 28.1: 0 + 29.1: 0 + 32: 0 + 33.1: 0 + 39: 1 + 5: _ZN9oceanbase6common13ObSEArrayImplINS_5share12SimpleMemberELl7ENS0_15ObNullAllocatorELb0EE5resetEv:7 + 0: 1 _ZN9oceanbase6common13ObSEArrayImplINS_5share12SimpleMemberELl7ENS0_15ObNullAllocatorELb0EE7destroyEv:1 + 11: _ZN9oceanbase5share12SimpleMemberC2Ev:32 + 0: 1 + 0: _ZN9oceanbase6common6ObAddrC2Ev:22 + 1: 1 +_ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS0_8ObStringEPNS_3sql17ObInnerContextMapEEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEC2Ev:140:2 + 0: 2 + 1: 2 + 2: 2 + 3: 2 + 0.1: _ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocatorC2EmRKNS_3lib7ObLabelE:68 + 3: 2 + 4: 2 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:30 + 7: 2 + 2: _ZN9oceanbase6common4hash10SpinIniterC2ERVi:20 + 2: 2 + 3.1: 0 +_ZN9oceanbase6common16ObFixedArrayImplINS_3sql20ObImplicitCursorInfoENS0_12ObIAllocatorEED2Ev:140:2 + 0: 2 + 0.1: 2 + 0.3: 0 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS_3sql20ObImplicitCursorInfoENS0_12ObIAllocatorEE7destroyEv:80 + 2: 2 + 5: 2 + 9: 0 + 10: 0 + 12: 2 + 13: 2 + 15: 2 +_ZN9oceanbase6common14SpinRLockGuardD2Ev:140:4 + 1: 4 + 2: 4 + 3: 4 + 3.1: 4 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 7.1: 4 + 3: _ZN9oceanbase6common10SpinRWLock6unlockEv:12 + 0: 4 _ZN9oceanbase6common7ObLatch6unlockEPKj:4 +_ZN9oceanbase6common13ObSEArrayImplINS_3sql18ObBasicSessionInfo13TableStmtTypeELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv:140:2 + 1: 2 + 4.1: 2 + 4.3: 0 + 5: 0 + 9: 2 + 11: 0 + 13: 2 + 15: 2 + 24: 2 + 25: 2 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_3sql18ObBasicSessionInfo13TableStmtTypeELl2ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: 0 +_ZN9oceanbase6common13ObSEArrayImplINS_3sql18ObBasicSessionInfo13TableStmtTypeELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:140:2 + 1: 2 + 4.1: 2 + 4.3: 0 + 5: 0 + 9: 2 + 11: 0 + 13: 2 + 15: 2 + 24: 2 + 25: 2 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_3sql18ObBasicSessionInfo13TableStmtTypeELl1ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: 0 +_ZN9oceanbase5share6schema19ObSchemaGetterGuard17get_tenant_statusEmRNS1_14ObTenantStatusE:140:1 + 1: 1 + 2: 1 + 3: 1 + 4: 1 + 5: 1 + 6: 0 + 7.1: 0 + 9: 0 + 10.1: 1 _ZNK9oceanbase5share6schema19ObSchemaGetterGuard14get_schema_mgrEmRPKNS1_11ObSchemaMgrE:1 + 11.1: 0 + 12.1: 1 + 14: 0 + 15: 0 + 16.1: 0 + 17.1: 0 + 18: 0 + 19.1: 0 + 24: 1 + 25: 1 _ZNK9oceanbase5share6schema11ObSchemaMgr17get_tenant_schemaEmRPKNS1_20ObSimpleTenantSchemaE:1 + 26.1: 0 + 27.1: 1 + 28: 0 + 29.1: 0 + 34: 1 + 21: _ZNK9oceanbase5share6schema14ObTenantSchema10get_statusEv:0 + 0: 0 + 31: _ZNK9oceanbase5share6schema20ObSimpleTenantSchema10get_statusEv:6 + 0: 1 +_ZNK9oceanbase3sql12ObKeyPartPoseqERKS1_:139:1 + 1: 1 + 3: 1 + 4: 1 + 5: 1 + 5.1: 1 + 6.1: 1 + 6.2: 1 + 6.3: 1 + 9: 1 + 4.1: _ZNK9oceanbase3sql13ObExprResTypeeqERKS1_:37 + 2: 1 + 2: _ZNK9oceanbase6common9ObObjMetaeqERKS1_:26 + 2: 1 + 2.1: 1 + 2.2: 1 + 2.1: _ZNK9oceanbase6common10ObAccuracyeqERKS1_:9 + 0: 1 + 5.1: _ZNK9oceanbase6common12ObIArrayWrapINS0_8ObStringEE5countEv:8 + 0: 1 + 6.2: _ZNK9oceanbase6common12ObIArrayWrapINS0_8ObStringEE5countEv:8 + 7: _ZNK9oceanbase6common12ObIArrayWrapINS0_8ObStringEE2atEl:0 + 6: 0 + 7.1: _ZNK9oceanbase6common12ObIArrayWrapINS0_8ObStringEE2atEl:10 + 7.2: _ZNK9oceanbase6common8ObStringeqERKS1_:0 + 2: 0 + 2: _ZNK9oceanbase6common8ObString7compareERKS1_:0 + 3: 0 + 4: 0 + 5.1: 0 + 7.1: 0 + 7.2: 0 + 7.1: _ZSt3minIiERKT_S2_S2_:0 + 5: 0 +_ZN9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE7destroyEv:139:2 + 1: 1 + 4.1: 1 + 4.3: 1 + 9: 1 + 11: 1 + 2: _ZN9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE13destruct_objsEv:11 + 11: 1 + 3: _ZNK9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE15get_block_countEv:4 + 0: _ZNK9oceanbase6common12ObIArrayWrapIPNS0_10ObObjParamEE5countEv:4 + 0: 1 + 6: _ZN9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE10free_blockES5_:26 + 0: _ZN9oceanbase6common18ObWrapperAllocator4freeEPv:26 + 2: 1 + 3: 1 + 10: _ZN9oceanbase6common13ObSEArrayImplIPNS0_10ObObjParamELl1ENS0_18ObWrapperAllocatorELb0EE7destroyEv:40 + 9: 1 + 11: 0 + 13: 1 + 15: 1 + 24: 1 + 10: _ZN9oceanbase6common13ObSEArrayImplIPNS0_10ObObjParamELl1ENS0_18ObWrapperAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common18ObWrapperAllocator4freeEPv:0 + 2: 0 + 3: 0 +_ZN9oceanbase6common10ObIOCBPoolINS_5share11ObLocalIOCBEE4freeEPS3_:137:1 + 1: 1 + 2: 1 + 3.1: 1 + 6: 0 + 7.1: 0 + 9: 0 + 12: 1 + 3.1: _ZNK9oceanbase6common10ObIOCBPoolINS_5share11ObLocalIOCBEE16is_pre_allocatedEPS3_:30 + 0: 1 + 0.1: 1 + 4: _ZN9oceanbase6common12ObFixedQueueINS_5share11ObLocalIOCBEE4pushEPS3_:78 + 3: 1 + 8: 1 + 9: 1 + 11.1: 1 + 11.2: 0 + 11.3: 1 + 12: 0 + 12.1: 1 + 13: 0 + 15: 1 + 16: 1 + 17.1: 1 + 18: 0 +_ZN9oceanbase3sql18ObBasicSessionInfo15get_pc_mem_confERNS0_14ObPCMemPctConfE:137:3 + 1: 3 + 3: 3 _ZNK9oceanbase3sql18ObBasicSessionInfo16get_sys_variableENS_5share17ObSysVarClassTypeERl:3 + 4.1: 0 + 5.1: 1 _ZNK9oceanbase3sql18ObBasicSessionInfo16get_sys_variableENS_5share17ObSysVarClassTypeERl:1 + 6.1: 0 + 7.1: 1 _ZNK9oceanbase3sql18ObBasicSessionInfo16get_sys_variableENS_5share17ObSysVarClassTypeERl:1 + 8.1: 0 + 10: 1 +_ZNK9oceanbase6common10ObFunctionIFbvEE7DerivedINS_7storage25ObReCheckNothingOperationEE4copyERNS0_12ObIAllocatorEPv:135:3 + 0: 3 + 7: 3 + 10: 0 + 11: 0 + 12.1: 0 + 16: 3 + 8: _ZN9oceanbase6common10ObFunctionIFbvEE7DerivedINS_7storage25ObReCheckNothingOperationEEC2IRKS6_EEOT_:42 + 0: 3 +_ZN9oceanbase7storage16ObTxDataMemtable11get_tx_dataERKNS_11transaction9ObTransIDERNS0_13ObTxDataGuardE:135:2 + 1: 2 + 2: 2 + 3: 2 + 4: 2 + 5: 0 + 6.1: 0 + 7.1: 2 _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9ObTransIDENS_7storage8ObTxDataENS4_24TxDataHashMapAllocHandleENS0_9RefHandleELl8EE3getERKS3_RPS5_:2 + 9.1: 0 + 10.1: 0 + 14: 1 + 9.1: _ZN9oceanbase7storage13ObTxDataGuard4initEPNS0_8ObTxDataEPNS_6common13ObLinkHashMapINS_11transaction9ObTransIDES2_NS0_24TxDataHashMapAllocHandleENS4_9RefHandleELl8EEE:0 + 2: 0 + 3: 0 + 6: 0 + 7: 0 + 8.1: 0 + 10: 0 + 11: 0 + 12: 0 + 15: 0 + 4: _ZN9oceanbase7storage13ObTxDataGuard5resetEv:0 + 2: 0 + 4: 0 + 5: 0 + 2: _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9ObTransIDENS_7storage8ObTxDataENS4_24TxDataHashMapAllocHandleENS0_9RefHandleELl8EE6revertEPS5_:0 + 2: 0 + 3: 0 + 3: _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9ObTransIDENS_7storage8ObTxDataENS4_24TxDataHashMapAllocHandleENS0_9RefHandleELl8EE6revertEPNS0_12LinkHashNodeIS3_EE:0 + 6: 0 + 6.1: 0 + 6.2: 0 + 7.1: 0 + 10: 0 + 11: _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9ObTransIDENS_7storage8ObTxDataENS4_24TxDataHashMapAllocHandleENS0_9RefHandleELl8EE8dec_urefEPNS0_12LinkHashNodeIS3_EE:0 + 3: 0 + 3: _ZN9oceanbase6common9RefHandle3decEPNS0_7RefNodeE:0 + 0: 0 + 4: _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9ObTransIDENS_7storage8ObTxDataENS4_24TxDataHashMapAllocHandleENS0_9RefHandleELl8EE13on_uref_cleanEPNS0_12LinkHashNodeIS3_EE:0 + 4: _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9ObTransIDENS_7storage8ObTxDataENS4_24TxDataHashMapAllocHandleENS0_9RefHandleELl8EE8dec_hrefEPNS0_12LinkHashNodeIS3_EE:0 + 3: 0 + 4: 0 + 3: _ZN9oceanbase6common7RefNode5xhrefEi:0 + 0: 0 +_ZZN9oceanbase7storage14ObLSWRSHandler29generate_weak_read_timestamp_ERNS0_4ObLSElRlENK5$_192clEPKc.d95568170f20f515ba23d039c2565689:134:3 + 0: 2 + 0.1: 0 + 0.2: 2 + 0.3: 2 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:2 + 0.9: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:34 + 2: 2 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKNS_5share6ObLSIDELb0EEC2EPKcS5_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 +_ZZN9oceanbase5share6schema19ObSchemaGetterGuard15get_tenant_infoEmRPKNS1_14ObTenantSchemaEENK5$_245clEPKc.bfa63f0f3456173f564c7cf65584fc48:134:2 + 0: 2 + 0.1: 0 + 0.2: 2 + 0.3: 2 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:2 + 0.5: 0 + 0.8: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:34 + 2: 2 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 + 0.7: _ZN9oceanbase6common7ObLogKVIRKPcLb0EEC2EPKcS4_:0 + 0: 0 +_ZZN9oceanbase5share6schema17ObSysTableChecker20check_sys_table_nameEmmRKNS_6common8ObStringERbENK4$_24clEPKc.238ab44b22ba0c710eddc3a8b49e8eb3:134:2 + 0: 2 + 0.1: 0 + 0.2: 2 + 0.3: 2 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:2 + 0.9: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:34 + 2: 2 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKNS_5share6schema17ObSysTableChecker16TableNameWrapperELb0EEC2EPKcS7_:0 + 0: 0 +_ZZN9oceanbase3sql29ObTenantCachedSchemaGuardInfo23try_revert_schema_guardEvENK5$_505clEPKc.7d011f5114f8312fd0eb7b31f2639cf5:134:2 + 0: 2 + 0.1: 0 + 0.2: 2 + 0.3: 2 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:2 + 0.9: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:34 + 2: 2 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.1: _ZNK9oceanbase5share6schema19ObSchemaGetterGuard14get_session_idEv:0 + 0: 0 + 0.4: _ZN9oceanbase6common7ObLogKVImLb1EEC2EPKcOKm:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 +_ZNK9oceanbase3sql12PCVSchemaObjeqERKS1_:134:2 + 1: 2 + 3: 2 + 5.1: 2 + 6: 2 + 7: 2 + 8: 2 + 9: 2 + 10: 2 + 12: 0 + 13: 0 + 15: 2 +_ZN9oceanbase6common7ObDListINS_8observer20ObInnerSQLConnectionEE8add_lastEPS3_:134:2 + 1: 2 + 3: 2 + 5.1: 0 + 6.1: 2 + 6.2: 2 + 6.3: 2 + 9.1: 0 + 13: 2 + 15: 2 + 12: _ZN9oceanbase6common11ObDLinkBaseINS_8observer20ObInnerSQLConnectionEE10add_beforeEPS3_:48 + 2: 2 + 2: _ZN9oceanbase6common11ObDLinkBaseINS_8observer20ObInnerSQLConnectionEE3addEPS3_S5_S5_:32 + 2: 2 + 3: 2 + 4: 2 + 5: 2 +_ZN9oceanbase6common13ObSEArrayImplIPNS_3sql15ObDatumObjParamELl1ENS0_18ObWrapperAllocatorELb0EED2Ev:134:2 + 1: 2 + 3: 2 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplIPNS_3sql15ObDatumObjParamELl1ENS0_18ObWrapperAllocatorELb0EE7destroyEv:76 + 9: 2 + 11: 0 + 13: 2 + 15: 2 + 24: 2 + 10: _ZN9oceanbase6common13ObSEArrayImplIPNS_3sql15ObDatumObjParamELl1ENS0_18ObWrapperAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common18ObWrapperAllocator4freeEPv:0 + 2: 0 + 3: 0 +_ZN9oceanbase6common13ObSEArrayImplIPNS0_10ObObjParamELl1ENS0_18ObWrapperAllocatorELb0EED2Ev:134:2 + 1: 2 + 3: 2 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplIPNS0_10ObObjParamELl1ENS0_18ObWrapperAllocatorELb0EE7destroyEv:76 + 9: 2 + 11: 0 + 13: 2 + 15: 2 + 24: 2 + 10: _ZN9oceanbase6common13ObSEArrayImplIPNS0_10ObObjParamELl1ENS0_18ObWrapperAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common18ObWrapperAllocator4freeEPv:0 + 2: 0 + 3: 0 +_ZN9oceanbase3lib13ObResourceMgr7dec_refEPNS0_19ObTenantResourceMgrE:134:2 + 1: 2 + 2: 2 + 3: 2 + 4: 2 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 9.1: 0 + 10.1: 0 + 14: 0 + 14.1: 0 + 14.2: 2 + 15.1: 0 + 18.2: 2 +_ZN9oceanbase11transaction14ObTxLoopWorker21update_max_commit_ts_EPNS_7storage4ObLSE:134:1 + 1: 1 + 3: 1 + 4: 1 + 8: 1 + 10.1: 1 _ZN9oceanbase11transaction7ObTsMgr12get_instanceEv:1 + 10.4: 1 _ZN9oceanbase11transaction7ObTsMgr7get_gtsEmPNS0_10ObTsCbTaskERl:1 + 12: 0 + 14.1: 0 + 16.1: 0 + 18.1: 0 + 20: 0 + 25.1: 0 + 26: 0 + 4: _ZN9oceanbase6common16ObClockGenerator8getClockEv:24 + 4: 1 + 5.1: 0 + 8: 1 + 6: _ZN9oceanbase6common16ObClockGenerator6get_usEv:0 + 2: 0 + 7: _ZN9oceanbase6common16ObClockGenerator8getClockEv:17 + 4: 1 + 5.1: 0 + 8: 1 + 6: _ZN9oceanbase6common16ObClockGenerator6get_usEv:0 + 2: 0 + 10.2: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:17 + 2: 1 + 2.1: 0 + 2.2: 0 + 10.3: _ZNK9oceanbase5share12ObTenantBase2idEv:15 + 0: 1 + 21.1: _ZN9oceanbase7storage13ObLSTxService17get_trans_serviceEv:0 + 0: 0 + 22.1: _ZN9oceanbase11transaction14ObTxVersionMgr20update_max_commit_tsElb:0 + 7.1: 0 + 3: _ZN9oceanbase6common10inc_updateIlEElPT_S2_:0 + 3: 0 + 4.1: 0 + 5: 0 +_ZN9oceanbase5share26ObSysVarSqlThrottleNetworkC2Ev:133:1 + 0: 1 + 0: _ZN9oceanbase5share15ObNumericSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:113 + 5: _ZN9oceanbase5share13ObBasicSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKS1_RKNS_6common5ObObjERSB_EPFiS4_S7_S9_SD_EPFiRNSA_12ObIAllocatorERKNS2_18ObBasicSessionInfoES9_SE_EPFiSK_SN_S9_RNSA_8ObStringEEPFNSA_9ObObjTypeEvEb:113 + 11: 1 + 12: 1 + 13: 1 + 15: 1 + 20: _ZN9oceanbase5share13ObBasicSysVar11clean_valueEv:69 + 2: _ZN9oceanbase5share13ObBasicSysVar16clean_base_valueEv:24 + 2: 1 + 3: _ZN9oceanbase6common5ObObj13set_nop_valueEv:16 + 2: _ZN9oceanbase6common5ObObj7set_extEl:16 + 4: 1 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:8 + 0: 1 + 3: _ZN9oceanbase5share13ObBasicSysVar15clean_inc_valueEv:21 + 2: _ZN9oceanbase6common5ObObj13set_nop_valueEv:21 + 2: _ZN9oceanbase6common5ObObj7set_extEl:21 + 4: 1 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:8 + 0: 1 + 4: _ZN9oceanbase6common5ObObj5resetEv:12 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4 + 0: 1 + 5: _ZN9oceanbase6common5ObObj5resetEv:12 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4 + 0: 1 +_ZN9oceanbase5share26ObSysVarNlsLengthSemanticsC2Ev:133:1 + 0: 1 + 0: _ZN9oceanbase5share15ObVarcharSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:113 + 5: _ZN9oceanbase5share13ObBasicSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKS1_RKNS_6common5ObObjERSB_EPFiS4_S7_S9_SD_EPFiRNSA_12ObIAllocatorERKNS2_18ObBasicSessionInfoES9_SE_EPFiSK_SN_S9_RNSA_8ObStringEEPFNSA_9ObObjTypeEvEb:113 + 11: 1 + 12: 1 + 13: 1 + 15: 1 + 20: _ZN9oceanbase5share13ObBasicSysVar11clean_valueEv:69 + 2: _ZN9oceanbase5share13ObBasicSysVar16clean_base_valueEv:24 + 2: 1 + 3: _ZN9oceanbase6common5ObObj13set_nop_valueEv:16 + 2: _ZN9oceanbase6common5ObObj7set_extEl:16 + 4: 1 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:8 + 0: 1 + 3: _ZN9oceanbase5share13ObBasicSysVar15clean_inc_valueEv:21 + 2: _ZN9oceanbase6common5ObObj13set_nop_valueEv:21 + 2: _ZN9oceanbase6common5ObObj7set_extEl:21 + 4: 1 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:8 + 0: 1 + 4: _ZN9oceanbase6common5ObObj5resetEv:12 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4 + 0: 1 + 5: _ZN9oceanbase6common5ObObj5resetEv:12 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4 + 0: 1 +_ZN9oceanbase8observer9ObMPQuery24process_with_tmp_contextERNS_3sql16ObSQLSessionInfoEbbRbS5_:132:0 + 5: 0 + 13: 0 + 16: 0 + 16.1: 0 + 16.5: 0 + 16.6: 0 + 16.7: 0 + 16.8: 0 + 16.9: 0 + 16.10: 0 + 16.12: 0 + 16.13: 0 + 16.15: 0 + 16.16: 0 + 22: 0 + 24: 0 + 9: _ZN9oceanbase3lib12ContextParamC2Ev:0 + 1: 0 + 3: 0 + 4: 0 + 2.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 7: 0 + 10: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 10.1: _ZNK9oceanbase5share12ObTenantBase2idEv:0 + 0: 0 + 10.2: _ZN9oceanbase3lib12ContextParam12set_mem_attrIJmRA12_KcNS_6common8ObCtxIds11ObCtxIdEnumEEEERS1_DpOT_:0 + 2: 0 + 12: _ZN9oceanbase3lib12ContextParam14set_propertiesEl:0 + 2: 0 + 13: _ZN9oceanbase3lib12is_mini_modeEv:0 + 2: 0 + 13.1: _ZN9oceanbase3lib12ContextParam13set_page_sizeEl:0 + 2: 0 + 15: _ZN9oceanbase3lib12ContextParam15set_ablock_sizeEj:0 + 2: 0 + 16.6: _ZN9oceanbase3lib11DynamicInfoC2Ev:0 + 1: 0 + 2: 0 + 1: _Z9ob_gettidv:0 + 3: 0 + 4: 0 + 2: _Z13get_tid_cachev:0 + 7: 0 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 16.11: _ZNK9oceanbase3lib6_SBase7get_retEv:0 + 2: 0 + 17: _ZN9oceanbase8observer9ObMPQuery10do_processERNS_3sql16ObSQLSessionInfoEbbRbS5_:132 + 6: 0 + 13: 0 + 15: 0 + 20: 0 + 24: 0 + 25: 0 + 29: 0 + 29.2: 0 + 29.4: 0 + 29.6: 0 + 29.7: 0 + 29.9: 0 + 29.12: 0 + 29.13: 0 + 29.16: 0 + 30.2: 0 + 35.1: 0 + 36.1: 0 + 36.2: 0 + 37.1: 0 + 38.1: 0 + 38.2: 0 + 39.1: 0 + 40.1: 0 + 41: 0 + 42.1: 0 + 44: 0 + 44.1: 0 + 46: 0 + 47: 0 + 48: 0 + 54: 0 + 55: 0 + 56: 0 + 58.3: 0 + 59.3: 0 + 60: 0 + 61: 0 + 65: 0 + 68: 0 + 69.1: 0 + 72: 0 + 74.1: 0 + 75: 0 + 76.1: 0 + 77.1: 0 + 77.2: 1 + 78.1: 0 + 79.1: 1 _ZN9oceanbase3sql5ObSql10stmt_queryERKNS_6common8ObStringERNS0_8ObSqlCtxERNS0_11ObResultSetE:1 + 79.2: 0 + 80: 0 + 80.1: 0 + 81.1: 0 + 81.2: 0 + 82: 0 + 83: 0 + 84: 0 + 88.1: 0 + 91: 0 + 92: 0 + 101.1: 0 + 105: 0 + 107: 0 + 107.1: 0 + 114.2: 0 + 118.1: 0 + 120: 0 + 124: 0 + 129.2: 0 + 132.2: 0 + 133: 0 + 134.1: 0 + 136: 0 + 137.1: 0 + 144: 0 + 145: 0 + 145.1: 0 + 146.1: 0 + 152.1: 0 + 152.3: 0 + 152.4: 0 + 153: 0 + 154.1: 0 + 158: 0 + 158.1: 0 + 159: 0 + 160: 0 + 162: 0 + 164.1: 0 + 167: 0 + 175: 0 + 177.1: 0 + 187.1: 0 + 192: 0 + 196: 0 + 198: 0 + 201: 0 + 201.4: 0 + 201.6: 0 + 201.7: 0 + 202: 0 + 205.1: 0 + 211: 0 + 212: 0 + 212.1: 0 + 212.2: 0 + 213: 0 + 214.1: 0 + 218: 0 + 218.3: 0 + 218.4: 0 + 218.6: 0 + 220: 0 + 221.1: 0 + 222.2: 0 + 222.3: 0 + 230: 0 + 230.4: 0 + 232: 0 + 233: 0 + 234.1: 0 + 237.2: 0 + 238: 0 + 239: 0 + 240.1: 0 + 241.1: 0 + 242.1: 0 + 243.1: 0 + 245.1: 0 + 246.1: 0 + 247.1: 0 + 249: 0 + 250.1: 0 + 253.1: 0 + 257: 0 + 259.1: 0 + 260.1: 0 + 261.1: 0 + 264: 0 + 267.1: 0 + 271: 0 + 272: 0 + 273: 0 + 276: 0 + 280.1: 0 + 282: 0 + 283: 0 + 283.1: 0 + 284.1: 0 + 288: 0 + 289.2: 0 + 290.1: 0 + 294: 0 + 299: 0 + 300: 0 + 303.2: 0 + 304: 0 + 304.1: 0 + 304.2: 0 + 305: 0 + 306.1: 0 + 308.1: 0 + 308.2: 0 + 309.1: 0 + 310: 0 + 311: 0 + 314.1: 1 _ZN9oceanbase3sql20ObSecurityAuditUtils21handle_security_auditERNS0_11ObResultSetEPNS_5share6schema19ObSchemaGetterGuardEPKNS0_6ObStmtERKNS_6common8ObStringEi:1 + 315: 1 + 316: 1 + 317.1: 1 + 318: 1 + 321: 1 + 322.48: 0 + 322.50: 0 + 322.52: 0 + 322.53: 0 + 7: _ZN9oceanbase3sql16ObSQLSessionInfo16get_audit_recordEv:0 + 2: 0 + 10: _ZNK9oceanbase3sql15ObMultiStmtItem7get_sqlEv:0 + 11: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:0 + 2: 0 + 13.1: _ZNK9oceanbase3sql18ObBasicSessionInfo29get_local_ob_enable_sql_auditEv:0 + 2: 0 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache23get_ob_enable_sql_auditEv:0 + 0: 0 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache23get_ob_enable_sql_auditEb:0 + 23: _ZN9oceanbase3sql16ObSQLSessionInfo28get_cached_schema_guard_infoEv:0 + 26: _ZN9oceanbase3sql27ObSqlFatalErrExtraInfoGuardC2Ev:0 + 0: 0 + 0.1: _ZN9oceanbase3sql27ObSqlFatalErrExtraInfoGuard5resetEv:0 + 2: _ZN9oceanbase6common8ObString5resetEv:0 + 3: 0 + 27: _ZN9oceanbase3sql27ObSqlFatalErrExtraInfoGuard11set_cur_sqlERKNS_6common8ObStringE:0 + 0: 0 + 28: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:0 + 0: 0 + 28.1: _ZN9oceanbase3sql27ObSqlFatalErrExtraInfoGuard13set_tenant_idEm:0 + 0: 0 + 29.12: _ZN9oceanbase8observer16ObMySQLResultSetC2ERNS_3sql16ObSQLSessionInfoERNS_6common12ObIAllocatorE:0 + 1: 0 + 1.1: 0 + 2.1: 0 + 3: 0 + 0: _ZN9oceanbase6common11ObDLinkBaseINS_8observer16ObMySQLResultSetEEC2Ev:0 + 1: 0 + 29.15: _ZN9oceanbase6common2SVINS_8observer16ObMySQLResultSetELb0EE3getEv:0 + 2: 0 + 30: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:0 + 0: 0 + 30.1: _ZN9oceanbase8observer9ObMPQuery23get_tenant_schema_info_EmPNS_3sql29ObTenantCachedSchemaGuardInfoERPNS_5share6schema19ObSchemaGetterGuardERlSA_:0 + 6: 0 + 10: 0 + 13.1: 0 + 17: 0 + 18: 0 + 19: 0 + 20.1: 0 + 21.1: 0 + 22.1: 0 + 23.1: 0 + 26.1: 0 + 27.1: 0 + 28.1: 0 + 29.1: 0 + 30.1: 0 + 37: 0 + 38: 0 + 41.1: 0 + 42.1: 0 + 46: 0 + 47.1: 0 + 48.1: 0 + 49.1: 0 + 56: 0 + 10: _ZNK9oceanbase5share6schema19ObSchemaGetterGuard9is_initedEv:0 + 0: 0 + 44.1: _ZN9oceanbase3sql5ObSql16get_execution_idEv:0 + 0: 0 + 44.2: _ZN9oceanbase3sql18ObBasicSessionInfo24set_current_execution_idEl:0 + 0: 0 + 45: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:0 + 0: 0 + 0.2: 0 + 45.1: _ZN9oceanbase3sql13ObExecContext19set_need_disconnectEb:0 + 0: 0 + 47: _ZN9oceanbase8observer16ObQueryRetryCtrl31set_tenant_local_schema_versionEl:0 + 2: 0 + 48: _ZN9oceanbase8observer16ObQueryRetryCtrl28set_sys_local_schema_versionEl:0 + 2: 0 + 49: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:0 + 0: 0 + 0.2: 0 + 49.1: _ZN9oceanbase3sql27ObSqlFatalErrExtraInfoGuard16set_exec_contextEPNS0_13ObExecContextE:0 + 0: 0 + 52: _ZN9oceanbase6common15ObWaitEventStatC2Ev:0 + 1: 0 + 63: _ZN9oceanbase8observer16ObMySQLResultSet19set_has_more_resultEb:0 + 2: 0 + 64: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:0 + 0: 0 + 0.2: 0 + 66: _ZNK9oceanbase8observer16ObQueryRetryCtrl31get_tenant_local_schema_versionEv:0 + 2: 0 + 66.1: _ZN9oceanbase3sql17ObTaskExecutorCtx37set_query_tenant_begin_schema_versionEl:0 + 2: 0 + 67: _ZNK9oceanbase8observer16ObQueryRetryCtrl28get_sys_local_schema_versionEv:0 + 2: 0 + 67.1: _ZN9oceanbase3sql17ObTaskExecutorCtx34set_query_sys_begin_schema_versionEl:0 + 2: 0 + 68.1: _ZN9oceanbase6common16ObClusterVersion19get_cluster_versionEv:0 + 0: 0 + 68.2: _ZN9oceanbase3sql17ObTaskExecutorCtx23set_min_cluster_versionEm:0 + 2: 0 + 69: _ZNK9oceanbase8observer16ObQueryRetryCtrl15get_retry_timesEv:0 + 2: 0 + 77.1: _ZNK9oceanbase8observer8ObMPBase18set_session_activeERKNS_6common8ObStringERNS_3sql16ObSQLSessionInfoElNS_7obmysql10ObMySQLCmdE:0 + 5.1: 0 + 5: _ZNK9oceanbase3rpc5frame14ObReqProcessor21get_receive_timestampEv:0 + 2: 0 + 81: _ZN9oceanbase3lib6Worker4selfEv:0 + 3: 0 + 4: 0 + 101.1: _ZN9oceanbase3sql16ObQueryRetryInfo24set_last_query_retry_errEi:0 + 2: 0 + 102.1: _ZN9oceanbase3sql16ObQueryRetryInfo13inc_retry_cntEv:0 + 0: 0 + 108: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:0 + 0: 0 + 0.2: 0 + 108.1: _ZN9oceanbase3sql13ObExecContext19set_plan_start_timeEl:0 + 0: 0 + 0: _ZN9oceanbase3sql17ObPhysicalPlanCtx19set_plan_start_timeEl:0 + 0: 0 + 113: _ZNK9oceanbase3sql11ObResultSet21get_literal_stmt_typeEv:0 + 2: 0 + 113.1: _ZN9oceanbase3sql6ObStmt18is_diagnostic_stmtENS0_4stmt8StmtTypeE:0 + 2: 0 + 114.1: _ZN9oceanbase3sql6ObStmt18is_show_trace_stmtENS0_4stmt8StmtTypeE:0 + 2: 0 + 115: _ZN9oceanbase3sql11ObResultSet17get_physical_planEv:0 + 2: _ZNK9oceanbase3sql15ObCacheObjGuard13get_cache_objEv:0 + 2: 0 + 116: _ZN9oceanbase3sql27ObSqlFatalErrExtraInfoGuard12set_cur_planEPKNS0_14ObPhysicalPlanE:0 + 0: 0 + 118: _ZNK9oceanbase8observer9ObMPQuery21get_is_com_filed_listEv:0 + 0: 0 + 119: _ZN9oceanbase3sql11ObResultSet21set_is_com_filed_listEv:0 + 0: 0 + 120: _ZN9oceanbase3sql11ObResultSet19set_wildcard_stringENS_6common8ObStringE:0 + 0: 0 + 129.1: _ZN9oceanbase8observer9ObMPQuery15response_resultERNS0_16ObMySQLResultSetEbRb:0 + 4: 0 + 10: 0 + 10.1: 0 + 13.1: 0 + 14: 0 + 15: 0 + 18.1: 0 + 19.1: 0 + 20.1: 0 + 20.2: 0 + 21.1: 0 + 26: 0 + 27: 0 + 27.1: 0 + 30: 0 + 32: 0 + 33.1: 0 + 34.1: 0 + 35.1: 0 + 35.2: 0 + 36.1: 0 + 40: 0 + 43: 0 + 43.1: 0 + 48: 0 + 5: _ZN9oceanbase5trace16__ObFLTSpanGuardC2Ejh:0 + 2: 0 + 2.1: 0 + 7: _ZN9oceanbase3sql11ObResultSet11get_sessionEv:0 + 0: 0 + 15: _ZN9oceanbase8observer17ObAsyncPlanDriverC2ERKNS0_15ObGlobalContextERKNS_3sql8ObSqlCtxERNS5_16ObSQLSessionInfoERNS0_16ObQueryRetryCtrlERNS0_17ObIMPPacketSenderEb:0 + 7: 0 + 6: _ZN9oceanbase8observer13ObQueryDriverC2ERKNS0_15ObGlobalContextERKNS_3sql8ObSqlCtxERNS5_16ObSQLSessionInfoERNS0_16ObQueryRetryCtrlERNS0_17ObIMPPacketSenderEb:0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 18: _ZN9oceanbase8observer15ObSqlEndTransCb4initERNS0_16ObMPPacketSenderEPNS_3sql16ObSQLSessionInfoEim:0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 8: _ZN9oceanbase8observer16ObMPPacketSender10clone_fromERS1_:0 + 3: 0 + 4.1: 0 + 6: 0 + 7: 0 + 9: 0 + 23: _ZNK9oceanbase3sql11ObResultSet28is_async_end_trans_submittedEv:0 + 2: _ZNK9oceanbase3sql11ObResultSet16get_exec_contextEv:0 + 1: 0 + 26: _ZN9oceanbase8observer16ObSyncPlanDriverC2ERKNS0_15ObGlobalContextERKNS_3sql8ObSqlCtxERNS5_16ObSQLSessionInfoERNS0_16ObQueryRetryCtrlERNS0_17ObIMPPacketSenderEbi:0 + 8: 0 + 9: 0 + 7: _ZN9oceanbase8observer13ObQueryDriverC2ERKNS0_15ObGlobalContextERKNS_3sql8ObSqlCtxERNS5_16ObSQLSessionInfoERNS0_16ObQueryRetryCtrlERNS0_17ObIMPPacketSenderEb:0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 32: _ZN9oceanbase8observer16ObAsyncCmdDriverC2ERKNS0_15ObGlobalContextERKNS_3sql8ObSqlCtxERNS5_16ObSQLSessionInfoERNS0_16ObQueryRetryCtrlERNS0_17ObIMPPacketSenderEb:0 + 7: 0 + 6: _ZN9oceanbase8observer13ObQueryDriverC2ERKNS0_15ObGlobalContextERKNS_3sql8ObSqlCtxERNS5_16ObSQLSessionInfoERNS0_16ObQueryRetryCtrlERNS0_17ObIMPPacketSenderEb:0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 33: _ZN9oceanbase8observer15ObSqlEndTransCb4initERNS0_16ObMPPacketSenderEPNS_3sql16ObSQLSessionInfoEim:0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 8: _ZN9oceanbase8observer16ObMPPacketSender10clone_fromERS1_:0 + 3: 0 + 4.1: 0 + 6: 0 + 7: 0 + 9: 0 + 38: _ZNK9oceanbase3sql11ObResultSet28is_async_end_trans_submittedEv:0 + 2: _ZNK9oceanbase3sql11ObResultSet16get_exec_contextEv:0 + 1: 0 + 40: _ZN9oceanbase8observer15ObSyncCmdDriverC2ERKNS0_15ObGlobalContextERKNS_3sql8ObSqlCtxERNS5_16ObSQLSessionInfoERNS0_16ObQueryRetryCtrlERNS0_17ObIMPPacketSenderEb:0 + 7: 0 + 6: _ZN9oceanbase8observer13ObQueryDriverC2ERKNS0_15ObGlobalContextERKNS_3sql8ObSqlCtxERNS5_16ObSQLSessionInfoERNS0_16ObQueryRetryCtrlERNS0_17ObIMPPacketSenderEb:0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 41: _ZN9oceanbase3sql16ObSQLSessionInfo19set_pl_query_senderEPNS_8observer13ObQueryDriverE:0 + 0: 0 + 42: _ZNK9oceanbase3sql11ObResultSet14is_ps_protocolEv:0 + 0: 0 + 42.1: _ZN9oceanbase3sql16ObSQLSessionInfo15set_ps_protocolEb:0 + 0: 0 + 44: _ZN9oceanbase3sql16ObSQLSessionInfo19set_pl_query_senderEPNS_8observer13ObQueryDriverE:0 + 0: 0 + 49.15: _ZN9oceanbase5trace16__ObFLTSpanGuardD2Ev:0 + 0: 0 + 0.1: 0 + 0.2: 0 + 0.4: 0 + 0.5: 0 + 0.7: 0 + 0.8: 0 + 0.3: _ZNK9oceanbase5trace4UUID9is_initedEv:0 + 0: 0 + 0.1: 0 + 0.6: _ZN9oceanbase5trace7ObTrace13is_auto_flushEv:0 + 0: 0 + 49.17: _ZN9oceanbase5trace16__ObFLTSpanGuardD2Ev:0 + 0: 0 + 0.1: 0 + 0.2: 0 + 0.4: 0 + 0.5: 0 + 0.7: 0 + 0.8: 0 + 0.3: _ZNK9oceanbase5trace4UUID9is_initedEv:0 + 0: 0 + 0.1: 0 + 0.6: _ZN9oceanbase5trace7ObTrace13is_auto_flushEv:0 + 0: 0 + 132: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:0 + 0: 0 + 0.2: 0 + 132.1: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:0 + 2: 0 + 152: _ZN9oceanbase6common9EventItemC2Ev:0 + 2: 0 + 152.2: _ZN9oceanbase6common10EventTable9get_eventEl:0 + 1.4: 0 + 164: _ZNK9oceanbase3sql11ObResultSet13get_stmt_typeEv:0 + 2: 0 + 174: _ZNK9oceanbase8observer16ObQueryRetryCtrl10need_retryEv:0 + 3: 0 + 188.1: _ZN9oceanbase3sql18ObPartitionHitInfo6freezeEv:0 + 0: 0 + 201.3: _ZNK9oceanbase8observer8ObMPBase13is_conn_validEv:0 + 0: _ZNK9oceanbase8observer16ObMPPacketSender13is_conn_validEv:0 + 0: 0 + 201.5: _ZN9oceanbase3lib6Worker4selfEv:0 + 3: 0 + 4: 0 + 211: _ZN9oceanbase3sql18ObBasicSessionInfo27get_err_final_partition_hitEi:0 + 3: 0 + 5.2: 0 + 6: 0 + 2.1: _ZN9oceanbase3sql18ObPartitionHitInfo8get_boolEv:0 + 0: 0 + 3: _ZN9oceanbase3sql18ObBasicSessionInfo29is_proxy_refresh_location_retEi:0 + 1: 0 + 5.1: _ZN9oceanbase3sql18ObBasicSessionInfo15get_is_in_retryEv:0 + 1: 0 + 6.2: _ZN9oceanbase3sql18ObBasicSessionInfo29is_proxy_refresh_location_retEi:0 + 1: 0 + 221: _ZNK9oceanbase3sql18ObBasicSessionInfo18get_in_transactionEv:0 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo17is_in_transactionEv:0 + 0: 0 + 0.1: _ZNK9oceanbase11transaction8ObTxDesc8is_in_txEv:0 + 0: 0 + 222: _ZNK9oceanbase3sql11ObResultSet13get_stmt_typeEv:0 + 2: 0 + 222.1: _ZNK9oceanbase3sql11ObResultSet19has_global_variableEv:0 + 0: 0 + 223: _ZN9oceanbase3sql18ObBasicSessionInfo23set_has_exec_write_stmtEb:0 + 0: _ZN9oceanbase3sql18ObBasicSessionInfo10TransFlags23set_has_exec_write_stmtEb:0 + 0: _ZN9oceanbase3sql18ObBasicSessionInfo10TransFlags8set_flagEbm:0 + 3: 0 + 226: _ZN9oceanbase3sql18ObBasicSessionInfo23set_has_exec_write_stmtEb:0 + 0: _ZN9oceanbase3sql18ObBasicSessionInfo10TransFlags23set_has_exec_write_stmtEb:0 + 0: _ZN9oceanbase3sql18ObBasicSessionInfo10TransFlags8set_flagEbm:0 + 3: 0 + 234: _ZNK9oceanbase3sql18ObBasicSessionInfo24get_current_execution_idEv:0 + 0: 0 + 235.1: _ZN9oceanbase6common6ObAddraSERKS1_:0 + 1: 0 + 2: 0 + 3: 0 + 236.1: _ZN9oceanbase6common6ObAddraSERKS1_:0 + 1: 0 + 2: 0 + 3: 0 + 237: _ZN9oceanbase3lib6Worker4selfEv:0 + 3: 0 + 4: 0 + 237.1: _ZNK9oceanbase3lib6Worker12get_group_idEv:0 + 0: 0 + 240: _ZNK9oceanbase3sql14ObPhysicalPlan13get_plan_typeEv:0 + 0: 0 + 241: _ZNK9oceanbase3sql14ObPhysicalPlan18contain_table_scanEv:0 + 0: 0 + 242: _ZN9oceanbase3sql14ObPhysicalPlan11get_plan_idEv:0 + 0: _ZNK9oceanbase3sql17ObILibCacheObject13get_object_idEv:0 + 0: 0 + 243: _ZNK9oceanbase3sql14ObPhysicalPlan19get_plan_hash_valueEv:0 + 0: 0 + 245: _ZNK9oceanbase3sql11ObResultSet17get_affected_rowsEv:0 + 2: 0 + 246: _ZNK9oceanbase3sql11ObResultSet15get_return_rowsEv:0 + 0: 0 + 247: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:0 + 0: 0 + 0.2: 0 + 248: _ZN9oceanbase3sql13ObExecContext11get_das_ctxEv:0 + 0: 0 + 250: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:0 + 0: 0 + 0.2: 0 + 252: _ZNK9oceanbase3sql17ObTaskExecutorCtx23get_expected_worker_cntEv:0 + 0: 0 + 253: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:0 + 0: 0 + 0.2: 0 + 255: _ZNK9oceanbase3sql17ObTaskExecutorCtx24get_allocated_worker_cntEv:0 + 0: 0 + 259: _ZNK9oceanbase3sql11ObResultSet22get_is_from_plan_cacheEv:0 + 0: 0 + 260: _ZNK9oceanbase3sql18ObBasicSessionInfo14get_capabilityEv:0 + 0: 0 + 261: _ZNK9oceanbase3sql15ObMultiStmtItem21is_batched_multi_stmtEv:0 + 3: 0 + 4: 0 + 6: 0 + 263: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:0 + 0: 0 + 0.2: 0 + 263.1: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:0 + 2: 0 + 267: _ZNK9oceanbase3sql17ObPhysicalPlanCtx21get_consistency_levelEv:0 + 2: 0 + 271.1: _ZNK9oceanbase3sql17ObAuditRecordData10is_timeoutEv:0 + 1: 0 + 272.1: _ZNK9oceanbase3sql18ObBasicSessionInfo30get_local_ob_enable_plan_cacheEv:0 + 2: 0 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_ob_enable_plan_cacheEv:0 + 0: 0 + 273.1: _ZNK9oceanbase8observer16ObQueryRetryCtrl10need_retryEv:0 + 3: 0 + 275: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:0 + 0: 0 + 0.2: 0 + 275.1: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:0 + 2: 0 + 279: _ZN9oceanbase3sql17ObPhysicalPlanCtx24get_table_row_count_listEv:0 + 0: 0 + 280: _ZN9oceanbase3sql17ObPhysicalPlanCtx19get_table_scan_statEv:0 + 2: 0 + 286: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:0 + 0: 0 + 0.2: 0 + 286.1: _ZNK9oceanbase3sql13ObExecContext16get_is_evolutionEv:0 + 0: 0 + 292: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:0 + 0: 0 + 0.2: 0 + 292.1: _ZNK9oceanbase3sql13ObExecContext16get_is_evolutionEv:0 + 0: 0 + 303: _ZN9oceanbase3sql11ObResultSet16get_exec_contextEv:0 + 0: 0 + 0.2: 0 + 303.1: _ZNK9oceanbase3sql13ObExecContext15need_disconnectEv:0 + 0: 0 + 304.1: _ZN9oceanbase6common22is_query_killed_returnEi:0 + 3: 0 + 4: 0 + 308: _ZN9oceanbase3lib6Worker4selfEv:0 + 3: 0 + 4: 0 + 313: _ZNK9oceanbase8observer16ObQueryRetryCtrl10need_retryEv:16 + 3: 1 + 322.42: _ZN9oceanbase6common2SVINS_8observer16ObMySQLResultSetELb0EED2Ev:19 + 2: 1 + 4: 1 _ZN9oceanbase8observer16ObMySQLResultSetD2Ev:1 + 5: 0 + 6: 0 + 8: 0 + 322.45: _ZN9oceanbase6common2SVINS_8observer16ObMySQLResultSetELb0EED2Ev:0 + 2: 0 + 4: 0 + 5: 0 + 6: 0 + 8: 0 +_ZN9oceanbase6common4hash9ObHashMapINS_5share6ObLSIDENS3_11ObLSReplicaENS1_24LatchReadWriteDefendModeENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS4_S5_EEEELi11ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE14set_refactoredERKS4_RKS5_iii:132:0 + 2: 0 + 3: 0 + 5.1: 0 + 6.1: 0 + 8: 0 + 8.1: 4 + 10: 0 + 11.2: 4 + 4: _ZN9oceanbase6common4hash11HashMapPairINS_5share6ObLSIDENS3_11ObLSReplicaEEC2Ev:0 + 0: 0 + 0.4: 0 + 0: _ZN9oceanbase5share6ObLSIDC2Ev:0 + 0: 0 + 5: _ZN9oceanbase6common4hash11HashMapPairINS_5share6ObLSIDENS3_11ObLSReplicaEE4initERKS4_RKS5_:0 + 5.1: 0 + 6.1: 0 + 8: 0 + 3: _ZN9oceanbase6common11copy_assignINS_5share6ObLSIDEEEiRT_RKS4_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapINS_5share6ObLSIDEEEiRT_RKS4_NS0_8BoolTypeILb0EEE:0 + 2: _ZN9oceanbase5share6ObLSIDaSERKS1_:0 + 0: 0 + 5.1: _ZN9oceanbase6common11copy_assignINS_5share11ObLSReplicaEEEiRT_RKS4_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapINS_5share11ObLSReplicaEEEiRT_RKS4_NS0_8BoolTypeILb1EEE:0 + 2: 0 + 11.2: _ZN9oceanbase6common4hash11HashMapPairINS_5share6ObLSIDENS3_11ObLSReplicaEED2Ev:32 + 0: 4 _ZN9oceanbase5share11ObLSReplicaD1Ev:4 + 11.3: _ZN9oceanbase6common4hash11HashMapPairINS_5share6ObLSIDENS3_11ObLSReplicaEED2Ev:0 + 0: 0 +_ZN9oceanbase6common4hash9ObHashMapINS0_8ObStringEmNS1_19NoPthreadDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_mEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev:131:0 + 0.1: 1 + 1: 0 + 5: 1 + 0: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS0_8ObStringEmEEEELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEC2Ev:7 + 0: 1 + 2: 0 + 0.1: _ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocatorC2EmRKNS_3lib7ObLabelE:0 + 3: 0 + 4: 0 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 7: 0 + 2: _ZN9oceanbase6common4hash10SpinIniterC2ERVi:4 + 2: 1 + 3.1: 0 + 0.1: _ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_mEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi98ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev:62 + 0: 1 + 1: 1 + 0: _ZN9oceanbase6common8ObMallocC2Ev:26 + 0: 1 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:22 + 5: 1 + 7: 1 + 8: _ZN9oceanbase6common4hash9constructIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringEmEENS1_5NLockENS1_5NCondEEEEEvRT_:18 + 2: _ZN9oceanbase6common4hash12do_constructIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringEmEENS1_5NLockENS1_5NCondEEEEEvRT_NS1_16NormalPointerTagE:18 + 2: 1 + 0.2: _ZN9oceanbase6common8ObMallocC2Ev:15 + 0: 1 + 4: _ZN9oceanbase6common8ObMalloc8set_attrERKNS_3lib9ObMemAttrE:34 + 0: 1 +_ZN9oceanbase6common11ObArrayImplINS_5share11ObLSReplicaENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE9push_backERKS3_:130:1 + 1: 1 + 2: 1 + 3: 1 + 4: 0 + 5.1: 0 + 6.1: 1 + 7: 0 + 9: 0 + 9.1: 0 + 10: 0 + 11: 0 + 12.1: 0 + 14: 0 + 17: 1 + 18.1: 0 + 21: 1 + 28.1: 0 + 32: 1 + 7: _ZN9oceanbase6common11ObArrayImplINS_5share11ObLSReplicaENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE10extend_bufEv:18 + 2: 1 + 3: 1 _ZN9oceanbase6common11ObArrayImplINS_5share11ObLSReplicaENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE10extend_bufEl:1 + 11: _ZN9oceanbase6common11copy_assignINS_5share11ObLSReplicaEEEiRT_RKS4_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapINS_5share11ObLSReplicaEEEiRT_RKS4_NS0_8BoolTypeILb1EEE:0 + 2: 0 +_ZN9oceanbase3sql18ObBasicSessionInfo23get_global_sys_variableEmRNS_6common12ObIAllocatorERKNS2_20ObDataTypeCastParamsERKNS2_8ObStringERNS2_5ObObjE:130:1 + 5: 1 + 6: 1 + 7: 1 _ZN9oceanbase5share6schema19ObSchemaGetterGuardC1Ev:1 + 8: 1 + 9: 1 + 10: 1 + 11.1: 1 + 12: 0 + 13.1: 0 + 14.1: 1 _ZN9oceanbase8observer14global_contextEv:1 + 14.2: 1 + 15: 0 + 16.1: 0 + 16.2: 0 + 16.3: 0 + 16.4: 0 + 16.5: 0 + 16.7: 0 + 17.1: 1 _ZN9oceanbase8observer14global_contextEv:1 + 17.2: 1 _ZN9oceanbase5share6schema27ObMultiVersionSchemaService23get_tenant_schema_guardEmRNS1_19ObSchemaGetterGuardEllNS2_17RefreshSchemaModeE:1 + 17.3: 0 + 20: 0 + 21.1: 0 + 21.2: 0 + 21.3: 0 + 21.6: 0 + 22.1: 0 + 22.2: 0 + 23.1: 0 + 24.1: 0 + 25: 0 + 26.1: 0 + 27.1: 0 + 27.2: 0 + 28.1: 0 + 29.1: 0 + 30: 0 + 31.1: 0 + 32.1: 0 + 32.2: 0 + 33: 0 + 34.1: 0 + 35.1: 0 + 36: 0 + 37.1: 0 + 38.1: 0 + 38.2: 0 + 39.1: 0 + 40.1: 0 + 40.2: 0 + 42.1: 0 + 46: 0 + 47.12: 0 + 47.13: 0 + 11: _ZN9oceanbase6common18is_valid_tenant_idEm:7 + 2: 1 + 16.6: _ZN9oceanbase6common7ObLogKVIRKPNS_5share6schema27ObMultiVersionSchemaServiceELb0EEC2EPKcS7_:0 + 0: 0 + 21.5: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 +_ZNK9oceanbase4palf10PalfHandle13get_max_ts_nsERl:129:3 + 1: 3 + 3: 3 + 4: 3 + 6: 3 + 4: _ZNK9oceanbase4palf14PalfHandleImpl13get_max_ts_nsEv:24 + 2: _ZNK9oceanbase4palf16LogSlidingWindow14get_max_log_tsEv:24 + 2: 3 _ZNK9oceanbase4palf12LSNAllocator14get_max_log_tsEv:3 +_ZN9oceanbase6common11ObArrayImplIPNS_7storage4ObLSENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEE10extend_bufEl:129:0 + 1: 0 + 4: 0 + 5: 3 + 6: 3 + 8.2: 0 + 8.3: 0 + 8.5: 0 + 9: 0 + 18: 0 + 19: 0 + 36: 3 + 37: 3 + 40.1: 0 + 43: 3 + 4: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 9: _ZN9oceanbase6common16construct_assignIPNS_7storage4ObLSEEEiRT_RKS5_:0 + 2: _ZN9oceanbase6common21construct_assign_wrapIPNS_7storage4ObLSEEEiRT_RKS5_NS0_8BoolTypeILb0EEE:0 + 2: 0 + 19: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase5share15ObSysVarFactoryC2Ev:129:1 + 2: 1 + 5: 1 + 1.1: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:109 + 4: 1 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:94 + 2: 1 + 3: 1 + 4: 1 + 5: 1 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:42 + 0: 1 +_ZN9oceanbase5share15ObSysVarFactoryC1Ev:129:1 + 2: 1 + 5: 1 + 1.1: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:109 + 4: 1 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:94 + 2: 1 + 3: 1 + 4: 1 + 5: 1 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:42 + 0: 1 +_ZN9oceanbase3sql18ObBasicSessionInfo22update_max_packet_sizeEv:129:1 + 1: 1 + 3: 1 + 4: 1 + 5: 1 + 6.1: 0 + 7.1: 2 + 8.1: 0 + 10: 2 + 12: 2 + 5: _ZNK9oceanbase3sql18ObBasicSessionInfo22get_max_allowed_packetERl:6 + 2: 1 _ZNK9oceanbase3sql18ObBasicSessionInfo17get_int64_sys_varENS_5share17ObSysVarClassTypeERl:1 + 7.1: _ZNK9oceanbase3sql18ObBasicSessionInfo21get_net_buffer_lengthERl:9 + 2: 1 _ZNK9oceanbase3sql18ObBasicSessionInfo17get_int64_sys_varENS_5share17ObSysVarClassTypeERl:1 + 10: _ZSt3maxIlERKT_S2_S2_:22 + 5: 2 +_ZN9oceanbase6common11ObArrayImplINS0_22ObTZTransitionTypeInfoENS0_8ObMallocELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_17DefaultItemEncodeIS2_EEED2Ev:128:6 + 1: 6 + 2: 6 _ZN9oceanbase6common11ObArrayImplINS0_22ObTZTransitionTypeInfoENS0_8ObMallocELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_17DefaultItemEncodeIS2_EEE7destroyEv:8 + 3: 7 + 3.2: 0 +_ZNK9oceanbase5share8ObLSInfo9find_idx_ERKNS0_11ObLSReplicaERl:127:1 + 1: 1 + 2: 1 + 3: 1 + 4: 0 + 4.1: 1 _ZNK9oceanbase5share11ObLSReplica8is_validEv:1 + 5: 0 + 6.1: 0 + 7.1: 1 + 7.2: 1 _ZNK9oceanbase5share8ObLSInfo9find_idx_ERKNS_6common6ObAddrERl:1 + 9.1: 0 + 12: 1 + 4: _ZNK9oceanbase5share8ObLSInfo8is_validEv:33 + 2: 1 + 2: _ZNK9oceanbase5share6ObLSID20is_valid_with_tenantEm:25 + 5: 1 + 5.1: 0 + 4: _ZN9oceanbase6common14is_user_tenantEm:19 + 3: 1 + 2: _ZN9oceanbase6common13is_sys_tenantEm:0 + 2: 0 + 4.1: _ZNK9oceanbase5share6ObLSID8is_validEv:5 + 0: 1 + 5.2: _ZN9oceanbase6common14is_meta_tenantEm:0 + 3: 0 + 5.3: _ZNK9oceanbase5share6ObLSID9is_sys_lsEv:0 + 0: 0 + 7.1: _ZNK9oceanbase5share11ObLSReplica10get_serverEv:20 + 0: 1 +_ZNK9oceanbase10logservice12ObLogService16check_palf_existERKNS_5share6ObLSIDERb:126:0 + 1: 0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7.1: 0 + 8.1: 0 + 8.2: 0 + 8.3: 0 + 10: 0 + 11: 0 + 13.1: 0 + 17: 0 + 17.1: 0 + 18: 0 + 20: 6 + 21.3: 6 _ZN9oceanbase4palf10PalfHandleD1Ev:6 + 21.4: 0 + 8.1: _ZNK9oceanbase5share6ObLSID2idEv:0 + 0: 0 +_ZN9oceanbase6common11ObArrayImplINS0_15ObWarningBuffer11WarningItemENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE7destroyEv:126:5 + 1: 3 + 2: 3 + 7: 0 + 9: 3 + 11: 3 + 13: 3 + 6: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.1: 0 + 0.2: 0 +_ZN9oceanbase6common21is_sql_mode_supportedEm:125:5 + 1: 5 + 2: 5 +_ZN9oceanbase5share8ObLSInfo5resetEv:125:5 + 1: 5 + 2: 5 + 4: 5 + 4: _ZN9oceanbase6common11ObArrayImplINS_5share11ObLSReplicaENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE5resetEv:30 + 0: 5 _ZN9oceanbase6common11ObArrayImplINS_5share11ObLSReplicaENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE7destroyEv:5 +_ZN9oceanbase3sql18ObBasicSessionInfo7destroyEv:124:1 + 1: 1 + 2: 1 + 3.1: 0 + 5: 1 + 6.1: 0 + 8: 1 + 9: 1 _ZN9oceanbase11transaction14ObTxExecResult5resetEv:1 + 10: 1 _ZN9oceanbase11transaction11ObXATransID5resetEv:1 + 11: 1 + 12: 1 + 13: 1 + 16: 0 + 18: 0 + 19: 0 + 14: _ZN9oceanbase6common7ob_freeEPv:31 + 2: 1 + 3: 1 _ZN9oceanbase3lib17ObMallocAllocator12get_instanceEv:1 + 4: 1 + 5: 1 _ZN9oceanbase3lib17ObMallocAllocator4freeEPv:1 + 4: _ZL12abort_unlessb:2 + 5: 1 + 6: 0 + 18: _ZN9oceanbase6common13ObSEArrayImplINS_3sql18ObBasicSessionInfo13TableStmtTypeELl2ENS0_19ModulePageAllocatorELb0EE5resetEv:0 + 0: 0 + 19: _ZN9oceanbase6common13ObSEArrayImplINS_3sql18ObBasicSessionInfo13TableStmtTypeELl1ENS0_19ModulePageAllocatorELb0EE5resetEv:0 + 0: 0 +_ZN9oceanbase3sql18ObBasicSessionInfo14try_lock_queryEv:124:1 + 0: 1 + 0: _ZN9oceanbase6common16ObRecursiveMutex7trylockEv:90 + 2: 1 + 3: 1 + 6: 1 _ZN9oceanbase6common7ObLatch10try_wrlockEjPKj:1 + 8.1: 0 + 14: 1 + 3: _ZNK9oceanbase6common7ObLatch14is_wrlocked_byEPKj:52 + 3: 1 + 4: 1 + 2.1: _Z9ob_gettidv:45 + 3: 1 + 4: 0 + 2: _Z13get_tid_cachev:21 + 7: 1 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 +_ZN9oceanbase6common16ObFixedArrayImplINS_3sql15ObTableRowCountENS0_12ObIAllocatorEED2Ev:123:2 + 0: 2 + 0.1: 1 + 0.3: 0 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS_3sql15ObTableRowCountENS0_12ObIAllocatorEE7destroyEv:70 + 2: 2 + 5: 2 + 9: 1 _ZN9oceanbase6common16ObArenaAllocator4freeEPv:1 + 10: 1 + 12: 1 + 13: 1 + 15: 1 +_ZN9oceanbase6common13ObLinkHashMapINS_11transaction9tablelock8ObLockIDENS3_9ObOBJLockENS3_14ObOBJLockAllocENS0_9RefHandleELl8EE14insert_and_getERKS4_PS5_:123:0 + 1: 0 + 4: 2 _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9tablelock8ObLockIDENS3_9ObOBJLockENS3_14ObOBJLockAllocENS0_9RefHandleELl8EE18get_retire_stationEv:2 + 4.1: 2 _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9tablelock8ObLockIDENS3_9ObOBJLockENS3_14ObOBJLockAllocENS0_9RefHandleELl8EE5GuardC2ERNS0_13RetireStationE:2 + 6: 2 _ZN9oceanbase6common11ObTimeGuard5clickEPKc:2 + 10: 0 + 15: 0 + 16.1: 0 + 16.2: 0 + 18: 0 + 19: 0 + 24: 0 + 26: 0 + 27: 0 + 28: 0 + 31.1: 0 + 32.1: 0 + 35.3: 1 + 35.5: 0 + 35.7: 0 + 2: _ZN9oceanbase6common11ObTimeGuardC2EPKcl:45 + 2: 1 + 3: 1 + 4: 1 + 6: 1 + 7: 1 + 8: 1 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 7: _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9tablelock8ObLockIDENS3_9ObOBJLockENS3_14ObOBJLockAllocENS0_9RefHandleELl8EE10alloc_nodeEPS5_:13 + 3: 1 + 4.1: 1 _ZN9oceanbase11transaction9tablelock14ObOBJLockAlloc10alloc_nodeEPNS1_9ObOBJLockE:1 + 5: 0 + 7: 0 + 8: 0 + 9: 0 + 11: _ZN9oceanbase6common9RefHandle4bornEPNS0_7RefNodeE:0 + 0: 0 + 12: _ZN9oceanbase6common9RefHandle3incEPNS0_7RefNodeE:0 + 0: _ZN9oceanbase6common15faa_if_positiveEPii:0 + 2: 0 + 4.1: 0 + 4.2: 0 + 4.3: 0 + 13: _ZN9oceanbase6common7RefNode5xhrefEi:0 + 0: 0 + 14: _ZN9oceanbase6common11KeyHashNodeINS_11transaction9tablelock8ObLockIDEE3setERKS4_:0 + 1: 0 + 2: 0 + 1: _ZN9oceanbase6common11KeyHashNodeINS_11transaction9tablelock8ObLockIDEE9calc_hashERKS4_:0 + 0: 0 + 0: _ZNK9oceanbase11transaction9tablelock8ObLockID4hashEv:0 + 1: 0 + 20: _ZN9oceanbase6common11CountHandle3addEl:0 + 0: 0 + 22: _ZN9oceanbase6common7RefNode5xhrefEi:0 + 0: 0 + 23: _ZN9oceanbase6common9RefHandle3decEPNS0_7RefNodeE:0 + 0: 0 + 25: _ZN9oceanbase6common9RefHandle3endEPNS0_7RefNodeE:0 + 0: 0 + 31: _ZNK9oceanbase6common11ObTimeGuard8get_diffEv:0 + 2: 0 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 34: _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9tablelock8ObLockIDENS3_9ObOBJLockENS3_14ObOBJLockAllocENS0_9RefHandleELl8EE12err_code_mapEi:0 + 3: 0 + 35.3: _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9tablelock8ObLockIDENS3_9ObOBJLockENS3_14ObOBJLockAllocENS0_9RefHandleELl8EE5GuardD2Ev:0 + 0: _ZN9oceanbase6common13BaseRefHandle14leave_criticalEv:0 + 0: 0 + 0: _ZN9oceanbase6common6QClock14leave_criticalEm:0 + 1: 0 + 2: _ZN9oceanbase6common6QClock6locateEm:0 + 0: 0 + 2.1: _ZN9oceanbase6common6QClock9ClockSlot11clear_clockEv:0 + 0: 0 + 35.4: _ZN9oceanbase6common13ObLinkHashMapINS_11transaction9tablelock8ObLockIDENS3_9ObOBJLockENS3_14ObOBJLockAllocENS0_9RefHandleELl8EE5GuardD2Ev:0 + 0: _ZN9oceanbase6common13BaseRefHandle14leave_criticalEv:0 + 0: 0 + 0: _ZN9oceanbase6common6QClock14leave_criticalEm:0 + 1: 0 + 2: _ZN9oceanbase6common6QClock6locateEm:0 + 0: 0 + 2.1: _ZN9oceanbase6common6QClock9ClockSlot11clear_clockEv:0 + 0: 0 +_ZN9oceanbase3lib22get_tenant_memory_holdEmm:123:3 + 1: 3 + 5: 3 _ZNK9oceanbase3lib17ObMallocAllocator19get_tenant_ctx_holdEmm:3 + 3: _ZN9oceanbase3lib17ObMallocAllocator12get_instanceEv:30 + 2: 3 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 +_ZN9oceanbase8observer21ObInnerSQLReadContextD2Ev:121:1 + 1: 1 + 2: 1 + 2.2: 1 + 3.2: 1 + 5.1: 4 _ZN9oceanbase8observer16ObInnerSQLResultD1Ev:1 + 5.6: 4 _ZN9oceanbase8observer29ObVirtualTableIteratorFactoryD1Ev:4 + 5.7: 4 _ZN9oceanbase8observer20ObInnerSQLConnection8RefGuardD2Ev:4 + 2: _ZN9oceanbase8observer20ObInnerSQLConnection8RefGuard8get_connEv:4 + 0: 1 +_ZN9oceanbase8observer21ObInnerSQLReadContextD1Ev:121:1 + 1: 1 + 2: 1 + 2.2: 1 + 3.2: 1 + 5.1: 4 _ZN9oceanbase8observer16ObInnerSQLResultD1Ev:1 + 5.6: 4 _ZN9oceanbase8observer29ObVirtualTableIteratorFactoryD1Ev:4 + 5.7: 4 _ZN9oceanbase8observer20ObInnerSQLConnection8RefGuardD2Ev:4 + 2: _ZN9oceanbase8observer20ObInnerSQLConnection8RefGuard8get_connEv:4 + 0: 1 +_ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl:121:1 + 1: 1 + 3: 1 + 5: 1 + 6: 1 + 8: 1 + 9: 1 + 11.1: 0 + 15: 1 + 3: _ZN9oceanbase6common19ModulePageAllocator5allocEl:39 + 2: 1 + 3: 1 _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:1 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:16 + 5: 1 + 7: 1 + 8: 1 + 6: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4PageC2EPKc:27 + 1: 1 + 3: 1 +_ZN9oceanbase7storage14ObMetaObjGuardINS0_16ObTabletDDLKvMgrEE7get_objEv:120:12 + 1: 12 + 2: 12 +_ZN9oceanbase6common21ObDiagnoseSessionInfo23get_local_diagnose_infoEv:120:8 + 1: 8 + 3: 8 + 6: 0 + 7: 0 + 9: 0 + 10: 0 + 15: 8 + 3: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:40 + 2: 8 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:8 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:32 + 2: 8 + 8: _ZN9oceanbase6common17ObSessionDIBuffer16get_curr_sessionEv:0 + 0: 0 + 11: _ZN9oceanbase6common17ObSessionDIBuffer13get_tenant_idEv:0 + 3: 0 + 4: 0 + 11.1: _ZN9oceanbase6common21ObDiagnoseSessionInfo13set_tenant_idEm:0 + 3: 0 + 4: 0 +_ZN9oceanbase6common14ObTimerMonitor12get_instanceEv:120:4 + 1: 4 + 2: 4 + 2.1: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 3: 4 + 2.2: _ZN9oceanbase6common14ObTimerMonitorC2Ev:0 + 1: 0 + 2: 0 + 4: 0 + 3: _ZN9oceanbase6common14ObTimerMonitor18ObTimerMonitorTaskC2ERS1_:0 + 1: 0 + 3: 0 + 0: _ZN9oceanbase6common11ObTimerTaskC2Ev:0 + 0: 0 +_ZN9oceanbase6common13ObSEArrayImplINS_5share17ObSysVarClassTypeELl64ENS0_19ModulePageAllocatorELb0EE7destroyEv:120:2 + 1: 2 + 9: 2 + 11: 0 + 13: 2 + 15: 2 + 24: 2 + 25: 2 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_5share17ObSysVarClassTypeELl64ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: 0 +_ZN9oceanbase6common13ObLatchWGuardC2ERNS0_7ObLatchEj:120:2 + 1: 2 + 2: 2 + 3: 2 + 4: 2 _ZN9oceanbase6common7ObLatch6wrlockEjlPKj:2 + 5.1: 0 + 7: 2 +_ZN9oceanbase11transaction7ObTsMgr12get_instanceEv:120:4 + 1: 4 + 2: 4 + 2: _ZN9oceanbase11transaction7ObTsMgr18get_instance_innerEv:48 + 2: 4 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 8: 4 +_ZN9oceanbase6common11ObArrayImplINS_5share11ObLSReplicaENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE10extend_bufEl:119:2 + 1: 1 + 2: 1 + 4: 1 + 5: 1 + 6: 1 + 8.1: 0 + 8.2: 0 + 8.3: 0 + 8.5: 0 + 9: 0 + 10.1: 0 + 15.1: 0 + 15.3: 0 + 16: 0 + 18: 0 + 19: 0 + 22: 0 + 22.1: 0 + 25: 0 + 35: 1 + 36: 1 + 37: 1 + 40.1: 0 + 41: 0 + 43: 1 + 4: _ZN9oceanbase6common19ModulePageAllocator5allocEl:37 + 2: 1 + 3: 1 _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:1 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:11 + 5: 1 + 7: 1 + 8: 1 + 16: _ZN9oceanbase5share11ObLSReplicaD2Ev:0 + 2.1: _ZN9oceanbase6common13ObSEArrayImplINS_5share12SimpleMemberELl7ENS0_15ObNullAllocatorELb0EED2Ev:0 + 1: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_5share12SimpleMemberELl7ENS0_15ObNullAllocatorELb0EE7destroyEv:0 + 9: 0 + 11: 0 + 13: 0 + 15: 0 + 24: 0 + 2.2: _ZN9oceanbase5share6ObLSIDD2Ev:0 + 0: _ZN9oceanbase5share6ObLSID5resetEv:0 + 0: 0 + 23: _ZN9oceanbase5share11ObLSReplicaD2Ev:0 + 2.1: _ZN9oceanbase6common13ObSEArrayImplINS_5share12SimpleMemberELl7ENS0_15ObNullAllocatorELb0EED2Ev:0 + 1: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_5share12SimpleMemberELl7ENS0_15ObNullAllocatorELb0EE7destroyEv:0 + 9: 0 + 11: 0 + 13: 0 + 15: 0 + 24: 0 + 2.2: _ZN9oceanbase5share6ObLSIDD2Ev:0 + 0: _ZN9oceanbase5share6ObLSID5resetEv:0 + 0: 0 +_ZNK9oceanbase4palf16LogSlidingWindow8is_emptyEv:118:3 + 1: 2 + 2: 4 _ZNK9oceanbase4palf16LogSlidingWindow14get_max_log_idEv:2 + 2.1: _ZNK9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE12get_begin_snEv:28 + 0: 4 +_ZN9oceanbase7storage13ObTxDataTable22update_memtables_cacheEv:118:2 + 1: 2 + 3: 2 + 4: 2 _ZN9oceanbase7storage13ObTxDataTable34check_need_update_memtables_cache_ERb:2 + 5.1: 0 + 6.1: 2 + 7: 0 + 9: 0 + 10: 0 + 10.1: 0 + 11.1: 0 + 12.1: 0 + 15.1: 0 + 15.2: 0 + 15.3: 0 + 18.1: 0 + 22: 2 + 9: _ZN9oceanbase6common12TCWLockGuardC2ERKNS0_8TCRWLockE:0 + 1: 0 + 3: 0 + 4.1: 0 + 14.1: _ZN9oceanbase7storage13ObTxDataTable20MemtableHandlesCache5reuseEv:0 + 3: 0 + 4: _ZN9oceanbase6common13ObSEArrayImplINS_7storage15ObTableHandleV2ELl16ENS0_19ModulePageAllocatorELb0EE5reuseEv:0 + 4.1: 0 + 4.3: 0 + 5: 0 + 8: 0 + 9: 0 + 20: _ZN9oceanbase6common12TCWLockGuardD2Ev:0 + 2: 0 + 3: 0 + 3.1: 0 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase6common8TCRWLock8wrunlockEv:0 + 3: 0 + 4: 0 + 20.1: _ZN9oceanbase6common12TCWLockGuardD2Ev:0 + 2: 0 + 3: 0 + 3.1: 0 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase6common8TCRWLock8wrunlockEv:0 + 3: 0 + 4: 0 +_ZN9oceanbase6common11ObSqlString6extendEl:118:1 + 1: 1 + 2: 1 + 4: 1 + 5: 0 + 6.1: 0 + 7.1: 2 _ZN9oceanbase6common8ObMalloc5allocEl:2 + 8: 0 + 9.1: 0 + 11: 2 + 12: 0 + 13: 0 + 14: 0 + 16: 2 + 17: 2 + 19: 2 + 13: _ZN9oceanbase6common8ObMalloc4freeEPv:0 + 0: 0 +_ZN9oceanbase5share28ObSysVarNlsNcharCharactersetC2Ev:118:1 + 0: 1 + 0: _ZN9oceanbase5share15ObVarcharSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:98 + 5: _ZN9oceanbase5share13ObBasicSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKS1_RKNS_6common5ObObjERSB_EPFiS4_S7_S9_SD_EPFiRNSA_12ObIAllocatorERKNS2_18ObBasicSessionInfoES9_SE_EPFiSK_SN_S9_RNSA_8ObStringEEPFNSA_9ObObjTypeEvEb:98 + 11: 1 + 13: 1 + 20: _ZN9oceanbase5share13ObBasicSysVar11clean_valueEv:69 + 2: _ZN9oceanbase5share13ObBasicSysVar16clean_base_valueEv:24 + 2: 1 + 3: _ZN9oceanbase6common5ObObj13set_nop_valueEv:16 + 2: _ZN9oceanbase6common5ObObj7set_extEl:16 + 4: 1 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:8 + 0: 1 + 3: _ZN9oceanbase5share13ObBasicSysVar15clean_inc_valueEv:21 + 2: _ZN9oceanbase6common5ObObj13set_nop_valueEv:21 + 2: _ZN9oceanbase6common5ObObj7set_extEl:21 + 4: 1 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:8 + 0: 1 + 4: _ZN9oceanbase6common5ObObj5resetEv:12 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4 + 0: 1 + 5: _ZN9oceanbase6common5ObObj5resetEv:12 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4 + 0: 1 +_ZN9oceanbase5share24ObSysVarNlsNcharConvExcpC2Ev:118:1 + 0: 1 + 0: _ZN9oceanbase5share15ObVarcharSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:98 + 5: _ZN9oceanbase5share13ObBasicSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKS1_RKNS_6common5ObObjERSB_EPFiS4_S7_S9_SD_EPFiRNSA_12ObIAllocatorERKNS2_18ObBasicSessionInfoES9_SE_EPFiSK_SN_S9_RNSA_8ObStringEEPFNSA_9ObObjTypeEvEb:98 + 11: 1 + 13: 1 + 20: _ZN9oceanbase5share13ObBasicSysVar11clean_valueEv:69 + 2: _ZN9oceanbase5share13ObBasicSysVar16clean_base_valueEv:24 + 2: 1 + 3: _ZN9oceanbase6common5ObObj13set_nop_valueEv:16 + 2: _ZN9oceanbase6common5ObObj7set_extEl:16 + 4: 1 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:8 + 0: 1 + 3: _ZN9oceanbase5share13ObBasicSysVar15clean_inc_valueEv:21 + 2: _ZN9oceanbase6common5ObObj13set_nop_valueEv:21 + 2: _ZN9oceanbase6common5ObObj7set_extEl:21 + 4: 1 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:8 + 0: 1 + 4: _ZN9oceanbase6common5ObObj5resetEv:12 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4 + 0: 1 + 5: _ZN9oceanbase6common5ObObj5resetEv:12 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4 + 0: 1 +_ZN9oceanbase5share24ObSysVarMaxExecutionTimeC2Ev:118:1 + 0: 1 + 0: _ZN9oceanbase5share11ObIntSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:98 + 5: _ZN9oceanbase5share13ObBasicSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKS1_RKNS_6common5ObObjERSB_EPFiS4_S7_S9_SD_EPFiRNSA_12ObIAllocatorERKNS2_18ObBasicSessionInfoES9_SE_EPFiSK_SN_S9_RNSA_8ObStringEEPFNSA_9ObObjTypeEvEb:98 + 11: 1 + 13: 1 + 20: _ZN9oceanbase5share13ObBasicSysVar11clean_valueEv:69 + 2: _ZN9oceanbase5share13ObBasicSysVar16clean_base_valueEv:24 + 2: 1 + 3: _ZN9oceanbase6common5ObObj13set_nop_valueEv:16 + 2: _ZN9oceanbase6common5ObObj7set_extEl:16 + 4: 1 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:8 + 0: 1 + 3: _ZN9oceanbase5share13ObBasicSysVar15clean_inc_valueEv:21 + 2: _ZN9oceanbase6common5ObObj13set_nop_valueEv:21 + 2: _ZN9oceanbase6common5ObObj7set_extEl:21 + 4: 1 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:8 + 0: 1 + 4: _ZN9oceanbase6common5ObObj5resetEv:12 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4 + 0: 1 + 5: _ZN9oceanbase6common5ObObj5resetEv:12 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4 + 0: 1 +_ZN9oceanbase5share23ObSysVarProtocolVersionC2Ev:118:1 + 0: 1 + 0: _ZN9oceanbase5share11ObIntSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:98 + 5: _ZN9oceanbase5share13ObBasicSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKS1_RKNS_6common5ObObjERSB_EPFiS4_S7_S9_SD_EPFiRNSA_12ObIAllocatorERKNS2_18ObBasicSessionInfoES9_SE_EPFiSK_SN_S9_RNSA_8ObStringEEPFNSA_9ObObjTypeEvEb:98 + 11: 1 + 13: 1 + 20: _ZN9oceanbase5share13ObBasicSysVar11clean_valueEv:69 + 2: _ZN9oceanbase5share13ObBasicSysVar16clean_base_valueEv:24 + 2: 1 + 3: _ZN9oceanbase6common5ObObj13set_nop_valueEv:16 + 2: _ZN9oceanbase6common5ObObj7set_extEl:16 + 4: 1 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:8 + 0: 1 + 3: _ZN9oceanbase5share13ObBasicSysVar15clean_inc_valueEv:21 + 2: _ZN9oceanbase6common5ObObj13set_nop_valueEv:21 + 2: _ZN9oceanbase6common5ObObj7set_extEl:21 + 4: 1 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:8 + 0: 1 + 4: _ZN9oceanbase6common5ObObj5resetEv:12 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4 + 0: 1 + 5: _ZN9oceanbase6common5ObObj5resetEv:12 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4 + 0: 1 +_ZN9oceanbase5share23ObSysVarNlsDateLanguageC2Ev:118:1 + 0: 1 + 0: _ZN9oceanbase5share15ObVarcharSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:98 + 5: _ZN9oceanbase5share13ObBasicSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKS1_RKNS_6common5ObObjERSB_EPFiS4_S7_S9_SD_EPFiRNSA_12ObIAllocatorERKNS2_18ObBasicSessionInfoES9_SE_EPFiSK_SN_S9_RNSA_8ObStringEEPFNSA_9ObObjTypeEvEb:98 + 11: 1 + 13: 1 + 20: _ZN9oceanbase5share13ObBasicSysVar11clean_valueEv:69 + 2: _ZN9oceanbase5share13ObBasicSysVar16clean_base_valueEv:24 + 2: 1 + 3: _ZN9oceanbase6common5ObObj13set_nop_valueEv:16 + 2: _ZN9oceanbase6common5ObObj7set_extEl:16 + 4: 1 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:8 + 0: 1 + 3: _ZN9oceanbase5share13ObBasicSysVar15clean_inc_valueEv:21 + 2: _ZN9oceanbase6common5ObObj13set_nop_valueEv:21 + 2: _ZN9oceanbase6common5ObObj7set_extEl:21 + 4: 1 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:8 + 0: 1 + 4: _ZN9oceanbase6common5ObObj5resetEv:12 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4 + 0: 1 + 5: _ZN9oceanbase6common5ObObj5resetEv:12 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4 + 0: 1 +_ZN9oceanbase5share23ObSysVarLockWaitTimeoutC2Ev:118:1 + 0: 1 + 0: _ZN9oceanbase5share11ObIntSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:98 + 5: _ZN9oceanbase5share13ObBasicSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKS1_RKNS_6common5ObObjERSB_EPFiS4_S7_S9_SD_EPFiRNSA_12ObIAllocatorERKNS2_18ObBasicSessionInfoES9_SE_EPFiSK_SN_S9_RNSA_8ObStringEEPFNSA_9ObObjTypeEvEb:98 + 11: 1 + 13: 1 + 20: _ZN9oceanbase5share13ObBasicSysVar11clean_valueEv:69 + 2: _ZN9oceanbase5share13ObBasicSysVar16clean_base_valueEv:24 + 2: 1 + 3: _ZN9oceanbase6common5ObObj13set_nop_valueEv:16 + 2: _ZN9oceanbase6common5ObObj7set_extEl:16 + 4: 1 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:8 + 0: 1 + 3: _ZN9oceanbase5share13ObBasicSysVar15clean_inc_valueEv:21 + 2: _ZN9oceanbase6common5ObObj13set_nop_valueEv:21 + 2: _ZN9oceanbase6common5ObObj7set_extEl:21 + 4: 1 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:8 + 0: 1 + 4: _ZN9oceanbase6common5ObObj5resetEv:12 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4 + 0: 1 + 5: _ZN9oceanbase6common5ObObj5resetEv:12 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4 + 0: 1 +_ZN9oceanbase5share22ObSysVarSqlThrottleCpuC2Ev:118:1 + 0: 1 + 0: _ZN9oceanbase5share15ObNumericSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:98 + 5: _ZN9oceanbase5share13ObBasicSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKS1_RKNS_6common5ObObjERSB_EPFiS4_S7_S9_SD_EPFiRNSA_12ObIAllocatorERKNS2_18ObBasicSessionInfoES9_SE_EPFiSK_SN_S9_RNSA_8ObStringEEPFNSA_9ObObjTypeEvEb:98 + 11: 1 + 13: 1 + 20: _ZN9oceanbase5share13ObBasicSysVar11clean_valueEv:69 + 2: _ZN9oceanbase5share13ObBasicSysVar16clean_base_valueEv:24 + 2: 1 + 3: _ZN9oceanbase6common5ObObj13set_nop_valueEv:16 + 2: _ZN9oceanbase6common5ObObj7set_extEl:16 + 4: 1 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:8 + 0: 1 + 3: _ZN9oceanbase5share13ObBasicSysVar15clean_inc_valueEv:21 + 2: _ZN9oceanbase6common5ObObj13set_nop_valueEv:21 + 2: _ZN9oceanbase6common5ObObj7set_extEl:21 + 4: 1 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:8 + 0: 1 + 4: _ZN9oceanbase6common5ObObj5resetEv:12 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4 + 0: 1 + 5: _ZN9oceanbase6common5ObObj5resetEv:12 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4 + 0: 1 +_ZN9oceanbase5share22ObSysVarMaxConnectionsC2Ev:118:1 + 0: 1 + 0: _ZN9oceanbase5share11ObIntSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:98 + 5: _ZN9oceanbase5share13ObBasicSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKS1_RKNS_6common5ObObjERSB_EPFiS4_S7_S9_SD_EPFiRNSA_12ObIAllocatorERKNS2_18ObBasicSessionInfoES9_SE_EPFiSK_SN_S9_RNSA_8ObStringEEPFNSA_9ObObjTypeEvEb:98 + 11: 1 + 13: 1 + 20: _ZN9oceanbase5share13ObBasicSysVar11clean_valueEv:69 + 2: _ZN9oceanbase5share13ObBasicSysVar16clean_base_valueEv:24 + 2: 1 + 3: _ZN9oceanbase6common5ObObj13set_nop_valueEv:16 + 2: _ZN9oceanbase6common5ObObj7set_extEl:16 + 4: 1 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:8 + 0: 1 + 3: _ZN9oceanbase5share13ObBasicSysVar15clean_inc_valueEv:21 + 2: _ZN9oceanbase6common5ObObj13set_nop_valueEv:21 + 2: _ZN9oceanbase6common5ObObj7set_extEl:21 + 4: 1 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:8 + 0: 1 + 4: _ZN9oceanbase6common5ObObj5resetEv:12 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4 + 0: 1 + 5: _ZN9oceanbase6common5ObObj5resetEv:12 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4 + 0: 1 +_ZN9oceanbase5share21ObSysVarSqlThrottleRtC2Ev:118:1 + 0: 1 + 0: _ZN9oceanbase5share15ObNumericSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:98 + 5: _ZN9oceanbase5share13ObBasicSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKS1_RKNS_6common5ObObjERSB_EPFiS4_S7_S9_SD_EPFiRNSA_12ObIAllocatorERKNS2_18ObBasicSessionInfoES9_SE_EPFiSK_SN_S9_RNSA_8ObStringEEPFNSA_9ObObjTypeEvEb:98 + 11: 1 + 13: 1 + 20: _ZN9oceanbase5share13ObBasicSysVar11clean_valueEv:69 + 2: _ZN9oceanbase5share13ObBasicSysVar16clean_base_valueEv:24 + 2: 1 + 3: _ZN9oceanbase6common5ObObj13set_nop_valueEv:16 + 2: _ZN9oceanbase6common5ObObj7set_extEl:16 + 4: 1 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:8 + 0: 1 + 3: _ZN9oceanbase5share13ObBasicSysVar15clean_inc_valueEv:21 + 2: _ZN9oceanbase6common5ObObj13set_nop_valueEv:21 + 2: _ZN9oceanbase6common5ObObj7set_extEl:21 + 4: 1 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:8 + 0: 1 + 4: _ZN9oceanbase6common5ObObj5resetEv:12 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4 + 0: 1 + 5: _ZN9oceanbase6common5ObObj5resetEv:12 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4 + 0: 1 +_ZN9oceanbase5share21ObSysVarSqlThrottleIoC2Ev:118:1 + 0: 1 + 0: _ZN9oceanbase5share11ObIntSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:98 + 5: _ZN9oceanbase5share13ObBasicSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKS1_RKNS_6common5ObObjERSB_EPFiS4_S7_S9_SD_EPFiRNSA_12ObIAllocatorERKNS2_18ObBasicSessionInfoES9_SE_EPFiSK_SN_S9_RNSA_8ObStringEEPFNSA_9ObObjTypeEvEb:98 + 11: 1 + 13: 1 + 20: _ZN9oceanbase5share13ObBasicSysVar11clean_valueEv:69 + 2: _ZN9oceanbase5share13ObBasicSysVar16clean_base_valueEv:24 + 2: 1 + 3: _ZN9oceanbase6common5ObObj13set_nop_valueEv:16 + 2: _ZN9oceanbase6common5ObObj7set_extEl:16 + 4: 1 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:8 + 0: 1 + 3: _ZN9oceanbase5share13ObBasicSysVar15clean_inc_valueEv:21 + 2: _ZN9oceanbase6common5ObObj13set_nop_valueEv:21 + 2: _ZN9oceanbase6common5ObObj7set_extEl:21 + 4: 1 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:8 + 0: 1 + 4: _ZN9oceanbase6common5ObObj5resetEv:12 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4 + 0: 1 + 5: _ZN9oceanbase6common5ObObj5resetEv:12 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4 + 0: 1 +_ZN9oceanbase5share21ObSysVarLongQueryTimeC2Ev:118:1 + 0: 1 + 0: _ZN9oceanbase5share15ObNumericSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:98 + 5: _ZN9oceanbase5share13ObBasicSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKS1_RKNS_6common5ObObjERSB_EPFiS4_S7_S9_SD_EPFiRNSA_12ObIAllocatorERKNS2_18ObBasicSessionInfoES9_SE_EPFiSK_SN_S9_RNSA_8ObStringEEPFNSA_9ObObjTypeEvEb:98 + 11: 1 + 13: 1 + 20: _ZN9oceanbase5share13ObBasicSysVar11clean_valueEv:69 + 2: _ZN9oceanbase5share13ObBasicSysVar16clean_base_valueEv:24 + 2: 1 + 3: _ZN9oceanbase6common5ObObj13set_nop_valueEv:16 + 2: _ZN9oceanbase6common5ObObj7set_extEl:16 + 4: 1 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:8 + 0: 1 + 3: _ZN9oceanbase5share13ObBasicSysVar15clean_inc_valueEv:21 + 2: _ZN9oceanbase6common5ObObj13set_nop_valueEv:21 + 2: _ZN9oceanbase6common5ObObj7set_extEl:21 + 4: 1 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:8 + 0: 1 + 4: _ZN9oceanbase6common5ObObj5resetEv:12 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4 + 0: 1 + 5: _ZN9oceanbase6common5ObObj5resetEv:12 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4 + 0: 1 +_ZN9oceanbase5share19ObSysVarHaveOpensslC2Ev:118:1 + 0: 1 + 0: _ZN9oceanbase5share15ObVarcharSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:98 + 5: _ZN9oceanbase5share13ObBasicSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKS1_RKNS_6common5ObObjERSB_EPFiS4_S7_S9_SD_EPFiRNSA_12ObIAllocatorERKNS2_18ObBasicSessionInfoES9_SE_EPFiSK_SN_S9_RNSA_8ObStringEEPFNSA_9ObObjTypeEvEb:98 + 11: 1 + 13: 1 + 20: _ZN9oceanbase5share13ObBasicSysVar11clean_valueEv:69 + 2: _ZN9oceanbase5share13ObBasicSysVar16clean_base_valueEv:24 + 2: 1 + 3: _ZN9oceanbase6common5ObObj13set_nop_valueEv:16 + 2: _ZN9oceanbase6common5ObObj7set_extEl:16 + 4: 1 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:8 + 0: 1 + 3: _ZN9oceanbase5share13ObBasicSysVar15clean_inc_valueEv:21 + 2: _ZN9oceanbase6common5ObObj13set_nop_valueEv:21 + 2: _ZN9oceanbase6common5ObObj7set_extEl:21 + 4: 1 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:8 + 0: 1 + 4: _ZN9oceanbase6common5ObObj5resetEv:12 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4 + 0: 1 + 5: _ZN9oceanbase6common5ObObj5resetEv:12 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4 + 0: 1 +_ZN9oceanbase5share18ObSysVarTimeFormatC2Ev:118:1 + 0: 1 + 0: _ZN9oceanbase5share15ObVarcharSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:98 + 5: _ZN9oceanbase5share13ObBasicSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKS1_RKNS_6common5ObObjERSB_EPFiS4_S7_S9_SD_EPFiRNSA_12ObIAllocatorERKNS2_18ObBasicSessionInfoES9_SE_EPFiSK_SN_S9_RNSA_8ObStringEEPFNSA_9ObObjTypeEvEb:98 + 11: 1 + 13: 1 + 20: _ZN9oceanbase5share13ObBasicSysVar11clean_valueEv:69 + 2: _ZN9oceanbase5share13ObBasicSysVar16clean_base_valueEv:24 + 2: 1 + 3: _ZN9oceanbase6common5ObObj13set_nop_valueEv:16 + 2: _ZN9oceanbase6common5ObObj7set_extEl:16 + 4: 1 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:8 + 0: 1 + 3: _ZN9oceanbase5share13ObBasicSysVar15clean_inc_valueEv:21 + 2: _ZN9oceanbase6common5ObObj13set_nop_valueEv:21 + 2: _ZN9oceanbase6common5ObObj7set_extEl:21 + 4: 1 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:8 + 0: 1 + 4: _ZN9oceanbase6common5ObObj5resetEv:12 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4 + 0: 1 + 5: _ZN9oceanbase6common5ObObj5resetEv:12 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4 + 0: 1 +_ZN9oceanbase5share18ObSysVarSslCrlpathC2Ev:118:1 + 0: 1 + 0: _ZN9oceanbase5share15ObVarcharSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:98 + 5: _ZN9oceanbase5share13ObBasicSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKS1_RKNS_6common5ObObjERSB_EPFiS4_S7_S9_SD_EPFiRNSA_12ObIAllocatorERKNS2_18ObBasicSessionInfoES9_SE_EPFiSK_SN_S9_RNSA_8ObStringEEPFNSA_9ObObjTypeEvEb:98 + 11: 1 + 13: 1 + 20: _ZN9oceanbase5share13ObBasicSysVar11clean_valueEv:69 + 2: _ZN9oceanbase5share13ObBasicSysVar16clean_base_valueEv:24 + 2: 1 + 3: _ZN9oceanbase6common5ObObj13set_nop_valueEv:16 + 2: _ZN9oceanbase6common5ObObj7set_extEl:16 + 4: 1 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:8 + 0: 1 + 3: _ZN9oceanbase5share13ObBasicSysVar15clean_inc_valueEv:21 + 2: _ZN9oceanbase6common5ObObj13set_nop_valueEv:21 + 2: _ZN9oceanbase6common5ObObj7set_extEl:21 + 4: 1 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:8 + 0: 1 + 4: _ZN9oceanbase6common5ObObj5resetEv:12 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4 + 0: 1 + 5: _ZN9oceanbase6common5ObObj5resetEv:12 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4 + 0: 1 +_ZN9oceanbase5share17ObSysVarSslCipherC2Ev:118:1 + 0: 1 + 0: _ZN9oceanbase5share15ObVarcharSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:98 + 5: _ZN9oceanbase5share13ObBasicSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKS1_RKNS_6common5ObObjERSB_EPFiS4_S7_S9_SD_EPFiRNSA_12ObIAllocatorERKNS2_18ObBasicSessionInfoES9_SE_EPFiSK_SN_S9_RNSA_8ObStringEEPFNSA_9ObObjTypeEvEb:98 + 11: 1 + 13: 1 + 20: _ZN9oceanbase5share13ObBasicSysVar11clean_valueEv:69 + 2: _ZN9oceanbase5share13ObBasicSysVar16clean_base_valueEv:24 + 2: 1 + 3: _ZN9oceanbase6common5ObObj13set_nop_valueEv:16 + 2: _ZN9oceanbase6common5ObObj7set_extEl:16 + 4: 1 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:8 + 0: 1 + 3: _ZN9oceanbase5share13ObBasicSysVar15clean_inc_valueEv:21 + 2: _ZN9oceanbase6common5ObObj13set_nop_valueEv:21 + 2: _ZN9oceanbase6common5ObObj7set_extEl:21 + 4: 1 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:8 + 0: 1 + 4: _ZN9oceanbase6common5ObObj5resetEv:12 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4 + 0: 1 + 5: _ZN9oceanbase6common5ObObj5resetEv:12 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4 + 0: 1 +_ZN9oceanbase5share17ObSysVarSslCapathC2Ev:118:1 + 0: 1 + 0: _ZN9oceanbase5share15ObVarcharSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:98 + 5: _ZN9oceanbase5share13ObBasicSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKS1_RKNS_6common5ObObjERSB_EPFiS4_S7_S9_SD_EPFiRNSA_12ObIAllocatorERKNS2_18ObBasicSessionInfoES9_SE_EPFiSK_SN_S9_RNSA_8ObStringEEPFNSA_9ObObjTypeEvEb:98 + 11: 1 + 13: 1 + 20: _ZN9oceanbase5share13ObBasicSysVar11clean_valueEv:69 + 2: _ZN9oceanbase5share13ObBasicSysVar16clean_base_valueEv:24 + 2: 1 + 3: _ZN9oceanbase6common5ObObj13set_nop_valueEv:16 + 2: _ZN9oceanbase6common5ObObj7set_extEl:16 + 4: 1 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:8 + 0: 1 + 3: _ZN9oceanbase5share13ObBasicSysVar15clean_inc_valueEv:21 + 2: _ZN9oceanbase6common5ObObj13set_nop_valueEv:21 + 2: _ZN9oceanbase6common5ObObj7set_extEl:21 + 4: 1 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:8 + 0: 1 + 4: _ZN9oceanbase6common5ObObj5resetEv:12 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4 + 0: 1 + 5: _ZN9oceanbase6common5ObObj5resetEv:12 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4 + 0: 1 +_ZN9oceanbase5share16ObSysVarServerIdC2Ev:118:1 + 0: 1 + 0: _ZN9oceanbase5share11ObIntSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:98 + 5: _ZN9oceanbase5share13ObBasicSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKS1_RKNS_6common5ObObjERSB_EPFiS4_S7_S9_SD_EPFiRNSA_12ObIAllocatorERKNS2_18ObBasicSessionInfoES9_SE_EPFiSK_SN_S9_RNSA_8ObStringEEPFNSA_9ObObjTypeEvEb:98 + 11: 1 + 13: 1 + 20: _ZN9oceanbase5share13ObBasicSysVar11clean_valueEv:69 + 2: _ZN9oceanbase5share13ObBasicSysVar16clean_base_valueEv:24 + 2: 1 + 3: _ZN9oceanbase6common5ObObj13set_nop_valueEv:16 + 2: _ZN9oceanbase6common5ObObj7set_extEl:16 + 4: 1 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:8 + 0: 1 + 3: _ZN9oceanbase5share13ObBasicSysVar15clean_inc_valueEv:21 + 2: _ZN9oceanbase6common5ObObj13set_nop_valueEv:21 + 2: _ZN9oceanbase6common5ObObj7set_extEl:21 + 4: 1 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:8 + 0: 1 + 4: _ZN9oceanbase6common5ObObj5resetEv:12 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4 + 0: 1 + 5: _ZN9oceanbase6common5ObObj5resetEv:12 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4 + 0: 1 +_ZN9oceanbase5share15ObSysVarSslCertC2Ev:118:1 + 0: 1 + 0: _ZN9oceanbase5share15ObVarcharSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:98 + 5: _ZN9oceanbase5share13ObBasicSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKS1_RKNS_6common5ObObjERSB_EPFiS4_S7_S9_SD_EPFiRNSA_12ObIAllocatorERKNS2_18ObBasicSessionInfoES9_SE_EPFiSK_SN_S9_RNSA_8ObStringEEPFNSA_9ObObjTypeEvEb:98 + 11: 1 + 13: 1 + 20: _ZN9oceanbase5share13ObBasicSysVar11clean_valueEv:69 + 2: _ZN9oceanbase5share13ObBasicSysVar16clean_base_valueEv:24 + 2: 1 + 3: _ZN9oceanbase6common5ObObj13set_nop_valueEv:16 + 2: _ZN9oceanbase6common5ObObj7set_extEl:16 + 4: 1 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:8 + 0: 1 + 3: _ZN9oceanbase5share13ObBasicSysVar15clean_inc_valueEv:21 + 2: _ZN9oceanbase6common5ObObj13set_nop_valueEv:21 + 2: _ZN9oceanbase6common5ObObj7set_extEl:21 + 4: 1 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:8 + 0: 1 + 4: _ZN9oceanbase6common5ObObj5resetEv:12 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4 + 0: 1 + 5: _ZN9oceanbase6common5ObObj5resetEv:12 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4 + 0: 1 +_ZN9oceanbase5share15ObLSLocationMap6updateERKNS0_20ObLSLocationCacheKeyERKNS0_12ObLSLocationE:118:0 + 3: 0 + 4: 0 + 7: 0 + 8: 0 + 9.1: 0 + 11: 0 + 12: 0 + 13: 2 + 14.1: 2 + 15.2: 2 + 24.1: 0 + 24.2: 0 + 24.4: 0 + 24.5: 0 + 26: 0 + 27.1: 0 + 28.1: 0 + 28.2: 0 + 29.1: 0 + 31: 0 + 31.2: 0 + 32: 0 + 34: 0 + 35: 0 + 39: 2 _ZN9oceanbase5share12ObLSLocation9deep_copyERKS1_:2 + 39.1: 1 + 41: 1 + 41.1: 0 + 43: 1 + 12: _ZN9oceanbase5share21ObQSyncLockWriteGuardC2ERNS0_11ObQSyncLockE:0 + 0: 0 + 1: 0 + 15.1: _ZNK9oceanbase5share20ObLSLocationCacheKeyeqERKS1_:56 + 4: 2 + 5: 2 + 5.1: 2 + 6: 2 + 6.1: _ZNK9oceanbase5share6ObLSIDeqERKS1_:16 + 0: 2 + 24: _ZN9oceanbase3lib7ObLabelC2IPKcEERKT_:0 + 2: _ZN9oceanbase3lib7ObLabelaSIPKcvEERS1_T_:0 + 2: 0 + 24.3: _ZN9oceanbase6common21ObFixedClassAllocatorINS_5share12ObLSLocationEE5allocEv:0 + 2: 0 + 32.1: _ZN9oceanbase5share12ObLSLocation18set_last_access_tsEl:0 + 0: 0 +_ZN9oceanbase5share14ObSysVarSslKeyC2Ev:118:1 + 0: 1 + 0: _ZN9oceanbase5share15ObVarcharSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:98 + 5: _ZN9oceanbase5share13ObBasicSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKS1_RKNS_6common5ObObjERSB_EPFiS4_S7_S9_SD_EPFiRNSA_12ObIAllocatorERKNS2_18ObBasicSessionInfoES9_SE_EPFiSK_SN_S9_RNSA_8ObStringEEPFNSA_9ObObjTypeEvEb:98 + 11: 1 + 13: 1 + 20: _ZN9oceanbase5share13ObBasicSysVar11clean_valueEv:69 + 2: _ZN9oceanbase5share13ObBasicSysVar16clean_base_valueEv:24 + 2: 1 + 3: _ZN9oceanbase6common5ObObj13set_nop_valueEv:16 + 2: _ZN9oceanbase6common5ObObj7set_extEl:16 + 4: 1 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:8 + 0: 1 + 3: _ZN9oceanbase5share13ObBasicSysVar15clean_inc_valueEv:21 + 2: _ZN9oceanbase6common5ObObj13set_nop_valueEv:21 + 2: _ZN9oceanbase6common5ObObj7set_extEl:21 + 4: 1 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:8 + 0: 1 + 4: _ZN9oceanbase6common5ObObj5resetEv:12 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4 + 0: 1 + 5: _ZN9oceanbase6common5ObObj5resetEv:12 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4 + 0: 1 +_ZN9oceanbase5share14ObSysVarSslCrlC2Ev:118:1 + 0: 1 + 0: _ZN9oceanbase5share15ObVarcharSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:98 + 5: _ZN9oceanbase5share13ObBasicSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKS1_RKNS_6common5ObObjERSB_EPFiS4_S7_S9_SD_EPFiRNSA_12ObIAllocatorERKNS2_18ObBasicSessionInfoES9_SE_EPFiSK_SN_S9_RNSA_8ObStringEEPFNSA_9ObObjTypeEvEb:98 + 11: 1 + 13: 1 + 20: _ZN9oceanbase5share13ObBasicSysVar11clean_valueEv:69 + 2: _ZN9oceanbase5share13ObBasicSysVar16clean_base_valueEv:24 + 2: 1 + 3: _ZN9oceanbase6common5ObObj13set_nop_valueEv:16 + 2: _ZN9oceanbase6common5ObObj7set_extEl:16 + 4: 1 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:8 + 0: 1 + 3: _ZN9oceanbase5share13ObBasicSysVar15clean_inc_valueEv:21 + 2: _ZN9oceanbase6common5ObObj13set_nop_valueEv:21 + 2: _ZN9oceanbase6common5ObObj7set_extEl:21 + 4: 1 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:8 + 0: 1 + 4: _ZN9oceanbase6common5ObObj5resetEv:12 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4 + 0: 1 + 5: _ZN9oceanbase6common5ObObj5resetEv:12 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4 + 0: 1 +_ZN9oceanbase5share13ObSysVarSslCaC2Ev:118:1 + 0: 1 + 0: _ZN9oceanbase5share15ObVarcharSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:98 + 5: _ZN9oceanbase5share13ObBasicSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKS1_RKNS_6common5ObObjERSB_EPFiS4_S7_S9_SD_EPFiRNSA_12ObIAllocatorERKNS2_18ObBasicSessionInfoES9_SE_EPFiSK_SN_S9_RNSA_8ObStringEEPFNSA_9ObObjTypeEvEb:98 + 11: 1 + 13: 1 + 20: _ZN9oceanbase5share13ObBasicSysVar11clean_valueEv:69 + 2: _ZN9oceanbase5share13ObBasicSysVar16clean_base_valueEv:24 + 2: 1 + 3: _ZN9oceanbase6common5ObObj13set_nop_valueEv:16 + 2: _ZN9oceanbase6common5ObObj7set_extEl:16 + 4: 1 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:8 + 0: 1 + 3: _ZN9oceanbase5share13ObBasicSysVar15clean_inc_valueEv:21 + 2: _ZN9oceanbase6common5ObObj13set_nop_valueEv:21 + 2: _ZN9oceanbase6common5ObObj7set_extEl:21 + 4: 1 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:8 + 0: 1 + 4: _ZN9oceanbase6common5ObObj5resetEv:12 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4 + 0: 1 + 5: _ZN9oceanbase6common5ObObj5resetEv:12 + 6: 1 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:4 + 0: 1 +_ZN9oceanbase3lib25ObTenantResourceMgrHandleD2Ev:118:2 + 1: 2 + 2.1: 0 + 3: 2 + 2: _ZN9oceanbase3lib25ObTenantResourceMgrHandle5resetEv:58 + 2: 2 + 3: 2 _ZN9oceanbase3lib13ObResourceMgr7dec_refEPNS0_19ObTenantResourceMgrE:2 + 5: 2 + 2: _ZNK9oceanbase3lib25ObTenantResourceMgrHandle8is_validEv:32 + 2: 2 + 2.1: 2 +_ZN9oceanbase3lib25ObTenantResourceMgrHandleD1Ev:118:2 + 1: 2 + 2.1: 0 + 3: 2 + 2: _ZN9oceanbase3lib25ObTenantResourceMgrHandle5resetEv:58 + 2: 2 + 3: 2 _ZN9oceanbase3lib13ObResourceMgr7dec_refEPNS0_19ObTenantResourceMgrE:2 + 5: 2 + 2: _ZNK9oceanbase3lib25ObTenantResourceMgrHandle8is_validEv:32 + 2: 2 + 2.1: 2 +_ZN9oceanbase7storage16ObTxCtxTableInfoD2Ev:117:0 + 0: 0 + 0.1: 2 + 0.2: 0 + 0.3: 0 + 0.4: 1 _ZN9oceanbase11transaction12ObTxExecInfoD2Ev:2 + 0.8: 0 + 0: _ZN9oceanbase7storage16ObTxCtxTableInfo7destroyEv:26 + 0: _ZN9oceanbase7storage16ObTxCtxTableInfo5resetEv:26 + 4: 0 + 5: 0 + 7: 1 _ZN9oceanbase11transaction9tablelock15ObTableLockInfo5resetEv:1 + 2: _ZN9oceanbase11transaction9ObTransID5resetEv:0 + 0: 0 + 6: _ZN9oceanbase11transaction12ObTxExecInfo5resetEv:15 + 2: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 9: 0 + 11: 0 + 13: 0 + 14: 0 + 16: 0 + 18: 0 + 19: 0 + 22: 0 + 23: 0 + 24: 1 _ZN9oceanbase11transaction11ObXATransID5resetEv:1 + 25: 1 + 3: _ZN9oceanbase5share6ObLSID5resetEv:0 + 0: 0 + 4: _ZN9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EE5resetEv:0 + 0: 0 + 5: _ZN9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EE5resetEv:0 + 0: 0 + 7: _ZN9oceanbase6common13ObSEArrayImplINS_4palf3LSNELl10ENS0_19ModulePageAllocatorELb0EE5resetEv:0 + 0: 0 + 8: _ZN9oceanbase6common6ObAddr5resetEv:0 + 2: 0 + 22: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction14ObTxBufferNodeELl1ENS0_19ModulePageAllocatorELb0EE5resetEv:0 + 0: 0 + 23: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction11ObLSLogInfoELl10ENS0_19ModulePageAllocatorELb0EE5resetEv:0 + 0: 0 _ZN9oceanbase6common13ObSEArrayImplINS_11transaction11ObLSLogInfoELl10ENS0_19ModulePageAllocatorELb0EE7destroyEv:1 + 0.1: _ZN9oceanbase11transaction9tablelock15ObTableLockInfoD2Ev:4 + 0: 1 _ZN9oceanbase6common13ObSEArrayImplINS_11transaction9tablelock13ObTableLockOpELl10ENS2_24TransModulePageAllocatorELb0EED2Ev:1 + 0.5: _ZN9oceanbase7storage8ObTxDataD2Ev:48 + 0: _ZN9oceanbase7storage16ObUndoStatusListD2Ev:40 + 0: _ZN9oceanbase7storage16ObUndoStatusList5resetEv:40 + 2: 2 + 3: 2 + 4: _ZN9oceanbase6common15ObSmallSpinLockIhLl0ELl500ELl100EE6unlockEv:18 + 2: 2 + 3: 2 + 0.2: _ZN9oceanbase7storage14ObTxCommitDataD2Ev:8 + 0: _ZN9oceanbase11transaction9ObTransIDD2Ev:8 + 0: 2 + 0.7: _ZN9oceanbase11transaction9ObTransIDD2Ev:20 + 0: 2 + 0.9: _ZN9oceanbase7storage8ObTxDataD2Ev:0 + 0: _ZN9oceanbase7storage16ObUndoStatusListD2Ev:0 + 0: _ZN9oceanbase7storage16ObUndoStatusList5resetEv:0 + 2: 0 + 3: 0 + 4: _ZN9oceanbase6common15ObSmallSpinLockIhLl0ELl500ELl100EE6unlockEv:0 + 2: 0 + 3: 0 + 0.2: _ZN9oceanbase7storage14ObTxCommitDataD2Ev:0 + 0: _ZN9oceanbase11transaction9ObTransIDD2Ev:0 + 0: 0 + 0.11: _ZN9oceanbase11transaction9ObTransIDD2Ev:0 + 0: 0 +_ZZN9oceanbase4palf10PalfHandle21unregister_rebuild_cbEvENK5$_775clEPKc.0e4bf25207570af14a78557c8489c4fc:116:3 + 0: 2 + 0.1: 0 + 0.2: 2 + 0.3: 2 _ZN9oceanbase6common8ObLogger13need_to_printEmi:2 + 0.5: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:34 + 2: 2 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase8observer15ObSqlEndTransCbC2Ev:116:1 + 0: 1 _ZN9oceanbase8observer16ObMPPacketSenderC1Ev:1 + 1: 1 + 3: 0 + 3.3: 0 + 0.1: _ZN9oceanbase3sql23ObEndTransCbPacketParamC2Ev:66 + 2: 1 + 3: 1 + 5: 1 + 6: 1 + 7: 1 + 2: _ZN9oceanbase8observer15ObSqlEndTransCb5resetEv:14 + 3: 0 + 5: 0 + 6: 0 + 7: 0 + 2: _ZN9oceanbase8observer16ObMPPacketSender5resetEv:14 + 2: 1 + 3: 1 + 4: 0 + 10: 0 + 11: 0 + 15: 0 + 16: 0 + 17: 0 + 18: 0 + 19: 0 + 5: _ZN9oceanbase3rpc20ObSqlRequestOperator7destroyEPNS0_9ObRequestE:0 + 1: 0 + 1.1: 0 + 12: _ZN9oceanbase7obmysql20ObCompressionContext5resetEv:0 + 0: 0 + 4: _ZN9oceanbase3sql23ObEndTransCbPacketParam5resetEv:0 + 2: 0 + 3: 0 + 5: 0 + 7: 0 +_ZN9oceanbase8observer15ObSqlEndTransCbC1Ev:116:1 + 0: 1 _ZN9oceanbase8observer16ObMPPacketSenderC1Ev:1 + 1: 1 + 3: 0 + 3.3: 0 + 0.1: _ZN9oceanbase3sql23ObEndTransCbPacketParamC2Ev:66 + 2: 1 + 3: 1 + 5: 1 + 6: 1 + 7: 1 + 2: _ZN9oceanbase8observer15ObSqlEndTransCb5resetEv:14 + 3: 0 + 5: 0 + 6: 0 + 7: 0 + 2: _ZN9oceanbase8observer16ObMPPacketSender5resetEv:14 + 2: 1 + 3: 1 + 4: 0 + 10: 0 + 11: 0 + 15: 0 + 16: 0 + 17: 0 + 18: 0 + 19: 0 + 5: _ZN9oceanbase3rpc20ObSqlRequestOperator7destroyEPNS0_9ObRequestE:0 + 1: 0 + 1.1: 0 + 12: _ZN9oceanbase7obmysql20ObCompressionContext5resetEv:0 + 0: 0 + 4: _ZN9oceanbase3sql23ObEndTransCbPacketParam5resetEv:0 + 2: 0 + 3: 0 + 5: 0 + 7: 0 +_ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_NS_3sql17ObSessionVariableEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS7_EENS0_17ObPooledAllocatorINS1_15ObHashTableNodeIS7_EENS0_18ObWrapperAllocatorENS0_10ObNullLockEEENS1_19NoPthreadDefendModeENS1_13NormalPointerESH_Ll1EE6createElPSJ_PSH_:116:0 + 1: 0 + 2: 0 + 3: 0 + 4.1: 0 + 5: 0 + 6.1: 0 + 7.1: 0 + 9: 0 + 10.1: 2 + 12.1: 0 + 13: 0 + 16: 2 + 17: 2 + 19: 2 + 21: 2 + 6.1: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringENS_3sql17ObSessionVariableEEENS1_5NLockENS1_5NCondEEEEEbRKT_:0 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringENS_3sql17ObSessionVariableEEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:0 + 2: 0 + 10.1: _ZN9oceanbase6common4hash6createIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringENS_3sql17ObSessionVariableEEENS1_5NLockENS1_5NCondEEENS0_18ObWrapperAllocatorEEEiRT_lllRT0_:42 + 3: _ZN9oceanbase6common4hash9do_createIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringENS_3sql17ObSessionVariableEEENS1_5NLockENS1_5NCondEEENS0_18ObWrapperAllocatorEEEiRT_lllNS1_16NormalPointerTagERT0_:42 + 7.1: 2 + 8.1: 0 + 12: 2 +_ZN9oceanbase6common11ObArrayImplINS0_18ObTZRevertTypeInfoENS0_8ObMallocELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_17DefaultItemEncodeIS2_EEE7destroyEv:116:2 + 1: 2 + 2: 2 + 3.1: 0 + 3.3: 0 + 4: 0 + 6: 0 + 7: 0 + 9: 2 + 11: 2 + 13: 2 + 6: _ZN9oceanbase6common8ObMalloc4freeEPv:0 + 0: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase10logservice12ObLogHandler25get_max_decided_log_ts_nsERl:116:1 + 1: 1 + 2: 1 + 3: 1 + 4: 1 + 5: 1 + 6: 1 _ZN9oceanbase6common8TCRWLock10RLockGuardC2ERS1_:1 + 7: 1 + 8: 0 + 9.1: 1 + 11: 0 + 12.1: 1 _ZN9oceanbase10logservice17ObLogApplyService27get_min_unapplied_log_ts_nsERKNS_5share6ObLSIDERl:1 + 12.2: 0 + 13.1: 0 + 14.1: 0 + 14.2: 0 + 15.1: 0 + 16: 0 + 18: 0 + 19: 0 + 19.3: 0 + 20.1: 0 + 24: 0 + 24.1: 0 + 24.5: 0 + 26.1: 0 + 28: 0 + 29.8: 0 + 29.9: 0 + 3: _ZN9oceanbase5share6ObLSIDC2El:11 + 0: 1 + 24: _ZSt3maxIlERKT_S2_S2_:0 + 5: 0 +_ZN9oceanbase6common13ObSEArrayImplIlLl32ENS0_19ModulePageAllocatorELb0EE7destroyEv:115:1 + 1: 1 + 9: 1 + 11: 1 + 13: 1 + 15: 1 + 24: 1 + 25: 1 + 10: _ZN9oceanbase6common13ObSEArrayImplIlLl32ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:43 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:43 + 0: 1 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:27 + 2: 1 + 3: 1 _ZN9oceanbase3lib17ObMallocAllocator12get_instanceEv:1 + 4: 1 + 5: 1 + 4: _ZL12abort_unlessb:2 + 5: 1 + 6: 0 +_ZN9oceanbase6common16ObClockGenerator6usleepEl:114:0 + 1: 0 + 2: 0 + 4: 2 _ZN6obutil9ObSysTimeC1El:2 + 6.1: 1 + 3: _ZN6obutil9ObMonitorINS_5MutexEEC2Ev:30 + 1: 2 + 65512: 1 + 65512.1: 1 _ZN6obutil5MutexC1Ev:1 + 4.1: _ZNK6obutil9ObMonitorINS_5MutexEE10timed_waitERKNS_9ObSysTimeE:57 + 2: 2 + 4: 2 _ZNK6obutil4Cond15timed_wait_implINS_5MutexEEEbRKT_RKNS_9ObSysTimeE:2 + 5: 1 + 2: _ZNK6obutil9ObMonitorINS_5MutexEE11notify_implEi:16 + 2: 2 + 4: 0 + 6: 0 + 6.1: 0 + 7: 0 + 5: _ZN6obutil9ObMonitorINS_5MutexEED2Ev:8 + 2: 1 _ZN6obutil5MutexD1Ev:1 + 2.1: 1 _ZN6obutil4CondD1Ev:1 + 5.1: _ZN6obutil9ObMonitorINS_5MutexEED2Ev:0 + 2: 0 +_ZN9oceanbase3sql17datetime_datetimeERKNS0_6ObExprERNS0_9ObEvalCtxERNS_6common7ObDatumE:114:1 + 1: 1 + 2: 1 + 2.2: 0 + 2.5: 0 + 4: 0 + 4.2: 0 + 4.3: 0 + 4.4: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 14: 0 + 15.1: 0 + 16: 0 + 20: 0 + 22: 0 + 26: 0 + 2: _ZNK9oceanbase3sql6ObExpr4evalERNS0_9ObEvalCtxERPNS_6common7ObDatumE:77 + 4: 1 + 6: 1 + 7: 1 + 9: 1 + 10: 0 + 10.1: 0 + 11: 0 + 13: 0 + 15.1: 1 + 15.2: 1 + 17: 1 + 18: 1 + 20: 1 + 21: 0 + 22: 0 + 9: _ZNK9oceanbase3sql6ObExpr15is_batch_resultEv:4 + 0: 1 + 11: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 24: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:0 + 0: 0 + 2.5: _ZNK9oceanbase6common11ObDatumDesc7is_nullEv:0 + 0: 0 + 2.6: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:0 + 0: 0 + 4: _ZNK9oceanbase3sql13ObExecContext14get_my_sessionEv:0 + 2: 0 + 6: _ZNK9oceanbase6common7ObDatum7get_intEv:0 + 0: 0 + 12: _ZNK9oceanbase3sql18ObBasicSessionInfo17get_timezone_infoEv:0 + 0: _ZNK9oceanbase6common18ObTimeZoneInfoWrap18get_time_zone_infoEv:0 + 0: 0 + 17: _ZNK9oceanbase3sql18ObBasicSessionInfo17get_timezone_infoEv:0 + 0: _ZNK9oceanbase6common18ObTimeZoneInfoWrap18get_time_zone_infoEv:0 + 0: 0 + 22: _ZN9oceanbase6common7ObDatum12set_datetimeEl:0 + 0: 0 +_ZN9oceanbase6common8ob_atollEPKcRl:113:1 + 1: 1 + 2: 1 + 3: 1 + 5: 1 + 7.1: 1 + 8.1: 0 + 9.1: 1 + 9.3: 1 + 12: 1 + 14: 1 + 7.1: _ZN9oceanbase6common10ob_strtollEPKcRPcRl:29 + 7: 1 + 8: 1 +_ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_NS0_13LabelInfoItemEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS6_EELi82ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14set_refactoredERKS3_RKS6_iii:113:0 + 2: 0 + 3: 0 + 5: 0 + 5.1: 0 + 6.1: 0 + 7: 0 + 15: 0 + 16: 0 + 17: 0 + 21: 0 + 23.1: 0 + 25.2: 0 + 26: 0 + 27: 0 + 32: 0 + 33: 0 + 34: 0 + 35.1: 0 + 36.1: 0 + 37.2: 0 + 42: 0 + 43: 0 + 48: 0 + 49: 0 + 62: 0 + 63.1: 1 + 66: 1 + 5: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringENS0_13LabelInfoItemEEENS0_7ObLatchENS1_5NCondEEEEEbRKT_:0 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS0_8ObStringENS0_13LabelInfoItemEEENS0_7ObLatchENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:0 + 2: 0 + 20: _ZN9oceanbase6common4hash16ObBucketLockCondINS1_11HashMapPairINS0_8ObStringENS0_13LabelInfoItemEEENS1_24LatchReadWriteDefendModeEE4lockEv:0 + 2: 0 + 20.1: _ZN9oceanbase6common4hash16LatchWriteLockerC2ERNS0_7ObLatchE:0 + 3: 0 + 4.1: 0 + 24: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_11HashMapPairINS0_8ObStringENS0_13LabelInfoItemEEEE16check_magic_codeEv:0 + 0: 0 + 24.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 25.1: _ZNK9oceanbase6common4hash8equal_toINS0_8ObStringEEclERKS3_S6_:0 + 2: _ZNK9oceanbase6common8ObStringeqERKS1_:0 + 2: 0 + 2: _ZNK9oceanbase6common8ObString7compareERKS1_:0 + 3: 0 + 4: 0 + 5.1: 0 + 7.1: 0 + 7.2: 0 + 104: 0 + 7.1: _ZSt3minIiERKT_S2_S2_:0 + 5: 0 + 37.1: _ZN9oceanbase6common4hash4copyINS1_11HashMapPairINS0_8ObStringENS0_13LabelInfoItemEEEEEiRT_RKS7_NS1_13NormalPairTagE:0 + 3: _ZN9oceanbase6common11copy_assignINS0_4hash11HashMapPairINS0_8ObStringENS0_13LabelInfoItemEEEEEiRT_RKS7_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapINS0_4hash11HashMapPairINS0_8ObStringENS0_13LabelInfoItemEEEEEiRT_RKS7_NS0_8BoolTypeILb1EEE:0 + 2: _ZN9oceanbase6common4hash11HashMapPairINS0_8ObStringENS0_13LabelInfoItemEE6assignERKS5_:0 + 3: _ZN9oceanbase6common11copy_assignINS0_8ObStringEEEiRT_RKS3_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapINS0_8ObStringEEEiRT_RKS3_NS0_8BoolTypeILb0EEE:0 + 2: 0 + 5.1: _ZN9oceanbase6common11copy_assignINS0_13LabelInfoItemEEEiRT_RKS3_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapINS0_13LabelInfoItemEEEiRT_RKS3_NS0_8BoolTypeILb0EEE:0 + 2: 0 + 63: _ZN9oceanbase6common4hash11ObHashTableINS0_8ObStringENS1_11HashMapPairIS3_NS0_13LabelInfoItemEEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS6_EELi82ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE12internal_setERNS1_17ObHashTableBucketIS6_NS0_7ObLatchENS1_5NCondEEERKS6_b:80 + 4: 0 + 6: 0 + 7: 1 + 8: 0 + 9.1: 0 + 11: 1 + 12: 1 + 15: 1 + 16: 1 + 17: 1 + 18.1: 1 + 21: 1 + 12: _ZN9oceanbase6common11copy_assignINS0_4hash11HashMapPairINS0_8ObStringENS0_13LabelInfoItemEEEEEiRT_RKS7_:23 + 2: _ZN9oceanbase6common16copy_assign_wrapINS0_4hash11HashMapPairINS0_8ObStringENS0_13LabelInfoItemEEEEEiRT_RKS7_NS0_8BoolTypeILb1EEE:23 + 2: _ZN9oceanbase6common4hash11HashMapPairINS0_8ObStringENS0_13LabelInfoItemEE6assignERKS5_:23 + 3: _ZN9oceanbase6common11copy_assignINS0_8ObStringEEEiRT_RKS3_:7 + 2: _ZN9oceanbase6common16copy_assign_wrapINS0_8ObStringEEEiRT_RKS3_NS0_8BoolTypeILb0EEE:7 + 2: 1 + 5.1: _ZN9oceanbase6common11copy_assignINS0_13LabelInfoItemEEEiRT_RKS3_:16 + 2: _ZN9oceanbase6common16copy_assign_wrapINS0_13LabelInfoItemEEEiRT_RKS3_NS0_8BoolTypeILb0EEE:16 + 2: 1 + 65: _ZN9oceanbase6common4hash16LatchWriteLockerD2Ev:8 + 2: 1 + 3: 1 _ZN9oceanbase6common7ObLatch6unlockEPKj:1 + 3.1: 0 + 65.1: _ZN9oceanbase6common4hash16LatchWriteLockerD2Ev:0 + 2: 0 + 3: 0 + 3.1: 0 +_ZN9oceanbase6common10HazardList7move_toERS1_:112:2 + 0: 2 + 3: 2 + 1: _ZN9oceanbase6common10HazardList6concatERS1_:70 + 1: 2 + 2: 2 + 4.1: 0 + 5: 0 + 8: 2 + 2: _ZN9oceanbase6common10HazardList8get_headEv:8 + 0: 2 + 3: _ZN9oceanbase6common10HazardList8get_tailEv:8 + 0: 2 + 5: _ZN9oceanbase6common10HazardList8get_headEv:0 + 0: 0 + 8: _ZN9oceanbase6common10HazardList4sizeEv:8 + 0: 2 + 2: _ZN9oceanbase6common10HazardList9clear_allEv:30 + 2: 2 +_ZN9oceanbase7storage16ObStorageLogItem8fill_logElRNS0_17ObStorageLogParamEi:111:0 + 4: 0 + 5: 0 + 9: 0 + 10: 0 + 11.1: 0 + 12.1: 0 + 12.2: 0 + 12.3: 0 + 13: 0 + 14.1: 0 + 15.1: 0 + 19: 0 + 20: 0 + 22: 0 + 25: 0 + 27.1: 0 + 28: 0 + 29: 0 + 29.1: 0 + 31: 0 + 32: 0 + 33: 0 + 34: 0 + 35: 0 + 37: 0 + 38: 0 + 39.1: 0 + 41.1: 0 + 41.2: 0 + 42.1: 0 + 43.1: 0 + 44: 0 + 45.1: 0 + 47.1: 0 + 47.2: 1 + 49.1: 0 + 50.1: 1 _ZNK9oceanbase7storage17ObStorageLogEntry9serializeEPclRl:1 + 50.2: 1 + 51.1: 0 + 52.1: 1 + 53: 0 + 54.1: 0 + 56.1: 1 + 57: 1 + 61: 1 + 12.2: _ZNK9oceanbase7storage17ObStorageLogParam8is_validEv:0 + 2: 0 + 3: 0 + 3.1: 0 + 4: 0 + 4.1: 0 + 15.1: _ZN9oceanbase7storage13ObIRedoModule9parse_cmdEiRNS0_17ObRedoLogMainTypeERNS0_16ObRedoLogSubTypeE:0 + 5: 0 + 26: _ZN9oceanbase7storage17ObStorageLogEntryC2Ev:0 + 1: 0 + 2: 0 + 3: 0 + 47.1: _ZN9oceanbase7storage17ObStorageLogEntry10fill_entryEPKclim:6 + 6: 0 + 8: 0 + 8.2: 0 + 9: 0 + 10.1: 0 + 12: 0 + 13: 0 + 14: 0 + 15: 0 + 16: 0 + 17: 1 + 20: 0 + 15: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 16: _ZNK9oceanbase7storage17ObStorageLogEntry18calc_data_checksumEPKcl:0 + 4: 0 + 5: 0 +_ZN9oceanbase6common9ObCharset6strcmpENS0_15ObCollationTypeEPKclS4_l:111:1 + 5: 1 + 8: 1 + 12: 1 _ZL20ob_strnncoll_utf8mb4PK13ObCharsetInfoPKhmS3_mb.5aa8bf9a2f1d92c2672c2bb9fbfc2e97:1 + 18: 0 + 7: _ZN9oceanbase6common9ObCharset17is_argument_validENS0_15ObCollationTypeEPKclS4_l:6 + 3: 1 + 4: 0 + 4.2: 0 + 5: 0 + 8: 0 + 9: 0 + 11.2: 0 + 18: 0 + 19: 0 + 19.1: 0 + 21.2: 0 + 3: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:5 + 2: 1 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:1 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:4 + 2: 1 +_ZNK9oceanbase6common4hash18ObPointerHashArrayINS_5share6schema25ObOutlineSqlIdHashWrapperEPNS4_21ObSimpleOutlineSchemaENS4_17ObGetOutlineKeyV3EE21placement_hash_searchERKS5_Rl:110:2 + 1: 2 + 3: 2 + 5: 2 + 9: 0 + 13: 0 + 15.2: 0 + 16: 0 + 19: 0 + 20: 0 + 28: 2 + 8: _ZNK9oceanbase6common4hash18ObPointerHashArrayINS_5share6schema25ObOutlineSqlIdHashWrapperEPNS4_21ObSimpleOutlineSchemaENS4_17ObGetOutlineKeyV3EE17key_to_anchor_idxERKS5_:0 + 3: 0 + 4: 0 + 4.2: 0 + 2: _ZN9oceanbase6common7do_hashINS_5share6schema25ObOutlineSqlIdHashWrapperEEEmRKT_:0 + 2: 0 + 8.2: _ZNK9oceanbase6common4hash18ObPointerHashArrayINS_5share6schema25ObOutlineSqlIdHashWrapperEPNS4_21ObSimpleOutlineSchemaENS4_17ObGetOutlineKeyV3EE10probe_nextEl:0 + 3: 0 + 5: 0 + 15.1: _ZNK9oceanbase5share6schema17ObGetOutlineKeyV3INS1_25ObOutlineSqlIdHashWrapperEPNS1_21ObSimpleOutlineSchemaEEclEPKS4_:0 + 3: 0 + 2: _ZN9oceanbase5share6schema25ObOutlineSqlIdHashWrapperC2Ev:0 + 1: 0 + 2: _ZN9oceanbase6common8ObStringC2Ev:0 + 1: 0 + 4: _ZNK9oceanbase5share6schema21ObSimpleOutlineSchema13get_tenant_idEv:0 + 0: 0 + 4.1: _ZN9oceanbase5share6schema25ObOutlineSqlIdHashWrapper13set_tenant_idEm:0 + 0: 0 + 5: _ZNK9oceanbase5share6schema21ObSimpleOutlineSchema15get_database_idEv:0 + 0: 0 + 5.1: _ZN9oceanbase5share6schema25ObOutlineSqlIdHashWrapper15set_database_idEm:0 + 0: 0 + 6.1: _ZN9oceanbase5share6schema25ObOutlineSqlIdHashWrapper10set_sql_idERKNS_6common8ObStringE:0 + 0: 0 + 15.4: _ZNK9oceanbase5share6schema25ObOutlineSqlIdHashWrappereqERKS2_:0 + 2: 0 + 3.1: 0 +_ZNK9oceanbase4palf17LogIOFlushLogTask16get_io_task_typeEv:110:10 + 0: 10 +_ZN9oceanbase8observer20ObInnerSQLConnection13process_finalINS_6common9sqlclient11ObIExecutorEEEiRKT_RNS0_16ObInnerSQLResultEi:110:2 + 3: 2 + 6: 2 + 7: 0 + 8: 0 + 9: 0 + 10.1: 0 + 10.2: 0 + 10.3: 0 + 10.4: 0 + 10.6: 0 + 10.7: 0 + 11.1: 0 + 11.2: 0 + 11.3: 0 + 11.4: 0 + 11.6: 0 + 11.7: 0 + 11.12: 0 + 11.14: 0 + 14: 0 + 15.1: 0 + 18: 2 + 6: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:20 + 2: 2 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:2 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:8 + 2: 2 + 7.1: _ZN9oceanbase8observer20ObInnerSQLConnection11get_sessionEv:0 + 0: 0 + 10.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:0 + 2: 0 + 11.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:0 + 2: 0 + 11.4: _ZN9oceanbase8observer20ObInnerSQLConnection11get_sessionEv:0 + 0: 0 + 11.7: _ZN9oceanbase8observer20ObInnerSQLConnection11get_sessionEv:0 + 0: 0 +_ZN9oceanbase8observer19ObTenantMetaChecker22check_report_replicas_ERNS_6common4hash9ObHashMapINS_5share6ObLSIDENS5_11ObLSReplicaENS3_24LatchReadWriteDefendModeENS3_9hash_funcIS6_EENS3_8equal_toIS6_EENS3_13SimpleAllocerINS3_15ObHashTableNodeINS3_11HashMapPairIS6_S7_EEEELi11ENS3_19SpinMutexDefendModeENS3_29DefaultSimpleAllocerAllocatorEEENS3_13NormalPointerENS2_8ObMallocELl1EEERl:110:0 + 3: 0 + 4: 0 + 5: 0 + 7: 0 + 8: 0 + 9.1: 0 + 10.1: 0 + 11: 0 + 12.1: 0 + 13.1: 0 + 13.2: 0 + 14: 0 + 15.1: 0 + 16.2: 0 + 16.3: 1 + 19.1: 0 + 21: 1 + 22.1: 1 + 23: 1 + 24: 0 + 25.1: 0 + 26.2: 1 _ZN9oceanbase7storage12ObLSIterator8get_nextERPNS0_4ObLSE:1 + 26.3: 1 + 28.1: 0 + 30.1: 1 + 31: 0 + 32.1: 0 + 35: 1 _ZN9oceanbase5share11ObLSReplicaC1Ev:1 + 36: 0 + 37: 0 + 37.1: 0 + 39: 0 + 40: 0 + 40.1: 0 + 40.2: 0 + 41.1: 0 + 43: 0 + 44.1: 0 + 48.1: 0 + 50.1: 0 + 50.2: 0 + 50.3: 0 + 54.1: 0 + 55.1: 0 + 55.2: 0 + 58: 0 + 58.1: 0 + 58.2: 0 + 59.1: 0 + 61: 0 + 62.1: 0 + 65.1: 0 + 65.2: 0 + 65.3: 0 + 65.6: 0 + 68: 0 + 71: 0 + 72.19: 0 + 6: _ZN9oceanbase6common13ObSharedGuardINS_7storage12ObLSIteratorEEC2Ev:0 + 0: _ZN9oceanbase6common5guard8BlockPtrINS_7storage12ObLSIteratorEEC2Ev:0 + 0: 0 + 16.1: _ZN9oceanbase5share11ObTenantEnv3mtlIPNS_7storage11ObLSServiceEEET_v:0 + 2: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.1: _ZN9oceanbase5share12ObTenantBase3getIPNS_7storage11ObLSServiceEEET_v:0 + 0: _ZN9oceanbase5share12ObTenantBase9inner_getENS1_8IdentityIPNS_7storage11ObLSServiceEEE:0 + 0: 0 + 26.1: _ZNK9oceanbase6common13ObSharedGuardINS_7storage12ObLSIteratorEEptEv:4 + 0: 1 + 34: _ZNK9oceanbase7storage4ObLS9get_ls_idEv:11 + 0: _ZN9oceanbase5share6ObLSIDC2ERKS1_:11 + 0: 1 + 72.19: _ZN9oceanbase6common13ObSharedGuardINS_7storage12ObLSIteratorEED2Ev:0 + 0: 0 + 0.2: 0 + 72.20: _ZN9oceanbase6common13ObSharedGuardINS_7storage12ObLSIteratorEED2Ev:0 + 0: 0 + 0.2: 0 +_ZN9oceanbase6common18ObDSSessionActions4initElRNS0_12ObIAllocatorE:110:2 + 1: 2 + 2: 2 + 3: 2 + 4: 0 + 5.1: 0 + 6.1: 2 + 7: 0 + 8.1: 0 + 10: 2 + 11: 2 + 12: 2 + 14: 2 +_ZN9oceanbase6common17ObjHashCalculatorILNS0_9ObObjTypeE22ENS0_13ObDefaultHashENS0_5ObObjEE15calc_hash_valueERKS4_m:110:2 + 0: 1 + 0: _ZNK9oceanbase6common5ObObj18get_collation_typeEv:4 + 0: _ZNK9oceanbase6common9ObObjMeta18get_collation_typeEv:4 + 0: 1 + 0.1: _ZN9oceanbase6commonL27varchar_hash_with_collationERKNS0_5ObObjENS0_15ObCollationTypeEmPFmPKvmmE:92 + 4.1: 1 _ZN9oceanbase6common9ObCharset4hashENS0_15ObCollationTypeEPKclmbPFmPKvmmE:1 + 4: _ZNK9oceanbase6common5ObObj14get_string_ptrEv:4 + 0: 1 + 4.2: _ZNK9oceanbase6common5ObObj14get_string_lenEv:4 + 0: 1 + 5: _ZNK9oceanbase6common5ObObj24is_varying_len_char_typeEv:14 + 0: _ZNK9oceanbase6common9ObObjMeta24is_varying_len_char_typeEv:14 + 0: 1 + 0: _ZNK9oceanbase6common9ObObjMeta10is_varcharEv:13 + 2: 1 + 2.1: 1 + 5.1: _ZN9oceanbase3lib14is_oracle_modeEv:43 + 2: _ZN9oceanbase3lib15get_compat_modeEv:43 + 2: 1 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:27 + 2: 1 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 +_ZN9oceanbase6common11ObSqlString7reserveEl:110:1 + 1: 1 + 2: 1 + 3: 1 + 5: 1 + 6: 0 + 7.1: 0 + 9: 1 + 10: 1 + 10.3: 1 + 11.1: 0 + 11.2: 1 + 12: 1 + 13: 0 + 15: 0 + 16: 0 + 17.1: 0 + 18.1: 2 _ZN9oceanbase6common11ObSqlString6extendEl:1 + 19.1: 0 + 23: 2 +_ZN9oceanbase6common11ObArrayImplINS_5share11ReplicaAttrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE7destroyEv:110:2 + 1: 2 + 2: 2 + 7: 0 + 9: 2 + 11: 2 + 13: 2 + 6: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase11transaction20ObKeepAliveLSHandler15print_stat_infoEv:110:2 + 1: 2 + 3.1: 2 _ZZN9oceanbase11transaction20ObKeepAliveLSHandler15print_stat_infoEvENK5$_442clEPKc.6c6f3ed9193054173c335adef4549614:2 + 12: _ZN9oceanbase11transaction21ObLSKeepAliveStatInfo5resetEv:76 + 3: 2 + 8: 2 _ZN9oceanbase4palf3LSN5resetEv:2 +_ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS0_8ObStringENS0_13LabelInfoItemEEEEELi82ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEE5allocIJEEEPS8_DpRT_:108:0 + 1: 0 + 3: 0 + 4: 1 + 5: 1 + 6: 1 + 6.1: 1 + 6.2: 1 + 7.1: 0 + 9: 1 + 10: 1 + 11: 1 + 14: 0 + 15: 0 + 15.1: 0 + 17.1: 0 + 18.1: 0 + 24: 0 + 26: 0 + 27: 0 + 28: 0 + 32: 0 + 33: 0 + 34: 0 + 35: 0 + 36: 0 + 37: 0 + 38: 0 + 42: 1 + 46.4: 1 + 3: _ZN9oceanbase6common4hash10SpinLockerC2ERVi:8 + 2: 1 + 3.1: 0 + 17: _ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocator5allocEl:0 + 4: 0 + 43: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_11HashMapPairINS0_8ObStringENS0_13LabelInfoItemEEEEC2Ev:18 + 0: _ZN9oceanbase6common4hash11HashMapPairINS0_8ObStringENS0_13LabelInfoItemEEC2Ev:18 + 0: _ZN9oceanbase6common8ObStringC2Ev:18 + 1: 1 + 46.4: _ZN9oceanbase6common4hash10SpinLockerD2Ev:9 + 2: 1 + 3: 1 + 46.5: _ZN9oceanbase6common4hash10SpinLockerD2Ev:0 + 2: 0 + 3: 0 +_ZN9oceanbase6common13ObSEArrayImplImLl8ENS0_19ModulePageAllocatorELb0EE7destroyEv:108:2 + 1: 2 + 9: 2 + 11: 0 + 13: 2 + 15: 2 + 24: 2 + 25: 2 + 10: _ZN9oceanbase6common13ObSEArrayImplImLl8ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: 0 +_ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl8ENS0_19ModulePageAllocatorELb0EE7destroyEv:108:2 + 1: 2 + 9: 2 + 11: 0 + 13: 2 + 15: 2 + 24: 2 + 25: 2 + 10: _ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl8ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: 0 +_ZN9oceanbase6common13ObSEArrayImplINS_8memtable13ObLockWaitMgr8SessPairELl16ENS0_19ModulePageAllocatorELb0EE7destroyEv:108:4 + 1: 2 + 9: 2 + 11: 0 + 13: 2 + 15: 2 + 24: 2 + 25: 2 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_8memtable13ObLockWaitMgr8SessPairELl16ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: 0 +_ZNK9oceanbase3lib6Worker18get_timeout_remainEv:107:3 + 1: 3 + 2: 5 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:3 +_ZN9oceanbase7storage8ObLSMeta26update_ls_replayable_pointEl:107:1 + 1: 1 + 2: 1 + 3: 1 _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEEC2ERS3_:1 + 4: 2 + 5: 0 + 6.1: 0 + 7.1: 2 + 10: 0 + 11: 0 + 12.1: 0 + 13.1: 0 + 15: 0 + 18: 2 + 19.4: 2 _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEED2Ev:2 + 19.5: 0 + 12: _ZNK9oceanbase6common10ObFunctionIFiRNS_7storage8ObLSMetaEEEclES4_:0 + 2: 0 + 2.1: 0 + 17: _ZN9oceanbase7storage8ObLSMetaD2Ev:0 + 0: 0 + 0.3: _ZN9oceanbase5share6ObLSIDD2Ev:0 + 0: _ZN9oceanbase5share6ObLSID5resetEv:0 + 0: 0 + 0.4: _ZN9oceanbase6common10ObSpinLockD2Ev:0 + 2: 0 + 17.1: _ZN9oceanbase7storage8ObLSMetaD2Ev:0 + 0: 0 + 0.3: _ZN9oceanbase5share6ObLSIDD2Ev:0 + 0: _ZN9oceanbase5share6ObLSID5resetEv:0 + 0: 0 + 0.4: _ZN9oceanbase6common10ObSpinLockD2Ev:0 + 2: 0 +_ZN9oceanbase11transaction14ObTransService9commit_txERNS0_8ObTxDescElPKNS_6common8ObStringE:107:0 + 1: 0 + 2: 0 + 3: 0 + 5: 0 + 5.1: 1 + 6: 1 + 7: 1 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:1 + 7.1: 1 + 8: 1 + 8.4: 1 + 9.1: 0 + 11: 0 + 12: 0 + 14: 1 + 17: 1 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:1 + 17.1: 1 + 18.1: 1 _ZZN9oceanbase11transaction14ObTransService9commit_txERNS0_8ObTxDescElPKNS_6common8ObStringEENK6$_1281clEPKc.93feb755617c21c32b229b78773c290c:1 + 20.4: 0 + 20.5: 0 + 20.12: 0 + 20.15: 0 + 20.16: 0 + 20.17: 0 + 20.19: 0 + 20.22: 0 + 20.23: 0 + 24: 0 + 25: 0 + 27: 0 + 28.10: 0 + 4: _ZN9oceanbase11transaction12_GLOBAL__N_114SyncTxCommitCbC2Ev:0 + 0: 0 + 0.1: _ZN9oceanbase11transaction11ObTransCondC2Ev:0 + 0: _ZN6obutil9ObMonitorINS_5MutexEEC2Ev:0 + 1: 0 + 65512: 0 + 65512.1: 0 + 0.4: _ZN9oceanbase11transaction11ObTransCond5resetEv:0 + 2: 0 + 3: 0 + 8.3: _ZN9oceanbase11transaction12_GLOBAL__N_114SyncTxCommitCb4waitElRi:12 + 1: 1 _ZN9oceanbase11transaction11ObTransCond4waitElRi:1 + 20.3: _ZN9oceanbase3lib20is_trace_log_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:0 + 2: 0 + 20.5: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EE9add_eventERb:0 + 2: 0 + 3.1: 0 + 7: 0 + 12: 0 + 13: 0 + 20.7: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:0 + 0: 0 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 20.9: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:0 + 0: 0 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 20.10: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EE10check_lockEv:0 + 2: 0 + 3: _ZN9oceanbase3lib7ObMutex4lockEv:0 + 0: 0 + 20.11: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EE14get_buffer_posEv:0 + 0: 0 + 20.12: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl100ELl4000EE10get_bufferEv:0 + 0: 0 + 20.14: _ZNK9oceanbase11transaction15ObTransHashLinkINS0_8ObTxDescEE7get_refEv:0 + 0: 0 + 20.15: _Z9ob_gettidv:0 + 3: 0 + 4: 0 + 2: _Z13get_tid_cachev:0 + 7: 0 + 7.1: 0 + 7.1: _ZZ13get_tid_cachevEN3TIDC2Ev:0 + 0: 0 + 20.24: _ZN9oceanbase6common24ObTraceEventRecorderBaseILl100ELl4000EE12check_unlockEv:0 + 2: 0 + 3: _ZN9oceanbase3lib7ObMutex6unlockEv:0 + 0: 0 + 28.10: _ZN9oceanbase11transaction12_GLOBAL__N_114SyncTxCommitCbD2Ev:0 + 0: 0 + 0: _ZN9oceanbase11transaction11ObTransCondD2Ev:0 + 0: _ZN6obutil9ObMonitorINS_5MutexEED2Ev:0 + 2: 0 + 2.1: 0 + 28.13: _ZN9oceanbase11transaction12_GLOBAL__N_114SyncTxCommitCbD2Ev:0 + 0: 0 + 0: _ZN9oceanbase11transaction11ObTransCondD2Ev:0 + 0: _ZN6obutil9ObMonitorINS_5MutexEED2Ev:0 + 2: 0 +_ZNK9oceanbase5share8ObLSInfo9find_idx_ERKNS_6common6ObAddrERl:104:1 + 1: 1 + 2: 1 + 3: 1 + 4: 0 + 5: 0 + 6.1: 0 + 8.1: 0 + 8.2: 1 + 8.3: 1 + 8.5: 0 + 9: 0 + 9.2: 0 + 10: 0 + 11: 0 + 15: 1 + 4: _ZNK9oceanbase5share8ObLSInfo8is_validEv:33 + 2: 1 + 2: _ZNK9oceanbase5share6ObLSID20is_valid_with_tenantEm:25 + 5: 1 + 5.1: 0 + 4: _ZN9oceanbase6common14is_user_tenantEm:19 + 3: 1 + 2: _ZN9oceanbase6common13is_sys_tenantEm:0 + 2: 0 + 4.1: _ZNK9oceanbase5share6ObLSID8is_validEv:5 + 0: 1 + 5.2: _ZN9oceanbase6common14is_meta_tenantEm:0 + 3: 0 + 5.3: _ZNK9oceanbase5share6ObLSID9is_sys_lsEv:0 + 0: 0 + 9: _ZNK9oceanbase6common12ObIArrayWrapINS_5share11ObLSReplicaEE2atEl:0 + 6: 0 + 9.1: _ZNK9oceanbase5share11ObLSReplica10get_serverEv:0 + 0: 0 +_ZNK6obutil9ObSysTimecv7timevalEv:104:2 + 1: 2 + 3: 2 + 4: 2 + 5: 2 +_ZN9oceanbase8observer14ObReqTimeGuardD2Ev:104:2 + 1: 2 + 5: 2 + 8.1: 2 + 8.2: 0 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS_8observer13ObReqTimeInfoELm0EEEPT_v:48 + 7: 2 + 8: 0 + 8.1: 0 + 6: _ZN9oceanbase8observer13ObReqTimeInfo15update_end_timeEv:0 + 2: 0 + 3: 0 + 5: 0 + 6.1: 0 + 9: 0 + 9: _ZN9oceanbase6common13ObTimeUtility22current_monotonic_timeEv:0 + 9: _ZN9oceanbase6common13ObTimeUtility23current_monotonic_time_Ev:0 + 7: 0 + 8: 0 + 11: 0 + 11.2: 0 + 12: 0 +_ZN9oceanbase6common6ObAddr11set_ip_addrEPKci:104:2 + 1: 2 + 4: 2 + 5: 2 + 6: 0 + 8: 2 _ZN9oceanbase6common6ObAddr13set_ipv4_addrEPKci:2 +_ZN9oceanbase4palf11PalfEnvImpl17get_log_allocatorEv:104:8 + 1: 8 + 2: 8 +_ZN9oceanbase8observer29ObVirtualTableIteratorFactoryC2ERNS0_15ObVTIterCreatorE:102:2 + 3: 2 + 4: 2 + 2: _ZN9oceanbase8observer15ObVTIterCreatorC2ERKS1_:62 + 0: 2 +_ZN9oceanbase8observer29ObVirtualTableIteratorFactoryC1ERNS0_15ObVTIterCreatorE:102:2 + 3: 2 + 4: 2 + 2: _ZN9oceanbase8observer15ObVTIterCreatorC2ERKS1_:62 + 0: 2 +_ZN9oceanbase6common18ObTimeZoneInfoWrap15set_tz_info_mapEPKNS0_11ObTZInfoMapE:102:7 + 1: 6 + 4: 6 + 2: _ZN9oceanbase6common14ObTimeZoneInfo15set_tz_info_mapEPKNS0_11ObTZInfoMapE:24 + 0: _ZN9oceanbase6common11ObTZMapWrap10set_tz_mapEPKNS0_11ObTZInfoMapE:24 + 3: 6 + 3: _ZN9oceanbase6common14ObTimeZoneInfo15set_tz_info_mapEPKNS0_11ObTZInfoMapE:42 + 0: _ZN9oceanbase6common11ObTZMapWrap10set_tz_mapEPKNS0_11ObTZInfoMapE:42 + 3: 6 +_ZN9oceanbase6common13ObSEArrayImplINS_5share12SimpleMemberELl7ENS0_15ObNullAllocatorELb0EE7reserveEl:102:3 + 1: 3 + 2: 3 + 3: 3 + 5: 0 + 6: 0 + 7: 0 + 7.3: 0 + 23: 0 + 24.1: 0 + 27: 3 + 8: _ZN9oceanbase6common13ObSEArrayImplINS_5share12SimpleMemberELl7ENS0_15ObNullAllocatorELb0EE16internal_malloc_El:0 + 2: 0 + 7: 0 +_ZN9oceanbase3sql16ObSQLSessionInfo16drop_temp_tablesEbb:102:1 + 1: 1 + 4: 1 + 6: 1 + 9: 1 + 10: 0 + 11: 0 + 12: 0 + 13.1: 0 + 17: 0 + 18: 0 + 22: 0 + 22.1: 0 + 25.1: 0 + 26: 0 + 39: 0 + 41: 0 + 48.1: 0 + 49.1: 0 + 50.1: 0 + 51: 0 + 51.1: 0 + 52: 0 + 53: 0 + 54.1: 0 + 55.2: 0 + 55.3: 0 + 55.4: 0 + 56.1: 0 + 57.2: 0 + 57.3: 0 + 58.4: 0 + 58.5: 0 + 58.6: 0 + 59.1: 0 + 61.1: 0 + 63: 0 + 63.1: 0 + 65: 0 + 66.1: 0 + 72: 1 + 6: _ZNK9oceanbase3sql18ObBasicSessionInfo14get_autocommitERb:29 + 2: 1 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache14get_autocommitEv:26 + 0: 1 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache14get_autocommitEb:18 + 0: 1 + 8.1: _ZNK9oceanbase3sql16ObSQLSessionInfo8is_innerEv:7 + 2: 1 + 9.1: _ZNK9oceanbase3sql16ObSQLSessionInfo23get_has_temp_table_flagEv:0 + 0: 0 + 10.1: _ZNK9oceanbase3sql16ObSQLSessionInfo37has_accessed_session_level_temp_tableEv:0 + 0: 0 + 11.1: _ZNK9oceanbase3sql16ObSQLSessionInfo23has_tx_level_temp_tableEv:0 + 1: 0 + 13.1: _ZN9oceanbase3sql18ObBasicSessionInfo19get_is_deserializedEv:0 + 0: 0 + 17: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 18: _ZNK9oceanbase3sql18ObBasicSessionInfo15is_obproxy_modeEv:0 + 0: 0 + 22.1: _ZNK9oceanbase3sql18ObBasicSessionInfo15is_obproxy_modeEv:0 + 0: 0 + 37: _ZN9oceanbase5obrpc8ObDDLResC2Ev:0 + 1: 0 + 38: _ZN9oceanbase5obrpc14ObDropTableArgC2Ev:0 + 3: 0 + 4: 0 + 5: 0 + 11: 0 + 12: 0 + 13: 0 + 1: _ZN9oceanbase5obrpc8ObDDLArgC2Ev:0 + 2: 0 + 5: 0 + 6: 0 + 5: _ZN9oceanbase6common7ObArrayINS_5share6schema23ObBasedSchemaObjectInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_17DefaultItemEncodeIS4_EEEC2Ev:0 + 0.1: 0 + 0.5: _ZN9oceanbase6common11ObArrayImplINS_5share6schema23ObBasedSchemaObjectInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_17DefaultItemEncodeIS4_EEEC2ElRKS5_:0 + 7.1: 0 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 6: _ZN9oceanbase6common7ObArrayINS_5obrpc11ObTableItemENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEEC2Ev:0 + 0.1: 0 + 0.5: _ZN9oceanbase6common11ObArrayImplINS_5obrpc11ObTableItemENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEEC2ElRKS4_:0 + 7.1: 0 + 2: _ZN9oceanbase6common8ObIArrayINS_5obrpc11ObTableItemEEC2Ev:0 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_5obrpc11ObTableItemEEC2Ev:0 + 0: 0 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 48: _ZNK9oceanbase3sql18ObBasicSessionInfo20get_sessid_for_tableEv:0 + 0: 0 + 0.2: 0 + 0.5: 0 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo15is_obproxy_modeEv:0 + 0: 0 + 0.1: _ZNK9oceanbase3sql18ObBasicSessionInfo16get_proxy_sessidEv:0 + 0: 0 + 0.2: _ZNK9oceanbase3sql18ObBasicSessionInfo17is_master_sessionEv:0 + 0: 0 + 0.3: _ZNK9oceanbase3sql18ObBasicSessionInfo10get_sessidEv:0 + 0: 0 + 49: _ZNK9oceanbase3sql18ObBasicSessionInfo23get_effective_tenant_idEv:0 + 0: 0 + 55.1: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 57.1: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 58.3: _ZN9oceanbase5obrpc9ObRpcOptsC2Ev:0 + 1: 0 + 2: 0 + 3: 0 + 8: 0 + 5: _ZN9oceanbase6common6ObAddrC2Ev:0 + 1: 0 + 6: _ZN9oceanbase6common8ObStringC2Ev:0 + 1: 0 +_ZN9oceanbase6common11ObArrayImplINS0_15ObWarningBuffer11WarningItemENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEED2Ev:101:6 + 1: 5 + 2: 5 _ZN9oceanbase6common11ObArrayImplINS0_15ObWarningBuffer11WarningItemENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE7destroyEv:5 + 3: 3 + 3.2: 0 +_ZN9oceanbase11transaction14ObTxLoopWorker14do_keep_alive_EPNS_7storage4ObLSE:101:1 + 1: 1 + 2: 1 + 4: 1 + 4.1: 1 _ZN9oceanbase11transaction20ObKeepAliveLSHandler14try_submit_logEv:1 + 5.1: 0 + 6.1: 1 + 6.2: 0 + 6.4: 0 + 6.5: 1 _ZN9oceanbase6common14ObTscTimestamp12current_timeEv:1 + 13: 1 + 4: _ZN9oceanbase7storage4ObLS25get_keep_alive_ls_handlerEv:7 + 0: 1 + 6.1: _ZN9oceanbase6common14ObTscTimestamp12get_instanceEv:17 + 2: 1 + 2.1: 0 + 2.3: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common14ObTscTimestampC2Ev:0 + 1: 0 + 7.1: _ZN9oceanbase11transaction20ObKeepAliveLSHandler15print_stat_infoEv:0 + 3.1: 0 + 12: _ZN9oceanbase11transaction21ObLSKeepAliveStatInfo5resetEv:0 + 3: 0 + 8: 0 +_ZN9oceanbase7storage13ObTxDataTable18check_with_tx_dataENS_11transaction9ObTransIDERNS0_21ObITxDataCheckFunctorE:100:2 + 1: 2 + 2: 2 + 3: 2 + 4: 0 + 5.1: 0 + 6.1: 2 _ZN9oceanbase7storage13ObTxDataTable26check_tx_data_in_memtable_ENS_11transaction9ObTransIDERNS0_21ObITxDataCheckFunctorE:2 + 6.2: 0 + 9.2: 0 + 9.3: 0 + 9.6: 0 + 13.1: 0 + 17: 0 + 6.2: _ZN9oceanbase11transaction9ObTransIDD2Ev:0 + 0: 0 + 6.3: _ZN9oceanbase11transaction9ObTransIDD2Ev:0 + 0: 0 + 9.5: _ZN9oceanbase11transaction9ObTransIDD2Ev:0 + 0: 0 + 9.8: _ZN9oceanbase11transaction9ObTransIDD2Ev:0 + 0: 0 +_ZN9oceanbase3sql17ObMergeDistinctOp7destroyEv:100:1 + 1: 1 + 5: 1 + 2: _ZN9oceanbase3sql17ObChunkDatumStore13LastStoredRow5resetEv:14 + 2: 1 + 3: 1 + 3: _ZN9oceanbase6common16ObArenaAllocator5resetEv:52 + 0: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv:52 + 4.1: 1 + 6: 0 + 7: 0 + 13: 1 + 14: 1 + 15: 1 + 18: 1 + 5: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4Page16check_magic_codeEv:0 + 0: 0 + 5.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 8: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE:0 + 2: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase10rootserver8DRLSInfo22build_disaster_ls_infoERKNS_5share8ObLSInfoERKNS2_14ObLSStatusInfoE:100:0 + 3: 0 + 4: 0 + 7: 0 + 8: 0 + 9: 0 + 10.1: 0 + 11.1: 0 + 11.2: 0 + 11.3: 0 + 12: 0 + 13.1: 0 + 14.1: 0 + 15: 0 + 16.1: 0 + 18.1: 0 + 19.1: 0 + 20.1: 0 + 21.1: 0 + 22.1: 0 + 22.2: 0 + 25.1: 0 + 27.1: 0 + 28: 0 + 29.1: 0 + 31.1: 0 + 34.1: 0 + 35.1: 0 + 38.1: 0 + 39.1: 0 + 42.1: 0 + 42.2: 0 + 42.3: 0 + 43: 0 + 44: 0 + 45: 0 + 48.1: 0 + 48.2: 0 + 49.1: 0 + 50.2: 0 + 50.3: 0 + 51.1: 0 + 53: 0 + 54: 0 + 55.1: 0 + 55.3: 0 + 55.4: 1 + 60.1: 0 + 61.1: 1 _ZN9oceanbase6common4hash12ObReferedMapImNS_10rootserver14DRUnitStatInfoEE6locateERKmRPNS5_4ItemE:1 + 61.2: 1 + 62.1: 0 + 66: 0 + 67: 1 + 68: 0 + 69.1: 0 + 70.1: 1 _ZN9oceanbase10rootserver8DRLSInfo31append_replica_server_unit_statEPNS0_16DRServerStatInfoEPNS0_14DRUnitStatInfoES5_:1 + 70.2: 0 + 72.1: 0 + 74.2: 0 + 75: 0 + 81: 0 + 82: 0 + 83: 0 + 84.1: 0 + 84.2: 0 + 84.3: 0 + 84.5: 0 + 85: 0 + 88: 0 + 89: 0 + 92: 0 + 93.1: 0 + 98: 0 + 99: 0 + 100: 0 + 101: 0 + 102: 0 + 103: 0 + 107: 0 + 6: _ZN9oceanbase10rootserver8DRLSInfo31reset_last_disaster_recovery_lsEv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 9: 0 + 2: _ZN9oceanbase6common11ObArrayImplINS_5share20ObZoneReplicaAttrSetENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE5resetEv:0 + 0: 0 + 5: _ZN9oceanbase6common11ObArrayImplIPNS_10rootserver16DRServerStatInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEE5resetEv:0 + 0: 0 + 6: _ZN9oceanbase6common11ObArrayImplIPNS_10rootserver14DRUnitStatInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEE5resetEv:0 + 0: 0 + 7: _ZN9oceanbase6common11ObArrayImplIPNS_10rootserver14DRUnitStatInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEE5resetEv:0 + 0: 0 + 14.1: _ZNK9oceanbase5share8ObLSInfo13get_tenant_idEv:0 + 0: 0 + 14.2: _ZN9oceanbase6common18gen_user_tenant_idEm:0 + 3: 0 + 5.1: 0 + 5.2: 0 + 3: _ZN9oceanbase6common20is_virtual_tenant_idEm:0 + 2: 0 + 5.1: _ZN9oceanbase6common13is_sys_tenantEm:0 + 2: 0 + 5.2: _ZN9oceanbase6common14is_user_tenantEm:0 + 4.1: 0 + 22.1: _ZNK9oceanbase5share8ObLSInfo13get_tenant_idEv:0 + 0: 0 + 46: _ZN9oceanbase5share10ObUnitInfoC2Ev:0 + 0: 0 + 0.1: 0 + 0.7: 0 + 47.1: _ZN9oceanbase6common12ObIArrayWrapINS_5share11ObLSReplicaEE2atEl:0 + 6: 0 + 48: _ZNK9oceanbase5share11ObLSReplica10get_serverEv:0 + 0: 0 + 50.1: _ZNK9oceanbase5share11ObLSReplica11get_unit_idEv:0 + 0: 0 + 55.1: _ZNK9oceanbase5share11ObLSReplica13get_tenant_idEv:0 + 0: 0 + 55.2: _ZNK9oceanbase5share11ObLSReplica8get_zoneEv:0 + 0: _ZN9oceanbase6common19ObFixedLengthStringILl128EEC2ERKS2_:0 + 2: 0 + 3: 0 + 4.1: 0 + 3: _ZN9oceanbase6common19ObFixedLengthStringILl128EE6assignEPKc:0 + 2: 0 + 6: 0 + 7: 0 + 8: 0 + 9.1: 0 + 11: 0 + 12: 0 + 14: 0 + 15: 0 + 18: 0 + 275: 0 + 74.1: _ZNK9oceanbase5share11ObLSReplica18get_in_member_listEv:0 + 0: 0 + 78: _ZN9oceanbase5share10ObUnitInfoD2Ev:0 + 0: _ZN9oceanbase5share14ObResourcePoolD2Ev:0 + 0: _ZN9oceanbase6common13ObSEArrayImplINS0_19ObFixedLengthStringILl128EEELl5ENS0_19ModulePageAllocatorELb0EED2Ev:0 + 1: 0 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS0_19ObFixedLengthStringILl128EEELl5ENS0_19ModulePageAllocatorELb0EE7destroyEv:0 + 9: 0 + 11: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplINS0_19ObFixedLengthStringILl128EEELl5ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 78.1: _ZN9oceanbase5share10ObUnitInfoD2Ev:0 + 0: _ZN9oceanbase5share14ObResourcePoolD2Ev:0 + 0: _ZN9oceanbase6common13ObSEArrayImplINS0_19ObFixedLengthStringILl128EEELl5ENS0_19ModulePageAllocatorELb0EED2Ev:0 + 1: 0 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS0_19ObFixedLengthStringILl128EEELl5ENS0_19ModulePageAllocatorELb0EE7destroyEv:0 + 9: 0 + 11: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplINS0_19ObFixedLengthStringILl128EEELl5ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 86.1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share12SimpleMemberEE2atEl:0 + 6: 0 + 86.2: _ZNK9oceanbase5share12SimpleMember10get_serverEv:0 + 0: 0 + 102: _ZNK9oceanbase5share11ObLSReplica24get_paxos_replica_numberEv:0 + 0: 0 +_ZN9oceanbase6common13ObObjCmpFuncs21compare_oper_nullsafeERKNS0_5ObObjES4_NS0_15ObCollationTypeENS0_7ObCmpOpE:99:0 + 4: 1 + 10: 1 + 13.1: 0 + 17: 0 + 21.1: 0 + 25: 0 + 26.1: 0 + 27: 0 + 31: 0 + 17.2: _ZN9oceanbase6common13ObObjCmpFuncs20can_cmp_without_castERKNS0_9ObObjMetaES4_NS0_7ObCmpOpERPFiRKNS0_5ObObjES8_RKNS0_12ObCompareCtxEE:33 + 12.1: 0 + 13: 1 + 15.1: 1 + 16.1: 1 + 18.3: 0 + 18.4: 0 + 12: _ZN9oceanbase6common13ObObjCmpFuncs25is_datetime_timestamp_cmpENS0_9ObObjTypeES2_:5 + 2: 1 + 3.1: 1 + 13.1: _ZN9oceanbase6common13ObObjCmpFuncs17is_otimestamp_cmpENS0_9ObObjTypeES2_:21 + 2: 1 + 2.2: 0 + 3.1: 1 + 3.3: 0 + 18.1: _ZN9oceanbase6common17ob_is_string_typeENS0_9ObObjTypeE:0 + 0: 0 + 0: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:0 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:0 + 2: 0 + 18.2: _ZN9oceanbase6common17ob_is_string_typeENS0_9ObObjTypeE:0 + 0: 0 + 18.3: _ZNK9oceanbase6common9ObObjMeta18get_collation_typeEv:0 + 0: 0 + 22.1: _ZN9oceanbase6common13ObObjCmpFuncs12get_cmp_funcENS0_14ObObjTypeClassES2_NS0_7ObCmpOpERPFiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxEE:0 + 13: 0 + 24: _ZN9oceanbase6common16default_null_posEv:0 + 2: 0 + 2: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 24.1: _ZN9oceanbase6common12ObCompareCtxC2ENS0_9ObObjTypeENS0_15ObCollationTypeEblNS0_12ObCmpNullPosE:0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 +_ZNK9oceanbase5share15ObAllTenantInfo8is_validEv:98:2 + 1: 2 + 2: 2 + 2.1: 2 + 3: 2 + 3.1: 2 + 4: 2 + 4.1: 2 + 5: 2 + 5.1: 2 + 6: 2 + 6.1: 2 + 7: 2 + 7.1: _ZNK9oceanbase5share12ObTenantRole8is_validEv:16 + 0: 2 +_ZN9oceanbase3sql18ObBasicSessionInfo26process_session_debug_syncERKNS_6common5ObObjEb:98:2 + 2: 2 + 3: 2 + 4: 2 + 4.1: 0 + 4.2: 0 + 6: 0 + 7.1: 0 + 9: 0 + 10: 0 + 10.1: 0 + 11.1: 0 + 16: 2 + 5: _ZN9oceanbase6common8ObStringC2Ev:0 + 1: 0 + 6: _ZNK9oceanbase6common5ObObj11get_varcharERNS0_8ObStringE:0 + 10: 0 + 9: _ZNK9oceanbase6common8ObString5emptyEv:0 + 2: 0 + 2.1: 0 +_ZNK9oceanbase5share8ObLSInfo8is_validEv:97:2 + 1: 2 + 2: 2 + 2: _ZNK9oceanbase5share6ObLSID20is_valid_with_tenantEm:69 + 5: 2 + 5.1: 1 + 4: _ZN9oceanbase6common14is_user_tenantEm:44 + 3: 2 + 2: _ZN9oceanbase6common13is_sys_tenantEm:4 + 2: 1 + 4.1: _ZNK9oceanbase5share6ObLSID8is_validEv:10 + 0: 2 + 5.2: _ZN9oceanbase6common14is_meta_tenantEm:1 + 3: 1 + 5.3: _ZNK9oceanbase5share6ObLSID9is_sys_lsEv:0 + 0: 0 +_ZNK9oceanbase11transaction7ObTxMsg9serializeEPclRl:97:1 + 0: 1 + 0.1: 1 + 0.2: 1 + 0.4: 0 + 0.11: 0 + 0.12: 1 + 0.13: 1 + 0.15: 0 + 0.21: 0 + 0.22: 0 + 0.24: 0 + 0.25: 0 + 0.32: 0 + 0.33: 0 + 0.35: 0 + 0.2: _ZN9oceanbase6common13serialization6encodeEPclRll:33 + 2: _ZN9oceanbase6common13serialization11encode_vi64EPclRll:33 + 3: 1 + 4: 1 + 5: 1 + 11: 1 + 0.4: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 0.5: _ZN9oceanbase6common7ObLogKVIRA13_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 0.15: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 0.22: _ZN9oceanbase6common13serialization22encode_fixed_bytes_i64EPclRll:0 + 5: 0 + 8: 0 + 9: 0 + 0.27: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.29: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.31: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.34: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase3sql18ObBasicSessionInfo13SysVarIncInfoD2Ev:97:1 + 1: 1 + 1: _ZN9oceanbase6common13ObSEArrayImplINS_5share17ObSysVarClassTypeELl64ENS0_19ModulePageAllocatorELb0EED2Ev:60 + 1: 1 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_5share17ObSysVarClassTypeELl64ENS0_19ModulePageAllocatorELb0EE7destroyEv:45 + 9: 1 + 11: 0 + 13: 1 + 15: 1 + 24: 1 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_5share17ObSysVarClassTypeELl64ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase3sql18ObBasicSessionInfo13SysVarIncInfoD1Ev:97:1 + 1: 1 + 1: _ZN9oceanbase6common13ObSEArrayImplINS_5share17ObSysVarClassTypeELl64ENS0_19ModulePageAllocatorELb0EED2Ev:60 + 1: 1 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_5share17ObSysVarClassTypeELl64ENS0_19ModulePageAllocatorELb0EE7destroyEv:45 + 9: 1 + 11: 0 + 13: 1 + 15: 1 + 24: 1 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_5share17ObSysVarClassTypeELl64ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZNSt17_Function_handlerIFiRN9oceanbase6common10ObLDHandleEEZNS0_5share25get_tenant_base_with_lockEmS3_RPNS5_12ObTenantBaseERSt8functionIS4_EE4$_13E9_M_invokeERKSt9_Any_dataS3_.dffa7baff4f06077efbca9bde9102f22:96:6 + 1: 6 + 2.1: _ZZN9oceanbase5share25get_tenant_base_with_lockEmRNS_6common10ObLDHandleERPNS0_12ObTenantBaseERSt8functionIFiS3_EEENK4$_13clES3_:72 + 1: 6 _ZN9oceanbase3omt8ObTenant6unlockERNS_6common10ObLDHandleE:7 +_ZN9oceanbase7storage16ObStorageLogItem17fill_batch_headerEisl:96:1 + 4: 1 + 5: 1 + 7: 1 + 8: 0 + 9.1: 0 + 10.1: 1 + 11: 0 + 12.1: 0 + 15: 1 + 16: 1 + 17: 0 + 18: 1 + 18.1: 1 + 19: 0 + 19.1: 0 + 19.2: 0 + 20.1: 0 + 24: 0 + 14: _ZN9oceanbase7storage23ObStorageLogBatchHeaderC2Ev:20 + 1: 1 + 2: 1 + 3: 1 + 18.1: _ZN9oceanbase7storage23ObStorageLogBatchHeader12cal_checksumEPKci:3 + 5: 1 _ZN9oceanbase6common8ob_crc64EPKvl:1 +_ZN9oceanbase3sql23ObEndTransAsyncCallbackD2Ev:96:4 + 1: 4 + 2: 4 _ZN9oceanbase8observer15ObSqlEndTransCbD1Ev:4 +_ZN9oceanbase3sql23ObEndTransAsyncCallbackD1Ev:96:4 + 1: 4 + 2: 4 _ZN9oceanbase8observer15ObSqlEndTransCbD1Ev:4 +_ZN9oceanbase7storage10ObLSHandleC2Ev:95:5 + 2: 5 + 3: 5 + 4: 5 + 6: 5 +_ZN9oceanbase7storage10ObLSHandleC1Ev:95:5 + 2: 5 + 3: 5 + 4: 5 + 6: 5 +_ZNK9oceanbase11transaction33ObTenantWeakReadClusterVersionMgr10ServerInfo5matchERKNS_6common6ObAddrE:93:1 + 1: 1 + 4: 1 + 2: _ZN9oceanbase6common20ObSmallSpinLockGuardINS0_15ObSmallSpinLockIhLl0ELl500ELl100EEEEC2ERS3_:19 + 0: _ZN9oceanbase6common15ObSmallSpinLockIhLl0ELl500ELl100EE4lockEv:19 + 3.1: 1 + 5: 0 + 7: 0 + 9: 0 + 85: 0 + 3.1: _ZN9oceanbase6common15ObSmallSpinLockIhLl0ELl500ELl100EE8try_lockEv:18 + 3: 1 + 4: 1 + 5: 1 + 3: _ZNK9oceanbase6common6ObAddreqERKS1_:44 + 2: 1 + 2.1: 1 + 2.2: 1 + 4: _ZN9oceanbase6common20ObSmallSpinLockGuardINS0_15ObSmallSpinLockIhLl0ELl500ELl100EEEED2Ev:9 + 0: _ZN9oceanbase6common15ObSmallSpinLockIhLl0ELl500ELl100EE6unlockEv:9 + 2: 1 + 3: 1 +_ZN9oceanbase11transaction9tablelock15ObTableLockInfo5resetEv:93:3 + 1: 3 + 3: 3 + 4: 3 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_11transaction9tablelock13ObTableLockOpELl10ENS2_24TransModulePageAllocatorELb0EE5resetEv:12 + 0: 3 _ZN9oceanbase6common13ObSEArrayImplINS_11transaction9tablelock13ObTableLockOpELl10ENS2_24TransModulePageAllocatorELb0EE7destroyEv:3 +_ZNK9oceanbase5share6schema11ObSchemaMgr20get_drop_tenant_infoEmRNS1_16ObDropTenantInfoE:91:1 + 1: 1 + 2: 1 + 6: 1 _ZN9oceanbase5share6schema16ObDropTenantInfo5resetEv:1 + 10.1: 1 + 11: 0 + 12.1: 0 + 14.1: 0 + 22: 1 + 27: 0 + 28.6: 1 + 14: _ZNK9oceanbase6common14ObSortedVectorIPNS_5share6schema16ObDropTenantInfoENS0_9PageArenaIS5_NS0_20DefaultPageAllocatorEEEE4findIS5_PFbPKS4_SC_ESE_EEiRKT_RPS5_T0_T1_:28 + 5: 1 + 6: 0 + 4: _ZNK9oceanbase6common14ObSortedVectorIPNS_5share6schema16ObDropTenantInfoENS0_9PageArenaIS5_NS0_20DefaultPageAllocatorEEEE5beginEv:7 + 0: _ZNK9oceanbase6common8ObVectorIPNS_5share6schema16ObDropTenantInfoENS0_9PageArenaIS5_NS0_20DefaultPageAllocatorEEEE5beginEv:7 + 0: 1 + 4.1: _ZNK9oceanbase6common14ObSortedVectorIPNS_5share6schema16ObDropTenantInfoENS0_9PageArenaIS5_NS0_20DefaultPageAllocatorEEEE3endEv:7 + 0: _ZNK9oceanbase6common8ObVectorIPNS_5share6schema16ObDropTenantInfoENS0_9PageArenaIS5_NS0_20DefaultPageAllocatorEEEE3endEv:7 + 0: 1 + 4.2: _ZSt11lower_boundIPPN9oceanbase5share6schema16ObDropTenantInfoES4_PFbPKS3_S7_EET_SA_SA_RKT0_T1_:10 + 13: _ZSt13__lower_boundIPPN9oceanbase5share6schema16ObDropTenantInfoES4_N9__gnu_cxx5__ops14_Iter_comp_valIPFbPKS3_SA_EEEET_SE_SE_RKT0_T1_:10 + 8.1: 1 + 10: 0 + 13: 0 + 6: _ZSt8distanceIPPN9oceanbase5share6schema16ObDropTenantInfoEENSt15iterator_traitsIT_E15difference_typeES7_S7_:6 + 3: _ZSt10__distanceIPPN9oceanbase5share6schema16ObDropTenantInfoEENSt15iterator_traitsIT_E15difference_typeES7_S7_St26random_access_iterator_tag:6 + 6: 1 + 13: _ZN9__gnu_cxx5__ops14_Iter_comp_valIPFbPKN9oceanbase5share6schema16ObDropTenantInfoES7_EEclIPPS5_KSC_EEbT_RT0_:0 + 1: 0 + 1: _ZN9oceanbase5share6schema11ObSchemaMgr24compare_drop_tenant_infoEPKNS1_16ObDropTenantInfoES5_:0 + 3: 0 + 6: _ZN9oceanbase5share6schema11ObSchemaMgr22equal_drop_tenant_infoEPKNS1_16ObDropTenantInfoES5_:0 + 3: 0 + 19: _ZN9oceanbase5share6schema16ObDropTenantInfoaSERKS2_:0 + 0: 0 +_ZN9oceanbase3sql13ObTableLockOp15lock_row_to_dasEv:91:0 + 1: 0 + 2: 0 + 5: 0 + 6: 0 + 7.1: 0 + 10.1: 1 + 10.2: 1 + 10.3: 1 + 14: 0 + 16: 0 + 18: 0 + 19: 0 + 20.1: 0 + 25.1: 0 + 26.1: 0 + 27.1: 1 + 31.1: 0 + 32.1: 0 + 33: 0 + 39: 1 + 5: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:0 + 2: 0 + 10.2: _ZN9oceanbase3sql11get_my_specINS0_13ObTableLockOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:4 + 5: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:4 + 2: 1 + 11.1: _ZNK9oceanbase6common12ObIArrayWrapINS0_11ObArrayWrapIPNS_3sql11ObLockCtDefEEEE2atEl:0 + 6: 0 + 12: _ZN9oceanbase6common12ObIArrayWrapINS0_11ObArrayWrapINS_3sql11ObLockRtDefEEEE2atEl:0 + 6: 0 + 14: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql11ObLockCtDefEE2atEl:0 + 6: 0 + 15: _ZN9oceanbase6common12ObIArrayWrapINS_3sql11ObLockRtDefEE2atEl:0 + 6: 0 + 19: _ZN9oceanbase3sql12ObDMLService16process_lock_rowERKNS0_11ObLockCtDefERNS0_11ObLockRtDefERbRNS0_15ObTableModifyOpE:0 + 5: 0 + 7: 0 + 9: 0 + 9.1: 0 + 10: 0 + 10.1: 0 + 14.1: 0 + 15.1: 0 + 19: 0 + 65340.1: 0 + 10: _ZN9oceanbase3sql10ObOperator12get_eval_ctxEv:0 + 24: _ZN9oceanbase3sql17ObPhysicalPlanCtx17add_affected_rowsEl:0 + 2: 0 + 27.1: _ZN9oceanbase3sql12ObDMLService8lock_rowERKNS0_11ObLockCtDefERNS0_11ObLockRtDefEPKNS0_14ObDASTabletLocERNS0_10ObDMLRtCtxE:11 + 6: 0 + 11.1: 0 + 12.1: 1 + 17.1: 0 + 19: 0 + 36: _ZN9oceanbase3sql17ObPhysicalPlanCtx17add_affected_rowsEl:8 + 2: 1 +_ZNK9oceanbase4palf3LSNgeERKS1_:90:6 + 1: 6 + 2: 6 + 2.2: 6 + 2: _ZNK9oceanbase4palf3LSNltERKS1_:18 + 2: 6 +_ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIllEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEE5clearEv:90:1 + 1: 1 + 2: 1 + 3.1: 1 + 4: 1 + 5: 1 + 6.1: 0 + 15: 0 + 16: 0 + 10: _ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocator4freeEPv:25 + 3: _ZN9oceanbase6common7ob_freeEPv:25 + 2: 1 + 3: 1 _ZN9oceanbase3lib17ObMallocAllocator12get_instanceEv:1 + 4: 1 + 5: 1 _ZN9oceanbase3lib17ObMallocAllocator4freeEPv:1 + 4: _ZL12abort_unlessb:2 + 5: 1 + 6: 0 +_ZN9oceanbase6common16ObLatchWaitQueue7wake_upERNS0_7ObLatchEb:90:0 + 1: 0 + 2: 0 + 3: 0 + 4: 0 + 26: 0 + 28.2: 0 + 29: 0 + 30: 0 + 31: 0 + 32: 0 + 32.1: 0 + 36: 0 + 37.1: 0 + 39: 0 + 40.1: 0 + 42: 0 + 47: 0 + 47.1: 0 + 58.2: 0 + 59: 0 + 66: 0 + 70.3: 1 + 74: 0 + 75.1: 0 + 77: 0 + 79: 0 + 80: 0 + 82.1: 1 + 88.1: 1 + 92: 1 + 93.4: 1 + 11: _ZN9oceanbase6common7ObDListINS0_10ObWaitProcEEC2Ev:0 + 2: 0 + 3: 0 + 4: 0 + 65463: _ZN9oceanbase6common11ObDLinkBaseINS0_10ObWaitProcEEC2Ev:0 + 2: 0 + 14: _ZN9oceanbase6common16ObLatchWaitQueue11lock_bucketERNS1_13ObLatchBucketE:0 + 2: 0 + 28: _ZN9oceanbase6common7ObDListINS0_10ObWaitProcEE9get_firstEv:0 + 0: 0 + 33: _ZN9oceanbase6common11ObDLinkBaseINS0_10ObWaitProcEE8get_nextEv:0 + 0: 0 + 34: _ZN9oceanbase6common7ObDListINS0_10ObWaitProcEE6removeEPS2_:0 + 3: 0 + 7: 0 + 6: _ZN9oceanbase6common11ObDLinkBaseINS0_10ObWaitProcEE6unlinkEv:0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 38.1: _ZN9oceanbase6common7ObDListINS0_10ObWaitProcEE8add_lastEPS2_:0 + 6.1: 0 + 6.2: 0 + 6.3: 0 + 9.1: 0 + 13: 0 + 12: _ZN9oceanbase6common11ObDLinkBaseINS0_10ObWaitProcEE10add_beforeEPS2_:0 + 2: 0 + 2: _ZN9oceanbase6common11ObDLinkBaseINS0_10ObWaitProcEE3addEPS2_S4_S4_:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 52: _ZN9oceanbase6common11ObDLinkBaseINS0_10ObWaitProcEE8get_nextEv:0 + 0: 0 + 58.3: _ZN9oceanbase6common11ObDLinkBaseINS0_10ObWaitProcEE8get_nextEv:0 + 0: 0 + 325: 0 + 70: _ZN9oceanbase6common7ObDListINS0_10ObWaitProcEE9get_firstEv:0 + 0: 0 + 71: _ZN9oceanbase6common11ObDLinkBaseINS0_10ObWaitProcEE8get_nextEv:0 + 0: 0 + 348.3: 0 + 72: _ZN9oceanbase6common7ObDListINS0_10ObWaitProcEE6removeEPS2_:0 + 3: 0 + 7: 0 + 6: _ZN9oceanbase6common11ObDLinkBaseINS0_10ObWaitProcEE6unlinkEv:0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 82: _Z10futex_wakePVii:0 + 2: 0 + 90: _ZN9oceanbase6common16ObLatchWaitQueue13unlock_bucketERNS1_13ObLatchBucketE:39 + 2: _ZN9oceanbase6common12ObLatchMutex6unlockEv:39 + 2: 1 + 3: 1 + 5: 1 + 6: 0 + 7.1: 0 + 8.1: 1 + 9: _ZN9oceanbase3lib7ObFutex4wakeEl:0 + 6: _Z10futex_wakePVii:0 + 2: 0 +_ZN9oceanbase4palf19LogGroupEntryHeader27update_accumulated_checksumEl:90:10 + 1: 9 + 2: 9 + 3: 9 +_ZN9oceanbase6common11ObArrayImplINS_5share11ObLSReplicaENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEEaSERKS9_:89:2 + 2: 2 + 3: 2 + 4: 2 + 5: 1 + 5.1: 1 _ZN9oceanbase6common11ObArrayImplINS_5share11ObLSReplicaENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE7reserveEl:1 + 6: 0 + 7.1: 0 + 8: 0 + 10: 0 + 11.1: 0 + 11.3: 0 + 11.5: 0 + 12: 0 + 13.1: 0 + 14: 0 + 17.1: 0 + 18: 0 + 19.1: 0 + 20: 0 + 23: 0 + 24: 0 + 26: 0 + 27: 0 + 31: 0 + 5: _ZNK9oceanbase6common12ObIArrayWrapINS_5share11ObLSReplicaEE5countEv:4 + 0: 1 + 10: _ZSt3minIlERKT_S2_S2_:0 + 5: 0 + 12: _ZN9oceanbase6common11copy_assignINS_5share11ObLSReplicaEEEiRT_RKS4_:0 + 2: _ZN9oceanbase6common16copy_assign_wrapINS_5share11ObLSReplicaEEEiRT_RKS4_NS0_8BoolTypeILb1EEE:0 + 2: 0 + 18: _ZN9oceanbase6common16construct_assignINS_5share11ObLSReplicaEEEiRT_RKS4_:0 + 2: _ZN9oceanbase6common21construct_assign_wrapINS_5share11ObLSReplicaEEEiRT_RKS4_NS0_8BoolTypeILb1EEE:0 + 3: 0 + 2: _ZN9oceanbase5share11ObLSReplicaC2Ev:0 + 1: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 14: 0 + 16: 0 + 18: 0 + 3: _ZN9oceanbase6common6ObAddrC2Ev:0 + 1: 0 + 6: _ZN9oceanbase6common9ObSEArrayINS_5share12SimpleMemberELl7ENS0_15ObNullAllocatorELb0EEC2Ev:0 + 0.1: 0 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_5share12SimpleMemberELl7ENS0_15ObNullAllocatorELb0EEC2ElRKS4_:0 + 5: 0 + 6: 0 + 8: 0 + 17.1: 0 + 2: _ZN9oceanbase6common8ObIArrayINS_5share12SimpleMemberEEC2EPS3_l:0 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_5share12SimpleMemberEEC2EPS3_l:0 + 0: 0 + 7: _ZN9oceanbase6common15ObNullAllocatorC2ERKS1_:0 + 0: 0 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:0 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:0 + 2: 0 + 8: 0 + 10: _ZN9oceanbase5share17ObLSRestoreStatusC2Ev:0 + 0: 0 + 11: _ZN9oceanbase6common17ObReplicaPropertyC2Ev:0 + 0: 0 + 13: _ZN9oceanbase6common19ObFixedLengthStringILl128EEC2Ev:0 + 3: 0 +_ZN9oceanbase11transaction20ObKeepAliveLSHandler14try_submit_logEv:89:1 + 1: 1 + 2: 1 + 3: 1 _ZN9oceanbase4palf3LSNC1Ev:1 + 4: 1 + 6: 1 + 7: 0 + 8: 0 + 9.1: 1 + 10: 0 + 12.1: 1 + 13: 0 + 15.1: 1 _ZN9oceanbase11transaction20ObKeepAliveLSHandler10check_gts_Ev:1 + 15.2: 1 + 16: 1 + 19: 0 + 20: 0 + 21: 0 + 22.1: 0 + 23.1: 0 + 23.2: 0 + 25: 0 + 26: 0 + 27.1: 0 + 29: 0 + 30: 0 + 31: 0 + 35: 1 + 36.3: 1 +_ZN9oceanbase3omt19ObTenantTimezoneMgr23refresh_tenant_timezoneEm:88:2 + 1: 2 + 2: 2 + 3: 2 + 4: 2 + 5: 0 + 6: 0 + 7: 0 + 8.1: 0 + 9.1: 0 + 9.2: 0 + 11.1: 0 + 12.1: 0 + 12.2: 0 + 13.1: 0 + 15: 0 + 15.1: 0 + 16: 0 + 17.2: 0 + 18.1: 0 + 20: 2 +_ZN9oceanbase5share24ObZoneMergeTableOperator28inner_load_zone_merge_infos_ERNS_6common12ObISQLClientEmRNS2_8ObIArrayINS0_15ObZoneMergeInfoEEE:86:0 + 4: 0 + 5: 0 + 7: 0 + 8: 0 + 9.1: 0 + 11.1: 0 + 12: 0 + 12.4: 0 + 12.6: 0 + 12.7: 0 + 12.9: 0 + 12.13: 0 + 14.1: 0 + 15: 0 + 16: 0 + 16.1: 0 + 18.1: 0 + 20.1: 0 + 20.5: 0 + 22: 0 + 23: 0 + 24.1: 0 + 25.2: 0 + 25.3: 0 + 27.1: 0 + 31.1: 0 + 31.2: 0 + 33.1: 0 + 36: 0 + 36.1: 0 + 37: 0 + 37.3: 0 + 37.4: 1 + 38.1: 0 + 39.2: 1 + 40: 0 + 41.1: 0 + 43: 1 + 44.1: 1 + 45: 1 _ZN9oceanbase8observer16ObInnerSQLResult4nextEv:1 + 45.1: 1 + 47.1: 0 + 49.1: 1 _ZN9oceanbase5share24ObZoneMergeTableOperator26construct_zone_merge_info_ERNS_6common9sqlclient13ObMySQLResultEbRNS2_8ObIArrayINS0_15ObZoneMergeInfoEEE:1 + 49.2: 0 + 50.1: 0 + 55: 0 + 59.5: 0 + 59.6: 0 + 60: 0 + 7: _ZN9oceanbase6common18is_valid_tenant_idEm:0 + 2: 0 + 11: _ZN9oceanbase3lib7ObLabelC2IA10_cEERKT_:0 + 2: _ZN9oceanbase3lib7ObLabelaSILm10EEERS1_RAT__Kc:0 + 4: 0 + 12.2: _ZN9oceanbase6common8precheckINS0_12ObISQLClient10ReadResultEEEibRb:0 + 6: _ZN9oceanbase6common15check_from_heapEiRb:0 + 4: 0 + 5: 0 + 6: 0 + 6.1: 0 + 10: 0 + 10.2: 0 + 12.6: _ZN9oceanbase6common2SVINS0_12ObISQLClient10ReadResultELb0EEC2IZNS_5share24ObZoneMergeTableOperator28inner_load_zone_merge_infos_ERS2_mRNS0_8ObIArrayINS6_15ObZoneMergeInfoEEEE5$_902EEibOT_:0 + 3: 0 + 5: 0 + 6: 0 + 9: _ZZN9oceanbase5share24ObZoneMergeTableOperator28inner_load_zone_merge_infos_ERNS_6common12ObISQLClientEmRNS2_8ObIArrayINS0_15ObZoneMergeInfoEEEENK5$_902clEPv:0 + 0: 0 + 14: _ZNK9oceanbase6common12ObIArrayWrapINS_5share15ObZoneMergeInfoEE5countEv:0 + 0: 0 + 21: _ZN9oceanbase6common12ObIArrayWrapINS_5share15ObZoneMergeInfoEE2atEl:0 + 6: 0 + 25.1: _ZNK9oceanbase6common19ObFixedLengthStringILl128EE3ptrEv:0 + 0: 0 + 36: _ZN9oceanbase6common18gen_meta_tenant_idEm:0 + 3: 0 + 5.1: 0 + 5.2: 0 + 3: _ZN9oceanbase6common20is_virtual_tenant_idEm:0 + 2: 0 + 5.1: _ZN9oceanbase6common13is_sys_tenantEm:0 + 2: 0 + 5.2: _ZN9oceanbase6common14is_meta_tenantEm:0 + 4.1: 0 + 37.2: _ZN9oceanbase6common11ObSqlString3ptrEv:0 + 0: 0 + 39.1: _ZN9oceanbase6common12ObISQLClient10ReadResult10get_resultEv:4 + 0: 1 _ZN9oceanbase6common12ObISQLClient10ReadResult12mysql_resultEv:1 + 59.1: _ZN9oceanbase6common2SVINS0_12ObISQLClient10ReadResultELb0EED2Ev:0 + 2: 0 + 4: 0 + 5: 0 + 6: 0 + 6.1: 0 + 59.3: _ZN9oceanbase6common2SVINS0_12ObISQLClient10ReadResultELb0EED2Ev:0 + 2: 0 + 4: 0 + 5: 0 + 6: 0 + 6.1: 0 +_ZN9oceanbase5share11ObShareUtil23set_default_timeout_ctxERNS_6common12ObTimeoutCtxEl:85:0 + 1: 0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 8: 0 + 9.1: 0 + 12.1: 0 + 19: 1 _ZN9oceanbase6common12ObTimeoutCtx15set_abs_timeoutEl:1 + 20.1: 0 + 22.1: 1 _ZNK9oceanbase6common12ObTimeoutCtx12is_timeoutedEv:1 + 23: 0 + 24.1: 0 + 27.1: 1 _ZZN9oceanbase5share11ObShareUtil23set_default_timeout_ctxERNS_6common12ObTimeoutCtxElENK5$_403clEPKc.441fe2e361d21edea4b580e9e157b8a3:1 + 30: 1 + 5: _ZN9oceanbase3lib6Worker4selfEv:0 + 3: 0 + 4: 0 + 5.1: _ZNK9oceanbase3lib6Worker14get_timeout_tsEv:0 + 0: 0 +_ZN9oceanbase3sql11ObPlanCache11cache_evictEv:85:1 + 1: 1 + 2: 1 + 3: 1 + 4: 1 _ZN9oceanbase8observer22ObGlobalReqTimeService18check_req_timeinfoEv:1 + 5.1: 1 _ZZN9oceanbase3sql11ObPlanCache11cache_evictEvENK5$_182clEPKc.08a2b9b0d59ff83413633eb11fd88a2d:1 + 12: 0 + 13: 0 + 16: 0 + 16.1: 0 + 17.1: 0 + 21.1: 0 + 28: 0 + 12: _ZNK9oceanbase3sql11ObPlanCache12get_mem_holdEv:13 + 2: 1 _ZN9oceanbase3lib22get_tenant_memory_holdEmm:1 + 12.1: _ZNK9oceanbase3sql11ObPlanCache12get_mem_highEv:5 + 0: 0 + 0: _ZNK9oceanbase3sql11ObPlanCache13get_mem_limitEv:5 + 4: 0 + 4.2: 0 + 7: 0 + 2: _ZNK9oceanbase3sql11ObPlanCache17get_tenant_memoryEv:5 + 1: 1 _ZN9oceanbase3lib23get_tenant_memory_limitEm:1 + 7: _ZNK9oceanbase3sql11ObPlanCache17get_tenant_memoryEv:0 + 1: 0 + 7.1: _ZNK9oceanbase3sql11ObPlanCache17get_mem_limit_pctEv:0 + 0: 0 + 0.1: _ZNK9oceanbase3sql11ObPlanCache16get_mem_high_pctEv:0 + 0: 0 + 13: _ZN9oceanbase3sql11ObPlanCache14calc_evict_numERl:0 + 5: 0 + 6: 0 + 11: 0 + 12: 0 + 13: 0 + 14: 0 + 4: _ZNK9oceanbase3sql11ObPlanCache12get_mem_holdEv:0 + 2: 0 + 5: _ZNK9oceanbase3sql11ObPlanCache11get_mem_lowEv:0 + 0: 0 + 0: _ZNK9oceanbase3sql11ObPlanCache13get_mem_limitEv:0 + 4: 0 + 4.2: 0 + 7: 0 + 2: _ZNK9oceanbase3sql11ObPlanCache17get_tenant_memoryEv:0 + 1: 0 + 7: _ZNK9oceanbase3sql11ObPlanCache17get_tenant_memoryEv:0 + 1: 0 + 7.1: _ZNK9oceanbase3sql11ObPlanCache17get_mem_limit_pctEv:0 + 0: 0 + 0.1: _ZNK9oceanbase3sql11ObPlanCache15get_mem_low_pctEv:0 + 0: 0 + 14: _ZN9oceanbase6common9ObSEArrayINS_3sql12ObLCKeyValueELl16ENS0_19ModulePageAllocatorELb0EEC2Ev:0 + 0.1: 0 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_3sql12ObLCKeyValueELl16ENS0_19ModulePageAllocatorELb0EEC2ElRKS4_:0 + 2: 0 + 5: 0 + 6: 0 + 8: 0 + 17.1: 0 + 2: _ZN9oceanbase6common8ObIArrayINS_3sql12ObLCKeyValueEEC2EPS3_l:0 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_3sql12ObLCKeyValueEEC2EPS3_l:0 + 0: 0 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:0 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:0 + 2: 0 + 8: 0 + 15: _ZN9oceanbase3sql18ObNodeStatFilterOpC2ElPNS_6common9ObSEArrayINS0_12ObLCKeyValueELl16ENS2_19ModulePageAllocatorELb0EEENS0_16CacheRefHandleIDE:0 + 4: 0 + 5: 0 + 3: _ZN9oceanbase3sql19ObKVEntryTraverseOpC2EPNS_6common9ObSEArrayINS0_12ObLCKeyValueELl16ENS2_19ModulePageAllocatorELb0EEENS0_16CacheRefHandleIDE:0 + 2: 0 + 3: 0 + 19: _ZN9oceanbase6common13ObSEArrayImplINS_3sql12ObLCKeyValueELl16ENS0_19ModulePageAllocatorELb0EED2Ev:0 + 1: 0 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_3sql12ObLCKeyValueELl16ENS0_19ModulePageAllocatorELb0EE7destroyEv:0 + 9: 0 + 11: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_3sql12ObLCKeyValueELl16ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 19.1: _ZN9oceanbase6common13ObSEArrayImplINS_3sql12ObLCKeyValueELl16ENS0_19ModulePageAllocatorELb0EED2Ev:0 + 1: 0 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_3sql12ObLCKeyValueELl16ENS0_19ModulePageAllocatorELb0EE7destroyEv:0 + 9: 0 + 11: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_3sql12ObLCKeyValueELl16ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase8observer24ObInnerSQLConnectionPool7releaseEPNS_6common9sqlclient16ObISQLConnectionEbj:84:2 + 2: 2 + 5: 2 + 6: 2 + 7: 0 + 8.1: 0 + 9.1: 2 + 12: 2 _ZN9oceanbase8observer20ObInnerSQLConnection5unrefEv:2 + 14: 2 +_ZN9oceanbase6common13ObSEArrayImplINS_11transaction11ObLSLogInfoELl10ENS0_19ModulePageAllocatorELb0EED2Ev:84:4 + 1: 4 + 2: 4 _ZN9oceanbase6common13ObSEArrayImplINS_11transaction11ObLSLogInfoELl10ENS0_19ModulePageAllocatorELb0EE7destroyEv:4 + 3: 4 + 3.2: 0 +_ZN9oceanbase6common11ObArrayImplIPNS_10rootserver16DRServerStatInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEE10extend_bufEv:84:1 + 1: 1 + 2: 1 + 3: 0 + 3: _ZN9oceanbase6common11ObArrayImplIPNS_10rootserver16DRServerStatInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEE10extend_bufEl:46 + 4: 1 + 5: 0 + 6: 0 + 8.2: 0 + 8.3: 0 + 8.5: 0 + 9: 0 + 18: 0 + 19: 0 + 36: 0 + 37: 0 + 40.1: 0 + 4: _ZN9oceanbase6common19ModulePageAllocator5allocEl:42 + 2: 1 + 3: 1 _ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE:1 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:16 + 5: 1 + 7: 1 + 8: 1 + 9: _ZN9oceanbase6common16construct_assignIPNS_10rootserver16DRServerStatInfoEEEiRT_RKS5_:0 + 2: _ZN9oceanbase6common21construct_assign_wrapIPNS_10rootserver16DRServerStatInfoEEEiRT_RKS5_NS0_8BoolTypeILb0EEE:0 + 2: 0 + 19: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase3lib13ObResourceMgr12get_instanceEv:84:3 + 1: 2 + 2: 2 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 3: 2 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 8.1: 0 + 9.1: 0 + 12: 0 + 12.1: 0 + 13: 2 +_ZN9oceanbase11transaction30ObTenantWeakReadClusterService14update_versionERl:84:0 + 1: 0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 9: 0 + 13.1: 0 + 15: 0 + 16.1: 0 + 16.2: 0 + 20.1: 0 + 22.1: 0 + 23: 0 + 24.1: 0 + 26.1: 0 + 26.2: 0 + 27.1: 0 + 28.1: 0 + 28.2: 1 + 30.2: 1 + 31: 0 + 32.1: 0 + 34: 1 + 37: 1 + 37.1: 1 + 38: 1 + 39.1: 1 + 41: 1 + 44: 1 _ZN9oceanbase11transaction30ObTenantWeakReadClusterService24persist_version_if_need_EllllbRl:1 + 44.1: 0 + 46.1: 0 + 52: 0 + 53: 0 + 56.1: 0 + 59: 0 + 59.1: 0 + 60: 0 + 61.1: 0 + 65: 0 + 66.10: 0 + 66.11: 0 + 9: _ZN9oceanbase6common14SpinRLockGuardC2ERKNS0_10SpinRWLockE:0 + 1: 0 + 3: 0 + 4.1: 0 + 3: _ZN9oceanbase6common10SpinRWLock6rdlockEl:0 + 0: 0 + 11: _ZN9oceanbase11transaction30ObTenantWeakReadClusterService25need_print_skipped_serverEv:0 + 3: 0 + 4: 0 + 6: 0 + 13: _ZNK9oceanbase11transaction30ObTenantWeakReadClusterService13is_in_serviceEv:0 + 0: 0 + 30.1: _ZN9oceanbase6common30is_valid_read_snapshot_versionEl:6 + 3: 1 +_ZZN9oceanbase10logservice13ObApplyStatus29update_palf_committed_end_lsnERKNS_4palf3LSNElENK4$_56clEPKc.d3a41d52a3cfae37a6a74713ee8e7132:83:2 + 0: 1 + 0.1: 0 + 0.2: 1 + 0.3: 1 _ZN9oceanbase6common8ObLogger13need_to_printEmi:1 + 0.10: 0 + 0.12: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:17 + 2: 1 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.1: _ZN9oceanbase6common20ObLogPrintPointerCntIPNS_10logservice13ObApplyStatusEEC2ES4_:0 + 0: 0 + 0.4: _ZN9oceanbase6common7ObLogKVINS0_20ObLogPrintPointerCntIPNS_10logservice13ObApplyStatusEEELb1EEC2EPKcOKS6_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKNS_4palf3LSNELb0EEC2EPKcS5_:0 + 0: 0 + 0.9: _ZN9oceanbase6common7ObLogKVIiLb0EEC2EPKcRKi:0 + 0: 0 + 0.11: _ZN9oceanbase6common7ObLogKVIPKcLb1EEC2ES3_OKS3_:0 + 0: 0 +_ZNK9oceanbase7storage8ObLSMeta22get_clog_checkpoint_tsEv:83:1 + 1: 1 + 2: 1 + 3: 1 + 4: 1 + 2: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEEC2ERS3_:31 + 1: 1 + 4: 1 + 5.1: 0 + 4: _ZN9oceanbase6common10ObSpinLock4lockEv:20 + 2: 1 _ZN9oceanbase6common12ObLatchMutex4lockEjl:1 + 4: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEED2Ev:11 + 2: 0 + 3: 0 + 3.1: 1 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase6common10ObSpinLock6unlockEv:4 + 2: 1 _ZN9oceanbase6common12ObLatchMutex6unlockEv:1 +_ZN9oceanbase5obrpc9ObTxRPCCBILNS0_15ObRpcPacketCodeE1626EE8set_argsERKNS_11transaction16ObTxKeepaliveMsgE:83:1 + 1: 1 + 4: 1 + 6: 1 + 7: 1 + 8: 1 + 9: 1 + 2: _ZNK9oceanbase11transaction7ObTxMsg10get_senderEv:4 + 0: _ZN9oceanbase5share6ObLSIDC2ERKS1_:4 + 0: 1 + 2.4: _ZN9oceanbase5share6ObLSIDaSERKS1_:7 + 0: 1 + 3: _ZNK9oceanbase11transaction7ObTxMsg12get_receiverEv:4 + 0: _ZN9oceanbase5share6ObLSIDC2ERKS1_:4 + 0: 1 + 3.3: _ZN9oceanbase5share6ObLSIDaSERKS1_:7 + 0: 1 + 4: _ZNK9oceanbase11transaction7ObTxMsg9get_epochEv:4 + 0: 1 + 5: _ZNK9oceanbase11transaction7ObTxMsg12get_trans_idEv:4 + 0: 1 + 5.3: _ZN9oceanbase11transaction9ObTransIDaSERKS1_:7 + 1: 1 + 6: _ZNK9oceanbase11transaction7ObTxMsg12get_msg_typeEv:4 + 0: 1 + 7: _ZNK9oceanbase11transaction7ObTxMsg13get_tenant_idEv:4 + 0: 1 + 8: _ZNK9oceanbase11transaction7ObTxMsg14get_request_idEv:4 + 0: 1 +_ZNK9oceanbase3sql9ObKeyPart16is_question_markEv:82:2 + 1: 2 + 3: 0 + 4: 0 + 5.1: 2 + 6: 2 + 8: 2 + 3: _ZNK9oceanbase3sql9ObKeyPart11is_like_keyEv:18 + 0: 2 + 0.1: 0 + 4: _ZNK9oceanbase6common5ObObj10is_unknownEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta10is_unknownEv:0 + 0: 0 + 4.1: _ZNK9oceanbase6common5ObObj10is_unknownEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta10is_unknownEv:0 + 0: 0 + 5.1: _ZNK9oceanbase3sql9ObKeyPart13is_normal_keyEv:20 + 0.1: 2 + 6: _ZNK9oceanbase6common5ObObj10is_unknownEv:6 + 0: _ZNK9oceanbase6common9ObObjMeta10is_unknownEv:6 + 0: 2 + 6.1: _ZNK9oceanbase6common5ObObj10is_unknownEv:8 + 0: _ZNK9oceanbase6common9ObObjMeta10is_unknownEv:8 + 0: 2 +_ZN9oceanbase6common13ObSEArrayImplINS_3sql18ObBasicSessionInfo10ChangedVarELl8ENS0_19ModulePageAllocatorELb0EED2Ev:82:1 + 1: 1 + 3: 1 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_3sql18ObBasicSessionInfo10ChangedVarELl8ENS0_19ModulePageAllocatorELb0EE7destroyEv:45 + 9: 1 + 11: 0 + 13: 1 + 15: 1 + 24: 1 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_3sql18ObBasicSessionInfo10ChangedVarELl8ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase6common13ObSEArrayImplINS0_8ObStringELl16ENS0_19ModulePageAllocatorELb0EED2Ev:82:1 + 1: 1 + 3: 1 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS0_8ObStringELl16ENS0_19ModulePageAllocatorELb0EE7destroyEv:45 + 9: 1 + 11: 0 + 13: 1 + 15: 1 + 24: 1 + 10: _ZN9oceanbase6common13ObSEArrayImplINS0_8ObStringELl16ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZZN9oceanbase3sql11ObPlanCache11cache_evictEvENK5$_182clEPKc.08a2b9b0d59ff83413633eb11fd88a2d:81:1 + 0: 1 + 0.1: 0 + 0.2: 1 + 0.3: 1 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:1 + 0.7: 0 + 0.13: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:17 + 2: 1 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.5: _ZNK9oceanbase3sql11ObPlanCache12get_mem_holdEv:0 + 2: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIlLb1EEC2EPKcOKl:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIlLb1EEC2EPKcOKl:0 + 0: 0 + 0.9: _ZNK9oceanbase3sql11ObPlanCache18get_cache_obj_sizeEv:0 + 0: _ZNK9oceanbase3sql17ObLCObjectManager18get_cache_obj_sizeEv:0 + 0: _ZNK9oceanbase6common4hash9ObHashMapImPNS_3sql17ObILibCacheObjectENS1_24LatchReadWriteDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS5_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE4sizeEv:0 + 2: _ZNK9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS_3sql17ObILibCacheObjectEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE4sizeEv:0 + 2: 0 + 0.10: _ZN9oceanbase6common7ObLogKVIlLb1EEC2EPKcOKl:0 + 0: 0 + 0.11: _ZNK9oceanbase6common4hash9ObHashMapIPNS_3sql14ObILibCacheKeyEPNS3_15ObILibCacheNodeENS1_24LatchReadWriteDefendModeENS1_9hash_funcIS5_EENS1_8equal_toIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS5_S7_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE4sizeEv:0 + 2: _ZNK9oceanbase6common4hash11ObHashTableIPNS_3sql14ObILibCacheKeyENS1_11HashMapPairIS5_PNS3_15ObILibCacheNodeEEENS1_9hash_funcIS5_EENS1_8equal_toIS5_EENS1_10pair_firstIS9_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS9_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE4sizeEv:0 + 2: 0 + 0.12: _ZN9oceanbase6common7ObLogKVIlLb1EEC2EPKcOKl:0 + 0: 0 +_ZN9oceanbase6common15ObLinearHashMapINS_5share6ObLSIDEPNS_10logservice13ObApplyStatusENS0_14ShareMemMgrTagEE11do_operate_INS4_17ObLogApplyService21GetApplyStatusFunctorEEEiRKS3_RT_:81:1 + 1: 1 + 3: 1 + 4: 1 + 7: 1 + 8: 1 + 9: 0 + 10: 0 + 11: 0 + 18.1: 0 + 18.3: 0 + 19: 0 + 20: 0 + 31: 0 + 33: 0 + 34: 1 + 9: _ZN9oceanbase6common15ObLinearHashMapINS_5share6ObLSIDEPNS_10logservice13ObApplyStatusENS0_14ShareMemMgrTagEE16is_bkt_nonempty_EPKNS8_6BucketE:0 + 2: 0 + 2.1: 0 + 10: _ZN9oceanbase6common5EqualINS_5share6ObLSIDEEclERKS3_S6_:0 + 4.3: _ZNK9oceanbase5share6ObLSIDeqERKS1_:0 + 0: 0 + 11: _ZN9oceanbase10logservice17ObLogApplyService21GetApplyStatusFunctorclERKNS_5share6ObLSIDEPNS0_13ObApplyStatusE:0 + 3: 0 + 4: 0 + 5: 0 + 6.1: 0 + 8: 0 + 10: 0 + 11: 0 + 8: _ZN9oceanbase10logservice18ObApplyStatusGuard17set_apply_status_EPNS0_13ObApplyStatusE:0 + 2: 0 + 3: _ZN9oceanbase10logservice13ObApplyStatus7inc_refEv:0 + 2.1: 0 + 19: _ZN9oceanbase6common5EqualINS_5share6ObLSIDEEclERKS3_S6_:0 + 4.3: _ZNK9oceanbase5share6ObLSIDeqERKS1_:0 + 0: 0 + 31: _ZN9oceanbase6common15ObLinearHashMapINS_5share6ObLSIDEPNS_10logservice13ObApplyStatusENS0_14ShareMemMgrTagEE18unload_access_bkt_EPNS8_6BucketESA_:0 + 3.1: 0 + 5: _ZN9oceanbase6common15ObLinearHashMapINS_5share6ObLSIDEPNS_10logservice13ObApplyStatusENS0_14ShareMemMgrTagEE13set_bkt_lock_EPNS8_6BucketEb:0 + 24: 0 + 6: _ZN9oceanbase6common15ObLinearHashMapINS_5share6ObLSIDEPNS_10logservice13ObApplyStatusENS0_14ShareMemMgrTagEE15unload_haz_seg_EPNS8_6BucketE:0 + 2: 0 + 2: _ZN9oceanbase6common13ObExternalRef7releaseEPv:0 + 1: 0 + 2: _ZN9oceanbase6common13ObExternalRef4xrefEPvi:0 + 0: 0 + 0: _ZN9oceanbase6common13ObExternalRef6locateEPv:0 + 0: 0 + 0: _ZN9oceanbase6common13ObExternalRef4hashEm:0 + 1: 0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 +_ZN9oceanbase6common13ObSEArrayImplINS0_6ObAddrELl16ENS0_19ModulePageAllocatorELb0EED2Ev:81:1 + 1: 1 + 3: 1 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS0_6ObAddrELl16ENS0_19ModulePageAllocatorELb0EE7destroyEv:44 + 9: 1 + 11: 0 + 13: 1 + 15: 1 + 24: 1 + 10: _ZN9oceanbase6common13ObSEArrayImplINS0_6ObAddrELl16ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase6common11ObTZMapWrap10set_tz_mapEPKNS0_11ObTZInfoMapE:81:9 + 1: 9 + 3: 9 + 4: 9 +_ZN9oceanbase4palf11LogWriteBuf5resetEv:81:9 + 1: 9 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_4palf11LogWriteBuf11InnerStructELl2ENS0_19ModulePageAllocatorELb0EE5resetEv:45 + 0: 9 _ZN9oceanbase6common13ObSEArrayImplINS_4palf11LogWriteBuf11InnerStructELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv:9 +_ZN9oceanbase3lib25ObTenantResourceMgrHandleC2Ev:81:3 + 2: 3 + 3: 3 + 4: 3 +_ZN9oceanbase3lib25ObTenantResourceMgrHandleC1Ev:81:3 + 2: 3 + 3: 3 + 4: 3 +_ZN9oceanbase6common9ObLDLatch10try_rdlockERNS0_10ObLDHandleEj:80:10 + 1: 10 + 3: 10 _ZN9oceanbase6common7ObLatch10try_rdlockEj:10 +_ZN9oceanbase6common26ObCacheLineSegregatedArrayINS0_15ObPoolArenaHeadEEixEl:80:2 + 0: 2 + 1: 2 + 2: 2 + 4.1: 0 + 5: 0 + 7: 2 +_ZN9oceanbase5share14ObSysVariables17get_default_valueEl:80:4 + 0: 4 +_ZNK9oceanbase8observer16ObInnerSQLResult8get_boolElRb:79:1 + 1: 1 + 2: 1 + 3: 1 + 4: 1 + 5: 0 + 6.1: 0 + 7.1: 1 + 8: 0 + 9.1: 0 + 10.1: 1 _ZNK9oceanbase8observer16ObInnerSQLResult7get_intElRl:1 + 11.1: 0 + 13: 1 + 15: 1 +_ZN9oceanbase6common13ObTimeUtility19current_time_coarseEv:79:2 + 1: 2 + 3: 2 + 10: 0 + 12: 1 + 13: 1 +_ZN9oceanbase6common13ObSEArrayImplImLl1ENS0_19ModulePageAllocatorELb0EE7reserveEl:79:0 + 1: 0 + 2: 0 + 3: 0 + 5: 0 + 6: 0 + 7: 0 + 7.3: 0 + 9: 1 + 10: 1 + 11: 1 + 12: 1 + 15: 1 + 16: 1 + 23: 0 + 24.1: 0 + 27: 1 + 8: _ZN9oceanbase6common13ObSEArrayImplImLl1ENS0_19ModulePageAllocatorELb0EE16internal_malloc_El:0 + 2: 0 + 7: 0 + 13: 0 + 13: _ZN9oceanbase6common19ModulePageAllocator5allocEl:0 + 2: 0 + 3: 0 + 2: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: 0 + 10: _ZN9oceanbase6common9ObClassOpImLb1EE12array_expandEPKmPml:8 + 2: 1 + 13: _ZN9oceanbase6common13ObSEArrayImplImLl1ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase3lib9AChunkMgr12direct_allocEmbRb:79:1 + 1: 1 + 3: 0 + 4.2: 0 + 4.4: 0 + 4.5: 0 + 4.10: 0 + 4.11: 0 + 5.2: 0 + 5.4: 0 + 5.5: 0 + 5.6: 0 + 5.10: 0 + 5.11: 0 + 5.12: 0 + 8: 0 + 9: 0 + 10: 0 + 14: 0 + 15: 0 + 16: 0 + 18: 0 + 21: 0 + 22: 0 + 31: 0 + 32: 0 + 33: 0 + 34: 0 + 37.1: 0 + 38: 0 + 39: 0 + 40: 0 + 41: 0 + 45.10: 0 + 45.12: 0 + 2: _ZN9oceanbase6common11ObTimeGuardC2EPKcl:46 + 2: 1 + 3: 1 + 4: 1 + 6: 1 + 7: 1 + 8: 1 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:1 + 2: 1 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:1 + 4.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:0 + 2: 0 + 4.6: _ZN9oceanbase6common21ObDiagnoseSessionInfo11update_statEsl:0 + 8: 0 + 4: _ZN9oceanbase6common11ObStatArrayINS0_18ObStatEventAddStatELl546EE3getEl:0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 4.12: _ZN9oceanbase6common20ObDiagnoseTenantInfo11update_statEsl:0 + 7: 0 + 3: _ZN9oceanbase6common11ObStatArrayINS0_18ObStatEventAddStatELl546EE3getEl:0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 5.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:0 + 2: 0 + 5.6: _ZN9oceanbase6common21ObDiagnoseSessionInfo11update_statEsl:0 + 8: 0 + 4: _ZN9oceanbase6common11ObStatArrayINS0_18ObStatEventAddStatELl546EE3getEl:0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 5.12: _ZN9oceanbase6common20ObDiagnoseTenantInfo11update_statEsl:0 + 7: 0 + 3: _ZN9oceanbase6common11ObStatArrayINS0_18ObStatEventAddStatELl546EE3getEl:0 + 5: 0 + 6: 0 + 8: 0 + 9: 0 + 12: _ZN9oceanbase3lib9AChunkMgr8low_freeEPKvm:0 + 2: 0 + 17: _ZN9oceanbase3lib9align_up2Emm:0 + 2: 0 + 19: _ZN9oceanbase3lib9AChunkMgr8low_freeEPKvm:0 + 2: 0 + 22: _ZN9oceanbase3lib9AChunkMgr8low_freeEPKvm:0 + 2: 0 +_ZN9oceanbase10rootserver14ObTenantLSInfo27try_update_ls_primary_zone_ERKNS_5share19ObLSPrimaryZoneInfoERKNS_6common19ObFixedLengthStringILl128EEERKNS6_11ObSqlStringE:79:0 + 4: 0 + 5: 0 + 6: 0 + 6.1: 0 + 6.3: 0 + 8: 0 + 9.1: 0 + 11.1: 0 + 12: 0 + 13.1: 0 + 14.2: 1 + 15: 0 + 15.1: 1 + 16: 0 + 17.1: 0 + 17.2: 0 + 17.3: 0 + 17.4: 0 + 20.1: 0 + 23.1: 0 + 28: 1 + 6: _ZNK9oceanbase5share19ObLSPrimaryZoneInfo8is_validEv:0 + 2: 0 + 2.1: _ZNK9oceanbase5share6ObLSID8is_validEv:0 + 0: 0 + 6.1: _ZNK9oceanbase6common19ObFixedLengthStringILl128EE8is_emptyEv:0 + 2: 0 + 6.2: _ZNK9oceanbase6common11ObSqlString5emptyEv:0 + 0: 0 + 14.3: _ZNK9oceanbase6common19ObFixedLengthStringILl128EEneERKS2_:0 + 2: _ZNK9oceanbase6common19ObFixedLengthStringILl128EEeqERKS2_:0 + 2: 0 + 15.2: _ZNK9oceanbase5share19ObLSPrimaryZoneInfo21get_zone_priority_strEv:0 + 2: 0 + 15.3: _ZNK9oceanbase6common8ObStringneERKS1_:51 + 2: 1 + 2: _ZNK9oceanbase6common8ObString7compareERKS1_:49 + 3: 1 + 4: 0 + 5.1: 1 + 7.1: 1 + 7.2: 1 + 7.1: _ZSt3minIiERKT_S2_S2_:6 + 5: 1 + 16.1: _ZN9oceanbase5share20ObLSLifeAgentManagerC2ERNS_6common12ObMySQLProxyE:0 + 0: 0 + 0.1: 0 + 1: 0 + 2: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 0: _ZN9oceanbase5share18ObLSStatusOperatorC2Ev:0 + 0.1: 0 + 184: 0 + 0.1: _ZN9oceanbase5share33ObLsElectionReferenceInfoOperatorC2Ev:0 + 0.1: 0 + 0.2: _ZN9oceanbase5share24ObLSRecoveryStatOperatorC2Ev:0 + 0.1: 0 + 17: _ZNK9oceanbase5share19ObLSPrimaryZoneInfo13get_tenant_idEv:0 + 2: 0 + 17.1: _ZNK9oceanbase5share19ObLSPrimaryZoneInfo9get_ls_idEv:0 + 2: _ZN9oceanbase5share6ObLSIDC2ERKS1_:0 + 0: 0 +_ZN9oceanbase7storage8ObTablet10update_rowERNS0_15ObRelativeTableERNS0_10ObStoreCtxERKNS_6common8ObIArrayINS_5share6schema9ObColDescEEERKNS7_IlEERKNS0_10ObStoreRowESJ_:78:0 + 7: 0 + 8: 0 + 11: 0 + 14: 0 + 15: 0 + 16.1: 0 + 17.2: 0 + 17.4: 0 + 17.6: 0 + 17.11: 0 + 17.13: 0 + 23: 0 + 24.1: 0 + 27.1: 0 + 27.3: 0 + 28: 0 + 29.1: 0 + 30.1: 0 + 30.2: 0 + 30.4: 0 + 32.1: 0 + 33.1: 0 + 33.2: 0 + 34.1: 0 + 35.2: 0 + 36.1: 0 + 37.1: 0 _ZNK9oceanbase7storage15ObRelativeTable12get_table_idEv:1 + 37.2: 1 _ZN9oceanbase8memtable10ObMemtable3setERNS_7storage10ObStoreCtxEmRKNS2_15ObTableReadInfoERKNS_6common8ObIArrayINS_5share6schema9ObColDescEEERKNS9_IlEERKNS2_10ObStoreRowESL_:1 + 37.3: 0 + 39.1: 0 + 41: 0 + 41.1: 0 + 43: 0 + 45: 1 + 46.1: 0 + 51: 1 + 17.1: _ZNK9oceanbase7storage10ObStoreCtx8is_validEv:0 + 2: 0 + 2.1: 0 + 2: _ZNK9oceanbase5share6ObLSID8is_validEv:0 + 0: 0 + 17.5: _ZNK9oceanbase7storage15ObTableReadInfo23is_valid_full_read_infoEv:0 + 3: 0 + 3.1: 0 + 4: 0 + 2: _ZNK9oceanbase7storage15ObTableReadInfo8is_validEv:0 + 2: 0 + 3: 0 + 3.1: 0 + 4: 0 + 5.1: 0 + 6: 0 + 7: 0 + 7.1: 0 + 3.1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:0 + 0: 0 + 6.1: _ZNK9oceanbase12blocksstable19ObStorageDatumUtils8is_validEv:0 + 0: 0 + 4.1: _ZNK9oceanbase7storage15ObTableReadInfo8is_validEv:0 + 2: 0 + 3: 0 + 3.1: 0 + 4: 0 + 5.1: 0 + 6: 0 + 7: 0 + 7.1: 0 + 3.1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:0 + 0: 0 + 6.1: _ZNK9oceanbase12blocksstable19ObStorageDatumUtils8is_validEv:0 + 0: 0 + 17.7: _ZNK9oceanbase7storage10ObStoreRow8is_validEv:0 + 3: 0 + 5.1: 0 + 8.1: 0 + 9: 0 + 11: 0 + 11.1: 0 + 12: 0 + 12.1: 0 + 13: 0 + 7.1: _ZNK9oceanbase12blocksstable12ObDmlRowFlag8is_validEv:0 + 2: 0 + 10.1: _ZNK9oceanbase6common8ObNewRow8is_validEv:0 + 2: _ZNK9oceanbase6common8ObNewRow10is_invalidEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 12.1: _ZNK9oceanbase12blocksstable21ObMultiVersionRowFlag18is_uncommitted_rowEv:0 + 0: 0 + 17.9: _ZNK9oceanbase7storage10ObStoreRow8is_validEv:0 + 3: 0 + 5.1: 0 + 8.1: 0 + 9: 0 + 11: 0 + 11.1: 0 + 11.2: 0 + 12: 0 + 12.1: 0 + 13: 0 + 7.1: _ZNK9oceanbase12blocksstable12ObDmlRowFlag8is_validEv:0 + 2: 0 + 10.1: _ZNK9oceanbase6common8ObNewRow8is_validEv:0 + 2: _ZNK9oceanbase6common8ObNewRow10is_invalidEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 12.1: _ZNK9oceanbase12blocksstable21ObMultiVersionRowFlag18is_uncommitted_rowEv:0 + 0: 0 + 27.2: _ZNK9oceanbase6common10ObTabletIDneERKS1_:0 + 0: 0 + 30.3: _ZN9oceanbase7storage8ObTablet25try_update_storage_schemaEll:0 + 2: 0 + 3: 0 + 4.1: 0 + 6: 0 + 35.1: _ZN9oceanbase7storage8ObTablet16prepare_memtableERNS0_15ObRelativeTableERNS0_10ObStoreCtxERPNS_8memtable10ObMemtableE:0 + 5: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11.1: 0 + 12.1: 0 + 13: 0 + 14.1: 0 + 18: 0 + 8: _ZN9oceanbase7storage20ObTableStoreIterator18get_boundary_tableEb:0 + 3: 0 + 5: 0 + 5.3: 0 + 3: _ZNK9oceanbase7storage20ObTableStoreIterator8is_validEv:0 + 0: 0 + 0: _ZNK9oceanbase6common12ObIArrayWrapIPNS_7storage8ObITableEE5countEv:0 + 0: 0 + 5.4: _ZN9oceanbase6common12ObIArrayWrapIPNS_7storage8ObITableEE2atEl:0 + 6: 0 +_ZN9oceanbase6common9ObCharset28get_default_collation_oracleENS0_13ObCharsetTypeE:78:3 + 3: 3 + 28: 0 +_ZN9oceanbase3sql15ObSessionValMapD2Ev:78:0 + 1: 0 + 2: 0 + 2.3: 0 + 2.4: 0 + 2.2: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:78 + 0: 3 _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEED2Ev:3 + 2.5: _ZN9oceanbase6common17ObPooledAllocatorINS0_4hash15ObHashTableNodeINS2_11HashMapPairINS0_8ObStringENS_3sql17ObSessionVariableEEEEENS0_18ObWrapperAllocatorENS0_10ObNullLockEED2Ev:0 + 1: 0 + 2: _ZN9oceanbase6common6ObPoolINS0_18ObWrapperAllocatorENS0_10ObNullLockEED2Ev:0 + 1: 0 + 2: _ZN9oceanbase6common6ObPoolINS0_18ObWrapperAllocatorENS0_10ObNullLockEE5resetEv:0 + 2: 0 + 4.1: 0 + 5: 0 + 10: 0 + 11: 0 + 12: 0 + 13: 0 + 6: _ZN9oceanbase6common18ObWrapperAllocator4freeEPv:0 + 2: 0 + 3: 0 + 2.6: _ZN9oceanbase6common21ObSmallBlockAllocatorINS0_8ObMallocENS0_10ObNullLockEED2Ev:0 + 0: 0 + 0: _ZN9oceanbase6common6ObPoolINS0_8ObMallocENS0_10ObNullLockEED2Ev:0 + 1: 0 + 2: _ZN9oceanbase6common6ObPoolINS0_8ObMallocENS0_10ObNullLockEE5resetEv:0 + 2: 0 + 4.1: 0 + 5: 0 + 10: 0 + 11: 0 + 12: 0 + 13: 0 + 6: _ZN9oceanbase6common8ObMalloc4freeEPv:0 + 0: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase3sql15ObSessionValMapD1Ev:78:0 + 1: 0 + 2: 0 + 2.3: 0 + 2.4: 0 + 2.2: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:78 + 0: 3 _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEED2Ev:3 + 2.5: _ZN9oceanbase6common17ObPooledAllocatorINS0_4hash15ObHashTableNodeINS2_11HashMapPairINS0_8ObStringENS_3sql17ObSessionVariableEEEEENS0_18ObWrapperAllocatorENS0_10ObNullLockEED2Ev:0 + 1: 0 + 2: _ZN9oceanbase6common6ObPoolINS0_18ObWrapperAllocatorENS0_10ObNullLockEED2Ev:0 + 1: 0 + 2: _ZN9oceanbase6common6ObPoolINS0_18ObWrapperAllocatorENS0_10ObNullLockEE5resetEv:0 + 2: 0 + 4.1: 0 + 5: 0 + 10: 0 + 11: 0 + 12: 0 + 13: 0 + 6: _ZN9oceanbase6common18ObWrapperAllocator4freeEPv:0 + 2: 0 + 3: 0 + 2.6: _ZN9oceanbase6common21ObSmallBlockAllocatorINS0_8ObMallocENS0_10ObNullLockEED2Ev:0 + 0: 0 + 0: _ZN9oceanbase6common6ObPoolINS0_8ObMallocENS0_10ObNullLockEED2Ev:0 + 1: 0 + 2: _ZN9oceanbase6common6ObPoolINS0_8ObMallocENS0_10ObNullLockEE5resetEv:0 + 2: 0 + 4.1: 0 + 5: 0 + 10: 0 + 11: 0 + 12: 0 + 13: 0 + 6: _ZN9oceanbase6common8ObMalloc4freeEPv:0 + 0: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +easy_inet_addr_to_str:77:1 + 1: 1 + 4: 1 + 7: 0 + 8: 0 + 9.3: 0 + 11: 0 + 17: 1 + 18.3: 1 + 20: 0 + 23: 0 +_ZNK9oceanbase3rpc5frame14ObReqTransport14create_requestERNS2_7RequestERKNS_6common6ObAddrEllS8_baRKNS5_8ObStringEPKNS2_7AsyncCBE:77:0 + 8: 0 + 9: 0 + 10: 0 + 16: 0 + 17: 0 + 18.1: 0 + 19.1: 0 + 20: 0 + 21.1: 0 + 22.1: 0 + 24.1: 0 + 25.1: 0 + 26: 0 + 27.1: 0 + 35: 1 + 36: 1 + 37: 1 + 38: 1 + 41: 1 + 42: 1 + 45: 1 + 43: _ZN9oceanbase5obrpc11ObRpcPacket11set_contentEPKcl:14 + 2: 1 + 3: 1 +_ZN9oceanbase6common4hash9do_createIPNS1_17ObHashTableBucketINS1_11HashMapPairImPNS_2pl16ObPLPackageStateEEENS1_5NLockENS1_5NCondEEENS0_8ObMallocEEEiRT_lllNS1_16NormalPointerTagERT0_:77:1 + 2: 1 + 5: 1 + 7.1: 1 _ZN9oceanbase6common8ObMalloc5allocEl:1 + 8.1: 0 + 12: 1 + 14: 0 +_ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS_2pl16ObPLPackageStateEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE6createElPSJ_PSM_:77:1 + 1: 1 + 2: 1 + 3: 1 + 4.1: 0 + 5: 0 + 6.1: 1 + 7.1: 0 + 9: 0 + 10.1: 0 + 12.1: 0 + 13: 0 + 16: 0 + 17: 0 + 19: 0 + 21: 0 + 6.1: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImPNS_2pl16ObPLPackageStateEEENS1_5NLockENS1_5NCondEEEEEbRKT_:5 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImPNS_2pl16ObPLPackageStateEEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:5 + 2: 1 + 10.1: _ZN9oceanbase6common4hash6createIPNS1_17ObHashTableBucketINS1_11HashMapPairImPNS_2pl16ObPLPackageStateEEENS1_5NLockENS1_5NCondEEENS0_8ObMallocEEEiRT_lllRT0_:14 + 3: 1 _ZN9oceanbase6common4hash9do_createIPNS1_17ObHashTableBucketINS1_11HashMapPairImPNS_2pl16ObPLPackageStateEEENS1_5NLockENS1_5NCondEEENS0_8ObMallocEEEiRT_lllNS1_16NormalPointerTagERT0_:1 +_ZN9oceanbase6common13ObSEArrayImplINS_11transaction9tablelock13ObTableLockOpELl10ENS2_24TransModulePageAllocatorELb0EED2Ev:77:1 + 1: 1 + 2: 1 _ZN9oceanbase6common13ObSEArrayImplINS_11transaction9tablelock13ObTableLockOpELl10ENS2_24TransModulePageAllocatorELb0EE7destroyEv:1 + 3: 1 + 3.2: 0 + 3: _ZN9oceanbase11transaction24TransModulePageAllocatorD2Ev:46 + 0: 1 + 0: _ZN9oceanbase11transaction18ObReserveAllocatorD2Ev:28 + 0: 1 + 0: _ZN9oceanbase11transaction18ObReserveAllocator5resetEv:10 + 3: 1 + 3.1: _ZN9oceanbase11transaction24TransModulePageAllocatorD2Ev:0 + 0: 0 + 0: _ZN9oceanbase11transaction18ObReserveAllocatorD2Ev:0 + 0: 0 + 0: _ZN9oceanbase11transaction18ObReserveAllocator5resetEv:0 + 3: 0 +_ZNK6obutil9ObMonitorINS_5MutexEE10timed_waitERKNS_9ObSysTimeE:76:2 + 1: 2 + 2: 2 + 4: 2 _ZNK6obutil4Cond15timed_wait_implINS_5MutexEEEbRKT_RKNS_9ObSysTimeE:2 + 5: 0 + 6: 0 + 2: _ZNK6obutil9ObMonitorINS_5MutexEE11notify_implEi:16 + 2: 2 + 4: 0 + 6.1: 0 + 7: 0 +_ZN9oceanbase5share8ObLSInfo4initEmRKNS0_6ObLSIDE:76:1 + 1: 1 + 2: 1 + 3: 0 + 4: 0 + 5.1: 0 + 7: 1 + 9: 1 + 11: 1 + 3: _ZNK9oceanbase5share6ObLSID20is_valid_with_tenantEm:25 + 5: 1 + 5.1: 0 + 4: _ZN9oceanbase6common14is_user_tenantEm:20 + 3: 1 + 2: _ZN9oceanbase6common13is_sys_tenantEm:0 + 2: 0 + 4.1: _ZNK9oceanbase5share6ObLSID8is_validEv:4 + 0: 1 + 5.2: _ZN9oceanbase6common14is_meta_tenantEm:0 + 3: 0 + 5.3: _ZNK9oceanbase5share6ObLSID9is_sys_lsEv:0 + 0: 0 + 8: _ZN9oceanbase5share6ObLSIDaSERKS1_:7 + 0: 1 + 9: _ZN9oceanbase6common11ObArrayImplINS_5share11ObLSReplicaENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE5resetEv:7 + 0: 1 _ZN9oceanbase6common11ObArrayImplINS_5share11ObLSReplicaENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE7destroyEv:1 +_ZN9oceanbase5share19ObPersistentLSTable17construct_ls_infoERNS_6common9sqlclient13ObMySQLResultEbRNS0_8ObLSInfoE:75:0 + 4: 0 + 6: 0 + 8.1: 0 + 9: 0 + 9.1: 1 + 11: 1 + 13.1: 0 + 19: 0 + 19.1: 0 + 20.1: 0 + 21.1: 0 + 21.2: 0 + 22.1: 0 + 27: 0 + 28: 1 _ZN9oceanbase5share8ObLSInfo21update_replica_statusEv:1 + 28.1: 1 + 29.1: 0 + 32: 0 + 33.5: 1 + 65349: 0 + 7: _ZN9oceanbase5share11ObLSReplicaC2Ev:0 + 1: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 14: 0 + 16: 0 + 18: 0 + 3: _ZN9oceanbase6common6ObAddrC2Ev:0 + 1: 0 + 6: _ZN9oceanbase6common9ObSEArrayINS_5share12SimpleMemberELl7ENS0_15ObNullAllocatorELb0EEC2Ev:0 + 0.1: 0 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_5share12SimpleMemberELl7ENS0_15ObNullAllocatorELb0EEC2ElRKS4_:0 + 5: 0 + 6: 0 + 8: 0 + 17.1: 0 + 2: _ZN9oceanbase6common8ObIArrayINS_5share12SimpleMemberEEC2EPS3_l:0 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_5share12SimpleMemberEEC2EPS3_l:0 + 0: 0 + 7: _ZN9oceanbase6common15ObNullAllocatorC2ERKS1_:0 + 0: 0 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:0 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:0 + 2: 0 + 8: 0 + 10: _ZN9oceanbase5share17ObLSRestoreStatusC2Ev:0 + 0: 0 + 11: _ZN9oceanbase6common17ObReplicaPropertyC2Ev:0 + 0: 0 + 13: _ZN9oceanbase6common19ObFixedLengthStringILl128EEC2Ev:0 + 3: 0 + 18: _ZN9oceanbase5share11ObLSReplica5resetEv:0 + 3: 0 + 8: 0 + 9: 0 + 11: 0 + 12: 0 + 13: 0 + 14: 0 + 17: 0 + 19: 0 + 21: 0 + 23: 0 + 6: _ZN9oceanbase5share6ObLSID5resetEv:0 + 0: 0 + 7: _ZN9oceanbase6common6ObAddr5resetEv:0 + 2: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_5share12SimpleMemberELl7ENS0_15ObNullAllocatorELb0EE5resetEv:0 + 0: 0 + 15: _ZN9oceanbase6common17ObReplicaProperty5resetEv:0 + 2: 0 + 18: _ZN9oceanbase6common19ObFixedLengthStringILl128EE5resetEv:0 + 0: 0 + 33.5: _ZN9oceanbase5share11ObLSReplicaD2Ev:27 + 2.1: _ZN9oceanbase6common13ObSEArrayImplINS_5share12SimpleMemberELl7ENS0_15ObNullAllocatorELb0EED2Ev:27 + 1: 1 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_5share12SimpleMemberELl7ENS0_15ObNullAllocatorELb0EE7destroyEv:9 + 9: 1 + 11: 0 + 33.6: _ZN9oceanbase5share11ObLSReplicaD2Ev:0 + 2.1: _ZN9oceanbase6common13ObSEArrayImplINS_5share12SimpleMemberELl7ENS0_15ObNullAllocatorELb0EED2Ev:0 + 1: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_5share12SimpleMemberELl7ENS0_15ObNullAllocatorELb0EE7destroyEv:0 + 9: 0 + 11: 0 +_ZN9oceanbase6common9Ob2DArrayINS_3sql15ObDatumObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS3_Ll1ES4_Lb0EEEED2Ev:74:2 + 1: 2 + 2: 2 _ZN9oceanbase6common9Ob2DArrayINS_3sql15ObDatumObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS3_Ll1ES4_Lb0EEEE7destroyEv:2 + 3: 2 _ZN9oceanbase6common13ObSEArrayImplIPNS_3sql15ObDatumObjParamELl1ENS0_18ObWrapperAllocatorELb0EED2Ev:2 + 3.1: 0 + 3.2: 0 +_ZN9oceanbase11transaction10ObTxCtxMgr38get_ls_min_uncommit_tx_prepare_versionERKNS_5share6ObLSIDERl:73:0 + 1: 0 + 2: 0 + 3: 0 + 5: 0 + 6.1: 0 + 7: 0 + 8.1: 0 + 9.1: 0 + 10: 0 + 11.1: 1 _ZN9oceanbase11transaction10ObTxCtxMgr17get_ls_tx_ctx_mgrERKNS_5share6ObLSIDERPNS0_12ObLSTxCtxMgrE:2 + 12.1: 0 + 13: 0 + 15: 1 _ZN9oceanbase11transaction12ObLSTxCtxMgr38get_ls_min_uncommit_tx_prepare_versionERl:1 + 16.1: 0 + 24: 1 + 8.1: _ZNK9oceanbase5share6ObLSID8is_validEv:0 + 0: 0 + 21: _ZN9oceanbase11transaction10ObTxCtxMgr20revert_ls_tx_ctx_mgrEPNS0_12ObLSTxCtxMgrE:28 + 2: 1 + 4: 1 + 5: 0 + 6.1: 0 + 8: 1 + 8: _ZN9oceanbase6common13ObLinkHashMapINS_5share6ObLSIDENS_11transaction12ObLSTxCtxMgrENS4_17ObLSTxCtxMgrAllocENS0_9RefHandleELl8EE6revertEPS5_:8 + 3: 1 _ZN9oceanbase6common13ObLinkHashMapINS_5share6ObLSIDENS_11transaction12ObLSTxCtxMgrENS4_17ObLSTxCtxMgrAllocENS0_9RefHandleELl8EE6revertEPNS0_12LinkHashNodeIS3_EE:1 +_ZL19mysql_easy_timer_cbP7ev_loopP8ev_timeri.ab02cd469c956bc87c0a56d54d3b8933:73:0 + 1: 0 + 8: 0 + 9: 1 + 10: 1 + 11: 1 + 12: 1 + 14: 0 + 14.1: 0 + 15: 0 + 16.1: 0 + 18.1: 0 + 21.1: 0 + 23: 0 +_ZNK9oceanbase3rpc5frame14ObReqTransport4postERKNS2_7RequestE:72:2 + 1: 2 + 2.1: 2 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 2.7: 0 + 3.1: 2 + 3.2: 0 + 3.3: 0 + 3.4: 0 + 3.6: 0 + 3.7: 0 + 3.13: 0 + 3.17: 0 + 5: 2 _ZNK9oceanbase3rpc5frame14ObReqTransport12post_sessionEP14easy_session_t:2 + 2.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:10 + 2: 2 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:2 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:8 + 2: 2 + 3.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:10 + 2: 2 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:2 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:8 + 2: 2 + 3.4: _ZNK9oceanbase3rpc5frame14ObReqTransport7Request9const_pktEv:0 + 0: 0 + 3.7: _ZNK9oceanbase3rpc5frame14ObReqTransport7Request9const_pktEv:0 + 0: 0 + 3.10: _ZNK9oceanbase5obrpc11ObRpcPacket8get_clenEv:0 + 2: 0 + 3.14: _ZNK9oceanbase5obrpc11ObRpcPacket8get_clenEv:0 + 2: 0 +_ZN9oceanbase6commonL8int_uintENS0_9ObObjTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS4_m.db28c62327e16d3ae5c8a88acfd53bbb:72:0 + 2: 0 + 3: 0 + 5: 0 + 5.1: 0 + 5.2: 0 + 7: 0 + 8.1: 0 + 10.1: 0 + 11: 0 + 15: 0 + 16: 0 + 16.1: 0 + 22: 1 + 22.2: 0 + 23: 1 + 5: _ZNK9oceanbase6common5ObObj14get_type_classEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta14get_type_classEv:0 + 0: _ZNK9oceanbase6common9ObObjMeta8get_typeEv:0 + 0: 0 + 0.1: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:0 + 2: 0 + 5.1: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:0 + 2.1: 0 + 12: _ZNK9oceanbase6common5ObObj10get_uint64Ev:0 + 0: 0 + 12.1: _ZN9oceanbase6common25get_precision_for_integerImEEsT_:0 + 45.1: 0 + 530: 0 + 14: _ZNK9oceanbase6common5ObObj7get_intEv:0 + 0: 0 + 16.2: _ZN9oceanbase6common16uint_range_checkIlEEiNS0_9ObObjTypeET_Rm:0 + 4: _ZN9oceanbase6common19numeric_range_checkIlmEEiT_T0_S3_RS3_:0 + 6: 0 + 9.1: 0 + 16.3: _ZN9oceanbase6common12get_cast_retEmiRi:0 + 8.2: 0 + 10: 0 + 11: 0 + 18: _ZN9oceanbase6common5ObObj8set_uintENS0_9ObObjTypeEm:0 + 4: 0 + 2: _ZN9oceanbase6common9ObObjMeta8set_typeERKNS0_9ObObjTypeE:0 + 2: 0 + 3: 0 + 13: 0 + 14: 0 + 4: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:0 + 0: 0 + 8: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:0 + 0: 0 + 11: _ZN9oceanbase6common9ObObjMeta18set_collation_typeENS0_15ObCollationTypeE:0 + 0: 0 + 12.1: _ZN9oceanbase6common17ob_is_string_typeENS0_9ObObjTypeE:0 + 0: 0 + 0: _ZN9oceanbase6common15ob_is_string_tcENS0_9ObObjTypeE:0 + 0: _ZN9oceanbase6common17ob_obj_type_classENS0_9ObObjTypeE:0 + 2: 0 + 17: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:0 + 0: 0 + 3: _ZN9oceanbase6common9ObObjMeta19set_collation_levelENS0_16ObCollationLevelE:0 + 0: 0 + 19.1: _ZN9oceanbase6common25get_precision_for_integerImEEsT_:37 + 45.1: 3 + 1092: 0 + 22.2: _ZN9oceanbase6common10ObAccuracy9set_scaleEs:0 + 0: 0 + 22.3: _ZN9oceanbase6common10ObAccuracy13set_precisionEs:0 + 0: 0 + 22.4: _ZN9oceanbase6common10ObAccuracy10set_lengthEi:0 + 0: 0 +_ZN9oceanbase6common13ObSEArrayImplINS_5share12SimpleMemberELl7ENS0_15ObNullAllocatorELb0EE5reuseEv:72:3 + 1: 3 + 8: 3 + 9: 3 + 10: 3 +_ZN9oceanbase6common12ObTimeoutCtxD2Ev:72:1 + 1: 1 + 2.1: 1 + 3.1: 1 + 4.1: 0 + 4.5: 0 + 6: 1 + 6.1: 1 + 9.1: 1 +_ZN9oceanbase6common12ObTimeoutCtxD1Ev:72:1 + 1: 1 + 2.1: 1 + 3.1: 1 + 4.1: 0 + 4.5: 0 + 6: 1 + 6.1: 1 + 9.1: 1 +_ZN9oceanbase5share6schema27ObMultiVersionSchemaService14get_tenant_idsERNS_6common8ObIArrayImEE:72:1 + 0: 1 + 1: 1 + 2: 1 _ZN9oceanbase5share6schema19ObSchemaGetterGuardC1Ev:1 + 3: 1 _ZN9oceanbase5share6schema27ObMultiVersionSchemaService23get_tenant_schema_guardEmRNS1_19ObSchemaGetterGuardEllNS2_17RefreshSchemaModeE:1 + 3.1: 0 + 4.1: 0 + 5.1: 0 + 5.2: 0 + 6.1: 0 + 8: 0 + 9.3: 0 + 9.4: 0 +_ZN9oceanbase5obrpc18ObRpcProcessorBase9serializeEv:72:1 + 1: 1 + 2: 1 + 3: 1 + 4: 0 + 5.1: 0 + 6.1: 2 + 6.4: 1 _ZN9oceanbase5obrpc14ObRpcProcessorINS0_15ObTransRpcProxy5ObRpcILNS0_15ObRpcPacketCodeE1626EvEEE11encode_baseEPclRl:1 + 9.1: 0 + 13: 2 + 6.1: _ZN9oceanbase6common12ObDataBuffer8get_dataEv:4 + 0: 1 + 6.2: _ZNK9oceanbase6common12ObDataBuffer12get_capacityEv:4 + 0: 1 + 6.3: _ZN9oceanbase6common12ObDataBuffer12get_positionEv:4 + 0: 1 +_ZN9oceanbase10logservice17ObLogApplyService16get_apply_statusERKNS_5share6ObLSIDERNS0_18ObApplyStatusGuardE:72:1 + 2: 1 + 3: 1 + 5: 1 + 6: 0 + 7.1: 0 + 8.1: 1 + 8.2: 1 + 9.1: 0 + 11.1: 1 _ZZN9oceanbase10logservice17ObLogApplyService16get_apply_statusERKNS_5share6ObLSIDERNS0_18ObApplyStatusGuardEENK5$_149clEPKc.d3a41d52a3cfae37a6a74713ee8e7132:1 + 13: 1 + 14.4: 1 + 4: _ZN9oceanbase10logservice17ObLogApplyService21GetApplyStatusFunctorC2ERNS0_18ObApplyStatusGuardE:7 + 1: 1 + 8.1: _ZN9oceanbase6common15ObLinearHashMapINS_5share6ObLSIDEPNS_10logservice13ObApplyStatusENS0_14ShareMemMgrTagEE7operateINS4_17ObLogApplyService21GetApplyStatusFunctorEEEiRKS3_RT_:1 + 2: 1 _ZN9oceanbase6common15ObLinearHashMapINS_5share6ObLSIDEPNS_10logservice13ObApplyStatusENS0_14ShareMemMgrTagEE11do_operate_INS4_17ObLogApplyService21GetApplyStatusFunctorEEEiRKS3_RT_:1 +_ZN9oceanbase6common11ObIORequest7dec_refEv:71:1 + 1: 1 + 2: 1 + 3: 1 + 4: 1 + 5: 0 + 6.1: 0 + 7: 0 + 8: 1 + 10: 1 + 11: 0 + 12.1: 0 + 17: 0 + 10: _ZN9oceanbase6common11ObRefHolderINS0_17ObTenantIOManagerEE7get_ptrEv:7 + 0: 1 + 14.1: _ZN9oceanbase6common13ObIOAllocator4freeINS0_11ObIORequestEEEvPT_:7 + 3: 1 _ZN9oceanbase6common11ObIORequestD1Ev:1 + 4: 0 +_ZN9oceanbase10rootserver8DRLSInfo31append_replica_server_unit_statEPNS0_16DRServerStatInfoEPNS0_14DRUnitStatInfoES5_:71:1 + 4: 1 + 5: 1 + 6: 1 + 7: 0 + 8.1: 0 + 9.1: 1 + 12: 0 + 13.1: 0 + 19: 1 _ZN9oceanbase6common11ObArrayImplIPNS_10rootserver16DRServerStatInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEE9push_backERKS4_:1 + 20.1: 0 + 21.1: 0 + 22.1: 0 + 23.1: 0 + 24.1: 0 + 27: 0 +_ZN9oceanbase10logservice17ObLogApplyService27get_min_unapplied_log_ts_nsERKNS_5share6ObLSIDERl:71:1 + 2: 1 + 3: 1 + 6: 1 + 7: 0 + 8.1: 0 + 9.1: 1 _ZN9oceanbase10logservice17ObLogApplyService16get_apply_statusERKNS_5share6ObLSIDERNS0_18ObApplyStatusGuardE:1 + 9.2: 1 + 10.1: 0 + 11.2: 1 + 12: 0 + 13.1: 0 + 14.1: 1 _ZN9oceanbase10logservice13ObApplyStatus27get_min_unapplied_log_ts_nsERl:1 + 14.2: 0 + 15.1: 0 + 17.1: 0 + 19: 0 + 20.6: 0 + 20.7: 0 + 5: _ZN9oceanbase10logservice18ObApplyStatusGuardC2Ev:8 + 1: 1 + 11.1: _ZN9oceanbase10logservice18ObApplyStatusGuard16get_apply_statusEv:4 + 2: 1 + 20.6: _ZN9oceanbase10logservice18ObApplyStatusGuardD2Ev:0 + 2: 0 + 3.1: 0 + 4.1: 0 + 5: 0 + 6: 0 + 8: 0 + 3: _ZN9oceanbase10logservice13ObApplyStatus7dec_refEv:0 + 2: 0 +_ZN9oceanbase8observer20ObInnerSQLConnectionD2Ev:70:1 + 1: 1 + 2: 1 + 3.1: 0 + 5: 1 + 5.1: 1 + 7: 0 + 8.1: 0 + 8.2: 0 + 8.3: 0 + 9.2: 0 + 11.1: 0 + 12: 0 + 12.1: 0 + 13.4: 1 _ZN9oceanbase3sql16ObSQLSessionInfoD1Ev:1 + 13.5: 0 + 13.6: 0 + 13.7: 1 + 13.10: 0 + 8.1: _ZNK9oceanbase11transaction8ObTxDesc13get_tenant_idEv:0 + 0: 0 + 9: _ZN9oceanbase5share11ObTenantEnv3mtlIPNS_11transaction14ObTransServiceEEET_v:0 + 2: 0 + 2.1: _ZN9oceanbase5share12ObTenantBase3getIPNS_11transaction14ObTransServiceEEET_v:0 + 0: _ZN9oceanbase5share12ObTenantBase9inner_getENS1_8IdentityIPNS_11transaction14ObTransServiceEEE:0 + 0: 0 +_ZN9oceanbase8observer20ObInnerSQLConnectionD1Ev:70:1 + 1: 1 + 2: 1 + 3.1: 0 + 5: 1 + 5.1: 1 + 7: 0 + 8.1: 0 + 8.2: 0 + 8.3: 0 + 9.2: 0 + 11.1: 0 + 12: 0 + 12.1: 0 + 13.4: 1 _ZN9oceanbase3sql16ObSQLSessionInfoD1Ev:1 + 13.5: 0 + 13.6: 0 + 13.7: 1 + 13.10: 0 + 8.1: _ZNK9oceanbase11transaction8ObTxDesc13get_tenant_idEv:0 + 0: 0 + 9: _ZN9oceanbase5share11ObTenantEnv3mtlIPNS_11transaction14ObTransServiceEEET_v:0 + 2: 0 + 2.1: _ZN9oceanbase5share12ObTenantBase3getIPNS_11transaction14ObTransServiceEEET_v:0 + 0: _ZN9oceanbase5share12ObTenantBase9inner_getENS1_8IdentityIPNS_11transaction14ObTransServiceEEE:0 + 0: 0 +_ZN9oceanbase8observer16ObQueryRetryCtrlC2Ev:70:2 + 2: 2 + 8: 2 + 9: 2 +_ZN9oceanbase8observer16ObQueryRetryCtrlC1Ev:70:2 + 2: 2 + 8: 2 + 9: 2 +_ZN9oceanbase6common19ObTableAccessHelper20get_values_from_row_ILi0ELi1ENS0_14ObStringHolderEJEEEiPNS0_9sqlclient13ObMySQLResultERAT0__PKcRT1_DpRT2_:70:0 + 4: 0 + 6: 0 + 7: 0 + 7.1: 0 + 7.2: 0 + 7.3: 0 + 7.4: 0 + 8.2: 0 + 8.3: 0 + 8.5: 0 + 8.6: 0 + 8.9: 0 + 8.11: 0 + 8.15: 0 + 9.1: 0 + 9.2: 0 + 9.4: 0 + 12.2: 0 + 12.3: 2 + 12.5: 0 + 12.6: 0 + 12.9: 0 + 12.11: 0 + 12.17: 0 + 14: 2 + 15.17: 2 _ZN9oceanbase6common5occam26ObOccamTimeGuardDetectHungD2Ev:2 + 15.18: 0 + 5.2: _ZN9oceanbase6common5occam25get_file_name_without_dirIcLm44EEEPKT_RAT0__S4_m:0 + 3: 0 + 3.3: 0 + 3.4: 0 + 3.7: 0 + 360: 0 + 5.3: _ZN9oceanbase6common5occam16TimeGuardFactory10make_guardEllPKcS4_lS4_:0 + 6: 0 + 8.1: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 8.4: _ZN9oceanbase6common7ObLogKVIiLb0EEC2EPKcRKi:0 + 0: 0 + 8.6: _ZN9oceanbase6common7ObLogKVIPKcLb1EEC2ES3_OKS3_:0 + 0: 0 + 8.7: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 8.8: _ZNK9oceanbase5share12ObTenantBase2idEv:0 + 0: 0 + 8.10: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 + 8.12: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 8.14: _ZN9oceanbase6common7ObLogKVIRKPKcLb0EEC2ES3_S5_:0 + 0: 0 + 12.1: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 12.4: _ZN9oceanbase6common7ObLogKVIiLb0EEC2EPKcRKi:0 + 0: 0 + 12.6: _ZN9oceanbase6common7ObLogKVIPKcLb1EEC2ES3_OKS3_:0 + 0: 0 + 12.7: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 12.8: _ZNK9oceanbase5share12ObTenantBase2idEv:0 + 0: 0 + 12.10: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 + 12.12: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 12.14: _ZN9oceanbase6common7ObLogKVIRKPKcLb0EEC2ES3_S5_:0 + 0: 0 + 12.16: _ZN9oceanbase6common7ObLogKVIRKNS0_14ObStringHolderELb0EEC2EPKcS4_:0 + 0: 0 +_ZN9oceanbase6common16ObFixedArrayImplINS_5share12AutoincParamENS0_12ObIAllocatorEED2Ev:70:1 + 0: 1 + 0.1: 1 + 0.3: 0 + 0: _ZN9oceanbase6common16ObFixedArrayImplINS_5share12AutoincParamENS0_12ObIAllocatorEE7destroyEv:40 + 2: 1 + 5: 1 + 9: 0 + 10: 0 + 12: 1 + 13: 1 + 15: 1 +_ZN9oceanbase6common13ObLatchWGuardD2Ev:70:2 + 1: 2 + 2: 2 + 3: 2 _ZN9oceanbase6common7ObLatch6unlockEPKj:2 + 3.1: 2 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 7.1: 2 +_ZN9oceanbase6common11ObArrayImplINS_5share11ObLSReplicaENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE7reserveEl:70:1 + 1: 1 + 3: 1 + 4: 1 + 5: 1 + 6: 1 + 6.3: 1 + 7: 1 _ZN9oceanbase6common11ObArrayImplINS_5share11ObLSReplicaENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE10extend_bufEl:1 + 9: 0 +_ZN9oceanbase3sql12ObQueryRange17definite_key_partERPNS0_9ObKeyPartERNS0_13ObExecContextERKNS_6common20ObDataTypeCastParamsE:70:0 + 1: 0 + 2: 0 + 3: 0 + 4.1: 1 + 5: 1 + 6: 1 + 7: 0 + 8.1: 0 + 9.1: 1 + 10: 1 + 11: 0 + 14: 1 + 15: 0 + 16.1: 0 + 17.1: 0 + 24: 1 + 26: 1 + 9.1: _ZNK9oceanbase3sql9ObKeyPart15is_always_falseEv:16 + 0: 1 + 0.1: 1 + 0: _ZNK9oceanbase3sql9ObKeyPart13is_normal_keyEv:10 + 0: 0 + 0.1: 1 + 3230: 0 + 17.1: _ZNK9oceanbase3sql9ObKeyPart15is_always_falseEv:0 + 0: 0 + 0.1: 0 + 0: _ZNK9oceanbase3sql9ObKeyPart13is_normal_keyEv:0 + 0: 0 + 0.1: 0 +_ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEEC2ERS3_:70:1 + 1: 1 + 2: 1 + 3: 1 + 4: 2 + 5.1: 0 + 7: 2 + 4: _ZN9oceanbase6common10ObSpinLock4lockEv:20 + 2: 1 _ZN9oceanbase6common12ObLatchMutex4lockEjl:1 +_ZN9oceanbase6common22ObTenantMutilAllocator8set_nwayEi:69:0 + 1: 0 + 2: 0 + 3: 0 + 4: 1 + 5: 1 + 6.1: 0 + 6.2: 0 + 6.4: 0 + 6.8: 0 + 8: 0 + 3: _ZN9oceanbase6common13ObVSliceAlloc8set_nwayEi:0 + 1: 0 + 6: 0 + 7: 0 + 4: _ZN9oceanbase6common13ObVSliceAlloc8set_nwayEi:22 + 1: 1 + 6: 1 + 7: 1 _ZN9oceanbase6common13ObVSliceAlloc24purge_extra_cached_blockEi:1 + 5: _ZN9oceanbase6common13ObVSliceAlloc8set_nwayEi:27 + 1: 1 + 6: 1 + 7: 1 _ZN9oceanbase6common13ObVSliceAlloc24purge_extra_cached_blockEi:1 + 6.1: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 6.5: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 + 6.7: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase5share20ObBackupInfoOperator23get_inner_table_versionERNS_6common12ObISQLClientERNS0_25ObBackupInnerTableVersionE:69:0 + 2: 0 + 3: 0 + 6: 1 + 8.1: 0 + 10: 0 + 11: 0 + 12.1: 0 + 15: 1 + 16: 1 + 17: 0 + 18.1: 0 + 22: 1 + 6: _ZN9oceanbase5share20ObBackupInfoOperator14get_int_value_ERNS_6common12ObISQLClientEbPKcRl:29 + 4: 0 + 5: 0 + 7: 1 + 8.1: 0 + 9.1: 1 _ZN9oceanbase6common8ob_atollEPKcRl:1 + 10.1: 0 + 13: 0 + 16: _ZN9oceanbase5share35is_valid_backup_inner_table_versionERKNS0_25ObBackupInnerTableVersionE:6 + 2: 1 +_ZN9oceanbase3lib9AChunkMgr11update_holdElb:69:1 + 1: 1 + 3: 1 + 3.1: 0 + 4: 1 + 5: 0 + 6.1: 1 + 7: 1 + 8: 1 + 9: 0 + 16: 0 + 17: 0 + 18: 0 + 19: 0 + 20: 0 + 22: 1 +_ZN9oceanbase5share20ObQSyncLockReadGuardD2Ev:68:7 + 0: 7 + 1: 7 _ZN9oceanbase5share11ObQSyncLock8rdunlockEv:7 + 1.1: 0 + 2: 6 +_ZN9oceanbase3lib23get_tenant_memory_limitEm:68:1 + 1: 1 + 7: 0 + 3: _ZN9oceanbase3lib17ObMallocAllocator12get_instanceEv:10 + 2: 1 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 5: _ZN9oceanbase3lib17ObMallocAllocator16get_tenant_limitEm:46 + 2: 1 + 3.3: 1 _ZN9oceanbase3lib17ObMallocAllocator27with_resource_handle_invokeEmSt8functionIFiPNS0_17ObTenantMemoryMgrEEE:1 + 7: 0 + 3: _ZNSt8functionIFiPN9oceanbase3lib17ObTenantMemoryMgrEEEC2IZNS1_17ObMallocAllocator16get_tenant_limitEmE4$_44vEET_:30 + 8: 1 + 9: 1 + 7.1: _ZNSt14_Function_base13_Base_managerIZN9oceanbase3lib17ObMallocAllocator16get_tenant_limitEmE4$_44E15_M_init_functorERSt9_Any_dataOS4_:4 + 1.1: _ZNSt14_Function_base13_Base_managerIZN9oceanbase3lib17ObMallocAllocator16get_tenant_limitEmE4$_44E15_M_init_functorERSt9_Any_dataOS4_St17integral_constantIbLb1EE:4 + 1: 1 + 3.1: _ZNSt14_Function_baseD2Ev:0 + 2: 0 + 3: 0 + 3.2: 0 + 3.2: _ZNSt14_Function_baseD2Ev:0 + 2: 0 + 3: 0 + 3.2: 0 +_ULx86_64_r_uc_addr:68:2 + 5: 2 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 12: 0 + 13: 0 + 14: 0 + 15: 0 + 16: 0 + 17: 0 + 18: 0 + 19: 0 + 20: 0 + 21: 0 + 22: 2 + 23: 0 + 26: 0 + 29: 0 +_ZZN9oceanbase5share11ObShareUtil23set_default_timeout_ctxERNS_6common12ObTimeoutCtxElENK5$_403clEPKc.441fe2e361d21edea4b580e9e157b8a3:66:1 + 0: 1 + 0.1: 0 + 0.2: 1 + 0.3: 1 _ZN9oceanbase6common8ObLogger13need_to_printEmi:1 + 0.11: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:17 + 2: 1 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.10: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase6common13ObLinkHashMapINS_11transaction9tablelock8ObLockIDENS3_9ObOBJLockENS3_14ObOBJLockAllocENS0_9RefHandleELl8EE18get_retire_stationEv:66:2 + 0: 2 + 1: 2 + 1.1: 0 + 1.2: 0 + 1.5: 0 + 1.7: 0 + 2: 2 + 1.3: _ZN9oceanbase6common13RetireStationC2ERNS0_6QClockEl:0 + 0.2: 0 + 1: 0 + 0.1: _ZN9oceanbase6common13RetireStation10RetireListC2Ev:0 + 0: 0 + 0: _ZN9oceanbase6common10HazardListC2Ev:0 + 0: 0 + 0.4: _ZN9oceanbase6common10HazardListC2Ev:0 + 0: 0 +_ZN9oceanbase3sql29ObTenantCachedSchemaGuardInfoC2Ev:66:2 + 1: 2 _ZN9oceanbase5share6schema19ObSchemaGetterGuardC1ENS1_15ObSchemaMgrItem3ModE:2 + 2: 2 + 2.1: 1 + 2.2: 0 + 2: _ZN9oceanbase3sql29ObTenantCachedSchemaGuardInfo5resetEv:29 + 2: 2 _ZN9oceanbase5share6schema19ObSchemaGetterGuard5resetEv:2 + 4: 1 +_ZN9oceanbase3sql12PCVSchemaObjD2Ev:66:1 + 1: 1 + 2.1: 0 + 3: 1 + 2: _ZN9oceanbase3sql12PCVSchemaObj5resetEv:50 + 3: 1 + 5: 1 + 6: 1 + 8: 1 + 9: 1 + 9.1: 0 + 10: 0 + 10.1: 0 + 12: 0 + 9.1: _ZN9oceanbase6common8ObString3ptrEv:0 + 0: 0 + 11: _ZN9oceanbase6common8ObString5resetEv:0 + 3: 0 +_ZN9oceanbase3sql12PCVSchemaObjD1Ev:66:1 + 1: 1 + 2.1: 0 + 3: 1 + 2: _ZN9oceanbase3sql12PCVSchemaObj5resetEv:50 + 3: 1 + 5: 1 + 6: 1 + 8: 1 + 9: 1 + 9.1: 0 + 10: 0 + 10.1: 0 + 12: 0 + 9.1: _ZN9oceanbase6common8ObString3ptrEv:0 + 0: 0 + 11: _ZN9oceanbase6common8ObString5resetEv:0 + 3: 0 +_ZN9oceanbase8memtable16ObTxCallbackListD2Ev:65:5 + 0: 5 _ZN9oceanbase6common7ObLatchD1Ev:5 +_ZN9oceanbase8memtable16ObTxCallbackListD1Ev:65:5 + 0: 5 _ZN9oceanbase6common7ObLatchD1Ev:5 +_ZN9oceanbase7storage15ObStorageLogger9write_logERNS0_17ObStorageLogParamE:65:0 + 1: 0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 7: 0 + 8: 0 + 9.1: 0 + 10.1: 0 + 10.3: 0 + 11: 0 + 12.1: 0 + 15: 0 + 16: 0 + 16.1: 0 + 17.1: 0 + 18.1: 0 + 18.2: 1 + 19.1: 0 + 24: 1 + 25: 1 + 26: 0 + 27.1: 0 + 28.1: 1 + 29.1: 0 + 31: 0 + 32: 0 + 33: 0 + 34: 0 + 35.1: 0 + 36.1: 0 + 37: 0 + 38.1: 0 + 44: 0 + 44.2: 0 + 46: 0 + 46.1: 0 + 47.1: 0 + 53: 0 + 53.1: 0 + 54: 0 + 55: 0 + 57.1: 0 + 60: 0 + 15: _ZN9oceanbase3lib11ObLockGuardINS0_7ObMutexEEC2ERS2_:0 + 1: 0 + 4: 0 + 5.1: 0 + 4: _ZN9oceanbase3lib7ObMutex4lockEv:0 + 0: 0 + 21: _ZN9oceanbase3lib11ObLockGuardINS0_7ObMutexEED2Ev:22 + 2: 1 + 3: 1 + 3.1: 1 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase3lib7ObMutex6unlockEv:1 + 0: 1 _ZN9oceanbase6common12ObLatchMutex6unlockEv:1 + 21.1: _ZN9oceanbase3lib11ObLockGuardINS0_7ObMutexEED2Ev:0 + 2: 0 + 3: 0 + 3.1: 0 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase3lib7ObMutex6unlockEv:0 + 0: 0 + 32: _ZNK9oceanbase7storage16ObStorageLogItem10get_offsetEi:0 + 0: 0 + 45: _ZN9oceanbase7storage17ObStorageLogEntryC2Ev:0 + 1: 0 + 2: 0 + 3: 0 +_ZN9oceanbase5obrpc10ObBatchRpc4run1Ev:65:0 + 0: 0 + 3.1: 5 + 4: 5 _ZN9oceanbase5obrpc14ObBatchRpcBase7do_workEv:6 + 6: 0 + 1: _ZNK9oceanbase3lib10TGRunnable14get_thread_idxEv:0 + 2: 0 + 2: _ZN9oceanbase3lib15set_thread_nameEPKcm:0 + 3: 0 + 4: 0 + 5: 0 + 7: 0 + 2: _Z12ob_get_tnamev:0 + 8: 0 + 8.1: 0 + 8.1: _ZZ12ob_get_tnamevEN8TNameBufC2Ev:0 + 1: 0 + 9: _ZN9oceanbase3lib21set_thread_name_innerEPKc:0 + 2: 0 + 3.1: _ZNK9oceanbase3lib10TGRunnable12has_set_stopEv:40 + 2: 5 +_ZNSt17_Function_handlerIFiRN9oceanbase3lib7ObLabelEPNS0_6common9LabelItemEEZNKS1_20ObTenantCtxAllocator11print_usageEvE4$_60E9_M_invokeERKSt9_Any_dataS3_OS6_.a1b49044713ee2b295a5be406ce610bf:64:1 + 1: 1 + 2: 1 + 3: 1 + 2: _ZNSt14_Function_base13_Base_managerIZNK9oceanbase3lib20ObTenantCtxAllocator11print_usageEvE4$_60E14_M_get_pointerERKSt9_Any_data:10 + 4: 1 + 166: 1 + 2.1: _ZZNK9oceanbase3lib20ObTenantCtxAllocator11print_usageEvENK4$_60clERNS0_7ObLabelEPNS_6common9LabelItemE:38 + 3: 1 + 4: 0 + 5: 0 + 7: 0 + 8: 0 + 10: 1 + 10: _ZN9oceanbase6common9LabelItempLERKS1_:24 + 2: 1 + 3: 1 + 4: 1 +_ZN9oceanbase6common15ObLogIdLevelMap9set_levelEa:64:5 + 1: 5 + 5: 5 + 8: 7 +lnprintf:63:1 + 1: 1 + 5: 1 + 6: 1 easy_vsnprintf:1 + 9: 0 +_ZZN9oceanbase6common23ObSingleConnectionProxy4readERNS0_12ObISQLClient10ReadResultEmPKcENK5$_465clES6_.3b9eb7bac0c1e969a148d6b2684be9fe:63:1 + 0: 1 + 0.1: 0 + 0.2: 0 + 0.4: 0 + 0.9: 1 + 0.11: 1 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:1 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:17 + 2: 1 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.1: _ZN9oceanbase6common10ObSzStringC2EPKc:0 + 0: 0 + 0.3: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.12: _ZN9oceanbase6common7ObLogKVINS0_10ObSzStringELb1EEC2EPKcOKS2_:0 + 0: 0 +_ZZN9oceanbase6common16ObCommonSqlProxy4readEPNS0_9sqlclient16ObISQLConnectionERNS0_12ObISQLClient10ReadResultEmPKcENK5$_247clES9_.3b9eb7bac0c1e969a148d6b2684be9fe:63:1 + 0: 1 + 0.1: 0 + 0.2: 0 + 0.4: 0 + 0.9: 1 + 0.11: 1 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:1 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:17 + 2: 1 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.1: _ZN9oceanbase6common10ObSzStringC2EPKc:0 + 0: 0 + 0.3: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.12: _ZN9oceanbase6common7ObLogKVINS0_10ObSzStringELb1EEC2EPKcOKS2_:0 + 0: 0 +_ZNSt14_Function_base13_Base_managerIZN9oceanbase3lib17ObMallocAllocator17get_tenant_remainEmE4$_46E10_M_managerERSt9_Any_dataRKS6_St18_Manager_operation.a1b49044713ee2b295a5be406ce610bf:63:3 + 2: 3 + 3: 3 + 7: 0 + 11: 0 + 22: 3 + 15: _ZNSt14_Function_base13_Base_managerIZN9oceanbase3lib17ObMallocAllocator17get_tenant_remainEmE4$_46E8_M_cloneERSt9_Any_dataRKS6_St17integral_constantIbLb1EE:0 + 2: 0 +_ZN9oceanbase6common9ObLDLatch6unlockERNS0_10ObLDHandleEPKj:63:7 + 1: 7 + 7: 7 _ZN9oceanbase6common7ObLatch6unlockEPKj:7 +_ZN9oceanbase6common11ObArrayImplIPNS_10rootserver16DRServerStatInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEE9push_backERKS4_:63:1 + 1: 1 + 2: 1 + 3: 1 + 4: 0 + 5.1: 0 + 6.1: 1 + 7: 1 _ZN9oceanbase6common11ObArrayImplIPNS_10rootserver16DRServerStatInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEE10extend_bufEv:1 + 9: 0 + 9.1: 0 + 10: 0 + 14: 0 + 17: 0 + 21: 0 + 28.1: 0 + 32: 0 + 17: _ZN9oceanbase6common16construct_assignIPNS_10rootserver16DRServerStatInfoEEEiRT_RKS5_:0 + 2: _ZN9oceanbase6common21construct_assign_wrapIPNS_10rootserver16DRServerStatInfoEEEiRT_RKS5_NS0_8BoolTypeILb0EEE:0 + 2: 0 +_ZN6obutil9ObSysTimeC2El:63:7 + 1: 7 + 2: 7 + 3: 7 +_ZN6obutil9ObSysTimeC1El:63:7 + 1: 7 + 2: 7 + 3: 7 +_ZN9oceanbase7storage4ObLS31try_update_uppder_trans_versionEv:62:0 + 1: 0 + 2: 0 + 3: 0 + 6: 0 + 8: 0 + 9: 0 + 10.1: 0 + 11.1: 0 + 12: 0 + 13.1: 0 + 15: 0 + 16: 0 + 17: 0 + 20.1: 0 + 21.1: 0 + 22.1: 0 + 24.2: 0 + 25.1: 0 + 27.1: 1 + 28: 1 _ZN9oceanbase7storage18ObLSTabletIterator15get_next_tabletERNS0_14ObTabletHandleE:1 + 28.1: 1 + 30.1: 0 + 32: 0 + 36: 0 + 37.1: 0 + 38.4: 1 + 40.2: 1 _ZN9oceanbase7storage8ObTablet26update_upper_trans_versionERNS0_4ObLSERb:1 + 40.3: 1 + 41.1: 0 + 45: 0 + 45.1: 0 + 45.2: 0 + 45.4: 0 + 46: 0 + 47.10: 0 + 47.11: 0 + 6: _ZN9oceanbase7storage13ObLSLockGuardC2ERNS0_8ObLSLockEllb:0 + 4: 0 + 14: 0 + 15: 0 + 20: _ZN9oceanbase7storage4ObLS20get_migration_statusIJRNS0_17ObMigrationStatusEEEEiDpOT_:0 + 0: 0 + 0.1: 0 + 24.1: _ZN9oceanbase7storage4ObLS17build_tablet_iterIJRNS0_18ObLSTabletIteratorEEEEiDpOT_:0 + 0: 0 + 0.1: 0 + 35.1: _ZNK9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE8is_validEv:16 + 2: 1 + 38.3: _ZNK9oceanbase7storage16ObTabletHAStatus23is_data_status_completeEv:7 + 0: _ZN9oceanbase7storage18ObTabletDataStatus11is_completeERKNS1_6STATUSE:7 + 0: 1 +_ZN9oceanbase5obrpc24ObEasyRpcRequestOperator15response_resultEPNS_3rpc9ObRequestEPNS0_11ObRpcPacketE:62:1 + 1: 1 + 4: 1 + 4.1: 1 + 5.1: 0 + 7: 1 + 8: 1 + 9: 1 + 10: 1 easy_request_wakeup:1 + 13: 0 + 4.1: _ZNK9oceanbase3rpc9ObRequest10get_ez_reqEv:7 + 2: 1 +_ZN9oceanbase10logservice11coordinator13TableAccessor29get_removed_status_and_reasonERNS_6common14ObStringHolderERbS5_:62:0 + 1: 0 + 4: 0 + 6.1: 0 + 6.2: 0 + 6.3: 0 + 6.4: 0 + 6.5: 0 + 6.6: 0 + 7.1: 0 + 9: 0 + 10: 0 + 10.1: 0 + 10.2: 0 + 10.4: 0 + 10.5: 1 + 10.6: 1 + 11.1: 0 + 13: 1 + 14: 1 + 15.2: 1 + 16.3: 0 + 17.2: 0 + 20: 0 + 20.2: 0 + 21: 0 + 22.1: 0 + 25: 0 + 25.1: 0 + 25.3: 0 + 26.1: 0 + 28: 0 + 35: 1 + 37.13: 1 _ZN9oceanbase6common11ObArrayImplINS0_14ObStringHolderENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_22NotImplementItemEncodeIS2_EEED2Ev:1 + 37.14: 0 + 37.15: 0 + 37.17: 1 _ZN9oceanbase6common5occam26ObOccamTimeGuardDetectHungD2Ev:1 + 2.2: _ZN9oceanbase6common5occam25get_file_name_without_dirIcLm75EEEPKT_RAT0__S4_m:0 + 3: 0 + 3.3: 0 + 3.4: 0 + 3.7: 0 + 518: 0 + 2.3: _ZN9oceanbase6common5occam16TimeGuardFactory10make_guardEllPKcS4_lS4_:0 + 6: 0 + 5: _ZN9oceanbase6common7ObArrayINS0_14ObStringHolderENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_22NotImplementItemEncodeIS2_EEEC2Ev:0 + 0.1: 0 + 0.5: _ZN9oceanbase6common11ObArrayImplINS0_14ObStringHolderENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_22NotImplementItemEncodeIS2_EEEC2ElRKS3_:0 + 3: 0 + 4: 0 + 7.1: 0 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 6: _ZNK9oceanbase6common14ObStringHolder5emptyEv:0 + 1: 0 + 1.1: 0 + 15.1: _ZNK9oceanbase6common12ObIArrayWrapINS0_14ObStringHolderEE5countEv:7 + 0: 1 + 16: _ZN9oceanbase6common11ObArrayImplINS0_14ObStringHolderENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_22NotImplementItemEncodeIS2_EEEixEl:0 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_14ObStringHolderEE2atEl:0 + 6: 0 + 16.1: _ZNK9oceanbase6common14ObStringHolder13get_ob_stringEv:0 + 0: 0 + 17.1: _ZNK9oceanbase6common14ObStringHolder13get_ob_stringEv:0 + 0: 0 + 0: _ZN9oceanbase6common8ObStringC2ElPKc:0 + 5: 0 + 18: _ZNK9oceanbase6common8ObString4findEc:0 + 0: 0 + 19: _ZNK9oceanbase6common8ObString12reverse_findEc:0 + 0: 0 + 25.2: _ZN9oceanbase6common14ObStringHolder6assignERKNS0_8ObStringE:0 + 3: 0 + 4: 0 + 5: 0 + 8: 0 + 9: 0 + 2: _ZN9oceanbase6common14ObStringHolder5resetEv:0 + 1: 0 + 2: 0 + 4: 0 + 3: _ZNK9oceanbase6common8ObString5emptyEv:0 + 2.1: 0 +_ZNK9oceanbase6common10ObFunctionIFbvEE7DerivedINS_7storage38ObReCheckTxNodeForLockForReadOperationEE4copyERNS0_12ObIAllocatorEPv:61:1 + 0: 1 + 7: 1 + 10: 0 + 11: 0 + 12.1: 0 + 16: 1 + 8: _ZN9oceanbase6common10ObFunctionIFbvEE7DerivedINS_7storage38ObReCheckTxNodeForLockForReadOperationEEC2IRKS6_EEOT_:30 + 0: 1 +_ZN9oceanbase6common13ObSEArrayImplINS_3sql12PCVSchemaObjELl4ENS0_19ModulePageAllocatorELb0EE9push_backERKS3_:60:1 + 2: 1 + 5: 1 + 6: 0 + 12: 0 + 15: 0 + 15.1: 1 + 16: 1 + 19: 1 + 15.1: _ZN9oceanbase6common9ObClassOpINS_3sql12PCVSchemaObjELb0EE20construct_and_assignERKS3_RS3_:11 + 3: _ZN9oceanbase6common16construct_assignINS_3sql12PCVSchemaObjEEEiRT_RKS4_:11 + 2: _ZN9oceanbase6common21construct_assign_wrapINS_3sql12PCVSchemaObjEEEiRT_RKS4_NS0_8BoolTypeILb0EEE:11 + 2: 1 +_ZN9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEE8AbstractD2Ev:60:10 + 0: 10 +_ZN9oceanbase11transaction14ObPartTransCtx22check_scheduler_statusEv:60:2 + 1: 1 + 2: 1 + 3: 1 _ZN9oceanbase11transaction7CtxLock8try_lockEv:1 + 4: 1 + 6: 0 + 8: 0 + 10.1: 0 + 10.2: 0 + 11.1: 0 + 14.1: 0 + 15: 0 + 15.1: 0 + 16.1: 0 + 22: 0 + 23: 0 + 25: 0 + 26: 0 + 27: 0 + 28.1: 0 + 33: 0 + 34: 0 + 35: 0 + 35.1: 0 + 36.1: 0 + 39.1: 0 + 41: 0 + 41.1: 0 + 42: 0 + 4: _ZN9oceanbase11transaction22CtxTransTableLockGuardC2ERNS0_7CtxLockERNS0_17TransTableSeqLockEb:9 + 3: 1 + 5: 1 _ZN9oceanbase11transaction17TransTableSeqLock10write_lockEv:1 + 6.1: 0 + 3: _ZN9oceanbase11transaction12CtxLockGuardC2ERNS0_7CtxLockEb:4 + 0: 1 + 7: _ZN9oceanbase11transaction14ObPartTransCtx29need_to_ask_scheduler_status_Ev:0 + 3: 0 + 4: 0 + 5: 0 + 3: _ZN9oceanbase11transaction14ObPartTransCtx16can_be_recycled_Ev:0 + 3: 0 + 5.1: 0 + 7.1: 0 + 9.1: 0 + 11.1: 0 + 11.2: 0 + 7.1: _ZNK9oceanbase11transaction14ObPartTransCtx12is_follower_Ev:0 + 0: 0 + 13.1: _ZNK9oceanbase11transaction14ObPartTransCtx11is_logging_Ev:0 + 0: _ZNK9oceanbase6common7ObDListINS_11transaction9ObTxLogCbEE8is_emptyEv:0 + 0: 0 + 0.3: 0 + 24: _ZN9oceanbase11transaction16ObTxKeepaliveMsgC2Ev:0 + 2: 0 + 1: _ZN9oceanbase11transaction7ObTxMsgC2Es:0 + 1: 0 + 3: 0 + 6: 0 + 9: 0 + 10: 0 + 10.1: 0 + 12: 0 + 7: _ZN9oceanbase6common6ObAddrC2Ev:0 + 1: 0 + 28: _ZN9oceanbase6common16ObClockGenerator8getClockEv:0 + 4: 0 + 5.1: 0 + 8: 0 + 6: _ZN9oceanbase6common16ObClockGenerator6get_usEv:0 + 2: 0 + 29: _ZN9oceanbase11transaction9ObTransIDaSERKS1_:0 + 1: 0 + 30: _ZN9oceanbase6common6ObAddraSERKS1_:0 + 1: 0 + 2: 0 + 3: 0 + 31: _ZN9oceanbase5share6ObLSIDaSERKS1_:0 + 0: 0 + 32: _ZN9oceanbase5share6ObLSIDaSERKS1_:0 + 0: 0 + 39: _ZN9oceanbase6common16ObClockGenerator8getClockEv:0 + 4: 0 + 5.1: 0 + 8: 0 + 6: _ZN9oceanbase6common16ObClockGenerator6get_usEv:0 + 2: 0 + 40.1: _ZN9oceanbase11transaction7ObTxMsgD2Ev:0 + 0: 0 +_ZN9oceanbase11transaction30ObTenantWeakReadClusterService21update_server_versionERKNS_6common6ObAddrEllll:59:0 + 5: 0 + 7: 0 + 8: 0 + 13: 0 + 14.1: 0 + 19: 0 + 21: 0 + 22: 0 + 25: 0 + 27: 0 + 30: 1 + 34.1: 0 + 36.1: 1 + 37: 0 + 38.1: 0 + 42: 1 _ZN9oceanbase11transaction33ObTenantWeakReadClusterVersionMgr21update_server_versionERKNS_6common6ObAddrEllllRb:1 + 44.1: 0 + 47: 0 + 48.1: 0 + 58: 0 + 13: _ZN9oceanbase6common10SpinRWLock6rdlockEl:0 + 0: 0 + 25: _ZNK9oceanbase11transaction30ObTenantWeakReadClusterService13is_in_serviceEv:0 + 0: 0 + 56: _ZN9oceanbase6common10SpinRWLock6unlockEv:0 + 0: 0 +_ZZN9oceanbase10logservice17ObLogApplyService16get_apply_statusERKNS_5share6ObLSIDERNS0_18ObApplyStatusGuardEENK5$_149clEPKc.d3a41d52a3cfae37a6a74713ee8e7132:58:1 + 0: 1 + 0.1: 0 + 0.2: 1 + 0.3: 1 _ZN9oceanbase6common8ObLogger13need_to_printEmi:1 + 0.7: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:17 + 2: 1 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS_5share6ObLSIDELb0EEC2EPKcS5_:0 + 0: 0 +_ZNSt17_Function_handlerIFiPN9oceanbase3lib17ObTenantMemoryMgrEEZNS1_17ObMallocAllocator17get_tenant_remainEmE4$_46E9_M_invokeERKSt9_Any_dataOS3_.a1b49044713ee2b295a5be406ce610bf:58:2 + 1: 2 + 2: 2 + 3: 2 + 2.1: _ZZN9oceanbase3lib17ObMallocAllocator17get_tenant_remainEmENK4$_46clEPNS0_17ObTenantMemoryMgrE:36 + 1: 2 + 1: _ZNK9oceanbase3lib17ObTenantMemoryMgr9get_limitEv:8 + 0: 2 +_ZN9oceanbase8observer19ObTenantMetaChecker14check_ls_tableEv:58:0 + 1: 0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8.1: 0 + 10: 0 + 12: 0 + 12.1: 2 + 13.1: 0 + 14.1: 2 _ZN9oceanbase8observer19ObTenantMetaChecker24check_dangling_replicas_ERNS_6common4hash9ObHashMapINS_5share6ObLSIDENS5_11ObLSReplicaENS3_24LatchReadWriteDefendModeENS3_9hash_funcIS6_EENS3_8equal_toIS6_EENS3_13SimpleAllocerINS3_15ObHashTableNodeINS3_11HashMapPairIS6_S7_EEEELi11ENS3_19SpinMutexDefendModeENS3_29DefaultSimpleAllocerAllocatorEEENS3_13NormalPointerENS2_8ObMallocELl1EEERl:2 + 14.2: 0 + 15.1: 0 + 16.1: 0 + 16.2: 0 + 17.1: 0 + 18.1: 0 + 19.1: 0 + 22.1: 0 + 26: 0 + 5.1: _ZN9oceanbase6common12ObCurTraceId4initERKNS0_6ObAddrE:0 + 2: _ZN9oceanbase6common12ObCurTraceId12get_trace_idEv:0 + 5: 0 + 5.1: 0 + 5.1: _ZN9oceanbase6common12ObCurTraceId7TraceIdC2Ev:0 + 0: 0 + 4: _ZN9oceanbase6common12ObCurTraceId7TraceId4initERKNS0_6ObAddrE:0 + 2: 0 + 4: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 11: 0 + 2: _ZN9oceanbase6common12ObCurTraceId12SeqGenerator7gen_seqEv:0 + 2: 0 + 3: 0 + 5: 0 + 4: _ZNK9oceanbase6common6ObAddr10using_ipv6Ev:0 + 0: 0 + 6: _ZNK9oceanbase6common6ObAddr8get_portEv:0 + 0: 0 + 11: _ZNK9oceanbase6common6ObAddr8get_ipv4Ev:0 + 0: 0 + 11: _ZN9oceanbase6common4hash9ObHashMapINS_5share6ObLSIDENS3_11ObLSReplicaENS1_24LatchReadWriteDefendModeENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS4_S5_EEEELi11ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev:0 + 0.1: 0 + 0: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairINS_5share6ObLSIDENS5_11ObLSReplicaEEEEELi11ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEC2Ev:0 + 0: 0 + 2: 0 + 0.1: _ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocatorC2EmRKNS_3lib7ObLabelE:0 + 3: 0 + 4: 0 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 7: 0 + 2: _ZN9oceanbase6common4hash10SpinIniterC2ERVi:0 + 2: 0 + 3.1: 0 + 0.1: _ZN9oceanbase6common4hash11ObHashTableINS_5share6ObLSIDENS1_11HashMapPairIS4_NS3_11ObLSReplicaEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi11ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev:0 + 0: 0 + 1: 0 + 0: _ZN9oceanbase6common8ObMallocC2Ev:0 + 0: 0 + 0.1: _ZN9oceanbase3lib9ObMemAttrC2EmNS0_7ObLabelEmNS0_11ObAllocPrioE:0 + 5: 0 + 7: 0 + 8: _ZN9oceanbase6common4hash9constructIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_5share6ObLSIDENS5_11ObLSReplicaEEENS0_7ObLatchENS1_5NCondEEEEEvRT_:0 + 2: _ZN9oceanbase6common4hash12do_constructIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_5share6ObLSIDENS5_11ObLSReplicaEEENS0_7ObLatchENS1_5NCondEEEEEvRT_NS1_16NormalPointerTagE:0 + 2: 0 + 0.2: _ZN9oceanbase6common8ObMallocC2Ev:0 + 0: 0 + 4: _ZN9oceanbase6common8ObMalloc8set_attrERKNS_3lib9ObMemAttrE:0 + 0: 0 + 25: _ZN9oceanbase6common4hash9ObHashMapINS_5share6ObLSIDENS3_11ObLSReplicaENS1_24LatchReadWriteDefendModeENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS4_S5_EEEELi11ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:0 + 2.2: 0 + 2: _ZN9oceanbase6common4hash11ObHashTableINS_5share6ObLSIDENS1_11HashMapPairIS4_NS3_11ObLSReplicaEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi11ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:0 + 2.1: 0 + 2: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_5share6ObLSIDENS5_11ObLSReplicaEEENS0_7ObLatchENS1_5NCondEEEEEbRKT_:0 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_5share6ObLSIDENS5_11ObLSReplicaEEENS0_7ObLatchENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:0 + 2: 0 + 3: _ZN9oceanbase6common4hash11ObHashTableINS_5share6ObLSIDENS1_11HashMapPairIS4_NS3_11ObLSReplicaEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi11ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv:0 + 6.1: 0 + 6.3: 0 + 8: 0 + 9.1: 0 + 11: 0 + 12: 0 + 15: 0 + 19: 0 + 22: 0 + 24: 0 + 10: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_11HashMapPairINS_5share6ObLSIDENS4_11ObLSReplicaEEEE16check_magic_codeEv:0 + 0: 0 + 762: 0 + 10.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 22: _ZN9oceanbase6common4hash7destroyIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_5share6ObLSIDENS5_11ObLSReplicaEEENS0_7ObLatchENS1_5NCondEEENS0_8ObMallocEEEvRT_RT0_:0 + 2: _ZN9oceanbase6common4hash10do_destroyIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_5share6ObLSIDENS5_11ObLSReplicaEEENS0_7ObLatchENS1_5NCondEEENS0_8ObMallocEEEvRT_NS1_16NormalPointerTagERT0_:0 + 2: 0 + 3: 0 + 4: 0 + 25.1: _ZN9oceanbase6common4hash9ObHashMapINS_5share6ObLSIDENS3_11ObLSReplicaENS1_24LatchReadWriteDefendModeENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS4_S5_EEEELi11ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:0 + 2.2: 0 + 2: _ZN9oceanbase6common4hash11ObHashTableINS_5share6ObLSIDENS1_11HashMapPairIS4_NS3_11ObLSReplicaEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi11ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev:0 + 2.1: 0 + 2: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_5share6ObLSIDENS5_11ObLSReplicaEEENS0_7ObLatchENS1_5NCondEEEEEbRKT_:0 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_5share6ObLSIDENS5_11ObLSReplicaEEENS0_7ObLatchENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:0 + 2: 0 + 3: _ZN9oceanbase6common4hash11ObHashTableINS_5share6ObLSIDENS1_11HashMapPairIS4_NS3_11ObLSReplicaEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi11ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv:0 + 6.1: 0 + 6.3: 0 + 8: 0 + 9.1: 0 + 11: 0 + 12: 0 + 15: 0 + 19: 0 + 22: 0 + 24: 0 + 10: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_11HashMapPairINS_5share6ObLSIDENS4_11ObLSReplicaEEEE16check_magic_codeEv:0 + 0: 0 + 762: 0 + 10.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 22: _ZN9oceanbase6common4hash7destroyIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_5share6ObLSIDENS5_11ObLSReplicaEEENS0_7ObLatchENS1_5NCondEEENS0_8ObMallocEEEvRT_RT0_:0 + 2: _ZN9oceanbase6common4hash10do_destroyIPNS1_17ObHashTableBucketINS1_11HashMapPairINS_5share6ObLSIDENS5_11ObLSReplicaEEENS0_7ObLatchENS1_5NCondEEENS0_8ObMallocEEEvRT_NS1_16NormalPointerTagERT0_:0 + 2: 0 + 3: 0 + 4: 0 +_ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImNS_5share15ObSequenceValueEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS6_EELi65ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE6createElPSI_PSL_:58:0 + 1: 0 + 2: 0 + 3: 0 + 4.1: 0 + 5: 0 + 6.1: 0 + 7.1: 0 + 9: 0 + 10.1: 1 + 12.1: 0 + 13: 0 + 16: 1 + 17: 1 + 19: 1 + 21: 1 + 6.1: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImNS_5share15ObSequenceValueEEENS1_5NLockENS1_5NCondEEEEEbRKT_:0 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImNS_5share15ObSequenceValueEEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:0 + 2: 0 + 10.1: _ZN9oceanbase6common4hash6createIPNS1_17ObHashTableBucketINS1_11HashMapPairImNS_5share15ObSequenceValueEEENS1_5NLockENS1_5NCondEEENS0_8ObMallocEEEiRT_lllRT0_:21 + 3: _ZN9oceanbase6common4hash9do_createIPNS1_17ObHashTableBucketINS1_11HashMapPairImNS_5share15ObSequenceValueEEENS1_5NLockENS1_5NCondEEENS0_8ObMallocEEEiRT_lllNS1_16NormalPointerTagERT0_:21 + 7.1: 1 + 8.1: 0 + 12: 1 +_ZN9oceanbase6common21ObFixedClassAllocatorINS0_12LinkHashNodeINS_11transaction9tablelock8ObLockIDEEEE3getERKNS_3lib7ObLabelE:58:1 + 1: 1 + 3.1: 1 + 4: 0 + 5: 0 + 5.6: 0 + 6: 0 + 8: 0 + 10: 0 + 17: 1 + 5.2: _ZN9oceanbase6common21ObFixedClassAllocatorINS0_12LinkHashNodeINS_11transaction9tablelock8ObLockIDEEEEC2EiRKNS_3lib9ObMemAttrEil:0 + 1: 0 + 0: _ZN9oceanbase6common12ObSliceAllocC2EiRKNS_3lib9ObMemAttrEiRNS0_15ObBlockAllocMgrEPv:0 + 0: 0 + 2: 0 + 3: 0 + 4: 0 + 5.1: 0 + 0: _ZN9oceanbase6common12ObSimpleSyncC2Ev:0 + 0: 0 + 0.1: _ZN9oceanbase6common12ObSliceAlloc5ArenaC2Ev:0 + 0: 0 + 0.4: _ZN9oceanbase6common12ObSimpleSyncC2Ev:0 + 0: 0 + 0.6: _ZN9oceanbase6common15ObDListWithLockC2Ev:0 + 0: 0 + 1: 0 + 2: 0 + 0: _ZN9oceanbase6common10ObSpinLockC2Ej:0 + 0: 0 + 1: 0 + 6.3: _ZN9oceanbase6common15ObDListWithLockD2Ev:0 + 0: _ZN9oceanbase6common6ObLinkD2Ev:0 + 0: 0 + 2: _ZN9oceanbase6common12ObSliceAlloc8set_nwayEi:0 + 1: 0 + 6: 0 + 7: _ZN9oceanbase6common12ObSliceAlloc24purge_extra_cached_blockEi:0 + 1: 0 + 1.1: 0 + 1.3: 0 + 2: 0 + 4: 0 + 5: 0 + 3: _ZN9oceanbase6common12ObSliceAlloc5Arena5clearEv:0 + 0: 0 + 5: _ZN9oceanbase6common13ObBlockSlicer4hashEm:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 5.1: _ZN9oceanbase6common12ObSimpleSync4syncEv:0 + 1.1: 0 + 2: 0 + 6: _ZN9oceanbase6common12ObSliceAlloc13release_blockEPNS0_13ObBlockSlicerE:0 + 1: 0 + 2: 0 + 1: _ZN9oceanbase6common11ObStockCtrl7releaseEv:0 + 0: 0 + 0: _ZN9oceanbase6common11ObStockCtrl3faaEi:0 + 0: 0 + 3.1: _ZN9oceanbase6common12ObSliceAllocD2Ev:0 + 1: 0 + 2: _ZN9oceanbase6common15ObDListWithLockD2Ev:0 + 0: _ZN9oceanbase6common6ObLinkD2Ev:0 + 0: 0 +_ZN9oceanbase5share6schema19ObSchemaGetterGuard23get_simple_table_schemaEmmRKNS_6common8ObStringEbRPKNS1_21ObSimpleTableSchemaV2Eb:58:0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 12: 0 + 13: 0 + 14.1: 0 + 15.1: 0 + 15.2: 0 + 16: 0 + 18: 0 + 19.1: 0 + 20.1: 0 + 21.1: 0 + 22.1: 2 + 29.1: 0 + 32: 2 + 12: _ZNK9oceanbase5share6schema19ObSchemaGetterGuard16check_inner_statEv:0 + 2: 0 + 3: 0 + 4: 0 + 5.1: 0 + 6.1: 0 + 6.2: 0 + 7: 0 + 7.1: 0 + 8: 0 + 9.1: 0 + 11: 0 + 17.1: _ZNK9oceanbase6common8ObString5emptyEv:0 + 2: 0 + 2.1: 0 + 20.1: _ZNK9oceanbase5share6schema19ObSchemaGetterGuard16check_lazy_guardEmRPKNS1_11ObSchemaMgrE:0 + 3: 0 + 4: 0 + 5.1: 0 + 6.1: 0 + 7: 0 + 8.1: 0 + 10: 0 +_ZN9oceanbase3lib24get_tenant_memory_remainEm:58:2 + 1: 2 + 5: 2 _ZN9oceanbase3lib17ObMallocAllocator17get_tenant_remainEm:2 + 3: _ZN9oceanbase3lib17ObMallocAllocator12get_instanceEv:20 + 2: 2 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 +_ZN9oceanbase6common10to_cstringINS0_8ObStringEEEPKcRKT_NS0_8BoolTypeILb0EEE:57:0 + 1: 0 + 7: 0 + 8.1: 0 + 12: 1 + 13: 1 + 15: 0 + 20: 1 + 4: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_13CStringBufMgrELm0EEEPT_v:0 + 7: 0 + 8: 0 + 8.1: 0 + 5: _ZN9oceanbase6common13CStringBufMgr9inc_levelEv:0 + 0: 0 + 6: _ZN9oceanbase6common13CStringBufMgr7acquireEv:0 + 3: 0 + 5: 0 + 6: 0 + 10.1: 0 + 11: 0 + 12: 0 + 18.1: 0 + 18.2: 0 + 18.4: 0 + 19: 0 + 20: 0 + 21: 0 + 4: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_13CStringBufMgr8BufArrayELm0EEEPT_v:0 + 7: 0 + 8: 0 + 8.1: 0 + 18.1: _ZN9oceanbase3lib7ObLabelC2IA13_cEERKT_:0 + 2: _ZN9oceanbase3lib7ObLabelaSILm13EEERS1_RAT__Kc:0 + 4: 0 + 11: _ZN9oceanbase6common9to_stringINS0_8ObStringEEElRKT_Pcl:0 + 2: 0 + 18: _ZN9oceanbase6common13CStringBufMgr14try_clear_listEv:16 + 2: 1 + 3.1: 1 + 5: 0 + 6.2: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 19: _ZN9oceanbase6common13CStringBufMgr9dec_levelEv:7 + 0: 1 +_ZZN9oceanbase5share19ObLSLocationService12update_cacheElmRKNS0_6ObLSIDEbRKNS0_12ObLSLocationEENK5$_312clEPKc.db28c62327e16d3ae5c8a88acfd53bbb:56:1 + 0: 1 + 0.1: 0 + 0.2: 0 + 0.3: 1 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:1 + 0.4: 0 + 0.10: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:17 + 2: 1 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.1: _ZN9oceanbase6common7ObLogKVIiLb0EEC2EPKcRKi:0 + 0: 0 + 0.5: _ZN9oceanbase6common7ObLogKVIPKcLb1EEC2ES3_OKS3_:0 + 0: 0 + 0.7: _ZN9oceanbase6common7ObLogKVIRKNS_5share20ObLSLocationCacheKeyELb0EEC2EPKcS5_:0 + 0: 0 + 0.9: _ZN9oceanbase6common7ObLogKVIRKNS_5share12ObLSLocationELb0EEC2EPKcS5_:0 + 0: 0 +_ZN9oceanbase6common11ObArrayImplIPNS0_9sqlclient28ObCommonServerConnectionPoolENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEED2Ev:56:1 + 1: 1 + 3: 1 + 3.2: 0 + 2: _ZN9oceanbase6common11ObArrayImplIPNS0_9sqlclient28ObCommonServerConnectionPoolENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEE7destroyEv:26 + 2: 1 + 6: 0 + 7: 0 + 9: 1 + 11: 1 +_ZN9oceanbase12blocksstable13ObRowCacheKeyD2Ev:56:2 + 1: 2 + 2: 2 + 2.1: _ZN9oceanbase6common10ObTabletIDD2Ev:16 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:16 + 0: 2 +_ZN9oceanbase12blocksstable13ObRowCacheKeyD1Ev:56:2 + 1: 2 + 2: 2 + 2.1: _ZN9oceanbase6common10ObTabletIDD2Ev:16 + 0: _ZN9oceanbase6common10ObTabletID5resetEv:16 + 0: 2 +_ZN9oceanbase10compaction22ObPartitionMergePolicy26check_need_buf_minor_mergeERKNS_7storage8ObTabletERb:56:4 + 3: 4 + 5: 4 + 7: 4 +_ZN9oceanbase6common11ObArrayImplINS_5share8ObLSInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE7destroyEv:55:0 + 1: 0 + 2: 0 + 3.1: 1 + 3.3: 0 + 4: 0 + 6: 1 + 7: 0 + 9: 0 + 11: 0 + 13: 0 + 6: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:44 + 0: 1 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:31 + 2: 1 + 3: 1 _ZN9oceanbase3lib17ObMallocAllocator12get_instanceEv:1 + 4: 1 + 5: 1 + 4: _ZL12abort_unlessb:6 + 5: 1 + 6: 0 +_ZN9oceanbase3sql17ObTableInsertUpOp11inner_closeEv:55:1 + 1: 1 + 2: 1 + 4.1: 1 + 4.2: 0 + 4.4: 0 + 5: 0 + 6.1: 0 + 9: 0 + 10: 0 + 11: 0 + 12: 0 + 15: 0 + 15.3: 0 + 17: 0 + 18: 0 + 18.3: 0 + 4.1: _ZN9oceanbase3lib20is_trace_log_enabledEv:8 + 2: 1 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:1 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:7 + 2: 1 + 4.2: _ZN9oceanbase6common18get_trace_recorderEv:0 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:0 + 7: 0 + 8: 0 + 8.1: 0 + 4.4: _ZN9oceanbase3lib20is_trace_log_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:0 + 2: 0 + 4.5: _ZN9oceanbase6common18get_trace_recorderEv:0 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:0 + 7: 0 + 8: 0 + 8.1: 0 + 4.11: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl189ELl1600EE9add_eventEv:0 + 2: 0 + 3.1: 0 + 6: 0 + 10: 0 + 11: 0 + 12: 0 + 4.12: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:0 + 0: 0 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 5: _ZN9oceanbase3sql17ObConflictChecker5closeEv:25 + 2: 1 + 4: 1 + 5: 1 _ZN9oceanbase3sql8ObDASRef14close_all_taskEv:1 + 6.1: 0 + 9: 0 + 4: _ZNK9oceanbase3sql8ObDASRef8has_taskEv:8 + 0: _ZNK9oceanbase6common10ObObjStoreIPNS_3sql12ObIDASTaskOpERNS0_12ObIAllocatorELb0EE5emptyEv:8 + 0: 1 + 9: _ZNK9oceanbase3sql8ObDASRef8has_taskEv:0 + 0: _ZNK9oceanbase6common10ObObjStoreIPNS_3sql12ObIDASTaskOpERNS0_12ObIAllocatorELb0EE5emptyEv:0 + 0: 0 +_ZZN9oceanbase11transaction14ObTransService9commit_txERNS0_8ObTxDescElPKNS_6common8ObStringEENK6$_1281clEPKc.93feb755617c21c32b229b78773c290c:54:1 + 0: 1 + 0.1: 0 + 0.2: 0 + 0.3: 1 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:1 + 0.9: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:17 + 2: 1 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS_11transaction8ObTxDescELb0EEC2EPKcS5_:0 + 0: 0 + 0.8: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 +_ZNK9oceanbase7storage13ObLSSavedInfo19get_serialize_size_Ev:54:0 + 0: 1 + 0: _ZN9oceanbase6common13serialization14encoded_lengthEl:0 + 2: _ZN9oceanbase6common13serialization19encoded_length_vi64El:0 + 4: 0 + 6.1: 0 + 8.1: 0 + 10.1: 0 + 12.1: 0 + 14.1: 0 + 16.1: 0 + 18.1: 0 + 0.1: _ZN9oceanbase6common13serialization14encoded_lengthINS_4palf3LSNEEElRKT_:1 + 2: _ZN9oceanbase6common13serialization11EnumEncoderILb0ENS_4palf3LSNEE14encoded_lengthERKS4_:1 + 2: 1 _ZNK9oceanbase4palf3LSN18get_serialize_sizeEv:1 + 0.2: _ZN9oceanbase6common13serialization14encoded_lengthEl:8 + 2: _ZN9oceanbase6common13serialization19encoded_length_vi64El:8 + 4: 1 + 6.1: 0 + 8.1: 0 + 10.1: 0 + 12.1: 0 + 14.1: 0 + 16.1: 0 + 18.1: 0 + 0.3: _ZN9oceanbase6common13serialization14encoded_lengthEl:8 + 2: _ZN9oceanbase6common13serialization19encoded_length_vi64El:8 + 4: 1 + 6.1: 0 + 8.1: 0 + 10.1: 0 + 12.1: 0 + 14.1: 0 + 16.1: 0 + 18.1: 0 +_ZNK9oceanbase5obrpc16ObTransRpcResult19serialize_dispatch_EPclRlSt17integral_constantIbLb0EE:54:2 + 0: 2 + 0.1: 2 _ZNK9oceanbase5obrpc16ObTransRpcResult10serialize_EPclRl:2 + 0.3: 0 + 0.9: 2 + 0.10: 0 + 0.12: 0 + 0.3: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.11: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase6common17ObReplicaProperty20set_memstore_percentEl:54:2 + 4: 2 + 5: 2 + 10: 2 +_ZN9oceanbase5share19ObBackupInfoChecker5checkEm:54:1 + 1: 1 + 2: 1 + 3: 1 + 4: 1 _ZN9oceanbase6common18ObMySQLTransactionC1Eb:1 + 8: 0 + 9: 0 + 10.1: 0 + 11.2: 0 + 13.1: 0 + 13.2: 0 + 14.1: 0 + 15.2: 0 + 16: 0 + 16.2: 0 + 18.1: 0 + 18.2: 0 + 19.1: 0 + 21.1: 0 + 22.1: 0 + 28.1: 0 + 28.2: 0 + 29.1: 0 + 30.1: 0 + 30.2: 0 + 31.1: 0 + 34: 0 + 35: 0 + 35.1: 0 + 36.1: 0 + 38.1: 0 + 38.2: 0 + 38.4: 0 + 41: 0 + 41.1: 0 + 42.1: 0 + 47: 0 + 48.12: 0 + 48.13: 0 + 48.14: 0 + 48.16: 0 + 6: _ZN9oceanbase6common7ObArrayINS_5share22ObBackupInfoSimpleItemENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEEC2Ev:0 + 0.1: 0 + 0.5: _ZN9oceanbase6common11ObArrayImplINS_5share22ObBackupInfoSimpleItemENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEEC2ElRKS4_:0 + 3: 0 + 4: 0 + 7.1: 0 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 15.1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share22ObBackupInfoSimpleItemEE5emptyEv:0 + 0: 0 + 30.1: _ZN9oceanbase5share19ObBackupInfoChecker17insert_new_items_ERNS_6common18ObMySQLTransactionEmRNS2_8ObIArrayINS0_22ObBackupInfoSimpleItemEEE:0 + 3: 0 + 6.1: 0 + 6.3: 0 + 6.5: 0 + 7: 0 + 7.1: 0 + 8.1: 0 + 4: _ZNK9oceanbase6common12ObIArrayWrapINS_5share22ObBackupInfoSimpleItemEE5countEv:0 + 0: 0 + 7: _ZN9oceanbase6common12ObIArrayWrapINS_5share22ObBackupInfoSimpleItemEE2atEl:0 + 6: 0 +_ZZN9oceanbase11transaction14ObTransService22handle_trans_keepaliveERKNS0_16ObTxKeepaliveMsgERNS_5obrpc16ObTransRpcResultEENK5$_982clEPKc.93feb755617c21c32b229b78773c290c:52:1 + 0: 1 + 0.1: 0 + 0.2: 0 + 0.3: 1 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:1 + 0.7: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:17 + 2: 1 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.6: _ZN9oceanbase6common7ObLogKVIRKNS_11transaction16ObTxKeepaliveMsgELb0EEC2EPKcS5_:0 + 0: 0 +_ZNK9oceanbase7storage19ObMemtableMgrHandle8is_validEv:52:4 + 1: 4 + 2: 4 +_ZNK9oceanbase6common13ObSEArrayImplINS0_15ObWarningBuffer11WarningItemELl2ENS0_19ModulePageAllocatorELb0EE9serializeEPclRl:52:0 + 2: 0 + 3: 0 + 4: 1 + 5.1: 0 + 7.1: 1 + 7.2: 1 + 7.3: 1 + 7.5: 0 + 8: 0 + 9.1: 0 + 12: 1 + 4.1: _ZN9oceanbase6common13serialization11encode_vi64EPclRll:7 + 3: 0 + 4: 0 + 5: 0 + 6.1: 0 + 7: 0 + 8: 0 + 11: 1 + 4: _ZN9oceanbase6common13serialization19encoded_length_vi64El:0 + 4: 0 + 6.1: 0 + 8.1: 0 + 10.1: 0 + 12.1: 0 + 14.1: 0 + 16.1: 0 + 18.1: 0 + 8: _ZNK9oceanbase6common12ObIArrayWrapINS0_15ObWarningBuffer11WarningItemEE2atEl:0 + 6: 0 + 8.1: _ZN9oceanbase6common13serialization6encodeINS0_15ObWarningBuffer11WarningItemEEEiPclRlRKT_:0 + 2: _ZN9oceanbase6common13serialization11EnumEncoderILb0ENS0_15ObWarningBuffer11WarningItemEE6encodeEPclRlRKS4_:0 + 2: 0 +_ZNK9oceanbase5share6schema14ObTenantSchema8is_validEv:52:2 + 1: 2 + 2: 2 + 2.1: 2 + 2.2: 2 + 2.3: 2 + 2: _ZNK9oceanbase5share6schema8ObSchema8is_validEv:8 + 0: 2 +_ZNK9oceanbase4palf11LogStateMgr10get_leaderEv:52:4 + 0: 4 +_ZN9oceanbase6common8function24DefaultFunctionAllocator21get_default_allocatorEv:52:2 + 0: 2 + 1: 2 + 1.1: 0 + 1.3: 0 + 2: 2 +_ZNK9oceanbase6common12ObTimeoutCtx15get_abs_timeoutEl:51:3 + 1: 3 + 3: 3 + 6: 3 +_ZN9oceanbase6common11ObArrayImplINS0_14ObStringHolderENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_22NotImplementItemEncodeIS2_EEE7destroyEv:51:1 + 1: 1 + 2: 1 + 3.1: 0 + 3.3: 0 + 4: 0 + 6: 0 + 7: 0 + 9: 1 + 11: 1 + 13: 1 +_ZN9oceanbase3sql23ObEndTransAsyncCallbackC2Ev:51:1 + 2: 1 _ZN9oceanbase8observer15ObSqlEndTransCbC1Ev:1 + 3: 1 + 1: _ZN9oceanbase3sql27ObExclusiveEndTransCallbackC2Ev:25 + 0: _ZN9oceanbase3sql19ObIEndTransCallbackC2Ev:8 + 0.1: _ZN9oceanbase3sql19ObIEndTransCallback5resetEv:8 + 3: 1 + 4: 1 + 2: _ZN9oceanbase3sql27ObExclusiveEndTransCallback5resetEv:17 + 4: 1 + 2: _ZN9oceanbase3sql19ObIEndTransCallback5resetEv:11 + 2: 1 + 3: 1 + 4: 1 +_ZN9oceanbase3sql23ObEndTransAsyncCallbackC1Ev:51:1 + 2: 1 _ZN9oceanbase8observer15ObSqlEndTransCbC1Ev:1 + 3: 1 + 1: _ZN9oceanbase3sql27ObExclusiveEndTransCallbackC2Ev:25 + 0: _ZN9oceanbase3sql19ObIEndTransCallbackC2Ev:8 + 0.1: _ZN9oceanbase3sql19ObIEndTransCallback5resetEv:8 + 3: 1 + 4: 1 + 2: _ZN9oceanbase3sql27ObExclusiveEndTransCallback5resetEv:17 + 4: 1 + 2: _ZN9oceanbase3sql19ObIEndTransCallback5resetEv:11 + 2: 1 + 3: 1 + 4: 1 +_ZN9oceanbase3sql16ObSQLSessionInfo36refresh_temp_tables_sess_active_timeEv:51:1 + 1: 1 + 2: 1 + 5: 1 + 5.2: 0 + 6: 0 + 7: 0 + 9.1: 0 + 10: 0 + 10.4: 0 + 10.6: 0 + 10.7: 0 + 10.9: 0 + 10.10: 0 + 10.13: 0 + 12.1: 0 + 13: 0 + 14: 0 + 14.1: 0 + 15: 0 + 16: 0 + 17: 0 + 18: 0 + 19: 0 + 19.1: 0 + 20.1: 0 + 21.1: 0 + 21.2: 0 + 21.3: 0 + 22.1: 0 + 23.2: 0 + 23.3: 0 + 24.1: 0 + 30: 0 + 30.1: 0 + 30.3: 0 + 34.10: 1 + 5: _ZNK9oceanbase3sql16ObSQLSessionInfo23get_has_temp_table_flagEv:7 + 0: 1 + 5.1: _ZNK9oceanbase3sql18ObBasicSessionInfo15is_obproxy_modeEv:0 + 0: 0 + 6.1: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 + 8: _ZN9oceanbase5obrpc15ObAlterTableResC2Ev:0 + 2: 0 + 5: 0 + 6: 0 + 4: _ZN9oceanbase6common7ObArrayINS_5obrpc18ObAlterTableResArgENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEEC2Ev:0 + 0.1: 0 + 0.5: _ZN9oceanbase6common11ObArrayImplINS_5obrpc18ObAlterTableResArgENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEEC2ElRKS4_:0 + 7.1: 0 + 2: _ZN9oceanbase6common8ObIArrayINS_5obrpc18ObAlterTableResArgEEC2Ev:0 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_5obrpc18ObAlterTableResArgEEC2Ev:0 + 0: 0 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 7: _ZN9oceanbase6common7ObArrayINS_5obrpc8ObDDLResENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEEC2Ev:0 + 0.1: 0 + 0.5: _ZN9oceanbase6common11ObArrayImplINS_5obrpc8ObDDLResENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEEC2ElRKS4_:0 + 7.1: 0 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 10.2: _ZN9oceanbase6common8precheckINS_5obrpc15ObAlterTableArgEEEibRb:0 + 6: 0 + 10.12: _ZN9oceanbase6common2SVINS_5obrpc15ObAlterTableArgELb0EE3getEv:0 + 2: 0 + 12: _ZNK9oceanbase3sql18ObBasicSessionInfo20get_sessid_for_tableEv:0 + 0: 0 + 0.2: 0 + 0.5: 0 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo15is_obproxy_modeEv:0 + 0: 0 + 0.1: _ZNK9oceanbase3sql18ObBasicSessionInfo16get_proxy_sessidEv:0 + 0: 0 + 0.2: _ZNK9oceanbase3sql18ObBasicSessionInfo17is_master_sessionEv:0 + 0: 0 + 0.3: _ZNK9oceanbase3sql18ObBasicSessionInfo10get_sessidEv:0 + 0: 0 + 21.1: _ZNK9oceanbase3sql18ObBasicSessionInfo16get_tz_info_wrapEv:0 + 0: 0 + 23.1: _ZN9oceanbase5obrpc9ObRpcOptsC2Ev:0 + 1: 0 + 2: 0 + 3: 0 + 8: 0 + 5: _ZN9oceanbase6common6ObAddrC2Ev:0 + 1: 0 + 6: _ZN9oceanbase6common8ObStringC2Ev:0 + 1: 0 + 27: _ZN9oceanbase3sql16ObSQLSessionInfo32set_last_refresh_temp_table_timeEl:0 + 0: 0 + 33: _ZN9oceanbase5obrpc15ObAlterTableResD2Ev:0 + 0: 0 + 0.1: 0 + 33.1: _ZN9oceanbase5obrpc15ObAlterTableResD2Ev:0 + 0: 0 + 0.1: 0 +_ZN9oceanbase3sql16ObRawExprFactory7destoryEv:51:1 + 1: 1 + 2: 1 + 3: 0 + 6: 1 + 6.1: 1 + 6.3: 1 + 7.1: 0 + 8: 0 + 8.1: 0 + 13: 1 + 4: _ZN9oceanbase6common10ObObjStoreIPNS_3sql9ObRawExprERNS0_12ObIAllocatorELb1EE7destroyEv:0 + 2.1: 0 + 4: 0 + 5: 0 + 2: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql9ObRawExprEEEE12remove_firstEv:0 + 2: 0 + 2: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql9ObRawExprEEEE6removeEPS6_:0 + 3: 0 + 2.5: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql9ObRawExprEEEE12remove_firstEv:0 + 2: 0 + 2: _ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql9ObRawExprEEEE6removeEPS6_:0 + 3: 0 + 11: _ZN9oceanbase6common10ObObjStoreIPNS_3sql9ObRawExprERNS0_12ObIAllocatorELb1EE7destroyEv:9 + 2.1: 0 + 4: 0 + 5: 0 +_ZN9oceanbase3rpc13ObSqlSockDesc22clear_sql_session_infoEv:51:3 + 0: 3 + 1: 3 + 2.1: 0 + 4: 0 + 8: 3 +_ZN9oceanbase11transaction18GetRecLogTSFunctorclEPNS0_10ObTransCtxE:51:1 + 0: 1 + 0.1: 1 __dynamic_cast:1 + 0.3: 0 + 0.4: 2 + 0.7: 0 +_ZN9oceanbase6common18ObMySQLTransaction5startEPNS0_12ObISQLClientEmb:50:1 + 4: 1 + 6: 1 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:1 + 7: 1 + 8.1: 0 + 9.1: 0 + 9.2: 0 + 9.3: 0 + 10.1: 0 + 12: 0 + 15.1: 0 + 17: 0 + 21: 0 + 9.5: _ZN9oceanbase6common4hash9ObHashMapIPKcPNS0_24ObSqlTransQueryStashDescENS1_24LatchReadWriteDefendModeENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS4_S6_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE6createElRKNS_3lib7ObLabelESQ_mm:0 + 5: 0 + 6: 0 + 6.1: 0 + 8: 0 + 4.1: _ZN9oceanbase6common4hash13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIPKcPNS0_24ObSqlTransQueryStashDescEEEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEE8set_attrERKNS_3lib9ObMemAttrE:0 + 0: _ZN9oceanbase6common4hash29DefaultSimpleAllocerAllocator8set_attrERKNS_3lib9ObMemAttrE:0 + 0: 0 + 5.1: _ZN9oceanbase6common8ObMalloc8set_attrERKNS_3lib9ObMemAttrE:0 + 0: 0 + 6: _ZN9oceanbase6common4hash14cal_next_primeEl:0 + 7: 0 + 7.3: 0 + 6: _ZSt11lower_boundIPKllET_S2_S2_RKT0_:0 + 9: _ZSt13__lower_boundIPKllN9__gnu_cxx5__ops14_Iter_less_valEET_S5_S5_RKT0_T1_:0 + 8.1: 0 + 10: 0 + 13: 0 + 13: _ZNK9__gnu_cxx5__ops14_Iter_less_valclIPKlS3_EEbT_RT0_:0 + 1: 0 + 12: _ZN9oceanbase6common18ObMySQLTransaction17start_transactionERKmb:0 + 4: 0 + 5: 0 + 6: 0 + 7.1: 0 + 8.1: 0 + 8.2: 0 + 9.1: 0 + 11: 0 + 5: _ZN9oceanbase6common23ObSingleConnectionProxy14get_connectionEv:0 + 0: 0 + 13: _ZN9oceanbase6common23ObSingleConnectionProxy9set_errnoEi:0 + 0: 0 + 14: _ZN9oceanbase6common23ObSingleConnectionProxy5closeEv:0 + 2: 0 + 2.1: 0 + 3: 0 + 6: 0 + 7: 0 +_ZN9oceanbase5share19ObSysVarLocalInfileC2Ev:50:0 + 0: 1 + 0: _ZN9oceanbase5share12ObBoolSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:34 + 5: _ZN9oceanbase5share15ObTypeLibSysVarC2EPPKcPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSF_EPFiS7_SA_SD_SH_EPFiRNSE_12ObIAllocatorERKNS5_18ObBasicSessionInfoESD_SI_EPFiSO_SR_SD_RNSE_8ObStringEEPFNSE_9ObObjTypeEvEb:34 + 14: 0 + 7: _ZN9oceanbase5share13ObBasicSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKS1_RKNS_6common5ObObjERSB_EPFiS4_S7_S9_SD_EPFiRNSA_12ObIAllocatorERKNS2_18ObBasicSessionInfoES9_SE_EPFiSK_SN_S9_RNSA_8ObStringEEPFNSA_9ObObjTypeEvEb:0 + 11: 0 + 13: 0 + 20: _ZN9oceanbase5share13ObBasicSysVar11clean_valueEv:0 + 2: _ZN9oceanbase5share13ObBasicSysVar16clean_base_valueEv:0 + 2: 0 + 3: _ZN9oceanbase6common5ObObj13set_nop_valueEv:0 + 2: _ZN9oceanbase6common5ObObj7set_extEl:0 + 4: 0 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:0 + 0: 0 + 3: _ZN9oceanbase5share13ObBasicSysVar15clean_inc_valueEv:0 + 2: _ZN9oceanbase6common5ObObj13set_nop_valueEv:0 + 2: _ZN9oceanbase6common5ObObj7set_extEl:0 + 4: 0 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:0 + 0: 0 + 4: _ZN9oceanbase6common5ObObj5resetEv:0 + 6: 0 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:0 + 0: 0 + 5: _ZN9oceanbase6common5ObObj5resetEv:0 + 6: 0 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:0 + 0: 0 + 13: _ZN9oceanbase5share15ObSysVarTypeLibC2EPPKc:34 + 1: 0 + 2: 0 + 3: 0 + 8.1: 2 + 8.3: 2 + 9: 1 +_ZN9oceanbase5share19ObBackupInfoChecker4initEPNS_6common12ObMySQLProxyERKNS0_25ObBackupInnerTableVersionE:50:1 + 2: 1 + 3: 1 + 5: 1 + 6: 0 + 7.1: 0 + 8.1: 1 + 9: 0 + 10.1: 0 + 12: 1 + 13: 1 + 14: 1 + 16: 1 +_ZN9oceanbase3sql16ObSQLSessionInfo17close_all_ps_stmtEv:50:1 + 1: 1 + 2: 1 + 3: 1 + 5.1: 0 + 9: 0 + 10.1: 0 + 10.2: 0 + 11: 0 + 12: 0 + 13.1: 0 + 14.1: 0 + 15.1: 0 + 16.1: 0 + 19: 0 + 19.1: 0 + 20: 0 + 21: 0 + 27: 1 + 5.1: _ZNK9oceanbase6common4hash9ObHashMapImPNS_3sql15ObPsSessionInfoENS1_19NoPthreadDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS5_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE7createdEv:0 + 2: _ZNK9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS_3sql15ObPsSessionInfoEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE7createdEv:0 + 2: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImPNS_3sql15ObPsSessionInfoEEENS1_5NLockENS1_5NCondEEEEEbRKT_:0 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairImPNS_3sql15ObPsSessionInfoEEENS1_5NLockENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:0 + 2: 0 + 8: _ZN9oceanbase6common4hash9ObHashMapImPNS_3sql15ObPsSessionInfoENS1_19NoPthreadDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS5_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE5beginEv:0 + 2: 0 + 10.3: _ZNK9oceanbase6common4hash19ObHashTableIteratorImNS1_11HashMapPairImPNS_3sql15ObPsSessionInfoEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEneERKSN_:0 + 2: 0 + 16.1: _ZNK9oceanbase6common4hash19ObHashTableIteratorImNS1_11HashMapPairImPNS_3sql15ObPsSessionInfoEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEptEv:0 + 3: 0 + 20: _ZNK9oceanbase6common4hash19ObHashTableIteratorImNS1_11HashMapPairImPNS_3sql15ObPsSessionInfoEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEptEv:0 + 3: 0 + 20.1: _ZN9oceanbase6common21ObSmallBlockAllocatorINS0_8ObMallocENS0_10ObNullLockEE4freeEPv:0 + 0: _ZN9oceanbase6common6ObPoolINS0_8ObMallocENS0_10ObNullLockEE4freeEPv:0 + 3: 0 + 4.1: 0 + 6: _ZN9oceanbase6common6ObPoolINS0_8ObMallocENS0_10ObNullLockEE13freelist_pushEPv:0 + 7: 0 + 8: 0 + 9.1: 0 + 21: _ZNK9oceanbase6common4hash19ObHashTableIteratorImNS1_11HashMapPairImPNS_3sql15ObPsSessionInfoEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEptEv:0 + 3: 0 + 24: _ZN9oceanbase6common21ObSmallBlockAllocatorINS0_8ObMallocENS0_10ObNullLockEE5resetEv:0 + 0: 0 + 25: _ZN9oceanbase6common4hash9ObHashMapImPNS_3sql15ObPsSessionInfoENS1_19NoPthreadDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS5_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE5reuseEv:0 + 2: 0 +_ZN9oceanbase6common12ObTimeoutCtx7get_ctxEv:49:1 + 1: 1 + 3: 1 + 3.1: 0 + 3.3: 0 + 3.6: 0 + 5: 1 + 8: 1 + 3.2: _ZN9oceanbase6common12ObTimeoutCtxC2Eb:0 + 0: 0 + 1: 0 +_ZN9oceanbase7storage15ObStorageLogger14build_log_itemERNS0_17ObStorageLogParamERPNS0_16ObStorageLogItemE:48:0 + 1: 0 + 2: 0 + 5.3: 1 + 7: 0 + 7.1: 1 + 9.1: 1 _ZNK9oceanbase7storage11ObLSMetaLog18get_serialize_sizeEv:1 + 9.2: 0 + 11: 0 + 11.1: 0 + 12.1: 0 + 13.1: 0 + 14: 0 + 15.1: 0 + 16.3: 0 + 17.1: 0 + 18.1: 0 + 18.2: 1 + 19.1: 0 + 20.1: 1 _ZN9oceanbase7storage16ObStorageLogItem17fill_batch_headerEisl:1 + 20.2: 0 + 21.1: 0 + 23: 0 + 26: 0 + 27.8: 0 + 16.2: _ZN9oceanbase7storage16ObStorageLogItem12set_data_lenEl:0 + 2: 0 + 3: 0 + 4: 0 + 5.1: 0 + 6.2: 0 + 6.3: 0 + 7: 0 + 8.1: 0 + 10: 0 + 12: 0 +_ZN9oceanbase6common9ObCharset6strcmpENS0_15ObCollationTypeERKNS0_8ObStringES5_:48:1 + 2: 1 + 2.1: 1 + 4: 1 + 5: 0 + 8.1: 1 + 11.4: 1 _ZN9oceanbase6common9ObCharset6strcmpENS0_15ObCollationTypeEPKclS4_l:1 + 4: _ZNK9oceanbase6common8ObString5emptyEv:16 + 2: 1 + 2.1: 1 +_ZN9oceanbase6common23ObSingleConnectionProxy4readERNS0_12ObISQLClient10ReadResultEmPKc:48:0 + 2: 0 + 3: 0 + 6: 0 + 7.1: 0 + 8.1: 1 + 9: 0 + 11: 0 + 12.1: 0 + 14.1: 0 + 17: 1 + 18.1: 1 _ZZN9oceanbase6common23ObSingleConnectionProxy4readERNS0_12ObISQLClient10ReadResultEmPKcENK5$_465clES6_.3b9eb7bac0c1e969a148d6b2684be9fe:1 + 19: 1 + 4: _ZN9oceanbase6common12ObISQLClient10ReadResult5resetEv:0 + 2: 0 + 3: 0 + 4: 0 + 5: _ZNK9oceanbase6common23ObSingleConnectionProxy16check_inner_statEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 3: 0 + 4.1: 0 +_ZN9oceanbase6common18ObTimeZoneInfoWrapD2Ev:48:0 + 0: 0 + 0.1: _ZN9oceanbase6common17ObTimeZoneInfoPosD2Ev:48 + 0: 0 + 0.1: 0 + 0.3: 6 _ZN9oceanbase6common11ObArrayImplINS0_22ObTZTransitionTypeInfoENS0_8ObMallocELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_17DefaultItemEncodeIS2_EEED2Ev:3 +_ZN9oceanbase6common10ObFunctionIFbvEE8AbstractD2Ev:48:9 + 0: 8 +_ZN9oceanbase12blocksstable10ObRowCache7get_rowERKNS0_13ObRowCacheKeyERNS0_16ObRowValueHandleE:48:0 + 1: 0 + 2: 0 + 3: 0 + 5: 0 + 6: 0 + 7.1: 0 + 8.1: 1 + 10.1: 0 + 12.1: 2 + 12.2: 0 + 12.3: 0 + 12.4: 0 + 12.6: 0 + 12.7: 0 + 14.1: 0 + 14.2: 0 + 14.3: 0 + 14.4: 0 + 14.6: 0 + 14.7: 0 + 15: 0 + 16: 0 + 17.1: 0 + 19: 0 + 22: 2 + 5: _ZNK9oceanbase12blocksstable13ObRowCacheKey8is_validEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.1: _ZNK9oceanbase6common10ObTabletID8is_validEv:0 + 0: 0 + 2.4: _ZN9oceanbase7storage8ObITable16is_minor_sstableENS1_9TableTypeE:0 + 3: 0 + 2.6: _ZNK9oceanbase12blocksstable13ObDatumRowkey8is_validEv:0 + 0: 0 + 0.1: 0 + 12.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:9 + 2: 1 _ZN9oceanbase3lib11ObLibConfig12get_instanceEv:1 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:8 + 2: 2 + 14.1: _ZN9oceanbase3lib24is_diagnose_info_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig24is_diagnose_info_enabledEv:0 + 2: 0 +_ZSt16__introsort_loopIPZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS1_7ObLabelEPNS0_6common9LabelItemEEEE11ItemWrapperlN9__gnu_cxx5__ops15_Iter_comp_iterIZNKS2_10iter_labelESA_E4$_57EEEvT_SI_T0_T1_.a1b49044713ee2b295a5be406ce610bf:46:1 + 3: 1 + 4.1: 1 + 6: 0 + 14: 0 + 17: 1 + 8: _ZSt14__partial_sortIPZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS1_7ObLabelEPNS0_6common9LabelItemEEEE11ItemWrapperN9__gnu_cxx5__ops15_Iter_comp_iterIZNKS2_10iter_labelESA_E4$_57EEEvT_SI_SI_T0_:0 + 5: _ZSt13__heap_selectIPZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS1_7ObLabelEPNS0_6common9LabelItemEEEE11ItemWrapperN9__gnu_cxx5__ops15_Iter_comp_iterIZNKS2_10iter_labelESA_E4$_57EEEvT_SI_SI_T0_:0 + 4: _ZSt11__make_heapIPZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS1_7ObLabelEPNS0_6common9LabelItemEEEE11ItemWrapperN9__gnu_cxx5__ops15_Iter_comp_iterIZNKS2_10iter_labelESA_E4$_57EEEvT_SI_T0_:0 + 12: 0 + 15: 0 + 18: 0 + 16.1: _ZSt13__adjust_heapIPZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS1_7ObLabelEPNS0_6common9LabelItemEEEE11ItemWrapperlSB_N9__gnu_cxx5__ops15_Iter_comp_iterIZNKS2_10iter_labelESA_E4$_57EEEvT_T0_SJ_T1_T2_:0 + 5.1: 0 + 7: 0 + 8: 0 + 9: 0 + 11: 0 + 14: 0 + 17: 0 + 8: _ZN9__gnu_cxx5__ops15_Iter_comp_iterIZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS3_7ObLabelEPNS2_6common9LabelItemEEEE4$_57EclIPZNKS4_10iter_labelESC_E11ItemWrapperSH_EEbT_T0_:0 + 1: _ZZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS0_7ObLabelEPNS_6common9LabelItemEEEENK4$_57clERZNKS1_10iter_labelES9_E11ItemWrapperSC_:0 + 2: 0 + 21: _ZSt11__push_heapIPZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS1_7ObLabelEPNS0_6common9LabelItemEEEE11ItemWrapperlSB_N9__gnu_cxx5__ops14_Iter_comp_valIZNKS2_10iter_labelESA_E4$_57EEEvT_T0_SJ_T1_T2_:0 + 5.1: 0 + 5.3: 0 + 7: 0 + 11: 0 + 5.2: _ZN9__gnu_cxx5__ops14_Iter_comp_valIZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS3_7ObLabelEPNS2_6common9LabelItemEEEE4$_57EclIPZNKS4_10iter_labelESC_E11ItemWrapperSG_EEbT_RT0_:0 + 1: _ZZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS0_7ObLabelEPNS_6common9LabelItemEEEENK4$_57clERZNKS1_10iter_labelES9_E11ItemWrapperSC_:0 + 2: 0 + 6: _ZSt11__sort_heapIPZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS1_7ObLabelEPNS0_6common9LabelItemEEEE11ItemWrapperN9__gnu_cxx5__ops15_Iter_comp_iterIZNKS2_10iter_labelESA_E4$_57EEEvT_SI_T0_:0 + 3.1: 0 + 5: 0 + 6: _ZSt10__pop_heapIPZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS1_7ObLabelEPNS0_6common9LabelItemEEEE11ItemWrapperN9__gnu_cxx5__ops15_Iter_comp_iterIZNKS2_10iter_labelESA_E4$_57EEEvT_SI_SI_T0_:0 + 8: 0 + 9: 0 + 11: 0 + 10: _ZSt13__adjust_heapIPZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS1_7ObLabelEPNS0_6common9LabelItemEEEE11ItemWrapperlSB_N9__gnu_cxx5__ops15_Iter_comp_iterIZNKS2_10iter_labelESA_E4$_57EEEvT_T0_SJ_T1_T2_:0 + 5.1: 0 + 7: 0 + 8: 0 + 9: 0 + 11: 0 + 14: 0 + 14.1: 0 + 17: 0 + 8: _ZN9__gnu_cxx5__ops15_Iter_comp_iterIZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS3_7ObLabelEPNS2_6common9LabelItemEEEE4$_57EclIPZNKS4_10iter_labelESC_E11ItemWrapperSH_EEbT_T0_:0 + 1: _ZZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS0_7ObLabelEPNS_6common9LabelItemEEEENK4$_57clERZNKS1_10iter_labelES9_E11ItemWrapperSC_:0 + 2: 0 + 21: _ZSt11__push_heapIPZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS1_7ObLabelEPNS0_6common9LabelItemEEEE11ItemWrapperlSB_N9__gnu_cxx5__ops14_Iter_comp_valIZNKS2_10iter_labelESA_E4$_57EEEvT_T0_SJ_T1_T2_:0 + 5.1: 0 + 5.3: 0 + 7: 0 + 11: 0 + 5.2: _ZN9__gnu_cxx5__ops14_Iter_comp_valIZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS3_7ObLabelEPNS2_6common9LabelItemEEEE4$_57EclIPZNKS4_10iter_labelESC_E11ItemWrapperSG_EEbT_RT0_:0 + 1: _ZZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS0_7ObLabelEPNS_6common9LabelItemEEEENK4$_57clERZNKS1_10iter_labelES9_E11ItemWrapperSC_:0 + 2: 0 + 13: _ZSt27__unguarded_partition_pivotIPZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS1_7ObLabelEPNS0_6common9LabelItemEEEE11ItemWrapperN9__gnu_cxx5__ops15_Iter_comp_iterIZNKS2_10iter_labelESA_E4$_57EEET_SI_SI_T0_:0 + 3: 0 + 4: 0 + 4: _ZSt22__move_median_to_firstIPZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS1_7ObLabelEPNS0_6common9LabelItemEEEE11ItemWrapperN9__gnu_cxx5__ops15_Iter_comp_iterIZNKS2_10iter_labelESA_E4$_57EEEvT_SI_SI_SI_T0_:0 + 3: 0 + 5: 0 + 7: 0 + 12: 0 + 14: 0 + 3: _ZN9__gnu_cxx5__ops15_Iter_comp_iterIZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS3_7ObLabelEPNS2_6common9LabelItemEEEE4$_57EclIPZNKS4_10iter_labelESC_E11ItemWrapperSH_EEbT_T0_:0 + 1: _ZZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS0_7ObLabelEPNS_6common9LabelItemEEEENK4$_57clERZNKS1_10iter_labelES9_E11ItemWrapperSC_:0 + 2: 0 + 5: _ZN9__gnu_cxx5__ops15_Iter_comp_iterIZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS3_7ObLabelEPNS2_6common9LabelItemEEEE4$_57EclIPZNKS4_10iter_labelESC_E11ItemWrapperSH_EEbT_T0_:0 + 1: _ZZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS0_7ObLabelEPNS_6common9LabelItemEEEENK4$_57clERZNKS1_10iter_labelES9_E11ItemWrapperSC_:0 + 2: 0 + 7: _ZN9__gnu_cxx5__ops15_Iter_comp_iterIZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS3_7ObLabelEPNS2_6common9LabelItemEEEE4$_57EclIPZNKS4_10iter_labelESC_E11ItemWrapperSH_EEbT_T0_:0 + 1: _ZZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS0_7ObLabelEPNS_6common9LabelItemEEEENK4$_57clERZNKS1_10iter_labelES9_E11ItemWrapperSC_:0 + 2: 0 + 12: _ZN9__gnu_cxx5__ops15_Iter_comp_iterIZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS3_7ObLabelEPNS2_6common9LabelItemEEEE4$_57EclIPZNKS4_10iter_labelESC_E11ItemWrapperSH_EEbT_T0_:0 + 1: _ZZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS0_7ObLabelEPNS_6common9LabelItemEEEENK4$_57clERZNKS1_10iter_labelES9_E11ItemWrapperSC_:0 + 2: 0 + 65488: 0 + 14: _ZN9__gnu_cxx5__ops15_Iter_comp_iterIZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS3_7ObLabelEPNS2_6common9LabelItemEEEE4$_57EclIPZNKS4_10iter_labelESC_E11ItemWrapperSH_EEbT_T0_:0 + 1: _ZZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS0_7ObLabelEPNS_6common9LabelItemEEEENK4$_57clERZNKS1_10iter_labelES9_E11ItemWrapperSC_:0 + 2: 0 + 6: _ZSt21__unguarded_partitionIPZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS1_7ObLabelEPNS0_6common9LabelItemEEEE11ItemWrapperN9__gnu_cxx5__ops15_Iter_comp_iterIZNKS2_10iter_labelESA_E4$_57EEET_SI_SI_SI_T0_:0 + 6: 0 + 6.1: 0 + 9: 0 + 9.1: 0 + 11: 0 + 6.1: _ZN9__gnu_cxx5__ops15_Iter_comp_iterIZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS3_7ObLabelEPNS2_6common9LabelItemEEEE4$_57EclIPZNKS4_10iter_labelESC_E11ItemWrapperSH_EEbT_T0_:0 + 1: _ZZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS0_7ObLabelEPNS_6common9LabelItemEEEENK4$_57clERZNKS1_10iter_labelES9_E11ItemWrapperSC_:0 + 2: 0 + 9.1: _ZN9__gnu_cxx5__ops15_Iter_comp_iterIZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS3_7ObLabelEPNS2_6common9LabelItemEEEE4$_57EclIPZNKS4_10iter_labelESC_E11ItemWrapperSH_EEbT_T0_:0 + 1: _ZZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS0_7ObLabelEPNS_6common9LabelItemEEEENK4$_57clERZNKS1_10iter_labelES9_E11ItemWrapperSC_:0 + 2: 0 + 1767: 0 + 13: _ZSt9iter_swapIPZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS1_7ObLabelEPNS0_6common9LabelItemEEEE11ItemWrapperSC_EvT_T0_:0 + 28: _ZSt4swapIZNK9oceanbase3lib20ObTenantCtxAllocator10iter_labelESt8functionIFiRNS1_7ObLabelEPNS0_6common9LabelItemEEEE11ItemWrapperEvRT_SD_:0 + 9: 0 + 10: 0 + 11: 0 +_ZNK9oceanbase11transaction9ObTransID18get_serialize_sizeEv:46:1 + 0: 1 + 0: _ZNK9oceanbase11transaction9ObTransID28get_serialize_size_dispatch_ESt17integral_constantIbLb0EE:34 + 0: _ZNK9oceanbase11transaction9ObTransID19get_serialize_size_Ev:34 + 0: 1 + 0: _ZN9oceanbase6common13serialization14encoded_lengthEl:31 + 2: _ZN9oceanbase6common13serialization19encoded_length_vi64El:31 + 4: 1 + 6.1: 1 + 8.1: 1 + 10.1: 1 + 12.1: 0 + 14.1: 0 + 16.1: 0 + 18.1: 0 +_ZNK9oceanbase11transaction14ObPartTransCtx14get_rec_log_tsEv:46:2 + 1: 2 + 2: 2 + 4: 0 + 2: _ZN9oceanbase11transaction12CtxLockGuardC2ERNS0_7CtxLockEb:10 + 0: 2 + 0.1: 2 _ZN9oceanbase11transaction7CtxLock4lockEv:2 + 3: _ZNK9oceanbase11transaction14ObPartTransCtx15get_rec_log_ts_Ev:0 + 7: 0 + 9.1: 0 +_ZN9oceanbase6common19ObTableAccessHelper15read_single_rowILi1EJNS0_14ObStringHolderEEEEimRAT__PKcRKNS0_8ObStringESA_DpRT0_:46:0 + 5: 0 + 10: 0 + 11: 0 + 11.1: 0 + 12.2: 0 + 12.3: 0 + 12.5: 0 + 12.6: 0 + 12.9: 0 + 12.17: 0 + 14: 0 + 14.7: 0 + 14.9: 0 + 14.13: 0 + 15: 0 + 15.1: 0 + 16: 0 + 17: 0 + 18.1: 2 + 18.2: 2 _ZN9oceanbase8observer16ObInnerSQLResult4nextEv:2 + 18.3: 0 + 18.4: 0 + 19: 0 + 20: 0 + 21.2: 0 + 21.3: 0 + 21.5: 0 + 21.6: 0 + 21.9: 0 + 21.17: 0 + 23: 0 + 23.1: 0 + 23.2: 0 + 23.3: 2 + 23.4: 2 + 24.2: 0 + 24.3: 0 + 24.5: 0 + 24.6: 0 + 24.9: 0 + 24.17: 0 + 27: 0 + 28: 0 + 30.2: 0 + 30.3: 0 + 30.7: 0 + 30.8: 0 + 30.11: 0 + 30.19: 0 + 33: 0 + 34.2: 0 + 34.3: 0 + 34.5: 0 + 34.6: 0 + 34.9: 0 + 34.17: 0 + 38: 0 + 40.38: 0 + 40.39: 0 + 6.2: _ZN9oceanbase6common5occam25get_file_name_without_dirIcLm44EEEPKT_RAT0__S4_m:0 + 3: 0 + 3.3: 0 + 3.4: 0 + 3.7: 0 + 41: 0 + 6.3: _ZN9oceanbase6common5occam16TimeGuardFactory10make_guardEllPKcS4_lS4_:0 + 6: 0 + 12.1: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 12.4: _ZN9oceanbase6common7ObLogKVIiLb0EEC2EPKcRKi:0 + 0: 0 + 12.6: _ZN9oceanbase6common7ObLogKVIPKcLb1EEC2ES3_OKS3_:0 + 0: 0 + 12.7: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 12.8: _ZNK9oceanbase5share12ObTenantBase2idEv:0 + 0: 0 + 12.10: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 + 12.12: _ZN9oceanbase6common7ObLogKVIRA1_KPKcLb0EEC2ES3_S6_:0 + 0: 0 + 12.14: _ZN9oceanbase6common7ObLogKVIRKNS0_8ObStringELb0EEC2EPKcS4_:0 + 0: 0 + 12.16: _ZN9oceanbase6common7ObLogKVIRKNS0_8ObStringELb0EEC2EPKcS4_:0 + 0: 0 + 14.6: _ZN9oceanbase6common2SVINS0_12ObISQLClient10ReadResultELb1EEC2IZNS0_19ObTableAccessHelper15read_single_rowILi1EJNS0_14ObStringHolderEEEEimRAT__PKcRKNS0_8ObStringESF_DpRT0_EUlPvE_EEibOT_:0 + 3: 0 + 5: 0 + 6: 0 + 9: _ZZN9oceanbase6common19ObTableAccessHelper15read_single_rowILi1EJNS0_14ObStringHolderEEEEimRAT__PKcRKNS0_8ObStringESA_DpRT0_ENKUlPvE_clESE_:0 + 0: 0 + 21.1: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 21.4: _ZN9oceanbase6common7ObLogKVIiLb0EEC2EPKcRKi:0 + 0: 0 + 21.6: _ZN9oceanbase6common7ObLogKVIPKcLb1EEC2ES3_OKS3_:0 + 0: 0 + 21.7: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 21.8: _ZNK9oceanbase5share12ObTenantBase2idEv:0 + 0: 0 + 21.10: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 + 21.12: _ZN9oceanbase6common7ObLogKVIRA1_KPKcLb0EEC2ES3_S6_:0 + 0: 0 + 21.14: _ZN9oceanbase6common7ObLogKVIRKNS0_8ObStringELb0EEC2EPKcS4_:0 + 0: 0 + 21.16: _ZN9oceanbase6common7ObLogKVIRKNS0_8ObStringELb0EEC2EPKcS4_:0 + 0: 0 + 24.1: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 24.4: _ZN9oceanbase6common7ObLogKVIiLb0EEC2EPKcRKi:0 + 0: 0 + 24.6: _ZN9oceanbase6common7ObLogKVIPKcLb1EEC2ES3_OKS3_:0 + 0: 0 + 24.7: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 24.8: _ZNK9oceanbase5share12ObTenantBase2idEv:0 + 0: 0 + 24.10: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 + 24.12: _ZN9oceanbase6common7ObLogKVIRA1_KPKcLb0EEC2ES3_S6_:0 + 0: 0 + 24.14: _ZN9oceanbase6common7ObLogKVIRKNS0_8ObStringELb0EEC2EPKcS4_:0 + 0: 0 + 24.16: _ZN9oceanbase6common7ObLogKVIRKNS0_8ObStringELb0EEC2EPKcS4_:0 + 0: 0 + 30.1: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 30.5: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 30.6: _ZN9oceanbase6common7ObLogKVIiLb0EEC2EPKcRKi:0 + 0: 0 + 30.8: _ZN9oceanbase6common7ObLogKVIPKcLb1EEC2ES3_OKS3_:0 + 0: 0 + 30.9: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 30.10: _ZNK9oceanbase5share12ObTenantBase2idEv:0 + 0: 0 + 30.12: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 + 30.14: _ZN9oceanbase6common7ObLogKVIRA1_KPKcLb0EEC2ES3_S6_:0 + 0: 0 + 30.16: _ZN9oceanbase6common7ObLogKVIRKNS0_8ObStringELb0EEC2EPKcS4_:0 + 0: 0 + 30.18: _ZN9oceanbase6common7ObLogKVIRKNS0_8ObStringELb0EEC2EPKcS4_:0 + 0: 0 + 34.1: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 34.4: _ZN9oceanbase6common7ObLogKVIiLb0EEC2EPKcRKi:0 + 0: 0 + 34.6: _ZN9oceanbase6common7ObLogKVIPKcLb1EEC2ES3_OKS3_:0 + 0: 0 + 34.7: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 34.8: _ZNK9oceanbase5share12ObTenantBase2idEv:0 + 0: 0 + 34.10: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 + 34.12: _ZN9oceanbase6common7ObLogKVIRA1_KPKcLb0EEC2ES3_S6_:0 + 0: 0 + 34.14: _ZN9oceanbase6common7ObLogKVIRKNS0_8ObStringELb0EEC2EPKcS4_:0 + 0: 0 + 34.16: _ZN9oceanbase6common7ObLogKVIRKNS0_8ObStringELb0EEC2EPKcS4_:0 + 0: 0 + 37.1: _ZN9oceanbase6common2SVINS0_12ObISQLClient10ReadResultELb1EED2Ev:0 + 2: 0 + 4: 0 + 5: 0 + 6: 0 + 6.1: 0 + 37.3: _ZN9oceanbase6common2SVINS0_12ObISQLClient10ReadResultELb1EED2Ev:0 + 2: 0 + 4: 0 + 5: 0 + 6: 0 + 6.1: 0 +_ZN9oceanbase3sql17ObTableInsertUpOp21update_auto_incrementERKNS0_6ObExprEm:46:1 + 2: 1 + 3: 1 + 4: 1 + 7.2: 1 + 7.3: 1 + 7.5: 0 + 8: 0 + 14: 0 + 15: 0 + 16: 0 + 17: 0 + 18.1: 0 + 19.1: 0 + 21.1: 0 + 23: 0 + 24: 0 + 24.1: 0 + 25: 0 + 25.1: 0 + 26: 0 + 26.1: 0 + 28: 0 + 30: 0 + 31: 0 + 32.1: 0 + 34: 0 + 35.1: 0 + 37: 0 + 43: 0 + 48: 0 + 48.2: 0 + 48.3: 0 + 48.5: 0 + 49: 0 + 4: _ZNK9oceanbase3sql13ObExecContext21get_physical_plan_ctxEv:7 + 2: 1 + 7.2: _ZNK9oceanbase6common12ObIArrayWrapINS_5share12AutoincParamEE5countEv:7 + 0: 1 + 8: _ZN9oceanbase6common12ObIArrayWrapINS_5share12AutoincParamEE2atEl:0 + 17: _ZNK9oceanbase3sql6ObExpr4evalERNS0_9ObEvalCtxERPNS_6common7ObDatumE:0 + 4: 0 + 6: 0 + 7: 0 + 9: 0 + 10: 0 + 10.1: 0 + 11: 0 + 13: 0 + 15.1: 0 + 15.2: 0 + 17: 0 + 18: 0 + 20: 0 + 21: 0 + 22: 0 + 9: _ZNK9oceanbase3sql6ObExpr15is_batch_resultEv:0 + 0: 0 + 11: _ZN9oceanbase3sql9ObEvalCtx13get_batch_idxEv:0 + 0: 0 + 24: _ZN9oceanbase6common11ObDatumDesc8set_nullEv:0 + 0: 0 + 32.1: _ZNK9oceanbase5share11CacheHandle8in_rangeEm:0 + 1: 0 + 1.1: 0 + 48: _ZN9oceanbase6common12ObCurTraceId3getEv:0 + 2: _ZN9oceanbase6common12ObCurTraceId12get_trace_idEv:0 + 5: 0 + 5.1: 0 + 5.1: _ZN9oceanbase6common12ObCurTraceId7TraceIdC2Ev:0 + 0: 0 + 48.2: _ZN9oceanbase3lib20is_trace_log_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:0 + 2: 0 + 48.3: _ZN9oceanbase6common18get_trace_recorderEv:0 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:0 + 7: 0 + 8: 0 + 8.1: 0 + 48.5: _ZN9oceanbase3lib20is_trace_log_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:0 + 2: 0 + 48.6: _ZN9oceanbase6common18get_trace_recorderEv:0 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:0 + 7: 0 + 8: 0 + 8.1: 0 + 48.13: _Z17CHECK_TRACE_TIMESmPKm:0 + 10.1: 0 + 11.1: 0 + 12: 0 + 13: 0 + 14: 0 + 18: 0 + 19: 0 + 20: 0 + 48.14: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl189ELl1600EE9add_eventEv:0 + 2: 0 + 3.1: 0 + 6: 0 + 10: 0 + 11: 0 + 12: 0 + 48.15: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:0 + 0: 0 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 +_ZNK9oceanbase7storage17ObStorageLogEntry19calc_entry_checksumEv:45:0 + 1: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 1 _ZN9oceanbase6common8ob_crc64EmPKvl:1 + 11: 1 _ZN9oceanbase6common8ob_crc64EmPKvl:1 + 12: 1 _ZN9oceanbase6common8ob_crc64EmPKvl:1 +_ZN9oceanbase5share6schema19ObSchemaGetterGuard23check_tenant_is_restoreEmRb:45:1 + 1: 1 + 4: 1 _ZN9oceanbase5share6schema19ObSchemaGetterGuard17get_tenant_statusEmRNS1_14ObTenantStatusE:1 + 5.1: 0 + 7: 1 _ZN9oceanbase5share6schema17is_tenant_restoreERNS1_14ObTenantStatusE:1 + 9: 1 +_ZN9oceanbase5share17ObLSTableOperator13get_by_tenantEmRNS_6common8ObIArrayINS0_8ObLSInfoEEE:45:1 + 3: 1 + 4: 1 + 5: 1 + 6: 0 + 7: 0 + 8.1: 0 + 9.1: 0 + 11: 0 + 11.2: 0 + 11.3: 0 + 12.1: 0 + 13.1: 0 + 13.2: 0 + 14.1: 0 + 17: 0 + 18.1: 0 + 21: 0 + 22.1: 0 + 24: 0 + 9.1: _ZN9oceanbase6common13is_sys_tenantEm:0 + 2: 0 + 10: _ZN9oceanbase5share8ObLSInfoC2Ev:0 + 1: 0 + 4: 0 + 3: _ZN9oceanbase6common7ObArrayINS_5share11ObLSReplicaENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEEC2Ev:0 + 0.1: 0 + 0.5: _ZN9oceanbase6common11ObArrayImplINS_5share11ObLSReplicaENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEEC2ElRKS4_:0 + 7.1: 0 + 2: _ZN9oceanbase6common8ObIArrayINS_5share11ObLSReplicaEEC2Ev:0 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_5share11ObLSReplicaEEC2Ev:0 + 0: 0 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 16: _ZN9oceanbase5share8ObLSInfoD2Ev:0 + 1: 0 + 2: 0 + 16.1: _ZN9oceanbase5share8ObLSInfoD2Ev:0 + 1: 0 + 2: 0 + 16.2: _ZN9oceanbase6common14is_meta_tenantEm:0 + 3: 0 +_ZNSt14_Function_base13_Base_managerIZNK9oceanbase3lib20ObTenantCtxAllocator11print_usageEvE4$_60E10_M_managerERSt9_Any_dataRKS6_St18_Manager_operation.a1b49044713ee2b295a5be406ce610bf:44:1 + 2: 1 + 3: 1 + 7: 0 + 11: 0 + 22: 0 + 11: _ZNSt14_Function_base13_Base_managerIZNK9oceanbase3lib20ObTenantCtxAllocator11print_usageEvE4$_60E14_M_get_pointerERKSt9_Any_data:0 + 4: 0 + 15: _ZNSt14_Function_base13_Base_managerIZNK9oceanbase3lib20ObTenantCtxAllocator11print_usageEvE4$_60E8_M_cloneERSt9_Any_dataRKS6_St17integral_constantIbLb0EE:0 + 2: 0 + 3: 0 + 3.1: 0 + 19: _ZNSt14_Function_base13_Base_managerIZNK9oceanbase3lib20ObTenantCtxAllocator11print_usageEvE4$_60E10_M_destroyERSt9_Any_dataSt17integral_constantIbLb0EE:9 + 2: 1 + 2.1: 1 +_ZN9oceanbase5share16ObReplicaAttrSetD2Ev:44:0 + 0: 1 _ZN9oceanbase6common11ObArrayImplINS_5share11ReplicaAttrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEED2Ev:1 + 0.1: 1 _ZN9oceanbase6common11ObArrayImplINS_5share11ReplicaAttrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEED2Ev:1 + 0.2: 1 _ZN9oceanbase6common11ObArrayImplINS_5share11ReplicaAttrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEED2Ev:1 + 0.3: 0 +_ZN9oceanbase5share13ObLocalDevice9free_iocbEPNS_6common6ObIOCBE:44:1 + 1: 1 + 2: 1 + 4: 1 + 5: 1 _ZN9oceanbase6common10ObIOCBPoolINS_5share11ObLocalIOCBEE4freeEPS3_:1 + 7: 0 +_ZN9oceanbase11transaction18GetRecLogTSFunctor17internal_operatorERKNS0_9ObTransIDEPNS0_14ObPartTransCtxE:44:0 + 1: 0 + 5: 0 + 6.1: 0 + 9: 0 + 10: 2 _ZNK9oceanbase11transaction14ObPartTransCtx14get_rec_log_tsEv:2 + 10.1: 0 + 10.2: 0 + 10.3: 0 + 10.5: 0 + 11: 0 + 11.1: 0 + 15: 2 +_ZSt16__introsort_loopIN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS1_19ModulePageAllocatorELb0EEElN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S9_T0_T1_:43:1 + 3: 1 + 4.1: 1 + 6: 0 + 14: 0 + 17: 1 + 4.1: _ZN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS0_19ModulePageAllocatorELb0EEmiERKS4_:19 + 3: 1 + 1837: 1 + 8: _ZSt14__partial_sortIN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS1_19ModulePageAllocatorELb0EEEN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S9_S9_T0_:0 + 5: _ZSt13__heap_selectIN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS1_19ModulePageAllocatorELb0EEEN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S9_S9_T0_:0 + 4: 0 + 6: _ZSt11__sort_heapIN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS1_19ModulePageAllocatorELb0EEEN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S9_T0_:0 + 3.1: 0 + 5: _ZN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS0_19ModulePageAllocatorELb0EEmmEv:0 + 3: 0 + 6: _ZSt10__pop_heapIN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS1_19ModulePageAllocatorELb0EEEN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S9_S9_T0_:0 + 8: 0 + 9: 0 + 8: _ZN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS0_19ModulePageAllocatorELb0EEdeEv:0 + 3: _ZN9oceanbase6common12ObIArrayWrapIlE2atEl:0 + 6: 0 + 9: _ZN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS0_19ModulePageAllocatorELb0EEdeEv:0 + 3: _ZN9oceanbase6common12ObIArrayWrapIlE2atEl:0 + 6: 0 + 10: _ZSt13__adjust_heapIN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS1_19ModulePageAllocatorELb0EEEllN9__gnu_cxx5__ops15_Iter_less_iterEEvT_T0_SA_T1_T2_:0 + 5.1: 0 + 8: 0 + 11: 0 + 14: 0 + 14.1: 0 + 17: 0 + 8: _ZN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS0_19ModulePageAllocatorELb0EEplEl:0 + 3: 0 + 8.1: _ZNK9__gnu_cxx5__ops15_Iter_less_iterclIN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS4_19ModulePageAllocatorELb0EEES8_EEbT_T0_:0 + 1: 0 + 1: _ZN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS0_19ModulePageAllocatorELb0EEdeEv:0 + 3: _ZN9oceanbase6common12ObIArrayWrapIlE2atEl:0 + 6: 0 + 9: _ZN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS0_19ModulePageAllocatorELb0EEplEl:0 + 3: 0 + 11: _ZN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS0_19ModulePageAllocatorELb0EEplEl:0 + 3: 0 + 11.3: _ZN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS0_19ModulePageAllocatorELb0EEplEl:0 + 3: 0 + 17: _ZN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS0_19ModulePageAllocatorELb0EEplEl:0 + 3: 0 + 17.1: _ZN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS0_19ModulePageAllocatorELb0EEdeEv:0 + 3: _ZN9oceanbase6common12ObIArrayWrapIlE2atEl:0 + 6: 0 + 17.3: _ZN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS0_19ModulePageAllocatorELb0EEplEl:0 + 3: 0 + 21: _ZSt11__push_heapIN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS1_19ModulePageAllocatorELb0EEEllN9__gnu_cxx5__ops14_Iter_less_valEEvT_T0_SA_T1_T2_:0 + 5.1: 0 + 5.3: 0 + 7: 0 + 11: 0 + 5.2: _ZN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS0_19ModulePageAllocatorELb0EEplEl:0 + 3: 0 + 5.5: _ZNK9__gnu_cxx5__ops14_Iter_less_valclIN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS4_19ModulePageAllocatorELb0EEElEEbT_RT0_:0 + 1: 0 + 1: _ZN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS0_19ModulePageAllocatorELb0EEdeEv:0 + 3: _ZN9oceanbase6common12ObIArrayWrapIlE2atEl:0 + 6: 0 + 7.3: _ZN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS0_19ModulePageAllocatorELb0EEplEl:0 + 3: 0 + 11.1: _ZN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS0_19ModulePageAllocatorELb0EEplEl:0 + 3: 0 + 11.2: _ZN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS0_19ModulePageAllocatorELb0EEdeEv:0 + 3: _ZN9oceanbase6common12ObIArrayWrapIlE2atEl:0 + 6: 0 + 11: _ZN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS0_19ModulePageAllocatorELb0EEmiERKS4_:0 + 3: 0 + 13: _ZSt27__unguarded_partition_pivotIN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS1_19ModulePageAllocatorELb0EEEN9__gnu_cxx5__ops15_Iter_less_iterEET_S9_S9_T0_:0 + 3: 0 + 3.1: _ZN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS0_19ModulePageAllocatorELb0EEplEl:0 + 3: 0 + 4: _ZN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS0_19ModulePageAllocatorELb0EEplEl:0 + 4.2: _ZSt22__move_median_to_firstIN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS1_19ModulePageAllocatorELb0EEEN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S9_S9_S9_T0_:0 + 3: 0 + 5: 0 + 12: 0 + 3: _ZNK9__gnu_cxx5__ops15_Iter_less_iterclIN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS4_19ModulePageAllocatorELb0EEES8_EEbT_T0_:0 + 1: 0 + 1: _ZN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS0_19ModulePageAllocatorELb0EEdeEv:0 + 3: _ZN9oceanbase6common12ObIArrayWrapIlE2atEl:0 + 6: 0 + 1.1: _ZN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS0_19ModulePageAllocatorELb0EEdeEv:0 + 3: _ZN9oceanbase6common12ObIArrayWrapIlE2atEl:0 + 6: 0 + 5: _ZNK9__gnu_cxx5__ops15_Iter_less_iterclIN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS4_19ModulePageAllocatorELb0EEES8_EEbT_T0_:0 + 1: 0 + 1.1: _ZN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS0_19ModulePageAllocatorELb0EEdeEv:0 + 3: _ZN9oceanbase6common12ObIArrayWrapIlE2atEl:0 + 6: 0 + 7: _ZNK9__gnu_cxx5__ops15_Iter_less_iterclIN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS4_19ModulePageAllocatorELb0EEES8_EEbT_T0_:0 + 1: 0 + 8: _ZSt9iter_swapIN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS1_19ModulePageAllocatorELb0EEES5_EvT_T0_:0 + 28.2: _ZSt4swapIlEvRT_S1_:0 + 9: 0 + 12: _ZNK9__gnu_cxx5__ops15_Iter_less_iterclIN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS4_19ModulePageAllocatorELb0EEES8_EEbT_T0_:0 + 1: 0 + 14: _ZNK9__gnu_cxx5__ops15_Iter_less_iterclIN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS4_19ModulePageAllocatorELb0EEES8_EEbT_T0_:0 + 1: 0 + 6.1: _ZSt21__unguarded_partitionIN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS1_19ModulePageAllocatorELb0EEEN9__gnu_cxx5__ops15_Iter_less_iterEET_S9_S9_S9_T0_:0 + 6.1: 0 + 9: 0 + 9.1: 0 + 11: 0 + 6.1: _ZNK9__gnu_cxx5__ops15_Iter_less_iterclIN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS4_19ModulePageAllocatorELb0EEES8_EEbT_T0_:0 + 1: 0 + 1: _ZN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS0_19ModulePageAllocatorELb0EEdeEv:0 + 3: _ZN9oceanbase6common12ObIArrayWrapIlE2atEl:0 + 7: _ZN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS0_19ModulePageAllocatorELb0EEppEv:0 + 3: 0 + 9.1: _ZNK9__gnu_cxx5__ops15_Iter_less_iterclIN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS4_19ModulePageAllocatorELb0EEES8_EEbT_T0_:0 + 1: 0 + 1.1: _ZN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS0_19ModulePageAllocatorELb0EEdeEv:0 + 3: _ZN9oceanbase6common12ObIArrayWrapIlE2atEl:0 + 11: _ZNK9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS0_19ModulePageAllocatorELb0EEltERKS4_:0 + 3: 0 + 13: _ZSt9iter_swapIN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS1_19ModulePageAllocatorELb0EEES5_EvT_T0_:0 + 28.2: _ZSt4swapIlEvRT_S1_:0 + 10: 0 + 11: 0 +_ZN9oceanbase5share20ObAllTenantInfoProxy9fill_cellEPNS_6common9sqlclient13ObMySQLResultERNS0_15ObAllTenantInfoE:43:0 + 1: 0 + 2: 0 + 4: 0 + 5: 0 + 6.1: 0 + 10: 0 + 11: 0 + 12: 0 + 14: 0 + 16: 0 + 17.1: 0 + 17.3: 0 + 18: 0 + 18.1: 1 + 18.3: 0 + 19: 0 + 19.1: 1 _ZNK9oceanbase8observer16ObInnerSQLResult7get_intEPKcRl:1 + 19.3: 0 + 19.6: 0 + 20: 0 + 20.1: 0 + 20.3: 0 + 20.6: 0 + 21: 0 + 21.1: 0 + 21.3: 0 + 21.6: 0 + 22: 0 + 22.1: 0 + 22.3: 0 + 22.6: 0 + 23: 0 + 23.1: 0 + 23.3: 0 + 23.6: 0 + 26: 0 + 27.1: 0 + 29.1: 0 + 29.2: 0 + 33.1: 0 + 37: 0 + 3: _ZN9oceanbase5share15ObAllTenantInfo5resetEv:0 + 2: 0 + 5: 0 + 7: 0 + 3: _ZN9oceanbase5share12ObTenantRoleaSEl:0 + 0: 0 + 8: _ZN9oceanbase6common8ObStringC2Ev:0 + 1: 0 + 9: _ZN9oceanbase6common8ObStringC2Ev:0 + 1: 0 + 24: _ZN9oceanbase5share12ObTenantRoleC2ERKNS_6common8ObStringE:0 + 2: 0 + 3: 0 + 6: 0 + 7: 0 + 14.1: 0 + 3: _ZNK9oceanbase6common8ObString5emptyEv:0 + 2: 0 + 2.1: 0 + 6: _ZNK9oceanbase6common8ObString12case_compareEPKc:0 + 8: _ZNK9oceanbase6common8ObString12case_compareERKS1_:0 + 10: 0 + 10.1: 0 + 11: 0 + 25: _ZN9oceanbase5share24ObTenantSwitchoverStatusC2ERKNS_6common8ObStringE:0 + 2: 0 + 3: 0 + 6: 0 + 7: 0 + 14.1: 0 + 3: _ZNK9oceanbase6common8ObString5emptyEv:0 + 2: 0 + 2.1: 0 + 6: _ZNK9oceanbase6common8ObString12case_compareEPKc:0 + 8: _ZNK9oceanbase6common8ObString12case_compareERKS1_:0 + 10: 0 + 10.1: 0 + 11: 0 + 29.1: _ZN9oceanbase5share15ObAllTenantInfo4initEmRKNS0_12ObTenantRoleERKNS0_24ObTenantSwitchoverStatusElllll:0 + 5: 0 + 7: 0 + 7.1: 0 + 7.3: 0 + 10: 0 + 11.1: 0 + 13: 0 + 14: 0 + 15: 0 + 16: 0 + 17: 0 + 18: 0 + 19: 0 + 20: 0 + 23: 0 + 6: _ZN9oceanbase5share15ObAllTenantInfo5resetEv:0 + 2: 0 + 5: 0 + 7: 0 + 3: _ZN9oceanbase5share12ObTenantRoleaSEl:0 + 0: 0 + 7.1: _ZNK9oceanbase5share12ObTenantRole8is_validEv:0 + 0: 0 + 7.2: _ZNK9oceanbase5share24ObTenantSwitchoverStatus8is_validEv:0 + 0: 0 + 36.1: _ZN9oceanbase5share24ObTenantSwitchoverStatusD2Ev:0 + 0: _ZN9oceanbase5share24ObTenantSwitchoverStatus5resetEv:0 + 0: 0 +_ZN9oceanbase7storage8ObLSMeta17get_clog_base_lsnEv:42:1 + 1: 1 + 2: 1 + 3: 0 + 4: 0 + 2: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEEC2ERS3_:24 + 1: 1 + 4: 0 + 5.1: 0 + 4: _ZN9oceanbase6common10ObSpinLock4lockEv:20 + 2: 1 _ZN9oceanbase6common12ObLatchMutex4lockEjl:1 + 4: _ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEED2Ev:0 + 2: 0 + 3: 0 + 3.1: 0 + 3.2: 0 + 4.1: 0 + 4.5: 0 + 3: _ZN9oceanbase6common10ObSpinLock6unlockEv:0 + 2: 0 +_ZN9oceanbase6common11ObArrayImplIPNS0_9sqlclient28ObCommonServerConnectionPoolENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_22NotImplementItemEncodeIS4_EEE7destroyEv:42:1 + 1: 1 + 2: 1 + 6: 0 + 7: 0 + 9: 1 + 11: 1 + 13: 1 +_ZN9oceanbase6common11ObArrayImplINS_5share11ReplicaAttrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEED2Ev:42:3 + 1: 2 + 2: 2 _ZN9oceanbase6common11ObArrayImplINS_5share11ReplicaAttrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE7destroyEv:2 + 3: 2 + 3.2: 0 +_ZN9oceanbase6common11ObArrayImplINS0_19ObFixedLengthStringILl128EEENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE7destroyEv:42:0 + 1: 0 + 2: 0 + 7: 1 + 9: 1 + 11: 1 + 13: 1 + 6: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase6common11ObArrayImplINS0_18ObTZRevertTypeInfoENS0_8ObMallocELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_17DefaultItemEncodeIS2_EEED2Ev:42:2 + 1: 2 + 2: 2 _ZN9oceanbase6common11ObArrayImplINS0_18ObTZRevertTypeInfoENS0_8ObMallocELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_17DefaultItemEncodeIS2_EEE7destroyEv:2 + 3: 2 + 3.2: 0 +_ZNK9oceanbase11transaction30ObTenantWeakReadClusterService18check_leader_info_ERl:41:0 + 1: 0 + 2: 0 + 4: 0 + 5: 0 + 7: 0 + 7.1: 0 + 7.3: 0 + 7.4: 0 + 8.1: 0 + 9.2: 0 + 9.3: 0 + 10.1: 0 + 11.3: 0 + 11.4: 1 + 12.1: 0 + 13.1: 1 _ZN9oceanbase6common16is_strong_leaderENS0_6ObRoleE:1 + 13.2: 1 + 15: 0 + 16: 0 + 20: 1 + 21.5: 1 _ZN9oceanbase7storage10ObLSHandleD1Ev:1 + 21.6: 0 + 3: _ZN9oceanbase5share6ObLSIDC2Ev:0 + 0: 0 + 7.1: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 7.2: _ZNK9oceanbase5share12ObTenantBase2idEv:0 + 0: 0 + 9.1: _ZN9oceanbase5share11ObTenantEnv3mtlIPNS_7storage11ObLSServiceEEET_v:0 + 2: 0 + 2.1: _ZN9oceanbase5share12ObTenantBase3getIPNS_7storage11ObLSServiceEEET_v:0 + 0: _ZN9oceanbase5share12ObTenantBase9inner_getENS1_8IdentityIPNS_7storage11ObLSServiceEEE:0 + 0: 0 + 11.2: _ZN9oceanbase7storage4ObLS15get_log_handlerEv:0 + 0: 0 +_ZNK9oceanbase11transaction16ObTxKeepaliveMsg18get_serialize_sizeEv:41:1 + 0: 1 + 0: _ZNK9oceanbase11transaction7ObTxMsg18get_serialize_sizeEv:1 + 0: _ZNK9oceanbase11transaction7ObTxMsg28get_serialize_size_dispatch_ESt17integral_constantIbLb0EE:1 + 0: 1 _ZNK9oceanbase11transaction7ObTxMsg19get_serialize_size_Ev:1 + 0.1: _ZN9oceanbase6common13serialization14encoded_lengthEl:8 + 2: _ZN9oceanbase6common13serialization19encoded_length_vi64El:8 + 4: 1 + 6.1: 0 + 8.1: 0 + 10.1: 0 + 12.1: 0 + 14.1: 0 + 16.1: 0 + 18.1: 0 +_ZN9oceanbase6common13ObSEArrayImplINS_5share21ObLabelSeSessionLabelELl4ENS0_19ModulePageAllocatorELb0EED2Ev:41:0 + 1: 0 + 3: 1 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_5share21ObLabelSeSessionLabelELl4ENS0_19ModulePageAllocatorELb0EE7destroyEv:32 + 9: 0 + 11: 0 + 13: 1 + 15: 1 + 24: 1 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_5share21ObLabelSeSessionLabelELl4ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZN9oceanbase6common11ObIORequest6cancelEv:41:1 + 1: 1 + 2: 1 + 3: 1 + 3.1: 1 + 5: 0 + 6.1: 0 + 7.1: 0 + 8.1: 0 + 11: 0 + 12: 0 + 12.1: 0 + 13: 0 + 16: 0 + 16.1: 0 + 17.3: 0 + 19.3: 1 + 5: _ZN9oceanbase3lib11ObLockGuardINS_6common12ObThreadCondEEC2ERS3_:0 + 1: 0 + 2: 0 + 4: 0 + 5.1: 0 + 4: _ZN9oceanbase6common12ObThreadCond4lockEv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 6.1: 0 + 7.1: 0 + 8: 0 + 9.1: 0 + 11: 0 + 6: _ZNK9oceanbase3lib11ObLockGuardINS_6common12ObThreadCondEE7get_retEv:0 + 0: 0 + 17: _ZN9oceanbase6common11ObIORetCodeC2Eii:0 + 1: 0 +_ZNK9oceanbase6common6ObAddr17ip_port_to_stringEPci:40:0 + 1: 0 + 4: 0 + 6.1: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 12: 0 + 13: 0 + 14: 0 + 15: 0 + 18: 1 + 19: 0 + 20: 0 + 21: 0 + 22: 0 + 23: 0 + 27.1: 1 + 29.1: 1 +_ZN9oceanbase6common9sqlclient13ObMySQLResultC2Ev:40:2 + 1: 2 + 2: 2 +_ZN9oceanbase5share17ObFreezeInfoProxy24construct_frozen_status_ERNS_6common9sqlclient13ObMySQLResultERNS0_20ObSimpleFrozenStatusE:40:0 + 3: 0 + 5.1: 1 + 5.3: 0 + 5.6: 1 + 6: 0 + 6.1: 1 _ZNK9oceanbase8observer16ObInnerSQLResult7get_intEPKcRl:1 + 6.3: 0 + 6.6: 0 + 7: 0 + 7.1: 0 + 7.3: 0 + 7.6: 0 + 8: 0 +_ZN9oceanbase5obrpc16ObTransRpcResult5resetEv:40:2 + 1: 2 + 2: 2 + 3: 2 + 5: 2 +_ZN9oceanbase5obrpc10ObRpcProxy14create_requestENS0_15ObRpcPacketCodeERKNS_3rpc5frame14ObReqTransportERNS5_7RequestERKNS_6common6ObAddrEllSD_bjRKNSA_8ObStringEPKNS5_7AsyncCBE:40:0 + 10: 0 + 12: 0 + 13: 1 + 11: _ZN9oceanbase5obrpc10ObRpcProxy10PCodeGuardC2ENS0_15ObRpcPacketCodeE:0 + 2: _ZN9oceanbase5obrpc13current_pcodeEv:0 + 2: 0 + 3: _ZN9oceanbase5obrpc17set_current_pcodeENS0_15ObRpcPacketCodeE:0 + 2: 0 + 13: _ZN9oceanbase5obrpc10ObRpcProxy10PCodeGuardD2Ev:21 + 2: _ZN9oceanbase5obrpc17set_current_pcodeENS0_15ObRpcPacketCodeE:21 + 2: 1 + 13.1: _ZN9oceanbase5obrpc10ObRpcProxy10PCodeGuardD2Ev:0 + 2: _ZN9oceanbase5obrpc17set_current_pcodeENS0_15ObRpcPacketCodeE:0 + 2: 0 +_ZN9oceanbase11transaction14ObTsSourceInfo32check_if_tenant_has_been_droppedEmRb:40:0 + 1: 0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7.1: 0 + 8.2: 0 + 8.3: 0 + 9: 0 + 10.1: 0 + 11.1: 0 + 12: 0 + 13.1: 0 + 14.1: 0 + 14.2: 0 + 15.1: 0 + 16.1: 0 + 16.2: 1 + 17.1: 0 + 19: 1 + 20.6: 1 _ZN9oceanbase5share6schema19ObSchemaGetterGuardD1Ev:1 + 20.7: 0 + 8.1: _ZN9oceanbase6common18is_valid_tenant_idEm:0 + 2: 0 +_ZNK9oceanbase7storage8ObITable20is_buf_minor_sstableEv:39:3 + 0: 3 + 0: _ZN9oceanbase7storage8ObITable20is_buf_minor_sstableENS1_9TableTypeE:21 + 2: 3 +_ZNK9oceanbase12blocksstable9ObSSTable28get_max_merged_trans_versionEv:39:3 + 1: 3 + 2: 3 +_ZN9oceanbase7storage18LockForReadFunctor7recheckEv:39:3 + 1: 3 + 2: _ZNK9oceanbase6common10ObFunctionIFbvEEclEv:27 + 2: 3 _ZNK9oceanbase6common10ObFunctionIFbvEE7DerivedINS_7storage25ObReCheckNothingOperationEE6invokeEv:3 +_ZN9oceanbase6common2SVIA65536_cLb0EED2Ev:39:1 + 1: 1 + 2: 1 + 7: 1 + 8: 0 + 8.1: 0 + 10: 1 + 12: 1 +_ZN9oceanbase10rootserver20ObBackupLeaseService22check_sys_backup_info_Ev:39:0 + 1: 0 + 2: 0 + 3: 0 + 4: 0 + 4.2: 0 + 5: 0 + 7: 0 + 8: 0 + 9.1: 0 + 10.2: 0 + 11: 0 + 12: 0 + 13.1: 0 + 14.1: 0 + 14.2: 1 + 15.1: 0 + 18: 0 + 18.2: 1 _ZN9oceanbase5share19ObBackupInfoChecker4initEPNS_6common12ObMySQLProxyERKNS0_25ObBackupInnerTableVersionE:1 + 18.3: 1 + 19.1: 0 + 20.1: 1 _ZN9oceanbase5share19ObBackupInfoChecker5checkEm:1 + 20.2: 0 + 21.1: 0 + 24.1: 0 + 25: 0 + 26.7: 0 + 26.10: 0 + 4.1: _ZN9oceanbase6common16ObClusterVersion19get_cluster_versionEv:0 + 0: 0 +_ZN9oceanbase6common6QClock13try_quiescentERm:38:1 + 0: 1 + 3: 1 + 4: 1 + 8: 1 + 1: _ZN9oceanbase6common6QClock9get_clockEv:3 + 0: 1 + 3: _ZN9oceanbase6common6QClock12is_quiescentEm:16 + 2: 1 + 2.1: 1 + 2.2: 0 + 1: _ZN9oceanbase6common6QClock9get_clockEv:3 + 0: 1 + 2.1: _ZN9oceanbase6common6QClock10get_qclockEv:4 + 0: 1 + 2.2: _ZN9oceanbase6common6QClock20calc_quiescent_clockEm:0 + 2.1: 0 + 2.3: 0 + 4: 0 + 3.1: _ZN9oceanbase6common6QClock9ClockSlot10load_clockEv:0 + 0: 0 + 2.4: _ZN9oceanbase6common6QClock13update_qclockEm:0 + 1: 0 + 5: _ZN9oceanbase6common6QClock9inc_clockEv:7 + 0: 1 +_ZN9oceanbase3sql16ObSQLSessionInfo23reset_all_package_stateEv:38:1 + 1: 1 + 2: 1 + 3.1: 0 + 3.3: 0 + 4: 0 + 4.1: 0 + 5: 0 + 5.1: 0 + 6: 0 + 6.2: 0 + 7: 0 + 11: 1 + 3: _ZN9oceanbase6common4hash9ObHashMapImPNS_2pl16ObPLPackageStateENS1_19NoPthreadDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS5_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE5beginEv:0 + 2: 0 + 3.4: _ZNK9oceanbase6common4hash19ObHashTableIteratorImNS1_11HashMapPairImPNS_2pl16ObPLPackageStateEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEneERKSN_:0 + 2: 0 + 5: _ZNK9oceanbase6common4hash19ObHashTableIteratorImNS1_11HashMapPairImPNS_2pl16ObPLPackageStateEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEptEv:0 + 3: 0 + 6: _ZN9oceanbase3sql18ObBasicSessionInfo21get_package_allocatorEv:0 + 6.1: _ZNK9oceanbase6common4hash19ObHashTableIteratorImNS1_11HashMapPairImPNS_2pl16ObPLPackageStateEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEptEv:0 + 3: 0 + 7: _ZNK9oceanbase6common4hash19ObHashTableIteratorImNS1_11HashMapPairImPNS_2pl16ObPLPackageStateEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EEptEv:0 + 3: 0 + 9: _ZN9oceanbase6common4hash9ObHashMapImPNS_2pl16ObPLPackageStateENS1_19NoPthreadDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS5_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE5clearEv:0 + 2: 0 +_ZN9oceanbase5share28ObSysVarObEnableRichErrorMsgC2Ev:37:0 + 0: 1 + 0: _ZN9oceanbase5share12ObBoolSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSC_EPFiS4_S7_SA_SE_EPFiRNSB_12ObIAllocatorERKNS2_18ObBasicSessionInfoESA_SF_EPFiSL_SO_SA_RNSB_8ObStringEEPFNSB_9ObObjTypeEvE:21 + 5: _ZN9oceanbase5share15ObTypeLibSysVarC2EPPKcPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKNS0_13ObBasicSysVarERKNS_6common5ObObjERSF_EPFiS7_SA_SD_SH_EPFiRNSE_12ObIAllocatorERKNS5_18ObBasicSessionInfoESD_SI_EPFiSO_SR_SD_RNSE_8ObStringEEPFNSE_9ObObjTypeEvEb:21 + 14: 0 + 7: _ZN9oceanbase5share13ObBasicSysVarC2EPFiRNS_3sql13ObExecContextERKNS0_8ObSetVarERKS1_RKNS_6common5ObObjERSB_EPFiS4_S7_S9_SD_EPFiRNSA_12ObIAllocatorERKNS2_18ObBasicSessionInfoES9_SE_EPFiSK_SN_S9_RNSA_8ObStringEEPFNSA_9ObObjTypeEvEb:0 + 11: 0 + 13: 0 + 20: _ZN9oceanbase5share13ObBasicSysVar11clean_valueEv:0 + 2: _ZN9oceanbase5share13ObBasicSysVar16clean_base_valueEv:0 + 2: 0 + 3: _ZN9oceanbase6common5ObObj13set_nop_valueEv:0 + 2: _ZN9oceanbase6common5ObObj7set_extEl:0 + 4: 0 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:0 + 0: 0 + 3: _ZN9oceanbase5share13ObBasicSysVar15clean_inc_valueEv:0 + 2: _ZN9oceanbase6common5ObObj13set_nop_valueEv:0 + 2: _ZN9oceanbase6common5ObObj7set_extEl:0 + 4: 0 + 2: _ZN9oceanbase6common9ObObjMeta7set_extEv:0 + 0: 0 + 4: _ZN9oceanbase6common5ObObj5resetEv:0 + 6: 0 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:0 + 0: 0 + 5: _ZN9oceanbase6common5ObObj5resetEv:0 + 6: 0 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:0 + 0: 0 + 13: _ZN9oceanbase5share15ObSysVarTypeLibC2EPPKc:21 + 1: 0 + 2: 0 + 3: 0 + 8.1: 1 + 8.3: 1 + 9: 1 +_ZN9oceanbase11transaction9tablelock14ObOBJLockAlloc10alloc_nodeEPNS1_9ObOBJLockE:37:1 + 1: 1 + 3: 1 + 3.1: 0 + 3.4: 0 + 3.5: 1 _ZN9oceanbase6common21ObFixedClassAllocatorINS0_12LinkHashNodeINS_11transaction9tablelock8ObLockIDEEEE3getERKNS_3lib7ObLabelE:1 + 3: _ZN9oceanbase3lib7ObLabelC2IPKcEERKT_:15 + 2: _ZN9oceanbase3lib7ObLabelaSIPKcvEERS1_T_:15 + 2: 1 + 3.1: _ZN9oceanbase6common21ObFixedClassAllocatorINS0_12LinkHashNodeINS_11transaction9tablelock8ObLockIDEEEE5allocEv:8 + 2: 1 _ZN9oceanbase6common12ObSliceAlloc5allocEv:1 + 3.2: _ZN9oceanbase6common12LinkHashNodeINS_11transaction9tablelock8ObLockIDEEC2Ev:0 + 0.1: 0 + 0.4: _ZN9oceanbase6common11KeyHashNodeINS_11transaction9tablelock8ObLockIDEEC2Ev:0 + 0.4: _ZN9oceanbase11transaction9tablelock8ObLockIDC2Ev:0 + 1: 0 + 2: 0 +_ZNK9oceanbase4palf10PalfHandle11get_end_lsnERNS0_3LSNE:36:1 + 1: 1 + 3: 1 + 6.1: 1 + 4: _ZNK9oceanbase4palf14PalfHandleImpl11get_end_lsnEv:16 + 3: _ZNK9oceanbase4palf16LogSlidingWindow21get_committed_end_lsnERNS0_3LSNE:16 + 3: 1 + 6: _ZNK9oceanbase4palf16LogSlidingWindow22get_committed_end_lsn_ERNS0_3LSNE:7 + 2: 1 + 4.3: _ZN9oceanbase4palf3LSNaSERKS1_:5 + 2: 1 +_ZNK6obutil5Mutex6unlockERNS0_9LockStateE:36:4 + 1: 4 + 2: 4 + 3: 4 +_ZN9oceanbase6common19ObTableAccessHelper14read_multi_rowILi4EJlNS0_14ObStringHolderES3_S3_EEEimRAT__PKcRKNS0_8ObStringESA_RNS0_8ObIArrayINS0_7ObTupleIJDpT0_EEEEE:36:0 + 5: 0 + 10: 0 + 11: 0 + 11.1: 0 + 12.1: 0 + 12.2: 0 + 12.3: 0 + 12.5: 0 + 12.6: 0 + 12.7: 0 + 12.9: 0 + 12.17: 0 + 14: 0 + 14.6: 0 + 14.7: 0 + 14.9: 0 + 14.10: 0 + 14.13: 0 + 15: 0 + 15.1: 0 + 16: 0 + 18.1: 1 + 18.2: 1 _ZN9oceanbase8observer16ObInnerSQLResult4nextEv:1 + 18.3: 0 + 18.4: 0 + 19: 0 + 19.1: 0 + 19.3: 0 + 19.4: 0 + 19.6: 0 + 19.9: 0 + 19.11: 0 + 20.1: 0 + 20.2: 0 + 20.3: 0 + 20.7: 0 + 20.8: 0 + 20.9: 0 + 20.11: 0 + 20.19: 0 + 21.1: 0 + 21.2: 1 + 22: 0 + 23.1: 0 + 23.2: 0 + 23.3: 0 + 23.7: 0 + 23.8: 0 + 23.9: 0 + 23.11: 0 + 23.19: 0 + 25: 1 + 27: 0 + 28: 0 + 30.1: 0 + 30.2: 0 + 30.3: 0 + 30.7: 0 + 30.8: 0 + 30.9: 0 + 30.11: 0 + 30.19: 0 + 33: 0 + 34.1: 0 + 34.2: 0 + 34.3: 0 + 34.5: 0 + 34.6: 0 + 34.7: 0 + 34.9: 0 + 34.17: 0 + 37.1: 0 + 37.3: 0 + 38: 0 + 40.42: 0 + 40.43: 0 + 6.2: _ZN9oceanbase6common5occam25get_file_name_without_dirIcLm44EEEPKT_RAT0__S4_m:0 + 3: 0 + 3.3: 0 + 3.4: 0 + 3.7: 0 + 6.3: _ZN9oceanbase6common5occam16TimeGuardFactory10make_guardEllPKcS4_lS4_:0 + 6: 0 + 12.4: _ZN9oceanbase6common7ObLogKVIiLb0EEC2EPKcRKi:0 + 0: 0 + 12.6: _ZN9oceanbase6common7ObLogKVIPKcLb1EEC2ES3_OKS3_:0 + 0: 0 + 12.8: _ZNK9oceanbase5share12ObTenantBase2idEv:0 + 0: 0 + 12.10: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 + 12.12: _ZN9oceanbase6common7ObLogKVIRA4_KPKcLb0EEC2ES3_S6_:0 + 0: 0 + 12.14: _ZN9oceanbase6common7ObLogKVIRKNS0_8ObStringELb0EEC2EPKcS4_:0 + 0: 0 + 12.16: _ZN9oceanbase6common7ObLogKVIRKNS0_8ObStringELb0EEC2EPKcS4_:0 + 0: 0 + 14.12: _ZN9oceanbase6common2SVINS0_12ObISQLClient10ReadResultELb1EE3getEv:0 + 2: 0 + 19.2: _ZN9oceanbase6common7ObTupleIJlNS0_14ObStringHolderES2_S2_EEC2IJEEEDpOT_:0 + 0: 0 + 20.5: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 20.6: _ZN9oceanbase6common7ObLogKVIiLb0EEC2EPKcRKi:0 + 0: 0 + 20.8: _ZN9oceanbase6common7ObLogKVIPKcLb1EEC2ES3_OKS3_:0 + 0: 0 + 20.10: _ZNK9oceanbase5share12ObTenantBase2idEv:0 + 0: 0 + 20.12: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 + 20.14: _ZN9oceanbase6common7ObLogKVIRA4_KPKcLb0EEC2ES3_S6_:0 + 0: 0 + 20.16: _ZN9oceanbase6common7ObLogKVIRKNS0_8ObStringELb0EEC2EPKcS4_:0 + 0: 0 + 20.18: _ZN9oceanbase6common7ObLogKVIRKNS0_8ObStringELb0EEC2EPKcS4_:0 + 0: 0 + 22: _ZN9oceanbase6common12ObIArrayWrapINS0_7ObTupleIJlNS0_14ObStringHolderES3_S3_EEEE2atEl:0 + 6: 0 + 23.5: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 23.6: _ZN9oceanbase6common7ObLogKVIiLb0EEC2EPKcRKi:0 + 0: 0 + 23.8: _ZN9oceanbase6common7ObLogKVIPKcLb1EEC2ES3_OKS3_:0 + 0: 0 + 23.10: _ZNK9oceanbase5share12ObTenantBase2idEv:0 + 0: 0 + 23.12: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 + 23.14: _ZN9oceanbase6common7ObLogKVIRA4_KPKcLb0EEC2ES3_S6_:0 + 0: 0 + 23.16: _ZN9oceanbase6common7ObLogKVIRKNS0_8ObStringELb0EEC2EPKcS4_:0 + 0: 0 + 23.18: _ZN9oceanbase6common7ObLogKVIRKNS0_8ObStringELb0EEC2EPKcS4_:0 + 0: 0 + 30.5: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 30.6: _ZN9oceanbase6common7ObLogKVIiLb0EEC2EPKcRKi:0 + 0: 0 + 30.8: _ZN9oceanbase6common7ObLogKVIPKcLb1EEC2ES3_OKS3_:0 + 0: 0 + 30.10: _ZNK9oceanbase5share12ObTenantBase2idEv:0 + 0: 0 + 30.12: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 + 30.14: _ZN9oceanbase6common7ObLogKVIRA4_KPKcLb0EEC2ES3_S6_:0 + 0: 0 + 30.16: _ZN9oceanbase6common7ObLogKVIRKNS0_8ObStringELb0EEC2EPKcS4_:0 + 0: 0 + 30.18: _ZN9oceanbase6common7ObLogKVIRKNS0_8ObStringELb0EEC2EPKcS4_:0 + 0: 0 + 34.4: _ZN9oceanbase6common7ObLogKVIiLb0EEC2EPKcRKi:0 + 0: 0 + 34.6: _ZN9oceanbase6common7ObLogKVIPKcLb1EEC2ES3_OKS3_:0 + 0: 0 + 34.8: _ZNK9oceanbase5share12ObTenantBase2idEv:0 + 0: 0 + 34.10: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 + 34.12: _ZN9oceanbase6common7ObLogKVIRA4_KPKcLb0EEC2ES3_S6_:0 + 0: 0 + 34.14: _ZN9oceanbase6common7ObLogKVIRKNS0_8ObStringELb0EEC2EPKcS4_:0 + 0: 0 + 34.16: _ZN9oceanbase6common7ObLogKVIRKNS0_8ObStringELb0EEC2EPKcS4_:0 + 0: 0 +_ZN9oceanbase6common12ObTimeoutCtx15set_abs_timeoutEl:36:1 + 1: 1 + 2: 1 + 3: 1 + 4: 0 + 5.1: 0 + 7: 1 + 9: 1 +_ZN9oceanbase6common12ObISQLClient10ReadResultD2Ev:36:1 + 1: 1 + 3: 0 + 2: _ZN9oceanbase6common12ObISQLClient10ReadResult5resetEv:13 + 2: 1 + 3: 1 _ZN9oceanbase8observer21ObInnerSQLReadContextD1Ev:1 + 4: 0 +_ZN9oceanbase6common12ObISQLClient10ReadResultD1Ev:36:1 + 1: 1 + 3: 0 + 2: _ZN9oceanbase6common12ObISQLClient10ReadResult5resetEv:13 + 2: 1 + 3: 1 _ZN9oceanbase8observer21ObInnerSQLReadContextD1Ev:1 + 4: 0 +_ZN9oceanbase6common12ObISQLClient10ReadResult12mysql_resultEv:36:2 + 1: 2 + 3: 2 + 4: 2 _ZN9oceanbase8observer21ObInnerSQLReadContext12mysql_resultEv:2 + 6: 0 +_ZN9oceanbase6common11ObArrayImplINS_5share10ObUnitInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE7destroyEv:36:0 + 1: 0 + 2: 0 + 3.1: 0 + 3.3: 0 + 4: 0 + 6: 0 + 7: 1 + 9: 1 + 11: 1 + 13: 1 +_ZN6obutil9ObSysTime12microSecondsEl:36:4 + 1: 4 + 2: 4 +easy_client_wait:35:1 + 1: 1 + 2: 1 + 4.1: 1 + 5: 1 + 8: 0 + 10: 0 + 18.1: 0 + 19: 0 + 22: 0 + 24: 0 + 25: 0 + 26: 0 + 29: 0 + 32.1: 0 + 10: easy_list_empty:0 + 2: 0 + 21: easy_list_del:0 + 2: 0 + 3.1: 0 + 2: __easy_list_del:0 + 2: 0 + 3: 0 + 22: easy_list_add_tail:0 + 2: 0 + 2: __easy_list_add:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 25: easy_list_movelist:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7.1: 0 + 9.1: 0 + 2: easy_list_empty:0 + 2: 0 +_ZN9oceanbase11transaction23ObTenantWeakReadService10handle_ls_ERNS_7storage4ObLSE:35:0 + 1: 0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 10: 0 + 13.1: 1 _ZN9oceanbase7storage14ObLSWRSHandler38generate_ls_weak_read_snapshot_versionERNS0_4ObLSERbS4_Rll:1 + 13.2: 0 + 19.1: 0 + 20.1: 0 + 21: 0 + 22.1: 0 + 24.1: 0 + 24.2: 0 + 26.1: 0 + 31: 0 + 32.5: 0 + 6: _ZNK9oceanbase7storage4ObLS9get_ls_idEv:0 + 0: _ZN9oceanbase5share6ObLSIDC2ERKS1_:0 + 0: 0 + 7: _ZNK9oceanbase7storage4ObLS13get_tenant_idEv:0 + 0: 0 + 13: _ZN9oceanbase7storage4ObLS18get_ls_wrs_handlerEv:19 + 0: 1 +_ZNK9oceanbase3lib17ObMallocAllocator29print_tenant_ctx_memory_usageEm:34:0 + 1: 0 + 3.1: 1 + 3.3: 1 + 5: 1 + 9: 0 + 4: _ZNK9oceanbase3lib17ObMallocAllocator24get_tenant_ctx_allocatorEmm:17 + 3: 1 + 4: 1 + 9: 0 + 10.1: 0 + 10.3: 0 + 10.4: 0 + 13.2: 0 + 16.1: 0 + 8: _ZN9oceanbase5obsys12ObRLockGuardC2ERKNS0_8ObRWLockEb:0 + 0: _ZNK9oceanbase5obsys8ObRWLock5rlockEv:0 + 0: 0 + 0.1: _ZN9oceanbase5obsys15ObLockGuardBaseINS0_7ObRLockEEC2ERKS2_b:0 + 0: 0 + 2.1: 0 + 2.3: 0 + 6: _ZNK9oceanbase3lib20ObTenantCtxAllocator18print_memory_usageEv:4 + 0: 1 _ZNK9oceanbase3lib20ObTenantCtxAllocator11print_usageEv:1 +_ZNK9oceanbase12blocksstable13ObDatumRowkey22to_multi_version_rangeERNS_6common12ObIAllocatorERNS0_12ObDatumRangeE:34:0 + 1: 0 + 2: 0 + 4: 0 + 5: 0 + 6.1: 0 + 7.1: 0 + 8.1: 0 + 9.1: 1 + 10.1: 0 + 14: 1 + 17: 1 + 4: _ZNK9oceanbase12blocksstable13ObDatumRowkey8is_validEv:0 + 0: 0 + 0.1: 0 + 13: _ZN9oceanbase6common12ObBorderFlag21unset_inclusive_startEv:5 + 0: 1 +_ZNK9oceanbase11transaction33ObTenantWeakReadClusterVersionMgr11get_versionElRlb:34:0 + 3: 0 + 4: 0 + 8: 0 + 11.2: 0 + 11.4: 0 + 12: 0 + 13: 0 + 14.1: 0 + 16: 0 + 17.1: 0 + 19: 0 + 24: 0 + 25: 0 + 26: 0 + 33.1: 0 + 36: 0 + 37: 0 + 39: 0 + 40.1: 0 + 49: 0 + 50.5: 1 _ZN9oceanbase6common14SpinRLockGuardD2Ev:1 + 50.6: 0 + 50.7: 0 + 50.9: 1 _ZN9oceanbase6common13ObSEArrayImplINS0_6ObAddrELl16ENS0_19ModulePageAllocatorELb0EED2Ev:1 + 5: _ZN9oceanbase6common9ObSEArrayINS0_6ObAddrELl16ENS0_19ModulePageAllocatorELb0EEC2Ev:0 + 0.1: 0 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS0_6ObAddrELl16ENS0_19ModulePageAllocatorELb0EEC2ElRKS3_:0 + 2: 0 + 5: 0 + 6: 0 + 8: 0 + 17.1: 0 + 2: _ZN9oceanbase6common8ObIArrayINS0_6ObAddrEEC2EPS2_l:0 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_6ObAddrEEC2EPS2_l:0 + 0: 0 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:0 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:0 + 2: 0 + 8: 0 + 33: _ZNK9oceanbase6common12ObIArrayWrapINS0_6ObAddrEE5countEv:0 + 0: 0 +_ZN9oceanbase8observer20ObInnerSQLConnection23start_transaction_innerERKmb:34:0 + 3: 0 + 4: 0 + 11: 0 + 12: 0 + 13: 0 + 16.1: 0 + 19: 0 + 19.4: 0 + 19.6: 0 + 19.7: 0 + 19.10: 0 + 19.14: 0 + 20: 0 + 21: 0 + 22.1: 0 + 23.2: 0 + 23.3: 0 + 24: 0 + 25: 0 + 25.1: 0 + 26.1: 0 + 29: 0 + 32: 0 + 33.1: 0 + 34: 0 + 35.1: 0 + 36.1: 0 + 36.2: 0 + 37.1: 0 + 38.1: 0 + 39: 0 + 39.1: 0 + 40.1: 0 + 41.1: 0 + 41.2: 1 + 42.1: 0 + 48: 0 + 49: 0 + 53.1: 0 + 54: 0 + 55.1: 0 + 57.2: 0 + 57.5: 0 + 58: 0 + 59.1: 0 + 61.1: 0 + 61.3: 0 + 61.4: 0 + 61.5: 0 + 63.1: 0 + 65.1: 0 + 65.2: 0 + 66.1: 0 + 68.2: 0 + 68.3: 0 + 69: 0 + 70.1: 0 + 70.3: 0 + 71.2: 0 + 72: 0 + 77: 0 + 78: 0 + 79.1: 0 + 80.4: 0 + 81.1: 0 + 83.2: 0 + 83.3: 0 + 83.4: 0 + 83.8: 0 + 83.9: 0 + 87.1: 0 + 88.3: 0 + 89.2: 0 + 90.1: 0 + 96.4: 0 + 96.6: 0 + 97: 0 + 104.35: 0 + 104.42: 0 + 104.45: 0 + 5: _ZN9oceanbase6common8ObStringC2Ev:0 + 1: 0 + 18: _ZN9oceanbase8observer20ObInnerSQLConnection18ObSqlQueryExecutorC2ERKNS_6common8ObStringE:0 + 0: 0 + 19.2: _ZN9oceanbase6common8precheckINS_8observer16ObInnerSQLResultEEEibRb:0 + 6: _ZN9oceanbase6common15check_from_heapEiRb:0 + 4: 0 + 5: 0 + 6: 0 + 6.1: 0 + 10: 0 + 10.2: 0 + 19.6: _ZN9oceanbase6common2SVINS_8observer16ObInnerSQLResultELb0EEC2IZNS2_20ObInnerSQLConnection23start_transaction_innerERKmbE5$_198EEibOT_:0 + 3: 0 + 5: 0 + 6: 0 + 9: _ZZN9oceanbase8observer20ObInnerSQLConnection23start_transaction_innerERKmbENK5$_198clEPv:0 + 0.1: 0 + 0: _ZN9oceanbase8observer20ObInnerSQLConnection11get_sessionEv:0 + 0: 0 + 19.9: _ZN9oceanbase8observer20ObInnerSQLConnection11get_sessionEv:0 + 0: 0 + 23.1: _ZN9oceanbase8observer14global_contextEv:0 + 2: _ZN9oceanbase8observer8ObServer12get_instanceEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 33: _ZNK9oceanbase8observer20ObInnerSQLConnection11is_in_transEv:0 + 0: 0 + 45: _ZN9oceanbase8observer20ObInnerSQLConnection12TimeoutGuardC2ERS1_:0 + 1: 0 + 4: 0 + 4: _ZN9oceanbase3lib6Worker4selfEv:0 + 3: 0 + 4: 0 + 4.1: _ZNK9oceanbase3lib6Worker14get_timeout_tsEv:0 + 0: 0 + 5: _ZN9oceanbase8observer20ObInnerSQLConnection11get_sessionEv:0 + 0: 0 + 5.2: _ZNK9oceanbase3sql18ObBasicSessionInfo17get_query_timeoutERl:0 + 2: 0 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache20get_ob_query_timeoutEv:0 + 0: 0 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache20get_ob_query_timeoutEb:0 + 0: 0 + 6.2: _ZNK9oceanbase3sql18ObBasicSessionInfo14get_tx_timeoutERl:0 + 2: 0 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache18get_ob_trx_timeoutEv:0 + 0: 0 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache18get_ob_trx_timeoutEb:0 + 0: 0 + 46: _ZN9oceanbase6common6ObAddrC2Ev:0 + 1: 0 + 47: _ZN9oceanbase5share6ObLSIDC2El:0 + 0: 0 + 53: _ZNK9oceanbase8observer20ObInnerSQLConnection16is_resource_connEv:0 + 0: 0 + 57.4: _ZNK9oceanbase6common6ObAddr8is_validEv:0 + 3: 0 + 4: 0 + 5: 0 + 8.1: 0 + 9.1: 0 + 10: 0 + 13.1: 0 + 13.3: 0 + 14: 0 + 61.3: _ZN9oceanbase5share6ObLSIDC2ERKS1_:0 + 0: 0 + 61.5: _ZN9oceanbase5share6ObLSIDD2Ev:0 + 0: _ZN9oceanbase5share6ObLSID5resetEv:0 + 0: 0 + 61.6: _ZN9oceanbase5share6ObLSIDD2Ev:0 + 0: _ZN9oceanbase5share6ObLSID5resetEv:0 + 0: 0 + 64.1: _ZN9oceanbase8observer20ObInnerSQLConnection16set_resource_svrERKNS_6common6ObAddrE:0 + 0: _ZN9oceanbase6common6ObAddraSERKS1_:0 + 1: 0 + 2: 0 + 3: 0 + 68: _ZN9oceanbase8observer8ObServer12get_instanceEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 68.3: _ZNK9oceanbase8observer20ObInnerSQLConnection20get_resource_conn_idEv:0 + 0: 0 + 68.4: _ZN9oceanbase5obrpc21ObInnerSQLTransmitArgC2ENS_6common6ObAddrES3_mmNS2_8ObStringENS1_21InnerSQLOperationTypeEbllllmNS2_16ObSessionDDLInfoEb:0 + 6: 0 + 7: 0 + 8: 0 + 9: 0 + 10: 0 + 11: 0 + 11: _ZN9oceanbase6common18ObTimeZoneInfoWrapC2Ev:0 + 1: 0 + 3: 0 + 5: 0 + 6: 0 + 7: 0 + 2: _ZN9oceanbase6common14ObTimeZoneInfoC2Ev:0 + 1: 0 + 2: 0 + 1: _ZN9oceanbase6common11ObTZMapWrapC2Ev:0 + 0: 0 + 11.1: _ZN9oceanbase6common8ObStringC2Ev:0 + 1: 0 + 70: _ZNK9oceanbase8observer20ObInnerSQLConnection15get_compat_modeEv:0 + 3: _ZNK9oceanbase6common9sqlclient16ObISQLConnection21is_oracle_compat_modeEv:0 + 0: 0 + 71: _ZN9oceanbase3lib6Worker4selfEv:0 + 3: 0 + 4: 0 + 71.1: _ZNK9oceanbase3lib6Worker14get_timeout_tsEv:0 + 0: 0 + 73: _ZN9oceanbase8observer20ObInnerSQLConnection11get_sessionEv:0 + 0: 0 + 73.1: _ZNK9oceanbase3sql18ObBasicSessionInfo25get_local_nls_date_formatEv:0 + 2: 0 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache19get_nls_date_formatEv:0 + 0: 0 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache19get_nls_date_formatEb:0 + 0: 0 + 73.3: _ZN9oceanbase5obrpc21ObInnerSQLTransmitArg15set_nls_formatsERKNS_6common8ObStringES5_S5_:0 + 4: 0 + 5: 0 + 6: 0 + 74.1: _ZNK9oceanbase3sql18ObBasicSessionInfo30get_local_nls_timestamp_formatEv:0 + 2: 0 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_nls_timestamp_formatEv:0 + 0: 0 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache24get_nls_timestamp_formatEb:0 + 0: 0 + 75.1: _ZNK9oceanbase3sql18ObBasicSessionInfo33get_local_nls_timestamp_tz_formatEv:0 + 2: 0 + 2: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache27get_nls_timestamp_tz_formatEv:0 + 0: 0 + 0: _ZNK9oceanbase3sql18ObBasicSessionInfo12SysVarsCache27get_nls_timestamp_tz_formatEb:0 + 0: 0 + 76: _ZN9oceanbase8observer16ObInnerSQLResult17remote_result_setEv:0 + 1: 0 + 76.1: _ZN9oceanbase3sql17ObRemoteResultSet18get_stream_handlerEv:0 + 0: 0 + 80.2: _ZNK9oceanbase3sql18ObBasicSessionInfo16get_tz_info_wrapEv:0 + 0: 0 + 80.3: _ZN9oceanbase5obrpc21ObInnerSQLTransmitArg16set_tz_info_wrapERKNS_6common18ObTimeZoneInfoWrapE:0 + 0: 0 + 82.1: _ZN9oceanbase5obrpc25ObInnerSqlRpcStreamHandle10get_resultEv:0 + 3: 0 + 4.1: 0 + 3: _ZN9oceanbase5obrpc24ObInnerSQLTransmitResult17is_scanner_initedEv:0 + 0: _ZNK9oceanbase6common9ObScanner9is_initedEv:0 + 0: 0 + 82.2: _ZN9oceanbase5obrpc24ObInnerSQLTransmitResult11set_conn_idEl:0 + 0: 0 + 83.1: _ZN9oceanbase8observer14global_contextEv:0 + 2: _ZN9oceanbase8observer8ObServer12get_instanceEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 83.2: _ZNK9oceanbase5obrpc18ObInnerSQLRpcProxy2toERKNS_6common6ObAddrE:0 + 0: _ZN9oceanbase5obrpc18ObInnerSQLRpcProxyC2ERKS1_:0 + 0: 0 + 0: _ZN9oceanbase5obrpc10ObRpcProxyC2ERKS1_:0 + 0: 0 + 0: _ZN9oceanbase5obrpc15ObRpcResultCodeC2ERKS1_:0 + 0: 0 + 0: _ZN9oceanbase6common9ObSEArrayINS0_15ObWarningBuffer11WarningItemELl2ENS0_19ModulePageAllocatorELb0EEC2ERKS5_:0 + 0: 0 + 0: _ZN9oceanbase6common13ObSEArrayImplINS0_15ObWarningBuffer11WarningItemELl2ENS0_19ModulePageAllocatorELb0EEC2ERKS5_:0 + 2: 0 + 3: 0 + 4: 0 + 6: 0 + 8: 0 + 10: 0 + 2: _ZN9oceanbase6common8ObIArrayINS0_15ObWarningBuffer11WarningItemEEC2EPS3_l:0 + 0: _ZN9oceanbase6common12ObIArrayWrapINS0_15ObWarningBuffer11WarningItemEEC2EPS3_l:0 + 0: 0 + 7.1: _ZN9oceanbase6common19ModulePageAllocatorC2ERKNS_3lib7ObLabelEll:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:0 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:0 + 2: 0 + 8: 0 + 16: _ZN9oceanbase6common13ObSEArrayImplINS0_15ObWarningBuffer11WarningItemELl2ENS0_19ModulePageAllocatorELb0EEaSERKS5_:0 + 4: 0 + 7: 0 + 8.1: 0 + 8.3: 0 + 8.5: 0 + 9: 0 + 13: 0 + 14: 0 + 15: 0 + 5: _ZN9oceanbase6common13ObSEArrayImplINS0_15ObWarningBuffer11WarningItemELl2ENS0_19ModulePageAllocatorELb0EE5reuseEv:0 + 8: 0 + 9: 0 + 6: _ZNK9oceanbase6common12ObIArrayWrapINS0_15ObWarningBuffer11WarningItemEE5countEv:0 + 0: 0 + 9: _ZN9oceanbase6common16construct_assignINS0_15ObWarningBuffer11WarningItemEEEiRT_RKS4_:0 + 2: _ZN9oceanbase6common21construct_assign_wrapINS0_15ObWarningBuffer11WarningItemEEEiRT_RKS4_NS0_8BoolTypeILb0EEE:0 + 2: 0 + 0.6: _ZN9oceanbase5obrpc10ObRpcProxy10set_serverERKNS_6common6ObAddrE:0 + 0: _ZN9oceanbase6common6ObAddraSERKS1_:0 + 1: 0 + 2: 0 + 3: 0 + 83.3: _ZN9oceanbase5obrpc18ObInnerSQLRpcProxy2byEm:0 + 0: _ZN9oceanbase5obrpc10ObRpcProxy10set_tenantEm:0 + 0: 0 + 83.4: _ZN9oceanbase5obrpc18ObInnerSQLRpcProxy7timeoutEl:0 + 0: _ZN9oceanbase5obrpc10ObRpcProxy11set_timeoutEl:0 + 0: 0 + 83.5: _ZN9oceanbase5obrpc25ObInnerSqlRpcStreamHandle10get_resultEv:0 + 3: 0 + 4.1: 0 + 3: _ZN9oceanbase5obrpc24ObInnerSQLTransmitResult17is_scanner_initedEv:0 + 0: _ZNK9oceanbase6common9ObScanner9is_initedEv:0 + 0: 0 + 83.6: _ZN9oceanbase5obrpc25ObInnerSqlRpcStreamHandle10get_handleEv:0 + 0: 0 + 83.7: _ZN9oceanbase5obrpc9ObRpcOptsC2Ev:0 + 1: 0 + 2: 0 + 3: 0 + 8: 0 + 5: _ZN9oceanbase6common6ObAddrC2Ev:0 + 1: 0 + 6: _ZN9oceanbase6common8ObStringC2Ev:0 + 1: 0 + 83.9: _ZN9oceanbase5obrpc10ObRpcProxyD2Ev:0 + 0: 0 + 0: _ZN9oceanbase5obrpc15ObRpcResultCodeD2Ev:0 + 0: _ZN9oceanbase6common13ObSEArrayImplINS0_15ObWarningBuffer11WarningItemELl2ENS0_19ModulePageAllocatorELb0EED2Ev:0 + 1: 0 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS0_15ObWarningBuffer11WarningItemELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv:0 + 9: 0 + 11: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplINS0_15ObWarningBuffer11WarningItemELl2ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 83.11: _ZN9oceanbase5obrpc10ObRpcProxyD2Ev:0 + 0: 0 + 0: _ZN9oceanbase5obrpc15ObRpcResultCodeD2Ev:0 + 0: _ZN9oceanbase6common13ObSEArrayImplINS0_15ObWarningBuffer11WarningItemELl2ENS0_19ModulePageAllocatorELb0EED2Ev:0 + 1: 0 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS0_15ObWarningBuffer11WarningItemELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv:0 + 9: 0 + 11: 0 + 13: 0 + 15: 0 + 24: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplINS0_15ObWarningBuffer11WarningItemELl2ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 88.1: _ZN9oceanbase5obrpc25ObInnerSqlRpcStreamHandle10get_resultEv:0 + 3: 0 + 4.1: 0 + 3: _ZN9oceanbase5obrpc24ObInnerSQLTransmitResult17is_scanner_initedEv:0 + 0: _ZNK9oceanbase6common9ObScanner9is_initedEv:0 + 0: 0 + 88.2: _ZNK9oceanbase5obrpc24ObInnerSQLTransmitResult12get_err_codeEv:0 + 0: 0 + 91.2: _ZNK9oceanbase5obrpc24ObInnerSQLTransmitResult11get_conn_idEv:0 + 0: 0 + 91.3: _ZN9oceanbase8observer20ObInnerSQLConnection20set_resource_conn_idEm:0 + 0: 0 + 92.1: _ZN9oceanbase8observer20ObInnerSQLConnection11get_sessionEv:0 + 0: 0 + 92.2: _ZN9oceanbase3sql16ObSQLSessionInfo14set_trans_typeENS_11transaction9ObTxClassE:0 + 0: 0 + 94: _ZN9oceanbase8observer16ObInnerSQLResult23inc_need_update_endtimeEv:0 + 0: 0 + 95: _ZN9oceanbase5obrpc21ObInnerSQLTransmitArgD2Ev:0 + 0: _ZN9oceanbase6common18ObTimeZoneInfoWrapD2Ev:0 + 0: 0 + 0.1: _ZN9oceanbase6common17ObTimeZoneInfoPosD2Ev:0 + 0: 0 + 0.1: 0 + 0.3: 0 + 95.2: _ZN9oceanbase5obrpc21ObInnerSQLTransmitArgD2Ev:0 + 0: _ZN9oceanbase6common18ObTimeZoneInfoWrapD2Ev:0 + 0: 0 + 0.1: _ZN9oceanbase6common17ObTimeZoneInfoPosD2Ev:0 + 0: 0 + 0.1: 0 + 0.3: 0 + 98: _ZN9oceanbase8observer20ObInnerSQLConnection15set_is_in_transEb:10 + 0: 1 + 104.35: _ZN9oceanbase6common2SVINS_8observer16ObInnerSQLResultELb0EED2Ev:13 + 2: 1 + 4: 1 _ZN9oceanbase8observer16ObInnerSQLResultD1Ev:1 + 5: 0 + 6: 0 + 6.1: 0 + 104.38: _ZN9oceanbase6common2SVINS_8observer16ObInnerSQLResultELb0EED2Ev:0 + 2: 0 + 4: 0 + 5: 0 + 6: 0 + 6.1: 0 +_ZN9oceanbase7storage16ObTxCtxTableInfoC2Ev:33:0 + 0: 0 + 0.1: 0 + 0.2: 0 + 0.3: 0 + 0.4: 1 _ZN9oceanbase7storage16ObTxCtxTableInfo5resetEv:2 + 0.5: 2 + 0.11: 0 + 0: _ZN9oceanbase11transaction9ObTransIDC2Ev:0 + 0: 0 + 0.1: _ZN9oceanbase7storage8ObTxDataC2Ev:0 + 0.2: 0 + 0: _ZN9oceanbase7storage14ObTxCommitDataC2Ev:0 + 0.4: 0 + 0: _ZN9oceanbase11transaction9ObTransIDC2Ev:0 + 0: 0 + 0.1: _ZN9oceanbase7storage16ObUndoStatusListC2Ev:0 + 0: 0 + 0.6: _ZN9oceanbase7storage16ObUndoStatusListD2Ev:0 + 0: _ZN9oceanbase7storage16ObUndoStatusList5resetEv:0 + 2: 0 + 3: 0 + 4: _ZN9oceanbase6common15ObSmallSpinLockIhLl0ELl500ELl100EE6unlockEv:0 + 2: 0 + 3: 0 + 0.3: _ZN9oceanbase11transaction9tablelock15ObTableLockInfoC2Ev:11 + 0: 1 + 0.10: _ZN9oceanbase11transaction9tablelock15ObTableLockInfoD2Ev:0 + 0: 0 + 0.12: _ZN9oceanbase7storage8ObTxDataD2Ev:0 + 0: _ZN9oceanbase7storage16ObUndoStatusListD2Ev:0 + 0: _ZN9oceanbase7storage16ObUndoStatusList5resetEv:0 + 2: 0 + 3: 0 + 4: _ZN9oceanbase6common15ObSmallSpinLockIhLl0ELl500ELl100EE6unlockEv:0 + 2: 0 + 3: 0 + 0.2: _ZN9oceanbase7storage14ObTxCommitDataD2Ev:0 + 0: _ZN9oceanbase11transaction9ObTransIDD2Ev:0 + 0: 0 + 0.14: _ZN9oceanbase11transaction9ObTransIDD2Ev:0 + 0: 0 +_ZN9oceanbase6common4hash11ObHashTableIlNS1_11HashMapPairIllEENS1_9hash_funcIlEENS1_8equal_toIlEENS1_10pair_firstIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS4_EELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv:33:0 + 1: 0 + 3: 0 + 3.1: 0 + 6.1: 0 + 6.3: 0 + 8: 0 + 9.1: 0 + 11: 0 + 12: 0 + 15: 0 + 19: 0 + 22: 0 + 24: 1 + 26: 1 + 3: _ZN9oceanbase6common4hash6initedIPNS1_17ObHashTableBucketINS1_11HashMapPairIllEENS0_7ObLatchENS1_5NCondEEEEEbRKT_:0 + 2: _ZN9oceanbase6common4hash9do_initedIPNS1_17ObHashTableBucketINS1_11HashMapPairIllEENS0_7ObLatchENS1_5NCondEEEEEbRKT_NS1_16NormalPointerTagE:0 + 2: 0 + 65226: 0 + 10: _ZN9oceanbase6common4hash15ObHashTableNodeINS1_11HashMapPairIllEEE16check_magic_codeEv:0 + 0: 0 + 10.1: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 22: _ZN9oceanbase6common4hash7destroyIPNS1_17ObHashTableBucketINS1_11HashMapPairIllEENS0_7ObLatchENS1_5NCondEEENS0_8ObMallocEEEvRT_RT0_:9 + 2: _ZN9oceanbase6common4hash10do_destroyIPNS1_17ObHashTableBucketINS1_11HashMapPairIllEENS0_7ObLatchENS1_5NCondEEENS0_8ObMallocEEEvRT_NS1_16NormalPointerTagERT0_:9 + 2: 0 + 3: 0 + 4: 1 +_ZNK9oceanbase6common12ObTimeoutCtx11get_timeoutEl:32:1 + 1: 1 + 3: 1 + 4: 1 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:1 + 6: 1 +_ZNK9oceanbase11transaction16ObTxKeepaliveMsg9serializeEPclRl:32:1 + 0: 1 _ZNK9oceanbase11transaction7ObTxMsg9serializeEPclRl:1 + 0.1: 0 + 0.2: 0 + 0.4: 0 + 0.11: 0 + 0.12: 0 + 0.19: 0 + 0.2: _ZN9oceanbase6common13serialization6encodeEPclRll:0 + 2: _ZN9oceanbase6common13serialization11encode_vi64EPclRll:0 + 3: 0 + 4: 0 + 5: 0 + 6.1: 0 + 7: 0 + 8: 0 + 11: 0 + 4: _ZN9oceanbase6common13serialization19encoded_length_vi64El:0 + 4: 0 + 6.1: 0 + 8.1: 0 + 10.1: 0 + 12.1: 0 + 14.1: 0 + 16.1: 0 + 18.1: 0 + 0.4: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.5: _ZN9oceanbase6common7ObLogKVIRA8_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 0.14: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.16: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.18: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase8observer20ObInnerSQLConnection8RefGuardD2Ev:32:4 + 1: 4 + 2: 4 _ZN9oceanbase8observer20ObInnerSQLConnection5unrefEv:4 + 2.1: 0 + 3: 0 +_ZN9oceanbase6common13serialization19encoded_length_vi64El:32:1 + 1: 1 + 4: 1 + 6.1: 1 + 8.1: 0 + 10.1: 0 + 12.1: 0 + 14.1: 0 + 16.1: 0 + 18.1: 0 + 25: 1 +_ZN9oceanbase5share20ObLSTemplateOperator9exec_readINS0_18ObLSStatusOperatorENS0_19ObLSPrimaryZoneInfoEEEiRKmRKNS_6common11ObSqlStringERNS7_12ObISQLClientEPT_RNS7_8ObIArrayIT0_EE:32:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 8.1: 0 + 10: 0 + 11: 0 + 11.2: 0 + 12: 0 + 12.1: 0 + 13: 0 + 14: 0 + 15.1: 0 + 16.1: 0 + 16.2: 0 + 17.1: 0 + 19: 0 + 19.4: 0 + 19.13: 0 + 21: 0 + 21.1: 0 + 21.2: 0 + 22.1: 0 + 23.2: 0 + 24: 0 + 25.1: 0 + 28.1: 0 + 28.2: 0 + 28.3: 0 + 28.4: 0 + 30: 0 + 30.1: 0 + 31.1: 0 + 32.1: 0 + 32.2: 0 + 33.1: 0 + 36: 0 + 37: 0 + 39.1: 0 + 41: 0 + 42.1: 0 + 47: 1 _ZN9oceanbase6common12ObTimeoutCtxD1Ev:1 + 47.2: 0 + 48: 1 + 12: _ZN9oceanbase5share14ObLSLifeIAgent18get_exec_tenant_idEm:0 + 3: 0 + 5.1: 0 + 3: _ZN9oceanbase6common13is_sys_tenantEm:0 + 2: 0 + 5.1: _ZN9oceanbase6common14is_meta_tenantEm:0 + 3: 0 + 4.1: 0 + 19.6: _ZN9oceanbase6common2SVINS0_12ObISQLClient10ReadResultELb1EEC2IZNS_5share20ObLSTemplateOperator9exec_readINS6_18ObLSStatusOperatorENS6_19ObLSPrimaryZoneInfoEEEiRKmRKNS0_11ObSqlStringERS2_PT_RNS0_8ObIArrayIT0_EEEUlPvE_EEibOSH_:0 + 3: 0 + 5: 0 + 6: 0 + 9: _ZZN9oceanbase5share20ObLSTemplateOperator9exec_readINS0_18ObLSStatusOperatorENS0_19ObLSPrimaryZoneInfoEEEiRKmRKNS_6common11ObSqlStringERNS7_12ObISQLClientEPT_RNS7_8ObIArrayIT0_EEENKUlPvE_clESJ_:0 + 0: 0 + 21: _ZNK9oceanbase6common11ObSqlString3ptrEv:0 + 0: 0 + 23.1: _ZN9oceanbase6common12ObISQLClient10ReadResult10get_resultEv:0 + 0: 0 + 27: _ZN9oceanbase5share19ObLSPrimaryZoneInfoC2Ev:0 + 0: 0 + 1: 0 + 1.1: 0 + 1.2: 0 + 1: _ZN9oceanbase5share6ObLSIDC2Ev:0 + 0: 0 + 1.1: _ZN9oceanbase3lib7ObLabelC2IA10_cEERKT_:0 + 2: _ZN9oceanbase3lib7ObLabelaSILm10EEERS1_RAT__Kc:0 + 4: 0 + 1.8: _ZN9oceanbase6common19ObFixedLengthStringILl128EEC2Ev:0 + 3: 0 + 29: _ZN9oceanbase5share19ObLSPrimaryZoneInfo5resetEv:0 + 2: 0 + 6: 0 + 4: _ZN9oceanbase5share6ObLSID5resetEv:0 + 0: 0 + 5: _ZN9oceanbase6common19ObFixedLengthStringILl128EE5resetEv:0 + 0: 0 + 44: _ZN9oceanbase5share19ObLSPrimaryZoneInfoD2Ev:0 + 0: 0 + 44.1: _ZN9oceanbase5share19ObLSPrimaryZoneInfoD2Ev:0 + 0: 0 + 46.1: _ZN9oceanbase6common2SVINS0_12ObISQLClient10ReadResultELb1EED2Ev:0 + 4: 0 + 6: 0 + 6.1: 0 + 46.3: _ZN9oceanbase6common2SVINS0_12ObISQLClient10ReadResultELb1EED2Ev:0 + 4: 0 + 6: 0 + 6.1: 0 +_ZN9oceanbase10logservice11ObGCHandler20is_valid_ls_gc_stateERKNS0_9LSGCStateE:32:4 + 1: 2 + 2: 2 + 2.1: 2 + 3: 2 +_ZN9oceanbase5share19ObLSLocationService12update_cacheElmRKNS0_6ObLSIDEbRKNS0_12ObLSLocationE:31:0 + 6: 0 + 7: 0 + 9: 0 + 10: 0 + 11.1: 0 + 12.4: 0 + 13: 0 + 14.1: 0 + 15.3: 0 + 16: 0 + 17: 0 + 18.1: 0 + 20.1: 0 + 20.2: 0 + 21.1: 0 + 23.2: 0 + 24: 0 + 24.1: 0 + 25.1: 0 + 27.1: 0 + 29.1: 0 + 29.2: 1 + 30.1: 0 + 33.1: 1 _ZZN9oceanbase5share19ObLSLocationService12update_cacheElmRKNS0_6ObLSIDEbRKNS0_12ObLSLocationEENK5$_312clEPKc.db28c62327e16d3ae5c8a88acfd53bbb:1 + 36: 0 + 37.10: 0 + 8: _ZN9oceanbase5share6ObLSIDC2ERKS1_:0 + 0: 0 + 8.3: _ZN9oceanbase5share20ObLSLocationCacheKeyC2ElmNS0_6ObLSIDE:0 + 4: 0 + 5: 0 + 4: _ZN9oceanbase5share6ObLSIDC2ERKS1_:0 + 0: 0 + 12.1: _ZNK9oceanbase5share20ObLSLocationCacheKey8is_validEv:0 + 2: 0 + 3: 0 + 12.3: _ZNK9oceanbase5share12ObLSLocation8is_validEv:0 + 3: 0 + 3.1: 0 + 2: _ZNK9oceanbase5share20ObLSLocationCacheKey8is_validEv:0 + 2: 0 + 3: 0 + 3.1: 0 + 4: 0 + 4.1: _ZNK9oceanbase5share6ObLSID8is_validEv:0 + 0: 0 + 23.1: _ZN9oceanbase6common13is_sys_tenantEm:0 + 2: 0 +_ZN9oceanbase11transaction14ObTransService25ls_rollback_to_savepoint_ERKNS0_9ObTransIDERKNS_5share6ObLSIDElllRlPKNS0_8ObTxDescEl:31:0 + 8: 0 + 11: 0 + 12: 0 + 14.1: 0 + 15: 0 + 16.1: 0 + 19.1: 0 + 22: 0 + 23: 0 + 23.1: 0 + 24: 0 + 25.1: 0 + 27.1: 1 + 28.1: 0 + 30.1: 1 + 31: 0 + 34: 1 + 35: 1 _ZN9oceanbase11transaction14ObTransService14revert_tx_ctx_EPNS0_14ObPartTransCtxE:1 + 37: 0 + 12: _ZN9oceanbase11transaction14ObTransService11get_tx_ctx_ERKNS_5share6ObLSIDERKNS0_9ObTransIDERPNS0_14ObPartTransCtxE:0 + 3: _ZN9oceanbase11transaction14ObTransService11get_tx_ctx_ERKNS_5share6ObLSIDEPNS_7storage4ObLSERKNS0_9ObTransIDERPNS0_14ObPartTransCtxE:0 + 9: 0 + 12.1: 0 + 13: 0 + 15: _ZN9oceanbase11transaction14ObTransService14create_tx_ctx_ERKNS_5share6ObLSIDERKNS0_8ObTxDescERPNS0_14ObPartTransCtxE:0 + 3: 0 +_ZNK9oceanbase6common10ObFunctionIFiRKNS_7storage8ObTxDataEPNS2_9ObTxCCCtxEEE7DerivedINS2_26ObCleanoutNothingOperationEE6invokeES5_S7_:30:3 + 0: 3 + 1: 3 + 1.2: 3 _ZN9oceanbase7storage26ObCleanoutNothingOperationclERKNS0_8ObTxDataEPNS0_9ObTxCCCtxE:3 +_ZNK9oceanbase6common10ObFunctionIFbvEE7DerivedINS_7storage25ObReCheckNothingOperationEE6invokeEv:30:3 + 0: 3 + 1: 3 _ZN9oceanbase7storage25ObReCheckNothingOperationclEv:3 +_ZNK9oceanbase4palf11LogWriteBuf13get_buf_countEv:30:3 + 1: 3 + 2: 3 + 2: _ZNK9oceanbase6common12ObIArrayWrapINS_4palf11LogWriteBuf11InnerStructEE5countEv:12 + 0: 3 +_ZN9oceanbase6common12ObThreadCond7destroyEv:30:1 + 1: 1 + 2: 1 + 3: 1 + 4: 1 + 5.1: 0 + 7: 0 + 11: 0 + 12: 0 + 13.1: 0 + 15: 0 + 19: 0 + 20: 0 +_ZN9oceanbase3lib12common_yieldEv:30:1 + 1: 1 + 3: 1 + 2: _ZN9oceanbase5share9dag_yieldEv:24 + 3: 1 + 4: 0 + 2: _ZN9oceanbase5share17ObTenantDagWorker4selfEv:19 + 0: 1 +_ZN9oceanbase2pl12ObPDBManager12get_instanceEv:30:1 + 1: 1 + 3: 1 + 3.1: 1 + 8: 0 +_ZN9oceanbase11transaction9ObTxParamD2Ev:30:1 + 1: 1 + 2: 1 + 4: 1 + 7: 1 +_ZN9oceanbase11transaction9ObTxParamD1Ev:30:1 + 1: 1 + 2: 1 + 4: 1 + 7: 1 +_ZNK9oceanbase5obrpc15ObRpcResultCode10serialize_EPclRl:29:0 + 0: 0 + 0.1: 0 + 0.3: 0 + 0.9: 0 + 0.10: 0 + 0.12: 0 + 0.18: 0 + 0.19: 1 + 0.21: 0 + 0.27: 1 + 0.28: 0 + 0.35: 0 + 0.36: 0 + 0.43: 0 + 0.44: 0 + 0.51: 0 + 0.1: _ZN9oceanbase6common13serialization6encodeEPclRli:0 + 2: _ZN9oceanbase6common13serialization11encode_vi32EPclRli:0 + 3: 0 + 4: 0 + 5: 0 + 6.1: 0 + 7: 0 + 8: 0 + 11: 0 + 4: _ZN9oceanbase6common13serialization19encoded_length_vi32Ei:0 + 4: 0 + 6.1: 0 + 8.1: 0 + 10.1: 0 + 0.3: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRA7_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 0.10: _ZN9oceanbase6common13serialization6encodeILl512EEEiPclRlRAT__Kc:0 + 3: 0 + 7: 0 + 8: 0 + 9: 0 + 5: _ZN9oceanbase6common13serialization11encode_vi64EPclRll:0 + 3: 0 + 4: 0 + 5: 0 + 6.1: 0 + 7: 0 + 8: 0 + 11: 0 + 4: _ZN9oceanbase6common13serialization19encoded_length_vi64El:0 + 4: 0 + 6.1: 0 + 8.1: 0 + 10.1: 0 + 12.1: 0 + 14.1: 0 + 16.1: 0 + 18.1: 0 + 0.12: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 0.13: _ZN9oceanbase6common7ObLogKVIRA5_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 0.19: _ZN9oceanbase6common13serialization6encodeINS0_9ObSEArrayINS0_15ObWarningBuffer11WarningItemELl2ENS0_19ModulePageAllocatorELb0EEEEEiPclRlRKT_:0 + 2: _ZN9oceanbase6common13serialization11EnumEncoderILb0ENS0_9ObSEArrayINS0_15ObWarningBuffer11WarningItemELl2ENS0_19ModulePageAllocatorELb0EEEE6encodeEPclRlRKS7_:0 + 2: 0 + 0.21: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.6: 0 + 0.22: _ZN9oceanbase6common7ObLogKVIRA10_KcLb0EEC2EPS2_S4_:0 + 0: 0 + 0.30: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.32: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.34: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.38: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.40: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.42: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.46: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.48: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.50: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 +_ZNK9oceanbase6common12ObTimeoutCtx18is_trx_timeout_setEv:28:2 + 1: 2 + 2: 2 +_ZNK9oceanbase6common12ObTimeoutCtx12is_timeoutedEv:28:1 + 1: 1 + 3: 1 + 3.1: 1 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:1 + 7: 0 +_ZNK9oceanbase4palf10PalfHandle20get_last_rebuild_lsnERNS0_3LSNE:28:2 + 1: 2 + 3: 2 + 4: 2 _ZNK9oceanbase4palf14PalfHandleImpl20get_last_rebuild_lsnERNS0_3LSNE:2 + 6: 0 +_ZN9oceanbase6common9ObKVCacheINS_12blocksstable13ObRowCacheKeyENS2_15ObRowCacheValueEE3getERKS3_RPKS4_RNS0_15ObKVCacheHandleE:28:0 + 1: 0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 6.1: 0 + 8: 0 + 9: 1 + 9.1: 0 + 11.1: 0 + 14: 0 + 20: 1 +_ZN9oceanbase6common13ObSharedGuardINS_7storage12ObLSIteratorEE5resetEv:28:1 + 0: 1 + 1: 0 + 2: 0 + 3: 0 + 7: 0 + 11: 0 + 15: 0 + 16: 0 + 20: 1 + 1: _ZNK9oceanbase6common13ObSharedGuardINS_7storage12ObLSIteratorEE8is_validEv:7 + 1: _ZNK9oceanbase6common5guard8BlockPtrINS_7storage12ObLSIteratorEE8is_validEv:7 + 0: 1 + 0.1: 0 + 2: _ZN9oceanbase6common5guard12ControlBlockINS_7storage12ObLSIteratorEE10dec_sharedEv:0 + 1: 0 + 3: _ZNK9oceanbase6common10ObFunctionIFvPNS_7storage12ObLSIteratorEEE8is_validEv:0 + 0: 0 + 5: _ZNK9oceanbase6common10ObFunctionIFvPNS_7storage12ObLSIteratorEEEclES4_:0 + 2: 0 + 2.1: 0 + 11: _ZN9oceanbase6common5guard12ControlBlockINS_7storage12ObLSIteratorEE8dec_weakEv:0 + 1: 0 + 15: _ZN9oceanbase6common5guard12ControlBlockINS_7storage12ObLSIteratorEED2Ev:0 + 0: _ZN9oceanbase6common10ObFunctionIFvPNS_7storage12ObLSIteratorEEED2Ev:0 + 0.2: 0 + 0: _ZN9oceanbase6common10ObFunctionIFvPNS_7storage12ObLSIteratorEEE5resetEv:0 + 1: 0 + 2: 0 + 3: 0 + 4: 0 + 6: 0 + 3: _ZN9oceanbase6common10ObFunctionIFvPNS_7storage12ObLSIteratorEEE13is_local_obj_Ev:0 + 1: 0 + 19: _ZN9oceanbase6common5guard8BlockPtrINS_7storage12ObLSIteratorEE5resetEv:6 + 0: 1 +_ZN9oceanbase3sql18ObBasicSessionInfo16SysVarsCacheDataC2Ev:28:0 + 1: 0 + 4: 0 + 7: 0 + 9: 0 + 23: 0 + 25: 0 + 29: 0 + 31: 0 + 34: 0 + 36: 0 + 37: 0 + 39: 1 + 42: 0 + 43.1: 0 + 44: 0 + 46: 1 + 24: _ZN9oceanbase6common8ObStringC2Ev:0 + 1: 0 + 41: _ZN9oceanbase6common8ObStringC2Ev:0 + 1: 0 +_ZNK9oceanbase4palf10PalfHandle13get_end_ts_nsERl:27:1 + 1: 1 + 3: 1 + 4: 1 + 6: 1 + 4: _ZNK9oceanbase4palf14PalfHandleImpl13get_end_ts_nsEv:7 + 4: _ZNK9oceanbase4palf16LogSlidingWindow21get_last_slide_log_tsEv:7 + 2: 1 +_ZN9oceanbase7storage30ObSSTableMultiVersionRowGetter10inner_openERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextEPNS0_8ObITableEPKv:27:0 + 5: 0 + 6: 0 + 7: 0 + 8: 0 + 9.1: 0 + 11: 0 + 12: 1 + 13.1: 0 + 14.1: 1 _ZN9oceanbase7storage19ObSSTableRowScanner10inner_openERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextEPNS0_8ObITableEPKv:1 + 16.1: 0 + 17.1: 0 + 17.2: 0 + 18.1: 0 + 23: 0 + 17.1: _ZNK9oceanbase7storage16ObTableIterParam15get_out_col_cntEv:0 + 2: 0 + 2.1: _ZNK9oceanbase7storage15ObTableReadInfo17get_request_countEv:0 + 1: _ZNK9oceanbase6common12ObIArrayWrapINS_5share6schema9ObColDescEE5countEv:0 + 0: 0 + 20: _ZN9oceanbase12blocksstable12ObDmlRowFlag8set_flagENS0_9ObDmlFlagE:0 + 3: 0 +_ZN9oceanbase6common18ObDSSessionActionsD2Ev:27:1 + 1: 1 + 2: 1 + 3: 1 _ZN9oceanbase6common18ObDSSessionActions9clear_allEv:1 + 5.1: 1 + 5.2: 0 +_ZN9oceanbase6common18ObDSSessionActionsD1Ev:27:1 + 1: 1 + 2: 1 + 3: 1 _ZN9oceanbase6common18ObDSSessionActions9clear_allEv:1 + 5.1: 1 + 5.2: 0 +_ZN9oceanbase3sql18ObBasicSessionInfo25load_default_sys_variableEbb:27:0 + 1: 0 + 3: 1 + 4.1: 0 + 5.1: 1 _ZN9oceanbase3sql18ObBasicSessionInfo21init_system_variablesEbb:1 + 6.1: 0 + 8: 1 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:1 + 10: 0 +easy_session_create:26:0 + 1: 0 + 5: 0 + 8: 0 + 9: 0 + 11: 0 + 14: 1 + 15.1: 0 + 15.2: 0 + 15.3: 0 + 15.4: 0 + 18: 1 easy_pool_alloc_ex:1 + 19: 0 + 20: 0 + 21: 0 + 22: 0 + 23: 0 + 25.1: 0 + 25.2: 0 + 25.3: 0 + 25.4: 0 + 30: 0 + 31: 0 + 32: 0 + 36: 0 + 37: 0 + 38: 0 + 39.1: 0 + 48: 0 + 52: 0 +_ZThn320_N9oceanbase12blocksstable18ObMicroBlockReader22get_multi_version_infoEllRNS0_21ObMultiVersionRowFlagERNS_11transaction9ObTransIDERlS7_:26:2 +_ZNK9oceanbase11transaction8ObTxDesc22has_implicit_savepointEv:26:1 + 1: 1 + 2: 1 +_ZN9oceanbase6common10EventTable8instanceEv:26:1 + 1: 1 + 2: 1 + 2.1: 0 + 2.6: 0 + 3: 1 + 2.2: _ZN9oceanbase6common10EventTableC2Ev:0 + 0: 0 + 2: 0 +_ZNK9oceanbase6common8ObString9to_stringEPcl:25:0 + 1: 0 + 3: 0 + 4: 0 + 5: 0 + 5.4: 0 + 6: 1 + 8.1: 1 + 13: 0 + 4: _ZNK9oceanbase6common8ObString3ptrEv:0 + 0: 0 + 5: _ZNK9oceanbase6common8ObString6lengthEv:0 + 0: 0 +_ZN9oceanbase6common17ObMClockIORequestD2Ev:25:1 + 1: 1 + 2: 1 _ZN9oceanbase6common11ObIORequest7destroyEv:1 + 3: 0 + 3.1: 0 + 3.2: 0 + 3.8: 0 + 3: _ZN9oceanbase6common11ObRefHolderINS0_17ObTenantIOManagerEED2Ev:0 + 0: 0 + 0.2: 0 + 0: _ZN9oceanbase6common11ObRefHolderINS0_17ObTenantIOManagerEE5resetEv:0 + 1: 0 + 2: 0 + 3: 0 + 3.4: _ZN9oceanbase6common12ObThreadCondD2Ev:0 + 1: 0 + 2: 0 + 2.1: 0 +_ZN9oceanbase6common17ObMClockIORequestD1Ev:25:1 + 1: 1 + 2: 1 _ZN9oceanbase6common11ObIORequest7destroyEv:1 + 3: 0 + 3.1: 0 + 3.2: 0 + 3.8: 0 + 3: _ZN9oceanbase6common11ObRefHolderINS0_17ObTenantIOManagerEED2Ev:0 + 0: 0 + 0.2: 0 + 0: _ZN9oceanbase6common11ObRefHolderINS0_17ObTenantIOManagerEE5resetEv:0 + 1: 0 + 2: 0 + 3: 0 + 3.4: _ZN9oceanbase6common12ObThreadCondD2Ev:0 + 1: 0 + 2: 0 + 2.1: 0 +_ZN9oceanbase6common11ObIORequestD2Ev:25:1 + 1: 1 + 2: 1 _ZN9oceanbase6common11ObIORequest7destroyEv:1 + 3: 0 + 3.1: 0 + 3.2: 0 + 3.8: 0 + 3: _ZN9oceanbase6common11ObRefHolderINS0_17ObTenantIOManagerEED2Ev:0 + 0: 0 + 0.2: 0 + 0: _ZN9oceanbase6common11ObRefHolderINS0_17ObTenantIOManagerEE5resetEv:0 + 1: 0 + 2: 0 + 3: 0 + 3.4: _ZN9oceanbase6common12ObThreadCondD2Ev:0 + 1: 0 + 2: 0 + 2.1: 0 +_ZN9oceanbase6common11ObIORequestD1Ev:25:1 + 1: 1 + 2: 1 _ZN9oceanbase6common11ObIORequest7destroyEv:1 + 3: 0 + 3.1: 0 + 3.2: 0 + 3.8: 0 + 3: _ZN9oceanbase6common11ObRefHolderINS0_17ObTenantIOManagerEED2Ev:0 + 0: 0 + 0.2: 0 + 0: _ZN9oceanbase6common11ObRefHolderINS0_17ObTenantIOManagerEE5resetEv:0 + 1: 0 + 2: 0 + 3: 0 + 3.4: _ZN9oceanbase6common12ObThreadCondD2Ev:0 + 1: 0 + 2: 0 + 2.1: 0 +_ZN9oceanbase5share6schema19ObSchemaGetterGuard32check_if_tenant_has_been_droppedEmRb:25:0 + 1: 0 + 2: 0 + 3: 0 + 5: 0 + 6: 0 + 7: 0 + 8.1: 0 + 9.1: 0 + 9.2: 0 + 10.1: 0 + 11.1: 0 + 12: 0 + 13.1: 0 + 14.1: 0 _ZNK9oceanbase5share6schema11ObSchemaMgr20get_drop_tenant_infoEmRNS1_16ObDropTenantInfoE:1 + 14.2: 1 + 15.1: 0 + 17: 1 _ZNK9oceanbase5share6schema16ObDropTenantInfo8is_validEv:1 + 17.1: 1 + 19: 1 + 20.5: 1 + 4: _ZN9oceanbase5share6schema16ObDropTenantInfoC2Ev:0 + 1: 0 + 2: 0 +_ZN9oceanbase3sql17ObChunkDatumStore9StoredRow5buildERPS2_RKNS_6common8ObIArrayIPNS0_6ObExprEEERNS0_9ObEvalCtxERNS5_12ObIAllocatorEj:25:0 + 5: 0 + 6: 0 + 9: 0 + 10.1: 0 + 11.1: 0 + 12: 0 + 13.1: 0 + 14.1: 1 + 15.1: 0 + 17: 1 + 9: _ZN9oceanbase3sql17ObChunkDatumStore5Block14row_store_sizeERKNS_6common8ObIArrayIPNS0_6ObExprEEERNS0_9ObEvalCtxERlj:0 + 7: 0 + 8: 0 + 9.1: 0 + 11: 0 + 13: 0 + 14.1: _ZN9oceanbase3sql17ObChunkDatumStore9StoredRow5buildERPS2_RKNS_6common8ObIArrayIPNS0_6ObExprEEERNS0_9ObEvalCtxEPcljb:0 + 10: 0 +_ZN9oceanbase3sql13ObTableLockOp18inner_get_next_rowEv:25:0 + 1: 0 + 2: 0 + 5: 0 + 7: 0 + 8.1: 0 + 9.1: 0 + 10.1: 0 + 11: 0 + 13.1: 0 + 17.1: 1 + 18.1: 0 + 23: 0 + 25.1: 0 + 29.1: 0 + 30.1: 0 + 31.1: 0 + 32.1: 0 + 34.1: 0 + 37: 0 + 38: 0 + 39.1: 0 + 42: 0 + 45: 1 + 8.1: _ZN9oceanbase3sql10ObOperator16try_check_statusEv:0 + 2: 0 + 3: 0 + 10.1: _ZN9oceanbase3sql11get_my_specINS0_13ObTableLockOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:0 + 5: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:0 + 2: 0 + 10.2: _ZNK9oceanbase3sql15ObTableLockSpec14is_skip_lockedEv:0 + 0: 0 + 11: _ZN9oceanbase3sql13ObTableLockOp23get_next_row_from_childEv:0 + 2: 0 + 4: 0 + 6.1: 0 + 9.1: 0 + 11: 0 + 3: _ZN9oceanbase3sql10ObOperator20clear_evaluated_flagEv:0 + 2.1: 0 + 2.3: 0 + 3: 0 + 2.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql10ObEvalInfoEE5countEv:0 + 0: 0 + 3: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql10ObEvalInfoEE2atEl:0 + 6: 0 + 3.1: _ZN9oceanbase3sql10ObEvalInfo20clear_evaluated_flagEv:0 + 2: 0 + 4: 0 + 23: _ZN9oceanbase3sql13ObTableLockOp23get_next_row_from_childEv:0 + 2: 0 + 4: 0 + 6.1: 0 + 9.1: 0 + 11: 0 + 65180: 0 + 3: _ZN9oceanbase3sql10ObOperator20clear_evaluated_flagEv:0 + 2.1: 0 + 2.3: 0 + 3: 0 + 2.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql10ObEvalInfoEE5countEv:0 + 0: 0 + 3: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql10ObEvalInfoEE2atEl:0 + 6: 0 + 3.1: _ZN9oceanbase3sql10ObEvalInfo20clear_evaluated_flagEv:0 + 2: 0 + 4: 0 + 31.1: _ZN9oceanbase3sql13ObTableLockOp22lock_one_row_post_procERb:0 + 2: 0 + 5: 0 + 6: 0 + 7.1: 0 + 8: 0 + 11: 0 + 13.1: 0 + 14.1: 0 + 15.1: 0 + 16.1: 0 + 23: 0 + 23.2: 0 + 24: 0 + 25.1: 0 + 5: _ZN9oceanbase3sql11get_my_specINS0_13ObTableLockOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:0 + 5: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:0 + 2: 0 + 13.1: _ZN9oceanbase3sql13ObTableLockOp19lock_rows_post_procERb:0 + 2: 0 + 4: 0 + 8.1: 0 + 9.1: 0 + 11: 0 + 12.1: 0 + 13: 0 + 16: 0 + 4: _ZN9oceanbase3sql15ObTableModifyOp19submit_all_dml_taskEv:0 + 2: 0 + 3: 0 + 4: 0 + 5.1: 0 + 6.1: 0 + 7.1: 0 + 12: 0 + 3: _ZNK9oceanbase3sql8ObDASRef8has_taskEv:0 + 0: _ZNK9oceanbase6common10ObObjStoreIPNS_3sql12ObIDASTaskOpERNS0_12ObIAllocatorELb0EE5emptyEv:0 + 0: 0 + 9: _ZN9oceanbase3sql10ObDMLRtCtx5reuseEv:0 + 2: 0 + 9.1: _ZN9oceanbase3sql11get_my_specINS0_13ObTableLockOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:0 + 5: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:0 + 2: 0 + 9.2: _ZNK9oceanbase3sql15ObTableLockSpec14is_skip_lockedEv:0 + 0: 0 + 19: _ZN9oceanbase3sql10ObDMLRtCtx5reuseEv:0 + 2: 0 + 23.2: _ZN9oceanbase3sql11get_my_specINS0_13ObTableLockOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:0 + 5: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:0 + 2: 0 + 38: _ZN9oceanbase3sql13ObTableLockOp19lock_rows_post_procERb:0 + 2: 0 + 4: 0 + 8.1: 0 + 9.1: 0 + 12.1: 0 + 13: 0 + 16: 0 + 4: _ZN9oceanbase3sql15ObTableModifyOp19submit_all_dml_taskEv:0 + 2: 0 + 3: 0 + 4: 0 + 5.1: 0 + 6.1: 0 + 7.1: 0 + 12: 0 + 3: _ZNK9oceanbase3sql8ObDASRef8has_taskEv:0 + 0: _ZNK9oceanbase6common10ObObjStoreIPNS_3sql12ObIDASTaskOpERNS0_12ObIAllocatorELb0EE5emptyEv:0 + 0: 0 + 9: _ZN9oceanbase3sql10ObDMLRtCtx5reuseEv:0 + 2: 0 + 9.1: _ZN9oceanbase3sql11get_my_specINS0_13ObTableLockOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:0 + 5: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:0 + 2: 0 + 9.2: _ZNK9oceanbase3sql15ObTableLockSpec14is_skip_lockedEv:0 + 0: 0 +_ZN9oceanbase8observer29ObVirtualTableIteratorFactoryD2Ev:24:4 + 1: 4 + 2: 4 +_ZN9oceanbase8observer29ObVirtualTableIteratorFactoryD1Ev:24:4 + 1: 4 + 2: 4 +_ZN9oceanbase7storage26ObCleanoutNothingOperationclERKNS0_8ObTxDataEPNS0_9ObTxCCCtxE:24:3 + 1: 3 + 5: 3 +_ZN9oceanbase6common9sqlclient13ObMySQLResultD2Ev:24:5 + 1: 4 + 3: 4 +_ZN9oceanbase6common9sqlclient13ObMySQLResultD1Ev:24:5 + 1: 4 + 3: 4 +_ZN9oceanbase6common13ObSEArrayImplINS_5share21ObLabelSeSessionLabelELl4ENS0_19ModulePageAllocatorELb0EE5reuseEv:24:1 + 1: 1 + 8: 1 + 9: 1 + 10: 1 +_ZN9oceanbase5share19ObPersistentLSTable14fetch_ls_info_EbblmRKNS0_6ObLSIDERNS_6common12ObISQLClientERNS0_8ObLSInfoE:24:0 + 8: 0 + 9: 0 + 11: 0 + 12: 0 + 13: 0 + 14.1: 0 + 15.1: 0 + 15.2: 0 + 16: 0 + 17: 0 + 18.1: 0 + 19.1: 0 + 20: 0 + 21.1: 0 + 22.1: 0 + 23.1: 0 + 25.1: 0 + 26: 0 + 26.4: 0 + 26.6: 0 + 26.7: 0 + 26.9: 0 + 26.13: 0 + 27: 0 + 27.1: 0 + 27.2: 0 + 33.1: 0 + 35.1: 0 + 35.2: 0 + 35.3: 0 + 36.1: 0 + 37.2: 0 + 38: 0 + 39.1: 0 + 40.2: 0 + 40.3: 1 + 44.1: 0 + 48.5: 0 + 48.6: 0 + 49: 0 + 11: _ZN9oceanbase5share19ObPersistentLSTable18get_sql_tenant_id_Em:0 + 2: _ZN9oceanbase6common14is_meta_tenantEm:0 + 3: 0 + 2: _ZN9oceanbase6common13is_sys_tenantEm:0 + 2: 0 + 64240: 0 + 12: _ZNK9oceanbase5share19ObPersistentLSTable9is_initedEv:0 + 0: 0 + 16.1: _ZNK9oceanbase5share6ObLSID8is_validEv:0 + 0: 0 + 22.1: _ZN9oceanbase5share8ObLSInfo4initEmRKNS0_6ObLSIDE:0 + 2: 0 + 4: 0 + 5.1: 0 + 7: 0 + 9: 0 + 11: 0 + 3: _ZNK9oceanbase5share6ObLSID20is_valid_with_tenantEm:0 + 5.1: 0 + 4: _ZN9oceanbase6common14is_user_tenantEm:0 + 3: 0 + 8: _ZN9oceanbase5share6ObLSIDaSERKS1_:0 + 0: 0 + 9: _ZN9oceanbase6common11ObArrayImplINS_5share11ObLSReplicaENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE5resetEv:0 + 0: 0 + 25: _ZN9oceanbase3lib7ObLabelC2IA10_cEERKT_:0 + 2: _ZN9oceanbase3lib7ObLabelaSILm10EEERS1_RAT__Kc:0 + 4: 0 + 26.2: _ZN9oceanbase6common8precheckINS0_12ObISQLClient10ReadResultEEEibRb:0 + 6: _ZN9oceanbase6common15check_from_heapEiRb:0 + 4: 0 + 5: 0 + 6: 0 + 6.1: 0 + 10: 0 + 10.2: 0 + 26.6: _ZN9oceanbase6common2SVINS0_12ObISQLClient10ReadResultELb0EEC2IZNS_5share19ObPersistentLSTable14fetch_ls_info_EbblmRKNS6_6ObLSIDERS2_RNS6_8ObLSInfoEE5$_418EEibOT_:0 + 3: 0 + 5: 0 + 6: 0 + 9: _ZZN9oceanbase5share19ObPersistentLSTable14fetch_ls_info_EbblmRKNS0_6ObLSIDERNS_6common12ObISQLClientERNS0_8ObLSInfoEENK5$_418clEPv:0 + 0: 0 + 27: _ZNK9oceanbase5share6ObLSID2idEv:0 + 0: 0 + 35.1: _ZN9oceanbase6common11ObSqlString3ptrEv:0 + 0: 0 + 37.1: _ZN9oceanbase6common12ObISQLClient10ReadResult10get_resultEv:0 + 0: 0 + 40.1: _ZN9oceanbase6common12ObISQLClient10ReadResult10get_resultEv:0 + 0: 0 + 48: _ZN9oceanbase6common2SVINS0_12ObISQLClient10ReadResultELb0EED2Ev:13 + 2: 1 + 4: 1 _ZN9oceanbase6common12ObISQLClient10ReadResultD1Ev:1 + 5: 0 + 6: 0 + 6.1: 0 + 48.3: _ZN9oceanbase6common2SVINS0_12ObISQLClient10ReadResultELb0EED2Ev:0 + 2: 0 + 4: 0 + 5: 0 + 6: 0 + 6.1: 0 +_ZN9oceanbase11transaction14ObWeakReadUtil35max_stale_time_for_weak_consistencyEml:24:0 + 1: 0 + 2: 0 + 4: 0 + 4.1: 0 + 4.2: 0 + 4.3: 0 + 4.4: 0 + 4.5: 1 _ZNSt14_Function_baseD2Ev:1 + 20: 1 + 6: _ZN9oceanbase3omt17ObTenantConfigMgr26default_fallback_tenant_idEv:0 + 4: 0 + 4.1: 0 + 2: _ZN9oceanbase5share5GuardILNS0_12ObEntityTypeE0EE13current_guardEv:0 + 3: 0 + 8: 0 + 10: 0 + 11: 0 + 12: 0 + 8.1: _ZN9oceanbase5share5GuardILNS0_12ObEntityTypeE0EEC2ERNS0_13ObTenantSpaceE:0 + 1: 0 + 3: 0 + 11: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 2.1: _ZN9oceanbase5share5GuardILNS0_12ObEntityTypeE0EEptEv:0 + 0: 0 + 2.2: _ZNK9oceanbase5share13ObTenantSpace10get_tenantEv:0 + 0: 0 + 4.1: _ZNK9oceanbase5share12ObTenantBase2idEv:0 + 0: 0 + 7: _ZNSt8functionIFvRKN9oceanbase3omt14ObTenantConfigEEEC2IZNS0_11transaction14ObWeakReadUtil35max_stale_time_for_weak_consistencyEmlE5$_178vEET_:0 + 8: 0 + 9: 0 + 7.1: _ZNSt14_Function_base13_Base_managerIZN9oceanbase11transaction14ObWeakReadUtil35max_stale_time_for_weak_consistencyEmlE5$_178E15_M_init_functorERSt9_Any_dataOS4_:0 + 1.1: _ZNSt14_Function_base13_Base_managerIZN9oceanbase11transaction14ObWeakReadUtil35max_stale_time_for_weak_consistencyEmlE5$_178E15_M_init_functorERSt9_Any_dataOS4_St17integral_constantIbLb1EE:0 + 1: 0 + 10: _ZNSt8functionIFvvEEC2IZN9oceanbase11transaction14ObWeakReadUtil35max_stale_time_for_weak_consistencyEmlE5$_179vEET_:0 + 8: 0 + 9: 0 + 1: _ZNSt14_Function_baseC2Ev:0 + 0: 0 + 7.1: _ZNSt14_Function_base13_Base_managerIZN9oceanbase11transaction14ObWeakReadUtil35max_stale_time_for_weak_consistencyEmlE5$_179E15_M_init_functorERSt9_Any_dataOS4_:0 + 1.1: _ZNSt14_Function_base13_Base_managerIZN9oceanbase11transaction14ObWeakReadUtil35max_stale_time_for_weak_consistencyEmlE5$_179E15_M_init_functorERSt9_Any_dataOS4_St17integral_constantIbLb0EE:0 + 1: 0 +_ZN9oceanbase11transaction14ObTransService35get_ls_min_uncommit_prepare_versionERKNS_5share6ObLSIDERl:24:0 + 1: 0 + 2: 0 + 4: 0 + 5.1: 0 + 6: 0 + 7.1: 0 + 8.1: 0 + 9: 0 + 10.1: 0 + 11.1: 0 + 12: 0 + 13.1: 1 + 14.1: 0 + 15.1: 1 + 16.1: 0 + 17: 0 + 21: 1 + 10.1: _ZNK9oceanbase5share6ObLSID8is_validEv:0 + 0: 0 +_ZN9oceanbase6common16ObCompressorPool12get_instanceEv:23:1 + 1: 1 + 2: 1 + 2.1: 0 + 2.6: 0 + 3: 1 + 2.2: _ZN9oceanbase6common16ObCompressorPoolC2Ev:0 + 10: 0 + 0: _ZN9oceanbase6common4zstd16ObZstdCompressorC2Ev:0 + 0: 0 + 1: _ZN9oceanbase6common16ObNoneCompressorC2Ev:0 + 0: 0 + 2: _ZN9oceanbase6common15ObLZ4CompressorC2Ev:0 + 0: 0 + 3: _ZN9oceanbase6common18ObLZ4Compressor191C2Ev:0 + 0: 0 + 4: _ZN9oceanbase6common18ObSnappyCompressorC2Ev:0 + 0: 0 + 5: _ZN9oceanbase6common16ObZlibCompressorC2El:0 + 0: 0 + 6: _ZN9oceanbase6common10zstd_1_3_822ObZstdCompressor_1_3_8C2Ev:0 + 0: 0 + 7: _ZN9oceanbase6common21ObLZ4StreamCompressorC2Ev:0 + 0: 0 + 8: _ZN9oceanbase6common4zstd22ObZstdStreamCompressorC2Ev:0 + 0: 0 + 9: _ZN9oceanbase6common10zstd_1_3_828ObZstdStreamCompressor_1_3_8C2Ev:0 + 0: 0 +_ZN9oceanbase11transaction18CheckTenantFunctorclERKNS_6common9ObIntWarpEPNS0_14ObTsSourceInfoE:23:0 + 1: 0 + 2: 0 + 4: 0 + 5: 0 + 6: 0 + 7.1: 0 + 8.1: 1 + 8.2: 0 + 9.1: 0 + 10.1: 1 + 11: 0 + 11.1: 0 + 12.1: 0 + 15: 1 + 8.1: _ZNK9oceanbase6common9ObIntWarp9get_valueEv:0 + 0: 0 + 11: _ZNK9oceanbase6common9ObIntWarp9get_valueEv:0 + 0: 0 +_ZZN9oceanbase11transaction14ObTransService28ls_sync_rollback_savepoint__EPNS0_14ObPartTransCtxElllENK6$_1327clEPKc.93feb755617c21c32b229b78773c290c:22:0 + 0: 1 + 0.1: 0 + 0.2: 1 + 0.3: 0 _ZN9oceanbase6common8ObLogger13need_to_printEmmi:1 + 0.16: 0 + 0: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.4: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 + 0.5: _ZNK9oceanbase11transaction10ObTransCtx12get_trans_idEv:0 + 0: 0 + 0.7: _ZN9oceanbase6common7ObLogKVIRKNS_11transaction9ObTransIDELb0EEC2EPKcS5_:0 + 0: 0 + 0.9: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.11: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.13: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 0.15: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase6common6ObIOFd5resetEv:22:1 + 1: 1 + 3: 1 + 4: 1 + 5: 1 +_ZN9oceanbase5obrpc14ObTxKeepaliveP7processEv:22:0 + 0: 0 + 0.1: 0 + 0.4: 0 + 0.7: 0 + 0.8: 0 + 0.9: 0 + 0.12: 1 + 0.13: 0 + 0.14: 0 + 0.17: 1 _ZN9oceanbase11transaction14ObTransService22handle_trans_keepaliveERKNS0_16ObTxKeepaliveMsgERNS_5obrpc16ObTransRpcResultE:1 + 0.18: 0 + 0.20: 0 + 0.24: 0 + 0.25: 0 + 0.27: 0 + 0.29: 0 + 0.31: 0 + 0.32: 0 + 0.36: 0 + 0: _ZNK9oceanbase3rpc5frame14ObReqProcessor17get_run_timestampEv:0 + 2: 0 + 0.7: _ZN9oceanbase5share11ObTenantEnv3mtlIPNS_11transaction14ObTransServiceEEET_v:0 + 2.1: _ZN9oceanbase5share12ObTenantBase3getIPNS_11transaction14ObTransServiceEEET_v:0 + 0: _ZN9oceanbase5share12ObTenantBase9inner_getENS1_8IdentityIPNS_11transaction14ObTransServiceEEE:0 + 0: 0 + 0.24: _ZN9oceanbase6common14ObTscTimestamp12get_instanceEv:0 + 2: 0 + 2.1: 0 + 2.3: 0 + 2.6: 0 + 2.2: _ZN9oceanbase6common14ObTscTimestampC2Ev:0 + 1: 0 + 0.33: _ZNK9oceanbase5obrpc11ObRpcPacket13get_tenant_idEv:0 + 2: 0 + 0.34: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 0.35: _ZNK9oceanbase5share12ObTenantBase2idEv:0 + 0: 0 +_ZN9oceanbase3sql13ObTableLockOp7destroyEv:22:1 + 1: 1 + 4: 0 + 2: _ZN9oceanbase3sql15ObTableModifyOp7destroyEv:8 + 2: _ZN9oceanbase3sql10ObDMLRtCtx7cleanupEv:8 + 2: 1 _ZN9oceanbase3sql8ObDASRef5resetEv:1 + 3: _ZN9oceanbase6common13ObSEArrayImplIPNS_3sql6ObExprELl4ENS0_19ModulePageAllocatorELb0EE5resetEv:0 + 0: 0 + 0: _ZN9oceanbase6common13ObSEArrayImplIPNS_3sql6ObExprELl4ENS0_19ModulePageAllocatorELb0EE7destroyEv:0 + 9: 0 + 11: 0 + 13: 0 + 15: 0 + 24: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplIPNS_3sql6ObExprELl4ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 3: _ZN9oceanbase6common11ObArrayWrapINS1_INS_3sql11ObLockRtDefEEEE13release_arrayEv:0 + 2: 0 + 7: 0 +_ZN9oceanbase11transaction14ObTxLoopWorker12scan_all_ls_Ebb:22:0 + 1: 0 + 2: 0 + 6: 0 + 7: 0 + 11.1: 0 + 11.2: 0 + 12: 0 + 12.2: 0 + 12.3: 0 + 13: 0 + 14: 0 + 15: 0 + 17.1: 0 + 18.2: 0 + 22: 0 + 23.1: 0 + 23.2: 1 + 26: 1 _ZN9oceanbase11transaction14ObTxLoopWorker14do_keep_alive_EPNS_7storage4ObLSE:1 + 29: 1 + 32: 0 + 39: 1 _ZN9oceanbase11transaction14ObTxLoopWorker21update_max_commit_ts_EPNS_7storage4ObLSE:1 + 41: 0 + 42: 0 + 47: 0 + 48.3: 0 + 5: _ZN9oceanbase6common13ObSharedGuardINS_7storage12ObLSIteratorEEC2Ev:0 + 0: _ZN9oceanbase6common5guard8BlockPtrINS_7storage12ObLSIteratorEEC2Ev:0 + 0: 0 + 11: _ZN9oceanbase5share11ObTenantEnv3mtlIPNS_7storage11ObLSServiceEEET_v:0 + 2: _ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.1: _ZN9oceanbase5share12ObTenantBase3getIPNS_7storage11ObLSServiceEEET_v:0 + 0: _ZN9oceanbase5share12ObTenantBase9inner_getENS1_8IdentityIPNS_7storage11ObLSServiceEEE:0 + 0: 0 + 13.1: _ZNK9oceanbase6common13ObSharedGuardINS_7storage12ObLSIteratorEE8is_validEv:0 + 1: _ZNK9oceanbase6common5guard8BlockPtrINS_7storage12ObLSIteratorEE8is_validEv:0 + 0: 0 + 0.1: 0 + 32: _ZN9oceanbase11transaction14ObTxLoopWorker9do_tx_gc_EPNS_7storage4ObLSE:0 + 2: 0 + 4.1: 0 + 4.4: 0 + 5.1: 0 + 7.1: 0 + 4: _ZN9oceanbase7storage4ObLS10get_tx_svrEv:0 + 0: 0 + 4.1: _ZN9oceanbase5share6ObLSIDD2Ev:0 + 0: _ZN9oceanbase5share6ObLSID5resetEv:0 + 0: 0 + 4.3: _ZNK9oceanbase7storage4ObLS9get_ls_idEv:0 + 0: _ZN9oceanbase5share6ObLSIDC2ERKS1_:0 + 0: 0 + 42: _ZN9oceanbase11transaction14ObTxLoopWorker17do_retain_ctx_gc_EPNS_7storage4ObLSE:0 + 2: 0 + 4.1: 0 + 5: 0 + 6.1: 0 + 9.1: 0 + 10.1: 0 + 17: 0 + 4: _ZN9oceanbase7storage4ObLS10get_tx_svrEv:0 + 0: 0 + 48.3: _ZN9oceanbase6common13ObSharedGuardINS_7storage12ObLSIteratorEED2Ev:0 + 0: 0 + 0.2: 0 + 48.4: _ZN9oceanbase6common13ObSharedGuardINS_7storage12ObLSIteratorEED2Ev:0 + 0: 0 + 0.2: 0 +_ZNSt14_Function_base13_Base_managerIZN9oceanbase11transaction14ObWeakReadUtil35max_stale_time_for_weak_consistencyEmlE5$_178E10_M_managerERSt9_Any_dataRKS6_St18_Manager_operation.d95568170f20f515ba23d039c2565689:21:1 + 2: 1 + 3: 1 + 7: 0 + 11: 0 + 22: 1 + 15: _ZNSt14_Function_base13_Base_managerIZN9oceanbase11transaction14ObWeakReadUtil35max_stale_time_for_weak_consistencyEmlE5$_178E8_M_cloneERSt9_Any_dataRKS6_St17integral_constantIbLb1EE:0 + 2: 0 +_ZNK9oceanbase3omt13ObMultiTenant10has_tenantEm:21:0 + 1: 0 + 2: 0 + 3: 0 _ZNK9oceanbase3omt13ObMultiTenant10get_tenantEmRPNS0_8ObTenantE:1 + 4: 1 + 4.2: 1 +_ZN9oceanbase6common11ObArrayImplINS0_6ObAddrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_22NotImplementItemEncodeIS2_EEED2Ev:21:1 + 1: 1 + 2: 1 _ZN9oceanbase6common11ObArrayImplINS0_6ObAddrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_22NotImplementItemEncodeIS2_EEE7destroyEv:1 + 3: 1 + 3.2: 0 +_ZN9oceanbase6common11ObArrayImplINS0_14ObStringHolderENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_22NotImplementItemEncodeIS2_EEED2Ev:21:1 + 1: 1 + 2: 1 _ZN9oceanbase6common11ObArrayImplINS0_14ObStringHolderENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS2_EENS0_22NotImplementItemEncodeIS2_EEE7destroyEv:1 + 3: 1 + 3.2: 0 +_ZN9oceanbase3rpc20ObRpcRequestOperator12get_operatorEPKNS0_9ObRequestE:21:1 + 1: 1 + 3: 1 + 10: 1 +_ZN9oceanbase11transaction14ObTransService14revert_tx_ctx_EPNS0_14ObPartTransCtxE:21:1 + 1: 1 + 1: _ZN9oceanbase11transaction14ObTransService14revert_tx_ctx_EPNS_7storage4ObLSEPNS0_14ObPartTransCtxE:8 + 6: 1 _ZN9oceanbase11transaction10ObTxCtxMgr13revert_tx_ctxEPNS0_14ObPartTransCtxE:1 + 9.1: 0 +_ZN9oceanbase8observer21ObInnerSQLReadContext12mysql_resultEv:20:2 + 0: 2 +_ZN9oceanbase6common4hash9do_createIPNS1_17ObHashTableBucketINS1_11HashMapPairIllEENS0_7ObLatchENS1_5NCondEEENS0_8ObMallocEEEiRT_lllNS1_16NormalPointerTagERT0_:20:0 + 2: 0 + 5: 0 + 7.1: 1 + 8.1: 0 + 12: 1 + 14: 0 +_ZN9oceanbase5share17ObLSRestoreStatusC2ERKNS1_6StatusE:20:2 + 1: 2 + 2: 2 + 3: 2 +_ZN9oceanbase5share17ObLSRestoreStatusC1ERKNS1_6StatusE:20:2 + 1: 2 + 2: 2 + 3: 2 +_ZN9oceanbase3sql11ObPlanCache18update_memory_confEv:20:0 + 1: 0 + 2: 0 + 11: 0 + 19: 0 + 24.1: 0 + 24.5: 0 + 25: 0 + 25.1: 0 + 25.2: 0 _ZN9oceanbase3sql18ObBasicSessionInfo23get_global_sys_variableEmRNS_6common12ObIAllocatorERKNS2_20ObDataTypeCastParamsERKNS2_8ObStringERNS2_5ObObjE:1 + 25.3: 0 + 29.1: 0 + 29.2: 0 + 30.1: 0 + 31.1: 0 + 32: 0 + 33.1: 0 + 37: 0 + 38: 0 + 38.1: 0 + 44.1: 0 + 50: 0 + 51.7: 1 + 3: _ZN9oceanbase3sql14ObPCMemPctConfC2Ev:0 + 0: 0 + 1: 0 + 2: 0 + 16.1: _ZN9oceanbase6common16ObArenaAllocatorC2ERKNS_3lib7ObLabelElll:0 + 4: 0 + 4.1: _ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEEC2ElRKS2_:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 17: _ZN9oceanbase6common5ObObjC2Ev:0 + 2: _ZN9oceanbase6common5ObObj5resetEv:0 + 6: 0 + 2: _ZN9oceanbase6common9ObObjMeta8set_nullEv:0 + 0: 0 + 25: _ZN9oceanbase6common20ObDataTypeCastParamsC2Ev:0 + 4: 0 + 6: 0 + 2.1: _ZN9oceanbase6common8ObStringC2Ev:0 + 1: 0 + 25.1: _ZN9oceanbase6common8ObStringC2EPKc:0 + 1: 0 + 3: 0 + 6: 0 + 29.1: _ZNK9oceanbase6common5ObObj7get_intERl:0 + 3: 0 + 4: 0 + 3: _ZNK9oceanbase6common9ObObjMeta6is_intEv:0 + 0: 0 + 51.7: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:0 + 0: 0 + 51.9: _ZN9oceanbase6common16ObArenaAllocatorD2Ev:0 + 0: 0 +_ZN9oceanbase10rootserver13ObUnitManager17get_unit_in_groupEmmRKNS_6common19ObFixedLengthStringILl128EEERNS_5share10ObUnitInfoE:20:0 + 5: 0 + 6: 0 + 8.1: 0 + 9: 0 + 10.1: 0 + 11.1: 0 + 11.2: 0 + 15.1: 0 + 18.4: 0 + 18.5: 0 + 20.1: 0 + 22.1: 0 + 22.2: 0 + 23.1: 0 + 31: 0 + 34: 0 + 35.6: 1 + 35.7: 0 + 7: _ZN9oceanbase6common7ObArrayINS_5share10ObUnitInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEEC2Ev:0 + 0.1: 0 + 0.5: _ZN9oceanbase6common11ObArrayImplINS_5share10ObUnitInfoENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEEC2ElRKS4_:0 + 3: 0 + 4: 0 + 7.1: 0 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 8: _ZNK9oceanbase6common19ObFixedLengthStringILl128EE8is_emptyEv:0 + 2: 0 + 19: _ZN9oceanbase6common12ObIArrayWrapINS_5share10ObUnitInfoEE2atEl:0 + 6: 0 + 20: _ZNK9oceanbase6common19ObFixedLengthStringILl128EEneERKS2_:0 + 2: _ZNK9oceanbase6common19ObFixedLengthStringILl128EEeqERKS2_:0 + 2: 0 +_ZNK9oceanbase7storage11ObLSMetaLog18get_serialize_sizeEv:19:1 + 0: 1 + 0: _ZNK9oceanbase7storage11ObLSMetaLog28get_serialize_size_dispatch_ESt17integral_constantIbLb0EE:9 + 0: _ZNK9oceanbase7storage11ObLSMetaLog19get_serialize_size_Ev:9 + 0: 1 + 0: _ZN9oceanbase6common13serialization14encoded_lengthINS_7storage8ObLSMetaEEElRKT_:5 + 2: _ZN9oceanbase6common13serialization11EnumEncoderILb0ENS_7storage8ObLSMetaEE14encoded_lengthERKS4_:5 + 2: 1 _ZNK9oceanbase7storage8ObLSMeta18get_serialize_sizeEv:1 +_ZN9oceanbase6common6ObAddr18parse_from_cstringEPKc:19:0 + 1: 0 + 2: 1 + 2.1: 1 _ZN9oceanbase6common6ObAddr17parse_from_stringERKNS0_8ObStringE:1 + 2: _ZN9oceanbase6common8ObString11make_stringEPKc:4 + 2: 0 + 2.2: 1 + 4: 0 +_ZN9oceanbase6common6DCHashINS_11transaction9tablelock8ObLockIDELl8EE6insertERKS4_PNS0_11KeyHashNodeIS4_EE:19:0 + 0: 0 + 2: 0 + 3: 0 + 7: 0 + 8: 0 + 8.1: 0 + 9: 0 + 10: 0 + 10.1: 0 + 11: 0 + 13: 0 + 13.1: 1 _ZN9oceanbase6common6DCHashINS_11transaction9tablelock8ObLockIDELl8EE6HandleD2Ev:1 + 14: 1 _ZN9oceanbase6common11ObTimeGuard5clickEPKc:1 + 15.1: 0 + 16.1: 0 + 19: 0 + 20.5: 0 + 20.7: 0 + 20.9: 0 + 1: _ZN9oceanbase6common11ObTimeGuardC2EPKcl:0 + 2: 0 + 3: 0 + 4: 0 + 6: 0 + 7: 0 + 8: 0 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 4: _ZN9oceanbase6common11KeyHashNodeINS_11transaction9tablelock8ObLockIDEEC2ERKS4_:0 + 0: _ZN9oceanbase6common11KeyHashNodeINS_11transaction9tablelock8ObLockIDEE9calc_hashERKS4_:0 + 0: _ZNK9oceanbase11transaction9tablelock8ObLockID4hashEv:0 + 1: 0 + 6: _ZN9oceanbase6common6DCHashINS_11transaction9tablelock8ObLockIDELl8EE6HandleC2ERS5_Rii:0 + 1: 0 + 2: 0 + 15: _ZNK9oceanbase6common11ObTimeGuard8get_diffEv:1 + 2: 0 + 2: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:1 + 2: 1 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:1 +_ZN9oceanbase6common19ObTableAccessHelper15read_single_rowILi1EJlEEEimRAT__PKcRKNS0_8ObStringES9_DpRT0_:19:0 + 5: 0 + 10: 0 + 11: 0 + 11.1: 0 + 12.1: 0 + 12.2: 0 + 12.3: 0 + 12.5: 0 + 12.6: 0 + 12.7: 0 + 12.9: 0 + 12.17: 0 + 14: 0 + 14.6: 0 + 14.7: 0 + 14.9: 0 + 14.10: 0 + 14.13: 0 + 15: 0 + 15.1: 0 + 16: 0 + 17: 0 + 18.1: 0 + 18.2: 0 + 18.3: 0 + 18.4: 0 + 19: 0 + 20: 0 + 21.1: 0 + 21.2: 0 + 21.3: 0 + 21.5: 0 + 21.6: 0 + 21.7: 0 + 21.9: 0 + 21.17: 0 + 23: 0 + 23.1: 1 + 23.2: 1 _ZN9oceanbase6common19ObTableAccessHelper20get_values_from_row_ILi0ELi1ElJEEEiPNS0_9sqlclient13ObMySQLResultERAT0__PKcRT1_DpRT2_:1 + 23.3: 0 + 24.1: 0 + 24.2: 0 + 24.3: 0 + 24.5: 0 + 24.6: 0 + 24.7: 0 + 24.9: 0 + 24.17: 0 + 27: 0 + 28: 0 + 30.1: 0 + 30.2: 0 + 30.3: 0 + 30.7: 0 + 30.8: 0 + 30.9: 0 + 30.11: 0 + 30.19: 0 + 33: 0 + 34.1: 0 + 34.2: 0 + 34.3: 0 + 34.5: 0 + 34.6: 0 + 34.7: 0 + 34.9: 0 + 34.17: 0 + 37.1: 0 + 37.3: 0 + 38: 0 + 40.38: 0 + 40.39: 0 + 6.2: _ZN9oceanbase6common5occam25get_file_name_without_dirIcLm44EEEPKT_RAT0__S4_m:0 + 3: 0 + 3.3: 0 + 3.4: 0 + 3.7: 0 + 6.3: _ZN9oceanbase6common5occam16TimeGuardFactory10make_guardEllPKcS4_lS4_:0 + 6: 0 + 12.4: _ZN9oceanbase6common7ObLogKVIiLb0EEC2EPKcRKi:0 + 0: 0 + 12.6: _ZN9oceanbase6common7ObLogKVIPKcLb1EEC2ES3_OKS3_:0 + 0: 0 + 12.8: _ZNK9oceanbase5share12ObTenantBase2idEv:0 + 0: 0 + 12.10: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 + 12.12: _ZN9oceanbase6common7ObLogKVIRA1_KPKcLb0EEC2ES3_S6_:0 + 0: 0 + 12.14: _ZN9oceanbase6common7ObLogKVIRKNS0_8ObStringELb0EEC2EPKcS4_:0 + 0: 0 + 12.16: _ZN9oceanbase6common7ObLogKVIRKNS0_8ObStringELb0EEC2EPKcS4_:0 + 0: 0 + 14.12: _ZN9oceanbase6common2SVINS0_12ObISQLClient10ReadResultELb1EE3getEv:0 + 2: 0 + 21.4: _ZN9oceanbase6common7ObLogKVIiLb0EEC2EPKcRKi:0 + 0: 0 + 21.6: _ZN9oceanbase6common7ObLogKVIPKcLb1EEC2ES3_OKS3_:0 + 0: 0 + 21.8: _ZNK9oceanbase5share12ObTenantBase2idEv:0 + 0: 0 + 21.10: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 + 21.12: _ZN9oceanbase6common7ObLogKVIRA1_KPKcLb0EEC2ES3_S6_:0 + 0: 0 + 21.14: _ZN9oceanbase6common7ObLogKVIRKNS0_8ObStringELb0EEC2EPKcS4_:0 + 0: 0 + 21.16: _ZN9oceanbase6common7ObLogKVIRKNS0_8ObStringELb0EEC2EPKcS4_:0 + 0: 0 + 24.4: _ZN9oceanbase6common7ObLogKVIiLb0EEC2EPKcRKi:0 + 0: 0 + 24.6: _ZN9oceanbase6common7ObLogKVIPKcLb1EEC2ES3_OKS3_:0 + 0: 0 + 24.8: _ZNK9oceanbase5share12ObTenantBase2idEv:0 + 0: 0 + 24.10: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 + 24.12: _ZN9oceanbase6common7ObLogKVIRA1_KPKcLb0EEC2ES3_S6_:0 + 0: 0 + 24.14: _ZN9oceanbase6common7ObLogKVIRKNS0_8ObStringELb0EEC2EPKcS4_:0 + 0: 0 + 24.16: _ZN9oceanbase6common7ObLogKVIRKNS0_8ObStringELb0EEC2EPKcS4_:0 + 0: 0 + 30.5: _ZN9oceanbase6common7ObLogKVIRKlLb0EEC2EPKcS3_:0 + 0: 0 + 30.6: _ZN9oceanbase6common7ObLogKVIiLb0EEC2EPKcRKi:0 + 0: 0 + 30.8: _ZN9oceanbase6common7ObLogKVIPKcLb1EEC2ES3_OKS3_:0 + 0: 0 + 30.10: _ZNK9oceanbase5share12ObTenantBase2idEv:0 + 0: 0 + 30.12: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 + 30.14: _ZN9oceanbase6common7ObLogKVIRA1_KPKcLb0EEC2ES3_S6_:0 + 0: 0 + 30.16: _ZN9oceanbase6common7ObLogKVIRKNS0_8ObStringELb0EEC2EPKcS4_:0 + 0: 0 + 30.18: _ZN9oceanbase6common7ObLogKVIRKNS0_8ObStringELb0EEC2EPKcS4_:0 + 0: 0 + 34.4: _ZN9oceanbase6common7ObLogKVIiLb0EEC2EPKcRKi:0 + 0: 0 + 34.6: _ZN9oceanbase6common7ObLogKVIPKcLb1EEC2ES3_OKS3_:0 + 0: 0 + 34.8: _ZNK9oceanbase5share12ObTenantBase2idEv:0 + 0: 0 + 34.10: _ZN9oceanbase6common7ObLogKVIRKmLb0EEC2EPKcS3_:0 + 0: 0 + 34.12: _ZN9oceanbase6common7ObLogKVIRA1_KPKcLb0EEC2ES3_S6_:0 + 0: 0 + 34.14: _ZN9oceanbase6common7ObLogKVIRKNS0_8ObStringELb0EEC2EPKcS4_:0 + 0: 0 + 34.16: _ZN9oceanbase6common7ObLogKVIRKNS0_8ObStringELb0EEC2EPKcS4_:0 + 0: 0 +easy_client_dispatch:18:0 + 1: 0 + 7: 0 + 8.1: 0 + 8.2: 0 + 8.3: 0 + 8.4: 0 + 10: 0 + 11.1: 0 + 11.2: 0 + 11.3: 0 + 11.4: 0 + 15: 0 + 15.2: 0 + 16: 0 + 17: 0 + 19: 0 + 19.1: 0 + 19.3: 0 + 22: 0 + 23: 0 + 24.1: 0 + 24.2: 0 + 24.3: 0 + 24.4: 0 + 31: 0 + 32: 0 + 34: 0 + 39.1: 0 + 39.2: 0 + 39.3: 0 + 39.4: 0 + 39.7: 0 + 43: 0 + 45: 0 + 46: 0 + 48.1: 0 + 48.2: 0 + 48.3: 0 + 48.4: 0 + 52: 0 + 55: 0 + 59.1: 1 + 16: easy_thread_pool_hash:0 + 2: 0 + 3: 0 + 35: easy_atomic32_inc:0 + 2: 0 + 43: easy_spin_lock:0 + 5: 0 + 5.1: 0 + 11.1: 0 + 13: 0 + 21: 0 + 21.1: 0 + 26: 0 + 5.1: easy_atomic_cmp_set:0 + 2: 0 + 21.1: easy_atomic_cmp_set:0 + 2: 0 + 46: easy_list_add_tail:0 + 2: 0 + 2: __easy_list_add:0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 +_ZN9oceanbase6common25ObConcurrentFIFOAllocator5allocElRKNS_3lib9ObMemAttrE:18:1 + 1: 1 + 2: 1 + 2: _ZN9oceanbase6common17ObLfFIFOAllocator5allocElRKNS_3lib9ObMemAttrE:10 + 0: 1 _ZN9oceanbase6common13ObVSliceAlloc5allocEl:1 +_ZN9oceanbase6common15ObBaseLogWriter10append_logERNS0_14ObIBaseLogItemEm:18:0 + 1: 0 + 3: 0 + 5.1: 0 + 5.2: 0 + 7: 0 + 9: 0 + 10: 0 + 11: 0 + 12: 0 + 13: 0 + 14: 0 + 15: 0 + 16: 0 + 21: 0 + 22: 0 + 24.1: 0 + 32: 1 + 9: _ZN9oceanbase6common10SimpleCond7get_keyEv:0 + 0: 0 + 15: _ZN9oceanbase6common15ObBaseLogWriter10need_flushEv:0 + 2: 0 + 16: _ZN9oceanbase6common10SimpleCond6signalEj:0 + 2: 0 + 3: 0 + 4: 0 + 27: _ZN9oceanbase6common10SimpleCond4waitEjl:0 + 1: 0 + 1.1: 0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 6: 0 + 6.1: 0 + 1.1: _ZN9oceanbase6common10SimpleCond7get_keyEv:0 + 0: 0 +_ZN9oceanbase5share20ObBackupInfoOperator17get_string_value_ERNS_6common12ObISQLClientEbPKcPcl:18:0 + 2: 0 + 3: 0 + 4.1: 0 + 6: 0 + 7: 0 + 8.1: 0 + 10: 0 + 13: 0 + 13.4: 0 + 13.6: 0 + 13.7: 0 + 13.9: 0 + 13.13: 0 + 15: 0 + 17: 0 + 17.1: 0 + 18.1: 0 + 19.1: 0 + 19.2: 0 + 19.3: 0 + 20.1: 0 + 21.2: 0 + 21.3: 0 + 22.1: 0 + 23.2: 0 + 24: 0 + 25.1: 0 + 26.1: 0 + 26.2: 0 + 28: 0 + 30.1: 0 + 33: 0 + 33.2: 0 + 33.3: 0 + 33.5: 0 + 33.6: 0 + 33.7: 0 + 33.12: 0 + 33.14: 0 + 33.15: 0 + 33.16: 0 + 34: 0 + 35.1: 0 + 39: 0 + 40.1: 0 + 41: 0 + 41.1: 0 + 42: 0 + 43: 0 + 45: 0 + 45.2: 0 + 45.3: 0 + 45.5: 0 + 45.6: 0 + 45.7: 0 + 45.14: 0 + 45.15: 0 + 45.16: 0 + 46: 0 + 46.3: 0 + 47.1: 0 + 52: 0 + 53.20: 1 + 53.25: 0 + 53.27: 0 + 4: _ZN9oceanbase3lib7ObLabelC2IA10_cEERKT_:0 + 2: _ZN9oceanbase3lib7ObLabelaSILm10EEERS1_RAT__Kc:0 + 4: 0 + 13.2: _ZN9oceanbase6common8precheckINS0_12ObISQLClient10ReadResultEEEibRb:0 + 6: _ZN9oceanbase6common15check_from_heapEiRb:0 + 4: 0 + 5: 0 + 6: 0 + 6.1: 0 + 10: 0 + 10.2: 0 + 13.6: _ZN9oceanbase6common2SVINS0_12ObISQLClient10ReadResultELb0EEC2IZNS_5share20ObBackupInfoOperator17get_string_value_ERS2_bPKcPclE6$_1426EEibOT_:0 + 3: 0 + 5: 0 + 6: 0 + 9: _ZZN9oceanbase5share20ObBackupInfoOperator17get_string_value_ERNS_6common12ObISQLClientEbPKcPclENK6$_1426clEPv:0 + 0: 0 + 21.1: _ZN9oceanbase6common11ObSqlString3ptrEv:0 + 0: 0 + 23.1: _ZN9oceanbase6common12ObISQLClient10ReadResult10get_resultEv:0 + 0: 0 + 33.1: _ZN9oceanbase6common8ObStringC2Ev:0 + 1: 0 + 33.4: _ZNK9oceanbase6common8ObString6lengthEv:0 + 0: 0 + 33.12: _ZN9oceanbase6common8ObString3ptrEv:0 + 0: 0 + 33.14: _ZNK9oceanbase6common8ObString6lengthEv:0 + 0: 0 + 45.1: _ZN9oceanbase6common8ObStringC2Ev:0 + 1: 0 + 45.4: _ZNK9oceanbase6common8ObString6lengthEv:0 + 0: 0 + 45.12: _ZN9oceanbase6common8ObString3ptrEv:0 + 0: 0 + 53.20: _ZN9oceanbase6common2SVINS0_12ObISQLClient10ReadResultELb0EED2Ev:0 + 2: 0 + 4: 0 + 5: 0 + 6: 0 + 6.1: 0 + 53.22: _ZN9oceanbase6common2SVINS0_12ObISQLClient10ReadResultELb0EED2Ev:0 + 2: 0 + 4: 0 + 5: 0 + 6: 0 + 6.1: 0 +_ZN9oceanbase5share18ObLSStatusOperator34get_tenant_primary_zone_info_arrayEmRNS_6common8ObIArrayINS0_19ObLSPrimaryZoneInfoEEERNS2_12ObISQLClientE:18:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 6.1: 0 + 8.1: 0 + 9.1: 0 + 10.1: 0 + 11.1: 0 + 11.2: 0 + 12.1: 0 + 13.1: 0 + 13.2: 0 + 14.1: 0 + 16: 0 + 16.1: 0 + 18: 1 + 8: _ZN9oceanbase3lib7ObLabelC2IA10_cEERKT_:0 + 2: _ZN9oceanbase3lib7ObLabelaSILm10EEERS1_RAT__Kc:0 + 4: 0 + 9: _ZN9oceanbase5share18ObLSStatusOperator30construct_ls_primary_info_sql_ERNS_6common11ObSqlStringE:0 + 3: 0 + 7.1: 0 + 9: 0 +_ZN9oceanbase3sql3dtl22ObDtlChannelMemManager17auto_free_on_timeEl:18:0 + 1: 0 + 2: 0 + 4: 0 + 7: 0 + 8: 0 + 9: 0 + 11: 0 + 16: 0 + 17: 0 + 18.1: 0 + 18.3: 0 + 18.4: 0 + 19: 0 + 20.1: 0 + 22: 0 + 23: 0 + 28: 1 + 31: 0 + 7: _ZNK9oceanbase6common13ObLightyQueue4sizeEv:0 + 0: 0 + 16: _ZNK9oceanbase6common13ObLightyQueue4sizeEv:0 + 0: 0 + 18.3: _ZNK9oceanbase6common13ObLightyQueue4sizeEv:0 + 0: 0 + 29: _ZN9oceanbase3sql3dtl22ObDtlChannelMemManager25update_max_memory_percentEv:4 + 2: 1 _ZN9oceanbase3sql3dtl22ObDtlChannelMemManager19get_max_mem_percentEv:1 +_ZN9oceanbase3sql17ObTableInsertUpOp18do_insert_up_cacheEv:18:0 + 1: 0 + 2: 0 + 5: 0 + 6: 0 + 7.2: 0 + 8: 0 + 9: 0 + 14.2: 0 + 14.5: 0 + 14.7: 0 + 14.10: 0 + 15: 0 + 15.1: 0 + 16.1: 0 + 18.1: 0 + 18.2: 0 + 18.3: 0 + 18.4: 0 + 20: 0 + 21: 0 + 22.1: 0 + 23.2: 0 + 23.3: 0 + 24.1: 0 + 25.1: 0 + 25.2: 0 + 28.1: 0 + 29.2: 0 + 31: 0 + 32: 0 + 33: 0 + 34.1: 0 + 35.1: 0 + 35.2: 0 + 36.1: 0 + 39.1: 0 + 39.3: 0 + 39.4: 0 + 43.1: 0 + 44.3: 0 + 46.1: 0 + 48.1: 0 + 48.2: 0 + 49.1: 0 + 52: 0 + 59: 0 + 60.1: 0 + 62: 0 + 62.1: 0 + 62.2: 0 + 63.1: 0 + 65.1: 0 + 65.2: 0 + 65.3: 0 + 66.1: 0 + 68.1: 0 + 68.2: 0 + 69: 0 + 69.2: 0 + 69.3: 0 + 72.1: 0 + 74.1: 0 + 74.2: 0 + 75: 0 + 75.1: 0 + 75.2: 0 + 79.1: 0 + 80.1: 0 + 80.2: 0 + 81.1: 0 + 82.1: 0 + 82.2: 0 + 83: 0 + 83.1: 0 + 84.1: 0 + 85.1: 0 + 85.2: 0 + 85.3: 0 + 86: 0 + 86.2: 0 + 86.3: 0 + 91.1: 0 + 92.3: 1 + 94.1: 0 + 95.1: 1 _ZN9oceanbase3sql17ObTableInsertUpOp19calc_auto_incrementERKNS0_10ObUpdCtDefE:1 + 95.2: 0 + 96.1: 0 + 97.1: 0 + 99.1: 0 + 100: 0 + 100.1: 0 + 101.1: 0 + 102.1: 0 + 106.1: 0 + 107: 0 + 107.1: 0 + 108.1: 0 + 119: 0 + 119.1: 0 + 120.1: 0 + 122.1: 0 + 127: 0 + 127.3: 0 + 129.28: 0 + 65313: 0 + 3: _ZN9oceanbase6common9ObSEArrayINS_3sql15ObConflictValueELl1ENS0_19ModulePageAllocatorELb0EEC2Ev:0 + 0.1: 0 + 0.5: _ZN9oceanbase6common13ObSEArrayImplINS_3sql15ObConflictValueELl1ENS0_19ModulePageAllocatorELb0EEC2ElRKS4_:0 + 2: 0 + 5: 0 + 6: 0 + 8: 0 + 17.1: 0 + 2: _ZN9oceanbase6common8ObIArrayINS_3sql15ObConflictValueEEC2EPS3_l:0 + 0: _ZN9oceanbase6common12ObIArrayWrapINS_3sql15ObConflictValueEEC2EPS3_l:0 + 0: 0 + 7: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 9: _ZN9oceanbase3lib13MemoryContextC2EPNS0_17__MemoryContext__E:0 + 2: _ZN9oceanbase3lib13MemoryContextaSEPNS0_17__MemoryContext__E:0 + 2: 0 + 8: 0 + 4: _ZN9oceanbase3sql17ObChunkDatumStore8IteratorC2Ev:0 + 0: 0 + 0.4: 0 + 7: _ZN9oceanbase3sql11get_my_specINS0_17ObTableInsertUpOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:0 + 5: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:0 + 2: 0 + 7.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql15ObInsertUpCtDefEE2atEl:0 + 6: 0 + 10: _ZN9oceanbase6common12ObIArrayWrapINS_3sql15ObInsertUpRtDefEE2atEl:0 + 6: 0 + 14: _ZN9oceanbase6common12ObCurTraceId3getEv:0 + 2: _ZN9oceanbase6common12ObCurTraceId12get_trace_idEv:0 + 5: 0 + 5.1: 0 + 5.1: _ZN9oceanbase6common12ObCurTraceId7TraceIdC2Ev:0 + 0: 0 + 14.1: _Z17CHECK_TRACE_TIMESmPKm:0 + 10.1: 0 + 11.1: 0 + 12: 0 + 13: 0 + 14: 0 + 18: 0 + 19: 0 + 20: 0 + 14.4: _ZN9oceanbase3lib20is_trace_log_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:0 + 2: 0 + 14.6: _ZN9oceanbase6common18get_trace_recorderEv:0 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:0 + 7: 0 + 8: 0 + 8.1: 0 + 14.9: _ZN9oceanbase3lib20is_trace_log_enabledEv:0 + 2: 0 + 2.1: _ZNK9oceanbase3lib11ObLibConfig20is_trace_log_enabledEv:0 + 2: 0 + 14.11: _ZN9oceanbase6common18get_trace_recorderEv:0 + 2: _ZN9oceanbase6common10TSIFactory12get_instanceINS0_24ObTraceEventRecorderBaseILl189ELl1600EEELm1EEEPT_v:0 + 7: 0 + 8: 0 + 8.1: 0 + 14.12: _ZN9oceanbase6common18ObSeqEventRecorderINS0_12ObTraceEventELl189ELl1600EE9add_eventEv:0 + 2: 0 + 3.1: 0 + 6: 0 + 10: 0 + 11: 0 + 12: 0 + 14.13: _ZN9oceanbase6common12ObTraceEvent11set_id_timeEt:0 + 0: 0 + 0: _ZN9oceanbase6common13ObTimeUtility17fast_current_timeEv:0 + 2: 0 + 15: _ZN9oceanbase3sql17ObChunkDatumStore5beginERNS1_8IteratorElPKNS1_12IterationAgeE:0 + 2: 0 + 19: _ZN9oceanbase6common13ObSEArrayImplINS_3sql15ObConflictValueELl1ENS0_19ModulePageAllocatorELb0EE5reuseEv:0 + 8: 0 + 9: 0 + 29.1: _ZNK9oceanbase6common12ObIArrayWrapINS_3sql15ObConflictValueEE5emptyEv:0 + 0: 0 + 44.1: _ZN9oceanbase3sql17ObTableInsertUpOp28get_primary_table_insert_rowEv:0 + 2: 0 + 2: _ZN9oceanbase3sql11get_my_specINS0_17ObTableInsertUpOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:0 + 5: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:0 + 2: 0 + 2.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql15ObInsertUpCtDefEE2atEl:0 + 6: 0 + 44.2: _ZN9oceanbase3sql17ObConflictChecker27convert_exprs_to_stored_rowERKNS_6common8ObIArrayIPNS0_6ObExprEEERPNS0_17ObChunkDatumStore9StoredRowE:0 + 3: 0 + 3.1: 0 + 60: _ZN9oceanbase6common12ObIArrayWrapINS_3sql15ObConflictValueEE2atEl:0 + 6: 0 + 61: _ZN9oceanbase3sql10ObOperator20clear_evaluated_flagEv:0 + 2.1: 0 + 2.3: 0 + 3: 0 + 2.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql10ObEvalInfoEE5countEv:0 + 0: 0 + 3: _ZN9oceanbase6common12ObIArrayWrapIPNS_3sql10ObEvalInfoEE2atEl:0 + 6: 0 + 3.1: _ZN9oceanbase3sql10ObEvalInfo20clear_evaluated_flagEv:0 + 2: 0 + 4: 0 + 65.1: _ZN9oceanbase3sql17ObTableInsertUpOp29get_primary_table_upd_old_rowEv:0 + 2: 0 + 2: _ZN9oceanbase3sql11get_my_specINS0_17ObTableInsertUpOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:0 + 5: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:0 + 2: 0 + 2.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql15ObInsertUpCtDefEE2atEl:0 + 6: 0 + 92.1: _ZN9oceanbase3sql17ObTableInsertUpOp29get_primary_table_upd_new_rowEv:0 + 2: 0 + 2: _ZN9oceanbase3sql11get_my_specINS0_17ObTableInsertUpOpEEERKNS0_6op_reg14ObOpTypeTraitsIXsr6op_reg10ObOpTraitsIT_EE5type_EE4SpecERKS5_:0 + 5: _ZNK9oceanbase3sql15ObTableModifyOp8get_specEv:0 + 2: 0 + 2.1: _ZNK9oceanbase6common12ObIArrayWrapIPNS_3sql15ObInsertUpCtDefEE2atEl:0 + 6: 0 + 92.2: _ZN9oceanbase3sql17ObConflictChecker27convert_exprs_to_stored_rowERKNS_6common8ObIArrayIPNS0_6ObExprEEERPNS0_17ObChunkDatumStore9StoredRowE:0 + 3: 0 + 3.1: 0 + 3: _ZN9oceanbase3sql8ObDASRef13get_das_allocEv:0 + 107: _ZN9oceanbase3sql17ObConflictChecker10update_rowEPKNS0_17ObChunkDatumStore9StoredRowES5_:0 + 4: 0 + 5.1: 0 + 6.1: 0 + 7.1: 0 + 9: 0 + 129.28: _ZN9oceanbase3sql17ObChunkDatumStore8IteratorD2Ev:0 + 0: 0 + 0.1: 0 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIteratorD2Ev:0 + 0: 0 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator5resetEv:0 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator12reset_cursorEv:0 + 3: 0 + 129.31: _ZN9oceanbase3sql17ObChunkDatumStore8IteratorD2Ev:0 + 0: 0 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIteratorD2Ev:0 + 0: 0 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator5resetEv:0 + 0: _ZN9oceanbase3sql17ObChunkDatumStore11RowIterator12reset_cursorEv:0 + 3: 0 + 129.32: _ZN9oceanbase6common13ObSEArrayImplINS_3sql15ObConflictValueELl1ENS0_19ModulePageAllocatorELb0EED2Ev:0 + 1: 0 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_3sql15ObConflictValueELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:0 + 9: 0 + 11: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_3sql15ObConflictValueELl1ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 + 129.34: _ZN9oceanbase6common13ObSEArrayImplINS_3sql15ObConflictValueELl1ENS0_19ModulePageAllocatorELb0EED2Ev:0 + 1: 0 + 3.2: 0 + 2: _ZN9oceanbase6common13ObSEArrayImplINS_3sql15ObConflictValueELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv:0 + 9: 0 + 11: 0 + 10: _ZN9oceanbase6common13ObSEArrayImplINS_3sql15ObConflictValueELl1ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv:0 + 4: _ZN9oceanbase6common19ModulePageAllocator4freeEPv:0 + 0: 0 + 0.2: 0 + 0.1: _ZN9oceanbase6common7ob_freeEPv:0 + 2: 0 + 3: 0 + 4: 0 + 5: 0 + 4: _ZL12abort_unlessb:0 + 5: 0 + 6: 0 +_ZNK9oceanbase5obrpc15ObRpcResultCode19serialize_dispatch_EPclRlSt17integral_constantIbLb0EE:17:0 + 0: 0 + 0.1: 1 + 0.3: 0 + 0.9: 1 + 0.10: 0 + 0.12: 0 + 0.3: _ZN9oceanbase6common8ObLogger10get_loggerEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 2.3: 0 + 2.4: 0 + 2.6: 0 + 0.11: _ZN9oceanbase6common7ObLogKVIRKiLb0EEC2EPKcS3_:0 + 0: 0 +_ZN9oceanbase6common6DCHashINS_11transaction9tablelock8ObLockIDELl8EE6HandleD2Ev:17:1 + 0: 1 _ZN9oceanbase6common6DCHashINS_11transaction9tablelock8ObLockIDELl8EE6Handle6retireEil:1 + 0.1: 1 + 0.2: 0 +_ZN9oceanbase6common13TimeWheelBase4scanEv:17:0 + 1: 0 + 6.1: 1 + 6.2: 1 + 6.3: 1 + 8: 0 + 10.2: 0 + 10.3: 0 + 10.4: 0 + 12: 0 + 13: 0 + 14.1: 0 + 14.2: 0 + 17: 0 + 18: 0 + 19.1: 0 + 21.1: 0 + 32: 0 + 34.1: 0 + 36.1: 0 + 37: 0 + 39.1: 0 + 40: 0 + 41: 0 + 45: 0 + 47: 0 + 51: 0 + 52: 0 + 53: 0 + 54: 0 + 56: 0 + 57.1: 0 + 61: 0 + 64: 0 + 65: 0 + 74: 0 + 7: _ZN9oceanbase6common16ObClockGenerator12getRealClockEv:1 + 2: _ZN9oceanbase6common16ObClockGenerator6get_usEv:1 + 2: 1 _ZN9oceanbase6common13ObTimeUtility12current_timeEv:1 + 16: _ZN9oceanbase6common10TaskBucket4lockEv:0 + 0: _ZN9oceanbase6common10ObSpinLock4lockEv:0 + 2: 0 + 17: _ZN9oceanbase6common7ObDListINS0_15ObTimeWheelTaskEE9get_firstEv:0 + 0: 0 + 31: _ZNK9oceanbase6common15ObTimeWheelTask7trylockEv:0 + 3: _ZN9oceanbase6common15ObSmallSpinLockIhLl0ELl500ELl100EE8try_lockEv:0 + 3: 0 + 4: 0 + 5: 0 + 32: _ZN9oceanbase6common7ObDListINS0_15ObTimeWheelTaskEE6removeEPS2_:0 + 3: 0 + 7: 0 + 6: _ZN9oceanbase6common11ObDLinkBaseINS0_15ObTimeWheelTaskEE6unlinkEv:0 + 2: 0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 44: _ZN9oceanbase6common15ObTimeWheelTask15set_scan_ticketEl:0 + 0: 0 + 47: _ZN9oceanbase6common15ObTimeWheelTask6unlockEv:0 + 0: _ZN9oceanbase6common15ObSmallSpinLockIhLl0ELl500ELl100EE6unlockEv:0 + 2: 0 + 3: 0 + 50: _ZN9oceanbase6common10TaskBucket6unlockEv:0 + 0: _ZN9oceanbase6common10ObSpinLock6unlockEv:0 + 2: 0 + 53: _ZN9oceanbase6common15ObTimeWheelTask7runTaskEv:0 + 2: 0 + 64: _ZN9oceanbase6common16ObClockGenerator12getRealClockEv:0 + 2: _ZN9oceanbase6common16ObClockGenerator6get_usEv:0 + 2: 0 +_ZN9oceanbase6common11ObSqlString6assignERKS1_:17:0 + 1: 0 + 2: 0 + 3: 0 + 4: 0 + 5.1: 0 + 6.1: 1 + 7.1: 0 + 9: 1 + 3: _ZNK9oceanbase6common11ObSqlString8is_validEv:0 + 2: 0 + 2.1: 0 + 2.2: 0 + 6.2: _ZN9oceanbase6common11ObSqlString6assignEPKc:0 + 4: 0 + 2: _ZN9oceanbase6common11ObSqlString5reuseEv:0 + 3: _ZN9oceanbase6common11ObSqlString10set_lengthEl:0 + 11: 0 + 12: 0 + 13: 0 + 6.1: _ZNK9oceanbase6common11ObSqlString8capacityEv:0 + 0: 0 +_ZN9oceanbase5share6schema16ObDropTenantInfo5resetEv:17:1 + 1: 1 + 2: 1 + 4: 1 +_ZN9oceanbase5share21ObLSLocationTimerTask12runTimerTaskEv:17:1 + 1: 1 + 3: 1 _ZN9oceanbase5share19ObLSLocationService22renew_all_ls_locationsEv:1 + 4.1: 0 + 7: 0 + 8.1: 0 + 10: 0 + 7: _ZN9oceanbase5share19ObLSLocationService22schedule_ls_timer_taskEv:0 + 2: 0 + 3: 0 + 4: 0 + 5.1: 0 + 6.1: 0 + 10.1: 0 + 12: 0 +_ZN9oceanbase11transaction14ObTransService28ls_sync_rollback_savepoint__EPNS0_14ObPartTransCtxElll:17:0 + 4: 0 + 5: 0 + 6: 0 + 7: 0 + 10: 0 + 11: 0 + 12: 0 + 13: 0 + 14.1: 0 + 16: 0 + 17.1: 0 + 19: 0 + 20: 0 + 23.3: 0 + 24.1: 0 + 27: 1 + 8: _ZN9oceanbase6common10ObSequence22inc_and_get_max_seq_noEv:0 + 2: 0 +_ZNK9oceanbase6common12ObMySQLProxy14is_oracle_modeEv:16:2 + 0: 2 +_ZN9oceanbase7storage25ObReCheckNothingOperationclEv:16:3 + 1: 2 + 3: 2 +_ZN9oceanbase6common2SVINS0_12ObISQLClient10ReadResultELb1EED2Ev:16:0 + 1: 0 + 2: 0 + 4: 0 + 5: 0 + 6: 0 + 6.1: 0 + 8: 1 + 10: 1 +_ZN9oceanbase3rpc5frame14ObReqProcessor4initEv:16:2 + 1: 2 + 2: 2 +_ZN9oceanbase11transaction11ObGtsSource22is_external_consistentEv:16:2 + 0: 2 +easy_client_send:15:0 + 1: 0 + 6: 0 + 7: 0 + 9: 1 + 10: 0 + 11.1: 0 + 11.2: 0 + 11.3: 0 + 11.4: 0 + 16: 1 easy_client_wait:1 + 17: 0 + 18: 0 + 19: 0 + 20: 0 + 5: easy_client_wait_init:0 + 2: 0 + 4.1: 0 + 5.1: 0 + 6: 0 + 7: 0 +_ZN9oceanbase5share6schema25ObCompareNameWithTenantID7compareERKNS_6common8ObStringES6_:15:0 + 1: 0 + 3: 0 + 4: 0 + 5: 0 + 9.1: 0 + 11.1: 0 + 15: 0 + 16: 0 + 18: 0 + 19: 0 + 23: 1 + 9.1: _ZN9oceanbase3lib14is_oracle_modeEv:0 + 2: _ZN9oceanbase3lib15get_compat_modeEv:0 + 2: 0 + 2: _ZN9oceanbase3lib22get_ob_runtime_contextEv:0 + 2: 0 + 2.1: 0 + 2.1: _ZN9oceanbase3lib16ObRuntimeContextC2Ev:0 + 1: 0 +_ZN9oceanbase3sql18ObPlanCacheManager26ObPlanCacheEliminationTask19run_plan_cache_taskEv:15:0 + 1: 0 + 2: 0 + 5: 0 + 6: 0 + 7.1: 0 + 8.2: 0 + 9.1: 0 + 11.2: 0 + 11.4: 0 + 12.1: 0 + 13: 0 + 17: 0 + 17.1: 0 + 17.2: 0 + 19.1: 0 + 19.2: 0 + 20: 0 + 23: 0 + 24: 0 + 25: 0 + 25.1: 1 + 26.1: 0 + 28: 1 _ZN9oceanbase3sql11ObPlanCache11cache_evictEv:1 + 28.1: 0 + 29.1: 0 + 31: 0 + 31.1: 0 + 32.1: 0 + 34: 0 + 37: 0 + 37.1: 0 + 39.11: 0 + 39.12: 0 + 3: _ZN9oceanbase6common7ObArrayImNS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackImEENS0_22NotImplementItemEncodeImEEEC2Ev:0 + 0.1: 0 + 0.5: _ZN9oceanbase6common11ObArrayImplImNS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackImEENS0_22NotImplementItemEncodeImEEEC2ElRKS2_:0 + 3: 0 + 4: 0 + 7.1: 0 + 5: _ZN9oceanbase6common19ModulePageAllocatorC2ERKS1_:0 + 0: 0 + 4: _ZN9oceanbase3sql18ObPlanCacheManager18ObGetAllCacheKeyOpC2EPNS_6common8ObIArrayImEE:0 + 1: 0 + 8.1: _ZNK9oceanbase6common4hash9ObHashMapImPNS_3sql11ObPlanCacheENS1_24LatchReadWriteDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS5_EEEELi109ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE18foreach_refactoredINS3_18ObPlanCacheManager18ObGetAllCacheKeyOpEEEiRT_:0 + 2: 0 + 12: _ZN9oceanbase6common12ObIArrayWrapImE2atEl:0 + 6: 0 +_ZNK9oceanbase5share6schema16ObDropTenantInfo8is_validEv:14:1 + 1: 1 + 2: 1 + 2.1: 1 + 3: 1 + 3.1: 0 +_ZNK9oceanbase4palf10PalfHandle15get_access_modeERlRNS0_10AccessModeE:14:1 + 1: 1 + 3: 1 + 4: 1 _ZNK9oceanbase4palf14PalfHandleImpl15get_access_modeERlRNS0_10AccessModeE:1 + 6: 0 +_ZN9oceanbase6common11ObSqlString10append_fmtEPKcz:14:1 + 1: 1 + 2: 0 + 3: 0 + 7: 0 + 8: 0 _ZN9oceanbase6common11ObSqlString7vappendEPKcP13__va_list_tag:1 + 9.1: 0 + 13: 0 +_ZN9oceanbase5obrpc14ObRpcProcessorINS0_15ObTransRpcProxy5ObRpcILNS0_15ObRpcPacketCodeE1626EvEEE11encode_baseEPclRl:13:1 + 1: 1 + 2: 1 + 2: _ZN9oceanbase6common13serialization6encodeINS_5obrpc16ObTransRpcResultEEEiPclRlRKT_:2 + 2: _ZN9oceanbase6common13serialization11EnumEncoderILb0ENS_5obrpc16ObTransRpcResultEE6encodeEPclRlRKS4_:2 + 2: 1 _ZNK9oceanbase5obrpc16ObTransRpcResult9serializeEPclRl:2 +_ZN9oceanbase11transaction7CtxLock8try_lockEv:13:1 + 1: 1 + 2: 1 _ZN9oceanbase6common7ObLatch10try_wrlockEjPKj:1 +_ZNK9oceanbase8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorEE13get_iter_flagEv:12:1 + 0: 1 +_ZNK9oceanbase5share6schema21ObSimpleTableSchemaV214get_table_typeEv:12:2 + 0: 1 +_ZNK6obutil5Mutex4lockERNS0_9LockStateE:12:2 + 1: 2 + 2: 2 +_ZN9oceanbase6common11ObDLinkBaseINS_8observer24ObInnerSQLConnectionPool8LinkNodeEED2Ev:12:2 + 0: 2 +_ZN9oceanbase5share6schema17is_tenant_restoreERNS1_14ObTenantStatusE:12:1 + 1: 1 + 2: 1 +_ZN9oceanbase5share19ObLSReplicaLocationD2Ev:12:2 + 0: 2 +_ZN9oceanbase3lib6Worker9sched_runEl:12:1 + 1: 1 + 3: 1 _ZN9oceanbase3lib6Worker12check_statusEv:1 + 4: 1 +_ZN9oceanbase3lib6Worker12check_statusEv:12:1 + 0: 1 _ZN9oceanbase3lib6Worker10check_waitEv:1 +_ZN9oceanbase3lib6Worker10check_waitEv:12:1 + 1: 1 + 2: 1 _ZN9oceanbase3lib12common_yieldEv:1 + 3: 1 +_ZNK9oceanbase7storage8ObLSMeta18get_serialize_sizeEv:11:1 + 0: 1 + 0: _ZNK9oceanbase7storage8ObLSMeta28get_serialize_size_dispatch_ESt17integral_constantIbLb0EE:1 + 0: 1 _ZNK9oceanbase7storage8ObLSMeta19get_serialize_size_Ev:1 +_ZNK6obutil5Mutex4lockEv:11:1 + 1: 1 + 2: 1 + 5: 1 + 7.1: 0 + 9.1: 0 + 21: 1 +_ZN9oceanbase5share20ObAllTenantInfoProxy16load_tenant_infoEmPNS_6common12ObISQLClientEbRNS0_15ObAllTenantInfoE:11:0 + 4: 0 + 5: 0 + 7: 0 + 8: 0 + 9.1: 0 + 10.1: 0 + 11: 0 + 12.1: 0 + 15: 0 + 15.1: 0 + 16.1: 0 + 19.1: 0 + 20: 0 + 20.1: 0 + 21: 0 + 21.1: 0 + 23.1: 0 + 24.1: 0 + 24.2: 0 + 24.3: 0 + 25.1: 0 + 27: 0 + 27.4: 0 + 27.6: 0 + 27.13: 0 + 29: 0 + 29.1: 0 + 29.2: 0 + 30.1: 0 + 31.2: 0 + 32: 0 + 33.1: 0 + 34.1: 0 + 34.2: 0 + 35.1: 0 + 36.1: 0 + 36.2: 0 + 37.1: 0 + 40: 1 + 40.1: 0 + 40.3: 0 + 41: 1 _ZN9oceanbase6common11ObSqlStringD1Ev:1 + 41.1: 0 + 42: 0 + 6: _ZN9oceanbase5share15ObAllTenantInfo5resetEv:0 + 2: 0 + 5: 0 + 7: 0 + 3: _ZN9oceanbase5share12ObTenantRoleaSEl:0 + 0: 0 + 13.1: _ZN9oceanbase6common14is_user_tenantEm:0 + 3: 0 + 15.1: _ZN9oceanbase5share12ObTenantRoleD2Ev:0 + 0: _ZN9oceanbase5share12ObTenantRole5resetEv:0 + 0: 0 + 15.2: _ZN9oceanbase5share12ObTenantRoleD2Ev:0 + 0: _ZN9oceanbase5share12ObTenantRole5resetEv:0 + 0: 0 + 19: _ZN9oceanbase3lib7ObLabelC2IA10_cEERKT_:0 + 2: _ZN9oceanbase3lib7ObLabelaSILm10EEERS1_RAT__Kc:0 + 4: 0 + 20: _ZN9oceanbase6common18gen_meta_tenant_idEm:0 + 3: 0 + 5.1: 0 + 5.2: 0 + 3: _ZN9oceanbase6common20is_virtual_tenant_idEm:0 + 2: 0 + 5.1: _ZN9oceanbase6common13is_sys_tenantEm:0 + 2: 0 + 5.2: _ZN9oceanbase6common14is_meta_tenantEm:0 + 4.1: 0 + 27.12: _ZN9oceanbase6common2SVINS0_12ObISQLClient10ReadResultELb1EE3getEv:0 + 2: 0 + 29: _ZN9oceanbase6common11ObSqlString3ptrEv:0 + 0: 0 + 31.1: _ZN9oceanbase6common12ObISQLClient10ReadResult10get_resultEv:0 + 0: 0 +_ZN9oceanbase5share14ObSysVariables10get_amountEv:11:1 + 0: 1 +_ZN9oceanbase5share11ObQSyncLock8wrunlockEv:11:0 + 1: 1 + 2: 1 + 3: 1