forked from oceanbase/oceanbase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hotfuncs.txt
7106 lines (7106 loc) · 664 KB
/
hotfuncs.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
_ZNK9oceanbase5share12ObTenantBase2idEv
_ZSt16__introsort_loopIPPN9oceanbase3sql17ObChunkDatumStore9StoredRowElN9__gnu_cxx5__ops15_Iter_comp_iterINS1_12ObSortOpImpl16CopyableComparerEEEEvT_SC_T0_T1_
_ZN9oceanbase3sql12ObSortOpImpl7CompareclEPKNS0_17ObChunkDatumStore9StoredRowES6_
_ZN9oceanbase6common21ObNullSafeDatumStrCmpILNS0_15ObCollationTypeE45ELb0ELb1EE3cmpERKNS0_7ObDatumES6_Ri
_ZN9oceanbase6common9ObCharset8strcmpspENS0_15ObCollationTypeEPKclS4_lb
_ZL22ob_strnncollsp_utf8mb4PK13ObCharsetInfoPKhmS3_mb
_ZN9oceanbase6common9ObCharset17is_argument_validENS0_15ObCollationTypeEPKclS4_l
_ZL16ob_mb_wc_utf8mb4PK13ObCharsetInfoPmPKhS4_
_ZSt22__move_median_to_firstIPPN9oceanbase3sql17ObChunkDatumStore9StoredRowEN9__gnu_cxx5__ops15_Iter_comp_iterINS1_12ObSortOpImpl16CopyableComparerEEEEvT_SC_SC_SC_T0_
_Z27ob_strnncollsp_utf8mb4_helpPPKhmS1_mS1_S1_bPiS2_
_ZNK9oceanbase7storage16ObTableIterParam8is_validEv
_ZN9oceanbase7storage16return_array_cntEjRKNS0_19ObFixedMetaObjArrayIiEE
_ZNK9oceanbase7storage15ObTableReadInfo8is_validEv
_ZN9oceanbase6common18ObInterruptChecker22clear_interrupt_statusEv
_ZN9oceanbase7obmysql21ObMySQLRequestManager11release_oldEl
_ZN9oceanbase6common25ObConcurrentFIFOAllocator4freeEPv
_ZN9oceanbase6common13ObVSliceAlloc13destroy_blockEPNS0_14ObBlockVSlicerE
_ZN9oceanbase6common16ObWaitEventGuardC1Elmlllb
_ZN9oceanbase6common16ObWaitEventGuardC2Elmlllb
_ZN9oceanbase6common12ObKVCacheMap21replace_fragment_nodeERlS2_l
_ZN9oceanbase6common12ObBucketLock6wrlockEml
_ZN9oceanbase6common7ObLatch6wrlockEjlPKj
_ZN9oceanbase6common16ObLatchWaitQueue4waitINS0_7ObLatch12LowTryWRLockEEEiRNS0_10ObWaitProcEjjRT_S8_l
_ZN9oceanbase6common16ObLatchWaitQueue8try_lockINS0_7ObLatch12LowTryWRLockEEEiRNS1_13ObLatchBucketERNS0_10ObWaitProcEjjRT_
_ZN9oceanbase7obmysql8ObSqlNio3runEl
_ZN9oceanbase3lib6Thread7currentEv
_ZN9oceanbase7obmysql12ObSqlNioImpl7do_workEv
_ZN9oceanbase7obmysql12ObSqlNioImpl22handle_write_req_queueEv
_ZN9oceanbase7obmysql16ObSqlSockHandler10on_flushedEPv
_ZN9oceanbase5obrpc12ObRpcMemPool5reuseEv
_ZN9oceanbase7obmysql12ObSqlNioImpl18handle_epoll_eventEv
_ZN9oceanbase7obmysql12ObSqlNioImpl17handle_sock_eventEPNS0_9ObSqlSockEj
_ZN9oceanbase7obmysql16ObSqlSockHandler11on_readableEPv
_ZN9oceanbase6common13ObTimeUtility12current_timeEv
_ZN9oceanbase3rpc14ObLockWaitNodeC1Ev
_ZN9oceanbase3rpc14ObLockWaitNodeC2Ev
_ZN9oceanbase7obmysql16ObSqlSockSession11revert_sockEv
_ZN9oceanbase7obmysql12ObSqlNioImpl11revert_sockEPNS0_9ObSqlSockE
_ZN9oceanbase7obmysql18ObSqlSockProcessor17decode_sql_packetERNS0_12ObICSMemPoolERNS0_16ObSqlSockSessionEPvRPNS_3rpc8ObPacketE
_ZN9oceanbase7obmysql24ObMysqlProtocolProcessor9do_spliceERNS_8observer14ObSMConnectionERNS0_12ObICSMemPoolERPvRb
_ZN9oceanbase7obmysql24ObMysqlProtocolProcessor20process_mysql_packetERNS0_17ObMysqlPktContextEPNS0_21ObPacketRecordWrapperERNS0_12ObICSMemPoolERPvRb
_ZN9oceanbase7obmysql16ObSqlSockSession9peek_dataEPvlRPKcRl
_ZN9oceanbase7obmysql19ObSqlSessionMemPool5allocEl
_ZN9oceanbase7obmysql9ObSqlSock16do_pending_writeERb
_ZN9oceanbase7obmysql24ObMysqlProtocolProcessor24process_one_mysql_packetERNS0_17ObMysqlPktContextEPNS0_21ObPacketRecordWrapperERNS0_12ObICSMemPoolElRPvRb
_ZN9oceanbase7obmysql10ReadBuffer11try_read_fdEl
_ZN9oceanbase6common18ob_read_regard_sslEiPvm
_ZN9oceanbase8observer12ObSrvDeliver7deliverERNS_3rpc9ObRequestE
_ZN9oceanbase7obmysql24ObMysqlProtocolProcessor9do_decodeERNS_8observer14ObSMConnectionERNS0_12ObICSMemPoolERPKcS8_RPNS_3rpc8ObPacketERl
_ZN9oceanbase5obrpc12ObRpcMemPool5allocEl
_ZN9oceanbase7obmysql11ObMySQLUtil9get_uint3ERPKcRj
_ZN9oceanbase7obmysql11ObMySQLUtil9get_uint1ERPKcRh
_ZN9oceanbase8observer12ObSrvDeliver21deliver_mysql_requestERNS_3rpc9ObRequestE
_ZN9oceanbase3omt8ObTenant12recv_requestERNS_3rpc9ObRequestE
_ZN9oceanbase3rpc9ObRequest15set_trace_pointEi
_ZN9oceanbase6common16ObPriorityQueue2ILi1ELi2ELi3EE4pushEPNS0_6ObLinkEi
_ZN9oceanbase6common9SCondTempILi3EE6signalEji
_ZN9oceanbase3lib7ObFutex4wakeEl
_ZN9oceanbase7obmysql16PendingWriteTask8do_writeEiPKclRl
_ZN9oceanbase6common19ob_write_regard_sslEiPKvm
ob_epoll_wait
_ZN9oceanbase7obmysql12ObSqlNioImpl31update_tcp_keepalive_parametersEv
_ZN9oceanbase7obmysql12ObSqlNioImpl18print_session_infoEv
_ZN9oceanbase7obmysql12ObSqlNioImpl27handle_pending_destroy_listEv
_ZN9oceanbase7obmysql10ReadBuffer13switch_bufferEl
_ZN9oceanbase8observer12ObSrvDeliver19deliver_rpc_requestERNS_3rpc9ObRequestE
_ZNK9oceanbase3omt13ObMultiTenant10get_tenantEmRPNS0_8ObTenantE
_ZN9oceanbase3omt8ObTenant18recv_group_requestERNS_3rpc9ObRequestEl
_ZN9oceanbase6common16ObPriorityQueue2ILi0ELi1ELi0EE4pushEPNS0_6ObLinkEi
_Z23check_easy_memory_limitRN9oceanbase3rpc9ObRequestE
_ZN9oceanbase3omt10ObThWorker6workerERlS2_Ri
_ZN9oceanbase6common16ObWaitEventGuardD1Ev
_ZN9oceanbase6common16ObWaitEventGuardD2Ev
_ZN9oceanbase5share2_SILNS0_12ObEntityTypeE0ELNS0_12EntitySourceE0EED2Ev
_ZN9oceanbase3lib2_SILNS0_13ContextSourceE1EED2Ev
_ZN9oceanbase3lib17__MemoryContext__15destory_contextEPS1_
_ZN9oceanbase6common11ObAllocator4freeEPv
_ZN9oceanbase6common20ObSafeArenaAllocatorD2Ev
_ZN9oceanbase3lib17__MemoryContext__6deinitEv
_ZN9oceanbase6common12ObLatchMutexD1Ev
_ZN9oceanbase6common12ObLatchMutexD2Ev
_ZN9oceanbase3lib18SetDoNothingLocker4lockEv
_ZN9oceanbase3lib18SetDoNothingLocker6unlockEv
_ZN9oceanbase6common11ObAllocatorD2Ev
_ZN9oceanbase3lib9ObjectSet5resetEv
_ZN9oceanbase3lib20ObTenantCtxAllocator11common_freeEPv
_ZN9oceanbase3lib9IBlockMgr13get_tenant_idEv
_ZN9oceanbase3lib20ObTenantCtxAllocator7on_freeERNS0_7AObjectE
_ZN9oceanbase3lib9ObjectSet11free_objectEPNS0_7AObjectE
_ZN9oceanbase5share2_SILNS0_12ObEntityTypeE1ELNS0_12EntitySourceE2EED2Ev
_ZN9oceanbase6common12TCRLockGuardC2ERKNS0_8TCRWLockE
_ZN9oceanbase6common8TCRWLock10try_rdlockERl
_ZN9oceanbase5share13ObTenantSpace15guard_deinit_cbERKS1_Pc
_ZN9oceanbase6common13ObPageManager10free_blockEPNS_3lib6ABlockE
_ZN9oceanbase3lib9ObjectSet14do_free_objectEPNS0_7AObjectE
_ZN9oceanbase3lib9IBlockMgr10get_ctx_idEv
_ZN9oceanbase3lib9ObjectSet10free_blockEPNS0_6ABlockE
_ZN9oceanbase3lib9ObjectSet15free_big_objectEPNS0_7AObjectE
_ZN9oceanbase3lib9ObjectSet18free_normal_objectEPNS0_7AObjectE
_ZN9oceanbase3lib8BlockSet10free_blockEPNS0_6ABlockE
_ZN9oceanbase3lib8BlockSet19take_off_free_blockEPNS0_6ABlockEiPNS0_6AChunkE
_ZN9oceanbase3lib20ObTenantCtxAllocator11ReqChunkMgr10free_chunkEPNS0_6AChunkERKNS0_9ObMemAttrE
_ZN9oceanbase5share13ObTenantSpace13guard_init_cbERKS1_PcRb
_ZN9oceanbase3lib9ObjectSet9merge_objEPNS0_7AObjectE
_ZN9oceanbase3lib8BlockSet10free_chunkEPNS0_6AChunkE
_ZN9oceanbase3lib2_SILNS0_13ContextSourceE1EEC2IJNS0_11DynamicInfoERNS0_12ContextParamEPNS0_10StaticInfoEEEEbDpOT_
_ZN9oceanbase3lib17__MemoryContext__14create_contextIJRNS0_12ContextParamERPNS0_10StaticInfoEEEEiRNS0_13MemoryContextERS1_RKNS0_11DynamicInfoEDpOT_
_ZN9oceanbase3lib17__MemoryContext__4initEv
_ZN9oceanbase3omt8ObTenant15get_new_requestERNS0_10ObThWorkerElRPNS_3rpc9ObRequestE
_ZN9oceanbase6common16ObPriorityQueue2ILi1ELi2ELi3EE6do_popERPNS0_6ObLinkEll
_ZN9oceanbase6common11ObLinkQueue3popERPNS0_6ObLinkE
_ZN9oceanbase6common9SCondTempILi3EE4waitEl
_ZN9oceanbase3lib7ObFutex4waitEil
_ZN9oceanbase3omt8ObTenant18check_worker_countERNS0_10ObThWorkerE
_ZN9oceanbase3omt10ObThWorker25set_th_worker_thread_nameEv
_ZN9oceanbase5share13ObTenantSpace4rootEv
_ZN9oceanbase3omt10ObThWorker15process_requestERNS_3rpc9ObRequestE
_ZN9oceanbase6common16ObMemLeakChecker7on_freeERNS_3lib7AObjectE
_ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE9free_pageEPNS3_4PageE
_ZN9oceanbase3lib9ObjectSet16check_has_unfreeEPcS2_
_ZN9oceanbase3lib17__MemoryContext__10init_allocERNS_6common11ObAllocatorEbj
_ZN9oceanbase6common12ObLatchMutexC1Ev
_ZN9oceanbase6common12ObLatchMutexC2Ev
_ZN9oceanbase6common11ObAllocatorC2EPNS_3lib17__MemoryContext__ERKNS2_9ObMemAttrEbj
_ZN9oceanbase3lib12SubObjectMgr10free_blockEPNS0_6ABlockE
_ZN9oceanbase8memtable13ObLockWaitMgr12post_processEbRb
futex_hook
_ZN9oceanbase3omt17ObWorkerProcessor7processERNS_3rpc9ObRequestE
_ZN9oceanbase3omt17ObWorkerProcessor16process_err_testEv
_ZN9oceanbase3rpc5frame15ObReqTranslator9translateERNS0_9ObRequestERPNS1_14ObReqProcessorE
_ZN9oceanbase3omt17ObWorkerProcessor11process_oneERNS_3rpc9ObRequestE
_ZN9oceanbase3rpc5frame14ObReqProcessor7destroyEv
_ZN9oceanbase8observer8ObMPBase7cleanupEv
_ZN9oceanbase8observer8ObMPBase14before_processEv
_ZN9oceanbase3rpc5frame14ObReqProcessor14set_ob_requestERNS0_9ObRequestE
_ZN9oceanbase6common20ObActiveSessionGuard17setup_default_ashEv
_ZN9oceanbase3rpc5frame14ObSqlProcessor3runEv
_ZNK9oceanbase3omt10ObThWorker10need_retryEv
_ZN9oceanbase3sql8ObParserD1Ev
_ZN9oceanbase3sql8ObParserD2Ev
_ZN9oceanbase11transaction17ObTxnFreeRouteCtx24init_before_update_stateEb
_ZN9oceanbase8observer8ObMPBase12flush_bufferEb
_ZN9oceanbase3sql16ObQueryRetryInfo5resetEv
_ZN9oceanbase8observer8ObMPBase19setup_packet_senderEv
_ZNK9oceanbase8observer16ObMPPacketSender8get_connEv
_ZNK9oceanbase8observer8ObMPBase8get_connEv
_ZN9oceanbase3rpc9ObRequest17generate_trace_idERKNS_6common6ObAddrE
_ZN9oceanbase8observer16ObMPPacketSender7do_initEPNS_3rpc9ObRequestEhhbbl
_ZN9oceanbase5trace7ObTrace3endEv
_ZN9oceanbase8observer8ObMPBase8responseEi
_ZN9oceanbase8observer9ObMPQuery11deserializeEv
_ZN9oceanbase8observer9ObMPQuery7processEv
_ZN9oceanbase8observer16ObMySQLResultSetD2Ev
_ZNK9oceanbase11transaction11ObXATransID5emptyEv
_ZN9oceanbase8observer14global_contextEv
_ZN9oceanbase3sql16ObSQLSessionInfo18set_txn_free_routeEb
_ZN9oceanbase5trace7ObTrace10begin_spanEjhb
_ZN9oceanbase5trace7ObTrace12get_instanceEv
_ZN9oceanbase3sql16ObSQLSessionInfo19get_plsql_exec_timeEv
_ZTHN9oceanbase6common14ObSqlInfoGuard11tl_sql_infoE
_ZN9oceanbase6common24ObFatalErrExtraInfoGuardD1Ev
_ZN9oceanbase6common24ObFatalErrExtraInfoGuardD2Ev
_ZNK9oceanbase5share6schema27ObMultiVersionSchemaService37get_tenant_received_broadcast_versionEmRlb
_ZN9oceanbase3sql10ObSQLUtils20handle_plan_baselineERKNS0_17ObAuditRecordDataEPNS0_14ObPhysicalPlanEiRNS0_8ObSqlCtxE
_ZN9oceanbase6common21ObSessionStatEstGuardD1Ev
_ZN9oceanbase6common21ObSessionStatEstGuardD2Ev
_ZN9oceanbase6common13ObSEArrayImplINS0_8ObStringELl1ENS0_19ModulePageAllocatorELb0EE9push_backERKS2_
_ZN9oceanbase3sql16ObSQLSessionInfo22post_sync_session_infoEv
_ZN9oceanbase3lib21ObMallocCallbackGuardD1Ev
_ZN9oceanbase3lib21ObMallocCallbackGuardD2Ev
_ZN9oceanbase3sql15ObSQLSessionMgr14revert_sessionEPNS0_16ObSQLSessionInfoE
_ZN9oceanbase5trace7ObTrace7set_tagINS_6common8ObStringEJEEEv9ObTagTypeRKT_
_ZN9oceanbase3sql10ObFLTUtils13init_flt_infoENS_7obmysql13Ob20ExtraInfoERNS0_16ObSQLSessionInfoEb
_ZN9oceanbase7obmysql23ObPocSqlRequestOperator20async_write_responseEPNS_3rpc9ObRequestEPKcl
_ZN9oceanbase8observer16ObMPPacketSender33update_transmission_checksum_flagERKNS_3sql16ObSQLSessionInfoE
_ZN9oceanbase7obmysql23ObPocSqlRequestOperator18finish_sql_requestEPNS_3rpc9ObRequestE
_ZN9oceanbase7obmysql23request_finish_callbackEv
_ZN9oceanbase3sql8ObParserC1ERNS_6common12ObIAllocatorEmNS0_17ObCharsets4ParserEPNS0_22QuestionMarkDefNameCtxE
_ZN9oceanbase3sql8ObParserC2ERNS_6common12ObIAllocatorEmNS0_17ObCharsets4ParserEPNS0_22QuestionMarkDefNameCtxE
_ZN9oceanbase8observer8ObMPBase18process_extra_infoERNS_3sql16ObSQLSessionInfoERKNS_7obmysql16ObMySQLRawPacketERb
_ZN9oceanbase6common10to_cstringINS0_12ObCurTraceId7TraceIdEEEPKcRKT_NS0_8BoolTypeILb0EEE
_ZN9oceanbase6common15databuff_printfEPclRlPKcz
_ZN9oceanbase3sql18ObBasicSessionInfo21gen_configs_in_pc_strEv
_ZNK9oceanbase8observer8ObMPBase16record_flt_traceERNS_3sql16ObSQLSessionInfoE
_ZN9oceanbase3sql8ObParser19split_multiple_stmtERKNS_6common8ObStringERNS2_8ObIArrayIS3_EERNS0_13ObMPParseStatEbb
_ZNK9oceanbase3sql11ObResultSet23need_end_trans_callbackEv
_ZN9oceanbase8observer9ObMPQuery19process_single_stmtERKNS_3sql15ObMultiStmtItemEPNS0_14ObSMConnectionERNS2_16ObSQLSessionInfoEbbRbSA_
_ZNK9oceanbase3sql18ObBasicSessionInfo20get_log_id_level_mapEv
_ZThn56_N9oceanbase8observer8ObMPBase19update_last_pkt_posEv
_ZN9oceanbase6common16ObFixedArrayImplIPNS0_9ObSEArrayIlLl4ENS0_19ModulePageAllocatorELb1EEENS0_12ObIAllocatorEE7destroyEv
_ZN9oceanbase3sql13ObBaselineKey5resetEv
_ZN9oceanbase6common16ObClusterVersion12get_instanceEv
_ZN9oceanbase6common16ObFixedArrayImplINS_3sql18ObDupTabConstraintENS0_12ObIAllocatorEE7destroyEv
_ZN9oceanbase6common16ObFixedArrayImplINS0_8ObStringENS0_12ObIAllocatorEE7destroyEv
_ZN9oceanbase6common11ObSqlString5resetEv
_ZN9oceanbase6common16ObFixedArrayImplINS_3sql18LocationConstraintENS0_12ObIAllocatorEE7destroyEv
_ZN9oceanbase6common24ObFatalErrExtraInfoGuardC1Ev
_ZN9oceanbase6common24ObFatalErrExtraInfoGuardC2Ev
_ZN9oceanbase6common14ObMaxWaitGuardC1EPNS0_15ObWaitEventDescEPNS0_21ObDiagnoseSessionInfoE
_ZN9oceanbase6common14ObMaxWaitGuardC2EPNS0_15ObWaitEventDescEPNS0_21ObDiagnoseSessionInfoE
_ZNK9oceanbase3sql8ObDASCtx22get_related_tablet_cntEv
_ZThn56_N9oceanbase8observer8ObMPBase25need_send_extra_ok_packetEv
_ZNK9oceanbase5share6schema27ObMultiVersionSchemaService35get_tenant_refreshed_schema_versionEmRlb
_ZNK9oceanbase5share6schema16ObSchemaStoreMap3getEm
_ZN9oceanbase6common16ObTotalWaitGuardD1Ev
_ZN9oceanbase6common16ObTotalWaitGuardD2Ev
_ZNK9oceanbase8observer8ObMPBase16init_process_varERNS_3sql8ObSqlCtxERKNS2_15ObMultiStmtItemERNS2_16ObSQLSessionInfoE
_ZN9oceanbase3sql8ObSqlCtx5resetEv
_ZN9oceanbase3sql8ObSqlCtx5clearEv
_ZN9oceanbase8observer14ObReqTimeGuardC2Ev
_ZN9oceanbase3sql13ObSpmCacheCtx5resetEv
_ZNK9oceanbase5share6schema19ObSchemaGetterGuard18get_schema_versionEmRl
_ZN9oceanbase3sql15ObCacheObjGuard19force_early_releaseEPNS0_11ObPlanCacheE
_ZN9oceanbase6common21ObSessionStatEstGuardC1Emmb
_ZN9oceanbase6common21ObSessionStatEstGuardC2Emmb
_ZThn56_N9oceanbase8observer8ObMPBase14send_ok_packetERNS_3sql16ObSQLSessionInfoERNS0_10ObOKPParamEPNS_7obmysql13ObMySQLPacketE
_ZN9oceanbase3sql17ObAuditRecordData24update_event_stage_stateEv
_ZN9oceanbase3sql12ObExecRecord11update_statEv
_ZNK9oceanbase3sql16ObSQLSessionInfo22is_txn_free_route_tempEv
_ZN9oceanbase3sql12ObExecRecord10record_endEPNS_6common21ObDiagnoseSessionInfoE
_ZN9oceanbase3sql12ObExecRecord12record_startEPNS_6common21ObDiagnoseSessionInfoE
_ZN9oceanbase3sql18ObBasicSessionInfo38update_query_sensitive_system_variableERNS_5share6schema19ObSchemaGetterGuardE
_ZN9oceanbase3sql10ObSQLUtils19record_execute_timeENS0_13ObPhyPlanTypeEl
_ZN9oceanbase5trace7ObTrace7set_tagIA33_cJEEEv9ObTagTypeRKT_
_ZN9oceanbase3sql10ObSQLUtils19handle_audit_recordEbNS0_13ObExecuteModeERNS0_16ObSQLSessionInfoEb
_ZN9oceanbase6common25ObConcurrentFIFOAllocator5allocEl
_ZN9oceanbase3sql16ObSQLSessionInfo28update_stat_from_exec_recordEv
_ZN9oceanbase3sql16ObSQLSessionInfo24ObCachedTenantConfigInfo7refreshEv
_ZN9oceanbase3sql16ObSQLSessionInfo22get_final_audit_recordENS0_13ObExecuteModeE
_ZN9oceanbase3sql16ObSQLSessionInfo31update_stat_from_exec_timestampEv
_ZN9oceanbase6common15ObWarningBufferaSERKS1_
_ZN9oceanbase6common11ObArrayImplINS0_15ObWarningBuffer11WarningItemENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE5resetEv
_ZN9oceanbase3sql11ObResultSetD1Ev
_ZN9oceanbase3sql11ObResultSetD2Ev
_ZN9oceanbase3sql22ObTableDirectInsertCtxD1Ev
_ZN9oceanbase3sql22ObTableDirectInsertCtxD2Ev
_ZN9oceanbase6common11ObArrayImplINS_3sql19ObJoinFilterDataCtxENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEED2Ev
_ZN9oceanbase3sql9ObOpInputD2Ev
_ZN9oceanbase6common4hash9ObHashMapImPvNS1_24LatchReadWriteDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS3_EEEELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev
_ZN9oceanbase6common4hash9ObHashMapIllNS1_24LatchReadWriteDefendModeENS1_9hash_funcIlEENS1_8equal_toIlEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIllEEEELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev
_ZN9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEELb0EED2Ev
_ZN9oceanbase6common11ObArrayImplINS_3sql18ObExecFeedbackNodeENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev
_ZN9oceanbase6common4hash9ObHashMapINS0_6ObAddrElNS1_24LatchReadWriteDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_lEEEELi88ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev
_ZN9oceanbase3sql13ObExecContextD1Ev
_ZN9oceanbase3sql13ObExecContextD2Ev
_ZN9oceanbase6common16ObArenaAllocator4freeEPv
_ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE4freeEv
_ZN9oceanbase6common4hash9ObHashMapIPNS_3sql19DASRelatedTabletMap3KeyEPNS4_5ValueENS1_19NoPthreadDefendModeENS1_9hash_funcIS6_EENS1_8equal_toIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS6_S8_EEEELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev
_ZN9oceanbase3sql13ObTableScanOp7destroyEv
_ZN9oceanbase6common11ObArrayImplINS_3sql19ObJoinFilterDataCtxENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE7destroyEv
_ZN9oceanbase3sql9ObDASIter7releaseEv
_ZN9oceanbase6common10ObObjStoreIPNS_3sql12ObIDASTaskOpERNS0_12ObIAllocatorELb0EED2Ev
_ZN9oceanbase6common10ObObjStoreIPNS_3sql12ObIDASTaskOpERNS0_12ObIAllocatorELb0EE7destroyEv
_ZN9oceanbase3sql14ObDASMergeIter13inner_releaseEv
_ZN9oceanbase6common10ObObjStoreIPNS_3sql27ObRpcDasAsyncAccessCallBackERNS0_12ObIAllocatorELb0EED2Ev
_ZN9oceanbase6common10ObObjStoreIPNS_3sql14ObDASBaseCtDefERNS0_12ObIAllocatorELb0EED2Ev
_ZN9oceanbase3sql16ObDASTaskFactoryD1Ev
_ZN9oceanbase3sql16ObDASTaskFactoryD2Ev
_ZN9oceanbase6common10ObObjStoreIPNS_3sql16ObIDASTaskResultERNS0_12ObIAllocatorELb0EED2Ev
_ZN9oceanbase6common10ObObjStoreIPNS_3sql14ObDASExtraDataERNS0_12ObIAllocatorELb0EED2Ev
_ZN9oceanbase3sql14ObDASBaseRtDefD2Ev
_ZN9oceanbase6common4hash9ObHashMapINS_3sql9DasRefKeyEPNS3_12ObIDASTaskOpENS1_19NoPthreadDefendModeENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS4_S6_EEEELi97ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev
_ZN9oceanbase6common13ObSEArrayImplINS_3sql14ObDASMergeIter10MergeStateELl8ENS0_19ModulePageAllocatorELb0EE7destroyEv
_ZN9oceanbase6common9Ob2DArrayINS_3sql15ObPxTabletRangeELi2079744ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS3_Ll64ES4_Lb0EEELb0EED2Ev
_ZN9oceanbase6common10ObObjStoreIPNS_3sql27ObRpcDasAsyncAccessCallBackERNS0_12ObIAllocatorELb0EE7destroyEv
_ZN9oceanbase3sql8ObDASRefD2Ev
_ZN9oceanbase3sql8ObDASRef5resetEv
_ZN9oceanbase6common12ObThreadCond7destroyEv
_ZN9oceanbase6common13ObSEArrayImplINS_7storage20ObRow2ExprsProjector4ItemELl4ENS0_19ModulePageAllocatorELb0EE7destroyEv
_ZN9oceanbase6common11ObArrayImplINS_3sql18ObExecFeedbackNodeENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEE7destroyEv
_ZN9oceanbase3sql14ObSubSchemaCtx5resetEv
_ZN9oceanbase3lib21ObMallocCallbackGuardC1ERNS0_16ObMallocCallbackE
_ZN9oceanbase3lib21ObMallocCallbackGuardC2ERNS0_16ObMallocCallbackE
_ZN9oceanbase3sql8ObDASCtxD2Ev
_ZN9oceanbase3sql19ObDASLocationRouterD1Ev
_ZN9oceanbase3sql19ObDASLocationRouterD2Ev
_ZN9oceanbase7obmysql21ObMySQLRequestManager14record_requestERKNS_3sql17ObAuditRecordDataEbb
_ZN9oceanbase6common11upper_alignEll
_ZN9oceanbase6common13ObVSliceAlloc5allocEl
_ZN9oceanbase6common13ObSEArrayImplINS_3sql14MergeStoreRowsELl8ENS0_19ModulePageAllocatorELb0EE7destroyEv
_ZN9oceanbase3sql11ObResultSetC2ERNS0_16ObSQLSessionInfoERNS_6common12ObIAllocatorE
_ZN9oceanbase3sql13ObExecContextC1ERNS_6common12ObIAllocatorE
_ZN9oceanbase3sql13ObExecContextC2ERNS_6common12ObIAllocatorE
_ZN9oceanbase3sql19ObDASLocationRouterC1ERNS_6common12ObIAllocatorE
_ZN9oceanbase3sql19ObDASLocationRouterC2ERNS_6common12ObIAllocatorE
_ZN9oceanbase6common4hash9ObHashMapIllNS1_24LatchReadWriteDefendModeENS1_9hash_funcIlEENS1_8equal_toIlEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIllEEEELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev
_ZN9oceanbase6common4hash9ObHashMapImPvNS1_24LatchReadWriteDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS3_EEEELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev
_ZN9oceanbase6common4hash9ObHashMapINS0_6ObAddrElNS1_24LatchReadWriteDefendModeENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS3_lEEEELi88ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev
_ZN9oceanbase3sql17ObTaskExecutorCtxC1ERNS0_13ObExecContextE
_ZN9oceanbase3sql17ObTaskExecutorCtxC2ERNS0_13ObExecContextE
_ZN9oceanbase3sql8ObDASCtxC2ERNS_6common12ObIAllocatorE
_ZN9oceanbase6common4hash9ObHashMapIPNS_3sql19DASRelatedTabletMap3KeyEPNS4_5ValueENS1_19NoPthreadDefendModeENS1_9hash_funcIS6_EENS1_8equal_toIS6_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS6_S8_EEEELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev
_ZN9oceanbase3sql14ObDASScanRtDefD1Ev
_ZN9oceanbase3sql14ObDASScanRtDefD2Ev
_ZN9oceanbase6common11ObArrayImplINS0_15ObWarningBuffer11WarningItemENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE6assignERKNS0_8ObIArrayIS3_EE
_ZN9oceanbase8observer9ObMPQuery25store_params_value_to_strERNS_6common12ObIAllocatorERNS_3sql16ObSQLSessionInfoERNS2_9Ob2DArrayINS2_10ObObjParamELi2079744ENS2_18ObWrapperAllocatorELb0ENS2_9ObSEArrayIPS9_Ll1ESA_Lb0EEELb0EEE
_ZN9oceanbase3sql10ObPlanStat17update_cache_statERKNS0_15ObTableScanStatE
_ZN9oceanbase3sql15ObTableModifyOp7destroyEv
_ZN9oceanbase3sql17ObTaskExecutorCtxD1Ev
_ZN9oceanbase3sql17ObTaskExecutorCtxD2Ev
_ZN9oceanbase6common13ObSEArrayImplINS_3sql18ObPhyTableLocationELl2ENS0_19ModulePageAllocatorELb0EE7destroyEv
_ZN9oceanbase6common11ObArrayImplIPKNS0_8ObIArrayIlEENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEED2Ev
_ZN9oceanbase3sql18ObBasicSessionInfo18set_session_activeERKNS_6common8ObStringEllNS_7obmysql10ObMySQLCmdE
_ZN9oceanbase6common20ObActiveSessionGuard9setup_ashERNS0_17ActiveSessionStatE
_ZN9oceanbase3sql18ObBasicSessionInfo21set_retry_active_timeEl
_ZN9oceanbase6common13ObSEArrayImplINS_3sql21ObPartIdRowMapManager8MapEntryELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv
_ZN9oceanbase3sql18ObBasicSessionInfo25check_and_init_retry_infoERKNS_6common12ObCurTraceId7TraceIdERKNS2_8ObStringE
_ZN9oceanbase3sql14ObPhysicalPlan16update_plan_statERKNS0_17ObAuditRecordDataEbPKNS_6common8ObIArrayINS0_15ObTableRowCountEEE
_ZN9oceanbase5share9aggregate21BatchAggregateWrapperINS1_12SumAggregateILNS_6common17VecValueTypeClassE29ELS5_29EEEE7destroyEv
_ZNK9oceanbase3sql19ObDASLocationRouter25is_refresh_location_errorEi
_ZN9oceanbase3sql18ObBasicSessionInfo19store_query_string_ERKNS_6common8ObStringE
_ZN9oceanbase3sql18ObTableScanOpInputD1Ev
_ZN9oceanbase3sql18ObTableScanOpInputD2Ev
_ZN9oceanbase6common13ObSEArrayImplINS0_10ObNewRangeELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv
_ZN9oceanbase6common11ObArrayImplIPKNS0_8ObIArrayIlEENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS5_EENS0_22NotImplementItemEncodeIS5_EEE7destroyEv
_ZN9oceanbase3sql5ObSql10stmt_queryERKNS_6common8ObStringERNS0_8ObSqlCtxERNS0_11ObResultSetE
_ZN9oceanbase3sql8ObDASCtx24unmark_need_check_serverEv
_ZN9oceanbase3sql5ObSql15init_result_setERNS0_8ObSqlCtxERNS0_11ObResultSetE
_ZN9oceanbase6common16ObFixedArrayImplINS_5share12AutoincParamENS0_12ObIAllocatorEE6assignERKNS0_8ObIArrayIS3_EE
_ZN9oceanbase5trace7ObTrace7set_tagImJEEEv9ObTagTypeRKT_
_ZN9oceanbase3sql13ObExecContext24create_physical_plan_ctxEv
_ZN9oceanbase3sql5ObSql27pc_get_plan_and_fill_resultERNS0_14ObPlanCacheCtxERNS0_11ObResultSetERiRb
_ZN9oceanbase6common20ObActiveSessionGuard8get_statEv
_ZN9oceanbase3sql14ObPlanCacheCtxD2Ev
_ZN9oceanbase3sql16ObPrivilegeCheck22check_password_expiredERKNS0_8ObSqlCtxENS0_4stmt8StmtTypeE
_ZN9oceanbase3sql18ObFastParserResultD2Ev
_ZN9oceanbase6common16ObFixedArrayImplINS_3sql18ObFastParserResultENS0_12ObIAllocatorEED2Ev
_ZN9oceanbase3sql17ObPhysicalPlanCtxC1ERNS_6common12ObIAllocatorE
_ZN9oceanbase3sql17ObPhysicalPlanCtxC2ERNS_6common12ObIAllocatorE
_ZN9oceanbase11transaction9ObTxParamC1Ev
_ZN9oceanbase11transaction9ObTxParamC2Ev
_ZN9oceanbase6common4hash9ObHashMapINS_3sql21ObSubSchemaReverseKeyEmNS1_19NoPthreadDefendModeENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS4_mEEEELi97ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev
_ZN9oceanbase6common4hash9ObHashMapImNS_3sql16ObSubSchemaValueENS1_19NoPthreadDefendModeENS1_9hash_funcImEENS1_8equal_toImEENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairImS4_EEEELi88ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EEC2Ev
_ZN9oceanbase3sql5ObSql18handle_large_queryEiRNS0_11ObResultSetERbRNS0_13ObExecContextE
_ZN9oceanbase6common16ObFixedArrayImplINS0_9ObSEArrayINS_3sql12NotParamInfoELl4ENS0_19ModulePageAllocatorELb0EEENS0_12ObIAllocatorEE7destroyEv
_ZN9oceanbase3sql22UDRBackupRecoveryGuard6backupEv
_ZN9oceanbase5trace7ObTrace7set_tagIbJEEEv9ObTagTypeRKT_
_ZN9oceanbase3sql5ObSql11pc_get_planERNS0_14ObPlanCacheCtxERNS0_15ObCacheObjGuardERiRb
_ZNK9oceanbase3sql16ObSQLSessionInfo24has_user_super_privilegeEv
_ZN9oceanbase3sql15ObSchemaChecker17is_ora_priv_checkEv
_ZN9oceanbase3sql5ObSql16execute_get_planERNS0_11ObPlanCacheERNS0_14ObPlanCacheCtxERNS0_15ObCacheObjGuardE
_ZN9oceanbase8observer22ObGlobalReqTimeService18check_req_timeinfoEv
_ZN9oceanbase3sql16ObPrivilegeCheck15check_privilegeERKNS0_8ObSqlCtxERKNS_5share6schema15ObStmtNeedPrivsE
_ZN9oceanbase5share6schema19ObSchemaGetterGuard10check_privERKNS1_17ObSessionPrivInfoERKNS1_15ObStmtNeedPrivsE
_ZNK9oceanbase3sql16ObSQLSessionInfo21get_session_priv_infoERNS_5share6schema17ObSessionPrivInfoE
_ZSt11_Hash_bytesPKvmm
_ZN9oceanbase6common13ObSEArrayImplImLl8ENS0_19ModulePageAllocatorELb0EE5reuseEv
_ZN9oceanbase6common13ObSEArrayImplImLl8ENS0_19ModulePageAllocatorELb0EE6assignERKNS0_8ObIArrayImEE
_ZNK9oceanbase3sql18ObBasicSessionInfo20get_security_versionERm
_ZNK9oceanbase3sql18ObBasicSessionInfo16get_sys_variableENS_5share17ObSysVarClassTypeERNS_6common5ObObjE
_ZN9oceanbase6common16ObFixedArrayImplINS_3sql19SelectItemParamInfoENS0_12ObIAllocatorEED2Ev
_ZN9oceanbase5trace7ObTrace7set_tagIlJEEEv9ObTagTypeRKT_
_ZN9oceanbase8observer14ObReqTimeGuardD2Ev
_ZNK9oceanbase11transaction17ObTxnFreeRouteCtx7is_tempERKNS0_8ObTxDescE
_ZN9oceanbase3sql16ObSQLSessionInfo21set_show_warnings_bufEi
_ZN9oceanbase11transaction17ObTxnFreeRouteCtx26init_before_handle_requestEPNS0_8ObTxDescE
_ZN9oceanbase6common11ObArrayImplINS_3sql17ObSqlTempTableCtxENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_17DefaultItemEncodeIS3_EEED2Ev
_ZN9oceanbase8observer8ObMPBase24check_and_refresh_schemaEmmPNS_3sql16ObSQLSessionInfoE
_ZN9oceanbase6common4hash11ObHashTableINS0_6ObAddrENS1_11HashMapPairIS3_lEENS1_9hash_funcIS3_EENS1_8equal_toIS3_EENS1_10pair_firstIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS5_EELi88ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE7destroyEv
_ZN9oceanbase3sql18ObBasicSessionInfo17set_session_sleepEv
_ZN9oceanbase3sql18ObBasicSessionInfo18set_session_state_ENS0_17ObSQLSessionStateE
_ZN9oceanbase3sql18ObBasicSessionInfo18set_is_request_endEb
_ZN9oceanbase3sql18ObBasicSessionInfo21set_last_flt_trace_idERKNS_6common8ObStringE
_ZN9oceanbase6common9Ob2DArrayINS_3sql15ObPxTabletRangeELi2079744ENS0_19ModulePageAllocatorELb0ENS0_9ObSEArrayIPS3_Ll64ES4_Lb0EEELb0EE7destroyEv
_ZN9oceanbase3sql17ObLCObjectManager11common_freeEPNS0_17ObILibCacheObjectENS0_16CacheRefHandleIDE
_ZN9oceanbase3sql17ObILibCacheObject13dec_ref_countENS0_16CacheRefHandleIDE
_ZN9oceanbase3sql11ObPlanCache8get_planERNS_6common12ObIAllocatorERNS0_14ObPlanCacheCtxERNS0_15ObCacheObjGuardE
_ZNK9oceanbase5share6schema11ObSchemaMgr20get_tenant_read_onlyEmRb
_ZNK9oceanbase5share6schema16ObSysVariableMgr23get_sys_variable_schemaEmRPKNS1_25ObSimpleSysVariableSchemaE
_ZN9oceanbase3sql16ObSQLSessionInfo25check_read_only_privilegeEbRKNS0_11ObSqlTraitsE
_ZN9oceanbase3sql11ObPlanCache28construct_fast_parser_resultERNS_6common12ObIAllocatorERNS0_14ObPlanCacheCtxERKNS2_8ObStringERNS0_18ObFastParserResultE
_ZN9oceanbase6common13ObSEArrayImplIPNS_3sql9ObPCParamELl4ENS0_19ModulePageAllocatorELb0EE7destroyEv
_ZN9oceanbase3sql11ObPlanCache14get_plan_cacheERNS0_14ObILibCacheCtxERNS0_15ObCacheObjGuardE
_ZN9oceanbase3sql15ObILibCacheNode16update_node_statERNS0_14ObILibCacheCtxE
_ZN9oceanbase3sql11ObPlanCache13get_cache_objERNS0_14ObILibCacheCtxEPNS0_14ObILibCacheKeyERNS0_15ObCacheObjGuardE
_ZNK9oceanbase3sql13ObExecContext23get_min_cluster_versionEv
_ZN9oceanbase3sql15ObILibCacheNode13dec_ref_countENS0_16CacheRefHandleIDE
_ZN9oceanbase3sql15ObILibCacheNode6unlockEv
_ZN9oceanbase3sql8ObPCVSet19inner_get_cache_objERNS0_14ObILibCacheCtxEPNS0_14ObILibCacheKeyERPNS0_17ObILibCacheObjectE
_ZN9oceanbase3sql10ObSQLUtils13is_nested_sqlEPNS0_13ObExecContextE
_ZNK9oceanbase3sql18ObBasicSessionInfo25get_capture_plan_baselineERb
_ZN9oceanbase3sql11ObPlanCache9get_valueEPNS0_14ObILibCacheKeyERPNS0_15ObILibCacheNodeERNS0_18ObLibCacheAtomicOpE
_ZN9oceanbase3sql21ObLibCacheRlockAndRef4lockERNS0_15ObILibCacheNodeE
_ZN9oceanbase6common4hash11ObHashTableIPNS_3sql14ObILibCacheKeyENS1_11HashMapPairIS5_PNS3_15ObILibCacheNodeEEENS1_9hash_funcIS5_EENS1_8equal_toIS5_EENS1_10pair_firstIS9_EENS1_13SimpleAllocerINS1_15ObHashTableNodeIS9_EELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_24LatchReadWriteDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE11read_atomicINS3_18ObLibCacheAtomicOpENS1_8pre_procIS9_EEEEiRKS5_RT_RT0_
_ZNK9oceanbase3sql14ObILibCacheKey4hashERm
_ZNK9oceanbase3sql14ObPlanCacheKey4hashEv
_ZN9oceanbase3sql17ObILibCacheObject13inc_ref_countENS0_16CacheRefHandleIDE
_ZN9oceanbase3sql11ObPlanCache20check_after_get_planEiRNS0_14ObILibCacheCtxEPNS0_17ObILibCacheObjectE
_ZNK9oceanbase3sql14ObPlanCacheKey8is_equalERKNS0_14ObILibCacheKeyE
_ZN9oceanbase3sql18ObLibCacheAtomicOp9get_valueERPNS0_15ObILibCacheNodeE
_ZNK9oceanbase3sql14ObILibCacheKeyeqERKS1_
_ZN9oceanbase6common13ObSEArrayImplINS_3sql12PCVSchemaObjELl4ENS0_19ModulePageAllocatorELb0EE7destroyEv
_ZN9oceanbase3sql16ObPlanCacheValue11choose_planERNS0_14ObPlanCacheCtxERKNS_6common8ObIArrayINS0_12PCVSchemaObjEEERPNS0_17ObPlanCacheObjectE
_ZN9oceanbase3sql15ObDatumObjParam13from_objparamERKNS_6common10ObObjParamEPNS2_12ObIAllocatorE
_ZN9oceanbase3sql16ObPlanCacheValue15resolver_paramsERNS0_14ObPlanCacheCtxENS0_4stmt8StmtTypeERKNS_6common8ObIArrayINS6_13ObCharsetTypeEEERKNS6_8ObBitSetILl256ENS6_19ModulePageAllocatorELb0EEESG_SG_RNS7_IPNS0_9ObPCParamEEEPNS6_9Ob2DArrayINS6_10ObObjParamELi2079744ENS6_18ObWrapperAllocatorELb0ENS6_9ObSEArrayIPSM_Ll1ESN_Lb0EEELb0EEE
_ZN9oceanbase6common10ObObjParam5resetEv
_ZNK9oceanbase3sql18ObBasicSessionInfo25get_compatibility_controlERNS_5share12ObCompatTypeE
_ZN9oceanbase3sql17ObPhysicalPlanCtx22init_datum_param_storeEv
_ZN9oceanbase3sql17ObPhysicalPlanCtx18extend_param_frameEl
_ZN9oceanbase6common7ObDatum17get_reserved_sizeENS0_17ObObjDatumMapTypeEs
_ZN9oceanbase3sql10ObSQLUtils23check_enable_decimalintEPKNS0_16ObSQLSessionInfoERb
_ZZN9oceanbase3sql17ObPhysicalPlanCtx18extend_param_frameElENK5$_358clEPKc
_ZNK9oceanbase3sql16ObPlanCacheValue23get_outline_param_indexERNS0_13ObExecContextERl
_ZN9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEELb0EE9push_backERKS2_
_ZN9oceanbase3sql15ObResolverUtils14resolver_paramERNS0_14ObPlanCacheCtxERNS0_16ObSQLSessionInfoERKNS_6common9Ob2DArrayINS6_10ObObjParamELi2079744ENS6_18ObWrapperAllocatorELb0ENS6_9ObSEArrayIPS8_Ll1ES9_Lb0EEELb0EEENS0_4stmt8StmtTypeENS6_13ObCharsetTypeERKNS6_8ObBitSetILl256ENS6_19ModulePageAllocatorELb0EEESN_SN_PKNS0_9ObPCParamElRS8_Rbb
_ZN9oceanbase3sql16ObPlanCacheValue27check_value_version_for_getEPNS_5share6schema19ObSchemaGetterGuardEbRKNS_6common8ObIArrayINS0_12PCVSchemaObjEEEmRb
_ZN9oceanbase3sql15ObResolverUtils22handle_varchar_charsetENS_6common13ObCharsetTypeERNS2_12ObIAllocatorERP10_ParseNode
_ZN9oceanbase6common9Ob2DArrayINS0_10ObObjParamELi2079744ENS0_18ObWrapperAllocatorELb0ENS0_9ObSEArrayIPS2_Ll1ES3_Lb0EEELb0EE7reserveEl
_ZN9oceanbase3sql17ObPhysicalPlanCtx19reserve_param_frameEl
_ZNK9oceanbase8observer9ObMPQuery11record_statENS_3sql4stmt8StmtTypeEl
_ZN9oceanbase6common17ObSessionDIBuffer14switch_sessionEmb
_ZN9oceanbase6common11ObArrayImplINS0_15ObWarningBuffer11WarningItemENS0_19ModulePageAllocatorELb0ENS0_22ObArrayDefaultCallBackIS3_EENS0_22NotImplementItemEncodeIS3_EEE7destroyEv
_ZN9oceanbase6common13ObSEArrayImplIPNS_3sql12ObIDASTaskOpELl8ENS0_19ModulePageAllocatorELb0EE7destroyEv
_ZN9oceanbase6common16ObDISessionCache8get_nodeEmRPNS0_18ObDISessionCollectE
_ZN9oceanbase3sql21ObSqlParameterization11fast_parserERNS_6common12ObIAllocatorERKNS0_9FPContextERKNS2_8ObStringERNS0_18ObFastParserResultE
_ZN9oceanbase6common9ObCharset20charset_type_by_collENS0_15ObCollationTypeE
_ZN9oceanbase3sql8ObParser10is_pl_stmtERKNS_6common8ObStringEPbS6_
_ZN9oceanbase3sql12ObFastParser5parseERKNS_6common8ObStringERKNS0_9FPContextERNS2_12ObIAllocatorERPcRlRP10_ParamListSD_RNS0_18ObFastParserResultESD_
_ZN9oceanbase3sql16ObFastParserBase5parseERKNS_6common8ObStringERPcRlRP10_ParamListS8_S8_
_ZN9oceanbase3sql17ObFastParserMysql16parse_next_tokenEv
_ZN9oceanbase3sql17ObFastParserMysql18process_identifierEb
_ZN9oceanbase3sql16ObFastParserBase19is_identifier_flagsEl
_ZN9oceanbase3sql16ObFastParserBase25process_insert_or_replaceEPKcl
_ZN9oceanbase3sql16ObFastParserBase14process_numberEb
ob_strntoull
_ZN9oceanbase3sql16ObFastParserBase13parse_integerEP10_ParseNode
_Z17ob_strntoull_8bitPK13ObCharsetInfoPKcmiPPcPi
_ZN9oceanbase3sql17ObFastParserMysql14process_stringEc
_ZN9oceanbase3sql16ObFastParserBase12process_hintEv
_ZN9oceanbase3sql18ObBasicSessionInfo20set_session_in_retryENS0_20ObSessionRetryStatusE
_ZN9oceanbase3sql10ObUDRUtils20cons_udr_param_storeERKNS_6common9ObSEArrayINS0_16DynamicParamInfoELl8ENS2_19ModulePageAllocatorELb0EEERNS0_14ObPlanCacheCtxERNS2_9Ob2DArrayINS2_10ObObjParamELi2079744ENS2_18ObWrapperAllocatorELb0ENS3_IPSC_Ll1ESD_Lb0EEELb0EEE
_ZN9oceanbase3sql16ObSQLSessionInfo19get_request_managerEv
_ZN9oceanbase5share6schema19ObSchemaGetterGuard20get_tenant_read_onlyEmRb
_ZN9oceanbase3sql16ObPrivilegeCheck15check_read_onlyERKNS0_8ObSqlCtxENS0_4stmt8StmtTypeEbRKNS_5share6schema15ObStmtNeedPrivsE
_ZN9oceanbase3sql18ObBasicSessionInfo20update_timezone_infoEv
_ZN9oceanbase5trace7ObTrace7set_tagIjJEEEv9ObTagTypeRKT_
_ZN9oceanbase8observer16ObSyncPlanDriver15response_resultERNS0_16ObMySQLResultSetE
_ZThn56_N9oceanbase8observer8ObMPBase15response_packetERNS_7obmysql13ObMySQLPacketEPNS_3sql16ObSQLSessionInfoE
_ZN9oceanbase8observer13ObQueryDriver21response_query_resultERNS_3sql11ObResultSetEbbRbl
_ZN9oceanbase6common23ObReserveArenaAllocatorILl256EE5resetEv
_ZN9oceanbase6common7ObSMRowC1ENS_7obmysql19MYSQL_PROTOCOL_TYPEERKNS0_8ObNewRowERKNS0_20ObDataTypeCastParamsEPKNS0_8ObIArrayINS0_7ObFieldEEEPNS_5share6schema19ObSchemaGetterGuardEm
_ZN9oceanbase6common7ObSMRowC2ENS_7obmysql19MYSQL_PROTOCOL_TYPEERKNS0_8ObNewRowERKNS0_20ObDataTypeCastParamsEPKNS0_8ObIArrayINS0_7ObFieldEEEPNS_5share6schema19ObSchemaGetterGuardEm
_ZN9oceanbase8observer16ObMPPacketSender15response_packetERNS_7obmysql13ObMySQLPacketEPNS_3sql16ObSQLSessionInfoE
_ZN9oceanbase6common20ObDiagnoseTenantInfo11update_statEsl
_ZN9oceanbase6common20ObDiagnoseTenantInfo23get_local_diagnose_infoEv
_ZN9oceanbase7obmysql23ObPocSqlRequestOperator15get_sql_sessionEPNS_3rpc9ObRequestE
_ZN9oceanbase3sql16ObSessInfoVerify17sess_veri_controlERNS_7obmysql13ObMySQLPacketERPNS0_16ObSQLSessionInfoE
_ZN9oceanbase6common7ObDITlsINS0_17ObSessionDIBufferELm0EE12get_instanceEv
_ZN9oceanbase6common13ObSEArrayImplIPNS_7obmysql12Obp20EncoderELl4ENS0_19ModulePageAllocatorELb0EE7destroyEv
_ZN9oceanbase8observer16ObMPPacketSender11alloc_ezbufEv
_ZN9oceanbase7obmysql7OMPKRowC1ERKNS0_10ObMySQLRowE
_ZN9oceanbase7obmysql7OMPKRowC2ERKNS0_10ObMySQLRowE
_ZN9oceanbase8observer13ObQueryDriver28convert_string_value_charsetERNS_6common5ObObjERNS_3sql11ObResultSetE
_ZN9oceanbase6common9ObCharset21get_default_collationENS0_13ObCharsetTypeE
_ZNK9oceanbase3sql18ObBasicSessionInfo29get_ncharacter_set_connectionERNS_6common13ObCharsetTypeE
_ZNK9oceanbase3sql18ObBasicSessionInfo25get_character_set_resultsERNS_6common13ObCharsetTypeE
_ZN9oceanbase6common9ObCharset11get_charsetENS0_15ObCollationTypeE
_ZN9oceanbase6common9ObCharset18is_valid_collationEl
_ZNK9oceanbase3sql18ObBasicSessionInfo19get_charset_sys_varENS_5share17ObSysVarClassTypeERNS_6common13ObCharsetTypeE
_ZNK9oceanbase5share13ObBasicSysVar18is_inc_value_emptyEv
_ZNK9oceanbase5share13ObBasicSysVar9get_valueEv
_ZNK9oceanbase3sql18ObBasicSessionInfo17inner_get_sys_varENS_5share17ObSysVarClassTypeERlRPNS2_13ObBasicSysVarE
_ZN9oceanbase5share15ObSysVarFactory22calc_sys_var_store_idxENS0_17ObSysVarClassTypeERl
_ZN9oceanbase6common13ObSEArrayImplINS_7obmysql10ObCommonKVINS0_5ObObjES4_EELl4ENS0_19ModulePageAllocatorELb0EE7destroyEv
_ZN9oceanbase3sql11ObResultSet12get_next_rowERPKNS_6common8ObNewRowE
_ZN9oceanbase3sql10ObSQLUtils16is_pl_nested_sqlEPNS0_13ObExecContextE
_ZN9oceanbase3sql15ObExecuteResult12get_next_rowERNS0_13ObExecContextERPKNS_6common8ObNewRowE
_ZN9oceanbase6common8ObNewRow8get_cellEl
_ZN9oceanbase8observer16ObMPPacketSender15try_encode_withERNS_7obmysql13ObMySQLPacketElRll
_ZN9oceanbase7obmysql7OMPKRow21get_mysql_packet_typeEv
_ZN9oceanbase3rpc20ObSqlRequestOperator15get_sql_sessionEPNS0_9ObRequestE
_ZN9oceanbase7obmysql7OMPKEOF21get_mysql_packet_typeEv
_ZN9oceanbase7obmysql9OMPKField21get_mysql_packet_typeEv
_ZN9oceanbase7obmysql13OMPKResheader21get_mysql_packet_typeEv
_ZN9oceanbase7obmysql6OMPKOK21get_mysql_packet_typeEv
_ZN9oceanbase7obmysql14ObProto20Utils16do_packet_encodeERNS0_18ObProtoEncodeParamE
_ZNK9oceanbase7obmysql7OMPKRow9serializeEPclRl
_ZNK9oceanbase7obmysql13ObMySQLPacket6encodeEPclRlS3_
_ZNK9oceanbase7obmysql7OMPKEOF18get_serialize_sizeEv
_ZN9oceanbase7obmysql11ObMySQLUtil10store_int3EPcliRl
_ZNK9oceanbase7obmysql10ObMySQLRow9serializeEPclRl
_ZNK9oceanbase6common7ObSMRow11encode_cellElPclRlS2_
_ZNK9oceanbase6common7ObSMRow13get_cells_cntEv
_ZNK9oceanbase7obmysql9OMPKField9serializeEPclRl
_ZN9oceanbase3sql14ObBatchRowIter12get_next_rowEv
_ZNK9oceanbase6common7ObDatum6to_objERNS0_5ObObjERKNS0_9ObObjMetaENS0_17ObObjDatumMapTypeE
_ZN9oceanbase3rpc20ObSqlRequestOperator12get_operatorEPKNS0_9ObRequestE
_ZN9oceanbase3sql10ObExecutor5resetEv
_ZN9oceanbase7obmysql23ObPocSqlRequestOperator25alloc_sql_response_bufferEPNS_3rpc9ObRequestEl
_ZN9oceanbase7obmysql11ObMySQLUtil10store_int2EPclsRl
_ZN9oceanbase3sql10ObExecutor5closeERNS0_13ObExecContextE
_ZNK9oceanbase7obmysql7OMPKEOF9serializeEPclRl
_ZN9oceanbase3sql10ObOperator14get_next_batchElRPKNS0_11ObBatchRowsE
_ZN9oceanbase3sql10ObOperator16inner_drain_exchEv
_ZN9oceanbase3sql10ObOperator21convert_vector_formatEv
_ZNK9oceanbase3sql6ObExpr15cast_to_uniformElRNS0_9ObEvalCtxE
_ZZN9oceanbase3sql10ObOperator21convert_vector_formatEvENK5$_209clEPKc
_ZN9oceanbase6common8ObLogger13need_to_printEmmi
_ZN9oceanbase3sql10ObOperator13do_drain_exchEv
_ZN9oceanbase8observer13ObQueryDriver21response_query_headerERNS_3sql11ObResultSetEbbb
_ZN9oceanbase7obmysql7OMPKEOFD1Ev
_ZN9oceanbase7obmysql7OMPKEOFD2Ev
_ZNK9oceanbase3sql18ObBasicSessionInfo31is_server_status_in_transactionEv
_ZN9oceanbase7obmysql7OMPKEOFC1Ev
_ZN9oceanbase7obmysql7OMPKEOFC2Ev
_ZN9oceanbase7obmysql9OMPKFieldC1ERNS0_12ObMySQLFieldE
_ZN9oceanbase7obmysql9OMPKFieldC2ERNS0_12ObMySQLFieldE
_ZN9oceanbase7obmysql13OMPKResheaderC1Ev
_ZN9oceanbase7obmysql13OMPKResheaderC2Ev
_ZNK9oceanbase7obmysql13OMPKResheader9serializeEPclRl
_ZN9oceanbase3sql11ObResultSet16replace_lob_typeERKNS0_16ObSQLSessionInfoERKNS_6common7ObFieldERNS_7obmysql12ObMySQLFieldE
_ZN9oceanbase3sql10ObOperator28try_register_rt_monitor_nodeEl
_ZN9oceanbase8observer16ObMPPacketSender19update_last_pkt_posEv
_ZN9oceanbase3sql13ObTableScanOp20inner_get_next_batchEl
_ZNK9oceanbase3sql14ObDASMergeIter8has_taskEv
_ZNK9oceanbase3sql6ObExpr11eval_vectorERNS0_9ObEvalCtxERKNS0_15ObBitVectorImplImEERKNS0_9EvalBoundE
_ZNK9oceanbase3sql15ObBitVectorImplImE18accumulate_bit_cntERKNS0_9EvalBoundE
_ZN9oceanbase8observer13ObQueryDriver21response_query_headerERKNS_6common8ObIArrayINS2_7ObFieldEEEbbbPNS_3sql11ObResultSetE
_ZN9oceanbase8observer16ObMySQLResultSet14to_mysql_fieldERKNS_6common7ObFieldERNS_7obmysql12ObMySQLFieldE
_ZN9oceanbase6common9ObSMUtils14get_mysql_typeENS0_9ObObjTypeERNS_7obmysql15EMySQLFieldTypeERtRs
_ZN9oceanbase3sql11ObResultSet4openEv
_ZN9oceanbase3sql15ObExecuteResult4openERNS0_13ObExecContextE
_ZNK9oceanbase3lib6Worker10is_timeoutEv
_ZN9oceanbase3sql11ObResultSet11open_resultEv
_ZN9oceanbase6common9ObSMUtils8cell_strEPclRKNS0_5ObObjENS_7obmysql19MYSQL_PROTOCOL_TYPEERllS2_RKNS0_20ObDataTypeCastParamsEPKNS0_7ObFieldEPNS_5share6schema19ObSchemaGetterGuardEm
_ZN9oceanbase7obmysql11ObMySQLUtil16varchar_cell_strEPclRKNS_6common8ObStringEbRl
_ZN9oceanbase7obmysql11ObMySQLUtil12store_lengthEPclmRl
_ZN9oceanbase7obmysql11ObMySQLUtil10store_int1EPclaRl
_ZN9oceanbase11transaction8ObTxDesc20in_tx_for_free_routeEv
_ZN9oceanbase6common12ObLatchMutex6unlockEv
_ZN9oceanbase6common12ObLatchMutex4lockEjl
_ZN9oceanbase11transaction8ObTxDesc21in_tx_for_free_route_Ev
_ZN9oceanbase3sql13ObTableScanOp28inner_get_next_batch_for_tscEl
_ZN9oceanbase3sql14ObDASMergeIter16set_merge_statusENS0_9MergeTypeE
_ZN9oceanbase3sql13ObTableScanOp28prepare_pushdown_limit_paramEv
_ZNK9oceanbase3sql11ObResultSet19has_implicit_cursorEv
_ZN9oceanbase3sql11ObResultSet7executeEv
_ZN9oceanbase3sql18ObBasicSessionInfo16set_cur_phy_planEPNS0_14ObPhysicalPlanE
_ZN9oceanbase3sql13ObExecContext12init_expr_opEmPNS_6common12ObIAllocatorE
_ZNK9oceanbase3sql15ObExprFrameInfo21pre_alloc_exec_memoryERNS0_13ObExecContextEPNS_6common12ObIAllocatorE
_ZNK9oceanbase3sql15ObExprFrameInfo11alloc_frameERNS_6common12ObIAllocatorERKNS2_8ObIArrayIPcEERmRPS6_
_ZN9oceanbase3sql10ObExecutor4initEPNS0_14ObPhysicalPlanE
_ZN9oceanbase3sql10ObExecutor12execute_planERNS0_13ObExecContextE
_ZN9oceanbase3sql13ObExecContext13get_allocatorEv
_ZNK9oceanbase3sql8ObOpSpec15create_operatorERNS0_13ObExecContextERPNS0_10ObOperatorE
_ZNK9oceanbase3sql8ObOpSpec36link_sql_plan_monitor_node_recursiveERNS0_13ObExecContextERPNS0_13ObMonitorNodeE
_ZNK9oceanbase3sql8ObOpSpec25create_operator_recursiveERNS0_13ObExecContextERPNS0_10ObOperatorE
_ZN9oceanbase6common23get_reserved_stack_sizeEv
_ZN9oceanbase3sql13ObMonitorNode19add_rt_monitor_nodeEPS1_
_ZN9oceanbase3sql13AllocOpHelperILi3EE5allocERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputElRPNS0_10ObOperatorE
_ZN9oceanbase3sql13ObTableScanOpC1ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE
_ZN9oceanbase3sql13ObTableScanOpC2ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE
_ZN9oceanbase3sql10ObOperatorC2ERNS0_13ObExecContextERKNS0_8ObOpSpecEPNS0_9ObOpInputE
_ZN9oceanbase3sql9ObEvalCtxC1ERNS0_13ObExecContextEPNS_6common12ObIAllocatorE
_ZN9oceanbase3sql9ObEvalCtxC2ERNS0_13ObExecContextEPNS_6common12ObIAllocatorE
_ZN9oceanbase3sql16AllocInputHelperILi3EE5allocERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecERPNS0_9ObOpInputE
_ZN9oceanbase3sql18ObTableScanOpInputC1ERNS0_13ObExecContextERKNS0_8ObOpSpecE
_ZN9oceanbase3sql18ObTableScanOpInputC2ERNS0_13ObExecContextERKNS0_8ObOpSpecE
_ZN9oceanbase3sql13ObExecContext35try_reset_convert_charset_allocatorEv
_ZN9oceanbase3sql11ObResultSet14set_mysql_infoEv
_ZNK9oceanbase7obmysql12ObMySQLField15serialize_pro41EPclRl
_ZN9oceanbase7obmysql11ObMySQLUtil11store_str_vEPclPKcmRl
_ZN9oceanbase3sql13ObTableScanOp23get_next_batch_with_dasERll
_ZN9oceanbase3sql9ObDASIter13get_next_rowsERll
_ZN9oceanbase3sql14ObDASMergeIter19inner_get_next_rowsERll
_ZN9oceanbase3sql14ObDASMergeIter17get_next_seq_rowsERll
_ZN9oceanbase3sql11ObDASScanOp9get_rtdefEv
_ZN9oceanbase7storage19ObTableScanIterator13get_next_rowsERll
_ZN9oceanbase7storage23init_expr_vector_headerERNS_3sql6ObExprERNS1_9ObEvalCtxElNS_6common12VectorFormatE
_ZN9oceanbase7storage15ObMultipleMerge13get_next_rowsERll
_ZN9oceanbase7storage15ObLobDataReader5reuseEv
_ZN9oceanbase7storage15ObMultipleMerge20get_next_normal_rowsERll
_ZNK9oceanbase7storage15ObTableReadInfo23get_group_idx_col_indexEv
_ZN9oceanbase7storage19ObMultipleScanMerge14can_batch_scanERb
_ZNK9oceanbase7storage19ObSSTableRowScannerINS0_30ObIndexTreeMultiPassPrefetcherILi32ELi3EEEE14can_batch_scanEv
_ZNK9oceanbase7storage19ObSSTableRowScannerINS0_30ObIndexTreeMultiPassPrefetcherILi32ELi3EEEE13can_blockscanEv
_ZN9oceanbase7storage13ObVectorStore8fill_rowERNS_12blocksstable10ObDatumRowE
_ZN9oceanbase3sql18ObPushdownOperator9deep_copyEPKNS_6common8ObIArrayIPNS0_6ObExprEEEl
_ZN9oceanbase7storage15ObMultipleMerge16process_fuse_rowEbRNS_12blocksstable10ObDatumRowERPS3_
_ZN9oceanbase7storage15ObMultipleMerge14check_filteredERKNS_12blocksstable10ObDatumRowERb
_ZN9oceanbase7storage19ObMultipleScanMerge18inner_get_next_rowERNS_12blocksstable10ObDatumRowE
_ZN9oceanbase7storage18ObStoreRowIterator12get_next_rowERPKNS_12blocksstable10ObDatumRowE
_ZN9oceanbase7storage18ObSimpleRowsMergerINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpEE8push_topERKS2_
_ZN9oceanbase7storage18ObSimpleRowsMergerINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpEE7rebuildEv
_ZNK9oceanbase7storage18ObStoreRowIterator15is_sstable_iterEv
_ZN9oceanbase7storage18ObSimpleRowsMergerINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpEE3topERPKS2_
_ZN9oceanbase7storage19ObMultipleScanMerge15inner_merge_rowERNS_12blocksstable10ObDatumRowE
_ZNK9oceanbase7storage18ObSimpleRowsMergerINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpEE5emptyEv
_ZNK9oceanbase7storage16ObReadInfoStruct23get_schema_rowkey_countEv
_ZNK9oceanbase7storage18ObSimpleRowsMergerINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpEE18is_unique_championEv
_ZN9oceanbase7storage18ObSimpleRowsMergerINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpEE3popEv
_ZN9oceanbase7storage19ObMultipleScanMerge14supply_consumeEv
_ZN9oceanbase7storage19ObSSTableRowScannerINS0_30ObIndexTreeMultiPassPrefetcherILi32ELi3EEEE18inner_get_next_rowERPKNS_12blocksstable10ObDatumRowE
_ZN9oceanbase6common21ObDiagnoseSessionInfo23get_local_diagnose_infoEv
_ZN9oceanbase6common21ObDiagnoseSessionInfo11update_statEsl
_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE8prefetchEv
_ZN9oceanbase7storage18ObSimpleRowsMergerINS0_24ObScanMergeLoserTreeItemENS0_23ObScanMergeLoserTreeCmpEE4pushERKS2_
_ZN9oceanbase7storage23ObScanMergeLoserTreeCmp3cmpERKNS0_24ObScanMergeLoserTreeItemES4_Rl
_ZN9oceanbase7storage23ObScanMergeLoserTreeCmp14compare_rowkeyERKNS_12blocksstable10ObDatumRowES5_Rl
_ZN9oceanbase12blocksstableL21nonext_nonext_compareERKNS0_14ObStorageDatumES3_RKNS_6common9ObCmpFuncERi
_ZNK9oceanbase12blocksstable13ObDatumRowkey7compareERKS1_RKNS0_19ObStorageDatumUtilsERib
_ZN9oceanbase6common20ObNullSafeDatumTCCmpILNS0_14ObObjTypeClassE1ELS2_1ELb1EE3cmpERKNS0_7ObDatumES6_Ri
_ZN9oceanbase7storage9ObRowFuse8fuse_rowERKNS_12blocksstable10ObDatumRowERS3_RNS0_8ObNopPosERbPNS_6common12ObIAllocatorE
_ZN9oceanbase7storage19ObMultipleScanMerge17prepare_blockscanERNS0_18ObStoreRowIteratorE
_ZN9oceanbase7storage19ObSSTableRowScannerINS0_30ObIndexTreeMultiPassPrefetcherILi32ELi3EEEE25refresh_blockscan_checkerERKNS_12blocksstable13ObDatumRowkeyE
_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE25refresh_blockscan_checkerElRKNS_12blocksstable13ObDatumRowkeyE
_ZN9oceanbase8memtable23ObIMemtableScanIterator12get_next_rowERPKNS_12blocksstable10ObDatumRowE
_ZN9oceanbase5share3SCN7max_scnEv
_ZZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE25refresh_blockscan_checkerElRKNS_12blocksstable13ObDatumRowkeyEENKUlPKcE5_clES8_
_ZN9oceanbase6common8ObLogger13need_to_printEmi
_ZN9oceanbase7storage15ObMultipleMerge22fill_group_idx_if_needERNS_12blocksstable10ObDatumRowE
_ZN9oceanbase7storage20ObRow2ExprsProjector7projectERKNS_6common8ObIArrayIPNS_3sql6ObExprEEEPKNS_12blocksstable14ObStorageDatumEPsRl
_ZN9oceanbase7storage19ObSSTableRowScannerINS0_30ObIndexTreeMultiPassPrefetcherILi32ELi3EEEE9fetch_rowERNS0_19ObSSTableReadHandleERPKNS_12blocksstable10ObDatumRowE
_ZN9oceanbase12blocksstable23ObIMicroBlockRowScanner12get_next_rowERPKNS0_10ObDatumRowE
_ZN9oceanbase12blocksstable23ObIMicroBlockRowScanner18inner_get_next_rowERPKNS0_10ObDatumRowE
_ZNK9oceanbase12blocksstable13ObFixRowIndex3getElRPKcRl
_ZN9oceanbase12blocksstable19ObMicroBlockDecoder7get_rowElRNS0_10ObDatumRowE
_ZN9oceanbase12blocksstable19ObMicroBlockDecoder12decode_cellsEmlPKcllPNS0_14ObStorageDatumE
_ZN9oceanbase6common16ObArenaAllocator5allocEl
_ZNK9oceanbase12blocksstable19ObStringDiffDecoder6decodeERKNS0_18ObColumnDecoderCtxERNS_6common7ObDatumElRKNS0_11ObBitStreamEPKcl
_ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14_alloc_alignedEll
_ZNK9oceanbase12blocksstable24ObIntegerBaseDiffDecoder6decodeERKNS0_18ObColumnDecoderCtxERNS_6common7ObDatumElRKNS0_11ObBitStreamEPKcl
_ZN9oceanbase6common7ObDatum22get_obj_datum_map_typeENS0_9ObObjTypeE
_ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE16free_large_pagesEv
_ZN9oceanbase12blocksstable10ObDatumRow7reserveElb
_ZNK9oceanbase12blocksstable12ObRawDecoder6decodeERKNS0_18ObColumnDecoderCtxERNS_6common7ObDatumElRKNS0_11ObBitStreamEPKcl
_ZN9oceanbase19concurrency_control22build_trans_stat_datumEPKNS_7storage16ObTableIterParamERKNS_12blocksstable10ObDatumRowENS0_14ObTransStatRowE
_ZNK9oceanbase7storage16ObTableIterParam15need_trans_infoEv
_ZNK9oceanbase7storage13ObSingleMerge18collect_merge_statERNS0_16ObTableStoreStatE
_ZN9oceanbase7storage20ObTableAccessContext20inc_micro_access_cntEv
_ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE14alloc_new_pageEl
_ZNK9oceanbase7storage12ObTabletStat8is_validEv
_ZN9oceanbase3sql18ObPushdownOperator20clear_evaluated_flagEv
_ZN9oceanbase8memtable22ObMemtableScanIterator18inner_get_next_rowERPKNS_12blocksstable10ObDatumRowE
_ZNK9oceanbase5share3SCN11atomic_loadEv
_ZNK9oceanbase5share3SCN6is_maxEv
_ZN9oceanbase8memtable19ObMvccValueIterator18get_trans_stat_rowERNS_19concurrency_control14ObTransStatRowE
_ZN9oceanbase5share3SCNaSERKS1_
_ZN9oceanbase8memtable9ObReadRow11iterate_rowERKNS_7storage16ObITableReadInfoERKNS_6common13ObStoreRowkeyERNS6_12ObIAllocatorERNS0_19ObMvccValueIteratorERNS_12blocksstable10ObDatumRowERNS0_11ObNopBitMapERl
_ZNK9oceanbase7storage15ObTableReadInfo17get_request_countEv
_ZNK9oceanbase7storage16ObReadInfoStruct26get_memtable_columns_indexEv
_ZNK9oceanbase5share3SCN14get_val_for_txEb
_ZN9oceanbase12blocksstable11ObRowReader5resetEv
_ZN9oceanbase12blocksstable11ObRowReader17read_memtable_rowEPKclRKNS_7storage16ObITableReadInfoERNS0_10ObDatumRowERNS_8memtable11ObNopBitMapERb
_ZN9oceanbase7storage16return_array_idxEjjlRKNS0_19ObFixedMetaObjArrayIiEE
_ZN9oceanbase12blocksstable21ObClusterColumnReader18read_storage_datumElRNS0_14ObStorageDatumE
_ZN9oceanbase12blocksstableL12get_offset_8EPKvl
_ZN9oceanbase12blocksstable21ObClusterColumnReader10read_datumElRNS0_14ObStorageDatumE
_ZN9oceanbase6common7ObDatum8from_objERKNS0_5ObObjE
_ZN9oceanbase8memtable17ObMvccRowIterator12get_next_rowERPKNS0_13ObMemtableKeyERPNS0_19ObMvccValueIteratorERNS_7storage19ObStoreRowLockStateE
_ZN9oceanbase8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorINS0_20ObStoreRowkeyWrapperEPNS0_9ObMvccRowEEEE4nextEv
_ZN9oceanbase8memtable19ObMvccValueIterator4initERNS0_15ObMvccAccessCtxEPKNS0_13ObMemtableKeyEPNS0_9ObMvccRowENS_5share6ObLSIDERKNS_6common11ObQueryFlagE
_ZN9oceanbase8memtable19ObMvccValueIterator14lock_for_read_ERKNS_6common11ObQueryFlagE
_ZN9oceanbase6common14ObServerConfig12get_instanceEv
_ZN9oceanbase7storage29return_array_idx_for_memtableEjjlRKNS0_19ObFixedMetaObjArrayIiEE
_ZN9oceanbase12blocksstable11ObRowReader9setup_rowEPKcl
_ZN9oceanbase12blocksstable11ObRowReaderC1Ev
_ZN9oceanbase12blocksstable11ObRowReaderC2Ev
_ZN9oceanbase12blocksstable21ObClusterColumnReader4initEPKcmmRKNS0_20ObColClusterInfoMaskE
_ZN9oceanbase12blocksstable21ObClusterColumnReader20read_column_from_bufEllNS0_11ObRowHeader11SPECIAL_VALERNS0_14ObStorageDatumE
_ZN9oceanbase8memtable19ObMvccValueIterator13get_next_nodeERPKv
_ZN9oceanbase3sql18ObPushdownOperator22write_trans_info_datumERNS_12blocksstable10ObDatumRowE
_ZN9oceanbase8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorINS0_20ObStoreRowkeyWrapperEPNS0_9ObMvccRowEEEE13next_internalEv
_ZN9oceanbase8keybtree13BtreeIteratorINS_8memtable20ObStoreRowkeyWrapperEPNS2_9ObMvccRowEE8get_nextERS3_RS5_
_ZN9oceanbase8keybtree13BtreeIteratorINS_8memtable20ObStoreRowkeyWrapperEPNS2_9ObMvccRowEE10scan_batchEv
_ZN9oceanbase8keybtree8IteratorINS_8memtable20ObStoreRowkeyWrapperEPNS2_9ObMvccRowEE8get_nextERS3_RS5_
_ZN9oceanbase8keybtree8IteratorINS_8memtable20ObStoreRowkeyWrapperEPNS2_9ObMvccRowEE9iter_nextERS3_RS5_
_ZN9oceanbase8keybtree10ScanHandleINS_8memtable20ObStoreRowkeyWrapperEPNS2_9ObMvccRowEE3getERS3_RS5_bRPS3_
_ZN9oceanbase8keybtree10ScanHandleINS_8memtable20ObStoreRowkeyWrapperEPNS2_9ObMvccRowEE12scan_forwardEv
_ZN9oceanbase8keybtree8IteratorINS_8memtable20ObStoreRowkeyWrapperEPNS2_9ObMvccRowEE4compERS3_PS3_Ri
_ZNK9oceanbase7storage19ObMultipleScanMerge18collect_merge_statERNS0_16ObTableStoreStatE
_ZNK9oceanbase8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorINS0_20ObStoreRowkeyWrapperEPNS0_9ObMvccRowEEEE9get_valueEv
_ZN9oceanbase12blocksstable23ObIMicroBlockRowScanner5reuseEv
_ZN9oceanbase6common11ObAllocator5allocElRKNS_3lib9ObMemAttrE
_ZN9oceanbase7storage15ObMultipleMerge22get_next_aggregate_rowERPNS_12blocksstable10ObDatumRowE
_ZN9oceanbase3sql18ObPushdownOperator21clear_datum_eval_flagEv
_ZN9oceanbase7storage17ObAggregatedStore8fill_rowERNS_12blocksstable10ObDatumRowE
_ZN9oceanbase7storage12ObSumAggCell4evalERNS_12blocksstable14ObStorageDatumEl
_ZN9oceanbase7storage12ObSumAggCell8eval_intINS_6common4wide13ObWideIntegerILj128EiEEEEiRKNS3_7ObDatumEi
_ZN9oceanbase7storage15ObMultipleMerge23refresh_table_on_demandEv
_ZNK9oceanbase3sql6ObExpr11init_vectorERNS0_9ObEvalCtxENS_6common12VectorFormatElb
_ZNK9oceanbase12blocksstable22ObIndexBlockRowScanner12end_of_blockEv
_ZNK9oceanbase8memtable13ObQueryEngine8IteratorINS_8keybtree13BtreeIteratorINS0_20ObStoreRowkeyWrapperEPNS0_9ObMvccRowEEEE7get_keyEv
_ZN9oceanbase8memtable22ObMemtableScanIterator12prepare_scanEv
_ZN9oceanbase8memtable19ObMvccValueIterator20lock_for_read_inner_ERKNS_6common11ObQueryFlagERPNS0_15ObMvccTransNodeE
_ZN9oceanbase7storage15ObMultipleMerge12get_next_rowERPNS_12blocksstable10ObDatumRowE
_ZN9oceanbase7storage21ObTabletTableIterator10table_iterEv
_ZNK9oceanbase7storage16ObReadInfoStruct17get_columns_indexEv
_ZNK9oceanbase7storage16ObTableIterParam21enable_fuse_row_cacheERKNS_6common11ObQueryFlagE
_ZNK9oceanbase7storage8ObITable13is_co_sstableEv
_ZN9oceanbase7storage13ObSingleMerge18inner_get_next_rowERNS_12blocksstable10ObDatumRowE
_ZNK9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl8ENS0_19ModulePageAllocatorELb0EE2atElRS4_
_ZN9oceanbase12blocksstable19ObFuseRowCacheValueC1Ev
_ZN9oceanbase12blocksstable19ObFuseRowCacheValueC2Ev
_ZN9oceanbase7storage15ObMultipleMerge11project_rowERKNS_12blocksstable10ObDatumRowEPKNS_6common8ObIArrayIiEElRS3_
_ZNK9oceanbase7storage21ObMicroBlockHandleMgr16reach_hold_limitEv
_ZN9oceanbase7storage13ObSingleMerge13get_table_rowElRKNS_6common8ObIArrayIPNS0_8ObITableEEERNS_12blocksstable10ObDatumRowERbSC_
_ZNK9oceanbase7storage8ObITable30is_multi_version_minor_sstableEv
_ZN9oceanbase8memtable19ObIMemtableIterator12get_next_rowERPKNS_12blocksstable10ObDatumRowE
_ZN9oceanbase8memtable21ObMemtableGetIterator4initERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextEPNS2_8ObITableEPKv
_ZNK9oceanbase7storage16ObRowkeyReadInfo17get_request_countEv
_ZN9oceanbase8memtable21ObMemtableGetIterator4initERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERNS2_11ObIMemtableE
_ZN9oceanbase12blocksstable10ObDatumRow4initERNS_6common12ObIAllocatorElPc
_ZN9oceanbase8memtable10ObMemtable3getERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS_12blocksstable13ObDatumRowkeyERPNS2_18ObStoreRowIteratorE
_ZN9oceanbase7storage9ObAggCell20fill_default_if_needERNS_12blocksstable14ObStorageDatumE
_ZN9oceanbase6common11ObAllocator4initEv
_ZNK9oceanbase7storage9ObAggCell16need_access_dataEv
_ZN9oceanbase3lib20ObTenantCtxAllocator14common_reallocINS0_9ObjectSetEEEPvPKvlRKNS0_9ObMemAttrERS1_RT_
_ZN9oceanbase3lib20ObTenantCtxAllocator8on_allocERNS0_7AObjectERKNS0_9ObMemAttrE
_ZN9oceanbase6common15light_backtraceEPPvi
_ZN9oceanbase8observer23ObProcessMallocCallbackclERKNS_3lib9ObMemAttrEl
_ZNK9oceanbase3lib7ObLabeleqERKS1_
_ZN9oceanbase6common9EventItem14get_event_codeEv
_ZN9oceanbase6common20get_mem_leak_checkerEv
_ZN9oceanbase3lib9ObjectSet12alloc_objectEmRKNS0_9ObMemAttrE
_ZN9oceanbase3lib9ObjectSet11alloc_blockEmRKNS0_9ObMemAttrE
_ZN9oceanbase6common13ObPageManager11alloc_blockEmRKNS_3lib9ObMemAttrE
_ZN9oceanbase3lib8BlockSet11alloc_blockEmRKNS0_9ObMemAttrE
_ZN9oceanbase3lib8BlockSet14get_free_blockEiRKNS0_9ObMemAttrE
_ZNK9oceanbase3lib7ABitSet22find_first_significantEi
_ZN9oceanbase3lib8BlockSet14add_free_blockEPNS0_6ABlockEiPNS0_6AChunkE
_ZN9oceanbase3lib9ObjectSet19alloc_normal_objectEjRKNS0_9ObMemAttrE
_ZN9oceanbase3lib12SubObjectMgr11alloc_blockEmRKNS0_9ObMemAttrE
_ZN9oceanbase6common11ObAllocatorUt_11alloc_blockEmRKNS_3lib9ObMemAttrE
_ZN9oceanbase3lib9SetLockerINS0_7ObMutexEE7trylockEv
_ZN9oceanbase3lib8BlockSet9add_chunkERKNS0_9ObMemAttrE
_ZN9oceanbase3lib8BlockSet11alloc_chunkEmRKNS0_9ObMemAttrE
_ZN9oceanbase3lib20ObTenantCtxAllocator11ReqChunkMgr11alloc_chunkEmRKNS0_9ObMemAttrE
_ZN9oceanbase6common12ObLatchMutex8try_lockEjPKj
_ZN9oceanbase7storage18ObStoreRowIterator4initERKNS0_16ObTableIterParamERNS0_20ObTableAccessContextEPNS0_8ObITableEPKv
_ZNK9oceanbase7storage8ObITable10is_sstableEv
_ZN9oceanbase6common19ModulePageAllocator5allocElRKNS_3lib9ObMemAttrE
_ZN9oceanbase7storage13ObSingleMerge22get_and_fuse_cache_rowEllRNS_12blocksstable10ObDatumRowERbS5_S5_
_ZNK9oceanbase7storage16ObReadInfoStruct15get_datum_utilsEv
_ZN9oceanbase12blocksstable10ObDatumRowC1Em
_ZN9oceanbase12blocksstable10ObDatumRowC2Em
_ZN9oceanbase12blocksstable10ObDatumRowD1Ev
_ZN9oceanbase12blocksstable10ObDatumRowD2Ev
_ZN9oceanbase7storage21ObFuseRowCacheFetcher18get_fuse_row_cacheERKNS_12blocksstable13ObDatumRowkeyERNS2_20ObFuseRowValueHandleE
_ZN9oceanbase12blocksstable14ObFuseRowCache7get_rowERKNS0_17ObFuseRowCacheKeyERNS0_20ObFuseRowValueHandleE
_ZN9oceanbase12blocksstable17ObFuseRowCacheKeyC1EmRKNS_6common10ObTabletIDERKNS0_13ObDatumRowkeyEllRKNS0_19ObStorageDatumUtilsE
_ZN9oceanbase12blocksstable17ObFuseRowCacheKeyC2EmRKNS_6common10ObTabletIDERKNS0_13ObDatumRowkeyEllRKNS0_19ObStorageDatumUtilsE
_ZN9oceanbase6common9ObKVCacheINS_12blocksstable17ObFuseRowCacheKeyENS2_19ObFuseRowCacheValueEE3getERKS3_RPKS4_RNS0_15ObKVCacheHandleE
_ZN9oceanbase8memtable17ObMvccRowIterator5resetEv
_ZN9oceanbase3sql14ObDASMergeIter15reset_datum_ptrEPNS0_11ObDASScanOpERl
_ZN9oceanbase8memtable13ObMemtableKey5buildINS_6common12ObIAllocatorEEEiRPS1_RKNS3_8ObIArrayINS_5share6schema9ObColDescEEEPKNS3_13ObStoreRowkeyERT_
_ZNK9oceanbase8memtable13ObMemtableKey16dup_without_hashINS_6common12ObIAllocatorEEEiRPS1_RT_
_ZNK9oceanbase6common8ObRowkey9deep_copyINS0_12ObIAllocatorEEEiRS1_RT_
_ZN9oceanbase6common5ObObj9deep_copyERKS1_PclRl
_ZN9oceanbase8memtable21ObMemtableGetIterator18inner_get_next_rowERPKNS_12blocksstable10ObDatumRowE
_ZNK9oceanbase7storage16ObReadInfoStruct16get_columns_descEv
_ZN9oceanbase8memtable10ObMemtable3getERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS_12blocksstable13ObDatumRowkeyERNS8_10ObDatumRowE
_ZN9oceanbase8memtable13ObMemtableKey6encodeERKNS_6common8ObIArrayINS_5share6schema9ObColDescEEEPKNS2_13ObStoreRowkeyE
_ZN9oceanbase8memtable12ObMvccEngine3getERNS0_15ObMvccAccessCtxERKNS_6common11ObQueryFlagEPKNS0_13ObMemtableKeyENS_5share6ObLSIDEPS8_RNS0_19ObMvccValueIteratorERNS_7storage19ObStoreRowLockStateE
_ZN9oceanbase8memtable13ObQueryEngine3getEPKNS0_13ObMemtableKeyERPNS0_9ObMvccRowEPS2_
_ZN9oceanbase8memtable8ObMtHash6do_getEPKNS0_20ObStoreRowkeyWrapperERPNS0_9ObMvccRowERS4_
_ZN9oceanbase6common17ObjHashCalculatorILNS0_9ObObjTypeE4ENS0_13ObDefaultHashENS0_5ObObjEE15calc_hash_valueERKS4_mRm
_ZNK9oceanbase6common8ObRowkey10murmurhashEm
_ZN9oceanbase8memtable8ObMtHash15get_bucket_nodeElmRPNS0_10ObHashNodeERNS1_9GenealogyE
_ZN9oceanbase6common16ObMemLeakChecker8on_allocERNS_3lib7AObjectERKNS2_9ObMemAttrE
_ZN9oceanbase3lib9ObjectMgr11alloc_blockEmRKNS0_9ObMemAttrE
_ZN9oceanbase3sql13ObExecContext12reset_op_envEv
_ZN9oceanbase7obmysql11ObMySQLUtil10store_int4EPcliRl
_ZN9oceanbase12blocksstable23ObIMicroBlockRowScanner9set_rangeERKNS0_12ObDatumRangeE
_ZNK9oceanbase3sql8ObOpSpec35create_exec_feedback_node_recursiveERNS0_13ObExecContextE
_ZN9oceanbase3sql13ObExecContext11init_phy_opEm
_ZN9oceanbase3sql11ObResultSet10start_stmtEv
_ZNK9oceanbase5share3SCN8is_validEv
_ZN9oceanbase3sql17ObSqlTransControl10start_stmtERNS0_13ObExecContextE
_ZN9oceanbase11transaction14ObTxExecResult5resetEv
_ZN9oceanbase5share17is_primary_tenantENS0_12ObTenantRole4RoleE
_ZNK9oceanbase3sql18ObBasicSessionInfo16get_tx_isolationEv
_ZN9oceanbase6common13ObSEArrayImplINS_5share6ObLSIDELl3ENS0_19ModulePageAllocatorELb0EE7destroyEv
_ZN9oceanbase3sqlL14get_tx_serviceEPNS0_18ObBasicSessionInfoERPNS_11transaction14ObTransServiceE
_ZN9oceanbase6common13ObSEArrayImplINS_11transaction8ObTxPartELl4ENS0_19ModulePageAllocatorELb0EE7destroyEv
_ZN9oceanbase11transaction11ObTxELRUtil28check_and_update_tx_elr_infoERNS0_8ObTxDescE
_ZN9oceanbase11transaction16ObTransStatistic26add_elr_enable_trans_countEml
_ZNK9oceanbase11transaction16ObTxReadSnapshot25format_source_for_displayEPcl
_ZN9oceanbase6common14role_to_stringERKNS0_6ObRoleE
_ZN9oceanbase3sql18ObBasicSessionInfo14set_start_stmtEv
_ZN9oceanbase3sql17ObSqlTransControl20stmt_setup_snapshot_EPNS0_16ObSQLSessionInfoERNS0_8ObDASCtxEPKNS0_14ObPhysicalPlanEPKNS0_17ObPhysicalPlanCtxEPNS_11transaction14ObTransServiceE
_ZN9oceanbase6common13ObSEArrayImplINS_11transaction6ObPairINS_5share6ObLSIDElEELl1ENS0_19ModulePageAllocatorELb0EE7destroyEv
_ZZN9oceanbase8memtable10ObMemtable3getERKNS_7storage16ObTableIterParamERNS2_20ObTableAccessContextERKNS_12blocksstable13ObDatumRowkeyERPNS2_18ObStoreRowIteratorEENK5$_129clEPKc
_ZNK9oceanbase8memtable20ObStoreRowkeyWrapper5equalERKS1_Rb
_ZN9oceanbase11transaction11ObTxELRUtil26refresh_elr_tenant_config_Ev
_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE23check_data_infos_borderEllRKNS_12blocksstable13ObDatumRowkeyEb
_ZN9oceanbase3sql13ObTableScanOp22do_init_before_get_rowEv
_ZN9oceanbase3sql13ObTableScanOp21prepare_all_das_tasksEv
_ZN9oceanbase3sql10ObSQLUtils23extract_pre_query_rangeERKNS0_12ObQueryRangeERNS_6common12ObIAllocatorERNS0_13ObExecContextERNS5_9ObSEArrayIPNS5_10ObNewRangeELl1ENS5_19ModulePageAllocatorELb0EEERKNS5_20ObDataTypeCastParamsE
_ZNK9oceanbase3sql12ObQueryRange20get_ss_tablet_rangesERNS_6common12ObIAllocatorERNS0_13ObExecContextERNS2_9ObSEArrayIPNS2_10ObNewRangeELl1ENS2_19ModulePageAllocatorELb0EEERKNS2_20ObDataTypeCastParamsE
_ZN9oceanbase3sql13ObTableScanOp28single_equal_scan_check_typeERKNS_6common9Ob2DArrayINS2_10ObObjParamELi2079744ENS2_18ObWrapperAllocatorELb0ENS2_9ObSEArrayIPS4_Ll1ES5_Lb0EEELb0EEERb
_ZNK9oceanbase3sql12ObQueryRange17get_tablet_rangesERNS_6common12ObIAllocatorERNS0_13ObExecContextERNS2_9ObSEArrayIPNS2_10ObNewRangeELl1ENS2_19ModulePageAllocatorELb0EEERbRKNS2_20ObDataTypeCastParamsE
_ZN9oceanbase3sql10ObSQLUtils24is_same_type_for_compareERKNS_6common9ObObjMetaES5_
_ZN9oceanbase3sql14ObDASMergeIter13do_table_scanEv
_ZN9oceanbase3sql13ObTableScanOp21GroupRescanParamGuardD2Ev
_ZN9oceanbase3sql8ObDASRef16execute_all_taskEv
_ZN9oceanbase3sql12ObIDASTaskOp14start_das_taskEv
_ZN9oceanbase3lib11ObLockGuardINS_6common12ObThreadCondEED2Ev
_ZN9oceanbase3sql19ObDataAccessService16execute_das_taskERNS0_8ObDASRefERNS0_20ObDasAggregatedTasksEb
_ZN9oceanbase3sql20ObDasAggregatedTasks20get_aggregated_tasksERNS_6common9ObSEArrayIPNS0_12ObIDASTaskOpELl2ENS2_19ModulePageAllocatorELb0EEE
_ZN9oceanbase3sql8ObDASRef24move_local_tasks_to_lastEv
_ZN9oceanbase3sql8ObDASRef24process_remote_task_respEv
_ZN9oceanbase3sql8ObDASRef20wait_executing_tasksEv
_ZN9oceanbase3sql12ObIDASTaskOp13state_advanceEv
_ZN9oceanbase3sql20ObDasAggregatedTasks21move_to_success_tasksEPNS0_12ObIDASTaskOpE
_ZN9oceanbase3sql11ObDASScanOp7open_opEv
_ZN9oceanbase6common13ObSEArrayImplINS_11transaction6ObPairINS_5share6ObLSIDElEELl1ENS0_19ModulePageAllocatorELb0EE5reuseEv
_ZN9oceanbase3sql11ObDASScanOp23reset_access_datums_ptrEl
_ZN9oceanbase3sql11ObDASScanOp13do_table_scanEv
_ZNK9oceanbase7storage16ObTableScanParam8is_validEv
_ZN9oceanbase3sql11ObDASScanOp15init_scan_paramEv
_ZN9oceanbase6common13ObSEArrayImplImLl4ENS0_19ModulePageAllocatorELb0EE5reuseEv
_ZN9oceanbase11transaction12ObTxSnapshotaSERKS1_
_ZN9oceanbase6common13ObSEArrayImplImLl4ENS0_19ModulePageAllocatorELb0EE6assignERKNS0_8ObIArrayImEE
_ZN9oceanbase7storage15ObAccessService10table_scanERNS_6common17ObVTableScanParamERPNS2_16ObNewRowIteratorE
_ZN9oceanbase7storage14ObTabletHandleD1Ev
_ZN9oceanbase7storage14ObTabletHandleD2Ev
_ZN9oceanbase7storage14ObTabletHandle5resetEv
_ZN9oceanbase7storage14ObTabletHandleC1EPKciS3_
_ZN9oceanbase7storage14ObTabletHandleC2EPKciS3_
_ZN9oceanbase7storage18ObTenantMetaMemMgr20register_into_tb_mapEPKciS3_Ri
_ZN9oceanbase7storage15ObAccessService36construct_store_ctx_other_variables_ERNS0_4ObLSERKNS_6common10ObTabletIDElRKNS_5share3SCNERNS0_14ObTabletHandleERNS0_15ObStoreCtxGuardE
_ZNK9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE7get_objEv
_ZN9oceanbase7storage31ObTabletCreateDeleteMdsUserDataC1Ev
_ZN9oceanbase7storage31ObTabletCreateDeleteMdsUserDataC2Ev
_ZN9oceanbase7storage14ObTabletMapKeyC1ERKNS_5share6ObLSIDERKNS_6common10ObTabletIDE
_ZN9oceanbase7storage14ObTabletMapKeyC2ERKNS_5share6ObLSIDERKNS_6common10ObTabletIDE
_ZN9oceanbase7storage17ObLSTabletService23get_tablet_with_timeoutERKNS_6common10ObTabletIDERNS0_14ObTabletHandleElNS0_18ObMDSGetTabletModeERKNS_5share3SCNE
_ZN9oceanbase7storage14ObTabletMapKeyD1Ev
_ZN9oceanbase7storage14ObTabletMapKeyD2Ev
_ZN9oceanbase7storage26ObTabletCreateDeleteHelper20check_and_get_tabletERKNS0_14ObTabletMapKeyERNS0_14ObTabletHandleElNS0_18ObMDSGetTabletModeEl
_ZN9oceanbase7storage18ObTenantMetaMemMgr10get_tabletERKNS0_18WashTabletPriorityERKNS0_14ObTabletMapKeyERNS0_14ObTabletHandleE
_ZN9oceanbase7storage18ObTabletPointerMap12get_meta_objERKNS0_14ObTabletMapKeyERNS0_14ObMetaObjGuardINS0_8ObTabletEEE
_ZN9oceanbase7storage18ObTabletPointerMap26try_get_in_memory_meta_objERKNS0_14ObTabletMapKeyERNS0_21ObTabletPointerHandleERNS0_14ObMetaObjGuardINS0_8ObTabletEEERb
_ZN9oceanbase7storage20ObResourceValueStoreINS0_15ObTabletPointerEE11inc_ref_cntEv
_ZN9oceanbase7storage13ObResourceMapINS0_14ObTabletMapKeyENS0_15ObTabletPointerEE16get_without_lockERKS2_RNS0_16ObResourceHandleIS3_EE
_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
_ZN9oceanbase6common12ObBucketLock6unlockEm
_ZN9oceanbase6common7ObLatch6unlockEPKj
_ZN9oceanbase7storage13ObResourceMapINS0_14ObTabletMapKeyENS0_15ObTabletPointerEE14dec_handle_refEPNS0_20ObResourceValueStoreIS3_EE
_ZN9oceanbase7storage20ObResourceValueStoreINS0_15ObTabletPointerEE11dec_ref_cntERl
_ZN9oceanbase6common18ObServerObjectPoolINS_7storage19ObTableScanIteratorEE13borrow_objectEv
_ZN9oceanbase6common12ObBucketLock6rdlockEml
_ZN9oceanbase6common7ObLatch6rdlockEjl
_ZN9oceanbase7storage26ObTabletCreateDeleteHelper10get_tabletERKNS0_14ObTabletMapKeyERNS0_14ObTabletHandleEl
_ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE7get_objEv
_ZN9oceanbase7storage17ObLSTabletService10table_scanERNS0_14ObTabletHandleERNS0_19ObTableScanIteratorERNS0_16ObTableScanParamE
_ZNK9oceanbase5share3SCN6is_minEv
_ZN9oceanbase7storage17ObLSTabletService16inner_table_scanERNS0_14ObTabletHandleERNS0_19ObTableScanIteratorERNS0_16ObTableScanParamE
_ZN9oceanbase7storage19ObTableScanIterator19prepare_table_paramERKNS0_14ObTabletHandleE
_ZNK9oceanbase7storage15ObTableReadInfo20has_all_column_groupEv
_ZNK9oceanbase7storage16ObReadInfoStruct23get_schema_column_countEv
_ZNK9oceanbase7storage16ObTableScanRange19get_query_iter_typeERNS0_12ObQRIterTypeE
_ZN9oceanbase7storage19ObTableScanIterator4initERNS0_16ObTableScanParamERKNS0_14ObTabletHandleE
_ZN9oceanbase6common14ObVersionRangeC1Ev
_ZN9oceanbase6common14ObVersionRangeC2Ev
_ZN9oceanbase7storage21ObTabletTableIterator17set_tablet_handleERKNS0_14ObTabletHandleE
_ZN9oceanbase7storage19ObTableScanIterator9open_iterEv
_ZN9oceanbase7storage19ObTableScanIterator21prepare_table_contextEv
_ZN9oceanbase7storage20ObTableAccessContext4initERNS0_16ObTableScanParamERNS0_10ObStoreCtxERKNS_6common14ObVersionRangeEPNS0_18CachedIteratorNodeE
_ZN9oceanbase12blocksstable19ObStorageCacheSuite12get_instanceEv
_ZN9oceanbase7storage21ObMicroBlockHandleMgr4initEbRNS0_16ObTableStoreStatERNS_6common11ObQueryFlagE
_ZN9oceanbase7storage19ObTableScanIterator29init_and_open_get_merge_iter_Ev
_ZN9oceanbase7storage21ObFuseRowCacheFetcher4initERKNS_6common10ObTabletIDEPKNS0_16ObITableReadInfoEl
_ZN9oceanbase6common15ObFIFOAllocator4initEPNS0_12ObIAllocatorElRKNS_3lib9ObMemAttrElll
_ZN9oceanbase7storage16ObTableScanRange4initERNS0_16ObTableScanParamE
_ZN9oceanbase7storage18ObTableAccessParam4initERKNS0_16ObTableScanParamERKNS0_14ObTabletHandleE
_ZN9oceanbase7storage16ObTableScanRange12init_rowkeysERKNS_6common8ObIArrayINS2_10ObNewRangeEEERKNS2_11ObQueryFlagEPKNS_12blocksstable19ObStorageDatumUtilsE
_ZN9oceanbase7storage16ObTableScanRange12always_falseERKNS_6common10ObNewRangeERb
_ZN9oceanbase12blocksstable13ObDatumRowkey11from_rowkeyERKNS_6common8ObRowkeyERNS2_12ObIAllocatorE
_ZN9oceanbase7storage19ObTableScanIterator24prepare_cached_iter_nodeEv
_ZNK9oceanbase7storage21ObTabletTableIterator10table_iterEv
_ZNK9oceanbase7storage19ObTableScanIterator24can_use_global_iter_poolENS0_12ObQRIterTypeE
_ZN9oceanbase7storage13ObSingleMerge4openERKNS_12blocksstable13ObDatumRowkeyE
_ZN9oceanbase7storage15ObMultipleMerge4openEv
_ZN9oceanbase7storage8ObNopPos4initERNS_6common12ObIAllocatorEl
_ZN9oceanbase7storage15ObMultipleMerge5reuseEv
_ZN9oceanbase7storage15ObBlockRowStore5reuseEv
_ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE9reset_objEv
_ZN9oceanbase7storage14ObTabletHandleaSERKS1_
_ZNK9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEE8is_validEv
_ZN9oceanbase7storage14ObMetaObjGuardINS0_8ObTabletEEaSERKS3_
pthread_mutex_lock
_ZNK9oceanbase3sql12ObQueryRange24direct_get_tablet_rangesERNS_6common12ObIAllocatorERNS0_13ObExecContextERNS2_9ObSEArrayIPNS2_10ObNewRangeELl1ENS2_19ModulePageAllocatorELb0EEERbRKNS2_20ObDataTypeCastParamsE
_ZZNK9oceanbase3sql12ObQueryRange24direct_get_tablet_rangesERNS_6common12ObIAllocatorERNS0_13ObExecContextERNS2_9ObSEArrayIPNS2_10ObNewRangeELl1ENS2_19ModulePageAllocatorELb0EEERbRKNS2_20ObDataTypeCastParamsEENK6$_1506clEPKc
_ZN9oceanbase7storage20ObTableAccessContext24build_lob_locator_helperERNS0_16ObTableScanParamERKNS0_10ObStoreCtxERKNS_6common14ObVersionRangeE
_ZN9oceanbase7storage18ObTenantMetaMemMgr23dec_ref_in_leak_checkerEi
_ZN9oceanbase6common4hash11ObHashTableINS_7storage14ObTabletMapKeyENS1_11HashMapPairIS4_PNS3_20ObResourceValueStoreINS3_15ObTabletPointerEEEEENS1_9hash_funcIS4_EENS1_8equal_toIS4_EENS1_10pair_firstISA_EENS1_13SimpleAllocerINS1_15ObHashTableNodeISA_EELi97ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_19NoPthreadDefendModeENS1_13NormalPointerENS0_8ObMallocELl1EE32internal_get_with_timeout_unsafeERNS1_17ObHashTableBucketISA_NS1_5NLockENS1_5NCondEEERKS4_RPKSA_l
_ZZN9oceanbase7storage15ObAccessService19check_read_allowed_ERKNS_5share6ObLSIDERKNS_6common10ObTabletIDENS0_17ObStoreAccessTypeERKNS0_16ObTableScanParamERNS0_14ObTabletHandleERNS0_15ObStoreCtxGuardENS2_3SCNEENK4$_56clEPKc
_ZN9oceanbase7storage8ObTablet24check_new_mds_with_cacheEll
_ZNK9oceanbase7storage8ObTablet14is_empty_shellEv
_ZN9oceanbase7storage26ObTabletCreateDeleteHelper37check_read_snapshot_by_commit_versionERNS0_8ObTabletElllRKNS0_14ObTabletStatusE
_ZN9oceanbase3sql13ObTableScanOp25prepare_single_scan_rangeEl
_ZN9oceanbase7storage19ObTableScanIterator14init_scan_iterINS0_13ObSingleMergeEEEiRPT_
_ZN9oceanbase7storage15ObMultipleMerge12switch_tableERNS0_18ObTableAccessParamERNS0_20ObTableAccessContextERNS0_15ObGetTableParamE
_ZN9oceanbase7storage20ObRow2ExprsProjector4initERKNS_6common8ObIArrayIPNS_3sql6ObExprEEERNS4_18ObPushdownOperatorERKNS3_IiEE
_ZN9oceanbase6common13ObSEArrayImplIPNS_7storage8ObITableELl8ENS0_19ModulePageAllocatorELb0EE7destroyEv
_ZN9oceanbase7storage15ObMultipleMerge19prepare_read_tablesEb
_ZNK9oceanbase7storage16ObReadInfoStruct8is_validEv
_ZN9oceanbase7storage24return_schema_rowkey_cntEjRKNS0_19ObFixedMetaObjArrayIiEE
_ZNK9oceanbase7storage8ObITable15no_data_to_readEv
_ZNK9oceanbase12blocksstable9ObSSTable15no_data_to_readEv
_ZNK9oceanbase12blocksstable9ObSSTable8is_emptyEv
_ZN9oceanbase7storage20ObTableStoreIterator6resumeEv
_ZN9oceanbase7storage21ObTabletTableIterator31refresh_read_tables_from_tabletElbb
_ZN9oceanbase7storage8ObTablet15get_read_tablesElRNS0_21ObTabletTableIteratorEb
_ZNK9oceanbase7storage20ObTabletTransferInfo18has_transfer_tableEv
_ZNK9oceanbase7storage12ObTabletMeta18has_transfer_tableEv
_ZN9oceanbase7storage8ObTablet20auto_get_read_tablesElRNS0_21ObTabletTableIteratorEb
_ZN9oceanbase7storage20ObTableStoreIterator5resetEv
_ZN9oceanbase7storage19ObStorageMetaHandle5resetEv
_ZN9oceanbase6common13ObSEArrayImplINS_7storage19ObStorageMetaHandleELl4ENS0_19ModulePageAllocatorELb0EE7destroyEv
_ZN9oceanbase6common13ObSEArrayImplINS_7storage20ObTableStoreIterator8TablePtrELl16ENS0_19ModulePageAllocatorELb0EE7destroyEv
_ZN9oceanbase7storage15ObMultipleMerge28prepare_tables_from_iteratorERNS0_20ObTableStoreIteratorEPKNS_6common10SampleInfoE
_ZN9oceanbase7storage20ObTableStoreIterator8get_nextERPNS0_8ObITableE
_ZNK9oceanbase8memtable10ObMemtable8is_emptyEv
_ZN9oceanbase7storage20ObTableStoreIterator13get_ith_tableElRPNS0_8ObITableE
_ZN9oceanbase7storage8ObTablet16get_read_tables_ElRNS0_20ObTableStoreIteratorERNS0_19ObStorageMetaHandleEb
_ZNK9oceanbase7storage18ObTabletTableStore15get_read_tablesElRKNS0_8ObTabletERNS0_20ObTableStoreIteratorEb
_ZNK9oceanbase7storage8ObITable20get_snapshot_versionEv
_ZNK9oceanbase7storage8ObITable16is_major_sstableEv
_ZNK9oceanbase5share3SCNgeERKS1_
_ZNK9oceanbase7storage18ObTabletTableStore21calculate_read_tablesElRKNS0_8ObTabletERNS0_20ObTableStoreIteratorEb
_ZNK9oceanbase7storage8ObITable11is_memtableEv
_ZNK9oceanbase12blocksstable9ObSSTable23get_upper_trans_versionEv
_ZNK9oceanbase7storage18ObTabletTableStore24calculate_read_memtablesERKNS0_8ObTabletERNS0_20ObTableStoreIteratorE
_ZN9oceanbase5share3SCN7min_scnEv
_ZNK9oceanbase7storage8ObITable11get_end_scnEv
_ZNK9oceanbase5share3SCNeqERKS1_
_ZN9oceanbase7storage20ObTableStoreIterator10add_tablesERKNS0_15ObMemtableArrayEl
_ZN9oceanbase7storage20ObTableStoreIterator9add_tableEPNS0_8ObITableE
_ZNK9oceanbase7storage15ObMemtableArray4findERKNS_5share3SCNElRPNS0_8ObITableERl
_ZNK9oceanbase3sql12ObQueryRange27get_result_value_with_rowidERKNS0_9ObKeyPartERNS_6common5ObObjERNS0_13ObExecContextERbPNS5_12ObIAllocatorE
_ZNK9oceanbase3sql12ObQueryRange16get_result_valueERNS_6common5ObObjERNS0_13ObExecContextEPNS2_12ObIAllocatorE
_ZN9oceanbase7storage20ObTableAccessContext15alloc_iter_poolEb
_ZN9oceanbase7storage13ObVectorStore14reuse_capacityEl
_ZN9oceanbase3sql8ObSortOp20sort_impl_next_batchEl
_ZN9oceanbase3sql17ObSqlTransControl18stmt_sanity_check_EPNS0_16ObSQLSessionInfoEPKNS0_14ObPhysicalPlanEPNS0_17ObPhysicalPlanCtxE
_ZN9oceanbase6common18ObBucketRLockGuardD2Ev
_ZN9oceanbase3sql16ObFastParserBase13is_hint_beginEl
_ZN9oceanbase12blocksstable20ObStorageDatumBuffer7reserveElb
_ZN9oceanbase7storage15ObMultipleMerge15alloc_row_storeERNS0_20ObTableAccessContextERKNS0_18ObTableAccessParamE
_ZNK9oceanbase7storage15ObTableReadInfo11get_columnsEv
_ZN9oceanbase3sql20ObSecurityAuditUtils21handle_security_auditERNS0_11ObResultSetEPNS_5share6schema19ObSchemaGetterGuardEPKNS0_6ObStmtERKNS_6common8ObStringEi
_ZN9oceanbase6common17ObSessionDIBuffer13reset_sessionEv
_ZN9oceanbase3sql11ObResultSet8do_closeEPi
_ZN9oceanbase3sql18ObBasicSessionInfo26reset_cur_phy_plan_to_nullEv
_ZN9oceanbase3sql15ObExecuteResult5closeERNS0_13ObExecContextE
_ZN9oceanbase3sql10ObOperator5closeEv
_ZNK9oceanbase3sql8ObOpSpec10is_receiveEv
_ZN9oceanbase3sql8ObDASCtx16is_partition_hitEv
_ZN9oceanbase3sql18ObBasicSessionInfo33reset_tx_variable_if_remote_transERKNS0_13ObPhyPlanTypeE
_ZN9oceanbase3sql10ObOperator22submit_op_monitor_nodeEv
_ZN9oceanbase3sql13ObTableScanOp11inner_closeEv
_ZN9oceanbase3sql9ObDASIter5reuseEv
_ZN9oceanbase3sql14ObDASMergeIter11inner_reuseEv
_ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql12ObIDASTaskOpEEEED2Ev
_ZN9oceanbase6common11ObDLinkBaseINS0_9ObObjNodeIPNS_3sql20ObDasAggregatedTasksEEEED2Ev
_ZN9oceanbase3sql8ObDASRef14close_all_taskEv
_ZN9oceanbase3sql13ObTableScanOp26fill_sql_plan_monitor_infoEv
_ZN9oceanbase3sql8ObDASRef5reuseEv
_ZN9oceanbase3sql16ObDASTaskFactory7cleanupEv
_ZN9oceanbase11transaction16ObTxReadSnapshotD1Ev
_ZN9oceanbase11transaction16ObTxReadSnapshotD2Ev
_ZN9oceanbase6common13ObSEArrayImplINS_11transaction6ObPairINS_5share6ObLSIDElEELl1ENS0_19ModulePageAllocatorELb0EED2Ev
_ZN9oceanbase3sql12ObIDASTaskOpD2Ev
_ZN9oceanbase3sql13ObTableScanOp26fill_storage_feedback_infoEv
_ZN9oceanbase3sql14ObDASMergeIter15begin_task_iterEv
_ZN9oceanbase3sql10ObOperator22setup_op_feedback_infoEv
_ZN9oceanbase3sql11ObDASScanOp10release_opEv
_ZN9oceanbase7storage19ObTableScanIterator27check_ls_offline_after_readEv
_ZN9oceanbase3sql11ObDASScanOpD1Ev
_ZN9oceanbase3sql11ObDASScanOpD2Ev
_ZN9oceanbase6common13ObSEArrayImplINS0_10ObNewRangeELl4ENS0_19ModulePageAllocatorELb0EE7destroyEv
_ZN9oceanbase6common17ObVTableScanParamD2Ev
_ZN9oceanbase7storage15ObTxTableGuards16check_ls_offlineEv
_ZN9oceanbase3sql10ObInsRtDefD2Ev
_ZN9oceanbase3sql10ObOperator30try_deregister_rt_monitor_nodeEv
_ZN9oceanbase3sql11ObResultSet8end_stmtEb
_ZN9oceanbase3sql18ObBasicSessionInfo12set_end_stmtEv
_ZN9oceanbase6common9PageArenaIcNS0_19ModulePageAllocatorEE20free_remain_one_pageEv
_ZN9oceanbase6common17ObVTableScanParam7destroyEv
_ZN9oceanbase3sql17ObSqlTransControl8end_stmtERNS0_13ObExecContextEb
_ZN9oceanbase3sql16ObPlanCacheValue5matchERNS0_14ObPlanCacheCtxERKNS_6common8ObIArrayINS0_12PCVSchemaObjEEERb
_ZN9oceanbase3sql16ObPlanCacheValue24check_tpl_sql_const_consERKNS0_18ObFastParserResultERKNS_6common9ObSEArrayINS6_INS0_12NotParamInfoELl4ENS5_19ModulePageAllocatorELb0EEELl4ES8_Lb0EEERb
_ZN9oceanbase6common16ObTotalWaitGuardC1EPNS0_15ObWaitEventStatEPNS0_21ObDiagnoseSessionInfoE
_ZN9oceanbase6common16ObTotalWaitGuardC2EPNS0_15ObWaitEventStatEPNS0_21ObDiagnoseSessionInfoE
_ZN9oceanbase7storage17ObAggregatedStore7set_endEv
_ZN9oceanbase3sql13ObPxAdmission20exit_query_admissionERNS0_16ObSQLSessionInfoERNS0_13ObExecContextENS0_4stmt8StmtTypeERNS0_14ObPhysicalPlanE
_ZN9oceanbase5trace7ObTrace7set_tagIPKcJEEEv9ObTagTypeRKT_
_ZN9oceanbase7storage18ObSSTableRowGetter18inner_get_next_rowERPKNS_12blocksstable10ObDatumRowE
_ZN9oceanbase6common4hash9ObHashSetINS_3sql12ObQueryRange14ObRangeWrapperENS1_19NoPthreadDefendModeENS1_9hash_funcIS5_EENS1_8equal_toIS5_EENS1_13SimpleAllocerINS1_15ObHashTableNodeINS1_11HashMapPairIS5_NS1_11HashNullObjEEEEELi108ENS1_19SpinMutexDefendModeENS1_29DefaultSimpleAllocerAllocatorEEENS1_13NormalPointerENS0_8ObMallocELl1EED2Ev
_ZN9oceanbase3sql16AllocInputHelperILi25EE5allocERNS_6common12ObIAllocatorERNS0_13ObExecContextERKNS0_8ObOpSpecERPNS0_9ObOpInputE
_ZN9oceanbase3sql11ObResultSet9from_planERKNS0_14ObPhysicalPlanERKNS_6common8ObIArrayIPNS0_9ObPCParamEEE
_ZN9oceanbase7storage30ObIndexTreeMultiPassPrefetcherILi32ELi3EE19prefetch_index_treeEv
_ZN9oceanbase3sql18ObPushdownOperator22reset_trans_info_datumEv
_ZN9oceanbase3sql5ObSql14after_get_planERNS0_14ObPlanCacheCtxERNS0_16ObSQLSessionInfoEPNS0_14ObPhysicalPlanEbPKNS_6common9Ob2DArrayINS8_10ObObjParamELi2079744ENS8_18ObWrapperAllocatorELb0ENS8_9ObSEArrayIPSA_Ll1ESB_Lb0EEELb0EEEm
_ZN9oceanbase3sql13ObExecContext22init_physical_plan_ctxERKNS0_14ObPhysicalPlanE
_ZN9oceanbase3sql8ObDASCtx4initERKNS0_14ObPhysicalPlanERNS0_13ObExecContextE
_ZN9oceanbase3sql17ObPhysicalPlanCtx26set_all_local_session_varsERNS_6common8ObIArrayINS_5share6schema17ObLocalSessionVarEEE