jonvex commented on code in PR #11943:
URL: https://github.com/apache/hudi/pull/11943#discussion_r1803975188
##########
hudi-common/src/main/java/org/apache/hudi/common/table/log/block/HoodieLogBlock.java:
##########
@@ -179,7 +183,11 @@ public enum HoodieLogBlockType {
}
public static HoodieLogBlockType fromId(String id) {
- return ID_TO_ENUM_MAP.get(id);
+ return ID_TO_ENUM_MAP.get(id.toLowerCase());
+ }
+
+ public String getId() {
+ return id;
Review Comment:
removed and created new pr: https://github.com/apache/hudi/pull/12117
--
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]