-
Bug
-
Resolution: Done
-
Major
-
0.9.1.Final
-
None
Not sure whether this is a Debezium bug or Kafka Connect for Postgres, but here's the exception I get in ConnectSchema.java:219:
public static void validateValue(String name, Schema schema, Object value) { if (value == null) { if (!schema.isOptional()) throw new DataException("Invalid value: null used for required field: \"" + name + "\", schema type: " + schema.type()); return; }
If the "with time zone" clause is dropped from the DDL it works fine. I think I have the default replica identity, so it's expected that I won't have non-PK columns for the delete (this is while constructing the "before" side of the operation).
- is related to
-
DBZ-1158 Add tests for using fallback values with default REPLICA IDENTITY
- Closed