Skip to content

Commit

Permalink
dev
Browse files Browse the repository at this point in the history
  • Loading branch information
featzhang authored and averyzhang committed Apr 23, 2024
1 parent bdb316d commit af1c707
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 @@ -43,6 +43,10 @@
<groupId>org.apache.paimon</groupId>
<artifactId>paimon-bundle</artifactId>
</dependency>
<dependency>
<groupId>org.apache.paimon</groupId>
<artifactId>paimon-flink-1.15</artifactId>
</dependency>
<dependency>
<groupId>org.apache.thrift</groupId>
<artifactId>libfb303</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import org.apache.flink.api.connector.sink2.SinkWriter;
import org.apache.flink.configuration.ConfigOption;
import org.apache.flink.table.connector.sink.DynamicTableSink;
import org.apache.paimon.table.FileTableFactory;
import org.apache.paimon.flink.FlinkTableFactory;

import java.util.Set;

Expand All @@ -41,7 +41,7 @@ public String factoryIdentifier() {
}

@Override
public DynamicTableSink createDynamicTableSink(SinkWriter.Context context) {
public DynamicTableSink createDynamicTableSink(Context context) {
return super.createDynamicTableSink(context);
}

Expand Down

0 comments on commit af1c707

Please sign in to comment.