实例介绍
阿里出品 oceanbase 0.4 part 3
【实例截图】
【核心代码】
4744302543300245632.rar
└── OceanBase
├── oceanbase
│ └── tools
│ ├── mysql_stress
│ │ ├── han.cpp
│ │ ├── han.h
│ │ ├── kucun.lua
│ │ ├── Makefile
│ │ ├── mysql_stress.cpp
│ │ └── simple.lua
│ ├── mysqltest
│ │ ├── sql
│ │ │ ├── sp_rcontext.h
│ │ │ ├── sql_acl.h
│ │ │ ├── sql_admin.h
│ │ │ ├── sql_alter.h
│ │ │ ├── sql_analyse.h
│ │ │ ├── sql_array.h
│ │ │ ├── sql_audit.h
│ │ │ ├── sql_base.h
│ │ │ ├── sql_binlog.h
│ │ │ ├── sql_bitmap.h
│ │ │ ├── sql_cache.h
│ │ │ ├── sql_callback.h
│ │ │ ├── sql_class.h
│ │ │ ├── sql_connect.h
│ │ │ ├── sql_const.h
│ │ │ ├── sql_crypt.h
│ │ │ ├── sql_cursor.h
│ │ │ ├── sql_db.h
│ │ │ ├── sql_delete.h
│ │ │ ├── sql_derived.h
│ │ │ ├── sql_do.h
│ │ │ ├── sql_error.h
│ │ │ ├── sql_handler.h
│ │ │ ├── sql_help.h
│ │ │ ├── sql_hset.h
│ │ │ ├── sql_insert.h
│ │ │ ├── sql_lex.h
│ │ │ ├── sql_list.h
│ │ │ ├── sql_load.h
│ │ │ ├── sql_locale.h
│ │ │ ├── sql_manager.h
│ │ │ ├── sql_parse.h
│ │ │ ├── sql_partition_admin.h
│ │ │ ├── sql_partition.h
│ │ │ ├── sql_plist.h
│ │ │ ├── sql_plugin.h
│ │ │ ├── sql_plugin_services.h
│ │ │ ├── sql_prepare.h
│ │ │ ├── sql_priv.h
│ │ │ ├── sql_profile.h
│ │ │ ├── sql_reload.h
│ │ │ ├── sql_rename.h
│ │ │ ├── sql_repl.h
│ │ │ ├── sql_select.h
│ │ │ ├── sql_servers.h
│ │ │ ├── sql_show.h
│ │ │ ├── sql_signal.h
│ │ │ ├── sql_sort.h
│ │ │ ├── sql_string.h
│ │ │ ├── sql_table.h
│ │ │ ├── sql_tablespace.h
│ │ │ ├── sql_test.h
│ │ │ ├── sql_time.h
│ │ │ ├── sql_trigger.h
│ │ │ ├── sql_truncate.h
│ │ │ ├── sql_udf.h
│ │ │ ├── sql_union.h
│ │ │ ├── sql_update.h
│ │ │ ├── sql_view.h
│ │ │ ├── sql_yacc.h
│ │ │ ├── strfunc.h
│ │ │ ├── structs.h
│ │ │ ├── sys_vars.h
│ │ │ ├── sys_vars_shared.h
│ │ │ ├── table.h
│ │ │ ├── thr_malloc.h
│ │ │ ├── transaction.h
│ │ │ ├── tzfile.h
│ │ │ ├── tztime.h
│ │ │ └── unireg.h
│ │ └── strings
│ │ └── t_ctype.h
│ ├── newsqltest
│ │ ├── Makefile.am
│ │ ├── ob_new_sql_test.cpp
│ │ ├── ob_prepare_stmt_test.cpp
│ │ ├── ob_ps_test.cpp
│ │ ├── ob_session_test.cpp
│ │ ├── ob_sql_query.cpp
│ │ └── ob_tablet_join_test.cpp
│ ├── obadmin
│ │ ├── Flymake.mk
│ │ ├── Makefile.am
│ │ ├── obadmin.cpp
│ │ ├── ob_admin_utils.h
│ │ ├── ob_chunk_server_client.cpp
│ │ ├── ob_chunk_server_client.h
│ │ ├── ob_root_server_client.cpp
│ │ ├── ob_root_server_client.h
│ │ ├── ob_server_client.h
│ │ ├── ob_update_server_client.cpp
│ │ └── ob_update_server_client.h
│ ├── ob_authority_manager.cpp
│ ├── ob_authority_manager.h
│ ├── ob_authority_manager_main.cpp
│ ├── ob_cluster_stats.cpp
│ ├── ob_cluster_stats.h
│ ├── ob_data
│ │ ├── base_client.cpp
│ │ ├── base_client.h
│ │ ├── main.cpp
│ │ ├── Makefile.am
│ │ ├── mock_merge_server.conf
│ │ ├── mock_merge_server.cpp
│ │ ├── mock_merge_server.h
│ │ ├── mock_server.cpp
│ │ ├── mock_server.h
│ │ ├── ob_client.cpp
│ │ ├── ob_client.h
│ │ ├── rpc_stub.cpp
│ │ ├── rpc_stub.h
│ │ └── test_merge_server_main.cpp
│ ├── ob_databuilder.cpp
│ ├── ob_databuilder.h
│ ├── obdatacopy
│ │ └── obdatacopy.c
│ ├── ob_disk_path.cpp
│ ├── oberror.cpp
│ ├── ob_merge_meta.cpp
│ ├── ob_server_stats.cpp
│ ├── ob_server_stats.h
│ ├── obsql
│ │ ├── base_client.cpp
│ │ ├── base_client.h
│ │ ├── client_rpc.cpp
│ │ ├── client_rpc.h
│ │ ├── common_func.cpp
│ │ ├── common_func.h
│ │ ├── deletestmt.cpp
│ │ ├── deletestmt.h
│ │ ├── insertstmt.cpp
│ │ ├── insertstmt.h
│ │ ├── Makefile.am
│ │ ├── ob_server_stats.cpp
│ │ ├── ob_server_stats.h
│ │ ├── obsql.cpp
│ │ ├── obsql.h
│ │ ├── rowkey.ini
│ │ ├── schema_printer.cpp
│ │ ├── schema_printer.h
│ │ ├── selectstmt.cpp
│ │ ├── selectstmt.h
│ │ ├── stats.cpp
│ │ ├── stats.h
│ │ ├── stmt.cpp
│ │ ├── stmt.h
│ │ ├── tablet_shower.cpp
│ │ ├── tablet_shower.h
│ │ ├── updatestmt.cpp
│ │ └── updatestmt.h
│ ├── ob_sstable_checker.cpp
│ ├── ob_sstable_checker.h
│ ├── ob_tablet_meta.cpp
│ ├── ob_tablet_meta.h
│ ├── obtest
│ │ ├── client
│ │ │ ├── appserver
│ │ │ ├── log4j.properties
│ │ │ └── query.test
│ │ ├── collect.schema
│ │ ├── conf
│ │ │ ├── configure.ini
│ │ │ ├── log4j.properties
│ │ │ └── supervisord.template
│ │ ├── copy.sh
│ │ ├── deploy
│ │ ├── esy+
│ │ ├── etc
│ │ │ └── configuration.xml
│ │ ├── include
│ │ │ ├── merge.inc
│ │ │ └── migrate.inc
│ │ ├── jar
│ │ │ └── readme
│ │ ├── less.sh
│ │ ├── mytest
│ │ ├── obsqlclient
│ │ │ ├── appserver
│ │ │ ├── appserver.pid
│ │ │ ├── ddl.test
│ │ │ ├── libobsql.tmp
│ │ │ ├── obsqltest
│ │ │ ├── outflow.test
│ │ │ ├── query.test
│ │ │ ├── run.sh
│ │ │ ├── select.test
│ │ │ └── transaction.test
│ │ ├── obtest
│ │ ├── plugins
│ │ │ ├── importserver
│ │ │ │ ├── importserver.template
│ │ │ │ └── importserver.xml
│ │ │ └── proxyserver
│ │ │ ├── proxyserver.template
│ │ │ └── proxyserver.xml
│ │ ├── r
│ │ │ ├── a
│ │ │ │ ├── c1111_p0_new_cluster_junyue.result
│ │ │ │ └── c1244_p0_verify_all_server_all_cluster_yangxiu.result
│ │ │ ├── collect
│ │ │ │ ├── 2050_c1233_p0_query_junyue.result
│ │ │ │ ├── 2052_c1244_p0_query_junyue.result
│ │ │ │ ├── 2054_c1233_p0_data_correct_junyue.result
│ │ │ │ ├── 2056_c1233_p0_new_user_collect_old_item_junyue.result
│ │ │ │ ├── 2057_c1233_p0_new_user_collect_updated_item_junyue.result
│ │ │ │ ├── 2058_c1233_p0_collectinfo_is_null_after_item_delete_junyue.result
│ │ │ │ ├── 2059_c1233_p0_collect_new_item_junyue.result
│ │ │ │ ├── 2060_c1233_p0_delete_collectinfo_junyue.result
│ │ │ │ ├── 2061_c1233_p0_collect_info_change_junyue.result
│ │ │ │ ├── 2062_c1233_p0_item_add_junyue.result
│ │ │ │ ├── 2063_c1233_p0_collectinfo_add_junyue.result
│ │ │ │ ├── 3001_c1233_P0_master_ups_down_yulan.result
│ │ │ │ ├── 3002_c1233_P0_cluster_switch_yulan.result
│ │ │ │ └── a.result
│ │ │ ├── compat
│ │ │ │ ├── 1002_c1244_p0_simulate_online_upgrade_yangxiu.result
│ │ │ │ └── 2080_c1244_p0_simulate_online_upgrade_from_0428_junyue.result
│ │ │ ├── compound
│ │ │ │ ├── 2060_c1211_ups_parallel_trx_2L_compd_mix_junyue.result
│ │ │ │ ├── 2060_c1211_ups_parallel_trx_2L_compd_only_junyue.result
│ │ │ │ ├── 2060_c1211_ups_parallel_trx_junyue.result
│ │ │ │ ├── 2061_c1211_ups_parallel_trx_2L_compd_mix_junyue.result
│ │ │ │ ├── 2062_c1211_ups_parallel_trx_2L_compd_double_junyue.result
│ │ │ │ ├── 2063_c1211_ups_parallel_trx_2L_compd_double_first_conflict_junyue.result
│ │ │ │ ├── 2064_c1211_ups_parallel_trx_2L_async_junyue.result
│ │ │ │ ├── 2065_c1211_ups_parallel_trx_2L_deadlock_junyue.result
│ │ │ │ ├── 2065_c1211_ups_parallel_trx_deadlock_junyue.result
│ │ │ │ ├── 2066_c1211_ups_parallel_trx_3L_compd_only_junyue.result
│ │ │ │ ├── 2067_c1211_ups_parallel_trx_3L_compd_mix_junyue.result
│ │ │ │ ├── 2068_c1211_ups_parallel_trx_3L_deadlock_junyue.result
│ │ │ │ ├── 2069_c1211_ups_parallel_trx_3L_compd_double_junyue.result
│ │ │ │ ├── 2070_c1211_ups_parallel_trx_3L_async_junyue.result
│ │ │ │ ├── 3053_c1211_p0_trx_1.result
│ │ │ │ ├── 3054_c1211_p0_trx_2.result
│ │ │ │ ├── 3055_c1211_p0_trx_3.result
│ │ │ │ ├── 3056_c1211_p0_trx_4.result
│ │ │ │ ├── 3057_c1211_p0_trx_5.result
│ │ │ │ └── 3058_c1211_p0_trx_6.result
│ │ │ ├── cs
│ │ │ │ ├── 1001_c1233_p0_one_cs_down_add_another_cs_yangxiu.result
│ │ │ │ ├── 1003_c1244_p0_merge_some_cs_down_yangxiu.result
│ │ │ │ ├── 1005_c1244_p0_merge_but_ups_is_null_yangxiu.result
│ │ │ │ ├── 1006_c1244_p0_merge_master_ups_down_yangxiu.result
│ │ │ │ ├── 1007_c1233_p0_stop_two_cs_start_merge_start_two_cs_yangxiu.result
│ │ │ │ ├── 1008_c1244_p0_merge_repeat_have_data_yangxiu.result
│ │ │ │ ├── 1009_c1233_p0_copy_when_stop_some_ms_and_master_ups_yangxiu.result
│ │ │ │ ├── 1010_c1233_p0_add_two_cs_cause_migrate_yangxiu.result
│ │ │ │ ├── 1012_c1233_p0_add_one_cs_cause_migrate_stop_one_old_cs_yangxiu.result
│ │ │ │ ├── 1013_c1233_p0_balance_tolerance_count_valid_yangxiu.result
│ │ │ │ ├── 1014_c1233_p0_merge_add_one_cs_yangxiu.result
│ │ │ │ ├── 1015_c1233_p0_cs_offline_forbid_ddl_bug_junyue.result
│ │ │ │ ├── 1015_c1244_p0_merge_add_one_cs_backward_one_version_yangxiu.result
│ │ │ │ ├── 1016_c1244_p0_sstable_split_cs_and_rs_restart_yangxiu.result
│ │ │ │ ├── 1017_c1244_p0_only_read_static_yangxiu.result
│ │ │ │ ├── 1018_c1244_p0_expire_info_error_merge_continue_yangxiu.result
│ │ │ │ ├── 1019_c1244_p0_merge_slave_cluster_add_cs_yangxiu.result
│ │ │ │ ├── 1021_c1222_p1_merge_multitime_cs_disk_cannot_access_yangxiu.result
│ │ │ │ ├── 1022_c1244_p1_migrate_out_disk_cannot_access_yangxiu.result
│ │ │ │ ├── 1023_c1211_p0_delete_not_exist_tablet_bug_yangxiu.result
│ │ │ │ ├── 1026_c1211_p0_kick_off_disk_yangxiu.result
│ │ │ │ ├── 5100_c1133_install_and_uninstall_disk_yiming.result
│ │ │ │ ├── 5101_c1122_uninstall_disk_when_select_yiming.result
│ │ │ │ ├── 5102_c1133_uninstall_disk_when_merge_yiming.result
│ │ │ │ └── 6001_c1233_p3_delete_tablet_select_bug547736_xuanruo.result
│ │ │ ├── ct
│ │ │ │ ├── 1001_c1244_p0_username_passwd_only_in_diamond_yangxiu.result
│ │ │ │ ├── 1002_c1244_p0_stop_diamond_not_affect_sql_yangxiu.result
│ │ │ │ ├── 1003_c1244_p0_stop_diamond_del_local_conf_yangxiu.result
│ │ │ │ ├── 1004_c1244_p0_del_local_conf_not_affect_sql_yangxiu.result
│ │ │ │ ├── 1005_c1244_p0_use_local_jar_first_yangxiu.result
│ │ │ │ ├── 1006_c1244_p0_del_local_jar_not_affect_sql_yangxiu.result
│ │ │ │ ├── 1007_c1244_p0_update_version_yangxiu.result
│ │ │ │ ├── 1008_c1244_p0_enableUpdate_false_not_update_version_yangxiu.result
│ │ │ │ ├── 1009_c1244_p0_update_version_then_degrade_yangxiu.result
│ │ │ │ ├── 1010_c1244_p0_only_whiteList_update_version_yangxiu.result
│ │ │ │ ├── 1011_c1244_percent_0_no_whiteList_not_update_version_yangxiu.result
│ │ │ │ ├── 1012_c1244_p0_percent_null_no_whiteList_all_client_update_yangxiu.result
│ │ │ │ ├── 1013_c1244_p0_update_invaild_in_delay_time_yangxiu.result
│ │ │ │ ├── 1014_c1244_p0_update_version_client_restart_yangxiu.result
│ │ │ │ ├── 1015_c1244_p0_random_load_strategy_yangxiu.result
│ │ │ │ ├── 1016_c1244_p0_poll_load_stratrgy_yangxiu.result
│ │ │ │ ├── 1017_c1244_p0_consistency_load_stratrgy_yangxiu.result
│ │ │ │ ├── 1018_c1244_p0_ddl_to_master_cluster_yangxiu.result
│ │ │ │ ├── 1019_c1244_p0_ps_consistency_load_stratrgy_yangxiu.result
│ │ │ │ ├── 1020_c1244_p0_ps_random_load_strategy_yangxiu.result
│ │ │ │ ├── 1021_c1244_p0_ps_poll_load_stratrgy_yangxiu.result
│ │ │ │ ├── 1022_c1244_p0_all_ms_not_fms_down_yangxiu.result
│ │ │ │ ├── 1023_c1244_p0_only_fms_stop_yangxiu.result
│ │ │ │ ├── 1024_c1244_p0_all_ms_include_fms_down_yangxiu.result
│ │ │ │ ├── 1025_c1244_p0_master_cluster_ms_down_yangxiu.result
│ │ │ │ ├── 1026_c1244_p0_wrong_sql_yangxiu.result
│ │ │ │ ├── 1027_c1244_p0_stop_diamond_create_client_yangxiu.result
│ │ │ │ ├── 1028_c1244_p0_multi_client_one_ms_down_yangxiu.result
│ │ │ │ ├── 1029_c1244_p0_client_read_consistency_weak_yangxiu.result
│ │ │ │ ├── 1030_c1244_p0_read_cluster_yangxiu.result
│ │ │ │ ├── 1031_c1244_p0_ob_read_consistency_weak_yangxiu.result
│ │ │ │ ├── 1032_c1244_p0_ob_read_consistency_strong_yangxiu.result
│ │ │ │ ├── 1033_c1244_p0_one_cluster_weak_read_consistency_yangxiu.result
│ │ │ │ ├── 1034_c1244_p0_add_ms_yangxiu.result
│ │ │ │ ├── 1035_c1244_p0_restart_cs_client_no_error_yangxiu.result
│ │ │ │ ├── 1036_c1244_p0_maxActive_yangxiu.result
│ │ │ │ ├── 1037_c1211_p0_initialSize_yangxiu.result
│ │ │ │ ├── 1038_c1222_p0_ds_multi_instance_yangxiu.result
│ │ │ │ ├── 2060_c1111_p0_use_new_user_in_api_junyue.result
│ │ │ │ ├── 2061_c1111_p0_use_new_user_in_config_url_junyue.result
│ │ │ │ ├── 2091_c1111_p0_encode_gbk_junyue.result
│ │ │ │ ├── 2092_c1111_p0_encode_junyue.result
│ │ │ │ ├── 2093_p0_ds_leak_session_after_switch_cluster_junyue.result
│ │ │ │ ├── 2098_c1222_p0_lms_session_junyue.result
│ │ │ │ ├── 3001_c1244_p0_cluster_flow_1v0_consistency_weak_yulan.result
│ │ │ │ ├── 3002_c1244_p0_cluster_flow_0v1_consistency_weak_yulan.result
│ │ │ │ ├── 3003_c1244_p0_cluster_flow_1v1_consistency_weak_yulan.result
│ │ │ │ ├── 3004_c1244_p0_ups_flow_1v1_consistency_weak_yulan.result
│ │ │ │ ├── 3005_c1244_p0_ups_flow_1v0_consistency_weak_yulan.result
│ │ │ │ ├── 3006_c1244_p0_ups_flow_0v1_consistency_weak_yulan.result
│ │ │ │ ├── 3007_c1244_p0_cluster_switch_cluster_flow_1v0_consistency_weak_yulan.result
│ │ │ │ ├── 3008_c1244_p0_cluster_switch_cluster_flow_0v1_consistency_weak_yulan.result
│ │ │ │ ├── 3009_c1244_select_for_update_cluster_flow_1v1_consistency_weak_yulan.result
│ │ │ │ ├── 3010_c1244_select_for_update_cluster_flow_0v1_consistency_weak_yulan.result
│ │ │ │ ├── 3013_c1244_hint_strong_cluster_flow_1v1_consistency_weak_yulan.result
│ │ │ │ ├── 3014_c1244_hint_strong_cluster_flow_0v1_consistency_weak_yulan.result
│ │ │ │ ├── 3015_c1244_p0_master_ups_restart_ups_flow_1v0_cluster_flow_1v0_consistency_weak_yulan.result
│ │ │ │ ├── 3016_c1244_p0_alter_ddl_cluster_flow_1v1_consistency_weak_yulan.result
│ │ │ │ ├── 3017_c1244_p0_hint_cluster_1v0_to_0v1_consistency_weak_yulan.result
│ │ │ │ ├── 3018_c1244_p0_hint_cluster_0v1_to_1v0_consistency_weak_yulan.result
│ │ │ │ ├── 3019_c1244_hint_slave_cluster_flow_1v1_consistency_weak_yulan.result
│ │ │ │ ├── 3020_c1244_hint_master_cluster_flow_1v1_consistency_weak_yulan.result
│ │ │ │ ├── 3021_c1244_p0_cluster_flow_1v0_restart_slave_cluster_consistency_weak_yulan.result
│ │ │ │ ├── 3022_c1244_p0_cluster_flow_0v1_restart_master_cluster_consistency_weak_yulan.result
│ │ │ │ ├── 3039_c1244_p0_hint_frozen_flow_1v1_consistency_weak_yulan.result
│ │ │ │ ├── 3041_c1244_p0_hint_frozen_flow_1v0_consistency_weak_yulan.result
│ │ │ │ ├── 3049_c1244_po_select_when_consistency_weak_yulan.result
│ │ │ │ ├── 5000_c1133_p0_one_ms_killed_start_ct_yiming.result
│ │ │ │ ├── 7001_1244_p0_consistency_strong_cluster_1v1_lianye.result
│ │ │ │ ├── 7002_1244_p0_consistency_strong_cluster_1v0_lianye.result
│ │ │ │ ├── 7003_1244_p0_consistency_strong_cluster_0v1_lianye.result
│ │ │ │ ├── 7004_1244_p0_consistency_strong_ups_0v1_lianye.result
│ │ │ │ ├── 7005_1244_p0_consistency_strong_ups_1v0_lianye.result
│ │ │ │ ├── 7006_1244_p0_consistency_strong_ups_1v1_ups_down_lianye.result
│ │ │ │ ├── 7007_1244_p0_consistency_strong_ups_1v0_ups_down_lianye.result
│ │ │ │ ├── 7008_1244_p0_consistency_strong_ups_0v1_ups_down_lianye.result
│ │ │ │ ├── 7009_1244_p0_consistency_strong_ups_1v1_ups_change_lianye.result
│ │ │ │ ├── 7010_1244_p0_consistency_strong_ups_1v0_ups_change_lianye.result
│ │ │ │ ├── 7011_1244_p0_consistency_strong_ups_0v1_ups_change_lianye.result
│ │ │ │ ├── 7012_1244_p0_consistency_strong_cluster_1v1_cluster_change_lianye.result
│ │ │ │ ├── 7013_1244_p0_consistency_strong_cluster_1v1_slave_ups_0v1_cluster_change_lianye.result
│ │ │ │ ├── 7014_1244_p0_consistency_strong_cluster_1v0_cluster_change_lianye.result
│ │ │ │ └── 7015_1244_p0_consistency_strong_cluster_0v1_cluster_change_lianye.result
│ │ │ ├── func
│ │ │ │ ├── 1001_c1244_p0_ddl_yangxiu.result
│ │ │ │ ├── 1002_c1244_p0_select_consistency_level_yangxiu.result
│ │ │ │ ├── 1003_c1244_p0_create_table_with_table_id_yangxiu.result
│ │ │ │ ├── 1004_c1222_p1_block_net_between_server_in_cluster_yangxiu.result
│ │ │ │ ├── 1005_c1222_p0_set_parameters_yangxiu.result
│ │ │ │ ├── 3023_c1122_p0_hint_frozen_version_consistency_one_tablet_yulan.result
│ │ │ │ ├── 3024_c1122_p0_hint_frozen_version_consistency_two_tablet_yulan.result
│ │ │ │ ├── 3025_c1122_p0_hint_frozen_version_diff_1_yulan.result
│ │ │ │ ├── 3026_c1122_p0_hint_frozen_version_diff_2_yulan.result
│ │ │ │ ├── 3027_c1122_p0_hint_frozen_no_static_yulan.result
│ │ │ │ ├── 3028_c1122_p0_hint_frozen_part_no_static_yulan.result
│ │ │ │ ├── 3029_c1122_p0_hint_frozen_ups_down_all_yulan.result
│ │ │ │ ├── 3046_c1122_p0_hint_frozen_version_consistency_one_tablet_new_yulan.result
│ │ │ │ ├── 7020_hint_static_function_lianye.result
│ │ │ │ ├── 7022_hint_static_cs_stop_more_lianye.result
│ │ │ │ ├── 7023_hint_static_merge_freeze_unfinish_lianye.result
│ │ │ │ ├── 7024_hint_static_merge_freeze_undo_lianye.result
│ │ │ │ ├── 7025_hint_static_merge_freeze_unfinish_2_lianye.result
│ │ │ │ ├── c1111_p0_bug_stop_masterups_after_create_table_junyue.result
│ │ │ │ ├── c1111_p0_new_cluster_junyue.result
│ │ │ │ ├── c1111_p1_start_server_randomly_junyue.result
│ │ │ │ └── c1244_p0_test_inner_table_yangxiu.result
│ │ │ ├── import
│ │ │ │ ├── 5020_c1133_create_bypass_config_right_yiming.result
│ │ │ │ ├── 5021_c1133_create_bypass_config_wrong_yiming.result
│ │ │ │ ├── 5022_c1133_import_one_table_yiming.result
│ │ │ │ ├── 5023_c1133_import_two_same_table_yiming.result
│ │ │ │ ├── 5024_c1133_import_two_table_yiming.result
│ │ │ │ ├── 5026_c1133_import_restart_rs_yiming.result
│ │ │ │ ├── 5027_c1133_import_restart_ups_yiming.result
│ │ │ │ ├── 5028_c1133_import_kill_all_cs_when_load_data_yiming.result
│ │ │ │ ├── 5029_c1133_import_restart_rs_when_load_data_yiming.result
│ │ │ │ ├── 5030_c1133_import_one_repetition_yiming.result
│ │ │ │ ├── 5031_c1133_import_not_set_ob1_role_yiming.result
│ │ │ │ ├── 5032_c1133_import_kill_one_proxy_yiming.result
│ │ │ │ ├── 5033_c1133_import_kill_one_proxy_when_load_data_yiming.result
│ │ │ │ ├── 5034_c1133_import_one_table_twice_yiming.result
│ │ │ │ ├── 5035_c1133_import_same_table_twice_yiming.result
│ │ │ │ ├── 5036_c1133_import_large_raw_data_field_count_yiming.result
│ │ │ │ ├── 5037_c1133_import_wrong_parameter_yiming.result
│ │ │ │ ├── 5038_c1133_import_two_cluster_one_table_yiming.result
│ │ │ │ ├── 5039_c1133_import_two_cluster_two_table_yiming.result
│ │ │ │ ├── 5040_c1133_import_two_cluster_same_table_yiming.result
│ │ │ │ ├── 5041_c1133_import_wrong_hadoop_path_yiming.result
│ │ │ │ ├── 5042_c1133_import_all_wrong_hadoop_path_yiming.result
│ │ │ │ ├── 5043_c1133_import_wrong_hadoop_conf_yiming.result
│ │ │ │ ├── 5044_c1133_import_all_wrong_hadoop_conf_yiming.result
│ │ │ │ ├── 5045_c2233_import_one_table_vip_flutter_yiming.result
│ │ │ │ ├── 5046_c2233_import_vip_flutter_when_load_data_yiming.result
│ │ │ │ ├── 5047_c1133_import_two_cluster_switch_cluster_yiming.result
│ │ │ │ ├── 5048_c2133_import_two_cluster_switch_cluster_swicth_vip_yiming.result
│ │ │ │ ├── 5050_c1133_import_two_table_same_time_yiming.result
│ │ │ │ └── conf
│ │ │ │ ├── 5020_1_collect_info.ini
│ │ │ │ ├── 5020_2_collect_info.ini
│ │ │ │ ├── 5020_3_t1.ini
│ │ │ │ ├── 5020_4_t1.ini
│ │ │ │ ├── 5020_5_t1.ini
│ │ │ │ ├── 5020_6_t1.ini
│ │ │ │ ├── 5021_1_collect_info.ini
│ │ │ │ ├── 5036_1_collect_info.ini
│ │ │ │ ├── collect_info.ini
│ │ │ │ └── item_info.ini
│ │ │ ├── mc
│ │ │ │ ├── 1001_c1244_p0_merge_master_ups_restart_cluster_switch_yangxiu.result
│ │ │ │ ├── 1002_c1244_p0_merge_slave_ups_restart_cluster_switch_yangxiu.result
│ │ │ │ ├── 1003_c1244_p0_merge_master_cs_restart_cluster_switch_yangxiu.result
│ │ │ │ ├── 1004_c1244_p0_merge_slave_cs_restart_cluster_switch_yangxiu.result
│ │ │ │ ├── 1005_c1244_p0_merge_master_rs_restart_cluster_switch_yangxiu.result
│ │ │ │ ├── 1006_c1244_p0_merge_slave_rs_restart_cluster_switch_yangxiu.result
│ │ │ │ ├── 1007_c1244_p0_merge_slave_cluster_restart_cluster_switch_yangxiu.result
│ │ │ │ ├── 1008_c1244_p0_merge_cluster_switch_merge_again_yangxiu.result
│ │ │ │ ├── 1009_c1244_p0_stop_slave_ups_then_start_cluster_switch.result
│ │ │ │ ├── 1010_c1244_p0_stop_masterups_del_commitlog_restart_cluster_switch_yangxiu.result
│ │ │ │ ├── 1011_c1244_p0_stop_slaveups_del_commitlog_restart_cluster_switch_yangxiu.result
│ │ │ │ ├── 1012_c1244_p0_transaction_rollback_cluster_switch_yangxiu.result
│ │ │ │ ├── 1013_c1233_p0_del_tablet_one_cs_restart_yangxiu.result
│ │ │ │ ├── 1014_c1233_p0_del_tablet_all_cs_restart_yangxiu.result
│ │ │ │ ├── 1015_c1233_p0_del_tablet_master_rs_restart_yangxiu.result
│ │ │ │ ├── 1016_c1233_p0_del_tablet_slave_rs_restart_yangxiu.result
│ │ │ │ ├── 1017_c1233_p0_del_tablet_master_cluster_restart_yangxiu.result
│ │ │ │ ├── 1018_c1233_p0_del_tablet_slave_cluster_restart_yangxiu.result
│ │ │ │ ├── 1019_c1233_p0_del_tablet_merge_yangxiu.result
│ │ │ │ ├── 1020_c1244_p0_switch_cluster_twice_yangxiu.result
│ │ │ │ ├── 1021_c1244_p0_between_two_cluster_switch_master_rs_restart_yangxiu.result
│ │ │ │ ├── 1022_c1244_p0_between_two_cluster_switch_slave_rs_restart_yangxiu.result
│ │ │ │ ├── 1023_c1244_p0_between_two_cluster_switch_master_ups_restart_yangxiu.result
│ │ │ │ ├── 1024_c1244_p0_between_two_cluster_switch_slave_ups_restart_yangxiu.result
│ │ │ │ ├── 1026_c1244_p0_all_cluster_restart_yangxiu.result
│ │ │ │ ├── 1027_c1244_p0_slave_cluster_all_ups_down_yangxiu.result
│ │ │ │ ├── 1028_c1244_p0_restart_slave_cluster_switch_restart_slave_cluster_yangxiu.result
│ │ │ │ ├── 1029_c1244_p1_block_net_between_cluster_yangxiu.result
│ │ │ │ ├── 2001_c1244_p0_provide_service_if_one_ms_crash_junyue.result
│ │ │ │ ├── 2002_c1233_p0_provide_service_if_one_cs_crash_junyue.result
│ │ │ │ ├── 2003_c1244_p0_provide_service_if_two_cs_crash_and_copy_junyue.result
│ │ │ │ ├── 2004_c1244_p0_provide_service_if_slave_ups_crash_junyue.result
│ │ │ │ ├── 2005_c1244_p0_provide_service_if_rs_crash_junyue.result
│ │ │ │ ├── 2007_c1244_p0_forbid_replaying_ups_read_cause_merge_failed_junyue.result
│ │ │ │ ├── 2008_c1244_p0_inc_rpl_merge_junyue.result
│ │ │ │ ├── 2009_c1233_p0_target_cs_crash_when_copy_junyue.result
│ │ │ │ ├── 2010_c1244_p0_source_cs_crash_when_copy_junyue.result
│ │ │ │ ├── 2011_c1244_read_from_master_ms_junyue.result
│ │ │ │ ├── 2012_c1244_read_from_all_cluster_junyue.result
│ │ │ │ ├── 2013_c1244_cluster_switch_read_master_junyue.result
│ │ │ │ ├── 2014_c1244_sfu_only_read_from_master_junyue.result
│ │ │ │ ├── 2015_c1244_alter_ddl_flow_junyue.result
│ │ │ │ ├── 2017_c1244_p0_all_server_crash_when_copy_junyue.result
│ │ │ │ ├── 2018_c1244_p0_restart_rs_when_copy_junyue.result
│ │ │ │ ├── 2019_c1244_p0_restart_slave_cluster_rs_when_copy_junyue.result
│ │ │ │ ├── 2020_c1244_p0_restart_master_cluster_when_copy_junyue.result
│ │ │ │ ├── 2021_c1244_p0_restart_slave_cluster_when_copy_junyue.result
│ │ │ │ ├── 2027_c1244_p0_trx_send_to_master_junyue.result
│ │ │ │ ├── 2087_c1111_p0_slava_cluser_ms_restart_after_master_ups_crash_junyue.result
│ │ │ │ ├── 2088_c1111_p0_slava_cluster_work_after_master_ups_crash_junyue.result
│ │ │ │ ├── 2094_p0_switch_cluster_ms2ss2sm2ms_junyue.result
│ │ │ │ ├── 2095_p0_switch_cluster_ms2ss2ms2sm_junyue.result
│ │ │ │ ├── 3043_p0_force_switch_cluster_ms2sm_yulan.result
│ │ │ │ ├── 3044_p0_force_switch_cluster_ms2ss2sm_yulan.result
│ │ │ │ ├── 3045_p0_force_switch_cluster_FAIL_master_cluster_yulan.result
│ │ │ │ ├── c1244_p0_cluster_continual_switch_junyue.result
│ │ │ │ ├── c1244_p0_master_ups_switch_slave_ups_down_junyue.result
│ │ │ │ ├── c1244_p0_merge_master_ups_down_junyue.result
│ │ │ │ ├── c1244_p0_merge_slave_ups_down_junyue.result
│ │ │ │ ├── c1244_p0_merge_switch_master_ups_junyue.result
│ │ │ │ ├── c1244_p0_merge_switch_slave_ups_junyue.result
│ │ │ │ ├── c1244_p0_merge_switch_ups_junyue.result
│ │ │ │ ├── c1244_p0_merge_twice_switch_ups_junyue.result
│ │ │ │ ├── c1244_p0_ups_switch_in_master_slave_cluster_yangxiu.result
│ │ │ │ ├── c1244_p0_ups_switch_master_ups_down_start_yangxiu.result
│ │ │ │ ├── c1244_p0_ups_switch_master_ups_restart_yangxiu.result
│ │ │ │ ├── c1244_p0_ups_switch_rs_restart_yangxiu.result
│ │ │ │ ├── c1244_p0_ups_switch_slave_ups_restart_yangxiu.result
│ │ │ │ ├── c1244_p0_ups_switch_twice_ups_restart_yangxiu.result
│ │ │ │ └── c1244_p0_ups_switch_twice_yangxiu.result
│ │ │ ├── ms
│ │ │ │ ├── 1001_c1244_lms_autorestart_exitcode_not_expected_yangxiu.result
│ │ │ │ ├── 1002_c1244_lms_notrestart_exitcode_is_expected_yangxiu.result
│ │ │ │ ├── 2080_c1233_cs_black_list_get_junyue.result
│ │ │ │ ├── 2081_c1233_cs_black_list_scan_junyue.result
│ │ │ │ ├── 2082_c1233_alter_table_junyue.result
│ │ │ │ └── 2090_c1111_ms_read_only_zhuweng.result
│ │ │ ├── obsql
│ │ │ │ ├── 5001_c1244_kill_one_ms_yiming.result
│ │ │ │ ├── 5002_c1244_kill_one_cs_yiming.result
│ │ │ │ ├── 5003_c1244_ms_outflow_control_master_100_yiming.result
│ │ │ │ ├── 5004_c1244_ms_outflow_control_master_0_yiming.result
│ │ │ │ ├── 5005_c1244_ms_outflow_control_master_50_yiming.result
│ │ │ │ ├── 5006_c1244_ms_outflow_control_master_50_only_select_yiming.result
│ │ │ │ ├── 5007_c1244_ddl_master_100_yiming.result
│ │ │ │ ├── 5008_c1244_ddl_master_0_yiming.result
│ │ │ │ ├── 5009_c1244_ddl_master_50_yiming.result
│ │ │ │ ├── 5010_c1244_dcl_master_100_yiming.result
│ │ │ │ ├── 5011_c1244_dcl_master_0_yiming.result
│ │ │ │ ├── 5012_c1244_dcl_master_50_yiming.result
│ │ │ │ └── 5013_c1244_switch_cluster_yiming.result
│ │ │ ├── quick
│ │ │ │ ├── c1111_p0_cs_quicktest_yangxiu.result
│ │ │ │ ├── c1111_p0_one_cluster_yangxiu.result
│ │ │ │ ├── c1111_p0_two_cluster_yangxiu.result
│ │ │ │ ├── c1211_p0_ups_quicktest_compound_junyue.result
│ │ │ │ ├── c1211_p0_ups_quicktest_frozendrop_junyue.result
│ │ │ │ ├── c1211_p0_ups_quicktest_parallelTrx_freelock_junyue.result
│ │ │ │ ├── c1211_p0_ups_quicktest_parallelTrx_junyue.result
│ │ │ │ ├── c1211_p0_ups_quicktest_parallelTrx_scheduallock_junyue.result
│ │ │ │ ├── c1211_p0_ups_quicktest_wrtrx_junyue.result
│ │ │ │ ├── c1222_p0_rs_quicktest_yangxiu.result
│ │ │ │ ├── c1222_p0_ups_quicktest_basictest_junyue.result
│ │ │ │ ├── c1222_p0_ups_quicktest_RowCompaction_junyue.result
│ │ │ │ └── c1233_p0_two_cluster_yangxiu.result
│ │ │ ├── rs
│ │ │ │ ├── 1001_c2244_p0_vip_flutter_yangxiu.result
│ │ │ │ ├── 1002_c2244_p0_vip_stop_vip_rs_yangxiu.result
│ │ │ │ ├── 1003_c1244_p1_ms_first_register_stop_before_bootstrap_yangxiu.result
│ │ │ │ ├── 1006_c1244_p0_clean_root_table_yangxiu.result
│ │ │ │ ├── 1007_c2244_p1_block_net_between_rs_vip_yangxiu.result
│ │ │ │ ├── 1008_c2244_p1_clean_root_table_vip_yangxiu.result
│ │ │ │ ├── 1009_c2244_p1_clean_root_table_vip2_yangxiu.result
│ │ │ │ ├── 2086_c1222_p1_compare_row_checksum_after_clear_roottable_junyue.result
│ │ │ │ ├── 2099_c1222_p1_clear_root_table_junyue.result
│ │ │ │ ├── 5000_c1133_p0_when_rs_restart_kill_one_ms_yiming.result
│ │ │ │ └── 8005_c1222_p1_drop_table_clean_column_and_join_info_rongxuan.result
│ │ │ └── ups
│ │ │ ├── 1001_c1244_p0_select_master_ups_when_master_ups_restart_yangxiu.result
│ │ │ ├── 1002_c1244_p0_select_master_commitlog_is_newer_yangxiu.result
│ │ │ ├── 1003_c1244_p0_add_one_ups_stop_another_yangxiu.result
│ │ │ ├── 1004_c1244_p0_ups_no_data_stop_master_ups_yangxiu.result
│ │ │ ├── 1005_c1244_p0_ups_flow_0vs1_stop_slave_ups_yangxiu.result
│ │ │ ├── 1006_c1244_p0_minor_freeze_yangxiu.result
│ │ │ ├── 1007_c1244_p0_partial_rollback_bug_yangxiu.result
│ │ │ ├── 2023_c1244_p0_ups_flow_1vs1_junyue.result
│ │ │ ├── 2024_c1244_p0_ups_flow_0vs1_junyue.result
│ │ │ ├── 2025_c1244_p0_ups_flow_1vs0_junyue.result
│ │ │ ├── 3047_c1244_p0_ups_compound_partital_rollback.result
│ │ │ ├── 3048_c1244_p0_ups_compound_partital_rollback1.result
│ │ │ ├── 3053_c1111_p0_ups_read_sstable_bug564561_yulan.result
│ │ │ └── 5100_c1133_p0_ups_checksum_yiming.result
│ │ ├── startlms.sh
│ │ ├── t
│ │ │ ├── a
│ │ │ │ ├── c1111_p0_new_cluster_junyue.test
│ │ │ │ └── c1244_p0_verify_all_server_all_cluster_yangxiu.test
│ │ │ ├── collect
│ │ │ │ ├── 2050_c1233_p0_query_junyue.test
│ │ │ │ ├── 2056_c1233_p0_new_user_collect_old_item_junyue.test
│ │ │ │ ├── 2057_c1233_p0_new_user_collect_updated_item_junyue.test
│ │ │ │ ├── 2058_c1233_p0_collectinfo_is_null_after_item_delete_junyue.test
│ │ │ │ ├── 2059_c1233_p0_collect_new_item_junyue.test
│ │ │ │ ├── 2060_c1233_p0_delete_collectinfo_junyue.test
│ │ │ │ ├── 2061_c1233_p0_collect_info_change_junyue.test
│ │ │ │ ├── 2062_c1233_p0_item_add_junyue.test
│ │ │ │ ├── 2063_c1233_p0_collectinfo_add_junyue.test
│ │ │ │ ├── 3001_c1233_P0_master_ups_down_yulan.test
│ │ │ │ └── 3002_c1233_P0_cluster_switch_yulan.test
│ │ │ ├── compat
│ │ │ │ ├── 1002_c1244_p0_simulate_online_upgrade_yangxiu.test
│ │ │ │ └── 2080_c1244_p0_simulate_online_upgrade_from_0428_junyue.test
│ │ │ ├── compound
│ │ │ │ ├── 2060_c1211_ups_parallel_trx_2L_compd_only_junyue.test
│ │ │ │ ├── 2061_c1211_ups_parallel_trx_2L_compd_mix_junyue.test
│ │ │ │ ├── 2062_c1211_ups_parallel_trx_2L_compd_double_junyue.test
│ │ │ │ ├── 2063_c1211_ups_parallel_trx_2L_compd_double_first_conflict_junyue.test
│ │ │ │ ├── 2064_c1211_ups_parallel_trx_2L_async_junyue.test
│ │ │ │ ├── 2065_c1211_ups_parallel_trx_2L_deadlock_junyue.test
│ │ │ │ ├── 2066_c1211_ups_parallel_trx_3L_compd_only_junyue.test
│ │ │ │ ├── 2067_c1211_ups_parallel_trx_3L_compd_mix_junyue.test
│ │ │ │ ├── 2068_c1211_ups_parallel_trx_3L_deadlock_junyue.test
│ │ │ │ ├── 2069_c1211_ups_parallel_trx_3L_compd_double_junyue.test
│ │ │ │ ├── 2070_c1211_ups_parallel_trx_3L_async_junyue.test
│ │ │ │ ├── 3053_c1211_p0_trx_1.test
│ │ │ │ ├── 3054_c1211_p0_trx_2.test
│ │ │ │ ├── 3055_c1211_p0_trx_3.test
│ │ │ │ ├── 3056_c1211_p0_trx_4.test
│ │ │ │ ├── 3057_c1211_p0_trx_5.test
│ │ │ │ └── 3058_c1211_p0_trx_6.test
│ │ │ ├── cs
│ │ │ │ ├── 1001_c1233_p0_one_cs_down_add_another_cs_yangxiu.test
│ │ │ │ ├── 1003_c1244_p0_merge_some_cs_down_yangxiu.test
│ │ │ │ ├── 1005_c1244_p0_merge_but_ups_is_null_yangxiu.test
│ │ │ │ ├── 1006_c1244_p0_merge_master_ups_down_yangxiu.test
│ │ │ │ ├── 1007_c1233_p0_stop_two_cs_start_merge_start_two_cs_yangxiu.test
│ │ │ │ ├── 1008_c1244_p0_merge_repeat_have_data_yangxiu.test
│ │ │ │ ├── 1009_c1233_p0_copy_when_stop_some_ms_and_master_ups_yangxiu.test
│ │ │ │ ├── 1010_c1233_p0_add_two_cs_cause_migrate_yangxiu.test
│ │ │ │ ├── 1012_c1233_p0_add_one_cs_cause_migrate_stop_one_old_cs_yangxiu.test
│ │ │ │ ├── 1013_c1233_p0_balance_tolerance_count_valid_yangxiu.test
│ │ │ │ ├── 1014_c1233_p0_merge_add_one_cs_yangxiu.test
│ │ │ │ ├── 1015_c1233_p0_cs_offline_forbid_ddl_bug_junyue.test
│ │ │ │ ├── 1015_c1244_p0_merge_add_one_cs_backward_one_version_yangxiu.test
│ │ │ │ ├── 1016_c1244_p0_sstable_split_cs_and_rs_restart_yangxiu.test
│ │ │ │ ├── 1017_c1244_p0_only_read_static_yangxiu.test
│ │ │ │ ├── 1018_c1244_p0_expire_info_error_merge_continue_yangxiu.test
│ │ │ │ ├── 1019_c1244_p0_merge_slave_cluster_add_cs_yangxiu.test
│ │ │ │ ├── 1021_c1222_p1_merge_multitime_cs_disk_cannot_access_yangxiu.test
│ │ │ │ ├── 1022_c1244_p1_migrate_out_disk_cannot_access_yangxiu.test
│ │ │ │ ├── 1023_c1211_p0_delete_not_exist_tablet_bug_yangxiu.test
│ │ │ │ ├── 1026_c1211_p0_kick_off_disk_yangxiu.test
│ │ │ │ ├── 5100_c1133_install_and_uninstall_disk_yiming.test
│ │ │ │ ├── 5101_c1122_uninstall_disk_when_select_yiming.test
│ │ │ │ ├── 5102_c1133_uninstall_disk_when_merge_yiming.test
│ │ │ │ └── 6001_c1233_p3_delete_tablet_select_bug547736_xuanruo.test
│ │ │ ├── ct
│ │ │ │ ├── 1001_c1244_p0_username_passwd_only_in_diamond_yangxiu.test
│ │ │ │ ├── 1002_c1244_p0_stop_diamond_not_affect_sql_yangxiu.test
│ │ │ │ ├── 1003_c1244_p0_stop_diamond_del_local_conf_yangxiu.test
│ │ │ │ ├── 1004_c1244_p0_del_local_conf_not_affect_sql_yangxiu.test
│ │ │ │ ├── 1005_c1244_p0_use_local_jar_first_yangxiu.test
│ │ │ │ ├── 1006_c1244_p0_del_local_jar_not_affect_sql_yangxiu.test
│ │ │ │ ├── 1007_c1244_p0_update_version_yangxiu.test
│ │ │ │ ├── 1008_c1244_p0_enableUpdate_false_not_update_version_yangxiu.test
│ │ │ │ ├── 1009_c1244_p0_update_version_then_degrade_yangxiu.test
│ │ │ │ ├── 1010_c1244_p0_only_whiteList_update_version_yangxiu.test
│ │ │ │ ├── 1011_c1244_percent_0_no_whiteList_not_update_version_yangxiu.test
│ │ │ │ ├── 1012_c1244_p0_percent_null_no_whiteList_all_client_update_yangxiu.test
│ │ │ │ ├── 1013_c1244_p0_update_invaild_in_delay_time_yangxiu.test
│ │ │ │ ├── 1014_c1244_p0_update_version_client_restart_yangxiu.test
│ │ │ │ ├── 1015_c1244_p0_random_load_strategy_yangxiu.test
│ │ │ │ ├── 1016_c1244_p0_poll_load_stratrgy_yangxiu.test
│ │ │ │ ├── 1017_c1244_p0_consistency_load_stratrgy_yangxiu.test
│ │ │ │ ├── 1018_c1244_p0_ddl_to_master_cluster_yangxiu.test
│ │ │ │ ├── 1019_c1244_p0_ps_consistency_load_stratrgy_yangxiu.test
│ │ │ │ ├── 1020_c1244_p0_ps_random_load_strategy_yangxiu.test
│ │ │ │ ├── 1021_c1244_p0_ps_poll_load_stratrgy_yangxiu.test
│ │ │ │ ├── 1022_c1244_p0_all_ms_not_fms_down_yangxiu.test
│ │ │ │ ├── 1023_c1244_p0_only_fms_stop_yangxiu.test
│ │ │ │ ├── 1024_c1244_p0_all_ms_include_fms_down_yangxiu.test
│ │ │ │ ├── 1025_c1244_p0_master_cluster_ms_down_yangxiu.test
│ │ │ │ ├── 1026_c1244_p0_wrong_sql_yangxiu.test
│ │ │ │ ├── 1027_c1244_p0_stop_diamond_create_client_yangxiu.test
│ │ │ │ ├── 1028_c1244_p0_multi_client_one_ms_down_yangxiu.test
│ │ │ │ ├── 1029_c1244_p0_client_read_consistency_weak_yangxiu.test
│ │ │ │ ├── 1030_c1244_p0_read_cluster_yangxiu.test
│ │ │ │ ├── 1031_c1244_p0_ob_read_consistency_weak_yangxiu.test
│ │ │ │ ├── 1032_c1244_p0_ob_read_consistency_strong_yangxiu.test
│ │ │ │ ├── 1033_c1244_p0_one_cluster_weak_read_consistency_yangxiu.test
│ │ │ │ ├── 1034_c1244_p0_add_ms_yangxiu.test
│ │ │ │ ├── 1035_c1244_p0_restart_cs_client_no_error_yangxiu.test
│ │ │ │ ├── 1036_c1244_p0_maxActive_yangxiu.test
│ │ │ │ ├── 1037_c1211_p0_initialSize_yangxiu.test
│ │ │ │ ├── 1038_c1222_p0_ds_multi_instance_yangxiu.test
│ │ │ │ ├── 2060_c1111_p0_use_new_user_in_api_junyue.test
│ │ │ │ ├── 2061_c1111_p0_use_new_user_in_config_url_junyue.test
│ │ │ │ ├── 2091_c1111_p0_encode_gbk_junyue.test
│ │ │ │ ├── 2092_c1111_p0_encode_junyue.test
│ │ │ │ ├── 2093_p0_ds_leak_session_after_switch_cluster_junyue.test
│ │ │ │ ├── 2098_c1222_p0_lms_session_junyue.test
│ │ │ │ ├── 3001_c1244_p0_cluster_flow_1v0_consistency_weak_yulan.test
│ │ │ │ ├── 3002_c1244_p0_cluster_flow_0v1_consistency_weak_yulan.test
│ │ │ │ ├── 3003_c1244_p0_cluster_flow_1v1_consistency_weak_yulan.test
│ │ │ │ ├── 3004_c1244_p0_ups_flow_1v1_consistency_weak_yulan.test
│ │ │ │ ├── 3005_c1244_p0_ups_flow_1v0_consistency_weak_yulan.test
│ │ │ │ ├── 3006_c1244_p0_ups_flow_0v1_consistency_weak_yulan.test
│ │ │ │ ├── 3007_c1244_p0_cluster_switch_cluster_flow_1v0_consistency_weak_yulan.test
│ │ │ │ ├── 3008_c1244_p0_cluster_switch_cluster_flow_0v1_consistency_weak_yulan.test
│ │ │ │ ├── 3009_c1244_select_for_update_cluster_flow_1v1_consistency_weak_yulan.test
│ │ │ │ ├── 3010_c1244_select_for_update_cluster_flow_0v1_consistency_weak_yulan.test
│ │ │ │ ├── 3013_c1244_hint_strong_cluster_flow_1v1_consistency_weak_yulan.test
│ │ │ │ ├── 3014_c1244_hint_strong_cluster_flow_0v1_consistency_weak_yulan.test
│ │ │ │ ├── 3015_c1244_p0_master_ups_restart_ups_flow_1v0_cluster_flow_1v0_consistency_weak_yulan.test
│ │ │ │ ├── 3016_c1244_p0_alter_ddl_cluster_flow_1v1_consistency_weak_yulan.test
│ │ │ │ ├── 3017_c1244_p0_hint_cluster_1v0_to_0v1_consistency_weak_yulan.test
│ │ │ │ ├── 3018_c1244_p0_hint_cluster_0v1_to_1v0_consistency_weak_yulan.test
│ │ │ │ ├── 3019_c1244_hint_slave_cluster_flow_1v1_consistency_weak_yulan.test
│ │ │ │ ├── 3020_c1244_hint_master_cluster_flow_1v1_consistency_weak_yulan.test
│ │ │ │ ├── 3021_c1244_p0_cluster_flow_1v0_restart_slave_cluster_consistency_weak_yulan.test
│ │ │ │ ├── 3022_c1244_p0_cluster_flow_0v1_restart_master_cluster_consistency_weak_yulan.test
│ │ │ │ ├── 3039_c1244_p0_hint_frozen_flow_1v1_consistency_weak_yulan.test
│ │ │ │ ├── 3041_c1244_p0_hint_frozen_flow_1v0_consistency_weak_yulan.test
│ │ │ │ ├── 3049_c1244_po_select_when_consistency_weak_yulan.test
│ │ │ │ ├── 5000_c1133_p0_one_ms_killed_start_ct_yiming.test
│ │ │ │ ├── 7001_1244_p0_consistency_strong_cluster_1v1_lianye.test
│ │ │ │ ├── 7002_1244_p0_consistency_strong_cluster_1v0_lianye.test
│ │ │ │ ├── 7003_1244_p0_consistency_strong_cluster_0v1_lianye.test
│ │ │ │ ├── 7004_1244_p0_consistency_strong_ups_0v1_lianye.test
│ │ │ │ ├── 7005_1244_p0_consistency_strong_ups_1v0_lianye.test
│ │ │ │ ├── 7006_1244_p0_consistency_strong_ups_1v1_ups_down_lianye.test
│ │ │ │ ├── 7007_1244_p0_consistency_strong_ups_1v0_ups_down_lianye.test
│ │ │ │ ├── 7008_1244_p0_consistency_strong_ups_0v1_ups_down_lianye.test
│ │ │ │ ├── 7009_1244_p0_consistency_strong_ups_1v1_ups_change_lianye.test
│ │ │ │ ├── 7010_1244_p0_consistency_strong_ups_1v0_ups_change_lianye.test
│ │ │ │ ├── 7011_1244_p0_consistency_strong_ups_0v1_ups_change_lianye.test
│ │ │ │ ├── 7012_1244_p0_consistency_strong_cluster_1v1_cluster_change_lianye.test
│ │ │ │ ├── 7013_1244_p0_consistency_strong_cluster_1v1_slave_ups_0v1_cluster_change_lianye.test
│ │ │ │ ├── 7014_1244_p0_consistency_strong_cluster_1v0_cluster_change_lianye.test
│ │ │ │ └── 7015_1244_p0_consistency_strong_cluster_0v1_cluster_change_lianye.test
│ │ │ ├── func
│ │ │ │ ├── 1001_c1244_p0_ddl_yangxiu.test
│ │ │ │ ├── 1002_c1244_p0_select_consistency_level_yangxiu.test
│ │ │ │ ├── 1003_c1244_p0_create_table_with_table_id_yangxiu.test
│ │ │ │ ├── 1004_c1222_p1_block_net_between_server_in_cluster_yangxiu.test
│ │ │ │ ├── 1005_c1222_p0_set_parameters_yangxiu.test
│ │ │ │ ├── 3023_c1122_p0_hint_frozen_version_consistency_one_tablet_yulan.test
│ │ │ │ ├── 3024_c1122_p0_hint_frozen_version_consistency_two_tablet_yulan.test
│ │ │ │ ├── 3025_c1122_p0_hint_frozen_version_diff_1_yulan.test
│ │ │ │ ├── 3026_c1122_p0_hint_frozen_version_diff_2_yulan.test
│ │ │ │ ├── 3027_c1122_p0_hint_frozen_no_static_yulan.test
│ │ │ │ ├── 3028_c1122_p0_hint_frozen_part_no_static_yulan.test
│ │ │ │ ├── 3029_c1122_p0_hint_frozen_ups_down_all_yulan.test
│ │ │ │ ├── 3046_c1122_p0_hint_frozen_version_consistency_one_tablet_new_yulan.test
│ │ │ │ ├── 7020_hint_static_function_lianye.test
│ │ │ │ ├── 7022_hint_static_cs_stop_more_lianye.test
│ │ │ │ ├── 7023_hint_static_merge_freeze_unfinish_lianye.test
│ │ │ │ ├── 7024_hint_static_merge_freeze_undo_lianye.test
│ │ │ │ ├── 7025_hint_static_merge_freeze_unfinish_2_lianye.test
│ │ │ │ ├── c1111_p0_bug_stop_masterups_after_create_table_junyue.test
│ │ │ │ ├── c1111_p1_start_server_randomly_junyue.test
│ │ │ │ └── c1244_p0_test_inner_table_yangxiu.test
│ │ │ ├── import
│ │ │ │ ├── 5020_c1133_create_bypass_config_right_yiming.test
│ │ │ │ ├── 5021_c1133_create_bypass_config_wrong_yiming.test
│ │ │ │ ├── 5022_c1133_import_one_table_yiming.test
│ │ │ │ ├── 5023_c1133_import_two_same_table_yiming.test
│ │ │ │ ├── 5024_c1133_import_two_table_yiming.test
│ │ │ │ ├── 5026_c1133_import_restart_rs_yiming.test
│ │ │ │ ├── 5027_c1133_import_restart_ups_yiming.test
│ │ │ │ ├── 5028_c1133_import_kill_all_cs_when_load_data_yiming.test
│ │ │ │ ├── 5029_c1133_import_restart_rs_when_load_data_yiming.test
│ │ │ │ ├── 5030_c1133_import_one_repetition_yiming.test
│ │ │ │ ├── 5031_c1133_import_not_set_ob1_role_yiming.test
│ │ │ │ ├── 5032_c1133_import_kill_one_proxy_yiming.test
│ │ │ │ ├── 5033_c1133_import_kill_one_proxy_when_load_data_yiming.test
│ │ │ │ ├── 5034_c1133_import_one_table_twice_yiming.test
│ │ │ │ ├── 5035_c1133_import_same_table_twice_yiming.test
│ │ │ │ ├── 5036_c1133_import_large_raw_data_field_count_yiming.test
│ │ │ │ ├── 5037_c1133_import_wrong_parameter_yiming.test
│ │ │ │ ├── 5038_c1133_import_two_cluster_one_table_yiming.test
│ │ │ │ ├── 5039_c1133_import_two_cluster_two_table_yiming.test
│ │ │ │ ├── 5040_c1133_import_two_cluster_same_table_yiming.test
│ │ │ │ ├── 5041_c1133_import_wrong_hadoop_path_yiming.test
│ │ │ │ ├── 5042_c1133_import_all_wrong_hadoop_path_yiming.test
│ │ │ │ ├── 5043_c1133_import_wrong_hadoop_conf_yiming.test
│ │ │ │ ├── 5044_c1133_import_all_wrong_hadoop_conf_yiming.test
│ │ │ │ ├── 5045_c2233_import_one_table_vip_flutter_yiming.test
│ │ │ │ ├── 5046_c2233_import_vip_flutter_when_load_data_yiming.test
│ │ │ │ ├── 5047_c1133_import_two_cluster_switch_cluster_yiming.test
│ │ │ │ ├── 5048_c2133_import_two_cluster_switch_cluster_swicth_vip_yiming.test
│ │ │ │ ├── 5050_c1133_import_two_table_same_time_yiming.test
│ │ │ │ └── inc
│ │ │ │ └── importconf.inc
│ │ │ ├── mc
│ │ │ │ ├── 1001_c1244_p0_merge_master_ups_restart_cluster_switch_yangxiu.test
│ │ │ │ ├── 1002_c1244_p0_merge_slave_ups_restart_cluster_switch_yangxiu.test
│ │ │ │ ├── 1003_c1244_p0_merge_master_cs_restart_cluster_switch_yangxiu.test
│ │ │ │ ├── 1004_c1244_p0_merge_slave_cs_restart_cluster_switch_yangxiu.test
│ │ │ │ ├── 1005_c1244_p0_merge_master_rs_restart_cluster_switch_yangxiu.test
│ │ │ │ ├── 1006_c1244_p0_merge_slave_rs_restart_cluster_switch_yangxiu.test
│ │ │ │ ├── 1007_c1244_p0_merge_slave_cluster_restart_cluster_switch_yangxiu.test
│ │ │ │ ├── 1008_c1244_p0_merge_cluster_switch_merge_again_yangxiu.test
│ │ │ │ ├── 1009_c1244_p0_stop_slave_ups_then_start_cluster_switch.test
│ │ │ │ ├── 1010_c1244_p0_stop_masterups_del_commitlog_restart_cluster_switch_yangxiu.test
│ │ │ │ ├── 1011_c1244_p0_stop_slaveups_del_commitlog_restart_cluster_switch_yangxiu.test
│ │ │ │ ├── 1012_c1244_p0_transaction_rollback_cluster_switch_yangxiu.test
│ │ │ │ ├── 1013_c1233_p0_del_tablet_one_cs_restart_yangxiu.test
│ │ │ │ ├── 1014_c1233_p0_del_tablet_all_cs_restart_yangxiu.test
│ │ │ │ ├── 1015_c1233_p0_del_tablet_master_rs_restart_yangxiu.test
│ │ │ │ ├── 1016_c1233_p0_del_tablet_slave_rs_restart_yangxiu.test
│ │ │ │ ├── 1017_c1233_p0_del_tablet_master_cluster_restart_yangxiu.test
│ │ │ │ ├── 1018_c1233_p0_del_tablet_slave_cluster_restart_yangxiu.test
│ │ │ │ ├── 1019_c1233_p0_del_tablet_merge_yangxiu.test
│ │ │ │ ├── 1020_c1244_p0_switch_cluster_twice_yangxiu.test
│ │ │ │ ├── 1021_c1244_p0_between_two_cluster_switch_master_rs_restart_yangxiu.test
│ │ │ │ ├── 1022_c1244_p0_between_two_cluster_switch_slave_rs_restart_yangxiu.test
│ │ │ │ ├── 1023_c1244_p0_between_two_cluster_switch_master_ups_restart_yangxiu.test
│ │ │ │ ├── 1024_c1244_p0_between_two_cluster_switch_slave_ups_restart_yangxiu.test
│ │ │ │ ├── 1026_c1244_p0_all_cluster_restart_yangxiu.test
│ │ │ │ ├── 1027_c1244_p0_slave_cluster_all_ups_down_yangxiu.test
│ │ │ │ ├── 1028_c1244_p0_restart_slave_cluster_switch_restart_slave_cluster_yangxiu.test
│ │ │ │ ├── 1029_c1244_p1_block_net_between_cluster_yangxiu.test
│ │ │ │ ├── 2001_c1244_p0_provide_service_if_one_ms_crash_junyue.test
│ │ │ │ ├── 2002_c1233_p0_provide_service_if_one_cs_crash_junyue.test
│ │ │ │ ├── 2003_c1244_p0_provide_service_if_two_cs_crash_and_copy_junyue.test
│ │ │ │ ├── 2004_c1244_p0_provide_service_if_slave_ups_crash_junyue.test
│ │ │ │ ├── 2005_c1244_p0_provide_service_if_rs_crash_junyue.test
│ │ │ │ ├── 2007_c1244_p0_forbid_replaying_ups_read_cause_merge_failed_junyue.test
│ │ │ │ ├── 2008_c1244_p0_inc_rpl_merge_junyue.test
│ │ │ │ ├── 2009_c1233_p0_target_cs_crash_when_copy_junyue.test
│ │ │ │ ├── 2010_c1244_p0_source_cs_crash_when_copy_junyue.test
│ │ │ │ ├── 2011_c1244_read_from_master_ms_junyue.test
│ │ │ │ ├── 2012_c1244_read_from_all_cluster_junyue.test
│ │ │ │ ├── 2013_c1244_cluster_switch_read_master_junyue.test
│ │ │ │ ├── 2014_c1244_sfu_only_read_from_master_junyue.test
│ │ │ │ ├── 2015_c1244_alter_ddl_flow_junyue.test
│ │ │ │ ├── 2017_c1244_p0_all_server_crash_when_copy_junyue.test
│ │ │ │ ├── 2018_c1244_p0_restart_rs_when_copy_junyue.test
│ │ │ │ ├── 2019_c1244_p0_restart_slave_cluster_rs_when_copy_junyue.test
│ │ │ │ ├── 2020_c1244_p0_restart_master_cluster_when_copy_junyue.test
│ │ │ │ ├── 2021_c1244_p0_restart_slave_cluster_when_copy_junyue.test
│ │ │ │ ├── 2027_c1244_p0_trx_send_to_master_junyue.test
│ │ │ │ ├── 2087_c1111_p0_slava_cluser_ms_restart_after_master_ups_crash_junyue.test
│ │ │ │ ├── 2088_c1111_p0_slava_cluster_work_after_master_ups_crash_junyue.test
│ │ │ │ ├── 2094_p0_switch_cluster_ms2ss2sm2ms_junyue.test
│ │ │ │ ├── 2095_p0_switch_cluster_ms2ss2ms2sm_junyue.test
│ │ │ │ ├── 3043_p0_force_switch_cluster_ms2sm_yulan.test
│ │ │ │ ├── 3044_p0_force_switch_cluster_ms2ss2sm_yulan.test
│ │ │ │ ├── 3045_p0_force_switch_cluster_FAIL_master_cluster_yulan.test
│ │ │ │ ├── c1244_p0_cluster_continual_switch_junyue.test
│ │ │ │ ├── c1244_p0_master_ups_switch_slave_ups_down_junyue.test
│ │ │ │ ├── c1244_p0_merge_master_ups_down_junyue.test
│ │ │ │ ├── c1244_p0_merge_slave_ups_down_junyue.test
│ │ │ │ ├── c1244_p0_merge_switch_master_ups_junyue.test
│ │ │ │ ├── c1244_p0_merge_switch_slave_ups_junyue.test
│ │ │ │ ├── c1244_p0_merge_switch_ups_junyue.test
│ │ │ │ ├── c1244_p0_merge_twice_switch_ups_junyue.test
│ │ │ │ ├── c1244_p0_ups_switch_in_master_slave_cluster_yangxiu.test
│ │ │ │ ├── c1244_p0_ups_switch_master_ups_down_start_yangxiu.test
│ │ │ │ ├── c1244_p0_ups_switch_master_ups_restart_yangxiu.test
│ │ │ │ ├── c1244_p0_ups_switch_rs_restart_yangxiu.test
│ │ │ │ ├── c1244_p0_ups_switch_slave_ups_restart_yangxiu.test
│ │ │ │ ├── c1244_p0_ups_switch_twice_ups_restart_yangxiu.test
│ │ │ │ └── c1244_p0_ups_switch_twice_yangxiu.test
│ │ │ ├── ms
│ │ │ │ ├── 1001_c1244_lms_autorestart_exitcode_not_expected_yangxiu.test
│ │ │ │ ├── 1002_c1244_lms_notrestart_exitcode_is_expected_yangxiu.test
│ │ │ │ ├── 2080_c1233_cs_black_list_get_junyue.test
│ │ │ │ ├── 2081_c1233_cs_black_list_scan_junyue.test
│ │ │ │ ├── 2082_c1233_alter_table_junyue.test
│ │ │ │ └── 2090_c1111_ms_read_only_zhuweng.test
│ │ │ ├── quick
│ │ │ │ ├── c1111_p0_cs_quicktest_yangxiu.test
│ │ │ │ ├── c1111_p0_one_cluster_yangxiu.test
│ │ │ │ ├── c1111_p0_two_cluster_yangxiu.test
│ │ │ │ ├── c1211_p0_ups_quicktest_compound_junyue.test
│ │ │ │ ├── c1211_p0_ups_quicktest_frozendrop_junyue.test
│ │ │ │ ├── c1211_p0_ups_quicktest_parallelTrx_freelock_junyue.test
│ │ │ │ ├── c1211_p0_ups_quicktest_parallelTrx_junyue.test
│ │ │ │ ├── c1211_p0_ups_quicktest_parallelTrx_scheduallock_junyue.test
│ │ │ │ ├── c1211_p0_ups_quicktest_wrtrx_junyue.test
│ │ │ │ ├── c1222_p0_rs_quicktest_yangxiu.test
│ │ │ │ ├── c1222_p0_ups_quicktest_basictest_junyue.test
│ │ │ │ ├── c1222_p0_ups_quicktest_RowCompaction_junyue.test
│ │ │ │ └── c1233_p0_two_cluster_yangxiu.test
│ │ │ ├── rs
│ │ │ │ ├── 1001_c2244_p0_vip_flutter_yangxiu.test
│ │ │ │ ├── 1002_c2244_p0_vip_stop_vip_rs_yangxiu.test
│ │ │ │ ├── 1003_c1244_p1_ms_first_register_stop_before_bootstrap_yangxiu.test
│ │ │ │ ├── 1004_c2244_p0_set_failcount_1_yangxiu.test
│ │ │ │ ├── 1006_c1244_p0_clean_root_table_yangxiu.test
│ │ │ │ ├── 1007_c2244_p1_block_net_between_rs_vip_yangxiu.test
│ │ │ │ ├── 1008_c2244_p1_clean_root_table_vip_yangxiu.test
│ │ │ │ ├── 1009_c2244_p1_clean_root_table_vip2_yangxiu.test
│ │ │ │ ├── 2086_c1222_p1_compare_row_checksum_after_clear_roottable_junyue.test
│ │ │ │ ├── 2099_c1222_p1_clear_root_table_junyue.test
│ │ │ │ ├── 5000_c1133_p0_when_rs_restart_kill_one_ms_yiming.test
│ │ │ │ └── 8005_c1222_p1_drop_table_clean_column_and_join_info_rongxuan.test
│ │ │ └── ups
│ │ │ ├── 1001_c1244_p0_select_master_ups_when_master_ups_restart_yangxiu.test
│ │ │ ├── 1002_c1244_p0_select_master_commitlog_is_newer_yangxiu.test
│ │ │ ├── 1003_c1244_p0_add_one_ups_stop_another_yangxiu.test
│ │ │ ├── 1004_c1244_p0_ups_no_data_stop_master_ups_yangxiu.test
│ │ │ ├── 1005_c1244_p0_ups_flow_0vs1_stop_slave_ups_yangxiu.test
│ │ │ ├── 1006_c1244_p0_minor_freeze_yangxiu.test
│ │ │ ├── 1007_c1244_p0_partial_rollback_bug_yangxiu.test
│ │ │ ├── 2023_c1244_p0_ups_flow_1vs1_junyue.test
│ │ │ ├── 2024_c1244_p0_ups_flow_0vs1_junyue.test
│ │ │ ├── 2025_c1244_p0_ups_flow_1vs0_junyue.test
│ │ │ ├── 3047_c1244_p0_ups_compound_partital_rollback.test
│ │ │ ├── 3048_c1244_p0_ups_compound_partital_rollback1.test
│ │ │ ├── 3053_c1111_p0_ups_read_sstable_bug564561_yulan.test
│ │ │ └── 5100_c1133_p0_ups_checksum_yiming.test
│ │ ├── test.sql
│ │ └── tools
│ │ └── iof
│ ├── oceanbase.sh
│ ├── olapdrive
│ │ ├── main.cpp
│ │ ├── Makefile.am
│ │ ├── ob_adgroup_bidword_effect_orderby.cpp
│ │ ├── ob_adgroup_bidword_effect_orderby.h
│ │ ├── ob_adgroup_effect_daily.cpp
│ │ ├── ob_adgroup_effect_daily.h
│ │ ├── ob_adgroup_effect_top10.cpp
│ │ ├── ob_adgroup_effect_top10.h
│ │ ├── ob_adgroup_impression_count.cpp
│ │ ├── ob_adgroup_impression_count.h
│ │ ├── ob_bidword_effect_daily.cpp
│ │ ├── ob_bidword_effect_daily.h
│ │ ├── ob_bidword_effect_top10.cpp
│ │ ├── ob_bidword_effect_top10.h
│ │ ├── ob_campaign_effect.cpp
│ │ ├── ob_campaign_effect.h
│ │ ├── ob_campaign_impression.cpp
│ │ ├── ob_campaign_impression.h
│ │ ├── ob_lz_common.h
│ │ ├── ob_lz_query.cpp
│ │ ├── ob_lz_query.h
│ │ ├── ob_olapdrive.cpp
│ │ ├── ob_olapdrive.h
│ │ ├── ob_olapdrive_main.cpp
│ │ ├── ob_olapdrive_main.h
│ │ ├── ob_olapdrive_meta.cpp
│ │ ├── ob_olapdrive_meta.h
│ │ ├── ob_olapdrive_param.cpp
│ │ ├── ob_olapdrive_param.h
│ │ ├── ob_olapdrive_schema.cpp
│ │ ├── ob_olapdrive_schema.h
│ │ ├── ob_olapdrive_stat.cpp
│ │ ├── ob_olapdrive_stat.h
│ │ ├── ob_platform_pvtype_effect.cpp
│ │ ├── ob_platform_pvtype_effect_daily.cpp
│ │ ├── ob_platform_pvtype_effect_daily.h
│ │ ├── ob_platform_pvtype_effect.h
│ │ ├── ob_read_worker.cpp
│ │ ├── ob_read_worker.h
│ │ ├── ob_several_adgroup_effect.cpp
│ │ ├── ob_several_adgroup_effect.h
│ │ ├── ob_several_bidword_effect.cpp
│ │ ├── ob_several_bidword_effect.h
│ │ ├── ob_several_creative_effect.cpp
│ │ ├── ob_several_creative_effect.h
│ │ ├── ob_write_worker.cpp
│ │ ├── ob_write_worker.h
│ │ ├── olapdrive.conf
│ │ ├── olapdrive_usage.txt
│ │ └── schema.ini
│ ├── profiler_helper
│ │ ├── Makefile.am
│ │ └── profiler_helper.c
│ ├── rt_cs_info_reader.cpp
│ ├── rt_root_table_reader.cpp
│ ├── sample_data
│ │ ├── apply.ini
│ │ ├── get.ini
│ │ └── scan.ini
│ ├── scan_sstable.cpp
│ ├── search_sstable.cpp
│ ├── search_sstable.h
│ ├── snmpd.conf
│ ├── sqltest
│ │ ├── client.h
│ │ ├── data
│ │ │ ├── mysql.sql
│ │ │ ├── schema.ini
│ │ │ └── sqlpattern.txt
│ │ ├── include
│ │ │ ├── mysql
│ │ │ │ ├── decimal.h
│ │ │ │ ├── errmsg.h
│ │ │ │ ├── keycache.h
│ │ │ │ ├── m_ctype.h
│ │ │ │ ├── m_string.h
│ │ │ │ ├── my_alloc.h
│ │ │ │ ├── my_attribute.h
│ │ │ │ ├── my_compiler.h
│ │ │ │ ├── my_config.h
│ │ │ │ ├── my_dbug.h
│ │ │ │ ├── my_dir.h
│ │ │ │ ├── my_getopt.h
│ │ │ │ ├── my_global.h
│ │ │ │ ├── my_list.h
│ │ │ │ ├── my_net.h
│ │ │ │ ├── my_no_pthread.h
│ │ │ │ ├── my_pthread.h
│ │ │ │ ├── mysql_com.h
│ │ │ │ ├── mysqld_ername.h
│ │ │ │ ├── mysqld_error.h
│ │ │ │ ├── mysql_embed.h
│ │ │ │ ├── mysql.h
│ │ │ │ ├── mysql_time.h
│ │ │ │ ├── mysql_version.h
│ │ │ │ ├── my_sys.h
│ │ │ │ ├── my_xml.h
│ │ │ │ ├── plugin.h
│ │ │ │ ├── readline.h
│ │ │ │ ├── sql_common.h
│ │ │ │ ├── sql_state.h
│ │ │ │ ├── sslopt-case.h
│ │ │ │ ├── sslopt-longopts.h
│ │ │ │ ├── sslopt-vars.h
│ │ │ │ └── typelib.h
│ │ │ └── postgre
│ │ │ ├── ecpg_config.h
│ │ │ ├── ecpgerrno.h
│ │ │ ├── ecpg_informix.h
│ │ │ ├── ecpglib.h
│ │ │ ├── ecpgtype.h
│ │ │ ├── libpq
│ │ │ │ └── libpq-fs.h
│ │ │ ├── libpq-events.h
│ │ │ ├── libpq-fe.h
│ │ │ ├── pg_config.h
│ │ │ ├── pg_config_manual.h
│ │ │ ├── pg_config_os.h
│ │ │ ├── pgtypes_date.h
│ │ │ ├── pgtypes_error.h
│ │ │ ├── pgtypes_interval.h
│ │ │ ├── pgtypes_numeric.h
│ │ │ ├── pgtypes_timestamp.h
│ │ │ ├── postgres_ext.h
│ │ │ ├── sql3types.h
│ │ │ ├── sqlca.h
│ │ │ ├── sqlda-compat.h
│ │ │ ├── sqlda.h
│ │ │ └── sqlda-native.h
│ │ ├── key_generator.cpp
│ │ ├── key_generator.h
│ │ ├── main.cpp
│ │ ├── Makefile.am
│ │ ├── mysql_client.cpp
│ │ ├── mysql_client.h
│ │ ├── obsql_client.cpp
│ │ ├── obsql_client.h
│ │ ├── prefix_info.cpp
│ │ ├── prefix_info.h
│ │ ├── read_worker.cpp
│ │ ├── read_worker.h
│ │ ├── sql_builder.cpp
│ │ ├── sql_builder.h
│ │ ├── sqltest.conf
│ │ ├── sqltest.cpp
│ │ ├── sqltest_dao.cpp
│ │ ├── sqltest_dao.h
│ │ ├── sqltest.h
│ │ ├── sqltest_main.cpp
│ │ ├── sqltest_main.h
│ │ ├── sqltest_param.cpp
│ │ ├── sqltest_param.h
│ │ ├── sqltest_pattern.cpp
│ │ ├── sqltest_pattern.h
│ │ ├── sqltest_schema.cpp
│ │ ├── sqltest_schema.h
│ │ ├── util.cpp
│ │ ├── util.h
│ │ ├── write_worker.cpp
│ │ └── write_worker.h
│ ├── sstable_builder
│ │ ├── com_taobao_mrsstable_SSTableBuilder.h
│ │ ├── Makefile.am
│ │ ├── sstable_builder.cpp
│ │ ├── sstable_builder.h
│ │ ├── sstable_writer.cpp
│ │ ├── sstable_writer.h
│ │ ├── test
│ │ │ ├── data_syntax.ini
│ │ │ ├── range.lst
│ │ │ └── schema.ini
│ │ └── test_sstable_builder.cpp
│ ├── stats.cpp
│ ├── stats.h
│ ├── svn-commit.2.tmp
│ ├── svn-commit.3.tmp
│ ├── sysbench
│ │ ├── acinclude.m4
│ │ ├── aclocal.m4
│ │ ├── autogen.sh
│ │ ├── build.sh
│ │ ├── ChangeLog
│ │ ├── config
│ │ │ ├── compile
│ │ │ ├── config.guess
│ │ │ ├── config.h.in
│ │ │ ├── config.sub
│ │ │ ├── depcomp
│ │ │ ├── install-sh
│ │ │ ├── ltmain.sh
│ │ │ ├── missing
│ │ │ └── mkinstalldirs
│ │ ├── configure
│ │ ├── configure.ac
│ │ ├── COPYING
│ │ ├── doc
│ │ │ ├── Makefile.am
│ │ │ ├── Makefile.in
│ │ │ ├── manual.xml
│ │ │ └── xsl
│ │ │ ├── catalog.xml.in
│ │ │ ├── Makefile.am
│ │ │ ├── Makefile.in
│ │ │ ├── xhtml-chunk.xsl
│ │ │ ├── xhtml-common.xsl
│ │ │ └── xhtml.xsl
│ │ ├── INSTALL
│ │ ├── install-sh
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── missing
│ │ ├── mkinstalldirs
│ │ ├── README
│ │ ├── README-WIN.txt
│ │ ├── sysbench
│ │ │ ├── clientcommon
│ │ │ │ ├── basatomdefs.h
│ │ │ │ ├── basinaddr.c
│ │ │ │ ├── basinaddr.h
│ │ │ │ ├── bassockudp.c
│ │ │ │ ├── bassockudp.h
│ │ │ │ ├── basthr.c
│ │ │ │ ├── basthr.h
│ │ │ │ ├── callbackRegistry.cc
│ │ │ │ ├── callbackRegistry.h
│ │ │ │ ├── Makefile
│ │ │ │ ├── mkversion.sh
│ │ │ │ ├── simonClient.cc
│ │ │ │ ├── simonClient.h
│ │ │ │ ├── simonContext.cc
│ │ │ │ ├── simonContext.h
│ │ │ │ ├── simonPacket.cc
│ │ │ │ ├── simonPacket.h
│ │ │ │ ├── simonSession.cc
│ │ │ │ ├── simonSession.h
│ │ │ │ ├── simonUtils.h
│ │ │ │ └── version.ic
│ │ │ ├── CMakeLists.txt
│ │ │ ├── db_driver.c
│ │ │ ├── db_driver.h
│ │ │ ├── drivers
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── mysql
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── drv_mysql.c
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ └── Makefile.in
│ │ │ │ ├── oracle
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── drv_oracle.c
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ └── Makefile.in
│ │ │ │ └── pgsql
│ │ │ │ ├── CMakeLists.txt
│ │ │ │ ├── drv_pgsql.c
│ │ │ │ ├── Makefile.am
│ │ │ │ └── Makefile.in
│ │ │ ├── fin.sql
│ │ │ ├── libs
│ │ │ │ ├── SimonPlugin-1.1.1.jar
│ │ │ │ └── SimonTool.jar
│ │ │ ├── Makefile.am
│ │ │ ├── Makefile.in
│ │ │ ├── oltp.sql
│ │ │ ├── sb_list.h
│ │ │ ├── sb_logger.c
│ │ │ ├── sb_logger.h
│ │ │ ├── sb_options.c
│ │ │ ├── sb_options.h
│ │ │ ├── sbtest.sql
│ │ │ ├── sb_timer.c
│ │ │ ├── sb_timer.h
│ │ │ ├── sb_win.c
│ │ │ ├── sb_win.h
│ │ │ ├── sysbench.c
│ │ │ ├── sysbench.h
│ │ │ ├── table.sql
│ │ │ ├── tests
│ │ │ │ ├── cpu
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── Makefile.in
│ │ │ │ │ └── sb_cpu.c
│ │ │ │ ├── fileio
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── crc32.c
│ │ │ │ │ ├── crc32.h
│ │ │ │ │ ├── crc32tbl.h
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── Makefile.in
│ │ │ │ │ └── sb_fileio.c
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── memory
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── Makefile.in
│ │ │ │ │ └── sb_memory.c
│ │ │ │ ├── mutex
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── Makefile.in
│ │ │ │ │ └── sb_mutex.c
│ │ │ │ ├── oltp
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── ConvertUTF.c
│ │ │ │ │ ├── ConvertUTF.h
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── Makefile.in
│ │ │ │ │ ├── sb_oltp.c
│ │ │ │ │ └── SimpleIni.h
│ │ │ │ ├── sb_cpu.h
│ │ │ │ ├── sb_fileio.h
│ │ │ │ ├── sb_memory.h
│ │ │ │ ├── sb_mutex.h
│ │ │ │ ├── sb_oltp.h
│ │ │ │ ├── sb_threads.h
│ │ │ │ ├── sb_trx.h
│ │ │ │ ├── threads
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── Makefile.in
│ │ │ │ │ └── sb_threads.c
│ │ │ │ └── trx
│ │ │ │ ├── CMakeLists.txt
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.in
│ │ │ │ └── sb_trx.c
│ │ │ ├── trxtestxml
│ │ │ │ ├── Makefile
│ │ │ │ ├── simon_trxtest.cc
│ │ │ │ ├── simon_trxtest.h
│ │ │ │ └── simon_trxtest.xml
│ │ │ └── xmlconfig
│ │ │ ├── BlurbSwapper.h
│ │ │ ├── Makefile
│ │ │ ├── simon_sysbench.cc
│ │ │ ├── simon_sysbench.h
│ │ │ └── simon_sysbench.xml
│ │ └── TODO
│ ├── syschecker
│ │ ├── client
│ │ │ ├── Makefile.am
│ │ │ ├── ob_base_client.cpp
│ │ │ ├── ob_base_client.h
│ │ │ ├── ob_client.cpp
│ │ │ ├── ob_client.h
│ │ │ ├── ob_server_manager.cpp
│ │ │ ├── ob_server_manager.h
│ │ │ ├── ob_server_rpc.cpp
│ │ │ └── ob_server_rpc.h
│ │ ├── gen.sh
│ │ ├── main.cpp
│ │ ├── Makefile
│ │ ├── Makefile.am
│ │ ├── ob3.qushan.schema
│ │ ├── ob_read_worker.cpp
│ │ ├── ob_read_worker.h
│ │ ├── ob_syschecker.cpp
│ │ ├── ob_syschecker.h
│ │ ├── ob_syschecker_main.cpp
│ │ ├── ob_syschecker_main.h
│ │ ├── ob_syschecker_param.cpp
│ │ ├── ob_syschecker_param.h
│ │ ├── ob_syschecker_rule.cpp
│ │ ├── ob_syschecker_rule.h
│ │ ├── ob_syschecker_schema.cpp
│ │ ├── ob_syschecker_schema.h
│ │ ├── ob_syschecker_stat.cpp
│ │ ├── ob_syschecker_stat.h
│ │ ├── ob_write_worker.cpp
│ │ ├── ob_write_worker.h
│ │ ├── schema.ini
│ │ ├── stress.sh
│ │ ├── syschecker.conf
│ │ ├── syschecker.conf.template
│ │ ├── syschecker.py
│ │ ├── syschecker.schema
│ │ └── test_schema.cpp
│ ├── sysctl.conf
│ ├── test_client.cpp
│ ├── test_disk_path.cpp
│ ├── test_manager.cpp
│ ├── testsql
│ │ ├── com
│ │ │ └── etao
│ │ │ └── obtest
│ │ │ ├── connector
│ │ │ │ ├── BaseTest.class
│ │ │ │ ├── Parser.class
│ │ │ │ ├── SQLOperation.class
│ │ │ │ ├── Statement.class
│ │ │ │ ├── StatementType.class
│ │ │ │ └── Test.class
│ │ │ └── utility
│ │ │ └── PGSQLConnector.class
│ │ ├── commons-logging-1.1.1.jar
│ │ ├── etc
│ │ │ └── pgsql.properties
│ │ ├── frame.jar
│ │ ├── log
│ │ │ ├── obtf.log
│ │ │ ├── obtf.log.2012-06-26
│ │ │ └── obtf.log.2012-06-27
│ │ ├── log4j-1.2.15.jar
│ │ ├── log4j.properties
│ │ ├── postgresql-9.1-901.jdbc3.jar
│ │ ├── r
│ │ │ ├── insert_bind_date_select_bind_date.result
│ │ │ ├── insert_bind_date_select_bind_date.result.executeResult
│ │ │ ├── insert_bind_date_select_notbind_date.result
│ │ │ ├── insert_bind_date_select_notbind_date.result.executeResult
│ │ │ ├── insert_bind_int_select_bind_int.result
│ │ │ ├── insert_bind_int_select_bind_int.result.executeResult
│ │ │ ├── insert_bind_int_select_notbind_int.result
│ │ │ ├── insert_bind_int_select_notbind_int.result.executeResult
│ │ │ ├── insert_bind_varchar_select_bind_varchar.result
│ │ │ ├── insert_bind_varchar_select_bind_varchar.result.executeResult
│ │ │ ├── insert_delete_select_bind_int.result
│ │ │ ├── insert_delete_select_bind_int.result.executeResult
│ │ │ ├── insert_delete_select_bind_int_varchar_date.result
│ │ │ ├── insert_delete_select_bind_int_varchar_date.result.executeResult
│ │ │ ├── insert_delete_select_bind_timestamp.result
│ │ │ ├── insert_delete_select_bind_timestamp.result.executeResult
│ │ │ ├── insert_delete_select_bind_varchar.result
│ │ │ ├── insert_delete_select_bind_varchar.result.executeResult
│ │ │ ├── insert_notbind_date_select_bind_date.result
│ │ │ ├── insert_notbind_date_select_bind_date.result.executeResult
│ │ │ ├── insert_notbind_int_select_bind_int.result
│ │ │ ├── insert_notbind_int_select_bind_int.result.executeResult
│ │ │ ├── insert_notbind_int_select_notbind_int.result
│ │ │ └── insert_notbind_int_select_notbind_int.result.executeResult
│ │ ├── r2
│ │ │ ├── insert_delete_select_bind_int_varchar_date.result
│ │ │ ├── insert_delete_select_bind_int_varchar_date.result.executeResult
│ │ │ ├── insert_select_bind_int_varchar_date.result.diff
│ │ │ ├── insert_select_bind_int_varchar_date.result.executeResult
│ │ │ ├── insert_select_bind_int_varchar.result
│ │ │ └── insert_select_bind_int_varchar.result.executeResult
│ │ ├── runtest.sh
│ │ ├── slf4j-api-1.4.3.jar
│ │ ├── slf4j-log4j12-1.4.3.jar
│ │ ├── t
│ │ │ ├── insert_bind_date_select_bind_date.test
│ │ │ ├── insert_bind_date_select_notbind_date.test
│ │ │ ├── insert_bind_int_select_bind_int.test
│ │ │ ├── insert_bind_int_select_notbind_int.test
│ │ │ ├── insert_bind_varchar_select_bind_varchar.test
│ │ │ ├── insert_delete_select_bind_int.test
│ │ │ ├── insert_delete_select_bind_int_varchar_date.test
│ │ │ ├── insert_delete_select_bind_timestamp.test
│ │ │ ├── insert_delete_select_bind_varchar.test
│ │ │ ├── insert_notbind_date_select_bind_date.test
│ │ │ ├── insert_notbind_int_select_bind_int.test
│ │ │ └── insert_notbind_int_select_notbind_int.test
│ │ ├── t2
│ │ │ ├── insert_delete_select_bind_int_varchar_date.test
│ │ │ └── insert_select_bind_int_varchar.test
│ │ └── verify.sh
│ ├── test_suite
│ │ ├── Makefile.am
│ │ ├── suite.c
│ │ ├── suite_cntl.c
│ │ ├── suite_config
│ │ └── test.c
│ ├── tpcc-mysql
│ │ ├── add_fkey_idx.sql
│ │ ├── count.sql
│ │ ├── create_table.sql
│ │ ├── create_table.sql.bk
│ │ ├── drop_cons.sql
│ │ ├── load.sh
│ │ ├── README
│ │ ├── run.sh
│ │ ├── schema2
│ │ │ ├── add_fkey_idx.sql
│ │ │ ├── count.sql
│ │ │ ├── create_table.sql
│ │ │ └── drop_cons.sql
│ │ ├── scripts
│ │ │ ├── 2instances
│ │ │ │ └── run.sh
│ │ │ ├── anal.full.sh
│ │ │ ├── analyze_checkpoint.sh
│ │ │ ├── analyze_checkpoint_xtradb1.sh
│ │ │ ├── analyze_checkpoint_xtradb.sh
│ │ │ ├── analyze_dirty.sh
│ │ │ ├── analyze_evicted.sh
│ │ │ ├── analyze_flushed_innodb.sh
│ │ │ ├── analyze_flushed.sh
│ │ │ ├── analyze_min.sh
│ │ │ ├── analyze_modified.sh
│ │ │ ├── analyzeR.sh
│ │ │ ├── analyze.sh
│ │ │ ├── flashcache_stat.sh
│ │ │ ├── innodb_stat.sh
│ │ │ ├── memlock
│ │ │ ├── memlock.c
│ │ │ ├── multi-instances
│ │ │ │ └── runX.sh
│ │ │ ├── parse_trx.py
│ │ │ ├── remote
│ │ │ │ └── runX.sh
│ │ │ ├── run_no_backup.sh
│ │ │ ├── run.sh
│ │ │ ├── runX.sh
│ │ │ └── virident_stat.sh
│ │ └── src
│ │ ├── delivery.c
│ │ ├── driver.c
│ │ ├── load.c
│ │ ├── main.c
│ │ ├── Makefile
│ │ ├── neword.c
│ │ ├── ordstat.c
│ │ ├── parse_port.h
│ │ ├── payment.c
│ │ ├── rthist.c
│ │ ├── rthist.h
│ │ ├── sequence.c
│ │ ├── sequence.h
│ │ ├── slev.c
│ │ ├── spt_proc.c
│ │ ├── spt_proc.h
│ │ ├── support.c
│ │ ├── tpc.h
│ │ └── trans_if.h
│ ├── ups_admin.cpp
│ └── ups_init.sh
└── rpm
├── cow-btree-master.zip
├── oceanbase_client-master.zip
└── oceanbase-olap-master.zip
109 directories, 1309 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论