File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed
ydb/core/fq/libs/cloud_audit Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -65,7 +65,11 @@ std::string MapConnectionType(const FederatedQuery::ConnectionSetting::Connectio
65
65
return " Monitoring" ;
66
66
case FederatedQuery::ConnectionSetting::ConnectionCase::kPostgresqlCluster :
67
67
return " PostgreSQLCluster" ;
68
- default :
68
+ case FederatedQuery::ConnectionSetting::ConnectionCase::kGreenplumCluster :
69
+ return " GreenplumCluster" ;
70
+ case FederatedQuery::ConnectionSetting::ConnectionCase::kMysqlCluster :
71
+ return " MySQLCluster" ;
72
+ case FederatedQuery::ConnectionSetting::ConnectionCase::CONNECTION_NOT_SET:
69
73
Y_ENSURE (false , " Invalid connection case " << i32 (connectionCase));
70
74
}
71
75
}
@@ -76,8 +80,8 @@ std::string MapBindingType(const FederatedQuery::BindingSetting::BindingCase& bi
76
80
return " YdbDataStreams" ;
77
81
case FederatedQuery::BindingSetting::BindingSetting::kObjectStorage :
78
82
return " ObjectStorage" ;
79
- default :
80
- Y_ENSURE (false , " Invalid connection case " << i32 (bindingCase));
83
+ case FederatedQuery::BindingSetting::BindingSetting::BINDING_NOT_SET :
84
+ Y_ENSURE (false , " Invalid binding case " << i32 (bindingCase));
81
85
}
82
86
}
83
87
You can’t perform that action at this time.
0 commit comments