Skip to content

Commit

Permalink
[FLINK-23531][table]Fix ci fail
Browse files Browse the repository at this point in the history
  • Loading branch information
Tartarus0zm committed Aug 3, 2021
1 parent c588afe commit dee9c42
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ class DeduplicateITCase(miniBatch: MiniBatchMode, mode: StateBackendMode)
def testFirstRowWithoutAllChangelogOnRowtime(): Unit = {
Assume.assumeTrue("Without all change log only for minibatch.", miniBatch == MiniBatchOn)
tEnv.getConfig.getConfiguration.setBoolean(
StreamExecDeduplicate.TABLE_EXEC_DEDUPLICATE_MINIBATCH_ALL_CHANGELOG_ENABLED, false)
StreamExecDeduplicate.TABLE_EXEC_DEDUPLICATE_MINIBATCH_COMPACT_CHANGES, false)
val t = env.fromCollection(rowtimeTestData)
.assignTimestampsAndWatermarks(new RowtimeExtractor)
.toTable(tEnv, 'a, 'b, 'c, 'rowtime.rowtime())
Expand Down Expand Up @@ -300,7 +300,7 @@ class DeduplicateITCase(miniBatch: MiniBatchMode, mode: StateBackendMode)
def testLastRowWithoutAllChangelogOnRowtime(): Unit = {
Assume.assumeTrue("Without all change log only for minibatch.", miniBatch == MiniBatchOn)
tEnv.getConfig.getConfiguration.setBoolean(
StreamExecDeduplicate.TABLE_EXEC_DEDUPLICATE_MINIBATCH_ALL_CHANGELOG_ENABLED, false)
StreamExecDeduplicate.TABLE_EXEC_DEDUPLICATE_MINIBATCH_COMPACT_CHANGES, false)
val t = env.fromCollection(rowtimeTestData)
.assignTimestampsAndWatermarks(new RowtimeExtractor)
.toTable(tEnv, 'a, 'b, 'c, 'rowtime.rowtime())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
import static org.apache.flink.table.runtime.util.StreamRecordUtils.updateAfterRecord;
import static org.apache.flink.table.runtime.util.StreamRecordUtils.updateBeforeRecord;

/** Harness tests for {@link RowTimeMiniBatchLatestChangeDeduplicateFunction} */
/** Harness tests for {@link RowTimeMiniBatchLatestChangeDeduplicateFunction}. */
public class RowTimeMiniBatchLatestChangeDeduplicateFunctionTest
extends RowTimeDeduplicateFunctionTestBase {

Expand Down

0 comments on commit dee9c42

Please sign in to comment.