修改三张子表的common_direction字段类型为Nullable(Int64)

This commit is contained in:
houjinchuan
2022-07-14 15:14:37 +08:00
parent 81c0741841
commit 2832a8ba96

View File

@@ -33,3 +33,16 @@ ALTER table tsg_galaxy_v3.gtpc_record on cluster ck_query add column IF NOT EXI
ALTER table tsg_galaxy_v3.voip_record_local on cluster ck_cluster add column IF NOT EXISTS common_app_identify_info String after common_userdefine_app_name;
ALTER table tsg_galaxy_v3.voip_record on cluster ck_cluster add column IF NOT EXISTS common_app_identify_info String after common_userdefine_app_name;
ALTER table tsg_galaxy_v3.voip_record on cluster ck_query add column IF NOT EXISTS common_app_identify_info String after common_userdefine_app_name;
ALTER table tsg_galaxy_v3.session_record_common_client_ip_local ON CLUSTER ck_cluster MODIFY column IF EXISTS common_direction Nullable(Int64);
ALTER table tsg_galaxy_v3.session_record_common_client_ip ON CLUSTER ck_cluster MODIFY column IF EXISTS common_direction Nullable(Int64);
ALTER table tsg_galaxy_v3.session_record_common_client_ip ON CLUSTER ck_query MODIFY column IF EXISTS common_direction Nullable(Int64);
ALTER table tsg_galaxy_v3.session_record_common_server_ip_local ON CLUSTER ck_cluster MODIFY column IF EXISTS common_direction Nullable(Int64);
ALTER table tsg_galaxy_v3.session_record_common_server_ip ON CLUSTER ck_cluster MODIFY column IF EXISTS common_direction Nullable(Int64);
ALTER table tsg_galaxy_v3.session_record_common_server_ip ON CLUSTER ck_query MODIFY column IF EXISTS common_direction Nullable(Int64);
ALTER table tsg_galaxy_v3.session_record_http_domain_local ON CLUSTER ck_cluster MODIFY column IF EXISTS common_direction Nullable(Int64);
ALTER table tsg_galaxy_v3.session_record_http_domain ON CLUSTER ck_cluster MODIFY column IF EXISTS common_direction Nullable(Int64);
ALTER table tsg_galaxy_v3.session_record_http_domain ON CLUSTER ck_query MODIFY column IF EXISTS common_direction Nullable(Int64);