Hi everyone,
I got a postgres debezium connector running and I can see even the data on database looks like :
effectivedates_effectivestartdate | date
effectivedates_effectiveenddate
---------------------------------+--------
9999-12-31
when I check the CDC topics the data appears to be like :
},
"effectivedates_effectiveenddate": {
"string": "10000-12-31"
}
and data is landing on S3 buckect like :
max(after.effectivedates_effectiveenddate AS `effectivedates_effectiveenddate`)|
+-------------------------------------------------------------------------------+
|10000-12-31 |
+-------------------------------------------------------------------------------+
so does anyone knows that is causing this behaviour. Is there a configuration parameter that might help to fix this. thanks.