Skip to content

Commit 70054ae

Browse files
authored
Disable compact storage tests (#491)
`WITH COMPACT STORAGE` has been discontinued in scylla by scylladb/scylladb#16403 Tests needs to be disabled for newer versions.
1 parent 6b7fb6f commit 70054ae

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

Diff for: driver-core/src/test/java/com/datastax/driver/core/TableMetadataTest.java

+21
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636

3737
import com.datastax.driver.core.utils.CassandraVersion;
3838
import com.datastax.driver.core.utils.ScyllaSkip;
39+
import com.datastax.driver.core.utils.ScyllaVersion;
3940
import com.google.common.collect.ImmutableMap;
4041
import java.nio.ByteBuffer;
4142
import org.testng.annotations.Test;
@@ -149,6 +150,11 @@ public void should_parse_counter_table() {
149150
}
150151

151152
@Test(groups = "short")
153+
@ScyllaVersion(
154+
maxOSS = "6.3.0",
155+
maxEnterprise = "2025.1.0",
156+
description =
157+
"COMPACT STORAGE discontinued in https://github.com/scylladb/scylladb/pull/16403")
152158
public void should_parse_compact_static_table() {
153159
TestUtils.compactStorageSupportCheck(ccm());
154160
// given
@@ -190,6 +196,11 @@ public void should_parse_compact_static_table() {
190196
}
191197

192198
@Test(groups = "short")
199+
@ScyllaVersion(
200+
maxOSS = "6.3.0",
201+
maxEnterprise = "2025.1.0",
202+
description =
203+
"COMPACT STORAGE discontinued in https://github.com/scylladb/scylladb/pull/16403")
193204
public void should_parse_dense_table() {
194205
TestUtils.compactStorageSupportCheck(ccm());
195206
// given
@@ -215,6 +226,11 @@ public void should_parse_dense_table() {
215226
}
216227

217228
@Test(groups = "short")
229+
@ScyllaVersion(
230+
maxOSS = "6.3.0",
231+
maxEnterprise = "2025.1.0",
232+
description =
233+
"COMPACT STORAGE discontinued in https://github.com/scylladb/scylladb/pull/16403")
218234
public void should_parse_compact_dynamic_table() {
219235
TestUtils.compactStorageSupportCheck(ccm());
220236
// given
@@ -251,6 +267,11 @@ public void should_parse_compact_dynamic_table() {
251267
}
252268

253269
@Test(groups = "short")
270+
@ScyllaVersion(
271+
maxOSS = "6.3.0",
272+
maxEnterprise = "2025.1.0",
273+
description =
274+
"COMPACT STORAGE discontinued in https://github.com/scylladb/scylladb/pull/16403")
254275
public void should_parse_compact_table_with_multiple_clustering_columns() {
255276
TestUtils.compactStorageSupportCheck(ccm());
256277
// given

0 commit comments

Comments
 (0)