-
Bug
-
Resolution: Done
-
Major
-
None
-
None
-
False
-
None
-
False
-
-
Bug report
when creating a field with default and deprecated aliases, the method withDefault() rewrite the aliases value with null.
What behavior do you see?
// deprecated aliases are false public boolean shouldBeFalse() { Field field = Field.create("new.field") .withDescription("a description") .withDeprecatedAliases("deprecated.field") .withDefault("default"); return field.deprecatedAliases().isEmpty(); }
Do you see the same behaviour using the latest released Debezium version?
yes