forked from oceanbase/oceanbase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hotfuncs.txt
3458 lines (3458 loc) · 319 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
_ZN9oceanbase6common8ObLogger13need_to_printEmi
_ZTWN9oceanbase3lib6Thread12blocking_ts_E
_ZTWN9oceanbase3lib6Thread11wait_event_E
_ZN9oceanbase3sql12ObSortOpImpl12ObAdaptiveQS29inplace_radixsort_more_bucketEllllllb
_ZN9oceanbase3sql12ObSortOpImpl12ObAdaptiveQS10aqs_cps_qsElllll
_ZN9oceanbase3sql17fast_compare_simdEPKhS2_lRll
_ZN9oceanbase6common18ObBucketRLockGuardD2Ev
_ZN9oceanbase6common7ObLatch6unlockEPKj
_ZTWN9oceanbase3lib17ContextTLOptGuard13enable_tl_optE
_ZN9oceanbase7obmysql21ObMySQLRequestManager11release_oldEl
_ZN9oceanbase3omt10ObThWorker6workerERlS2_Ri
_ZTWN9oceanbase3lib6Thread8loop_ts_E
_ZTWN9oceanbase6common16g_warning_bufferE
_ZTWN9oceanbase6common7ObLatch17max_lock_slot_idxE
_ZN9oceanbase3lib17__MemoryContext__15destory_contextEPS1_
_ZN9oceanbase6common16ObPriorityQueue2ILi1ELi2ELi3EE6do_popERPNS0_6ObLinkEll
_ZTWN9oceanbase6common11in_try_stmtE
_ZN9oceanbase6common16ObWaitEventGuardD1Ev
_ZN9oceanbase6common16ObWaitEventGuardD2Ev
_ZN9oceanbase3omt17ObWorkerProcessor7processERNS_3rpc9ObRequestE
_ZN9oceanbase3rpc5frame14ObReqProcessor7destroyEv
_ZN9oceanbase3rpc5frame14ObReqProcessor4initEv
_ZNK9oceanbase3omt10ObThWorker10need_retryEv
_ZTW12co_closepbuf
_ZN9oceanbase8observer11ObSrvXlator7releaseEPNS_3rpc5frame14ObReqProcessorE
_ZN9oceanbase8observer16ObMPPacketSenderD2Ev
_ZN9oceanbase8observer9ObMPQuery7processEv
_ZN9oceanbase6common13ObSEArrayImplINS0_8ObStringELl1ENS0_19ModulePageAllocatorELb0EE9push_backERKS2_
_ZNK9oceanbase3sql11ObResultSet23need_end_trans_callbackEv
_ZN9oceanbase6common14ObServerConfig12get_instanceEv
_ZN9oceanbase6common15databuff_printfEPclRlPKcz
_ZN9oceanbase8observer16ObMPPacketSender11get_sessionERPNS_3sql16ObSQLSessionInfoE
_ZZNK9oceanbase3sql18ObBasicSessionInfo31is_server_status_in_transactionEvENK3$_0clEPKc.llvm.10382599790257871744
_ZN9oceanbase11transaction17ObTxnFreeRouteCtx26init_before_handle_requestEPNS0_8ObTxDescE
_ZN9oceanbase11transaction8ObTxDesc21in_tx_for_free_route_Ev
_ZN9oceanbase3sql8ObParser19split_multiple_stmtERKNS_6common8ObStringERNS2_8ObIArrayIS3_EERNS0_13ObMPParseStatEbb
_ZN9oceanbase3sql10ObSQLUtils20handle_plan_baselineERKNS0_17ObAuditRecordDataEPNS0_14ObPhysicalPlanEiRNS0_8ObSqlCtxE
_ZN9oceanbase8observer9ObMPQuery19process_single_stmtERKNS_3sql15ObMultiStmtItemERNS2_16ObSQLSessionInfoEbbRbS8_
_ZN9oceanbase6common13ObTimeUtility12current_timeEv
_ZN9oceanbase6common14ObMaxWaitGuardC1EPNS0_15ObWaitEventDescEPNS0_21ObDiagnoseSessionInfoE
_ZN9oceanbase3lib6Thread9WaitGuardD2Ev
_ZN9oceanbase6common16ObTotalWaitGuardD1Ev
_ZN9oceanbase5trace7ObTrace7set_tagImJEEEv9ObTagTypeRKT_
_ZN9oceanbase6common21ObSessionStatEstGuardD1Ev
_ZN9oceanbase6common21ObSessionStatEstGuardD2Ev
_ZN9oceanbase5trace7ObTrace12get_instanceEv
_ZNK9oceanbase5share6schema19ObSchemaGetterGuard18get_schema_versionEmRl
_ZN9oceanbase6common16ObDISessionCache8get_nodeEmRPNS0_18ObDISessionCollectE
_ZN9oceanbase3sql12ObExecRecord12record_startEPNS_6common21ObDiagnoseSessionInfoE
_ZN9oceanbase8observer14ObReqTimeGuardD2Ev
_ZN9oceanbase3sql11ObResultSetC2ERNS0_16ObSQLSessionInfoERNS_6common12ObIAllocatorE
_ZN9oceanbase3sql16LinkExecCtxGuardD2Ev
_ZN9oceanbase3sql11ObResultSetD1Ev
_ZN9oceanbase3sql11ObResultSetD2Ev
_ZN9oceanbase3sql17ObExprOperatorCtxD2Ev
_ZN9oceanbase6common10ObObjStoreIPNS_3sql12ObIDASTaskOpERNS0_12ObIAllocatorELb0EED2Ev
_ZN9oceanbase3sql12ObExecRecord10record_endEPNS_6common21ObDiagnoseSessionInfoE
_ZN9oceanbase3sql13ObExecContextC1ERNS_6common12ObIAllocatorE
_ZN9oceanbase3sql13ObExecContextC2ERNS_6common12ObIAllocatorE
_ZNK9oceanbase5share6schema27ObMultiVersionSchemaService35get_tenant_refreshed_schema_versionEmRlb
_ZN9oceanbase3sql10ObPlanStat17update_cache_statERKNS0_15ObTableScanStatE
_ZN9oceanbase3sql14ObExprValuesOp7destroyEv
_ZN9oceanbase5trace7ObTrace7set_tagIA33_cJEEEv9ObTagTypeRKT_
_ZN9oceanbase8observer8ObMPBase12flush_bufferEb
_ZN9oceanbase3sql10ObSQLUtils19handle_audit_recordEbNS0_13ObExecuteModeERNS0_16ObSQLSessionInfoEb
_ZN9oceanbase6common14ObMaxWaitGuardD1Ev
_ZN9oceanbase8observer8ObMPBase33update_transmission_checksum_flagERKNS_3sql16ObSQLSessionInfoE
_ZN9oceanbase3sql8ObSqlCtx5clearEv
_ZN9oceanbase3sql17ObLCObjectManager11common_freeEPNS0_17ObILibCacheObjectENS0_16CacheRefHandleIDE
_ZN9oceanbase3sql14ObPhysicalPlan16update_plan_statERKNS0_17ObAuditRecordDataEbbPKNS_6common8ObIArrayINS0_15ObTableRowCountEEE
_ZN9oceanbase3sql18ObBasicSessionInfo20update_timezone_infoEv
_ZN9oceanbase3sql18ObBasicSessionInfo21gen_configs_in_pc_strEv
_ZN9oceanbase3sql18ObBasicSessionInfo20set_session_in_retryENS0_20ObSessionRetryStatusE
_ZThn56_N9oceanbase8observer8ObMPBase14send_ok_packetERNS_3sql16ObSQLSessionInfoERNS0_10ObOKPParamEPNS_7obmysql13ObMySQLPacketE
_ZN9oceanbase3sql18ObBasicSessionInfo17set_session_sleepEv
_ZN9oceanbase3sql10ObSQLUtils19record_execute_timeENS0_13ObPhyPlanTypeEl
_ZN9oceanbase6common16ObTotalWaitGuardC1EPNS0_15ObWaitEventStatEPNS0_21ObDiagnoseSessionInfoE
_ZN9oceanbase3sql17ObAuditRecordData24update_event_stage_stateEv
_ZN9oceanbase3sql13ObExecContextD1Ev
_ZN9oceanbase3sql13ObExecContextD2Ev
_ZN9oceanbase3sql20ObAggregateProcessor12IAggrFuncCtxD2Ev
_ZN9oceanbase3sql14ObDASBaseRtDefD2Ev
_ZN9oceanbase6common10ObObjStoreIPNS_3sql27ObRpcDasAsyncAccessCallBackERNS0_12ObIAllocatorELb0EED2Ev
_ZN9oceanbase6common11ObArrayImplIPKNS0_8ObIArrayIlEENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEED2Ev
_ZN9oceanbase6common11ObArrayImplINS_3sql19ObJoinFilterDataCtxENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEED2Ev
_ZN9oceanbase3sql13ObTableScanOp7destroyEv
_ZN9oceanbase3sql8ObDASRef5resetEv
_ZN9oceanbase3sql16ObDASTaskFactory7cleanupEv
_ZN9oceanbase3lib9ObjectSet11free_objectEPNS0_7AObjectE
_ZN9oceanbase3lib8BlockSet10free_blockEPNS0_6ABlockE
_ZN9oceanbase3lib9ObjectSet10free_blockEPNS0_6ABlockE
_ZN9oceanbase3sql6ObStmtD2Ev
_ZN9oceanbase6common16ObClusterVersion12get_instanceEv
_ZN9oceanbase3sql18ObBasicSessionInfo18set_session_activeERKNS_6common8ObStringEllNS_7obmysql10ObMySQLCmdE
_ZN9oceanbase8observer16ObSyncPlanDriver15response_resultERNS0_16ObMySQLResultSetE
_ZN9oceanbase8observer13ObQueryDriver21response_query_resultERNS_3sql11ObResultSetEbbRbl
_ZNK9oceanbase3sql18ObBasicSessionInfo19get_charset_sys_varENS_5share17ObSysVarClassTypeERNS_6common13ObCharsetTypeE
_ZN9oceanbase6common9ObCharset11get_charsetENS0_15ObCollationTypeE
_ZNK9oceanbase3sql18ObBasicSessionInfo17inner_get_sys_varENS_5share17ObSysVarClassTypeERlRPNS2_13ObBasicSysVarE
_ZN9oceanbase8observer16ObMPPacketSender15response_packetERNS_7obmysql13ObMySQLPacketEPNS_3sql16ObSQLSessionInfoE
_ZN9oceanbase7obmysql23ObPocSqlRequestOperator15get_sql_sessionEPNS_3rpc9ObRequestE
_ZN9oceanbase8observer16ObMPPacketSender15try_encode_withERNS_7obmysql13ObMySQLPacketElRll
_ZN9oceanbase3sql15ObExecuteResult12get_next_rowERNS0_13ObExecContextERPKNS_6common8ObNewRowE
_ZN9oceanbase7obmysql14ObProto20Utils16do_packet_encodeERNS0_18ObProtoEncodeParamE
_ZNK9oceanbase7obmysql13ObMySQLPacket6encodeEPclRlS3_
_ZNK9oceanbase6common7ObSMRow11encode_cellElPclRlS2_
_ZNK9oceanbase7obmysql9OMPKField9serializeEPclRl
_ZN9oceanbase6common9ObSMUtils8cell_strEPclRKNS0_5ObObjENS_7obmysql19MYSQL_PROTOCOL_TYPEERllS2_RKNS0_20ObDataTypeCastParamsEPKNS0_7ObFieldEPNS_5share6schema19ObSchemaGetterGuardEm
_ZN9oceanbase7obmysql11ObMySQLUtil12store_lengthEPclmRl
_ZN9oceanbase8observer13ObQueryDriver21response_query_headerERKNS_6common8ObIArrayINS2_7ObFieldEEEbbbPNS_3sql11ObResultSetE
_ZN9oceanbase3sql10ObOperator14get_next_batchElRPKNS0_11ObBatchRowsE
_ZN9oceanbase3sql10ObOperator16inner_drain_exchEv
_ZN9oceanbase6common16ObClockGenerator8getClockEv
_ZN9oceanbase3sql13ObTableScanOp20inner_get_next_batchEl
_ZN9oceanbase3sql10ObOperator13do_drain_exchEv
_ZN9oceanbase3sql12ObSortOpImpl20add_quick_sort_batchERKNS_6common8ObIArrayIPNS0_6ObExprEEERKNS0_11ObBitVectorEllPl
_ZN9oceanbase3sql17ObChunkDatumStore9add_batchERKNS_6common8ObIArrayIPNS0_6ObExprEEERNS0_9ObEvalCtxERKNS0_11ObBitVectorElPKtlPPNS1_9StoredRowE
_ZN9oceanbase3sqlL13assign_datumsINS0_23AssignDefaultDatumValueEEEvPPKNS_6common7ObDatumEPKtlPPNS0_17ObChunkDatumStore9StoredRowEl
_ZNK9oceanbase3sql6ObExpr13do_eval_batchERNS0_9ObEvalCtxERKNS0_11ObBitVectorEl
_ZN9oceanbase3sql19ObExprEncodeSortkey25eval_encode_sortkey_batchERKNS0_6ObExprERNS0_9ObEvalCtxERKNS0_11ObBitVectorEl
_ZN9oceanbase5share20ObSortkeyConditioner24process_key_conditioningERNS_6common7ObDatumEPhlRlRNS0_10ObEncParamE
_Z26ob_strnxfrm_unicode_varlenPK13ObCharsetInfoPhmjPKhmbPb
_ZN9oceanbase6common9ObCharset17is_argument_validENS0_15ObCollationTypeEPKclS4_l
_ZN9oceanbase3sql13ObTableScanOp28inner_get_next_batch_for_tscEl
_ZNK9oceanbase7storage15ObTableReadInfo23get_group_idx_col_indexEv
_ZN9oceanbase7storage15ObMultipleMerge13get_next_rowsERll
_ZN9oceanbase7storage18ObStoreRowIterator13get_iter_flagEv
_ZN9oceanbase8memtable22ObMemtableScanIterator13get_iter_flagEv
_ZN9oceanbase7storage19ObMultipleScanMerge18inner_get_next_rowERNS_12blocksstable10ObDatumRowE
_ZTWN9oceanbase3lib15ObPerfModeGuard26in_disable_diagnose_guard_E
_ZN9oceanbase7storage18ObSimpleRowsMergerINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpEE7rebuildEv
_ZN9oceanbase6common21ObDiagnoseSessionInfo23get_local_diagnose_infoEv
_ZN9oceanbase7storage19ObSSTableRowScannerINS0_30ObIndexTreeMultiPassPrefetcherILi32ELi3EEEE9fetch_rowERNS0_19ObSSTableReadHandleERPKNS_12blocksstable10ObDatumRowE
_ZNK9oceanbase7storage15ObTableReadInfo17get_request_countEv
_ZN9oceanbase12blocksstable23ObIMicroBlockRowScanner12get_next_rowERPKNS0_10ObDatumRowE
_ZThn352_N9oceanbase12blocksstable18ObMicroBlockReader7get_rowElRNS0_10ObDatumRowE
_ZN9oceanbase12blocksstable23ObIMicroBlockRowScanner18inner_get_next_rowERPKNS0_10ObDatumRowE
_ZN9oceanbase12blocksstable19ObMicroBlockDecoder7get_rowElRNS0_10ObDatumRowE
_ZNK9oceanbase12blocksstable19ObStringDiffDecoder6decodeERKNS0_18ObColumnDecoderCtxERNS_6common7ObDatumElRKNS0_11ObBitStreamEPKcl
_ZN9oceanbase6common16ObArenaAllocator5reuseEv
_ZNK9oceanbase12blocksstable24ObIntegerBaseDiffDecoder6decodeERKNS0_18ObColumnDecoderCtxERNS_6common7ObDatumElRKNS0_11ObBitStreamEPKcl
_ZN9oceanbase8memtable23ObIMemtableScanIterator12get_next_rowERPKNS_12blocksstable10ObDatumRowE
_ZNK9oceanbase8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorINS0_20ObStoreRowkeyWrapperEPNS0_9ObMvccRowEEEE13get_iter_flagEv
_ZN9oceanbase6common16ObArenaAllocator5allocEl
_ZN9oceanbase6common20ObDiagnoseTenantInfo23get_local_diagnose_infoEv
_ZN9oceanbase7storage15ObMultipleMerge16process_fuse_rowEbRNS_12blocksstable10ObDatumRowERPS3_
_ZNK9oceanbase12blocksstable12ObRawDecoder6decodeERKNS0_18ObColumnDecoderCtxERNS_6common7ObDatumElRKNS0_11ObBitStreamEPKcl
_ZNK9oceanbase8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorINS0_20ObStoreRowkeyWrapperEPNS0_9ObMvccRowEEEE9get_valueEv
_ZNK9oceanbase7storage19ObMultipleScanMerge18collect_merge_statERNS0_16ObTableStoreStatE
_ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScanner18inner_get_next_rowERPKNS0_10ObDatumRowE
_ZN9oceanbase12blocksstable18ObMicroBlockReader7get_rowElRNS0_10ObDatumRowE
_ZNK9oceanbase7storage16ObReadInfoStruct17get_columns_indexEv
_ZNK9oceanbase7storage15ObTableReadInfo25get_seq_read_column_countEv
_ZN9oceanbase12blocksstable11ObRowReader8read_rowEPKclPKNS_7storage16ObITableReadInfoERNS0_10ObDatumRowE
_ZZN9oceanbase7storage18ObColumnIndexArrayC1EbbEN4$_378__invokeEjRKNS0_19ObFixedMetaObjArrayIiEE
_ZZN9oceanbase7storage18ObColumnIndexArrayC1EbbEN4$_368__invokeEjjlRKNS0_19ObFixedMetaObjArrayIiEE
_ZN9oceanbase7storage15ObMultipleMerge22get_next_aggregate_rowERPNS_12blocksstable10ObDatumRowE
_ZN9oceanbase7storage17ObAggregatedStore8fill_rowERNS_12blocksstable10ObDatumRowE
_ZN9oceanbase7storage12ObSumAggCell4evalERNS_12blocksstable14ObStorageDatumEl
_ZN9oceanbase7storage12ObSumAggCell8eval_intINS_6common4wide13ObWideIntegerILj128EiEEEEiRKNS3_7ObDatumEi
_ZNK9oceanbase8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorINS0_20ObStoreRowkeyWrapperEPNS0_9ObMvccRowEEEE7get_keyEv
_ZN9oceanbase8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorINS0_20ObStoreRowkeyWrapperEPNS0_9ObMvccRowEEEE11set_versionEl
_ZN9oceanbase7storage19ObMultipleScanMerge14can_batch_scanERb
_ZN9oceanbase8memtable22ObMemtableScanIterator18inner_get_next_rowERPKNS_12blocksstable10ObDatumRowE
_ZN9oceanbase8memtable9ObReadRow11iterate_rowERKNS_7storage16ObITableReadInfoERKNS_6common13ObStoreRowkeyERNS6_12ObIAllocatorERNS0_19ObMvccValueIteratorERNS_12blocksstable10ObDatumRowERNS0_11ObNopBitMapERl
_ZNK9oceanbase7storage16ObReadInfoStruct26get_memtable_columns_indexEv
_ZN9oceanbase12blocksstable11ObRowReader17read_memtable_rowEPKclRKNS_7storage16ObITableReadInfoERNS0_10ObDatumRowERNS_8memtable11ObNopBitMapERb
_ZZN9oceanbase7storage18ObColumnIndexArrayC1EbbEN4$_338__invokeEjjlRKNS0_19ObFixedMetaObjArrayIiEE
_ZN9oceanbase8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorINS0_20ObStoreRowkeyWrapperEPNS0_9ObMvccRowEEEE4nextEb
_ZN9oceanbase8memtable19ObMvccValueIterator4initERNS0_15ObMvccAccessCtxEPKNS0_13ObMemtableKeyEPNS0_9ObMvccRowERKNS_6common11ObQueryFlagE
_ZZN9oceanbase8memtable19ObMvccValueIterator4initERNS0_15ObMvccAccessCtxEPKNS0_13ObMemtableKeyEPNS0_9ObMvccRowERKNS_6common11ObQueryFlagEENK4$_94clEPKc
_ZN9oceanbase6common8ObLogger13need_to_printEmmi
_ZN9oceanbase8keybtree8IteratorINS_8memtable20ObStoreRowkeyWrapperEPNS2_9ObMvccRowEE13set_key_rangeES3_bS3_bl
_ZN9oceanbase8keybtree8IteratorINS_8memtable20ObStoreRowkeyWrapperEPNS2_9ObMvccRowEE8get_nextERS3_RS5_
_ZN9oceanbase5share11ObTenantEnv3mtlIPNS_7storage21ObTenantTabletStatMgrEEET_v
_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE8prefetchEv
_ZN9oceanbase12blocksstable22ObIndexBlockRowScanner8get_nextERNS0_16ObMicroIndexInfoEb
_ZN9oceanbase12blocksstable22ObIndexBlockRowScanner16get_next_idx_rowERNS0_16ObMicroIndexInfoE
_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE18get_prefetch_depthERl
_ZN9oceanbase6common11ObLoserTreeINS_7storage24ObScanMergeLoserTreeItemENS2_23ObScanMergeLoserTreeCmpELl80EE13inner_rebuildEv
_ZN9oceanbase12blocksstable22ObIndexBlockRowScanner17read_curr_idx_rowERPKNS0_21ObIndexBlockRowHeaderERPKNS0_13ObDatumRowkeyE
_ZNK9oceanbase12blocksstable22ObIndexBlockDataHeader14get_index_dataElRPKcRl
_ZN9oceanbase12blocksstable21ObIndexBlockRowParser4initEPKcl
_ZN9oceanbase7storage15ObMultipleMerge12get_next_rowERPNS_12blocksstable10ObDatumRowE
_ZNK9oceanbase7storage13ObSingleMerge18collect_merge_statERNS0_16ObTableStoreStatE
_ZN9oceanbase7storage18ObStoreRowIterator12get_next_rowERPKNS_12blocksstable10ObDatumRowE
_ZN9oceanbase7storage13ObSingleMerge13get_table_rowElRKNS_6common8ObIArrayIPNS0_8ObITableEEERNS_12blocksstable10ObDatumRowERbSC_
_ZZN9oceanbase7storage18ObColumnIndexArrayC1EbbEN4$_358__invokeEjRKNS0_19ObFixedMetaObjArrayIiEE
_ZN9oceanbase8memtable10ObMemtable3getERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS_12blocksstable13ObDatumRowkeyERPNS2_18ObStoreRowIteratorE
_ZN9oceanbase12blocksstable10ObDatumRowC1Ev
_ZN9oceanbase12blocksstable10ObDatumRowC2Ev
_ZN9oceanbase7storage13ObSingleMerge22get_and_fuse_cache_rowEllRNS_12blocksstable10ObDatumRowERbS5_S5_
_ZN9oceanbase7storage9ObRowFuse8fuse_rowERKNS_12blocksstable10ObDatumRowERS3_RNS0_8ObNopPosERbPNS_6common12ObIAllocatorE
_ZN9oceanbase8memtable19ObIMemtableIterator12get_next_rowERPKNS_12blocksstable10ObDatumRowE
_ZN9oceanbase7storage18ObSSTableRowGetter18inner_get_next_rowERPKNS_12blocksstable10ObDatumRowE
_ZN9oceanbase6common11ObLoserTreeINS_7storage24ObScanMergeLoserTreeItemENS2_23ObScanMergeLoserTreeCmpELl80EE3popEv
_ZZN9oceanbase8memtable10ObMemtable3getERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS_12blocksstable13ObDatumRowkeyERPNS2_18ObStoreRowIteratorEENK5$_107clEPKc.llvm.6150484154564822904
_ZN9oceanbase8memtable21ObMemtableGetIterator18inner_get_next_rowERPKNS_12blocksstable10ObDatumRowE
_ZN9oceanbase8memtable13ObQueryEngine3getEPKNS0_13ObMemtableKeyERPNS0_9ObMvccRowEPS2_
_ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE
_ZN9oceanbase3lib20ObTenantCtxAllocator12common_allocINS0_9ObjectSetEEEPvlRKNS0_9ObMemAttrERS1_RT_
_ZN9oceanbase3lib20ObTenantCtxAllocator12common_allocINS0_9ObjectMgrEEEPvlRKNS0_9ObMemAttrERS1_RT_
_ZN9oceanbase3lib9ObjectMgr12alloc_objectEmRKNS0_9ObMemAttrE
_ZN9oceanbase8observer23ObProcessMallocCallbackclERKNS_3lib9ObMemAttrEl
_ZN9oceanbase6common9EventItem14get_event_codeEv
_ZN9oceanbase3sql18ObBasicSessionInfo38update_query_sensitive_system_variableERNS_5share6schema19ObSchemaGetterGuardE
_ZN9oceanbase3lib9ObjectSet15add_free_objectEPNS0_7AObjectE
_ZN9oceanbase3sql14ObDASScanRtDefD1Ev
_ZN9oceanbase3sql14ObDASScanRtDefD2Ev
_ZNK9oceanbase3omt17ObTenantConfigMgr27get_tenant_config_with_lockEmmm
_ZN9oceanbase6common20check_stack_overflowERblPl
_ZZN9oceanbase3sql10ObFLTUtils22init_flt_log_frameworkERNS0_16ObSQLSessionInfoEbENK5$_249clEPKc
_ZN9oceanbase3sql5ObSql10stmt_queryERKNS_6common8ObStringERNS0_8ObSqlCtxERNS0_11ObResultSetE
_ZNK9oceanbase6common16ObArenaAllocator5totalEv
OPENSSL_cleanse
_ZNK9oceanbase11transaction17ObTxnFreeRouteCtx7is_tempERKNS0_8ObTxDescE
_ZN9oceanbase3sql17ObPhysicalPlanCtxC1ERNS_6common12ObIAllocatorE
_ZN9oceanbase3sql17ObPhysicalPlanCtxC2ERNS_6common12ObIAllocatorE
_ZN9oceanbase3sql5ObSql18handle_large_queryEiRNS0_11ObResultSetERbRNS0_13ObExecContextE
_ZN9oceanbase3sql14ObPlanCacheCtxD2Ev
_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE22ObIndexTreeLevelHandle7forwardERS2_b
_ZN9oceanbase12blocksstable22ObIndexBlockRowScanner4openERKNS0_12MacroBlockIdERKNS0_16ObMicroBlockDataERKNS0_12ObDatumRangeElbbPKNS0_16ObMicroIndexInfoE
_ZN9oceanbase12blocksstable22ObIndexBlockRowScanner12locate_rangeERKNS0_12ObDatumRangeEbb
_ZN9__gnu_cxx5__ops14_Iter_comp_valIN9oceanbase12blocksstable15ObDatumComparorINS3_13ObDatumRowkeyEEEEclIPKS5_S9_EEbT_RT0_
_ZNK9oceanbase12blocksstable13ObDatumRowkey7compareERKS1_RKNS0_19ObStorageDatumUtilsERib
_ZN9oceanbase12blocksstableL21nonext_nonext_compareERKNS0_14ObStorageDatumES3_RKNS_6common9ObCmpFuncERi.llvm.12553954299408958552
_ZN9oceanbase12blocksstable22ObIndexBlockRowScanner18init_by_micro_dataERKNS0_16ObMicroBlockDataE
_ZZN9oceanbase12blocksstable22ObIndexBlockRowScanner12locate_rangeERKNS0_12ObDatumRangeEbbENK5$_526clEPKc
_ZZN9oceanbase8observer8ObMPBase18process_extra_infoERNS_3sql16ObSQLSessionInfoERKNS_7obmysql16ObMySQLRawPacketERbENK5$_372clEPKc
_ZN9oceanbase3sql12ObUDRItemMgr14UDRRefObjGuardINS0_9ObUDRItemEED2Ev
_ZN9oceanbase6common16ObMemLeakChecker8on_allocERNS_3lib7AObjectERKNS2_9ObMemAttrE
_ZN9oceanbase3sql15DASOpResultIter21reset_wild_datums_ptrEv
_ZN9oceanbase7storage22ObMicroBlockDataHandle20get_micro_block_dataEPNS_12blocksstable18ObMacroBlockReaderERNS2_16ObMicroBlockDataEb
_ZN9oceanbase3sql13ObPxAdmission20exit_query_admissionERNS0_16ObSQLSessionInfoERNS0_13ObExecContextENS0_4stmt8StmtTypeERNS0_14ObPhysicalPlanE
_ZN9oceanbase3sql16ObSQLSessionInfo21set_show_warnings_bufEi
_ZN9oceanbase7storage18ObSSTableRowGetter9fetch_rowERNS0_19ObSSTableReadHandleERPKNS_12blocksstable10ObDatumRowE
_ZN9oceanbase12blocksstable23ObIMicroBlockRowFetcher4initERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextEPKNS0_9ObSSTableE
_ZThn352_N9oceanbase12blocksstable21ObMicroBlockGetReader7get_rowERKNS0_16ObMicroBlockDataERKNS0_13ObDatumRowkeyERKNS_7storage16ObITableReadInfoERNS0_10ObDatumRowE
_ZN9oceanbase3lib9ObjectSet12alloc_objectEmRKNS0_9ObMemAttrE
_ZN9oceanbase3lib8BlockSet14get_free_blockEiRKNS0_9ObMemAttrE
_ZN9oceanbase3sql5ObSql14after_get_planERNS0_14ObPlanCacheCtxERNS0_16ObSQLSessionInfoEPNS0_14ObPhysicalPlanEbPKNS_6common9Ob2DArrayINS8_10ObObjParamELi2079744ENS8_18ObWrapperAllocatorELb0ENS8_9ObSEArrayIPSA_Ll1ESB_Lb0EEEEEm
_ZN9oceanbase7storage9ObAggCell20fill_default_if_needERNS_12blocksstable14ObStorageDatumE
_ZN9oceanbase6common13ObSEArrayImplINS_3sql18ObPhyTableLocationELl2ENS0_19ModulePageAllocatorELb0EED2Ev
_ZN9oceanbase5trace16__ObFLTSpanGuardD2Ev
_ZN9oceanbase8memtable8ObMtHash9fill_pairEPNS0_10ObHashNodeES3_l
_ZNK9oceanbase7obmysql13OMPKResheader9serializeEPclRl
_ZN9oceanbase8observer9ObMPQuery25store_params_value_to_strERNS_6common12ObIAllocatorERNS_3sql16ObSQLSessionInfoERNS2_9Ob2DArrayINS2_10ObObjParamELi2079744ENS2_18ObWrapperAllocatorELb0ENS2_9ObSEArrayIPS9_Ll1ESA_Lb0EEEEE
_ZN9oceanbase3sql11ObResultSet5closeERi
_ZN9oceanbase3sql10ObSQLUtils13is_nested_sqlEPNS0_13ObExecContextE
_ZN9oceanbase3sql15ObExecuteResult5closeERNS0_13ObExecContextE
_ZNK9oceanbase3sql10ObOperator23get_operator_open_orderEv
_ZN9oceanbase3sql10ObOperator5closeEv
_ZN9oceanbase3sql13ObTableScanOp11inner_closeEv
_ZN9oceanbase6common16ObArenaAllocator4freeEPv
_ZZN9oceanbase3sql11ObResultSet19auto_end_plan_transERNS0_14ObPhysicalPlanEiRbENKUlPKcE3_clES6_
_ZN9oceanbase3sql11ObResultSet8end_stmtEb
_ZN9oceanbase3sql10ObSQLUtils16is_pl_nested_sqlEPNS0_13ObExecContextE
_ZN9oceanbase3sql8ObDASRef14close_all_taskEv
_ZN9oceanbase7storage19ObTableScanIterator27check_ls_offline_after_readEv
_ZN9oceanbase7storage15ObTxTableGuards16check_ls_offlineEv
_ZN9oceanbase6common18ObServerObjectPoolINS_7storage19ObTableScanIteratorEE13return_objectEPS3_
_ZN9oceanbase7storage19ObTableScanIterator5resetEv
_ZN9oceanbase7storage20ObTableStoreIterator5resetEv
_ZN9oceanbase6common25ObConcurrentFIFOAllocator4freeEPv
_ZNK9oceanbase7storage13ObLSTxService16revert_store_ctxERNS0_10ObStoreCtxE
_ZN9oceanbase11transaction12ObLSTxCtxMgr20end_readonly_requestEv
_ZN9oceanbase6common15ObFIFOAllocator5resetEv
_ZN9oceanbase6common12ObLatchMutex4lockEjl
_ZN9oceanbase6common16ObMultiModRefMgrINS_7storage10ObLSGetModEE3decES3_
_ZN9oceanbase7storage14ObTabletHandle5resetEv
_ZN9oceanbase7storage13ObSingleMergeD2Ev
_ZN9oceanbase12blocksstable10ObDatumRowD1Ev
_ZN9oceanbase12blocksstable10ObDatumRowD2Ev
_ZN9oceanbase8memtable21ObMemtableGetIteratorD2Ev
_ZN9oceanbase3sql18PushdownFilterInfoD1Ev
_ZN9oceanbase3sql18PushdownFilterInfo5resetEv
_ZZN9oceanbase3sql11ObResultSet19auto_end_plan_transERNS0_14ObPhysicalPlanEiRbENKUlPKcE_clES6_
_ZN9oceanbase3sql11ObResultSet4openEv
_ZThn32_NK9oceanbase3sql9ObTCLStmt12get_cmd_typeEv
_ZNK9oceanbase3sql15ObExecuteResult4openEv
_ZN9oceanbase3sql10ObOperator4openEv
_ZN9oceanbase3sql8ObSortOp10inner_openEv
_ZN9oceanbase3sql13ObTableScanOp10inner_openEv
_ZZN9oceanbase7storage13ObSingleMerge18inner_get_next_rowERNS_12blocksstable10ObDatumRowEENK5$_392clEPKc
_ZZN9oceanbase8observer16ObMySQLResultSet14to_mysql_fieldERKNS_6common7ObFieldERNS_7obmysql12ObMySQLFieldEENK4$_67clEPKc
_ZN9oceanbase6common11ObArrayImplINS_3sql18ObExecFeedbackNodeENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev
_ZN9oceanbase7storage15ObLobDataReaderD1Ev
_ZN9oceanbase7storage15ObLobDataReaderD2Ev
MD5_Init
_ZZN9oceanbase12blocksstable22ObIndexBlockRowScanner12locate_rangeERKNS0_12ObDatumRangeEbbENK5$_529clEPKc
_ZN9oceanbase3sql5ObSql27pc_get_plan_and_fill_resultERNS0_14ObPlanCacheCtxERNS0_11ObResultSetERiRb
_ZN9oceanbase5share6schema19ObSchemaGetterGuard10check_privERKNS1_17ObSessionPrivInfoERKNS1_15ObStmtNeedPrivsE
_ZN9oceanbase6common13ObSEArrayImplImLl8ENS0_19ModulePageAllocatorELb0EE6assignERKNS0_8ObIArrayImEE
_ZN9oceanbase3sql11ObPlanCache8get_planERNS_6common12ObIAllocatorERNS0_14ObPlanCacheCtxERNS0_15ObCacheObjGuardE
_ZNK9oceanbase5share6schema11ObSchemaMgr20get_tenant_read_onlyEmRb
_ZNK9oceanbase5share6schema16ObSysVariableMgr23get_sys_variable_schemaEmRPKNS1_25ObSimpleSysVariableSchemaE
_ZN9oceanbase6common13ObSEArrayImplIPNS_3sql9ObPCParamELl4ENS0_19ModulePageAllocatorELb0EED2Ev
_ZN9oceanbase3sql16ObSQLSessionInfo32check_global_read_only_privilegeEbRKNS0_11ObSqlTraitsE
_ZZN9oceanbase3sql11ObPlanCache13get_cache_objERNS0_14ObILibCacheCtxEPNS0_14ObILibCacheKeyERNS0_15ObCacheObjGuardEENK5$_226clEPKc.llvm.16977314448449668839
_ZNK9oceanbase5share6schema19ObSchemaGetterGuard14get_schema_mgrEmRPKNS1_11ObSchemaMgrE
_ZN9oceanbase3sql11ObPlanCache13get_cache_objERNS0_14ObILibCacheCtxEPNS0_14ObILibCacheKeyERNS0_15ObCacheObjGuardE
_ZN9oceanbase6common4hash11ObHashTableIPNS_3sql14ObILibCacheKeyENS1_11HashMapPairIS5_PNS3_15ObILibCacheNodeEEENS1_9hash_funcIS5_EENS1_8equal_toIS5_EENS1_10pair_firstIS9_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS9_EELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE11read_atomicINS3_18ObLibCacheAtomicOpENS1_8pre_procIS9_EEEEiRKS5_RT_RT0_
_ZN9oceanbase3sql8ObPCVSet19inner_get_cache_objERNS0_14ObILibCacheCtxEPNS0_14ObILibCacheKeyERPNS0_17ObILibCacheObjectE
_ZN9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEEE9push_backERKS2_
_ZN9oceanbase3sql9ObPlanSet17match_params_infoEPKNS_6common9Ob2DArrayINS2_10ObObjParamELi2079744ENS2_18ObWrapperAllocatorELb0ENS2_9ObSEArrayIPS4_Ll1ES5_Lb0EEEEERNS0_14ObPlanCacheCtxElRb
_ZN9oceanbase3sql15ObResolverUtils14resolver_paramERNS0_14ObPlanCacheCtxERNS0_16ObSQLSessionInfoERKNS_6common9Ob2DArrayINS6_10ObObjParamELi2079744ENS6_18ObWrapperAllocatorELb0ENS6_9ObSEArrayIPS8_Ll1ES9_Lb0EEEEENS0_4stmt8StmtTypeENS6_13ObCharsetTypeERKNS6_8ObBitSetILl256ENS6_19ModulePageAllocatorELb0EEESN_SN_PKNS0_9ObPCParamElRS8_Rbb
_ZN9oceanbase3sql17ObPhysicalPlanCtx22init_datum_param_storeEv
_ZZN9oceanbase3sql9ObPlanSet17match_params_infoEPKNS_6common9Ob2DArrayINS2_10ObObjParamELi2079744ENS2_18ObWrapperAllocatorELb0ENS2_9ObSEArrayIPS4_Ll1ES5_Lb0EEEEERNS0_14ObPlanCacheCtxElRbENK5$_621clEPKc
_ZN9oceanbase3sql12ObSqlPlanSet11select_planERNS0_14ObPlanCacheCtxERPNS0_17ObPlanCacheObjectE
_ZN9oceanbase3sql12ObSqlPlanSet13get_plan_typeERKNS_6common8ObIArrayINS0_15ObTableLocationEEEbRNS0_14ObPlanCacheCtxERNS3_INS0_15ObCandiTableLocEEERNS0_13ObPhyPlanTypeE
_ZN9oceanbase6common6ObListINS0_10ObTabletIDENS0_12ObIAllocatorEE9push_backERKS2_
_ZN9oceanbase6common13ObSEArrayImplINS_3sql16ObCandiTabletLocELl2ENS0_19ModulePageAllocatorELb1EED2Ev
_ZZN9oceanbase3sql19ObPhyLocationGetter17get_phy_locationsERKNS_6common8ObIArrayINS0_15ObTableLocationEEERKNS0_14ObPlanCacheCtxERNS3_INS0_15ObCandiTableLocEEERbENK5$_389clEPKc
_ZN9oceanbase3sql8ObDASCtx19add_candi_table_locERKNS0_17ObDASTableLocMetaERKNS0_15ObCandiTableLocE
_ZNK9oceanbase3sql16ObCandiTabletLoc20get_priority_replicaElRNS_5share19ObLSReplicaLocationE
_ZN9oceanbase6common6ObListIPNS_3sql13ObDASTableLocENS0_12ObIAllocatorEE9push_backERKS4_
_ZNK9oceanbase3sql17ObDASTableLocMeta17init_related_metaEmRS1_
_ZZN9oceanbase3sql15ObResolverUtils14resolver_paramERNS0_14ObPlanCacheCtxERNS0_16ObSQLSessionInfoERKNS_6common9Ob2DArrayINS6_10ObObjParamELi2079744ENS6_18ObWrapperAllocatorELb0ENS6_9ObSEArrayIPS8_Ll1ES9_Lb0EEEEENS0_4stmt8StmtTypeENS6_13ObCharsetTypeERKNS6_8ObBitSetILl256ENS6_19ModulePageAllocatorELb0EEESN_SN_PKNS0_9ObPCParamElRS8_RbbENK5$_756clEPKc
_ZN9oceanbase3sql19ObPhyLocationGetter17get_phy_locationsERKNS_6common8ObIArrayINS0_15ObTableLocationEEERKNS0_14ObPlanCacheCtxERNS3_INS0_15ObCandiTableLocEEERb
_ZNK9oceanbase3sql18ObBasicSessionInfo16get_sys_variableENS_5share17ObSysVarClassTypeERl
_ZN9oceanbase3sql9ObLogPlan22strong_select_replicasERKNS_6common6ObAddrERNS2_8ObIArrayIPNS0_15ObCandiTableLocEEERbb
_ZN9oceanbase3sql15ObCandiTableLoc17all_select_leaderERbRNS_6common6ObAddrE
_ZNK9oceanbase3sql15ObTableLocation32calculate_candi_tablet_locationsERNS0_13ObExecContextERKNS_6common9Ob2DArrayINS4_10ObObjParamELi2079744ENS4_18ObWrapperAllocatorELb0ENS4_9ObSEArrayIPS6_Ll1ES7_Lb0EEEEERNS4_8ObIArrayINS0_16ObCandiTabletLocEEERKNS4_20ObDataTypeCastParamsE
_ZN9oceanbase5share19ObLSReplicaLocationD2Ev
_ZN9oceanbase6common25is_partition_change_errorEi
_ZN9oceanbase3sql19ObDASLocationRouter35nonblock_get_candi_tablet_locationsERKNS0_17ObDASTableLocMetaERKNS_6common8ObIArrayINS5_10ObTabletIDEEERKNS6_ImEESD_RNS6_INS0_16ObCandiTabletLocEEE
_ZSt11_Hash_bytesPKvmm
_ZN9oceanbase8observer14global_contextEv
_ZN9oceanbase5share17ObTabletLSService12nonblock_getEmRKNS_6common10ObTabletIDERNS0_6ObLSIDE
_ZN9oceanbase5share19ObLSLocationService12nonblock_getElmRKNS0_6ObLSIDERNS0_12ObLSLocationE
_ZN9oceanbase3sql14ObOptTabletLoc33assign_with_only_readable_replicaERKmS3_RKNS_6common10ObTabletIDERKNS_5share12ObLSLocationE
_ZN9oceanbase6common6DCHashINS_11transaction7ObBLKeyELl128EE3getERKS3_RPNS0_11KeyHashNodeIS3_EE
_ZZN9oceanbase3sql19ObDASLocationRouter35nonblock_get_candi_tablet_locationsERKNS0_17ObDASTableLocMetaERKNS_6common8ObIArrayINS5_10ObTabletIDEEERKNS6_ImEESD_RNS6_INS0_16ObCandiTabletLocEEEENK5$_407clEPKc
_ZZNK9oceanbase3sql15ObTableLocation20calculate_tablet_idsERNS0_13ObExecContextERKNS_6common9Ob2DArrayINS4_10ObObjParamELi2079744ENS4_18ObWrapperAllocatorELb0ENS4_9ObSEArrayIPS6_Ll1ES7_Lb0EEEEERNS4_8ObIArrayINS4_10ObTabletIDEEERNSE_ImEESJ_RKNS4_20ObDataTypeCastParamsEENK6$_1757clEPKc.llvm.1068093050124865451
_ZN9oceanbase3sql21ObSqlParameterization11fast_parserERNS_6common12ObIAllocatorERKNS0_9FPContextERKNS2_8ObStringERNS0_18ObFastParserResultE
_ZN9oceanbase3sql16ObFastParserBase5parseERKNS_6common8ObStringERPcRlRP10_ParamListS8_S8_
_ZN9oceanbase3sql17ObFastParserMysql16parse_next_tokenEv
_ZN9oceanbase3sql17ObFastParserMysql18process_identifierEb
_ZN9oceanbase3sql16ObFastParserBase14process_numberEb
_Z17ob_strntoull_8bitPK13ObCharsetInfoPKcmiPPcPi
_ZZN9oceanbase3sql8ObDASCtx19add_candi_table_locERKNS0_17ObDASTableLocMetaERKNS0_15ObCandiTableLocEENK4$_73clEPKc
_ZZN9oceanbase5share19ObLSLocationService15get_from_cache_ElmRKNS0_6ObLSIDERNS0_12ObLSLocationEENK5$_374clEPKc
_ZN9oceanbase3sql12ObSortOpImpl4sortEv
_ZN9oceanbase3sql12ObSortOpImpl12ObAdaptiveQS4initERNS_6common8ObIArrayIPNS0_17ObChunkDatumStore9StoredRowEEERNS3_12ObIAllocatorEllRb
_ZN9oceanbase7storage19ObSSTableRowScannerINS0_30ObIndexTreeMultiPassPrefetcherILi32ELi3EEEE19open_cur_data_blockERNS0_19ObSSTableReadHandleE
_ZThn352_N9oceanbase12blocksstable18ObMicroBlockReader4initERKNS0_16ObMicroBlockDataERKNS_7storage16ObITableReadInfoE
_ZThn352_N9oceanbase12blocksstable18ObMicroBlockReader10find_boundERKNS0_13ObDatumRowkeyEblRlRb
_ZThn352_N9oceanbase12blocksstable18ObMicroBlockReader10find_boundERKNS0_12ObDatumRangeElRlRbS5_S5_
_ZN9oceanbase7storage22ObMicroBlockDataHandle21get_loaded_block_dataERNS_12blocksstable16ObMicroBlockDataE
_ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScanner4openERKNS0_12MacroBlockIdERKNS0_16ObMicroBlockDataEbb
_ZNK9oceanbase7storage16ObReadInfoStruct15get_datum_utilsEv
_ZN9oceanbase12blocksstable18ObMicroBlockReader10find_boundERKNS0_13ObDatumRowkeyEblRlRb
_ZN9oceanbase12blocksstable11ObRowReader19compare_meta_rowkeyERKNS0_13ObDatumRowkeyERKNS0_19ObStorageDatumUtilsEPKclRi
_ZN9oceanbase12blocksstableL18nonext_ext_compareERKNS0_14ObStorageDatumES3_RKNS_6common9ObCmpFuncERi.llvm.12553954299408958552
_ZN9oceanbase12blocksstable18ObMicroBlockReader4initERKNS0_16ObMicroBlockDataERKNS_7storage16ObITableReadInfoE
_ZZN9oceanbase12blocksstable22ObIndexBlockRowScanner12locate_rangeERKNS0_12ObDatumRangeEbbENK5$_535clEPKc
_ZN9oceanbase7storage19ObMultipleScanMerge19inner_get_next_rowsEv
_ZNK9oceanbase7storage22ObBlockBatchedRowStore6is_endEv
_ZN9oceanbase8memtable22ObMemtableScanIteratorD2Ev
_ZNK9oceanbase8memtable13ObMemtableKey16dup_without_hashINS_6common12ObIAllocatorEEEiRPS1_RT_
_ZN9oceanbase6common26ObWrapperAllocatorWithAttr5allocEl
_ZNK9oceanbase3sql15ObTableLocation20calculate_tablet_idsERNS0_13ObExecContextERKNS_6common9Ob2DArrayINS4_10ObObjParamELi2079744ENS4_18ObWrapperAllocatorELb0ENS4_9ObSEArrayIPS6_Ll1ES7_Lb0EEEEERNS4_8ObIArrayINS4_10ObTabletIDEEERNSE_ImEESJ_RKNS4_20ObDataTypeCastParamsE
_ZN9oceanbase3sql19DASRelatedTabletMap21add_related_tablet_idENS_6common10ObTabletIDEmS3_mm
_ZN9oceanbase3sql19ObDASLocationRouter31refresh_location_cache_by_errnoEbi
_ZNK9oceanbase7obmysql12ObMySQLField15serialize_pro41EPclRl
_ZN9oceanbase6common16ObWaitEventGuardC1Elmlllb
_ZN9oceanbase6common16ObWaitEventGuardC2Elmlllb
_ZZNK9oceanbase3sql8ObOpSpec15create_operatorERNS0_13ObExecContextERPNS0_10ObOperatorEENK5$_127clEPKc.llvm.2936879241273426121
MD5
_ZN9oceanbase3sql8ObParser10is_pl_stmtERKNS_6common8ObStringEPbS6_
_ZN9oceanbase8observer8ObMPBase13after_processEi
_ZN9oceanbase7storage21ObFuseRowCacheFetcher18put_fuse_row_cacheERKNS_12blocksstable13ObDatumRowkeyERNS2_10ObDatumRowEl
_ZNK9oceanbase12blocksstable17ObFuseRowCacheKey13get_tenant_idEv
_ZN9oceanbase6common15ObKVGlobalCache3putINS0_18ObKVMemBlockHandleEEEiRNS0_15ObIKVCacheStoreIT_EElRKNS0_13ObIKVCacheKeyERKNS0_15ObIKVCacheValueERPSC_RPS3_b
_ZN9oceanbase12blocksstable22ObMicroBlockRowScanner4openERKNS0_12MacroBlockIdERKNS0_16ObMicroBlockDataEbb
_ZN9oceanbase12blocksstable20ObIMicroBlockDecoder10find_boundERKNS0_12ObDatumRangeElRlRbS5_S5_
_ZN9oceanbase12blocksstable20ObIMicroBlockDecoder10find_boundERKNS0_13ObDatumRowkeyEblRlRb
_ZN9oceanbase12blocksstable19ObMicroBlockDecoder14compare_rowkeyERKNS0_13ObDatumRowkeyElRi
_ZNK9oceanbase12blocksstable13ObFixRowIndex3getElRPKcRl
_ZN9oceanbase12blocksstable19ObMicroBlockDecoder14compare_rowkeyERKNS0_12ObDatumRangeElRiS5_
_ZN9oceanbase12blocksstable19ObMicroBlockDecoder4initERKNS0_16ObMicroBlockDataERKNS_7storage16ObITableReadInfoE
_ZN9oceanbase12blocksstable19ObMicroBlockDecoder7do_initERKNS0_16ObMicroBlockDataE
_ZN9oceanbase12blocksstable13ObFixRowIndex4initEPKcll
_ZNK9oceanbase12blocksstable18ObMicroBlockHeader8is_validEv
_ZN9oceanbase12blocksstable19ObMicroBlockDecoder13init_decodersEv
_ZN9oceanbase12blocksstable19ObMicroBlockDecoder11add_decoderElRKNS_6common9ObObjMetaERNS0_15ObColumnDecoderE
_ZN9oceanbase3sql11ObResultSet7executeEv
_ZNK9oceanbase3sql8ObOpSpec25create_operator_recursiveERNS0_13ObExecContextERPNS0_10ObOperatorE
_ZNK9oceanbase6common16ObArenaAllocator4usedEv
_ZNK9oceanbase3sql8ObOpSpec36link_sql_plan_monitor_node_recursiveERNS0_13ObExecContextERPNS0_13ObMonitorNodeE
_ZN9oceanbase3sql8ObDASRefC1ERNS0_9ObEvalCtxERNS0_13ObExecContextE
_ZN9oceanbase3sql8ObDASRefC2ERNS0_9ObEvalCtxERNS0_13ObExecContextE
_ZN9oceanbase3sql16ObDASTaskFactoryC1ERNS_6common12ObIAllocatorE
_ZN9oceanbase3sql16ObDASTaskFactoryC2ERNS_6common12ObIAllocatorE
_ZN9oceanbase6common12ObThreadCond4initEi
_ZNK9oceanbase3sql8ObOpSpec35create_exec_feedback_node_recursiveERNS0_13ObExecContextE
_ZZNK9oceanbase3sql8ObOpSpec25create_operator_recursiveERNS0_13ObExecContextERPNS0_10ObOperatorEENK5$_134clEPKc
_ZN9oceanbase3sql17ObSqlTransControl10start_stmtERNS0_13ObExecContextE
_ZN9oceanbase7storage26ObTabletCreateDeleteHelper20check_and_get_tabletERKNS0_14ObTabletMapKeyERNS0_14ObTabletHandleElNS0_18ObMDSGetTabletModeEl
_ZN9oceanbase7storage26ObTabletCreateDeleteHelper10get_tabletERKNS0_14ObTabletMapKeyERNS0_14ObTabletHandleEl
_ZN9oceanbase6common5occam16ObOccamTimeGuardD2Ev
_ZN9oceanbase7storage8ObTablet24check_new_mds_with_cacheEll
_ZN9oceanbase11transaction14ObTxExecResult5resetEv
_ZN9oceanbase7storage18ObTenantMetaMemMgr10get_tabletERKNS0_18WashTabletPriorityERKNS0_14ObTabletMapKeyERNS0_14ObTabletHandleE
_ZN9oceanbase7storage14ObTabletHandleD1Ev
_ZN9oceanbase7storage14ObTabletHandleD2Ev
_ZN9oceanbase11transaction16ObTransStatistic26add_elr_enable_trans_countEml
_ZN9oceanbase11transaction11ObTxELRUtil26refresh_elr_tenant_config_Ev
_ZN9oceanbase11transaction14ObTransService20get_ls_read_snapshotERNS0_8ObTxDescENS0_18ObTxIsolationLevelERKNS_5share6ObLSIDElRNS0_16ObTxReadSnapshotE
_ZN9oceanbase7storage13ObLSTxService29check_in_leader_serving_stateERb
_ZN9oceanbase11transaction14ObTransService23acquire_local_snapshot_ERKNS_5share6ObLSIDERNS2_3SCNEbRb
_ZN9oceanbase7storage11ObLSService6get_lsERKNS_5share6ObLSIDERNS0_10ObLSHandleENS0_10ObLSGetModE
_ZN9oceanbase6common11ObQSyncLock10try_rdlockEv
_ZN9oceanbase7storage10ObLSHandleD1Ev
_ZN9oceanbase7storage10ObLSHandleD2Ev
_ZN9oceanbase11transaction7ObTsMgr7get_gtsEmPNS0_10ObTsCbTaskERNS_5share3SCNE
_ZN9oceanbase11transaction12ObLSTxCtxMgr23in_leader_serving_stateEv
_ZZN9oceanbase11transaction14ObTransService23acquire_local_snapshot_ERKNS_5share6ObLSIDERNS2_3SCNEbRbENK6$_1334clEPKc
_ZN9oceanbase11transaction16ObLSTxLogAdapter8get_roleERbRl
_ZNK9oceanbase10logservice16ObLogHandlerBase8get_roleERNS_6common6ObRoleERl
_ZNK9oceanbase4palf14PalfHandleImpl8get_roleERNS_6common6ObRoleERlRb
_ZNK9oceanbase4palf8election12ElectionImpl8get_roleERNS_6common6ObRoleERl
_ZNK9oceanbase3sql15ObExprFrameInfo11alloc_frameERNS_6common12ObIAllocatorERKNS2_8ObIArrayIPcEERmRPS6_
_ZZNK9oceanbase11transaction14ObTxVersionMgr17get_max_commit_tsEbENKUlPKcE_clES3_
_ZZNK9oceanbase3sql8ObOpSpec25create_operator_recursiveERNS0_13ObExecContextERPNS0_10ObOperatorEENK5$_130clEPKc
_ZZN9oceanbase3sql8ObDASCtx4initERKNS0_14ObPhysicalPlanERNS0_13ObExecContextEENK4$_40clEPKc.llvm.15271004367076977045
_ZN9oceanbase7storage21ObTenantTabletStatMgr11report_statERKNS0_12ObTabletStatERb
_ZN9oceanbase12blocksstable14ObFuseRowCache7get_rowERKNS0_17ObFuseRowCacheKeyERNS0_20ObFuseRowValueHandleE
_ZN9oceanbase12blocksstable19ObMicroBlockDecoderC1Ev
_ZN9oceanbase7storage18ObTabletPointerMap12get_meta_objERKNS0_14ObTabletMapKeyERNS0_14ObMetaObjGuardINS0_8ObTabletEEE
_ZN9oceanbase7storage18ObTabletPointerMap26try_get_in_memory_meta_objERKNS0_14ObTabletMapKeyERNS0_21ObTabletPointerHandleERNS0_14ObMetaObjGuardINS0_8ObTabletEEERb
_ZN9oceanbase6common4hash11ObHashTableINS_7storage14ObTabletMapKeyENS1_11HashMapPairIS4_PNS3_20ObResourceValueStoreINS3_15ObTabletPointerEEEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstISA_EENS1_13SimpleAllocerINS1_15ObHashTableNodeISA_EELi97ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKS4_RSA_l
_ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE7set_objERNS0_9ObMetaObjIS2_EE
_ZN9oceanbase6common12ObBucketLock6rdlockEml
_ZZNK9oceanbase8observer8ObMPBase16init_process_varERNS_3sql8ObSqlCtxERKNS2_15ObMultiStmtItemERNS2_16ObSQLSessionInfoEENK5$_350clEPKc
_ZN9oceanbase7storage21ObIndexTreePrefetcher19prefetch_block_dataERNS_12blocksstable16ObMicroIndexInfoERNS0_22ObMicroBlockDataHandleEb
_ZN9oceanbase7storage21ObMicroBlockHandleMgr22get_micro_block_handleERKNS_12blocksstable16ObMicroIndexInfoEbbRNS0_22ObMicroBlockDataHandleE
_ZN9oceanbase7storage22ObMicroBlockDataHandle24try_release_loaded_blockEv
_ZN9oceanbase12blocksstable18ObIMicroBlockCache15get_cache_blockEmNS0_12MacroBlockIdEllRNS0_24ObMicroBlockBufferHandleE
_ZN9oceanbase6common12ObKVCacheMap3getElRKNS0_13ObIKVCacheKeyERPKNS0_15ObIKVCacheValueERPNS0_18ObKVMemBlockHandleE
_ZN9oceanbase6common22ObKVCacheHazardStation7releaseEl
_ZNK9oceanbase12blocksstable20ObMicroBlockCacheKey4hashEv
_ZNK9oceanbase12blocksstable20ObMicroBlockCacheKeyeqERKNS_6common13ObIKVCacheKeyE
_ZN9oceanbase6common22ObKVCacheHazardStation7acquireERl
_ZNK9oceanbase7storage16ObStorageMetaKey4hashEv
_ZNK9oceanbase12blocksstable17ObFuseRowCacheKey4hashERm
_ZN9oceanbase6common11DefHashFuncINS0_19DatumHashCalculatorILNS0_9ObObjTypeE4ENS0_12ObMurmurHashEEEE4hashERKNS0_7ObDatumEmRm
_ZNK9oceanbase12blocksstable13ObDatumRowkey10murmurhashEmRKNS0_19ObStorageDatumUtilsERm
_ZNK9oceanbase12blocksstable21ObBloomFilterCacheKey4hashEv
_ZNK9oceanbase12blocksstable19ObFuseRowCacheValue4sizeEv
_ZNK9oceanbase7storage16ObStorageMetaKeyeqERKNS_6common13ObIKVCacheKeyE
_ZN9oceanbase3sql11ObPlanCache23check_can_do_insert_optERNS_6common12ObIAllocatorERNS0_14ObPlanCacheCtxERNS0_18ObFastParserResultERbRlRNS2_8ObStringES9_
_ZN9oceanbase8observer16ObSrvMySQLXlator9translateERNS_3rpc9ObRequestERPNS2_5frame14ObReqProcessorE
_ZTWN9oceanbase6common13ObPageManager12tl_instance_E
_ZN9oceanbase3sql8ObSqlCtxC1Ev
_ZN9oceanbase7storage18ObSSTableRowGetterD2Ev
_ZN9oceanbase7storage21ObMicroBlockHandleMgr13dec_hold_sizeERNS0_22ObMicroBlockDataHandleE
_ZN9oceanbase8observer16ObMPPacketSender14send_ok_packetERNS_3sql16ObSQLSessionInfoERNS0_10ObOKPParamEPNS_7obmysql13ObMySQLPacketE
_ZZN9oceanbase7storage13ObSingleMerge22get_and_fuse_cache_rowEllRNS_12blocksstable10ObDatumRowERbS5_S5_ENK5$_386clEPKc
_ZN9oceanbase7storage19ObMultipleScanMergeD1Ev
_ZN9oceanbase7storage19ObMultipleScanMergeD2Ev
_ZN9oceanbase7storage22ObMicroBlockDataHandleD1Ev
_ZN9oceanbase7storage22ObMicroBlockDataHandleD2Ev
_ZN9oceanbase12blocksstable18ObMacroBlockHandleD1Ev
_ZN9oceanbase12blocksstable18ObMacroBlockHandleD2Ev
_ZN9oceanbase6common10ObIOHandleD1Ev
_ZN9oceanbase6common18ObWrapperAllocator4freeEPv
_ZN9oceanbase6common15ObKVCacheHandleD1Ev
_ZN9oceanbase6common15ObKVCacheHandleD2Ev
_ZN9oceanbase12blocksstable18ObMacroBlockHandle5resetEv
_ZN9oceanbase6common15ObKVCacheHandle5resetEv
_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE22ObIndexTreeLevelHandleD2Ev
_ZN9oceanbase12blocksstable24ObMicroBlockReaderHelper5resetEv
_ZN9oceanbase7storage19ObSSTableRowScannerINS0_30ObIndexTreeMultiPassPrefetcherILi32ELi3EEEED1Ev
_ZN9oceanbase7storage19ObSSTableRowScannerINS0_30ObIndexTreeMultiPassPrefetcherILi32ELi3EEEED2Ev
_ZN9oceanbase12blocksstable23ObIMicroBlockRowScannerD2Ev
_ZN9oceanbase7storage15ObTxTableGuardsD2Ev
_ZN9oceanbase6common16ObFixedArrayImplINS_7storage19ObSSTableReadHandleENS0_12ObIAllocatorEED2Ev
_ZN9oceanbase12blocksstable18ObMicroBlockReaderD2Ev
_ZN9oceanbase7storage21ObIndexTreePrefetcherD2Ev
_ZN9oceanbase3lib17ObMallocAllocator12get_instanceEv
_ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScannerD2Ev
_ZN9oceanbase12blocksstable22ObBlockReaderAllocatorD2Ev
_ZN9oceanbase6common16ObFixedArrayImplINS_5share6schema16ObColumnSchemaV2ENS0_12ObIAllocatorEED2Ev
_ZN9oceanbase8memtable17ObMvccRowIteratorD1Ev
_ZN9oceanbase8memtable17ObMvccRowIteratorD2Ev
_ZN9oceanbase8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorINS0_20ObStoreRowkeyWrapperEPNS0_9ObMvccRowEEEE5resetEv
_ZN9oceanbase7storage13ObVectorStoreD2Ev
_ZN9oceanbase6common16ObArenaAllocatorD2Ev
_ZN9oceanbase8memtable13ObQueryEngine4scanEPKNS0_13ObMemtableKeyEbS4_blRPNS0_22ObIQueryEngineIteratorE
_ZN9oceanbase5trace7ObTrace10begin_spanEjhb
_ZN9oceanbase3sql17ObMergeDistinctOp10inner_openEv
_ZN9oceanbase3sql16ObSQLSessionInfo24ObCachedTenantConfigInfo7refreshEv
_ZZN9oceanbase3sql8ObPCVSet19inner_get_cache_objERNS0_14ObILibCacheCtxEPNS0_14ObILibCacheKeyERPNS0_17ObILibCacheObjectEENK4$_86clEPKc
_ZN9oceanbase7storage22ObMicroBlockDataHandle5resetEv
_ZN9oceanbase3sql15ObTableModifyOp7destroyEv
_ZN9oceanbase3sql16ObChunkStoreUtil12alloc_dir_idERl
_ZN9oceanbase3sql16AllocInputHelperILi26EE5allocERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecERPNS0_9ObOpInputE
_ZN9oceanbase6common11ObArrayImplIPNS_3sql17ObChunkDatumStore9StoredRowENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEED2Ev
_ZN9oceanbase6common14ObSmallObjPoolINS_12blocksstable23ObColumnDecoderCtxBlockEE5allocERPS3_
_ZN9oceanbase7storage19ObSSTableRowScannerINS0_30ObIndexTreeMultiPassPrefetcherILi32ELi3EEEE13get_next_rowsEv
_ZZN9oceanbase7storage15ObMultipleMerge20get_next_normal_rowsERllENK5$_490clEPKc
_ZN9oceanbase12blocksstable9ObSSTable3getERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS0_13ObDatumRowkeyERPNS2_18ObStoreRowIteratorE
_ZN9oceanbase7storage18ObSSTableRowGetter10inner_openERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextEPNS0_8ObITableEPKv
_ZN9oceanbase12blocksstable22ObIndexBlockRowScanner4openERKNS0_12MacroBlockIdERKNS0_16ObMicroBlockDataERKNS0_13ObDatumRowkeyElPKNS0_16ObMicroIndexInfoE
_ZN9oceanbase12blocksstable22ObIndexBlockRowScanner10locate_keyERKNS0_13ObDatumRowkeyE
_ZNK9oceanbase12blocksstable9ObSSTable8get_metaERNS0_19ObSSTableMetaHandleEPNS_6common20ObSafeArenaAllocatorE
_ZZN9oceanbase12blocksstable22ObIndexBlockRowScanner10locate_keyERKNS0_13ObDatumRowkeyEENK5$_520clEPKc
_ZN9oceanbase7storage21ObIndexTreePrefetcher18check_bloom_filterERKNS_12blocksstable16ObMicroIndexInfoEbRNS0_19ObSSTableReadHandleE
_ZN9oceanbase6common15ObKVGlobalCache12get_instanceEv
_ZN9oceanbase12blocksstable34ObMultiVersionMicroBlockRowScanner4initERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextEPKNS0_9ObSSTableE
_ZN9oceanbase7storage15ObTxTableGuards5reuseEv
_ZNK9oceanbase8observer9ObMPQuery11record_statENS_3sql4stmt8StmtTypeEl
_ZN9oceanbase6common12ObKVCacheMap3putERNS0_13ObKVCacheInstERKNS0_13ObIKVCacheKeyEPKNS0_13ObKVCachePairEPNS0_18ObKVMemBlockHandleEb
_ZN9oceanbase3sql10ObFLTUtils22init_flt_log_frameworkERNS0_16ObSQLSessionInfoEb
_ZN9oceanbase11transaction8ObTxDesc20in_tx_for_free_routeEv
_ZN9oceanbase6common16ObKVCacheInstMap14get_cache_instERKNS0_16ObKVCacheInstKeyERNS0_19ObKVCacheInstHandleE
_ZN9oceanbase12blocksstable19ObMicroBlockDecoderD2Ev
_ZN9oceanbase3lib17ObMallocAllocator4freeEPv
_ZN9oceanbase6common14ObSmallObjPoolINS_12blocksstable23ObColumnDecoderCtxBlockEE4freeEPS3_
_ZN9oceanbase12blocksstable17ObDecoderCtxArray5resetEv
_ZN9oceanbase3omt10ObThWorker20check_qtime_throttleEv
_ZThn352_N9oceanbase12blocksstable18ObMicroBlockReader14get_row_headerElRPKNS0_11ObRowHeaderE
_ZNK9oceanbase5trace4UUID8tostringEPclRl
_ZN9oceanbase12blocksstable18ObBloomFilterCache11may_containEmRKNS0_12MacroBlockIdERKNS0_13ObDatumRowkeyERKNS0_19ObStorageDatumUtilsERb
_ZNK9oceanbase12blocksstable21ObBloomFilterCacheKeyeqERKNS_6common13ObIKVCacheKeyE
_ZZN9oceanbase5share17ObTabletLSService15get_from_cache_EmRKNS_6common10ObTabletIDERNS0_15ObTabletLSCacheEENK5$_465clEPKc
_ZN9oceanbase3sql20ObSecurityAuditUtils21handle_security_auditERNS0_11ObResultSetEPNS_5share6schema19ObSchemaGetterGuardEPKNS0_6ObStmtERKNS_6common8ObStringEi
_ZN9oceanbase12blocksstable21ObMicroBlockRowGetter7get_rowERNS_7storage19ObSSTableReadHandleERPKNS0_10ObDatumRowERNS0_18ObMacroBlockReaderE
_ZN9oceanbase12blocksstable21ObMicroBlockGetReader7get_rowERKNS0_16ObMicroBlockDataERKNS0_13ObDatumRowkeyERKNS_7storage16ObITableReadInfoERNS0_10ObDatumRowE
_ZNK9oceanbase7storage16ObRowkeyReadInfo25get_seq_read_column_countEv
_ZN9oceanbase6common11ObArrayImplIPNS_3sql12ObSortOpImpl13SortStoredRowENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEED2Ev
_ZN9oceanbase3sql24ObValuesTableCompression21try_batch_exec_paramsERNS_6common12ObIAllocatorERNS0_14ObPlanCacheCtxERNS0_16ObSQLSessionInfoERNS0_18ObFastParserResultE
_ZN9oceanbase6common13ObSEArrayImplIlLl16ENS0_19ModulePageAllocatorELb0EED2Ev
_ZN9oceanbase3sql13ObDASUpdateOpD2Ev
_ZN9oceanbase3sql19ObScalarAggregateOp10inner_openEv
_ZN9oceanbase7storage21ObIndexTreePrefetcher20lookup_in_index_treeERNS0_19ObSSTableReadHandleEb
_ZN9oceanbase6common19ModulePageAllocator4freeEPv
_ZN9oceanbase7storage12ObSumAggCell5reuseEv
_ZZN9oceanbase5share24ObOrderPerservingEncoder25encode_from_string_varlenENS_6common8ObStringEPhlRlRNS0_10ObEncParamEENK5$_958clEPKc.llvm.425457886051521826
_ZN9oceanbase3sql9ObPlanSet16match_constraintERKNS_6common9Ob2DArrayINS2_10ObObjParamELi2079744ENS2_18ObWrapperAllocatorELb0ENS2_9ObSEArrayIPS4_Ll1ES5_Lb0EEEEERb
_ZN9oceanbase6common11ObArrayImplINS_3sql9ObDopHintENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev
_ZN9oceanbase3sql11ObGroupByOp10inner_openEv
_ZN9oceanbase3sql15ObTableInsertOp11inner_closeEv
_ZN9oceanbase11transaction14ObTransService33create_global_implicit_savepoint_ERNS0_8ObTxDescERKNS0_9ObTxParamERNS0_7ObTxSEQEb
_ZZN9oceanbase7storage19ObSSTableRowScannerINS0_30ObIndexTreeMultiPassPrefetcherILi32ELi3EEEE10fetch_rowsERNS0_19ObSSTableReadHandleEENKUlPKcE2_clES8_
_ZZN9oceanbase3sql15ObTableModifyOp23get_next_row_from_childEvENK5$_832clEPKc.llvm.14688916928656024692
_ZN9oceanbase3sql15ObTableDeleteOp11inner_closeEv
_ZN9oceanbase7storage22ObBlockBatchedRowStoreD2Ev
_ZNK9oceanbase8memtable20ObStoreRowkeyWrapper5equalERKS1_Rb
_ZN9oceanbase5trace7ObTrace8end_spanEPNS0_9ObSpanCtxE
_ZN9oceanbase3sql20ObAggregateProcessor4initEv
_ZN9oceanbase3sql14ObExprValuesOp11inner_closeEv
_ZN9oceanbase6common22ObKVCacheHazardStation11delete_nodeElPNS0_19ObKVCacheHazardNodeE
_ZNK9oceanbase12blocksstable17ObFuseRowCacheKey4sizeEv
_ZN9oceanbase3lib9SetLockerINS0_7ObMutexEE6unlockEv
_ZN9oceanbase3lib12SubObjectMgr11alloc_blockEmRKNS0_9ObMemAttrE
_ZN9oceanbase3sql15ObSubPlanScanOp7destroyEv
_ZTWN9oceanbase8memtable33TLOCAL_NEED_WAIT_IN_LOCK_WAIT_MGRE
_ZN9oceanbase3sql17ObMergeDistinctOp20inner_get_next_batchEl
_ZN9oceanbase3sql17ObMergeDistinctOp21deduplicate_for_batchEbPKNS0_11ObBatchRowsE
_ZN9oceanbase3sql17ObChunkDatumStore9StoredRow8do_buildILb0EEEiRPS2_RKNS_6common8ObIArrayIPNS0_6ObExprEEERNS0_9ObEvalCtxEPclj
_ZN9oceanbase3sql17ObChunkDatumStore13row_copy_sizeERKNS_6common8ObIArrayIPNS0_6ObExprEEERNS0_9ObEvalCtxERl
_ZN9oceanbase7obmysql8ObSqlNio3runEl
_ZN9oceanbase7obmysql16ObSqlSockHandler11on_readableEPv
_ZN9oceanbase8observer12ObSrvDeliver7deliverERNS_3rpc9ObRequestE
_ZN9oceanbase3omt8ObTenant12recv_requestERNS_3rpc9ObRequestE
_ZN9oceanbase6common13ObLinkHashMapINS_3sql14SessionInfoKeyENS2_16ObSQLSessionInfoENS2_15ObSQLSessionMgr10ValueAllocENS0_9RefHandleELl8EE3getERKS3_RPS4_
_ZZN9oceanbase7obmysql12ObSqlNioImpl11revert_sockEPNS0_9ObSqlSockEENKUlPKcE1_clES5_
_ZN9oceanbase6common16ObPriorityQueue2ILi0ELi1ELi0EE4pushEPNS0_6ObLinkEi
_ZN9oceanbase6common9SCondTempILi3EE6signalEji
_ZN9oceanbase3rpc25get_stat_srv_by_tenant_idEm
_ZN9oceanbase8observer12ObSrvDeliver19deliver_rpc_requestERNS_3rpc9ObRequestE
_ZNK9oceanbase3omt13ObMultiTenant10get_tenantEmRPNS0_8ObTenantE
_ZN9oceanbase6common21ObDIThreadTenantCache8get_nodeEmRPNS0_17ObDITenantCollectE
_Z23check_easy_memory_limitRN9oceanbase3rpc9ObRequestE
_ZN9oceanbase6common4hash11ObHashTableImNS1_12ObReferedMapImNS_10rootserver14DRUnitStatInfoEE4ItemENS1_9hash_funcImEENS1_8equal_toImEENS7_6GetKeyENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi5ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv
_ULx86_64_init_local
_ZNK10__cxxabiv117__class_type_info12__do_dyncastElNS0_10__sub_kindEPKS0_PKvS3_S5_RNS0_16__dyncast_resultE
_ZN9oceanbase3lib18MySimpleThreadPool6handleEPv
_ZN9oceanbase11transaction10ObTxCtxMgr38get_ls_min_uncommit_tx_prepare_versionERKNS_5share6ObLSIDERNS2_3SCNE
_ZN9oceanbase11transaction10ObTxCtxMgr17get_ls_tx_ctx_mgrERKNS_5share6ObLSIDERPNS0_12ObLSTxCtxMgrE
_ZNK10__cxxabiv121__vmi_class_type_info12__do_dyncastElNS_17__class_type_info10__sub_kindEPKS1_PKvS4_S6_RNS1_16__dyncast_resultE
_ZNK10__cxxabiv120__si_class_type_info12__do_dyncastElNS_17__class_type_info10__sub_kindEPKS1_PKvS4_S6_RNS1_16__dyncast_resultE
_ULx86_64_tdep_trace
_Ux86_64_getcontext_trace
_ZN9oceanbase3sql13ObTableScanOp22do_init_before_get_rowEv
_ZN9oceanbase6common13ObSEArrayImplINS0_10ObNewRangeELl4ENS0_19ModulePageAllocatorELb0EE9push_backERKS2_
_ZN9oceanbase6common13ObSEArrayImplINS0_10ObNewRangeELl1ENS0_19ModulePageAllocatorELb0EE5reuseEv
_ZN9oceanbase3sql8ObDASRef13find_das_taskEPKNS0_14ObDASTabletLocENS0_11ObDASOpTypeE
_ZZN9oceanbase3sql13ObTableScanOp25prepare_single_scan_rangeElENK5$_201clEPKc
_ZN9oceanbase3sql13ObTableScanOp21GroupRescanParamGuardD2Ev
_ZN9oceanbase3sql13ObTableScanOp25prepare_single_scan_rangeEl
_ZZNK9oceanbase3sql12ObQueryRange24direct_get_tablet_rangesERNS_6common12ObIAllocatorERNS0_13ObExecContextERNS2_9ObSEArrayIPNS2_10ObNewRangeELl1ENS2_19ModulePageAllocatorELb0EEERbRKNS2_20ObDataTypeCastParamsEENK6$_1368clEPKc
_ZN9oceanbase3sql13ObTableScanOp21GroupRescanParamGuard25switch_group_rescan_paramEl
_ZN9oceanbase3sql8ObDASRef16execute_all_taskEv
_ZN9oceanbase3sql11ObDASScanOp7open_opEv
_ZNK9oceanbase7storage16ObTableScanParam8is_validEv
_ZN9oceanbase11transaction16ObTxReadSnapshotaSERKS1_
_ZN9oceanbase7storage15ObAccessService10table_scanERNS_6common17ObVTableScanParamERPNS2_16ObNewRowIteratorE
_ZN9oceanbase6common7ObLatch6wrlockEjlPKj
_ZZN9oceanbase7storage15ObAccessService19check_read_allowed_ERKNS_5share6ObLSIDERKNS_6common10ObTabletIDENS0_17ObStoreAccessTypeERKNS0_16ObTableScanParamERNS0_14ObTabletHandleERNS1_15ObStoreCtxGuardENS2_3SCNEENK4$_50clEPKc
_ZN9oceanbase6common13ObSEArrayImplINS_11transaction6ObPairINS_5share6ObLSIDElEELl1ENS0_19ModulePageAllocatorELb0EE7reserveEl
_ZN9oceanbase6common13ObSEArrayImplImLl4ENS0_19ModulePageAllocatorELb0EE7reserveEl
_ZNK9oceanbase3sql12ObQueryRange24direct_get_tablet_rangesERNS_6common12ObIAllocatorERNS0_13ObExecContextERNS2_9ObSEArrayIPNS2_10ObNewRangeELl1ENS2_19ModulePageAllocatorELb0EEERbRKNS2_20ObDataTypeCastParamsE
_ZN9oceanbase3sql10ObSQLUtils24is_same_type_for_compareERKNS_6common9ObObjMetaES5_
_ZN9oceanbase6common13ObSEArrayImplIPNS0_10ObNewRangeELl1ENS0_19ModulePageAllocatorELb0EE9push_backERKS3_
_ZN9oceanbase3sql8ObDASRef15create_das_taskEPKNS0_14ObDASTabletLocENS0_11ObDASOpTypeERPNS0_12ObIDASTaskOpE
_ZN9oceanbase3sql16AllocDASOpHelperILi1EE5allocERNS_6common12ObIAllocatorERPNS0_12ObIDASTaskOpE
_ZN9oceanbase7storage17ObLSTabletService10table_scanERNS0_14ObTabletHandleERNS0_19ObTableScanIteratorERNS0_16ObTableScanParamE
_ZNK9oceanbase7storage16ObReadInfoStruct23get_schema_column_countEv
_ZNK9oceanbase7storage15ObTableReadInfo20has_all_column_groupEv
_ZNK9oceanbase8memtable15ObMvccAccessCtx15is_read_valid__Ev
_ZN9oceanbase7storage19ObTableScanIterator4initERNS0_16ObTableScanParamERKNS0_14ObTabletHandleE
_ZN9oceanbase7storage21ObMicroBlockHandleMgr4initEbRNS0_16ObTableStoreStatERNS_6common11ObQueryFlagE
_ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEEaSERKS3_
_ZN9oceanbase6common15ObFIFOAllocator4initEPNS0_12ObIAllocatorElRKNS_3lib9ObMemAttrElll
_ZN9oceanbase7storage8ObTablet34check_snapshot_readable_with_cacheEll
_ZN9oceanbase7storage20ObTableAccessContext24build_lob_locator_helperERNS0_16ObTableScanParamERKNS0_10ObStoreCtxERKNS_6common14ObVersionRangeE
_ZN9oceanbase7storage16ObTableScanRange12init_rowkeysERKNS_6common8ObIArrayINS2_10ObNewRangeEEERKNS2_11ObQueryFlagEPKNS_12blocksstable19ObStorageDatumUtilsE
_ZN9oceanbase7storage20ObTableAccessContext19init_scan_allocatorERNS0_16ObTableScanParamE
_ZN9oceanbase7storage19ObTableScanIterator9open_iterEv
_ZNK9oceanbase7storage16ObRowkeyReadInfo17get_request_countEv
_ZN9oceanbase7storage19ObTableScanIterator14init_scan_iterINS0_13ObSingleMergeEEEiRPT_
_ZNK9oceanbase7storage16ObReadInfoStruct16get_columns_descEv
_ZN9oceanbase5share15is_reserve_modeEv
_ZTWN9oceanbase5share17ObTenantDagWorker5self_E
_ZN9oceanbase7storage15ObMultipleMerge4initERNS0_18ObTableAccessParamERNS0_20ObTableAccessContextERNS0_15ObGetTableParamE
_ZNK9oceanbase7storage16ObReadInfoStruct8is_validEv
_ZNK9oceanbase7storage15ObTableReadInfo11get_columnsEv
_ZN9oceanbase7storage20ObRow2ExprsProjector4initERKNS_6common8ObIArrayIPNS_3sql6ObExprEEERNS4_18ObPushdownOperatorERKNS3_IiEE
_ZNK9oceanbase7storage16ObTableIterParam8is_validEv
_ZNK9oceanbase7storage15ObTableReadInfo8is_validEv
_ZN9oceanbase7storage8ObNopPos4initERNS_6common12ObIAllocatorEl
_ZN9oceanbase12blocksstable10ObDatumRow4initERNS_6common12ObIAllocatorElPc
_ZN9oceanbase7storage15ObMultipleMerge19prepare_read_tablesEb
_ZNK9oceanbase12blocksstable9ObSSTable8is_emptyEv
_ZNK9oceanbase8memtable10ObMemtable8is_emptyEv
_ZN9oceanbase7storage8ObTablet15get_read_tablesElRNS0_21ObTabletTableIteratorEb
_ZN9oceanbase7storage15ObMultipleMerge28prepare_tables_from_iteratorERNS0_20ObTableStoreIteratorEPKNS_6common10SampleInfoE
_ZN9oceanbase7storage20ObTableStoreIterator13get_ith_tableElRPNS0_8ObITableE
_ZN9oceanbase7storage8ObTablet20auto_get_read_tablesElRNS0_21ObTabletTableIteratorEb
_ZN9oceanbase7storage15ObBlockRowStore5reuseEv
_ZZN9oceanbase7storage15ObMultipleMerge4initERNS0_18ObTableAccessParamERNS0_20ObTableAccessContextERNS0_15ObGetTableParamEENK5$_451clEPKc
_ZN9oceanbase7storage13ObSingleMerge4openERKNS_12blocksstable13ObDatumRowkeyE
_ZN9oceanbase7storage19ObTableScanIterator14init_scan_iterINS0_19ObMultipleScanMergeEEEiRPT_
_ZN9oceanbase7storage19ObMultipleScanMerge4initERNS0_18ObTableAccessParamERNS0_20ObTableAccessContextERNS0_15ObGetTableParamE
_ZNK9oceanbase3sql12ObQueryRange21gen_simple_scan_rangeERNS_6common12ObIAllocatorERNS0_13ObExecContextERNS2_9ObSEArrayIPNS2_10ObNewRangeELl1ENS2_19ModulePageAllocatorELb0EEERbRKNS2_20ObDataTypeCastParamsE
_ZZN9oceanbase7storage15ObAccessService25audit_tablet_opt_dml_statERKNS0_14ObDMLBaseParamERKNS_6common10ObTabletIDENS5_16ObOptDmlStatTypeElENK5$_139clEPKc.llvm.4309708746237092133
_ZN9oceanbase3sql12ObQueryRange13ObSearchState18tailor_final_rangeEl
_ZN9oceanbase7storage15ObAccessService19check_read_allowed_ERKNS_5share6ObLSIDERKNS_6common10ObTabletIDENS0_17ObStoreAccessTypeERKNS0_16ObTableScanParamERNS0_14ObTabletHandleERNS1_15ObStoreCtxGuardENS2_3SCNE
_ZN9oceanbase7storage15ObAccessService15ObStoreCtxGuard4initERKNS_5share6ObLSIDE
_ZN9oceanbase7storage10ObStoreCtx5resetEv
_ZNK9oceanbase7storage13ObLSTxService18get_read_store_ctxERKNS_11transaction16ObTxReadSnapshotEblRNS0_10ObStoreCtxE
_ZTWN9oceanbase6common7ObLatch13current_locksE
_ZZN9oceanbase11transaction14ObTransService19update_max_read_ts_EmRKNS_5share6ObLSIDENS2_3SCNEENK6$_1478clEPKc
_ZN9oceanbase6common8TCRWLock10RLockGuardC2ERS1_
_ZZN9oceanbase11transaction14ObTransService23check_replica_readable_ERKNS0_16ObTxReadSnapshotEbNS2_3SRCERKNS_5share6ObLSIDElRKNS_6common10ObTabletIDERNS_7storage4ObLSEENK6$_1322clEPKc
_ZZN9oceanbase11transaction14ObTransService18get_read_store_ctxERKNS0_16ObTxReadSnapshotEblRNS_7storage10ObStoreCtxEENK6$_1285clEPKc
_ZN9oceanbase11transaction14ObTransService18get_read_store_ctxERKNS0_16ObTxReadSnapshotEblRNS_7storage10ObStoreCtxE
_ZN9oceanbase7storage15ObAccessService36construct_store_ctx_other_variables_ERNS0_4ObLSERKNS_6common10ObTabletIDElRKNS_5share3SCNERNS0_14ObTabletHandleERNS1_15ObStoreCtxGuardE
_ZN9oceanbase7storage17ObLSTabletService23get_tablet_with_timeoutERKNS_6common10ObTabletIDERNS0_14ObTabletHandleElNS0_18ObMDSGetTabletModeERKNS_5share3SCNE
_ZZN9oceanbase11transaction14ObTxVersionMgr18update_max_read_tsERKNS_5share3SCNEENKUlPKcE_clES7_
_ZN9oceanbase3sql13ObTableScanOp30cherry_pick_range_by_tablet_idEPNS0_11ObDASScanOpE
_ZN9oceanbase3sql12ObQueryRange13ObSearchStateD2Ev
_ZNK9oceanbase3sql12ObQueryRange20get_single_key_valueEPKNS0_9ObKeyPartERNS0_13ObExecContextERNS1_13ObSearchStateERKNS_6common20ObDataTypeCastParamsEl
_ZNK9oceanbase6common14ObTimeZoneInfo19get_timezone_offsetElRi
_ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE11ELS3_26EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE
_ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE0ELS3_26EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE
_ZN9oceanbase6common13ObObjCmpFuncs16compare_nullsafeERKNS0_5ObObjES4_NS0_15ObCollationTypeE
_ZN9oceanbase6common11ObObjCaster7to_typeERKNS0_12ObExpectTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS7_RPS8_
_ZN9oceanbase3sql20ObExprResultTypeUtil23get_relational_cmp_typeERNS_6common9ObObjTypeERKS3_S6_
_ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE26ELS3_11EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE
_ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE26ELS3_0EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE
_ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE11ELS3_11EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE
_ZN9oceanbase6common13ObObjCmpFuncs8cmp_funcILNS0_14ObObjTypeClassE0ELS3_11EEEiRKNS0_5ObObjES6_RKNS0_12ObCompareCtxE
_ZN9oceanbase6common11ObObjCaster7to_typeENS0_9ObObjTypeENS0_15ObCollationTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS6_
_ZN9oceanbase3sql24ObRelationalExprOperator16compare_nullsafeERlRKNS_6common5ObObjES6_RNS3_15ObObjCastParamsENS3_9ObObjTypeENS3_15ObCollationTypeE
_ZN9oceanbase6common13ObObjCmpFuncs7compareERNS0_5ObObjERKS2_S5_RKNS0_12ObCompareCtxENS0_7ObCmpOpERb
_ZN9oceanbase7storage16ObTableScanRange11init_rangesERKNS_6common8ObIArrayINS2_10ObNewRangeEEERKNS2_11ObQueryFlagEPKNS_12blocksstable19ObStorageDatumUtilsE
_ZN9oceanbase7storage17ObAggregatedStore5reuseEv
_ZZNK9oceanbase3sql12ObQueryRange21gen_simple_scan_rangeERNS_6common12ObIAllocatorERNS0_13ObExecContextERNS2_9ObSEArrayIPNS2_10ObNewRangeELl1ENS2_19ModulePageAllocatorELb0EEERbRKNS2_20ObDataTypeCastParamsEENK6$_1380clEPKc
_ZN9oceanbase7storage19ObMultipleScanMerge4openERKNS_12blocksstable12ObDatumRangeE
_ZNK9oceanbase7storage18ObSimpleRowsMergerINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpEE9is_initedEv
_ZN9oceanbase7storage15ObBlockRowStore4openERKNS0_16ObTableIterParamE
_ZN9oceanbase7storage19ObMultipleScanMerge15construct_itersEv
_ZNK9oceanbase7storage18ObSimpleRowsMergerINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpEE5emptyEv
_ZN9oceanbase12blocksstable9ObSSTable4scanERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS0_12ObDatumRangeERPNS2_18ObStoreRowIteratorE
_ZN9oceanbase7storage18ObSimpleRowsMergerINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpEE3topERPKS2_
_ZN9oceanbase7storage19ObMultipleScanMerge23locate_blockscan_borderEv
_ZN9oceanbase7storage18ObSimpleRowsMergerINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpEE4pushERKS2_
_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE17init_tree_handlesEl
_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE22ObIndexTreeLevelHandleC2Ev
_ZN9oceanbase7storage23ObScanMergeLoserTreeCmp3cmpERKNS0_24ObScanMergeLoserTreeItemES4_Rl
_ZN9oceanbase7storage31ObSSTableMultiVersionRowScanner18inner_get_next_rowERPKNS_12blocksstable10ObDatumRowE
_ZN9oceanbase7storage19ObSSTableRowScannerINS0_30ObIndexTreeMultiPassPrefetcherILi32ELi3EEEE10inner_openERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextEPNS0_8ObITableEPKv
_ZN9oceanbase12blocksstable22ObIndexBlockRowScanner4initERKNS_6common8ObIArrayIiEERKNS3_INS_5share6schema16ObColumnSchemaV2EEERKNS0_19ObStorageDatumUtilsERNS2_12ObIAllocatorERKNS2_11ObQueryFlagElb
_ZNK9oceanbase7storage9ObAggCell16need_access_dataEv
_ZN9oceanbase7storage23ObReallocatedFixedArrayINS0_19ObSSTableReadHandleEE18prepare_reallocateEl
_ZN9oceanbase6common16ObFixedArrayImplINS_7storage19ObSSTableReadHandleENS0_12ObIAllocatorEE16prepare_allocateEl
_ZN9oceanbase7storage19ObSSTableRowScannerINS0_30ObIndexTreeMultiPassPrefetcherILi32ELi3EEEE25refresh_blockscan_checkerERKNS_12blocksstable13ObDatumRowkeyE
_ZZN9oceanbase7storage19ObMultipleScanMerge15construct_itersEvENK5$_628clEPKc
_ZN9oceanbase8memtable10ObMemtable4scanERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS_12blocksstable12ObDatumRangeERPNS2_18ObStoreRowIteratorE
_ZN9oceanbase7storage31ObSSTableMultiVersionRowScanner10inner_openERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextEPNS0_8ObITableEPKv
_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE14check_row_lockERKNS_12blocksstable16ObMicroIndexInfoERb
_ZN9oceanbase3sql16AllocDASOpHelperILi4EE5allocERNS_6common12ObIAllocatorERPNS0_12ObIDASTaskOpE
_ZNK9oceanbase3sql12ObQueryRange21generate_single_rangeERNS1_13ObSearchStateElRPNS_6common10ObNewRangeERb
_ZN9oceanbase3sql16AllocDASOpHelperILi2EE5allocERNS_6common12ObIAllocatorERPNS0_12ObIDASTaskOpE
_ZN9oceanbase3sql12ObIDASTaskOp14start_das_taskEv
_ZN9oceanbase11transaction16ObTxReadSnapshotD1Ev
_ZN9oceanbase7storage13ObVectorStore4initERKNS0_18ObTableAccessParamE
_ZN9oceanbase7storage22ObBlockBatchedRowStore4initERKNS0_18ObTableAccessParamE
_ZN9oceanbase3sql18PushdownFilterInfo4initERKNS_7storage16ObTableIterParamERNS_6common12ObIAllocatorE
_ZN9oceanbase7storage17ObAggregatedStore4initERKNS0_18ObTableAccessParamE
_ZZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE25refresh_blockscan_checkerElRKNS_12blocksstable13ObDatumRowkeyEENKUlPKcE5_clES8_
_ZN9oceanbase6common13ObSEArrayImplINS_11transaction6ObPairINS_5share6ObLSIDElEELl1ENS0_19ModulePageAllocatorELb0EED2Ev
_ZN9oceanbase3sql13ObDASDeleteOp7open_opEv
_ZN9oceanbase3sql20ObDASIndexDMLAdaptorILi4ENS0_16ObDASDMLIteratorEE10write_rowsERKNS_5share6ObLSIDERKNS_6common10ObTabletIDERKNS0_13ObDASDelCtDefERNS0_13ObDASDelRtDefERS2_Rl
_ZN9oceanbase7storage15ObAccessService11delete_rowsERKNS_5share6ObLSIDERKNS_6common10ObTabletIDERNS_11transaction8ObTxDescERKNS0_14ObDMLBaseParamERKNS6_8ObIArrayImEEPNS6_16ObNewRowIteratorERl
_ZN9oceanbase7storage15ObAccessService20check_write_allowed_ERKNS_5share6ObLSIDERKNS_6common10ObTabletIDENS0_17ObStoreAccessTypeERKNS0_14ObDMLBaseParamERNS_11transaction8ObTxDescERNS0_14ObTabletHandleERNS1_15ObStoreCtxGuardE
_ZN9oceanbase7storage8ObITable7dec_refEv
_ZN9oceanbase7storage15ObAccessService26get_write_store_ctx_guard_ERKNS_5share6ObLSIDElRNS_11transaction8ObTxDescERKNS6_16ObTxReadSnapshotENS_18concurrent_control11ObWriteFlagERNS1_15ObStoreCtxGuardERKNS6_7ObTxSEQE
_ZNK9oceanbase7storage13ObLSTxService10get_tx_ctxERKNS_11transaction9ObTransIDEbRPNS2_14ObPartTransCtxE
__dynamic_cast
_ZN9oceanbase11transaction9tablelock11get_lock_idERKNS_6common10ObTabletIDERNS1_8ObLockIDE
_ZN9oceanbase11transaction14ObPartTransCtx13check_status_Ev
_ZN9oceanbase11transaction14ObTransService19get_write_store_ctxERNS0_8ObTxDescERKNS0_16ObTxReadSnapshotENS_18concurrent_control11ObWriteFlagERNS_7storage10ObStoreCtxERKNS0_7ObTxSEQEb
_ZN9oceanbase11transaction12CtxLockGuardD1Ev
_ZN9oceanbase11transaction12CtxLockGuardD2Ev
_ZN9oceanbase11transaction12ObLSTxCtxMgr10get_tx_ctxERKNS0_9ObTransIDEbRPNS0_14ObPartTransCtxE
_ZN9oceanbase11transaction7CtxLock4lockEv
_ZZN9oceanbase11transaction14ObTransService11get_tx_ctx_ERKNS_5share6ObLSIDEPNS_7storage4ObLSERKNS0_9ObTransIDERPNS0_14ObPartTransCtxEENK6$_1300clEPKc
_ZZN9oceanbase11transaction14ObTransService14acquire_tx_ctxERKNS_5share6ObLSIDERKNS0_8ObTxDescERPNS0_14ObPartTransCtxEPNS_7storage4ObLSEbENK6$_1299clEPKc
_ZNK9oceanbase11transaction8ObTxDesc13get_expire_tsEv
_ZN9oceanbase11transaction9tablelock11ObLockTable4lockERNS_7storage10ObStoreCtxERKNS1_11ObLockParamE
_ZN9oceanbase6common8ObBitSetILl16ENS0_19ModulePageAllocatorELb0EED2Ev
_ZN9oceanbase7storage15ObTableHandleV25resetEv
_ZN9oceanbase6common7ObLatch10try_wrlockEjPKj
_ZNK9oceanbase11transaction9tablelock12ObLockMemCtx16check_lock_existERKNS1_8ObLockIDERKNS_5share10ObCommonIDEhNS1_17ObTableLockOpTypeERbRh
_ZN9oceanbase7storage15ObAccessService25audit_tablet_opt_dml_statERKNS0_14ObDMLBaseParamERKNS_6common10ObTabletIDENS5_16ObOptDmlStatTypeEl
_ZZN9oceanbase11transaction14ObTransService19get_write_store_ctxERNS0_8ObTxDescERKNS0_16ObTxReadSnapshotENS_18concurrent_control11ObWriteFlagERNS_7storage10ObStoreCtxERKNS0_7ObTxSEQEbENK6$_1295clEPKc
_ZN9oceanbase11transaction14ObTransService23handle_tx_commit_resultERKNS0_9ObTransIDEiNS_5share3SCNE
_ZN9oceanbase11transaction11ObTxDescMgr6revertERNS0_8ObTxDescE
_ZN9oceanbase8memtable18ObTransCallbackMgr21acquire_callback_listEv
_ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocENS_6common10SpinRWLockELl65536EE3getERKS2_RPS3_
_ZN9oceanbase11transaction9tablelock12ObOBJLockMap4lockERKNS1_11ObLockParamERNS_7storage10ObStoreCtxERKNS1_13ObTableLockOpERKhRNS_6common4hash19ObIteratableHashSetINS0_9ObTransIDELm16EEE
_ZN9oceanbase8memtable13ObMemtableCtx15add_lock_recordERKNS_11transaction9tablelock13ObTableLockOpE
_ZN9oceanbase11transaction9tablelock12ObLockMemCtx15add_lock_recordERKNS1_13ObTableLockOpERPNS1_22ObMemCtxLockOpLinkNodeEb
_ZN9oceanbase8memtable10ObIMvccCtx23register_table_lock_cb_EPNS_11transaction9tablelock14ObLockMemtableEPNS3_22ObMemCtxLockOpLinkNodeERPNS3_17ObOBJLockCallbackE
_ZN9oceanbase8memtable13ObMemtableCtx25alloc_table_lock_callbackERNS0_10ObIMvccCtxEPNS_11transaction9tablelock14ObLockMemtableE
_ZN9oceanbase11transaction9tablelock12ObLockMemCtx22alloc_lock_op_callbackEv
_ZN9oceanbase8memtable24ObMemtableCtxCbAllocator5allocEl
_ZN9oceanbase6common15ObFIFOAllocator5allocEl
_ZN9oceanbase6common23ObOptStatMonitorManager18update_local_cacheERNS0_12ObOptDmlStatE
_ZN9oceanbase6common4hash11ObHashTableISt4pairImmENS1_11HashMapPairIS4_NS0_12ObOptDmlStatEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi64ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE14get_refactoredERKS4_RS7_l
_ZN9oceanbase6common4hash11ObHashTableISt4pairImmENS1_11HashMapPairIS4_NS0_12ObOptDmlStatEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstIS7_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS7_EELi64ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE6atomicINS0_23ObOptStatMonitorManager19UpdateValueAtomicOpENS1_8pre_procIS7_EEEEiRKS4_RT_RT0_
_ZN9oceanbase6common11ObTimeGuardD2Ev
_ZN9oceanbase11transaction9tablelock12ObOBJLockMap32get_or_create_obj_lock_with_ref_ERKNS1_8ObLockIDERPNS1_9ObOBJLockE
_ZN9oceanbase8memtable13ObMemtableCtx19elr_trans_preparingEv
_ZNK9oceanbase6common10ObFunctionIFiPNS_8memtable16ObITransCallbackEEE7DerivedIZNS2_16ObTxCallbackList16tx_elr_preparingEvE5$_241E4copyERNS0_12ObIAllocatorEPv$8b4bcdecdd0d8f749c37b62d8328b37c
_ZN9oceanbase7storage17ObLSTabletService11delete_rowsERNS0_14ObTabletHandleERNS0_10ObStoreCtxERKNS0_14ObDMLBaseParamERKNS_6common8ObIArrayImEEPNS9_16ObNewRowIteratorERl
_ZN9oceanbase5share6schema19ObSchemaGetterGuardD1Ev
_ZN9oceanbase5share6schema19ObSchemaGetterGuardD2Ev
_ZN9oceanbase6common13ObSEArrayImplINS_5share6schema9SchemaObjELl2ENS0_19ModulePageAllocatorELb0EED2Ev
_ZZN9oceanbase11transaction14ObPartTransCtx12start_accessERKNS0_8ObTxDescERNS0_7ObTxSEQEENK5$_795clEPKc
_ZN9oceanbase6common11ObArrayImplINS_11transaction16ObTransIDAndAddrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev
_ZN9oceanbase11transaction8ObTxDesc17execute_commit_cbEv
_ZN9oceanbase6common12ObLatchMutex8try_lockEjPKj
_ZN9oceanbase3sql23ObEndTransAsyncCallback8callbackEi
_ZN9oceanbase8observer15ObSqlEndTransCb8callbackEi
_ZN9oceanbase3sql17ObSqlTransControl22reset_session_tx_stateEPNS0_16ObSQLSessionInfoEbb
_ZThn8_N9oceanbase3sql16ObSQLSessionInfo17reset_tx_variableEb
_ZN9oceanbase7obmysql23ObPocSqlRequestOperator25alloc_sql_response_bufferEPNS_3rpc9ObRequestEl
_ZN9oceanbase3sql17ObSqlTransControl22reset_session_tx_stateEPNS0_18ObBasicSessionInfoEbb
_ZN9oceanbase3lib11ObLockGuardINS_6common16ObRecursiveMutexEED2Ev
_ZN9oceanbase5share19ObTenantSwitchGuard9switch_toEmb
_ZN9oceanbase11transaction14ObTransService8reuse_txERNS0_8ObTxDescE
_ZN9oceanbase6common12ObLatchMutex6unlockEv
_ZN9oceanbase11transaction11ObTxDescMgr6removeERNS0_8ObTxDescE
_ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_8ObTxDescENS0_11ObTxDescMgr13ObTxDescAllocENS_6common10SpinRWLockELl65536EE3delERKS2_PS3_
_ZZN9oceanbase11transaction11ObTxDescMgr6removeERNS0_8ObTxDescEENK6$_1137clEPKc.llvm.15462746491421382466
_ZN9oceanbase11transaction14ObTransService14create_tx_ctx_ERKNS_5share6ObLSIDEPNS_7storage4ObLSERKNS0_8ObTxDescERPNS0_14ObPartTransCtxEb
_ZZN9oceanbase11transaction14ObTransService14create_tx_ctx_ERKNS_5share6ObLSIDEPNS_7storage4ObLSERKNS0_8ObTxDescERPNS0_14ObPartTransCtxEbENK6$_1303clEPKc
_ZZN9oceanbase3sql20ObDASIndexDMLAdaptorILi3ENS0_16ObDASUpdIteratorEE12write_tabletERS2_RlENKUlPKcE_clES7_
_ZN9oceanbase3sql13ObDASInsertOp7open_opEv
_ZN9oceanbase3sql20ObDASIndexDMLAdaptorILi2ENS0_16ObDASDMLIteratorEE10write_rowsERKNS_5share6ObLSIDERKNS_6common10ObTabletIDERKNS0_13ObDASInsCtDefERNS0_13ObDASInsRtDefERS2_Rl
_ZN9oceanbase7storage15ObAccessService11insert_rowsERKNS_5share6ObLSIDERKNS_6common10ObTabletIDERNS_11transaction8ObTxDescERKNS0_14ObDMLBaseParamERKNS6_8ObIArrayImEEPNS6_16ObNewRowIteratorERl
_ZN9oceanbase7storage14ObTabletHandleaSERKS1_
_ZN9oceanbase6common2SVINS_7storage10ObRowsInfoELb0EEC2IZNS2_17ObLSTabletService11insert_rowsERNS2_14ObTabletHandleERNS2_10ObStoreCtxERKNS2_14ObDMLBaseParamERKNS0_8ObIArrayImEEPNS0_16ObNewRowIteratorERlE6$_1179EEibOT_
_ZN9oceanbase6common2SVINS_7storage10ObRowsInfoELb0EED2Ev
_ZN9oceanbase6common15check_from_heapEiRb
_ZN9oceanbase7storage10ObRowsInfoD1Ev
_ZN9oceanbase6common23ObReserveArenaAllocatorILl1024EED2Ev
_ZN9oceanbase7storage20ObTableAccessContextD1Ev
_ZN9oceanbase7storage20ObTableAccessContextD2Ev
_ZN9oceanbase3sql16ObDASDMLIterator13get_next_rowsERPNS_6common8ObNewRowERl
_ZN9oceanbase3sql16ObDASDMLIterator12get_next_rowERPNS_6common8ObNewRowE
_ZZN9oceanbase3sql16ObDASDMLIterator12get_next_rowERPNS_6common8ObNewRowEENK5$_124clEPKc
_ZN9oceanbase3sql13ObDASUpdateOp7open_opEv
_ZN9oceanbase6common13ObTimeUtility15current_time_nsEv
_ZN9oceanbase7storage10ObStoreCtxC2Ev
_ZN9oceanbase3sql12ObDMLService14init_dml_paramERKNS0_17ObDASDMLBaseCtDefERNS0_17ObDASDMLBaseRtDefERNS_11transaction16ObTxReadSnapshotERNS_6common12ObIAllocatorERNS_7storage14ObDMLBaseParamE
_ZN9oceanbase6common11ObTimeGuard5clickEPKc
_ZN9oceanbase7storage15ObAccessService15ObStoreCtxGuardD2Ev
_ZNK9oceanbase7storage13ObLSTxService13revert_tx_ctxEPNS_11transaction10ObTransCtxE
_ZN9oceanbase11transaction12ObLSTxCtxMgr13revert_tx_ctxEPNS0_10ObTransCtxE
_ZN9oceanbase11transaction14ObTransService16revert_store_ctxERNS_7storage10ObStoreCtxE
_ZZN9oceanbase11transaction14ObTransService16revert_store_ctxERNS_7storage10ObStoreCtxEENK6$_1312clEPKc
_ZN9oceanbase6common11ObArrayImplINS_11transaction16ObTransIDAndAddrENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEED2Ev
_ZN9oceanbase11transaction8ObTxDesc12update_part_ERNS0_8ObTxPartEb
_ZZN9oceanbase11transaction14ObTransService14revert_tx_ctx_EPNS_7storage4ObLSEPNS0_14ObPartTransCtxEENK6$_1301clEPKc
_ZZN9oceanbase11transaction14ObTransService41fetch_cflict_tx_ids_from_mem_ctx_to_desc_ERNS_8memtable15ObMvccAccessCtxEENK6$_1307clEPKc
_ZN9oceanbase8memtable13ObMemtableCtx22get_conflict_trans_idsERNS_6common8ObIArrayINS_11transaction16ObTransIDAndAddrEEE
_ZN9oceanbase7storage17ObLSTabletService11update_rowsERNS0_14ObTabletHandleERNS0_10ObStoreCtxERKNS0_14ObDMLBaseParamERKNS_6common8ObIArrayImEESD_PNS9_16ObNewRowIteratorERl
_ZN9oceanbase7storage20ObTableStoreIteratorC1Ebb
_ZN9oceanbase6common13ObSEArrayImplIlLl8ENS0_19ModulePageAllocatorELb0EED2Ev
_ZN9oceanbase8memtable16ObQueryAllocator5allocEl
_ZN9oceanbase5share6schema19ObSchemaGetterGuardC1ENS1_15ObSchemaMgrItem3ModE
_ZNK9oceanbase8memtable15ObMvccAccessCtx8is_validEv
_ZN9oceanbase7storage17ObLSTabletService22get_next_row_from_iterEPNS_6common16ObNewRowIteratorERNS0_10ObStoreRowEb
_ZN9oceanbase7storage15ObDMLRunningCtx4initEPKNS_6common8ObIArrayImEES6_PNS_5share6schema27ObMultiVersionSchemaServiceERNS0_14ObTabletHandleE
_ZN9oceanbase7storage8ObTablet16get_read_tables_ElRNS0_20ObTableStoreIteratorERNS0_19ObStorageMetaHandleEb
_ZNK9oceanbase7storage8ObITable20get_snapshot_versionEv
_ZNK9oceanbase7storage14ObSSTableArrayixEl
_ZNK9oceanbase7storage18ObTabletTableStore15get_read_tablesElRKNS0_8ObTabletERNS0_20ObTableStoreIteratorEb
_ZN9oceanbase7storage20ObTableStoreIterator9add_tableEPNS0_8ObITableE
_ZN9oceanbase7storage24ObStorageMetaValueHandle15set_cache_valueEPNS0_23ObStorageMetaCacheValueEPNS_6common12ObIAllocatorE
_ZN9oceanbase7storage19ObStorageMetaHandleD1Ev
_ZN9oceanbase7storage19ObStorageMetaHandleD2Ev
_ZN9oceanbase7storage18ObTabletTableStore12load_sstableERKNS0_14ObMetaDiskAddrEbRNS0_19ObStorageMetaHandleE
_ZN9oceanbase12blocksstable18ObMacroBlockHandleaSERKS1_
_ZN9oceanbase7storage19ObStorageMetaHandle11get_sstableERPNS_12blocksstable9ObSSTableE
_ZN9oceanbase7storage18ObStorageMetaCache8get_metaENS0_18ObStorageMetaValue8MetaTypeERKNS0_16ObStorageMetaKeyERNS0_19ObStorageMetaHandleEPKNS0_8ObTabletE
_ZNK9oceanbase7storage15ObRelativeTable19is_rowkey_column_idEmRb
_ZNK9oceanbase5share6schema9ColumnMap3getEmRi
_ZN9oceanbase7storage17ObLSTabletService20construct_update_idxElPKNS_5share6schema9ColumnMapERKNS_6common8ObIArrayImEERNS7_9ObSEArrayIlLl8ENS7_19ModulePageAllocatorELb0EEE
_ZN9oceanbase7storage8ObTablet31check_schema_version_with_cacheEll
_ZN9oceanbase6common10ObRowStoreD1Ev
_ZN9oceanbase7storage17ObLSTabletService15process_new_rowERNS0_14ObTabletHandleERNS0_15ObDMLRunningCtxERKNS_6common8ObIArrayIlEERKNS0_10ObStoreRowESD_b
_ZN9oceanbase5share14ObThrottleStat8need_logEb
_ZN9oceanbase7storage16ObTableIterParamD1Ev
_ZN9oceanbase7storage16ObTableIterParamD2Ev
_ZN9oceanbase7storage8ObTablet10update_rowERNS0_15ObRelativeTableERNS0_10ObStoreCtxERKNS_6common8ObIArrayINS_5share6schema9ObColDescEEERKNS7_IlEERKNS0_10ObStoreRowESJ_PKNS7_INS_11transaction18ObEncryptMetaCacheEEE
_ZN9oceanbase8memtable10ObMemtable15get_freeze_flagEv
_ZNK9oceanbase8memtable10ObMemtable18is_active_memtableEv
_ZN9oceanbase8memtable10ObMemtable3setERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS_6common8ObIArrayINS_5share6schema9ObColDescEEERKNS9_IlEERKNS2_10ObStoreRowESL_PKNSA_13ObEncryptMetaE
_ZNK9oceanbase7storage16ObReadInfoStruct23get_schema_rowkey_countEv
_ZZN9oceanbase8memtable13ObMemtableCtx10write_authEbENK5$_325clEPKc.llvm.6150484154564822904
_ZN9oceanbase8memtable10ObMemtable4set_ERKNS_7storage16ObTableIterParamERKNS_6common8ObIArrayINS_5share6schema9ObColDescEEERKNS2_10ObStoreRowEPSF_PKNS7_IlEERNS2_20ObTableAccessContextEPNS0_23ObMvccRowAndWriteResultEb
_ZN9oceanbase12blocksstable11ObRowWriter5writeElRKNS_7storage10ObStoreRowEPKNS_6common8ObIArrayIlEERPcRl
_ZN9oceanbase8memtable13ObMemtableKey6encodeERKNS_6common8ObIArrayINS_5share6schema9ObColDescEEEPKNS2_13ObStoreRowkeyE
_ZN9oceanbase8memtable10ObMemtable11mvcc_write_ERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextEPKNS0_13ObMemtableKeyERKNS0_11ObTxNodeArgERbPNS0_23ObMvccRowAndWriteResultEb
_ZN9oceanbase8memtable12ObMvccEngine9ensure_kvEPKNS0_13ObMemtableKeyEPNS0_9ObMvccRowE
_ZN9oceanbase6common13ObObjCmpFuncs7compareERKNS0_5ObObjES4_NS0_15ObCollationTypeERi
_ZN9oceanbase12blocksstable19ObDatumRowkeyHelperD2Ev
_ZN9oceanbase8memtable10ObMemtable36lock_row_on_frozen_stores_on_successEbNS_12blocksstable9ObDmlFlagERKNS_5share3SCNERNS_7storage20ObTableAccessContextEPNS0_9ObMvccRowERNS0_17ObMvccWriteResultE
_ZN9oceanbase8memtable12ObMvccEngine10mvcc_writeERNS0_14ObIMemtableCtxENS_18concurrent_control11ObWriteFlagERKNS_11transaction12ObTxSnapshotERNS0_9ObMvccRowERKNS0_11ObTxNodeArgERNS0_17ObMvccWriteResultE
_ZN9oceanbase6common20ObGMemstoreAllocator11AllocHandle5allocEl
_ZN9oceanbase12blocksstable11ObRowWriter15inner_write_rowElRKNS_7storage10ObStoreRowEPKNS_6common8ObIArrayIlEE
_ZN9oceanbase12blocksstable11ObRowWriter18alloc_buf_and_initEb
_ZN9oceanbase8memtable12ObMvccEngine14build_tx_node_ERNS0_14ObIMemtableCtxERKNS0_11ObTxNodeArgERPNS0_15ObMvccTransNodeE
_ZN9oceanbase12blocksstable13ObDatumRowkey11from_rowkeyERKNS_6common8ObRowkeyERNS0_20ObStorageDatumBufferE
_ZN9oceanbase8memtable16ObMvccWriteGuard10write_authERNS_7storage10ObStoreCtxE
_ZN9oceanbase6common15ObLinearHashMapINS0_9ObIntWarpENS_11transaction9ObTransIDENS0_14ShareMemMgrTagEE16load_access_bkt_ERKS2_RmRPNS6_6BucketE
_ZN9oceanbase12blocksstable9ObSSTable16check_row_lockedERKNS_7storage16ObTableIterParamERKNS0_13ObDatumRowkeyERNS2_20ObTableAccessContextERNS2_19ObStoreRowLockStateERNS2_10ObRowStateEb
_ZN9oceanbase12blocksstable9ObSSTable15get_last_rowkeyERPKNS0_13ObDatumRowkeyE
_ZN9oceanbase12blocksstable9ObSSTable19get_index_tree_rootERNS0_16ObMicroBlockDataEb
_ZN9oceanbase8memtable9ObMvccRow10mvcc_writeERNS0_14ObIMemtableCtxENS_18concurrent_control11ObWriteFlagERKNS_11transaction12ObTxSnapshotERNS0_15ObMvccTransNodeERNS0_17ObMvccWriteResultE
_ZN9oceanbase8memtable10ObIMvccCtx22register_row_commit_cbEPKNS0_13ObMemtableKeyEPNS0_9ObMvccRowEPNS0_15ObMvccTransNodeElPKNS0_9ObRowDataEPNS0_10ObMemtableENS_11transaction7ObTxSEQEl
_ZN9oceanbase8memtable18ObTransCallbackMgr6appendEPNS0_16ObITransCallbackE
_ZN9oceanbase8memtable10ObMemtable13need_for_saveEPKNS_5share13ObEncryptMetaE
_ZN9oceanbase6common7ObLatch10try_rdlockEj
_ZN9oceanbase8memtable12ObMvccEngine9create_kvEPKNS0_13ObMemtableKeyEPS2_RPNS0_9ObMvccRowERNS0_15RowHeaderGetterERb
_ZN9oceanbase6common20ObGMemstoreAllocator5allocERNS1_11AllocHandleEl
_ZN9oceanbase7storage15ObTenantFreezer20check_memstore_full_ERbRlS2_b
_ZN9oceanbase6common12ObSliceAlloc5allocEv
_ZN9oceanbase6common13ObBlockSlicer10alloc_itemEv
_ZN9oceanbase8memtable18ObTransCallbackMgr14callback_allocEl
_ZN9oceanbase7storage19ObStorageTableGuard25refresh_and_protect_tableERNS0_15ObRelativeTableE
_ZN9oceanbase8memtable10ObMemtable13inc_write_refEv
_ZN9oceanbase8memtable10ObMemtable20get_is_tablet_freezeEv
_ZN9oceanbase8memtable16ObMvccWriteGuardD1Ev
_ZNK9oceanbase8memtable10ObMemtable18is_frozen_memtableEv
_ZN9oceanbase11transaction14ObPartTransCtx15submit_redo_logEb
_ZN9oceanbase7storage15ObRelativeTableD1Ev
_ZN9oceanbase7storage15ObRelativeTableD2Ev
_ZN9oceanbase6common13ObObjCmpFuncs11cmp_op_funcILNS0_14ObObjTypeClassE1ELS3_1ELNS0_7ObCmpOpE5EEEiRKNS0_5ObObjES7_RKNS0_12ObCompareCtxE
_ZZN9oceanbase8memtable8ObMtHash6insertEPKNS0_20ObStoreRowkeyWrapperEPKNS0_9ObMvccRowEENKUlPKcE0_clES9_
_ZN9oceanbase11transaction16ObTransStatistic22add_read_elr_row_countEml
_ZN9oceanbase7storage17ObLSTabletService19check_rowkey_changeERKNS_6common8ObIArrayImEERKNS0_15ObRelativeTableERbSA_
_ZN9oceanbase3sql16ObDASUpdIterator12get_next_rowERPNS_6common8ObNewRowE
_ZN9oceanbase3sql10ObDASUtils19project_storage_rowERKNS0_17ObDASDMLBaseCtDefERKNS0_17ObChunkDatumStore9StoredRowERKNS_6common12ObFixedArrayIlNS9_12ObIAllocatorEEERSB_RNS9_8ObNewRowE
_ZN9oceanbase8memtable16ObQueryAllocator4freeEPv
_ZN9oceanbase7storage8ObTablet13rowkey_existsERNS0_15ObRelativeTableERNS0_10ObStoreCtxERKNS_6common8ObNewRowERb
_ZN9oceanbase7storage18ObStoreRowIterator4initERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextEPNS0_8ObITableEPKv
_ZN9oceanbase12blocksstable9ObSSTable5existERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS0_13ObDatumRowkeyERbSB_
_ZN9oceanbase7storage19ObSSTableRowExisterD2Ev
_ZN9oceanbase7storage21ObIndexTreePrefetcherC2Ev
_ZN9oceanbase12blocksstable18ObMacroBlockReaderC1Ev
_ZN9oceanbase12blocksstable18ObMacroBlockReaderC2Ev
_ZN9oceanbase7storage20ObTableAccessContext4initERKNS_6common11ObQueryFlagERNS0_10ObStoreCtxERNS2_12ObIAllocatorERKNS2_14ObVersionRangeE
_ZZN9oceanbase3sql16ObDASUpdIterator12get_next_rowERPNS_6common8ObNewRowEENK5$_544clEPKc
_ZN9oceanbase7storage21ObTabletTableIteratorD2Ev
_ZN9oceanbase3sql20ObDASIndexDMLAdaptorILi3ENS0_16ObDASUpdIteratorEE10write_rowsERKNS_5share6ObLSIDERKNS_6common10ObTabletIDERKNS0_13ObDASUpdCtDefERNS0_13ObDASUpdRtDefERS2_Rl
_ZN9oceanbase7storage20ObTableStoreIteratorD1Ev
_ZN9oceanbase7storage20ObTableStoreIteratorD2Ev
_ZN9oceanbase6common13ObObjCmpFuncs21compare_oper_nullsafeERKNS0_5ObObjES4_NS0_15ObCollationTypeENS0_7ObCmpOpE
_ZN9oceanbase12blocksstable23ObIMicroBlockRowFetcherD2Ev
_ZZN9oceanbase11transaction14ObPartTransCtx10end_accessEvENK5$_796clEPKc
_ZN9oceanbase7storage17ObLSTabletService23process_old_row_lob_colERNS0_14ObTabletHandleERNS0_15ObDMLRunningCtxERNS0_10ObStoreRowE
_ZN9oceanbase8keybtree11WriteHandleINS_8memtable20ObStoreRowkeyWrapperEPNS2_9ObMvccRowEE11split_childEPNS0_9BtreeNodeIS3_S5_EEiS3_S5_S3_S5_RS9_SA_l
_ZN9oceanbase8keybtree9BtreeNodeINS_8memtable20ObStoreRowkeyWrapperEPNS2_9ObMvccRowEE4copyERS6_iii
_ZN9oceanbase8keybtree9BtreeNodeINS_8memtable20ObStoreRowkeyWrapperEPNS2_9ObMvccRowEE15copy_and_insertERS6_iiiS3_S5_S3_S5_
_ZN9oceanbase8keybtree18BtreeNodeAllocatorINS_8memtable20ObStoreRowkeyWrapperEPNS2_9ObMvccRowEE10alloc_nodeEb
_ZN9oceanbase11transaction12ObLSTxCtxMgr13create_tx_ctxERKNS0_13ObTxCreateArgERbRPNS0_14ObPartTransCtxE
_ZN9oceanbase11transaction17ObTransCtxFactory5allocEl
_ZN9oceanbase7storage8ObTablet31insert_row_without_rowkey_checkERNS0_15ObRelativeTableERNS0_10ObStoreCtxERKNS_6common8ObIArrayINS_5share6schema9ObColDescEEERKNS0_10ObStoreRowEPKNS7_INS_11transaction18ObEncryptMetaCacheEEE
_ZZN9oceanbase8memtable10ObMemtable4set_ERKNS_7storage16ObTableIterParamERKNS_6common8ObIArrayINS_5share6schema9ObColDescEEERKNS2_10ObStoreRowEPSF_PKNS7_IlEERNS2_20ObTableAccessContextEPNS0_23ObMvccRowAndWriteResultEbENK5$_283clEPKc
_ZN9oceanbase7storage17ObLSTabletService24check_old_row_legitimacyERNS0_14ObTabletHandleERNS0_15ObDMLRunningCtxERKNS_6common8ObNewRowE
_ZN9oceanbase6common11ObArrayImplINS_11transaction9ObTransIDENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEED2Ev
_ZNK9oceanbase6common11ObLoserTreeINS_7storage24ObScanMergeLoserTreeItemENS2_23ObScanMergeLoserTreeCmpELl80EE9is_initedEv
_ZN9oceanbase8memtable10ObMemtable3setERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS_6common8ObIArrayINS_5share6schema9ObColDescEEERKNS2_10ObStoreRowEPKNSA_13ObEncryptMetaE
_ZN9oceanbase7storage17ObLSTabletService11insert_rowsERNS0_14ObTabletHandleERNS0_10ObStoreCtxERKNS0_14ObDMLBaseParamERKNS_6common8ObIArrayImEEPNS9_16ObNewRowIteratorERl
_ZN9oceanbase7storage10ObRowsInfo4initERKNS0_15ObRelativeTableERNS0_10ObStoreCtxERKNS0_16ObITableReadInfoE
_ZN9oceanbase6common13ObSEArrayImplINS_7storage26ObMarkedRowkeyAndLockStateELl16ENS0_19ModulePageAllocatorELb0EEixEl
_ZN9oceanbase6common13ObSEArrayImplIjLl16ENS0_19ModulePageAllocatorELb0EEixEl
_ZN9oceanbase7storage10ObRowsInfo11ExistHelper4initERKNS0_15ObRelativeTableERNS0_10ObStoreCtxERKNS0_16ObITableReadInfoERNS_6common23ObReserveArenaAllocatorILl1024EEESE_
_ZN9oceanbase7storage20ObTableAccessContext4initERKNS_6common11ObQueryFlagERNS0_10ObStoreCtxERNS2_12ObIAllocatorES9_RKNS2_14ObVersionRangeEb
_ZN9oceanbase7storage17ObLSTabletService21insert_lob_tablet_rowERNS0_14ObTabletHandleERNS0_15ObDMLRunningCtxERNS0_10ObStoreRowE
_ZN9oceanbase7storage10ObRowsInfo15check_duplicateEPNS0_10ObStoreRowElRNS0_15ObRelativeTableE
_ZN9oceanbase6common23ObReserveArenaAllocatorILl1024EE5allocEl
_ZN9oceanbase6common13ObSEArrayImplINS_7storage26ObMarkedRowkeyAndLockStateELl16ENS0_19ModulePageAllocatorELb0EE9push_backERKS3_
_ZN9oceanbase6common13ObSEArrayImplIjLl16ENS0_19ModulePageAllocatorELb0EE16prepare_allocateEl
_ZN9oceanbase12blocksstable13ObDatumRowkey11from_rowkeyERKNS_6common8ObRowkeyERNS2_12ObIAllocatorE
_ZN9oceanbase7storage8ObTablet11insert_rowsERNS0_15ObRelativeTableERNS0_10ObStoreCtxEPNS0_10ObStoreRowERNS0_10ObRowsInfoEbRKNS_6common8ObIArrayINS_5share6schema9ObColDescEEElPKNSB_INS_11transaction18ObEncryptMetaCacheEEE
_ZN9oceanbase7storage19ObStorageTableGuardC1EPNS0_8ObTabletERNS0_10ObStoreCtxEbbNS_5share3SCNEb
_ZN9oceanbase7storage8ObTablet25try_update_storage_schemaEllRNS_6common12ObIAllocatorEl
_ZN9oceanbase7storage8ObTablet16prepare_memtableERNS0_15ObRelativeTableERNS0_10ObStoreCtxERPNS_8memtable10ObMemtableE
_ZN9oceanbase6common7ObDatum8from_objERKNS0_5ObObjE
_ZN9oceanbase7storage10ObRowsInfoC1Ev
_ZN9oceanbase7storage20ObTableAccessContextC1Ev
_ZN9oceanbase7storage20ObTableAccessContextC2Ev
_ZN9oceanbase7storage8ObTablet14rowkeys_existsERNS0_10ObStoreCtxERNS0_15ObRelativeTableERNS0_10ObRowsInfoERb
_ZN9oceanbase7storage10ObRowsInfo5resetEv
_ZN9oceanbase7storage20ObTableAccessContext5resetEv
_ZN9oceanbase8memtable10ObMemtable5existERNS_7storage10ObRowsInfoERbS5_
_ZN9oceanbase8memtable10ObMemtable5existERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS_12blocksstable13ObDatumRowkeyERbSC_
_ZN9oceanbase8memtable19ObMvccValueIterator13get_next_nodeERPKv
_ZN9oceanbase7storage23ObStorageSchemaRecorder25try_update_storage_schemaEllRNS_6common12ObIAllocatorEl
_ZN9oceanbase8observer16ObMPPacketSender14revert_sessionEPNS_3sql16ObSQLSessionInfoE
_ZN9oceanbase11transaction14ObTransHashMapINS0_9ObTransIDENS0_10ObTransCtxENS0_13TransCtxAllocENS_6common10SpinRWLockELl16384EE16BucketWLockGuardC2ERKS6_m
_ZN9oceanbase7storage19ObStorageTableGuardD1Ev
_ZN9oceanbase8memtable10ObMemtable13dec_write_refEv
_ZN9oceanbase8memtable16ObTxCallbackList16tx_elr_preparingEv
_ZN9oceanbase8memtable16ObITransCallback19elr_trans_preparingEv
_ZNK9oceanbase6common10ObFunctionIFiPNS_8memtable16ObITransCallbackEEE7DerivedIZNS2_16ObTxCallbackList16tx_elr_preparingEvE5$_241E6invokeES4_$8b4bcdecdd0d8f749c37b62d8328b37c
_ZN9oceanbase18concurrent_control28check_sequence_set_violationENS0_11ObWriteFlagENS_11transaction7ObTxSEQENS2_9ObTransIDENS_12blocksstable9ObDmlFlagES3_S4_S6_S3_
_ZN9oceanbase6commonL10string_intENS0_9ObObjTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS4_m
_Z12ob_scan_8bitPK13ObCharsetInfoPKcS3_i
_ZN9oceanbase6common21check_convert_str_errEPKcS2_iiRKNS0_15ObCollationTypeE
_Z22ob_strntoull10rnd_8bitPK13ObCharsetInfoPKcmiPPcPi
_ZN9oceanbase3sql12ObDMLService31check_local_index_affected_rowsEllRKNS0_17ObDASDMLBaseCtDefERNS0_17ObDASDMLBaseRtDefES4_S6_
_ZN9oceanbase11transaction14ObPartTransCtx4initEmRKNS_6common6ObAddrEjRKNS0_9ObTransIDElRKNS_5share6ObLSIDEmPNS0_14ObTransServiceEmlPNS0_12ObLSTxCtxMgrEb
_ZN9oceanbase11transaction11ObCtxTxData4initEPNS0_12ObLSTxCtxMgrEl
_ZN9oceanbase11transaction9ObTxLogCb4initERKNS_5share6ObLSIDERKNS0_9ObTransIDEPNS0_10ObTransCtxEb
_ZN9oceanbase11transaction9tablelock11ObLockTable17get_lock_memtableERNS_7storage15ObTableHandleV2E
_ZN9oceanbase11transaction21ObTxLogBigSegmentInfo5resetEv
_ZN9oceanbase11transaction12ObTxMDSCache5resetEv
_ZN9oceanbase7storage13ObTxDataTable13alloc_tx_dataERNS0_13ObTxDataGuardE
_ZN9oceanbase8memtable18ObTransCallbackMgr11trans_startEv
_ZN9oceanbase11transaction11ObTraceInfo5resetEv
_ZN9oceanbase6common13ObSEArrayImplIjLl8ENS0_19ModulePageAllocatorELb0EE7destroyEv
_ZNK9oceanbase7storage14ObIMemtableMgr19get_active_memtableERNS0_15ObTableHandleV2E
_ZN9oceanbase11transaction12ObLSTxCtxMgr35try_wait_gts_and_inc_max_commit_ts_Ev
_ZN9oceanbase6common13ObSEArrayImplINS_7storage26ObMarkedRowkeyAndLockStateELl16ENS0_19ModulePageAllocatorELb0EE7reserveEl
_ZN9oceanbase3sql19ObDataAccessService21execute_dist_das_taskERNS0_8ObDASRefERNS0_20ObDasAggregatedTasksEb
_ZN9oceanbase3sql12ObIDASTaskOp13state_advanceEv
_ZN9oceanbase6common13ObSEArrayImplINS0_9ObSEArrayIPNS_3sql12ObIDASTaskOpELl2ENS0_19ModulePageAllocatorELb0EEELl2ES6_Lb0EE9push_backERKS7_
_ZN9oceanbase6commonL11string_uintENS0_9ObObjTypeERNS0_15ObObjCastParamsERKNS0_5ObObjERS4_m
_ZZN9oceanbase11transaction14ObTransService8reuse_txERNS0_8ObTxDescEENK6$_1659clEPKc
_ZZN9oceanbase3sql20ObDASIndexDMLAdaptorILi3ENS0_16ObDASUpdIteratorEE12write_tabletERS2_RlENKUlPKcE3_clES7_
_ZZN9oceanbase3sql20ObDASIndexDMLAdaptorILi4ENS0_16ObDASDMLIteratorEE12write_tabletERS2_RlENKUlPKcE_clES7_
_ZN9oceanbase6common16ObFixedArrayImplIPNS_3sql6ObExprENS0_12ObIAllocatorEE9push_backERKS4_
_ZN9oceanbase8observer16ObMPPacketSender12flush_bufferEb
_ZN9oceanbase7obmysql23ObPocSqlRequestOperator20async_write_responseEPNS_3rpc9ObRequestEPKcl
_ZN9oceanbase7obmysql23ObPocSqlRequestOperator18finish_sql_requestEPNS_3rpc9ObRequestE
_ZN9oceanbase7obmysql23request_finish_callbackEv
_ZNK9oceanbase7storage16ObMergeLoserTreeINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpELl80EE5emptyEv
_ZN9oceanbase11transaction14ObTransService24handle_tx_commit_result_ERNS0_8ObTxDescEiNS_5share3SCNE
_ZN9oceanbase11transaction14ObTransService18tx_post_terminate_ERNS0_8ObTxDescE
_ZN9oceanbase6common7ObDITlsINS0_17ObSessionDIBufferELm0EE12get_instanceEv
_ZZN9oceanbase3sql20ObDASIndexDMLAdaptorILi2ENS0_16ObDASDMLIteratorEE12write_tabletERS2_RlENKUlPKcE3_clES7_
_ZN9oceanbase7storage14ObPDAggFactory10alloc_cellERKNS0_18ObAggCellBasicInfoERNS_6common8ObIArrayIPNS0_9ObAggCellEEEbbPNS_3sql9ObEvalCtxE
_ZZN9oceanbase3sql20ObDASIndexDMLAdaptorILi2ENS0_16ObDASDMLIteratorEE12write_tabletERS2_RlENKUlPKcE_clES7_
_ZN9oceanbase11transaction8ObTxDescD1Ev
_ZN9oceanbase11transaction8ObTxDescD2Ev
_ZN6obutil4CondD1Ev
_ZN9oceanbase11transaction8ObTxDesc5resetEv
_ZN9oceanbase6common30common_string_unsigned_integerERKmRKNS0_9ObObjTypeERKNS0_15ObCollationTypeERKNS0_8ObStringEbRm
_ZZN9oceanbase3sql20ObDASIndexDMLAdaptorILi4ENS0_16ObDASDMLIteratorEE12write_tabletERS2_RlENKUlPKcE3_clES7_