A0R0P0I7T commented on code in PR #9927:
URL: https://github.com/apache/gravitino/pull/9927#discussion_r2789259042


##########
api/src/main/java/org/apache/gravitino/rel/indexes/Indexes.java:
##########
@@ -135,12 +168,13 @@ public boolean equals(Object o) {
       IndexImpl index = (IndexImpl) o;
       return indexType == index.indexType
           && Objects.equal(name, index.name)
-          && Arrays.deepEquals(fieldNames, index.fieldNames);
+          && Arrays.deepEquals(fieldNames, index.fieldNames)
+          && Objects.equal(properties, index.properties);
     }
 
     @Override
     public int hashCode() {
-      return Objects.hashCode(indexType, name, Arrays.hashCode(fieldNames));
+      return Objects.hashCode(indexType, name, Arrays.hashCode(fieldNames), 
properties);

Review Comment:
   Applied the changes!



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