gemini-code-assist[bot] commented on code in PR #36571:
URL: https://github.com/apache/beam/pull/36571#discussion_r2607427117
##########
sdks/java/extensions/sql/iceberg/src/main/java/org/apache/beam/sdk/extensions/sql/meta/provider/iceberg/IcebergMetastore.java:
##########
@@ -60,7 +61,12 @@ public void createTable(Table table) {
} else {
String identifier = getIdentifier(table);
try {
- catalogConfig.createTable(identifier, table.getSchema(),
table.getPartitionFields());
+ Map<String, String> properties =
+ TableUtils.getObjectMapper()
+ .convertValue(table.getProperties(), new
TypeReference<Map<String, String>>() {});
+ ;
Review Comment:

There's a redundant semicolon at the end of this line.
```java
.convertValue(table.getProperties(), new
TypeReference<Map<String, String>>() {});
```
--
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]