dant3 commented on code in PR #6648:
URL: https://github.com/apache/ignite-3/pull/6648#discussion_r2377144632
##########
modules/catalog/src/main/java/org/apache/ignite/internal/catalog/commands/DefaultValue.java:
##########
@@ -166,7 +166,7 @@ public boolean equals(Object o) {
ConstantValue that = (ConstantValue) o;
- return Objects.equals(value, that.value);
+ return Objects.deepEquals(value, that.value);
Review Comment:
Exactly, it makes sense for arrays, and this constant value can be a byte
array, this is reproduced in our tests.
--
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]