Skip to content

Commit

Permalink
Flink: Fix the condition of formatVersion for skipping test cases (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
zhongqishang authored Jun 20, 2024
1 parent 23a578e commit 601efaf
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -766,7 +766,7 @@ public void testFlinkManifests() throws Exception {
public void testDeleteFiles() throws Exception {
assumeThat(formatVersion)
.as("Only support equality-delete in format v2 or later.")
.isGreaterThan(2);
.isGreaterThan(1);

long timestamp = 0;
long checkpoint = 10;
Expand Down Expand Up @@ -837,7 +837,7 @@ public void testDeleteFiles() throws Exception {
public void testCommitTwoCheckpointsInSingleTxn() throws Exception {
assumeThat(formatVersion)
.as("Only support equality-delete in format v2 or later.")
.isGreaterThan(2);
.isGreaterThan(1);

long timestamp = 0;
long checkpoint = 10;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -766,7 +766,7 @@ public void testFlinkManifests() throws Exception {
public void testDeleteFiles() throws Exception {
assumeThat(formatVersion)
.as("Only support equality-delete in format v2 or later.")
.isGreaterThan(2);
.isGreaterThan(1);

long timestamp = 0;
long checkpoint = 10;
Expand Down Expand Up @@ -837,7 +837,7 @@ public void testDeleteFiles() throws Exception {
public void testCommitTwoCheckpointsInSingleTxn() throws Exception {
assumeThat(formatVersion)
.as("Only support equality-delete in format v2 or later.")
.isGreaterThan(2);
.isGreaterThan(1);

long timestamp = 0;
long checkpoint = 10;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -766,7 +766,7 @@ public void testFlinkManifests() throws Exception {
public void testDeleteFiles() throws Exception {
assumeThat(formatVersion)
.as("Only support equality-delete in format v2 or later.")
.isGreaterThan(2);
.isGreaterThan(1);

long timestamp = 0;
long checkpoint = 10;
Expand Down Expand Up @@ -837,7 +837,7 @@ public void testDeleteFiles() throws Exception {
public void testCommitTwoCheckpointsInSingleTxn() throws Exception {
assumeThat(formatVersion)
.as("Only support equality-delete in format v2 or later.")
.isGreaterThan(2);
.isGreaterThan(1);

long timestamp = 0;
long checkpoint = 10;
Expand Down

0 comments on commit 601efaf

Please sign in to comment.