the-other-tim-brown commented on code in PR #13726:
URL: https://github.com/apache/hudi/pull/13726#discussion_r2283718642


##########
hudi-client/hudi-client-common/src/main/java/org/apache/hudi/config/HoodieWriteConfig.java:
##########
@@ -3674,4 +3675,17 @@ private String getDefaultMarkersType(EngineType 
engineType) {
       }
     }
   }
+
+  public boolean isFileGroupReaderBasedMergedHandle() {
+    return isFileGroupReaderBasedMergedHandle(props);
+  }
+
+  public static boolean isFileGroupReaderBasedMergedHandle(TypedProperties 
props) {
+    try {
+      return FileGroupReaderBasedMergeHandle.class.isAssignableFrom(
+          Class.forName(ConfigUtils.getStringWithAltKeys(props, 
HoodieWriteConfig.MERGE_HANDLE_CLASS_NAME, true)));

Review Comment:
   Thanks, I will update this



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

Reply via email to