snuyanzin commented on code in PR #28167:
URL: https://github.com/apache/flink/pull/28167#discussion_r3254836720


##########
flink-table/flink-table-api-java/src/test/java/org/apache/flink/table/api/internal/ShowCreateUtilTest.java:
##########
@@ -195,7 +200,8 @@ void showCreateMaterializedTableWithFlags(
     @MethodSource("argsForShowCreateCatalog")
     void showCreateCatalog(CatalogDescriptor catalogDescriptor, String 
expected) {
         final String createCatalogString =
-                ShowCreateUtil.buildShowCreateCatalogRow(catalogDescriptor);
+                ShowCreateUtil.buildShowCreateCatalogRow(
+                        catalogDescriptor, Collections.emptyList());

Review Comment:
   ```suggestion
                           catalogDescriptor, List.of());
   ```



##########
flink-table/flink-table-common/src/main/java/org/apache/flink/table/catalog/DefaultCatalogModel.java:
##########
@@ -107,7 +109,7 @@ public String toString() {
                 + ", outputSchema="
                 + outputSchema
                 + ", modelOptions="
-                + modelOptions
+                + ConfigurationUtils.hideSensitiveValues(modelOptions, 
Collections.emptyList())

Review Comment:
   ```suggestion
                   + ConfigurationUtils.hideSensitiveValues(modelOptions, 
List.of())
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to