Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

null safety in debezium to airbyte message generation #41622

Prev Previous commit
published cdk
  • Loading branch information
rodireich committed Jul 23, 2024
commit 8226383383b05b19969e668cff36d6743a49b950
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ class RelationalDbDebeziumEventConverter(
"ChangeEvent contains no before or after records $debeziumEvent"
)
}
// Value of before and after may be a null or a NullNode object, representing a "null" in
// json
// Value of before and after may be a null or a NullNode object,
// representing a "null" in json
val baseNode =
when (after?.isNull == true) {
true -> before
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ java {
}

airbyteJavaConnector {
cdkVersionRequired = '0.42.1'
cdkVersionRequired = '0.43.1'
features = ['db-sources', 'datastore-postgres']
useLocalCdk = true
useLocalCdk = false
}

application {
Expand Down
Loading