Skip to content

Commit

Permalink
chore[vitess-cdc]: Rebase from latest master
Browse files Browse the repository at this point in the history
  • Loading branch information
s-gelazevicius committed Jul 27, 2022
1 parent 1f9a6d6 commit d9bb902
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
6 changes: 3 additions & 3 deletions flink-connector-vitess-cdc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -79,14 +79,14 @@ under the License.

<dependency>
<groupId>org.apache.flink</groupId>
<artifactId>flink-table-planner-blink_${scala.binary.version}</artifactId>
<artifactId>flink-table-planner_${scala.binary.version}</artifactId>
<version>${flink.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.apache.flink</groupId>
<artifactId>flink-table-runtime-blink_${scala.binary.version}</artifactId>
<artifactId>flink-table-runtime_${scala.binary.version}</artifactId>
<version>${flink.version}</version>
<scope>test</scope>
</dependency>
Expand Down Expand Up @@ -132,7 +132,7 @@ under the License.

<dependency>
<groupId>org.apache.flink</groupId>
<artifactId>flink-table-planner-blink_${scala.binary.version}</artifactId>
<artifactId>flink-table-planner_${scala.binary.version}</artifactId>
<version>${flink.version}</version>
<type>test-jar</type>
<scope>test</scope>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

package com.ververica.cdc.connectors.vitess;

import org.apache.flink.shaded.guava18.com.google.common.collect.Maps;
import org.apache.flink.shaded.guava30.com.google.common.collect.Maps;

import com.ververica.cdc.debezium.Validator;
import io.debezium.connector.vitess.VitessConnector;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
import java.time.Duration;
import java.util.ArrayList;
import java.util.List;
import java.util.OptionalLong;
import java.util.Properties;
import java.util.Set;
import java.util.concurrent.LinkedBlockingQueue;
Expand Down Expand Up @@ -297,6 +298,11 @@ public boolean isRestored() {
return isRestored;
}

@Override
public OptionalLong getRestoredCheckpointId() {
throw new UnsupportedOperationException();
}

@Override
public OperatorStateStore getOperatorStateStore() {
return operatorStateStore;
Expand Down

0 comments on commit d9bb902

Please sign in to comment.