forked from oceanbase/oceanbase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hotfuncs.txt
9221 lines (9221 loc) · 891 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
_ZNK9oceanbase5share12ObTenantBase2idEv
_ZSt16__introsort_loopIN9oceanbase3lib15IteratorWrapperIPPNS0_3sql17ObChunkDatumStore9StoredRowEEElN9__gnu_cxx5__ops15_Iter_comp_iterINS3_12ObSortOpImpl16CopyableComparerEEEEvT_SF_T0_T1_
_ZSt21__unguarded_partitionIN9oceanbase3lib15IteratorWrapperIPPNS0_3sql17ObChunkDatumStore9StoredRowEEEN9__gnu_cxx5__ops15_Iter_comp_iterINS3_12ObSortOpImpl16CopyableComparerEEEET_SF_SF_SF_T0_
_ZN9oceanbase3sql12ObSortOpImpl7CompareclEPKNS0_17ObChunkDatumStore9StoredRowES6_
_ZN9oceanbase6common21ObNullSafeDatumStrCmpILNS0_15ObCollationTypeE45ELb0ELb1EE3cmpERKNS0_7ObDatumES6_Ri
_ZN9oceanbase6common9ObCharset8strcmpspENS0_15ObCollationTypeEPKclS4_lb
_ZL22ob_strnncollsp_utf8mb4PK13ObCharsetInfoPKhmS3_mb
_ZL16ob_mb_wc_utf8mb4PK13ObCharsetInfoPmPKhS4_
_ZN9oceanbase6common9ObCharset17is_argument_validENS0_15ObCollationTypeEPKclS4_l
_ZSt22__move_median_to_firstIN9oceanbase3lib15IteratorWrapperIPPNS0_3sql17ObChunkDatumStore9StoredRowEEEN9__gnu_cxx5__ops15_Iter_comp_iterINS3_12ObSortOpImpl16CopyableComparerEEEEvT_SF_SF_SF_T0_
_Z27ob_strnncollsp_utf8mb4_helpPPKhmS1_mS1_S1_bPiS2_
_ZN9oceanbase6common18ObInterruptChecker22clear_interrupt_statusEv
_Z12ob_free_hookPvPKv
_ZN9oceanbase6common12ObKVCacheMap21replace_fragment_nodeERlS2_l
_ZN9oceanbase6common12ObBucketLock6wrlockEml
_ZN9oceanbase6common7ObLatch6wrlockEjlPKj
_ZN9oceanbase6common18ObBucketWLockGuardD2Ev
_ZN9oceanbase6common12ObBucketLock6unlockEm
_ZN9oceanbase6common7ObLatch6unlockEPKj
_ZN9oceanbase6common16ObLatchWaitQueue4waitINS0_7ObLatch12LowTryWRLockEEEiRNS0_10ObWaitProcEjjRT_S8_l
_ZN9oceanbase6common16ObLatchWaitQueue8try_lockINS0_7ObLatch12LowTryWRLockEEEiRNS1_13ObLatchBucketERNS0_10ObWaitProcEjjRT_
_ZN9oceanbase6common16ObLatchWaitQueue7wake_upERNS0_7ObLatchEb
_ZN9oceanbase3sql14ObDASMergeIter17get_next_seq_rowsERll
_ZN9oceanbase3sql11ObDASScanOp9get_rtdefEv
_ZN9oceanbase3sql9ObDASIter13get_next_rowsERll
_ZN9oceanbase3sql14ObDASMergeIter20clear_evaluated_flagEv
_ZN9oceanbase3sql14ObDASMergeIter19inner_get_next_rowsERll
_ZN9oceanbase3sql13ObDASScanIter19inner_get_next_rowsERll
_ZN9oceanbase7storage19ObTableScanIterator13get_next_rowsERll
_ZN9oceanbase7storage15ObMultipleMerge13get_next_rowsERll
_ZThn8_N9oceanbase7storage20ObAggregatedStoreVec8fill_rowERNS_12blocksstable10ObDatumRowE
_ZN9oceanbase7storage19ObMultipleScanMerge14can_batch_scanERb
_ZN9oceanbase7storage15ObLobDataReader5reuseEv
_ZN9oceanbase7storage15ObMultipleMerge20get_next_normal_rowsERll
_ZNK9oceanbase7storage15ObTableReadInfo23get_group_idx_col_indexEv
_ZN9oceanbase7storage13ObVectorStore8fill_rowERNS_12blocksstable10ObDatumRowE
_ZN9oceanbase3sql18ObPushdownOperator9deep_copyEPKNS_6common8ObIArrayIPNS0_6ObExprEEEl
_ZN9oceanbase7storage15ObMultipleMerge16process_fuse_rowEbRNS_12blocksstable10ObDatumRowERPS3_
_ZN9oceanbase7storage15ObMultipleMerge14check_filteredERKNS_12blocksstable10ObDatumRowERb
_ZN9oceanbase7storage15ObMultipleMerge22fill_group_idx_if_needERNS_12blocksstable10ObDatumRowE
_ZN9oceanbase7storage19ObMultipleScanMerge18inner_get_next_rowERNS_12blocksstable10ObDatumRowE
_ZNK9oceanbase7storage18ObStoreRowIterator15is_sstable_iterEv
_ZN9oceanbase7storage18ObStoreRowIterator12get_next_rowERPKNS_12blocksstable10ObDatumRowE
_ZN9oceanbase7storage18ObSimpleRowsMergerINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpEE3topERPKS2_
_ZN9oceanbase7storage18ObSimpleRowsMergerINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpEE8push_topERKS2_
_ZN9oceanbase7storage19ObMultipleScanMerge14supply_consumeEv
_ZN9oceanbase8memtable23ObIMemtableScanIterator12get_next_rowERPKNS_12blocksstable10ObDatumRowE
_ZN9oceanbase5share3SCN7max_scnEv
_ZN9oceanbase5share3SCN7min_scnEv
_ZN9oceanbase7storage18ObSimpleRowsMergerINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpEE7rebuildEv
_ZN9oceanbase7storage19ObMultipleScanMerge15inner_merge_rowERNS_12blocksstable10ObDatumRowE
_ZNK9oceanbase7storage18ObSimpleRowsMergerINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpEE5emptyEv
_ZNK9oceanbase7storage18ObSimpleRowsMergerINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpEE18is_unique_championEv
_ZNK9oceanbase7storage16ObReadInfoStruct23get_schema_rowkey_countEv
_ZN9oceanbase7storage18ObSimpleRowsMergerINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpEE3popEv
_ZN9oceanbase7storage18ObSimpleRowsMergerINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpEE4pushERKS2_
_ZN9oceanbase7storage23ObScanMergeLoserTreeCmp3cmpERKNS0_24ObScanMergeLoserTreeItemES4_Rl
_ZN9oceanbase7storage9ObRowFuse8fuse_rowERKNS_12blocksstable10ObDatumRowERS3_RNS0_8ObNopPosERbPNS_6common12ObIAllocatorE
_ZN9oceanbase7storage23ObScanMergeLoserTreeCmp14compare_rowkeyERKNS_12blocksstable10ObDatumRowES5_Rl
_ZN9oceanbase12blocksstableL21nonext_nonext_compareERKNS0_14ObStorageDatumES3_RKNS_6common9ObCmpFuncERi
_ZNK9oceanbase12blocksstable13ObDatumRowkey7compareERKS1_RKNS0_19ObStorageDatumUtilsERib
_ZN9oceanbase6common20ObNullSafeDatumTCCmpILNS0_14ObObjTypeClassE1ELS2_1ELb1EE3cmpERKNS0_7ObDatumES6_Ri
_ZN9oceanbase7storage19ObSSTableRowScannerINS0_30ObIndexTreeMultiPassPrefetcherILi32ELi3EEEE18inner_get_next_rowERPKNS_12blocksstable10ObDatumRowE
_ZN9oceanbase6common21ObDiagnoseSessionInfo23get_local_diagnose_infoEv
_ZN9oceanbase6common21ObDiagnoseSessionInfo11update_statEsl
_ZNK9oceanbase7storage19ObSSTableRowScannerINS0_30ObIndexTreeMultiPassPrefetcherILi32ELi3EEEE14can_batch_scanEv
_ZNK9oceanbase7storage19ObSSTableRowScannerINS0_30ObIndexTreeMultiPassPrefetcherILi32ELi3EEEE13can_blockscanEv
_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE8prefetchEv
_ZN9oceanbase8memtable22ObMemtableScanIterator18inner_get_next_rowERPKNS_12blocksstable10ObDatumRowE
_ZN9oceanbase5share3SCNaSERKS1_
_ZNK9oceanbase5share3SCN11atomic_loadEv
_ZN9oceanbase19concurrency_control22build_trans_stat_datumEPKNS_7storage16ObTableIterParamERKNS_12blocksstable10ObDatumRowENS0_14ObTransStatRowE
_ZNK9oceanbase7storage16ObTableIterParam15need_trans_infoEv
_ZN9oceanbase8memtable19ObMvccValueIterator18get_trans_stat_rowERNS_19concurrency_control14ObTransStatRowE
_ZN9oceanbase8memtable9ObReadRow11iterate_rowERKNS_7storage16ObITableReadInfoERKNS_6common13ObStoreRowkeyERNS6_12ObIAllocatorERNS0_19ObMvccValueIteratorERNS_12blocksstable10ObDatumRowERNS0_11ObNopBitMapERl
_ZNK9oceanbase7storage15ObTableReadInfo17get_request_countEv
_ZNK9oceanbase7storage16ObRowkeyReadInfo17get_request_countEv
_ZN9oceanbase12blocksstable11ObRowReaderC1Ev
_ZN9oceanbase12blocksstable11ObRowReaderC2Ev
_ZN9oceanbase12blocksstable11ObRowReader17read_memtable_rowEPKclRKNS_7storage16ObITableReadInfoERNS0_10ObDatumRowERNS_8memtable11ObNopBitMapERb
_ZN9oceanbase7storage16return_array_cntEjRKNS0_19ObFixedMetaObjArrayIiEE
_ZN9oceanbase7storage16return_array_idxEjjlRKNS0_19ObFixedMetaObjArrayIiEE
_ZNK9oceanbase7storage15ObTableReadInfo8is_validEv
_ZN9oceanbase12blocksstable21ObClusterColumnReader18read_storage_datumElRNS0_14ObStorageDatumE
_ZN9oceanbase12blocksstableL12get_offset_8EPKvl
_ZN9oceanbase12blocksstable21ObClusterColumnReader10read_datumElRNS0_14ObStorageDatumE
_ZNK9oceanbase5share3SCN14get_val_for_txEb
_ZN9oceanbase12blocksstable11ObRowReader5resetEv
_ZN9oceanbase12blocksstable21ObClusterColumnReader4initEPKcmmRKNS0_20ObColClusterInfoMaskE
_ZN9oceanbase7storage29return_array_idx_for_memtableEjjlRKNS0_19ObFixedMetaObjArrayIiEE
_ZN9oceanbase12blocksstable21ObClusterColumnReader20read_column_from_bufEllNS0_11ObRowHeader11SPECIAL_VALERNS0_14ObStorageDatumE
_ZNK9oceanbase7storage15ObTableReadInfo26get_memtable_columns_indexEv
_ZN9oceanbase8memtable17ObMvccRowIterator12get_next_rowERPKNS0_13ObMemtableKeyERPNS0_19ObMvccValueIteratorERNS_7storage19ObStoreRowLockStateE
_ZNK9oceanbase5share3SCN8is_validEv
_ZN9oceanbase8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorINS0_20ObStoreRowkeyWrapperEPNS0_9ObMvccRowEEEE4nextEv
_ZN9oceanbase8memtable19ObMvccValueIterator4initERNS0_15ObMvccAccessCtxEPKNS0_13ObMemtableKeyEPNS0_9ObMvccRowENS_5share6ObLSIDERKNS_6common11ObQueryFlagE
_ZN9oceanbase8memtable19ObMvccValueIterator14lock_for_read_ERKNS_6common11ObQueryFlagE
_ZN9oceanbase6common14ObServerConfig12get_instanceEv
_ZN9oceanbase8memtable19ObMvccValueIterator13get_next_nodeERPKv
_ZNK9oceanbase5share3SCN6is_maxEv
_ZN9oceanbase12blocksstable11ObRowReader9setup_rowEPKcl
_ZN9oceanbase7storage19ObMultipleScanMerge17prepare_blockscanERNS0_18ObStoreRowIteratorE
_ZN9oceanbase7storage19ObSSTableRowScannerINS0_30ObIndexTreeMultiPassPrefetcherILi32ELi3EEEE25refresh_blockscan_checkerERKNS_12blocksstable13ObDatumRowkeyE
_ZN9oceanbase7storage19ObSSTableRowScannerINS0_30ObIndexTreeMultiPassPrefetcherILi32ELi3EEEE9fetch_rowERNS0_19ObSSTableReadHandleERPKNS_12blocksstable10ObDatumRowE
_ZN9oceanbase12blocksstable23ObIMicroBlockRowScanner12get_next_rowERPKNS0_10ObDatumRowE
_ZN9oceanbase12blocksstable23ObIMicroBlockRowScanner18inner_get_next_rowERPKNS0_10ObDatumRowE
_ZNK9oceanbase12blocksstable13ObFixRowIndex3getElRPKcRl
_ZN9oceanbase12blocksstable19ObMicroBlockDecoder7get_rowElRNS0_10ObDatumRowE
_ZN9oceanbase12blocksstable19ObMicroBlockDecoder12decode_cellsEmlPKcllPNS0_14ObStorageDatumE
_ZN9oceanbase6common16ObArenaAllocator5allocEl
_ZNK9oceanbase12blocksstable19ObStringDiffDecoder6decodeERKNS0_18ObColumnDecoderCtxERNS_6common7ObDatumElRKNS0_11ObBitStreamEPKcl
_ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14_alloc_alignedEll
_ZNK9oceanbase12blocksstable24ObIntegerBaseDiffDecoder6decodeERKNS0_18ObColumnDecoderCtxERNS_6common7ObDatumElRKNS0_11ObBitStreamEPKcl
_ZN9oceanbase6common7ObDatum22get_obj_datum_map_typeENS0_9ObObjTypeE
_ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16free_large_pagesEv
_ZN9oceanbase12blocksstable10ObDatumRow7reserveElb
_ZN9oceanbase3sql18ObPushdownOperator22write_trans_info_datumERNS_12blocksstable10ObDatumRowE
_ZN9oceanbase7storage20ObRow2ExprsProjector7projectERKNS_6common8ObIArrayIPNS_3sql6ObExprEEEPKNS_12blocksstable14ObStorageDatumEPsRl
_ZN9oceanbase6common7ObDatum8from_objERKNS0_5ObObjE
_ZN9oceanbase8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorINS0_20ObStoreRowkeyWrapperEPNS0_9ObMvccRowEEEE13next_internalEv
_ZN9oceanbase8keybtree13BtreeIteratorINS_8memtable20ObStoreRowkeyWrapperEPNS2_9ObMvccRowEE8get_nextERS3_RS5_
_ZN9oceanbase8keybtree13BtreeIteratorINS_8memtable20ObStoreRowkeyWrapperEPNS2_9ObMvccRowEE10scan_batchEv
_ZN9oceanbase8keybtree8IteratorINS_8memtable20ObStoreRowkeyWrapperEPNS2_9ObMvccRowEE8get_nextERS3_RS5_
_ZN9oceanbase8keybtree8IteratorINS_8memtable20ObStoreRowkeyWrapperEPNS2_9ObMvccRowEE9iter_nextERS3_RS5_
_ZN9oceanbase8keybtree10ScanHandleINS_8memtable20ObStoreRowkeyWrapperEPNS2_9ObMvccRowEE12scan_forwardEv
_ZN9oceanbase8keybtree10ScanHandleINS_8memtable20ObStoreRowkeyWrapperEPNS2_9ObMvccRowEE3getERS3_RS5_bRPS3_
_ZN9oceanbase8keybtree8IteratorINS_8memtable20ObStoreRowkeyWrapperEPNS2_9ObMvccRowEE4compERS3_PS3_Ri
_ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl
_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE25refresh_blockscan_checkerElRKNS_12blocksstable13ObDatumRowkeyE
_ZN9oceanbase8memtable19ObMvccValueIterator20lock_for_read_inner_ERKNS_6common11ObQueryFlagERPNS0_15ObMvccTransNodeE
_ZNK9oceanbase5share3SCNgeERKS1_
_ZZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE25refresh_blockscan_checkerElRKNS_12blocksstable13ObDatumRowkeyEENKUlPKcE5_clES8_
_ZN9oceanbase6common8ObLogger13need_to_printEmi
_ZNK9oceanbase7storage20ObCacheMemController23reach_hold_limit_nlimitEv
_ZNK9oceanbase7storage16ObReadInfoStruct26get_memtable_columns_indexEv
_ZN9oceanbase3sql18ObPushdownOperator20clear_evaluated_flagEv
_ZN9oceanbase8memtable22ObMemtableScanIterator12prepare_scanEv
_ZN9oceanbase7storage20ObTableAccessContext20inc_micro_access_cntEv
_ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE
_ZN9oceanbase3lib20ObTenantCtxAllocator5allocElRKNS0_9ObMemAttrE
_ZN9oceanbase7storage15ObMultipleMerge12get_next_rowERPNS_12blocksstable10ObDatumRowE
_ZNK9oceanbase7storage16ObReadInfoStruct17get_columns_indexEv
_ZNK9oceanbase7storage16ObTableIterParam21enable_fuse_row_cacheERKNS_6common11ObQueryFlagENS0_15StorageScanTypeE
_ZNK9oceanbase7storage8ObITable13is_co_sstableEv
_ZN9oceanbase7storage15ObMultipleMerge29update_and_report_tablet_statEv
_ZNK9oceanbase7storage12ObTabletStat8is_validEv
_ZN9oceanbase6common11ObAllocator5allocElRKNS_3lib9ObMemAttrE
_ZNK9oceanbase12blocksstable22ObIndexBlockRowScanner12end_of_blockEv
_ZNK9oceanbase7storage12ObCleanoutOp13need_cleanoutEv
_ZN9oceanbase10compaction21ObBasicMergeScheduler19get_merge_schedulerEv
_ZN9oceanbase12blocksstable23ObIMicroBlockRowScanner5reuseEv
_ZN9oceanbase7storage13ObSingleMerge18inner_get_next_rowERNS_12blocksstable10ObDatumRowE
_ZN9oceanbase7storage15ObMultipleMerge11project_rowERKNS_12blocksstable10ObDatumRowEPKNS_6common8ObIArrayIiEElRS3_
_ZN9oceanbase12blocksstable19ObFuseRowCacheValueC1Ev
_ZN9oceanbase12blocksstable19ObFuseRowCacheValueC2Ev
_ZN9oceanbase7storage15ObMultipleMerge22get_next_aggregate_rowERPNS_12blocksstable10ObDatumRowE
_ZN9oceanbase3sql18ObPushdownOperator21clear_datum_eval_flagEv
_ZN9oceanbase7storage20ObAggregatedStoreVec8fill_rowERNS_12blocksstable10ObDatumRowE
_ZN9oceanbase7storage13ObAggGroupVec10eval_batchEPKNS0_16ObTableIterParamEPKNS0_20ObTableAccessContextEiPNS_12blocksstable19ObIMicroBlockReaderEPKilb
_ZN9oceanbase7storage12ObAggCellVec10eval_batchEPNS_12blocksstable19ObIMicroBlockReaderEiPKilll
_ZN9oceanbase5share9aggregate21BatchAggregateWrapperINS1_25SumAggregateWithTempStoreILNS_6common17VecValueTypeClassE1ELS5_29ElEEE14add_batch_rowsERNS1_14RuntimeContextEiRKNS_3sql15ObBitVectorImplImEERKNSA_9EvalBoundEPcNS1_11RowSelectorE
_ZN9oceanbase7storage15ObMultipleMerge23refresh_table_on_demandEv
_ZN9oceanbase5share9aggregate21BatchAggregateWrapperINS1_25SumAggregateWithTempStoreILNS_6common17VecValueTypeClassE1ELS5_29ElEEE14add_batch_rowsINS4_15ObUniformFormatILb0EEEEEiRNS1_14RuntimeContextERKNS_3sql15ObBitVectorImplImEERKNSD_9EvalBoundERKNSD_6ObExprEiPcNS1_11RowSelectorE
_ZN9oceanbase5share9aggregate25SumAggregateWithTempStoreILNS_6common17VecValueTypeClassE1ELS4_29ElE18collect_tmp_resultERNS1_14RuntimeContextEiPc
_ZNK9oceanbase3sql6ObExpr11init_vectorERNS0_9ObEvalCtxENS_6common12VectorFormatElb
_ZN9oceanbase7storage13ObSingleMerge25get_normal_table_scan_rowEllbRbS2_
_ZNK9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl8ENS0_19ModulePageAllocatorELb0EE2atElRS4_
_ZN9oceanbase7storage13ObSingleMerge13get_table_rowElRKNS_6common8ObIArrayIPNS0_8ObITableEEERNS_12blocksstable10ObDatumRowERbSC_
_ZN9oceanbase8memtable19ObIMemtableIterator12get_next_rowERPKNS_12blocksstable10ObDatumRowE
_ZN9oceanbase8memtable21ObMemtableGetIterator4initERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextEPNS2_8ObITableEPKv
_ZN9oceanbase8memtable10ObMemtable3getERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS_12blocksstable13ObDatumRowkeyERPNS2_18ObStoreRowIteratorE
_ZN9oceanbase8memtable21ObMemtableGetIterator4initERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERNS2_11ObIMemtableE
_ZN9oceanbase12blocksstable10ObDatumRow4initERNS_6common12ObIAllocatorElPc
_ZN9oceanbase12blocksstable20ObStorageDatumBuffer7reserveElb
_ZN9oceanbase8memtable21ObMemtableGetIterator18inner_get_next_rowERPKNS_12blocksstable10ObDatumRowE
_ZNK9oceanbase7storage16ObReadInfoStruct16get_columns_descEv
_ZN9oceanbase3lib17ObMallocAllocator5allocElRKNS0_9ObMemAttrE
_ZThn8_N9oceanbase7storage20ObAggregatedStoreVec14reuse_capacityEl
_ZN9oceanbase3lib20ObTenantCtxAllocator14common_reallocINS0_9ObjectSetEEEPvPKvlRKNS0_9ObMemAttrERS1_RT_
_ZN9oceanbase3lib20ObTenantCtxAllocator8on_allocERNS0_7AObjectERKNS0_9ObMemAttrE
_ZN9oceanbase6common15light_backtraceEPPvi
_ZN9oceanbase8observer23ObProcessMallocCallbackclERKNS_3lib9ObMemAttrEl
_ZNK9oceanbase3lib7ObLabeleqERKS1_
_ZN9oceanbase6common9EventItem14get_event_codeEv
_ZN9oceanbase6common20get_mem_leak_checkerEv
_ZN9oceanbase3lib9ObjectSet12alloc_objectEmRKNS0_9ObMemAttrE
_ZN9oceanbase3lib9ObjectSet11alloc_blockEmRKNS0_9ObMemAttrE
_ZN9oceanbase3lib8BlockSet11alloc_blockEmRKNS0_9ObMemAttrE
_ZN9oceanbase3lib8BlockSet14get_free_blockEiRKNS0_9ObMemAttrE
_ZNK9oceanbase3lib7ABitSet22find_first_significantEi
_ZN9oceanbase3lib8BlockSet14add_free_blockEPNS0_6ABlockEiPNS0_6AChunkE
_ZN9oceanbase3lib9ObjectSet19alloc_normal_objectEjRKNS0_9ObMemAttrE
_ZN9oceanbase3lib12SubObjectMgr11alloc_blockEmRKNS0_9ObMemAttrE
_ZN9oceanbase3lib9ObjectSet15add_free_objectEPNS0_7AObjectE
_ZN9oceanbase6common13ObPageManager11alloc_blockEmRKNS_3lib9ObMemAttrE
_ZN9oceanbase3lib8BlockSet9add_chunkERKNS0_9ObMemAttrE
_ZN9oceanbase3lib8BlockSet11alloc_chunkEmRKNS0_9ObMemAttrE
_ZN9oceanbase3lib20ObTenantCtxAllocator11ReqChunkMgr11alloc_chunkEmRKNS0_9ObMemAttrE
_ZZN9oceanbase3sql13ObDASScanIter19inner_get_next_rowsERllENK5$_147clEPKc
_ZN9oceanbase8memtable10ObMemtable3getERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS_12blocksstable13ObDatumRowkeyERNS8_10ObDatumRowE
_ZNK9oceanbase7storage16ObTableIterParam8is_validEv
_ZN9oceanbase8memtable12ObMvccEngine3getERNS0_15ObMvccAccessCtxERKNS_6common11ObQueryFlagEPKNS0_13ObMemtableKeyENS_5share6ObLSIDEPS8_RNS0_19ObMvccValueIteratorERNS_7storage19ObStoreRowLockStateE
_ZN9oceanbase8memtable13ObQueryEngine3getEPKNS0_13ObMemtableKeyERPNS0_9ObMvccRowEPS2_
_ZN9oceanbase8memtable8ObMtHash6do_getEPKNS0_20ObStoreRowkeyWrapperERPNS0_9ObMvccRowERS4_
_ZNK9oceanbase6common8ObRowkey10murmurhashEm
_ZN9oceanbase6common17ObjHashCalculatorILNS0_9ObObjTypeE4ENS0_13ObDefaultHashENS0_5ObObjEE15calc_hash_valueERKS4_mRm
_ZN9oceanbase8memtable13ObMemtableKey6encodeERKNS_6common8ObIArrayINS_5share6schema9ObColDescEEEPKNS2_13ObStoreRowkeyE
_ZNK9oceanbase8memtable20ObStoreRowkeyWrapper5equalERKS1_Rb
_ZN9oceanbase8memtable8ObMtHash15get_bucket_nodeElmRPNS0_10ObHashNodeERNS1_9GenealogyE
_ZNK9oceanbase7storage21ObMicroBlockHandleMgr16reach_hold_limitEv
_ZN9oceanbase7storage13ObSingleMerge22get_and_fuse_cache_rowEllRNS_12blocksstable10ObDatumRowERbS5_S5_
_ZNK9oceanbase7storage16ObReadInfoStruct15get_datum_utilsEv
_ZN9oceanbase12blocksstable19ObStorageCacheSuite12get_instanceEv
_ZN9oceanbase8memtable13ObMemtableKey5buildINS_6common12ObIAllocatorEEEiRPS1_RKNS3_8ObIArrayINS_5share6schema9ObColDescEEEPKNS3_13ObStoreRowkeyERT_
_ZNK9oceanbase8memtable13ObMemtableKey16dup_without_hashINS_6common12ObIAllocatorEEEiRPS1_RT_
_ZNK9oceanbase6common8ObRowkey9deep_copyINS0_12ObIAllocatorEEEiRS1_RT_
_ZN9oceanbase6common11upper_alignEll
_ZN9oceanbase6common5ObObj9deep_copyERKS1_PclRl
_ZZN9oceanbase8memtable10ObMemtable3getERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS_12blocksstable13ObDatumRowkeyERPNS2_18ObStoreRowIteratorEENK5$_130clEPKc
_ZN9oceanbase3sql14ObDASMergeIter15reset_datum_ptrEPNS0_11ObDASScanOpERl
_ZNK9oceanbase8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorINS0_20ObStoreRowkeyWrapperEPNS0_9ObMvccRowEEEE9get_valueEv
_ZN9oceanbase6common11ObAllocatorUt_11alloc_blockEmRKNS_3lib9ObMemAttrE
_ZN9oceanbase6common11ObAllocator4initEv
_ZN9oceanbase6common16ObMemLeakChecker8on_allocERNS_3lib7AObjectERKNS2_9ObMemAttrE
_ZN9oceanbase8memtable17ObMvccRowIterator5resetEv
_ZN9oceanbase3lib20ObTenantCtxAllocator14common_reallocINS0_9ObjectMgrEEEPvPKvlRKNS0_9ObMemAttrERS1_RT_
_ZN9oceanbase3lib9SetLockerINS0_7ObMutexEE6unlockEv
_ZN9oceanbase3lib9SetLockerINS0_7ObMutexEE7trylockEv
_ZN9oceanbase3lib9ObjectMgr12alloc_objectEmRKNS0_9ObMemAttrE
_ZN9oceanbase6common12ObLatchMutex8try_lockEjPKj
_ZN9oceanbase7storage18ObSSTableRowGetter18inner_get_next_rowERPKNS_12blocksstable10ObDatumRowE
_ZN9oceanbase7storage18ObSSTableRowGetter9fetch_rowERNS0_19ObSSTableReadHandleERPKNS_12blocksstable10ObDatumRowE
_ZNK9oceanbase7storage8ObITable30is_multi_version_minor_sstableEv
_ZN9oceanbase7storage21ObFuseRowCacheFetcher18get_fuse_row_cacheERKNS_12blocksstable13ObDatumRowkeyERNS2_20ObFuseRowValueHandleE
_ZN9oceanbase12blocksstable14ObFuseRowCache7get_rowERKNS0_17ObFuseRowCacheKeyERNS0_20ObFuseRowValueHandleE
_ZN9oceanbase6common15ObKVGlobalCache12get_instanceEv
_ZN9oceanbase12blocksstable17ObFuseRowCacheKeyC1EmRKNS_6common10ObTabletIDERKNS0_13ObDatumRowkeyEllRKNS0_19ObStorageDatumUtilsE
_ZN9oceanbase12blocksstable17ObFuseRowCacheKeyC2EmRKNS_6common10ObTabletIDERKNS0_13ObDatumRowkeyEllRKNS0_19ObStorageDatumUtilsE
_ZN9oceanbase6common9ObKVCacheINS_12blocksstable17ObFuseRowCacheKeyENS2_19ObFuseRowCacheValueEE3getERKS3_RPKS4_RNS0_15ObKVCacheHandleE
_ZN9oceanbase6common15ObKVGlobalCache3getElRKNS0_13ObIKVCacheKeyERPKNS0_15ObIKVCacheValueERPNS0_18ObKVMemBlockHandleE
_ZNK9oceanbase6common13ObIKVCacheKey4hashERm
_ZN9oceanbase6common12ObKVCacheMap3getElRKNS0_13ObIKVCacheKeyERPKNS0_15ObIKVCacheValueERPNS0_18ObKVMemBlockHandleE
_ZNK9oceanbase12blocksstable17ObFuseRowCacheKey5equalERKNS_6common13ObIKVCacheKeyERb
_ZNK9oceanbase12blocksstable17ObFuseRowCacheKey4hashERm
_ZNK9oceanbase12blocksstable21ObFuseRowCacheKeyBase4hashERm
_ZN9oceanbase6common11DefHashFuncINS0_19DatumHashCalculatorILNS0_9ObObjTypeE4ENS0_12ObMurmurHashEEEE7hash_v2ERKNS0_7ObDatumEmRm
_ZN9oceanbase6common22ObKVCacheHazardStation7releaseEl
_ZNK9oceanbase12blocksstable13ObDatumRowkey10murmurhashEmRKNS0_19ObStorageDatumUtilsERm
_ZN9oceanbase6common22ObKVCacheHazardStation7acquireERl
_ZNK9oceanbase12blocksstable21ObFuseRowCacheKeyBase5equalERKS1_Rb
_ZNK9oceanbase12blocksstable13ObDatumRowkey5equalERKS1_RKNS0_19ObStorageDatumUtilsERb
_ZN9oceanbase6common12ObSliceAlloc4freeEPv
_ZZN9oceanbase7storage13ObSingleMerge18inner_get_next_rowERNS_12blocksstable10ObDatumRowEENK5$_482clEPKc
_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE19prefetch_index_treeEv
_ZN9oceanbase3lib9ObjectMgr11alloc_blockEmRKNS0_9ObMemAttrE
_ZZN9oceanbase7storage13ObSingleMerge22get_and_fuse_cache_rowEllRNS_12blocksstable10ObDatumRowERbS5_S5_ENK5$_478clEPKc
_ZN9oceanbase8keybtree8IteratorINS_8memtable20ObStoreRowkeyWrapperEPNS2_9ObMvccRowEE13set_key_rangeES3_bS3_b
_ZN9oceanbase8keybtree10ScanHandleINS_8memtable20ObStoreRowkeyWrapperEPNS2_9ObMvccRowEE9find_pathEPNS0_9BtreeNodeIS3_S5_EES3_
_ZN9oceanbase3sql18ObPushdownOperator22reset_trans_info_datumEv
_ZN9oceanbase12blocksstable23ObIMicroBlockRowFetcherC1Ev
_ZN9oceanbase12blocksstable23ObIMicroBlockRowFetcherC2Ev
_ZN9oceanbase8memtable21ObMemtableGetIteratorC1Ev
_ZN9oceanbase8memtable21ObMemtableGetIteratorC2Ev
_ZNK9oceanbase8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorINS0_20ObStoreRowkeyWrapperEPNS0_9ObMvccRowEEEE7get_keyEv
_ZN9oceanbase7storage13ObVectorStore14reuse_capacityEl
_ZN9oceanbase7storage15ObMultipleMerge18report_tablet_statEv
_ZN9oceanbase12blocksstable9ObSSTable3getERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS0_13ObDatumRowkeyERPNS2_18ObStoreRowIteratorE
_ZN9oceanbase7storage18ObStoreRowIterator4initERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextEPNS0_8ObITableEPKv
_ZNK9oceanbase7storage8ObITable10is_sstableEv
_ZN9oceanbase7storage18ObSSTableRowGetter10inner_openERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextEPNS0_8ObITableEPKv
_ZNK9oceanbase7storage8ObITable20is_ddl_merge_sstableEv
_ZN9oceanbase7storage21ObIndexTreePrefetcher15single_prefetchERNS0_19ObSSTableReadHandleE
_ZN9oceanbase7storage21ObIndexTreePrefetcher20lookup_in_index_treeERNS0_19ObSSTableReadHandleEb
_ZNK9oceanbase12blocksstable26ObRAWIndexBlockRowIterator12end_of_blockEv
_ZNK9oceanbase12blocksstable9ObSSTable26is_ddl_merge_empty_sstableEv
_ZN9oceanbase12blocksstable22ObIndexBlockRowScanner8get_nextERNS0_16ObMicroIndexInfoEbb
_ZN9oceanbase12blocksstable26ObTFMIndexBlockRowIterator15get_cur_ps_nodeEv
_ZN9oceanbase12blocksstable22ObIndexBlockRowScanner16get_next_idx_rowERNS0_16ObMicroIndexInfoE
_ZN9oceanbase7storage21ObIndexTreePrefetcher19prefetch_block_dataERNS_12blocksstable16ObMicroIndexInfoERNS0_22ObMicroBlockDataHandleEbbb
_ZN9oceanbase12blocksstable12MacroBlockIdC1Ellll
_ZN9oceanbase12blocksstable12MacroBlockIdC2Ellll
_ZNK9oceanbase12blocksstable21ObIndexBlockRowHeader19fill_micro_des_metaEbRNS0_19ObMicroBlockDesMetaE
_ZN9oceanbase12blocksstable12MacroBlockIdC1ERKS1_
_ZN9oceanbase12blocksstable12MacroBlockIdC2ERKS1_
_ZN9oceanbase12blocksstable26ObTFMIndexBlockRowIterator8get_nextERPKNS0_21ObIndexBlockRowHeaderERNS0_19ObCommonDatumRowkeyERbS8_RPKNS0_28ObIndexBlockRowMinorMetaInfoERPKcRlSG_
_ZNK9oceanbase12blocksstable14ObRowkeyVector10get_rowkeyElRNS0_19ObCommonDatumRowkeyE
_ZN9oceanbase12blocksstable26ObTFMIndexBlockRowIterator11get_currentERPKNS0_21ObIndexBlockRowHeaderERNS0_19ObCommonDatumRowkeyE
_ZNK9oceanbase12blocksstable22ObIndexBlockDataHeader14get_index_dataElRPKcRl
_ZN9oceanbase12blocksstable21ObIndexBlockRowParser4initEPKcl
_ZN9oceanbase7storage21ObMicroBlockHandleMgr22get_micro_block_handleEPNS0_20ObTableAccessContextERNS_12blocksstable16ObMicroIndexInfoEbbbRNS0_22ObMicroBlockDataHandleEs
_ZN9oceanbase6common20ObPointerSwizzleNode14access_mem_ptrERNS_12blocksstable24ObMicroBlockBufferHandleE
_ZN9oceanbase6common17ObAtomicReference29check_seq_num_and_inc_ref_cntEj
_ZThn24_N9oceanbase12blocksstable21ObDataMicroBlockCache9cache_hitERl
_ZThn24_N9oceanbase12blocksstable22ObIndexMicroBlockCache9cache_hitERl
_ZN9oceanbase12blocksstable9ObSSTable19get_index_tree_rootERNS0_16ObMicroBlockDataEb
_ZNK9oceanbase7storage14ObMetaDiskAddr8is_validEv
_ZN9oceanbase12blocksstable22ObIndexBlockRowScanner4openERKNS0_12MacroBlockIdERKNS0_16ObMicroBlockDataERKNS0_13ObDatumRowkeyElPKNS0_16ObMicroIndexInfoE
_ZN9oceanbase12blocksstable26ObTFMIndexBlockRowIterator10locate_keyERKNS0_13ObDatumRowkeyE
_ZNK9oceanbase12blocksstable14ObRowkeyVector10locate_keyEllRKNS0_13ObDatumRowkeyERKNS0_19ObStorageDatumUtilsERlb
_ZNK9oceanbase12blocksstable14ObColumnVector16inner_locate_keyINS0_14ObStorageDatumEEEibRlS4_RKS3_RKNS0_21ObStorageDatumCmpFuncEb
_ZNK9oceanbase12blocksstable21ObStorageDatumCmpFunc7compareERKNS0_14ObStorageDatumES4_Ri
_ZNK9oceanbase12blocksstable14ObColumnVector16inner_locate_keyIlEEibRlS3_RKNS0_14ObStorageDatumERKNS0_21ObStorageDatumCmpFuncEb
_ZNK9oceanbase12blocksstable14ObColumnVector18locate_integer_keyIlEEibRlS3_PKT_S4_
_ZN9oceanbase12blocksstable22ObIndexBlockRowScanner18init_by_micro_dataERKNS0_16ObMicroBlockDataE
_ZN9oceanbase12blocksstable26ObTFMIndexBlockRowIterator4initERKNS0_16ObMicroBlockDataEPKNS0_19ObStorageDatumUtilsEPNS_6common12ObIAllocatorEbRKNS0_21ObIndexBlockIterParamE
_ZN9oceanbase7storage22ObMicroBlockDataHandle20get_micro_block_dataEPNS_12blocksstable18ObMacroBlockReaderERNS2_16ObMicroBlockDataEb
_ZN9oceanbase7storage22ObMicroBlockDataHandle21get_loaded_block_dataERNS_12blocksstable16ObMicroBlockDataE
_ZZN9oceanbase12blocksstable26ObTFMIndexBlockRowIterator10locate_keyERKNS0_13ObDatumRowkeyEENK5$_855clEPKc
_ZN9oceanbase7storage18ObSSTableRowGetterC2Ev
_ZN9oceanbase3lib9ObjectMgr14realloc_objectEPNS0_7AObjectEmRKNS0_9ObMemAttrE
_ZN9oceanbase3lib9ObjectSet15get_free_objectEj
_ZN9oceanbase8memtable12ObMvccEngine4scanERNS0_15ObMvccAccessCtxERKNS_6common11ObQueryFlagERKNS0_15ObMvccScanRangeENS_5share6ObLSIDERNS0_17ObMvccRowIteratorE
_ZN9oceanbase3lib19ObMallocTimeMonitor18record_malloc_timeERNS_6common16ObBasicTimeGuardElRKNS0_9ObMemAttrE
_ZN9oceanbase6common14ObTscTimestamp17fast_current_timeEv
_ZN9oceanbase8memtable8ObMtHash9fill_pairEPNS0_10ObHashNodeES3_l
_ZN9oceanbase7storage21ObIndexTreePrefetcherC2Ev
_ZN9oceanbase12blocksstable22ObIndexBlockRowScannerC1Ev
_ZN9oceanbase12blocksstable22ObIndexBlockRowScannerC2Ev
_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE19prefetch_micro_dataEv
_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE10drill_downEv
_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE19prefetch_data_blockElRNS_12blocksstable16ObMicroIndexInfoERNS0_22ObMicroBlockDataHandleE
_ZNK9oceanbase7storage8ObITable22is_multi_version_tableEv
_ZN9__gnu_cxx5__ops14_Iter_comp_valIN9oceanbase12blocksstable27ObVectorDatumRowkeyComparorEEclIPKNS3_21ObDiscreteDatumRowkeyEKNS3_13ObDatumRowkeyEEEbT_RT0_
_ZN9oceanbase12blocksstable21ObMicroBlockRowGetter7get_rowERNS_7storage19ObSSTableReadHandleERPKNS0_10ObDatumRowEPNS0_18ObMacroBlockReaderE
_ZN9oceanbase7storage21ObIndexTreePrefetcher15init_basic_infoEiRNS_12blocksstable9ObSSTableERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextE
_ZNK9oceanbase7storage8ObITable20is_normal_cg_sstableEv
_ZN9oceanbase12blocksstable22ObIndexBlockRowScanner14set_iter_paramEPKNS0_9ObSSTableEPKNS_7storage8ObTabletE
_ZN9oceanbase7storage21ObIndexTreePrefetcher18init_index_scannerERNS_12blocksstable22ObIndexBlockRowScannerE
_ZN9oceanbase12blocksstable22ObIndexBlockRowScanner4initERKNS0_19ObStorageDatumUtilsERNS_6common12ObIAllocatorERKNS5_11ObQueryFlagElbPKNS5_8ObIArrayINS_5share6schema9ObColDescEEE
_ZNK9oceanbase12blocksstable9ObSSTable8get_metaERNS0_19ObSSTableMetaHandleEPNS_6common20ObSafeArenaAllocatorE
_ZN9oceanbase7storage21ObIndexTreePrefetcher18check_bloom_filterERKNS_12blocksstable16ObMicroIndexInfoEbRNS0_19ObSSTableReadHandleE
_ZN9oceanbase6common9ObKVCacheINS_12blocksstable21ObBloomFilterCacheKeyENS2_23ObBloomFilterCacheValueEE3getERKS3_RPKS4_RNS0_15ObKVCacheHandleE
_ZN9oceanbase12blocksstable18ObMacroBlockReaderC1Em
_ZN9oceanbase12blocksstable18ObMacroBlockReaderC2Em
_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE23check_data_infos_borderEllRKNS_12blocksstable13ObDatumRowkeyEb
_ZNK9oceanbase12blocksstable19ObCommonDatumRowkey7compareERKNS0_13ObDatumRowkeyERKNS0_19ObStorageDatumUtilsERib
_ZNK9oceanbase12blocksstable21ObDiscreteDatumRowkey7compareERKNS0_13ObDatumRowkeyERKNS0_19ObStorageDatumUtilsERib
_ZN9oceanbase12blocksstable18compare_column_keyIlEEiRNS0_14ObColumnVectorElRKNS0_14ObStorageDatumERKNS0_21ObStorageDatumCmpFuncEbRi
_ZNK9oceanbase12blocksstable14ObRowkeyVector14compare_rowkeyERKNS0_13ObDatumRowkeyElRKNS0_19ObStorageDatumUtilsERib
_ZN9oceanbase8memtable17ObMvccRowIterator4initERNS0_13ObQueryEngineERNS0_15ObMvccAccessCtxERKNS0_15ObMvccScanRangeENS_5share6ObLSIDERKNS_6common11ObQueryFlagE
_ZN9oceanbase8memtable13ObQueryEngine4scanEPKNS0_13ObMemtableKeyEbS4_bRPNS0_22ObIQueryEngineIteratorE
_ZN9oceanbase6common12ObSliceAlloc5allocEv
_ZN9oceanbase7storage19ObSSTableRowScannerINS0_30ObIndexTreeMultiPassPrefetcherILi32ELi3EEEE10inner_openERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextEPNS0_8ObITableEPKv
_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE14switch_contextEiRNS_12blocksstable9ObSSTableERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextEPKv
_ZN9oceanbase12blocksstable22ObMicroBlockRowScanner4initERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextEPKNS0_9ObSSTableE
_ZN9oceanbase12blocksstable21ObMicroBlockRowGetter4initERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextEPKNS0_9ObSSTableE
_ZN9oceanbase12blocksstable23ObIMicroBlockRowFetcher4initERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextEPKNS0_9ObSSTableE
_ZThn24_N9oceanbase12blocksstable21ObDataMicroBlockCache9get_cacheERPNS_6common10ObIKVCacheINS0_20ObMicroBlockCacheKeyENS0_22ObMicroBlockCacheValueEEE
_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE19try_add_query_rangeERNS2_22ObIndexTreeLevelHandleE
_ZN9oceanbase12blocksstable22ObIndexBlockRowScanner4openERKNS0_12MacroBlockIdERKNS0_16ObMicroBlockDataERKNS0_12ObDatumRangeElbbPKNS0_16ObMicroIndexInfoE
_ZN9oceanbase12blocksstable26ObTFMIndexBlockRowIterator12locate_rangeERKNS0_12ObDatumRangeEbbb
_ZNK9oceanbase12blocksstable14ObRowkeyVector12locate_rangeERKNS0_12ObDatumRangeEbbbRKNS0_19ObStorageDatumUtilsERlS8_
_ZZN9oceanbase7storage15ObMultipleMerge20get_next_normal_rowsERllENK5$_604clEPKc
_ZNK9oceanbase12blocksstable21ObBloomFilterCacheKey4hashEv
_ZZN9oceanbase12blocksstable26ObTFMIndexBlockRowIterator12locate_rangeERKNS0_12ObDatumRangeEbbbENK5$_859clEPKc
_ZN9oceanbase8keybtree10ScanHandleINS_8memtable20ObStoreRowkeyWrapperEPNS2_9ObMvccRowEEC2ERKNS0_10ObKeyBtreeIS3_S5_EE
_ZN9oceanbase7storage20ObAggregatedStoreVec14reuse_capacityEl
_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE15init_basic_infoEiRNS_12blocksstable9ObSSTableERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextEPKv
_ZN9oceanbase7storage23ObReallocatedFixedArrayINS0_19ObSSTableReadHandleEE18prepare_reallocateEl
_ZN9oceanbase8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorINS0_20ObStoreRowkeyWrapperEPNS0_9ObMvccRowEEEED2Ev
_ZN9oceanbase7storage19ObSSTableRowScannerINS0_30ObIndexTreeMultiPassPrefetcherILi32ELi3EEEE19open_cur_data_blockERNS0_19ObSSTableReadHandleE
_ZN9oceanbase12blocksstable23ObIMicroBlockRowScanner9set_rangeERKNS0_12ObDatumRangeE
_ZN9oceanbase12blocksstable23ObIMicroBlockRowScanner16locate_range_posEbbRlS2_
_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE15check_blockscanERb
_ZN9oceanbase12blocksstable19ObIMicroBlockReader12locate_rangeERKNS0_12ObDatumRangeEbbRlS5_b
_ZN9oceanbase12blocksstable20ObIMicroBlockDecoder10find_boundERKNS0_13ObDatumRowkeyEblRlRb
_ZN9oceanbase12blocksstable19ObMicroBlockDecoder14compare_rowkeyERKNS0_13ObDatumRowkeyElRi
_ZN9oceanbase12blocksstable20ObIMicroBlockDecoder10find_boundERKNS0_12ObDatumRangeElRlRbS5_S5_
_ZN9oceanbase12blocksstable22EncodingRangeCompareV27compareElRKNS0_12ObDatumRangeEb
_ZN9oceanbase12blocksstable19ObMicroBlockDecoder14compare_rowkeyERKNS0_12ObDatumRangeElRiS5_
_ZN9oceanbase12blocksstable22ObMicroBlockRowScanner4openERKNS0_12MacroBlockIdERKNS0_16ObMicroBlockDataEbb
_ZN9oceanbase12blocksstable23ObIMicroBlockRowScanner4openERKNS0_12MacroBlockIdERKNS0_16ObMicroBlockDataEbb
_ZN9oceanbase12blocksstable19ObMicroBlockDecoder4initERKNS0_16ObMicroBlockDataERKNS_7storage16ObITableReadInfoE
_ZN9oceanbase12blocksstable19ObMicroBlockDecoder7do_initERKNS0_16ObMicroBlockDataE
_ZN9oceanbase12blocksstable19ObMicroBlockDecoder11inner_resetEv
_ZN9oceanbase12blocksstable19ObMicroBlockDecoder13init_decodersEv
_ZN9oceanbase12blocksstable19ObMicroBlockDecoder11add_decoderElRKNS_6common9ObObjMetaERNS0_15ObColumnDecoderE
_ZN9oceanbase12blocksstable19ObMicroBlockDecoder7acquireElRPKNS0_16ObIColumnDecoderE
_ZNK9oceanbase12blocksstable19ObMicroBlockDecoder16get_column_countEv
_ZN9oceanbase12blocksstable23ObIMicroBlockRowScanner14switch_contextERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextEPKNS0_9ObSSTableE
_ZN9oceanbase12blocksstable23ObIMicroBlockRowScanner10set_readerENS_6common14ObRowStoreTypeE
_ZN9oceanbase7storage20ObPushdownAggContext11reuse_batchEv
_ZNK9oceanbase6common8ObRowkey5equalERKS1_Rb
_ZNK9oceanbase7storage15ObSumAggCellVec20can_pushdown_decoderEPNS_12blocksstable19ObIMicroBlockReaderEiPKil
_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE17init_tree_handlesEl
_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE22ObIndexTreeLevelHandleC2Ev
_ZN9oceanbase12blocksstable20ObMicroBlockCacheKeyD1Ev
_ZN9oceanbase12blocksstable20ObMicroBlockCacheKeyD2Ev
_ZNK9oceanbase5share6schema16ObSchemaCacheKey4hashERm
_ZNK9oceanbase3lib17ObMallocAllocator40get_tenant_ctx_allocator_without_tlcacheEmm
_ZNK9oceanbase12blocksstable20ObMicroBlockCacheKey4hashEv
_ZN9oceanbase6common16ObFixedArrayImplINS_7storage19ObSSTableReadHandleENS0_12ObIAllocatorEE16prepare_allocateEl
_ZN9oceanbase7storage21ObMicroInfoComparator7compareERKNS_12blocksstable16ObMicroIndexInfoERKNS2_13ObDatumRowkeyE
_ZN9oceanbase7storage15ObSumAggCellVec5reuseEv
_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE22ObIndexTreeLevelHandle7forwardERS2_b
_ZN9oceanbase12blocksstable22ObIndexBlockRowScanner5reuseEv
_ZN9oceanbase3lib20ObTenantCtxAllocator11alloc_chunkElRKNS0_9ObMemAttrE
_ZN9oceanbase12blocksstable21ObMicroBlockRowGetter14switch_contextERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextEPKNS0_9ObSSTableE
_ZN9oceanbase12blocksstable23ObIMicroBlockRowFetcher14switch_contextERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextEPKNS0_9ObSSTableE
_ZN9oceanbase8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorINS0_20ObStoreRowkeyWrapperEPNS0_9ObMvccRowEEEE5resetEv
_ZNK9oceanbase7storage15ObTableReadInfo17get_max_col_indexEv
_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE22ObIndexTreeLevelHandle8prefetchElRS2_
_ZN9oceanbase7storage21ObFuseRowCacheFetcher18put_fuse_row_cacheERKNS_12blocksstable13ObDatumRowkeyERNS2_10ObDatumRowE
_ZN9oceanbase12blocksstable19ObFuseRowCacheValue4initERKNS0_10ObDatumRowEl
_ZN9oceanbase12blocksstable14ObFuseRowCache7put_rowERKNS0_17ObFuseRowCacheKeyERKNS0_19ObFuseRowCacheValueE
_ZN9oceanbase6common15ObKVGlobalCache3putElRKNS0_13ObIKVCacheKeyERKNS0_15ObIKVCacheValueERPS6_RPNS0_18ObKVMemBlockHandleEb
_ZNK9oceanbase12blocksstable17ObFuseRowCacheKey13get_tenant_idEv
_ZN9oceanbase6common9ObKVCacheINS_12blocksstable17ObFuseRowCacheKeyENS2_19ObFuseRowCacheValueEE3putERKS3_RKS4_b
_ZN9oceanbase6common15ObKVGlobalCache3putINS0_18ObKVMemBlockHandleEEEiRNS0_15ObIKVCacheStoreIT_EElRKNS0_13ObIKVCacheKeyERKNS0_15ObIKVCacheValueERPSC_RPS3_b
_ZN9oceanbase6common15ObIKVCacheStoreINS0_18ObKVMemBlockHandleEE5storeERNS0_13ObKVCacheInstERKNS0_13ObIKVCacheKeyERKNS0_15ObIKVCacheValueERPNS0_13ObKVCachePairERPS2_NS0_15ObKVCachePolicyE
_ZNK9oceanbase12blocksstable17ObFuseRowCacheKey4sizeEv
_ZNK9oceanbase12blocksstable19ObFuseRowCacheValue4sizeEv
_ZNK9oceanbase12blocksstable19ObFuseRowCacheValue9deep_copyEPclRPNS_6common15ObIKVCacheValueE
_ZNK9oceanbase12blocksstable17ObFuseRowCacheKey9deep_copyEPclRPNS_6common13ObIKVCacheKeyE
_ZN9oceanbase6common15ObIKVCacheStoreINS0_18ObKVMemBlockHandleEE12alloc_kvpairERNS0_13ObKVCacheInstEllRPNS0_13ObKVCachePairERPS2_NS0_15ObKVCachePolicyE
_ZN9oceanbase6common14ObKVCacheStore11get_curr_mbERNS0_13ObKVCacheInstENS0_15ObKVCachePolicyE
_ZN9oceanbase6common14ObKVCacheStore15mb_status_matchERNS0_13ObKVCacheInstENS0_15ObKVCachePolicyEPNS0_18ObKVMemBlockHandleE
_ZNK9oceanbase6common14ObKVCacheStore14get_block_sizeEv
_ZN9oceanbase6common14ObKVCacheStore14add_handle_refEPNS0_18ObKVMemBlockHandleE
_ZN9oceanbase6common17ObAtomicReference21check_and_inc_ref_cntEv
_ZNK9oceanbase12blocksstable21ObFuseRowCacheKeyBase9deep_copyEPclRS1_
_ZN9oceanbase6common12ObKVCacheMap3putERNS0_13ObKVCacheInstERKNS0_13ObIKVCacheKeyEPKNS0_13ObKVCachePairEPNS0_18ObKVMemBlockHandleEb
_ZN9oceanbase6common13ObVSliceAlloc5allocEl
_ZN9oceanbase12blocksstable21ObMicroBlockRowGetterC2Ev
_ZNK9oceanbase12blocksstable22ObMicroBlockCacheValue4sizeEv
_ZN9oceanbase6common15ObIKVCacheStoreINS0_18ObKVMemBlockHandleEE26alloc_kvpair_without_retryERNS0_13ObKVCacheInstEllRPNS0_13ObKVCachePairERPS2_NS0_15ObKVCachePolicyE
_ZN9oceanbase6common17ObKVStoreMemBlock5allocElllRPNS0_13ObKVCachePairE
_ZN9oceanbase7storage21ObIndexTreePrefetcher15lookup_in_cacheERNS0_19ObSSTableReadHandleE
_ZN9oceanbase12blocksstable21ObMicroBlockRowGetter13get_block_rowERNS_7storage19ObSSTableReadHandleERNS0_18ObMacroBlockReaderERPKNS0_10ObDatumRowE
_ZN9oceanbase12blocksstable21ObMicroBlockRowGetter13inner_get_rowERKNS0_12MacroBlockIdERKNS0_13ObDatumRowkeyERKNS0_16ObMicroBlockDataERPKNS0_10ObDatumRowE
_ZN9oceanbase12blocksstable22ObEncodeBlockGetReader7get_rowERKNS0_16ObMicroBlockDataERKNS0_13ObDatumRowkeyERKNS_7storage16ObITableReadInfoERNS0_10ObDatumRowE
_ZN9oceanbase12blocksstable22ObEncodeBlockGetReader10locate_rowERKNS0_13ObDatumRowkeyERKNS0_19ObStorageDatumUtilsERPKcRlSB_Rb
_ZN9oceanbase12blocksstable15ObColumnDecoder13quick_compareERKNS0_14ObStorageDatumERKNS0_21ObStorageDatumCmpFuncElRKNS0_11ObBitStreamEPKclRi
_ZN9oceanbase12blocksstable19ObIntArrayFuncTable2atIhEElPKvl
_ZN9oceanbase12blocksstable22ObEncodeBlockGetReader15get_all_columnsEPKcllRNS0_10ObDatumRowE
_ZNK9oceanbase12blocksstable12ObRLEDecoder6decodeERKNS0_18ObColumnDecoderCtxERNS_6common7ObDatumElRKNS0_11ObBitStreamEPKcl
_ZN9oceanbase12blocksstable19ObIntArrayFuncTable11upper_boundItEElPKvlll
_ZN9oceanbase12blocksstable22ObEncodeBlockGetReader17init_by_read_infoERKNS0_16ObMicroBlockDataERKNS_7storage16ObITableReadInfoE
_ZN9oceanbase12blocksstable20ObIEncodeBlockReader13free_decodersEv
_ZNK9oceanbase12blocksstable12ObRawDecoder6decodeERKNS0_18ObColumnDecoderCtxERNS_6common7ObDatumElRKNS0_11ObBitStreamEPKcl
_ZNK9oceanbase12blocksstable14ObConstDecoder6decodeERKNS0_18ObColumnDecoderCtxERNS_6common7ObDatumElRKNS0_11ObBitStreamEPKcl
_ZNK9oceanbase12blocksstable14ObConstDecoder19decode_without_dictERKNS0_18ObColumnDecoderCtxERNS_6common7ObDatumEb
_ZNK9oceanbase12blocksstable13ObDictDecoder6decodeERKNS_6common9ObObjTypeERNS2_7ObDatumEll
_ZN9oceanbase12blocksstableL18load_data_to_datumERKNS_6common9ObObjTypeEPKcllRNS1_7ObDatumE
_ZN9oceanbase12blocksstable20ObIEncodeBlockReader7do_initERKNS0_16ObMicroBlockDataEl
_ZN9oceanbase12blocksstable17ObDecoderCtxArray13get_ctx_arrayERPPNS0_18ObColumnDecoderCtxEl
_ZNK9oceanbase12blocksstable18ObMicroBlockHeader8is_validEv
_ZN9oceanbase12blocksstable20ObIEncodeBlockReader13init_decodersEv
_ZN9oceanbase12blocksstable20ObIEncodeBlockReader11add_decoderElRKNS_6common9ObObjMetaERNS0_15ObColumnDecoderE
_ZN9oceanbase12blocksstable13ObDecoderPoolC1Ev
_ZN9oceanbase12blocksstable13ObDecoderPoolC2Ev
_ZN9oceanbase6common14ObSmallObjPoolINS_12blocksstable23ObColumnDecoderCtxBlockEE5allocERPS3_
_ZN9oceanbase12blocksstable23ObIMicroBlockRowFetcher14prepare_readerENS_6common14ObRowStoreTypeE
_ZN9oceanbase12blocksstable20ObIEncodeBlockReaderC1Ev
_ZN9oceanbase12blocksstable20ObIEncodeBlockReaderC2Ev
_ZN9oceanbase6common12ObAtomicList3popEv
_ZN9oceanbase12blocksstable20ObIEncodeBlockReader7prepareEml
_ZN9oceanbase12blocksstable18ObBloomFilterCache11may_containEmRKNS0_12MacroBlockIdERKNS0_13ObDatumRowkeyERKNS0_19ObStorageDatumUtilsERb
_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE4initEiRNS_12blocksstable9ObSSTableERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextEPKv
_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE19prepare_read_handleERNS2_22ObIndexTreeLevelHandleERNS0_19ObSSTableReadHandleE
_ZN9oceanbase6common16ObFixedArrayImplIPKNS_12blocksstable16ObIColumnDecoderENS0_12ObIAllocatorEE7reserveEl
_ZN9oceanbase12blocksstable18ObIMicroBlockCache15get_cache_blockERKNS0_20ObMicroBlockCacheKeyERNS0_24ObMicroBlockBufferHandleE
_ZN9oceanbase7storage21ObTenantTabletStatMgr11report_statERKNS0_12ObTabletStatERb
_ZN9oceanbase6common20ObPointerSwizzleNode7swizzleERKNS_12blocksstable24ObMicroBlockBufferHandleE
_ZN9oceanbase12blocksstable23ObIMicroBlockRowScanner4initERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextEPKNS0_9ObSSTableE
_ZNK9oceanbase12blocksstable14ObRowkeyVector20compare_datum_rowkeyERKNS0_13ObDatumRowkeyElRKNS0_19ObStorageDatumUtilsElRib
_ZN9oceanbase7storage20ObAggregatedStoreVec18can_use_index_infoERKNS_12blocksstable16ObMicroIndexInfoERb
_ZN9oceanbase6common12ObKVCacheMap18internal_data_moveERKNS0_20ObKVCacheHazardGuardERPNS1_4NodeES7_S7_
_ZN9oceanbase6common22ObKVCacheHazardStation11delete_nodeElPNS0_19ObKVCacheHazardNodeE
_ZNK9oceanbase12blocksstable20ObMicroBlockCacheKey4sizeEv
_ZN9oceanbase7storage20ObAggregatedStoreVec25collect_aggregated_resultEv
_ZN9oceanbase7storage20ObCacheMemController19need_sync_io_nlimitERKNS_6common11ObQueryFlagERNS0_22ObMicroBlockDataHandleEPNS_12blocksstable18ObIMicroBlockCacheERNS2_15ObFIFOAllocatorE
_ZNK9oceanbase6common13ObIKVCacheKey5equalERKS1_Rb
_ZNK9oceanbase5share6schema16ObSchemaCacheKeyeqERKNS_6common13ObIKVCacheKeyE
_ZNK9oceanbase12blocksstable20ObMicroBlockCacheKeyeqERKNS_6common13ObIKVCacheKeyE
_ZNK9oceanbase12blocksstable19ObLogicMacroBlockIdeqERKS1_
_ZN9oceanbase6common16ObFixedArrayImplINS_7storage19ObSSTableReadHandleENS0_12ObIAllocatorEE7reserveEl
_ZN9oceanbase7storage12ObAggCellVec14collect_resultEbPKNS_3sql6ObExprEiii
_ZN9oceanbase6common22ObBitmapNullVectorBase8set_nullEl
_ZN9oceanbase7storage12ObAggCellVec24fill_output_expr_if_needEPNS_3sql6ObExprEPKS3_RNS2_9ObEvalCtxEi
_ZNK9oceanbase5share6schema16ObSchemaCacheKey4hashEv
_ZN9oceanbase7storage19ObMultipleScanMerge19inner_get_next_rowsEv
_ZNK9oceanbase7storage22ObBlockBatchedRowStore6is_endEv
_ZN9oceanbase6common21ObFixedClassAllocatorINS_8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorINS2_20ObStoreRowkeyWrapperEPNS2_9ObMvccRowEEEEEE3getEPKc
_ZN9oceanbase12blocksstable23ObIMicroBlockRowScanner15apply_blockscanEPNS_7storage15ObBlockRowStoreERNS2_20ObTableScanStoreStatE
_ZN9oceanbase6common16ObKVCacheInstMap14get_cache_instERKNS0_16ObKVCacheInstKeyERNS0_19ObKVCacheInstHandleE
_ZNK9oceanbase7storage16ObTxDataCacheKey4hashEv
_ZN9oceanbase7storage19ObSSTableRowScannerINS0_30ObIndexTreeMultiPassPrefetcherILi32ELi3EEEE13get_next_rowsEv
_ZN9oceanbase7storage13ObVectorStore7set_endEv
_ZN9oceanbase7storage20ObCacheMemController32update_data_block_io_size_nlimitElbb
_ZN9oceanbase3lib17ObTenantMemoryMgr12alloc_chunk_ElRKNS0_9ObMemAttrE
_ZN9oceanbase7storage19ObSSTableRowScannerINS0_30ObIndexTreeMultiPassPrefetcherILi32ELi3EEEE10fetch_rowsERNS0_19ObSSTableReadHandleE
_ZN9oceanbase12blocksstable23ObIMicroBlockRowScanner13get_next_rowsEv
_ZN9oceanbase12blocksstable19ObMicroBlockDecoder21reserve_reader_memoryEb
_ZThn8_N9oceanbase7storage20ObAggregatedStoreVec9fill_rowsElRNS_12blocksstable23ObIMicroBlockRowScannerERllRKNS0_14ObFilterResultE
_ZN9oceanbase5share9aggregate21BatchAggregateWrapperINS1_25SumAggregateWithTempStoreILNS_6common17VecValueTypeClassE1ELS5_29ElEEE27collect_batch_group_resultsERNS1_14RuntimeContextEiiiPPKNS_3sql12ObCompactRowERKNSA_7RowMetaEib
_ZN9oceanbase3lib17ObTenantMemoryMgr11alloc_chunkElRKNS0_9ObMemAttrE
_ZN9oceanbase3lib17ObTenantMemoryMgr11update_holdElmRKNS0_7ObLabelERb
_ZNK9oceanbase12blocksstable20ObMicroBlockCacheKey8is_validEv
_ZN9oceanbase7storage15ObBlockRowStore17get_filter_resultERNS0_14ObFilterResultE
_ZN9oceanbase7storage15ObTxTableGuards13lock_for_readERKNS_11transaction16ObLockForReadArgERbRNS_5share3SCNERNS0_12ObCleanoutOpERNS0_11ObReCheckOpE
_ZN9oceanbase7storage15ObTxTableGuards18check_with_tx_dataERKNS_11transaction9ObTransIDERNS0_21ObITxDataCheckFunctorE
_ZN9oceanbase7storage9ObTxTable18check_with_tx_dataERNS0_15ObReadTxDataArgERNS0_21ObITxDataCheckFunctorE
_ZN9oceanbase7storage15ObTxDataOpGuard5resetEv
_ZN9oceanbase12blocksstable19ObMicroBlockDecoderC1Ev
_ZN9oceanbase12blocksstable19ObMicroBlockDecoderC2Ev
_ZN9oceanbase12blocksstable20ObMicroBlockCacheKeyC1EmRKNS0_16ObMicroIndexInfoE
_ZN9oceanbase12blocksstable20ObMicroBlockCacheKeyC2EmRKNS0_16ObMicroIndexInfoE
_ZN9oceanbase12blocksstable23ObIMicroBlockRowScannerC1ERNS_6common12ObIAllocatorE
_ZN9oceanbase12blocksstable23ObIMicroBlockRowScannerC2ERNS_6common12ObIAllocatorE
_ZN9oceanbase7storage13ObVectorStore9fill_rowsElRNS_12blocksstable23ObIMicroBlockRowScannerERllRKNS0_14ObFilterResultE
_ZN9oceanbase7storage13ObVectorStore16fill_output_rowsElRNS_12blocksstable23ObIMicroBlockRowScannerERllRKNS0_14ObFilterResultEbb
_ZN9oceanbase6common9ObKVCacheINS_12blocksstable20ObMicroBlockCacheKeyENS2_22ObMicroBlockCacheValueEE3getERKS3_RPKS4_RNS0_15ObKVCacheHandleE
_ZN9oceanbase3lib14SetLockerNoLogINS0_7ObMutexEE6unlockEv
_ZN9oceanbase6common16ObBasicTimeGuard5clickEPKc
_ZN9oceanbase12blocksstable19ObIntArrayFuncTable11upper_boundIhEElPKvlll
_ZN9oceanbase5share9aggregate21BatchAggregateWrapperINS1_25SumAggregateWithTempStoreILNS_6common17VecValueTypeClassE1ELS5_29ElEEE21collect_group_resultsINS4_19ObFixedLengthFormatINS4_4wide13ObWideIntegerILj128EiEEEEEEiRNS1_14RuntimeContextEiiiPPKNS_3sql12ObCompactRowERKNSG_7RowMetaEib
_ZN9oceanbase5share9aggregate25SumAggregateWithTempStoreILNS_6common17VecValueTypeClassE1ELS4_29ElE20collect_group_resultINS3_19ObFixedLengthFormatINS3_4wide13ObWideIntegerILj128EiEEEEEEiRNS1_14RuntimeContextERKNS_3sql6ObExprEiPKci
_ZN9oceanbase12blocksstable23ObIMicroBlockRowScanner24get_rows_for_rich_formatERKNS_6common8ObIArrayIiEERKNS3_IPKNS_5share6schema13ObColumnParamEEEPKillPPKcPjRNS3_IPNS_3sql6ObExprEEEPNS0_10ObDatumRowEb
_ZN9oceanbase12blocksstable19ObMicroBlockDecoder8get_rowsERKNS_6common8ObIArrayIiEERKNS3_IPKNS_5share6schema13ObColumnParamEEEPKilPPKclPjRNS_3sql9ObEvalCtxERNS3_IPNSL_6ObExprEEEb
_ZN9oceanbase12blocksstable15ObColumnDecoder13decode_vectorEPKNS0_11ObIRowIndexERNS0_17ObVectorDecodeCtxE
_ZN9oceanbase7storage15ObBlockRowStore15apply_blockscanERNS_12blocksstable23ObIMicroBlockRowScannerEbRNS0_20ObTableScanStoreStatE
_ZN9oceanbase3omt10ObThWorker12check_statusEv
_ZN9oceanbase3omt10ObThWorker10check_waitEv
_ZN9oceanbase6common12ObSliceAlloc13prepare_blockEv
_ZN9oceanbase7storage9ObTxTable28check_tx_data_in_mini_cache_ERNS0_15ObReadTxDataArgERNS0_21ObITxDataCheckFunctorE
_ZN9oceanbase7storage9ObTxTable22check_state_and_epoch_ENS_11transaction9ObTransIDElbRi
_ZN9oceanbase7storage22ObBlockBatchedRowStore11get_row_idsEPNS_12blocksstable19ObIMicroBlockReaderERllS5_bRKNS0_14ObFilterResultE
_ZN9oceanbase6common16ObFixedArrayImplIPKNS_12blocksstable16ObIColumnDecoderENS0_12ObIAllocatorEE4initEl
_ZN9oceanbase7storage9ObTxTable26check_tx_data_in_kv_cache_ERNS0_15ObReadTxDataArgERNS0_21ObITxDataCheckFunctorE
_ZN9oceanbase6common9ObKVCacheINS_7storage16ObTxDataCacheKeyENS2_18ObTxDataCacheValueEE3getERKS3_RPKS4_RNS0_15ObKVCacheHandleE
_ZN9oceanbase7storage15ObTxDataKVCache7get_rowERKNS0_16ObTxDataCacheKeyERNS0_19ObTxDataValueHandleE
_ZN9oceanbase6common16ObFixedArrayImplINS_7storage19ObSSTableReadHandleENS0_12ObIAllocatorEE4initEl
_ZN9oceanbase7storage17ObTxDataMiniCache3getENS_11transaction9ObTransIDERNS0_14ObTxCommitDataE
_ZN9oceanbase6common7DRWLock11RDLockGuardD2Ev
_ZN9oceanbase7storage13ObVectorStore18check_can_group_byEPNS_12blocksstable19ObIMicroBlockReaderERllRKNS0_14ObFilterResultERb
_ZN9oceanbase7storage9ObTxTable24check_tx_data_in_tables_ERNS0_15ObReadTxDataArgERNS0_21ObITxDataCheckFunctorE
_ZN9oceanbase11transaction12ObLSTxCtxMgr18check_with_tx_dataERKNS0_9ObTransIDERNS_7storage21ObITxDataCheckFunctorE
_ZN9oceanbase11transaction14ObPartTransCtx18check_with_tx_dataERNS_7storage21ObITxDataCheckFunctorE
_ZN9oceanbase11transaction11ObCtxTxData15get_tx_data_ptrERPNS_7storage8ObTxDataE
_ZN9oceanbase7storage18LockForReadFunctorclERKNS0_8ObTxDataEPNS0_9ObTxCCCtxE
_ZN9oceanbase7storage21ObITxDataCheckFunctor27resolve_tx_data_check_data_EiNS_5share3SCNES3_b
_ZN9oceanbase7storage18LockForReadFunctor19inner_lock_for_readERKNS0_8ObTxDataEPNS0_9ObTxCCCtxE
_ZZN9oceanbase7storage19ObSSTableRowScannerINS0_30ObIndexTreeMultiPassPrefetcherILi32ELi3EEEE19open_cur_data_blockERNS0_19ObSSTableReadHandleEENKUlPKcE9_clES8_
_ZN9oceanbase7storage13ObVectorStore14fill_group_idxEl
_ZNK9oceanbase12blocksstable12MacroBlockId16is_id_mode_shareEv
_ZZN9oceanbase7storage13ObVectorStore16fill_output_rowsElRNS_12blocksstable23ObIMicroBlockRowScannerERllRKNS0_14ObFilterResultEbbENK5$_344clEPKc
_ZN9oceanbase5share9aggregate21BatchAggregateWrapperINS1_25SumAggregateWithTempStoreILNS_6common17VecValueTypeClassE1ELS5_29ElEEE14add_batch_rowsINS4_19ObFixedLengthFormatIlEEEEiRNS1_14RuntimeContextERKNS_3sql15ObBitVectorImplImEERKNSD_9EvalBoundERKNSD_6ObExprEiPcNS1_11RowSelectorE
_ZNK9oceanbase6common10ObIOHandle8is_emptyEv
_ZN9oceanbase6common5ObObj10set_numberENS0_9ObObjTypeE12ObNumberDescPj
_ZNK9oceanbase12blocksstable13ObDictDecoder6decodeERKNS0_18ObColumnDecoderCtxERNS_6common7ObDatumElRKNS0_11ObBitStreamEPKcl
_ZThn24_N9oceanbase12blocksstable21ObDataMicroBlockCache14inc_cache_missEv
_ZNK9oceanbase12blocksstable20ObMicroBlockCacheKey9deep_copyEPclRPNS_6common13ObIKVCacheKeyE
_ZNK9oceanbase12blocksstable19ObStringDiffDecoder13decode_vectorERKNS0_18ObColumnDecoderCtxEPKNS0_11ObIRowIndexERNS0_17ObVectorDecodeCtxE
_ZNK9oceanbase12blocksstable19ObStringDiffDecoder29decode_vector_from_fixed_dataINS_6common16ObDiscreteFormatELb0ELb1EEEiRKNS0_18ObColumnDecoderCtxEPKNS0_11ObIRowIndexERNS0_17ObVectorDecodeCtxE
_ZN9oceanbase6common16ObDiscreteFormat19set_payload_shallowElPKvi
_ZN9oceanbase12blocksstable19ObMicroBlockDecoder13get_row_countERl
_ZZN9oceanbase7storage19ObSSTableRowScannerINS0_30ObIndexTreeMultiPassPrefetcherILi32ELi3EEEE9fetch_rowERNS0_19ObSSTableReadHandleERPKNS_12blocksstable10ObDatumRowEENKUlPKcE3_clESD_
_ZN9oceanbase3lib9AChunkMgr11alloc_chunkEmb
_ZN9oceanbase3lib9AChunkMgr19pop_chunk_with_sizeEm
_ZN9oceanbase3lib10AChunkList3popEv
_ZN9oceanbase7storage20ObAggregatedStoreVec9fill_rowsElRNS_12blocksstable23ObIMicroBlockRowScannerERllRKNS0_14ObFilterResultE
_ZN9oceanbase6common15ObBlockAllocMgr11alloc_blockElRNS_3lib9ObMemAttrE
_ZNK9oceanbase12blocksstable22ObMicroBlockCacheValue9deep_copyEPclRPNS_6common15ObIKVCacheValueE
_ZN9oceanbase6common20ObPointerSwizzleNodeC1Ev
_ZN9oceanbase6common20ObPointerSwizzleNodeC2Ev
_ZN9oceanbase12blocksstable19ObMicroBlockDecoder22update_cached_decodersEPclPKcS4_l
_ZN9oceanbase12blocksstable19ObStringDiffDecoder14update_pointerEPKcS3_
_ZN9oceanbase12blocksstable24ObIntegerBaseDiffDecoder14update_pointerEPKcS3_
_ZN9oceanbase12blocksstable14ObConstDecoder14update_pointerEPKcS3_
_ZN9oceanbase12blocksstable22ObIndexBlockDataHeader33deep_copy_transformed_index_blockERKS1_lPcRl
_ZN9oceanbase6common20ObPointerSwizzleNodeaSERKS1_
_ZN9oceanbase12blocksstable33ObAsyncSingleMicroBlockIOCallback8get_dataEv
_ZN9oceanbase6common14ObKVCacheStore13de_handle_refEPNS0_18ObKVMemBlockHandleEb
_ZN9oceanbase3lib20ObTenantCtxAllocator8ChunkMgr11alloc_chunkEmRKNS0_9ObMemAttrE
_ZN9oceanbase6common10ObIOHandle10get_bufferEv
_ZNK9oceanbase7storage8ObITable14is_ddl_sstableEv
_ZNK9oceanbase7storage16ObStorageMetaKeyeqERKNS_6common13ObIKVCacheKeyE
_ZNK9oceanbase6common22ObBitmapNullVectorBase7is_nullEl
_ZN9oceanbase7storage21ObMicroBlockHandleMgr15submit_async_ioEPNS_12blocksstable18ObIMicroBlockCacheEmRKNS2_16ObMicroIndexInfoEbbRNS0_22ObMicroBlockDataHandleE
_ZThn24_N9oceanbase12blocksstable21ObDataMicroBlockCache10cache_missERl
_ZN9oceanbase12blocksstable18ObIMicroBlockCache8prefetchEmRKNS0_12MacroBlockIdERKNS0_16ObMicroIndexInfoEbRNS0_21ObStorageObjectHandleEPNS_6common12ObIAllocatorEb
_ZN9oceanbase6common8ObIOFlag17set_sys_module_idEm
_ZN9oceanbase12blocksstable18ObIMicroBlockCache8prefetchEmRKNS0_12MacroBlockIdERKNS0_16ObMicroIndexInfoERNS0_21ObStorageObjectHandleERNS0_23ObIMicroBlockIOCallbackEb
_ZN9oceanbase12blocksstable21ObStorageObjectHandle10async_readERKNS0_23ObStorageObjectReadInfoE
_ZNK9oceanbase6common6ObIOFd20is_backup_block_fileEv
_ZNK9oceanbase6common8ObIOFlag8is_validEv
_ZN9oceanbase6common8ObIOFlag8set_readEv
_ZNK9oceanbase6common8ObIOFlag17get_sys_module_idEv
_ZN9oceanbase5share19ObSSIODeviceWrapper12get_instanceEv
_ZN9oceanbase6common8ObIOFlag14set_wait_eventEl
_ZN9oceanbase6common8ObIOFlag8set_modeENS0_8ObIOModeE
_ZN9oceanbase12blocksstable21ObStorageObjectHandle13sn_async_readERKNS0_23ObStorageObjectReadInfoE
_ZNK9oceanbase12blocksstable12MacroBlockId16is_id_mode_localEv
_ZN9oceanbase7storage17ObSSFdCacheHandleC1Ev
_ZN9oceanbase7storage17ObSSFdCacheHandleC2Ev
_ZN9oceanbase6common6ObIOFdC1EPNS0_10ObIODeviceElllll
_ZN9oceanbase6common6ObIOFdC2EPNS0_10ObIODeviceElllll
_ZN9oceanbase6common11ObIOManager8aio_readERKNS0_10ObSSIOInfoERNS0_10ObIOHandleE
_ZN9oceanbase3lib25ObTenantResourceMgrHandle14get_memory_mgrEv
_ZN9oceanbase12blocksstable21ObStorageObjectHandle18set_macro_block_idERKNS0_12MacroBlockIdE
_ZN9oceanbase12blocksstable14ObBlockManager7inc_refERKNS0_12MacroBlockIdE
_ZN9oceanbase6common15ObLinearHashMapINS_12blocksstable12MacroBlockIdENS2_14ObBlockManager9BlockInfoENS0_14ShareMemMgrTagEE7do_get_ERKS3_RS5_
_ZN9oceanbase6common15ObLinearHashMapINS_12blocksstable12MacroBlockIdENS2_14ObBlockManager9BlockInfoENS0_14ShareMemMgrTagEE16load_access_bkt_ERKS3_RmRPNS7_6BucketE
_ZN9oceanbase6common15ObLinearHashMapINS_12blocksstable12MacroBlockIdENS2_14ObBlockManager9BlockInfoENS0_14ShareMemMgrTagEE20do_insert_or_update_ERKS3_RKS5_
_ZN9oceanbase6common15ObLinearHashMapINS_12blocksstable12MacroBlockIdENS2_14ObBlockManager9BlockInfoENS0_14ShareMemMgrTagEE17load_factor_ctrl_Em
_ZN9oceanbase6common17ObjHashCalculatorILNS0_9ObObjTypeE5ENS0_13ObDefaultHashENS0_5ObObjEE15calc_hash_valueERKS4_mRm
_ZN9oceanbase12blocksstableL18nonext_ext_compareERKNS0_14ObStorageDatumES3_RKNS_6common9ObCmpFuncERi
_ZN9oceanbase6common10ObSSIOInfoC1Ev
_ZN9oceanbase6common10ObSSIOInfoC2Ev
_ZN9oceanbase6common10ObSSIOInfoD1Ev
_ZN9oceanbase6common10ObSSIOInfoD2Ev
_ZN9oceanbase7storage17ObSSFdCacheHandleD1Ev
_ZN9oceanbase7storage17ObSSFdCacheHandleD2Ev
_ZN9oceanbase6common11ObIOManager10tenant_aioERKNS0_10ObSSIOInfoERNS0_10ObIOHandleE
_ZN9oceanbase10logservice11coordinator17ObFailureDetector28is_data_disk_has_fatal_errorEv
_ZN9oceanbase3omt10ObThWorker14check_throttleEv
_ZN9oceanbase12blocksstable21ObStorageObjectHandle4waitEv
_ZN9oceanbase6common10ObIOHandle4waitEl
_ZN9oceanbase6common10ObIOResult4waitEl
_ZN9oceanbase6common10ObIOHandle8estimateEv
_ZN9oceanbase12blocksstable33ObAsyncSingleMicroBlockIOCallbackC1Ev
_ZN9oceanbase12blocksstable33ObAsyncSingleMicroBlockIOCallbackC2Ev
_ZN9oceanbase6common12ObIOCallbackC2ENS0_16ObIOCallbackTypeE
_ZNK9oceanbase4palf13LogKVCacheKey4hashEv
_ZNK9oceanbase12blocksstable24ObIntegerBaseDiffDecoder13decode_vectorERKNS0_18ObColumnDecoderCtxEPKNS0_11ObIRowIndexERNS0_17ObVectorDecodeCtxE
_ZNK9oceanbase12blocksstable24ObIntegerBaseDiffDecoder19inner_decode_vectorINS_6common19ObFixedLengthFormatIlEELb0EEEiRKNS0_18ObColumnDecoderCtxERNS0_17ObVectorDecodeCtxE
_ZN9oceanbase12blocksstable11ObBitStream3getILNS1_21ObBitStreamUnpackTypeE1EEEiPKhlllRl
_ZZN9oceanbase7storage19ObSSTableRowScannerINS0_30ObIndexTreeMultiPassPrefetcherILi32ELi3EEEE9fetch_rowERNS0_19ObSSTableReadHandleERPKNS_12blocksstable10ObDatumRowEENKUlPKcE7_clESD_
_ZZN9oceanbase7storage19ObSSTableRowScannerINS0_30ObIndexTreeMultiPassPrefetcherILi32ELi3EEEE10fetch_rowsERNS0_19ObSSTableReadHandleEENKUlPKcE7_clES8_
_ZN9oceanbase6common17ObTenantIOManager9inner_aioERKNS0_10ObSSIOInfoERNS0_10ObIOHandleE
_ZN9oceanbase6common13ObIOScheduler16schedule_requestERNS0_11ObIORequestE
_ZN9oceanbase6common17ObTenantIOManager20alloc_req_and_resultERKNS0_10ObSSIOInfoERNS0_10ObIOHandleERPNS0_11ObIORequestERNS0_11ObRefHolderIS7_EE
_ZN9oceanbase6common13ObSSIORequest16set_block_handleERKNS0_10ObSSIOInfoE
_ZN9oceanbase6common14ObIOObjectPoolINS0_11ObIORequestENS0_13ObSSIORequestEE5allocERPS2_
_ZN9oceanbase6common13ObIOScheduler17schedule_request_ERNS0_11ObIORequestEl
_ZN9oceanbase6common10ObIOSender15enqueue_requestERNS0_11ObIORequestE
_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
_ZN9oceanbase6common15ObTenantIOClock19calc_phyqueue_clockEPNS0_10ObPhyQueueERNS0_11ObIORequestE
_ZN9oceanbase6common11ObIORequest4initERKNS0_10ObSSIOInfoEPNS0_10ObIOResultE
_ZNK9oceanbase6common10ObIODevice19get_io_aligned_sizeERl
_ZNK9oceanbase6common11ObIORequest8is_validEv
_ZN9oceanbase6common13ObSSIORequest19set_fd_cache_handleERKNS0_10ObSSIOInfoE
_ZN9oceanbase6common11ObIORequest24calc_io_offset_and_size_Ev
_ZN9oceanbase3sql10ObOperator17filter_row_vectorERNS0_9ObEvalCtxERKNS_6common8ObIArrayIPNS0_6ObExprEEERKNS0_15ObBitVectorImplImEERb
_ZN9oceanbase6common17ObTenantIOManager21alloc_and_init_resultERKNS0_10ObSSIOInfoERPNS0_10ObIOResultE
_ZN9oceanbase6common14ObIOObjectPoolINS0_10ObIOResultES2_E5allocERPS2_
_ZN9oceanbase6common10ObIOResult4initERKNS0_10ObSSIOInfoE
_ZN9oceanbase6common17ObjHashCalculatorILNS0_9ObObjTypeE22ENS0_13ObDefaultHashENS0_5ObObjEE15calc_hash_valueERKS4_mRm
_ZNK9oceanbase7storage16ObStorageMetaKey4hashEv
_ZN9oceanbase12blocksstable12ObRawDecoder14update_pointerEPKcS3_
_ZNK9oceanbase6common11ObIOManager21get_tenant_io_managerEmRNS0_11ObRefHolderINS0_17ObTenantIOManagerEEE
_ZNK9oceanbase6common15ObOptSystemStat3Key4hashEv
_ZN9oceanbase7storage31ObSSTableMultiVersionRowScanner10inner_openERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextEPNS0_8ObITableEPKv
_ZNK9oceanbase12blocksstable13ObDatumRowkey23to_multi_version_rowkeyEbRNS_6common12ObIAllocatorERS1_
_ZN9oceanbase6common11ObIOManager12get_instanceEv
_ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScanner5reuseEv
_ZZN9oceanbase7storage21ObTenantTabletStatMgr11report_statERKNS0_12ObTabletStatERbENK4$_94clEPKc
_ZN9oceanbase6common8ObLogger14log_message_kvIJNS0_8ObILogKVES3_S3_EEEvPKciS5_iS5_miS5_DpOKT_
_ZN9oceanbase6common8ObLogger6log_itIRZNS1_14log_message_kvIJNS0_8ObILogKVES4_S4_EEEvPKciS6_iS6_miS6_DpOKT_EUlPclRlE_EEvS6_S6_iS6_iS6_miOT_
_ZN9oceanbase6common8ObLogger14do_log_messageIZNS1_14log_message_kvIJNS0_8ObILogKVES4_S4_EEEvPKciS6_iS6_miS6_DpOKT_EUlPclRlE_EEvbS6_S6_iS6_iS6_bmiRT_
_ZN9oceanbase6common8ObLogger19backtrace_if_neededERNS0_10ObPLogItemEb
_ZN9oceanbase6common8ObLogger15fill_log_bufferIJNS0_8ObILogKVES3_EEEiPclRlPKcRKS3_DpRKT_
_ZNK9oceanbase6common7ObLogKVINS0_20ObLogPrintPointerCntIPNS_5share8detector9ObLCLNodeEEELb1EE5printEPclRlb
_ZNK9oceanbase6common7ObLogKVIRKNS_4palf3LSNELb0EE5printEPclRlb
_ZNK9oceanbase6common7ObLogKVIRKNS_5share26ObArbitrationServiceStatusELb0EE5printEPclRlb
_ZNK9oceanbase6common7ObLogKVIRKNS_5share8detector13UserBinaryKeyELb0EE5printEPclRlb
_ZNK9oceanbase6common7ObLogKVIRKNS_7storage12ObTabletStatELb0EE5printEPclRlb
_ZN9oceanbase12blocksstable12ObRLEDecoder14update_pointerEPKcS3_
_ZN9oceanbase3sql12VectorHeader25init_uniform_const_vectorENS_6common17VecValueTypeClassEPNS2_7ObDatumEPNS0_10ObEvalInfoE
_ZN9oceanbase7storage15ObMultipleMerge26handle_lob_before_fuse_rowEv
_ZN9oceanbase6common15ObTenantIOClock17sync_tenant_clockEPS1_
_ZN9oceanbase8memtable23ObMemtableMScanIterator18inner_get_next_rowERPKNS_12blocksstable10ObDatumRowE
_ZN9oceanbase12blocksstable13ObDecoderPool4freeINS0_14ObConstDecoderEEEiPT_
_ZN9oceanbase3lib9ObjectMgr15destroy_sub_mgrEPNS0_12SubObjectMgrE
_ZN9oceanbase12blocksstable14ObRowkeyVector9deep_copyEPcRllRKS1_
_ZN9oceanbase12blocksstable14ObRowkeyVector22prepare_rowkeys_bufferEllPcRllPS1_
_ZNK9oceanbase12blocksstable14ObRowkeyVector10get_rowkeyElRNS0_13ObDatumRowkeyE
_ZN9oceanbase12blocksstable19extract_datum_valueIlEEvRNS0_14ObColumnVectorElRNS0_14ObStorageDatumE
_ZN9oceanbase12blocksstable14ObColumnVector9deep_copyEPcRllRKS1_
_ZN9oceanbase12blocksstableL21acquire_local_decoderINS0_12ObRawDecoderEEEiRNS0_13ObDecoderPoolERKNS0_18ObMicroBlockHeaderERKNS0_14ObColumnHeaderEPKcRPKNS0_16ObIColumnDecoderE
_ZN9oceanbase12blocksstable12ObRawDecoder16locate_cell_dataINS0_14ObColumnHeaderEEEiRPKcRlS5_lRKNS0_18ObMicroBlockHeaderERKS3_RKT_
_ZN9oceanbase12blocksstableL21acquire_local_decoderINS0_13ObDictDecoderEEEiRNS0_13ObDecoderPoolERKNS0_18ObMicroBlockHeaderERKNS0_14ObColumnHeaderEPKcRPKNS0_16ObIColumnDecoderE
_ZN9oceanbase12blocksstable13ObDecoderPool16alloc_miss_cacheINS0_13ObDictDecoderEEEiRPT_
_ZN9oceanbase6common14ObSmallObjPoolINS_12blocksstable13ObDictDecoderEE5allocERPS3_
_ZN9oceanbase12blocksstableL21acquire_local_decoderINS0_14ObConstDecoderEEEiRNS0_13ObDecoderPoolERKNS0_18ObMicroBlockHeaderERKNS0_14ObColumnHeaderEPKcRPKNS0_16ObIColumnDecoderE
_ZN9oceanbase6common14ObKVCacheStore8alloc_mbERNS_3lib25ObTenantResourceMgrHandleEmll
_ZN9oceanbase3sql20ObMergeDistinctVecOp29compare_in_column_with_formatINS_6common9ObIVectorEEEiPT_PKNS0_11ObBatchRowsEllRl
_ZN9oceanbase3sql20ObMergeDistinctVecOp17compare_in_columnINS_6common9ObIVectorELb0ELb1ELb1EEEiPT_lPKNS0_11ObBatchRowsElRl
_ZNK9oceanbase6common15ObUniformFormatILb0EE10get_lengthEl
_ZNK9oceanbase6common15ObUniformFormatILb0EE11get_payloadEl
_ZNK9oceanbase6common15ObUniformFormatILb0EE7is_nullEl
_ZNK9oceanbase6common15ObUniformVectorILb0ENS0_13VectorBasicOpILNS0_17VecValueTypeClassE13EEEE13null_last_cmpERKNS_3sql6ObExprElbPKciRi
_ZN9oceanbase6common21ObNullSafeDatumStrCmpILNS0_15ObCollationTypeE45ELb0ELb0EE3cmpERKNS0_7ObDatumES6_Ri
_ZN9oceanbase3sql20ObMergeDistinctVecOp17compare_in_columnINS_6common9ObIVectorELb1ELb1ELb1EEEiPT_lPKNS0_11ObBatchRowsElRl
_ZN9oceanbase6common4hash11ObHashTableImNS1_12ObReferedMapImNS_10rootserver14DRUnitStatInfoEE4ItemENS1_9hash_funcImEENS1_8equal_toImEENS7_6GetKeyENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi24ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv
_ZN9oceanbase8memtable13ObLockWaitMgr4run1Ev
_ZN9oceanbase8memtable13ObLockWaitMgr13check_timeoutEv
_ZN9oceanbase6common13ObSEArrayImplINS_8memtable13ObLockWaitMgr8SessPairELl16ENS0_19ModulePageAllocatorELb0EE7destroyEv
_ZN9oceanbase8memtable13ObLockWaitMgr26fetch_deadlocked_sessions_ERPNS_6common9ObSEArrayINS1_8SessPairELl16ENS2_19ModulePageAllocatorELb0EEE
_ZZN9oceanbase8memtable13ObLockWaitMgr13check_timeoutEvENK4$_21clEPKc
_ZN9oceanbase3lib6_SBaseD2Ev
_ZN9oceanbase3omt10ObThWorker6workerERlS2_Ri
_ZN9oceanbase6common13ObTimeUtility12current_timeEv
_ZN9oceanbase6common16ObWaitEventGuardD1Ev
_ZN9oceanbase6common16ObWaitEventGuardD2Ev
_ZN9oceanbase6common16ObWaitEventGuardC1Elmlllb
_ZN9oceanbase6common16ObWaitEventGuardC2Elmlllb
_ZN9oceanbase3lib2_SILNS0_13ContextSourceE1EED2Ev
_ZN9oceanbase3lib17__MemoryContext__15destory_contextEPS1_
_ZN9oceanbase6common11ObAllocator4freeEPv
_ZN9oceanbase5share2_SILNS0_12ObEntityTypeE0ELNS0_12EntitySourceE0EED2Ev
_ZN9oceanbase3lib17__MemoryContext__6deinitEv
_ZN9oceanbase6common12ObLatchMutexD1Ev
_ZN9oceanbase6common12ObLatchMutexD2Ev
_ZN9oceanbase3lib18SetDoNothingLocker4lockEv
_ZN9oceanbase3lib18SetDoNothingLocker6unlockEv
_ZN9oceanbase6common11ObAllocatorD2Ev
_ZN9oceanbase3lib20ObTenantCtxAllocator11common_freeEPv
_ZN9oceanbase3lib9IBlockMgr13get_tenant_idEv
_ZN9oceanbase3lib20ObTenantCtxAllocator7on_freeERNS0_7AObjectE
_ZN9oceanbase3lib9ObjectSet5resetEv
_ZN9oceanbase3lib9ObjectSet11free_objectEPNS0_7AObjectE
_ZN9oceanbase5share2_SILNS0_12ObEntityTypeE1ELNS0_12EntitySourceE2EED2Ev
_ZN9oceanbase3lib9ObjectSet14do_free_objectEPNS0_7AObjectE
_ZN9oceanbase3lib9IBlockMgr10get_ctx_idEv
_ZN9oceanbase3lib9ObjectSet18free_normal_objectEPNS0_7AObjectE
_ZN9oceanbase3lib9ObjectSet9merge_objEPNS0_7AObjectE
_ZN9oceanbase3lib9ObjectSet10free_blockEPNS0_6ABlockE
_ZN9oceanbase3lib8BlockSet10free_blockEPNS0_6ABlockE
_ZN9oceanbase3lib8BlockSet19take_off_free_blockEPNS0_6ABlockEiPNS0_6AChunkE
_ZN9oceanbase3lib12SubObjectMgr10free_blockEPNS0_6ABlockE
_ZN9oceanbase3lib9ObjectSet15free_big_objectEPNS0_7AObjectE
_ZN9oceanbase5share13ObTenantSpace15guard_deinit_cbERKS1_Pc
_ZN9oceanbase6common12TCRLockGuardC2ERKNS0_8TCRWLockE
_ZN9oceanbase6common8TCRWLock10try_rdlockERl
_ZN9oceanbase3lib20ObTenantCtxAllocator11ReqChunkMgr10free_chunkEPNS0_6AChunkERKNS0_9ObMemAttrE
_ZN9oceanbase3lib8BlockSet10free_chunkEPNS0_6AChunkE
_ZN9oceanbase3lib2_SILNS0_13ContextSourceE1EEC2IJNS0_11DynamicInfoERNS0_12ContextParamEPNS0_10StaticInfoEEEEbDpOT_
_ZN9oceanbase3lib17__MemoryContext__14create_contextIJRNS0_12ContextParamERPNS0_10StaticInfoEEEEiRNS0_13MemoryContextERS1_RKNS0_11DynamicInfoEDpOT_
_ZN9oceanbase3lib17__MemoryContext__4initEv
_ZN9oceanbase3lib9ObjectSet20take_off_free_objectEPNS0_7AObjectE
_ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE
_ZN9oceanbase5share13ObTenantSpace13guard_init_cbERKS1_PcRb
_ZN9oceanbase6common20ObSafeArenaAllocatorD2Ev
_ZN9oceanbase6common16ObMemLeakChecker7on_freeERNS_3lib7AObjectE
_ZN9oceanbase6common13ObPageManager10free_blockEPNS_3lib6ABlockE
_ZN9oceanbase3omt8ObTenant15get_new_requestERNS0_10ObThWorkerElRPNS_3rpc9ObRequestE
_ZN9oceanbase6common16ObPriorityQueue2ILi1ELi2ELi3EE6do_popERPNS0_6ObLinkEll
_ZN9oceanbase6common11ObLinkQueue3popERPNS0_6ObLinkE
_ZN9oceanbase6common9SCondTempILi3EE4waitEl
_ZN9oceanbase3lib7ObFutex4waitEil
_ZN9oceanbase3omt10ObThWorker25set_th_worker_thread_nameEv
_ZN9oceanbase5share13ObTenantSpace4rootEv
futex_hook
_ZN9oceanbase3lib9ObjectSet16check_has_unfreeEPcS2_
_ZN9oceanbase3lib17__MemoryContext__10init_allocERNS_6common11ObAllocatorEbj
_ZN9oceanbase6common12ObLatchMutexC1Ev
_ZN9oceanbase6common12ObLatchMutexC2Ev
_ZN9oceanbase6common11ObAllocatorC2EPNS_3lib17__MemoryContext__ERKNS2_9ObMemAttrEbj
_ZN9oceanbase3omt10ObThWorker15process_requestERNS_3rpc9ObRequestE
_ZN9oceanbase3omt17ObWorkerProcessor7processERNS_3rpc9ObRequestE
_ZN9oceanbase3omt17ObWorkerProcessor16process_err_testEv
_ZN9oceanbase3rpc5frame15ObReqTranslator9translateERNS0_9ObRequestERPNS1_14ObReqProcessorE
_ZN9oceanbase3omt17ObWorkerProcessor11process_oneERNS_3rpc9ObRequestE
_ZN9oceanbase8observer8ObMPBase7cleanupEv
_ZN9oceanbase3rpc5frame14ObReqProcessor7destroyEv
_ZN9oceanbase8observer8ObMPBase14before_processEv
_ZN9oceanbase3rpc9ObRequest15set_trace_pointEi
_ZN9oceanbase6common20ObActiveSessionGuard17setup_default_ashEv
_ZN9oceanbase3rpc5frame14ObReqProcessor14set_ob_requestERNS0_9ObRequestE
_ZN9oceanbase8observer8ObMPBase19setup_packet_senderEv
_ZNK9oceanbase8observer16ObMPPacketSender8get_connEv
_ZN9oceanbase3rpc5frame14ObSqlProcessor3runEv
_ZNK9oceanbase3omt10ObThWorker10need_retryEv
_ZN9oceanbase3sql8ObParserD1Ev
_ZN9oceanbase3sql8ObParserD2Ev
_ZN9oceanbase11transaction17ObTxnFreeRouteCtx24init_before_update_stateEb
_ZN9oceanbase8observer8ObMPBase12flush_bufferEb
_ZN9oceanbase3sql16ObQueryRetryInfo5resetEv
_ZNK9oceanbase8observer8ObMPBase8get_connEv
_ZN9oceanbase8observer16ObMPPacketSender7do_initEPNS_3rpc9ObRequestEhhbbl
_ZN9oceanbase3rpc9ObRequest17generate_trace_idERKNS_6common6ObAddrE
_ZN9oceanbase8observer8ObMPBase8responseEi
_ZN9oceanbase8observer9ObMPQuery11deserializeEv
_ZN9oceanbase8observer9ObMPQuery7processEv
_ZN9oceanbase8observer16ObMySQLResultSetD2Ev
_ZN9oceanbase5share15ObGlobalContext12get_instanceEv
_ZN9oceanbase3sql16ObSQLSessionInfo18set_txn_free_routeEb
_ZN9oceanbase6common11ObSqlString5resetEv
_ZN9oceanbase5trace7ObTrace12get_instanceEv
_ZN9oceanbase5trace7ObTrace10begin_spanEjhb
_ZN9oceanbase5trace7ObTrace7set_tagINS_6common8ObStringEJEEEv9ObTagTypeRKT_
_ZN9oceanbase3sql13ObSpmCacheCtx5resetEv
_ZN9oceanbase3sql16ObSQLSessionInfo22post_sync_session_infoEv
_ZN9oceanbase6common21ObSessionStatEstGuardD1Ev
_ZN9oceanbase6common21ObSessionStatEstGuardD2Ev
_ZN9oceanbase8observer8ObMPBase25setup_user_resource_groupERNS0_14ObSMConnectionEmPNS_3sql16ObSQLSessionInfoE
_ZN9oceanbase3sql10ObFLTUtils13init_flt_infoENS_7obmysql13Ob20ExtraInfoERNS0_16ObSQLSessionInfoEb
_ZNK9oceanbase3sql18ObBasicSessionInfo31is_server_status_in_transactionEv
_ZN9oceanbase7obmysql23ObPocSqlRequestOperator18finish_sql_requestEPNS_3rpc9ObRequestE
_ZN9oceanbase3lib21ObMallocCallbackGuardD1Ev
_ZN9oceanbase3lib21ObMallocCallbackGuardD2Ev
_ZN9oceanbase7obmysql23ObPocSqlRequestOperator20async_write_responseEPNS_3rpc9ObRequestEPKcl
_ZN9oceanbase8observer16ObMPPacketSender14revert_sessionEPNS_3sql16ObSQLSessionInfoE
_ZN9oceanbase3sql10ObSQLUtils20handle_plan_baselineERKNS0_17ObAuditRecordDataEPNS0_14ObPhysicalPlanEiRNS0_8ObSqlCtxE
_ZN9oceanbase6common4hash11ObHashTableINS_3sql15ObTenantUserKeyENS1_11HashMapPairIS4_mEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS6_EELi97ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKS4_RS6_l
_ZN9oceanbase8observer14ObReqTimeGuardC2Ev
_ZN9oceanbase8observer8ObMPBase18process_extra_infoERNS_3sql16ObSQLSessionInfoERKNS_7obmysql16ObMySQLRawPacketERb
_ZN9oceanbase6common13ObSEArrayImplINS0_8ObStringELl1ENS0_19ModulePageAllocatorELb0EE9push_backERKS2_
_ZNK9oceanbase5share6schema27ObMultiVersionSchemaService37get_tenant_received_broadcast_versionEmRlb
_ZN9oceanbase3sql10ObFLTUtils22init_flt_log_frameworkERNS0_16ObSQLSessionInfoEb
_ZN9oceanbase11transaction8ObTxDesc20in_tx_for_free_routeEv
_ZN9oceanbase6common12ObLatchMutex6unlockEv
_ZN9oceanbase6common12ObLatchMutex4lockEjl
_ZN9oceanbase11transaction8ObTxDesc21in_tx_for_free_route_Ev
_ZN9oceanbase6common10to_cstringINS0_12ObCurTraceId7TraceIdEEEPKcRKT_NS0_8BoolTypeILb0EEE
_ZN9oceanbase6common15databuff_printfEPclRlPKcz
_ZN9oceanbase6common13CStringBufMgr14try_clear_listEv
_ZN9oceanbase5trace7ObTrace7set_tagIlJEEEv9ObTagTypeRKT_
_ZN9oceanbase5trace7ObTrace10reset_spanEv
_ZN9oceanbase3sql18ObBasicSessionInfo25check_and_init_retry_infoERKNS_6common12ObCurTraceId7TraceIdERKNS2_8ObStringE
_ZNK9oceanbase8observer8ObMPBase16record_flt_traceERNS_3sql16ObSQLSessionInfoE
_ZN9oceanbase3sql8ObParserC1ERNS_6common12ObIAllocatorEmNS0_17ObCharsets4ParserEPNS0_22QuestionMarkDefNameCtxE
_ZN9oceanbase3sql8ObParserC2ERNS_6common12ObIAllocatorEmNS0_17ObCharsets4ParserEPNS0_22QuestionMarkDefNameCtxE
_ZN9oceanbase3sql8ObParser19split_multiple_stmtERKNS_6common8ObStringERNS2_8ObIArrayIS3_EERNS0_13ObMPParseStatEbb
_ZN9oceanbase3sql18ObBasicSessionInfo21gen_configs_in_pc_strEv
_ZN9oceanbase3sql20ObSecurityAuditUtils21handle_security_auditERNS0_11ObResultSetEPNS_5share6schema19ObSchemaGetterGuardEPKNS0_6ObStmtERKNS_6common8ObStringEi
_ZNK9oceanbase3sql11ObResultSet23need_end_trans_callbackEv
_ZN9oceanbase8observer9ObMPQuery19process_single_stmtERKNS_3sql15ObMultiStmtItemEPNS0_14ObSMConnectionERNS2_16ObSQLSessionInfoEbbRbSA_
_ZN9oceanbase7obmysql7OMPKEOFD1Ev
_ZN9oceanbase7obmysql7OMPKEOFD2Ev
_ZNK9oceanbase3sql13ObExecContext23get_min_cluster_versionEv
_ZNK9oceanbase3sql18ObBasicSessionInfo20get_log_id_level_mapEv
_ZN9oceanbase3sql16ObSQLSessionInfo28update_stat_from_exec_recordEv
_ZN9oceanbase6common16ObFixedArrayImplIPNS0_9ObSEArrayIlLl4ENS0_19ModulePageAllocatorELb1EEENS0_12ObIAllocatorEE7destroyEv
_ZN9oceanbase6common20ObActiveSessionGuard9setup_ashERNS0_17ActiveSessionStatE
_ZN9oceanbase6common16ObFixedArrayImplINS_3sql18ObDupTabConstraintENS0_12ObIAllocatorEE7destroyEv
_ZThn56_N9oceanbase8observer8ObMPBase19update_last_pkt_posEv
_ZN9oceanbase6common24ObFatalErrExtraInfoGuardC1Ev
_ZN9oceanbase6common24ObFatalErrExtraInfoGuardC2Ev
_ZN9oceanbase6common16ObFixedArrayImplINS0_8ObStringENS0_12ObIAllocatorEE7destroyEv
_ZN9oceanbase6common16ObFixedArrayImplINS_3sql18LocationConstraintENS0_12ObIAllocatorEE7destroyEv
_ZTHN9oceanbase6common14ObSqlInfoGuard11tl_sql_infoE
_ZNK9oceanbase5share6schema27ObMultiVersionSchemaService35get_tenant_refreshed_schema_versionEmRlb
_ZNK9oceanbase5share6schema16ObSchemaStoreMap3getEm
_ZN9oceanbase6common24ObFatalErrExtraInfoGuardD1Ev
_ZN9oceanbase6common24ObFatalErrExtraInfoGuardD2Ev
_ZNK9oceanbase3sql16ObSQLSessionInfo22is_txn_free_route_tempEv
_ZNK9oceanbase8observer8ObMPBase16init_process_varERNS_3sql8ObSqlCtxERKNS2_15ObMultiStmtItemERNS2_16ObSQLSessionInfoE
_ZN9oceanbase6common14ObMaxWaitGuardC1EPNS0_15ObWaitEventDescEPNS0_21ObDiagnoseSessionInfoE
_ZN9oceanbase6common14ObMaxWaitGuardC2EPNS0_15ObWaitEventDescEPNS0_21ObDiagnoseSessionInfoE
_ZThn56_N9oceanbase8observer8ObMPBase14send_ok_packetERNS_3sql16ObSQLSessionInfoERNS0_10ObOKPParamEPNS_7obmysql13ObMySQLPacketE
_ZN9oceanbase3sql18ObBasicSessionInfo18set_session_state_ENS0_17ObSQLSessionStateE
_ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql20ObTablePartitionInfoENS0_12ObIAllocatorEE7destroyEv
_ZN9oceanbase3sql8ObSqlCtx5clearEv
_ZN9oceanbase3lib21ObMallocCallbackGuardC1ERNS0_16ObMallocCallbackE
_ZN9oceanbase3lib21ObMallocCallbackGuardC2ERNS0_16ObMallocCallbackE
_ZN9oceanbase6common16ObTotalWaitGuardD1Ev
_ZN9oceanbase6common16ObTotalWaitGuardD2Ev
_ZNK9oceanbase5share6schema19ObSchemaGetterGuard18get_schema_versionEmRl
_ZN9oceanbase3sql5ObSql27pc_get_plan_and_fill_resultERNS0_14ObPlanCacheCtxERNS0_11ObResultSetERiRb
_ZN9oceanbase6common20ObActiveSessionGuard8get_statEv
_ZN9oceanbase3sql17ObAuditRecordData24update_event_stage_stateEv
_ZN9oceanbase6common21ObSessionStatEstGuardC1Emmb
_ZN9oceanbase6common21ObSessionStatEstGuardC2Emmb
_ZN9oceanbase3sql15ObSchemaChecker17is_ora_priv_checkEv
_ZN9oceanbase3sql12ObExecRecord10record_endEPNS_6common21ObDiagnoseSessionInfoE
_ZN9oceanbase3sql12ObExecRecord11update_statEv
_ZN9oceanbase3sql12ObExecRecord12record_startEPNS_6common21ObDiagnoseSessionInfoE
_ZN9oceanbase3sql18ObBasicSessionInfo38update_query_sensitive_system_variableERNS_5share6schema19ObSchemaGetterGuardE
_ZN9oceanbase5trace7ObTrace8end_spanEPNS0_9ObSpanCtxE
_ZN9oceanbase3sql11ObResultSetD1Ev
_ZN9oceanbase3sql11ObResultSetD2Ev
_ZN9oceanbase3sql9ObOpInputD2Ev
_ZN9oceanbase3sql14ObSubSchemaCtx5resetEv
_ZN9oceanbase6common4hash9ObHashMapImPvNS1_24LatchReadWriteDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS3_EEEELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev
_ZN9oceanbase6common4hash9ObHashMapIllNS1_24LatchReadWriteDefendModeENS1_9hash_funcIlEENS1_8equal_toIlEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIllEEEELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev
_ZN9oceanbase6common11ObArrayImplINS_3sql19ObJoinFilterDataCtxENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEED2Ev
_ZN9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEELb0ELb1EED2Ev
_ZN9oceanbase6common11ObArrayImplINS_3sql18ObExecFeedbackNodeENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev
_ZN9oceanbase3sql15ObCacheObjGuard19force_early_releaseEPNS0_11ObPlanCacheE
_ZN9oceanbase3sql10ObSQLUtils19record_execute_timeENS0_13ObPhyPlanTypeEl
_ZN9oceanbase3sql13ObExecContextD1Ev
_ZN9oceanbase3sql13ObExecContextD2Ev
_ZN9oceanbase6common16ObArenaAllocator4freeEPv
_ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv
_ZN9oceanbase3lib9SetLockerINS0_7ObMutexEE4lockEv
_ZN9oceanbase3sql22ObTableDirectInsertCtxD1Ev
_ZN9oceanbase3sql22ObTableDirectInsertCtxD2Ev
_ZN9oceanbase6common4hash9ObHashMapINS0_6ObAddrElNS1_24LatchReadWriteDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_lEEEELi88ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev
_ZN9oceanbase6common11ObArrayImplINS_3sql19ObJoinFilterDataCtxENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE7destroyEv
_ZN9oceanbase6common4hash9ObHashMapIPNS_3sql19DASRelatedTabletMap3KeyEPNS4_5ValueENS1_19NoPthreadDefendModeENS1_9hash_funcIS6_EENS1_8equal_toIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS6_S8_EEEELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev
_ZN9oceanbase3sql8ObDASCtxD2Ev
_ZN9oceanbase3sql19ObDASLocationRouterD1Ev
_ZN9oceanbase3sql19ObDASLocationRouterD2Ev
_ZN9oceanbase6common11ObArrayImplINS_3sql17ObSqlTempTableCtxENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev
_ZN9oceanbase3sql17ObTaskExecutorCtxD1Ev
_ZN9oceanbase3sql17ObTaskExecutorCtxD2Ev
_ZN9oceanbase6common13ObSEArrayImplINS_3sql18ObPhyTableLocationELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv
_ZN9oceanbase6common9Ob2DArrayINS_3sql15ObPxTabletRangeELi2079744ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS3_Ll64ES4_Lb0EEELb0ELb1EED2Ev
_ZN9oceanbase3sql13ObTableScanOp7destroyEv
_ZN9oceanbase6common11ObArrayImplIPKNS0_8ObIArrayIlEENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEE7destroyEv
_ZN9oceanbase3sql14ObPhysicalPlan16update_plan_statERKNS0_17ObAuditRecordDataEbPKNS_6common8ObIArrayINS0_15ObTableRowCountEEE
_ZN9oceanbase6common11ObArrayImplIPKNS0_8ObIArrayIlEENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEED2Ev
_ZN9oceanbase6common11ObArrayImplINS_3sql18ObExecFeedbackNodeENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE7destroyEv
_ZN9oceanbase6common17ObSessionDIBuffer14switch_sessionEmb
_ZN9oceanbase3sql15ObTableModifyOp7destroyEv
_ZN9oceanbase3sql11ObResultSetC2ERNS0_16ObSQLSessionInfoERNS_6common12ObIAllocatorE
_ZN9oceanbase3sql13ObExecContextC1ERNS_6common12ObIAllocatorE
_ZN9oceanbase3sql13ObExecContextC2ERNS_6common12ObIAllocatorE
_ZN9oceanbase3sql19ObDASLocationRouterC1ERNS_6common12ObIAllocatorE
_ZN9oceanbase3sql19ObDASLocationRouterC2ERNS_6common12ObIAllocatorE
_ZN9oceanbase6common4hash9ObHashMapImPvNS1_24LatchReadWriteDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS3_EEEELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev
_ZN9oceanbase6common4hash9ObHashMapIllNS1_24LatchReadWriteDefendModeENS1_9hash_funcIlEENS1_8equal_toIlEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIllEEEELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev
_ZN9oceanbase6common4hash9ObHashMapINS0_6ObAddrElNS1_24LatchReadWriteDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_lEEEELi88ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev
_ZN9oceanbase3sql17ObTaskExecutorCtxC1ERNS0_13ObExecContextE
_ZN9oceanbase3sql17ObTaskExecutorCtxC2ERNS0_13ObExecContextE
_ZN9oceanbase3sql18ObBasicSessionInfo21set_retry_active_timeEl
_ZN9oceanbase3sql18ObBasicSessionInfo18set_session_activeERKNS_6common8ObStringEllNS_7obmysql10ObMySQLCmdE
_ZN9oceanbase3sql18ObBasicSessionInfo19store_query_string_ERKNS_6common8ObStringE
_ZN9oceanbase3sql16ObPrivilegeCheck22check_password_expiredERKNS0_8ObSqlCtxENS0_4stmt8StmtTypeE
_ZN9oceanbase3sql8ObDASCtxC2ERNS_6common12ObIAllocatorE
_ZN9oceanbase11transaction16ObTxReadSnapshotC1Ev
_ZN9oceanbase11transaction16ObTxReadSnapshotC2Ev
_ZN9oceanbase6common4hash9ObHashMapIPNS_3sql19DASRelatedTabletMap3KeyEPNS4_5ValueENS1_19NoPthreadDefendModeENS1_9hash_funcIS6_EENS1_8equal_toIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS6_S8_EEEELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev
_ZN9oceanbase3sql14ObDASScanRtDefD1Ev
_ZN9oceanbase3sql14ObDASScanRtDefD2Ev
_ZN9oceanbase6common13ObSEArrayImplINS0_10ObNewRangeELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv
_ZN9oceanbase6common15ObWarningBufferaSERKS1_
_ZN9oceanbase6common11ObArrayImplINS0_15ObWarningBuffer11WarningItemENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE5resetEv
_ZN9oceanbase6common11ObArrayImplINS0_15ObWarningBuffer11WarningItemENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE6assignERKNS0_8ObIArrayIS3_EE
_ZN9oceanbase6common11ObArrayImplINS0_15ObWarningBuffer11WarningItemENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE7destroyEv
_ZN9oceanbase3sql18ObTableScanOpInputD1Ev
_ZN9oceanbase3sql18ObTableScanOpInputD2Ev
_ZN9oceanbase6common4hash11ObHashTableINS_3sql15ObTenantUserKeyENS1_11HashMapPairIS4_mEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS6_EELi97ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE32internal_get_with_timeout_unsafeERNS1_17ObHashTableBucketIS6_NS0_7ObLatchENS1_5NCondEEERKS4_RPKS6_l
_ZN9oceanbase8observer16ObMPPacketSender33update_transmission_checksum_flagERKNS_3sql16ObSQLSessionInfoE
_ZN9oceanbase3sql10ObSQLUtils19handle_audit_recordEbNS0_13ObExecuteModeERNS0_16ObSQLSessionInfoEb
_ZN9oceanbase6common4hash11ObHashTableINS0_6ObAddrENS1_11HashMapPairIS3_lEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi88ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv
_ZN9oceanbase3sql5ObSql10stmt_queryERKNS_6common8ObStringERNS0_8ObSqlCtxERNS0_11ObResultSetE
_ZN9oceanbase3sql13ObExecContext24create_physical_plan_ctxEv
_ZN9oceanbase3sql8ObDASCtx24unmark_need_check_serverEv
_ZN9oceanbase3sql5ObSql15init_result_setERNS0_8ObSqlCtxERNS0_11ObResultSetE
_ZN9oceanbase5trace7ObTrace7set_tagImJEEEv9ObTagTypeRKT_
_ZNK9oceanbase11transaction17ObTxnFreeRouteCtx7is_tempERKNS0_8ObTxDescE
_ZN9oceanbase5trace7ObTrace7set_tagIA33_cJEEEv9ObTagTypeRKT_
_ZN9oceanbase6common16ObFixedArrayImplINS_3sql18ObFastParserResultENS0_12ObIAllocatorEED2Ev
_ZN9oceanbase3sql17ObPhysicalPlanCtxC1ERNS_6common12ObIAllocatorE
_ZN9oceanbase3sql17ObPhysicalPlanCtxC2ERNS_6common12ObIAllocatorE
_ZN9oceanbase6common4hash9ObHashMapINS_3sql21ObSubSchemaReverseKeyEmNS1_19NoPthreadDefendModeENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS4_mEEEELi81ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev
_ZN9oceanbase3sql18ObFastParserResultD2Ev
_ZN9oceanbase3sql14ObPlanCacheCtxD2Ev
_ZN9oceanbase6common16ObFixedArrayImplINS_3sql19SelectItemParamInfoENS0_12ObIAllocatorEED2Ev
_ZN9oceanbase6common16ObFixedArrayImplINS0_9ObSEArrayINS_3sql12NotParamInfoELl4ENS0_19ModulePageAllocatorELb0EEENS0_12ObIAllocatorEE7destroyEv
_ZN9oceanbase6common4hash9ObHashMapImNS_3sql16ObSubSchemaValueENS1_19NoPthreadDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS4_EEEELi81ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev
_ZN9oceanbase3sql5ObSql18handle_large_queryEiRNS0_11ObResultSetERbRNS0_13ObExecContextE
_ZN9oceanbase3sql18ObBasicSessionInfo17set_session_sleepEv
_ZN9oceanbase11transaction17ObTxnFreeRouteCtx26init_before_handle_requestEPNS0_8ObTxDescE
_ZNK9oceanbase11transaction11ObXATransID5emptyEv
_ZN9oceanbase3sql18ObBasicSessionInfo18set_is_request_endEb
_ZN9oceanbase8observer8ObMPBase24check_and_refresh_schemaEmmPNS_3sql16ObSQLSessionInfoE
_ZN9oceanbase6common13ObSEArrayImplINS_3sql21ObPartIdRowMapManager8MapEntryELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv
_ZN9oceanbase3sql18ObBasicSessionInfo21set_last_flt_trace_idERKNS_6common8ObStringE
_ZN9oceanbase3sql18ObBasicSessionInfo20set_session_in_retryENS0_20ObSessionRetryStatusE
_ZN9oceanbase3sql5ObSql11pc_get_planERNS0_14ObPlanCacheCtxERNS0_15ObCacheObjGuardERiRb
_ZNK9oceanbase3sql16ObSQLSessionInfo24has_user_super_privilegeEv
_ZN9oceanbase3sql5ObSql16execute_get_planERNS0_11ObPlanCacheERNS0_14ObPlanCacheCtxERNS0_15ObCacheObjGuardE
_ZN9oceanbase8observer22ObGlobalReqTimeService18check_req_timeinfoEv
_ZN9oceanbase3sql11ObPlanCache8get_planERNS_6common12ObIAllocatorERNS0_14ObPlanCacheCtxERNS0_15ObCacheObjGuardE
_ZNK9oceanbase5share6schema11ObSchemaMgr20get_tenant_read_onlyEmRb
_ZN9oceanbase3sql11ObPlanCache14get_plan_cacheERNS0_14ObILibCacheCtxERNS0_15ObCacheObjGuardE
_ZN9oceanbase3sql15ObILibCacheNode16update_node_statERNS0_14ObILibCacheCtxE
_ZN9oceanbase3sql16ObSQLSessionInfo25check_read_only_privilegeEbRKNS0_11ObSqlTraitsE
_ZN9oceanbase3sql16ObSQLSessionInfo24ObCachedTenantConfigInfo7refreshEv
_ZN9oceanbase3sql11ObPlanCache13get_cache_objERNS0_14ObILibCacheCtxEPNS0_14ObILibCacheKeyERNS0_15ObCacheObjGuardE
_ZN9oceanbase3sql18ObLibCacheAtomicOp9get_valueERPNS0_15ObILibCacheNodeE
_ZN9oceanbase3sql15ObILibCacheNode6unlockEv
_ZN9oceanbase3sql15ObILibCacheNode13dec_ref_countENS0_16CacheRefHandleIDE
_ZNK9oceanbase5share6schema16ObSysVariableMgr23get_sys_variable_schemaEmRPKNS1_25ObSimpleSysVariableSchemaE
_ZN9oceanbase3sql8ObPCVSet19inner_get_cache_objERNS0_14ObILibCacheCtxEPNS0_14ObILibCacheKeyERPNS0_17ObILibCacheObjectE
_ZN9oceanbase3sql10ObSQLUtils13is_nested_sqlEPNS0_13ObExecContextE
_ZN9oceanbase5trace7ObTrace7set_tagIbJEEEv9ObTagTypeRKT_
_ZN9oceanbase3sql11ObPlanCache28construct_fast_parser_resultERNS_6common12ObIAllocatorERNS0_14ObPlanCacheCtxERKNS2_8ObStringERNS0_18ObFastParserResultE
_ZN9oceanbase6common13ObSEArrayImplIPNS_3sql9ObPCParamELl4ENS0_19ModulePageAllocatorELb0EE7destroyEv
_ZN9oceanbase3sql11ObPlanCache9get_valueEPNS0_14ObILibCacheKeyERPNS0_15ObILibCacheNodeERNS0_18ObLibCacheAtomicOpE
_ZN9oceanbase3sql21ObLibCacheRlockAndRef4lockERNS0_15ObILibCacheNodeE
_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_
_ZNK9oceanbase3sql14ObILibCacheKey4hashERm
_ZNK9oceanbase3sql14ObPlanCacheKey4hashEv
_ZNK9oceanbase3sql14ObPlanCacheKey8is_equalERKNS0_14ObILibCacheKeyE
_ZN9oceanbase3sql17ObILibCacheObject13inc_ref_countENS0_16CacheRefHandleIDE
_ZN9oceanbase3sql16ObPrivilegeCheck15check_read_onlyERKNS0_8ObSqlCtxENS0_4stmt8StmtTypeEbRKNS_5share6schema15ObStmtNeedPrivsE
_ZN9oceanbase3sql11ObPlanCache20check_after_get_planEiRNS0_14ObILibCacheCtxEPNS0_17ObILibCacheObjectE
_ZN9oceanbase3sql16ObPrivilegeCheck15check_privilegeERKNS0_8ObSqlCtxERKNS_5share6schema15ObStmtNeedPrivsE
_ZN9oceanbase5share6schema19ObSchemaGetterGuard10check_privERKNS1_17ObSessionPrivInfoERKNS1_15ObStmtNeedPrivsE
_ZNK9oceanbase3sql16ObSQLSessionInfo21get_session_priv_infoERNS_5share6schema17ObSessionPrivInfoE
_ZN9oceanbase6common13ObSEArrayImplImLl8ENS0_19ModulePageAllocatorELb0EE5reuseEv
_ZN9oceanbase6common13ObSEArrayImplImLl8ENS0_19ModulePageAllocatorELb0EE6assignERKNS0_8ObIArrayImEE
_ZNK9oceanbase3sql18ObBasicSessionInfo20get_security_versionERm