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


##########
flink-table/flink-table-api-java/src/test/java/org/apache/flink/table/api/internal/ShowCreateUtilTest.java:
##########
@@ -171,7 +175,8 @@ void showCreateMaterializedTableWithFlags(
                         ZoneOffset.UTC,
                         DefaultSqlFactory.INSTANCE,
                         includeFreshness,
-                        includeRefreshMode);
+                        includeRefreshMode,
+                        Collections.emptyList());

Review Comment:
   Changed



##########
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:
   Changed



##########
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:
   Changed



-- 
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