gaborkaszab commented on code in PR #5763:
URL: https://github.com/apache/iceberg/pull/5763#discussion_r999451973
##########
hive-metastore/src/main/java/org/apache/iceberg/hive/HiveTableOperations.java:
##########
@@ -460,6 +462,11 @@ private void setHmsTableParameters(
String hmsKey = ICEBERG_TO_HMS_TRANSLATION.getOrDefault(key,
key);
parameters.put(hmsKey, value);
});
+
+ // 'hms_table_owner' is only used for setting the owner of the table
during table creation. No
+ // need to add it as a table property to HMS.
+ parameters.remove(TableProperties.HMS_TABLE_OWNER);
Review Comment:
Nothing specific. Moved this to a filter() before the foreach()
--
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]