[FEAT MERGE] materialized view
This commit is contained in:
@ -549,6 +549,14 @@ public:
|
||||
static int all_tenant_snapshot_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_tenant_snapshot_ls_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_tenant_snapshot_ls_replica_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_mlog_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_mview_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_mview_refresh_stats_sys_defaults_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_mview_refresh_stats_params_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_mview_refresh_run_stats_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_mview_refresh_stats_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_mview_refresh_change_stats_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_mview_refresh_stmt_stats_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_dbms_lock_allocated_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int wr_control_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_tenant_event_history_schema(share::schema::ObTableSchema &table_schema);
|
||||
@ -960,6 +968,14 @@ public:
|
||||
static int all_virtual_tenant_snapshot_ls_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_virtual_tenant_snapshot_ls_replica_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_virtual_tablet_buffer_info_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_virtual_mlog_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_virtual_mview_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_virtual_mview_refresh_stats_sys_defaults_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_virtual_mview_refresh_stats_params_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_virtual_mview_refresh_run_stats_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_virtual_mview_refresh_stats_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_virtual_mview_refresh_change_stats_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_virtual_mview_refresh_stmt_stats_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_virtual_wr_control_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_virtual_tenant_event_history_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_virtual_balance_task_helper_schema(share::schema::ObTableSchema &table_schema);
|
||||
@ -1213,6 +1229,14 @@ public:
|
||||
static int all_virtual_timestamp_service_ora_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_virtual_ls_log_restore_status_ora_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_virtual_tenant_parameter_ora_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_virtual_mlog_real_agent_ora_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_virtual_mview_real_agent_ora_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_virtual_mview_refresh_stats_sys_defaults_real_agent_ora_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_virtual_mview_refresh_stats_params_real_agent_ora_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_virtual_mview_refresh_run_stats_real_agent_ora_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_virtual_mview_refresh_stats_real_agent_ora_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_virtual_mview_refresh_change_stats_real_agent_ora_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_virtual_mview_refresh_stmt_stats_real_agent_ora_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_virtual_dbms_lock_allocated_real_agent_ora_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_virtual_wr_control_ora_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_virtual_tenant_event_history_ora_schema(share::schema::ObTableSchema &table_schema);
|
||||
@ -1576,6 +1600,22 @@ public:
|
||||
static int v_ob_ls_log_restore_status_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int cdb_ob_external_table_files_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int dba_db_links_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int cdb_ob_mlogs_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int cdb_ob_mviews_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int cdb_ob_mview_refresh_stats_sys_defaults_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int cdb_ob_mview_refresh_stats_params_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int cdb_ob_mview_refresh_run_stats_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int cdb_ob_mview_refresh_stats_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int cdb_ob_mview_refresh_change_stats_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int cdb_ob_mview_refresh_stmt_stats_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int dba_ob_mlogs_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int dba_ob_mviews_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int dba_ob_mview_refresh_stats_sys_defaults_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int dba_ob_mview_refresh_stats_params_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int dba_ob_mview_refresh_run_stats_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int dba_ob_mview_refresh_stats_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int dba_ob_mview_refresh_change_stats_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int dba_ob_mview_refresh_stmt_stats_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int dba_wr_control_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int cdb_wr_control_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int dba_ob_ls_history_schema(share::schema::ObTableSchema &table_schema);
|
||||
@ -1848,6 +1888,14 @@ public:
|
||||
static int gv_sql_join_filter_ora_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int v_sql_join_filter_ora_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int dba_ob_table_stat_stale_info_ora_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int dba_ob_mlogs_ora_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int dba_ob_mviews_ora_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int dba_ob_mview_refresh_stats_sys_defaults_ora_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int dba_ob_mview_refresh_stats_params_ora_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int dba_ob_mview_refresh_run_stats_ora_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int dba_ob_mview_refresh_stats_ora_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int dba_ob_mview_refresh_change_stats_ora_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int dba_ob_mview_refresh_stmt_stats_ora_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int dbms_lock_allocated_ora_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int dba_wr_control_ora_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int dba_ob_ls_history_ora_schema(share::schema::ObTableSchema &table_schema);
|
||||
@ -2289,6 +2337,14 @@ public:
|
||||
static int all_tenant_snapshot_aux_lob_meta_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_tenant_snapshot_ls_aux_lob_meta_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_tenant_snapshot_ls_replica_aux_lob_meta_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_mlog_aux_lob_meta_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_mview_aux_lob_meta_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_mview_refresh_stats_sys_defaults_aux_lob_meta_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_mview_refresh_stats_params_aux_lob_meta_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_mview_refresh_run_stats_aux_lob_meta_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_mview_refresh_stats_aux_lob_meta_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_mview_refresh_change_stats_aux_lob_meta_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_mview_refresh_stmt_stats_aux_lob_meta_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_dbms_lock_allocated_aux_lob_meta_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int wr_control_aux_lob_meta_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_tenant_event_history_aux_lob_meta_schema(share::schema::ObTableSchema &table_schema);
|
||||
@ -2563,6 +2619,14 @@ public:
|
||||
static int all_tenant_snapshot_aux_lob_piece_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_tenant_snapshot_ls_aux_lob_piece_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_tenant_snapshot_ls_replica_aux_lob_piece_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_mlog_aux_lob_piece_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_mview_aux_lob_piece_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_mview_refresh_stats_sys_defaults_aux_lob_piece_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_mview_refresh_stats_params_aux_lob_piece_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_mview_refresh_run_stats_aux_lob_piece_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_mview_refresh_stats_aux_lob_piece_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_mview_refresh_change_stats_aux_lob_piece_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_mview_refresh_stmt_stats_aux_lob_piece_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_dbms_lock_allocated_aux_lob_piece_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int wr_control_aux_lob_piece_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_tenant_event_history_aux_lob_piece_schema(share::schema::ObTableSchema &table_schema);
|
||||
@ -2770,6 +2834,9 @@ public:
|
||||
static int all_dbms_lock_allocated_idx_dbms_lock_allocated_expiration_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_kv_ttl_task_idx_kv_ttl_task_table_id_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_kv_ttl_task_history_idx_kv_ttl_task_history_upd_time_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_mview_refresh_run_stats_idx_mview_refresh_run_stats_num_mvs_current_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_mview_refresh_stats_idx_mview_refresh_stats_end_time_schema(share::schema::ObTableSchema &table_schema);
|
||||
static int all_mview_refresh_stats_idx_mview_refresh_stats_mview_end_time_schema(share::schema::ObTableSchema &table_schema);
|
||||
|
||||
private:
|
||||
DISALLOW_COPY_AND_ASSIGN(ObInnerTableSchema);
|
||||
@ -3042,6 +3109,14 @@ const schema_create_func sys_table_schema_creators [] = {
|
||||
ObInnerTableSchema::all_tenant_snapshot_schema,
|
||||
ObInnerTableSchema::all_tenant_snapshot_ls_schema,
|
||||
ObInnerTableSchema::all_tenant_snapshot_ls_replica_schema,
|
||||
ObInnerTableSchema::all_mlog_schema,
|
||||
ObInnerTableSchema::all_mview_schema,
|
||||
ObInnerTableSchema::all_mview_refresh_stats_sys_defaults_schema,
|
||||
ObInnerTableSchema::all_mview_refresh_stats_params_schema,
|
||||
ObInnerTableSchema::all_mview_refresh_run_stats_schema,
|
||||
ObInnerTableSchema::all_mview_refresh_stats_schema,
|
||||
ObInnerTableSchema::all_mview_refresh_change_stats_schema,
|
||||
ObInnerTableSchema::all_mview_refresh_stmt_stats_schema,
|
||||
ObInnerTableSchema::all_dbms_lock_allocated_schema,
|
||||
ObInnerTableSchema::wr_control_schema,
|
||||
ObInnerTableSchema::all_tenant_event_history_schema,
|
||||
@ -3456,6 +3531,14 @@ const schema_create_func virtual_table_schema_creators [] = {
|
||||
ObInnerTableSchema::all_virtual_tenant_snapshot_ls_schema,
|
||||
ObInnerTableSchema::all_virtual_tenant_snapshot_ls_replica_schema,
|
||||
ObInnerTableSchema::all_virtual_tablet_buffer_info_schema,
|
||||
ObInnerTableSchema::all_virtual_mlog_schema,
|
||||
ObInnerTableSchema::all_virtual_mview_schema,
|
||||
ObInnerTableSchema::all_virtual_mview_refresh_stats_sys_defaults_schema,
|
||||
ObInnerTableSchema::all_virtual_mview_refresh_stats_params_schema,
|
||||
ObInnerTableSchema::all_virtual_mview_refresh_run_stats_schema,
|
||||
ObInnerTableSchema::all_virtual_mview_refresh_stats_schema,
|
||||
ObInnerTableSchema::all_virtual_mview_refresh_change_stats_schema,
|
||||
ObInnerTableSchema::all_virtual_mview_refresh_stmt_stats_schema,
|
||||
ObInnerTableSchema::all_virtual_wr_control_schema,
|
||||
ObInnerTableSchema::all_virtual_tenant_event_history_schema,
|
||||
ObInnerTableSchema::all_virtual_balance_task_helper_schema,
|
||||
@ -3719,6 +3802,14 @@ const schema_create_func virtual_table_schema_creators [] = {
|
||||
ObInnerTableSchema::all_virtual_timestamp_service_ora_schema,
|
||||
ObInnerTableSchema::all_virtual_ls_log_restore_status_ora_schema,
|
||||
ObInnerTableSchema::all_virtual_tenant_parameter_ora_schema,
|
||||
ObInnerTableSchema::all_virtual_mlog_real_agent_ora_schema,
|
||||
ObInnerTableSchema::all_virtual_mview_real_agent_ora_schema,
|
||||
ObInnerTableSchema::all_virtual_mview_refresh_stats_sys_defaults_real_agent_ora_schema,
|
||||
ObInnerTableSchema::all_virtual_mview_refresh_stats_params_real_agent_ora_schema,
|
||||
ObInnerTableSchema::all_virtual_mview_refresh_run_stats_real_agent_ora_schema,
|
||||
ObInnerTableSchema::all_virtual_mview_refresh_stats_real_agent_ora_schema,
|
||||
ObInnerTableSchema::all_virtual_mview_refresh_change_stats_real_agent_ora_schema,
|
||||
ObInnerTableSchema::all_virtual_mview_refresh_stmt_stats_real_agent_ora_schema,
|
||||
ObInnerTableSchema::all_virtual_dbms_lock_allocated_real_agent_ora_schema,
|
||||
ObInnerTableSchema::all_virtual_wr_control_ora_schema,
|
||||
ObInnerTableSchema::all_virtual_tenant_event_history_ora_schema,
|
||||
@ -4166,6 +4257,22 @@ const schema_create_func sys_view_schema_creators [] = {
|
||||
ObInnerTableSchema::v_ob_ls_log_restore_status_schema,
|
||||
ObInnerTableSchema::cdb_ob_external_table_files_schema,
|
||||
ObInnerTableSchema::dba_db_links_schema,
|
||||
ObInnerTableSchema::cdb_ob_mlogs_schema,
|
||||
ObInnerTableSchema::cdb_ob_mviews_schema,
|
||||
ObInnerTableSchema::cdb_ob_mview_refresh_stats_sys_defaults_schema,
|
||||
ObInnerTableSchema::cdb_ob_mview_refresh_stats_params_schema,
|
||||
ObInnerTableSchema::cdb_ob_mview_refresh_run_stats_schema,
|
||||
ObInnerTableSchema::cdb_ob_mview_refresh_stats_schema,
|
||||
ObInnerTableSchema::cdb_ob_mview_refresh_change_stats_schema,
|
||||
ObInnerTableSchema::cdb_ob_mview_refresh_stmt_stats_schema,
|
||||
ObInnerTableSchema::dba_ob_mlogs_schema,
|
||||
ObInnerTableSchema::dba_ob_mviews_schema,
|
||||
ObInnerTableSchema::dba_ob_mview_refresh_stats_sys_defaults_schema,
|
||||
ObInnerTableSchema::dba_ob_mview_refresh_stats_params_schema,
|
||||
ObInnerTableSchema::dba_ob_mview_refresh_run_stats_schema,
|
||||
ObInnerTableSchema::dba_ob_mview_refresh_stats_schema,
|
||||
ObInnerTableSchema::dba_ob_mview_refresh_change_stats_schema,
|
||||
ObInnerTableSchema::dba_ob_mview_refresh_stmt_stats_schema,
|
||||
ObInnerTableSchema::dba_wr_control_schema,
|
||||
ObInnerTableSchema::cdb_wr_control_schema,
|
||||
ObInnerTableSchema::dba_ob_ls_history_schema,
|
||||
@ -4438,6 +4545,14 @@ const schema_create_func sys_view_schema_creators [] = {
|
||||
ObInnerTableSchema::gv_sql_join_filter_ora_schema,
|
||||
ObInnerTableSchema::v_sql_join_filter_ora_schema,
|
||||
ObInnerTableSchema::dba_ob_table_stat_stale_info_ora_schema,
|
||||
ObInnerTableSchema::dba_ob_mlogs_ora_schema,
|
||||
ObInnerTableSchema::dba_ob_mviews_ora_schema,
|
||||
ObInnerTableSchema::dba_ob_mview_refresh_stats_sys_defaults_ora_schema,
|
||||
ObInnerTableSchema::dba_ob_mview_refresh_stats_params_ora_schema,
|
||||
ObInnerTableSchema::dba_ob_mview_refresh_run_stats_ora_schema,
|
||||
ObInnerTableSchema::dba_ob_mview_refresh_stats_ora_schema,
|
||||
ObInnerTableSchema::dba_ob_mview_refresh_change_stats_ora_schema,
|
||||
ObInnerTableSchema::dba_ob_mview_refresh_stmt_stats_ora_schema,
|
||||
ObInnerTableSchema::dbms_lock_allocated_ora_schema,
|
||||
ObInnerTableSchema::dba_wr_control_ora_schema,
|
||||
ObInnerTableSchema::dba_ob_ls_history_ora_schema,
|
||||
@ -4727,6 +4842,9 @@ const schema_create_func sys_index_table_schema_creators [] = {
|
||||
ObInnerTableSchema::all_dbms_lock_allocated_idx_dbms_lock_allocated_expiration_schema,
|
||||
ObInnerTableSchema::all_kv_ttl_task_idx_kv_ttl_task_table_id_schema,
|
||||
ObInnerTableSchema::all_kv_ttl_task_history_idx_kv_ttl_task_history_upd_time_schema,
|
||||
ObInnerTableSchema::all_mview_refresh_run_stats_idx_mview_refresh_run_stats_num_mvs_current_schema,
|
||||
ObInnerTableSchema::all_mview_refresh_stats_idx_mview_refresh_stats_end_time_schema,
|
||||
ObInnerTableSchema::all_mview_refresh_stats_idx_mview_refresh_stats_mview_end_time_schema,
|
||||
NULL,};
|
||||
|
||||
const schema_create_func information_schema_table_schema_creators[] = {
|
||||
@ -4973,6 +5091,14 @@ const uint64_t tenant_space_tables [] = {
|
||||
OB_ALL_TENANT_SNAPSHOT_TID,
|
||||
OB_ALL_TENANT_SNAPSHOT_LS_TID,
|
||||
OB_ALL_TENANT_SNAPSHOT_LS_REPLICA_TID,
|
||||
OB_ALL_MLOG_TID,
|
||||
OB_ALL_MVIEW_TID,
|
||||
OB_ALL_MVIEW_REFRESH_STATS_SYS_DEFAULTS_TID,
|
||||
OB_ALL_MVIEW_REFRESH_STATS_PARAMS_TID,
|
||||
OB_ALL_MVIEW_REFRESH_RUN_STATS_TID,
|
||||
OB_ALL_MVIEW_REFRESH_STATS_TID,
|
||||
OB_ALL_MVIEW_REFRESH_CHANGE_STATS_TID,
|
||||
OB_ALL_MVIEW_REFRESH_STMT_STATS_TID,
|
||||
OB_ALL_DBMS_LOCK_ALLOCATED_TID,
|
||||
OB_WR_CONTROL_TID,
|
||||
OB_ALL_TENANT_EVENT_HISTORY_TID,
|
||||
@ -5181,6 +5307,14 @@ const uint64_t tenant_space_tables [] = {
|
||||
OB_ALL_VIRTUAL_TENANT_SNAPSHOT_TID,
|
||||
OB_ALL_VIRTUAL_TENANT_SNAPSHOT_LS_TID,
|
||||
OB_ALL_VIRTUAL_TENANT_SNAPSHOT_LS_REPLICA_TID,
|
||||
OB_ALL_VIRTUAL_MLOG_TID,
|
||||
OB_ALL_VIRTUAL_MVIEW_TID,
|
||||
OB_ALL_VIRTUAL_MVIEW_REFRESH_STATS_SYS_DEFAULTS_TID,
|
||||
OB_ALL_VIRTUAL_MVIEW_REFRESH_STATS_PARAMS_TID,
|
||||
OB_ALL_VIRTUAL_MVIEW_REFRESH_RUN_STATS_TID,
|
||||
OB_ALL_VIRTUAL_MVIEW_REFRESH_STATS_TID,
|
||||
OB_ALL_VIRTUAL_MVIEW_REFRESH_CHANGE_STATS_TID,
|
||||
OB_ALL_VIRTUAL_MVIEW_REFRESH_STMT_STATS_TID,
|
||||
OB_ALL_VIRTUAL_WR_CONTROL_TID,
|
||||
OB_ALL_VIRTUAL_TENANT_EVENT_HISTORY_TID,
|
||||
OB_ALL_VIRTUAL_FLT_CONFIG_TID,
|
||||
@ -5438,6 +5572,14 @@ const uint64_t tenant_space_tables [] = {
|
||||
OB_ALL_VIRTUAL_TIMESTAMP_SERVICE_ORA_TID,
|
||||
OB_ALL_VIRTUAL_LS_LOG_RESTORE_STATUS_ORA_TID,
|
||||
OB_ALL_VIRTUAL_TENANT_PARAMETER_ORA_TID,
|
||||
OB_ALL_VIRTUAL_MLOG_REAL_AGENT_ORA_TID,
|
||||
OB_ALL_VIRTUAL_MVIEW_REAL_AGENT_ORA_TID,
|
||||
OB_ALL_VIRTUAL_MVIEW_REFRESH_STATS_SYS_DEFAULTS_REAL_AGENT_ORA_TID,
|
||||
OB_ALL_VIRTUAL_MVIEW_REFRESH_STATS_PARAMS_REAL_AGENT_ORA_TID,
|
||||
OB_ALL_VIRTUAL_MVIEW_REFRESH_RUN_STATS_REAL_AGENT_ORA_TID,
|
||||
OB_ALL_VIRTUAL_MVIEW_REFRESH_STATS_REAL_AGENT_ORA_TID,
|
||||
OB_ALL_VIRTUAL_MVIEW_REFRESH_CHANGE_STATS_REAL_AGENT_ORA_TID,
|
||||
OB_ALL_VIRTUAL_MVIEW_REFRESH_STMT_STATS_REAL_AGENT_ORA_TID,
|
||||
OB_ALL_VIRTUAL_DBMS_LOCK_ALLOCATED_REAL_AGENT_ORA_TID,
|
||||
OB_ALL_VIRTUAL_WR_CONTROL_ORA_TID,
|
||||
OB_ALL_VIRTUAL_TENANT_EVENT_HISTORY_ORA_TID,
|
||||
@ -5708,6 +5850,14 @@ const uint64_t tenant_space_tables [] = {
|
||||
OB_DBA_OB_TABLE_STAT_STALE_INFO_TID,
|
||||
OB_V_OB_LS_LOG_RESTORE_STATUS_TID,
|
||||
OB_DBA_DB_LINKS_TID,
|
||||
OB_DBA_OB_MLOGS_TID,
|
||||
OB_DBA_OB_MVIEWS_TID,
|
||||
OB_DBA_OB_MVIEW_REFRESH_STATS_SYS_DEFAULTS_TID,
|
||||
OB_DBA_OB_MVIEW_REFRESH_STATS_PARAMS_TID,
|
||||
OB_DBA_OB_MVIEW_REFRESH_RUN_STATS_TID,
|
||||
OB_DBA_OB_MVIEW_REFRESH_STATS_TID,
|
||||
OB_DBA_OB_MVIEW_REFRESH_CHANGE_STATS_TID,
|
||||
OB_DBA_OB_MVIEW_REFRESH_STMT_STATS_TID,
|
||||
OB_DBA_WR_CONTROL_TID,
|
||||
OB_DBA_OB_LS_HISTORY_TID,
|
||||
OB_DBA_OB_TENANT_EVENT_HISTORY_TID,
|
||||
@ -5964,6 +6114,14 @@ const uint64_t tenant_space_tables [] = {
|
||||
OB_GV_SQL_JOIN_FILTER_ORA_TID,
|
||||
OB_V_SQL_JOIN_FILTER_ORA_TID,
|
||||
OB_DBA_OB_TABLE_STAT_STALE_INFO_ORA_TID,
|
||||
OB_DBA_OB_MLOGS_ORA_TID,
|
||||
OB_DBA_OB_MVIEWS_ORA_TID,
|
||||
OB_DBA_OB_MVIEW_REFRESH_STATS_SYS_DEFAULTS_ORA_TID,
|
||||
OB_DBA_OB_MVIEW_REFRESH_STATS_PARAMS_ORA_TID,
|
||||
OB_DBA_OB_MVIEW_REFRESH_RUN_STATS_ORA_TID,
|
||||
OB_DBA_OB_MVIEW_REFRESH_STATS_ORA_TID,
|
||||
OB_DBA_OB_MVIEW_REFRESH_CHANGE_STATS_ORA_TID,
|
||||
OB_DBA_OB_MVIEW_REFRESH_STMT_STATS_ORA_TID,
|
||||
OB_DBMS_LOCK_ALLOCATED_ORA_TID,
|
||||
OB_DBA_WR_CONTROL_ORA_TID,
|
||||
OB_DBA_OB_LS_HISTORY_ORA_TID,
|
||||
@ -6241,6 +6399,9 @@ const uint64_t tenant_space_tables [] = {
|
||||
OB_ALL_DBMS_LOCK_ALLOCATED_IDX_DBMS_LOCK_ALLOCATED_EXPIRATION_TID,
|
||||
OB_ALL_KV_TTL_TASK_IDX_KV_TTL_TASK_TABLE_ID_TID,
|
||||
OB_ALL_KV_TTL_TASK_HISTORY_IDX_KV_TTL_TASK_HISTORY_UPD_TIME_TID,
|
||||
OB_ALL_MVIEW_REFRESH_RUN_STATS_IDX_MVIEW_REFRESH_RUN_STATS_NUM_MVS_CURRENT_TID,
|
||||
OB_ALL_MVIEW_REFRESH_STATS_IDX_MVIEW_REFRESH_STATS_END_TIME_TID,
|
||||
OB_ALL_MVIEW_REFRESH_STATS_IDX_MVIEW_REFRESH_STATS_MVIEW_END_TIME_TID,
|
||||
OB_ALL_VIRTUAL_TABLE_REAL_AGENT_ORA_IDX_DATA_TABLE_ID_REAL_AGENT_TID,
|
||||
OB_ALL_VIRTUAL_TABLE_REAL_AGENT_ORA_IDX_DB_TB_NAME_REAL_AGENT_TID,
|
||||
OB_ALL_VIRTUAL_TABLE_REAL_AGENT_ORA_IDX_TB_NAME_REAL_AGENT_TID,
|
||||
@ -6549,6 +6710,14 @@ const uint64_t tenant_space_tables [] = {
|
||||
OB_ALL_TENANT_SNAPSHOT_AUX_LOB_META_TID,
|
||||
OB_ALL_TENANT_SNAPSHOT_LS_AUX_LOB_META_TID,
|
||||
OB_ALL_TENANT_SNAPSHOT_LS_REPLICA_AUX_LOB_META_TID,
|
||||
OB_ALL_MLOG_AUX_LOB_META_TID,
|
||||
OB_ALL_MVIEW_AUX_LOB_META_TID,
|
||||
OB_ALL_MVIEW_REFRESH_STATS_SYS_DEFAULTS_AUX_LOB_META_TID,
|
||||
OB_ALL_MVIEW_REFRESH_STATS_PARAMS_AUX_LOB_META_TID,
|
||||
OB_ALL_MVIEW_REFRESH_RUN_STATS_AUX_LOB_META_TID,
|
||||
OB_ALL_MVIEW_REFRESH_STATS_AUX_LOB_META_TID,
|
||||
OB_ALL_MVIEW_REFRESH_CHANGE_STATS_AUX_LOB_META_TID,
|
||||
OB_ALL_MVIEW_REFRESH_STMT_STATS_AUX_LOB_META_TID,
|
||||
OB_ALL_DBMS_LOCK_ALLOCATED_AUX_LOB_META_TID,
|
||||
OB_WR_CONTROL_AUX_LOB_META_TID,
|
||||
OB_ALL_TENANT_EVENT_HISTORY_AUX_LOB_META_TID,
|
||||
@ -6801,6 +6970,14 @@ const uint64_t tenant_space_tables [] = {
|
||||
OB_ALL_TENANT_SNAPSHOT_AUX_LOB_PIECE_TID,
|
||||
OB_ALL_TENANT_SNAPSHOT_LS_AUX_LOB_PIECE_TID,
|
||||
OB_ALL_TENANT_SNAPSHOT_LS_REPLICA_AUX_LOB_PIECE_TID,
|
||||
OB_ALL_MLOG_AUX_LOB_PIECE_TID,
|
||||
OB_ALL_MVIEW_AUX_LOB_PIECE_TID,
|
||||
OB_ALL_MVIEW_REFRESH_STATS_SYS_DEFAULTS_AUX_LOB_PIECE_TID,
|
||||
OB_ALL_MVIEW_REFRESH_STATS_PARAMS_AUX_LOB_PIECE_TID,
|
||||
OB_ALL_MVIEW_REFRESH_RUN_STATS_AUX_LOB_PIECE_TID,
|
||||
OB_ALL_MVIEW_REFRESH_STATS_AUX_LOB_PIECE_TID,
|
||||
OB_ALL_MVIEW_REFRESH_CHANGE_STATS_AUX_LOB_PIECE_TID,
|
||||
OB_ALL_MVIEW_REFRESH_STMT_STATS_AUX_LOB_PIECE_TID,
|
||||
OB_ALL_DBMS_LOCK_ALLOCATED_AUX_LOB_PIECE_TID,
|
||||
OB_WR_CONTROL_AUX_LOB_PIECE_TID,
|
||||
OB_ALL_TENANT_EVENT_HISTORY_AUX_LOB_PIECE_TID,
|
||||
@ -7347,6 +7524,14 @@ const char* const tenant_space_table_names [] = {
|
||||
OB_ALL_TENANT_SNAPSHOT_TNAME,
|
||||
OB_ALL_TENANT_SNAPSHOT_LS_TNAME,
|
||||
OB_ALL_TENANT_SNAPSHOT_LS_REPLICA_TNAME,
|
||||
OB_ALL_MLOG_TNAME,
|
||||
OB_ALL_MVIEW_TNAME,
|
||||
OB_ALL_MVIEW_REFRESH_STATS_SYS_DEFAULTS_TNAME,
|
||||
OB_ALL_MVIEW_REFRESH_STATS_PARAMS_TNAME,
|
||||
OB_ALL_MVIEW_REFRESH_RUN_STATS_TNAME,
|
||||
OB_ALL_MVIEW_REFRESH_STATS_TNAME,
|
||||
OB_ALL_MVIEW_REFRESH_CHANGE_STATS_TNAME,
|
||||
OB_ALL_MVIEW_REFRESH_STMT_STATS_TNAME,
|
||||
OB_ALL_DBMS_LOCK_ALLOCATED_TNAME,
|
||||
OB_WR_CONTROL_TNAME,
|
||||
OB_ALL_TENANT_EVENT_HISTORY_TNAME,
|
||||
@ -7555,6 +7740,14 @@ const char* const tenant_space_table_names [] = {
|
||||
OB_ALL_VIRTUAL_TENANT_SNAPSHOT_TNAME,
|
||||
OB_ALL_VIRTUAL_TENANT_SNAPSHOT_LS_TNAME,
|
||||
OB_ALL_VIRTUAL_TENANT_SNAPSHOT_LS_REPLICA_TNAME,
|
||||
OB_ALL_VIRTUAL_MLOG_TNAME,
|
||||
OB_ALL_VIRTUAL_MVIEW_TNAME,
|
||||
OB_ALL_VIRTUAL_MVIEW_REFRESH_STATS_SYS_DEFAULTS_TNAME,
|
||||
OB_ALL_VIRTUAL_MVIEW_REFRESH_STATS_PARAMS_TNAME,
|
||||
OB_ALL_VIRTUAL_MVIEW_REFRESH_RUN_STATS_TNAME,
|
||||
OB_ALL_VIRTUAL_MVIEW_REFRESH_STATS_TNAME,
|
||||
OB_ALL_VIRTUAL_MVIEW_REFRESH_CHANGE_STATS_TNAME,
|
||||
OB_ALL_VIRTUAL_MVIEW_REFRESH_STMT_STATS_TNAME,
|
||||
OB_ALL_VIRTUAL_WR_CONTROL_TNAME,
|
||||
OB_ALL_VIRTUAL_TENANT_EVENT_HISTORY_TNAME,
|
||||
OB_ALL_VIRTUAL_FLT_CONFIG_TNAME,
|
||||
@ -7812,6 +8005,14 @@ const char* const tenant_space_table_names [] = {
|
||||
OB_ALL_VIRTUAL_TIMESTAMP_SERVICE_ORA_TNAME,
|
||||
OB_ALL_VIRTUAL_LS_LOG_RESTORE_STATUS_ORA_TNAME,
|
||||
OB_ALL_VIRTUAL_TENANT_PARAMETER_ORA_TNAME,
|
||||
OB_ALL_VIRTUAL_MLOG_REAL_AGENT_ORA_TNAME,
|
||||
OB_ALL_VIRTUAL_MVIEW_REAL_AGENT_ORA_TNAME,
|
||||
OB_ALL_VIRTUAL_MVIEW_REFRESH_STATS_SYS_DEFAULTS_REAL_AGENT_ORA_TNAME,
|
||||
OB_ALL_VIRTUAL_MVIEW_REFRESH_STATS_PARAMS_REAL_AGENT_ORA_TNAME,
|
||||
OB_ALL_VIRTUAL_MVIEW_REFRESH_RUN_STATS_REAL_AGENT_ORA_TNAME,
|
||||
OB_ALL_VIRTUAL_MVIEW_REFRESH_STATS_REAL_AGENT_ORA_TNAME,
|
||||
OB_ALL_VIRTUAL_MVIEW_REFRESH_CHANGE_STATS_REAL_AGENT_ORA_TNAME,
|
||||
OB_ALL_VIRTUAL_MVIEW_REFRESH_STMT_STATS_REAL_AGENT_ORA_TNAME,
|
||||
OB_ALL_VIRTUAL_DBMS_LOCK_ALLOCATED_REAL_AGENT_ORA_TNAME,
|
||||
OB_ALL_VIRTUAL_WR_CONTROL_ORA_TNAME,
|
||||
OB_ALL_VIRTUAL_TENANT_EVENT_HISTORY_ORA_TNAME,
|
||||
@ -8082,6 +8283,14 @@ const char* const tenant_space_table_names [] = {
|
||||
OB_DBA_OB_TABLE_STAT_STALE_INFO_TNAME,
|
||||
OB_V_OB_LS_LOG_RESTORE_STATUS_TNAME,
|
||||
OB_DBA_DB_LINKS_TNAME,
|
||||
OB_DBA_OB_MLOGS_TNAME,
|
||||
OB_DBA_OB_MVIEWS_TNAME,
|
||||
OB_DBA_OB_MVIEW_REFRESH_STATS_SYS_DEFAULTS_TNAME,
|
||||
OB_DBA_OB_MVIEW_REFRESH_STATS_PARAMS_TNAME,
|
||||
OB_DBA_OB_MVIEW_REFRESH_RUN_STATS_TNAME,
|
||||
OB_DBA_OB_MVIEW_REFRESH_STATS_TNAME,
|
||||
OB_DBA_OB_MVIEW_REFRESH_CHANGE_STATS_TNAME,
|
||||
OB_DBA_OB_MVIEW_REFRESH_STMT_STATS_TNAME,
|
||||
OB_DBA_WR_CONTROL_TNAME,
|
||||
OB_DBA_OB_LS_HISTORY_TNAME,
|
||||
OB_DBA_OB_TENANT_EVENT_HISTORY_TNAME,
|
||||
@ -8338,6 +8547,14 @@ const char* const tenant_space_table_names [] = {
|
||||
OB_GV_SQL_JOIN_FILTER_ORA_TNAME,
|
||||
OB_V_SQL_JOIN_FILTER_ORA_TNAME,
|
||||
OB_DBA_OB_TABLE_STAT_STALE_INFO_ORA_TNAME,
|
||||
OB_DBA_OB_MLOGS_ORA_TNAME,
|
||||
OB_DBA_OB_MVIEWS_ORA_TNAME,
|
||||
OB_DBA_OB_MVIEW_REFRESH_STATS_SYS_DEFAULTS_ORA_TNAME,
|
||||
OB_DBA_OB_MVIEW_REFRESH_STATS_PARAMS_ORA_TNAME,
|
||||
OB_DBA_OB_MVIEW_REFRESH_RUN_STATS_ORA_TNAME,
|
||||
OB_DBA_OB_MVIEW_REFRESH_STATS_ORA_TNAME,
|
||||
OB_DBA_OB_MVIEW_REFRESH_CHANGE_STATS_ORA_TNAME,
|
||||
OB_DBA_OB_MVIEW_REFRESH_STMT_STATS_ORA_TNAME,
|
||||
OB_DBMS_LOCK_ALLOCATED_ORA_TNAME,
|
||||
OB_DBA_WR_CONTROL_ORA_TNAME,
|
||||
OB_DBA_OB_LS_HISTORY_ORA_TNAME,
|
||||
@ -8615,6 +8832,9 @@ const char* const tenant_space_table_names [] = {
|
||||
OB_ALL_DBMS_LOCK_ALLOCATED_IDX_DBMS_LOCK_ALLOCATED_EXPIRATION_TNAME,
|
||||
OB_ALL_KV_TTL_TASK_IDX_KV_TTL_TASK_TABLE_ID_TNAME,
|
||||
OB_ALL_KV_TTL_TASK_HISTORY_IDX_KV_TTL_TASK_HISTORY_UPD_TIME_TNAME,
|
||||
OB_ALL_MVIEW_REFRESH_RUN_STATS_IDX_MVIEW_REFRESH_RUN_STATS_NUM_MVS_CURRENT_TNAME,
|
||||
OB_ALL_MVIEW_REFRESH_STATS_IDX_MVIEW_REFRESH_STATS_END_TIME_TNAME,
|
||||
OB_ALL_MVIEW_REFRESH_STATS_IDX_MVIEW_REFRESH_STATS_MVIEW_END_TIME_TNAME,
|
||||
OB_ALL_VIRTUAL_TABLE_REAL_AGENT_ORA_IDX_DATA_TABLE_ID_REAL_AGENT_TNAME,
|
||||
OB_ALL_VIRTUAL_TABLE_REAL_AGENT_ORA_IDX_DB_TB_NAME_REAL_AGENT_TNAME,
|
||||
OB_ALL_VIRTUAL_TABLE_REAL_AGENT_ORA_IDX_TB_NAME_REAL_AGENT_TNAME,
|
||||
@ -8923,6 +9143,14 @@ const char* const tenant_space_table_names [] = {
|
||||
OB_ALL_TENANT_SNAPSHOT_AUX_LOB_META_TNAME,
|
||||
OB_ALL_TENANT_SNAPSHOT_LS_AUX_LOB_META_TNAME,
|
||||
OB_ALL_TENANT_SNAPSHOT_LS_REPLICA_AUX_LOB_META_TNAME,
|
||||
OB_ALL_MLOG_AUX_LOB_META_TNAME,
|
||||
OB_ALL_MVIEW_AUX_LOB_META_TNAME,
|
||||
OB_ALL_MVIEW_REFRESH_STATS_SYS_DEFAULTS_AUX_LOB_META_TNAME,
|
||||
OB_ALL_MVIEW_REFRESH_STATS_PARAMS_AUX_LOB_META_TNAME,
|
||||
OB_ALL_MVIEW_REFRESH_RUN_STATS_AUX_LOB_META_TNAME,
|
||||
OB_ALL_MVIEW_REFRESH_STATS_AUX_LOB_META_TNAME,
|
||||
OB_ALL_MVIEW_REFRESH_CHANGE_STATS_AUX_LOB_META_TNAME,
|
||||
OB_ALL_MVIEW_REFRESH_STMT_STATS_AUX_LOB_META_TNAME,
|
||||
OB_ALL_DBMS_LOCK_ALLOCATED_AUX_LOB_META_TNAME,
|
||||
OB_WR_CONTROL_AUX_LOB_META_TNAME,
|
||||
OB_ALL_TENANT_EVENT_HISTORY_AUX_LOB_META_TNAME,
|
||||
@ -9175,6 +9403,14 @@ const char* const tenant_space_table_names [] = {
|
||||
OB_ALL_TENANT_SNAPSHOT_AUX_LOB_PIECE_TNAME,
|
||||
OB_ALL_TENANT_SNAPSHOT_LS_AUX_LOB_PIECE_TNAME,
|
||||
OB_ALL_TENANT_SNAPSHOT_LS_REPLICA_AUX_LOB_PIECE_TNAME,
|
||||
OB_ALL_MLOG_AUX_LOB_PIECE_TNAME,
|
||||
OB_ALL_MVIEW_AUX_LOB_PIECE_TNAME,
|
||||
OB_ALL_MVIEW_REFRESH_STATS_SYS_DEFAULTS_AUX_LOB_PIECE_TNAME,
|
||||
OB_ALL_MVIEW_REFRESH_STATS_PARAMS_AUX_LOB_PIECE_TNAME,
|
||||
OB_ALL_MVIEW_REFRESH_RUN_STATS_AUX_LOB_PIECE_TNAME,
|
||||
OB_ALL_MVIEW_REFRESH_STATS_AUX_LOB_PIECE_TNAME,
|
||||
OB_ALL_MVIEW_REFRESH_CHANGE_STATS_AUX_LOB_PIECE_TNAME,
|
||||
OB_ALL_MVIEW_REFRESH_STMT_STATS_AUX_LOB_PIECE_TNAME,
|
||||
OB_ALL_DBMS_LOCK_ALLOCATED_AUX_LOB_PIECE_TNAME,
|
||||
OB_WR_CONTROL_AUX_LOB_PIECE_TNAME,
|
||||
OB_ALL_TENANT_EVENT_HISTORY_AUX_LOB_PIECE_TNAME,
|
||||
@ -11727,6 +11963,70 @@ LOBMapping const lob_aux_table_mappings [] = {
|
||||
ObInnerTableSchema::all_tenant_snapshot_ls_replica_aux_lob_piece_schema
|
||||
},
|
||||
|
||||
{
|
||||
OB_ALL_MLOG_TID,
|
||||
OB_ALL_MLOG_AUX_LOB_META_TID,
|
||||
OB_ALL_MLOG_AUX_LOB_PIECE_TID,
|
||||
ObInnerTableSchema::all_mlog_aux_lob_meta_schema,
|
||||
ObInnerTableSchema::all_mlog_aux_lob_piece_schema
|
||||
},
|
||||
|
||||
{
|
||||
OB_ALL_MVIEW_TID,
|
||||
OB_ALL_MVIEW_AUX_LOB_META_TID,
|
||||
OB_ALL_MVIEW_AUX_LOB_PIECE_TID,
|
||||
ObInnerTableSchema::all_mview_aux_lob_meta_schema,
|
||||
ObInnerTableSchema::all_mview_aux_lob_piece_schema
|
||||
},
|
||||
|
||||
{
|
||||
OB_ALL_MVIEW_REFRESH_STATS_SYS_DEFAULTS_TID,
|
||||
OB_ALL_MVIEW_REFRESH_STATS_SYS_DEFAULTS_AUX_LOB_META_TID,
|
||||
OB_ALL_MVIEW_REFRESH_STATS_SYS_DEFAULTS_AUX_LOB_PIECE_TID,
|
||||
ObInnerTableSchema::all_mview_refresh_stats_sys_defaults_aux_lob_meta_schema,
|
||||
ObInnerTableSchema::all_mview_refresh_stats_sys_defaults_aux_lob_piece_schema
|
||||
},
|
||||
|
||||
{
|
||||
OB_ALL_MVIEW_REFRESH_STATS_PARAMS_TID,
|
||||
OB_ALL_MVIEW_REFRESH_STATS_PARAMS_AUX_LOB_META_TID,
|
||||
OB_ALL_MVIEW_REFRESH_STATS_PARAMS_AUX_LOB_PIECE_TID,
|
||||
ObInnerTableSchema::all_mview_refresh_stats_params_aux_lob_meta_schema,
|
||||
ObInnerTableSchema::all_mview_refresh_stats_params_aux_lob_piece_schema
|
||||
},
|
||||
|
||||
{
|
||||
OB_ALL_MVIEW_REFRESH_RUN_STATS_TID,
|
||||
OB_ALL_MVIEW_REFRESH_RUN_STATS_AUX_LOB_META_TID,
|
||||
OB_ALL_MVIEW_REFRESH_RUN_STATS_AUX_LOB_PIECE_TID,
|
||||
ObInnerTableSchema::all_mview_refresh_run_stats_aux_lob_meta_schema,
|
||||
ObInnerTableSchema::all_mview_refresh_run_stats_aux_lob_piece_schema
|
||||
},
|
||||
|
||||
{
|
||||
OB_ALL_MVIEW_REFRESH_STATS_TID,
|
||||
OB_ALL_MVIEW_REFRESH_STATS_AUX_LOB_META_TID,
|
||||
OB_ALL_MVIEW_REFRESH_STATS_AUX_LOB_PIECE_TID,
|
||||
ObInnerTableSchema::all_mview_refresh_stats_aux_lob_meta_schema,
|
||||
ObInnerTableSchema::all_mview_refresh_stats_aux_lob_piece_schema
|
||||
},
|
||||
|
||||
{
|
||||
OB_ALL_MVIEW_REFRESH_CHANGE_STATS_TID,
|
||||
OB_ALL_MVIEW_REFRESH_CHANGE_STATS_AUX_LOB_META_TID,
|
||||
OB_ALL_MVIEW_REFRESH_CHANGE_STATS_AUX_LOB_PIECE_TID,
|
||||
ObInnerTableSchema::all_mview_refresh_change_stats_aux_lob_meta_schema,
|
||||
ObInnerTableSchema::all_mview_refresh_change_stats_aux_lob_piece_schema
|
||||
},
|
||||
|
||||
{
|
||||
OB_ALL_MVIEW_REFRESH_STMT_STATS_TID,
|
||||
OB_ALL_MVIEW_REFRESH_STMT_STATS_AUX_LOB_META_TID,
|
||||
OB_ALL_MVIEW_REFRESH_STMT_STATS_AUX_LOB_PIECE_TID,
|
||||
ObInnerTableSchema::all_mview_refresh_stmt_stats_aux_lob_meta_schema,
|
||||
ObInnerTableSchema::all_mview_refresh_stmt_stats_aux_lob_piece_schema
|
||||
},
|
||||
|
||||
{
|
||||
OB_ALL_DBMS_LOCK_ALLOCATED_TID,
|
||||
OB_ALL_DBMS_LOCK_ALLOCATED_AUX_LOB_META_TID,
|
||||
@ -11900,12 +12200,12 @@ static inline int get_sys_table_lob_aux_schema(const uint64_t tid,
|
||||
}
|
||||
|
||||
const int64_t OB_CORE_TABLE_COUNT = 4;
|
||||
const int64_t OB_SYS_TABLE_COUNT = 271;
|
||||
const int64_t OB_VIRTUAL_TABLE_COUNT = 755;
|
||||
const int64_t OB_SYS_VIEW_COUNT = 802;
|
||||
const int64_t OB_SYS_TENANT_TABLE_COUNT = 1833;
|
||||
const int64_t OB_SYS_TABLE_COUNT = 279;
|
||||
const int64_t OB_VIRTUAL_TABLE_COUNT = 771;
|
||||
const int64_t OB_SYS_VIEW_COUNT = 826;
|
||||
const int64_t OB_SYS_TENANT_TABLE_COUNT = 1881;
|
||||
const int64_t OB_CORE_SCHEMA_VERSION = 1;
|
||||
const int64_t OB_BOOTSTRAP_SCHEMA_VERSION = 1836;
|
||||
const int64_t OB_BOOTSTRAP_SCHEMA_VERSION = 1884;
|
||||
|
||||
} // end namespace share
|
||||
} // end namespace oceanbase
|
||||
|
||||
Reference in New Issue
Block a user