okumin commented on code in PR #6094:
URL: https://github.com/apache/hive/pull/6094#discussion_r2377630598


##########
iceberg/iceberg-catalog/src/main/java/org/apache/iceberg/hive/MetastoreUtil.java:
##########
@@ -157,6 +159,8 @@ private static StorageDescriptor 
getHiveStorageDescriptor(org.apache.iceberg.Tab
     result.setSerdeInfo(getHiveSerdeInfo());
     result.setLocation(table.location());
     result.setParameters(Maps.newHashMap());
+    result.setSkewedInfo(new SkewedInfo(new SkewedInfo(Collections.emptyList(),
+        Collections.emptyList(), Collections.emptyMap())));

Review Comment:
   I replaced this change with the following one and verified the local test 
succeeded
   
   ```java
   result.setSkewedInfo(new SkewedInfo(Collections.emptyList(), 
Collections.emptyList(), Collections.emptyMap()));
   ```



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