We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0f61e7 commit 75405bfCopy full SHA for 75405bf
sample-operators/mysql-schema/src/main/java/io/javaoperatorsdk/operator/sample/schema/Schema.java
@@ -28,7 +28,7 @@ public boolean equals(Object o) {
28
if (this == o) return true;
29
if (o == null || getClass() != o.getClass()) return false;
30
Schema schema = (Schema) o;
31
- return Objects.equals(name, schema.name);
+ return Objects.equals(name, schema.name) && Objects.equals(characterSet, schema.characterSet);
32
}
33
34
@Override
0 commit comments