forked from oceanbase/oceanbase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhotfuncs.txt
6202 lines (6202 loc) · 635 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
_ZTWN9oceanbase3lib6Thread12blocking_ts_E
_ZSt16__introsort_loopIPPN9oceanbase3sql17ObChunkDatumStore9StoredRowElN9__gnu_cxx5__ops15_Iter_comp_iterINS1_12ObSortOpImpl16CopyableComparerEEEEvT_SC_T0_T1_
_ZN9oceanbase6common21ObNullSafeDatumStrCmpILNS0_15ObCollationTypeE45ELb0ELb1EE3cmpERKNS0_7ObDatumES6_Ri
_ZN9oceanbase6common9ObCharset8strcmpspENS0_15ObCollationTypeEPKclS4_lb
_Z27ob_strnncollsp_utf8mb4_helpPPKhmS1_mS1_S1_bPiS2_
_ZTWN9oceanbase3lib17ContextTLOptGuard13enable_tl_optE
_ZN9oceanbase7storage16ObTxDataMemtable11merge_sort_EPFlRKNS0_8ObTxDataEERPS2_
_ZN9oceanbase7obmysql8ObSqlNio3runEl
_ZN9oceanbase7obmysql16ObSqlSockSession11revert_sockEv
_ZN9oceanbase7obmysql18ObSqlSockProcessor17decode_sql_packetERNS0_12ObICSMemPoolERNS0_16ObSqlSockSessionEPvRPNS_3rpc8ObPacketE
_ZN9oceanbase10compaction26ObPartitionMajorRowsMerger4typeEv
_ZN9oceanbase3omt10ObThWorker6workerERlS2_Ri
_ZTWN9oceanbase6common7ObLatch17max_lock_slot_idxE
_ZTWN9oceanbase6common11in_try_stmtE
_ZN9oceanbase3rpc5frame15ObReqTranslator9translateERNS0_9ObRequestERPNS1_14ObReqProcessorE
_ZN9oceanbase8observer8ObMPBase7cleanupEv
_ZN9oceanbase8observer8ObMPBase8responseEi
_ZN9oceanbase6common16ObPriorityQueue2ILi1ELi2ELi3EE6do_popERPNS0_6ObLinkEll
_ZN9oceanbase8observer11ObSrvXlator13get_processorERNS_3rpc9ObRequestE
_ZN9oceanbase3rpc5frame14ObReqProcessor4initEv
_ZN9oceanbase3omt17ObWorkerProcessor7processERNS_3rpc9ObRequestE
_ZN9oceanbase3rpc5frame14ObReqProcessor7destroyEv
_ZNK9oceanbase3omt10ObThWorker10need_retryEv
_ZN9oceanbase3rpc5frame14ObReqProcessor14set_ob_requestERNS0_9ObRequestE
_ZN9oceanbase8observer14global_contextEv
_ZN9oceanbase8observer8ObMPBase14before_processEv
_ZN9oceanbase7obmysql23ObPocSqlRequestOperator20async_write_responseEPNS_3rpc9ObRequestEPKcl
_ZN9oceanbase8observer8ObMPBase19setup_packet_senderEv
_ZN9oceanbase8observer16ObMPPacketSender7do_initEPNS_3rpc9ObRequestEhhbbl
_ZN9oceanbase8observer9ObMPQuery7processEv
_ZTWN9oceanbase3lib6Thread11wait_event_E
_ZN9oceanbase6common11ObArrayImplINS0_15ObWarningBuffer11WarningItemENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE5resetEv
_ZTWN9oceanbase6common14ObSqlInfoGuard11tl_sql_infoE
_ZNK9oceanbase5share6schema27ObMultiVersionSchemaService37get_tenant_received_broadcast_versionEmRlb
_ZTHN9oceanbase6common14ObSqlInfoGuard11tl_sql_infoE
_ZN9oceanbase6common13ObSEArrayImplINS0_8ObStringELl1ENS0_19ModulePageAllocatorELb0EE9push_backERKS2_
_ZN9oceanbase6common15databuff_printfEPclRlPKcz
_ZN9oceanbase3sql8ObParser19split_multiple_stmtERKNS_6common8ObStringERNS2_8ObIArrayIS3_EERNS0_13ObMPParseStatEbb
_ZN9oceanbase3sql18ObBasicSessionInfo21gen_configs_in_pc_strEv
_ZN9oceanbase8observer9ObMPQuery19process_single_stmtERKNS_3sql15ObMultiStmtItemEPNS0_14ObSMConnectionERNS2_16ObSQLSessionInfoEbbRbSA_
_ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql6ObStmtEEEED2Ev
_ZTWN9oceanbase6common16g_warning_bufferE
_ZN9oceanbase3sql9ObOpInputD2Ev
_ZN9oceanbase3sql13ObExecContextC1ERNS_6common12ObIAllocatorE
_ZN9oceanbase3sql13ObExecContextC2ERNS_6common12ObIAllocatorE
_ZN9oceanbase3sql6ObStmtD2Ev
_ZThn56_N9oceanbase8observer8ObMPBase14send_ok_packetERNS_3sql16ObSQLSessionInfoERNS0_10ObOKPParamEPNS_7obmysql13ObMySQLPacketE
_ZN9oceanbase6common16ObDISessionCache8get_nodeEmRPNS0_18ObDISessionCollectE
_ZN9oceanbase6common11ObArrayImplINS_3sql17ObSqlTempTableCtxENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev
_ZN9oceanbase3sql10ObSQLUtils19handle_audit_recordEbNS0_13ObExecuteModeERNS0_16ObSQLSessionInfoEb
_ZN9oceanbase6common13ObVSliceAlloc5allocEl
_ZN9oceanbase3sql18ObBasicSessionInfo20set_session_in_retryENS0_20ObSessionRetryStatusE
_ZN9oceanbase6common11ObArrayImplINS0_15ObWarningBuffer11WarningItemENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE7destroyEv
_ZN9oceanbase3sql17ObLCObjectManager11common_freeEPNS0_17ObILibCacheObjectENS0_16CacheRefHandleIDE
_ZN9oceanbase3sql18ObBasicSessionInfo18set_session_activeERKNS_6common8ObStringEllNS_7obmysql10ObMySQLCmdE
_ZN9oceanbase3sql18ObBasicSessionInfo17set_session_sleepEv
_ZN9oceanbase11transaction17ObTxnFreeRouteCtx26init_before_handle_requestEPNS0_8ObTxDescE
_ZN9oceanbase8observer16ObMPPacketSender11get_sessionERPNS_3sql16ObSQLSessionInfoE
_ZN9oceanbase3sql5ObSql10stmt_queryERKNS_6common8ObStringERNS0_8ObSqlCtxERNS0_11ObResultSetE
_ZNK9oceanbase6common16ObArenaAllocator5totalEv
OPENSSL_cleanse
_ZN9oceanbase6common11ObAllocator5allocElRKNS_3lib9ObMemAttrE
_ZN9oceanbase3lib9IBlockMgr13get_tenant_idEv
_ZN9oceanbase3lib20ObTenantCtxAllocator14common_reallocINS0_9ObjectSetEEEPvPKvlRKNS0_9ObMemAttrERS1_RT_
_ZN9oceanbase3sql5ObSql18handle_large_queryEiRNS0_11ObResultSetERbRNS0_13ObExecContextE
_ZN9oceanbase6common11ObAllocator4initEv
_ZTWN9oceanbase6common13ObPageManager12tl_instance_E
_ZN9oceanbase3sql14ObPlanCacheCtxD2Ev
_ZN9oceanbase3sql5ObSql11pc_get_planERNS0_14ObPlanCacheCtxERNS0_15ObCacheObjGuardERiRb
_ZSt11_Hash_bytesPKvmm
_ZN9oceanbase6common13ObSEArrayImplImLl8ENS0_19ModulePageAllocatorELb0EE5reuseEv
_ZN9oceanbase6common13ObSEArrayImplImLl8ENS0_19ModulePageAllocatorELb0EE6assignERKNS0_8ObIArrayImEE
_ZNK9oceanbase3sql16ObSQLSessionInfo21get_session_priv_infoERNS_5share6schema17ObSessionPrivInfoE
_ZN9oceanbase3sql17ObPhysicalPlanCtxC1ERNS_6common12ObIAllocatorE
_ZN9oceanbase3sql17ObPhysicalPlanCtxC2ERNS_6common12ObIAllocatorE
_ZN9oceanbase6common4hash9ObHashMapINS_3sql21ObSubSchemaReverseKeyEmNS1_19NoPthreadDefendModeENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS4_mEEEELi97ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev
_ZN9oceanbase6common4hash9ObHashMapImNS_3sql16ObSubSchemaValueENS1_19NoPthreadDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS4_EEEELi88ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev
_ZN9oceanbase3lib9ObjectSet12alloc_objectEmRKNS0_9ObMemAttrE
_ZTWN9oceanbase3lib15malloc_callbackE
_ZN9oceanbase8observer23ObProcessMallocCallbackclERKNS_3lib9ObMemAttrEl
_ZN9oceanbase3lib8BlockSet14get_free_blockEiRKNS0_9ObMemAttrE
_ZN9oceanbase3sql13ObExecContextD1Ev
_ZN9oceanbase3sql13ObExecContextD2Ev
_ZN9oceanbase3sql14ObDASBaseRtDefD2Ev
_ZN9oceanbase6common13ObSEArrayImplINS_7storage20ObRow2ExprsProjector4ItemELl4ENS0_19ModulePageAllocatorELb0EE7destroyEv
_ZN9oceanbase6common11ObArrayImplINS_3sql19ObJoinFilterDataCtxENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEED2Ev
_ZN9oceanbase7storage20ObRow2ExprsProjectorD2Ev
_ZN9oceanbase6common13ObSEArrayImplIPNS_3sql19ObForeignKeyCheckerELl4ENS0_19ModulePageAllocatorELb0EE7destroyEv
_ZN9oceanbase3sql15ObTableModifyOp7destroyEv
_ZN9oceanbase3sql16ObDASTaskFactory7cleanupEv
_ZN9oceanbase3sql11ObDASScanOpD2Ev
_ZN9oceanbase6common13ObSEArrayImplINS_11transaction6ObPairINS_5share6ObLSIDElEELl1ENS0_19ModulePageAllocatorELb0EED2Ev
_ZN9oceanbase6common11ObArrayImplIPKNS0_8ObIArrayIlEENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEED2Ev
_ZN9oceanbase3sql8ObDASCtxD2Ev
_ZNK9oceanbase3sql19ObDASLocationRouter25is_refresh_location_errorEi
_ZN9oceanbase5share9aggregate21BatchAggregateWrapperINS1_12SumAggregateILNS_6common17VecValueTypeClassE29ELS5_29EEEE7destroyEv
_ZN9oceanbase6common13ObSEArrayImplIPNS_3sql6ObExprELl4ENS0_19ModulePageAllocatorELb0EE7destroyEv
_ZN9oceanbase8observer16ObSyncPlanDriver15response_resultERNS0_16ObMySQLResultSetE
_ZNK9oceanbase8observer16ObMPPacketSender8get_connEv
_ZN9oceanbase8observer13ObQueryDriver21response_query_resultERNS_3sql11ObResultSetEbbRbl
_ZNK9oceanbase5share13ObBasicSysVar18is_inc_value_emptyEv
_ZN9oceanbase6common16ObArenaAllocator5allocEl
_ZN9oceanbase3sql15ObExecuteResult12get_next_rowERNS0_13ObExecContextERPKNS_6common8ObNewRowE
_ZN9oceanbase3sql14ObBatchRowIter12get_next_rowEv
_ZNK9oceanbase6common7ObDatum6to_objERNS0_5ObObjERKNS0_9ObObjMetaENS0_17ObObjDatumMapTypeE
_ZN9oceanbase8observer13ObQueryDriver28convert_string_value_charsetERNS_6common5ObObjERNS_3sql11ObResultSetE
_ZNK9oceanbase3sql18ObBasicSessionInfo17inner_get_sys_varENS_5share17ObSysVarClassTypeERPNS2_13ObBasicSysVarE
_ZN9oceanbase8observer16ObMPPacketSender15response_packetERNS_7obmysql13ObMySQLPacketEPNS_3sql16ObSQLSessionInfoE
_ZN9oceanbase7obmysql23ObPocSqlRequestOperator15get_sql_sessionEPNS_3rpc9ObRequestE
_ZN9oceanbase6common23ObReserveArenaAllocatorILl256EE5resetEv
_ZN9oceanbase8observer16ObMPPacketSender15try_encode_withERNS_7obmysql13ObMySQLPacketElRll
_ZN9oceanbase7obmysql7OMPKRow21get_mysql_packet_typeEv
_ZN9oceanbase7obmysql7OMPKEOF21get_mysql_packet_typeEv
_ZN9oceanbase7obmysql13OMPKResheader21get_mysql_packet_typeEv
_ZN9oceanbase7obmysql9OMPKField21get_mysql_packet_typeEv
_ZN9oceanbase7obmysql14ObProto20Utils16do_packet_encodeERNS0_18ObProtoEncodeParamE
_ZNK9oceanbase7obmysql7OMPKRow9serializeEPclRl
_ZNK9oceanbase7obmysql13ObMySQLPacket6encodeEPclRlS3_
_ZNK9oceanbase7obmysql7OMPKEOF18get_serialize_sizeEv
_ZN9oceanbase7obmysql6OMPKOK21get_mysql_packet_typeEv
_ZNK9oceanbase7obmysql9OMPKField9serializeEPclRl
_ZNK9oceanbase7obmysql10ObMySQLRow9serializeEPclRl
_ZNK9oceanbase6common7ObSMRow13get_cells_cntEv
_ZNK9oceanbase6common7ObSMRow11encode_cellElPclRlS2_
_ZNK9oceanbase7obmysql7OMPKEOF9serializeEPclRl
_ZN9oceanbase3sql10ObOperator14get_next_batchElRPKNS0_11ObBatchRowsE
_ZNK9oceanbase3sql8ObOpSpec10is_receiveEv
_ZN9oceanbase3sql10ObOperator16inner_drain_exchEv
_ZN9oceanbase3sql10ObOperator21convert_vector_formatEv
_ZZN9oceanbase3sql10ObOperator21convert_vector_formatEvENK5$_208clEPKc
_ZN9oceanbase6common8ObLogger13need_to_printEmmi
_ZN9oceanbase6common9ObSMUtils8cell_strEPclRKNS0_5ObObjENS_7obmysql19MYSQL_PROTOCOL_TYPEERllS2_RKNS0_20ObDataTypeCastParamsEPKNS0_7ObFieldEPNS_5share6schema19ObSchemaGetterGuardEm
_ZN9oceanbase7obmysql11ObMySQLUtil12store_lengthEPclmRl
_ZN9oceanbase3sql10ObOperator13do_drain_exchEv
_ZN9oceanbase11transaction8ObTxDesc20in_tx_for_free_routeEv
_ZN9oceanbase8observer13ObQueryDriver21response_query_headerERKNS_6common8ObIArrayINS2_7ObFieldEEEbbbPNS_3sql11ObResultSetE
_ZNK9oceanbase3sql6ObExpr11eval_vectorERNS0_9ObEvalCtxERKNS0_15ObBitVectorImplImEERKNS0_9EvalBoundE
_ZN9oceanbase3sql13ObTableScanOp20inner_get_next_batchEl
_ZN9oceanbase3sql11ObDASScanOp22get_output_result_iterEv
_ZN9oceanbase6common9EventItem14get_event_codeEv
_ZNK9oceanbase7obmysql13OMPKResheader9serializeEPclRl
_ZN9oceanbase3sql15DASOpResultIter21reset_wild_datums_ptrEv
_ZN9oceanbase3sql13ObTableScanOp28inner_get_next_batch_for_tscEl
_ZN9oceanbase7storage19ObTableScanIterator13get_next_rowsERll
_ZN9oceanbase7storage15ObMultipleMerge13get_next_rowsERll
_ZN9oceanbase7storage18ObSimpleRowsMergerINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpEE7rebuildEv
_ZN9oceanbase7storage19ObMultipleScanMerge15inner_merge_rowERNS_12blocksstable10ObDatumRowE
_ZN9oceanbase7storage19ObMultipleScanMerge14supply_consumeEv
_ZN9oceanbase6common20ObNullSafeDatumTCCmpILNS0_14ObObjTypeClassE1ELS2_1ELb1EE3cmpERKNS0_7ObDatumES6_Ri
_ZN9oceanbase7storage19ObSSTableRowScannerINS0_30ObIndexTreeMultiPassPrefetcherILi32ELi3EEEE18inner_get_next_rowERPKNS_12blocksstable10ObDatumRowE
_ZTWN9oceanbase3lib15ObPerfModeGuard26in_disable_diagnose_guard_E
_ZN9oceanbase7storage19ObSSTableRowScannerINS0_30ObIndexTreeMultiPassPrefetcherILi32ELi3EEEE9fetch_rowERNS0_19ObSSTableReadHandleERPKNS_12blocksstable10ObDatumRowE
_ZN9oceanbase12blocksstable19ObMicroBlockDecoder7get_rowElRNS0_10ObDatumRowE
_ZNK9oceanbase12blocksstable19ObStringDiffDecoder6decodeERKNS0_18ObColumnDecoderCtxERNS_6common7ObDatumElRKNS0_11ObBitStreamEPKcl
_ZThn352_N9oceanbase12blocksstable18ObMicroBlockReader14get_row_headerElRPKNS0_11ObRowHeaderE
_ZZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE25refresh_blockscan_checkerElRKNS_12blocksstable13ObDatumRowkeyEENKUlPKcE5_clES8_
_ZN9oceanbase6common8ObLogger13need_to_printEmi
_ZN9oceanbase8memtable23ObIMemtableScanIterator12get_next_rowERPKNS_12blocksstable10ObDatumRowE
_ZN9oceanbase8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorINS0_20ObStoreRowkeyWrapperEPNS0_9ObMvccRowEEEE4nextEv
_ZN9oceanbase8memtable9ObReadRow11iterate_rowERKNS_7storage16ObITableReadInfoERKNS_6common13ObStoreRowkeyERNS6_12ObIAllocatorERNS0_19ObMvccValueIteratorERNS_12blocksstable10ObDatumRowERNS0_11ObNopBitMapERl
_ZNK9oceanbase7storage16ObReadInfoStruct26get_memtable_columns_indexEv
_ZN9oceanbase12blocksstable11ObRowReader17read_memtable_rowEPKclRKNS_7storage16ObITableReadInfoERNS0_10ObDatumRowERNS_8memtable11ObNopBitMapERb
_ZN9oceanbase7storage29return_array_idx_for_memtableEjjlRKNS0_19ObFixedMetaObjArrayIiEE
_ZN9oceanbase8memtable19ObMvccValueIterator14lock_for_read_ERKNS_6common11ObQueryFlagE
_ZN9oceanbase3sql18ObPushdownOperator21clear_datum_eval_flagEv
_ZN9oceanbase8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorINS0_20ObStoreRowkeyWrapperEPNS0_9ObMvccRowEEEE13next_internalEv
_ZN9oceanbase7storage15ObMultipleMerge22get_next_aggregate_rowERPNS_12blocksstable10ObDatumRowE
_ZN9oceanbase7storage12ObSumAggCell4evalERNS_12blocksstable14ObStorageDatumEl
_ZN9oceanbase7storage12ObSumAggCell8eval_intINS_6common4wide13ObWideIntegerILj128EiEEEEiRKNS3_7ObDatumEi
_ZN9oceanbase7storage9ObAggCell20fill_default_if_needERNS_12blocksstable14ObStorageDatumE
_ZNK9oceanbase3sql6ObExpr11init_vectorERNS0_9ObEvalCtxENS_6common12VectorFormatElb
_ZNK9oceanbase8memtable13ObMemtableCtx13get_tx_statusEv
_ZN9oceanbase12blocksstable23ObIMicroBlockRowScanner9set_rangeERKNS0_12ObDatumRangeE
_ZN9oceanbase6common16ObClockGenerator8getClockEv
_ZN9oceanbase3sql8ObSortOp20inner_get_next_batchEl
_ZN9oceanbase3sql12ObSortOpImpl9add_batchERKNS_6common8ObIArrayIPNS0_6ObExprEEERKNS0_15ObBitVectorImplImEEllPl
_ZN9oceanbase3sql17ObChunkDatumStore9add_batchERKNS_6common8ObIArrayIPNS0_6ObExprEEERNS0_9ObEvalCtxERKNS0_15ObBitVectorImplImEElPKtlPPNS1_9StoredRowE
_ZN9oceanbase3sql12ObSortOpImpl4sortEv
_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE23check_data_infos_borderEllRKNS_12blocksstable13ObDatumRowkeyEb
_ZNK9oceanbase8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorINS0_20ObStoreRowkeyWrapperEPNS0_9ObMvccRowEEEE7get_keyEv
_ZZN9oceanbase8observer16ObMySQLResultSet14to_mysql_fieldERKNS_6common7ObFieldERNS_7obmysql12ObMySQLFieldEENK4$_68clEPKc
_ZN9oceanbase3sql18ObTableScanOpInputD2Ev
_ZN9oceanbase6common13ObSEArrayImplINS0_10ObNewRangeELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv
_ZN9oceanbase3sql14ObExprValuesOp7destroyEv
_ZN9oceanbase6common20check_stack_overflowERblPl
MD5_Init
_ZN9oceanbase6common9ObCharset20charset_type_by_collENS0_15ObCollationTypeE
_ZN9oceanbase3sql11ObResultSet8do_closeEPi
_ZN9oceanbase3sql10ObOperator5closeEv
_ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql12ObIDASTaskOpEEEED2Ev
_ZN9oceanbase6common16ObArenaAllocator4freeEPv
_ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql20ObDasAggregatedTasksEEEED2Ev
_ZN9oceanbase3sql19ObDataAccessService12end_das_taskERNS0_8ObDASRefERNS0_12ObIDASTaskOpE
_ZN9oceanbase3sql13ObTableScanOp11inner_closeEv
_ZN9oceanbase5share9aggregate21BatchAggregateWrapperINS1_12SumAggregateILNS_6common17VecValueTypeClassE29ELS5_29EEEE5reuseEv
_ZN9oceanbase3sql11ObDASScanOp10release_opEv
_ZN9oceanbase7storage15ObAccessService16revert_scan_iterEPNS_6common16ObNewRowIteratorE
_ZN9oceanbase7storage15ObTxTableGuards16check_ls_offlineEv
_ZN9oceanbase7storage19ObTableScanIterator5resetEv
_ZN9oceanbase6common18ObWrapperAllocator4freeEPv
_ZN9oceanbase7storage13ObSingleMerge7reclaimEv
_ZN9oceanbase6common15ObFIFOAllocator5resetEv
_ZN9oceanbase6common15ObKVCacheHandleD1Ev
_ZN9oceanbase6common15ObKVCacheHandleD2Ev
_ZN9oceanbase7storage15ObMultipleMerge12get_next_rowERPNS_12blocksstable10ObDatumRowE
_ZNK9oceanbase7storage8ObITable13is_co_sstableEv
_ZN9oceanbase7storage13ObSingleMerge18inner_get_next_rowERNS_12blocksstable10ObDatumRowE
_ZZN9oceanbase8memtable10ObMemtable3getERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS_12blocksstable13ObDatumRowkeyERPNS2_18ObStoreRowIteratorEENK5$_123clEPKc.llvm.4948866384907453352
_ZN9oceanbase7storage13ObSingleMerge22get_and_fuse_cache_rowEllRNS_12blocksstable10ObDatumRowERbS5_S5_
_ZN9oceanbase12blocksstable14ObFuseRowCache7get_rowERKNS0_17ObFuseRowCacheKeyERNS0_20ObFuseRowValueHandleE
_ZN9oceanbase6common9ObKVCacheINS_12blocksstable17ObFuseRowCacheKeyENS2_19ObFuseRowCacheValueEE3getERKS3_RPKS4_RNS0_15ObKVCacheHandleE
_ZN9oceanbase6common15ObKVGlobalCache3getElRKNS0_13ObIKVCacheKeyERPKNS0_15ObIKVCacheValueERPNS0_18ObKVMemBlockHandleE
_ZN9oceanbase8memtable10ObMemtable3getERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS_12blocksstable13ObDatumRowkeyERPNS2_18ObStoreRowIteratorE
_ZNK9oceanbase7storage16ObReadInfoStruct8is_validEv
_ZN9oceanbase8memtable19ObIMemtableIterator12get_next_rowERPKNS_12blocksstable10ObDatumRowE
_ZN9oceanbase8memtable21ObMemtableGetIterator18inner_get_next_rowERPKNS_12blocksstable10ObDatumRowE
_ZN9oceanbase8memtable10ObMemtable3getERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS_12blocksstable13ObDatumRowkeyERNS8_10ObDatumRowE
_ZNK9oceanbase6common8ObRowkey10is_max_rowEv
_ZN9oceanbase8memtable13ObQueryEngine3getEPKNS0_13ObMemtableKeyERPNS0_9ObMvccRowEPS2_
_ZN9oceanbase5trace7ObTrace10begin_spanEjhb
_ZN9oceanbase3sql16ObSQLSessionInfo19get_request_managerEv
_ZN9oceanbase3sql5ObSql14after_get_planERNS0_14ObPlanCacheCtxERNS0_16ObSQLSessionInfoEPNS0_14ObPhysicalPlanEbPKNS_6common9Ob2DArrayINS8_10ObObjParamELi2079744ENS8_18ObWrapperAllocatorELb0ENS8_9ObSEArrayIPSA_Ll1ESB_Lb0EEELb0EEEm
_ZN9oceanbase6common21ObDiagnoseSessionInfo23get_local_diagnose_infoEv
_ZN9oceanbase3sql13ObTableScanOp22do_init_before_get_rowEv
_ZN9oceanbase3sql13ObTableScanOp25prepare_single_scan_rangeEl
_ZZNK9oceanbase3sql12ObQueryRange24direct_get_tablet_rangesERNS_6common12ObIAllocatorERNS0_13ObExecContextERNS2_9ObSEArrayIPNS2_10ObNewRangeELl1ENS2_19ModulePageAllocatorELb0EEERbRKNS2_20ObDataTypeCastParamsEENK6$_1392clEPKc
_ZN9oceanbase3sql8ObDASRef16execute_all_taskEv
_ZN9oceanbase3sql19ObDataAccessService16execute_das_taskERNS0_8ObDASRefERNS0_20ObDasAggregatedTasksEb
_ZN9oceanbase3sql11ObDASScanOp7open_opEv
_ZN9oceanbase7storage15ObAccessService10table_scanERNS_6common17ObVTableScanParamERPNS2_16ObNewRowIteratorE
_ZNK9oceanbase7storage16ObRowkeyReadInfo17get_request_countEv
_ZN9oceanbase7storage17ObLSTabletService19check_allow_to_readERNS1_14AllowToReadMgr15AllowToReadInfoE
_ZN9oceanbase7storage21ObTabletTableIterator17set_tablet_handleERKNS0_14ObTabletHandleE
_ZNK9oceanbase7storage16ObTableScanParam8is_validEv
_ZN9oceanbase7storage14ObTabletHandleaSERKS1_
_ZN9oceanbase7storage17ObLSTabletService10table_scanERNS0_14ObTabletHandleERNS0_19ObTableScanIteratorERNS0_16ObTableScanParamE
_ZN9oceanbase7storage18ObTableAccessParam4initERKNS0_16ObTableScanParamERKNS0_14ObTabletHandleE
_ZN9oceanbase7storage21ObMicroBlockHandleMgr4initEbRNS0_16ObTableStoreStatERNS_6common11ObQueryFlagE
_ZN9oceanbase7storage20ObTableAccessContext24build_lob_locator_helperERNS0_16ObTableScanParamERKNS0_10ObStoreCtxERKNS_6common14ObVersionRangeE
_ZN9oceanbase7storage20ObTableAccessContext19init_scan_allocatorERNS0_16ObTableScanParamE
_ZN9oceanbase7storage15ObAccessService19check_read_allowed_ERKNS_5share6ObLSIDERKNS_6common10ObTabletIDENS0_17ObStoreAccessTypeERKNS0_16ObTableScanParamERNS0_14ObTabletHandleERNS0_15ObStoreCtxGuardENS2_3SCNE
_ZZN9oceanbase11transaction14ObTransService19update_max_read_ts_EmRKNS_5share6ObLSIDENS2_3SCNEENK6$_1736clEPKc.llvm.8783879954152805610
_ZN9oceanbase11transaction12ObLSTxCtxMgr22start_readonly_requestEv
_ZN9oceanbase11transaction14ObTransService18get_read_store_ctxERKNS0_16ObTxReadSnapshotEblRNS_7storage10ObStoreCtxE
_ZN9oceanbase7storage8ObTablet34check_snapshot_readable_with_cacheEll
_ZN9oceanbase7storage16ObTableScanRange4initERNS0_16ObTableScanParamE
_ZZN9oceanbase11transaction14ObTxVersionMgr18update_max_read_tsERKNS_5share3SCNEENKUlPKcE_clES7_
_ZN9oceanbase7storage26ObTabletCreateDeleteHelper20check_and_get_tabletERKNS0_14ObTabletMapKeyERNS0_14ObTabletHandleElNS0_18ObMDSGetTabletModeEl
_ZN9oceanbase7storage8ObTablet24check_new_mds_with_cacheEll
_ZN9oceanbase7storage18ObTabletPointerMap12get_meta_objERKNS0_14ObTabletMapKeyERNS0_14ObMetaObjGuardINS0_8ObTabletEEE
_ZN9oceanbase7storage18ObTabletPointerMap26try_get_in_memory_meta_objERKNS0_14ObTabletMapKeyERNS0_21ObTabletPointerHandleERNS0_14ObMetaObjGuardINS0_8ObTabletEEERb
_ZN9oceanbase6common7ObLatch6unlockEPKj
_ZZN9oceanbase11transaction14ObTransService23check_replica_readable_ERKNS0_16ObTxReadSnapshotEbNS2_3SRCERKNS_5share6ObLSIDElRKNS_6common10ObTabletIDERNS_7storage4ObLSEENK6$_1536clEPKc
_ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScanner18inner_get_next_rowERPKNS0_10ObDatumRowE
_ZN9oceanbase12blocksstable18ObMicroBlockReader7get_rowElRNS0_10ObDatumRowE
_ZNK9oceanbase7storage15ObTableReadInfo25get_seq_read_column_countEv
_ZN9oceanbase12blocksstable11ObRowReader8read_rowEPKclPKNS_7storage16ObITableReadInfoERNS0_10ObDatumRowE
_ZNK9oceanbase7storage16ObRowkeyReadInfo25get_seq_read_column_countEv
_ZN9oceanbase12blocksstable18ObMicroBlockReader14get_row_headerElRPKNS0_11ObRowHeaderE
_ZN9oceanbase3sql11ObResultSet4openEv
_ZThn32_NK9oceanbase3sql16ObStartTransStmt21cause_implicit_commitEv
_ZNK9oceanbase3sql6ObICmd21cause_implicit_commitEv
_ZN9oceanbase3sql15ObExecuteResult4openERNS0_13ObExecContextE
_ZNK9oceanbase3sql10ObOperator23get_operator_open_orderEv
_ZNK9oceanbase3sql15ObTableModifyOp23get_operator_open_orderEv
_ZThn32_NK9oceanbase3sql9ObTCLStmt12get_cmd_typeEv
_ZN9oceanbase8memtable34ObMemtableMultiVersionScanIterator18inner_get_next_rowERPKNS_12blocksstable10ObDatumRowE
_ZN9oceanbase8memtable22ObMemtableScanIterator12prepare_scanEv
_ZN9oceanbase6common12ObSliceAlloc4freeEPv
_ZN9oceanbase3sql17ObSqlTransControl8end_stmtERNS0_13ObExecContextEb
_ZN9oceanbase3sql18ObBasicSessionInfo12set_end_stmtEv
_ZN9oceanbase5share8detector21ObDeadLockDetectorMgr15unregister_key_ERKNS1_13UserBinaryKeyE
_ZN9oceanbase3sql10ObOperator4openEv
_ZN9oceanbase3sql13ObTableScanOp10inner_openEv
_ZN9oceanbase3sql13ObTableScanOp21init_table_scan_rtdefEv
_ZN9oceanbase6common9ObKVCacheINS_12blocksstable17ObFuseRowCacheKeyENS2_19ObFuseRowCacheValueEE3putERKS3_RKS4_b
_ZNK9oceanbase12blocksstable17ObFuseRowCacheKey13get_tenant_idEv
_ZNK9oceanbase12blocksstable19ObFuseRowCacheValue4sizeEv
_ZN9oceanbase6common15ObKVCacheHandle5resetEv
_ZN9oceanbase3sql18ObPushdownOperator22reset_trans_info_datumEv
_ZNK9oceanbase3sql12ObQueryRange24direct_get_tablet_rangesERNS_6common12ObIAllocatorERNS0_13ObExecContextERNS2_9ObSEArrayIPNS2_10ObNewRangeELl1ENS2_19ModulePageAllocatorELb0EEERbRKNS2_20ObDataTypeCastParamsE
_ZZN9oceanbase3sql15ObTableModifyOp10inner_openEvENK5$_788clEPKc
_ZNK9oceanbase12blocksstable12ObRLEDecoder6decodeERKNS0_18ObColumnDecoderCtxERNS_6common7ObDatumElRKNS0_11ObBitStreamEPKcl
_ZN9oceanbase3sql8ObSortOp10inner_openEv
_ZN9oceanbase8observer8ObMPBase13after_processEi
_ZN9oceanbase3sql18ObBasicSessionInfo38update_query_sensitive_system_variableERNS_5share6schema19ObSchemaGetterGuardE
_ZNK9oceanbase7obmysql12ObMySQLField15serialize_pro41EPclRl
_ZZN9oceanbase7storage13ObSingleMerge22get_and_fuse_cache_rowEllRNS_12blocksstable10ObDatumRowERbS5_S5_ENK5$_418clEPKc
_ZN9oceanbase3sql11ObPlanCache8get_planERNS_6common12ObIAllocatorERNS0_14ObPlanCacheCtxERNS0_15ObCacheObjGuardE
_ZNK9oceanbase5share6schema16ObSysVariableMgr23get_sys_variable_schemaEmRPKNS1_25ObSimpleSysVariableSchemaE
_ZNK9oceanbase5share6schema19ObSchemaGetterGuard14get_schema_mgrEmRPKNS1_11ObSchemaMgrE
_ZN9oceanbase3sql21ObSqlParameterization11fast_parserERNS_6common12ObIAllocatorERKNS0_9FPContextERKNS2_8ObStringERNS0_18ObFastParserResultE
_ZN9oceanbase3sql12ObFastParser5parseERKNS_6common8ObStringERKNS0_9FPContextERNS2_12ObIAllocatorERPcRlRP10_ParamListSD_RNS0_18ObFastParserResultESD_
_ZN9oceanbase3sql17ObFastParserMysql16parse_next_tokenEv
_ZN9oceanbase3sql16ObFastParserBase14process_numberEb
_ZN9oceanbase3sql17ObFastParserMysql18process_identifierEb
_ZN9oceanbase3sql8ObParser10is_pl_stmtERKNS_6common8ObStringEPbS6_
_ZN9oceanbase3sql16ObFastParserBase16notascii_gb_charEl
_ZN9oceanbase3sql16ObFastParserBase11is_gbk_charEl
_ZN9oceanbase3sql11ObPlanCache14get_plan_cacheERNS0_14ObILibCacheCtxERNS0_15ObCacheObjGuardE
_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_
_ZN9oceanbase3sql16ObPlanCacheValue5matchERNS0_14ObPlanCacheCtxERKNS_6common8ObIArrayINS0_12PCVSchemaObjEEERb
_ZN9oceanbase3sql16ObPlanCacheValue18get_all_dep_schemaERNS0_14ObPlanCacheCtxEmRlRbRNS_6common8ObIArrayINS0_12PCVSchemaObjEEE
_ZN9oceanbase8memtable25ObMultiVersionRowIterator12get_next_rowERPKNS0_13ObMemtableKeyERPNS0_27ObMultiVersionValueIteratorE
_ZN9oceanbase8memtable13ObQueryEngine4scanEPKNS0_13ObMemtableKeyEbS4_bRPNS0_22ObIQueryEngineIteratorE
_ZN9oceanbase6common17ObLfFIFOAllocator4freeEPv
_ZZN9oceanbase7storage13ObSingleMerge18inner_get_next_rowERNS_12blocksstable10ObDatumRowEENK5$_424clEPKc
_ZZN9oceanbase7storage19ObTableScanIterator24prepare_cached_iter_nodeEvENK5$_789clEPKc.llvm.17247664985115343273
_ZN9oceanbase6common15ObKVGlobalCache3putINS0_18ObKVMemBlockHandleEEEiRNS0_15ObIKVCacheStoreIT_EElRKNS0_13ObIKVCacheKeyERKNS0_15ObIKVCacheValueERPSC_RPS3_b
_ZNK9oceanbase12blocksstable17ObFuseRowCacheKey4sizeEv
_ZNK9oceanbase12blocksstable19ObFuseRowCacheValue9deep_copyEPclRPNS_6common15ObIKVCacheValueE
_ZNK9oceanbase12blocksstable17ObFuseRowCacheKey9deep_copyEPclRPNS_6common13ObIKVCacheKeyE
_ZN9oceanbase3sql16ObPlanCacheValue11choose_planERNS0_14ObPlanCacheCtxERKNS_6common8ObIArrayINS0_12PCVSchemaObjEEERPNS0_17ObPlanCacheObjectE
_ZN9oceanbase3sql12ObSqlPlanSet14is_sql_plansetEv
_ZZN9oceanbase3sql17ObPhysicalPlanCtx18extend_param_frameElENK5$_357clEPKc.llvm.12614170586076855075
_ZN9oceanbase3sql9ObPlanSet17match_params_infoEPKNS_6common9Ob2DArrayINS2_10ObObjParamELi2079744ENS2_18ObWrapperAllocatorELb0ENS2_9ObSEArrayIPS4_Ll1ES5_Lb0EEELb0EEERNS0_14ObPlanCacheCtxElRb
_ZN9oceanbase3sql16ObPlanCacheValue15resolver_paramsERNS0_14ObPlanCacheCtxENS0_4stmt8StmtTypeERKNS_6common8ObIArrayINS6_13ObCharsetTypeEEERKNS6_8ObBitSetILl256ENS6_19ModulePageAllocatorELb0EEESG_SG_RNS7_IPNS0_9ObPCParamEEEPNS6_9Ob2DArrayINS6_10ObObjParamELi2079744ENS6_18ObWrapperAllocatorELb0ENS6_9ObSEArrayIPSM_Ll1ESN_Lb0EEELb0EEE
_ZN9oceanbase3sql17ObPhysicalPlanCtx22init_datum_param_storeEv
_ZZN9oceanbase3sql9ObPlanSet17match_params_infoEPKNS_6common9Ob2DArrayINS2_10ObObjParamELi2079744ENS2_18ObWrapperAllocatorELb0ENS2_9ObSEArrayIPS4_Ll1ES5_Lb0EEELb0EEERNS0_14ObPlanCacheCtxElRbENK5$_641clEPKc
_ZN9oceanbase3sql12ObSqlPlanSet11select_planERNS0_14ObPlanCacheCtxERPNS0_17ObPlanCacheObjectE
_ZN9oceanbase8observer9ObMPQuery11deserializeEv
_ZN9oceanbase3sql8ObDASRef5resetEv
_ZN9oceanbase7storage19ObMultipleScanMerge7reclaimEv
_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE7reclaimEv
_ZN9oceanbase3sql24ObValuesTableCompression21try_batch_exec_paramsERNS_6common12ObIAllocatorERNS0_14ObPlanCacheCtxERNS0_16ObSQLSessionInfoERNS0_18ObFastParserResultE
_ZN9oceanbase7storage13ObVectorStoreD2Ev
_ZN9oceanbase3sql19ObDASLocationRouter31refresh_location_cache_by_errnoEbi
_ZN9oceanbase6common11ObArrayImplINS_3sql18ObExecFeedbackNodeENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev
_ZN9oceanbase12blocksstable18ObMacroBlockReaderD1Ev
_ZN9oceanbase12blocksstable18ObMacroBlockReaderD2Ev
_ZN9oceanbase3sql10ObSQLUtils23check_enable_decimalintEPKNS0_16ObSQLSessionInfoERb
_ZNK9oceanbase11transaction17ObTxnFreeRouteCtx7is_tempERKNS0_8ObTxDescE
_ZN9oceanbase3sql13ObTableScanOp16prepare_das_taskEv
_ZNK9oceanbase5share12ObTenantBase2idEv
_ZN9oceanbase3sql8ObDASRef13find_das_taskEPKNS0_14ObDASTabletLocENS0_11ObDASOpTypeE
_ZN9oceanbase3sql8ObDASRef15create_das_taskEPKNS0_14ObDASTabletLocENS0_11ObDASOpTypeERPNS0_12ObIDASTaskOpE
_ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14_alloc_alignedEll
_ZN9oceanbase3sql13ObTableScanOp30cherry_pick_range_by_tablet_idEPNS0_11ObDASScanOpE
_ZN9oceanbase8observer11ObSrvXlator7releaseEPNS_3rpc5frame14ObReqProcessorE
_ZN9oceanbase8observer9ObMPQueryD2Ev
_ZZN9oceanbase7storage15ObMultipleMerge20get_next_normal_rowsERllENK5$_536clEPKc
_ZN9oceanbase3sql17ObMergeDistinctOp10inner_openEv
_ZN9oceanbase8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorINS0_20ObStoreRowkeyWrapperEPNS0_9ObMvccRowEEEED2Ev
_ZN9oceanbase6common9ObCharset11get_charsetENS0_15ObCollationTypeE
_ZZN9oceanbase7storage15ObAccessService19check_read_allowed_ERKNS_5share6ObLSIDERKNS_6common10ObTabletIDENS0_17ObStoreAccessTypeERKNS0_16ObTableScanParamERNS0_14ObTabletHandleERNS0_15ObStoreCtxGuardENS2_3SCNEENK4$_57clEPKc.llvm.2256198834885564571
_ZN9oceanbase7storage19ObSSTableRowScannerINS0_30ObIndexTreeMultiPassPrefetcherILi32ELi3EEEE19open_cur_data_blockERNS0_19ObSSTableReadHandleE
_ZThn352_N9oceanbase12blocksstable18ObMicroBlockReader10find_boundERKNS0_13ObDatumRowkeyEblRlRb
_ZThn352_N9oceanbase12blocksstable18ObMicroBlockReader10find_boundERKNS0_12ObDatumRangeElRlRbS5_S5_
_ZN9oceanbase12blocksstable19ObIMicroBlockReader12locate_rangeERKNS0_12ObDatumRangeEbbRlS5_b
_ZThn352_N9oceanbase12blocksstable18ObMicroBlockReader4initERKNS0_16ObMicroBlockDataERKNS_7storage16ObITableReadInfoE
_ZN9oceanbase12blocksstable20ObIMicroBlockDecoder10find_boundERKNS0_12ObDatumRangeElRlRbS5_S5_
_ZN9oceanbase12blocksstable23ObIMicroBlockRowScannerC2ERNS_6common12ObIAllocatorE
_ZN9oceanbase6common13ObLinkHashMapINS_5share8detector13UserBinaryKeyENS3_19ObIDeadLockDetectorENS3_21ObDeadLockDetectorMgr16InnerAllocHandleENS0_9RefHandleELl8EE3getERKS4_RPS5_
_ZN9oceanbase6common6DCHashINS_5share8detector13UserBinaryKeyELl8EE3getERKS4_RPNS0_11KeyHashNodeIS4_EE
_ZN9oceanbase3sql16ObSQLSessionInfo14get_plan_cacheEv
_ZN9oceanbase3sql16ObSQLSessionInfo24ObCachedTenantConfigInfo7refreshEv
_ZN9oceanbase3omt10ObThWorker20check_qtime_throttleEv
_ZN9oceanbase7storage18ObSSTableRowGetter18inner_get_next_rowERPKNS_12blocksstable10ObDatumRowE
_ZN9oceanbase8observer16ObSrvMySQLXlator9translateERNS_3rpc9ObRequestERPNS2_5frame14ObReqProcessorE
_ZN9oceanbase3sql8ObSqlCtxC1Ev
_ZN9oceanbase3sql11ObResultSet7executeEv
_ZN9oceanbase3sql10ObExecutor12execute_planERNS0_13ObExecContextE
_ZNK9oceanbase3sql15ObExprFrameInfo11alloc_frameERNS_6common12ObIAllocatorERKNS2_8ObIArrayIPcEERmRPS6_
_ZNK9oceanbase3sql8ObOpSpec36link_sql_plan_monitor_node_recursiveERNS0_13ObExecContextERPNS0_13ObMonitorNodeE
_ZNK9oceanbase3sql8ObOpSpec35create_exec_feedback_node_recursiveERNS0_13ObExecContextE
_ZNK9oceanbase3sql8ObOpSpec25create_operator_recursiveERNS0_13ObExecContextERPNS0_10ObOperatorE
_ZN9oceanbase3sql16ObDASTaskFactoryC1ERNS_6common12ObIAllocatorE
_ZN9oceanbase3sql16ObDASTaskFactoryC2ERNS_6common12ObIAllocatorE
_ZN9oceanbase6common12ObThreadCond4initEi
_ZN9oceanbase3sql17ObSqlTransControl10start_stmtERNS0_13ObExecContextE
_ZN9oceanbase11transaction16ObTransStatistic26add_elr_enable_trans_countEml
_ZN9oceanbase6common20ObDiagnoseTenantInfo23get_local_diagnose_infoEv
_ZN9oceanbase11transaction14ObTransService20get_ls_read_snapshotERNS0_8ObTxDescENS0_18ObTxIsolationLevelERKNS_5share6ObLSIDElRNS0_16ObTxReadSnapshotE
_ZN9oceanbase11transaction14ObTransService23acquire_local_snapshot_ERKNS_5share6ObLSIDERNS2_3SCNEbRNS_6common6ObRoleE
_ZTWN9oceanbase6common7ObLatch13current_locksE
_ZNK9oceanbase10logservice16ObLogHandlerBase8get_roleERNS_6common6ObRoleERl
_ZNK9oceanbase4palf10PalfHandle8get_roleERNS_6common6ObRoleERlRb
_ZNK9oceanbase4palf8election12ElectionImpl8get_roleERNS_6common6ObRoleERl
_ZN9oceanbase11transaction7ObTsMgr7get_gtsEmPNS0_10ObTsCbTaskERNS_5share3SCNE
_ZN9oceanbase11transaction12ObLSTxCtxMgr23in_leader_serving_stateEv
_ZZN9oceanbase11transaction14ObTransService23acquire_local_snapshot_ERKNS_5share6ObLSIDERNS2_3SCNEbRNS_6common6ObRoleEENK6$_1549clEPKc
_ZZNK9oceanbase11transaction14ObTxVersionMgr17get_max_commit_tsEbENKUlPKcE_clES3_
_ZN9oceanbase6common7ObDITlsINS0_17ObSessionDIBufferELm0EE12get_instanceEv
_ZN9oceanbase7storage17ObLSTabletService10get_tabletERKNS_6common10ObTabletIDERNS0_14ObTabletHandleElNS0_18ObMDSGetTabletModeE
_ZN9oceanbase11transaction11ObTxELRUtil26refresh_elr_tenant_config_Ev
_ZN9oceanbase3sql16AllocInputHelperILi26EE5allocERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecERPNS0_9ObOpInputE
_ZN9oceanbase7storage19ObTableScanIterator9open_iterEv
_ZNK9oceanbase7storage15ObTableReadInfo11get_columnsEv
_ZN9oceanbase7storage15ObMultipleMerge12switch_tableERNS0_18ObTableAccessParamERNS0_20ObTableAccessContextERNS0_15ObGetTableParamE
_ZN9oceanbase6common16ObArenaAllocator5allocElRKNS_3lib9ObMemAttrE
_ZNK9oceanbase7storage8ObITable15no_data_to_readEv
_ZNK9oceanbase8memtable10ObMemtable8is_emptyEv
_ZN9oceanbase7storage15ObMultipleMerge19prepare_read_tablesEb
_ZNK9oceanbase8memtable10ObMemtable13get_start_scnEv
_ZN9oceanbase7storage20ObTableStoreIterator13get_ith_tableElRPNS0_8ObITableE
_ZN9oceanbase7storage8ObTablet20auto_get_read_tablesElRNS0_21ObTabletTableIteratorEb
_ZNK9oceanbase7storage18ObTabletTableStore15get_read_tablesElRKNS0_8ObTabletERNS0_20ObTableStoreIteratorEb
_ZNK9oceanbase7storage8ObITable11is_memtableEv
_ZNK9oceanbase12blocksstable9ObSSTable23get_upper_trans_versionEv
_ZNK9oceanbase8memtable10ObMemtable11get_end_scnEv
_ZNK9oceanbase7storage8ObITable16is_major_sstableEv
_ZNK9oceanbase7storage18ObTabletTableStore21calculate_read_tablesElRKNS0_8ObTabletERNS0_20ObTableStoreIteratorEb
_ZN9oceanbase7storage13ObSingleMerge4openERKNS_12blocksstable13ObDatumRowkeyE
_ZN9oceanbase7storage19ObMultipleScanMerge4openERKNS_12blocksstable12ObDatumRangeE
_ZN9oceanbase7storage24return_schema_rowkey_cntEjRKNS0_19ObFixedMetaObjArrayIiEE
_ZZN9oceanbase7storage19ObMultipleScanMerge15construct_itersEvENK5$_684clEPKc
_ZN9oceanbase12blocksstable19ObStorageCacheSuite12get_instanceEv
_ZN9oceanbase6common16ObFixedArrayImplIPNS_5share9aggregate10IAggregateENS0_12ObIAllocatorEE7destroyEv
_ZZN9oceanbase8memtable34ObMemtableMultiVersionScanIterator18inner_get_next_rowERPKNS_12blocksstable10ObDatumRowEENK5$_491clEPKc.llvm.4948866384907453352
_ZN9oceanbase8observer16ObMPPacketSender14send_ok_packetERNS_3sql16ObSQLSessionInfoERNS0_10ObOKPParamEPNS_7obmysql13ObMySQLPacketE
_ZN9oceanbase8memtable34ObMemtableMultiVersionScanIterator30switch_to_committed_scan_stateEv
_ZN9oceanbase6common12ObKVCacheMap3putERNS0_13ObKVCacheInstERKNS0_13ObIKVCacheKeyEPKNS0_13ObKVCachePairEPNS0_18ObKVMemBlockHandleEb
_ZN9oceanbase7storage18ObSSTableRowGetter7reclaimEv
_ZN9oceanbase8memtable34ObMemtableMultiVersionScanIterator31get_compacted_multi_version_rowERPKNS_12blocksstable10ObDatumRowE
_ZN9oceanbase12blocksstable23ObIMicroBlockRowScanner4openERKNS0_12MacroBlockIdERKNS0_16ObMicroBlockDataEbb
_ZN9oceanbase12blocksstable19ObMicroBlockDecoder7do_initERKNS0_16ObMicroBlockDataE
_ZN9oceanbase7storage14ObTabletHandleD1Ev
_ZN9oceanbase7storage14ObTabletHandleD2Ev
_ZNK9oceanbase3sql15ObTableLocation32calculate_final_tablet_locationsERNS0_13ObExecContextERKNS_6common9Ob2DArrayINS4_10ObObjParamELi2079744ENS4_18ObWrapperAllocatorELb0ENS4_9ObSEArrayIPS6_Ll1ES7_Lb0EEELb0EEERKNS4_20ObDataTypeCastParamsE
_ZN9oceanbase3sql8ObDASCtx19extended_tablet_locERNS0_13ObDASTableLocERKNS_6common10ObTabletIDERPNS0_14ObDASTabletLocERKmSC_
_ZN9oceanbase3sql19ObDASLocationRouter19nonblock_get_leaderEmRKNS_6common10ObTabletIDERNS0_14ObDASTabletLocE
_ZN9oceanbase3sql17ObDASTableLocMeta6assignERKS1_
_ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScanner4openERKNS0_12MacroBlockIdERKNS0_16ObMicroBlockDataEbb
_ZN9oceanbase12blocksstable18ObMicroBlockReader10find_boundERKNS0_13ObDatumRowkeyEblRlRb
_ZN9oceanbase12blocksstable11ObRowReader19compare_meta_rowkeyERKNS0_13ObDatumRowkeyERKNS0_19ObStorageDatumUtilsEPKclRi
_ZN9oceanbase12blocksstable18ObMicroBlockReader4initERKNS0_16ObMicroBlockDataERKNS_7storage16ObITableReadInfoE
_ZN9oceanbase6common15ObIKVCacheStoreINS0_18ObKVMemBlockHandleEE12alloc_kvpairERNS0_13ObKVCacheInstEllRPNS0_13ObKVCachePairERPS2_NS0_15ObKVCachePolicyE
_ZN9oceanbase3sql15ObResolverUtils13resolve_constEPK10_ParseNodeNS0_4stmt8StmtTypeERNS_6common12ObIAllocatorENS7_15ObCollationTypeESA_PKNS7_14ObTimeZoneInfoERNS7_10ObObjParamEbRNS7_8ObStringEsSA_PNS0_11ObSqlBitSetILl96ENS0_14ObExprInfoFlagELb1EEEmbb
_Z14ob_numchars_mbPK13ObCharsetInfoPKcS3_
_ZL19ob_ismbchar_utf8mb4PK13ObCharsetInfoPKcS3_
_ZL26ob_valid_mbcharlen_utf8mb3PKhS0_
_ZN9oceanbase7storage20ObTableStoreIterator30get_table_ptr_with_meta_handleEPKNS_12blocksstable9ObSSTableERNS1_8TablePtrE
_ZN9oceanbase6common25ObConcurrentFIFOAllocator5allocEl
_ZN9oceanbase7storage24ObStorageMetaValueHandleaSERKS1_
_ZN9oceanbase7storage19ObStorageMetaHandleD1Ev
_ZN9oceanbase7storage19ObStorageMetaHandleD2Ev
_ZN9oceanbase3sql18PushdownFilterInfoD1Ev
_ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv
_ZN9oceanbase8memtable10ObMemtable4scanERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS_12blocksstable12ObDatumRangeERPNS2_18ObStoreRowIteratorE
_ZN9oceanbase8memtable22ObMemtableScanIteratorC2Ev
_ZZNK9oceanbase3sql12ObQueryRange21gen_simple_scan_rangeERNS_6common12ObIAllocatorERNS0_13ObExecContextERNS2_9ObSEArrayIPNS2_10ObNewRangeELl1ENS2_19ModulePageAllocatorELb0EEERbRKNS2_20ObDataTypeCastParamsEENK6$_1404clEPKc
_ZN9oceanbase3lib20ObTenantCtxAllocator11alloc_chunkElRKNS0_9ObMemAttrE
_ZN9oceanbase12blocksstable10ObDatumRow5resetEv
_ZN9oceanbase6common11ObArrayImplINS0_15ObWarningBuffer11WarningItemENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE7reserveEl
_ZN9oceanbase6common16ObWaitEventGuardC1Elmlllb
_ZN9oceanbase6common16ObWaitEventGuardC2Elmlllb
_ZN9oceanbase7storage19ObStorageMetaHandle11get_sstableERPNS_12blocksstable9ObSSTableE
_ZN9oceanbase8observer8ObMPBase12flush_bufferEb
_ZN9oceanbase6common25ObConcurrentFIFOAllocator4freeEPv
_ZN9oceanbase3sql14ObExprValuesOp11inner_closeEv
_ZNK9oceanbase7storage15ObTableReadInfo17get_max_col_indexEv
_ZNK9oceanbase6common11ObAllocator4usedEv
_ZNK9oceanbase12blocksstable19ObMicroBlockDecoder16get_column_countEv
_ZN9oceanbase8observer12ObSrvDeliver7deliverERNS_3rpc9ObRequestE
_ZN9oceanbase8observer12ObSrvDeliver21deliver_mysql_requestERNS_3rpc9ObRequestE
_ZN9oceanbase3omt8ObTenant12recv_requestERNS_3rpc9ObRequestE
_ZN9oceanbase3rpc25get_stat_srv_by_tenant_idEm
_ZNK9oceanbase3omt13ObMultiTenant10get_tenantEmRPNS0_8ObTenantE
_ZN9oceanbase3sql17ObMergeDistinctOp20inner_get_next_batchEl
_ZN9oceanbase3sql17ObMergeDistinctOp21deduplicate_for_batchEbPKNS0_11ObBatchRowsE
_ZN9oceanbase6common21ObNullSafeDatumStrCmpILNS0_15ObCollationTypeE45ELb0ELb0EE3cmpERKNS0_7ObDatumES6_Ri
_ZN9oceanbase3sql17ObChunkDatumStore9StoredRow8do_buildILb0ELb0EEEiRPS2_RKNS_6common8ObIArrayIPNS0_6ObExprEEERNS0_9ObEvalCtxEPcljl
_ZN9oceanbase3sql17ObChunkDatumStore13row_copy_sizeERKNS_6common8ObIArrayIPNS0_6ObExprEEERNS0_9ObEvalCtxERl
_ZN9oceanbase3sql11ObExprField10eval_fieldERKNS0_6ObExprERNS0_9ObEvalCtxERNS_6common7ObDatumE
_ZNK10__cxxabiv117__class_type_info12__do_dyncastElNS0_10__sub_kindEPKS0_PKvS3_S5_RNS0_16__dyncast_resultE
_ZN9oceanbase8memtable13ObLockWaitMgr4run1Ev
_ZN9oceanbase3lib11ObLockGuardINS_6common10ObSpinLockEED2Ev
_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
_ZN9oceanbase3sql8ObSortOp7destroyEv
_ZN9oceanbase3sql12ObSortOpImplD1Ev
_ZN9oceanbase3sql12ObSortOpImplD2Ev
_ZN9oceanbase12blocksstable17ObTmpFileIOHandle5resetEv
_ZN9oceanbase3lib17__MemoryContext__15destory_contextEPS1_
_ZN9oceanbase3lib17__MemoryContext__6deinitEv
_ZN9oceanbase3lib9IBlockMgr10get_ctx_idEv
_ZN9oceanbase3lib18SetDoNothingLocker4lockEv
_ZN9oceanbase3lib18SetDoNothingLocker6unlockEv
_ZN9oceanbase3lib9ObjectSet11free_objectEPNS0_7AObjectE
_ZN9oceanbase3lib8BlockSet10free_blockEPNS0_6ABlockE
_ZN9oceanbase3lib9ObjectSet15free_big_objectEPNS0_7AObjectE
_ZN9oceanbase3lib9ObjectSet18free_normal_objectEPNS0_7AObjectE
_ZNSt14_Function_base13_Base_managerIZNK9oceanbase3lib20ObTenantCtxAllocator8get_holdEvEUlPKNS2_17ObTenantMemoryMgrEE_E10_M_managerERSt9_Any_dataRKS9_St18_Manager_operation
_ZN9oceanbase3lib20ObTenantCtxAllocator10free_chunkEPNS0_6AChunkERKNS0_9ObMemAttrE
_ZN9oceanbase6common12ObLatchMutex4lockEjl
_ZN9oceanbase6common11ObArrayImplIPNS_3sql17ObChunkDatumStore9StoredRowENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEED2Ev
_ZN9oceanbase3sql12ObSortOpImpl5resetEv
_ZN9oceanbase3sql12ObSortOpImpl5reuseEv
_ZN9oceanbase3lib9ObjectSet16build_free_listsEv
_ZN9oceanbase3lib9ObjectSet10free_blockEPNS0_6ABlockE
_ZN9oceanbase3sql16ObPrefixSortImplD2Ev
_ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE
_ZN9oceanbase3lib17ObMallocAllocator5allocElRKNS0_9ObMemAttrE
_ZN9oceanbase3lib20ObTenantCtxAllocator14common_reallocINS0_9ObjectMgrEEEPvPKvlRKNS0_9ObMemAttrERS1_RT_
_ZN9oceanbase3lib9SetLockerINS0_7ObMutexEE4lockEv
_ZN9oceanbase8keybtree10ObKeyBtreeINS_8memtable20ObStoreRowkeyWrapperEPNS2_9ObMvccRowEE7destroyEPNS0_9BtreeNodeIS3_S5_EE
_ZN9oceanbase12blocksstable9ObSSTable4scanERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS0_12ObDatumRangeERPNS2_18ObStoreRowIteratorE
_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EEC2Ev
_ZN9oceanbase7storage19ObSSTableRowScannerINS0_30ObIndexTreeMultiPassPrefetcherILi32ELi3EEEE10inner_openERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextEPNS0_8ObITableEPKv
_ZNK9oceanbase7storage8ObITable20is_ddl_merge_sstableEv
_ZNK9oceanbase12blocksstable26ObRAWIndexBlockRowIterator12end_of_blockEv
_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE19prefetch_micro_dataEv
_ZN9oceanbase12blocksstable18ObMacroBlockHandleaSERKS1_
_ZNK9oceanbase7storage9ObAggCell16need_access_dataEv
_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE22ObIndexTreeLevelHandle7forwardERS2_b
_ZN9oceanbase6common26ObWrapperAllocatorWithAttr5allocEl
_ZN9oceanbase12blocksstable26ObTFMIndexBlockRowIterator12locate_rangeERKNS0_12ObDatumRangeEbbb
_ZN9oceanbase12blocksstable26ObTFMIndexBlockRowIterator4initERKNS0_16ObMicroBlockDataEPKNS0_19ObStorageDatumUtilsEPNS_6common12ObIAllocatorEbRKNS0_21ObIndexBlockIterParamE
_ZZN9oceanbase12blocksstable26ObTFMIndexBlockRowIterator12locate_rangeERKNS0_12ObDatumRangeEbbbENK5$_602clEPKc
_ZZN9oceanbase12blocksstable26ObTFMIndexBlockRowIterator12locate_rangeERKNS0_12ObDatumRangeEbbbENK5$_605clEPKc
_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE22ObIndexTreeLevelHandle8prefetchElRS2_
_ZN9oceanbase6common10ObIOHandle5resetEv
_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE14switch_contextEiRNS_12blocksstable9ObSSTableERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextEPKv
_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE4initEiRNS_12blocksstable9ObSSTableERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextEPKv
_ZN9oceanbase7storage23ObReallocatedFixedArrayINS0_19ObSSTableReadHandleEE18prepare_reallocateEl
_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE19try_add_query_rangeERNS2_22ObIndexTreeLevelHandleE
_ZN9oceanbase12blocksstable18ObMacroBlockReaderC1Ev
_ZN9oceanbase12blocksstable18ObMacroBlockReaderC2Ev
_ZN9oceanbase7storage31ObSSTableMultiVersionRowScanner10inner_openERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextEPNS0_8ObITableEPKv
_ZN9oceanbase12blocksstable22ObIndexBlockRowScanner15check_blockscanERKNS0_13ObDatumRowkeyERb
_ZN9oceanbase12blocksstable26ObTFMIndexBlockRowIterator15check_blockscanERKNS0_13ObDatumRowkeyERb
_ZNK9oceanbase12blocksstable13ObDatumRowkey7compareERKS1_RKNS0_19ObStorageDatumUtilsERib
_ZN9oceanbase12blocksstable14ObBlockManager7inc_refERKNS0_12MacroBlockIdE
_ZN9oceanbase6common15ObLinearHashMapINS_12blocksstable12MacroBlockIdENS2_14ObBlockManager9BlockInfoENS0_14ShareMemMgrTagEE20do_insert_or_update_ERKS3_RKS5_
_ZN9oceanbase6common20ObNullSafeDatumTCCmpILNS0_14ObObjTypeClassE2ELS2_2ELb1EE3cmpERKNS0_7ObDatumES6_Ri
_ZN9oceanbase6common4hash12ObReferedMapImNS_10rootserver14DRUnitStatInfoEED2Ev
_ZN9oceanbase12blocksstable21ObMicroBlockRowGetter7get_rowERNS_7storage19ObSSTableReadHandleERPKNS0_10ObDatumRowEPNS0_18ObMacroBlockReaderE
_ZN9oceanbase12blocksstable22ObEncodeBlockGetReader7get_rowERKNS0_16ObMicroBlockDataERKNS0_13ObDatumRowkeyERKNS_7storage16ObITableReadInfoERNS0_10ObDatumRowE
_ZN9oceanbase12blocksstable22ObEncodeBlockGetReader15get_all_columnsEPKcllRNS0_10ObDatumRowE
_ZN9oceanbase12blocksstable22ObEncodeBlockGetReader17init_by_read_infoERKNS0_16ObMicroBlockDataERKNS_7storage16ObITableReadInfoE
_ZN9oceanbase12blocksstable20ObIEncodeBlockReader7do_initERKNS0_16ObMicroBlockDataEl
_ZNK9oceanbase12blocksstable12ObRawDecoder6decodeERKNS0_18ObColumnDecoderCtxERNS_6common7ObDatumElRKNS0_11ObBitStreamEPKcl
md5_block_asm_data_order
_ZN9oceanbase3sql13ObDASDeleteOp7open_opEv
_ZN9oceanbase3sql12ObDMLService14init_dml_paramERKNS0_17ObDASDMLBaseCtDefERNS0_17ObDASDMLBaseRtDefERNS_11transaction16ObTxReadSnapshotEsRNS_6common12ObIAllocatorERNS_7storage15ObStoreCtxGuardERNSD_14ObDMLBaseParamE
_ZN9oceanbase7storage10ObStoreCtxC2Ev
_ZN9oceanbase7storage10ObStoreCtxD2Ev
_ZN9oceanbase3sql20ObDASIndexDMLAdaptorILi4ENS0_16ObDASDMLIteratorEE10write_rowsERKNS_5share6ObLSIDERKNS_6common10ObTabletIDERKNS0_13ObDASDelCtDefERNS0_13ObDASDelRtDefERS2_Rl
_ZN9oceanbase7storage17ObLSTabletService11delete_rowsERNS0_14ObTabletHandleERNS0_10ObStoreCtxERKNS0_14ObDMLBaseParamERKNS_6common8ObIArrayImEEPNS9_16ObNewRowIteratorERl
_ZN9oceanbase7storage8ObTablet10update_rowERNS0_15ObRelativeTableERNS0_10ObStoreCtxERKNS_6common8ObIArrayINS_5share6schema9ObColDescEEERKNS7_IlEERKNS0_10ObStoreRowESJ_PKNS7_INS_11transaction18ObEncryptMetaCacheEEE
_ZNK9oceanbase8memtable10ObMemtable13get_write_refEv
_ZN9oceanbase8memtable10ObMemtable15get_freeze_flagEv
_ZN9oceanbase8memtable11ObIMemtable9get_ls_idEv
_ZNK9oceanbase8memtable10ObMemtable18is_active_memtableEv
_ZN9oceanbase7storage20ObTableAccessContextC1Ev
_ZN9oceanbase7storage20ObTableAccessContextC2Ev
_ZN9oceanbase8memtable10ObMemtable13dec_write_refEv
_ZNK9oceanbase8memtable10ObMemtable18is_frozen_memtableEv
_ZN9oceanbase7storage20ObTableStoreIterator18get_boundary_tableEbRPNS0_8ObITableE
_ZN9oceanbase6common15ObFIFOAllocatorD1Ev
_ZN9oceanbase6common15ObFIFOAllocatorD2Ev
_ZN9oceanbase8memtable10ObMemtable3setERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS_6common8ObIArrayINS_5share6schema9ObColDescEEERKNS9_IlEERKNS2_10ObStoreRowESL_PKNSA_13ObEncryptMetaE
_ZN9oceanbase12blocksstable11ObRowWriter5writeElRKNS_7storage10ObStoreRowEPKNS_6common8ObIArrayIlEERPcRl
_ZN9oceanbase12blocksstable11ObRowWriter20write_col_in_clusterINS_6common5ObObjEEEiPKT_lll
_ZN9oceanbase6common7ObLatch10try_rdlockEj
_ZN9oceanbase8memtable10ObMemtable13need_for_saveEPKNS_5share13ObEncryptMetaE
_ZN9oceanbase8memtable10ObMemtable11mvcc_write_ERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextEPKNS0_13ObMemtableKeyERKNS0_11ObTxNodeArgEbRbPNS0_23ObMvccRowAndWriteResultE
_ZN9oceanbase8keybtree10ObKeyBtreeINS_8memtable20ObStoreRowkeyWrapperEPNS2_9ObMvccRowEE6insertES3_RS5_
_ZN9oceanbase6common15ObFIFOAllocator11alloc_alignEll
_ZN9oceanbase8memtable18ObTransCallbackMgr6appendEPNS0_16ObITransCallbackE
_ZN9oceanbase8memtable13ObMemtableCtx19inc_unsubmitted_cntEv
_ZNK9oceanbase11transaction14ObPartTransCtx13get_tenant_idEv
_ZN9oceanbase8memtable12ObMvccEngine9create_kvEPKNS0_13ObMemtableKeyEbPS2_RPNS0_9ObMvccRowERNS0_15RowHeaderGetterERb
_ZN9oceanbase5share19ObMemstoreAllocator5allocERNS1_11AllocHandleEll
_ZN9oceanbase7storage15ObTenantFreezer20check_memstore_full_ERbRlS2_b
_ZN9oceanbase8memtable9ObMvccRow10mvcc_writeERNS_7storage10ObStoreCtxERKNS_11transaction12ObTxSnapshotERNS0_15ObMvccTransNodeERNS0_17ObMvccWriteResultE
_ZN9oceanbase8memtable9ObMvccRow20check_double_insert_ENS_5share3SCNERNS0_15ObMvccTransNodeEPS4_
_ZNK9oceanbase6common8ObRowkey10is_min_rowEv
_ZN9oceanbase11transaction14ObPartTransCtx23submit_redo_after_writeEbRKNS0_7ObTxSEQE
_ZZN9oceanbase11transaction14ObPartTransCtx23submit_redo_after_writeEbRKNS0_7ObTxSEQEENK5$_326clEPKc
_ZN9oceanbase7storage19ObStorageTableGuard19throttle_if_needed_Ev
_ZN9oceanbase5share14ObThrottleUnitINS0_23FakeAllocatorForTxShareEE13is_throttlingERNS0_19ObThrottleInfoGuardE
_ZN9oceanbase5share19ObThrottleInfoGuardD2Ev
_ZZN9oceanbase8memtable8ObMtHash6insertEPKNS0_20ObStoreRowkeyWrapperEPKNS0_9ObMvccRowEENKUlPKcE0_clES9_
_ZN9oceanbase7storage19ObStorageTableGuard25refresh_and_protect_tableERNS0_15ObRelativeTableE
_ZN9oceanbase8memtable10ObMemtable13inc_write_refEv
_ZN9oceanbase8memtable10ObMemtable20get_is_tablet_freezeEv
_ZN9oceanbase12blocksstable9ObSSTable16check_row_lockedERKNS_7storage16ObTableIterParamERKNS0_13ObDatumRowkeyERNS2_20ObTableAccessContextERNS2_19ObStoreRowLockStateERNS2_10ObRowStateEb
_ZN9oceanbase11transaction16ObTransStatistic22add_read_elr_row_countEml
_ZN9oceanbase12blocksstable26ObMicroBlockRowLockCheckerD2Ev
_ZN9oceanbase8keybtree11WriteHandleINS_8memtable20ObStoreRowkeyWrapperEPNS2_9ObMvccRowEE11split_childEPNS0_9BtreeNodeIS3_S5_EEiS3_S5_S3_S5_RS9_SA_
_ZN9oceanbase8keybtree9BtreeNodeINS_8memtable20ObStoreRowkeyWrapperEPNS2_9ObMvccRowEE4copyERS6_iii
_ZN9oceanbase8keybtree9BtreeNodeINS_8memtable20ObStoreRowkeyWrapperEPNS2_9ObMvccRowEE15copy_and_insertERS6_iiiS3_S5_S3_S5_
_ZN9oceanbase8keybtree18BtreeNodeAllocatorINS_8memtable20ObStoreRowkeyWrapperEPNS2_9ObMvccRowEE10alloc_nodeEv
_ZN9oceanbase7storage19ObSSTableRowScannerINS0_30ObIndexTreeMultiPassPrefetcherILi2ELi2EEEED2Ev
_ZN9oceanbase7storage18ObStoreRowIterator4initERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextEPNS0_8ObITableEPKv
_ZN9oceanbase7storage23ObSSTableRowLockChecker10inner_openERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextEPNS0_8ObITableEPKv
_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi2ELi2EEC2Ev
_ZNK9oceanbase12blocksstable13ObDatumRowkey22to_multi_version_rangeERNS_6common12ObIAllocatorERNS0_12ObDatumRangeE
_ZN9oceanbase7storage19ObStorageMetaHandle5resetEv
_ZN9oceanbase7storage19ObSSTableRowScannerINS0_30ObIndexTreeMultiPassPrefetcherILi2ELi2EEEE10inner_openERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextEPNS0_8ObITableEPKv
_ZNK9oceanbase12blocksstable9ObSSTable15no_data_to_readEv
_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi2ELi2EE8prefetchEv
_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi2ELi2EE4initEiRNS_12blocksstable9ObSSTableERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextEPKv
_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi2ELi2EE17init_tree_handlesEl
_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi2ELi2EED2Ev
_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi2ELi2EE22ObIndexTreeLevelHandleD2Ev
_ZN9oceanbase7storage23ObSSTableRowLockChecker16check_row_lockedEbRKNS_5share3SCNERNS0_19ObStoreRowLockStateERNS0_10ObRowStateE
_ZNK9oceanbase7storage19ObSSTableRowScannerINS0_30ObIndexTreeMultiPassPrefetcherILi2ELi2EEEE14can_batch_scanEv
_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi2ELi2EE19prefetch_index_treeEv
_ZN9oceanbase12blocksstable22ObIndexBlockRowScanner8get_nextERNS0_16ObMicroIndexInfoEbb
_ZN9oceanbase12blocksstable22ObIndexBlockRowScanner4openERKNS0_12MacroBlockIdERKNS0_16ObMicroBlockDataERKNS0_12ObDatumRangeElbbPKNS0_16ObMicroIndexInfoE
_ZN9oceanbase12blocksstable9ObSSTable19get_index_tree_rootERNS0_16ObMicroBlockDataEb
_ZN9oceanbase12blocksstable23ObIMicroBlockRowScannerD2Ev
_ZNK9oceanbase8memtable20ObStoreRowkeyWrapper5equalERKS1_Rb
_ZN9oceanbase7storage19ObSSTableRowScannerINS0_30ObIndexTreeMultiPassPrefetcherILi2ELi2EEEE18inner_get_next_rowERPKNS_12blocksstable10ObDatumRowE
_ZNK9oceanbase7storage19ObSSTableRowScannerINS0_30ObIndexTreeMultiPassPrefetcherILi2ELi2EEEE13can_blockscanEv
_ZN9oceanbase12blocksstable22ObIndexBlockRowScannerD1Ev
_ZN9oceanbase12blocksstable22ObIndexBlockRowScannerD2Ev
_ZN9oceanbase7storage22ObMicroBlockDataHandleD1Ev
_ZN9oceanbase7storage22ObMicroBlockDataHandleD2Ev
_ZNK9oceanbase12blocksstable9ObSSTable8get_metaERNS0_19ObSSTableMetaHandleEPNS_6common20ObSafeArenaAllocatorE
_ZN9oceanbase7storage19ObSSTableReadHandle5reuseEv
_ZN9oceanbase3lib22get_tenant_memory_holdEmm
_ZNK9oceanbase3lib20ObTenantCtxAllocator8get_holdEv
_ZN9oceanbase8memtable9ObMvccRow16check_row_lockedERNS0_15ObMvccAccessCtxERNS_7storage19ObStoreRowLockStateERNS4_10ObRowStateE
_ZN9oceanbase5share19ObMemstoreAllocator11AllocHandle5allocEl
_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi2ELi2EE19prefetch_micro_dataEv
_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi2ELi2EE22ObIndexTreeLevelHandle7forwardERS2_b
_ZN9oceanbase6common17ObjHashCalculatorILNS0_9ObObjTypeE22ENS0_13ObDefaultHashENS0_5ObObjEE15calc_hash_valueERKS4_mRm
_ZN9oceanbase6common8ObMalloc5allocElRKNS_3lib9ObMemAttrE
_ZN9oceanbase6common11ObFifoArena10alloc_pageEl
_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi2ELi2EE9read_waitEv
_ZN9oceanbase12blocksstable11ObRowWriter10loop_cellsINS_6common5ObObjEEEvPKT_lRlPb
_ZN9oceanbase7storage19ObSSTableRowScannerINS0_30ObIndexTreeMultiPassPrefetcherILi2ELi2EEEE9fetch_rowERNS0_19ObSSTableReadHandleERPKNS_12blocksstable10ObDatumRowE
_ZN9oceanbase12blocksstable26ObMicroBlockRowLockChecker12get_next_rowERPKNS0_10ObDatumRowE
_ZN9oceanbase12blocksstable26ObMicroBlockRowLockChecker18inner_get_next_rowERbRlRPNS_7storage19ObStoreRowLockStateE
_ZN9oceanbase6common23ObOptStatMonitorManager18update_local_cacheERNS0_12ObOptDmlStatE
_ZN9oceanbase6common4hash16LatchWriteLockerD2Ev
_ZN9oceanbase6common14SpinRLockGuardC2ERKNS0_10SpinRWLockE
_ZNK9oceanbase6common4hash9ObHashMapISt4pairImmENS0_12ObOptDmlStatENS1_24LatchReadWriteDefendModeENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS4_S5_EEEELi64ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKS4_RS5_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_
_ZN9oceanbase6common4hash16LatchWriteLockerC2ERNS0_7ObLatchE
_ZN9oceanbase7storage21ObIndexTreePrefetcher19prefetch_block_dataERNS_12blocksstable16ObMicroIndexInfoERNS0_22ObMicroBlockDataHandleEb
MD5_Final
_ZN9oceanbase7storage18ObSimpleRowsMergerINS_10compaction29ObPartitionMergeLoserTreeItemENS2_28ObPartitionMergeLoserTreeCmpEE7rebuildEv
_ZN9oceanbase3sql13ObDASUpdateOp7open_opEv
_ZN9oceanbase7storage15ObAccessService26get_write_store_ctx_guard_ERKNS_5share6ObLSIDElRNS_11transaction8ObTxDescERKNS6_16ObTxReadSnapshotEsNS_18concurrent_control11ObWriteFlagERNS0_15ObStoreCtxGuardERKNS6_7ObTxSEQE
_ZZN9oceanbase11transaction14ObTransService11get_tx_ctx_ERKNS_5share6ObLSIDEPNS_7storage4ObLSERKNS0_9ObTransIDERPNS0_14ObPartTransCtxEENK6$_1517clEPKc.llvm.8783879954152805610
_ZN9oceanbase5share14ObThrottleUnitINS0_23ObTenantTxDataAllocatorEE13is_throttlingERNS0_19ObThrottleInfoGuardE
_ZN9oceanbase5share14ObLightHashMapINS0_10ThrottleIDENS0_14ObThrottleInfoENS0_25ObThrottleInfoAllocHandleENS_6common10SpinRWLockELl1024ELl1024EE3getERKS2_RPS3_
_ZN9oceanbase11transaction14ObTransService19get_write_store_ctxERNS0_8ObTxDescERKNS0_16ObTxReadSnapshotENS_18concurrent_control11ObWriteFlagERNS_7storage10ObStoreCtxERKNS0_7ObTxSEQEb
_ZN9oceanbase11transaction12ObLSTxCtxMgr10get_tx_ctxERKNS0_9ObTransIDEbRPNS0_14ObPartTransCtxE
_ZN9oceanbase11transaction14ObPartTransCtx12start_accessERKNS0_8ObTxDescERNS0_7ObTxSEQEs
_ZN9oceanbase11transaction7CtxLock13wrlock_accessEv
_ZN9oceanbase11transaction11ObXATransIDC1ERKS1_
_ZZN9oceanbase11transaction14ObTransService14acquire_tx_ctxERKNS_5share6ObLSIDERKNS0_8ObTxDescERPNS0_14ObPartTransCtxEPNS_7storage4ObLSEbENK6$_1516clEPKc.llvm.8783879954152805610
_ZN9oceanbase3sql20ObDASIndexDMLAdaptorILi3ENS0_16ObDASUpdIteratorEE10write_rowsERKNS_5share6ObLSIDERKNS_6common10ObTabletIDERKNS0_13ObDASUpdCtDefERNS0_13ObDASUpdRtDefERS2_Rl
_ZN9oceanbase8memtable13ObMemtableCtx19get_query_allocatorEv
_ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE7get_objEv
_ZN9oceanbase8memtable16ObQueryAllocator4freeEPv
_ZN9oceanbase7storage15ObAccessService20check_write_allowed_ERKNS_5share6ObLSIDERKNS_6common10ObTabletIDENS0_17ObStoreAccessTypeERKNS0_14ObDMLBaseParamElRNS_11transaction8ObTxDescERNS0_14ObTabletHandleERNS0_15ObStoreCtxGuardE
_ZN9oceanbase11transaction9tablelock11ObLockTable4lockERNS_7storage10ObStoreCtxERKNS1_11ObLockParamE
_ZNK9oceanbase8memtable13ObMemtableCtx13get_trans_ctxEv
_ZN9oceanbase8memtable13ObMemtableCtx10write_doneEv
_ZN9oceanbase7storage17ObLSTabletService11update_rowsERNS0_14ObTabletHandleERNS0_10ObStoreCtxERKNS0_14ObDMLBaseParamERKNS_6common8ObIArrayImEESD_PNS9_16ObNewRowIteratorERl
_ZN9oceanbase7storage14ObTabletHandle5resetEv
_ZN9oceanbase5share6schema19ObSchemaGetterGuardC1ENS1_15ObSchemaMgrItem3ModE
_ZN9oceanbase8memtable16ObQueryAllocator5allocEl
_ZN9oceanbase7storage20ObTableStoreIteratorC1Ebb
_ZN9oceanbase7storage15ObDMLRunningCtx4initEPKNS_6common8ObIArrayImEES6_PNS_5share6schema27ObMultiVersionSchemaServiceERNS0_14ObTabletHandleE
_ZNK9oceanbase5share6schema27ObMultiVersionSchemaService35get_tenant_refreshed_schema_versionEmRlb
_ZN9oceanbase3sql16ObDASUpdIterator12get_next_rowERPNS_6common8ObNewRowE
_ZN9oceanbase7storage8ObTablet31check_schema_version_with_cacheEll
_ZN9oceanbase7storage17ObLSTabletService15process_new_rowERNS0_14ObTabletHandleERNS0_15ObDMLRunningCtxERKNS_6common8ObIArrayIlEERKNS0_10ObStoreRowESD_b
_ZNK9oceanbase7storage8ObITable10is_sstableEv
_ZNK9oceanbase7storage16ObReadInfoStruct16get_columns_descEv
_ZN9oceanbase7storage21ObTabletTableIteratorD2Ev
_ZN9oceanbase7storage20ObTableStoreIteratorD1Ev
_ZN9oceanbase7storage20ObTableStoreIteratorD2Ev
_ZN9oceanbase7storage8ObTablet13rowkey_existsERNS0_15ObRelativeTableERNS0_10ObStoreCtxERKNS_6common8ObNewRowERb
_ZN9oceanbase3lib17ObMallocAllocator4freeEPv
_ZN9oceanbase12blocksstable9ObSSTable3getERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS0_13ObDatumRowkeyERPNS2_18ObStoreRowIteratorE
_ZNK9oceanbase12blocksstable9ObSSTable26is_ddl_merge_empty_sstableEv
_ZN9oceanbase7storage18ObSSTableRowGetter10inner_openERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextEPNS0_8ObITableEPKv
_ZNK9oceanbase12blocksstable9ObSSTable8is_emptyEv
_ZN9oceanbase7storage21ObIndexTreePrefetcher20lookup_in_index_treeERNS0_19ObSSTableReadHandleEb
_ZN9oceanbase12blocksstable22ObIndexBlockRowScanner16get_next_idx_rowERNS0_16ObMicroIndexInfoE
_ZN9oceanbase12blocksstable22ObIndexBlockRowScanner4openERKNS0_12MacroBlockIdERKNS0_16ObMicroBlockDataERKNS0_13ObDatumRowkeyElPKNS0_16ObMicroIndexInfoE
_ZN9oceanbase7storage21ObMicroBlockHandleMgr22get_micro_block_handleERKNS_12blocksstable16ObMicroIndexInfoEbbRNS0_22ObMicroBlockDataHandleE
_ZN9oceanbase12blocksstable18ObIMicroBlockCache15get_cache_blockEmNS0_12MacroBlockIdEllRNS0_24ObMicroBlockBufferHandleE
_ZNK9oceanbase12blocksstable20ObMicroBlockCacheKey4hashEv
_ZN9oceanbase6common15ObKVGlobalCache12get_instanceEv
_ZN9oceanbase6common12ObKVCacheMap3getElRKNS0_13ObIKVCacheKeyERPKNS0_15ObIKVCacheValueERPNS0_18ObKVMemBlockHandleE
_ZN9oceanbase12blocksstableL21nonext_nonext_compareERKNS0_14ObStorageDatumES3_RKNS_6common9ObCmpFuncERi.llvm.9919620596172021111
_ZN9oceanbase6common13murmurhash64AEPKvim
_ZNK9oceanbase12blocksstable17ObFuseRowCacheKey4hashERm
_ZN9oceanbase6common11DefHashFuncINS0_19DatumHashCalculatorILNS0_9ObObjTypeE4ENS0_12ObMurmurHashEEEE4hashERKNS0_7ObDatumEmRm
_ZNK9oceanbase12blocksstable13ObDatumRowkey10murmurhashEmRKNS0_19ObStorageDatumUtilsERm
_ZNK9oceanbase6common13ObIKVCacheKey5equalERKS1_Rb
_ZNK9oceanbase12blocksstable20ObMicroBlockCacheKeyeqERKNS_6common13ObIKVCacheKeyE
_ZNK9oceanbase12blocksstable13ObDatumRowkey5equalERKS1_RKNS0_19ObStorageDatumUtilsERb
_ZNK9oceanbase7storage16ObStorageMetaKey4hashEv
_ZZN9oceanbase12blocksstable26ObTFMIndexBlockRowIterator10locate_keyERKNS0_13ObDatumRowkeyEENK5$_597clEPKc.llvm.9808547506444289841
_ZNK9oceanbase7storage16ObTableIterParam8is_validEv
_ZN9oceanbase7storage21ObIndexTreePrefetcher15init_basic_infoEiRNS_12blocksstable9ObSSTableERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextE
_ZNK9oceanbase7storage16ObStorageMetaKeyeqERKNS_6common13ObIKVCacheKeyE
_ZN9oceanbase6common22ObKVCacheHazardStation11delete_nodeElPNS0_19ObKVCacheHazardNodeE
_ZNK9oceanbase12blocksstable21ObBloomFilterCacheKeyeqERKNS_6common13ObIKVCacheKeyE
_ZN9oceanbase7storage30ObSSTableMultiVersionRowGetter10inner_openERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextEPNS0_8ObITableEPKv
_ZNK9oceanbase7storage8ObITable14is_ddl_sstableEv
_ZN9oceanbase7storage30ObSSTableMultiVersionRowGetterD2Ev
_ZN9oceanbase7storage8ObTablet17prepare_param_ctxERNS_6common12ObIAllocatorERNS0_15ObRelativeTableERNS0_10ObStoreCtxERNS0_16ObTableIterParamERNS0_20ObTableAccessContextE
_ZN9oceanbase12blocksstable18ObBloomFilterCache11may_containEmRKNS0_12MacroBlockIdERKNS0_13ObDatumRowkeyERKNS0_19ObStorageDatumUtilsERb
_ZNK9oceanbase12blocksstable21ObBloomFilterCacheKey4hashEv
_ZN9oceanbase11transaction9tablelock14ObLockMemtable5lock_ERKNS1_11ObLockParamERNS_7storage10ObStoreCtxERNS1_13ObTableLockOpE
_ZN9oceanbase11transaction9tablelock12ObLockMemCtx17get_lock_memtableERPNS1_14ObLockMemtableE
_ZNK9oceanbase11transaction9tablelock12ObLockMemCtx16check_lock_existERKNS1_8ObLockIDERKNS_5share10ObCommonIDEhNS1_17ObTableLockOpTypeERbPm
_ZN9oceanbase8memtable10ObIMvccCtx23register_table_lock_cb_EPNS_11transaction9tablelock14ObLockMemtableEPNS3_22ObMemCtxLockOpLinkNodeERPNS3_17ObOBJLockCallbackENS_5share3SCNE
_ZN9oceanbase11transaction9tablelock17ObOBJLockCallback13get_data_sizeEv
_ZNK9oceanbase11transaction9tablelock17ObOBJLockCallback10get_seq_noEv
_ZN9oceanbase8memtable13ObMemtableCtx26create_table_lock_callbackERNS0_10ObIMvccCtxEPNS_11transaction9tablelock14ObLockMemtableE
_ZN9oceanbase8memtable13ObMemtableCtx10write_authEb
_ZN9oceanbase8memtable13ObMemtableCtx15add_lock_recordERKNS_11transaction9tablelock13ObTableLockOpE
_ZN9oceanbase8memtable13ObMemtableCtx15append_callbackEPNS0_16ObITransCallbackE
_ZNK9oceanbase7storage8ObITable16is_lock_memtableEv
_ZN9oceanbase11transaction9tablelock12ObLockMemCtx15add_lock_recordERKNS1_13ObTableLockOpERPNS1_22ObMemCtxLockOpLinkNodeE
_ZN9oceanbase6common13ObSEArrayImplINS_7storage19ObStorageMetaHandleELl4ENS0_19ModulePageAllocatorELb0EE7destroyEv
_ZN9oceanbase11transaction9tablelock9ObOBJLock17check_allow_lock_ERKNS1_13ObTableLockOpEPKmRNS_6common4hash19ObIteratableHashSetINS0_9ObTransIDELm16EEERbbb
_ZN9oceanbase7storage15ObStoreCtxGuardD2Ev
_ZN9oceanbase7storage15ObStoreCtxGuard5resetEv
_ZN9oceanbase6common11ObArrayImplINS_11transaction16ObTransIDAndAddrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEED2Ev
_ZN9oceanbase11transaction14ObTransService16revert_store_ctxERNS_7storage10ObStoreCtxE
_ZN9oceanbase11transaction12ObLSTxCtxMgr13revert_tx_ctxEPNS0_10ObTransCtxE
_ZN9oceanbase8memtable13ObMemtableCtx22get_conflict_trans_idsERNS_6common8ObIArrayINS_11transaction16ObTransIDAndAddrEEE
_ZN9oceanbase6common11ObArrayImplINS_11transaction9ObTransIDENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE5resetEv
_ZN9oceanbase6common11ObArrayImplINS_11transaction9ObTransIDENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE7destroyEv
_ZN9oceanbase6common11ObArrayImplINS_11transaction9ObTransIDENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE7reserveEl
_ZN9oceanbase6common11ObArrayImplINS_11transaction9ObTransIDENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE6assignERKNS0_8ObIArrayIS3_EE
_ZZN9oceanbase11transaction14ObPartTransCtx10end_accessEvENK5$_927clEPKc.llvm.8783879954152805610
_ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScannerD2Ev
_ZN9oceanbase12blocksstable18ObMicroBlockReaderD2Ev
_ZN9oceanbase12blocksstable22ObBlockReaderAllocatorD2Ev
_ZZN9oceanbase11transaction14ObPartTransCtx12start_accessERKNS0_8ObTxDescERNS0_7ObTxSEQEsENK5$_926clEPKc.llvm.8783879954152805610
_ZN9oceanbase7storage19ObStorageTableGuardC1EPNS0_8ObTabletERNS0_10ObStoreCtxEbbNS_5share3SCNEb
_ZN9oceanbase11transaction9tablelock14ObLockMemtable25check_tablet_write_allow_ERKNS1_13ObTableLockOpE
_ZN9oceanbase6common13ObObjCmpFuncs21compare_oper_nullsafeERKNS0_5ObObjES4_NS0_15ObCollationTypeENS0_7ObCmpOpE
_ZN9oceanbase6common11ObArrayImplINS_11transaction9ObTransIDENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEED2Ev
_ZN9oceanbase7storage19ObSSTableRowExisterD2Ev
_ZN9oceanbase7storage18ObSSTableRowGetterD2Ev
_ZZN9oceanbase11transaction14ObTransService14create_tx_ctx_ERKNS_5share6ObLSIDEPNS_7storage4ObLSERKNS0_8ObTxDescERPNS0_14ObPartTransCtxEbENK6$_1519clEPKc.llvm.8783879954152805610
_ZN9oceanbase12blocksstable23ObIMicroBlockRowFetcherD2Ev
_ZN9oceanbase12blocksstable19ObDatumRowkeyHelper20convert_datum_rowkeyERKNS_6common8ObRowkeyERNS0_13ObDatumRowkeyE
_ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE5reuseEv
_ZN9oceanbase7storage8ObTablet31insert_row_without_rowkey_checkERNS0_15ObRelativeTableERNS0_10ObStoreCtxEbRKNS_6common8ObIArrayINS_5share6schema9ObColDescEEERKNS0_10ObStoreRowEPKNS7_INS_11transaction18ObEncryptMetaCacheEEE
_ZNK9oceanbase7storage16ObReadInfoStruct23get_schema_rowkey_countEv
_ZN9oceanbase8memtable12ObMvccEngine3getERNS0_15ObMvccAccessCtxERKNS_6common11ObQueryFlagEPKNS0_13ObMemtableKeyENS_5share6ObLSIDEPS8_RNS0_19ObMvccValueIteratorERNS_7storage19ObStoreRowLockStateE
_ZN9oceanbase8memtable10ObMemtable3setERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS_6common8ObIArrayINS_5share6schema9ObColDescEEERKNS2_10ObStoreRowEPKNSA_13ObEncryptMetaEb
_ZN9oceanbase12blocksstable21ObMicroBlockGetReaderD2Ev
_ZNK9oceanbase5share6schema16ObSchemaCacheKeyeqERKNS_6common13ObIKVCacheKeyE
_ZN9oceanbase11transaction12ObLSTxCtxMgr13create_tx_ctxERKNS0_13ObTxCreateArgERbRPNS0_14ObPartTransCtxE
_ZN9oceanbase11transaction12ObLSTxCtxMgr14create_tx_ctx_ERKNS0_13ObTxCreateArgERbRPNS0_14ObPartTransCtxE
_ZN9oceanbase11transaction17ObTransCtxFactory5allocEl
_ZN9oceanbase6common18ObServerObjectPoolINS_11transaction14ObPartTransCtxEE13borrow_objectEv
_ZN9oceanbase11transaction14ObPartTransCtx4initEmRKNS_6common6ObAddrEjRKNS0_9ObTransIDElRKNS_5share6ObLSIDEmPNS0_14ObTransServiceEmlPNS0_12ObLSTxCtxMgrEbNS0_13PartCtxSourceENS0_11ObXATransIDE
_ZNK9oceanbase7storage8ObITable7get_refEv
_ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb0EE7destroyEv
_ZN9oceanbase6common13ObSEArrayImplINS_11transaction11ObLSLogInfoELl10ENS0_19ModulePageAllocatorELb0EE7destroyEv
_ZN9oceanbase11transaction11ObCtxTxData4initElPNS0_12ObLSTxCtxMgrEl
_ZN9oceanbase7storage13ObTxDataTable13alloc_tx_dataERNS0_13ObTxDataGuardEbl
_ZN9oceanbase6common12ObSliceAlloc5allocEv
_ZN9oceanbase11transaction14ObPartTransCtx13default_init_Ev
_ZN9oceanbase11transaction9tablelock11ObLockTable17get_lock_memtableERNS_7storage15ObTableHandleV2E
_ZN9oceanbase6common8TCRWLock10try_rdlockERl
_ZN9oceanbase11transaction12ObLSTxCtxMgr35try_wait_gts_and_inc_max_commit_ts_Ev
_ZNK9oceanbase5share6schema16ObSchemaCacheKey4hashERm
_ZN9oceanbase6common12ObBucketLock6wrlockEml
_ZNK9oceanbase5share6schema16ObSchemaCacheKey4hashEv
_ZN9oceanbase12blocksstable23ObIMicroBlockIOCallback13get_allocatorEv
_ZN9oceanbase7storage17ObLSTabletService24check_old_row_legitimacyERNS0_14ObTabletHandleERNS0_15ObDMLRunningCtxERKNS_6common8ObNewRowE
_ZN9oceanbase7storage20ObTableStoreIterator5resetEv
_ZN9oceanbase6common13ObSEArrayImplINS_11transaction11ObStateInfoELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv
_ZN9oceanbase5share27ObShareResourceThrottleToolINS0_23FakeAllocatorForTxShareEJNS0_19ObMemstoreAllocatorENS0_23ObTenantTxDataAllocatorENS0_20ObTenantMdsAllocatorEEE14alloc_resourceIS4_EEvllRb
_ZN9oceanbase5share14ObThrottleUnitINS0_23FakeAllocatorForTxShareEE14alloc_resourceElllRb
_ZNK9oceanbase7storage12ObTenantInfo14get_freeze_ctxERNS0_17ObTenantFreezeCtxE
_ZN9oceanbase5share23FakeAllocatorForTxShare21adaptive_update_limitElllRlS2_Rb
_ZN9oceanbase11transaction12CtxLockGuard3setERNS0_7CtxLockEh
_ZN9oceanbase11transaction12CtxLockGuard8do_lock_Eb
_ZN9oceanbase6common12ObSliceAlloc13prepare_blockEv
_ZZN9oceanbase11transaction14ObPartTransCtx4initEmRKNS_6common6ObAddrEjRKNS0_9ObTransIDElRKNS_5share6ObLSIDEmPNS0_14ObTransServiceEmlPNS0_12ObLSTxCtxMgrEbNS0_13PartCtxSourceENS0_11ObXATransIDEENK5$_157clEPKc.llvm.8783879954152805610
_ZNK9oceanbase12blocksstable22ObMicroBlockCacheValue4sizeEv
_ZN9oceanbase6common18ObBucketWLockGuardD2Ev
_ZN9oceanbase6common15ObDListWithLock3delEPNS0_7ObDLinkE
_ZN9oceanbase7storage21ObTenantTabletStatMgr11report_statERKNS0_12ObTabletStatERb
_ZN9oceanbase12blocksstable22ObEncodeBlockGetReaderD2Ev
_ZNK9oceanbase12blocksstable20ObMicroBlockCacheKey9deep_copyEPclRPNS_6common13ObIKVCacheKeyE
_ZNK9oceanbase12blocksstable22ObMicroBlockCacheValue9deep_copyEPclRPNS_6common15ObIKVCacheValueE
_ZN9oceanbase12blocksstable22ObIndexBlockDataHeader33deep_copy_transformed_index_blockERKS1_lPcRl
_ZN9oceanbase12blocksstable18ObMacroBlockHandleD1Ev
_ZN9oceanbase12blocksstable20ObServerBlockManager12get_instanceEv
_ZN9oceanbase12blocksstable18ObIMicroBlockCache8prefetchEmRKNS0_12MacroBlockIdERKNS0_16ObMicroIndexInfoEbRNS0_18ObMacroBlockHandleEPNS_6common12ObIAllocatorE
_ZNK9oceanbase6common15ObFIFOAllocator5totalEv
_ZN9oceanbase6common15ObFIFOAllocator5allocEl
_ZNK9oceanbase3lib6Worker18get_timeout_remainEv
_ZNK9oceanbase5share24ObVTableLocationCacheKeyeqERKNS_6common13ObIKVCacheKeyE
_ZN9oceanbase6common11ObIOManager8aio_readERKNS0_8ObIOInfoERNS0_10ObIOHandleE
_ZN9oceanbase6common13ObObjCmpFuncs11cmp_op_funcILNS0_14ObObjTypeClassE27ELS3_11ELNS0_7ObCmpOpE2EEEiRKNS0_5ObObjES7_RKNS0_12ObCompareCtxE
_ZN9oceanbase7storage21ObMicroBlockHandleMgr10cache_missEb
_ZNK9oceanbase11transaction8ObTxDesc10get_tx_seqEl
_ZN9oceanbase6common11ObIOManager10tenant_aioERKNS0_8ObIOInfoERNS0_10ObIOHandleE
_ZN9oceanbase6common17ObTenantIOManager21trace_request_if_needEPKNS0_11ObIORequestEPKcNS0_10ObIOTracer9TraceTypeE
_ZN9oceanbase6common10ObIOSender15enqueue_requestERNS0_11ObIORequestE
_ZN9oceanbase6common12ObThreadCond6signalEv
_ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS0_15ObIOGroupQueuesEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS6_EELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKmRS6_l
_ZN9oceanbase6common4hash11ObHashTableImNS1_11HashMapPairImPNS0_15ObIOGroupQueuesEEENS1_9hash_funcImEENS1_8equal_toImEENS1_10pair_firstIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS6_EELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE32internal_get_with_timeout_unsafeERNS1_17ObHashTableBucketIS6_NS0_7ObLatchENS1_5NCondEEERKmRPKS6_l
_ZN9oceanbase6common4hash15LatchReadLockerC2ERNS0_7ObLatchE
_ZN9oceanbase6common15ObTenantIOClock19calc_phyqueue_clockEPNS0_10ObPhyQueueERNS0_11ObIORequestE
_ZNK9oceanbase6common10ObIOResult8is_validEv
_ZN9oceanbase12blocksstable18ObMacroBlockHandle10async_readERKNS0_20ObMacroBlockReadInfoE
_ZN9oceanbase6common11ObIOManager12get_instanceEv
_ZN9oceanbase12blocksstable18ObMacroBlockHandle18set_macro_block_idERKNS0_12MacroBlockIdE
_ZN9oceanbase12blocksstable18ObMacroBlockHandle5reuseEv
_ZN9oceanbase6common7ObDListINS0_11ObIORequestEE8add_lastEPS2_
_ZN9oceanbase12blocksstable18ObMacroBlockHandle13get_tenant_idEv
_ZN9oceanbase6common9ObIOUsage20record_request_startERNS0_10ObIOResultE
_ZN9oceanbase6common17ObTenantIOManager20alloc_req_and_resultERKNS0_8ObIOInfoERNS0_10ObIOHandleERPNS0_11ObIORequestE
_ZNK9oceanbase7storage16ObTxDataCacheKey4hashEv
_ZN9oceanbase5share11ObTenantEnv3mtlIPNS_8memtable13ObLockWaitMgrEEET_v
_ZN9oceanbase6common15ObIOCalibration14get_iops_scaleENS0_8ObIOModeElRdRb
_ZN9oceanbase12blocksstable19ObMicroBlockDecoder22update_cached_decodersEPclPKcS4_l
_ZN9oceanbase12blocksstable12ObRawDecoder14update_pointerEPKcS3_
_ZN9oceanbase6common13ObObjCmpFuncs11cmp_op_funcILNS0_14ObObjTypeClassE1ELS3_1ELNS0_7ObCmpOpE0EEEiRKNS0_5ObObjES7_RKNS0_12ObCompareCtxE
_ZN9oceanbase12blocksstable20ObIEncodeBlockReaderD2Ev
_ZN9oceanbase12blocksstable17ObDecoderCtxArrayD2Ev
_ZN9oceanbase11transaction14ObPartTransCtx11start_transEv
_ZSt16__introsort_loopIN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS1_19ModulePageAllocatorELb0EEElN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S9_T0_T1_
_ZN9oceanbase7storage17ObLSTabletService17table_refresh_rowERNS0_14ObTabletHandleERNS0_15ObDMLRunningCtxERNS_6common8ObNewRowE
_ZN9oceanbase7storage17ObLSTabletService22init_single_row_getterERNS0_17ObSingleRowGetterERNS0_15ObDMLRunningCtxERKNS_6common8ObIArrayImEERNS0_15ObRelativeTableEb
_ZN9oceanbase6common13ObObjCmpFuncs11cmp_op_funcILNS0_14ObObjTypeClassE10ELS3_10ELNS0_7ObCmpOpE0EEEiRKNS0_5ObObjES7_RKNS0_12ObCompareCtxE
_ZN9oceanbase11transaction9tablelock16ObOBJLockFactory5allocEmRKNS1_8ObLockIDE
_ZN9oceanbase11transaction14ObPartTransCtxC2Ev
_ZN9oceanbase11transaction12ObTxMDSRangeC2Ev
_ZSt22__final_insertion_sortIN9oceanbase6common5array17ObSEArrayIteratorIlLl8ENS1_19ModulePageAllocatorELb0EEEN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S9_T0_
_ZN9oceanbase11transaction10ObTransCtxC2EPKcl
_ZN9oceanbase8memtable13ObMemtableCtxC1Ev
_ZN9oceanbase7storage19ObMultipleScanMergeD1Ev
_ZN9oceanbase7storage19ObMultipleScanMergeD2Ev
_ZN9oceanbase6common16ObFixedArrayImplIPNS_7storage9ObAggCellENS0_12ObIAllocatorEE5resetEv
_ZN9oceanbase6common16ObFixedArrayImplIPNS_7storage9ObAggCellENS0_12ObIAllocatorEE7destroyEv
_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EED1Ev
_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EED2Ev
_ZN9oceanbase6common10ObIOHandleD1Ev
_ZN9oceanbase6common10ObIOHandleD2Ev
_ZN9oceanbase12blocksstable18ObMacroBlockHandle5resetEv
_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE22ObIndexTreeLevelHandleD2Ev
_ZN9oceanbase12blocksstable10ObDatumRowD1Ev
_ZN9oceanbase12blocksstable10ObDatumRowD2Ev
_ZN9oceanbase7storage8ObAggRowD2Ev
_ZN9oceanbase6common16ObArenaAllocatorD2Ev
_ZN9oceanbase8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorINS0_20ObStoreRowkeyWrapperEPNS0_9ObMvccRowEEEE5resetEv
_ZN9oceanbase7storage9ObAggCell5resetEv
_ZN9oceanbase7storage14ObPDAggFactory7releaseERNS_6common8ObIArrayIPNS0_9ObAggCellEEE
_ZN9oceanbase3sql18PushdownFilterInfo5resetEv
_ZN9oceanbase12blocksstable19ObMicroBlockDecoderD2Ev
_ZN9oceanbase12blocksstable19ObMicroBlockDecoder5resetEv
_ZN9oceanbase12blocksstable17ObDecoderCtxArray5resetEv
_ZN9oceanbase12blocksstable19ObMicroBlockDecoder11inner_resetEv
_ZN9oceanbase7storage17ObFirstRowAggCell5resetEv
_ZN9oceanbase7storage12ObSumAggCell5resetEv
_ZN9oceanbase12blocksstable13ObDecoderPool5resetEv
_ZN9oceanbase6common14ObSmallObjPoolINS_12blocksstable14ObConstDecoderEE4freeEPS3_
_ZN9oceanbase6common14ObSmallObjPoolINS_12blocksstable24ObIntegerBaseDiffDecoderEE4freeEPS3_
_ZN9oceanbase6common14ObSmallObjPoolINS_12blocksstable12ObRLEDecoderEE4freeEPS3_
_ZN9oceanbase6common14ObSmallObjPoolINS_12blocksstable13ObDictDecoderEE4freeEPS3_
_ZN9oceanbase12blocksstableL21release_local_decoderINS0_14ObConstDecoderEEEiRNS0_13ObDecoderPoolEPNS0_16ObIColumnDecoderE.llvm.15022741271307044115
_ZNK9oceanbase3sql12ObQueryRange21gen_simple_scan_rangeERNS_6common12ObIAllocatorERNS0_13ObExecContextERNS2_9ObSEArrayIPNS2_10ObNewRangeELl1ENS2_19ModulePageAllocatorELb0EEERbRKNS2_20ObDataTypeCastParamsE
_ZNK9oceanbase6common14ObTimeZoneInfo19get_timezone_offsetElRi
_ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE0ELS3_0EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE
_ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE27ELS3_11EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE
_ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE27ELS3_0EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE
_ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE0ELS3_27EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE
_ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE0ELS3_11EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE
_ZNK9oceanbase3sql12ObQueryRange20get_single_key_valueEPKNS0_9ObKeyPartERNS0_13ObExecContextERNS1_13ObSearchStateERKNS_6common20ObDataTypeCastParamsEl
_ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE1ELS3_1EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE
_ZN9oceanbase3sql13ObExecContext22get_temp_expr_eval_ctxERKNS0_10ObTempExprERPNS0_13ObTempExprCtxE
_ZN9oceanbase3sql13ObExecContext19build_temp_expr_ctxERKNS0_10ObTempExprERPNS0_13ObTempExprCtxE
_ZN9oceanbase6common4hash11ObHashTableIlNS1_11HashMapPairIllEENS1_9hash_funcIlEENS1_8equal_toIlEENS1_10pair_firstIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS4_EELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14set_refactoredIvLb0EEEiRKlRKS4_iiiPT_
_ZN9oceanbase6common16ObKVCacheInstMap14get_cache_instERKNS0_16ObKVCacheInstKeyERNS0_19ObKVCacheInstHandleE
_ZN9oceanbase3sql13AllocOpHelperILi2EE5allocERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputElRPNS0_10ObOperatorE
_ZN9oceanbase6common8ObRandom4randEll
_ZN9oceanbase5share11ObTenantEnv16get_tenant_localEv
_ZN9oceanbase12blocksstable17ObTmpFileIOHandleC1Ev
_ZN9oceanbase12blocksstable17ObTmpFileIOHandleC2Ev
_ZN9oceanbase11transaction23ObTenantWeakReadService15do_thread_task_ElRl
_ZN9oceanbase11transaction23ObTenantWeakReadService25generate_cluster_version_Ev
_ZN9oceanbase11transaction23ObTenantWeakReadService21do_cluster_heartbeat_Ev
_ZN9oceanbase11transaction23ObTenantWeakReadService27set_cluster_service_master_ERKNS_6common6ObAddrE
_ZN9oceanbase11transaction30ObTenantWeakReadClusterService22update_cluster_versionERl
_ZN9oceanbase11transaction30ObTenantWeakReadClusterService25check_can_update_version_Ev
_ZN9oceanbase11transaction23ObTenantWeakReadService29process_cluster_heartbeat_rpcERKNS_6common6ObAddrENS_5share3SCNElll
_ZN9oceanbase11transaction23ObTenantWeakReadService36generate_tenant_weak_read_timestamp_Eb
_ZNSt14_Function_base13_Base_managerIZN9oceanbase11transaction14ObWeakReadUtil30generate_min_weak_read_versionEmRNS1_5share3SCNEE5$_250E10_M_managerERSt9_Any_dataRKS9_St18_Manager_operation
_ZN9oceanbase7storage11ObLSService11get_ls_iterERNS_6common13ObSharedGuardINS0_12ObLSIteratorEEENS0_10ObLSGetModE
_ZN9oceanbase6common5guard27DefaultSharedGuardAllocator5allocEl
_ZNSt14_Function_base13_Base_managerIZN9oceanbase11transaction14ObWeakReadUtil30generate_min_weak_read_versionEmRNS1_5share3SCNEE5$_251E10_M_managerERSt9_Any_dataRKS9_St18_Manager_operation
_ZN9oceanbase11transaction14ObWeakReadUtil30generate_min_weak_read_versionEmRNS_5share3SCNE
_ZN9oceanbase7storage12ObLSIteratorC2Ev
_ZN9oceanbase7storage14ObLSWRSHandler38generate_ls_weak_read_snapshot_versionERNS0_4ObLSERbS4_RNS_5share3SCNEl
_ZN9oceanbase10logservice12ObLogHandler19get_max_decided_scnERNS_5share3SCNE
_ZN9oceanbase10logservice19ObReplayStatusGuardD2Ev
_ZN9oceanbase10logservice18ObApplyStatusGuardD1Ev
_ZN9oceanbase10logservice18ObApplyStatusGuardD2Ev
_ZN9oceanbase10logservice17ObLogApplyService19get_max_applied_scnERKNS_5share6ObLSIDERNS2_3SCNE
_ZN9oceanbase10logservice13ObApplyStatus19get_max_applied_scnERNS_5share3SCNE
_ZZN9oceanbase10logservice23ObApplyServiceQueueTask22is_snapshot_apply_doneERbENK3$_5clEPKc
_ZN9oceanbase3lib11ObLockGuardINS0_7ObMutexEEC2ERS2_
_ZN9oceanbase6common8TCRWLock6rdlockEl
_ZN9oceanbase10logservice17ObLogApplyService16get_apply_statusERKNS_5share6ObLSIDERNS0_18ObApplyStatusGuardE
_ZN9oceanbase6common15ObLinearHashMapINS_5share6ObLSIDEPNS_10logservice13ObApplyStatusENS0_14ShareMemMgrTagEE11do_operate_INS4_17ObLogApplyService21GetApplyStatusFunctorEEEiRKS3_RT_
_ZN9oceanbase10logservice13ObApplyStatus22update_last_check_scn_Ev
_ZN9oceanbase10logservice17ObLogApplyService16wait_append_syncERKNS_5share6ObLSIDE
_ZN9oceanbase10logservice11ObLSAdapter16wait_append_syncERKNS_5share6ObLSIDE
_ZNK9oceanbase4palf12LSNAllocator11get_max_scnEv
_ZN9oceanbase10logservice14ObReplayStatus20get_max_replayed_scnERNS_5share3SCNE
_ZN9oceanbase10logservice14ObReplayStatus27get_min_unreplayed_log_infoERNS_4palf3LSNERNS_5share3SCNERlRNS0_13ObLogBaseTypeES8_S8_S8_
_ZZN9oceanbase10logservice12ObLogHandler19get_max_decided_scnERNS_5share3SCNEENK5$_398clEPKc
_ZNK9oceanbase10logservice25ObReplayServiceSubmitTask27get_next_to_submit_log_infoERNS_4palf3LSNERNS_5share3SCNE
_ZN9oceanbase6common15ObLinearHashMapINS_5share6ObLSIDEPNS_10logservice13ObApplyStatusENS0_14ShareMemMgrTagEE7shrink_Ev
_ZN9oceanbase6common15ObLinearHashMapINS_5share6ObLSIDEPNS_10logservice13ObApplyStatusENS0_14ShareMemMgrTagEE10es_unlock_Ev
_ZN9oceanbase6common15ObLinearHashMapINS_5share6ObLSIDEPNS_10logservice13ObApplyStatusENS0_14ShareMemMgrTagEE17load_factor_ctrl_Em
_ZN9oceanbase11transaction32ObTenantWeakReadServerVersionMgr21update_with_part_infoEmlbbNS_5share3SCNE
_ZN9oceanbase11transaction14ObTransService35get_ls_min_uncommit_prepare_versionERKNS_5share6ObLSIDERNS2_3SCNE
_ZN9oceanbase11transaction10ObTxCtxMgr38get_ls_min_uncommit_tx_prepare_versionERKNS_5share6ObLSIDERNS2_3SCNE
_ZN9oceanbase5share14ObLightHashMapINS_11transaction9ObTransIDENS2_10ObTransCtxENS2_13TransCtxAllocENS_6common10SpinRWLockELl16384ELl16384EE19generate_value_arr_ElRNS6_9ObSEArrayIPS4_Ll32ENS6_19ModulePageAllocatorELb0EEE
_ZZN9oceanbase10logservice13ObApplyStatus19get_max_applied_scnERNS_5share3SCNEENK4$_65clEPKc
_ZN9oceanbase6common15ObLinearHashMapINS_5share6ObLSIDEPNS_10logservice13ObApplyStatusENS0_14ShareMemMgrTagEE16load_access_bkt_ERKS3_RmRPNS8_6BucketE
_ZN9oceanbase11transaction14ObWeakReadUtil35max_stale_time_for_weak_consistencyEml
_ZNSt14_Function_base13_Base_managerIZN9oceanbase11transaction14ObWeakReadUtil35max_stale_time_for_weak_consistencyEmlE5$_256E10_M_managerERSt9_Any_dataRKS6_St18_Manager_operation.llvm.12232470761798807903
_ZNK9oceanbase3omt17ObTenantConfigMgr18read_tenant_configEmmRKSt8functionIFvRKNS0_14ObTenantConfigEEERKS2_IFvvEE
_ZZN9oceanbase10logservice13ObApplyStatus19get_max_applied_scnERNS_5share3SCNEENK4$_68clEPKc
_ZN9oceanbase10logservice18ObLogReplayService20get_max_replayed_scnERKNS_5share6ObLSIDERNS2_3SCNE
_ZZN9oceanbase10logservice18ObLogReplayService18get_replay_status_ERKNS_5share6ObLSIDERNS0_19ObReplayStatusGuardEENK5$_484clEPKc
_ZN9oceanbase10logservice18ObLogReplayService18get_replay_status_ERKNS_5share6ObLSIDERNS0_19ObReplayStatusGuardE
_ZN9oceanbase6common15ObLinearHashMapINS_5share6ObLSIDEPNS_10logservice14ObReplayStatusENS0_14ShareMemMgrTagEE16load_access_bkt_ERKS3_RmRPNS8_6BucketE
_ZN9oceanbase6common15ObLinearHashMapINS_5share6ObLSIDEPNS_10logservice14ObReplayStatusENS0_14ShareMemMgrTagEE7shrink_Ev
_ZN9oceanbase11transaction30ObTenantWeakReadClusterService24persist_version_if_need_ENS_5share3SCNES3_S3_S3_bRl
_ZNK9oceanbase5share3SCN13convert_to_tsEb
_ZN9oceanbase6common16ObCommonSqlProxy5writeEmPKciRl
_ZNK9oceanbase11transaction30ObTenantWeakReadClusterService24compute_cluster_version_ERlbRNS_5share3SCNE
_Znwm
_Z14ob_malloc_hookmPKv
_Z15ob_malloc_retrym
_ZTWN9oceanbase3lib21ObMallocHookAttrGuard11tl_mem_attrE
__tls_init.llvm.4635976078200033095
_ZTHN9oceanbase3lib21ObMallocHookAttrGuard11tl_mem_attrE
_ZN9oceanbase3omt17ObTenantConfigMgr12get_instanceEv
_ZN9oceanbase6common6DCHashINS0_9ObIntWarpELl8EE4nextEPNS0_11KeyHashNodeIS2_EE
_ZN9oceanbase6common11ObQSyncImpl11acquire_refEv
_ZN9oceanbase6common11ObQSyncImpl11release_refEv
_ZN9oceanbase6common13ObLinkHashMapINS0_9sqlclient12TenantMapKeyENS2_28ObTenantServerConnectionPoolENS0_11AllocHandleIS3_S4_EENS0_9RefHandleELl8EE7destroyEv
_ZN9oceanbase6common13RetireStation10RetireList6retireERNS0_10HazardListES4_lRNS0_6QClockE
_ZN9oceanbase6common11ObArrayImplINS_3sql18ObPCConstParamInfoENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev
_ZN9oceanbase3sql8ObDASCtx18extended_table_locERKNS0_17ObDASTableLocMetaERPNS0_13ObDASTableLocE
_ZN9oceanbase6common11ObArrayImplINS_3sql9ObVarInfoENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev
_ZN9oceanbase3sql22ObScalarAggregateVecOp7destroyEv
_ZN9oceanbase3sql22ObScalarAggregateVecOp11inner_closeEv
_ZN9oceanbase7storage19ObMultipleScanMerge23locate_blockscan_borderEv
_ZNK9oceanbase8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorINS0_20ObStoreRowkeyWrapperEPNS0_9ObMvccRowEEEE9get_valueEv
_ZN9oceanbase3sql15ObOptimizerUtil23is_point_based_sub_exprEPKNS0_9ObRawExprES4_
_ZNK9oceanbase3sql17ObTerminalRawExpr15get_param_countEv
_ZNK9oceanbase3sql11ObOpRawExpr14get_param_exprEl
_ZNK9oceanbase12blocksstable14ObConstDecoder6decodeERKNS0_18ObColumnDecoderCtxERNS_6common7ObDatumElRKNS0_11ObBitStreamEPKcl
_ZN9oceanbase12blocksstable19ObIntArrayFuncTable11lower_boundItEElPKvlll
_ZN9oceanbase3sql9ObPlanSet16match_constraintERKNS_6common9Ob2DArrayINS2_10ObObjParamELi2079744ENS2_18ObWrapperAllocatorELb0ENS2_9ObSEArrayIPS4_Ll1ES5_Lb0EEELb0EEERb
MD5
_ZN9oceanbase7storage30ObSSTableMultiVersionRowGetter18inner_get_next_rowERPKNS_12blocksstable10ObDatumRowE
_ZN9oceanbase7storage11ObLSService6get_lsERKNS_5share6ObLSIDERNS0_10ObLSHandleENS0_10ObLSGetModE
_ZNK9oceanbase7obmysql6OMPKOK9serializeEPclRl
_ZNK9oceanbase8observer9ObMPQuery11record_statENS_3sql4stmt8StmtTypeEl
_ZN9oceanbase7storage15ObMultipleMergeC2Ev
_ZN9oceanbase8memtable17ObMvccRowIteratorD1Ev
_ZN9oceanbase8memtable17ObMvccRowIteratorD2Ev
_ZN9oceanbase7storage16ObTableScanRange11init_rangesERKNS_6common8ObIArrayINS2_10ObNewRangeEEERKNS2_11ObQueryFlagEPKNS_12blocksstable19ObStorageDatumUtilsE
_ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE11ELS3_11EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE
_ZN9oceanbase7storage12ObSumAggCell5reuseEv
_ZN9oceanbase3sql12ObSortOpImpl4initEmPKNS_6common8ObIArrayINS0_20ObSortFieldCollationEEEPKNS3_INS2_9ObCmpFuncEEEPNS0_9ObEvalCtxEPNS0_13ObExecContextEbbbllblNS2_16ObCompressorTypeEPKNS2_12ObFixedArrayIPNS0_6ObExprENS2_12ObIAllocatorEEEl
_ZN9oceanbase6common11ObArrayImplINS_5share6schema18ObSchemaObjVersionENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS4_EENS0_17DefaultItemEncodeIS4_EEED2Ev
_ZN9oceanbase8memtable34ObMemtableMultiVersionScanIterator23iterate_uncommitted_rowERKNS_6common13ObStoreRowkeyERNS_12blocksstable10ObDatumRowE
_ZN9oceanbase7storage13ObVectorStore4initERKNS0_18ObTableAccessParamE
_ZN9oceanbase6common11ObArrayImplIPNS_3sql21ObUserVarIdentRawExprENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS4_EENS0_17DefaultItemEncodeIS4_EEED2Ev
_ZN9oceanbase3sql12ObDMLService31check_local_index_affected_rowsEllRKNS0_17ObDASDMLBaseCtDefERNS0_17ObDASDMLBaseRtDefES4_S6_
_ZN9oceanbase7storage18ObStorageMetaCache8get_metaENS0_18ObStorageMetaValue8MetaTypeERKNS0_16ObStorageMetaKeyERNS0_19ObStorageMetaHandleEPKNS0_8ObTabletE
_ZN9oceanbase6common11ObArrayImplINS_3sql16ObExprConstraintENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev
_ZN9oceanbase3sql16ObFastParserBase17parser_insert_strERNS_6common12ObIAllocatorElRKNS2_8ObStringERS5_RbRlSA_SA_SA_
_ZN9oceanbase3sql16AllocDASOpHelperILi2EE5allocERNS_6common12ObIAllocatorERPNS0_12ObIDASTaskOpE
_ZN9oceanbase5share8detector21ObDeadLockDetectorMgr16DetectorRefGuardD1Ev
_ZN9oceanbase5share8detector21ObDeadLockDetectorMgr16DetectorRefGuardD2Ev
_ZN9oceanbase3sql13AllocOpHelperILi25EE5allocERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputElRPNS0_10ObOperatorE
_ZN9oceanbase3sql15ObTableModifyOpC2ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE
_ZN9oceanbase6common11ObArrayImplINS_5share6schema17ObLocalSessionVarENS0_19ModulePageAllocatorELb1ENS0_22ObArrayDefaultCallBackIS4_EENS0_17DefaultItemEncodeIS4_EEED2Ev
_ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScanner14switch_contextERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextEPKNS0_9ObSSTableE
_ZZN9oceanbase11transaction30ObTransDeadlockDetectorAdapter36maintain_deadlock_info_when_end_stmtERNS_3sql13ObExecContextEbENK5$_755clEPKc.llvm.16725476429189423405
_ZN9oceanbase3sql8ObParser16transform_normalERNS_6common8ObStringE
_ZN9oceanbase10compaction22ObPartitionMajorMerger15merge_partitionERNS0_21ObBasicTabletMergeCtxEl
_ZN9oceanbase7storage18ObStoreRowIterator12get_next_rowERPKNS_12blocksstable10ObDatumRowE
_ZN9oceanbase10compaction12ObMergeFuser8fuse_rowERNS_6common9ObSEArrayIPNS0_20ObPartitionMergeIterELl16ENS2_19ModulePageAllocatorELb0EEE
_ZN9oceanbase10compaction26ObPartitionMajorRowsMerger8push_topERKNS0_29ObPartitionMergeLoserTreeItemE
_ZN9oceanbase10compaction26ObPartitionMajorRowsMerger17compare_base_iterEv