mxm commented on code in PR #15673:
URL: https://github.com/apache/iceberg/pull/15673#discussion_r3022134009


##########
flink/v1.20/flink/src/main/java/org/apache/iceberg/flink/FlinkCreateTableOptions.java:
##########
@@ -61,6 +61,14 @@ private FlinkCreateTableOptions(
           .noDefaultValue()
           .withDescription("Table name managed in the underlying iceberg 
catalog and database.");
 
+  public static final ConfigOption<String> TABLE_NAME =
+      ConfigOptions.key("table-name")
+          .stringType()
+          .noDefaultValue()
+          .withDescription(
+              "Alias for 'catalog-table'. Table name managed in the underlying 
iceberg catalog"
+                  + " and database.");

Review Comment:
   Instead of adding a new ConfigOption, we can add "table-name" via 
`withFallbackKey("table-name")` to the existing `catalog-name` option.



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


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to