deniskuzZ commented on code in PR #4672:
URL: https://github.com/apache/hive/pull/4672#discussion_r1329952275


##########
iceberg/iceberg-handler/src/main/java/org/apache/iceberg/mr/hive/IcebergTableUtil.java:
##########
@@ -258,4 +259,28 @@ public static void cherryPick(Table table, long 
snapshotId) {
     LOG.debug("Cherry-Picking {} to {}", snapshotId, table.name());
     table.manageSnapshots().cherrypick(snapshotId).commit();
   }
+
+  public static TransformSpec.TransformType getTransformType(Transform<?, ?> 
transform) {
+    String transformString = transform.toString();
+    if (transformString.contains("bucket")) {

Review Comment:
   introduce fromString in TransformSpec.TransformType, use map to hold the 
values for lookup



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