Skip to content

Commit 82c6f8a

Browse files
committed
Merge branch 'cassandra-6.0' into trunk
2 parents 0c6380f + e193523 commit 82c6f8a

12 files changed

Lines changed: 513 additions & 3 deletions

File tree

README.asc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ be sitting in front of a prompt:
5252

5353
----
5454
Connected to Test Cluster at localhost:9160.
55-
[cqlsh 6.3.0 | Cassandra 6.0-SNAPSHOT | CQL spec 3.4.8 | Native protocol v5]
55+
[cqlsh 6.3.0 | Cassandra 7.0-SNAPSHOT | CQL spec 3.4.8 | Native protocol v5]
5656
Use HELP for help.
5757
cqlsh>
5858
----

test/data/config/version=7.0-alpha1.yml

Lines changed: 495 additions & 0 deletions
Large diffs are not rendered by default.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

test/data/serialization/5.1/service.ValidationComplete.bin renamed to test/data/serialization/6.0/service.ValidationComplete.bin

File renamed without changes.

test/data/serialization/5.1/service.ValidationRequest.bin renamed to test/data/serialization/6.0/service.ValidationRequest.bin

File renamed without changes.

test/data/serialization/5.1/utils.EstimatedHistogram.bin renamed to test/data/serialization/6.0/utils.EstimatedHistogram.bin

File renamed without changes.

test/distributed/org/apache/cassandra/distributed/upgrade/UpgradeTestBase.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,14 +100,22 @@ public static interface RunOnClusterAndNode
100100
public static final Semver v42 = new Semver("4.2-alpha1", SemverType.LOOSE);
101101
public static final Semver v50 = new Semver("5.0-alpha1", SemverType.LOOSE);
102102
public static final Semver v60 = new Semver("6.0-alpha1", SemverType.LOOSE);
103+
public static final Semver v70 = new Semver("7.0-alpha1", SemverType.LOOSE);
103104

104105
protected static final SimpleGraph<Semver> SUPPORTED_UPGRADE_PATHS = new SimpleGraph.Builder<Semver>()
106+
// 40 edges are here temporarily
107+
// until we resolve CASSANDRA-21324
105108
.addEdge(v40, v41)
106109
.addEdge(v40, v50)
107110
.addEdge(v40, v60)
111+
.addEdge(v40, v70)
112+
/////
108113
.addEdge(v41, v50)
109114
.addEdge(v41, v60)
115+
.addEdge(v41, v70)
110116
.addEdge(v50, v60)
117+
.addEdge(v50, v70)
118+
.addEdge(v60, v70)
111119
.build();
112120

113121
// the last is always the current

0 commit comments

Comments
 (0)