Skip to content

Commit

Permalink
Upgrade debezium version to 2.4.x (#235)
Browse files Browse the repository at this point in the history
* Upgrade debezium to 2.4.x

* Fix related debezium/debezium#4617
  • Loading branch information
ismailsimsek committed Sep 30, 2023
1 parent bf39597 commit 99a7959
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,10 @@ public static ByteBuffer toByteBuffer(String data) {
return (data != null) ? ByteBuffer.wrap(data.getBytes(StandardCharsets.UTF_8)) : null;
}

public Set<Map<String, Object>> connectorPartitions(String connectorName) {
return null;
}

public static class IcebergOffsetBackingStoreConfig extends WorkerConfig {
final org.apache.hadoop.conf.Configuration hadoopConfig = new org.apache.hadoop.conf.Configuration();
private final Configuration config;
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,12 @@
<version.awssdk>2.19.4</version.awssdk>
<version.testcontainers>1.19.0</version.testcontainers>
<!-- Debezium -->
<version.debezium>2.2.1.Final</version.debezium>
<version.debezium>2.4.0.CR1</version.debezium>
<version.mysql.driver>8.0.32</version.mysql.driver>
<!-- Quarkus -->
<version.quarkus>3.3.2</version.quarkus>
<!-- FOR TESTS Align with SPARK Antlr version -->
<version.antlr>4.8</version.antlr>
<version.antlr>4.9.3</version.antlr>
</properties>
<repositories>
<repository>
Expand Down

0 comments on commit 99a7959

Please sign in to comment.