forked from oceanbase/oceanbase
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhotfuncs.txt
More file actions
4409 lines (4409 loc) · 377 KB
/
hotfuncs.txt
File metadata and controls
4409 lines (4409 loc) · 377 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
_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