Skip to content

Commit 75405bf

Browse files
committed
wip
Signed-off-by: Attila Mészáros <[email protected]>
1 parent e0f61e7 commit 75405bf

File tree

1 file changed

+1
-1
lines changed
  • sample-operators/mysql-schema/src/main/java/io/javaoperatorsdk/operator/sample/schema

1 file changed

+1
-1
lines changed

sample-operators/mysql-schema/src/main/java/io/javaoperatorsdk/operator/sample/schema/Schema.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public boolean equals(Object o) {
2828
if (this == o) return true;
2929
if (o == null || getClass() != o.getClass()) return false;
3030
Schema schema = (Schema) o;
31-
return Objects.equals(name, schema.name);
31+
return Objects.equals(name, schema.name) && Objects.equals(characterSet, schema.characterSet);
3232
}
3333

3434
@Override

0 commit comments

Comments
 (0)