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


##########
hudi-common/src/main/java/org/apache/hudi/internal/schema/convert/InternalSchemaConverter.java:
##########
@@ -64,65 +63,65 @@ public class AvroInternalSchemaConverter {
   //
   //        This is crucial aspect of maintaining compatibility b/w schemas, 
after
   //        converting Avro [[Schema]]s to [[InternalSchema]]s and back
-  private static final String AVRO_NAME_DELIMITER = ".";
+  private static final String FIELD_NAME_DELIMITER = ".";
 
   /**
-   * Convert internalSchema to avro Schema.
+   * Convert internalSchema to HoodieSchema.
    *
    * @param internalSchema internal schema.
    * @param name the record name.
-   * @return an avro Schema.
+   * @return an HoodieSchema.
    */
-  public static Schema convert(InternalSchema internalSchema, String name) {
-    return buildAvroSchemaFromInternalSchema(internalSchema, name);
+  public static HoodieSchema convert(InternalSchema internalSchema, String 
name) {
+    return buildHoodieSchemaFromInternalSchema(internalSchema, name);

Review Comment:
   Yes, I think we'll combine them eventually. 



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