codope commented on code in PR #10135:
URL: https://github.com/apache/hudi/pull/10135#discussion_r1400018858


##########
hudi-client/hudi-spark-client/src/main/scala/org/apache/hudi/AvroConversionUtils.scala:
##########
@@ -242,4 +243,57 @@ object AvroConversionUtils {
     val nameParts = qualifiedName.split('.')
     (nameParts.last, nameParts.init.mkString("."))
   }
+
+  def areSchemasEquivalent(thisSchema: Schema, thatSchema: Schema): Boolean = {

Review Comment:
   Why can't we simply do `thisSchema.equals(thatSchema)`? Please also add some 
javadoc if this equivalent check method does something special.



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