forked from oceanbase/oceanbase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hotfuncs.txt
2995 lines (2995 loc) · 277 KB
/
hotfuncs.txt
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
_ZTWN9oceanbase3lib6Thread8loop_ts_E
_ZTWN9oceanbase6common7ObLatch17max_lock_slot_idxE
_ZN9oceanbase3sql12ObSortOpImpl9add_batchERKNS_6common8ObIArrayIPNS0_6ObExprEEERKNS0_11ObBitVectorEllPl
_ZN9oceanbase3sql12ObSortOpImpl20add_quick_sort_batchERKNS_6common8ObIArrayIPNS0_6ObExprEEERKNS0_11ObBitVectorEllPl
_ZN9oceanbase3sql17ObChunkDatumStore9add_batchERKNS_6common8ObIArrayIPNS0_6ObExprEEERNS0_9ObEvalCtxERKNS0_11ObBitVectorElPKtlPPNS1_9StoredRowE
_ZN9oceanbase3sql19ObExprEncodeSortkey25eval_encode_sortkey_batchERKNS0_6ObExprERNS0_9ObEvalCtxERKNS0_11ObBitVectorEl
_ZNK9oceanbase3sql6ObExpr17alloc_str_res_memERNS0_9ObEvalCtxEll
_ZN9oceanbase6common16ObArenaAllocator5allocEl
_ZN9oceanbase5share20ObSortkeyConditioner24process_key_conditioningERNS_6common7ObDatumEPhlRlRNS0_10ObEncParamE
_Z26ob_strnxfrm_unicode_varlenPK13ObCharsetInfoPhmjPKhmbPb
_ZN9oceanbase6common9ObCharset17is_argument_validENS0_15ObCollationTypeEPKclS4_l
_ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE
_ZN9oceanbase3lib9ObjectMgr12alloc_objectEmRKNS0_9ObMemAttrE
_ZN9oceanbase3lib9ObjectSet12alloc_objectEmRKNS0_9ObMemAttrE
_ZN9oceanbase3lib8BlockSet14get_free_blockEiRKNS0_9ObMemAttrE
_ZZN9oceanbase5share24ObOrderPerservingEncoder25encode_from_string_varlenENS_6common8ObStringEPhlRlRNS0_10ObEncParamEENK5$_954clEPKc.llvm.1976230646019469395
_ZN9oceanbase3sql13ObExecContext18create_expr_op_ctxEmlRPv
_ZN9oceanbase3sql16ObChunkStoreUtil12alloc_dir_idERl
_ZNK9oceanbase3lib17ObMallocAllocator24get_tenant_ctx_allocatorEmm
_ZN9oceanbase3sql24ObTenantSqlMemoryManager18get_work_area_sizeEPNS_6common12ObIAllocatorERNS0_20ObSqlWorkAreaProfileE
_ZN9oceanbase3sql17ObChunkDatumStore14init_batch_ctxEll
_ZN9oceanbase3lib9SetLockerINS0_7ObMutexEE6unlockEv
_ZN9oceanbase3lib9SetLockerINS0_7ObMutexEE4lockEv
_ZN9oceanbase3lib9ObjectSet9merge_objEPNS0_7AObjectE
_ZN9oceanbase6common13ObCtxParallel8instanceEv
_ZN9oceanbase3lib9ObjectSet15get_free_objectEj
_ZNK9oceanbase3lib7ABitSet22find_first_significantEi
_ZN9oceanbase3lib17ObTenantMemoryMgr11alloc_chunkElRKNS0_9ObMemAttrE
_ZN9oceanbase3lib9ObjectSet18do_free_dirty_listEv
_ZN9oceanbase3lib17ObTenantMemoryMgr12alloc_chunk_ElRKNS0_9ObMemAttrE
_ZN9oceanbase3lib10AChunkList3popEv
_ZN9oceanbase3lib9AChunkMgr12direct_allocEmbRbb
_ZN9oceanbase3sql12ObSortOpImpl12ObAdaptiveQS29inplace_radixsort_more_bucketEllllllb
_ZN9oceanbase3sql12ObSortOpImpl12ObAdaptiveQS10aqs_cps_qsElllll
_ZN9oceanbase3sql17fast_compare_simdEPKhS2_lRll
_ZTWN9oceanbase6common7ObLatch13current_locksE
_ZTWN9oceanbase8memtable33TLOCAL_NEED_WAIT_IN_LOCK_WAIT_MGRE
_ZN9oceanbase7obmysql21ObMySQLRequestManager11release_oldEl
_ZN9oceanbase10logservice11ObLSAdapter16wait_append_syncERKNS_5share6ObLSIDE
_ZN9oceanbase3sql17ObMergeDistinctOp20inner_get_next_batchEl
_ZN9oceanbase3sql17ObMergeDistinctOp21deduplicate_for_batchEbPKNS0_11ObBatchRowsE
_ZN9oceanbase6common21ObNullSafeDatumStrCmpILNS0_15ObCollationTypeE45ELb0ELb0EE3cmpERKNS0_7ObDatumES6_Ri
_ZN9oceanbase6common9ObCharset8strcmpspENS0_15ObCollationTypeEPKclS4_lb
_ZL22ob_strnncollsp_utf8mb4PK13ObCharsetInfoPKhmS3_mb
_ZN9oceanbase3sql17ObChunkDatumStore9StoredRow8do_buildILb0EEEiRPS2_RKNS_6common8ObIArrayIPNS0_6ObExprEEERNS0_9ObEvalCtxEPclj
_ZN9oceanbase3sql17ObChunkDatumStore13row_copy_sizeERKNS_6common8ObIArrayIPNS0_6ObExprEEERNS0_9ObEvalCtxERl
_Z27ob_strnncollsp_utf8mb4_helpPPKhmS1_mS1_S1_bPiS2_
_ZN9oceanbase3omt10ObThWorker6workerERlS2_Ri
_ZTWN9oceanbase3lib6Thread12blocking_ts_E
_ZTWN9oceanbase3lib17ContextTLOptGuard13enable_tl_optE
_ZTWN9oceanbase6common16g_warning_bufferE
_ZTWN9oceanbase3lib6Thread11wait_event_E
_ZTWN9oceanbase6common11in_try_stmtE
_ZN9oceanbase6common16ObWaitEventGuardC1Elmlllb
_ZN9oceanbase6common16ObWaitEventGuardC2Elmlllb
_ZN9oceanbase3rpc5frame15ObReqTranslator9translateERNS0_9ObRequestERPNS1_14ObReqProcessorE
_ZN9oceanbase3lib17__MemoryContext__15destory_contextEPS1_
_ZN9oceanbase3lib18SetDoNothingLocker4lockEv
_ZN9oceanbase3lib18SetDoNothingLocker6unlockEv
_ZN9oceanbase6common16ObPriorityQueue2ILi1ELi2ELi3EE6do_popERPNS0_6ObLinkEll
_ZN9oceanbase6common16ObWaitEventGuardD1Ev
_ZN9oceanbase6common16ObWaitEventGuardD2Ev
_ZN9oceanbase3omt17ObWorkerProcessor7processERNS_3rpc9ObRequestE
_ZN9oceanbase3rpc5frame14ObReqProcessor7destroyEv
_ZN9oceanbase3rpc5frame14ObReqProcessor14set_ob_requestERNS0_9ObRequestE
_ZN9oceanbase6common12ObCurTraceId3setERKNS1_7TraceIdE
_ZN9oceanbase3rpc9ObRequest17generate_trace_idERKNS_6common6ObAddrE
_ZN9oceanbase3rpc5frame14ObSqlProcessor3runEv
_ZNK9oceanbase3omt10ObThWorker10need_retryEv
_ZN9oceanbase8observer8ObMPBase14before_processEv
_ZN9oceanbase6common13ObSEArrayImplINS0_8ObStringELl1ENS0_19ModulePageAllocatorELb0EE9push_backERKS2_
_ZN9oceanbase8observer8ObMPBase19setup_packet_senderEv
_ZN9oceanbase6common12ObCurTraceId7TraceId3setERKS2_
_ZN9oceanbase8observer9ObMPQuery7processEv
_ZN9oceanbase6common8ObLogger10get_loggerEv
_ZN9oceanbase6common13ObSEArrayImplINS0_8ObStringELl1ENS0_19ModulePageAllocatorELb0EED2Ev
_ZNK9oceanbase8observer8ObMPBase16record_flt_traceERNS_3sql16ObSQLSessionInfoE
_ZN9oceanbase3sql8ObSqlCtx5clearEv
_ZN9oceanbase6common15databuff_printfEPclRlPKcz
_ZN9oceanbase11transaction8ObTxDesc21in_tx_for_free_route_Ev
_ZN9oceanbase5trace7ObTrace12get_instanceEv
_ZZNK9oceanbase3sql18ObBasicSessionInfo31is_server_status_in_transactionEvENK3$_0clEPKc.llvm.18214384844259232123
_ZN9oceanbase8observer16ObMPPacketSender11get_sessionERPNS_3sql16ObSQLSessionInfoE
_ZN9oceanbase8observer16ObMPPacketSender14revert_sessionEPNS_3sql16ObSQLSessionInfoE
_ZZN9oceanbase3sql10ObFLTUtils22init_flt_log_frameworkERNS0_16ObSQLSessionInfoEbENK5$_249clEPKc.llvm.4428261628080769903
_ZNK9oceanbase3sql11ObResultSet23need_end_trans_callbackEv
_ZN9oceanbase8observer9ObMPQuery19process_single_stmtERKNS_3sql15ObMultiStmtItemERNS2_16ObSQLSessionInfoEbbRbS8_
_ZN9oceanbase3sql13ObBaselineKey5resetEv
_ZN9oceanbase6common16ObFixedArrayImplIPNS0_9ObSEArrayIlLl4ENS0_19ModulePageAllocatorELb1EEENS0_12ObIAllocatorEE7destroyEv
_ZN9oceanbase6common13ObTimeUtility12current_timeEv
_ZN9oceanbase6common16ObFixedArrayImplINS_3sql18ObDupTabConstraintENS0_12ObIAllocatorEE7destroyEv
_ZN9oceanbase6common14ObServerConfig12get_instanceEv
_ZN9oceanbase6common14ObMaxWaitGuardC1EPNS0_15ObWaitEventDescEPNS0_21ObDiagnoseSessionInfoE
_ZN9oceanbase6common16ObFixedArrayImplINS0_8ObStringENS0_12ObIAllocatorEE7destroyEv
_ZN9oceanbase6common16ObFixedArrayImplIlNS0_12ObIAllocatorEE7destroyEv
_ZN9oceanbase6common16ObFixedArrayImplINS_3sql18LocationConstraintENS0_12ObIAllocatorEE7destroyEv
_ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql20ObTablePartitionInfoENS0_12ObIAllocatorEE7destroyEv
_ZThn56_N9oceanbase8observer8ObMPBase14send_ok_packetERNS_3sql16ObSQLSessionInfoERNS0_10ObOKPParamEPNS_7obmysql13ObMySQLPacketE
_ZN9oceanbase6common16ObTotalWaitGuardD1Ev
_ZN9oceanbase3sql17ObAuditRecordData24update_event_stage_stateEv
_ZNK9oceanbase5share6schema19ObSchemaGetterGuard18get_schema_versionEmRl
_ZNK9oceanbase6common13ObSEArrayImplINS_5share6schema15ObSchemaMgrInfoELl2ENS0_19ModulePageAllocatorELb0EEixEl
_ZN9oceanbase3sql10ObSQLUtils19record_execute_timeENS0_13ObPhyPlanTypeEl
_ZN9oceanbase3sql10ObSQLUtils19handle_audit_recordEbNS0_13ObExecuteModeERNS0_16ObSQLSessionInfoEb
_ZN9oceanbase8observer14ObReqTimeGuardC2Ev
_ZN9oceanbase3sql8ObSqlCtx5resetEv
_ZN9oceanbase6common21ObSessionStatEstGuardD1Ev
_ZN9oceanbase6common21ObSessionStatEstGuardD2Ev
_ZThn56_N9oceanbase8observer8ObMPBase19update_last_pkt_posEv
_ZN9oceanbase3sql12ObExecRecord12record_startEPNS_6common21ObDiagnoseSessionInfoE
_ZN9oceanbase3sql12ObExecRecord10record_endEPNS_6common21ObDiagnoseSessionInfoE
_ZNK9oceanbase8observer8ObMPBase16do_after_processERNS_3sql16ObSQLSessionInfoERNS2_8ObSqlCtxEb
_ZN9oceanbase6common20check_stack_overflowERblPl
_ZN9oceanbase3sql11ObResultSetC2ERNS0_16ObSQLSessionInfoERNS_6common12ObIAllocatorE
_ZN9oceanbase3sql16ObSQLSessionInfo22get_final_audit_recordENS0_13ObExecuteModeE
_ZN9oceanbase6common14ObMaxWaitGuardD1Ev
_ZNK9oceanbase5share6schema27ObMultiVersionSchemaService35get_tenant_refreshed_schema_versionEmRlb
_ZN9oceanbase3sql13ObExecContextC1ERNS_6common12ObIAllocatorE
_ZN9oceanbase3sql13ObExecContextC2ERNS_6common12ObIAllocatorE
_ZN9oceanbase6common13get_stackattrERPvRm
_ZN9oceanbase7obmysql21ObMySQLRequestManager14record_requestERKNS_3sql17ObAuditRecordDataEbb
_ZN9oceanbase6common9ObRaQueue18push_with_imme_seqEPvRl
_ZN9oceanbase6common13ObVSliceAlloc5allocEl
_ZN9oceanbase3sql11ObResultSetD1Ev
_ZN9oceanbase3sql11ObResultSetD2Ev
_ZN9oceanbase6common16ObArenaAllocator4freeEPv
_ZN9oceanbase3sql9ObOpInputD2Ev
_ZN9oceanbase6common4hash9ObHashMapIPNS_3sql19DASRelatedTabletMap3KeyEPNS4_5ValueENS1_19NoPthreadDefendModeENS1_9hash_funcIS6_EENS1_8equal_toIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS6_S8_EEEELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev
_ZN9oceanbase6common11ObArrayImplIPKNS0_8ObIArrayIlEENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEED2Ev
_ZN9oceanbase8observer16ObMPPacketSender33update_transmission_checksum_flagERKNS_3sql16ObSQLSessionInfoE
_ZN9oceanbase3sql18ObBasicSessionInfo20set_session_in_retryENS0_20ObSessionRetryStatusE
_ZN9oceanbase3lib11ObLockGuardINS_6common16ObRecursiveMutexEED2Ev
_ZN9oceanbase3sql10ObPlanStat17update_cache_statERKNS0_15ObTableScanStatE
_ZN9oceanbase6common9EventItem4callEv
_ZN9oceanbase3sql18ObBasicSessionInfo17set_session_sleepEv
_ZN9oceanbase8observer9ObMPQuery25store_params_value_to_strERNS_6common12ObIAllocatorERNS_3sql16ObSQLSessionInfoERNS2_9Ob2DArrayINS2_10ObObjParamELi2079744ENS2_18ObWrapperAllocatorELb0ENS2_9ObSEArrayIPS9_Ll1ESA_Lb0EEEEE
_ZN9oceanbase3sql14ObPhysicalPlan16update_plan_statERKNS0_17ObAuditRecordDataEbbPKNS_6common8ObIArrayINS0_15ObTableRowCountEEE
_ZN9oceanbase3sql18ObBasicSessionInfo18set_session_activeERKNS_6common8ObStringEllNS_7obmysql10ObMySQLCmdE
_ZN9oceanbase6common16ObClusterVersion12get_instanceEv
_ZN9oceanbase8observer14ObReqTimeGuardD2Ev
_ZN9oceanbase8observer8ObMPBase12flush_bufferEb
_ZN9oceanbase7obmysql23ObPocSqlRequestOperator20async_write_responseEPNS_3rpc9ObRequestEPKcl
_ZN9oceanbase3sql16ObSQLSessionInfo24ObCachedTenantConfigInfo7refreshEv
_ZN9oceanbase6common16ObTotalWaitGuardC1EPNS0_15ObWaitEventStatEPNS0_21ObDiagnoseSessionInfoE
_ZZN9oceanbase8observer8ObMPBase18process_extra_infoERNS_3sql16ObSQLSessionInfoERKNS_7obmysql16ObMySQLRawPacketERbENK5$_368clEPKc
_ZN9oceanbase5trace16__ObFLTSpanGuardD2Ev
_ZN9oceanbase6common16ObDISessionCache8get_nodeEmRPNS0_18ObDISessionCollectE
_ZN9oceanbase3sql17ObTaskExecutorCtxC1ERNS0_13ObExecContextE
_ZN9oceanbase3sql17ObLCObjectManager11common_freeEPNS0_17ObILibCacheObjectENS0_16CacheRefHandleIDE
_ZN9oceanbase3sql5ObSql10stmt_queryERKNS_6common8ObStringERNS0_8ObSqlCtxERNS0_11ObResultSetE
OPENSSL_cleanse
_ZN9oceanbase3sql17ObPhysicalPlanCtxC1ERNS_6common12ObIAllocatorE
_ZN9oceanbase3sql17ObPhysicalPlanCtxC2ERNS_6common12ObIAllocatorE
_ZN9oceanbase3sql5ObSql18handle_large_queryEiRNS0_11ObResultSetERbRNS0_13ObExecContextE
_ZN9oceanbase6common19append_array_no_dupImEEiRNS0_8ObIArrayIT_EERKS4_
_ZN9oceanbase3sql14ObPlanCacheCtxD2Ev
_ZN9oceanbase3sql5ObSql27pc_get_plan_and_fill_resultERNS0_14ObPlanCacheCtxERNS0_11ObResultSetERiRb
_ZN9oceanbase5share6schema19ObSchemaGetterGuard10check_privERKNS1_17ObSessionPrivInfoERKNS1_15ObStmtNeedPrivsE
_ZN9oceanbase6common13ObSEArrayImplImLl8ENS0_19ModulePageAllocatorELb0EE6assignERKNS0_8ObIArrayImEE
_ZN9oceanbase3sql5ObSql14after_get_planERNS0_14ObPlanCacheCtxERNS0_16ObSQLSessionInfoEPNS0_14ObPhysicalPlanEbPKNS_6common9Ob2DArrayINS8_10ObObjParamELi2079744ENS8_18ObWrapperAllocatorELb0ENS8_9ObSEArrayIPSA_Ll1ESB_Lb0EEEEEm
_ZN9oceanbase3sql13ObExecContextD1Ev
_ZN9oceanbase3sql13ObExecContextD2Ev
_ZN9oceanbase6common11ObArrayImplINS_3sql19ObJoinFilterDataCtxENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEED2Ev
_ZN9oceanbase3lib9ObjectSet11free_objectEPNS0_7AObjectE
_ZN9oceanbase3lib9ObjectSet10free_blockEPNS0_6ABlockE
_ZN9oceanbase3lib12SubObjectMgr10free_blockEPNS0_6ABlockE
_ZN9oceanbase3lib8BlockSet10free_blockEPNS0_6ABlockE
_ZN9oceanbase6common13ObPageManager10free_blockEPNS_3lib6ABlockE
_ZN9oceanbase6common9Ob2DArrayINS_3sql15ObPxTabletRangeELi2079744ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS3_Ll64ES4_Lb0EEEE7destroyEv
_ZN9oceanbase6common13ObSEArrayImplIPNS_3sql15ObPxTabletRangeELl64ENS0_19ModulePageAllocatorELb0EED2Ev
_ZN9oceanbase3sql14ObExprValuesOp7destroyEv
_ZN9oceanbase8observer16ObSyncPlanDriver15response_resultERNS0_16ObMySQLResultSetE
_ZThn56_N9oceanbase8observer8ObMPBase15response_packetERNS_7obmysql13ObMySQLPacketEPNS_3sql16ObSQLSessionInfoE
_ZN9oceanbase8observer13ObQueryDriver21response_query_resultERNS_3sql11ObResultSetEbbRbl
_ZN9oceanbase8observer13ObQueryDriver28convert_string_value_charsetERNS_6common5ObObjERNS_3sql11ObResultSetE
_ZN9oceanbase6common8ObNewRow8get_cellEl
_ZN9oceanbase3sql11ObResultSet12get_next_rowERPKNS_6common8ObNewRowE
_ZN9oceanbase3sql15ObExecuteResult12get_next_rowERNS0_13ObExecContextERPKNS_6common8ObNewRowE
_ZN9oceanbase8observer16ObMPPacketSender15response_packetERNS_7obmysql13ObMySQLPacketEPNS_3sql16ObSQLSessionInfoE
_ZTWN9oceanbase3lib15ObPerfModeGuard26in_disable_diagnose_guard_E
_ZN9oceanbase7obmysql23ObPocSqlRequestOperator15get_sql_sessionEPNS_3rpc9ObRequestE
_ZN9oceanbase6common23ObReserveArenaAllocatorILl256EE5resetEv
_ZN9oceanbase8observer16ObMPPacketSender15try_encode_withERNS_7obmysql13ObMySQLPacketElRll
_ZThn56_N9oceanbase8observer8ObMPBase25need_send_extra_ok_packetEv
_ZNK9oceanbase3sql18ObBasicSessionInfo31is_server_status_in_transactionEv
_ZN9oceanbase7obmysql14ObProto20Utils16do_packet_encodeERNS0_18ObProtoEncodeParamE
_ZNK9oceanbase7obmysql13ObMySQLPacket6encodeEPclRlS3_
_ZNK9oceanbase7obmysql7OMPKRow9serializeEPclRl
_ZNK9oceanbase7obmysql9OMPKField9serializeEPclRl
_ZN9oceanbase6common9ObSMUtils8cell_strEPclRKNS0_5ObObjENS_7obmysql19MYSQL_PROTOCOL_TYPEERllS2_RKNS0_20ObDataTypeCastParamsEPKNS0_7ObFieldEPNS_5share6schema19ObSchemaGetterGuardEm
_ZN9oceanbase7obmysql11ObMySQLUtil12store_lengthEPclmRl
_ZNK9oceanbase7obmysql7OMPKEOF9serializeEPclRl
_ZN9oceanbase8observer13ObQueryDriver21response_query_headerERKNS_6common8ObIArrayINS2_7ObFieldEEEbbbPNS_3sql11ObResultSetE
_ZN9oceanbase8observer16ObMySQLResultSet14to_mysql_fieldERKNS_6common7ObFieldERNS_7obmysql12ObMySQLFieldE
_ZNK9oceanbase7obmysql13OMPKResheader9serializeEPclRl
_ZN9oceanbase3sql10ObOperator14get_next_batchElRPKNS0_11ObBatchRowsE
_ZN9oceanbase3sql10ObOperator13do_drain_exchEv
_ZNK9oceanbase6common11ObAllocator4usedEv
_ZN9oceanbase3sql16ObSQLSessionInfo21set_show_warnings_bufEi
_ZN9oceanbase8observer16ObMPPacketSender18finish_sql_requestEv
_ZN9oceanbase7obmysql23ObPocSqlRequestOperator18finish_sql_requestEPNS_3rpc9ObRequestE
_ZN9oceanbase7obmysql23request_finish_callbackEv
_ZN9oceanbase3sql16ObSQLSessionInfo32check_global_read_only_privilegeEbRKNS0_11ObSqlTraitsE
_ZN9oceanbase8observer9ObMPQuery11deserializeEv
_ZZN9oceanbase3sql11ObResultSet19auto_end_plan_transERNS0_14ObPhysicalPlanEiRbENKUlPKcE_clES6_
_ZN9oceanbase3lib15CompatModeGuardD2Ev
_ZN9oceanbase3sql16ObDASTaskFactory7cleanupEv
_ZN9oceanbase3sql11ObResultSet4openEv
_ZNK9oceanbase3sql6ObICmd21cause_implicit_commitEv
_ZThn32_NK9oceanbase3sql16ObStartTransStmt21cause_implicit_commitEv
_ZN9oceanbase3sql16ObSQLSessionInfo19get_request_managerEv
_ZN9oceanbase3sql8ObSortOp20sort_impl_next_batchEl
_ZN9oceanbase3sql12ObSortOpImpl14get_next_batchERKNS_6common8ObIArrayIPNS0_6ObExprEEElRl
_ZN9oceanbase3sql12ObSortOpImpl26get_next_batch_stored_rowsElRl
_ZN9oceanbase3sql12ObSortOpImpl21array_next_stored_rowERPKNS0_17ObChunkDatumStore9StoredRowE
_ZN9oceanbase3sql17ObChunkDatumStore8Iterator11attach_rowsILb0EEEvRKNS_6common8ObIArrayIPNS0_6ObExprEEERNS0_9ObEvalCtxEPPKNS1_9StoredRowEl
_ZN9oceanbase3sql18ObTableScanOpInputD2Ev
_ZN9oceanbase6common13ObSEArrayImplINS0_10ObNewRangeELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv
_ZN9oceanbase3sql10ObSQLUtils20handle_plan_baselineERKNS0_17ObAuditRecordDataEPNS0_14ObPhysicalPlanEiRNS0_8ObSqlCtxE
_ZZN9oceanbase3sql11ObResultSet19auto_end_plan_transERNS0_14ObPhysicalPlanEiRbENKUlPKcE3_clES6_
_ZN9oceanbase3sql20ObSecurityAuditUtils21handle_security_auditERNS0_11ObResultSetEPNS_5share6schema19ObSchemaGetterGuardEPKNS0_6ObStmtERKNS_6common8ObStringEi
_ZN9oceanbase6common11ObAllocatorUt_10free_blockEPNS_3lib6ABlockE
_ZN9oceanbase6common11ObArrayImplIPNS_3sql17ObChunkDatumStore9StoredRowENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEED2Ev
_ZN9oceanbase3sql10ObOperator4openEv
_ZN9oceanbase3sql8ObSortOp10inner_openEv
_ZN9oceanbase8observer11ObSrvXlator7releaseEPNS_3rpc5frame14ObReqProcessorE
_ZN9oceanbase8observer9ObMPQueryD2Ev
_ZN9oceanbase5trace7ObTrace10begin_spanEjhb
_ZN9oceanbase3sql16LinkExecCtxGuard20link_current_contextEv
_ZN9oceanbase6common11ObArrayImplINS_3sql9ObVarInfoENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev
_ZN9oceanbase8observer11ObSrvXlator13get_processorERNS_3rpc9ObRequestE
_ZN9oceanbase3sql13ObTableScanOp28inner_get_next_batch_for_tscEl
_ZN9oceanbase3sql11ObDASScanOp22get_output_result_iterEv
_ZN9oceanbase3sql15DASOpResultIter13get_next_rowsERll
_ZN9oceanbase7storage19ObTableScanIterator13get_next_rowsERll
_ZN9oceanbase7storage15ObMultipleMerge13get_next_rowsERll
_ZN9oceanbase12blocksstableL21nonext_nonext_compareERKNS0_14ObStorageDatumES3_RKNS_6common9ObCmpFuncERi.llvm.314931622695727512
_ZN9oceanbase7storage19ObMultipleScanMerge18inner_get_next_rowERNS_12blocksstable10ObDatumRowE
_ZN9oceanbase6common20ObNullSafeDatumTCCmpILNS0_14ObObjTypeClassE1ELS2_1ELb1EE3cmpERKNS0_7ObDatumES6_Ri
_ZNK9oceanbase8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorINS0_20ObStoreRowkeyWrapperEPNS0_9ObMvccRowEEEE13get_iter_flagEv
_ZN9oceanbase7storage19ObSSTableRowScannerINS0_30ObIndexTreeMultiPassPrefetcherILi32ELi3EEEE18inner_get_next_rowERPKNS_12blocksstable10ObDatumRowE
_ZN9oceanbase12blocksstable19ObMicroBlockDecoder7get_rowElRNS0_10ObDatumRowE
_ZNK9oceanbase12blocksstable19ObStringDiffDecoder6decodeERNS0_18ObColumnDecoderCtxERNS_6common5ObObjElRKNS0_11ObBitStreamEPKcl
_ZNK9oceanbase12blocksstable24ObIntegerBaseDiffDecoder6decodeERNS0_18ObColumnDecoderCtxERNS_6common5ObObjElRKNS0_11ObBitStreamEPKcl
_ZN9oceanbase6common7ObDatum8from_objERKNS0_5ObObjE
_ZN9oceanbase7storage15ObMultipleMerge16process_fuse_rowEbRNS_12blocksstable10ObDatumRowERPS3_
_ZNK9oceanbase12blocksstable12ObRawDecoder6decodeERNS0_18ObColumnDecoderCtxERNS_6common5ObObjElRKNS0_11ObBitStreamEPKcl
_ZNK9oceanbase8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorINS0_20ObStoreRowkeyWrapperEPNS0_9ObMvccRowEEEE7get_keyEv
_ZZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE25refresh_blockscan_checkerElRKNS_12blocksstable13ObDatumRowkeyEENKUlPKcE3_clES8_
_ZN9oceanbase6common8ObLogger13need_to_printEmi
_ZN9oceanbase7storage31ObSSTableMultiVersionRowScanner18inner_get_next_rowERPKNS_12blocksstable10ObDatumRowE
_ZThn336_N9oceanbase12blocksstable18ObMicroBlockReader7get_rowElRNS0_10ObDatumRowE
_ZNK9oceanbase8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorINS0_20ObStoreRowkeyWrapperEPNS0_9ObMvccRowEEEE9get_valueEv
_ZN9oceanbase8memtable22ObMemtableScanIterator18inner_get_next_rowERPKNS_12blocksstable10ObDatumRowE
_ZN9oceanbase8memtable9ObReadRow11iterate_rowERKNS_7storage16ObITableReadInfoERKNS_6common13ObStoreRowkeyERNS6_12ObIAllocatorERNS0_19ObMvccValueIteratorERNS_12blocksstable10ObDatumRowERNS0_11ObNopBitMapERl
_ZN9oceanbase12blocksstable11ObRowReader17read_memtable_rowEPKclRKNS_7storage16ObITableReadInfoERNS0_10ObDatumRowERNS_8memtable11ObNopBitMapERb
_ZN9oceanbase8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorINS0_20ObStoreRowkeyWrapperEPNS0_9ObMvccRowEEEE4nextEb
_ZN9oceanbase8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorINS0_20ObStoreRowkeyWrapperEPNS0_9ObMvccRowEEEE11set_versionEl
_ZN9oceanbase8memtable19ObMvccValueIterator4initERNS0_15ObMvccAccessCtxEPKNS0_13ObMemtableKeyEPNS0_9ObMvccRowERKNS_6common11ObQueryFlagE
_ZZN9oceanbase8memtable19ObMvccValueIterator4initERNS0_15ObMvccAccessCtxEPKNS0_13ObMemtableKeyEPNS0_9ObMvccRowERKNS_6common11ObQueryFlagEENK4$_94clEPKc
_ZN9oceanbase6common8ObLogger13need_to_printEmmi
_ZN9oceanbase8keybtree8IteratorINS_8memtable20ObStoreRowkeyWrapperEPNS2_9ObMvccRowEE13set_key_rangeES3_bS3_bl
_ZN9oceanbase6common13ObObjCmpFuncs7compareERKNS0_5ObObjES4_NS0_15ObCollationTypeERi
_ZN9oceanbase8keybtree8IteratorINS_8memtable20ObStoreRowkeyWrapperEPNS2_9ObMvccRowEE8get_nextERS3_RS5_
_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE8prefetchEv
_ZN9oceanbase12blocksstable22ObIndexBlockRowScanner4openERKNS0_12MacroBlockIdERKNS0_16ObMicroBlockDataERKNS0_12ObDatumRangeElbb
_ZN9oceanbase7storage21ObIndexTreePrefetcher19prefetch_block_dataERNS_12blocksstable16ObMicroIndexInfoERNS0_22ObMicroBlockDataHandleEb
_ZN9oceanbase6common21ObDiagnoseSessionInfo23get_local_diagnose_infoEv
_ZN9oceanbase7storage22ObMicroBlockDataHandle5resetEv
_ZN9oceanbase12blocksstable18ObIMicroBlockCache15get_cache_blockEmNS0_12MacroBlockIdEllRNS0_24ObMicroBlockBufferHandleE
_ZN9oceanbase6common15ObKVCacheHandle5resetEv
_ZN9oceanbase7storage15ObMultipleMerge12get_next_rowERPNS_12blocksstable10ObDatumRowE
_ZN9oceanbase7storage13ObSingleMerge22get_and_fuse_cache_rowEllRNS_12blocksstable10ObDatumRowERbS5_S5_
_ZN9oceanbase6common15ObKVGlobalCache12get_instanceEv
_ZN9oceanbase12blocksstable17ObFuseRowCacheKeyC1EmRKNS_6common10ObTabletIDERKNS0_13ObDatumRowkeyEllRKNS0_19ObStorageDatumUtilsE
_ZN9oceanbase7storage13ObSingleMerge13get_table_rowElRKNS_6common8ObIArrayIPNS0_8ObITableEEERNS_12blocksstable10ObDatumRowERbSC_
_ZN9oceanbase8memtable10ObMemtable3getERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS_12blocksstable13ObDatumRowkeyERPNS2_18ObStoreRowIteratorE
_ZN9oceanbase7storage18ObSSTableRowGetter9fetch_rowERNS0_19ObSSTableReadHandleERPKNS_12blocksstable10ObDatumRowE
_ZN9oceanbase8memtable19ObIMemtableIterator12get_next_rowERPKNS_12blocksstable10ObDatumRowE
_ZN9oceanbase12blocksstable20ObStorageDatumBuffer7reserveElb
_ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScanner18inner_get_next_rowERPKNS0_10ObDatumRowE
_ZN9oceanbase12blocksstable18ObMicroBlockReader7get_rowElRNS0_10ObDatumRowE
_ZN9oceanbase12blocksstable11ObRowReader8read_rowEPKclPKNS_7storage16ObITableReadInfoERNS0_10ObDatumRowE
_ZN9oceanbase3sql13ObTableScanOp22do_init_before_get_rowEv
_ZN9oceanbase3sql8ObDASRef13find_das_taskEPKNS0_14ObDASTabletLocENS0_11ObDASOpTypeE
_ZN9oceanbase3sql13ObTableScanOp25prepare_single_scan_rangeEl
_ZZNK9oceanbase3sql12ObQueryRange24direct_get_tablet_rangesERNS_6common12ObIAllocatorERNS0_13ObExecContextERNS2_9ObSEArrayIPNS2_10ObNewRangeELl1ENS2_19ModulePageAllocatorELb0EEERbRKNS2_20ObDataTypeCastParamsEENK6$_1366clEPKc
_ZZN9oceanbase3sql13ObTableScanOp25prepare_single_scan_rangeElENK5$_199clEPKc
_ZN9oceanbase8memtable21ObMemtableGetIterator18inner_get_next_rowERPKNS_12blocksstable10ObDatumRowE
_ZN9oceanbase8memtable13ObQueryEngine3getEPKNS0_13ObMemtableKeyERPNS0_9ObMvccRowEPS2_
_ZN9oceanbase8memtable8ObMtHash6do_getEPKNS0_20ObStoreRowkeyWrapperERPNS0_9ObMvccRowERS4_
_ZNK9oceanbase6common8ObRowkey10is_max_rowEv
_ZNK9oceanbase6common8ObRowkey10is_min_rowEv
_ZN9oceanbase6common17ObjHashCalculatorILNS0_9ObObjTypeE4ENS0_13ObDefaultHashENS0_5ObObjEE15calc_hash_valueERKS4_mRm
_ZNK9oceanbase6common8ObRowkey10murmurhashEm
_ZN9oceanbase8memtable8ObMtHash15get_bucket_nodeElmRPNS0_10ObHashNodeERNS1_9GenealogyE
_ZZN9oceanbase8memtable10ObMemtable3getERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS_12blocksstable13ObDatumRowkeyERPNS2_18ObStoreRowIteratorEENK5$_113clEPKc.llvm.2182277809510941720
_ZN9oceanbase12blocksstable14ObFuseRowCache7get_rowERKNS0_17ObFuseRowCacheKeyERNS0_20ObFuseRowValueHandleE
_ZZN9oceanbase7storage15ObMultipleMerge20get_next_normal_rowsERllENK5$_476clEPKc
_ZZN9oceanbase12blocksstable22ObIndexBlockRowScanner12locate_rangeERKNS0_12ObDatumRangeEbbENK5$_828clEPKc.llvm.1701721146345765965
_ZN9oceanbase3sql8ObDASRef16execute_all_taskEv
_ZN9oceanbase3sql8ObDASRef21check_rcode_can_retryEi
_ZN9oceanbase3sql11ObDASScanOp7open_opEv
_ZNK9oceanbase7storage16ObTableScanParam8is_validEv
_ZN9oceanbase3lib11ObLockGuardINS_6common12ObThreadCondEED2Ev
_ZN9oceanbase3sql8ObDASRef20wait_executing_tasksEv
pthread_mutex_lock
_ZN9oceanbase7storage15ObAccessService10table_scanERNS_6common17ObVTableScanParamERPNS2_16ObNewRowIteratorE
_ZN9oceanbase6common7ObLatch6wrlockEjlPKj
_ZNK9oceanbase7storage13ObLSTxService18get_read_store_ctxERKNS_11transaction16ObTxReadSnapshotEblRNS0_10ObStoreCtxE
_ZZN9oceanbase11transaction14ObTransService19update_max_read_ts_EmRKNS_5share6ObLSIDENS2_3SCNEENK6$_1459clEPKc.llvm.1364149078580776231
_ZN9oceanbase7storage10ObStoreCtx5resetEv
_ZN9oceanbase7storage15ObAccessService36construct_store_ctx_other_variables_ERNS0_4ObLSERKNS_6common10ObTabletIDElRKNS_5share3SCNERNS1_15ObStoreCtxGuardE
_ZN9oceanbase7storage17ObLSTabletService23get_tablet_with_timeoutERKNS_6common10ObTabletIDERNS0_14ObTabletHandleElNS0_18ObMDSGetTabletModeERKNS_5share3SCNE
_ZN9oceanbase7storage18ObTenantMetaMemMgr10get_tabletERKNS0_18WashTabletPriorityERKNS0_14ObTabletMapKeyERNS0_14ObTabletHandleE
_ZN9oceanbase7storage16ObMetaPointerMapINS0_14ObTabletMapKeyENS0_8ObTabletEE26try_get_in_memory_meta_objERKS2_RNS0_19ObMetaPointerHandleIS2_S3_EERNS0_14ObMetaObjGuardIS3_EERb
_ZN9oceanbase6common4hash11ObHashTableINS_7storage14ObTabletMapKeyENS1_11HashMapPairIS4_PNS3_20ObResourceValueStoreINS3_13ObMetaPointerINS3_8ObTabletEEEEEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstISC_EENS1_13SimpleAllocerINS1_15ObHashTableNodeISC_EELi97ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE32internal_get_with_timeout_unsafeERNS1_17ObHashTableBucketISC_NS1_5NLockENS1_5NCondEEERKS4_RPKSC_l
_ZZN9oceanbase11transaction14ObTransService23check_replica_readable_ERKNS0_16ObTxReadSnapshotEbNS2_3SRCERKNS_5share6ObLSIDElRKNS_6common10ObTabletIDERNS_7storage4ObLSEENK6$_1305clEPKc.llvm.1364149078580776231
_ZN9oceanbase7storage8ObTablet24check_new_mds_with_cacheEll
_ZN9oceanbase6common8TCRWLock10RLockGuardC2ERS1_
_ZN9oceanbase6common5occam16ObOccamTimeGuardD2Ev
_ZN9oceanbase6common8TCRWLock10RLockGuardD2Ev
_ZN9oceanbase7storage17ObLSTabletService10table_scanERNS0_14ObTabletHandleERNS0_19ObTableScanIteratorERNS0_16ObTableScanParamE
_ZNK9oceanbase8memtable15ObMvccAccessCtx15is_read_valid__Ev
_ZN9oceanbase7storage19ObTableScanIterator4initERNS0_16ObTableScanParamERKNS0_14ObTabletHandleE
_ZZN9oceanbase11transaction14ObTransService18get_read_store_ctxERKNS0_16ObTxReadSnapshotEblRNS_7storage10ObStoreCtxEENK6$_1268clEPKc.llvm.1364149078580776231
_ZN9oceanbase11transaction14ObTransService18get_read_store_ctxERKNS0_16ObTxReadSnapshotEblRNS_7storage10ObStoreCtxE
_ZN9oceanbase7storage8ObTablet34check_snapshot_readable_with_cacheEll
_ZN9oceanbase7storage16ObTableScanRange12init_rowkeysERKNS_6common8ObIArrayINS2_10ObNewRangeEEERKNS2_11ObQueryFlagEPKNS_12blocksstable19ObStorageDatumUtilsE
_ZN9oceanbase6common26ObWrapperAllocatorWithAttr5allocEl
_ZN9oceanbase7storage19ObSSTableRowScannerINS0_30ObIndexTreeMultiPassPrefetcherILi32ELi3EEEE19open_cur_data_blockERNS0_19ObSSTableReadHandleE
_ZNK9oceanbase7storage16ObReadInfoStruct8is_validEv
_ZZN9oceanbase7storage13ObSingleMerge18inner_get_next_rowERNS_12blocksstable10ObDatumRowEENK5$_405clEPKc
_ZN9oceanbase12blocksstable22ObMicroBlockRowScanner4openERKNS0_12MacroBlockIdERKNS0_16ObMicroBlockDataEbb
_ZN9oceanbase12blocksstable19ObMicroBlockDecoder10find_boundERKNS0_13ObDatumRowkeyEblRlRb
_ZN9oceanbase12blocksstable19ObMicroBlockDecoder10find_boundERKNS0_12ObDatumRangeElRlRbS5_S5_
_ZNK9oceanbase3sql12ObQueryRange24direct_get_tablet_rangesERNS_6common12ObIAllocatorERNS0_13ObExecContextERNS2_9ObSEArrayIPNS2_10ObNewRangeELl1ENS2_19ModulePageAllocatorELb0EEERbRKNS2_20ObDataTypeCastParamsE
_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE23check_data_infos_borderEllRKNS_12blocksstable13ObDatumRowkeyEb
_ZN9oceanbase11transaction16ObLSTxLogAdapter8get_roleERbRl
_ZN9oceanbase3sql19ObDASLocationRouter31refresh_location_cache_by_errnoEbi
MD5_Init
_ZZN9oceanbase8observer16ObMySQLResultSet14to_mysql_fieldERKNS_6common7ObFieldERNS_7obmysql12ObMySQLFieldEENK4$_67clEPKc
_ZN9oceanbase3sql18ObBasicSessionInfo38update_query_sensitive_system_variableERNS_5share6schema19ObSchemaGetterGuardE
_ZZNK9oceanbase8observer8ObMPBase16init_process_varERNS_3sql8ObSqlCtxERKNS2_15ObMultiStmtItemERNS2_16ObSQLSessionInfoEENK5$_347clEPKc
_ZN9oceanbase12blocksstable22ObMicroBlockRowScanner4initERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextEPKNS0_9ObSSTableE
_ZNK9oceanbase7storage15ObTableReadInfo8is_validEv
_ZN9oceanbase6common11ObArrayImplINS_3sql9ObDopHintENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev
_ZN9oceanbase3sql13ObTableScanOp10inner_openEv
_ZN9oceanbase3sql14ObDASScanRtDef10init_pd_opERNS0_13ObExecContextERKNS0_14ObDASScanCtDefE
_ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScanner5reuseEv
_ZN9oceanbase3sql11ObPlanCache8get_planERNS_6common12ObIAllocatorERNS0_14ObPlanCacheCtxERNS0_15ObCacheObjGuardE
_ZN9oceanbase6common9ObCharset20charset_type_by_collENS0_15ObCollationTypeE
_ZNK9oceanbase5share6schema16ObSysVariableMgr23get_sys_variable_schemaEmRPKNS1_25ObSimpleSysVariableSchemaE
_ZZN9oceanbase3sql11ObPlanCache13get_cache_objERNS0_14ObILibCacheCtxEPNS0_14ObILibCacheKeyERNS0_15ObCacheObjGuardEENK5$_226clEPKc.llvm.6569248931327195923
_ZN9oceanbase3sql21ObSqlParameterization11fast_parserERNS_6common12ObIAllocatorERKNS0_9FPContextERKNS2_8ObStringERNS0_18ObFastParserResultE
_ZN9oceanbase3sql16ObFastParserBase5parseERKNS_6common8ObStringERPcRlRP10_ParamListS8_S8_
_ZN9oceanbase3sql17ObFastParserMysql16parse_next_tokenEv
_ZN9oceanbase3sql17ObFastParserMysql18process_identifierEb
_ZN9oceanbase3sql16ObFastParserBase19is_identifier_flagsEl
_ZN9oceanbase3sql16ObFastParserBase25process_insert_or_replaceEPKcl
_ZN9oceanbase3sql16ObFastParserBase14process_numberEb
_ZN9oceanbase3sql16ObFastParserBase12is_utf8_charEl
_ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql9ObPCParamENS0_12ObIAllocatorEE7reserveEl
_ZN9oceanbase3sql11ObPlanCache13get_cache_objERNS0_14ObILibCacheCtxEPNS0_14ObILibCacheKeyERNS0_15ObCacheObjGuardE
_ZN9oceanbase6common4hash11ObHashTableIPNS_3sql14ObILibCacheKeyENS1_11HashMapPairIS5_PNS3_15ObILibCacheNodeEEENS1_9hash_funcIS5_EENS1_8equal_toIS5_EENS1_10pair_firstIS9_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS9_EELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE11read_atomicINS3_18ObLibCacheAtomicOpENS1_8pre_procIS9_EEEEiRKS5_RT_RT0_
_ZNK9oceanbase3sql14ObPlanCacheKey4hashEv
_ZNK9oceanbase3sql16ObPlanCacheValue23get_outline_param_indexERNS0_13ObExecContextERl
_ZNK9oceanbase3sql14ObPlanCacheKey8is_equalERKNS0_14ObILibCacheKeyE
_ZN9oceanbase3sql16ObPlanCacheValue27check_value_version_for_getEPNS_5share6schema19ObSchemaGetterGuardEbRKNS_6common8ObIArrayINS0_12PCVSchemaObjEEEmRb
_ZN9oceanbase3sql8ObPCVSet19inner_get_cache_objERNS0_14ObILibCacheCtxEPNS0_14ObILibCacheKeyERPNS0_17ObILibCacheObjectE
_ZN9oceanbase3sql15ObCandiTableLocD1Ev
_ZN9oceanbase3sql15ObCandiTableLocD2Ev
_ZN9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEED2Ev
_ZN9oceanbase3sql16ObPlanCacheValue24check_tpl_sql_const_consERKNS0_18ObFastParserResultERKNS_6common9ObSEArrayINS6_INS0_12NotParamInfoELl4ENS5_19ModulePageAllocatorELb0EEELl4ES8_Lb0EEERb
_ZN9oceanbase3sql16ObPlanCacheValue15resolver_paramsERNS0_14ObPlanCacheCtxENS0_4stmt8StmtTypeERKNS_6common8ObIArrayINS6_13ObCharsetTypeEEERKNS6_8ObBitSetILl256ENS6_19ModulePageAllocatorELb0EEESG_SG_RNS7_IPNS0_9ObPCParamEEEPNS6_9Ob2DArrayINS6_10ObObjParamELi2079744ENS6_18ObWrapperAllocatorELb0ENS6_9ObSEArrayIPSM_Ll1ESN_Lb0EEEEE
_ZN9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE9push_backERKS2_
_ZZN9oceanbase3sql15ObResolverUtils14resolver_paramERNS0_14ObPlanCacheCtxERNS0_16ObSQLSessionInfoERKNS_6common9Ob2DArrayINS6_10ObObjParamELi2079744ENS6_18ObWrapperAllocatorELb0ENS6_9ObSEArrayIPS8_Ll1ES9_Lb0EEEEENS0_4stmt8StmtTypeENS6_13ObCharsetTypeERKNS6_8ObBitSetILl256ENS6_19ModulePageAllocatorELb0EEESN_SN_PKNS0_9ObPCParamElRS8_RbENK5$_745clEPKc.llvm.13690741882974463059
_ZN9oceanbase3sql14ObOptTabletLocD2Ev
_ZN9oceanbase3sql15ObResolverUtils22handle_varchar_charsetENS_6common13ObCharsetTypeERNS2_12ObIAllocatorERP10_ParseNode
_ZN9oceanbase3sql17ObPhysicalPlanCtx22init_datum_param_storeEv
_ZNK9oceanbase5share6schema19ObSchemaGetterGuard14get_schema_mgrEmRPKNS1_11ObSchemaMgrE
_ZZN9oceanbase3sql8ObPCVSet19inner_get_cache_objERNS0_14ObILibCacheCtxEPNS0_14ObILibCacheKeyERPNS0_17ObILibCacheObjectEENK4$_86clEPKc
_ZN9oceanbase3sql16ObPlanCacheValue21check_not_param_valueERKNS0_18ObFastParserResultERKNS_6common8ObIArrayINS0_12NotParamInfoEEERb
_ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql9ObPCParamENS0_12ObIAllocatorEE4initEl
_ZN9oceanbase5trace7ObTrace7set_tagIlJEEEv9ObTagTypeRKT_
_ZZN9oceanbase12blocksstable22ObIndexBlockRowScanner12locate_rangeERKNS0_12ObDatumRangeEbbENK5$_831clEPKc.llvm.1701721146345765965
_ZN9oceanbase7storage19ObTableScanIterator9open_iterEv
_ZNK9oceanbase7storage16ObRowkeyReadInfo17get_request_countEv
_ZNK9oceanbase7storage15ObTableReadInfo17get_request_countEv
_ZN9oceanbase7storage19ObTableScanIterator14init_scan_iterINS0_13ObSingleMergeEEEiRPT_
_ZN9oceanbase7storage15ObMultipleMergeC2Ev
_ZN9oceanbase7storage20ObTableStoreIteratorC1Ebb
_ZN9oceanbase6common9ObSEArrayINS_5share6schema9ObColDescELl32ENS0_19ModulePageAllocatorELb0EEC2Ev
_ZN9oceanbase7storage15ObMultipleMerge4initERKNS0_18ObTableAccessParamERNS0_20ObTableAccessContextERKNS0_15ObGetTableParamE
_ZN9oceanbase7storage20ObTableStoreIterator13get_ith_tableElRPNS0_8ObITableE
_ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEEaSERKS3_
_ZZN9oceanbase7storage15ObMultipleMerge4initERKNS0_18ObTableAccessParamERNS0_20ObTableAccessContextERKNS0_15ObGetTableParamEENK5$_436clEPKc
_ZN9oceanbase7storage13ObSingleMerge4openERKNS_12blocksstable13ObDatumRowkeyE
_ZN9oceanbase12blocksstable10ObDatumRow4initERNS_6common12ObIAllocatorElPc
_ZN9oceanbase7storage15ObMultipleMerge4openEv
_ZN9oceanbase6common16ObArenaAllocator5reuseEv
_ZN9oceanbase7storage8ObNopPos4initERNS_6common12ObIAllocatorEl
_ZN9oceanbase7storage15ObMultipleMerge5reuseEv
_ZN9oceanbase12blocksstable10ObDatumRow7reserveElb
_ZN9oceanbase7storage8ObTablet16get_read_tables_ElRNS0_20ObTableStoreIteratorERNS0_19ObStorageMetaHandleEb
_ZNK9oceanbase7storage18ObTabletTableStore15get_read_tablesElRKNS0_8ObTabletERNS0_20ObTableStoreIteratorEb
_ZN9oceanbase6common7ObLatch6unlockEPKj
_ZN9oceanbase6common13ObSEArrayImplINS_7storage19ObStorageMetaHandleELl1ENS0_19ModulePageAllocatorELb0EE9push_backERKS3_
_ZN9oceanbase7storage19ObStorageMetaHandle11get_sstableERPNS_12blocksstable9ObSSTableE
_ZN9oceanbase6common7ObLatch6rdlockEjl
_ZN9oceanbase7storage24ObStorageMetaValueHandleaSERKS1_
_ZN9oceanbase7storage24ObStorageMetaValueHandle15set_cache_valueEPNS0_23ObStorageMetaCacheValueEPNS_6common12ObIAllocatorE
_ZN9oceanbase7storage19ObStorageMetaHandleD1Ev
_ZN9oceanbase7storage19ObStorageMetaHandleD2Ev
_ZN9oceanbase7storage18ObTabletTableStore12load_sstableERKNS0_14ObMetaDiskAddrERNS0_19ObStorageMetaHandleE
_ZNK9oceanbase7storage14ObMetaDiskAddr8is_validEv
_ZN9oceanbase12blocksstable18ObMacroBlockHandle5resetEv
_ZN9oceanbase7storage18ObStorageMetaCache8get_metaENS0_18ObStorageMetaValue8MetaTypeERKNS0_16ObStorageMetaKeyERNS0_19ObStorageMetaHandleEPKNS0_8ObTabletE
_ZN9oceanbase6common25ObConcurrentFIFOAllocator5allocEl
_ZN9oceanbase7storage24ObStorageMetaValueHandle9new_valueERNS_6common12ObIAllocatorE
_ZN9oceanbase6common9ObKVCacheINS_7storage16ObStorageMetaKeyENS2_18ObStorageMetaValueEE3getERKS3_RPKS4_RNS0_15ObKVCacheHandleE
_ZN9oceanbase6common15ObKVGlobalCache3getElRKNS0_13ObIKVCacheKeyERPKNS0_15ObIKVCacheValueERPNS0_18ObKVMemBlockHandleE
_ZN9oceanbase6common12ObKVCacheMap3getElRKNS0_13ObIKVCacheKeyERPKNS0_15ObIKVCacheValueERPNS0_18ObKVMemBlockHandleE
_ZNK9oceanbase7storage16ObStorageMetaKey4hashEv
_ZN9oceanbase12blocksstable18ObMacroBlockHandleaSERKS1_
_ZN9oceanbase7storage19ObStorageMetaHandle9get_valueERPKNS0_18ObStorageMetaValueE
_ZNK9oceanbase7storage16ObStorageMetaKeyeqERKNS_6common13ObIKVCacheKeyE
_ZN9oceanbase7storage19ObTableScanIterator14init_scan_iterINS0_19ObMultipleScanMergeEEEiRPT_
_ZN9oceanbase7storage15ObLobDataReaderC1Ev
_ZN9oceanbase3sql12ObSqlPlanSet11select_planERNS0_14ObPlanCacheCtxERPNS0_17ObPlanCacheObjectE
_ZNK9oceanbase6common6ObAddreqERKS1_
_ZN9oceanbase3sql12ObSqlPlanSet13get_plan_typeERKNS_6common8ObIArrayINS0_15ObTableLocationEEEbRNS0_14ObPlanCacheCtxERNS3_INS0_15ObCandiTableLocEEERNS0_13ObPhyPlanTypeE
_ZNK9oceanbase3sql16ObCandiTabletLoc25get_priority_replica_baseINS_5share19ObLSReplicaLocationEEEilRT_
_ZN9oceanbase3sql12ObSqlPlanSet27is_partition_in_same_serverERKNS_6common8ObIArrayINS0_15ObCandiTableLocEEERbRNS2_6ObAddrE
_ZNK9oceanbase3sql13ObExecContext8get_addrEv
_ZN9oceanbase3sql16ObCandiTabletLocD1Ev
_ZN9oceanbase3sql16ObCandiTabletLocD2Ev
_ZN9oceanbase6common13ObSEArrayImplINS_3sql15ObCandiTableLocELl2ENS0_19ModulePageAllocatorELb0EE5reuseEv
_ZZN9oceanbase3sql19ObPhyLocationGetter17get_phy_locationsERKNS_6common8ObIArrayINS0_15ObTableLocationEEERKNS0_14ObPlanCacheCtxERNS3_INS0_15ObCandiTableLocEEERbENK5$_389clEPKc
_ZN9oceanbase3sql19ObPhyLocationGetter17get_phy_locationsERKNS_6common8ObIArrayINS0_15ObTableLocationEEERKNS0_14ObPlanCacheCtxERNS3_INS0_15ObCandiTableLocEEERb
_ZN9oceanbase3sql9ObLogPlan15select_replicasERNS0_13ObExecContextERKNS_6common8ObIArrayIPKNS0_15ObTableLocationEEERKNS4_6ObAddrERNS5_IPNS0_15ObCandiTableLocEEE
_ZNK9oceanbase3sql15ObTableLocation32calculate_candi_tablet_locationsERNS0_13ObExecContextERKNS_6common9Ob2DArrayINS4_10ObObjParamELi2079744ENS4_18ObWrapperAllocatorELb0ENS4_9ObSEArrayIPS6_Ll1ES7_Lb0EEEEERNS4_8ObIArrayINS0_16ObCandiTabletLocEEERKNS4_20ObDataTypeCastParamsE
_ZN9oceanbase6common13ObSEArrayImplINS_3sql16ObCandiTabletLocELl2ENS0_19ModulePageAllocatorELb1EE5resetEv
_ZN9oceanbase6common4hash9ObHashMapImmNS1_19NoPthreadDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImmEEEELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev
_ZN9oceanbase6common13ObSEArrayImplINS_5share19ObLSReplicaLocationELl3ENS0_19ModulePageAllocatorELb0EED2Ev
_ZZN9oceanbase3sql8ObDASCtx19add_candi_table_locERKNS0_17ObDASTableLocMetaERKNS0_15ObCandiTableLocEENK4$_73clEPKc
_ZN9oceanbase3sql19ObDASLocationRouter35nonblock_get_candi_tablet_locationsERKNS0_17ObDASTableLocMetaERKNS_6common8ObIArrayINS5_10ObTabletIDEEERKNS6_ImEESD_RNS6_INS0_16ObCandiTabletLocEEE
_ZSt11_Hash_bytesPKvmm
_ZN9oceanbase5share19ObLSReplicaLocationD2Ev
_ZN9oceanbase11transaction11ObBLService12get_instanceEv
_ZN9oceanbase6common13ObSEArrayImplINS_3sql16ObCandiTabletLocELl2ENS0_19ModulePageAllocatorELb1EE16prepare_allocateEl
_ZN9oceanbase5share17ObTabletLSService12nonblock_getEmRKNS_6common10ObTabletIDERNS0_6ObLSIDE
_ZN9oceanbase3sql14ObOptTabletLoc33assign_with_only_readable_replicaERKmS3_RKNS_6common10ObTabletIDERKNS_5share12ObLSLocationE
_ZN9oceanbase6common13ObSEArrayImplINS_3sql13ObRoutePolicy16CandidateReplicaELl7ENS0_19ModulePageAllocatorELb1EE9push_backERKS4_
_ZN9oceanbase11transaction7ObBLKey4initERKNS_6common6ObAddrEmRKNS_5share6ObLSIDE
_ZNK9oceanbase11transaction11ObBLService19check_in_black_listERKNS0_7ObBLKeyERb
_ZN9oceanbase5share19ObLSLocationService12nonblock_getElmRKNS0_6ObLSIDERNS0_12ObLSLocationE
_ZNK9oceanbase11transaction7ObBLMgrINS0_7ObBLKeyENS0_9ObBLValueEE19check_in_black_listERKS2_Rb
_ZN9oceanbase6common6DCHashINS_11transaction7ObBLKeyELl128EE3getERKS3_RPNS0_11KeyHashNodeIS3_EE
_ZN9oceanbase6common13ObSEArrayImplINS_3sql16ObCandiTabletLocELl2ENS0_19ModulePageAllocatorELb1EE7destroyEv
_ZZN9oceanbase3sql19ObDASLocationRouter35nonblock_get_candi_tablet_locationsERKNS0_17ObDASTableLocMetaERKNS_6common8ObIArrayINS5_10ObTabletIDEEERKNS6_ImEESD_RNS6_INS0_16ObCandiTabletLocEEEENK5$_401clEPKc
_ZZN9oceanbase5share19ObLSLocationService15get_from_cache_ElmRKNS0_6ObLSIDERNS0_12ObLSLocationEENK5$_373clEPKc
_ZNK9oceanbase3sql15ObTableLocation20calculate_tablet_idsERNS0_13ObExecContextERKNS_6common9Ob2DArrayINS4_10ObObjParamELi2079744ENS4_18ObWrapperAllocatorELb0ENS4_9ObSEArrayIPS6_Ll1ES7_Lb0EEEEERNS4_8ObIArrayINS4_10ObTabletIDEEERNSE_ImEESJ_RKNS4_20ObDataTypeCastParamsE
_ZN9oceanbase6common13ObSEArrayImplINS0_10ObTabletIDELl8ENS0_19ModulePageAllocatorELb0EE9push_backERKS2_
_ZN9oceanbase6common13ObSEArrayImplImLl8ENS0_19ModulePageAllocatorELb0EE9push_backERKm
_ZN9oceanbase3sql17ObDASTabletMapper27get_non_partition_tablet_idERNS_6common8ObIArrayINS2_10ObTabletIDEEERNS3_ImEE
_ZN9oceanbase3sql19DASRelatedTabletMap6assignERKNS_6common6ObListINS1_8MapEntryENS2_12ObIAllocatorEEE
_ZNK9oceanbase8memtable20ObStoreRowkeyWrapper5equalERKS1_Rb
_ZN9oceanbase3sql11ObResultSet5closeERi
_ZNK9oceanbase3sql15ObTableModifyOp23get_operator_open_orderEv
_ZN9oceanbase3sql8ObDASCtx16is_partition_hitEv
_ZN9oceanbase3sql10ObOperator5closeEv
_ZN9oceanbase6common7ObDListINS0_9ObObjNodeIPNS_3sql12ObIDASTaskOpEEEE12remove_firstEv
_ZN9oceanbase3sql8ObDASRef14close_all_taskEv
_ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv
_ZN9oceanbase7storage21ObFuseRowCacheFetcher18put_fuse_row_cacheERKNS_12blocksstable13ObDatumRowkeyERNS2_10ObDatumRowEl
_ZN9oceanbase12blocksstable19ObFuseRowCacheValue4initERKNS0_10ObDatumRowEl
_ZN9oceanbase3sql11ObResultSet8end_stmtEb
_ZN9oceanbase5share8detector21ObDeadLockDetectorMgr15unregister_key_ERKNS1_13UserBinaryKeyE
_ZN9oceanbase6common11ObArrayImplINS_3sql18ObPCParamEqualInfoENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev
_ZN9oceanbase3sql8ObParser10is_pl_stmtERKNS_6common8ObStringEPbS6_
_ZNK9oceanbase7obmysql12ObMySQLField15serialize_pro41EPclRl
_ZZN9oceanbase7storage15ObAccessService19check_read_allowed_ERKNS_5share6ObLSIDERKNS_6common10ObTabletIDENS0_17ObStoreAccessTypeERKNS0_16ObTableScanParamERNS1_15ObStoreCtxGuardENS2_3SCNEENK4$_49clEPKc
_ZN9oceanbase3sql18ObBasicSessionInfo17save_trans_statusEv
_ZN9oceanbase3sql10ObFLTUtils22init_flt_log_frameworkERNS0_16ObSQLSessionInfoEb
_ZN9oceanbase11transaction8ObTxDesc20in_tx_for_free_routeEv
_ZNK9oceanbase3sql12ObQueryRange21gen_simple_scan_rangeERNS_6common12ObIAllocatorERNS0_13ObExecContextERNS2_9ObSEArrayIPNS2_10ObNewRangeELl1ENS2_19ModulePageAllocatorELb0EEERbRKNS2_20ObDataTypeCastParamsE
_ZNK9oceanbase6common14ObTimeZoneInfo19get_timezone_offsetElRi
_ZN9oceanbase6common11ObObjCaster7to_typeERKNS0_12ObExpectTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS7_RPS8_
_ZN9oceanbase3sql13ObTableScanOp16prepare_das_taskEv
_ZN9oceanbase3sql8ObDASRef15create_das_taskEPKNS0_14ObDASTabletLocENS0_11ObDASOpTypeERPNS0_12ObIDASTaskOpE
_ZN9oceanbase3sql16AllocDASOpHelperILi1EE5allocERNS_6common12ObIAllocatorERPNS0_12ObIDASTaskOpE
_ZN9oceanbase3sql11ObResultSet7executeEv
_ZNK9oceanbase3sql8ObOpSpec15create_operatorERNS0_13ObExecContextERPNS0_10ObOperatorE
_ZNK9oceanbase3sql8ObOpSpec25create_operator_recursiveERNS0_13ObExecContextERPNS0_10ObOperatorE
_ZNK9oceanbase6common16ObArenaAllocator4usedEv
_ZNK9oceanbase3sql8ObOpSpec36link_sql_plan_monitor_node_recursiveERNS0_13ObExecContextERPNS0_13ObMonitorNodeE
_ZN9oceanbase11transaction11ObTxELRUtil26refresh_elr_tenant_config_Ev
_ZNK9oceanbase3sql8ObOpSpec35create_exec_feedback_node_recursiveERNS0_13ObExecContextE
_ZN9oceanbase3sql8ObDASRefC1ERNS0_9ObEvalCtxERNS0_13ObExecContextE
_ZN9oceanbase3sql16ObDASTaskFactoryC1ERNS_6common12ObIAllocatorE
_ZN9oceanbase3sql16ObDASTaskFactoryC2ERNS_6common12ObIAllocatorE
_ZN9oceanbase6common12ObThreadCond4initEi
_ZZNK9oceanbase3sql8ObOpSpec15create_operatorERNS0_13ObExecContextERPNS0_10ObOperatorEENK5$_127clEPKc.llvm.15906655704012544415
_ZZNK9oceanbase3sql8ObOpSpec25create_operator_recursiveERNS0_13ObExecContextERPNS0_10ObOperatorEENK5$_134clEPKc
_ZN9oceanbase3sql17ObSqlTransControl10start_stmtERNS0_13ObExecContextE
_ZN9oceanbase7storage17ObLSTabletService10get_tabletERKNS_6common10ObTabletIDERNS0_14ObTabletHandleElNS0_18ObMDSGetTabletModeE
_ZN9oceanbase7storage11ObLSService6get_lsERKNS_5share6ObLSIDERNS0_10ObLSHandleENS0_10ObLSGetModE
_ZN9oceanbase7storage14ObTabletHandleD1Ev
_ZN9oceanbase7storage14ObTabletHandleD2Ev
_ZN9oceanbase11transaction16ObTransStatistic26add_elr_enable_trans_countEml
_ZN9oceanbase7storage10ObLSHandleD1Ev
_ZN9oceanbase7storage10ObLSHandleD2Ev
_ZN9oceanbase11transaction14ObTransService20get_ls_read_snapshotERNS0_8ObTxDescENS0_18ObTxIsolationLevelERKNS_5share6ObLSIDElRNS0_16ObTxReadSnapshotE
_ZN9oceanbase6common12ObLatchMutex4lockEjl
_ZNK9oceanbase10logservice16ObLogHandlerBase8get_roleERNS_6common6ObRoleERl
_ZNK9oceanbase4palf14PalfHandleImpl8get_roleERNS_6common6ObRoleERlRb
_ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEED2Ev
_ZN9oceanbase11transaction10ObTxCtxMgr17get_ls_tx_ctx_mgrERKNS_5share6ObLSIDERPNS0_12ObLSTxCtxMgrE
_ZN9oceanbase11transaction7ObTsMgr7get_gtsEmPNS0_10ObTsCbTaskERNS_5share3SCNE
_ZN9oceanbase11transaction12ObLSTxCtxMgr23in_leader_serving_stateEv
_ZN9oceanbase11transaction11ObGtsSource7get_gtsEPNS0_10ObTsCbTaskERl
_ZNK9oceanbase3sql15ObExprFrameInfo11alloc_frameERNS_6common12ObIAllocatorERKNS2_8ObIArrayIPcEERmRPS6_
_ZZNK9oceanbase3sql8ObOpSpec25create_operator_recursiveERNS0_13ObExecContextERPNS0_10ObOperatorEENK5$_130clEPKc
_ZN9oceanbase6common11ObArrayImplINS_3sql18ObExecFeedbackNodeENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev
_ZZNK9oceanbase3sql15ObTableLocation20calculate_tablet_idsERNS0_13ObExecContextERKNS_6common9Ob2DArrayINS4_10ObObjParamELi2079744ENS4_18ObWrapperAllocatorELb0ENS4_9ObSEArrayIPS6_Ll1ES7_Lb0EEEEERNS4_8ObIArrayINS4_10ObTabletIDEEERNSE_ImEESJ_RKNS4_20ObDataTypeCastParamsEENK6$_1712clEPKc.llvm.5723708324757499970
_ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScanner4openERKNS0_12MacroBlockIdERKNS0_16ObMicroBlockDataEbb
_ZN9oceanbase12blocksstable18ObMicroBlockReader10find_boundERKNS0_13ObDatumRowkeyEblRlRb
_ZN9oceanbase12blocksstable11ObRowReader19compare_meta_rowkeyERKNS0_13ObDatumRowkeyERKNS0_19ObStorageDatumUtilsEPKclRi
_ZN9oceanbase12blocksstableL18nonext_ext_compareERKNS0_14ObStorageDatumES3_RKNS_6common9ObCmpFuncERi.llvm.314931622695727512
_ZZNK9oceanbase11transaction14ObTxVersionMgr17get_max_commit_tsEbENKUlPKcE_clES3_
_ZNK9oceanbase8memtable13ObMemtableKey16dup_without_hashINS_6common12ObIAllocatorEEEiRPS1_RT_
_ZN9oceanbase3sql18ObPushdownOperator22reset_trans_info_datumEv
_ZZN9oceanbase11transaction14ObTxVersionMgr18update_max_read_tsERKNS_5share3SCNEENKUlPKcE_clES7_
_ZN9oceanbase3sql17ObMergeDistinctOp10inner_openEv
_ZZN9oceanbase7storage13ObSingleMerge22get_and_fuse_cache_rowEllRNS_12blocksstable10ObDatumRowERbS5_S5_ENK5$_398clEPKc
_ZN9oceanbase6common4hash9ObHashMapImmNS1_24LatchReadWriteDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImmEEEELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev
_ZN9oceanbase6common15ObKVGlobalCache3putINS0_18ObKVMemBlockHandleEEEiRNS0_15ObIKVCacheStoreIT_EElRKNS0_13ObIKVCacheKeyERKNS0_15ObIKVCacheValueERPSC_RPS3_b
_ZNK9oceanbase12blocksstable19ObFuseRowCacheValue9deep_copyEPclRPNS_6common15ObIKVCacheValueE
_ZN9oceanbase6common17ObKVStoreMemBlock5allocElllRPNS0_13ObKVCachePairE
_ZNK9oceanbase12blocksstable17ObFuseRowCacheKey9deep_copyEPclRPNS_6common13ObIKVCacheKeyE
_ZZN9oceanbase3sql8ObDASCtx4initERKNS0_14ObPhysicalPlanERNS0_13ObExecContextEENK4$_40clEPKc.llvm.14932773127820680097
_ZN9oceanbase12blocksstable9ObSSTable3getERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS0_13ObDatumRowkeyERPNS2_18ObStoreRowIteratorE
_ZN9oceanbase7storage18ObSSTableRowGetter10inner_openERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextEPNS0_8ObITableEPKv
_ZZN9oceanbase12blocksstable22ObIndexBlockRowScanner10locate_keyERKNS0_13ObDatumRowkeyEENK5$_822clEPKc.llvm.1701721146345765965
_ZN9oceanbase12blocksstable18ObBloomFilterCache11may_containEmRKNS0_12MacroBlockIdERKNS0_13ObDatumRowkeyERKNS0_19ObStorageDatumUtilsERb
_ZN9oceanbase6common16ObKVCacheInstMap14get_cache_instERKNS0_16ObKVCacheInstKeyERNS0_19ObKVCacheInstHandleE
_ZN9oceanbase3sql16AllocInputHelperILi26EE5allocERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecERPNS0_9ObOpInputE
_ZNK9oceanbase3sql12ObQueryRange20get_single_key_valueEPKNS0_9ObKeyPartERNS0_13ObExecContextERNS1_13ObSearchStateERKNS_6common20ObDataTypeCastParamsEl
_ZN9oceanbase6common13ObObjCmpFuncs16compare_nullsafeERKNS0_5ObObjES4_NS0_15ObCollationTypeE
_ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE11ELS3_25EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE
_ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE25ELS3_0EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE
_ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE25ELS3_11EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE
_ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE0ELS3_25EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE
_ZN9oceanbase3sql24ObRelationalExprOperator7compareERNS_6common5ObObjERKS3_S6_RKNS2_12ObCompareCtxERNS2_15ObObjCastParamsENS2_7ObCmpOpE
_ZN9oceanbase6common13ObObjCmpFuncs7compareERNS0_5ObObjERKS2_S5_RKNS0_12ObCompareCtxENS0_7ObCmpOpERb
_ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE11ELS3_11EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE
_ZN9oceanbase6common11ObObjCaster7to_typeENS0_9ObObjTypeENS0_15ObCollationTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS6_
_ZN9oceanbase6commonL7int_intENS0_9ObObjTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS4_m
_ZN9oceanbase6common5ObObj7set_intENS0_9ObObjTypeEl
_ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE1ELS3_1EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE
_ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE0ELS3_0EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE
_ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE0ELS3_11EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE
_ZN9oceanbase8observer8ObMPBase13after_processEi
MD5
_ZN9oceanbase8memtable8ObMtHash9fill_pairEPNS0_10ObHashNodeES3_l
_ZNK9oceanbase8observer9ObMPQuery11record_statENS_3sql4stmt8StmtTypeEl
_ZN9oceanbase6common13ObSEArrayImplINS_11transaction6ObPairINS_5share6ObLSIDElEELl1ENS0_19ModulePageAllocatorELb0EE9push_backERKS6_
_ZN9oceanbase8observer16ObMPPacketSender14send_ok_packetERNS_3sql16ObSQLSessionInfoERNS0_10ObOKPParamEPNS_7obmysql13ObMySQLPacketE
_ZN9oceanbase3sql11ObPlanCache23check_can_do_insert_optERNS_6common12ObIAllocatorERNS0_14ObPlanCacheCtxERNS0_18ObFastParserResultERbRlRNS2_8ObStringE
_ZN9oceanbase6common4hash9ObHashMapINS0_8ObStringElNS1_24LatchReadWriteDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_lEEEELi97ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev
_ZN9oceanbase6common13ObSEArrayImplINS_11transaction8ObTxPartELl4ENS0_19ModulePageAllocatorELb0EEixEl
_ZN9oceanbase3sql8ObDASCtx19add_candi_table_locERKNS0_17ObDASTableLocMetaERKNS0_15ObCandiTableLocE
_ZN9oceanbase6common4hash9ObHashMapINS_5share6schema19ObReferenceObjTable18ObDependencyObjKeyEPNS5_19ObDependencyObjItemENS1_24LatchReadWriteDefendModeENS1_9hash_funcIS6_EENS1_8equal_toIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS6_S8_EEEELi88ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev
_ZN9oceanbase6common7ObDITlsINS0_15ObWarningBufferELm0EE12get_instanceEv
_ZN9oceanbase6common19ModulePageAllocator4freeEPv
_ZNK9oceanbase12blocksstable17ObFuseRowCacheKey4sizeEv
_ZN9oceanbase12blocksstable21ObMicroBlockRowGetter7get_rowERNS_7storage19ObSSTableReadHandleERPKNS0_10ObDatumRowERNS0_18ObMacroBlockReaderE
_ZN9oceanbase12blocksstable22ObEncodeBlockGetReader7get_rowERKNS0_16ObMicroBlockDataERKNS0_13ObDatumRowkeyERKNS_7storage16ObITableReadInfoERNS0_10ObDatumRowE
_ZN9oceanbase12blocksstable22ObEncodeBlockGetReader10locate_rowERKNS0_13ObDatumRowkeyERKNS0_19ObStorageDatumUtilsERPKcRlSB_RbRNS0_10ObDatumRowE
_ZN9oceanbase12blocksstable20ObIEncodeBlockReader7do_initERKNS0_16ObMicroBlockDataEl
_ZNK9oceanbase12blocksstable14ObConstDecoder6decodeERNS0_18ObColumnDecoderCtxERNS_6common5ObObjElRKNS0_11ObBitStreamEPKcl
_ZN9oceanbase12blocksstable21ObMicroBlockGetReader7get_rowERKNS0_16ObMicroBlockDataERKNS0_13ObDatumRowkeyERKNS_7storage16ObITableReadInfoERNS0_10ObDatumRowE
_ZNK9oceanbase7storage16ObRowkeyReadInfo25get_seq_read_column_countEv
_ZN9oceanbase12blocksstable19ObIntArrayFuncTable2atIhEElPKvl
_ZN9oceanbase6common12ObKVCacheMap3putERNS0_13ObKVCacheInstERKNS0_13ObIKVCacheKeyEPKNS0_13ObKVCachePairEPNS0_18ObKVMemBlockHandleEb
_ZN9oceanbase8observer8ObMPBase8responseEi
_ZN9oceanbase6common13ObLinkHashMapINS_5share8detector13UserBinaryKeyENS3_19ObIDeadLockDetectorENS3_21ObDeadLockDetectorMgr16InnerAllocHandleENS0_9RefHandleELl8EE3getERKS4_RPS5_
_ZN9oceanbase3sql8ObSortOp18process_sort_batchEv
_ZN9oceanbase3sql12ObSortOpImpl4sortEv
_ZN9oceanbase3sql12ObSortOpImpl12ObAdaptiveQS4initERNS_6common8ObIArrayIPNS0_17ObChunkDatumStore9StoredRowEEERNS3_12ObIAllocatorEllRb
_ZN9oceanbase6common6DCHashINS_5share8detector13UserBinaryKeyELl8EE3getERKS4_RPNS0_11KeyHashNodeIS4_EE
_ZN9oceanbase3sql12ObQueryRange13ObSearchStateD2Ev
_ZZN9oceanbase11transaction14ObTransService11get_tx_ctx_ERKNS_5share6ObLSIDEPNS_7storage4ObLSERKNS0_9ObTransIDERPNS0_14ObPartTransCtxEENK6$_1283clEPKc.llvm.1364149078580776231
_ZN9oceanbase6common11ObArrayImplINS_3sql12ObPCPrivInfoENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev
_ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScanner4initERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextEPKNS0_9ObSSTableE
_ZN9oceanbase12blocksstable23ObIMicroBlockRowScanner4openERKNS0_12MacroBlockIdERKNS0_16ObMicroBlockDataEbb
_ZN9oceanbase12blocksstable19ObMicroBlockDecoder7do_initERKNS0_16ObMicroBlockDataE
_ZN9oceanbase6common11ObArrayImplIPNS_3sql12ObSortOpImpl13SortStoredRowENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEED2Ev
_ZN9oceanbase3lib9ObjectSet15add_free_objectEPNS0_7AObjectE
_ZN9oceanbase7obmysql11ObMySQLUtil15number_cell_strEPclRKNS_6common6number8ObNumberERlsbi
_ZNK9oceanbase7storage13ObLSTxService10get_tx_ctxERKNS_11transaction9ObTransIDEbRPNS2_14ObPartTransCtxE
_ZN9oceanbase6common11ObArrayImplINS_3sql22ObDDLSchemaVersionHintENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev
_ZN9oceanbase6common11ObArrayImplINS_3sql13ObMonitorHintENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev
_ZNK9oceanbase5trace4UUID8tostringEPclRl
_ZN9oceanbase3sql12ObUDRItemMgr14UDRRefObjGuardINS0_9ObUDRItemEED2Ev
_ZZNK9oceanbase3sql12ObQueryRange21gen_simple_scan_rangeERNS_6common12ObIAllocatorERNS0_13ObExecContextERNS2_9ObSEArrayIPNS2_10ObNewRangeELl1ENS2_19ModulePageAllocatorELb0EEERbRKNS2_20ObDataTypeCastParamsEENK6$_1378clEPKc
_ZN9oceanbase5trace7ObTrace10append_tagINS_6common8ObStringELb1EEEb9ObTagTypeRKT_
_ZN9oceanbase5trace7ObTrace10append_tagImLb1EEEb9ObTagTypeRKT_
_ZN9oceanbase3sql14ObExprValuesOp11inner_closeEv
_ZNK9oceanbase12blocksstable19ObFuseRowCacheValue4sizeEv
_ZN9oceanbase3lib12SubObjectMgr11alloc_blockEmRKNS0_9ObMemAttrE
_ZN9oceanbase7obmysql8ObSqlNio3runEl
_ZN9oceanbase7obmysql16ObSqlSockHandler11on_readableEPv
_ZN9oceanbase8observer12ObSrvDeliver7deliverERNS_3rpc9ObRequestE
_ZN9oceanbase8observer14global_contextEv
_ZN9oceanbase6common20ObDiagnoseTenantInfo23get_local_diagnose_infoEv
_ZN9oceanbase3sql15ObSQLSessionMgr14revert_sessionEPNS0_16ObSQLSessionInfoE
_ZN9oceanbase6common20ObTenantStatEstGuardD2Ev
_ZN9oceanbase3sql15ObSQLSessionMgr11get_sessionEjRPNS0_16ObSQLSessionInfoE
_ZN9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE3getERKS3_RPS4_
_ZN9oceanbase3omt8ObTenant12recv_requestERNS_3rpc9ObRequestE
_ZN9oceanbase6common9SCondTempILi3EE6signalEji
_ZN9oceanbase6common7ObDITlsINS0_17ObSessionDIBufferELm0EE12get_instanceEv
_ZZN9oceanbase7obmysql12ObSqlNioImpl11revert_sockEPNS0_9ObSqlSockEENKUlPKcE1_clES5_
_ZN9oceanbase8observer12ObSrvDeliver19deliver_rpc_requestERNS_3rpc9ObRequestE
_ZNK9oceanbase3omt13ObMultiTenant10get_tenantEmRPNS0_8ObTenantE
_ZN9oceanbase3rpc25get_stat_srv_by_tenant_idEm
_ZN9oceanbase3rpc11RpcStatBulkILi10EE9add_pieceERKNS0_12RpcStatPieceE
_ZN9oceanbase6common21ObDIThreadTenantCache8get_nodeEmRPNS0_17ObDITenantCollectE
_ZN9oceanbase6common4hash11ObHashTableImNS1_12ObReferedMapImNS_10rootserver14DRUnitStatInfoEE4ItemENS1_9hash_funcImEENS1_8equal_toImEENS7_6GetKeyENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi5ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv
_ZNK10__cxxabiv117__class_type_info12__do_dyncastElNS0_10__sub_kindEPKS0_PKvS3_S5_RNS0_16__dyncast_resultE
_ULx86_64_init_local
_ZN9oceanbase3sql11ObDASScanOp10release_opEv
_ZN9oceanbase6common18ObServerObjectPoolINS_7storage19ObTableScanIteratorEE13return_objectEPS3_
_ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable13ObDatumRowkeyELl8ENS0_19ModulePageAllocatorELb0EE7destroyEv
_ZN9oceanbase7storage19ObTableScanIterator5resetEv
_ZN9oceanbase6common18ObWrapperAllocator4freeEPv
_ZN9oceanbase7storage14ObTabletHandle5resetEv
_ZN9oceanbase11transaction12ObLSTxCtxMgr20end_readonly_requestEv
_ZN9oceanbase6common13ObSEArrayImplINS_12blocksstable12ObDatumRangeELl8ENS0_19ModulePageAllocatorELb0EE7destroyEv
_ZN9oceanbase7storage13ObSingleMergeD2Ev
_ZN9oceanbase12blocksstable20ObStorageDatumBuffer5resetEv
_ZN9oceanbase7storage13ObObjBufArray5resetEv
_ZN9oceanbase6common25ObConcurrentFIFOAllocator4freeEPv
_ZN9oceanbase6common15ObKVCacheHandleD1Ev
_ZN9oceanbase6common15ObKVCacheHandleD2Ev
_ZN9oceanbase7storage20ObTableStoreIterator5resetEv
_ZZN9oceanbase11transaction14ObTransService16revert_store_ctxERNS_7storage10ObStoreCtxEENK6$_1295clEPKc
_ZN9oceanbase6common16ObMultiModRefMgrINS_7storage10ObLSGetModEE3decES3_
_ZN9oceanbase7storage20ObTableStoreIteratorD1Ev
_ZN9oceanbase7storage20ObTableStoreIteratorD2Ev
_ZN9oceanbase8memtable21ObMemtableGetIteratorD2Ev
_ZN9oceanbase12blocksstable10ObDatumRow5resetEv
_ZN9oceanbase7storage19ObMultipleScanMergeD1Ev
_ZN9oceanbase7storage19ObMultipleScanMergeD2Ev
_ZN9oceanbase6common12ObSliceAlloc4freeEPv
_ZN9oceanbase7storage13ObVectorStoreD2Ev
_ZN9oceanbase7storage19ObSSTableRowScannerINS0_30ObIndexTreeMultiPassPrefetcherILi32ELi3EEEED1Ev
_ZN9oceanbase7storage19ObSSTableRowScannerINS0_30ObIndexTreeMultiPassPrefetcherILi32ELi3EEEED2Ev
_ZN9oceanbase7storage18ObSSTableRowGetterD2Ev
_ZN9oceanbase12blocksstable10ObDatumRowD1Ev
_ZN9oceanbase12blocksstable10ObDatumRowD2Ev
_ZN9oceanbase6common16ObArenaAllocator5resetEv
_ZN9oceanbase8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorINS0_20ObStoreRowkeyWrapperEPNS0_9ObMvccRowEEEE5resetEv
_ZN9oceanbase12blocksstable19ObMicroBlockDecoderD2Ev
_ZN9oceanbase12blocksstable19ObTLDecoderCtxArray4freeEPNS0_17ObDecoderCtxArrayE
_ZN9oceanbase6common12ObSliceAlloc12add_to_blistEPNS0_13ObBlockSlicerE
_ZN9oceanbase6common13ObSEArrayImplINS_7storage19ObStorageMetaHandleELl1ENS0_19ModulePageAllocatorELb0EE14internal_free_EPv
_ZN9oceanbase6common10FixedHash2INS_3rpc14ObLockWaitNodeEE10quick_nextEPS3_
_ZN9oceanbase11transaction10ObTxCtxMgr38get_ls_min_uncommit_tx_prepare_versionERKNS_5share6ObLSIDERNS2_3SCNE
_ZN9oceanbase3sql24ObValuesTableCompression21try_batch_exec_paramsERNS_6common12ObIAllocatorERNS0_14ObPlanCacheCtxERNS0_16ObSQLSessionInfoERNS0_18ObFastParserResultE
_ZN9oceanbase6common16ObClusterVersion23get_tenant_data_versionEmRm
_ZNK9oceanbase3omt17ObTenantConfigMgr27get_tenant_config_with_lockEmmm
_ZN9oceanbase6common4hash11ObHashTableINS_3omt10ObTenantIDENS1_11HashMapPairIS4_PNS3_14ObTenantConfigEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS8_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS8_EELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE32internal_get_with_timeout_unsafeERNS1_17ObHashTableBucketIS8_NS1_5NLockENS1_5NCondEEERKS4_RPKS8_l
_ZNK9oceanbase6common4hash9ObHashMapINS_3omt10ObTenantIDEPNS3_14ObTenantConfigENS1_19NoPthreadDefendModeENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS4_S6_EEEELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKS4_RS6_l
_ZNK10__cxxabiv121__vmi_class_type_info12__do_dyncastElNS_17__class_type_info10__sub_kindEPKS1_PKvS4_S6_RNS1_16__dyncast_resultE
_ZNK10__cxxabiv120__si_class_type_info12__do_dyncastElNS_17__class_type_info10__sub_kindEPKS1_PKvS4_S6_RNS1_16__dyncast_resultE
_ULx86_64_tdep_trace
_ZN9oceanbase8memtable17ObMvccRowIterator4initERNS0_13ObQueryEngineERNS0_15ObMvccAccessCtxERKNS0_15ObMvccScanRangeERKNS_6common11ObQueryFlagE
_ZN9oceanbase8memtable13ObQueryEngine4scanEPKNS0_13ObMemtableKeyEbS4_blRPNS0_22ObIQueryEngineIteratorE
_ZN9oceanbase6common12ObSliceAlloc5allocEv
_ZN9oceanbase6common12ObSliceAlloc13prepare_blockEv
_ZN9oceanbase3sql15ObResolverUtils13resolve_constEPK10_ParseNodeNS0_4stmt8StmtTypeERNS_6common12ObIAllocatorENS7_15ObCollationTypeESA_PKNS7_14ObTimeZoneInfoERNS7_10ObObjParamEbRNS7_8ObStringEsSA_PNS0_11ObSqlBitSetILl96ENS0_14ObExprInfoFlagELb1EEEmb
_Z14ob_numchars_mbPK13ObCharsetInfoPKcS3_
_ZN9oceanbase6common5ObObj10set_stringENS0_9ObObjTypeERKNS0_8ObStringE
_ZN9oceanbase3sql16ObPlanCacheValue21match_all_params_infoEPNS0_9ObPlanSetERNS0_14ObPlanCacheCtxElRb
_ZNK9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE2atEl
_ZN9oceanbase3sql9ObPlanSet17match_params_infoEPKNS_6common9Ob2DArrayINS2_10ObObjParamELi2079744ENS2_18ObWrapperAllocatorELb0ENS2_9ObSEArrayIPS4_Ll1ES5_Lb0EEEEERNS0_14ObPlanCacheCtxElRb
_ZN9oceanbase6common16ObClockGenerator8getClockEv
_ZNK9oceanbase3sql9ObPlanSet22match_param_bool_valueERKNS0_11ObParamInfoERKNS_6common10ObObjParamERb
_ZN9oceanbase6common9Ob2DArrayINS_3sql11ObParamInfoELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS3_Ll64ES4_Lb0EEEE2atEl
_ZZN9oceanbase3sql9ObPlanSet17match_params_infoEPKNS_6common9Ob2DArrayINS2_10ObObjParamELi2079744ENS2_18ObWrapperAllocatorELb0ENS2_9ObSEArrayIPS4_Ll1ES5_Lb0EEEEERNS0_14ObPlanCacheCtxElRbENK5$_620clEPKc
_ZN9oceanbase3sql9ObPlanSet16match_constraintERKNS_6common9Ob2DArrayINS2_10ObObjParamELi2079744ENS2_18ObWrapperAllocatorELb0ENS2_9ObSEArrayIPS4_Ll1ES5_Lb0EEEEERb
_ZN9oceanbase3sql9ObPlanSet21match_multi_stmt_infoERKNS_6common9Ob2DArrayINS2_10ObObjParamELi2079744ENS2_18ObWrapperAllocatorELb0ENS2_9ObSEArrayIPS4_Ll1ES5_Lb0EEEEERKNS2_8ObIArrayIlEERb
_ZN9oceanbase3sql17ObPlanCacheObject19check_pre_calc_consEbRbRNS0_23ObPreCalcExprConstraintERNS0_13ObExecContextE
_Ux86_64_getcontext_trace
_ZN9oceanbase8observer16ObSrvMySQLXlator9translateERNS_3rpc9ObRequestERPNS2_5frame14ObReqProcessorE
_ZTWN9oceanbase6common13ObPageManager12tl_instance_E
_ZN9oceanbase6common20get_mem_leak_checkerEv
_ZN9oceanbase6common16ObMemLeakChecker8on_allocERNS_3lib7AObjectERKNS2_9ObMemAttrE
_ZN9oceanbase3sql8ObSqlCtxC1Ev
_ZN9oceanbase7storage19ObMultipleScanMerge4openERKNS_12blocksstable12ObDatumRangeE
_ZN9oceanbase7storage19ObMultipleScanMerge15construct_itersEv
_ZN9oceanbase12blocksstable9ObSSTable4scanERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS0_12ObDatumRangeERPNS2_18ObStoreRowIteratorE
_ZN9oceanbase8memtable10ObMemtable4scanERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS_12blocksstable12ObDatumRangeERPNS2_18ObStoreRowIteratorE
_ZN9oceanbase7storage19ObSSTableRowScannerINS0_30ObIndexTreeMultiPassPrefetcherILi32ELi3EEEE10inner_openERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextEPNS0_8ObITableEPKv
_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE15init_basic_infoEiRNS_12blocksstable9ObSSTableERNS0_20ObTableAccessContextEPKvRb
_ZZN9oceanbase7storage19ObMultipleScanMerge15construct_itersEvENK5$_612clEPKc
_ZN9oceanbase6common16ObFixedArrayImplINS_7storage19ObSSTableReadHandleENS0_12ObIAllocatorEE16prepare_allocateEl
_ZN9oceanbase6common16ObFixedArrayImplINS_7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE22ObIndexTreeLevelHandleENS0_12ObIAllocatorEE7reserveEl
_ZN9oceanbase7storage31ObSSTableMultiVersionRowScanner10inner_openERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextEPNS0_8ObITableEPKv
_ZN9oceanbase6common11ObLoserTreeINS_7storage24ObScanMergeLoserTreeItemENS2_23ObScanMergeLoserTreeCmpELl80EE4initElRNS0_12ObIAllocatorE
md5_block_asm_data_order
MD5_Final
_ZN9oceanbase6common18ObSimpleThreadPool4run1Ev
_ZN9oceanbase3lib18MySimpleThreadPool6handleEPv
_ZN9oceanbase6common13ObLightyQueue3popERPvl
_ZN9oceanbase10logservice17ObLogApplyService6handleEPv
_ZN9oceanbase10logservice13ObApplyStatus29submit_task_to_apply_service_ERNS0_18ObApplyServiceTaskE
_ZN9oceanbase11transaction9ObTxLogCb10on_successEv
_ZN9oceanbase11transaction10ObTransCtx9test_lockEPNS0_9ObTxLogCbE
_ZZN9oceanbase10logservice13ObApplyStatus29submit_task_to_apply_service_ERNS0_18ObApplyServiceTaskEENK4$_77clEPKc
_ZN9oceanbase11transaction14ObPartTransCtx10on_successEPNS0_9ObTxLogCbE
_ZNK9oceanbase11transaction11ObCtxTxData18get_commit_versionEv
_ZN9oceanbase11transaction14ObPartTransCtx14return_log_cb_EPNS0_9ObTxLogCbE
_ZN9oceanbase8memtable18ObRedoLogGenerator13sync_log_succENS_5share3SCNERKNS0_15ObCallbackScopeE
_ZN9oceanbase8memtable17ObMvccRowCallback8log_syncENS_5share3SCNE
_ZN9oceanbase11transaction9tablelock17ObOBJLockCallback8log_syncENS_5share3SCNE
_ZN9oceanbase11transaction12ObLSTxCtxMgr26revert_tx_ctx_without_lockEPNS0_10ObTransCtxE
_ZN9oceanbase11transaction11ObCtxTxData14set_end_log_tsERKNS_5share3SCNE
_ZN9oceanbase8memtable13ObMemtableCtx32remove_callbacks_for_fast_commitEv
_ZN9oceanbase8memtable16ObTxCallbackList32remove_callbacks_for_fast_commitEPKNS0_16ObITransCallbackERb
_ZN9oceanbase8memtable16ObTxCallbackList13SpinLockGuardC2ERNS_6common7ObLatchE
_ZN9oceanbase11transaction10ObTransCtx24unregister_timeout_task_Ev
_ZN9oceanbase6common18ObServerObjectPoolINS_11transaction14ObPartTransCtxEE13return_objectEPS3_
_ZN9oceanbase11transaction14ObPartTransCtx7tx_end_Eb
_ZN9oceanbase8memtable13ObMemtableCtx12do_trans_endEbNS_5share3SCNES3_i
_ZN9oceanbase11transaction9tablelock12ObLockMemCtx16clear_table_lockEbRKNS_5share3SCNES6_
_ZN9oceanbase11transaction11ObCtxTxData9set_stateEi
_ZN9oceanbase8memtable18ObTransCallbackMgr9trans_endEb
_ZN9oceanbase8memtable16ObTxCallbackList9callback_ERNS0_20ObITxCallbackFunctorEPNS0_16ObITransCallbackES5_
_ZN9oceanbase11transaction9tablelock17ObOBJLockCallback3delEv
_ZN9oceanbase11transaction9tablelock17ObOBJLockCallback12trans_commitEv
_ZN9oceanbase8memtable13ObLockWaitMgr6wakeupEm
_ZN9oceanbase11transaction9tablelock14ObLockMemtable18remove_lock_recordERKNS1_13ObTableLockOpE
_ZNK9oceanbase11transaction11ObCtxTxData14get_end_log_tsEv
_ZN9oceanbase8memtable15RowHolderMapper17reset_hash_holderERKNS_6common10ObTabletIDERKNS0_13ObMemtableKeyERKNS_11transaction9ObTransIDE
_ZN9oceanbase6common15ObLinearHashMapINS0_9ObIntWarpENS_11transaction9ObTransIDENS0_14ShareMemMgrTagEE16load_access_bkt_ERKS2_RmRPNS6_6BucketE
_ZN9oceanbase8memtable17ObMvccRowCallback19elr_trans_preparingEv
_ZN9oceanbase8memtable13ObMemtableCtx13callback_freeEPNS0_16ObITransCallbackE
_ZN9oceanbase6common15ObFIFOAllocator4freeEPv
_ZZN9oceanbase8memtable13ObLockWaitMgr6wakeupEmENK4$_21clEPKc
_ZN9oceanbase11transaction9tablelock12ObOBJLockMap18remove_lock_recordERKNS1_13ObTableLockOpE
_ZN9oceanbase11transaction9tablelock12ObLockMemCtx18remove_lock_recordEPNS1_22ObMemCtxLockOpLinkNodeE
_ZZN9oceanbase8memtable13ObLockWaitMgr6wakeupERKNS_6common10ObTabletIDERKNS0_13ObMemtableKeyEENK4$_43clEPKc.llvm.2182277809510941720
_ZN9oceanbase11transaction11ObCtxTxData20insert_into_tx_tableEv
_ZN9oceanbase7storage9ObTxTable6insertERPNS0_8ObTxDataE
_ZN9oceanbase7storage13ObTxDataTable6insertERPNS0_8ObTxDataE
_ZNK9oceanbase7storage8ObITable13get_start_scnEv
_ZN9oceanbase7storage26ObTxDataMemtableWriteGuardD2Ev
_ZN9oceanbase7storage15ObTableHandleV2D1Ev
_ZN9oceanbase7storage15ObTableHandleV2D2Ev
_ZN9oceanbase7storage19ObTxDataMemtableMgr27get_all_memtables_for_writeERNS0_26ObTxDataMemtableWriteGuardE
_ZN9oceanbase7storage15ObTableHandleV25resetEv
_ZN9oceanbase7storage13ObTxDataTable7insert_ERPNS0_8ObTxDataERNS0_26ObTxDataMemtableWriteGuardE
_ZN9oceanbase7storage15ObTableHandleV220get_tx_data_memtableERPNS0_16ObTxDataMemtableE
_ZN9oceanbase7storage15ObTxDataHashMap6insertERKNS_11transaction9ObTransIDEPNS0_8ObTxDataE
_ZN9oceanbase7storage15ObTableHandleV29set_tableEPNS0_8ObITableEPNS0_18ObTenantMetaMemMgrENS2_9TableTypeE
_ZN9oceanbase11transaction14ObPartTransCtx19notify_data_source_ENS0_10NotifyTypeERKNS_5share3SCNEbRKNS_6common9ObSEArrayINS0_14ObTxBufferNodeELl1ENS7_19ModulePageAllocatorELb0EEEb
_ZN9oceanbase11transaction10ObTransCtx12set_exiting_Ev
_ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocENS_6common10SpinRWLockELl16384EE3delERKS2_PS3_
_ZN9oceanbase11transaction14ObPartTransCtx7destroyEv
_ZN9oceanbase11transaction11ObCtxTxData7destroyEv
_ZN9oceanbase11transaction17ObTxBigSegmentBuf5resetEv
_ZN9oceanbase11transaction14ObPartTransCtx14reset_log_cbs_Ev
_ZN9oceanbase11transaction9ObTxLogCb5resetEv
_ZN9oceanbase11transaction12ObTransTimer23unregister_timeout_taskERNS0_14ObITimeoutTaskE
_ZN9oceanbase11transaction11ObTraceInfo5resetEv
_ZN9oceanbase8memtable13ObMemtableCtx5resetEv
_ZN9oceanbase8memtable18ObTransCallbackMgr5resetEv
_ZN9oceanbase11transaction12ObTxExecInfo7destroyEv
_ZN9oceanbase11transaction12ObTxExecInfo5resetEv
_ZN9oceanbase11transaction14ObPartTransCtx20post_tx_commit_resp_Ei
_ZN9oceanbase11transaction14ObPartTransCtx31wait_gts_elapse_commit_version_ERb
_ZN9oceanbase11transaction7ObTsMgr15wait_gts_elapseEmRKNS_5share3SCNEPNS0_10ObTsCbTaskERb
_ZN9oceanbase11transaction7ObTsMgr23get_ts_source_info_opt_EmRNS0_19ObTsSourceInfoGuardEbb
_ZN9oceanbase11transaction11ObGtsSource15wait_gts_elapseElPNS0_10ObTsCbTaskERb
_ZN9oceanbase10logservice17ObLogApplyService9push_taskEPNS0_18ObApplyServiceTaskE
_ZN9oceanbase3lib15TG_QUEUE_THREAD9push_taskEPv
_ZN9oceanbase6common13ObLightyQueue4pushEPv
_ZZN9oceanbase8memtable13ObLockWaitMgr6wakeupERKNS_11transaction9ObTransIDEENK4$_44clEPKc.llvm.2182277809510941720
_ZNK9oceanbase7storage8ObTxData25is_valid_in_tx_data_tableEv
_ZZN9oceanbase10logservice13ObApplyStatus19try_handle_cb_queueEPNS0_23ObApplyServiceQueueTaskERbENK4$_33clEPKc
_ZZN9oceanbase10logservice13ObApplyStatus19try_handle_cb_queueEPNS0_23ObApplyServiceQueueTaskERbENK4$_38clEPKc
_ZN9oceanbase11transaction9tablelock12ObLockMemCtx5resetEv
_ZZN9oceanbase10logservice13ObApplyStatus19try_handle_cb_queueEPNS0_23ObApplyServiceQueueTaskERbENK4$_30clEPKc
_ZN9oceanbase11transaction25ObMulSourceTxDataNotifier6notifyERKNS_6common9ObSEArrayINS0_14ObTxBufferNodeELl1ENS2_19ModulePageAllocatorELb0EEENS0_10NotifyTypeERKNS0_24ObMulSourceDataNotifyArgEPNS0_14ObPartTransCtxERl
_ZZN9oceanbase11transaction14ObTxVersionMgr20update_max_commit_tsERKNS_5share3SCNEbENKUlPKcE_clES7_
_ZZN9oceanbase10logservice13ObApplyStatus19try_handle_cb_queueEPNS0_23ObApplyServiceQueueTaskERbENK4$_39clEPKc
_ZZN9oceanbase10logservice13ObApplyStatus29submit_task_to_apply_service_ERNS0_18ObApplyServiceTaskEENK4$_78clEPKc
_ZN9oceanbase4palf21LogIOTaskCbThreadPool6handleEPv
_ZNK9oceanbase4palf14PalfHandleImpl14get_palf_epochERl
_ZN9oceanbase4palf11PalfEnvImpl17get_log_allocatorEv
_ZN9oceanbase4palf17LogIOFlushLogTask14after_consume_EPNS0_12IPalfEnvImplE
_ZN9oceanbase4palf11PalfEnvImpl23revert_palf_handle_implEPNS0_15IPalfHandleImplE
_ZN9oceanbase4palf14PalfHandleImpl21inner_after_flush_logERKNS0_13FlushLogCbCtxE
_ZN9oceanbase4palf17LogIOFlushLogTaskD2Ev
_ZN9oceanbase6common13ObSEArrayImplINS_4palf11LogWriteBuf11InnerStructELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv
_ZZN9oceanbase4palf16LogSlidingWindow15after_flush_logERKNS0_13FlushLogCbCtxEENK5$_213clEPKc
_ZN9oceanbase4palf16LogSlidingWindow15after_flush_logERKNS0_13FlushLogCbCtxE
_ZN9oceanbase4palf16LogSlidingWindow32inc_update_max_flushed_log_info_ERKNS0_3LSNES4_RKl
_ZN9oceanbase6common8TCRWLock6wrlockEl
_ZN9oceanbase4palf16LogSlidingWindow22gen_committed_end_lsn_ERNS0_3LSNE
_ZN9oceanbase4palf16LogSlidingWindow26try_advance_committed_lsn_ERKNS0_3LSNE
_ZZN9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE6revertElENKUlPKcE2_clES5_
_ZNK9oceanbase4palf16LogSlidingWindow23get_last_submit_log_id_Ev
_ZZN9oceanbase4palf18FixedSlidingWindowINS0_7LogTaskEE3getElRPS2_ENKUlPKcE0_clES7_
_ZNK9oceanbase4palf16LogSlidingWindow17get_majority_lsn_ERKNS_6common16ObMemberListBaseILl7EEElRNS0_3LSNE
_ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf9LsnTsInfoENS0_14ShareMemMgrTagEE7do_get_ERKS2_RS4_
_ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf9LsnTsInfoENS0_14ShareMemMgrTagEE16load_access_bkt_ERKS2_RmRPNS6_6BucketE
_ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf9LsnTsInfoENS0_14ShareMemMgrTagEE7shrink_Ev
_ZSt22__final_insertion_sortIPN9oceanbase4palf3LSNEN9__gnu_cxx5__ops15_Iter_comp_iterINS1_10LSNCompareEEEEvT_S9_T0_
_ZZNK9oceanbase4palf16LogSlidingWindow17get_majority_lsn_ERKNS_6common16ObMemberListBaseILl7EEElRNS0_3LSNEENK5$_334clEPKc
_ZNK9oceanbase4palf12LogConfigMgr51get_log_sync_member_list_for_generate_committed_lsnERNS_6common16ObMemberListBaseILl7EEERlRbRNS0_3LSNE
_ZN9oceanbase4palf16LogSlidingWindow25try_update_match_lsn_map_ERKNS_6common6ObAddrERKNS0_3LSNE
_ZN9oceanbase11transaction10ObTransCtx29print_trace_log_if_necessary_Ev
_ZZN9oceanbase10logservice17ObLogApplyService19handle_submit_task_EPNS0_13ObApplyStatusEENK5$_179clEPKc
_ZZN9oceanbase4palf11PalfEnvImpl20get_palf_handle_implElRNS0_20IPalfHandleImplGuardEENK5$_792clEPKc.llvm.5006022494236153130
_ZThn24_N9oceanbase11transaction20ObKeepAliveLSHandler10on_successEv
_ZZN9oceanbase4palf17LogIOFlushLogTask14after_consume_EPNS0_12IPalfEnvImplEENK5$_868clEPKc
_ZZN9oceanbase4palf16LogSlidingWindow26try_advance_committed_lsn_ERKNS0_3LSNEENK5$_229clEPKc
_ZN9oceanbase11transaction12ObTxMDSCache7destroyEv
_ZTWN9oceanbase6common7ObLatch12current_waitE
_ZN9oceanbase10logservice13ObApplyStatus19statistics_cb_cost_ERKNS_4palf3LSNERKNS_5share3SCNElllll
_ZN9oceanbase6common15ObLinearHashMapINS0_6ObAddrENS_4palf9LsnTsInfoENS0_14ShareMemMgrTagEE17load_factor_ctrl_Em
_ZZN9oceanbase4palf17LogIOFlushLogTask7destroyEvENK5$_855clEPKc.llvm.5103723799606385331
_ZZN9oceanbase8memtable13ObLockWaitMgr6wakeupEmENK4$_22clEPKc
_ZZN9oceanbase10logservice13ObApplyStatus20try_submit_cb_queuesEvENK4$_27clEPKc
_ZSt16__introsort_loopIPN9oceanbase4palf3LSNElN9__gnu_cxx5__ops15_Iter_comp_iterINS1_10LSNCompareEEEEvT_S9_T0_T1_
_ZZN9oceanbase4palf16LogSlidingWindow25try_update_match_lsn_map_ERKNS_6common6ObAddrERKNS0_3LSNEENK5$_447clEPKc
_ZZN9oceanbase4palf16LogSlidingWindow15after_flush_logERKNS0_13FlushLogCbCtxEENK5$_223clEPKc
_ZZN9oceanbase4palf14PalfHandleImpl21inner_after_flush_logERKNS0_13FlushLogCbCtxEENK6$_1376clEPKc
_ZN9oceanbase6common11ObTimeWheel6cancelEPNS0_15ObTimeWheelTaskE
_ZN9oceanbase11transaction20ObKeepAliveLSHandler10on_successEv
_ZZN9oceanbase4palf21LogIOTaskCbThreadPool6handleEPvENK5$_966clEPKc
_ZZN9oceanbase4palf14PalfHandleImpl21inner_after_flush_logERKNS0_13FlushLogCbCtxEENK6$_1378clEPKc
_ZN9oceanbase11transaction10ObTsWorker6handleEPv
_ZZN9oceanbase4palf16LogSlidingWindow32inc_update_max_flushed_log_info_ERKNS0_3LSNES4_RKlENK5$_234clEPKc
_ZN9oceanbase11transaction11ObGtsSource37get_gts_from_local_timestamp_service_ERNS_6common6ObAddrERlRNS2_13ObMonotonicTsE
_ZN9oceanbase6common13ObLinkHashMapINS0_9ObIntWarpENS_11transaction14ObTsSourceInfoENS3_19ObTsSourceInfoAllocENS0_9RefHandleELl8EE4nextEPNS0_12LinkHashNodeIS2_EE
_ZN9oceanbase3lib17__MemoryContext__14create_contextIJRNS0_12ContextParamEPNS0_10StaticInfoEEEEiRNS0_13MemoryContextERKNS0_11DynamicInfoEDpOT_
_ZN9oceanbase3sql13AllocOpHelperILi2EE5allocERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputElRPNS0_10ObOperatorE
_ZN9oceanbase12blocksstable17ObTmpFileIOHandleC1Ev
_ZN9oceanbase12blocksstable17ObTmpFileIOHandleC2Ev
_ZN9oceanbase6common8ObRandomC1Ev
_ZN9oceanbase6common8ObRandomC2Ev
_ZN9oceanbase3sql12ObQueryRange13ObSearchStateC2ERNS_6common12ObIAllocatorE
_ZN9oceanbase6common11ObLoserTreeINS_7storage24ObScanMergeLoserTreeItemENS2_23ObScanMergeLoserTreeCmpELl80EE13inner_rebuildEv
_ZN9oceanbase3sql13AllocOpHelperILi25EE5allocERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputElRPNS0_10ObOperatorE
_ZN9oceanbase3sql15ObTableModifyOpC2ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE
_ZN9oceanbase7storage16ObTableScanRange11init_rangesERKNS_6common8ObIArrayINS2_10ObNewRangeEEERKNS2_11ObQueryFlagEPKNS_12blocksstable19ObStorageDatumUtilsE
_ZN9oceanbase3sql10ObUDRUtils20cons_udr_param_storeERKNS_6common9ObSEArrayINS0_16DynamicParamInfoELl8ENS2_19ModulePageAllocatorELb0EEERNS0_14ObPlanCacheCtxERNS2_9Ob2DArrayINS2_10ObObjParamELi2079744ENS2_18ObWrapperAllocatorELb0ENS3_IPSC_Ll1ESD_Lb0EEEEE
_ZN9oceanbase12blocksstable18ObMicroBlockReader4initERKNS0_16ObMicroBlockDataERKNS_7storage16ObITableReadInfoE
_ZN9oceanbase3sql13ObDASUpdateOp7open_opEv
_ZN9oceanbase3sql12ObDMLService14init_dml_paramERKNS0_17ObDASDMLBaseCtDefERNS0_17ObDASDMLBaseRtDefERNS_11transaction16ObTxReadSnapshotERNS_6common12ObIAllocatorERNS_7storage14ObDMLBaseParamE
_ZN9oceanbase11transaction16ObTxReadSnapshotD1Ev
_ZN9oceanbase3sql20ObDASIndexDMLAdaptorILi3ENS0_16ObDASUpdIteratorEE10write_rowsERKNS_5share6ObLSIDERKNS_6common10ObTabletIDERKNS0_13ObDASUpdCtDefERNS0_13ObDASUpdRtDefERS2_Rl
_ZN9oceanbase7storage15ObAccessService25audit_tablet_opt_dml_statERKNS0_14ObDMLBaseParamERKNS_6common10ObTabletIDENS5_16ObOptDmlStatTypeEl
_ZZN9oceanbase7storage15ObAccessService25audit_tablet_opt_dml_statERKNS0_14ObDMLBaseParamERKNS_6common10ObTabletIDENS5_16ObOptDmlStatTypeElENK5$_136clEPKc.llvm.17557454877247296728
_ZN9oceanbase7storage10ObStoreCtxC2Ev
_ZN9oceanbase7storage15ObAccessService15ObStoreCtxGuardD2Ev
_ZN9oceanbase11transaction14ObTransService16revert_store_ctxERNS_7storage10ObStoreCtxE
_ZNK9oceanbase7storage13ObLSTxService13revert_tx_ctxEPNS_11transaction10ObTransCtxE
_ZN9oceanbase6common11ObArrayImplINS_11transaction16ObTransIDAndAddrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEED2Ev
_ZN9oceanbase8memtable13ObMemtableCtx22get_conflict_trans_idsERNS_6common8ObIArrayINS_11transaction16ObTransIDAndAddrEEE
_ZN9oceanbase11transaction8ObTxDesc12update_part_ERNS0_8ObTxPartEb
_ZN9oceanbase7storage15ObAccessService20check_write_allowed_ERKNS_5share6ObLSIDERKNS_6common10ObTabletIDENS0_17ObStoreAccessTypeERKNS0_14ObDMLBaseParamERNS_11transaction8ObTxDescERNS1_15ObStoreCtxGuardE
_ZN9oceanbase7storage8ObITable7dec_refEv
_ZNK9oceanbase7storage13ObLSTxService19get_write_store_ctxERNS_11transaction8ObTxDescERKNS2_16ObTxReadSnapshotENS_18concurrent_control11ObWriteFlagERNS0_10ObStoreCtxERKNS2_7ObTxSEQE
_ZN9oceanbase11transaction14ObPartTransCtx13check_status_Ev
_ZZN9oceanbase11transaction14ObTransService14acquire_tx_ctxERKNS_5share6ObLSIDERKNS0_8ObTxDescERPNS0_14ObPartTransCtxEPNS_7storage4ObLSEbENK6$_1282clEPKc
_ZZN9oceanbase11transaction14ObTransService19get_write_store_ctxERNS0_8ObTxDescERKNS0_16ObTxReadSnapshotENS_18concurrent_control11ObWriteFlagERNS_7storage10ObStoreCtxERKNS0_7ObTxSEQEbENK6$_1278clEPKc
_ZN9oceanbase11transaction9tablelock11ObLockTable4lockERNS_7storage10ObStoreCtxERKNS1_11ObLockParamE
_ZNK9oceanbase7storage15ObTableHandleV28is_validEv
_ZN9oceanbase11transaction9tablelock9ObOBJLock9fast_lockERKNS1_11ObLockParamERKNS1_13ObTableLockOpERKhRNS_6common8ObMallocERNSB_4hash19ObIteratableHashSetINS0_9ObTransIDELm16EEE
_ZN9oceanbase6common12TCRLockGuardC2ERKNS0_8TCRWLockE
_ZN9oceanbase8memtable16ObMvccWriteGuard10write_authERNS_7storage10ObStoreCtxE
_ZN9oceanbase6common7ObLatch10try_wrlockEjPKj
_ZZN9oceanbase8memtable13ObMemtableCtx10write_authEbENK5$_315clEPKc.llvm.2182277809510941720
_ZNK9oceanbase11transaction9tablelock12ObLockMemCtx16check_lock_existERKNS1_8ObLockIDERKNS_5share10ObCommonIDEhNS1_17ObTableLockOpTypeERbRh
_ZNK9oceanbase7storage14ObIMemtableMgr19get_active_memtableERNS0_15ObTableHandleV2E
_ZN9oceanbase11transaction9tablelock9ObOBJLock17check_allow_lock_ERKNS1_13ObTableLockOpERKhRNS_6common4hash19ObIteratableHashSetINS0_9ObTransIDELm16EEERbbb
_ZN9oceanbase11transaction14ObTransService19get_write_store_ctxERNS0_8ObTxDescERKNS0_16ObTxReadSnapshotENS_18concurrent_control11ObWriteFlagERNS_7storage10ObStoreCtxERKNS0_7ObTxSEQEb
_ZN9oceanbase11transaction12CtxLockGuardD1Ev
_ZN9oceanbase11transaction12CtxLockGuardD2Ev
_ZN9oceanbase11transaction7CtxLock4lockEv
_ZN9oceanbase11transaction14ObTransService23handle_tx_commit_resultERKNS0_9ObTransIDEiNS_5share3SCNE
_ZN9oceanbase11transaction11ObTxDescMgr6revertERNS0_8ObTxDescE
_ZN9oceanbase11transaction12ObLSTxCtxMgr10get_tx_ctxERKNS0_9ObTransIDEbRPNS0_14ObPartTransCtxE
_ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocENS_6common10SpinRWLockELl65536EE3getERKS2_RPS3_
_ZZN9oceanbase11transaction14ObTransService14revert_tx_ctx_EPNS_7storage4ObLSEPNS0_14ObPartTransCtxEENK6$_1284clEPKc.llvm.1364149078580776231
_ZN9oceanbase8memtable13ObMemtableCtx19elr_trans_preparingEv
_ZZN9oceanbase11transaction14ObPartTransCtx10end_accessEvENK5$_792clEPKc
_ZN9oceanbase6common11ObArrayImplINS_11transaction9ObTransIDENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE6assignERKNS0_8ObIArrayIS3_EE
_ZN9oceanbase8memtable16ObMvccWriteGuardD1Ev
_ZZN9oceanbase11transaction14ObTransService41fetch_cflict_tx_ids_from_mem_ctx_to_desc_ERNS_8memtable15ObMvccAccessCtxEENK6$_1290clEPKc
_ZN9oceanbase6common11ObArrayImplINS_11transaction16ObTransIDAndAddrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev
_ZN9oceanbase6common11ObArrayImplINS_11transaction9ObTransIDENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEED2Ev
_ZN9oceanbase7storage17ObLSTabletService11update_rowsERNS0_14ObTabletHandleERNS0_10ObStoreCtxERKNS0_14ObDMLBaseParamERKNS_6common8ObIArrayImEESD_PNS9_16ObNewRowIteratorERl
_ZN9oceanbase5share6schema19ObSchemaGetterGuardC1ENS1_15ObSchemaMgrItem3ModE
_ZN9oceanbase7storage15ObDMLRunningCtx4initEPKNS_6common8ObIArrayImEES6_PNS_5share6schema27ObMultiVersionSchemaServiceERNS0_14ObTabletHandleE
_ZN9oceanbase7storage8ObTablet31check_schema_version_with_cacheEll
_ZN9oceanbase7storage17ObLSTabletService15process_new_rowERNS0_14ObTabletHandleERNS0_15ObDMLRunningCtxERKNS_6common8ObIArrayIlEERKNS0_10ObStoreRowESD_b
_ZN9oceanbase7storage8ObTablet10update_rowERNS0_15ObRelativeTableERNS0_10ObStoreCtxERKNS_6common8ObIArrayINS_5share6schema9ObColDescEEERKNS7_IlEERKNS0_10ObStoreRowESJ_PKNS7_INS_11transaction18ObEncryptMetaCacheEEE
_ZN9oceanbase5share14ObThrottleStat8need_logEb
_ZN9oceanbase7storage20ObTableAccessContextC1Ev
_ZN9oceanbase8memtable10ObMemtable13dec_write_refEv
_ZNK9oceanbase7storage16ObTableIterParam8is_validEv
_ZN9oceanbase6common7ObLatch10try_rdlockEj
_ZN9oceanbase8memtable10ObMemtable4set_ERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS_6common8ObIArrayINS_5share6schema9ObColDescEEERKNS2_10ObStoreRowEPSH_PKNS9_IlEE
_ZN9oceanbase8memtable10ObMemtable11mvcc_write_ERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextEPKNS0_13ObMemtableKeyERKNS0_11ObTxNodeArgERb
_ZN9oceanbase12blocksstable11ObRowWriter15inner_write_rowElRKNS_7storage10ObStoreRowEPKNS_6common8ObIArrayIlEE
_ZN9oceanbase6common15ObFIFOAllocator5allocEl
_ZN9oceanbase8memtable9ObMvccRow10mvcc_writeERNS0_14ObIMemtableCtxENS_18concurrent_control11ObWriteFlagERKNS_11transaction12ObTxSnapshotERNS0_15ObMvccTransNodeERNS0_17ObMvccWriteResultE
_ZN9oceanbase12blocksstable13ObDatumRowkey11from_rowkeyERKNS_6common8ObRowkeyERNS0_20ObStorageDatumBufferE
_ZN9oceanbase8memtable12ObMvccEngine9ensure_kvEPKNS0_13ObMemtableKeyEPNS0_9ObMvccRowE
_ZN9oceanbase8memtable10ObMemtable13need_for_saveEPKNS_5share13ObEncryptMetaE
_ZN9oceanbase8memtable18ObTransCallbackMgr6appendEPNS0_16ObITransCallbackE
_ZN9oceanbase8memtable17ObMvccRowCallback12after_appendEb
_ZN9oceanbase8memtable16ObTxCallbackList15append_callbackEPNS0_16ObITransCallbackEb
_ZN9oceanbase7storage19ObStorageTableGuard25refresh_and_protect_tableERNS0_15ObRelativeTableE
_ZN9oceanbase8memtable12ObMvccEngine9create_kvEPKNS0_13ObMemtableKeyEPS2_RPNS0_9ObMvccRowERNS0_15RowHeaderGetterERb
_ZN9oceanbase6common20ObGMemstoreAllocator5allocERNS1_11AllocHandleEl
_ZN9oceanbase7storage15ObTenantFreezer20check_memstore_full_ERbRlS2_b
_ZN9oceanbase5share19ObTenantSwitchGuard7releaseEv
_ZN9oceanbase6common20ObGMemstoreAllocator11AllocHandle5allocEl
_ZN9oceanbase8memtable8ObMtHash14insert_mt_nodeEPKNS0_20ObStoreRowkeyWrapperElPKNS0_9ObMvccRowEPNS0_10ObHashNodeE
_ZN9oceanbase8memtable18ObTransCallbackMgr14callback_allocEl
_ZN9oceanbase7storage23ObStorageSchemaRecorder25try_update_storage_schemaEllRNS_6common12ObIAllocatorEl
_ZN9oceanbase6common16ObArenaAllocatorD2Ev
_ZN9oceanbase6common23ObOptStatMonitorManager18update_local_cacheERNS0_12ObOptDmlStatE
_ZN9oceanbase6common4hash11ObHashTableISt4pairImmENS1_11HashMapPairIS4_NS0_12ObOptDmlStatEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi64ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKS4_RS7_l
_ZN9oceanbase6common4hash11ObHashTableISt4pairImmENS1_11HashMapPairIS4_NS0_12ObOptDmlStatEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi64ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE6atomicINS0_23ObOptStatMonitorManager19UpdateValueAtomicOpENS1_8pre_procIS7_EEEEiRKS4_RT_RT0_
_ZN9oceanbase8memtable18ObTransCallbackMgr20revert_callback_listEv
_ZNK9oceanbase6common10ObFunctionIFiPNS_8memtable16ObITransCallbackEEE7DerivedIZNS2_16ObTxCallbackList16tx_elr_preparingEvE5$_241E4copyERNS0_12ObIAllocatorEPv$40c967622f38bdf257204a124f145407
_ZN9oceanbase3sql16ObDASUpdIterator12get_next_rowERPNS_6common8ObNewRowE
_ZN9oceanbase3sql10ObDASUtils19project_storage_rowERKNS0_17ObDASDMLBaseCtDefERKNS0_17ObChunkDatumStore9StoredRowERKNS_6common12ObFixedArrayIlNS9_12ObIAllocatorEEERSB_RNS9_8ObNewRowE
_ZN9oceanbase11transaction9tablelock12ObOBJLockMap32get_or_create_obj_lock_with_ref_ERKNS1_8ObLockIDERPNS1_9ObOBJLockE
_ZZN9oceanbase8memtable8ObMtHash6insertEPKNS0_20ObStoreRowkeyWrapperEPKNS0_9ObMvccRowEENKUlPKcE0_clES9_
_ZN9oceanbase11transaction14ObPartTransCtx15submit_redo_logEb
_ZN9oceanbase11transaction14ObTransService23acquire_local_snapshot_ERKNS_5share6ObLSIDERNS2_3SCNEbRb
_ZN9oceanbase7storage15ObRelativeTableD1Ev
_ZN9oceanbase7storage15ObRelativeTableD2Ev
_ZN9oceanbase11transaction8ObTxDesc17execute_commit_cbEv
_ZN9oceanbase6common12ObLatchMutex8try_lockEjPKj
_ZN9oceanbase3sql23ObEndTransAsyncCallback8callbackEi
_ZN9oceanbase8observer15ObSqlEndTransCb8callbackEi
_ZN9oceanbase3sql17ObSqlTransControl22reset_session_tx_stateEPNS0_16ObSQLSessionInfoEb
_ZN9oceanbase3sql17ObSqlTransControl22reset_session_tx_stateEPNS0_18ObBasicSessionInfoEb
_ZN9oceanbase3sqlL14get_tx_serviceEPNS0_18ObBasicSessionInfoERPNS_11transaction14ObTransServiceE.llvm.15170404112358194412
_ZThn8_N9oceanbase3sql16ObSQLSessionInfo17reset_tx_variableEv
_ZN9oceanbase5share19ObTenantSwitchGuardD2Ev
_ZN9oceanbase7obmysql23ObPocSqlRequestOperator25alloc_sql_response_bufferEPNS_3rpc9ObRequestEl
_ZN9oceanbase11transaction14ObTransService8reuse_txERNS0_8ObTxDescE
_ZN9oceanbase11transaction8ObTxDesc16cancel_commit_cbEv
_ZN9oceanbase6common12ObLatchMutex6unlockEv
_ZN9oceanbase11transaction11ObTxDescMgr6removeERNS0_8ObTxDescE
_ZN9oceanbase11transaction8ObTxDesc5resetEv
_ZN9oceanbase11transaction14ObTransService8init_tx_ERNS0_8ObTxDescEj
_ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocENS_6common10SpinRWLockELl65536EE3delERKS2_PS3_
_ZN9oceanbase5share19ObTenantSwitchGuard9switch_toEmb
_ZN9oceanbase8memtable16ObQueryAllocator4freeEPv
_ZZN9oceanbase3sql16ObDASUpdIterator12get_next_rowERPNS_6common8ObNewRowEENK5$_538clEPKc
_ZN9oceanbase11transaction14ObTransService14create_tx_ctx_ERKNS_5share6ObLSIDEPNS_7storage4ObLSERKNS0_8ObTxDescERPNS0_14ObPartTransCtxEb
_ZN9oceanbase18concurrent_control28check_sequence_set_violationENS0_11ObWriteFlagENS_11transaction7ObTxSEQENS2_9ObTransIDENS_12blocksstable9ObDmlFlagES3_S4_S6_S3_
_ZN9oceanbase11transaction12ObLSTxCtxMgr13create_tx_ctxERKNS0_13ObTxCreateArgERbRPNS0_14ObPartTransCtxE
_ZN9oceanbase11transaction17ObTransCtxFactory5allocEl
_ZZN9oceanbase11transaction11ObTxDescMgr6removeERNS0_8ObTxDescEENK6$_1138clEPKc.llvm.270707938524864154
_ZN9oceanbase11transaction14ObPartTransCtx4initEmRKNS_6common6ObAddrEjRKNS0_9ObTransIDElRKNS_5share6ObLSIDEmPNS0_14ObTransServiceEmlPNS0_12ObLSTxCtxMgrEb
_ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb0EE7destroyEv
_ZN9oceanbase11transaction11ObCtxTxData4initEPNS0_12ObLSTxCtxMgrEl
_ZN9oceanbase7storage13ObTxDataTable13alloc_tx_dataERNS0_13ObTxDataGuardE
_ZN9oceanbase11transaction11ObCtxTxData5resetEv
_ZN9oceanbase8memtable18ObTransCallbackMgr11trans_startEv
_ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocENS_6common10SpinRWLockELl16384EE16BucketWLockGuardC2ERKS6_m
_ZN9oceanbase11transaction9tablelock11ObLockTable17get_lock_memtableERNS_7storage15ObTableHandleV2E
_ZN9oceanbase8keybtree10ObKeyBtreeINS_8memtable20ObStoreRowkeyWrapperEPNS2_9ObMvccRowEE6insertES3_RS5_
_ZN9oceanbase8keybtree11WriteHandleINS_8memtable20ObStoreRowkeyWrapperEPNS2_9ObMvccRowEE9find_pathEPNS0_9BtreeNodeIS3_S5_EES3_
_ZNK9oceanbase8memtable20ObStoreRowkeyWrapper7compareERKS1_Ri
_ZNK9oceanbase6common5ObObj32check_collation_free_and_compareERKS1_Ri
_ZN9oceanbase6common6QClock14enter_criticalEv
_ZN9oceanbase11transaction12ObLSTxCtxMgr35try_wait_gts_and_inc_max_commit_ts_Ev
_ZN9oceanbase11transaction16ObTransStatistic22add_read_elr_row_countEml
_ZZN9oceanbase11transaction14ObTransService14create_tx_ctx_ERKNS_5share6ObLSIDEPNS_7storage4ObLSERKNS0_8ObTxDescERPNS0_14ObPartTransCtxEbENK6$_1286clEPKc
_ZN9oceanbase6common15ObLinearHashMapINS0_9ObIntWarpENS_11transaction9ObTransIDENS0_14ShareMemMgrTagEE17load_factor_ctrl_Em
_ZN9oceanbase11transaction9ObTxLogCb4initERKNS_5share6ObLSIDERKNS0_9ObTransIDEPNS0_10ObTransCtxEb
_ZN9oceanbase8memtable13ObMemtableCtx15add_lock_recordERKNS_11transaction9tablelock13ObTableLockOpE
_ZN9oceanbase11transaction9tablelock17ObOBJLockCallback13get_data_sizeEv
_ZN9oceanbase7storage15ObTableHandleV217get_lock_memtableERPNS_11transaction9tablelock14ObLockMemtableE