Skip to content

Commit 89aafb5

Browse files
Enable integration test cases skipped for YugabyteDB (#2406)
Co-authored-by: Hiroyuki Yamada <[email protected]>
1 parent 185ca4a commit 89aafb5

File tree

2 files changed

+1
-21
lines changed

2 files changed

+1
-21
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1520,7 +1520,7 @@ jobs:
15201520
steps:
15211521
- name: Run YugabyteDB 2
15221522
run: |
1523-
docker run -p 5433:5433 -e YSQL_USER=yugabyte -e YSQL_PASSWORD=yugabyte -d yugabytedb/yugabyte:2.21.0.0-b545 bin/yugabyted start --background=false --master_flag="ysql_enable_db_catalog_version_mode=false" --tserver_flags="ysql_enable_db_catalog_version_mode=false"
1523+
docker run -p 5433:5433 -e YSQL_USER=yugabyte -e YSQL_PASSWORD=yugabyte -d yugabytedb/yugabyte:2.20.4.0-b50 bin/yugabyted start --background=false --master_flag="ysql_enable_db_catalog_version_mode=false" --tserver_flags="ysql_enable_db_catalog_version_mode=false"
15241524
15251525
- uses: actions/checkout@v4
15261526

core/src/integration-test/java/com/scalar/db/storage/jdbc/JdbcDatabaseMultipleClusteringKeyScanIntegrationTest.java

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77
import com.scalar.db.io.DataType;
88
import java.util.Properties;
99
import java.util.Random;
10-
import org.junit.jupiter.api.Test;
11-
import org.junit.jupiter.api.condition.DisabledIf;
1210

1311
public class JdbcDatabaseMultipleClusteringKeyScanIntegrationTest
1412
extends DistributedStorageMultipleClusteringKeyScanIntegrationTestBase {
@@ -81,22 +79,4 @@ protected Column<?> getColumnWithMaxValue(String columnName, DataType dataType)
8179
}
8280
return super.getColumnWithMaxValue(columnName, dataType);
8381
}
84-
85-
// TODO: Remove this once https://github.com/yugabyte/yugabyte-db/issues/22140 is fixed and the
86-
// fix is released.
87-
@DisabledIf("isYugabyteDb")
88-
@Test
89-
@Override
90-
public void scan_WithSecondClusteringKeyRange_ShouldReturnProperResult()
91-
throws java.util.concurrent.ExecutionException, InterruptedException {
92-
super.scan_WithSecondClusteringKeyRange_ShouldReturnProperResult();
93-
}
94-
95-
@DisabledIf("isYugabyteDb")
96-
@Test
97-
@Override
98-
public void scan_WithSecondClusteringKeyRangeWithSameValues_ShouldReturnProperResult()
99-
throws java.util.concurrent.ExecutionException, InterruptedException {
100-
super.scan_WithSecondClusteringKeyRangeWithSameValues_ShouldReturnProperResult();
101-
}
10282
}

0 commit comments

Comments
 (0)